aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-04-21 15:16:32 +0000
committerdos-reis <gdr@axiomatics.org>2008-04-21 15:16:32 +0000
commita04a446805a1108cd19f633878ca367629c23f4b (patch)
treed7b057f8b144184299ae72c0f91ad12e320a6157 /src
parentb136bc01f60d2baa53148919ee04828dbe9e53b1 (diff)
downloadopen-axiom-a04a446805a1108cd19f633878ca367629c23f4b.tar.gz
Add support for byte values, and byte buffers.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog20
-rw-r--r--src/algebra/Makefile.in6
-rw-r--r--src/algebra/Makefile.pamphlet6
-rw-r--r--src/algebra/array1.spad.pamphlet100
-rw-r--r--src/algebra/data.spad.pamphlet102
-rw-r--r--src/algebra/exposed.lsp.pamphlet2
-rw-r--r--src/interp/compiler.boot4
-rw-r--r--src/interp/sys-macros.lisp36
-rw-r--r--src/interp/sys-utility.boot24
-rw-r--r--src/interp/types.boot25
-rw-r--r--src/share/algebra/browse.daase3428
-rw-r--r--src/share/algebra/category.daase5416
-rw-r--r--src/share/algebra/compress.daase1305
-rw-r--r--src/share/algebra/interp.daase9798
-rw-r--r--src/share/algebra/operation.daase33761
15 files changed, 27139 insertions, 26894 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 81500433..56f4e1f3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,23 @@
+2008-04-21 Gabriel Dos Reis <gdr@cs.tamu.edu>
+
+ * interp/sys-utility.boot (getVMType): New.
+ * interp/sys-macros.lisp (|byteLessThan|): New.
+ (|byteGreaterEqual|): Likewise.
+ (|makeSimpleArray|): Likewise.
+ (|makeFilledSimpleArray|): Likewise.
+ (|getSimpleArrayEntry|): Likewise.
+ (|setSimpleArrayEntry|): Likewise.
+ (|sizeOfSimpleArray|): Likewise.
+ (|maxIndexOfSimpleArray|): Likewise.
+ * interp/compiler.boot (checkCallingConvention): Tidy return type.
+ * algebra/exposed.lsp.pamphlet: Expose Byte and ByteArray.
+ * algebra/data.spad.pamphlet: New.
+ * algebra/array1.spad.pamphlet (PrimitiveArray): Rewrite.
+ Update cached Lisp translation.
+ * algebra/Makefile.pamphlet (axiom_algebra_layer_1): Include BYTE.
+ (axiom_algebra_layer_12): Include BYTEARY.
+ * share/algebra: Update databases.
+
2008-04-20 Gabriel Dos Reis <gdr@cs.tamu.edu>
* interp/template.boot (evalSlotDomain): Tidy.
diff --git a/src/algebra/Makefile.in b/src/algebra/Makefile.in
index ea22eb05..168617e9 100644
--- a/src/algebra/Makefile.in
+++ b/src/algebra/Makefile.in
@@ -378,7 +378,7 @@ axiom_algebra_layer_1 = \
AGG AGG- IEVALAB IEVALAB- FORTCAT ITUPLE \
PATAB PPCURVE PSCURVE REAL RESLATC RETRACT \
RETRACT- SEGCAT BINDING SYNTAX BMODULE LOGIC \
- LOGIC- EVALAB EVALAB- FEVALAB FEVALAB-
+ LOGIC- EVALAB EVALAB- FEVALAB FEVALAB- BYTE
axiom_algebra_layer_1_nrlibs = \
$(addsuffix .NRLIB/code.$(FASLEXT),$(axiom_algebra_layer_1))
@@ -389,7 +389,7 @@ axiom_algebra_layer_1_objects = \
axiom_algebra_layer_2 = \
ELTAGG ELTAGG- FMC FMFUN FORTFN FVC \
CTORCALL FVFUN INTRET IXAGG IXAGG- SEGXCAT \
- CONTOUR LIST3 MKFUNC OASGP
+ CONTOUR LIST3 MKFUNC OASGP
axiom_algebra_layer_2_nrlibs = \
$(addsuffix .NRLIB/code.$(FASLEXT),$(axiom_algebra_layer_2))
@@ -552,7 +552,7 @@ axiom_algebra_layer_11_objects = \
axiom_algebra_layer_12 = \
DIOPS DIOPS- DIAGG DIAGG- BITS DIRPROD2 IMATRIX \
IVECTOR LPOLY LSMP LSMP1 MATCAT2 PTCAT TRIMAT \
- FSAGG FSAGG- SYSTEM
+ FSAGG FSAGG- SYSTEM BYTEARY
axiom_algebra_layer_12_nrlibs = \
$(addsuffix .NRLIB/code.$(FASLEXT),$(axiom_algebra_layer_12))
diff --git a/src/algebra/Makefile.pamphlet b/src/algebra/Makefile.pamphlet
index 91499e2f..129123b8 100644
--- a/src/algebra/Makefile.pamphlet
+++ b/src/algebra/Makefile.pamphlet
@@ -218,7 +218,7 @@ axiom_algebra_layer_1 = \
AGG AGG- IEVALAB IEVALAB- FORTCAT ITUPLE \
PATAB PPCURVE PSCURVE REAL RESLATC RETRACT \
RETRACT- SEGCAT BINDING SYNTAX BMODULE LOGIC \
- LOGIC- EVALAB EVALAB- FEVALAB FEVALAB-
+ LOGIC- EVALAB EVALAB- FEVALAB FEVALAB- BYTE
axiom_algebra_layer_1_nrlibs = \
$(addsuffix .NRLIB/code.$(FASLEXT),$(axiom_algebra_layer_1))
@@ -236,7 +236,7 @@ axiom_algebra_layer_1_objects = \
axiom_algebra_layer_2 = \
ELTAGG ELTAGG- FMC FMFUN FORTFN FVC \
CTORCALL FVFUN INTRET IXAGG IXAGG- SEGXCAT \
- CONTOUR LIST3 MKFUNC OASGP
+ CONTOUR LIST3 MKFUNC OASGP
axiom_algebra_layer_2_nrlibs = \
$(addsuffix .NRLIB/code.$(FASLEXT),$(axiom_algebra_layer_2))
@@ -544,7 +544,7 @@ axiom_algebra_layer_11_objects = \
axiom_algebra_layer_12 = \
DIOPS DIOPS- DIAGG DIAGG- BITS DIRPROD2 IMATRIX \
IVECTOR LPOLY LSMP LSMP1 MATCAT2 PTCAT TRIMAT \
- FSAGG FSAGG- SYSTEM
+ FSAGG FSAGG- SYSTEM BYTEARY
axiom_algebra_layer_12_nrlibs = \
$(addsuffix .NRLIB/code.$(FASLEXT),$(axiom_algebra_layer_12))
diff --git a/src/algebra/array1.spad.pamphlet b/src/algebra/array1.spad.pamphlet
index 86fe6cb6..87ba8034 100644
--- a/src/algebra/array1.spad.pamphlet
+++ b/src/algebra/array1.spad.pamphlet
@@ -2,7 +2,7 @@
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/algebra array1.spad}
-\author{Michael Monagan, Stephen Watt}
+\author{Gabriel Dos Reis, Michael Monagan, Stephen Watt}
\maketitle
\begin{abstract}
\end{abstract}
@@ -15,25 +15,37 @@
++ This provides a fast array type with no bound checking on elt's.
++ Minimum index is 0 in this type, cannot be changed
PrimitiveArray(S:Type): OneDimensionalArrayAggregate S == add
- Qmax ==> QVMAXINDEX$Lisp
- Qsize ==> QVSIZE$Lisp
--- Qelt ==> QVELT$Lisp
--- Qsetelt ==> QSETVELT$Lisp
- Qelt ==> ELT$Lisp
- Qsetelt ==> SETELT$Lisp
- Qnew ==> GETREFV$Lisp
+ #x ==
+ sizeOfSimpleArray(x)$Lisp
+
+ minIndex x ==
+ 0
- #x == Qsize x
- minIndex x == 0
- empty() == Qnew(0$Lisp)
- new(n, x) == fill_!(Qnew n, x)
- qelt(x, i) == Qelt(x, i)
- elt(x:%, i:Integer) == Qelt(x, i)
- qsetelt_!(x, i, s) == Qsetelt(x, i, s)
- setelt(x:%, i:Integer, s:S) == Qsetelt(x, i, s)
- fill_!(x, s) == (for i in 0..Qmax x repeat Qsetelt(x, i, s); x)
+ empty() ==
+ makeSimpleArray(getVMType(S)$Lisp,0$Lisp)$Lisp
+
+ new(n, x) ==
+ makeFilledSimpleArray(getVMType(S)$Lisp,n,x)$Lisp
+
+ qelt(x, i) ==
+ getSimpleArrayEntry(x,i)$Lisp
+
+ elt(x:%, i:Integer) ==
+ getSimpleArrayEntry(x,i)$Lisp
+
+ qsetelt!(x, i, s) ==
+ setSimpleArrayEntry(x,i,s)$Lisp
+
+ setelt(x:%, i:Integer, s:S) ==
+ setSimpleArrayEntry(x,i,s)$Lisp
+
+ fill!(x, s) ==
+ for i in 0..maxIndexOfSimpleArray(x)$Lisp repeat
+ setSimpleArrayEntry(x, i, s)$Lisp
+ x
@
+
\section{PRIMARR.lsp BOOTSTRAP}
{\bf PRIMARR} depends on itself.
We need to break this cycle to build the algebra. So we keep a
@@ -48,44 +60,48 @@ Note that this code is not included in the generated catdef.spad file.
(/VERSIONCHECK 2)
-(PUT '|PRIMARR;#;$Nni;1| '|SPADreplace| 'QVSIZE)
+(PUT '|PRIMARR;#;$Nni;1| '|SPADreplace| '|sizeOfSimpleArray|)
-(DEFUN |PRIMARR;#;$Nni;1| (|x| $) (QVSIZE |x|))
+(DEFUN |PRIMARR;#;$Nni;1| (|x| $) (|sizeOfSimpleArray| |x|))
(PUT '|PRIMARR;minIndex;$I;2| '|SPADreplace| '(XLAM (|x|) 0))
(DEFUN |PRIMARR;minIndex;$I;2| (|x| $) 0)
-(PUT '|PRIMARR;empty;$;3| '|SPADreplace| '(XLAM NIL (GETREFV 0)))
-
-(DEFUN |PRIMARR;empty;$;3| ($) (GETREFV 0))
+(DEFUN |PRIMARR;empty;$;3| ($)
+ (|makeSimpleArray| (|getVMType| (|getShellEntry| $ 6)) 0))
(DEFUN |PRIMARR;new;NniS$;4| (|n| |x| $)
- (SPADCALL (GETREFV |n|) |x| (|getShellEntry| $ 12)))
+ (|makeFilledSimpleArray| (|getVMType| (|getShellEntry| $ 6)) |n| |x|))
-(PUT '|PRIMARR;qelt;$IS;5| '|SPADreplace| 'ELT)
+(PUT '|PRIMARR;qelt;$IS;5| '|SPADreplace| '|getSimpleArrayEntry|)
-(DEFUN |PRIMARR;qelt;$IS;5| (|x| |i| $) (ELT |x| |i|))
+(DEFUN |PRIMARR;qelt;$IS;5| (|x| |i| $)
+ (|getSimpleArrayEntry| |x| |i|))
-(PUT '|PRIMARR;elt;$IS;6| '|SPADreplace| 'ELT)
+(PUT '|PRIMARR;elt;$IS;6| '|SPADreplace| '|getSimpleArrayEntry|)
-(DEFUN |PRIMARR;elt;$IS;6| (|x| |i| $) (ELT |x| |i|))
+(DEFUN |PRIMARR;elt;$IS;6| (|x| |i| $)
+ (|getSimpleArrayEntry| |x| |i|))
-(PUT '|PRIMARR;qsetelt!;$I2S;7| '|SPADreplace| 'SETELT)
+(PUT '|PRIMARR;qsetelt!;$I2S;7| '|SPADreplace| '|setSimpleArrayEntry|)
-(DEFUN |PRIMARR;qsetelt!;$I2S;7| (|x| |i| |s| $) (SETELT |x| |i| |s|))
+(DEFUN |PRIMARR;qsetelt!;$I2S;7| (|x| |i| |s| $)
+ (|setSimpleArrayEntry| |x| |i| |s|))
-(PUT '|PRIMARR;setelt;$I2S;8| '|SPADreplace| 'SETELT)
+(PUT '|PRIMARR;setelt;$I2S;8| '|SPADreplace| '|setSimpleArrayEntry|)
-(DEFUN |PRIMARR;setelt;$I2S;8| (|x| |i| |s| $) (SETELT |x| |i| |s|))
+(DEFUN |PRIMARR;setelt;$I2S;8| (|x| |i| |s| $)
+ (|setSimpleArrayEntry| |x| |i| |s|))
(DEFUN |PRIMARR;fill!;$S$;9| (|x| |s| $)
(PROG (|i| #0=#:G1403)
(RETURN
(SEQ (SEQ (LETT |i| 0 |PRIMARR;fill!;$S$;9|)
- (LETT #0# (QVMAXINDEX |x|) |PRIMARR;fill!;$S$;9|) G190
- (COND ((QSGREATERP |i| #0#) (GO G191)))
- (SEQ (EXIT (SETELT |x| |i| |s|)))
+ (LETT #0# (|maxIndexOfSimpleArray| |x|)
+ |PRIMARR;fill!;$S$;9|)
+ G190 (COND ((QSGREATERP |i| #0#) (GO G191)))
+ (SEQ (EXIT (|setSimpleArrayEntry| |x| |i| |s|)))
(LETT |i| (QSADD1 |i|) |PRIMARR;fill!;$S$;9|) (GO G190)
G191 (EXIT NIL))
(EXIT |x|)))))
@@ -161,9 +177,9 @@ Note that this code is not included in the generated catdef.spad file.
(LIST '#(NIL NIL NIL NIL NIL NIL (|local| |#1|)
(|NonNegativeInteger|) |PRIMARR;#;$Nni;1| (|Integer|)
|PRIMARR;minIndex;$I;2| |PRIMARR;empty;$;3|
- |PRIMARR;fill!;$S$;9| |PRIMARR;new;NniS$;4|
- |PRIMARR;qelt;$IS;5| |PRIMARR;elt;$IS;6|
- |PRIMARR;qsetelt!;$I2S;7| |PRIMARR;setelt;$I2S;8|
+ |PRIMARR;new;NniS$;4| |PRIMARR;qelt;$IS;5|
+ |PRIMARR;elt;$IS;6| |PRIMARR;qsetelt!;$I2S;7|
+ |PRIMARR;setelt;$I2S;8| |PRIMARR;fill!;$S$;9|
(|Mapping| 6 6 6) (|Boolean|) (|List| 6) (|Equation| 6)
(|List| 21) (|Mapping| 19 6) (|Mapping| 19 6 6)
(|UniversalSegment| 9) (|Void|) (|Mapping| 6 6)
@@ -207,25 +223,25 @@ Note that this code is not included in the generated catdef.spad file.
'(2 7 19 0 0 1 3 0 26 0 9 9 1 1 5 19 0
1 2 0 19 24 0 1 1 5 0 0 1 2 0 0 24 0
1 1 5 0 0 1 2 0 0 24 0 1 2 0 19 0 7 1
- 3 0 6 0 25 6 1 3 0 6 0 9 6 17 2 0 0
+ 3 0 6 0 25 6 1 3 0 6 0 9 6 16 2 0 0
23 0 1 0 0 0 1 1 0 0 0 1 1 0 0 0 1 1
7 0 0 1 2 7 0 6 0 1 2 0 0 23 0 1 4 7
6 18 0 6 6 1 3 0 6 18 0 6 1 2 0 6 18
- 0 1 3 0 6 0 9 6 16 2 0 6 0 9 14 2 7 9
+ 0 1 3 0 6 0 9 6 15 2 0 6 0 9 13 2 7 9
6 0 1 3 7 9 6 0 9 1 2 0 9 23 0 1 1 0
- 20 0 1 2 0 0 7 6 13 2 0 19 0 7 1 1 6
+ 20 0 1 2 0 0 7 6 12 2 0 19 0 7 1 1 6
9 0 10 2 5 0 0 0 1 2 5 0 0 0 1 3 0 0
24 0 0 1 1 0 20 0 1 2 7 19 6 0 1 1 6
9 0 1 2 5 0 0 0 1 2 0 0 27 0 1 3 0 0
18 0 0 1 2 0 0 27 0 1 2 0 19 0 7 1 1
7 30 0 1 3 0 0 0 0 9 1 3 0 0 6 0 9 1
1 0 34 0 1 2 0 19 9 0 1 1 7 31 0 1 1
- 6 6 0 1 2 0 33 23 0 1 2 0 0 0 6 12 2
+ 6 6 0 1 2 0 33 23 0 1 2 0 0 0 6 17 2
0 19 23 0 1 3 8 0 0 20 20 1 2 8 0 0
21 1 3 8 0 0 6 6 1 2 8 0 0 22 1 2 0
19 0 0 1 2 7 19 6 0 1 1 0 20 0 1 1 0
19 0 1 0 0 0 11 2 0 0 0 25 1 2 0 6 0
- 9 15 3 0 6 0 9 6 1 2 0 0 0 9 1 2 0 0
+ 9 14 3 0 6 0 9 6 1 2 0 0 0 9 1 2 0 0
0 25 1 2 7 7 6 0 1 2 0 7 23 0 1 3 0 0
0 0 9 1 1 0 0 0 1 1 3 29 0 1 1 0 0 20
1 1 0 0 32 1 2 0 0 6 0 1 2 0 0 0 0 1
diff --git a/src/algebra/data.spad.pamphlet b/src/algebra/data.spad.pamphlet
new file mode 100644
index 00000000..b67fca76
--- /dev/null
+++ b/src/algebra/data.spad.pamphlet
@@ -0,0 +1,102 @@
+\documentclass{article}
+\usepackage{axiom}
+
+\author{Gabriel Dos~Reis}
+
+\begin{document}
+
+\begin{abstract}
+\end{abstract}
+
+\tableofcontents
+\eject
+
+\section{The Byte domain}
+
+<<domain BYTE Byte>>=
+import NonNegativeInteger
+import OutputForm
+)abbrev domain BYTE Byte
+++ Author: Gabriel Dos Reis
+++ Date Created: April 19, 2008
+++ Related Constructor:
+++ Description:
+++ Byte is the datatype of 8-bit sized unsigned integer values.
+Byte(): Public == Private where
+ Public ==> Join(OrderedSet, CoercibleTo NonNegativeInteger) with
+ coerce: NonNegativeInteger -> %
+ ++ coerce(x) injects the unsigned integer value `v' into
+ ++ the Byte algebra. `v' must be non-negative and less than 256.
+
+ Private ==> add
+ coerce(x: NonNegativeInteger): % ==
+ byteGreaterEqual(x,256$Lisp)$Lisp =>
+ userError "integer value cannot be represented by a byte"
+ x : %
+
+ coerce(x: %): NonNegativeInteger ==
+ x : NonNegativeInteger
+
+ coerce(x: %): OutputForm ==
+ x::NonNegativeInteger::OutputForm
+
+ x < y ==
+ byteLessThan(x,y)$Lisp
+@
+
+
+\section{The ByteArray domain}
+
+<<domain BYTEARY ByteArray>>=
+import PrimitiveArray
+import Byte
+)abbrev domain BYTEARY ByteArray
+++ Author: Gabriel Dos Reis
+++ Date Created: April 19, 2008
+++ Related Constructor:
+++ Description:
+++ ByteArray provides datatype for fix-sized buffer of bytes.
+ByteArray() == PrimitiveArray Byte
+@
+
+
+\section{License}
+<<license>>=
+--Copyright (C) 2007-2008, Gabriel Dos Reis.
+--All rights reserved.
+--
+--Redistribution and use in source and binary forms, with or without
+--modification, are permitted provided that the following conditions are
+--met:
+--
+-- - Redistributions of source code must retain the above copyright
+-- notice, this list of conditions and the following disclaimer.
+--
+-- - Redistributions in binary form must reproduce the above copyright
+-- notice, this list of conditions and the following disclaimer in
+-- the documentation and/or other materials provided with the
+-- distribution.
+--
+-- - Neither the name of The Numerical Algorithms Group Ltd. nor the
+-- names of its contributors may be used to endorse or promote products
+-- derived from this software without specific prior written permission.
+--
+--THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+--IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+--TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+--PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
+--OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+--EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+--PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+--PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+--LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+--NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+--SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+@
+
+
+<<*>>=
+<<license>>
+<<domain BYTE Byte>>
+<<domain BYTEARY ByteArray>>
+@
diff --git a/src/algebra/exposed.lsp.pamphlet b/src/algebra/exposed.lsp.pamphlet
index 2492f004..ed69e324 100644
--- a/src/algebra/exposed.lsp.pamphlet
+++ b/src/algebra/exposed.lsp.pamphlet
@@ -74,6 +74,8 @@
(|Binding| . BINDING)
(|Bits| . BITS)
(|Boolean| . BOOLEAN)
+ (|Byte| . BYTE)
+ (|ByteArray| . BYTEARY)
(|CardinalNumber| . CARD)
(|CartesianTensor| . CARTEN)
(|CartesianTensorFunctions2| . CARTEN2)
diff --git a/src/interp/compiler.boot b/src/interp/compiler.boot
index f8f6ca01..877749d2 100644
--- a/src/interp/compiler.boot
+++ b/src/interp/compiler.boot
@@ -527,9 +527,9 @@ getFormModemaps(form is [op,:argl],e) ==
++ the same arity and must take flag argument in the same position.
++ Returns a vector of length `nargs' with positive entries indicating
++ flag arguments, and negative entries for normal argument passing.
-checkCallingConvention: (%List,%Short) -> %Vector
+checkCallingConvention: (%List,%Short) -> %SimpleArray %Short
checkCallingConvention(sigs,nargs) ==
- v := GETZEROVEC nargs
+ v := makeFilledSimpleArray(%Short,nargs,0)
for sig in sigs repeat
for t in rest sig
for i in 0.. repeat
diff --git a/src/interp/sys-macros.lisp b/src/interp/sys-macros.lisp
index a6d8dd9b..c74ada28 100644
--- a/src/interp/sys-macros.lisp
+++ b/src/interp/sys-macros.lisp
@@ -57,6 +57,17 @@
`(or (alpha-char-p ,x)
(member ,x '(#\? #\% #\!) :test #'char=)))
+
+;;
+;; -*- Byte -*-
+;;
+
+(defmacro |byteLessThan| (|x| |y|)
+ `(< (the fixnum x) (the fixnum y)))
+
+(defmacro |byteGreaterEqual| (|x| |y|)
+ `(>= (the fixnum x) (the fixnum y)))
+
;;
;; -*- BigFloat Constructors -*-
;;
@@ -310,6 +321,31 @@
;; -*- Association Lists -*-
;;
+
+;;
+;; -*- Simple Arrays -*-
+;;
+
+;; Note: these macros should probably be just ordinary functions.
+
+(defmacro |makeSimpleArray| (|t| |n|)
+ `(make-array ,|n| :element-type ,|t|))
+
+(defmacro |makeFilledSimpleArray| (|t| |n| |v|)
+ `(make-array ,|n| :element-type ,|t| :initial-element ,|v|))
+
+(defmacro |getSimpleArrayEntry| (|a| |i|)
+ `(aref (the simple-array ,|a|) (the fixnum ,|i|)))
+
+(defmacro |setSimpleArrayEntry| (|a| |i| |v|)
+ `(setf (aref (the simple-array ,|a|) (the fixnum ,|i|)) ,|v|))
+
+(defmacro |sizeOfSimpleArray| (|a|)
+ `(the fixnum (length (the simple-array ,|a|))))
+
+(defmacro |maxIndexOfSimpleArray| (|a|)
+ `(the fixnum (1- (the fixnum (length (the simple-array ,|a|))))))
+
;;
;; -*- Functions -*-
;;
diff --git a/src/interp/sys-utility.boot b/src/interp/sys-utility.boot
index 6bbb59a9..2fa80cb7 100644
--- a/src/interp/sys-utility.boot
+++ b/src/interp/sys-utility.boot
@@ -37,6 +37,30 @@ import '"sys-os"
import '"vmlisp"
)package "BOOT"
+
+--%
+
+++ getVMType returns an approximation of the underlying object type
+++ representation of a domain, as a Lisp type specifier as seen by
+++ the runtime system.
+getVMType d ==
+ case devaluate d of
+ Void => "%Void"
+ Boolean => "%Boolean"
+ Byte => "%Byte"
+ Character => "%Char"
+ SingleInteger => "%Short"
+ Integer => "%Integer"
+ String => "%String"
+ List => "%List"
+ Vector => "%Vector"
+ PrimitiveArray => "SIMPLE-ARRAY"
+ Pair => "%Pair"
+ otherwise => "%Thing" -- good enough, for now.
+
+
+--%
+
setDynamicBinding: (%Symbol,%Thing) -> %Thing
setDynamicBinding(s,v) ==
SETF(SYMBOL_-VALUE s,v)
diff --git a/src/interp/types.boot b/src/interp/types.boot
index e0aa5cd1..6061252e 100644
--- a/src/interp/types.boot
+++ b/src/interp/types.boot
@@ -34,18 +34,39 @@
import '"boot-pkg"
)package "BOOT"
-++ Basic types used throughout Boot codes.
+--% Basic types used throughout Boot codes.
+
%Void <=> nil
+
%Boolean <=> BOOLEAN
+
+%Byte <=>
+ UNSIGNED_-BYTE 8
+
+%Char <=>
+ CHARACTER
+
%Short <=> FIXNUM
+
%Integer <=> BIGNUM
+
%Number <=> NUMBER
+
%Symbol <=> SYMBOL
+
%String <=> STRING
+
%Atom <=> atom
+
%List <=> LIST
-%Vector <=> VECTOR
+
+%SimpleArray a <=>
+ SIMPLE_-ARRAY a
+
+%Vector a <=> VECTOR a
+
%Thing <=> true
+
%Sequence <=> SEQUENCE
%Pair <=> cons
diff --git a/src/share/algebra/browse.daase b/src/share/algebra/browse.daase
index a4b02073..ed0544b6 100644
--- a/src/share/algebra/browse.daase
+++ b/src/share/algebra/browse.daase
@@ -1,12 +1,12 @@
-(2236562 . 3417125209)
+(2237777 . 3417777697)
(-18 A S)
((|constructor| (NIL "One-dimensional-array aggregates serves as models for one-dimensional arrays. Categorically,{} these aggregates are finite linear aggregates with the \\spadatt{shallowlyMutable} property,{} that is,{} any component of the array may be changed without affecting the identity of the overall array. Array data structures are typically represented by a fixed area in storage and therefore cannot efficiently grow or shrink on demand as can list structures (see however \\spadtype{FlexibleArray} for a data structure which is a cross between a list and an array). Iteration over,{} and access to,{} elements of arrays is extremely fast (and often can be optimized to open-code). Insertion and deletion however is generally slow since an entirely new data structure must be created for the result.")))
NIL
NIL
(-19 S)
((|constructor| (NIL "One-dimensional-array aggregates serves as models for one-dimensional arrays. Categorically,{} these aggregates are finite linear aggregates with the \\spadatt{shallowlyMutable} property,{} that is,{} any component of the array may be changed without affecting the identity of the overall array. Array data structures are typically represented by a fixed area in storage and therefore cannot efficiently grow or shrink on demand as can list structures (see however \\spadtype{FlexibleArray} for a data structure which is a cross between a list and an array). Iteration over,{} and access to,{} elements of arrays is extremely fast (and often can be optimized to open-code). Insertion and deletion however is generally slow since an entirely new data structure must be created for the result.")))
-((-4249 . T) (-4248 . T) (-2500 . T))
+((-4251 . T) (-4250 . T) (-2137 . T))
NIL
(-20 S)
((|constructor| (NIL "The class of abelian groups,{} \\spadignore{i.e.} additive monoids where each element has an additive inverse. \\blankline")) (* (($ (|Integer|) $) "\\spad{n*x} is the product of \\spad{x} by the integer \\spad{n}.")) (- (($ $ $) "\\spad{x-y} is the difference of \\spad{x} and \\spad{y} \\spadignore{i.e.} \\spad{x + (-y)}.") (($ $) "\\spad{-x} is the additive inverse of \\spad{x}.")))
@@ -38,7 +38,7 @@ NIL
NIL
(-27)
((|constructor| (NIL "Model for algebraically closed fields.")) (|zerosOf| (((|List| $) (|SparseUnivariatePolynomial| $) (|Symbol|)) "\\spad{zerosOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible,{} and otherwise as implicit algebraic quantities which display as \\spad{'yi}. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) (|SparseUnivariatePolynomial| $)) "\\spad{zerosOf(p)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible,{} and otherwise as implicit algebraic quantities. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) (|Polynomial| $)) "\\spad{zerosOf(p)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible. Otherwise they are implicit algebraic quantities. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable \\spad{y}.")) (|zeroOf| (($ (|SparseUnivariatePolynomial| $) (|Symbol|)) "\\spad{zeroOf(p,{} y)} returns \\spad{y} such that \\spad{p(y) = 0}; if possible,{} \\spad{y} is expressed in terms of radicals. Otherwise it is an implicit algebraic quantity which displays as \\spad{'y}.") (($ (|SparseUnivariatePolynomial| $)) "\\spad{zeroOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}; if possible,{} \\spad{y} is expressed in terms of radicals. Otherwise it is an implicit algebraic quantity.") (($ (|Polynomial| $)) "\\spad{zeroOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. If possible,{} \\spad{y} is expressed in terms of radicals. Otherwise it is an implicit algebraic quantity. Error: if \\spad{p} has more than one variable \\spad{y}.")) (|rootsOf| (((|List| $) (|SparseUnivariatePolynomial| $) (|Symbol|)) "\\spad{rootsOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}; The returned roots display as \\spad{'y1},{}...,{}\\spad{'yn}. Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) (|SparseUnivariatePolynomial| $)) "\\spad{rootsOf(p)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) (|Polynomial| $)) "\\spad{rootsOf(p)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable \\spad{y}.")) (|rootOf| (($ (|SparseUnivariatePolynomial| $) (|Symbol|)) "\\spad{rootOf(p,{} y)} returns \\spad{y} such that \\spad{p(y) = 0}. The object returned displays as \\spad{'y}.") (($ (|SparseUnivariatePolynomial| $)) "\\spad{rootOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}.") (($ (|Polynomial| $)) "\\spad{rootOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. Error: if \\spad{p} has more than one variable \\spad{y}.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
(-28 S R)
((|constructor| (NIL "Model for algebraically closed function spaces.")) (|zerosOf| (((|List| $) $ (|Symbol|)) "\\spad{zerosOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible,{} and otherwise as implicit algebraic quantities which display as \\spad{'yi}. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) $) "\\spad{zerosOf(p)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable.")) (|zeroOf| (($ $ (|Symbol|)) "\\spad{zeroOf(p,{} y)} returns \\spad{y} such that \\spad{p(y) = 0}. The value \\spad{y} is expressed in terms of radicals if possible,{}and otherwise as an implicit algebraic quantity which displays as \\spad{'y}.") (($ $) "\\spad{zeroOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. The value \\spad{y} is expressed in terms of radicals if possible,{}and otherwise as an implicit algebraic quantity. Error: if \\spad{p} has more than one variable.")) (|rootsOf| (((|List| $) $ (|Symbol|)) "\\spad{rootsOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}; The returned roots display as \\spad{'y1},{}...,{}\\spad{'yn}. Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) $) "\\spad{rootsOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}; Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable \\spad{y}.")) (|rootOf| (($ $ (|Symbol|)) "\\spad{rootOf(p,{}y)} returns \\spad{y} such that \\spad{p(y) = 0}. The object returned displays as \\spad{'y}.") (($ $) "\\spad{rootOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. Error: if \\spad{p} has more than one variable \\spad{y}.")))
@@ -46,23 +46,23 @@ NIL
NIL
(-29 R)
((|constructor| (NIL "Model for algebraically closed function spaces.")) (|zerosOf| (((|List| $) $ (|Symbol|)) "\\spad{zerosOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible,{} and otherwise as implicit algebraic quantities which display as \\spad{'yi}. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) $) "\\spad{zerosOf(p)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable.")) (|zeroOf| (($ $ (|Symbol|)) "\\spad{zeroOf(p,{} y)} returns \\spad{y} such that \\spad{p(y) = 0}. The value \\spad{y} is expressed in terms of radicals if possible,{}and otherwise as an implicit algebraic quantity which displays as \\spad{'y}.") (($ $) "\\spad{zeroOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. The value \\spad{y} is expressed in terms of radicals if possible,{}and otherwise as an implicit algebraic quantity. Error: if \\spad{p} has more than one variable.")) (|rootsOf| (((|List| $) $ (|Symbol|)) "\\spad{rootsOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}; The returned roots display as \\spad{'y1},{}...,{}\\spad{'yn}. Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) $) "\\spad{rootsOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}; Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable \\spad{y}.")) (|rootOf| (($ $ (|Symbol|)) "\\spad{rootOf(p,{}y)} returns \\spad{y} such that \\spad{p(y) = 0}. The object returned displays as \\spad{'y}.") (($ $) "\\spad{rootOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. Error: if \\spad{p} has more than one variable \\spad{y}.")))
-((-4245 . T) (-4243 . T) (-4242 . T) ((-4250 "*") . T) (-4241 . T) (-4246 . T) (-4240 . T) (-2500 . T))
+((-4247 . T) (-4245 . T) (-4244 . T) ((-4252 "*") . T) (-4243 . T) (-4248 . T) (-4242 . T) (-2137 . T))
NIL
(-30)
((|constructor| (NIL "\\indented{1}{Plot a NON-SINGULAR plane algebraic curve \\spad{p}(\\spad{x},{}\\spad{y}) = 0.} Author: Clifton \\spad{J}. Williamson Date Created: Fall 1988 Date Last Updated: 27 April 1990 Keywords: algebraic curve,{} non-singular,{} plot Examples: References:")) (|refine| (($ $ (|DoubleFloat|)) "\\spad{refine(p,{}x)} \\undocumented{}")) (|makeSketch| (($ (|Polynomial| (|Integer|)) (|Symbol|) (|Symbol|) (|Segment| (|Fraction| (|Integer|))) (|Segment| (|Fraction| (|Integer|)))) "\\spad{makeSketch(p,{}x,{}y,{}a..b,{}c..d)} creates an ACPLOT of the curve \\spad{p = 0} in the region {\\em a <= x <= b,{} c <= y <= d}. More specifically,{} 'makeSketch' plots a non-singular algebraic curve \\spad{p = 0} in an rectangular region {\\em xMin <= x <= xMax},{} {\\em yMin <= y <= yMax}. The user inputs \\spad{makeSketch(p,{}x,{}y,{}xMin..xMax,{}yMin..yMax)}. Here \\spad{p} is a polynomial in the variables \\spad{x} and \\spad{y} with integer coefficients (\\spad{p} belongs to the domain \\spad{Polynomial Integer}). The case where \\spad{p} is a polynomial in only one of the variables is allowed. The variables \\spad{x} and \\spad{y} are input to specify the the coordinate axes. The horizontal axis is the \\spad{x}-axis and the vertical axis is the \\spad{y}-axis. The rational numbers xMin,{}...,{}yMax specify the boundaries of the region in which the curve is to be plotted.")))
NIL
NIL
-(-31 R -3894)
+(-31 R -3576)
((|constructor| (NIL "This package provides algebraic functions over an integral domain.")) (|iroot| ((|#2| |#1| (|Integer|)) "\\spad{iroot(p,{} n)} should be a non-exported function.")) (|definingPolynomial| ((|#2| |#2|) "\\spad{definingPolynomial(f)} returns the defining polynomial of \\spad{f} as an element of \\spad{F}. Error: if \\spad{f} is not a kernel.")) (|minPoly| (((|SparseUnivariatePolynomial| |#2|) (|Kernel| |#2|)) "\\spad{minPoly(k)} returns the defining polynomial of \\spad{k}.")) (** ((|#2| |#2| (|Fraction| (|Integer|))) "\\spad{x ** q} is \\spad{x} raised to the rational power \\spad{q}.")) (|droot| (((|OutputForm|) (|List| |#2|)) "\\spad{droot(l)} should be a non-exported function.")) (|inrootof| ((|#2| (|SparseUnivariatePolynomial| |#2|) |#2|) "\\spad{inrootof(p,{} x)} should be a non-exported function.")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(op)} is \\spad{true} if \\spad{op} is an algebraic operator,{} that is,{} an \\spad{n}th root or implicit algebraic operator.")) (|operator| (((|BasicOperator|) (|BasicOperator|)) "\\spad{operator(op)} returns a copy of \\spad{op} with the domain-dependent properties appropriate for \\spad{F}. Error: if \\spad{op} is not an algebraic operator,{} that is,{} an \\spad{n}th root or implicit algebraic operator.")) (|rootOf| ((|#2| (|SparseUnivariatePolynomial| |#2|) (|Symbol|)) "\\spad{rootOf(p,{} y)} returns \\spad{y} such that \\spad{p(y) = 0}. The object returned displays as \\spad{'y}.")))
NIL
-((|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))))
+((|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))))
(-32 S)
((|constructor| (NIL "The notion of aggregate serves to model any data structure aggregate,{} designating any collection of objects,{} with heterogenous or homogeneous members,{} with a finite or infinite number of members,{} explicitly or implicitly represented. An aggregate can in principle represent everything from a string of characters to abstract sets such as \"the set of \\spad{x} satisfying relation {\\em r(x)}\" An attribute \\spadatt{finiteAggregate} is used to assert that a domain has a finite number of elements.")) (|#| (((|NonNegativeInteger|) $) "\\spad{\\# u} returns the number of items in \\spad{u}.")) (|sample| (($) "\\spad{sample yields} a value of type \\%")) (|size?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{size?(u,{}n)} tests if \\spad{u} has exactly \\spad{n} elements.")) (|more?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{more?(u,{}n)} tests if \\spad{u} has greater than \\spad{n} elements.")) (|less?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{less?(u,{}n)} tests if \\spad{u} has less than \\spad{n} elements.")) (|empty?| (((|Boolean|) $) "\\spad{empty?(u)} tests if \\spad{u} has 0 elements.")) (|empty| (($) "\\spad{empty()}\\$\\spad{D} creates an aggregate of type \\spad{D} with 0 elements. Note: The {\\em \\$D} can be dropped if understood by context,{} \\spadignore{e.g.} \\axiom{u: \\spad{D} \\spad{:=} empty()}.")) (|copy| (($ $) "\\spad{copy(u)} returns a top-level (non-recursive) copy of \\spad{u}. Note: for collections,{} \\axiom{copy(\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u}]}.")) (|eq?| (((|Boolean|) $ $) "\\spad{eq?(u,{}v)} tests if \\spad{u} and \\spad{v} are same objects.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4248)))
+((|HasAttribute| |#1| (QUOTE -4250)))
(-33)
((|constructor| (NIL "The notion of aggregate serves to model any data structure aggregate,{} designating any collection of objects,{} with heterogenous or homogeneous members,{} with a finite or infinite number of members,{} explicitly or implicitly represented. An aggregate can in principle represent everything from a string of characters to abstract sets such as \"the set of \\spad{x} satisfying relation {\\em r(x)}\" An attribute \\spadatt{finiteAggregate} is used to assert that a domain has a finite number of elements.")) (|#| (((|NonNegativeInteger|) $) "\\spad{\\# u} returns the number of items in \\spad{u}.")) (|sample| (($) "\\spad{sample yields} a value of type \\%")) (|size?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{size?(u,{}n)} tests if \\spad{u} has exactly \\spad{n} elements.")) (|more?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{more?(u,{}n)} tests if \\spad{u} has greater than \\spad{n} elements.")) (|less?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{less?(u,{}n)} tests if \\spad{u} has less than \\spad{n} elements.")) (|empty?| (((|Boolean|) $) "\\spad{empty?(u)} tests if \\spad{u} has 0 elements.")) (|empty| (($) "\\spad{empty()}\\$\\spad{D} creates an aggregate of type \\spad{D} with 0 elements. Note: The {\\em \\$D} can be dropped if understood by context,{} \\spadignore{e.g.} \\axiom{u: \\spad{D} \\spad{:=} empty()}.")) (|copy| (($ $) "\\spad{copy(u)} returns a top-level (non-recursive) copy of \\spad{u}. Note: for collections,{} \\axiom{copy(\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u}]}.")) (|eq?| (((|Boolean|) $ $) "\\spad{eq?(u,{}v)} tests if \\spad{u} and \\spad{v} are same objects.")))
-((-2500 . T))
+((-2137 . T))
NIL
(-34)
((|constructor| (NIL "Category for the inverse hyperbolic trigonometric functions.")) (|atanh| (($ $) "\\spad{atanh(x)} returns the hyperbolic arc-tangent of \\spad{x}.")) (|asinh| (($ $) "\\spad{asinh(x)} returns the hyperbolic arc-sine of \\spad{x}.")) (|asech| (($ $) "\\spad{asech(x)} returns the hyperbolic arc-secant of \\spad{x}.")) (|acsch| (($ $) "\\spad{acsch(x)} returns the hyperbolic arc-cosecant of \\spad{x}.")) (|acoth| (($ $) "\\spad{acoth(x)} returns the hyperbolic arc-cotangent of \\spad{x}.")) (|acosh| (($ $) "\\spad{acosh(x)} returns the hyperbolic arc-cosine of \\spad{x}.")))
@@ -70,7 +70,7 @@ NIL
NIL
(-35 |Key| |Entry|)
((|constructor| (NIL "An association list is a list of key entry pairs which may be viewed as a table. It is a poor mans version of a table: searching for a key is a linear operation.")) (|assoc| (((|Union| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) "failed") |#1| $) "\\spad{assoc(k,{}u)} returns the element \\spad{x} in association list \\spad{u} stored with key \\spad{k},{} or \"failed\" if \\spad{u} has no key \\spad{k}.")))
-((-4248 . T) (-4249 . T) (-2500 . T))
+((-4250 . T) (-4251 . T) (-2137 . T))
NIL
(-36 S R)
((|constructor| (NIL "The category of associative algebras (modules which are themselves rings). \\blankline")) (|coerce| (($ |#2|) "\\spad{coerce(r)} maps the ring element \\spad{r} to a member of the algebra.")))
@@ -78,20 +78,20 @@ NIL
NIL
(-37 R)
((|constructor| (NIL "The category of associative algebras (modules which are themselves rings). \\blankline")) (|coerce| (($ |#1|) "\\spad{coerce(r)} maps the ring element \\spad{r} to a member of the algebra.")))
-((-4242 . T) (-4243 . T) (-4245 . T))
+((-4244 . T) (-4245 . T) (-4247 . T))
NIL
(-38 UP)
((|constructor| (NIL "Factorization of univariate polynomials with coefficients in \\spadtype{AlgebraicNumber}.")) (|doublyTransitive?| (((|Boolean|) |#1|) "\\spad{doublyTransitive?(p)} is \\spad{true} if \\spad{p} is irreducible over over the field \\spad{K} generated by its coefficients,{} and if \\spad{p(X) / (X - a)} is irreducible over \\spad{K(a)} where \\spad{p(a) = 0}.")) (|split| (((|Factored| |#1|) |#1|) "\\spad{split(p)} returns a prime factorisation of \\spad{p} over its splitting field.")) (|factor| (((|Factored| |#1|) |#1|) "\\spad{factor(p)} returns a prime factorisation of \\spad{p} over the field generated by its coefficients.") (((|Factored| |#1|) |#1| (|List| (|AlgebraicNumber|))) "\\spad{factor(p,{} [a1,{}...,{}an])} returns a prime factorisation of \\spad{p} over the field generated by its coefficients and a1,{}...,{}an.")))
NIL
NIL
-(-39 -3894 UP UPUP -3014)
+(-39 -3576 UP UPUP -3940)
((|constructor| (NIL "Function field defined by \\spad{f}(\\spad{x},{} \\spad{y}) = 0.")) (|knownInfBasis| (((|Void|) (|NonNegativeInteger|)) "\\spad{knownInfBasis(n)} \\undocumented{}")))
-((-4241 |has| (-383 |#2|) (-339)) (-4246 |has| (-383 |#2|) (-339)) (-4240 |has| (-383 |#2|) (-339)) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| (-383 |#2|) (QUOTE (-134))) (|HasCategory| (-383 |#2|) (QUOTE (-136))) (|HasCategory| (-383 |#2|) (QUOTE (-325))) (-3255 (|HasCategory| (-383 |#2|) (QUOTE (-339))) (|HasCategory| (-383 |#2|) (QUOTE (-325)))) (|HasCategory| (-383 |#2|) (QUOTE (-339))) (|HasCategory| (-383 |#2|) (QUOTE (-344))) (-3255 (-12 (|HasCategory| (-383 |#2|) (QUOTE (-211))) (|HasCategory| (-383 |#2|) (QUOTE (-339)))) (|HasCategory| (-383 |#2|) (QUOTE (-325)))) (-3255 (-12 (|HasCategory| (-383 |#2|) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| (-383 |#2|) (QUOTE (-339)))) (-12 (|HasCategory| (-383 |#2|) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| (-383 |#2|) (QUOTE (-325))))) (|HasCategory| (-383 |#2|) (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| (-383 |#2|) (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| (-383 |#2|) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-344))) (-3255 (|HasCategory| (-383 |#2|) (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| (-383 |#2|) (QUOTE (-339)))) (-12 (|HasCategory| (-383 |#2|) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| (-383 |#2|) (QUOTE (-339)))) (-12 (|HasCategory| (-383 |#2|) (QUOTE (-211))) (|HasCategory| (-383 |#2|) (QUOTE (-339)))))
-(-40 R -3894)
+((-4243 |has| (-385 |#2|) (-341)) (-4248 |has| (-385 |#2|) (-341)) (-4242 |has| (-385 |#2|) (-341)) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| (-385 |#2|) (QUOTE (-136))) (|HasCategory| (-385 |#2|) (QUOTE (-138))) (|HasCategory| (-385 |#2|) (QUOTE (-327))) (-3321 (|HasCategory| (-385 |#2|) (QUOTE (-341))) (|HasCategory| (-385 |#2|) (QUOTE (-327)))) (|HasCategory| (-385 |#2|) (QUOTE (-341))) (|HasCategory| (-385 |#2|) (QUOTE (-346))) (-3321 (-12 (|HasCategory| (-385 |#2|) (QUOTE (-213))) (|HasCategory| (-385 |#2|) (QUOTE (-341)))) (|HasCategory| (-385 |#2|) (QUOTE (-327)))) (-3321 (-12 (|HasCategory| (-385 |#2|) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| (-385 |#2|) (QUOTE (-341)))) (-12 (|HasCategory| (-385 |#2|) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| (-385 |#2|) (QUOTE (-327))))) (|HasCategory| (-385 |#2|) (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| (-385 |#2|) (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| (-385 |#2|) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-346))) (-3321 (|HasCategory| (-385 |#2|) (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| (-385 |#2|) (QUOTE (-341)))) (-12 (|HasCategory| (-385 |#2|) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| (-385 |#2|) (QUOTE (-341)))) (-12 (|HasCategory| (-385 |#2|) (QUOTE (-213))) (|HasCategory| (-385 |#2|) (QUOTE (-341)))))
+(-40 R -3576)
((|constructor| (NIL "AlgebraicManipulations provides functions to simplify and expand expressions involving algebraic operators.")) (|rootKerSimp| ((|#2| (|BasicOperator|) |#2| (|NonNegativeInteger|)) "\\spad{rootKerSimp(op,{}f,{}n)} should be local but conditional.")) (|rootSimp| ((|#2| |#2|) "\\spad{rootSimp(f)} transforms every radical of the form \\spad{(a * b**(q*n+r))**(1/n)} appearing in \\spad{f} into \\spad{b**q * (a * b**r)**(1/n)}. This transformation is not in general valid for all complex numbers \\spad{b}.")) (|rootProduct| ((|#2| |#2|) "\\spad{rootProduct(f)} combines every product of the form \\spad{(a**(1/n))**m * (a**(1/s))**t} into a single power of a root of \\spad{a},{} and transforms every radical power of the form \\spad{(a**(1/n))**m} into a simpler form.")) (|rootPower| ((|#2| |#2|) "\\spad{rootPower(f)} transforms every radical power of the form \\spad{(a**(1/n))**m} into a simpler form if \\spad{m} and \\spad{n} have a common factor.")) (|ratPoly| (((|SparseUnivariatePolynomial| |#2|) |#2|) "\\spad{ratPoly(f)} returns a polynomial \\spad{p} such that \\spad{p} has no algebraic coefficients,{} and \\spad{p(f) = 0}.")) (|ratDenom| ((|#2| |#2| (|List| (|Kernel| |#2|))) "\\spad{ratDenom(f,{} [a1,{}...,{}an])} removes the \\spad{ai}\\spad{'s} which are algebraic from the denominators in \\spad{f}.") ((|#2| |#2| (|List| |#2|)) "\\spad{ratDenom(f,{} [a1,{}...,{}an])} removes the \\spad{ai}\\spad{'s} which are algebraic kernels from the denominators in \\spad{f}.") ((|#2| |#2| |#2|) "\\spad{ratDenom(f,{} a)} removes \\spad{a} from the denominators in \\spad{f} if \\spad{a} is an algebraic kernel.") ((|#2| |#2|) "\\spad{ratDenom(f)} rationalizes the denominators appearing in \\spad{f} by moving all the algebraic quantities into the numerators.")) (|rootSplit| ((|#2| |#2|) "\\spad{rootSplit(f)} transforms every radical of the form \\spad{(a/b)**(1/n)} appearing in \\spad{f} into \\spad{a**(1/n) / b**(1/n)}. This transformation is not in general valid for all complex numbers \\spad{a} and \\spad{b}.")) (|coerce| (($ (|SparseMultivariatePolynomial| |#1| (|Kernel| $))) "\\spad{coerce(x)} \\undocumented")) (|denom| (((|SparseMultivariatePolynomial| |#1| (|Kernel| $)) $) "\\spad{denom(x)} \\undocumented")) (|numer| (((|SparseMultivariatePolynomial| |#1| (|Kernel| $)) $) "\\spad{numer(x)} \\undocumented")))
NIL
-((-12 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -406) (|devaluate| |#1|)))))
+((-12 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -408) (|devaluate| |#1|)))))
(-41 OV E P)
((|constructor| (NIL "This package factors multivariate polynomials over the domain of \\spadtype{AlgebraicNumber} by allowing the user to specify a list of algebraic numbers generating the particular extension to factor over.")) (|factor| (((|Factored| (|SparseUnivariatePolynomial| |#3|)) (|SparseUnivariatePolynomial| |#3|) (|List| (|AlgebraicNumber|))) "\\spad{factor(p,{}lan)} factors the polynomial \\spad{p} over the extension generated by the algebraic numbers given by the list \\spad{lan}. \\spad{p} is presented as a univariate polynomial with multivariate coefficients.") (((|Factored| |#3|) |#3| (|List| (|AlgebraicNumber|))) "\\spad{factor(p,{}lan)} factors the polynomial \\spad{p} over the extension generated by the algebraic numbers given by the list \\spad{lan}.")))
NIL
@@ -99,34 +99,34 @@ NIL
(-42 R A)
((|constructor| (NIL "AlgebraPackage assembles a variety of useful functions for general algebras.")) (|basis| (((|Vector| |#2|) (|Vector| |#2|)) "\\spad{basis(va)} selects a basis from the elements of \\spad{va}.")) (|radicalOfLeftTraceForm| (((|List| |#2|)) "\\spad{radicalOfLeftTraceForm()} returns basis for null space of \\spad{leftTraceMatrix()},{} if the algebra is associative,{} alternative or a Jordan algebra,{} then this space equals the radical (maximal nil ideal) of the algebra.")) (|basisOfCentroid| (((|List| (|Matrix| |#1|))) "\\spad{basisOfCentroid()} returns a basis of the centroid,{} \\spadignore{i.e.} the endomorphism ring of \\spad{A} considered as \\spad{(A,{}A)}-bimodule.")) (|basisOfRightNucloid| (((|List| (|Matrix| |#1|))) "\\spad{basisOfRightNucloid()} returns a basis of the space of endomorphisms of \\spad{A} as left module. Note: right nucloid coincides with right nucleus if \\spad{A} has a unit.")) (|basisOfLeftNucloid| (((|List| (|Matrix| |#1|))) "\\spad{basisOfLeftNucloid()} returns a basis of the space of endomorphisms of \\spad{A} as right module. Note: left nucloid coincides with left nucleus if \\spad{A} has a unit.")) (|basisOfCenter| (((|List| |#2|)) "\\spad{basisOfCenter()} returns a basis of the space of all \\spad{x} of \\spad{A} satisfying \\spad{commutator(x,{}a) = 0} and \\spad{associator(x,{}a,{}b) = associator(a,{}x,{}b) = associator(a,{}b,{}x) = 0} for all \\spad{a},{}\\spad{b} in \\spad{A}.")) (|basisOfNucleus| (((|List| |#2|)) "\\spad{basisOfNucleus()} returns a basis of the space of all \\spad{x} of \\spad{A} satisfying \\spad{associator(x,{}a,{}b) = associator(a,{}x,{}b) = associator(a,{}b,{}x) = 0} for all \\spad{a},{}\\spad{b} in \\spad{A}.")) (|basisOfMiddleNucleus| (((|List| |#2|)) "\\spad{basisOfMiddleNucleus()} returns a basis of the space of all \\spad{x} of \\spad{A} satisfying \\spad{0 = associator(a,{}x,{}b)} for all \\spad{a},{}\\spad{b} in \\spad{A}.")) (|basisOfRightNucleus| (((|List| |#2|)) "\\spad{basisOfRightNucleus()} returns a basis of the space of all \\spad{x} of \\spad{A} satisfying \\spad{0 = associator(a,{}b,{}x)} for all \\spad{a},{}\\spad{b} in \\spad{A}.")) (|basisOfLeftNucleus| (((|List| |#2|)) "\\spad{basisOfLeftNucleus()} returns a basis of the space of all \\spad{x} of \\spad{A} satisfying \\spad{0 = associator(x,{}a,{}b)} for all \\spad{a},{}\\spad{b} in \\spad{A}.")) (|basisOfRightAnnihilator| (((|List| |#2|) |#2|) "\\spad{basisOfRightAnnihilator(a)} returns a basis of the space of all \\spad{x} of \\spad{A} satisfying \\spad{0 = a*x}.")) (|basisOfLeftAnnihilator| (((|List| |#2|) |#2|) "\\spad{basisOfLeftAnnihilator(a)} returns a basis of the space of all \\spad{x} of \\spad{A} satisfying \\spad{0 = x*a}.")) (|basisOfCommutingElements| (((|List| |#2|)) "\\spad{basisOfCommutingElements()} returns a basis of the space of all \\spad{x} of \\spad{A} satisfying \\spad{0 = commutator(x,{}a)} for all \\spad{a} in \\spad{A}.")) (|biRank| (((|NonNegativeInteger|) |#2|) "\\spad{biRank(x)} determines the number of linearly independent elements in \\spad{x},{} \\spad{x*bi},{} \\spad{bi*x},{} \\spad{bi*x*bj},{} \\spad{i,{}j=1,{}...,{}n},{} where \\spad{b=[b1,{}...,{}bn]} is a basis. Note: if \\spad{A} has a unit,{} then \\spadfunFrom{doubleRank}{AlgebraPackage},{} \\spadfunFrom{weakBiRank}{AlgebraPackage} and \\spadfunFrom{biRank}{AlgebraPackage} coincide.")) (|weakBiRank| (((|NonNegativeInteger|) |#2|) "\\spad{weakBiRank(x)} determines the number of linearly independent elements in the \\spad{bi*x*bj},{} \\spad{i,{}j=1,{}...,{}n},{} where \\spad{b=[b1,{}...,{}bn]} is a basis.")) (|doubleRank| (((|NonNegativeInteger|) |#2|) "\\spad{doubleRank(x)} determines the number of linearly independent elements in \\spad{b1*x},{}...,{}\\spad{x*bn},{} where \\spad{b=[b1,{}...,{}bn]} is a basis.")) (|rightRank| (((|NonNegativeInteger|) |#2|) "\\spad{rightRank(x)} determines the number of linearly independent elements in \\spad{b1*x},{}...,{}\\spad{bn*x},{} where \\spad{b=[b1,{}...,{}bn]} is a basis.")) (|leftRank| (((|NonNegativeInteger|) |#2|) "\\spad{leftRank(x)} determines the number of linearly independent elements in \\spad{x*b1},{}...,{}\\spad{x*bn},{} where \\spad{b=[b1,{}...,{}bn]} is a basis.")))
NIL
-((|HasCategory| |#1| (QUOTE (-284))))
+((|HasCategory| |#1| (QUOTE (-286))))
(-43 R |n| |ls| |gamma|)
((|constructor| (NIL "AlgebraGivenByStructuralConstants implements finite rank algebras over a commutative ring,{} given by the structural constants \\spad{gamma} with respect to a fixed basis \\spad{[a1,{}..,{}an]},{} where \\spad{gamma} is an \\spad{n}-vector of \\spad{n} by \\spad{n} matrices \\spad{[(gammaijk) for k in 1..rank()]} defined by \\spad{\\spad{ai} * aj = gammaij1 * a1 + ... + gammaijn * an}. The symbols for the fixed basis have to be given as a list of symbols.")) (|coerce| (($ (|Vector| |#1|)) "\\spad{coerce(v)} converts a vector to a member of the algebra by forming a linear combination with the basis element. Note: the vector is assumed to have length equal to the dimension of the algebra.")))
-((-4245 |has| |#1| (-515)) (-4243 . T) (-4242 . T))
-((|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515))))
+((-4247 |has| |#1| (-517)) (-4245 . T) (-4244 . T))
+((|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517))))
(-44 |Key| |Entry|)
((|constructor| (NIL "\\spadtype{AssociationList} implements association lists. These may be viewed as lists of pairs where the first part is a key and the second is the stored value. For example,{} the key might be a string with a persons employee identification number and the value might be a record with personnel data.")))
-((-4248 . T) (-4249 . T))
-((-3255 (-12 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-786))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -286) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2402) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2746) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -286) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2402) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2746) (|devaluate| |#2|))))))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-786))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -564) (QUOTE (-499)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-786))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| |#2| (QUOTE (-1016)))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| |#2| (QUOTE (-1016)))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794)))) (-12 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -286) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2402) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2746) (|devaluate| |#2|)))))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))))
+((-4250 . T) (-4251 . T))
+((-3321 (-12 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-788))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -288) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2019) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1221) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -288) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2019) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1221) (|devaluate| |#2|))))))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-788))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -566) (QUOTE (-501)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-788))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1018)))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796)))) (-12 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -288) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2019) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1221) (|devaluate| |#2|)))))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))))
(-45 S R E)
((|constructor| (NIL "Abelian monoid ring elements (not necessarily of finite support) of this ring are of the form formal SUM (r_i * e_i) where the r_i are coefficents and the e_i,{} elements of the ordered abelian monoid,{} are thought of as exponents or monomials. The monomials commute with each other,{} and with the coefficients (which themselves may or may not be commutative). See \\spadtype{FiniteAbelianMonoidRing} for the case of finite support a useful common model for polynomials and power series. Conceptually at least,{} only the non-zero terms are ever operated on.")) (/ (($ $ |#2|) "\\spad{p/c} divides \\spad{p} by the coefficient \\spad{c}.")) (|coefficient| ((|#2| $ |#3|) "\\spad{coefficient(p,{}e)} extracts the coefficient of the monomial with exponent \\spad{e} from polynomial \\spad{p},{} or returns zero if exponent is not present.")) (|reductum| (($ $) "\\spad{reductum(u)} returns \\spad{u} minus its leading monomial returns zero if handed the zero element.")) (|monomial| (($ |#2| |#3|) "\\spad{monomial(r,{}e)} makes a term from a coefficient \\spad{r} and an exponent \\spad{e}.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(p)} tests if \\spad{p} is a single monomial.")) (|map| (($ (|Mapping| |#2| |#2|) $) "\\spad{map(fn,{}u)} maps function \\spad{fn} onto the coefficients of the non-zero monomials of \\spad{u}.")) (|degree| ((|#3| $) "\\spad{degree(p)} returns the maximum of the exponents of the terms of \\spad{p}.")) (|leadingMonomial| (($ $) "\\spad{leadingMonomial(p)} returns the monomial of \\spad{p} with the highest degree.")) (|leadingCoefficient| ((|#2| $) "\\spad{leadingCoefficient(p)} returns the coefficient highest degree term of \\spad{p}.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-339))))
+((|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-138))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-341))))
(-46 R E)
((|constructor| (NIL "Abelian monoid ring elements (not necessarily of finite support) of this ring are of the form formal SUM (r_i * e_i) where the r_i are coefficents and the e_i,{} elements of the ordered abelian monoid,{} are thought of as exponents or monomials. The monomials commute with each other,{} and with the coefficients (which themselves may or may not be commutative). See \\spadtype{FiniteAbelianMonoidRing} for the case of finite support a useful common model for polynomials and power series. Conceptually at least,{} only the non-zero terms are ever operated on.")) (/ (($ $ |#1|) "\\spad{p/c} divides \\spad{p} by the coefficient \\spad{c}.")) (|coefficient| ((|#1| $ |#2|) "\\spad{coefficient(p,{}e)} extracts the coefficient of the monomial with exponent \\spad{e} from polynomial \\spad{p},{} or returns zero if exponent is not present.")) (|reductum| (($ $) "\\spad{reductum(u)} returns \\spad{u} minus its leading monomial returns zero if handed the zero element.")) (|monomial| (($ |#1| |#2|) "\\spad{monomial(r,{}e)} makes a term from a coefficient \\spad{r} and an exponent \\spad{e}.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(p)} tests if \\spad{p} is a single monomial.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(fn,{}u)} maps function \\spad{fn} onto the coefficients of the non-zero monomials of \\spad{u}.")) (|degree| ((|#2| $) "\\spad{degree(p)} returns the maximum of the exponents of the terms of \\spad{p}.")) (|leadingMonomial| (($ $) "\\spad{leadingMonomial(p)} returns the monomial of \\spad{p} with the highest degree.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(p)} returns the coefficient highest degree term of \\spad{p}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4242 . T) (-4243 . T) (-4245 . T))
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
(-47)
((|constructor| (NIL "Algebraic closure of the rational numbers,{} with mathematical =")) (|norm| (($ $ (|List| (|Kernel| $))) "\\spad{norm(f,{}l)} computes the norm of the algebraic number \\spad{f} with respect to the extension generated by kernels \\spad{l}") (($ $ (|Kernel| $)) "\\spad{norm(f,{}k)} computes the norm of the algebraic number \\spad{f} with respect to the extension generated by kernel \\spad{k}") (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|List| (|Kernel| $))) "\\spad{norm(p,{}l)} computes the norm of the polynomial \\spad{p} with respect to the extension generated by kernels \\spad{l}") (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|Kernel| $)) "\\spad{norm(p,{}k)} computes the norm of the polynomial \\spad{p} with respect to the extension generated by kernel \\spad{k}")) (|reduce| (($ $) "\\spad{reduce(f)} simplifies all the unreduced algebraic numbers present in \\spad{f} by applying their defining relations.")) (|denom| (((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $)) $) "\\spad{denom(f)} returns the denominator of \\spad{f} viewed as a polynomial in the kernels over \\spad{Z}.")) (|numer| (((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $)) $) "\\spad{numer(f)} returns the numerator of \\spad{f} viewed as a polynomial in the kernels over \\spad{Z}.")) (|coerce| (($ (|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $))) "\\spad{coerce(p)} returns \\spad{p} viewed as an algebraic number.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| $ (QUOTE (-973))) (|HasCategory| $ (LIST (QUOTE -964) (QUOTE (-523)))))
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| $ (QUOTE (-975))) (|HasCategory| $ (LIST (QUOTE -966) (QUOTE (-525)))))
(-48)
((|constructor| (NIL "This domain implements anonymous functions")) (|body| (((|Syntax|) $) "\\spad{body(f)} returns the body of the unnamed function \\spad{`f'}.")) (|parameters| (((|List| (|Symbol|)) $) "\\spad{parameters(f)} returns the list of parameters bound by \\spad{`f'}.")))
NIL
NIL
(-49 R |lVar|)
((|constructor| (NIL "The domain of antisymmetric polynomials.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,{}p)} changes each coefficient of \\spad{p} by the application of \\spad{f}.")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(p)} returns the homogeneous degree of \\spad{p}.")) (|retractable?| (((|Boolean|) $) "\\spad{retractable?(p)} tests if \\spad{p} is a 0-form,{} \\spadignore{i.e.} if degree(\\spad{p}) = 0.")) (|homogeneous?| (((|Boolean|) $) "\\spad{homogeneous?(p)} tests if all of the terms of \\spad{p} have the same degree.")) (|exp| (($ (|List| (|Integer|))) "\\spad{exp([i1,{}...in])} returns \\spad{u_1\\^{i_1} ... u_n\\^{i_n}}")) (|generator| (($ (|NonNegativeInteger|)) "\\spad{generator(n)} returns the \\spad{n}th multiplicative generator,{} a basis term.")) (|coefficient| ((|#1| $ $) "\\spad{coefficient(p,{}u)} returns the coefficient of the term in \\spad{p} containing the basis term \\spad{u} if such a term exists,{} and 0 otherwise. Error: if the second argument \\spad{u} is not a basis element.")) (|reductum| (($ $) "\\spad{reductum(p)},{} where \\spad{p} is an antisymmetric polynomial,{} returns \\spad{p} minus the leading term of \\spad{p} if \\spad{p} has at least two terms,{} and 0 otherwise.")) (|leadingBasisTerm| (($ $) "\\spad{leadingBasisTerm(p)} returns the leading basis term of antisymmetric polynomial \\spad{p}.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(p)} returns the leading coefficient of antisymmetric polynomial \\spad{p}.")))
-((-4245 . T))
+((-4247 . T))
NIL
(-50 S)
((|constructor| (NIL "\\spadtype{AnyFunctions1} implements several utility functions for working with \\spadtype{Any}. These functions are used to go back and forth between objects of \\spadtype{Any} and objects of other types.")) (|retract| ((|#1| (|Any|)) "\\spad{retract(a)} tries to convert \\spad{a} into an object of type \\spad{S}. If possible,{} it returns the object. Error: if no such retraction is possible.")) (|retractable?| (((|Boolean|) (|Any|)) "\\spad{retractable?(a)} tests if \\spad{a} can be converted into an object of type \\spad{S}.")) (|retractIfCan| (((|Union| |#1| "failed") (|Any|)) "\\spad{retractIfCan(a)} tries change \\spad{a} into an object of type \\spad{S}. If it can,{} then such an object is returned. Otherwise,{} \"failed\" is returned.")) (|coerce| (((|Any|) |#1|) "\\spad{coerce(s)} creates an object of \\spadtype{Any} from the object \\spad{s} of type \\spad{S}.")))
@@ -140,7 +140,7 @@ NIL
((|constructor| (NIL "\\spad{ApplyUnivariateSkewPolynomial} (internal) allows univariate skew polynomials to be applied to appropriate modules.")) (|apply| ((|#2| |#3| (|Mapping| |#2| |#2|) |#2|) "\\spad{apply(p,{} f,{} m)} returns \\spad{p(m)} where the action is given by \\spad{x m = f(m)}. \\spad{f} must be an \\spad{R}-pseudo linear map on \\spad{M}.")))
NIL
NIL
-(-53 |Base| R -3894)
+(-53 |Base| R -3576)
((|constructor| (NIL "This package apply rewrite rules to expressions,{} calling the pattern matcher.")) (|localUnquote| ((|#3| |#3| (|List| (|Symbol|))) "\\spad{localUnquote(f,{}ls)} is a local function.")) (|applyRules| ((|#3| (|List| (|RewriteRule| |#1| |#2| |#3|)) |#3| (|PositiveInteger|)) "\\spad{applyRules([r1,{}...,{}rn],{} expr,{} n)} applies the rules \\spad{r1},{}...,{}\\spad{rn} to \\spad{f} a most \\spad{n} times.") ((|#3| (|List| (|RewriteRule| |#1| |#2| |#3|)) |#3|) "\\spad{applyRules([r1,{}...,{}rn],{} expr)} applies the rules \\spad{r1},{}...,{}\\spad{rn} to \\spad{f} an unlimited number of times,{} \\spadignore{i.e.} until none of \\spad{r1},{}...,{}\\spad{rn} is applicable to the expression.")))
NIL
NIL
@@ -150,7 +150,7 @@ NIL
NIL
(-55 R |Row| |Col|)
((|constructor| (NIL "\\indented{1}{TwoDimensionalArrayCategory is a general array category which} allows different representations and indexing schemes. Rows and columns may be extracted with rows returned as objects of type Row and columns returned as objects of type Col. The index of the 'first' row may be obtained by calling the function 'minRowIndex'. The index of the 'first' column may be obtained by calling the function 'minColIndex'. The index of the first element of a 'Row' is the same as the index of the first column in an array and vice versa.")) (|map!| (($ (|Mapping| |#1| |#1|) $) "\\spad{map!(f,{}a)} assign \\spad{a(i,{}j)} to \\spad{f(a(i,{}j))} for all \\spad{i,{} j}")) (|map| (($ (|Mapping| |#1| |#1| |#1|) $ $ |#1|) "\\spad{map(f,{}a,{}b,{}r)} returns \\spad{c},{} where \\spad{c(i,{}j) = f(a(i,{}j),{}b(i,{}j))} when both \\spad{a(i,{}j)} and \\spad{b(i,{}j)} exist; else \\spad{c(i,{}j) = f(r,{} b(i,{}j))} when \\spad{a(i,{}j)} does not exist; else \\spad{c(i,{}j) = f(a(i,{}j),{}r)} when \\spad{b(i,{}j)} does not exist; otherwise \\spad{c(i,{}j) = f(r,{}r)}.") (($ (|Mapping| |#1| |#1| |#1|) $ $) "\\spad{map(f,{}a,{}b)} returns \\spad{c},{} where \\spad{c(i,{}j) = f(a(i,{}j),{}b(i,{}j))} for all \\spad{i,{} j}") (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,{}a)} returns \\spad{b},{} where \\spad{b(i,{}j) = f(a(i,{}j))} for all \\spad{i,{} j}")) (|setColumn!| (($ $ (|Integer|) |#3|) "\\spad{setColumn!(m,{}j,{}v)} sets to \\spad{j}th column of \\spad{m} to \\spad{v}")) (|setRow!| (($ $ (|Integer|) |#2|) "\\spad{setRow!(m,{}i,{}v)} sets to \\spad{i}th row of \\spad{m} to \\spad{v}")) (|qsetelt!| ((|#1| $ (|Integer|) (|Integer|) |#1|) "\\spad{qsetelt!(m,{}i,{}j,{}r)} sets the element in the \\spad{i}th row and \\spad{j}th column of \\spad{m} to \\spad{r} NO error check to determine if indices are in proper ranges")) (|setelt| ((|#1| $ (|Integer|) (|Integer|) |#1|) "\\spad{setelt(m,{}i,{}j,{}r)} sets the element in the \\spad{i}th row and \\spad{j}th column of \\spad{m} to \\spad{r} error check to determine if indices are in proper ranges")) (|parts| (((|List| |#1|) $) "\\spad{parts(m)} returns a list of the elements of \\spad{m} in row major order")) (|column| ((|#3| $ (|Integer|)) "\\spad{column(m,{}j)} returns the \\spad{j}th column of \\spad{m} error check to determine if index is in proper ranges")) (|row| ((|#2| $ (|Integer|)) "\\spad{row(m,{}i)} returns the \\spad{i}th row of \\spad{m} error check to determine if index is in proper ranges")) (|qelt| ((|#1| $ (|Integer|) (|Integer|)) "\\spad{qelt(m,{}i,{}j)} returns the element in the \\spad{i}th row and \\spad{j}th column of the array \\spad{m} NO error check to determine if indices are in proper ranges")) (|elt| ((|#1| $ (|Integer|) (|Integer|) |#1|) "\\spad{elt(m,{}i,{}j,{}r)} returns the element in the \\spad{i}th row and \\spad{j}th column of the array \\spad{m},{} if \\spad{m} has an \\spad{i}th row and a \\spad{j}th column,{} and returns \\spad{r} otherwise") ((|#1| $ (|Integer|) (|Integer|)) "\\spad{elt(m,{}i,{}j)} returns the element in the \\spad{i}th row and \\spad{j}th column of the array \\spad{m} error check to determine if indices are in proper ranges")) (|ncols| (((|NonNegativeInteger|) $) "\\spad{ncols(m)} returns the number of columns in the array \\spad{m}")) (|nrows| (((|NonNegativeInteger|) $) "\\spad{nrows(m)} returns the number of rows in the array \\spad{m}")) (|maxColIndex| (((|Integer|) $) "\\spad{maxColIndex(m)} returns the index of the 'last' column of the array \\spad{m}")) (|minColIndex| (((|Integer|) $) "\\spad{minColIndex(m)} returns the index of the 'first' column of the array \\spad{m}")) (|maxRowIndex| (((|Integer|) $) "\\spad{maxRowIndex(m)} returns the index of the 'last' row of the array \\spad{m}")) (|minRowIndex| (((|Integer|) $) "\\spad{minRowIndex(m)} returns the index of the 'first' row of the array \\spad{m}")) (|fill!| (($ $ |#1|) "\\spad{fill!(m,{}r)} fills \\spad{m} with \\spad{r}\\spad{'s}")) (|new| (($ (|NonNegativeInteger|) (|NonNegativeInteger|) |#1|) "\\spad{new(m,{}n,{}r)} is an \\spad{m}-by-\\spad{n} array all of whose entries are \\spad{r}")) (|finiteAggregate| ((|attribute|) "two-dimensional arrays are finite")) (|shallowlyMutable| ((|attribute|) "one may destructively alter arrays")))
-((-4248 . T) (-4249 . T) (-2500 . T))
+((-4250 . T) (-4251 . T) (-2137 . T))
NIL
(-56 A B)
((|constructor| (NIL "\\indented{1}{This package provides tools for operating on one-dimensional arrays} with unary and binary functions involving different underlying types")) (|map| (((|OneDimensionalArray| |#2|) (|Mapping| |#2| |#1|) (|OneDimensionalArray| |#1|)) "\\spad{map(f,{}a)} applies function \\spad{f} to each member of one-dimensional array \\spad{a} resulting in a new one-dimensional array over a possibly different underlying domain.")) (|reduce| ((|#2| (|Mapping| |#2| |#1| |#2|) (|OneDimensionalArray| |#1|) |#2|) "\\spad{reduce(f,{}a,{}r)} applies function \\spad{f} to each successive element of the one-dimensional array \\spad{a} and an accumulant initialized to \\spad{r}. For example,{} \\spad{reduce(_+\\$Integer,{}[1,{}2,{}3],{}0)} does \\spad{3+(2+(1+0))}. Note: third argument \\spad{r} may be regarded as the identity element for the function \\spad{f}.")) (|scan| (((|OneDimensionalArray| |#2|) (|Mapping| |#2| |#1| |#2|) (|OneDimensionalArray| |#1|) |#2|) "\\spad{scan(f,{}a,{}r)} successively applies \\spad{reduce(f,{}x,{}r)} to more and more leading sub-arrays \\spad{x} of one-dimensional array \\spad{a}. More precisely,{} if \\spad{a} is \\spad{[a1,{}a2,{}...]},{} then \\spad{scan(f,{}a,{}r)} returns \\spad{[reduce(f,{}[a1],{}r),{}reduce(f,{}[a1,{}a2],{}r),{}...]}.")))
@@ -158,65 +158,65 @@ NIL
NIL
(-57 S)
((|constructor| (NIL "This is the domain of 1-based one dimensional arrays")) (|oneDimensionalArray| (($ (|NonNegativeInteger|) |#1|) "\\spad{oneDimensionalArray(n,{}s)} creates an array from \\spad{n} copies of element \\spad{s}") (($ (|List| |#1|)) "\\spad{oneDimensionalArray(l)} creates an array from a list of elements \\spad{l}")))
-((-4249 . T) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (-3255 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016)))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
+((-4251 . T) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (-3321 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018)))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
(-58 R)
((|constructor| (NIL "\\indented{1}{A TwoDimensionalArray is a two dimensional array with} 1-based indexing for both rows and columns.")) (|shallowlyMutable| ((|attribute|) "One may destructively alter TwoDimensionalArray\\spad{'s}.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-59 -1522)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-59 -2400)
((|constructor| (NIL "\\spadtype{ASP10} produces Fortran for Type 10 ASPs,{} needed for NAG routine \\axiomOpFrom{d02kef}{d02Package}. This ASP computes the values of a set of functions,{} for example:\\begin{verbatim} SUBROUTINE COEFFN(P,Q,DQDL,X,ELAM,JINT) DOUBLE PRECISION ELAM,P,Q,X,DQDL INTEGER JINT P=1.0D0 Q=((-1.0D0*X**3)+ELAM*X*X-2.0D0)/(X*X) DQDL=1.0D0 RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-60 -1522)
+(-60 -2400)
((|constructor| (NIL "\\spadtype{Asp12} produces Fortran for Type 12 ASPs,{} needed for NAG routine \\axiomOpFrom{d02kef}{d02Package} etc.,{} for example:\\begin{verbatim} SUBROUTINE MONIT (MAXIT,IFLAG,ELAM,FINFO) DOUBLE PRECISION ELAM,FINFO(15) INTEGER MAXIT,IFLAG IF(MAXIT.EQ.-1)THEN PRINT*,\"Output from Monit\" ENDIF PRINT*,MAXIT,IFLAG,ELAM,(FINFO(I),I=1,4) RETURN END\\end{verbatim}")) (|outputAsFortran| (((|Void|)) "\\spad{outputAsFortran()} generates the default code for \\spadtype{ASP12}.")))
NIL
NIL
-(-61 -1522)
+(-61 -2400)
((|constructor| (NIL "\\spadtype{Asp19} produces Fortran for Type 19 ASPs,{} evaluating a set of functions and their jacobian at a given point,{} for example:\\begin{verbatim} SUBROUTINE LSFUN2(M,N,XC,FVECC,FJACC,LJC) DOUBLE PRECISION FVECC(M),FJACC(LJC,N),XC(N) INTEGER M,N,LJC INTEGER I,J DO 25003 I=1,LJC DO 25004 J=1,N FJACC(I,J)=0.0D025004 CONTINUE25003 CONTINUE FVECC(1)=((XC(1)-0.14D0)*XC(3)+(15.0D0*XC(1)-2.1D0)*XC(2)+1.0D0)/( &XC(3)+15.0D0*XC(2)) FVECC(2)=((XC(1)-0.18D0)*XC(3)+(7.0D0*XC(1)-1.26D0)*XC(2)+1.0D0)/( &XC(3)+7.0D0*XC(2)) FVECC(3)=((XC(1)-0.22D0)*XC(3)+(4.333333333333333D0*XC(1)-0.953333 &3333333333D0)*XC(2)+1.0D0)/(XC(3)+4.333333333333333D0*XC(2)) FVECC(4)=((XC(1)-0.25D0)*XC(3)+(3.0D0*XC(1)-0.75D0)*XC(2)+1.0D0)/( &XC(3)+3.0D0*XC(2)) FVECC(5)=((XC(1)-0.29D0)*XC(3)+(2.2D0*XC(1)-0.6379999999999999D0)* &XC(2)+1.0D0)/(XC(3)+2.2D0*XC(2)) FVECC(6)=((XC(1)-0.32D0)*XC(3)+(1.666666666666667D0*XC(1)-0.533333 &3333333333D0)*XC(2)+1.0D0)/(XC(3)+1.666666666666667D0*XC(2)) FVECC(7)=((XC(1)-0.35D0)*XC(3)+(1.285714285714286D0*XC(1)-0.45D0)* &XC(2)+1.0D0)/(XC(3)+1.285714285714286D0*XC(2)) FVECC(8)=((XC(1)-0.39D0)*XC(3)+(XC(1)-0.39D0)*XC(2)+1.0D0)/(XC(3)+ &XC(2)) FVECC(9)=((XC(1)-0.37D0)*XC(3)+(XC(1)-0.37D0)*XC(2)+1.285714285714 &286D0)/(XC(3)+XC(2)) FVECC(10)=((XC(1)-0.58D0)*XC(3)+(XC(1)-0.58D0)*XC(2)+1.66666666666 &6667D0)/(XC(3)+XC(2)) FVECC(11)=((XC(1)-0.73D0)*XC(3)+(XC(1)-0.73D0)*XC(2)+2.2D0)/(XC(3) &+XC(2)) FVECC(12)=((XC(1)-0.96D0)*XC(3)+(XC(1)-0.96D0)*XC(2)+3.0D0)/(XC(3) &+XC(2)) FVECC(13)=((XC(1)-1.34D0)*XC(3)+(XC(1)-1.34D0)*XC(2)+4.33333333333 &3333D0)/(XC(3)+XC(2)) FVECC(14)=((XC(1)-2.1D0)*XC(3)+(XC(1)-2.1D0)*XC(2)+7.0D0)/(XC(3)+X &C(2)) FVECC(15)=((XC(1)-4.39D0)*XC(3)+(XC(1)-4.39D0)*XC(2)+15.0D0)/(XC(3 &)+XC(2)) FJACC(1,1)=1.0D0 FJACC(1,2)=-15.0D0/(XC(3)**2+30.0D0*XC(2)*XC(3)+225.0D0*XC(2)**2) FJACC(1,3)=-1.0D0/(XC(3)**2+30.0D0*XC(2)*XC(3)+225.0D0*XC(2)**2) FJACC(2,1)=1.0D0 FJACC(2,2)=-7.0D0/(XC(3)**2+14.0D0*XC(2)*XC(3)+49.0D0*XC(2)**2) FJACC(2,3)=-1.0D0/(XC(3)**2+14.0D0*XC(2)*XC(3)+49.0D0*XC(2)**2) FJACC(3,1)=1.0D0 FJACC(3,2)=((-0.1110223024625157D-15*XC(3))-4.333333333333333D0)/( &XC(3)**2+8.666666666666666D0*XC(2)*XC(3)+18.77777777777778D0*XC(2) &**2) FJACC(3,3)=(0.1110223024625157D-15*XC(2)-1.0D0)/(XC(3)**2+8.666666 &666666666D0*XC(2)*XC(3)+18.77777777777778D0*XC(2)**2) FJACC(4,1)=1.0D0 FJACC(4,2)=-3.0D0/(XC(3)**2+6.0D0*XC(2)*XC(3)+9.0D0*XC(2)**2) FJACC(4,3)=-1.0D0/(XC(3)**2+6.0D0*XC(2)*XC(3)+9.0D0*XC(2)**2) FJACC(5,1)=1.0D0 FJACC(5,2)=((-0.1110223024625157D-15*XC(3))-2.2D0)/(XC(3)**2+4.399 &999999999999D0*XC(2)*XC(3)+4.839999999999998D0*XC(2)**2) FJACC(5,3)=(0.1110223024625157D-15*XC(2)-1.0D0)/(XC(3)**2+4.399999 &999999999D0*XC(2)*XC(3)+4.839999999999998D0*XC(2)**2) FJACC(6,1)=1.0D0 FJACC(6,2)=((-0.2220446049250313D-15*XC(3))-1.666666666666667D0)/( &XC(3)**2+3.333333333333333D0*XC(2)*XC(3)+2.777777777777777D0*XC(2) &**2) FJACC(6,3)=(0.2220446049250313D-15*XC(2)-1.0D0)/(XC(3)**2+3.333333 &333333333D0*XC(2)*XC(3)+2.777777777777777D0*XC(2)**2) FJACC(7,1)=1.0D0 FJACC(7,2)=((-0.5551115123125783D-16*XC(3))-1.285714285714286D0)/( &XC(3)**2+2.571428571428571D0*XC(2)*XC(3)+1.653061224489796D0*XC(2) &**2) FJACC(7,3)=(0.5551115123125783D-16*XC(2)-1.0D0)/(XC(3)**2+2.571428 &571428571D0*XC(2)*XC(3)+1.653061224489796D0*XC(2)**2) FJACC(8,1)=1.0D0 FJACC(8,2)=-1.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(8,3)=-1.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(9,1)=1.0D0 FJACC(9,2)=-1.285714285714286D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)* &*2) FJACC(9,3)=-1.285714285714286D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)* &*2) FJACC(10,1)=1.0D0 FJACC(10,2)=-1.666666666666667D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2) &**2) FJACC(10,3)=-1.666666666666667D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2) &**2) FJACC(11,1)=1.0D0 FJACC(11,2)=-2.2D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(11,3)=-2.2D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(12,1)=1.0D0 FJACC(12,2)=-3.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(12,3)=-3.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(13,1)=1.0D0 FJACC(13,2)=-4.333333333333333D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2) &**2) FJACC(13,3)=-4.333333333333333D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2) &**2) FJACC(14,1)=1.0D0 FJACC(14,2)=-7.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(14,3)=-7.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(15,1)=1.0D0 FJACC(15,2)=-15.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(15,3)=-15.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct|) (|construct| (QUOTE XC)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-62 -1522)
+(-62 -2400)
((|constructor| (NIL "\\spadtype{Asp1} produces Fortran for Type 1 ASPs,{} needed for various NAG routines. Type 1 ASPs take a univariate expression (in the symbol \\spad{X}) and turn it into a Fortran Function like the following:\\begin{verbatim} DOUBLE PRECISION FUNCTION F(X) DOUBLE PRECISION X F=DSIN(X) RETURN END\\end{verbatim}")) (|coerce| (($ (|FortranExpression| (|construct| (QUOTE X)) (|construct|) (|MachineFloat|))) "\\spad{coerce(f)} takes an object from the appropriate instantiation of \\spadtype{FortranExpression} and turns it into an ASP.")))
NIL
NIL
-(-63 -1522)
+(-63 -2400)
((|constructor| (NIL "\\spadtype{Asp20} produces Fortran for Type 20 ASPs,{} for example:\\begin{verbatim} SUBROUTINE QPHESS(N,NROWH,NCOLH,JTHCOL,HESS,X,HX) DOUBLE PRECISION HX(N),X(N),HESS(NROWH,NCOLH) INTEGER JTHCOL,N,NROWH,NCOLH HX(1)=2.0D0*X(1) HX(2)=2.0D0*X(2) HX(3)=2.0D0*X(4)+2.0D0*X(3) HX(4)=2.0D0*X(4)+2.0D0*X(3) HX(5)=2.0D0*X(5) HX(6)=(-2.0D0*X(7))+(-2.0D0*X(6)) HX(7)=(-2.0D0*X(7))+(-2.0D0*X(6)) RETURN END\\end{verbatim}")) (|coerce| (($ (|Matrix| (|FortranExpression| (|construct|) (|construct| (QUOTE X) (QUOTE HESS)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-64 -1522)
+(-64 -2400)
((|constructor| (NIL "\\spadtype{Asp24} produces Fortran for Type 24 ASPs which evaluate a multivariate function at a point (needed for NAG routine \\axiomOpFrom{e04jaf}{e04Package}),{} for example:\\begin{verbatim} SUBROUTINE FUNCT1(N,XC,FC) DOUBLE PRECISION FC,XC(N) INTEGER N FC=10.0D0*XC(4)**4+(-40.0D0*XC(1)*XC(4)**3)+(60.0D0*XC(1)**2+5 &.0D0)*XC(4)**2+((-10.0D0*XC(3))+(-40.0D0*XC(1)**3))*XC(4)+16.0D0*X &C(3)**4+(-32.0D0*XC(2)*XC(3)**3)+(24.0D0*XC(2)**2+5.0D0)*XC(3)**2+ &(-8.0D0*XC(2)**3*XC(3))+XC(2)**4+100.0D0*XC(2)**2+20.0D0*XC(1)*XC( &2)+10.0D0*XC(1)**4+XC(1)**2 RETURN END\\end{verbatim}")) (|coerce| (($ (|FortranExpression| (|construct|) (|construct| (QUOTE XC)) (|MachineFloat|))) "\\spad{coerce(f)} takes an object from the appropriate instantiation of \\spadtype{FortranExpression} and turns it into an ASP.")))
NIL
NIL
-(-65 -1522)
+(-65 -2400)
((|constructor| (NIL "\\spadtype{Asp27} produces Fortran for Type 27 ASPs,{} needed for NAG routine \\axiomOpFrom{f02fjf}{f02Package} ,{}for example:\\begin{verbatim} FUNCTION DOT(IFLAG,N,Z,W,RWORK,LRWORK,IWORK,LIWORK) DOUBLE PRECISION W(N),Z(N),RWORK(LRWORK) INTEGER N,LIWORK,IFLAG,LRWORK,IWORK(LIWORK) DOT=(W(16)+(-0.5D0*W(15)))*Z(16)+((-0.5D0*W(16))+W(15)+(-0.5D0*W(1 &4)))*Z(15)+((-0.5D0*W(15))+W(14)+(-0.5D0*W(13)))*Z(14)+((-0.5D0*W( &14))+W(13)+(-0.5D0*W(12)))*Z(13)+((-0.5D0*W(13))+W(12)+(-0.5D0*W(1 &1)))*Z(12)+((-0.5D0*W(12))+W(11)+(-0.5D0*W(10)))*Z(11)+((-0.5D0*W( &11))+W(10)+(-0.5D0*W(9)))*Z(10)+((-0.5D0*W(10))+W(9)+(-0.5D0*W(8)) &)*Z(9)+((-0.5D0*W(9))+W(8)+(-0.5D0*W(7)))*Z(8)+((-0.5D0*W(8))+W(7) &+(-0.5D0*W(6)))*Z(7)+((-0.5D0*W(7))+W(6)+(-0.5D0*W(5)))*Z(6)+((-0. &5D0*W(6))+W(5)+(-0.5D0*W(4)))*Z(5)+((-0.5D0*W(5))+W(4)+(-0.5D0*W(3 &)))*Z(4)+((-0.5D0*W(4))+W(3)+(-0.5D0*W(2)))*Z(3)+((-0.5D0*W(3))+W( &2)+(-0.5D0*W(1)))*Z(2)+((-0.5D0*W(2))+W(1))*Z(1) RETURN END\\end{verbatim}")))
NIL
NIL
-(-66 -1522)
+(-66 -2400)
((|constructor| (NIL "\\spadtype{Asp28} produces Fortran for Type 28 ASPs,{} used in NAG routine \\axiomOpFrom{f02fjf}{f02Package},{} for example:\\begin{verbatim} SUBROUTINE IMAGE(IFLAG,N,Z,W,RWORK,LRWORK,IWORK,LIWORK) DOUBLE PRECISION Z(N),W(N),IWORK(LRWORK),RWORK(LRWORK) INTEGER N,LIWORK,IFLAG,LRWORK W(1)=0.01707454969713436D0*Z(16)+0.001747395874954051D0*Z(15)+0.00 &2106973900813502D0*Z(14)+0.002957434991769087D0*Z(13)+(-0.00700554 &0882865317D0*Z(12))+(-0.01219194009813166D0*Z(11))+0.0037230647365 &3087D0*Z(10)+0.04932374658377151D0*Z(9)+(-0.03586220812223305D0*Z( &8))+(-0.04723268012114625D0*Z(7))+(-0.02434652144032987D0*Z(6))+0. &2264766947290192D0*Z(5)+(-0.1385343580686922D0*Z(4))+(-0.116530050 &8238904D0*Z(3))+(-0.2803531651057233D0*Z(2))+1.019463911841327D0*Z &(1) W(2)=0.0227345011107737D0*Z(16)+0.008812321197398072D0*Z(15)+0.010 &94012210519586D0*Z(14)+(-0.01764072463999744D0*Z(13))+(-0.01357136 &72105995D0*Z(12))+0.00157466157362272D0*Z(11)+0.05258889186338282D &0*Z(10)+(-0.01981532388243379D0*Z(9))+(-0.06095390688679697D0*Z(8) &)+(-0.04153119955569051D0*Z(7))+0.2176561076571465D0*Z(6)+(-0.0532 &5555586632358D0*Z(5))+(-0.1688977368984641D0*Z(4))+(-0.32440166056 &67343D0*Z(3))+0.9128222941872173D0*Z(2)+(-0.2419652703415429D0*Z(1 &)) W(3)=0.03371198197190302D0*Z(16)+0.02021603150122265D0*Z(15)+(-0.0 &06607305534689702D0*Z(14))+(-0.03032392238968179D0*Z(13))+0.002033 &305231024948D0*Z(12)+0.05375944956767728D0*Z(11)+(-0.0163213312502 &9967D0*Z(10))+(-0.05483186562035512D0*Z(9))+(-0.04901428822579872D &0*Z(8))+0.2091097927887612D0*Z(7)+(-0.05760560341383113D0*Z(6))+(- &0.1236679206156403D0*Z(5))+(-0.3523683853026259D0*Z(4))+0.88929961 &32269974D0*Z(3)+(-0.2995429545781457D0*Z(2))+(-0.02986582812574917 &D0*Z(1)) W(4)=0.05141563713660119D0*Z(16)+0.005239165960779299D0*Z(15)+(-0. &01623427735779699D0*Z(14))+(-0.01965809746040371D0*Z(13))+0.054688 &97337339577D0*Z(12)+(-0.014224695935687D0*Z(11))+(-0.0505181779315 &6355D0*Z(10))+(-0.04353074206076491D0*Z(9))+0.2012230497530726D0*Z &(8)+(-0.06630874514535952D0*Z(7))+(-0.1280829963720053D0*Z(6))+(-0 &.305169742604165D0*Z(5))+0.8600427128450191D0*Z(4)+(-0.32415033802 &68184D0*Z(3))+(-0.09033531980693314D0*Z(2))+0.09089205517109111D0* &Z(1) W(5)=0.04556369767776375D0*Z(16)+(-0.001822737697581869D0*Z(15))+( &-0.002512226501941856D0*Z(14))+0.02947046460707379D0*Z(13)+(-0.014 &45079632086177D0*Z(12))+(-0.05034242196614937D0*Z(11))+(-0.0376966 &3291725935D0*Z(10))+0.2171103102175198D0*Z(9)+(-0.0824949256021352 &4D0*Z(8))+(-0.1473995209288945D0*Z(7))+(-0.315042193418466D0*Z(6)) &+0.9591623347824002D0*Z(5)+(-0.3852396953763045D0*Z(4))+(-0.141718 &5427288274D0*Z(3))+(-0.03423495461011043D0*Z(2))+0.319820917706851 &6D0*Z(1) W(6)=0.04015147277405744D0*Z(16)+0.01328585741341559D0*Z(15)+0.048 &26082005465965D0*Z(14)+(-0.04319641116207706D0*Z(13))+(-0.04931323 &319055762D0*Z(12))+(-0.03526886317505474D0*Z(11))+0.22295383396730 &01D0*Z(10)+(-0.07375317649315155D0*Z(9))+(-0.1589391311991561D0*Z( &8))+(-0.328001910890377D0*Z(7))+0.952576555482747D0*Z(6)+(-0.31583 &09975786731D0*Z(5))+(-0.1846882042225383D0*Z(4))+(-0.0703762046700 &4427D0*Z(3))+0.2311852964327382D0*Z(2)+0.04254083491825025D0*Z(1) W(7)=0.06069778964023718D0*Z(16)+0.06681263884671322D0*Z(15)+(-0.0 &2113506688615768D0*Z(14))+(-0.083996867458326D0*Z(13))+(-0.0329843 &8523869648D0*Z(12))+0.2276878326327734D0*Z(11)+(-0.067356038933017 &95D0*Z(10))+(-0.1559813965382218D0*Z(9))+(-0.3363262957694705D0*Z( &8))+0.9442791158560948D0*Z(7)+(-0.3199955249404657D0*Z(6))+(-0.136 &2463839920727D0*Z(5))+(-0.1006185171570586D0*Z(4))+0.2057504515015 &423D0*Z(3)+(-0.02065879269286707D0*Z(2))+0.03160990266745513D0*Z(1 &) W(8)=0.126386868896738D0*Z(16)+0.002563370039476418D0*Z(15)+(-0.05 &581757739455641D0*Z(14))+(-0.07777893205900685D0*Z(13))+0.23117338 &45834199D0*Z(12)+(-0.06031581134427592D0*Z(11))+(-0.14805474755869 &52D0*Z(10))+(-0.3364014128402243D0*Z(9))+0.9364014128402244D0*Z(8) &+(-0.3269452524413048D0*Z(7))+(-0.1396841886557241D0*Z(6))+(-0.056 &1733845834199D0*Z(5))+0.1777789320590069D0*Z(4)+(-0.04418242260544 &359D0*Z(3))+(-0.02756337003947642D0*Z(2))+0.07361313110326199D0*Z( &1) W(9)=0.07361313110326199D0*Z(16)+(-0.02756337003947642D0*Z(15))+(- &0.04418242260544359D0*Z(14))+0.1777789320590069D0*Z(13)+(-0.056173 &3845834199D0*Z(12))+(-0.1396841886557241D0*Z(11))+(-0.326945252441 &3048D0*Z(10))+0.9364014128402244D0*Z(9)+(-0.3364014128402243D0*Z(8 &))+(-0.1480547475586952D0*Z(7))+(-0.06031581134427592D0*Z(6))+0.23 &11733845834199D0*Z(5)+(-0.07777893205900685D0*Z(4))+(-0.0558175773 &9455641D0*Z(3))+0.002563370039476418D0*Z(2)+0.126386868896738D0*Z( &1) W(10)=0.03160990266745513D0*Z(16)+(-0.02065879269286707D0*Z(15))+0 &.2057504515015423D0*Z(14)+(-0.1006185171570586D0*Z(13))+(-0.136246 &3839920727D0*Z(12))+(-0.3199955249404657D0*Z(11))+0.94427911585609 &48D0*Z(10)+(-0.3363262957694705D0*Z(9))+(-0.1559813965382218D0*Z(8 &))+(-0.06735603893301795D0*Z(7))+0.2276878326327734D0*Z(6)+(-0.032 &98438523869648D0*Z(5))+(-0.083996867458326D0*Z(4))+(-0.02113506688 &615768D0*Z(3))+0.06681263884671322D0*Z(2)+0.06069778964023718D0*Z( &1) W(11)=0.04254083491825025D0*Z(16)+0.2311852964327382D0*Z(15)+(-0.0 &7037620467004427D0*Z(14))+(-0.1846882042225383D0*Z(13))+(-0.315830 &9975786731D0*Z(12))+0.952576555482747D0*Z(11)+(-0.328001910890377D &0*Z(10))+(-0.1589391311991561D0*Z(9))+(-0.07375317649315155D0*Z(8) &)+0.2229538339673001D0*Z(7)+(-0.03526886317505474D0*Z(6))+(-0.0493 &1323319055762D0*Z(5))+(-0.04319641116207706D0*Z(4))+0.048260820054 &65965D0*Z(3)+0.01328585741341559D0*Z(2)+0.04015147277405744D0*Z(1) W(12)=0.3198209177068516D0*Z(16)+(-0.03423495461011043D0*Z(15))+(- &0.1417185427288274D0*Z(14))+(-0.3852396953763045D0*Z(13))+0.959162 &3347824002D0*Z(12)+(-0.315042193418466D0*Z(11))+(-0.14739952092889 &45D0*Z(10))+(-0.08249492560213524D0*Z(9))+0.2171103102175198D0*Z(8 &)+(-0.03769663291725935D0*Z(7))+(-0.05034242196614937D0*Z(6))+(-0. &01445079632086177D0*Z(5))+0.02947046460707379D0*Z(4)+(-0.002512226 &501941856D0*Z(3))+(-0.001822737697581869D0*Z(2))+0.045563697677763 &75D0*Z(1) W(13)=0.09089205517109111D0*Z(16)+(-0.09033531980693314D0*Z(15))+( &-0.3241503380268184D0*Z(14))+0.8600427128450191D0*Z(13)+(-0.305169 &742604165D0*Z(12))+(-0.1280829963720053D0*Z(11))+(-0.0663087451453 &5952D0*Z(10))+0.2012230497530726D0*Z(9)+(-0.04353074206076491D0*Z( &8))+(-0.05051817793156355D0*Z(7))+(-0.014224695935687D0*Z(6))+0.05 &468897337339577D0*Z(5)+(-0.01965809746040371D0*Z(4))+(-0.016234277 &35779699D0*Z(3))+0.005239165960779299D0*Z(2)+0.05141563713660119D0 &*Z(1) W(14)=(-0.02986582812574917D0*Z(16))+(-0.2995429545781457D0*Z(15)) &+0.8892996132269974D0*Z(14)+(-0.3523683853026259D0*Z(13))+(-0.1236 &679206156403D0*Z(12))+(-0.05760560341383113D0*Z(11))+0.20910979278 &87612D0*Z(10)+(-0.04901428822579872D0*Z(9))+(-0.05483186562035512D &0*Z(8))+(-0.01632133125029967D0*Z(7))+0.05375944956767728D0*Z(6)+0 &.002033305231024948D0*Z(5)+(-0.03032392238968179D0*Z(4))+(-0.00660 &7305534689702D0*Z(3))+0.02021603150122265D0*Z(2)+0.033711981971903 &02D0*Z(1) W(15)=(-0.2419652703415429D0*Z(16))+0.9128222941872173D0*Z(15)+(-0 &.3244016605667343D0*Z(14))+(-0.1688977368984641D0*Z(13))+(-0.05325 &555586632358D0*Z(12))+0.2176561076571465D0*Z(11)+(-0.0415311995556 &9051D0*Z(10))+(-0.06095390688679697D0*Z(9))+(-0.01981532388243379D &0*Z(8))+0.05258889186338282D0*Z(7)+0.00157466157362272D0*Z(6)+(-0. &0135713672105995D0*Z(5))+(-0.01764072463999744D0*Z(4))+0.010940122 &10519586D0*Z(3)+0.008812321197398072D0*Z(2)+0.0227345011107737D0*Z &(1) W(16)=1.019463911841327D0*Z(16)+(-0.2803531651057233D0*Z(15))+(-0. &1165300508238904D0*Z(14))+(-0.1385343580686922D0*Z(13))+0.22647669 &47290192D0*Z(12)+(-0.02434652144032987D0*Z(11))+(-0.04723268012114 &625D0*Z(10))+(-0.03586220812223305D0*Z(9))+0.04932374658377151D0*Z &(8)+0.00372306473653087D0*Z(7)+(-0.01219194009813166D0*Z(6))+(-0.0 &07005540882865317D0*Z(5))+0.002957434991769087D0*Z(4)+0.0021069739 &00813502D0*Z(3)+0.001747395874954051D0*Z(2)+0.01707454969713436D0* &Z(1) RETURN END\\end{verbatim}")))
NIL
NIL
-(-67 -1522)
+(-67 -2400)
((|constructor| (NIL "\\spadtype{Asp29} produces Fortran for Type 29 ASPs,{} needed for NAG routine \\axiomOpFrom{f02fjf}{f02Package},{} for example:\\begin{verbatim} SUBROUTINE MONIT(ISTATE,NEXTIT,NEVALS,NEVECS,K,F,D) DOUBLE PRECISION D(K),F(K) INTEGER K,NEXTIT,NEVALS,NVECS,ISTATE CALL F02FJZ(ISTATE,NEXTIT,NEVALS,NEVECS,K,F,D) RETURN END\\end{verbatim}")) (|outputAsFortran| (((|Void|)) "\\spad{outputAsFortran()} generates the default code for \\spadtype{ASP29}.")))
NIL
NIL
-(-68 -1522)
+(-68 -2400)
((|constructor| (NIL "\\spadtype{Asp30} produces Fortran for Type 30 ASPs,{} needed for NAG routine \\axiomOpFrom{f04qaf}{f04Package},{} for example:\\begin{verbatim} SUBROUTINE APROD(MODE,M,N,X,Y,RWORK,LRWORK,IWORK,LIWORK) DOUBLE PRECISION X(N),Y(M),RWORK(LRWORK) INTEGER M,N,LIWORK,IFAIL,LRWORK,IWORK(LIWORK),MODE DOUBLE PRECISION A(5,5) EXTERNAL F06PAF A(1,1)=1.0D0 A(1,2)=0.0D0 A(1,3)=0.0D0 A(1,4)=-1.0D0 A(1,5)=0.0D0 A(2,1)=0.0D0 A(2,2)=1.0D0 A(2,3)=0.0D0 A(2,4)=0.0D0 A(2,5)=-1.0D0 A(3,1)=0.0D0 A(3,2)=0.0D0 A(3,3)=1.0D0 A(3,4)=-1.0D0 A(3,5)=0.0D0 A(4,1)=-1.0D0 A(4,2)=0.0D0 A(4,3)=-1.0D0 A(4,4)=4.0D0 A(4,5)=-1.0D0 A(5,1)=0.0D0 A(5,2)=-1.0D0 A(5,3)=0.0D0 A(5,4)=-1.0D0 A(5,5)=4.0D0 IF(MODE.EQ.1)THEN CALL F06PAF('N',M,N,1.0D0,A,M,X,1,1.0D0,Y,1) ELSEIF(MODE.EQ.2)THEN CALL F06PAF('T',M,N,1.0D0,A,M,Y,1,1.0D0,X,1) ENDIF RETURN END\\end{verbatim}")))
NIL
NIL
-(-69 -1522)
+(-69 -2400)
((|constructor| (NIL "\\spadtype{Asp31} produces Fortran for Type 31 ASPs,{} needed for NAG routine \\axiomOpFrom{d02ejf}{d02Package},{} for example:\\begin{verbatim} SUBROUTINE PEDERV(X,Y,PW) DOUBLE PRECISION X,Y(*) DOUBLE PRECISION PW(3,3) PW(1,1)=-0.03999999999999999D0 PW(1,2)=10000.0D0*Y(3) PW(1,3)=10000.0D0*Y(2) PW(2,1)=0.03999999999999999D0 PW(2,2)=(-10000.0D0*Y(3))+(-60000000.0D0*Y(2)) PW(2,3)=-10000.0D0*Y(2) PW(3,1)=0.0D0 PW(3,2)=60000000.0D0*Y(2) PW(3,3)=0.0D0 RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE X)) (|construct| (QUOTE Y)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-70 -1522)
+(-70 -2400)
((|constructor| (NIL "\\spadtype{Asp33} produces Fortran for Type 33 ASPs,{} needed for NAG routine \\axiomOpFrom{d02kef}{d02Package}. The code is a dummy ASP:\\begin{verbatim} SUBROUTINE REPORT(X,V,JINT) DOUBLE PRECISION V(3),X INTEGER JINT RETURN END\\end{verbatim}")) (|outputAsFortran| (((|Void|)) "\\spad{outputAsFortran()} generates the default code for \\spadtype{ASP33}.")))
NIL
NIL
-(-71 -1522)
+(-71 -2400)
((|constructor| (NIL "\\spadtype{Asp34} produces Fortran for Type 34 ASPs,{} needed for NAG routine \\axiomOpFrom{f04mbf}{f04Package},{} for example:\\begin{verbatim} SUBROUTINE MSOLVE(IFLAG,N,X,Y,RWORK,LRWORK,IWORK,LIWORK) DOUBLE PRECISION RWORK(LRWORK),X(N),Y(N) INTEGER I,J,N,LIWORK,IFLAG,LRWORK,IWORK(LIWORK) DOUBLE PRECISION W1(3),W2(3),MS(3,3) IFLAG=-1 MS(1,1)=2.0D0 MS(1,2)=1.0D0 MS(1,3)=0.0D0 MS(2,1)=1.0D0 MS(2,2)=2.0D0 MS(2,3)=1.0D0 MS(3,1)=0.0D0 MS(3,2)=1.0D0 MS(3,3)=2.0D0 CALL F04ASF(MS,N,X,N,Y,W1,W2,IFLAG) IFLAG=-IFLAG RETURN END\\end{verbatim}")))
NIL
NIL
-(-72 -1522)
+(-72 -2400)
((|constructor| (NIL "\\spadtype{Asp35} produces Fortran for Type 35 ASPs,{} needed for NAG routines \\axiomOpFrom{c05pbf}{c05Package},{} \\axiomOpFrom{c05pcf}{c05Package},{} for example:\\begin{verbatim} SUBROUTINE FCN(N,X,FVEC,FJAC,LDFJAC,IFLAG) DOUBLE PRECISION X(N),FVEC(N),FJAC(LDFJAC,N) INTEGER LDFJAC,N,IFLAG IF(IFLAG.EQ.1)THEN FVEC(1)=(-1.0D0*X(2))+X(1) FVEC(2)=(-1.0D0*X(3))+2.0D0*X(2) FVEC(3)=3.0D0*X(3) ELSEIF(IFLAG.EQ.2)THEN FJAC(1,1)=1.0D0 FJAC(1,2)=-1.0D0 FJAC(1,3)=0.0D0 FJAC(2,1)=0.0D0 FJAC(2,2)=2.0D0 FJAC(2,3)=-1.0D0 FJAC(3,1)=0.0D0 FJAC(3,2)=0.0D0 FJAC(3,3)=3.0D0 ENDIF END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct|) (|construct| (QUOTE X)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
@@ -228,66 +228,66 @@ NIL
((|constructor| (NIL "\\spadtype{Asp42} produces Fortran for Type 42 ASPs,{} needed for NAG routines \\axiomOpFrom{d02raf}{d02Package} and \\axiomOpFrom{d02saf}{d02Package} in particular. These ASPs are in fact three Fortran routines which return a vector of functions,{} and their derivatives \\spad{wrt} \\spad{Y}(\\spad{i}) and also a continuation parameter EPS,{} for example:\\begin{verbatim} SUBROUTINE G(EPS,YA,YB,BC,N) DOUBLE PRECISION EPS,YA(N),YB(N),BC(N) INTEGER N BC(1)=YA(1) BC(2)=YA(2) BC(3)=YB(2)-1.0D0 RETURN END SUBROUTINE JACOBG(EPS,YA,YB,AJ,BJ,N) DOUBLE PRECISION EPS,YA(N),AJ(N,N),BJ(N,N),YB(N) INTEGER N AJ(1,1)=1.0D0 AJ(1,2)=0.0D0 AJ(1,3)=0.0D0 AJ(2,1)=0.0D0 AJ(2,2)=1.0D0 AJ(2,3)=0.0D0 AJ(3,1)=0.0D0 AJ(3,2)=0.0D0 AJ(3,3)=0.0D0 BJ(1,1)=0.0D0 BJ(1,2)=0.0D0 BJ(1,3)=0.0D0 BJ(2,1)=0.0D0 BJ(2,2)=0.0D0 BJ(2,3)=0.0D0 BJ(3,1)=0.0D0 BJ(3,2)=1.0D0 BJ(3,3)=0.0D0 RETURN END SUBROUTINE JACGEP(EPS,YA,YB,BCEP,N) DOUBLE PRECISION EPS,YA(N),YB(N),BCEP(N) INTEGER N BCEP(1)=0.0D0 BCEP(2)=0.0D0 BCEP(3)=0.0D0 RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE EPS)) (|construct| (QUOTE YA) (QUOTE YB)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-75 -1522)
+(-75 -2400)
((|constructor| (NIL "\\spadtype{Asp49} produces Fortran for Type 49 ASPs,{} needed for NAG routines \\axiomOpFrom{e04dgf}{e04Package},{} \\axiomOpFrom{e04ucf}{e04Package},{} for example:\\begin{verbatim} SUBROUTINE OBJFUN(MODE,N,X,OBJF,OBJGRD,NSTATE,IUSER,USER) DOUBLE PRECISION X(N),OBJF,OBJGRD(N),USER(*) INTEGER N,IUSER(*),MODE,NSTATE OBJF=X(4)*X(9)+((-1.0D0*X(5))+X(3))*X(8)+((-1.0D0*X(3))+X(1))*X(7) &+(-1.0D0*X(2)*X(6)) OBJGRD(1)=X(7) OBJGRD(2)=-1.0D0*X(6) OBJGRD(3)=X(8)+(-1.0D0*X(7)) OBJGRD(4)=X(9) OBJGRD(5)=-1.0D0*X(8) OBJGRD(6)=-1.0D0*X(2) OBJGRD(7)=(-1.0D0*X(3))+X(1) OBJGRD(8)=(-1.0D0*X(5))+X(3) OBJGRD(9)=X(4) RETURN END\\end{verbatim}")) (|coerce| (($ (|FortranExpression| (|construct|) (|construct| (QUOTE X)) (|MachineFloat|))) "\\spad{coerce(f)} takes an object from the appropriate instantiation of \\spadtype{FortranExpression} and turns it into an ASP.")))
NIL
NIL
-(-76 -1522)
+(-76 -2400)
((|constructor| (NIL "\\spadtype{Asp4} produces Fortran for Type 4 ASPs,{} which take an expression in \\spad{X}(1) .. \\spad{X}(NDIM) and produce a real function of the form:\\begin{verbatim} DOUBLE PRECISION FUNCTION FUNCTN(NDIM,X) DOUBLE PRECISION X(NDIM) INTEGER NDIM FUNCTN=(4.0D0*X(1)*X(3)**2*DEXP(2.0D0*X(1)*X(3)))/(X(4)**2+(2.0D0* &X(2)+2.0D0)*X(4)+X(2)**2+2.0D0*X(2)+1.0D0) RETURN END\\end{verbatim}")) (|coerce| (($ (|FortranExpression| (|construct|) (|construct| (QUOTE X)) (|MachineFloat|))) "\\spad{coerce(f)} takes an object from the appropriate instantiation of \\spadtype{FortranExpression} and turns it into an ASP.")))
NIL
NIL
-(-77 -1522)
+(-77 -2400)
((|constructor| (NIL "\\spadtype{Asp50} produces Fortran for Type 50 ASPs,{} needed for NAG routine \\axiomOpFrom{e04fdf}{e04Package},{} for example:\\begin{verbatim} SUBROUTINE LSFUN1(M,N,XC,FVECC) DOUBLE PRECISION FVECC(M),XC(N) INTEGER I,M,N FVECC(1)=((XC(1)-2.4D0)*XC(3)+(15.0D0*XC(1)-36.0D0)*XC(2)+1.0D0)/( &XC(3)+15.0D0*XC(2)) FVECC(2)=((XC(1)-2.8D0)*XC(3)+(7.0D0*XC(1)-19.6D0)*XC(2)+1.0D0)/(X &C(3)+7.0D0*XC(2)) FVECC(3)=((XC(1)-3.2D0)*XC(3)+(4.333333333333333D0*XC(1)-13.866666 &66666667D0)*XC(2)+1.0D0)/(XC(3)+4.333333333333333D0*XC(2)) FVECC(4)=((XC(1)-3.5D0)*XC(3)+(3.0D0*XC(1)-10.5D0)*XC(2)+1.0D0)/(X &C(3)+3.0D0*XC(2)) FVECC(5)=((XC(1)-3.9D0)*XC(3)+(2.2D0*XC(1)-8.579999999999998D0)*XC &(2)+1.0D0)/(XC(3)+2.2D0*XC(2)) FVECC(6)=((XC(1)-4.199999999999999D0)*XC(3)+(1.666666666666667D0*X &C(1)-7.0D0)*XC(2)+1.0D0)/(XC(3)+1.666666666666667D0*XC(2)) FVECC(7)=((XC(1)-4.5D0)*XC(3)+(1.285714285714286D0*XC(1)-5.7857142 &85714286D0)*XC(2)+1.0D0)/(XC(3)+1.285714285714286D0*XC(2)) FVECC(8)=((XC(1)-4.899999999999999D0)*XC(3)+(XC(1)-4.8999999999999 &99D0)*XC(2)+1.0D0)/(XC(3)+XC(2)) FVECC(9)=((XC(1)-4.699999999999999D0)*XC(3)+(XC(1)-4.6999999999999 &99D0)*XC(2)+1.285714285714286D0)/(XC(3)+XC(2)) FVECC(10)=((XC(1)-6.8D0)*XC(3)+(XC(1)-6.8D0)*XC(2)+1.6666666666666 &67D0)/(XC(3)+XC(2)) FVECC(11)=((XC(1)-8.299999999999999D0)*XC(3)+(XC(1)-8.299999999999 &999D0)*XC(2)+2.2D0)/(XC(3)+XC(2)) FVECC(12)=((XC(1)-10.6D0)*XC(3)+(XC(1)-10.6D0)*XC(2)+3.0D0)/(XC(3) &+XC(2)) FVECC(13)=((XC(1)-1.34D0)*XC(3)+(XC(1)-1.34D0)*XC(2)+4.33333333333 &3333D0)/(XC(3)+XC(2)) FVECC(14)=((XC(1)-2.1D0)*XC(3)+(XC(1)-2.1D0)*XC(2)+7.0D0)/(XC(3)+X &C(2)) FVECC(15)=((XC(1)-4.39D0)*XC(3)+(XC(1)-4.39D0)*XC(2)+15.0D0)/(XC(3 &)+XC(2)) END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct|) (|construct| (QUOTE XC)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-78 -1522)
+(-78 -2400)
((|constructor| (NIL "\\spadtype{Asp55} produces Fortran for Type 55 ASPs,{} needed for NAG routines \\axiomOpFrom{e04dgf}{e04Package} and \\axiomOpFrom{e04ucf}{e04Package},{} for example:\\begin{verbatim} SUBROUTINE CONFUN(MODE,NCNLN,N,NROWJ,NEEDC,X,C,CJAC,NSTATE,IUSER &,USER) DOUBLE PRECISION C(NCNLN),X(N),CJAC(NROWJ,N),USER(*) INTEGER N,IUSER(*),NEEDC(NCNLN),NROWJ,MODE,NCNLN,NSTATE IF(NEEDC(1).GT.0)THEN C(1)=X(6)**2+X(1)**2 CJAC(1,1)=2.0D0*X(1) CJAC(1,2)=0.0D0 CJAC(1,3)=0.0D0 CJAC(1,4)=0.0D0 CJAC(1,5)=0.0D0 CJAC(1,6)=2.0D0*X(6) ENDIF IF(NEEDC(2).GT.0)THEN C(2)=X(2)**2+(-2.0D0*X(1)*X(2))+X(1)**2 CJAC(2,1)=(-2.0D0*X(2))+2.0D0*X(1) CJAC(2,2)=2.0D0*X(2)+(-2.0D0*X(1)) CJAC(2,3)=0.0D0 CJAC(2,4)=0.0D0 CJAC(2,5)=0.0D0 CJAC(2,6)=0.0D0 ENDIF IF(NEEDC(3).GT.0)THEN C(3)=X(3)**2+(-2.0D0*X(1)*X(3))+X(2)**2+X(1)**2 CJAC(3,1)=(-2.0D0*X(3))+2.0D0*X(1) CJAC(3,2)=2.0D0*X(2) CJAC(3,3)=2.0D0*X(3)+(-2.0D0*X(1)) CJAC(3,4)=0.0D0 CJAC(3,5)=0.0D0 CJAC(3,6)=0.0D0 ENDIF RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct|) (|construct| (QUOTE X)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-79 -1522)
+(-79 -2400)
((|constructor| (NIL "\\spadtype{Asp6} produces Fortran for Type 6 ASPs,{} needed for NAG routines \\axiomOpFrom{c05nbf}{c05Package},{} \\axiomOpFrom{c05ncf}{c05Package}. These represent vectors of functions of \\spad{X}(\\spad{i}) and look like:\\begin{verbatim} SUBROUTINE FCN(N,X,FVEC,IFLAG) DOUBLE PRECISION X(N),FVEC(N) INTEGER N,IFLAG FVEC(1)=(-2.0D0*X(2))+(-2.0D0*X(1)**2)+3.0D0*X(1)+1.0D0 FVEC(2)=(-2.0D0*X(3))+(-2.0D0*X(2)**2)+3.0D0*X(2)+(-1.0D0*X(1))+1. &0D0 FVEC(3)=(-2.0D0*X(4))+(-2.0D0*X(3)**2)+3.0D0*X(3)+(-1.0D0*X(2))+1. &0D0 FVEC(4)=(-2.0D0*X(5))+(-2.0D0*X(4)**2)+3.0D0*X(4)+(-1.0D0*X(3))+1. &0D0 FVEC(5)=(-2.0D0*X(6))+(-2.0D0*X(5)**2)+3.0D0*X(5)+(-1.0D0*X(4))+1. &0D0 FVEC(6)=(-2.0D0*X(7))+(-2.0D0*X(6)**2)+3.0D0*X(6)+(-1.0D0*X(5))+1. &0D0 FVEC(7)=(-2.0D0*X(8))+(-2.0D0*X(7)**2)+3.0D0*X(7)+(-1.0D0*X(6))+1. &0D0 FVEC(8)=(-2.0D0*X(9))+(-2.0D0*X(8)**2)+3.0D0*X(8)+(-1.0D0*X(7))+1. &0D0 FVEC(9)=(-2.0D0*X(9)**2)+3.0D0*X(9)+(-1.0D0*X(8))+1.0D0 RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct|) (|construct| (QUOTE X)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-80 -1522)
+(-80 -2400)
((|constructor| (NIL "\\spadtype{Asp73} produces Fortran for Type 73 ASPs,{} needed for NAG routine \\axiomOpFrom{d03eef}{d03Package},{} for example:\\begin{verbatim} SUBROUTINE PDEF(X,Y,ALPHA,BETA,GAMMA,DELTA,EPSOLN,PHI,PSI) DOUBLE PRECISION ALPHA,EPSOLN,PHI,X,Y,BETA,DELTA,GAMMA,PSI ALPHA=DSIN(X) BETA=Y GAMMA=X*Y DELTA=DCOS(X)*DSIN(Y) EPSOLN=Y+X PHI=X PSI=Y RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE X) (QUOTE Y)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-81 -1522)
+(-81 -2400)
((|constructor| (NIL "\\spadtype{Asp74} produces Fortran for Type 74 ASPs,{} needed for NAG routine \\axiomOpFrom{d03eef}{d03Package},{} for example:\\begin{verbatim} SUBROUTINE BNDY(X,Y,A,B,C,IBND) DOUBLE PRECISION A,B,C,X,Y INTEGER IBND IF(IBND.EQ.0)THEN A=0.0D0 B=1.0D0 C=-1.0D0*DSIN(X) ELSEIF(IBND.EQ.1)THEN A=1.0D0 B=0.0D0 C=DSIN(X)*DSIN(Y) ELSEIF(IBND.EQ.2)THEN A=1.0D0 B=0.0D0 C=DSIN(X)*DSIN(Y) ELSEIF(IBND.EQ.3)THEN A=0.0D0 B=1.0D0 C=-1.0D0*DSIN(Y) ENDIF END\\end{verbatim}")) (|coerce| (($ (|Matrix| (|FortranExpression| (|construct| (QUOTE X) (QUOTE Y)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-82 -1522)
+(-82 -2400)
((|constructor| (NIL "\\spadtype{Asp77} produces Fortran for Type 77 ASPs,{} needed for NAG routine \\axiomOpFrom{d02gbf}{d02Package},{} for example:\\begin{verbatim} SUBROUTINE FCNF(X,F) DOUBLE PRECISION X DOUBLE PRECISION F(2,2) F(1,1)=0.0D0 F(1,2)=1.0D0 F(2,1)=0.0D0 F(2,2)=-10.0D0 RETURN END\\end{verbatim}")) (|coerce| (($ (|Matrix| (|FortranExpression| (|construct| (QUOTE X)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-83 -1522)
+(-83 -2400)
((|constructor| (NIL "\\spadtype{Asp78} produces Fortran for Type 78 ASPs,{} needed for NAG routine \\axiomOpFrom{d02gbf}{d02Package},{} for example:\\begin{verbatim} SUBROUTINE FCNG(X,G) DOUBLE PRECISION G(*),X G(1)=0.0D0 G(2)=0.0D0 END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE X)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-84 -1522)
+(-84 -2400)
((|constructor| (NIL "\\spadtype{Asp7} produces Fortran for Type 7 ASPs,{} needed for NAG routines \\axiomOpFrom{d02bbf}{d02Package},{} \\axiomOpFrom{d02gaf}{d02Package}. These represent a vector of functions of the scalar \\spad{X} and the array \\spad{Z},{} and look like:\\begin{verbatim} SUBROUTINE FCN(X,Z,F) DOUBLE PRECISION F(*),X,Z(*) F(1)=DTAN(Z(3)) F(2)=((-0.03199999999999999D0*DCOS(Z(3))*DTAN(Z(3)))+(-0.02D0*Z(2) &**2))/(Z(2)*DCOS(Z(3))) F(3)=-0.03199999999999999D0/(X*Z(2)**2) RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE X)) (|construct| (QUOTE Y)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-85 -1522)
+(-85 -2400)
((|constructor| (NIL "\\spadtype{Asp80} produces Fortran for Type 80 ASPs,{} needed for NAG routine \\axiomOpFrom{d02kef}{d02Package},{} for example:\\begin{verbatim} SUBROUTINE BDYVAL(XL,XR,ELAM,YL,YR) DOUBLE PRECISION ELAM,XL,YL(3),XR,YR(3) YL(1)=XL YL(2)=2.0D0 YR(1)=1.0D0 YR(2)=-1.0D0*DSQRT(XR+(-1.0D0*ELAM)) RETURN END\\end{verbatim}")) (|coerce| (($ (|Matrix| (|FortranExpression| (|construct| (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-86 -1522)
+(-86 -2400)
((|constructor| (NIL "\\spadtype{Asp8} produces Fortran for Type 8 ASPs,{} needed for NAG routine \\axiomOpFrom{d02bbf}{d02Package}. This ASP prints intermediate values of the computed solution of an ODE and might look like:\\begin{verbatim} SUBROUTINE OUTPUT(XSOL,Y,COUNT,M,N,RESULT,FORWRD) DOUBLE PRECISION Y(N),RESULT(M,N),XSOL INTEGER M,N,COUNT LOGICAL FORWRD DOUBLE PRECISION X02ALF,POINTS(8) EXTERNAL X02ALF INTEGER I POINTS(1)=1.0D0 POINTS(2)=2.0D0 POINTS(3)=3.0D0 POINTS(4)=4.0D0 POINTS(5)=5.0D0 POINTS(6)=6.0D0 POINTS(7)=7.0D0 POINTS(8)=8.0D0 COUNT=COUNT+1 DO 25001 I=1,N RESULT(COUNT,I)=Y(I)25001 CONTINUE IF(COUNT.EQ.M)THEN IF(FORWRD)THEN XSOL=X02ALF() ELSE XSOL=-X02ALF() ENDIF ELSE XSOL=POINTS(COUNT) ENDIF END\\end{verbatim}")))
NIL
NIL
-(-87 -1522)
+(-87 -2400)
((|constructor| (NIL "\\spadtype{Asp9} produces Fortran for Type 9 ASPs,{} needed for NAG routines \\axiomOpFrom{d02bhf}{d02Package},{} \\axiomOpFrom{d02cjf}{d02Package},{} \\axiomOpFrom{d02ejf}{d02Package}. These ASPs represent a function of a scalar \\spad{X} and a vector \\spad{Y},{} for example:\\begin{verbatim} DOUBLE PRECISION FUNCTION G(X,Y) DOUBLE PRECISION X,Y(*) G=X+Y(1) RETURN END\\end{verbatim} If the user provides a constant value for \\spad{G},{} then extra information is added via COMMON blocks used by certain routines. This specifies that the value returned by \\spad{G} in this case is to be ignored.")) (|coerce| (($ (|FortranExpression| (|construct| (QUOTE X)) (|construct| (QUOTE Y)) (|MachineFloat|))) "\\spad{coerce(f)} takes an object from the appropriate instantiation of \\spadtype{FortranExpression} and turns it into an ASP.")))
NIL
NIL
(-88 R L)
((|constructor| (NIL "\\spadtype{AssociatedEquations} provides functions to compute the associated equations needed for factoring operators")) (|associatedEquations| (((|Record| (|:| |minor| (|List| (|PositiveInteger|))) (|:| |eq| |#2|) (|:| |minors| (|List| (|List| (|PositiveInteger|)))) (|:| |ops| (|List| |#2|))) |#2| (|PositiveInteger|)) "\\spad{associatedEquations(op,{} m)} returns \\spad{[w,{} eq,{} lw,{} lop]} such that \\spad{eq(w) = 0} where \\spad{w} is the given minor,{} and \\spad{lw_i = lop_i(w)} for all the other minors.")) (|uncouplingMatrices| (((|Vector| (|Matrix| |#1|)) (|Matrix| |#1|)) "\\spad{uncouplingMatrices(M)} returns \\spad{[A_1,{}...,{}A_n]} such that if \\spad{y = [y_1,{}...,{}y_n]} is a solution of \\spad{y' = M y},{} then \\spad{[\\$y_j',{}y_j'',{}...,{}y_j^{(n)}\\$] = \\$A_j y\\$} for all \\spad{j}\\spad{'s}.")) (|associatedSystem| (((|Record| (|:| |mat| (|Matrix| |#1|)) (|:| |vec| (|Vector| (|List| (|PositiveInteger|))))) |#2| (|PositiveInteger|)) "\\spad{associatedSystem(op,{} m)} returns \\spad{[M,{}w]} such that the \\spad{m}-th associated equation system to \\spad{L} is \\spad{w' = M w}.")))
NIL
-((|HasCategory| |#1| (QUOTE (-339))))
+((|HasCategory| |#1| (QUOTE (-341))))
(-89 S)
((|constructor| (NIL "A stack represented as a flexible array.")) (|arrayStack| (($ (|List| |#1|)) "\\spad{arrayStack([x,{}y,{}...,{}z])} creates an array stack with first (top) element \\spad{x},{} second element \\spad{y},{}...,{}and last element \\spad{z}.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
(-90 S)
((|constructor| (NIL "Category for the inverse trigonometric functions.")) (|atan| (($ $) "\\spad{atan(x)} returns the arc-tangent of \\spad{x}.")) (|asin| (($ $) "\\spad{asin(x)} returns the arc-sine of \\spad{x}.")) (|asec| (($ $) "\\spad{asec(x)} returns the arc-secant of \\spad{x}.")) (|acsc| (($ $) "\\spad{acsc(x)} returns the arc-cosecant of \\spad{x}.")) (|acot| (($ $) "\\spad{acot(x)} returns the arc-cotangent of \\spad{x}.")) (|acos| (($ $) "\\spad{acos(x)} returns the arc-cosine of \\spad{x}.")))
NIL
@@ -298,15 +298,15 @@ NIL
NIL
(-92)
((|constructor| (NIL "\\axiomType{AttributeButtons} implements a database and associated adjustment mechanisms for a set of attributes. \\blankline For ODEs these attributes are \"stiffness\",{} \"stability\" (\\spadignore{i.e.} how much affect the cosine or sine component of the solution has on the stability of the result),{} \"accuracy\" and \"expense\" (\\spadignore{i.e.} how expensive is the evaluation of the ODE). All these have bearing on the cost of calculating the solution given that reducing the step-length to achieve greater accuracy requires considerable number of evaluations and calculations. \\blankline The effect of each of these attributes can be altered by increasing or decreasing the button value. \\blankline For Integration there is a button for increasing and decreasing the preset number of function evaluations for each method. This is automatically used by ANNA when a method fails due to insufficient workspace or where the limit of function evaluations has been reached before the required accuracy is achieved. \\blankline")) (|setButtonValue| (((|Float|) (|String|) (|String|) (|Float|)) "\\axiom{setButtonValue(attributeName,{}routineName,{}\\spad{n})} sets the value of the button of attribute \\spad{attributeName} to routine \\spad{routineName} to \\spad{n}. \\spad{n} must be in the range [0..1]. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".") (((|Float|) (|String|) (|Float|)) "\\axiom{setButtonValue(attributeName,{}\\spad{n})} sets the value of all buttons of attribute \\spad{attributeName} to \\spad{n}. \\spad{n} must be in the range [0..1]. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".")) (|setAttributeButtonStep| (((|Float|) (|Float|)) "\\axiom{setAttributeButtonStep(\\spad{n})} sets the value of the steps for increasing and decreasing the button values. \\axiom{\\spad{n}} must be greater than 0 and less than 1. The preset value is 0.5.")) (|resetAttributeButtons| (((|Void|)) "\\axiom{resetAttributeButtons()} resets the Attribute buttons to a neutral level.")) (|getButtonValue| (((|Float|) (|String|) (|String|)) "\\axiom{getButtonValue(routineName,{}attributeName)} returns the current value for the effect of the attribute \\axiom{attributeName} with routine \\axiom{routineName}. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".")) (|decrease| (((|Float|) (|String|)) "\\axiom{decrease(attributeName)} decreases the value for the effect of the attribute \\axiom{attributeName} with all routines. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".") (((|Float|) (|String|) (|String|)) "\\axiom{decrease(routineName,{}attributeName)} decreases the value for the effect of the attribute \\axiom{attributeName} with routine \\axiom{routineName}. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".")) (|increase| (((|Float|) (|String|)) "\\axiom{increase(attributeName)} increases the value for the effect of the attribute \\axiom{attributeName} with all routines. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".") (((|Float|) (|String|) (|String|)) "\\axiom{increase(routineName,{}attributeName)} increases the value for the effect of the attribute \\axiom{attributeName} with routine \\axiom{routineName}. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".")))
-((-4248 . T))
+((-4250 . T))
NIL
(-93)
((|constructor| (NIL "This category exports the attributes in the AXIOM Library")) (|canonical| ((|attribute|) "\\spad{canonical} is \\spad{true} if and only if distinct elements have distinct data structures. For example,{} a domain of mathematical objects which has the \\spad{canonical} attribute means that two objects are mathematically equal if and only if their data structures are equal.")) (|multiplicativeValuation| ((|attribute|) "\\spad{multiplicativeValuation} implies \\spad{euclideanSize(a*b)=euclideanSize(a)*euclideanSize(b)}.")) (|additiveValuation| ((|attribute|) "\\spad{additiveValuation} implies \\spad{euclideanSize(a*b)=euclideanSize(a)+euclideanSize(b)}.")) (|noetherian| ((|attribute|) "\\spad{noetherian} is \\spad{true} if all of its ideals are finitely generated.")) (|central| ((|attribute|) "\\spad{central} is \\spad{true} if,{} given an algebra over a ring \\spad{R},{} the image of \\spad{R} is the center of the algebra,{} \\spadignore{i.e.} the set of members of the algebra which commute with all others is precisely the image of \\spad{R} in the algebra.")) (|partiallyOrderedSet| ((|attribute|) "\\spad{partiallyOrderedSet} is \\spad{true} if a set with \\spadop{<} which is transitive,{} but \\spad{not(a < b or a = b)} does not necessarily imply \\spad{b<a}.")) (|arbitraryPrecision| ((|attribute|) "\\spad{arbitraryPrecision} means the user can set the precision for subsequent calculations.")) (|canonicalsClosed| ((|attribute|) "\\spad{canonicalsClosed} is \\spad{true} if \\spad{unitCanonical(a)*unitCanonical(b) = unitCanonical(a*b)}.")) (|canonicalUnitNormal| ((|attribute|) "\\spad{canonicalUnitNormal} is \\spad{true} if we can choose a canonical representative for each class of associate elements,{} that is \\spad{associates?(a,{}b)} returns \\spad{true} if and only if \\spad{unitCanonical(a) = unitCanonical(b)}.")) (|noZeroDivisors| ((|attribute|) "\\spad{noZeroDivisors} is \\spad{true} if \\spad{x * y \\~~= 0} implies both \\spad{x} and \\spad{y} are non-zero.")) (|rightUnitary| ((|attribute|) "\\spad{rightUnitary} is \\spad{true} if \\spad{x * 1 = x} for all \\spad{x}.")) (|leftUnitary| ((|attribute|) "\\spad{leftUnitary} is \\spad{true} if \\spad{1 * x = x} for all \\spad{x}.")) (|unitsKnown| ((|attribute|) "\\spad{unitsKnown} is \\spad{true} if a monoid (a multiplicative semigroup with a 1) has \\spad{unitsKnown} means that the operation \\spadfun{recip} can only return \"failed\" if its argument is not a unit.")) (|shallowlyMutable| ((|attribute|) "\\spad{shallowlyMutable} is \\spad{true} if its values have immediate components that are updateable (mutable). Note: the properties of any component domain are irrevelant to the \\spad{shallowlyMutable} proper.")) (|commutative| ((|attribute| "*") "\\spad{commutative(\"*\")} is \\spad{true} if it has an operation \\spad{\"*\": (D,{}D) -> D} which is commutative.")) (|finiteAggregate| ((|attribute|) "\\spad{finiteAggregate} is \\spad{true} if it is an aggregate with a finite number of elements.")))
-((-4248 . T) ((-4250 "*") . T) (-4249 . T) (-4245 . T) (-4243 . T) (-4242 . T) (-4241 . T) (-4246 . T) (-4240 . T) (-4239 . T) (-4238 . T) (-4237 . T) (-4236 . T) (-4244 . T) (-4247 . T) (|NullSquare| . T) (|JacobiIdentity| . T) (-4235 . T))
+((-4250 . T) ((-4252 "*") . T) (-4251 . T) (-4247 . T) (-4245 . T) (-4244 . T) (-4243 . T) (-4248 . T) (-4242 . T) (-4241 . T) (-4240 . T) (-4239 . T) (-4238 . T) (-4246 . T) (-4249 . T) (|NullSquare| . T) (|JacobiIdentity| . T) (-4237 . T))
NIL
(-94 R)
((|constructor| (NIL "Automorphism \\spad{R} is the multiplicative group of automorphisms of \\spad{R}.")) (|morphism| (($ (|Mapping| |#1| |#1| (|Integer|))) "\\spad{morphism(f)} returns the morphism given by \\spad{f^n(x) = f(x,{}n)}.") (($ (|Mapping| |#1| |#1|) (|Mapping| |#1| |#1|)) "\\spad{morphism(f,{} g)} returns the invertible morphism given by \\spad{f},{} where \\spad{g} is the inverse of \\spad{f}..") (($ (|Mapping| |#1| |#1|)) "\\spad{morphism(f)} returns the non-invertible morphism given by \\spad{f}.")))
-((-4245 . T))
+((-4247 . T))
NIL
(-95 R UP)
((|constructor| (NIL "This package provides balanced factorisations of polynomials.")) (|balancedFactorisation| (((|Factored| |#2|) |#2| (|List| |#2|)) "\\spad{balancedFactorisation(a,{} [b1,{}...,{}bn])} returns a factorisation \\spad{a = p1^e1 ... pm^em} such that each \\spad{pi} is balanced with respect to \\spad{[b1,{}...,{}bm]}.") (((|Factored| |#2|) |#2| |#2|) "\\spad{balancedFactorisation(a,{} b)} returns a factorisation \\spad{a = p1^e1 ... pm^em} such that each \\spad{\\spad{pi}} is balanced with respect to \\spad{b}.")))
@@ -322,15 +322,15 @@ NIL
NIL
(-98 S)
((|constructor| (NIL "\\spadtype{BalancedBinaryTree(S)} is the domain of balanced binary trees (bbtree). A balanced binary tree of \\spad{2**k} leaves,{} for some \\spad{k > 0},{} is symmetric,{} that is,{} the left and right subtree of each interior node have identical shape. In general,{} the left and right subtree of a given node can differ by at most leaf node.")) (|mapDown!| (($ $ |#1| (|Mapping| (|List| |#1|) |#1| |#1| |#1|)) "\\spad{mapDown!(t,{}p,{}f)} returns \\spad{t} after traversing \\spad{t} in \"preorder\" (node then left then right) fashion replacing the successive interior nodes as follows. Let \\spad{l} and \\spad{r} denote the left and right subtrees of \\spad{t}. The root value \\spad{x} of \\spad{t} is replaced by \\spad{p}. Then \\spad{f}(value \\spad{l},{} value \\spad{r},{} \\spad{p}),{} where \\spad{l} and \\spad{r} denote the left and right subtrees of \\spad{t},{} is evaluated producing two values \\spad{pl} and \\spad{pr}. Then \\spad{mapDown!(l,{}pl,{}f)} and \\spad{mapDown!(l,{}pr,{}f)} are evaluated.") (($ $ |#1| (|Mapping| |#1| |#1| |#1|)) "\\spad{mapDown!(t,{}p,{}f)} returns \\spad{t} after traversing \\spad{t} in \"preorder\" (node then left then right) fashion replacing the successive interior nodes as follows. The root value \\spad{x} is replaced by \\spad{q} \\spad{:=} \\spad{f}(\\spad{p},{}\\spad{x}). The mapDown!(\\spad{l},{}\\spad{q},{}\\spad{f}) and mapDown!(\\spad{r},{}\\spad{q},{}\\spad{f}) are evaluated for the left and right subtrees \\spad{l} and \\spad{r} of \\spad{t}.")) (|mapUp!| (($ $ $ (|Mapping| |#1| |#1| |#1| |#1| |#1|)) "\\spad{mapUp!(t,{}t1,{}f)} traverses \\spad{t} in an \"endorder\" (left then right then node) fashion returning \\spad{t} with the value at each successive interior node of \\spad{t} replaced by \\spad{f}(\\spad{l},{}\\spad{r},{}\\spad{l1},{}\\spad{r1}) where \\spad{l} and \\spad{r} are the values at the immediate left and right nodes. Values \\spad{l1} and \\spad{r1} are values at the corresponding nodes of a balanced binary tree \\spad{t1},{} of identical shape at \\spad{t}.") ((|#1| $ (|Mapping| |#1| |#1| |#1|)) "\\spad{mapUp!(t,{}f)} traverses balanced binary tree \\spad{t} in an \"endorder\" (left then right then node) fashion returning \\spad{t} with the value at each successive interior node of \\spad{t} replaced by \\spad{f}(\\spad{l},{}\\spad{r}) where \\spad{l} and \\spad{r} are the values at the immediate left and right nodes.")) (|setleaves!| (($ $ (|List| |#1|)) "\\spad{setleaves!(t,{} ls)} sets the leaves of \\spad{t} in left-to-right order to the elements of \\spad{ls}.")) (|balancedBinaryTree| (($ (|NonNegativeInteger|) |#1|) "\\spad{balancedBinaryTree(n,{} s)} creates a balanced binary tree with \\spad{n} nodes each with value \\spad{s}.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
(-99 R UP M |Row| |Col|)
((|constructor| (NIL "\\spadtype{BezoutMatrix} contains functions for computing resultants and discriminants using Bezout matrices.")) (|bezoutDiscriminant| ((|#1| |#2|) "\\spad{bezoutDiscriminant(p)} computes the discriminant of a polynomial \\spad{p} by computing the determinant of a Bezout matrix.")) (|bezoutResultant| ((|#1| |#2| |#2|) "\\spad{bezoutResultant(p,{}q)} computes the resultant of the two polynomials \\spad{p} and \\spad{q} by computing the determinant of a Bezout matrix.")) (|bezoutMatrix| ((|#3| |#2| |#2|) "\\spad{bezoutMatrix(p,{}q)} returns the Bezout matrix for the two polynomials \\spad{p} and \\spad{q}.")) (|sylvesterMatrix| ((|#3| |#2| |#2|) "\\spad{sylvesterMatrix(p,{}q)} returns the Sylvester matrix for the two polynomials \\spad{p} and \\spad{q}.")))
NIL
-((|HasAttribute| |#1| (QUOTE (-4250 "*"))))
+((|HasAttribute| |#1| (QUOTE (-4252 "*"))))
(-100)
((|bfEntry| (((|Record| (|:| |zeros| (|Stream| (|DoubleFloat|))) (|:| |ones| (|Stream| (|DoubleFloat|))) (|:| |singularities| (|Stream| (|DoubleFloat|)))) (|Symbol|)) "\\spad{bfEntry(k)} returns the entry in the \\axiomType{BasicFunctions} table corresponding to \\spad{k}")) (|bfKeys| (((|List| (|Symbol|))) "\\spad{bfKeys()} returns the names of each function in the \\axiomType{BasicFunctions} table")))
-((-4248 . T))
+((-4250 . T))
NIL
(-101 A S)
((|constructor| (NIL "A bag aggregate is an aggregate for which one can insert and extract objects,{} and where the order in which objects are inserted determines the order of extraction. Examples of bags are stacks,{} queues,{} and dequeues.")) (|inspect| ((|#2| $) "\\spad{inspect(u)} returns an (random) element from a bag.")) (|insert!| (($ |#2| $) "\\spad{insert!(x,{}u)} inserts item \\spad{x} into bag \\spad{u}.")) (|extract!| ((|#2| $) "\\spad{extract!(u)} destructively removes a (random) item from bag \\spad{u}.")) (|bag| (($ (|List| |#2|)) "\\spad{bag([x,{}y,{}...,{}z])} creates a bag with elements \\spad{x},{}\\spad{y},{}...,{}\\spad{z}.")) (|shallowlyMutable| ((|attribute|) "shallowlyMutable means that elements of bags may be destructively changed.")))
@@ -338,12 +338,12 @@ NIL
NIL
(-102 S)
((|constructor| (NIL "A bag aggregate is an aggregate for which one can insert and extract objects,{} and where the order in which objects are inserted determines the order of extraction. Examples of bags are stacks,{} queues,{} and dequeues.")) (|inspect| ((|#1| $) "\\spad{inspect(u)} returns an (random) element from a bag.")) (|insert!| (($ |#1| $) "\\spad{insert!(x,{}u)} inserts item \\spad{x} into bag \\spad{u}.")) (|extract!| ((|#1| $) "\\spad{extract!(u)} destructively removes a (random) item from bag \\spad{u}.")) (|bag| (($ (|List| |#1|)) "\\spad{bag([x,{}y,{}...,{}z])} creates a bag with elements \\spad{x},{}\\spad{y},{}...,{}\\spad{z}.")) (|shallowlyMutable| ((|attribute|) "shallowlyMutable means that elements of bags may be destructively changed.")))
-((-4249 . T) (-2500 . T))
+((-4251 . T) (-2137 . T))
NIL
(-103)
((|constructor| (NIL "This domain allows rational numbers to be presented as repeating binary expansions.")) (|binary| (($ (|Fraction| (|Integer|))) "\\spad{binary(r)} converts a rational number to a binary expansion.")) (|fractionPart| (((|Fraction| (|Integer|)) $) "\\spad{fractionPart(b)} returns the fractional part of a binary expansion.")) (|coerce| (((|RadixExpansion| 2) $) "\\spad{coerce(b)} converts a binary expansion to a radix expansion with base 2.") (((|Fraction| (|Integer|)) $) "\\spad{coerce(b)} converts a binary expansion to a rational number.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| (-523) (QUOTE (-840))) (|HasCategory| (-523) (LIST (QUOTE -964) (QUOTE (-1087)))) (|HasCategory| (-523) (QUOTE (-134))) (|HasCategory| (-523) (QUOTE (-136))) (|HasCategory| (-523) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| (-523) (QUOTE (-949))) (|HasCategory| (-523) (QUOTE (-759))) (-3255 (|HasCategory| (-523) (QUOTE (-759))) (|HasCategory| (-523) (QUOTE (-786)))) (|HasCategory| (-523) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| (-523) (QUOTE (-1063))) (|HasCategory| (-523) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| (-523) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| (-523) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| (-523) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| (-523) (QUOTE (-211))) (|HasCategory| (-523) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| (-523) (LIST (QUOTE -484) (QUOTE (-1087)) (QUOTE (-523)))) (|HasCategory| (-523) (LIST (QUOTE -286) (QUOTE (-523)))) (|HasCategory| (-523) (LIST (QUOTE -263) (QUOTE (-523)) (QUOTE (-523)))) (|HasCategory| (-523) (QUOTE (-284))) (|HasCategory| (-523) (QUOTE (-508))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| (-523) (LIST (QUOTE -585) (QUOTE (-523)))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-523) (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-523) (QUOTE (-840)))) (|HasCategory| (-523) (QUOTE (-134)))))
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| (-525) (QUOTE (-842))) (|HasCategory| (-525) (LIST (QUOTE -966) (QUOTE (-1089)))) (|HasCategory| (-525) (QUOTE (-136))) (|HasCategory| (-525) (QUOTE (-138))) (|HasCategory| (-525) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| (-525) (QUOTE (-951))) (|HasCategory| (-525) (QUOTE (-761))) (-3321 (|HasCategory| (-525) (QUOTE (-761))) (|HasCategory| (-525) (QUOTE (-788)))) (|HasCategory| (-525) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| (-525) (QUOTE (-1065))) (|HasCategory| (-525) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| (-525) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| (-525) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| (-525) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| (-525) (QUOTE (-213))) (|HasCategory| (-525) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| (-525) (LIST (QUOTE -486) (QUOTE (-1089)) (QUOTE (-525)))) (|HasCategory| (-525) (LIST (QUOTE -288) (QUOTE (-525)))) (|HasCategory| (-525) (LIST (QUOTE -265) (QUOTE (-525)) (QUOTE (-525)))) (|HasCategory| (-525) (QUOTE (-286))) (|HasCategory| (-525) (QUOTE (-510))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| (-525) (LIST (QUOTE -587) (QUOTE (-525)))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-525) (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-525) (QUOTE (-842)))) (|HasCategory| (-525) (QUOTE (-136)))))
(-104)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: October 24,{} 2007 Date Last Modified: January 18,{} 2008. A `Binding' is a name asosciated with a collection of properties.")) (|binding| (($ (|Symbol|) (|List| (|Property|))) "\\spad{binding(n,{}props)} constructs a binding with name \\spad{`n'} and property list `props'.")) (|properties| (((|List| (|Property|)) $) "\\spad{properties(b)} returns the properties associated with binding \\spad{b}.")) (|name| (((|Symbol|) $) "\\spad{name(b)} returns the name of binding \\spad{b}")))
NIL
@@ -354,11 +354,11 @@ NIL
NIL
(-106)
((|constructor| (NIL "\\spadtype{Bits} provides logical functions for Indexed Bits.")) (|bits| (($ (|NonNegativeInteger|) (|Boolean|)) "\\spad{bits(n,{}b)} creates bits with \\spad{n} values of \\spad{b}")))
-((-4249 . T) (-4248 . T))
-((-12 (|HasCategory| (-108) (QUOTE (-1016))) (|HasCategory| (-108) (LIST (QUOTE -286) (QUOTE (-108))))) (|HasCategory| (-108) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| (-108) (QUOTE (-786))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| (-108) (QUOTE (-1016))) (|HasCategory| (-108) (LIST (QUOTE -563) (QUOTE (-794)))))
+((-4251 . T) (-4250 . T))
+((-12 (|HasCategory| (-108) (QUOTE (-1018))) (|HasCategory| (-108) (LIST (QUOTE -288) (QUOTE (-108))))) (|HasCategory| (-108) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| (-108) (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| (-108) (QUOTE (-1018))) (|HasCategory| (-108) (LIST (QUOTE -565) (QUOTE (-796)))))
(-107 R S)
((|constructor| (NIL "A \\spadtype{BiModule} is both a left and right module with respect to potentially different rings. \\blankline")) (|rightUnitary| ((|attribute|) "\\spad{x * 1 = x}")) (|leftUnitary| ((|attribute|) "\\spad{1 * x = x}")))
-((-4243 . T) (-4242 . T))
+((-4245 . T) (-4244 . T))
NIL
(-108)
((|constructor| (NIL "\\indented{1}{\\spadtype{Boolean} is the elementary logic with 2 values:} \\spad{true} and \\spad{false}")) (|test| (((|Boolean|) $) "\\spad{test(b)} returns \\spad{b} and is provided for compatibility with the new compiler.")) (|nor| (($ $ $) "\\spad{nor(a,{}b)} returns the logical negation of \\spad{a} or \\spad{b}.")) (|nand| (($ $ $) "\\spad{nand(a,{}b)} returns the logical negation of \\spad{a} and \\spad{b}.")) (|xor| (($ $ $) "\\spad{xor(a,{}b)} returns the logical exclusive {\\em or} of Boolean \\spad{a} and \\spad{b}.")) (^ (($ $) "\\spad{^ n} returns the negation of \\spad{n}.")) (|false| (($) "\\spad{false} is a logical constant.")) (|true| (($) "\\spad{true} is a logical constant.")))
@@ -367,30 +367,30 @@ NIL
(-109 A)
((|constructor| (NIL "This package exports functions to set some commonly used properties of operators,{} including properties which contain functions.")) (|constantOpIfCan| (((|Union| |#1| "failed") (|BasicOperator|)) "\\spad{constantOpIfCan(op)} returns \\spad{a} if \\spad{op} is the constant nullary operator always returning \\spad{a},{} \"failed\" otherwise.")) (|constantOperator| (((|BasicOperator|) |#1|) "\\spad{constantOperator(a)} returns a nullary operator op such that \\spad{op()} always evaluate to \\spad{a}.")) (|derivative| (((|Union| (|List| (|Mapping| |#1| (|List| |#1|))) "failed") (|BasicOperator|)) "\\spad{derivative(op)} returns the value of the \"\\%diff\" property of \\spad{op} if it has one,{} and \"failed\" otherwise.") (((|BasicOperator|) (|BasicOperator|) (|Mapping| |#1| |#1|)) "\\spad{derivative(op,{} foo)} attaches foo as the \"\\%diff\" property of \\spad{op}. If \\spad{op} has an \"\\%diff\" property \\spad{f},{} then applying a derivation \\spad{D} to \\spad{op}(a) returns \\spad{f(a) * D(a)}. Argument \\spad{op} must be unary.") (((|BasicOperator|) (|BasicOperator|) (|List| (|Mapping| |#1| (|List| |#1|)))) "\\spad{derivative(op,{} [foo1,{}...,{}foon])} attaches [foo1,{}...,{}foon] as the \"\\%diff\" property of \\spad{op}. If \\spad{op} has an \"\\%diff\" property \\spad{[f1,{}...,{}fn]} then applying a derivation \\spad{D} to \\spad{op(a1,{}...,{}an)} returns \\spad{f1(a1,{}...,{}an) * D(a1) + ... + fn(a1,{}...,{}an) * D(an)}.")) (|evaluate| (((|Union| (|Mapping| |#1| (|List| |#1|)) "failed") (|BasicOperator|)) "\\spad{evaluate(op)} returns the value of the \"\\%eval\" property of \\spad{op} if it has one,{} and \"failed\" otherwise.") (((|BasicOperator|) (|BasicOperator|) (|Mapping| |#1| |#1|)) "\\spad{evaluate(op,{} foo)} attaches foo as the \"\\%eval\" property of \\spad{op}. If \\spad{op} has an \"\\%eval\" property \\spad{f},{} then applying \\spad{op} to a returns the result of \\spad{f(a)}. Argument \\spad{op} must be unary.") (((|BasicOperator|) (|BasicOperator|) (|Mapping| |#1| (|List| |#1|))) "\\spad{evaluate(op,{} foo)} attaches foo as the \"\\%eval\" property of \\spad{op}. If \\spad{op} has an \"\\%eval\" property \\spad{f},{} then applying \\spad{op} to \\spad{(a1,{}...,{}an)} returns the result of \\spad{f(a1,{}...,{}an)}.") (((|Union| |#1| "failed") (|BasicOperator|) (|List| |#1|)) "\\spad{evaluate(op,{} [a1,{}...,{}an])} checks if \\spad{op} has an \"\\%eval\" property \\spad{f}. If it has,{} then \\spad{f(a1,{}...,{}an)} is returned,{} and \"failed\" otherwise.")))
NIL
-((|HasCategory| |#1| (QUOTE (-786))))
+((|HasCategory| |#1| (QUOTE (-788))))
(-110)
((|constructor| (NIL "A basic operator is an object that can be applied to a list of arguments from a set,{} the result being a kernel over that set.")) (|setProperties| (($ $ (|AssociationList| (|String|) (|None|))) "\\spad{setProperties(op,{} l)} sets the property list of \\spad{op} to \\spad{l}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.")) (|setProperty| (($ $ (|String|) (|None|)) "\\spad{setProperty(op,{} s,{} v)} attaches property \\spad{s} to \\spad{op},{} and sets its value to \\spad{v}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.")) (|property| (((|Union| (|None|) "failed") $ (|String|)) "\\spad{property(op,{} s)} returns the value of property \\spad{s} if it is attached to \\spad{op},{} and \"failed\" otherwise.")) (|deleteProperty!| (($ $ (|String|)) "\\spad{deleteProperty!(op,{} s)} unattaches property \\spad{s} from \\spad{op}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.")) (|assert| (($ $ (|String|)) "\\spad{assert(op,{} s)} attaches property \\spad{s} to \\spad{op}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.")) (|has?| (((|Boolean|) $ (|String|)) "\\spad{has?(op,{} s)} tests if property \\spad{s} is attached to \\spad{op}.")) (|is?| (((|Boolean|) $ (|Symbol|)) "\\spad{is?(op,{} s)} tests if the name of \\spad{op} is \\spad{s}.")) (|input| (((|Union| (|Mapping| (|InputForm|) (|List| (|InputForm|))) "failed") $) "\\spad{input(op)} returns the \"\\%input\" property of \\spad{op} if it has one attached,{} \"failed\" otherwise.") (($ $ (|Mapping| (|InputForm|) (|List| (|InputForm|)))) "\\spad{input(op,{} foo)} attaches foo as the \"\\%input\" property of \\spad{op}. If \\spad{op} has a \"\\%input\" property \\spad{f},{} then \\spad{op(a1,{}...,{}an)} gets converted to InputForm as \\spad{f(a1,{}...,{}an)}.")) (|display| (($ $ (|Mapping| (|OutputForm|) (|OutputForm|))) "\\spad{display(op,{} foo)} attaches foo as the \"\\%display\" property of \\spad{op}. If \\spad{op} has a \"\\%display\" property \\spad{f},{} then \\spad{op(a)} gets converted to OutputForm as \\spad{f(a)}. Argument \\spad{op} must be unary.") (($ $ (|Mapping| (|OutputForm|) (|List| (|OutputForm|)))) "\\spad{display(op,{} foo)} attaches foo as the \"\\%display\" property of \\spad{op}. If \\spad{op} has a \"\\%display\" property \\spad{f},{} then \\spad{op(a1,{}...,{}an)} gets converted to OutputForm as \\spad{f(a1,{}...,{}an)}.") (((|Union| (|Mapping| (|OutputForm|) (|List| (|OutputForm|))) "failed") $) "\\spad{display(op)} returns the \"\\%display\" property of \\spad{op} if it has one attached,{} and \"failed\" otherwise.")) (|comparison| (($ $ (|Mapping| (|Boolean|) $ $)) "\\spad{comparison(op,{} foo?)} attaches foo? as the \"\\%less?\" property to \\spad{op}. If op1 and op2 have the same name,{} and one of them has a \"\\%less?\" property \\spad{f},{} then \\spad{f(op1,{} op2)} is called to decide whether \\spad{op1 < op2}.")) (|equality| (($ $ (|Mapping| (|Boolean|) $ $)) "\\spad{equality(op,{} foo?)} attaches foo? as the \"\\%equal?\" property to \\spad{op}. If op1 and op2 have the same name,{} and one of them has an \"\\%equal?\" property \\spad{f},{} then \\spad{f(op1,{} op2)} is called to decide whether op1 and op2 should be considered equal.")) (|weight| (($ $ (|NonNegativeInteger|)) "\\spad{weight(op,{} n)} attaches the weight \\spad{n} to \\spad{op}.") (((|NonNegativeInteger|) $) "\\spad{weight(op)} returns the weight attached to \\spad{op}.")) (|nary?| (((|Boolean|) $) "\\spad{nary?(op)} tests if \\spad{op} has arbitrary arity.")) (|unary?| (((|Boolean|) $) "\\spad{unary?(op)} tests if \\spad{op} is unary.")) (|nullary?| (((|Boolean|) $) "\\spad{nullary?(op)} tests if \\spad{op} is nullary.")) (|arity| (((|Union| (|NonNegativeInteger|) "failed") $) "\\spad{arity(op)} returns \\spad{n} if \\spad{op} is \\spad{n}-ary,{} and \"failed\" if \\spad{op} has arbitrary arity.")) (|operator| (($ (|Symbol|) (|NonNegativeInteger|)) "\\spad{operator(f,{} n)} makes \\spad{f} into an \\spad{n}-ary operator.") (($ (|Symbol|)) "\\spad{operator(f)} makes \\spad{f} into an operator with arbitrary arity.")) (|copy| (($ $) "\\spad{copy(op)} returns a copy of \\spad{op}.")) (|properties| (((|AssociationList| (|String|) (|None|)) $) "\\spad{properties(op)} returns the list of all the properties currently attached to \\spad{op}.")) (|name| (((|Symbol|) $) "\\spad{name(op)} returns the name of \\spad{op}.")))
NIL
NIL
-(-111 -3894 UP)
+(-111 -3576 UP)
((|constructor| (NIL "\\spadtype{BoundIntegerRoots} provides functions to find lower bounds on the integer roots of a polynomial.")) (|integerBound| (((|Integer|) |#2|) "\\spad{integerBound(p)} returns a lower bound on the negative integer roots of \\spad{p},{} and 0 if \\spad{p} has no negative integer roots.")))
NIL
NIL
(-112 |p|)
((|constructor| (NIL "Stream-based implementation of \\spad{Zp:} \\spad{p}-adic numbers are represented as sum(\\spad{i} = 0..,{} a[\\spad{i}] * p^i),{} where the a[\\spad{i}] lie in -(\\spad{p} - 1)\\spad{/2},{}...,{}(\\spad{p} - 1)\\spad{/2}.")))
-((-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
(-113 |p|)
((|constructor| (NIL "Stream-based implementation of \\spad{Qp:} numbers are represented as sum(\\spad{i} = \\spad{k}..,{} a[\\spad{i}] * p^i),{} where the a[\\spad{i}] lie in -(\\spad{p} - 1)\\spad{/2},{}...,{}(\\spad{p} - 1)\\spad{/2}.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| (-112 |#1|) (QUOTE (-840))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -964) (QUOTE (-1087)))) (|HasCategory| (-112 |#1|) (QUOTE (-134))) (|HasCategory| (-112 |#1|) (QUOTE (-136))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| (-112 |#1|) (QUOTE (-949))) (|HasCategory| (-112 |#1|) (QUOTE (-759))) (-3255 (|HasCategory| (-112 |#1|) (QUOTE (-759))) (|HasCategory| (-112 |#1|) (QUOTE (-786)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| (-112 |#1|) (QUOTE (-1063))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| (-112 |#1|) (QUOTE (-211))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -484) (QUOTE (-1087)) (LIST (QUOTE -112) (|devaluate| |#1|)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -286) (LIST (QUOTE -112) (|devaluate| |#1|)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -263) (LIST (QUOTE -112) (|devaluate| |#1|)) (LIST (QUOTE -112) (|devaluate| |#1|)))) (|HasCategory| (-112 |#1|) (QUOTE (-284))) (|HasCategory| (-112 |#1|) (QUOTE (-508))) (|HasCategory| (-112 |#1|) (QUOTE (-786))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-112 |#1|) (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-112 |#1|) (QUOTE (-840)))) (|HasCategory| (-112 |#1|) (QUOTE (-134)))))
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| (-112 |#1|) (QUOTE (-842))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -966) (QUOTE (-1089)))) (|HasCategory| (-112 |#1|) (QUOTE (-136))) (|HasCategory| (-112 |#1|) (QUOTE (-138))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| (-112 |#1|) (QUOTE (-951))) (|HasCategory| (-112 |#1|) (QUOTE (-761))) (-3321 (|HasCategory| (-112 |#1|) (QUOTE (-761))) (|HasCategory| (-112 |#1|) (QUOTE (-788)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| (-112 |#1|) (QUOTE (-1065))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| (-112 |#1|) (QUOTE (-213))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -486) (QUOTE (-1089)) (LIST (QUOTE -112) (|devaluate| |#1|)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -288) (LIST (QUOTE -112) (|devaluate| |#1|)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -265) (LIST (QUOTE -112) (|devaluate| |#1|)) (LIST (QUOTE -112) (|devaluate| |#1|)))) (|HasCategory| (-112 |#1|) (QUOTE (-286))) (|HasCategory| (-112 |#1|) (QUOTE (-510))) (|HasCategory| (-112 |#1|) (QUOTE (-788))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-112 |#1|) (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-112 |#1|) (QUOTE (-842)))) (|HasCategory| (-112 |#1|) (QUOTE (-136)))))
(-114 A S)
((|constructor| (NIL "A binary-recursive aggregate has 0,{} 1 or 2 children and serves as a model for a binary tree or a doubly-linked aggregate structure")) (|setright!| (($ $ $) "\\spad{setright!(a,{}x)} sets the right child of \\spad{t} to be \\spad{x}.")) (|setleft!| (($ $ $) "\\spad{setleft!(a,{}b)} sets the left child of \\axiom{a} to be \\spad{b}.")) (|setelt| (($ $ "right" $) "\\spad{setelt(a,{}\"right\",{}b)} (also written \\axiom{\\spad{b} . right \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setright!(a,{}\\spad{b})}.") (($ $ "left" $) "\\spad{setelt(a,{}\"left\",{}b)} (also written \\axiom{a . left \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setleft!(a,{}\\spad{b})}.")) (|right| (($ $) "\\spad{right(a)} returns the right child.")) (|elt| (($ $ "right") "\\spad{elt(a,{}\"right\")} (also written: \\axiom{a . right}) is equivalent to \\axiom{right(a)}.") (($ $ "left") "\\spad{elt(u,{}\"left\")} (also written: \\axiom{a . left}) is equivalent to \\axiom{left(a)}.")) (|left| (($ $) "\\spad{left(u)} returns the left child.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4249)))
+((|HasAttribute| |#1| (QUOTE -4251)))
(-115 S)
((|constructor| (NIL "A binary-recursive aggregate has 0,{} 1 or 2 children and serves as a model for a binary tree or a doubly-linked aggregate structure")) (|setright!| (($ $ $) "\\spad{setright!(a,{}x)} sets the right child of \\spad{t} to be \\spad{x}.")) (|setleft!| (($ $ $) "\\spad{setleft!(a,{}b)} sets the left child of \\axiom{a} to be \\spad{b}.")) (|setelt| (($ $ "right" $) "\\spad{setelt(a,{}\"right\",{}b)} (also written \\axiom{\\spad{b} . right \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setright!(a,{}\\spad{b})}.") (($ $ "left" $) "\\spad{setelt(a,{}\"left\",{}b)} (also written \\axiom{a . left \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setleft!(a,{}\\spad{b})}.")) (|right| (($ $) "\\spad{right(a)} returns the right child.")) (|elt| (($ $ "right") "\\spad{elt(a,{}\"right\")} (also written: \\axiom{a . right}) is equivalent to \\axiom{right(a)}.") (($ $ "left") "\\spad{elt(u,{}\"left\")} (also written: \\axiom{a . left}) is equivalent to \\axiom{left(a)}.")) (|left| (($ $) "\\spad{left(u)} returns the left child.")))
-((-2500 . T))
+((-2137 . T))
NIL
(-116 UP)
((|constructor| (NIL "\\indented{1}{Author: Frederic Lehobey,{} James \\spad{H}. Davenport} Date Created: 28 June 1994 Date Last Updated: 11 July 1997 Basic Operations: brillhartIrreducible? Related Domains: Also See: AMS Classifications: Keywords: factorization Examples: References: [1] John Brillhart,{} Note on Irreducibility Testing,{} Mathematics of Computation,{} vol. 35,{} num. 35,{} Oct. 1980,{} 1379-1381 [2] James Davenport,{} On Brillhart Irreducibility. To appear. [3] John Brillhart,{} On the Euler and Bernoulli polynomials,{} \\spad{J}. Reine Angew. Math.,{} \\spad{v}. 234,{} (1969),{} \\spad{pp}. 45-64")) (|noLinearFactor?| (((|Boolean|) |#1|) "\\spad{noLinearFactor?(p)} returns \\spad{true} if \\spad{p} can be shown to have no linear factor by a theorem of Lehmer,{} \\spad{false} else. \\spad{I} insist on the fact that \\spad{false} does not mean that \\spad{p} has a linear factor.")) (|brillhartTrials| (((|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{brillhartTrials(n)} sets to \\spad{n} the number of tests in \\spadfun{brillhartIrreducible?} and returns the previous value.") (((|NonNegativeInteger|)) "\\spad{brillhartTrials()} returns the number of tests in \\spadfun{brillhartIrreducible?}.")) (|brillhartIrreducible?| (((|Boolean|) |#1| (|Boolean|)) "\\spad{brillhartIrreducible?(p,{}noLinears)} returns \\spad{true} if \\spad{p} can be shown to be irreducible by a remark of Brillhart,{} \\spad{false} else. If \\spad{noLinears} is \\spad{true},{} we are being told \\spad{p} has no linear factors \\spad{false} does not mean that \\spad{p} is reducible.") (((|Boolean|) |#1|) "\\spad{brillhartIrreducible?(p)} returns \\spad{true} if \\spad{p} can be shown to be irreducible by a remark of Brillhart,{} \\spad{false} is inconclusive.")))
@@ -398,15 +398,15 @@ NIL
NIL
(-117 S)
((|constructor| (NIL "BinarySearchTree(\\spad{S}) is the domain of a binary trees where elements are ordered across the tree. A binary search tree is either empty or has a value which is an \\spad{S},{} and a right and left which are both BinaryTree(\\spad{S}) Elements are ordered across the tree.")) (|split| (((|Record| (|:| |less| $) (|:| |greater| $)) |#1| $) "\\spad{split(x,{}b)} splits binary tree \\spad{b} into two trees,{} one with elements greater than \\spad{x},{} the other with elements less than \\spad{x}.")) (|insertRoot!| (($ |#1| $) "\\spad{insertRoot!(x,{}b)} inserts element \\spad{x} as a root of binary search tree \\spad{b}.")) (|insert!| (($ |#1| $) "\\spad{insert!(x,{}b)} inserts element \\spad{x} as leaves into binary search tree \\spad{b}.")) (|binarySearchTree| (($ (|List| |#1|)) "\\spad{binarySearchTree(l)} \\undocumented")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
(-118 S)
((|constructor| (NIL "The bit aggregate category models aggregates representing large quantities of Boolean data.")) (|xor| (($ $ $) "\\spad{xor(a,{}b)} returns the logical {\\em exclusive-or} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|or| (($ $ $) "\\spad{a or b} returns the logical {\\em or} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|and| (($ $ $) "\\spad{a and b} returns the logical {\\em and} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|nor| (($ $ $) "\\spad{nor(a,{}b)} returns the logical {\\em nor} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|nand| (($ $ $) "\\spad{nand(a,{}b)} returns the logical {\\em nand} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (^ (($ $) "\\spad{^ b} returns the logical {\\em not} of bit aggregate \\axiom{\\spad{b}}.")) (|not| (($ $) "\\spad{not(b)} returns the logical {\\em not} of bit aggregate \\axiom{\\spad{b}}.")))
NIL
NIL
(-119)
((|constructor| (NIL "The bit aggregate category models aggregates representing large quantities of Boolean data.")) (|xor| (($ $ $) "\\spad{xor(a,{}b)} returns the logical {\\em exclusive-or} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|or| (($ $ $) "\\spad{a or b} returns the logical {\\em or} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|and| (($ $ $) "\\spad{a and b} returns the logical {\\em and} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|nor| (($ $ $) "\\spad{nor(a,{}b)} returns the logical {\\em nor} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|nand| (($ $ $) "\\spad{nand(a,{}b)} returns the logical {\\em nand} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (^ (($ $) "\\spad{^ b} returns the logical {\\em not} of bit aggregate \\axiom{\\spad{b}}.")) (|not| (($ $) "\\spad{not(b)} returns the logical {\\em not} of bit aggregate \\axiom{\\spad{b}}.")))
-((-4249 . T) (-4248 . T) (-2500 . T))
+((-4251 . T) (-4250 . T) (-2137 . T))
NIL
(-120 A S)
((|constructor| (NIL "\\spadtype{BinaryTreeCategory(S)} is the category of binary trees: a tree which is either empty or else is a \\spadfun{node} consisting of a value and a \\spadfun{left} and \\spadfun{right},{} both binary trees.")) (|node| (($ $ |#2| $) "\\spad{node(left,{}v,{}right)} creates a binary tree with value \\spad{v},{} a binary tree \\spad{left},{} and a binary tree \\spad{right}.")) (|finiteAggregate| ((|attribute|) "Binary trees have a finite number of components")) (|shallowlyMutable| ((|attribute|) "Binary trees have updateable components")))
@@ -414,4303 +414,4311 @@ NIL
NIL
(-121 S)
((|constructor| (NIL "\\spadtype{BinaryTreeCategory(S)} is the category of binary trees: a tree which is either empty or else is a \\spadfun{node} consisting of a value and a \\spadfun{left} and \\spadfun{right},{} both binary trees.")) (|node| (($ $ |#1| $) "\\spad{node(left,{}v,{}right)} creates a binary tree with value \\spad{v},{} a binary tree \\spad{left},{} and a binary tree \\spad{right}.")) (|finiteAggregate| ((|attribute|) "Binary trees have a finite number of components")) (|shallowlyMutable| ((|attribute|) "Binary trees have updateable components")))
-((-4248 . T) (-4249 . T) (-2500 . T))
+((-4250 . T) (-4251 . T) (-2137 . T))
NIL
(-122 S)
((|constructor| (NIL "\\spadtype{BinaryTournament(S)} is the domain of binary trees where elements are ordered down the tree. A binary search tree is either empty or is a node containing a \\spadfun{value} of type \\spad{S},{} and a \\spadfun{right} and a \\spadfun{left} which are both \\spadtype{BinaryTree(S)}")) (|insert!| (($ |#1| $) "\\spad{insert!(x,{}b)} inserts element \\spad{x} as leaves into binary tournament \\spad{b}.")) (|binaryTournament| (($ (|List| |#1|)) "\\spad{binaryTournament(ls)} creates a binary tournament with the elements of \\spad{ls} as values at the nodes.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
(-123 S)
((|constructor| (NIL "\\spadtype{BinaryTree(S)} is the domain of all binary trees. A binary tree over \\spad{S} is either empty or has a \\spadfun{value} which is an \\spad{S} and a \\spadfun{right} and \\spadfun{left} which are both binary trees.")) (|binaryTree| (($ $ |#1| $) "\\spad{binaryTree(l,{}v,{}r)} creates a binary tree with value \\spad{v} with left subtree \\spad{l} and right subtree \\spad{r}.") (($ |#1|) "\\spad{binaryTree(v)} is an non-empty binary tree with value \\spad{v},{} and left and right empty.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
(-124)
+((|constructor| (NIL "ByteArray provides datatype for fix-sized buffer of bytes.")))
+((-4251 . T) (-4250 . T))
+((-3321 (-12 (|HasCategory| (-125) (QUOTE (-788))) (|HasCategory| (-125) (LIST (QUOTE -288) (QUOTE (-125))))) (-12 (|HasCategory| (-125) (QUOTE (-1018))) (|HasCategory| (-125) (LIST (QUOTE -288) (QUOTE (-125)))))) (-3321 (-12 (|HasCategory| (-125) (QUOTE (-1018))) (|HasCategory| (-125) (LIST (QUOTE -288) (QUOTE (-125))))) (|HasCategory| (-125) (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| (-125) (LIST (QUOTE -566) (QUOTE (-501)))) (-3321 (|HasCategory| (-125) (QUOTE (-788))) (|HasCategory| (-125) (QUOTE (-1018)))) (|HasCategory| (-125) (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| (-125) (QUOTE (-1018))) (-12 (|HasCategory| (-125) (QUOTE (-1018))) (|HasCategory| (-125) (LIST (QUOTE -288) (QUOTE (-125))))) (|HasCategory| (-125) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-125)
+((|constructor| (NIL "Byte is the datatype of 8-bit sized unsigned integer values.")) (|coerce| (($ (|NonNegativeInteger|)) "\\spad{coerce(x)} injects the unsigned integer value \\spad{`v'} into the Byte algebra. \\spad{`v'} must be non-negative and less than 256.")))
+NIL
+NIL
+(-126)
((|constructor| (NIL "This is an \\spadtype{AbelianMonoid} with the cancellation property,{} \\spadignore{i.e.} \\spad{ a+b = a+c => b=c }. This is formalised by the partial subtraction operator,{} which satisfies the axioms listed below: \\blankline")) (|subtractIfCan| (((|Union| $ "failed") $ $) "\\spad{subtractIfCan(x,{} y)} returns an element \\spad{z} such that \\spad{z+y=x} or \"failed\" if no such element exists.")))
NIL
NIL
-(-125)
+(-127)
((|constructor| (NIL "A cachable set is a set whose elements keep an integer as part of their structure.")) (|setPosition| (((|Void|) $ (|NonNegativeInteger|)) "\\spad{setPosition(x,{} n)} associates the integer \\spad{n} to \\spad{x}.")) (|position| (((|NonNegativeInteger|) $) "\\spad{position(x)} returns the integer \\spad{n} associated to \\spad{x}.")))
NIL
NIL
-(-126)
+(-128)
((|constructor| (NIL "Members of the domain CardinalNumber are values indicating the cardinality of sets,{} both finite and infinite. Arithmetic operations are defined on cardinal numbers as follows. \\blankline If \\spad{x = \\#X} and \\spad{y = \\#Y} then \\indented{2}{\\spad{x+y\\space{2}= \\#(X+Y)}\\space{3}\\tab{30}disjoint union} \\indented{2}{\\spad{x-y\\space{2}= \\#(X-Y)}\\space{3}\\tab{30}relative complement} \\indented{2}{\\spad{x*y\\space{2}= \\#(X*Y)}\\space{3}\\tab{30}cartesian product} \\indented{2}{\\spad{x**y = \\#(X**Y)}\\space{2}\\tab{30}\\spad{X**Y = \\{g| g:Y->X\\}}} \\blankline The non-negative integers have a natural construction as cardinals \\indented{2}{\\spad{0 = \\#\\{\\}},{} \\spad{1 = \\{0\\}},{} \\spad{2 = \\{0,{} 1\\}},{} ...,{} \\spad{n = \\{i| 0 <= i < n\\}}.} \\blankline That \\spad{0} acts as a zero for the multiplication of cardinals is equivalent to the axiom of choice. \\blankline The generalized continuum hypothesis asserts \\center{\\spad{2**Aleph i = Aleph(i+1)}} and is independent of the axioms of set theory [Goedel 1940]. \\blankline Three commonly encountered cardinal numbers are \\indented{3}{\\spad{a = \\#Z}\\space{7}\\tab{30}countable infinity} \\indented{3}{\\spad{c = \\#R}\\space{7}\\tab{30}the continuum} \\indented{3}{\\spad{f = \\#\\{g| g:[0,{}1]->R\\}}} \\blankline In this domain,{} these values are obtained using \\indented{3}{\\spad{a := Aleph 0},{} \\spad{c := 2**a},{} \\spad{f := 2**c}.} \\blankline")) (|generalizedContinuumHypothesisAssumed| (((|Boolean|) (|Boolean|)) "\\spad{generalizedContinuumHypothesisAssumed(bool)} is used to dictate whether the hypothesis is to be assumed.")) (|generalizedContinuumHypothesisAssumed?| (((|Boolean|)) "\\spad{generalizedContinuumHypothesisAssumed?()} tests if the hypothesis is currently assumed.")) (|countable?| (((|Boolean|) $) "\\spad{countable?(\\spad{a})} determines whether \\spad{a} is a countable cardinal,{} \\spadignore{i.e.} an integer or \\spad{Aleph 0}.")) (|finite?| (((|Boolean|) $) "\\spad{finite?(\\spad{a})} determines whether \\spad{a} is a finite cardinal,{} \\spadignore{i.e.} an integer.")) (|Aleph| (($ (|NonNegativeInteger|)) "\\spad{Aleph(n)} provides the named (infinite) cardinal number.")) (** (($ $ $) "\\spad{x**y} returns \\spad{\\#(X**Y)} where \\spad{X**Y} is defined \\indented{1}{as \\spad{\\{g| g:Y->X\\}}.}")) (- (((|Union| $ "failed") $ $) "\\spad{x - y} returns an element \\spad{z} such that \\spad{z+y=x} or \"failed\" if no such element exists.")) (|commutative| ((|attribute| "*") "a domain \\spad{D} has \\spad{commutative(\"*\")} if it has an operation \\spad{\"*\": (D,{}D) -> D} which is commutative.")))
-(((-4250 "*") . T))
+(((-4252 "*") . T))
NIL
-(-127 |minix| -3765 S T$)
+(-129 |minix| -2951 S T$)
((|constructor| (NIL "This package provides functions to enable conversion of tensors given conversion of the components.")) (|map| (((|CartesianTensor| |#1| |#2| |#4|) (|Mapping| |#4| |#3|) (|CartesianTensor| |#1| |#2| |#3|)) "\\spad{map(f,{}ts)} does a componentwise conversion of the tensor \\spad{ts} to a tensor with components of type \\spad{T}.")) (|reshape| (((|CartesianTensor| |#1| |#2| |#4|) (|List| |#4|) (|CartesianTensor| |#1| |#2| |#3|)) "\\spad{reshape(lt,{}ts)} organizes the list of components \\spad{lt} into a tensor with the same shape as \\spad{ts}.")))
NIL
NIL
-(-128 |minix| -3765 R)
+(-130 |minix| -2951 R)
((|constructor| (NIL "CartesianTensor(minix,{}dim,{}\\spad{R}) provides Cartesian tensors with components belonging to a commutative ring \\spad{R}. These tensors can have any number of indices. Each index takes values from \\spad{minix} to \\spad{minix + dim - 1}.")) (|sample| (($) "\\spad{sample()} returns an object of type \\%.")) (|unravel| (($ (|List| |#3|)) "\\spad{unravel(t)} produces a tensor from a list of components such that \\indented{2}{\\spad{unravel(ravel(t)) = t}.}")) (|ravel| (((|List| |#3|) $) "\\spad{ravel(t)} produces a list of components from a tensor such that \\indented{2}{\\spad{unravel(ravel(t)) = t}.}")) (|leviCivitaSymbol| (($) "\\spad{leviCivitaSymbol()} is the rank \\spad{dim} tensor defined by \\spad{leviCivitaSymbol()(i1,{}...idim) = +1/0/-1} if \\spad{i1,{}...,{}idim} is an even/is nota /is an odd permutation of \\spad{minix,{}...,{}minix+dim-1}.")) (|kroneckerDelta| (($) "\\spad{kroneckerDelta()} is the rank 2 tensor defined by \\indented{3}{\\spad{kroneckerDelta()(i,{}j)}} \\indented{6}{\\spad{= 1\\space{2}if i = j}} \\indented{6}{\\spad{= 0 if\\space{2}i \\~= j}}")) (|reindex| (($ $ (|List| (|Integer|))) "\\spad{reindex(t,{}[i1,{}...,{}idim])} permutes the indices of \\spad{t}. For example,{} if \\spad{r = reindex(t,{} [4,{}1,{}2,{}3])} for a rank 4 tensor \\spad{t},{} then \\spad{r} is the rank for tensor given by \\indented{4}{\\spad{r(i,{}j,{}k,{}l) = t(l,{}i,{}j,{}k)}.}")) (|transpose| (($ $ (|Integer|) (|Integer|)) "\\spad{transpose(t,{}i,{}j)} exchanges the \\spad{i}\\spad{-}th and \\spad{j}\\spad{-}th indices of \\spad{t}. For example,{} if \\spad{r = transpose(t,{}2,{}3)} for a rank 4 tensor \\spad{t},{} then \\spad{r} is the rank 4 tensor given by \\indented{4}{\\spad{r(i,{}j,{}k,{}l) = t(i,{}k,{}j,{}l)}.}") (($ $) "\\spad{transpose(t)} exchanges the first and last indices of \\spad{t}. For example,{} if \\spad{r = transpose(t)} for a rank 4 tensor \\spad{t},{} then \\spad{r} is the rank 4 tensor given by \\indented{4}{\\spad{r(i,{}j,{}k,{}l) = t(l,{}j,{}k,{}i)}.}")) (|contract| (($ $ (|Integer|) (|Integer|)) "\\spad{contract(t,{}i,{}j)} is the contraction of tensor \\spad{t} which sums along the \\spad{i}\\spad{-}th and \\spad{j}\\spad{-}th indices. For example,{} if \\spad{r = contract(t,{}1,{}3)} for a rank 4 tensor \\spad{t},{} then \\spad{r} is the rank 2 \\spad{(= 4 - 2)} tensor given by \\indented{4}{\\spad{r(i,{}j) = sum(h=1..dim,{}t(h,{}i,{}h,{}j))}.}") (($ $ (|Integer|) $ (|Integer|)) "\\spad{contract(t,{}i,{}s,{}j)} is the inner product of tenors \\spad{s} and \\spad{t} which sums along the \\spad{k1}\\spad{-}th index of \\spad{t} and the \\spad{k2}\\spad{-}th index of \\spad{s}. For example,{} if \\spad{r = contract(s,{}2,{}t,{}1)} for rank 3 tensors rank 3 tensors \\spad{s} and \\spad{t},{} then \\spad{r} is the rank 4 \\spad{(= 3 + 3 - 2)} tensor given by \\indented{4}{\\spad{r(i,{}j,{}k,{}l) = sum(h=1..dim,{}s(i,{}h,{}j)*t(h,{}k,{}l))}.}")) (* (($ $ $) "\\spad{s*t} is the inner product of the tensors \\spad{s} and \\spad{t} which contracts the last index of \\spad{s} with the first index of \\spad{t},{} \\spadignore{i.e.} \\indented{4}{\\spad{t*s = contract(t,{}rank t,{} s,{} 1)}} \\indented{4}{\\spad{t*s = sum(k=1..N,{} t[i1,{}..,{}iN,{}k]*s[k,{}j1,{}..,{}jM])}} This is compatible with the use of \\spad{M*v} to denote the matrix-vector inner product.")) (|product| (($ $ $) "\\spad{product(s,{}t)} is the outer product of the tensors \\spad{s} and \\spad{t}. For example,{} if \\spad{r = product(s,{}t)} for rank 2 tensors \\spad{s} and \\spad{t},{} then \\spad{r} is a rank 4 tensor given by \\indented{4}{\\spad{r(i,{}j,{}k,{}l) = s(i,{}j)*t(k,{}l)}.}")) (|elt| ((|#3| $ (|List| (|Integer|))) "\\spad{elt(t,{}[i1,{}...,{}iN])} gives a component of a rank \\spad{N} tensor.") ((|#3| $ (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{elt(t,{}i,{}j,{}k,{}l)} gives a component of a rank 4 tensor.") ((|#3| $ (|Integer|) (|Integer|) (|Integer|)) "\\spad{elt(t,{}i,{}j,{}k)} gives a component of a rank 3 tensor.") ((|#3| $ (|Integer|) (|Integer|)) "\\spad{elt(t,{}i,{}j)} gives a component of a rank 2 tensor.") ((|#3| $ (|Integer|)) "\\spad{elt(t,{}i)} gives a component of a rank 1 tensor.") ((|#3| $) "\\spad{elt(t)} gives the component of a rank 0 tensor.")) (|rank| (((|NonNegativeInteger|) $) "\\spad{rank(t)} returns the tensorial rank of \\spad{t} (that is,{} the number of indices). This is the same as the graded module degree.")) (|coerce| (($ (|List| $)) "\\spad{coerce([t_1,{}...,{}t_dim])} allows tensors to be constructed using lists.") (($ (|List| |#3|)) "\\spad{coerce([r_1,{}...,{}r_dim])} allows tensors to be constructed using lists.") (($ (|SquareMatrix| |#2| |#3|)) "\\spad{coerce(m)} views a matrix as a rank 2 tensor.") (($ (|DirectProduct| |#2| |#3|)) "\\spad{coerce(v)} views a vector as a rank 1 tensor.")))
NIL
NIL
-(-129)
+(-131)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Create: February 16,{} 2008. Date Last Updated: February 16,{} 2008. Basic Operations: coerce Related Constructors: Also See: Type")))
NIL
NIL
-(-130)
+(-132)
((|constructor| (NIL "This domain allows classes of characters to be defined and manipulated efficiently.")) (|alphanumeric| (($) "\\spad{alphanumeric()} returns the class of all characters for which \\spadfunFrom{alphanumeric?}{Character} is \\spad{true}.")) (|alphabetic| (($) "\\spad{alphabetic()} returns the class of all characters for which \\spadfunFrom{alphabetic?}{Character} is \\spad{true}.")) (|lowerCase| (($) "\\spad{lowerCase()} returns the class of all characters for which \\spadfunFrom{lowerCase?}{Character} is \\spad{true}.")) (|upperCase| (($) "\\spad{upperCase()} returns the class of all characters for which \\spadfunFrom{upperCase?}{Character} is \\spad{true}.")) (|hexDigit| (($) "\\spad{hexDigit()} returns the class of all characters for which \\spadfunFrom{hexDigit?}{Character} is \\spad{true}.")) (|digit| (($) "\\spad{digit()} returns the class of all characters for which \\spadfunFrom{digit?}{Character} is \\spad{true}.")) (|charClass| (($ (|List| (|Character|))) "\\spad{charClass(l)} creates a character class which contains exactly the characters given in the list \\spad{l}.") (($ (|String|)) "\\spad{charClass(s)} creates a character class which contains exactly the characters given in the string \\spad{s}.")))
-((-4248 . T) (-4238 . T) (-4249 . T))
-((-3255 (-12 (|HasCategory| (-133) (QUOTE (-344))) (|HasCategory| (-133) (LIST (QUOTE -286) (QUOTE (-133))))) (-12 (|HasCategory| (-133) (QUOTE (-1016))) (|HasCategory| (-133) (LIST (QUOTE -286) (QUOTE (-133)))))) (|HasCategory| (-133) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| (-133) (QUOTE (-344))) (|HasCategory| (-133) (QUOTE (-786))) (|HasCategory| (-133) (QUOTE (-1016))) (-12 (|HasCategory| (-133) (QUOTE (-1016))) (|HasCategory| (-133) (LIST (QUOTE -286) (QUOTE (-133))))) (|HasCategory| (-133) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-131 R Q A)
+((-4250 . T) (-4240 . T) (-4251 . T))
+((-3321 (-12 (|HasCategory| (-135) (QUOTE (-346))) (|HasCategory| (-135) (LIST (QUOTE -288) (QUOTE (-135))))) (-12 (|HasCategory| (-135) (QUOTE (-1018))) (|HasCategory| (-135) (LIST (QUOTE -288) (QUOTE (-135)))))) (|HasCategory| (-135) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| (-135) (QUOTE (-346))) (|HasCategory| (-135) (QUOTE (-788))) (|HasCategory| (-135) (QUOTE (-1018))) (-12 (|HasCategory| (-135) (QUOTE (-1018))) (|HasCategory| (-135) (LIST (QUOTE -288) (QUOTE (-135))))) (|HasCategory| (-135) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-133 R Q A)
((|constructor| (NIL "CommonDenominator provides functions to compute the common denominator of a finite linear aggregate of elements of the quotient field of an integral domain.")) (|splitDenominator| (((|Record| (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) "\\spad{splitDenominator([q1,{}...,{}qn])} returns \\spad{[[p1,{}...,{}pn],{} d]} such that \\spad{\\spad{qi} = pi/d} and \\spad{d} is a common denominator for the \\spad{qi}\\spad{'s}.")) (|clearDenominator| ((|#3| |#3|) "\\spad{clearDenominator([q1,{}...,{}qn])} returns \\spad{[p1,{}...,{}pn]} such that \\spad{\\spad{qi} = pi/d} where \\spad{d} is a common denominator for the \\spad{qi}\\spad{'s}.")) (|commonDenominator| ((|#1| |#3|) "\\spad{commonDenominator([q1,{}...,{}qn])} returns a common denominator \\spad{d} for \\spad{q1},{}...,{}\\spad{qn}.")))
NIL
NIL
-(-132)
+(-134)
((|constructor| (NIL "Category for the usual combinatorial functions.")) (|permutation| (($ $ $) "\\spad{permutation(n,{} m)} returns the number of permutations of \\spad{n} objects taken \\spad{m} at a time. Note: \\spad{permutation(n,{}m) = n!/(n-m)!}.")) (|factorial| (($ $) "\\spad{factorial(n)} computes the factorial of \\spad{n} (denoted in the literature by \\spad{n!}) Note: \\spad{n! = n (n-1)! when n > 0}; also,{} \\spad{0! = 1}.")) (|binomial| (($ $ $) "\\spad{binomial(n,{}r)} returns the \\spad{(n,{}r)} binomial coefficient (often denoted in the literature by \\spad{C(n,{}r)}). Note: \\spad{C(n,{}r) = n!/(r!(n-r)!)} where \\spad{n >= r >= 0}.")))
NIL
NIL
-(-133)
+(-135)
((|constructor| (NIL "This domain provides the basic character data type.")) (|alphanumeric?| (((|Boolean|) $) "\\spad{alphanumeric?(c)} tests if \\spad{c} is either a letter or number,{} \\spadignore{i.e.} one of 0..9,{} a..\\spad{z} or A..\\spad{Z}.")) (|lowerCase?| (((|Boolean|) $) "\\spad{lowerCase?(c)} tests if \\spad{c} is an lower case letter,{} \\spadignore{i.e.} one of a..\\spad{z}.")) (|upperCase?| (((|Boolean|) $) "\\spad{upperCase?(c)} tests if \\spad{c} is an upper case letter,{} \\spadignore{i.e.} one of A..\\spad{Z}.")) (|alphabetic?| (((|Boolean|) $) "\\spad{alphabetic?(c)} tests if \\spad{c} is a letter,{} \\spadignore{i.e.} one of a..\\spad{z} or A..\\spad{Z}.")) (|hexDigit?| (((|Boolean|) $) "\\spad{hexDigit?(c)} tests if \\spad{c} is a hexadecimal numeral,{} \\spadignore{i.e.} one of 0..9,{} a..\\spad{f} or A..\\spad{F}.")) (|digit?| (((|Boolean|) $) "\\spad{digit?(c)} tests if \\spad{c} is a digit character,{} \\spadignore{i.e.} one of 0..9.")) (|lowerCase| (($ $) "\\spad{lowerCase(c)} converts an upper case letter to the corresponding lower case letter. If \\spad{c} is not an upper case letter,{} then it is returned unchanged.")) (|upperCase| (($ $) "\\spad{upperCase(c)} converts a lower case letter to the corresponding upper case letter. If \\spad{c} is not a lower case letter,{} then it is returned unchanged.")) (|escape| (($) "\\spad{escape()} provides the escape character,{} \\spad{_},{} which is used to allow quotes and other characters {\\em within} strings.")) (|quote| (($) "\\spad{quote()} provides the string quote character,{} \\spad{\"}.")) (|space| (($) "\\spad{space()} provides the blank character.")) (|char| (($ (|String|)) "\\spad{char(s)} provides a character from a string \\spad{s} of length one.") (($ (|NonNegativeInteger|)) "\\spad{char(i)} provides a character corresponding to the integer code \\spad{i}. It is always \\spad{true} that \\spad{ord char i = i}.")) (|ord| (((|NonNegativeInteger|) $) "\\spad{ord(c)} provides an integral code corresponding to the character \\spad{c}. It is always \\spad{true} that \\spad{char ord c = c}.")))
NIL
NIL
-(-134)
+(-136)
((|constructor| (NIL "Rings of Characteristic Non Zero")) (|charthRoot| (((|Union| $ "failed") $) "\\spad{charthRoot(x)} returns the \\spad{p}th root of \\spad{x} where \\spad{p} is the characteristic of the ring.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-135 R)
+(-137 R)
((|constructor| (NIL "This package provides a characteristicPolynomial function for any matrix over a commutative ring.")) (|characteristicPolynomial| ((|#1| (|Matrix| |#1|) |#1|) "\\spad{characteristicPolynomial(m,{}r)} computes the characteristic polynomial of the matrix \\spad{m} evaluated at the point \\spad{r}. In particular,{} if \\spad{r} is the polynomial \\spad{'x},{} then it returns the characteristic polynomial expressed as a polynomial in \\spad{'x}.")))
NIL
NIL
-(-136)
+(-138)
((|constructor| (NIL "Rings of Characteristic Zero.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-137 -3894 UP UPUP)
+(-139 -3576 UP UPUP)
((|constructor| (NIL "Tools to send a point to infinity on an algebraic curve.")) (|chvar| (((|Record| (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (|Fraction| |#2|)) (|:| |c2| (|Fraction| |#2|)) (|:| |deg| (|NonNegativeInteger|))) |#3| |#3|) "\\spad{chvar(f(x,{}y),{} p(x,{}y))} returns \\spad{[g(z,{}t),{} q(z,{}t),{} c1(z),{} c2(z),{} n]} such that under the change of variable \\spad{x = c1(z)},{} \\spad{y = t * c2(z)},{} one gets \\spad{f(x,{}y) = g(z,{}t)}. The algebraic relation between \\spad{x} and \\spad{y} is \\spad{p(x,{} y) = 0}. The algebraic relation between \\spad{z} and \\spad{t} is \\spad{q(z,{} t) = 0}.")) (|eval| ((|#3| |#3| (|Fraction| |#2|) (|Fraction| |#2|)) "\\spad{eval(p(x,{}y),{} f(x),{} g(x))} returns \\spad{p(f(x),{} y * g(x))}.")) (|goodPoint| ((|#1| |#3| |#3|) "\\spad{goodPoint(p,{} q)} returns an integer a such that a is neither a pole of \\spad{p(x,{}y)} nor a branch point of \\spad{q(x,{}y) = 0}.")) (|rootPoly| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| (|Fraction| |#2|)) (|:| |radicand| |#2|)) (|Fraction| |#2|) (|NonNegativeInteger|)) "\\spad{rootPoly(g,{} n)} returns \\spad{[m,{} c,{} P]} such that \\spad{c * g ** (1/n) = P ** (1/m)} thus if \\spad{y**n = g},{} then \\spad{z**m = P} where \\spad{z = c * y}.")) (|radPoly| (((|Union| (|Record| (|:| |radicand| (|Fraction| |#2|)) (|:| |deg| (|NonNegativeInteger|))) "failed") |#3|) "\\spad{radPoly(p(x,{} y))} returns \\spad{[c(x),{} n]} if \\spad{p} is of the form \\spad{y**n - c(x)},{} \"failed\" otherwise.")) (|mkIntegral| (((|Record| (|:| |coef| (|Fraction| |#2|)) (|:| |poly| |#3|)) |#3|) "\\spad{mkIntegral(p(x,{}y))} returns \\spad{[c(x),{} q(x,{}z)]} such that \\spad{z = c * y} is integral. The algebraic relation between \\spad{x} and \\spad{y} is \\spad{p(x,{} y) = 0}. The algebraic relation between \\spad{x} and \\spad{z} is \\spad{q(x,{} z) = 0}.")))
NIL
NIL
-(-138 R CR)
+(-140 R CR)
((|constructor| (NIL "This package provides the generalized euclidean algorithm which is needed as the basic step for factoring polynomials.")) (|solveLinearPolynomialEquation| (((|Union| (|List| (|SparseUnivariatePolynomial| |#2|)) "failed") (|List| (|SparseUnivariatePolynomial| |#2|)) (|SparseUnivariatePolynomial| |#2|)) "\\spad{solveLinearPolynomialEquation([f1,{} ...,{} fn],{} g)} where (\\spad{fi} relatively prime to each other) returns a list of \\spad{ai} such that \\spad{g} = sum \\spad{ai} prod \\spad{fj} (\\spad{j} \\spad{\\=} \\spad{i}) or equivalently g/prod \\spad{fj} = sum (ai/fi) or returns \"failed\" if no such list exists")))
NIL
NIL
-(-139 A S)
+(-141 A S)
((|constructor| (NIL "A collection is a homogeneous aggregate which can built from list of members. The operation used to build the aggregate is generically named \\spadfun{construct}. However,{} each collection provides its own special function with the same name as the data type,{} except with an initial lower case letter,{} \\spadignore{e.g.} \\spadfun{list} for \\spadtype{List},{} \\spadfun{flexibleArray} for \\spadtype{FlexibleArray},{} and so on.")) (|removeDuplicates| (($ $) "\\spad{removeDuplicates(u)} returns a copy of \\spad{u} with all duplicates removed.")) (|select| (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{select(p,{}u)} returns a copy of \\spad{u} containing only those elements such \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. Note: \\axiom{select(\\spad{p},{}\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u} | \\spad{p}(\\spad{x})]}.")) (|remove| (($ |#2| $) "\\spad{remove(x,{}u)} returns a copy of \\spad{u} with all elements \\axiom{\\spad{y} = \\spad{x}} removed. Note: \\axiom{remove(\\spad{y},{}\\spad{c}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{c} | \\spad{x} \\spad{~=} \\spad{y}]}.") (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{remove(p,{}u)} returns a copy of \\spad{u} removing all elements \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. Note: \\axiom{remove(\\spad{p},{}\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u} | not \\spad{p}(\\spad{x})]}.")) (|reduce| ((|#2| (|Mapping| |#2| |#2| |#2|) $ |#2| |#2|) "\\spad{reduce(f,{}u,{}x,{}z)} reduces the binary operation \\spad{f} across \\spad{u},{} stopping when an \"absorbing element\" \\spad{z} is encountered. As for \\axiom{reduce(\\spad{f},{}\\spad{u},{}\\spad{x})},{} \\spad{x} is the identity operation of \\spad{f}. Same as \\axiom{reduce(\\spad{f},{}\\spad{u},{}\\spad{x})} when \\spad{u} contains no element \\spad{z}. Thus the third argument \\spad{x} is returned when \\spad{u} is empty.") ((|#2| (|Mapping| |#2| |#2| |#2|) $ |#2|) "\\spad{reduce(f,{}u,{}x)} reduces the binary operation \\spad{f} across \\spad{u},{} where \\spad{x} is the identity operation of \\spad{f}. Same as \\axiom{reduce(\\spad{f},{}\\spad{u})} if \\spad{u} has 2 or more elements. Returns \\axiom{\\spad{f}(\\spad{x},{}\\spad{y})} if \\spad{u} has one element \\spad{y},{} \\spad{x} if \\spad{u} is empty. For example,{} \\axiom{reduce(+,{}\\spad{u},{}0)} returns the sum of the elements of \\spad{u}.") ((|#2| (|Mapping| |#2| |#2| |#2|) $) "\\spad{reduce(f,{}u)} reduces the binary operation \\spad{f} across \\spad{u}. For example,{} if \\spad{u} is \\axiom{[\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]} then \\axiom{reduce(\\spad{f},{}\\spad{u})} returns \\axiom{\\spad{f}(..\\spad{f}(\\spad{f}(\\spad{x},{}\\spad{y}),{}...),{}\\spad{z})}. Note: if \\spad{u} has one element \\spad{x},{} \\axiom{reduce(\\spad{f},{}\\spad{u})} returns \\spad{x}. Error: if \\spad{u} is empty.")) (|find| (((|Union| |#2| "failed") (|Mapping| (|Boolean|) |#2|) $) "\\spad{find(p,{}u)} returns the first \\spad{x} in \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true},{} and \"failed\" otherwise.")) (|construct| (($ (|List| |#2|)) "\\axiom{construct(\\spad{x},{}\\spad{y},{}...,{}\\spad{z})} returns the collection of elements \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}} ordered as given. Equivalently written as \\axiom{[\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]\\$\\spad{D}},{} where \\spad{D} is the domain. \\spad{D} may be omitted for those of type List.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (QUOTE (-1016))) (|HasAttribute| |#1| (QUOTE -4248)))
-(-140 S)
+((|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasAttribute| |#1| (QUOTE -4250)))
+(-142 S)
((|constructor| (NIL "A collection is a homogeneous aggregate which can built from list of members. The operation used to build the aggregate is generically named \\spadfun{construct}. However,{} each collection provides its own special function with the same name as the data type,{} except with an initial lower case letter,{} \\spadignore{e.g.} \\spadfun{list} for \\spadtype{List},{} \\spadfun{flexibleArray} for \\spadtype{FlexibleArray},{} and so on.")) (|removeDuplicates| (($ $) "\\spad{removeDuplicates(u)} returns a copy of \\spad{u} with all duplicates removed.")) (|select| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{select(p,{}u)} returns a copy of \\spad{u} containing only those elements such \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. Note: \\axiom{select(\\spad{p},{}\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u} | \\spad{p}(\\spad{x})]}.")) (|remove| (($ |#1| $) "\\spad{remove(x,{}u)} returns a copy of \\spad{u} with all elements \\axiom{\\spad{y} = \\spad{x}} removed. Note: \\axiom{remove(\\spad{y},{}\\spad{c}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{c} | \\spad{x} \\spad{~=} \\spad{y}]}.") (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{remove(p,{}u)} returns a copy of \\spad{u} removing all elements \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. Note: \\axiom{remove(\\spad{p},{}\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u} | not \\spad{p}(\\spad{x})]}.")) (|reduce| ((|#1| (|Mapping| |#1| |#1| |#1|) $ |#1| |#1|) "\\spad{reduce(f,{}u,{}x,{}z)} reduces the binary operation \\spad{f} across \\spad{u},{} stopping when an \"absorbing element\" \\spad{z} is encountered. As for \\axiom{reduce(\\spad{f},{}\\spad{u},{}\\spad{x})},{} \\spad{x} is the identity operation of \\spad{f}. Same as \\axiom{reduce(\\spad{f},{}\\spad{u},{}\\spad{x})} when \\spad{u} contains no element \\spad{z}. Thus the third argument \\spad{x} is returned when \\spad{u} is empty.") ((|#1| (|Mapping| |#1| |#1| |#1|) $ |#1|) "\\spad{reduce(f,{}u,{}x)} reduces the binary operation \\spad{f} across \\spad{u},{} where \\spad{x} is the identity operation of \\spad{f}. Same as \\axiom{reduce(\\spad{f},{}\\spad{u})} if \\spad{u} has 2 or more elements. Returns \\axiom{\\spad{f}(\\spad{x},{}\\spad{y})} if \\spad{u} has one element \\spad{y},{} \\spad{x} if \\spad{u} is empty. For example,{} \\axiom{reduce(+,{}\\spad{u},{}0)} returns the sum of the elements of \\spad{u}.") ((|#1| (|Mapping| |#1| |#1| |#1|) $) "\\spad{reduce(f,{}u)} reduces the binary operation \\spad{f} across \\spad{u}. For example,{} if \\spad{u} is \\axiom{[\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]} then \\axiom{reduce(\\spad{f},{}\\spad{u})} returns \\axiom{\\spad{f}(..\\spad{f}(\\spad{f}(\\spad{x},{}\\spad{y}),{}...),{}\\spad{z})}. Note: if \\spad{u} has one element \\spad{x},{} \\axiom{reduce(\\spad{f},{}\\spad{u})} returns \\spad{x}. Error: if \\spad{u} is empty.")) (|find| (((|Union| |#1| "failed") (|Mapping| (|Boolean|) |#1|) $) "\\spad{find(p,{}u)} returns the first \\spad{x} in \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true},{} and \"failed\" otherwise.")) (|construct| (($ (|List| |#1|)) "\\axiom{construct(\\spad{x},{}\\spad{y},{}...,{}\\spad{z})} returns the collection of elements \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}} ordered as given. Equivalently written as \\axiom{[\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]\\$\\spad{D}},{} where \\spad{D} is the domain. \\spad{D} may be omitted for those of type List.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-141 |n| K Q)
+(-143 |n| K Q)
((|constructor| (NIL "CliffordAlgebra(\\spad{n},{} \\spad{K},{} \\spad{Q}) defines a vector space of dimension \\spad{2**n} over \\spad{K},{} given a quadratic form \\spad{Q} on \\spad{K**n}. \\blankline If \\spad{e[i]},{} \\spad{1<=i<=n} is a basis for \\spad{K**n} then \\indented{3}{1,{} \\spad{e[i]} (\\spad{1<=i<=n}),{} \\spad{e[i1]*e[i2]}} (\\spad{1<=i1<i2<=n}),{}...,{}\\spad{e[1]*e[2]*..*e[n]} is a basis for the Clifford Algebra. \\blankline The algebra is defined by the relations \\indented{3}{\\spad{e[i]*e[j] = -e[j]*e[i]}\\space{2}(\\spad{i \\~~= j}),{}} \\indented{3}{\\spad{e[i]*e[i] = Q(e[i])}} \\blankline Examples of Clifford Algebras are: gaussians,{} quaternions,{} exterior algebras and spin algebras.")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(x)} computes the multiplicative inverse of \\spad{x} or \"failed\" if \\spad{x} is not invertible.")) (|coefficient| ((|#2| $ (|List| (|PositiveInteger|))) "\\spad{coefficient(x,{}[i1,{}i2,{}...,{}iN])} extracts the coefficient of \\spad{e(i1)*e(i2)*...*e(iN)} in \\spad{x}.")) (|monomial| (($ |#2| (|List| (|PositiveInteger|))) "\\spad{monomial(c,{}[i1,{}i2,{}...,{}iN])} produces the value given by \\spad{c*e(i1)*e(i2)*...*e(iN)}.")) (|e| (($ (|PositiveInteger|)) "\\spad{e(n)} produces the appropriate unit element.")))
-((-4243 . T) (-4242 . T) (-4245 . T))
+((-4245 . T) (-4244 . T) (-4247 . T))
NIL
-(-142)
+(-144)
((|constructor| (NIL "\\indented{1}{The purpose of this package is to provide reasonable plots of} functions with singularities.")) (|clipWithRanges| (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|List| (|List| (|Point| (|DoubleFloat|)))) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{clipWithRanges(pointLists,{}xMin,{}xMax,{}yMin,{}yMax)} performs clipping on a list of lists of points,{} \\spad{pointLists}. Clipping is done within the specified ranges of \\spad{xMin},{} \\spad{xMax} and \\spad{yMin},{} \\spad{yMax}. This function is used internally by the \\fakeAxiomFun{iClipParametric} subroutine in this package.")) (|clipParametric| (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|Plot|) (|Fraction| (|Integer|)) (|Fraction| (|Integer|))) "\\spad{clipParametric(p,{}frac,{}sc)} performs two-dimensional clipping on a plot,{} \\spad{p},{} from the domain \\spadtype{Plot} for the parametric curve \\spad{x = f(t)},{} \\spad{y = g(t)}; the fraction parameter is specified by \\spad{frac} and the scale parameter is specified by \\spad{sc} for use in the \\fakeAxiomFun{iClipParametric} subroutine,{} which is called by this function.") (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|Plot|)) "\\spad{clipParametric(p)} performs two-dimensional clipping on a plot,{} \\spad{p},{} from the domain \\spadtype{Plot} for the parametric curve \\spad{x = f(t)},{} \\spad{y = g(t)}; the default parameters \\spad{1/2} for the fraction and \\spad{5/1} for the scale are used in the \\fakeAxiomFun{iClipParametric} subroutine,{} which is called by this function.")) (|clip| (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|List| (|List| (|Point| (|DoubleFloat|))))) "\\spad{clip(ll)} performs two-dimensional clipping on a list of lists of points,{} \\spad{ll}; the default parameters \\spad{1/2} for the fraction and \\spad{5/1} for the scale are used in the \\fakeAxiomFun{iClipParametric} subroutine,{} which is called by this function.") (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|List| (|Point| (|DoubleFloat|)))) "\\spad{clip(l)} performs two-dimensional clipping on a curve \\spad{l},{} which is a list of points; the default parameters \\spad{1/2} for the fraction and \\spad{5/1} for the scale are used in the \\fakeAxiomFun{iClipParametric} subroutine,{} which is called by this function.") (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|Plot|) (|Fraction| (|Integer|)) (|Fraction| (|Integer|))) "\\spad{clip(p,{}frac,{}sc)} performs two-dimensional clipping on a plot,{} \\spad{p},{} from the domain \\spadtype{Plot} for the graph of one variable \\spad{y = f(x)}; the fraction parameter is specified by \\spad{frac} and the scale parameter is specified by \\spad{sc} for use in the \\spadfun{clip} function.") (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|Plot|)) "\\spad{clip(p)} performs two-dimensional clipping on a plot,{} \\spad{p},{} from the domain \\spadtype{Plot} for the graph of one variable,{} \\spad{y = f(x)}; the default parameters \\spad{1/4} for the fraction and \\spad{5/1} for the scale are used in the \\spadfun{clip} function.")))
NIL
NIL
-(-143 UP |Par|)
+(-145 UP |Par|)
((|complexZeros| (((|List| (|Complex| |#2|)) |#1| |#2|) "\\spad{complexZeros(poly,{} eps)} finds the complex zeros of the univariate polynomial \\spad{poly} to precision eps with solutions returned as complex floats or rationals depending on the type of eps.")))
NIL
NIL
-(-144)
+(-146)
((|constructor| (NIL "Color() specifies a domain of 27 colors provided in the \\Language{} system (the colors mix additively).")) (|color| (($ (|Integer|)) "\\spad{color(i)} returns a color of the indicated hue \\spad{i}.")) (|numberOfHues| (((|PositiveInteger|)) "\\spad{numberOfHues()} returns the number of total hues,{} set in totalHues.")) (|hue| (((|Integer|) $) "\\spad{hue(c)} returns the hue index of the indicated color \\spad{c}.")) (|blue| (($) "\\spad{blue()} returns the position of the blue hue from total hues.")) (|green| (($) "\\spad{green()} returns the position of the green hue from total hues.")) (|yellow| (($) "\\spad{yellow()} returns the position of the yellow hue from total hues.")) (|red| (($) "\\spad{red()} returns the position of the red hue from total hues.")) (+ (($ $ $) "\\spad{c1 + c2} additively mixes the two colors \\spad{c1} and \\spad{c2}.")) (* (($ (|DoubleFloat|) $) "\\spad{s * c},{} returns the color \\spad{c},{} whose weighted shade has been scaled by \\spad{s}.") (($ (|PositiveInteger|) $) "\\spad{s * c},{} returns the color \\spad{c},{} whose weighted shade has been scaled by \\spad{s}.")))
NIL
NIL
-(-145 R -3894)
+(-147 R -3576)
((|constructor| (NIL "Provides combinatorial functions over an integral domain.")) (|ipow| ((|#2| (|List| |#2|)) "\\spad{ipow(l)} should be local but conditional.")) (|iidprod| ((|#2| (|List| |#2|)) "\\spad{iidprod(l)} should be local but conditional.")) (|iidsum| ((|#2| (|List| |#2|)) "\\spad{iidsum(l)} should be local but conditional.")) (|iipow| ((|#2| (|List| |#2|)) "\\spad{iipow(l)} should be local but conditional.")) (|iiperm| ((|#2| (|List| |#2|)) "\\spad{iiperm(l)} should be local but conditional.")) (|iibinom| ((|#2| (|List| |#2|)) "\\spad{iibinom(l)} should be local but conditional.")) (|iifact| ((|#2| |#2|) "\\spad{iifact(x)} should be local but conditional.")) (|product| ((|#2| |#2| (|SegmentBinding| |#2|)) "\\spad{product(f(n),{} n = a..b)} returns \\spad{f}(a) * ... * \\spad{f}(\\spad{b}) as a formal product.") ((|#2| |#2| (|Symbol|)) "\\spad{product(f(n),{} n)} returns the formal product \\spad{P}(\\spad{n}) which verifies \\spad{P}(\\spad{n+1})\\spad{/P}(\\spad{n}) = \\spad{f}(\\spad{n}).")) (|summation| ((|#2| |#2| (|SegmentBinding| |#2|)) "\\spad{summation(f(n),{} n = a..b)} returns \\spad{f}(a) + ... + \\spad{f}(\\spad{b}) as a formal sum.") ((|#2| |#2| (|Symbol|)) "\\spad{summation(f(n),{} n)} returns the formal sum \\spad{S}(\\spad{n}) which verifies \\spad{S}(\\spad{n+1}) - \\spad{S}(\\spad{n}) = \\spad{f}(\\spad{n}).")) (|factorials| ((|#2| |#2| (|Symbol|)) "\\spad{factorials(f,{} x)} rewrites the permutations and binomials in \\spad{f} involving \\spad{x} in terms of factorials.") ((|#2| |#2|) "\\spad{factorials(f)} rewrites the permutations and binomials in \\spad{f} in terms of factorials.")) (|factorial| ((|#2| |#2|) "\\spad{factorial(n)} returns the factorial of \\spad{n},{} \\spadignore{i.e.} \\spad{n!}.")) (|permutation| ((|#2| |#2| |#2|) "\\spad{permutation(n,{} r)} returns the number of permutations of \\spad{n} objects taken \\spad{r} at a time,{} \\spadignore{i.e.} \\spad{n!/}(\\spad{n}-\\spad{r})!.")) (|binomial| ((|#2| |#2| |#2|) "\\spad{binomial(n,{} r)} returns the number of subsets of \\spad{r} objects taken among \\spad{n} objects,{} \\spadignore{i.e.} \\spad{n!/}(\\spad{r!} * (\\spad{n}-\\spad{r})!).")) (** ((|#2| |#2| |#2|) "\\spad{a ** b} is the formal exponential a**b.")) (|operator| (((|BasicOperator|) (|BasicOperator|)) "\\spad{operator(op)} returns a copy of \\spad{op} with the domain-dependent properties appropriate for \\spad{F}; error if \\spad{op} is not a combinatorial operator.")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(op)} is \\spad{true} if \\spad{op} is a combinatorial operator.")))
NIL
NIL
-(-146 I)
+(-148 I)
((|stirling2| ((|#1| |#1| |#1|) "\\spad{stirling2(n,{}m)} returns the Stirling number of the second kind denoted \\spad{SS[n,{}m]}.")) (|stirling1| ((|#1| |#1| |#1|) "\\spad{stirling1(n,{}m)} returns the Stirling number of the first kind denoted \\spad{S[n,{}m]}.")) (|permutation| ((|#1| |#1| |#1|) "\\spad{permutation(n)} returns \\spad{!P(n,{}r) = n!/(n-r)!}. This is the number of permutations of \\spad{n} objects taken \\spad{r} at a time.")) (|partition| ((|#1| |#1|) "\\spad{partition(n)} returns the number of partitions of the integer \\spad{n}. This is the number of distinct ways that \\spad{n} can be written as a sum of positive integers.")) (|multinomial| ((|#1| |#1| (|List| |#1|)) "\\spad{multinomial(n,{}[m1,{}m2,{}...,{}mk])} returns the multinomial coefficient \\spad{n!/(m1! m2! ... mk!)}.")) (|factorial| ((|#1| |#1|) "\\spad{factorial(n)} returns \\spad{n!}. this is the product of all integers between 1 and \\spad{n} (inclusive). Note: \\spad{0!} is defined to be 1.")) (|binomial| ((|#1| |#1| |#1|) "\\spad{binomial(n,{}r)} returns the binomial coefficient \\spad{C(n,{}r) = n!/(r! (n-r)!)},{} where \\spad{n >= r >= 0}. This is the number of combinations of \\spad{n} objects taken \\spad{r} at a time.")))
NIL
NIL
-(-147)
+(-149)
((|constructor| (NIL "CombinatorialOpsCategory is the category obtaining by adjoining summations and products to the usual combinatorial operations.")) (|product| (($ $ (|SegmentBinding| $)) "\\spad{product(f(n),{} n = a..b)} returns \\spad{f}(a) * ... * \\spad{f}(\\spad{b}) as a formal product.") (($ $ (|Symbol|)) "\\spad{product(f(n),{} n)} returns the formal product \\spad{P}(\\spad{n}) which verifies \\spad{P}(\\spad{n+1})\\spad{/P}(\\spad{n}) = \\spad{f}(\\spad{n}).")) (|summation| (($ $ (|SegmentBinding| $)) "\\spad{summation(f(n),{} n = a..b)} returns \\spad{f}(a) + ... + \\spad{f}(\\spad{b}) as a formal sum.") (($ $ (|Symbol|)) "\\spad{summation(f(n),{} n)} returns the formal sum \\spad{S}(\\spad{n}) which verifies \\spad{S}(\\spad{n+1}) - \\spad{S}(\\spad{n}) = \\spad{f}(\\spad{n}).")) (|factorials| (($ $ (|Symbol|)) "\\spad{factorials(f,{} x)} rewrites the permutations and binomials in \\spad{f} involving \\spad{x} in terms of factorials.") (($ $) "\\spad{factorials(f)} rewrites the permutations and binomials in \\spad{f} in terms of factorials.")))
NIL
NIL
-(-148)
+(-150)
((|constructor| (NIL "A type for basic commutators")) (|mkcomm| (($ $ $) "\\spad{mkcomm(i,{}j)} \\undocumented{}") (($ (|Integer|)) "\\spad{mkcomm(i)} \\undocumented{}")))
NIL
NIL
-(-149)
+(-151)
((|constructor| (NIL "This package exports the elementary operators,{} with some semantics already attached to them. The semantics that is attached here is not dependent on the set in which the operators will be applied.")) (|operator| (((|BasicOperator|) (|Symbol|)) "\\spad{operator(s)} returns an operator with name \\spad{s},{} with the appropriate semantics if \\spad{s} is known. If \\spad{s} is not known,{} the result has no semantics.")))
NIL
NIL
-(-150 R UP UPUP)
+(-152 R UP UPUP)
((|constructor| (NIL "A package for swapping the order of two variables in a tower of two UnivariatePolynomialCategory extensions.")) (|swap| ((|#3| |#3|) "\\spad{swap(p(x,{}y))} returns \\spad{p}(\\spad{y},{}\\spad{x}).")))
NIL
NIL
-(-151 S R)
+(-153 S R)
((|constructor| (NIL "This category represents the extension of a ring by a square root of \\spad{-1}.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(x)} returns \\spad{x} as a rational number,{} or \"failed\" if \\spad{x} is not a rational number.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(x)} returns \\spad{x} as a rational number. Error: if \\spad{x} is not a rational number.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(x)} tests if \\spad{x} is a rational number.")) (|polarCoordinates| (((|Record| (|:| |r| |#2|) (|:| |phi| |#2|)) $) "\\spad{polarCoordinates(x)} returns (\\spad{r},{} phi) such that \\spad{x} = \\spad{r} * exp(\\%\\spad{i} * phi).")) (|argument| ((|#2| $) "\\spad{argument(x)} returns the angle made by (0,{}1) and (0,{}\\spad{x}).")) (|abs| (($ $) "\\spad{abs(x)} returns the absolute value of \\spad{x} = sqrt(norm(\\spad{x})).")) (|exquo| (((|Union| $ "failed") $ |#2|) "\\spad{exquo(x,{} r)} returns the exact quotient of \\spad{x} by \\spad{r},{} or \"failed\" if \\spad{r} does not divide \\spad{x} exactly.")) (|norm| ((|#2| $) "\\spad{norm(x)} returns \\spad{x} * conjugate(\\spad{x})")) (|real| ((|#2| $) "\\spad{real(x)} returns real part of \\spad{x}.")) (|imag| ((|#2| $) "\\spad{imag(x)} returns imaginary part of \\spad{x}.")) (|conjugate| (($ $) "\\spad{conjugate(x + \\%i y)} returns \\spad{x} - \\%\\spad{i} \\spad{y}.")) (|imaginary| (($) "\\spad{imaginary()} = sqrt(\\spad{-1}) = \\%\\spad{i}.")) (|complex| (($ |#2| |#2|) "\\spad{complex(x,{}y)} constructs \\spad{x} + \\%i*y.") ((|attribute|) "indicates that \\% has sqrt(\\spad{-1})")))
NIL
-((|HasCategory| |#2| (QUOTE (-840))) (|HasCategory| |#2| (QUOTE (-508))) (|HasCategory| |#2| (QUOTE (-930))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-982))) (|HasCategory| |#2| (QUOTE (-949))) (|HasCategory| |#2| (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (QUOTE (-339))) (|HasAttribute| |#2| (QUOTE -4244)) (|HasAttribute| |#2| (QUOTE -4247)) (|HasCategory| |#2| (QUOTE (-284))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-786))))
-(-152 R)
+((|HasCategory| |#2| (QUOTE (-842))) (|HasCategory| |#2| (QUOTE (-510))) (|HasCategory| |#2| (QUOTE (-932))) (|HasCategory| |#2| (QUOTE (-1111))) (|HasCategory| |#2| (QUOTE (-984))) (|HasCategory| |#2| (QUOTE (-951))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-138))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (QUOTE (-341))) (|HasAttribute| |#2| (QUOTE -4246)) (|HasAttribute| |#2| (QUOTE -4249)) (|HasCategory| |#2| (QUOTE (-286))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-788))))
+(-154 R)
((|constructor| (NIL "This category represents the extension of a ring by a square root of \\spad{-1}.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(x)} returns \\spad{x} as a rational number,{} or \"failed\" if \\spad{x} is not a rational number.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(x)} returns \\spad{x} as a rational number. Error: if \\spad{x} is not a rational number.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(x)} tests if \\spad{x} is a rational number.")) (|polarCoordinates| (((|Record| (|:| |r| |#1|) (|:| |phi| |#1|)) $) "\\spad{polarCoordinates(x)} returns (\\spad{r},{} phi) such that \\spad{x} = \\spad{r} * exp(\\%\\spad{i} * phi).")) (|argument| ((|#1| $) "\\spad{argument(x)} returns the angle made by (0,{}1) and (0,{}\\spad{x}).")) (|abs| (($ $) "\\spad{abs(x)} returns the absolute value of \\spad{x} = sqrt(norm(\\spad{x})).")) (|exquo| (((|Union| $ "failed") $ |#1|) "\\spad{exquo(x,{} r)} returns the exact quotient of \\spad{x} by \\spad{r},{} or \"failed\" if \\spad{r} does not divide \\spad{x} exactly.")) (|norm| ((|#1| $) "\\spad{norm(x)} returns \\spad{x} * conjugate(\\spad{x})")) (|real| ((|#1| $) "\\spad{real(x)} returns real part of \\spad{x}.")) (|imag| ((|#1| $) "\\spad{imag(x)} returns imaginary part of \\spad{x}.")) (|conjugate| (($ $) "\\spad{conjugate(x + \\%i y)} returns \\spad{x} - \\%\\spad{i} \\spad{y}.")) (|imaginary| (($) "\\spad{imaginary()} = sqrt(\\spad{-1}) = \\%\\spad{i}.")) (|complex| (($ |#1| |#1|) "\\spad{complex(x,{}y)} constructs \\spad{x} + \\%i*y.") ((|attribute|) "indicates that \\% has sqrt(\\spad{-1})")))
-((-4241 -3255 (|has| |#1| (-515)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840)))) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) (-4244 |has| |#1| (-6 -4244)) (-4247 |has| |#1| (-6 -4247)) (-2531 . T) (-2500 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 -3321 (|has| |#1| (-517)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842)))) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) (-4246 |has| |#1| (-6 -4246)) (-4249 |has| |#1| (-6 -4249)) (-2182 . T) (-2137 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-153 RR PR)
+(-155 RR PR)
((|constructor| (NIL "\\indented{1}{Author:} Date Created: Date Last Updated: Basic Functions: Related Constructors: Complex,{} UnivariatePolynomial Also See: AMS Classifications: Keywords: complex,{} polynomial factorization,{} factor References:")) (|factor| (((|Factored| |#2|) |#2|) "\\spad{factor(p)} factorizes the polynomial \\spad{p} with complex coefficients.")))
NIL
NIL
-(-154 R S)
+(-156 R S)
((|constructor| (NIL "This package extends maps from underlying rings to maps between complex over those rings.")) (|map| (((|Complex| |#2|) (|Mapping| |#2| |#1|) (|Complex| |#1|)) "\\spad{map(f,{}u)} maps \\spad{f} onto real and imaginary parts of \\spad{u}.")))
NIL
NIL
-(-155 R)
+(-157 R)
((|constructor| (NIL "\\spadtype {Complex(R)} creates the domain of elements of the form \\spad{a + b * i} where \\spad{a} and \\spad{b} come from the ring \\spad{R},{} and \\spad{i} is a new element such that \\spad{i**2 = -1}.")))
-((-4241 -3255 (|has| |#1| (-515)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840)))) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) (-4244 |has| |#1| (-6 -4244)) (-4247 |has| |#1| (-6 -4247)) (-2531 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-325))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-325)))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-344))) (-3255 (-12 (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#1| (QUOTE (-325)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-325)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -484) (QUOTE (-1087)) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-325)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-325)))) (-12 (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-325)))) (-12 (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-325)))) (|HasCategory| |#1| (QUOTE (-211))) (-12 (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-325)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-325)))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (LIST (QUOTE -263) (|devaluate| |#1|) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087))))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (QUOTE (-344)))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (QUOTE (-767)))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (QUOTE (-786)))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (QUOTE (-949)))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (QUOTE (-1109)))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499))))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-339))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (QUOTE (-840))))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-840)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-840)))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (QUOTE (-840))))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1109)))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-949))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (-3255 (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (QUOTE (-515)))) (-3255 (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-325)))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#1| (LIST (QUOTE -484) (QUOTE (-1087)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -263) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-767))) (|HasCategory| |#1| (QUOTE (-982))) (-12 (|HasCategory| |#1| (QUOTE (-982))) (|HasCategory| |#1| (QUOTE (-1109)))) (|HasCategory| |#1| (QUOTE (-508))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-840))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-339)))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-211))) (-12 (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasAttribute| |#1| (QUOTE -4244)) (|HasAttribute| |#1| (QUOTE -4247)) (-12 (|HasCategory| |#1| (QUOTE (-211))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087))))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-134)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-325)))))
-(-156 R S CS)
+((-4243 -3321 (|has| |#1| (-517)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842)))) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) (-4246 |has| |#1| (-6 -4246)) (-4249 |has| |#1| (-6 -4249)) (-2182 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-327))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-327)))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-346))) (-3321 (-12 (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#1| (QUOTE (-327)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-327)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -486) (QUOTE (-1089)) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-327)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-327)))) (-12 (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-327)))) (-12 (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-327)))) (|HasCategory| |#1| (QUOTE (-213))) (-12 (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-327)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-327)))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (LIST (QUOTE -265) (|devaluate| |#1|) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089))))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (QUOTE (-346)))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (QUOTE (-769)))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (QUOTE (-788)))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (QUOTE (-951)))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (QUOTE (-1111)))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501))))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-341))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (QUOTE (-842))))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-842)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-842)))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (QUOTE (-842))))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| |#1| (QUOTE (-932))) (|HasCategory| |#1| (QUOTE (-1111)))) (|HasCategory| |#1| (QUOTE (-1111))) (|HasCategory| |#1| (QUOTE (-951))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (-3321 (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (QUOTE (-517)))) (-3321 (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-327)))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#1| (LIST (QUOTE -486) (QUOTE (-1089)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -265) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-769))) (|HasCategory| |#1| (QUOTE (-984))) (-12 (|HasCategory| |#1| (QUOTE (-984))) (|HasCategory| |#1| (QUOTE (-1111)))) (|HasCategory| |#1| (QUOTE (-510))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-842))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-341)))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-213))) (-12 (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasAttribute| |#1| (QUOTE -4246)) (|HasAttribute| |#1| (QUOTE -4249)) (-12 (|HasCategory| |#1| (QUOTE (-213))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089))))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-136)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-327)))))
+(-158 R S CS)
((|constructor| (NIL "This package supports converting complex expressions to patterns")) (|convert| (((|Pattern| |#1|) |#3|) "\\spad{convert(cs)} converts the complex expression \\spad{cs} to a pattern")))
NIL
NIL
-(-157)
+(-159)
((|constructor| (NIL "This domain implements some global properties of subspaces.")) (|copy| (($ $) "\\spad{copy(x)} \\undocumented")) (|solid| (((|Boolean|) $ (|Boolean|)) "\\spad{solid(x,{}b)} \\undocumented")) (|close| (((|Boolean|) $ (|Boolean|)) "\\spad{close(x,{}b)} \\undocumented")) (|solid?| (((|Boolean|) $) "\\spad{solid?(x)} \\undocumented")) (|closed?| (((|Boolean|) $) "\\spad{closed?(x)} \\undocumented")) (|new| (($) "\\spad{new()} \\undocumented")))
NIL
NIL
-(-158)
+(-160)
((|constructor| (NIL "The category of commutative rings with unity,{} \\spadignore{i.e.} rings where \\spadop{*} is commutative,{} and which have a multiplicative identity. element.")) (|commutative| ((|attribute| "*") "multiplication is commutative.")))
-(((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+(((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-159 R)
+(-161 R)
((|constructor| (NIL "\\spadtype{ContinuedFraction} implements general \\indented{1}{continued fractions.\\space{2}This version is not restricted to simple,{}} \\indented{1}{finite fractions and uses the \\spadtype{Stream} as a} \\indented{1}{representation.\\space{2}The arithmetic functions assume that the} \\indented{1}{approximants alternate below/above the convergence point.} \\indented{1}{This is enforced by ensuring the partial numerators and partial} \\indented{1}{denominators are greater than 0 in the Euclidean domain view of \\spad{R}} \\indented{1}{(\\spadignore{i.e.} \\spad{sizeLess?(0,{} x)}).}")) (|complete| (($ $) "\\spad{complete(x)} causes all entries in \\spadvar{\\spad{x}} to be computed. Normally entries are only computed as needed. If \\spadvar{\\spad{x}} is an infinite continued fraction,{} a user-initiated interrupt is necessary to stop the computation.")) (|extend| (($ $ (|Integer|)) "\\spad{extend(x,{}n)} causes the first \\spadvar{\\spad{n}} entries in the continued fraction \\spadvar{\\spad{x}} to be computed. Normally entries are only computed as needed.")) (|denominators| (((|Stream| |#1|) $) "\\spad{denominators(x)} returns the stream of denominators of the approximants of the continued fraction \\spadvar{\\spad{x}}. If the continued fraction is finite,{} then the stream will be finite.")) (|numerators| (((|Stream| |#1|) $) "\\spad{numerators(x)} returns the stream of numerators of the approximants of the continued fraction \\spadvar{\\spad{x}}. If the continued fraction is finite,{} then the stream will be finite.")) (|convergents| (((|Stream| (|Fraction| |#1|)) $) "\\spad{convergents(x)} returns the stream of the convergents of the continued fraction \\spadvar{\\spad{x}}. If the continued fraction is finite,{} then the stream will be finite.")) (|approximants| (((|Stream| (|Fraction| |#1|)) $) "\\spad{approximants(x)} returns the stream of approximants of the continued fraction \\spadvar{\\spad{x}}. If the continued fraction is finite,{} then the stream will be infinite and periodic with period 1.")) (|reducedForm| (($ $) "\\spad{reducedForm(x)} puts the continued fraction \\spadvar{\\spad{x}} in reduced form,{} \\spadignore{i.e.} the function returns an equivalent continued fraction of the form \\spad{continuedFraction(b0,{}[1,{}1,{}1,{}...],{}[b1,{}b2,{}b3,{}...])}.")) (|wholePart| ((|#1| $) "\\spad{wholePart(x)} extracts the whole part of \\spadvar{\\spad{x}}. That is,{} if \\spad{x = continuedFraction(b0,{} [a1,{}a2,{}a3,{}...],{} [b1,{}b2,{}b3,{}...])},{} then \\spad{wholePart(x) = b0}.")) (|partialQuotients| (((|Stream| |#1|) $) "\\spad{partialQuotients(x)} extracts the partial quotients in \\spadvar{\\spad{x}}. That is,{} if \\spad{x = continuedFraction(b0,{} [a1,{}a2,{}a3,{}...],{} [b1,{}b2,{}b3,{}...])},{} then \\spad{partialQuotients(x) = [b0,{}b1,{}b2,{}b3,{}...]}.")) (|partialDenominators| (((|Stream| |#1|) $) "\\spad{partialDenominators(x)} extracts the denominators in \\spadvar{\\spad{x}}. That is,{} if \\spad{x = continuedFraction(b0,{} [a1,{}a2,{}a3,{}...],{} [b1,{}b2,{}b3,{}...])},{} then \\spad{partialDenominators(x) = [b1,{}b2,{}b3,{}...]}.")) (|partialNumerators| (((|Stream| |#1|) $) "\\spad{partialNumerators(x)} extracts the numerators in \\spadvar{\\spad{x}}. That is,{} if \\spad{x = continuedFraction(b0,{} [a1,{}a2,{}a3,{}...],{} [b1,{}b2,{}b3,{}...])},{} then \\spad{partialNumerators(x) = [a1,{}a2,{}a3,{}...]}.")) (|reducedContinuedFraction| (($ |#1| (|Stream| |#1|)) "\\spad{reducedContinuedFraction(b0,{}b)} constructs a continued fraction in the following way: if \\spad{b = [b1,{}b2,{}...]} then the result is the continued fraction \\spad{b0 + 1/(b1 + 1/(b2 + ...))}. That is,{} the result is the same as \\spad{continuedFraction(b0,{}[1,{}1,{}1,{}...],{}[b1,{}b2,{}b3,{}...])}.")) (|continuedFraction| (($ |#1| (|Stream| |#1|) (|Stream| |#1|)) "\\spad{continuedFraction(b0,{}a,{}b)} constructs a continued fraction in the following way: if \\spad{a = [a1,{}a2,{}...]} and \\spad{b = [b1,{}b2,{}...]} then the result is the continued fraction \\spad{b0 + a1/(b1 + a2/(b2 + ...))}.") (($ (|Fraction| |#1|)) "\\spad{continuedFraction(r)} converts the fraction \\spadvar{\\spad{r}} with components of type \\spad{R} to a continued fraction over \\spad{R}.")))
-(((-4250 "*") . T) (-4241 . T) (-4246 . T) (-4240 . T) (-4242 . T) (-4243 . T) (-4245 . T))
+(((-4252 "*") . T) (-4243 . T) (-4248 . T) (-4242 . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-160)
+(-162)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: October 24,{} 2007 Date Last Modified: January 18,{} 2008. A `Contour' a list of bindings making up a `virtual scope'.")) (|findBinding| (((|Union| (|Binding|) "failed") (|Symbol|) $) "\\spad{findBinding(c,{}n)} returns the first binding associated with \\spad{`n'}. Otherwise `failed'.")) (|push| (($ (|Binding|) $) "\\spad{push(c,{}b)} augments the contour with binding \\spad{`b'}.")) (|bindings| (((|List| (|Binding|)) $) "\\spad{bindings(c)} returns the list of bindings in countour \\spad{c}.")))
NIL
NIL
-(-161 R)
+(-163 R)
((|constructor| (NIL "CoordinateSystems provides coordinate transformation functions for plotting. Functions in this package return conversion functions which take points expressed in other coordinate systems and return points with the corresponding Cartesian coordinates.")) (|conical| (((|Mapping| (|Point| |#1|) (|Point| |#1|)) |#1| |#1|) "\\spad{conical(a,{}b)} transforms from conical coordinates to Cartesian coordinates: \\spad{conical(a,{}b)} is a function which will map the point \\spad{(lambda,{}mu,{}nu)} to \\spad{x = lambda*mu*nu/(a*b)},{} \\spad{y = lambda/a*sqrt((mu**2-a**2)*(nu**2-a**2)/(a**2-b**2))},{} \\spad{z = lambda/b*sqrt((mu**2-b**2)*(nu**2-b**2)/(b**2-a**2))}.")) (|toroidal| (((|Mapping| (|Point| |#1|) (|Point| |#1|)) |#1|) "\\spad{toroidal(a)} transforms from toroidal coordinates to Cartesian coordinates: \\spad{toroidal(a)} is a function which will map the point \\spad{(u,{}v,{}phi)} to \\spad{x = a*sinh(v)*cos(phi)/(cosh(v)-cos(u))},{} \\spad{y = a*sinh(v)*sin(phi)/(cosh(v)-cos(u))},{} \\spad{z = a*sin(u)/(cosh(v)-cos(u))}.")) (|bipolarCylindrical| (((|Mapping| (|Point| |#1|) (|Point| |#1|)) |#1|) "\\spad{bipolarCylindrical(a)} transforms from bipolar cylindrical coordinates to Cartesian coordinates: \\spad{bipolarCylindrical(a)} is a function which will map the point \\spad{(u,{}v,{}z)} to \\spad{x = a*sinh(v)/(cosh(v)-cos(u))},{} \\spad{y = a*sin(u)/(cosh(v)-cos(u))},{} \\spad{z}.")) (|bipolar| (((|Mapping| (|Point| |#1|) (|Point| |#1|)) |#1|) "\\spad{bipolar(a)} transforms from bipolar coordinates to Cartesian coordinates: \\spad{bipolar(a)} is a function which will map the point \\spad{(u,{}v)} to \\spad{x = a*sinh(v)/(cosh(v)-cos(u))},{} \\spad{y = a*sin(u)/(cosh(v)-cos(u))}.")) (|oblateSpheroidal| (((|Mapping| (|Point| |#1|) (|Point| |#1|)) |#1|) "\\spad{oblateSpheroidal(a)} transforms from oblate spheroidal coordinates to Cartesian coordinates: \\spad{oblateSpheroidal(a)} is a function which will map the point \\spad{(\\spad{xi},{}eta,{}phi)} to \\spad{x = a*sinh(\\spad{xi})*sin(eta)*cos(phi)},{} \\spad{y = a*sinh(\\spad{xi})*sin(eta)*sin(phi)},{} \\spad{z = a*cosh(\\spad{xi})*cos(eta)}.")) (|prolateSpheroidal| (((|Mapping| (|Point| |#1|) (|Point| |#1|)) |#1|) "\\spad{prolateSpheroidal(a)} transforms from prolate spheroidal coordinates to Cartesian coordinates: \\spad{prolateSpheroidal(a)} is a function which will map the point \\spad{(\\spad{xi},{}eta,{}phi)} to \\spad{x = a*sinh(\\spad{xi})*sin(eta)*cos(phi)},{} \\spad{y = a*sinh(\\spad{xi})*sin(eta)*sin(phi)},{} \\spad{z = a*cosh(\\spad{xi})*cos(eta)}.")) (|ellipticCylindrical| (((|Mapping| (|Point| |#1|) (|Point| |#1|)) |#1|) "\\spad{ellipticCylindrical(a)} transforms from elliptic cylindrical coordinates to Cartesian coordinates: \\spad{ellipticCylindrical(a)} is a function which will map the point \\spad{(u,{}v,{}z)} to \\spad{x = a*cosh(u)*cos(v)},{} \\spad{y = a*sinh(u)*sin(v)},{} \\spad{z}.")) (|elliptic| (((|Mapping| (|Point| |#1|) (|Point| |#1|)) |#1|) "\\spad{elliptic(a)} transforms from elliptic coordinates to Cartesian coordinates: \\spad{elliptic(a)} is a function which will map the point \\spad{(u,{}v)} to \\spad{x = a*cosh(u)*cos(v)},{} \\spad{y = a*sinh(u)*sin(v)}.")) (|paraboloidal| (((|Point| |#1|) (|Point| |#1|)) "\\spad{paraboloidal(pt)} transforms \\spad{pt} from paraboloidal coordinates to Cartesian coordinates: the function produced will map the point \\spad{(u,{}v,{}phi)} to \\spad{x = u*v*cos(phi)},{} \\spad{y = u*v*sin(phi)},{} \\spad{z = 1/2 * (u**2 - v**2)}.")) (|parabolicCylindrical| (((|Point| |#1|) (|Point| |#1|)) "\\spad{parabolicCylindrical(pt)} transforms \\spad{pt} from parabolic cylindrical coordinates to Cartesian coordinates: the function produced will map the point \\spad{(u,{}v,{}z)} to \\spad{x = 1/2*(u**2 - v**2)},{} \\spad{y = u*v},{} \\spad{z}.")) (|parabolic| (((|Point| |#1|) (|Point| |#1|)) "\\spad{parabolic(pt)} transforms \\spad{pt} from parabolic coordinates to Cartesian coordinates: the function produced will map the point \\spad{(u,{}v)} to \\spad{x = 1/2*(u**2 - v**2)},{} \\spad{y = u*v}.")) (|spherical| (((|Point| |#1|) (|Point| |#1|)) "\\spad{spherical(pt)} transforms \\spad{pt} from spherical coordinates to Cartesian coordinates: the function produced will map the point \\spad{(r,{}theta,{}phi)} to \\spad{x = r*sin(phi)*cos(theta)},{} \\spad{y = r*sin(phi)*sin(theta)},{} \\spad{z = r*cos(phi)}.")) (|cylindrical| (((|Point| |#1|) (|Point| |#1|)) "\\spad{cylindrical(pt)} transforms \\spad{pt} from polar coordinates to Cartesian coordinates: the function produced will map the point \\spad{(r,{}theta,{}z)} to \\spad{x = r * cos(theta)},{} \\spad{y = r * sin(theta)},{} \\spad{z}.")) (|polar| (((|Point| |#1|) (|Point| |#1|)) "\\spad{polar(pt)} transforms \\spad{pt} from polar coordinates to Cartesian coordinates: the function produced will map the point \\spad{(r,{}theta)} to \\spad{x = r * cos(theta)} ,{} \\spad{y = r * sin(theta)}.")) (|cartesian| (((|Point| |#1|) (|Point| |#1|)) "\\spad{cartesian(pt)} returns the Cartesian coordinates of point \\spad{pt}.")))
NIL
NIL
-(-162 R |PolR| E)
+(-164 R |PolR| E)
((|constructor| (NIL "This package implements characteristicPolynomials for monogenic algebras using resultants")) (|characteristicPolynomial| ((|#2| |#3|) "\\spad{characteristicPolynomial(e)} returns the characteristic polynomial of \\spad{e} using resultants")))
NIL
NIL
-(-163 R S CS)
+(-165 R S CS)
((|constructor| (NIL "This package supports matching patterns involving complex expressions")) (|patternMatch| (((|PatternMatchResult| |#1| |#3|) |#3| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#3|)) "\\spad{patternMatch(cexpr,{} pat,{} res)} matches the pattern \\spad{pat} to the complex expression \\spad{cexpr}. res contains the variables of \\spad{pat} which are already matched and their matches.")))
NIL
-((|HasCategory| (-883 |#2|) (LIST (QUOTE -817) (|devaluate| |#1|))))
-(-164 R)
+((|HasCategory| (-885 |#2|) (LIST (QUOTE -819) (|devaluate| |#1|))))
+(-166 R)
((|constructor| (NIL "This package \\undocumented{}")) (|multiEuclideanTree| (((|List| |#1|) (|List| |#1|) |#1|) "\\spad{multiEuclideanTree(l,{}r)} \\undocumented{}")) (|chineseRemainder| (((|List| |#1|) (|List| (|List| |#1|)) (|List| |#1|)) "\\spad{chineseRemainder(llv,{}lm)} returns a list of values,{} each of which corresponds to the Chinese remainder of the associated element of \\axiom{\\spad{llv}} and axiom{\\spad{lm}}. This is more efficient than applying chineseRemainder several times.") ((|#1| (|List| |#1|) (|List| |#1|)) "\\spad{chineseRemainder(lv,{}lm)} returns a value \\axiom{\\spad{v}} such that,{} if \\spad{x} is \\axiom{\\spad{lv}.\\spad{i}} modulo \\axiom{\\spad{lm}.\\spad{i}} for all \\axiom{\\spad{i}},{} then \\spad{x} is \\axiom{\\spad{v}} modulo \\axiom{\\spad{lm}(1)\\spad{*lm}(2)*...\\spad{*lm}(\\spad{n})}.")) (|modTree| (((|List| |#1|) |#1| (|List| |#1|)) "\\spad{modTree(r,{}l)} \\undocumented{}")))
NIL
NIL
-(-165 R UP)
+(-167 R UP)
((|constructor| (NIL "\\spadtype{ComplexRootFindingPackage} provides functions to find all roots of a polynomial \\spad{p} over the complex number by using Plesken\\spad{'s} idea to calculate in the polynomial ring modulo \\spad{f} and employing the Chinese Remainder Theorem. In this first version,{} the precision (see \\spadfunFrom{digits}{Float}) is not increased when this is necessary to avoid rounding errors. Hence it is the user\\spad{'s} responsibility to increase the precision if necessary. Note also,{} if this package is called with \\spadignore{e.g.} \\spadtype{Fraction Integer},{} the precise calculations could require a lot of time. Also note that evaluating the zeros is not necessarily a good check whether the result is correct: already evaluation can cause rounding errors.")) (|startPolynomial| (((|Record| (|:| |start| |#2|) (|:| |factors| (|Factored| |#2|))) |#2|) "\\spad{startPolynomial(p)} uses the ideas of Schoenhage\\spad{'s} variant of Graeffe\\spad{'s} method to construct circles which separate roots to get a good start polynomial,{} \\spadignore{i.e.} one whose image under the Chinese Remainder Isomorphism has both entries of norm smaller and greater or equal to 1. In case the roots are found during internal calculations. The corresponding factors are in {\\em factors} which are otherwise 1.")) (|setErrorBound| ((|#1| |#1|) "\\spad{setErrorBound(eps)} changes the internal error bound,{} by default being {\\em 10 ** (-3)} to \\spad{eps},{} if \\spad{R} is a member in the category \\spadtype{QuotientFieldCategory Integer}. The internal {\\em globalDigits} is set to {\\em ceiling(1/r)**2*10} being {\\em 10**7} by default.")) (|schwerpunkt| (((|Complex| |#1|) |#2|) "\\spad{schwerpunkt(p)} determines the 'Schwerpunkt' of the roots of the polynomial \\spad{p} of degree \\spad{n},{} \\spadignore{i.e.} the center of gravity,{} which is {\\em coeffient of \\spad{x**(n-1)}} divided by {\\em n times coefficient of \\spad{x**n}}.")) (|rootRadius| ((|#1| |#2|) "\\spad{rootRadius(p)} calculates the root radius of \\spad{p} with a maximal error quotient of {\\em 1+globalEps},{} where {\\em globalEps} is the internal error bound,{} which can be set by {\\em setErrorBound}.") ((|#1| |#2| |#1|) "\\spad{rootRadius(p,{}errQuot)} calculates the root radius of \\spad{p} with a maximal error quotient of {\\em errQuot}.")) (|reciprocalPolynomial| ((|#2| |#2|) "\\spad{reciprocalPolynomial(p)} calulates a polynomial which has exactly the inverses of the non-zero roots of \\spad{p} as roots,{} and the same number of 0-roots.")) (|pleskenSplit| (((|Factored| |#2|) |#2| |#1|) "\\spad{pleskenSplit(poly,{} eps)} determines a start polynomial {\\em start}\\\\ by using \"startPolynomial then it increases the exponent \\spad{n} of {\\em start ** n mod poly} to get an approximate factor of {\\em poly},{} in general of degree \"degree \\spad{poly} \\spad{-1\"}. Then a divisor cascade is calculated and the best splitting is chosen,{} as soon as the error is small enough.") (((|Factored| |#2|) |#2| |#1| (|Boolean|)) "\\spad{pleskenSplit(poly,{}eps,{}info)} determines a start polynomial {\\em start} by using \"startPolynomial then it increases the exponent \\spad{n} of {\\em start ** n mod poly} to get an approximate factor of {\\em poly},{} in general of degree \"degree \\spad{poly} \\spad{-1\"}. Then a divisor cascade is calculated and the best splitting is chosen,{} as soon as the error is small enough. If {\\em info} is {\\em true},{} then information messages are issued.")) (|norm| ((|#1| |#2|) "\\spad{norm(p)} determines sum of absolute values of coefficients Note: this function depends on \\spadfunFrom{abs}{Complex}.")) (|graeffe| ((|#2| |#2|) "\\spad{graeffe p} determines \\spad{q} such that \\spad{q(-z**2) = p(z)*p(-z)}. Note that the roots of \\spad{q} are the squares of the roots of \\spad{p}.")) (|factor| (((|Factored| |#2|) |#2|) "\\spad{factor(p)} tries to factor \\spad{p} into linear factors with error atmost {\\em globalEps},{} the internal error bound,{} which can be set by {\\em setErrorBound}. An overall error bound {\\em eps0} is determined and iterated tree-like calls to {\\em pleskenSplit} are used to get the factorization.") (((|Factored| |#2|) |#2| |#1|) "\\spad{factor(p,{} eps)} tries to factor \\spad{p} into linear factors with error atmost {\\em eps}. An overall error bound {\\em eps0} is determined and iterated tree-like calls to {\\em pleskenSplit} are used to get the factorization.") (((|Factored| |#2|) |#2| |#1| (|Boolean|)) "\\spad{factor(p,{} eps,{} info)} tries to factor \\spad{p} into linear factors with error atmost {\\em eps}. An overall error bound {\\em eps0} is determined and iterated tree-like calls to {\\em pleskenSplit} are used to get the factorization. If {\\em info} is {\\em true},{} then information messages are given.")) (|divisorCascade| (((|List| (|Record| (|:| |factors| (|List| |#2|)) (|:| |error| |#1|))) |#2| |#2|) "\\spad{divisorCascade(p,{}tp)} assumes that degree of polynomial {\\em tp} is smaller than degree of polynomial \\spad{p},{} both monic. A sequence of divisions is calculated using the remainder,{} made monic,{} as divisor for the the next division. The result contains also the error of the factorizations,{} \\spadignore{i.e.} the norm of the remainder polynomial.") (((|List| (|Record| (|:| |factors| (|List| |#2|)) (|:| |error| |#1|))) |#2| |#2| (|Boolean|)) "\\spad{divisorCascade(p,{}tp)} assumes that degree of polynomial {\\em tp} is smaller than degree of polynomial \\spad{p},{} both monic. A sequence of divisions are calculated using the remainder,{} made monic,{} as divisor for the the next division. The result contains also the error of the factorizations,{} \\spadignore{i.e.} the norm of the remainder polynomial. If {\\em info} is {\\em true},{} then information messages are issued.")) (|complexZeros| (((|List| (|Complex| |#1|)) |#2| |#1|) "\\spad{complexZeros(p,{} eps)} tries to determine all complex zeros of the polynomial \\spad{p} with accuracy given by {\\em eps}.") (((|List| (|Complex| |#1|)) |#2|) "\\spad{complexZeros(p)} tries to determine all complex zeros of the polynomial \\spad{p} with accuracy given by the package constant {\\em globalEps} which you may change by {\\em setErrorBound}.")))
NIL
NIL
-(-166 S ST)
+(-168 S ST)
((|constructor| (NIL "This package provides tools for working with cyclic streams.")) (|computeCycleEntry| ((|#2| |#2| |#2|) "\\spad{computeCycleEntry(x,{}cycElt)},{} where \\spad{cycElt} is a pointer to a node in the cyclic part of the cyclic stream \\spad{x},{} returns a pointer to the first node in the cycle")) (|computeCycleLength| (((|NonNegativeInteger|) |#2|) "\\spad{computeCycleLength(s)} returns the length of the cycle of a cyclic stream \\spad{t},{} where \\spad{s} is a pointer to a node in the cyclic part of \\spad{t}.")) (|cycleElt| (((|Union| |#2| "failed") |#2|) "\\spad{cycleElt(s)} returns a pointer to a node in the cycle if the stream \\spad{s} is cyclic and returns \"failed\" if \\spad{s} is not cyclic")))
NIL
NIL
-(-167)
+(-169)
((|constructor| (NIL "This domains represents a syntax object that designates a category,{} domain,{} or a package. See Also: Syntax,{} Domain")) (|arguments| (((|List| (|Syntax|)) $) "\\spad{arguments returns} the list of syntax objects for the arguments used to invoke the constructor.")) (|constructorName| (((|Symbol|) $) "\\spad{constructorName c} returns the name of the constructor")))
NIL
NIL
-(-168 R -3894)
+(-170 R -3576)
((|constructor| (NIL "\\spadtype{ComplexTrigonometricManipulations} provides function that compute the real and imaginary parts of complex functions.")) (|complexForm| (((|Complex| (|Expression| |#1|)) |#2|) "\\spad{complexForm(f)} returns \\spad{[real f,{} imag f]}.")) (|trigs| ((|#2| |#2|) "\\spad{trigs(f)} rewrites all the complex logs and exponentials appearing in \\spad{f} in terms of trigonometric functions.")) (|real?| (((|Boolean|) |#2|) "\\spad{real?(f)} returns \\spad{true} if \\spad{f = real f}.")) (|imag| (((|Expression| |#1|) |#2|) "\\spad{imag(f)} returns the imaginary part of \\spad{f} where \\spad{f} is a complex function.")) (|real| (((|Expression| |#1|) |#2|) "\\spad{real(f)} returns the real part of \\spad{f} where \\spad{f} is a complex function.")) (|complexElementary| ((|#2| |#2| (|Symbol|)) "\\spad{complexElementary(f,{} x)} rewrites the kernels of \\spad{f} involving \\spad{x} in terms of the 2 fundamental complex transcendental elementary functions: \\spad{log,{} exp}.") ((|#2| |#2|) "\\spad{complexElementary(f)} rewrites \\spad{f} in terms of the 2 fundamental complex transcendental elementary functions: \\spad{log,{} exp}.")) (|complexNormalize| ((|#2| |#2| (|Symbol|)) "\\spad{complexNormalize(f,{} x)} rewrites \\spad{f} using the least possible number of complex independent kernels involving \\spad{x}.") ((|#2| |#2|) "\\spad{complexNormalize(f)} rewrites \\spad{f} using the least possible number of complex independent kernels.")))
NIL
NIL
-(-169 R)
+(-171 R)
((|constructor| (NIL "CoerceVectorMatrixPackage: an unexposed,{} technical package for data conversions")) (|coerce| (((|Vector| (|Matrix| (|Fraction| (|Polynomial| |#1|)))) (|Vector| (|Matrix| |#1|))) "\\spad{coerce(v)} coerces a vector \\spad{v} with entries in \\spadtype{Matrix R} as vector over \\spadtype{Matrix Fraction Polynomial R}")) (|coerceP| (((|Vector| (|Matrix| (|Polynomial| |#1|))) (|Vector| (|Matrix| |#1|))) "\\spad{coerceP(v)} coerces a vector \\spad{v} with entries in \\spadtype{Matrix R} as vector over \\spadtype{Matrix Polynomial R}")))
NIL
NIL
-(-170)
+(-172)
((|constructor| (NIL "Enumeration by cycle indices.")) (|skewSFunction| (((|SymmetricPolynomial| (|Fraction| (|Integer|))) (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{skewSFunction(li1,{}li2)} is the \\spad{S}-function \\indented{1}{of the partition difference \\spad{li1 - li2}} \\indented{1}{expressed in terms of power sum symmetric functions.}")) (|SFunction| (((|SymmetricPolynomial| (|Fraction| (|Integer|))) (|List| (|Integer|))) "\\spad{SFunction(\\spad{li})} is the \\spad{S}-function of the partition \\spad{\\spad{li}} \\indented{1}{expressed in terms of power sum symmetric functions.}")) (|wreath| (((|SymmetricPolynomial| (|Fraction| (|Integer|))) (|SymmetricPolynomial| (|Fraction| (|Integer|))) (|SymmetricPolynomial| (|Fraction| (|Integer|)))) "\\spad{wreath(s1,{}s2)} is the cycle index of the wreath product \\indented{1}{of the two groups whose cycle indices are \\spad{s1} and} \\indented{1}{\\spad{s2}.}")) (|eval| (((|Fraction| (|Integer|)) (|SymmetricPolynomial| (|Fraction| (|Integer|)))) "\\spad{eval s} is the sum of the coefficients of a cycle index.")) (|cup| (((|SymmetricPolynomial| (|Fraction| (|Integer|))) (|SymmetricPolynomial| (|Fraction| (|Integer|))) (|SymmetricPolynomial| (|Fraction| (|Integer|)))) "\\spad{cup(s1,{}s2)},{} introduced by Redfield,{} \\indented{1}{is the scalar product of two cycle indices,{} in which the} \\indented{1}{power sums are retained to produce a cycle index.}")) (|cap| (((|Fraction| (|Integer|)) (|SymmetricPolynomial| (|Fraction| (|Integer|))) (|SymmetricPolynomial| (|Fraction| (|Integer|)))) "\\spad{cap(s1,{}s2)},{} introduced by Redfield,{} \\indented{1}{is the scalar product of two cycle indices.}")) (|graphs| (((|SymmetricPolynomial| (|Fraction| (|Integer|))) (|Integer|)) "\\spad{graphs n} is the cycle index of the group induced on \\indented{1}{the edges of a graph by applying the symmetric function to the} \\indented{1}{\\spad{n} nodes.}")) (|dihedral| (((|SymmetricPolynomial| (|Fraction| (|Integer|))) (|Integer|)) "\\spad{dihedral n} is the cycle index of the \\indented{1}{dihedral group of degree \\spad{n}.}")) (|cyclic| (((|SymmetricPolynomial| (|Fraction| (|Integer|))) (|Integer|)) "\\spad{cyclic n} is the cycle index of the \\indented{1}{cyclic group of degree \\spad{n}.}")) (|alternating| (((|SymmetricPolynomial| (|Fraction| (|Integer|))) (|Integer|)) "\\spad{alternating n} is the cycle index of the \\indented{1}{alternating group of degree \\spad{n}.}")) (|elementary| (((|SymmetricPolynomial| (|Fraction| (|Integer|))) (|Integer|)) "\\spad{elementary n} is the \\spad{n} th elementary symmetric \\indented{1}{function expressed in terms of power sums.}")) (|powerSum| (((|SymmetricPolynomial| (|Fraction| (|Integer|))) (|Integer|)) "\\spad{powerSum n} is the \\spad{n} th power sum symmetric \\indented{1}{function.}")) (|complete| (((|SymmetricPolynomial| (|Fraction| (|Integer|))) (|Integer|)) "\\spad{complete n} is the \\spad{n} th complete homogeneous \\indented{1}{symmetric function expressed in terms of power sums.} \\indented{1}{Alternatively it is the cycle index of the symmetric} \\indented{1}{group of degree \\spad{n}.}")))
NIL
NIL
-(-171)
+(-173)
((|constructor| (NIL "This package \\undocumented{}")) (|cyclotomicFactorization| (((|Factored| (|SparseUnivariatePolynomial| (|Integer|))) (|Integer|)) "\\spad{cyclotomicFactorization(n)} \\undocumented{}")) (|cyclotomic| (((|SparseUnivariatePolynomial| (|Integer|)) (|Integer|)) "\\spad{cyclotomic(n)} \\undocumented{}")) (|cyclotomicDecomposition| (((|List| (|SparseUnivariatePolynomial| (|Integer|))) (|Integer|)) "\\spad{cyclotomicDecomposition(n)} \\undocumented{}")))
NIL
NIL
-(-172)
+(-174)
((|constructor| (NIL "\\axiomType{d01AgentsPackage} is a package of numerical agents to be used to investigate attributes of an input function so as to decide the \\axiomFun{measure} of an appropriate numerical integration routine. It contains functions \\axiomFun{rangeIsFinite} to test the input range and \\axiomFun{functionIsContinuousAtEndPoints} to check for continuity at the end points of the range.")) (|changeName| (((|Result|) (|Symbol|) (|Symbol|) (|Result|)) "\\spad{changeName(s,{}t,{}r)} changes the name of item \\axiom{\\spad{s}} in \\axiom{\\spad{r}} to \\axiom{\\spad{t}}.")) (|commaSeparate| (((|String|) (|List| (|String|))) "\\spad{commaSeparate(l)} produces a comma separated string from a list of strings.")) (|sdf2lst| (((|List| (|String|)) (|Stream| (|DoubleFloat|))) "\\spad{sdf2lst(ln)} coerces a Stream of \\axiomType{DoubleFloat} to \\axiomType{List String}")) (|ldf2lst| (((|List| (|String|)) (|List| (|DoubleFloat|))) "\\spad{ldf2lst(ln)} coerces a List of \\axiomType{DoubleFloat} to \\axiomType{List String}")) (|df2st| (((|String|) (|DoubleFloat|)) "\\spad{df2st(n)} coerces a \\axiomType{DoubleFloat} to \\axiomType{String}")) (|singularitiesOf| (((|Stream| (|DoubleFloat|)) (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{singularitiesOf(args)} returns a list of potential singularities of the function within the given range")) (|problemPoints| (((|List| (|DoubleFloat|)) (|Expression| (|DoubleFloat|)) (|Symbol|) (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) "\\spad{problemPoints(f,{}var,{}range)} returns a list of possible problem points by looking at the zeros of the denominator of the function if it can be retracted to \\axiomType{Polynomial DoubleFloat}.")) (|functionIsOscillatory| (((|Float|) (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{functionIsOscillatory(a)} tests whether the function \\spad{a.fn} has many zeros of its derivative.")) (|gethi| (((|DoubleFloat|) (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) "\\spad{gethi(x)} gets the \\axiomType{DoubleFloat} equivalent of the second endpoint of the range \\axiom{\\spad{x}}")) (|getlo| (((|DoubleFloat|) (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) "\\spad{getlo(x)} gets the \\axiomType{DoubleFloat} equivalent of the first endpoint of the range \\axiom{\\spad{x}}")) (|functionIsContinuousAtEndPoints| (((|Union| (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{functionIsContinuousAtEndPoints(args)} uses power series limits to check for problems at the end points of the range of \\spad{args}.")) (|rangeIsFinite| (((|Union| (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{rangeIsFinite(args)} tests the endpoints of \\spad{args.range} for infinite end points.")))
NIL
NIL
-(-173)
+(-175)
((|constructor| (NIL "\\axiomType{d01ajfAnnaType} is a domain of \\axiomType{NumericalIntegrationCategory} for the NAG routine D01AJF,{} a general numerical integration routine which can handle some singularities in the input function. The function \\axiomFun{measure} measures the usefulness of the routine D01AJF for the given problem. The function \\axiomFun{numericalIntegration} performs the integration by using \\axiomType{NagIntegrationPackage}.")))
NIL
NIL
-(-174)
+(-176)
((|constructor| (NIL "\\axiomType{d01akfAnnaType} is a domain of \\axiomType{NumericalIntegrationCategory} for the NAG routine D01AKF,{} a numerical integration routine which is is suitable for oscillating,{} non-singular functions. The function \\axiomFun{measure} measures the usefulness of the routine D01AKF for the given problem. The function \\axiomFun{numericalIntegration} performs the integration by using \\axiomType{NagIntegrationPackage}.")))
NIL
NIL
-(-175)
+(-177)
((|constructor| (NIL "\\axiomType{d01alfAnnaType} is a domain of \\axiomType{NumericalIntegrationCategory} for the NAG routine D01ALF,{} a general numerical integration routine which can handle a list of singularities. The function \\axiomFun{measure} measures the usefulness of the routine D01ALF for the given problem. The function \\axiomFun{numericalIntegration} performs the integration by using \\axiomType{NagIntegrationPackage}.")))
NIL
NIL
-(-176)
+(-178)
((|constructor| (NIL "\\axiomType{d01amfAnnaType} is a domain of \\axiomType{NumericalIntegrationCategory} for the NAG routine D01AMF,{} a general numerical integration routine which can handle infinite or semi-infinite range of the input function. The function \\axiomFun{measure} measures the usefulness of the routine D01AMF for the given problem. The function \\axiomFun{numericalIntegration} performs the integration by using \\axiomType{NagIntegrationPackage}.")))
NIL
NIL
-(-177)
+(-179)
((|constructor| (NIL "\\axiomType{d01anfAnnaType} is a domain of \\axiomType{NumericalIntegrationCategory} for the NAG routine D01ANF,{} a numerical integration routine which can handle weight functions of the form cos(\\omega \\spad{x}) or sin(\\omega \\spad{x}). The function \\axiomFun{measure} measures the usefulness of the routine D01ANF for the given problem. The function \\axiomFun{numericalIntegration} performs the integration by using \\axiomType{NagIntegrationPackage}.")))
NIL
NIL
-(-178)
+(-180)
((|constructor| (NIL "\\axiomType{d01apfAnnaType} is a domain of \\axiomType{NumericalIntegrationCategory} for the NAG routine D01APF,{} a general numerical integration routine which can handle end point singularities of the algebraico-logarithmic form \\spad{w}(\\spad{x}) = (\\spad{x}-a)\\spad{^c} * (\\spad{b}-\\spad{x})\\spad{^d}. The function \\axiomFun{measure} measures the usefulness of the routine D01APF for the given problem. The function \\axiomFun{numericalIntegration} performs the integration by using \\axiomType{NagIntegrationPackage}.")))
NIL
NIL
-(-179)
+(-181)
((|constructor| (NIL "\\axiomType{d01aqfAnnaType} is a domain of \\axiomType{NumericalIntegrationCategory} for the NAG routine D01AQF,{} a general numerical integration routine which can solve an integral of the form \\newline \\centerline{\\inputbitmap{/home/bjd/Axiom/anna/hypertex/bitmaps/d01aqf.\\spad{xbm}}} The function \\axiomFun{measure} measures the usefulness of the routine D01AQF for the given problem. The function \\axiomFun{numericalIntegration} performs the integration by using \\axiomType{NagIntegrationPackage}.")))
NIL
NIL
-(-180)
+(-182)
((|constructor| (NIL "\\axiomType{d01asfAnnaType} is a domain of \\axiomType{NumericalIntegrationCategory} for the NAG routine D01ASF,{} a numerical integration routine which can handle weight functions of the form cos(\\omega \\spad{x}) or sin(\\omega \\spad{x}) on an semi-infinite range. The function \\axiomFun{measure} measures the usefulness of the routine D01ASF for the given problem. The function \\axiomFun{numericalIntegration} performs the integration by using \\axiomType{NagIntegrationPackage}.")))
NIL
NIL
-(-181)
+(-183)
((|constructor| (NIL "\\axiomType{d01fcfAnnaType} is a domain of \\axiomType{NumericalIntegrationCategory} for the NAG routine D01FCF,{} a numerical integration routine which can handle multi-dimensional quadrature over a finite region. The function \\axiomFun{measure} measures the usefulness of the routine D01GBF for the given problem. The function \\axiomFun{numericalIntegration} performs the integration by using \\axiomType{NagIntegrationPackage}.")))
NIL
NIL
-(-182)
+(-184)
((|constructor| (NIL "\\axiomType{d01gbfAnnaType} is a domain of \\axiomType{NumericalIntegrationCategory} for the NAG routine D01GBF,{} a numerical integration routine which can handle multi-dimensional quadrature over a finite region. The function \\axiomFun{measure} measures the usefulness of the routine D01GBF for the given problem. The function \\axiomFun{numericalIntegration} performs the integration by using \\axiomType{NagIntegrationPackage}.")))
NIL
NIL
-(-183)
+(-185)
NIL
NIL
NIL
-(-184)
+(-186)
((|constructor| (NIL "\\axiom{d01WeightsPackage} is a package for functions used to investigate whether a function can be divided into a simpler function and a weight function. The types of weights investigated are those giving rise to end-point singularities of the algebraico-logarithmic type,{} and trigonometric weights.")) (|exprHasLogarithmicWeights| (((|Integer|) (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\axiom{exprHasLogarithmicWeights} looks for logarithmic weights giving rise to singularities of the function at the end-points.")) (|exprHasAlgebraicWeight| (((|Union| (|List| (|DoubleFloat|)) "failed") (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\axiom{exprHasAlgebraicWeight} looks for algebraic weights giving rise to singularities of the function at the end-points.")) (|exprHasWeightCosWXorSinWX| (((|Union| (|Record| (|:| |op| (|BasicOperator|)) (|:| |w| (|DoubleFloat|))) "failed") (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\axiom{exprHasWeightCosWXorSinWX} looks for trigonometric weights in an expression of the form \\axiom{cos \\omega \\spad{x}} or \\axiom{sin \\omega \\spad{x}},{} returning the value of \\omega (\\notequal 1) and the operator.")))
NIL
NIL
-(-185)
+(-187)
((|constructor| (NIL "\\axiom{d02AgentsPackage} contains a set of computational agents for use with Ordinary Differential Equation solvers.")) (|intermediateResultsIF| (((|Float|) (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{intermediateResultsIF(o)} returns a value corresponding to the required number of intermediate results required and,{} therefore,{} an indication of how much this would affect the step-length of the calculation. It returns a value in the range [0,{}1].")) (|accuracyIF| (((|Float|) (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{accuracyIF(o)} returns the intensity value of the accuracy requirements of the input ODE. A request of accuracy of 10^-6 corresponds to the neutral intensity. It returns a value in the range [0,{}1].")) (|expenseOfEvaluationIF| (((|Float|) (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{expenseOfEvaluationIF(o)} returns the intensity value of the cost of evaluating the input ODE. This is in terms of the number of ``operational units\\spad{''}. It returns a value in the range [0,{}1].\\newline\\indent{20} 400 ``operation units\\spad{''} \\spad{->} 0.75 \\newline 200 ``operation units\\spad{''} \\spad{->} 0.5 \\newline 83 ``operation units\\spad{''} \\spad{->} 0.25 \\newline\\indent{15} exponentiation = 4 units ,{} function calls = 10 units.")) (|systemSizeIF| (((|Float|) (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{systemSizeIF(ode)} returns the intensity value of the size of the system of ODEs. 20 equations corresponds to the neutral value. It returns a value in the range [0,{}1].")) (|stiffnessAndStabilityOfODEIF| (((|Record| (|:| |stiffnessFactor| (|Float|)) (|:| |stabilityFactor| (|Float|))) (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{stiffnessAndStabilityOfODEIF(ode)} calculates the intensity values of stiffness of a system of first-order differential equations (by evaluating the maximum difference in the real parts of the negative eigenvalues of the jacobian of the system for which \\spad{O}(10) equates to mildly stiff wheras stiffness ratios of \\spad{O}(10^6) are not uncommon) and whether the system is likely to show any oscillations (identified by the closeness to the imaginary axis of the complex eigenvalues of the jacobian). \\blankline It returns two values in the range [0,{}1].")) (|stiffnessAndStabilityFactor| (((|Record| (|:| |stiffnessFactor| (|Float|)) (|:| |stabilityFactor| (|Float|))) (|Matrix| (|Expression| (|DoubleFloat|)))) "\\spad{stiffnessAndStabilityFactor(me)} calculates the stability and stiffness factor of a system of first-order differential equations (by evaluating the maximum difference in the real parts of the negative eigenvalues of the jacobian of the system for which \\spad{O}(10) equates to mildly stiff wheras stiffness ratios of \\spad{O}(10^6) are not uncommon) and whether the system is likely to show any oscillations (identified by the closeness to the imaginary axis of the complex eigenvalues of the jacobian).")) (|eval| (((|Matrix| (|Expression| (|DoubleFloat|))) (|Matrix| (|Expression| (|DoubleFloat|))) (|List| (|Symbol|)) (|Vector| (|Expression| (|DoubleFloat|)))) "\\spad{eval(mat,{}symbols,{}values)} evaluates a multivariable matrix at given \\spad{values} for each of a list of variables")) (|jacobian| (((|Matrix| (|Expression| (|DoubleFloat|))) (|Vector| (|Expression| (|DoubleFloat|))) (|List| (|Symbol|))) "\\spad{jacobian(v,{}w)} is a local function to make a jacobian matrix")) (|sparsityIF| (((|Float|) (|Matrix| (|Expression| (|DoubleFloat|)))) "\\spad{sparsityIF(m)} calculates the sparsity of a jacobian matrix")) (|combineFeatureCompatibility| (((|Float|) (|Float|) (|List| (|Float|))) "\\spad{combineFeatureCompatibility(C1,{}L)} is for interacting attributes") (((|Float|) (|Float|) (|Float|)) "\\spad{combineFeatureCompatibility(C1,{}C2)} is for interacting attributes")))
NIL
NIL
-(-186)
+(-188)
((|constructor| (NIL "\\axiomType{d02bbfAnnaType} is a domain of \\axiomType{OrdinaryDifferentialEquationsInitialValueProblemSolverCategory} for the NAG routine D02BBF,{} a ODE routine which uses an Runge-Kutta method to solve a system of differential equations. The function \\axiomFun{measure} measures the usefulness of the routine D02BBF for the given problem. The function \\axiomFun{ODESolve} performs the integration by using \\axiomType{NagOrdinaryDifferentialEquationsPackage}.")))
NIL
NIL
-(-187)
+(-189)
((|constructor| (NIL "\\axiomType{d02bhfAnnaType} is a domain of \\axiomType{OrdinaryDifferentialEquationsInitialValueProblemSolverCategory} for the NAG routine D02BHF,{} a ODE routine which uses an Runge-Kutta method to solve a system of differential equations. The function \\axiomFun{measure} measures the usefulness of the routine D02BHF for the given problem. The function \\axiomFun{ODESolve} performs the integration by using \\axiomType{NagOrdinaryDifferentialEquationsPackage}.")))
NIL
NIL
-(-188)
+(-190)
((|constructor| (NIL "\\axiomType{d02cjfAnnaType} is a domain of \\axiomType{OrdinaryDifferentialEquationsInitialValueProblemSolverCategory} for the NAG routine D02CJF,{} a ODE routine which uses an Adams-Moulton-Bashworth method to solve a system of differential equations. The function \\axiomFun{measure} measures the usefulness of the routine D02CJF for the given problem. The function \\axiomFun{ODESolve} performs the integration by using \\axiomType{NagOrdinaryDifferentialEquationsPackage}.")))
NIL
NIL
-(-189)
+(-191)
((|constructor| (NIL "\\axiomType{d02ejfAnnaType} is a domain of \\axiomType{OrdinaryDifferentialEquationsInitialValueProblemSolverCategory} for the NAG routine D02EJF,{} a ODE routine which uses a backward differentiation formulae method to handle a stiff system of differential equations. The function \\axiomFun{measure} measures the usefulness of the routine D02EJF for the given problem. The function \\axiomFun{ODESolve} performs the integration by using \\axiomType{NagOrdinaryDifferentialEquationsPackage}.")))
NIL
NIL
-(-190)
+(-192)
((|elliptic?| (((|Boolean|) (|Record| (|:| |pde| (|List| (|Expression| (|DoubleFloat|)))) (|:| |constraints| (|List| (|Record| (|:| |start| (|DoubleFloat|)) (|:| |finish| (|DoubleFloat|)) (|:| |grid| (|NonNegativeInteger|)) (|:| |boundaryType| (|Integer|)) (|:| |dStart| (|Matrix| (|DoubleFloat|))) (|:| |dFinish| (|Matrix| (|DoubleFloat|)))))) (|:| |f| (|List| (|List| (|Expression| (|DoubleFloat|))))) (|:| |st| (|String|)) (|:| |tol| (|DoubleFloat|)))) "\\spad{elliptic?(r)} \\undocumented{}")) (|central?| (((|Boolean|) (|DoubleFloat|) (|DoubleFloat|) (|List| (|Expression| (|DoubleFloat|)))) "\\spad{central?(f,{}g,{}l)} \\undocumented{}")) (|subscriptedVariables| (((|Expression| (|DoubleFloat|)) (|Expression| (|DoubleFloat|))) "\\spad{subscriptedVariables(e)} \\undocumented{}")) (|varList| (((|List| (|Symbol|)) (|Symbol|) (|NonNegativeInteger|)) "\\spad{varList(s,{}n)} \\undocumented{}")))
NIL
NIL
-(-191)
+(-193)
((|constructor| (NIL "\\axiomType{d03eefAnnaType} is a domain of \\axiomType{PartialDifferentialEquationsSolverCategory} for the NAG routines D03EEF/D03EDF.")))
NIL
NIL
-(-192)
+(-194)
((|constructor| (NIL "\\axiomType{d03fafAnnaType} is a domain of \\axiomType{PartialDifferentialEquationsSolverCategory} for the NAG routine D03FAF.")))
NIL
NIL
-(-193 S)
+(-195 S)
((|constructor| (NIL "\\indented{1}{This domain implements a simple view of a database whose fields are} indexed by symbols")) (|coerce| (($ (|List| |#1|)) "\\spad{coerce(l)} makes a database out of a list")) (- (($ $ $) "\\spad{db1-db2} returns the difference of databases \\spad{db1} and \\spad{db2} \\spadignore{i.e.} consisting of elements in \\spad{db1} but not in \\spad{db2}")) (+ (($ $ $) "\\spad{db1+db2} returns the merge of databases \\spad{db1} and \\spad{db2}")) (|fullDisplay| (((|Void|) $ (|PositiveInteger|) (|PositiveInteger|)) "\\spad{fullDisplay(db,{}start,{}end )} prints full details of entries in the range \\axiom{\\spad{start}..end} in \\axiom{\\spad{db}}.") (((|Void|) $) "\\spad{fullDisplay(db)} prints full details of each entry in \\axiom{\\spad{db}}.") (((|Void|) $) "\\spad{fullDisplay(x)} displays \\spad{x} in detail")) (|display| (((|Void|) $) "\\spad{display(db)} prints a summary line for each entry in \\axiom{\\spad{db}}.") (((|Void|) $) "\\spad{display(x)} displays \\spad{x} in some form")) (|elt| (((|DataList| (|String|)) $ (|Symbol|)) "\\spad{elt(db,{}s)} returns the \\axiom{\\spad{s}} field of each element of \\axiom{\\spad{db}}.") (($ $ (|QueryEquation|)) "\\spad{elt(db,{}q)} returns all elements of \\axiom{\\spad{db}} which satisfy \\axiom{\\spad{q}}.") (((|String|) $ (|Symbol|)) "\\spad{elt(x,{}s)} returns an element of \\spad{x} indexed by \\spad{s}")))
NIL
NIL
-(-194 -3894 UP UPUP R)
+(-196 -3576 UP UPUP R)
((|constructor| (NIL "This package provides functions for computing the residues of a function on an algebraic curve.")) (|doubleResultant| ((|#2| |#4| (|Mapping| |#2| |#2|)) "\\spad{doubleResultant(f,{} ')} returns \\spad{p}(\\spad{x}) whose roots are rational multiples of the residues of \\spad{f} at all its finite poles. Argument ' is the derivation to use.")))
NIL
NIL
-(-195 -3894 FP)
+(-197 -3576 FP)
((|constructor| (NIL "Package for the factorization of a univariate polynomial with coefficients in a finite field. The algorithm used is the \"distinct degree\" algorithm of Cantor-Zassenhaus,{} modified to use trace instead of the norm and a table for computing Frobenius as suggested by Naudin and Quitte .")) (|irreducible?| (((|Boolean|) |#2|) "\\spad{irreducible?(p)} tests whether the polynomial \\spad{p} is irreducible.")) (|tracePowMod| ((|#2| |#2| (|NonNegativeInteger|) |#2|) "\\spad{tracePowMod(u,{}k,{}v)} produces the sum of \\spad{u**(q**i)} for \\spad{i} running and \\spad{q=} size \\spad{F}")) (|trace2PowMod| ((|#2| |#2| (|NonNegativeInteger|) |#2|) "\\spad{trace2PowMod(u,{}k,{}v)} produces the sum of \\spad{u**(2**i)} for \\spad{i} running from 1 to \\spad{k} all computed modulo the polynomial \\spad{v}.")) (|exptMod| ((|#2| |#2| (|NonNegativeInteger|) |#2|) "\\spad{exptMod(u,{}k,{}v)} raises the polynomial \\spad{u} to the \\spad{k}th power modulo the polynomial \\spad{v}.")) (|separateFactors| (((|List| |#2|) (|List| (|Record| (|:| |deg| (|NonNegativeInteger|)) (|:| |prod| |#2|)))) "\\spad{separateFactors(lfact)} takes the list produced by \\spadfunFrom{separateDegrees}{DistinctDegreeFactorization} and produces the complete list of factors.")) (|separateDegrees| (((|List| (|Record| (|:| |deg| (|NonNegativeInteger|)) (|:| |prod| |#2|))) |#2|) "\\spad{separateDegrees(p)} splits the square free polynomial \\spad{p} into factors each of which is a product of irreducibles of the same degree.")) (|distdfact| (((|Record| (|:| |cont| |#1|) (|:| |factors| (|List| (|Record| (|:| |irr| |#2|) (|:| |pow| (|Integer|)))))) |#2| (|Boolean|)) "\\spad{distdfact(p,{}sqfrflag)} produces the complete factorization of the polynomial \\spad{p} returning an internal data structure. If argument \\spad{sqfrflag} is \\spad{true},{} the polynomial is assumed square free.")) (|factorSquareFree| (((|Factored| |#2|) |#2|) "\\spad{factorSquareFree(p)} produces the complete factorization of the square free polynomial \\spad{p}.")) (|factor| (((|Factored| |#2|) |#2|) "\\spad{factor(p)} produces the complete factorization of the polynomial \\spad{p}.")))
NIL
NIL
-(-196)
+(-198)
((|constructor| (NIL "This domain allows rational numbers to be presented as repeating decimal expansions.")) (|decimal| (($ (|Fraction| (|Integer|))) "\\spad{decimal(r)} converts a rational number to a decimal expansion.")) (|fractionPart| (((|Fraction| (|Integer|)) $) "\\spad{fractionPart(d)} returns the fractional part of a decimal expansion.")) (|coerce| (((|RadixExpansion| 10) $) "\\spad{coerce(d)} converts a decimal expansion to a radix expansion with base 10.") (((|Fraction| (|Integer|)) $) "\\spad{coerce(d)} converts a decimal expansion to a rational number.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| (-523) (QUOTE (-840))) (|HasCategory| (-523) (LIST (QUOTE -964) (QUOTE (-1087)))) (|HasCategory| (-523) (QUOTE (-134))) (|HasCategory| (-523) (QUOTE (-136))) (|HasCategory| (-523) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| (-523) (QUOTE (-949))) (|HasCategory| (-523) (QUOTE (-759))) (-3255 (|HasCategory| (-523) (QUOTE (-759))) (|HasCategory| (-523) (QUOTE (-786)))) (|HasCategory| (-523) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| (-523) (QUOTE (-1063))) (|HasCategory| (-523) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| (-523) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| (-523) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| (-523) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| (-523) (QUOTE (-211))) (|HasCategory| (-523) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| (-523) (LIST (QUOTE -484) (QUOTE (-1087)) (QUOTE (-523)))) (|HasCategory| (-523) (LIST (QUOTE -286) (QUOTE (-523)))) (|HasCategory| (-523) (LIST (QUOTE -263) (QUOTE (-523)) (QUOTE (-523)))) (|HasCategory| (-523) (QUOTE (-284))) (|HasCategory| (-523) (QUOTE (-508))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| (-523) (LIST (QUOTE -585) (QUOTE (-523)))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-523) (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-523) (QUOTE (-840)))) (|HasCategory| (-523) (QUOTE (-134)))))
-(-197 R -3894)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| (-525) (QUOTE (-842))) (|HasCategory| (-525) (LIST (QUOTE -966) (QUOTE (-1089)))) (|HasCategory| (-525) (QUOTE (-136))) (|HasCategory| (-525) (QUOTE (-138))) (|HasCategory| (-525) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| (-525) (QUOTE (-951))) (|HasCategory| (-525) (QUOTE (-761))) (-3321 (|HasCategory| (-525) (QUOTE (-761))) (|HasCategory| (-525) (QUOTE (-788)))) (|HasCategory| (-525) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| (-525) (QUOTE (-1065))) (|HasCategory| (-525) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| (-525) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| (-525) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| (-525) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| (-525) (QUOTE (-213))) (|HasCategory| (-525) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| (-525) (LIST (QUOTE -486) (QUOTE (-1089)) (QUOTE (-525)))) (|HasCategory| (-525) (LIST (QUOTE -288) (QUOTE (-525)))) (|HasCategory| (-525) (LIST (QUOTE -265) (QUOTE (-525)) (QUOTE (-525)))) (|HasCategory| (-525) (QUOTE (-286))) (|HasCategory| (-525) (QUOTE (-510))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| (-525) (LIST (QUOTE -587) (QUOTE (-525)))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-525) (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-525) (QUOTE (-842)))) (|HasCategory| (-525) (QUOTE (-136)))))
+(-199 R -3576)
((|constructor| (NIL "\\spadtype{ElementaryFunctionDefiniteIntegration} provides functions to compute definite integrals of elementary functions.")) (|innerint| (((|Union| (|:| |f1| (|OrderedCompletion| |#2|)) (|:| |f2| (|List| (|OrderedCompletion| |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (|Symbol|) (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|) (|Boolean|)) "\\spad{innerint(f,{} x,{} a,{} b,{} ignore?)} should be local but conditional")) (|integrate| (((|Union| (|:| |f1| (|OrderedCompletion| |#2|)) (|:| |f2| (|List| (|OrderedCompletion| |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (|SegmentBinding| (|OrderedCompletion| |#2|)) (|String|)) "\\spad{integrate(f,{} x = a..b,{} \"noPole\")} returns the integral of \\spad{f(x)dx} from a to \\spad{b}. If it is not possible to check whether \\spad{f} has a pole for \\spad{x} between a and \\spad{b} (because of parameters),{} then this function will assume that \\spad{f} has no such pole. Error: if \\spad{f} has a pole for \\spad{x} between a and \\spad{b} or if the last argument is not \"noPole\".") (((|Union| (|:| |f1| (|OrderedCompletion| |#2|)) (|:| |f2| (|List| (|OrderedCompletion| |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (|SegmentBinding| (|OrderedCompletion| |#2|))) "\\spad{integrate(f,{} x = a..b)} returns the integral of \\spad{f(x)dx} from a to \\spad{b}. Error: if \\spad{f} has a pole for \\spad{x} between a and \\spad{b}.")))
NIL
NIL
-(-198 R)
+(-200 R)
((|constructor| (NIL "\\spadtype{RationalFunctionDefiniteIntegration} provides functions to compute definite integrals of rational functions.")) (|integrate| (((|Union| (|:| |f1| (|OrderedCompletion| (|Expression| |#1|))) (|:| |f2| (|List| (|OrderedCompletion| (|Expression| |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (|Fraction| (|Polynomial| |#1|)) (|SegmentBinding| (|OrderedCompletion| (|Fraction| (|Polynomial| |#1|)))) (|String|)) "\\spad{integrate(f,{} x = a..b,{} \"noPole\")} returns the integral of \\spad{f(x)dx} from a to \\spad{b}. If it is not possible to check whether \\spad{f} has a pole for \\spad{x} between a and \\spad{b} (because of parameters),{} then this function will assume that \\spad{f} has no such pole. Error: if \\spad{f} has a pole for \\spad{x} between a and \\spad{b} or if the last argument is not \"noPole\".") (((|Union| (|:| |f1| (|OrderedCompletion| (|Expression| |#1|))) (|:| |f2| (|List| (|OrderedCompletion| (|Expression| |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (|Fraction| (|Polynomial| |#1|)) (|SegmentBinding| (|OrderedCompletion| (|Fraction| (|Polynomial| |#1|))))) "\\spad{integrate(f,{} x = a..b)} returns the integral of \\spad{f(x)dx} from a to \\spad{b}. Error: if \\spad{f} has a pole for \\spad{x} between a and \\spad{b}.") (((|Union| (|:| |f1| (|OrderedCompletion| (|Expression| |#1|))) (|:| |f2| (|List| (|OrderedCompletion| (|Expression| |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (|Fraction| (|Polynomial| |#1|)) (|SegmentBinding| (|OrderedCompletion| (|Expression| |#1|))) (|String|)) "\\spad{integrate(f,{} x = a..b,{} \"noPole\")} returns the integral of \\spad{f(x)dx} from a to \\spad{b}. If it is not possible to check whether \\spad{f} has a pole for \\spad{x} between a and \\spad{b} (because of parameters),{} then this function will assume that \\spad{f} has no such pole. Error: if \\spad{f} has a pole for \\spad{x} between a and \\spad{b} or if the last argument is not \"noPole\".") (((|Union| (|:| |f1| (|OrderedCompletion| (|Expression| |#1|))) (|:| |f2| (|List| (|OrderedCompletion| (|Expression| |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (|Fraction| (|Polynomial| |#1|)) (|SegmentBinding| (|OrderedCompletion| (|Expression| |#1|)))) "\\spad{integrate(f,{} x = a..b)} returns the integral of \\spad{f(x)dx} from a to \\spad{b}. Error: if \\spad{f} has a pole for \\spad{x} between a and \\spad{b}.")))
NIL
NIL
-(-199 R1 R2)
+(-201 R1 R2)
((|constructor| (NIL "This package \\undocumented{}")) (|expand| (((|List| (|Expression| |#2|)) (|Expression| |#2|) (|PositiveInteger|)) "\\spad{expand(f,{}n)} \\undocumented{}")) (|reduce| (((|Record| (|:| |pol| (|SparseUnivariatePolynomial| |#1|)) (|:| |deg| (|PositiveInteger|))) (|SparseUnivariatePolynomial| |#1|)) "\\spad{reduce(p)} \\undocumented{}")))
NIL
NIL
-(-200 S)
+(-202 S)
((|constructor| (NIL "Linked list implementation of a Dequeue")) (|dequeue| (($ (|List| |#1|)) "\\spad{dequeue([x,{}y,{}...,{}z])} creates a dequeue with first (top or front) element \\spad{x},{} second element \\spad{y},{}...,{}and last (bottom or back) element \\spad{z}.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-201 |CoefRing| |listIndVar|)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-203 |CoefRing| |listIndVar|)
((|constructor| (NIL "The deRham complex of Euclidean space,{} that is,{} the class of differential forms of arbitary degree over a coefficient ring. See Flanders,{} Harley,{} Differential Forms,{} With Applications to the Physical Sciences,{} New York,{} Academic Press,{} 1963.")) (|exteriorDifferential| (($ $) "\\spad{exteriorDifferential(df)} returns the exterior derivative (gradient,{} curl,{} divergence,{} ...) of the differential form \\spad{df}.")) (|totalDifferential| (($ (|Expression| |#1|)) "\\spad{totalDifferential(x)} returns the total differential (gradient) form for element \\spad{x}.")) (|map| (($ (|Mapping| (|Expression| |#1|) (|Expression| |#1|)) $) "\\spad{map(f,{}df)} replaces each coefficient \\spad{x} of differential form \\spad{df} by \\spad{f(x)}.")) (|degree| (((|Integer|) $) "\\spad{degree(df)} returns the homogeneous degree of differential form \\spad{df}.")) (|retractable?| (((|Boolean|) $) "\\spad{retractable?(df)} tests if differential form \\spad{df} is a 0-form,{} \\spadignore{i.e.} if degree(\\spad{df}) = 0.")) (|homogeneous?| (((|Boolean|) $) "\\spad{homogeneous?(df)} tests if all of the terms of differential form \\spad{df} have the same degree.")) (|generator| (($ (|NonNegativeInteger|)) "\\spad{generator(n)} returns the \\spad{n}th basis term for a differential form.")) (|coefficient| (((|Expression| |#1|) $ $) "\\spad{coefficient(df,{}u)},{} where \\spad{df} is a differential form,{} returns the coefficient of \\spad{df} containing the basis term \\spad{u} if such a term exists,{} and 0 otherwise.")) (|reductum| (($ $) "\\spad{reductum(df)},{} where \\spad{df} is a differential form,{} returns \\spad{df} minus the leading term of \\spad{df} if \\spad{df} has two or more terms,{} and 0 otherwise.")) (|leadingBasisTerm| (($ $) "\\spad{leadingBasisTerm(df)} returns the leading basis term of differential form \\spad{df}.")) (|leadingCoefficient| (((|Expression| |#1|) $) "\\spad{leadingCoefficient(df)} returns the leading coefficient of differential form \\spad{df}.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-202 R -3894)
+(-204 R -3576)
((|constructor| (NIL "\\spadtype{DefiniteIntegrationTools} provides common tools used by the definite integration of both rational and elementary functions.")) (|checkForZero| (((|Union| (|Boolean|) "failed") (|SparseUnivariatePolynomial| |#2|) (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|) (|Boolean|)) "\\spad{checkForZero(p,{} a,{} b,{} incl?)} is \\spad{true} if \\spad{p} has a zero between a and \\spad{b},{} \\spad{false} otherwise,{} \"failed\" if this cannot be determined. Check for a and \\spad{b} inclusive if incl? is \\spad{true},{} exclusive otherwise.") (((|Union| (|Boolean|) "failed") (|Polynomial| |#1|) (|Symbol|) (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|) (|Boolean|)) "\\spad{checkForZero(p,{} x,{} a,{} b,{} incl?)} is \\spad{true} if \\spad{p} has a zero for \\spad{x} between a and \\spad{b},{} \\spad{false} otherwise,{} \"failed\" if this cannot be determined. Check for a and \\spad{b} inclusive if incl? is \\spad{true},{} exclusive otherwise.")) (|computeInt| (((|Union| (|OrderedCompletion| |#2|) "failed") (|Kernel| |#2|) |#2| (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|) (|Boolean|)) "\\spad{computeInt(x,{} g,{} a,{} b,{} eval?)} returns the integral of \\spad{f} for \\spad{x} between a and \\spad{b},{} assuming that \\spad{g} is an indefinite integral of \\spad{f} and \\spad{f} has no pole between a and \\spad{b}. If \\spad{eval?} is \\spad{true},{} then \\spad{g} can be evaluated safely at \\spad{a} and \\spad{b},{} provided that they are finite values. Otherwise,{} limits must be computed.")) (|ignore?| (((|Boolean|) (|String|)) "\\spad{ignore?(s)} is \\spad{true} if \\spad{s} is the string that tells the integrator to assume that the function has no pole in the integration interval.")))
NIL
NIL
-(-203)
+(-205)
((|constructor| (NIL "\\indented{1}{\\spadtype{DoubleFloat} is intended to make accessible} hardware floating point arithmetic in \\Language{},{} either native double precision,{} or IEEE. On most machines,{} there will be hardware support for the arithmetic operations: \\spadfunFrom{+}{DoubleFloat},{} \\spadfunFrom{*}{DoubleFloat},{} \\spadfunFrom{/}{DoubleFloat} and possibly also the \\spadfunFrom{sqrt}{DoubleFloat} operation. The operations \\spadfunFrom{exp}{DoubleFloat},{} \\spadfunFrom{log}{DoubleFloat},{} \\spadfunFrom{sin}{DoubleFloat},{} \\spadfunFrom{cos}{DoubleFloat},{} \\spadfunFrom{atan}{DoubleFloat} are normally coded in software based on minimax polynomial/rational approximations. Note that under Lisp/VM,{} \\spadfunFrom{atan}{DoubleFloat} is not available at this time. Some general comments about the accuracy of the operations: the operations \\spadfunFrom{+}{DoubleFloat},{} \\spadfunFrom{*}{DoubleFloat},{} \\spadfunFrom{/}{DoubleFloat} and \\spadfunFrom{sqrt}{DoubleFloat} are expected to be fully accurate. The operations \\spadfunFrom{exp}{DoubleFloat},{} \\spadfunFrom{log}{DoubleFloat},{} \\spadfunFrom{sin}{DoubleFloat},{} \\spadfunFrom{cos}{DoubleFloat} and \\spadfunFrom{atan}{DoubleFloat} are not expected to be fully accurate. In particular,{} \\spadfunFrom{sin}{DoubleFloat} and \\spadfunFrom{cos}{DoubleFloat} will lose all precision for large arguments. \\blankline The \\spadtype{Float} domain provides an alternative to the \\spad{DoubleFloat} domain. It provides an arbitrary precision model of floating point arithmetic. This means that accuracy problems like those above are eliminated by increasing the working precision where necessary. \\spadtype{Float} provides some special functions such as \\spadfunFrom{erf}{DoubleFloat},{} the error function in addition to the elementary functions. The disadvantage of \\spadtype{Float} is that it is much more expensive than small floats when the latter can be used.")) (|rationalApproximation| (((|Fraction| (|Integer|)) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{rationalApproximation(f,{} n,{} b)} computes a rational approximation \\spad{r} to \\spad{f} with relative error \\spad{< b**(-n)} (that is,{} \\spad{|(r-f)/f| < b**(-n)}).") (((|Fraction| (|Integer|)) $ (|NonNegativeInteger|)) "\\spad{rationalApproximation(f,{} n)} computes a rational approximation \\spad{r} to \\spad{f} with relative error \\spad{< 10**(-n)}.")) (|doubleFloatFormat| (((|String|) (|String|)) "change the output format for doublefloats using lisp format strings")) (|Beta| (($ $ $) "\\spad{Beta(x,{}y)} is \\spad{Gamma(x) * Gamma(y)/Gamma(x+y)}.")) (|Gamma| (($ $) "\\spad{Gamma(x)} is the Euler Gamma function.")) (|atan| (($ $ $) "\\spad{atan(x,{}y)} computes the arc tangent from \\spad{x} with phase \\spad{y}.")) (|log10| (($ $) "\\spad{log10(x)} computes the logarithm with base 10 for \\spad{x}.")) (|log2| (($ $) "\\spad{log2(x)} computes the logarithm with base 2 for \\spad{x}.")) (|hash| (((|Integer|) $) "\\spad{hash(x)} returns the hash key for \\spad{x}")) (|exp1| (($) "\\spad{exp1()} returns the natural log base \\spad{2.718281828...}.")) (** (($ $ $) "\\spad{x ** y} returns the \\spad{y}th power of \\spad{x} (equal to \\spad{exp(y log x)}).")) (/ (($ $ (|Integer|)) "\\spad{x / i} computes the division from \\spad{x} by an integer \\spad{i}.")))
-((-2523 . T) (-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-2176 . T) (-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-204)
+(-206)
((|constructor| (NIL "This package provides special functions for double precision real and complex floating point.")) (|hypergeometric0F1| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{hypergeometric0F1(c,{}z)} is the hypergeometric function \\spad{0F1(; c; z)}.") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{hypergeometric0F1(c,{}z)} is the hypergeometric function \\spad{0F1(; c; z)}.")) (|airyBi| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{airyBi(x)} is the Airy function \\spad{\\spad{Bi}(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{\\spad{Bi}''(x) - x * \\spad{Bi}(x) = 0}.}") (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{airyBi(x)} is the Airy function \\spad{\\spad{Bi}(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{\\spad{Bi}''(x) - x * \\spad{Bi}(x) = 0}.}")) (|airyAi| (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{airyAi(x)} is the Airy function \\spad{\\spad{Ai}(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{\\spad{Ai}''(x) - x * \\spad{Ai}(x) = 0}.}") (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{airyAi(x)} is the Airy function \\spad{\\spad{Ai}(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{\\spad{Ai}''(x) - x * \\spad{Ai}(x) = 0}.}")) (|besselK| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{besselK(v,{}x)} is the modified Bessel function of the first kind,{} \\spad{K(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) - (x^2+v^2)w(x) = 0}.} Note: The default implmentation uses the relation \\indented{2}{\\spad{K(v,{}x) = \\%pi/2*(I(-v,{}x) - I(v,{}x))/sin(v*\\%\\spad{pi})}} so is not valid for integer values of \\spad{v}.") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{besselK(v,{}x)} is the modified Bessel function of the first kind,{} \\spad{K(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) - (x^2+v^2)w(x) = 0}.} Note: The default implmentation uses the relation \\indented{2}{\\spad{K(v,{}x) = \\%pi/2*(I(-v,{}x) - I(v,{}x))/sin(v*\\%\\spad{pi})}.} so is not valid for integer values of \\spad{v}.")) (|besselI| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{besselI(v,{}x)} is the modified Bessel function of the first kind,{} \\spad{I(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) - (x^2+v^2)w(x) = 0}.}") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{besselI(v,{}x)} is the modified Bessel function of the first kind,{} \\spad{I(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) - (x^2+v^2)w(x) = 0}.}")) (|besselY| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{besselY(v,{}x)} is the Bessel function of the second kind,{} \\spad{Y(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) + (x^2-v^2)w(x) = 0}.} Note: The default implmentation uses the relation \\indented{2}{\\spad{Y(v,{}x) = (J(v,{}x) cos(v*\\%\\spad{pi}) - J(-v,{}x))/sin(v*\\%\\spad{pi})}} so is not valid for integer values of \\spad{v}.") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{besselY(v,{}x)} is the Bessel function of the second kind,{} \\spad{Y(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) + (x^2-v^2)w(x) = 0}.} Note: The default implmentation uses the relation \\indented{2}{\\spad{Y(v,{}x) = (J(v,{}x) cos(v*\\%\\spad{pi}) - J(-v,{}x))/sin(v*\\%\\spad{pi})}} so is not valid for integer values of \\spad{v}.")) (|besselJ| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{besselJ(v,{}x)} is the Bessel function of the first kind,{} \\spad{J(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) + (x^2-v^2)w(x) = 0}.}") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{besselJ(v,{}x)} is the Bessel function of the first kind,{} \\spad{J(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) + (x^2-v^2)w(x) = 0}.}")) (|polygamma| (((|Complex| (|DoubleFloat|)) (|NonNegativeInteger|) (|Complex| (|DoubleFloat|))) "\\spad{polygamma(n,{} x)} is the \\spad{n}-th derivative of \\spad{digamma(x)}.") (((|DoubleFloat|) (|NonNegativeInteger|) (|DoubleFloat|)) "\\spad{polygamma(n,{} x)} is the \\spad{n}-th derivative of \\spad{digamma(x)}.")) (|digamma| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{digamma(x)} is the function,{} \\spad{psi(x)},{} defined by \\indented{2}{\\spad{psi(x) = Gamma'(x)/Gamma(x)}.}") (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{digamma(x)} is the function,{} \\spad{psi(x)},{} defined by \\indented{2}{\\spad{psi(x) = Gamma'(x)/Gamma(x)}.}")) (|logGamma| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{logGamma(x)} is the natural log of \\spad{Gamma(x)}. This can often be computed even if \\spad{Gamma(x)} cannot.") (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{logGamma(x)} is the natural log of \\spad{Gamma(x)}. This can often be computed even if \\spad{Gamma(x)} cannot.")) (|Beta| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{Beta(x,{} y)} is the Euler beta function,{} \\spad{B(x,{}y)},{} defined by \\indented{2}{\\spad{Beta(x,{}y) = integrate(t^(x-1)*(1-t)^(y-1),{} t=0..1)}.} This is related to \\spad{Gamma(x)} by \\indented{2}{\\spad{Beta(x,{}y) = Gamma(x)*Gamma(y) / Gamma(x + y)}.}") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{Beta(x,{} y)} is the Euler beta function,{} \\spad{B(x,{}y)},{} defined by \\indented{2}{\\spad{Beta(x,{}y) = integrate(t^(x-1)*(1-t)^(y-1),{} t=0..1)}.} This is related to \\spad{Gamma(x)} by \\indented{2}{\\spad{Beta(x,{}y) = Gamma(x)*Gamma(y) / Gamma(x + y)}.}")) (|Gamma| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{Gamma(x)} is the Euler gamma function,{} \\spad{Gamma(x)},{} defined by \\indented{2}{\\spad{Gamma(x) = integrate(t^(x-1)*exp(-t),{} t=0..\\%infinity)}.}") (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{Gamma(x)} is the Euler gamma function,{} \\spad{Gamma(x)},{} defined by \\indented{2}{\\spad{Gamma(x) = integrate(t^(x-1)*exp(-t),{} t=0..\\%infinity)}.}")))
NIL
NIL
-(-205 R)
+(-207 R)
((|constructor| (NIL "\\indented{1}{A Denavit-Hartenberg Matrix is a 4x4 Matrix of the form:} \\indented{1}{\\spad{nx ox ax px}} \\indented{1}{\\spad{ny oy ay py}} \\indented{1}{\\spad{nz oz az pz}} \\indented{2}{\\spad{0\\space{2}0\\space{2}0\\space{2}1}} (\\spad{n},{} \\spad{o},{} and a are the direction cosines)")) (|translate| (($ |#1| |#1| |#1|) "\\spad{translate(X,{}Y,{}Z)} returns a dhmatrix for translation by \\spad{X},{} \\spad{Y},{} and \\spad{Z}")) (|scale| (($ |#1| |#1| |#1|) "\\spad{scale(sx,{}sy,{}sz)} returns a dhmatrix for scaling in the \\spad{X},{} \\spad{Y} and \\spad{Z} directions")) (|rotatez| (($ |#1|) "\\spad{rotatez(r)} returns a dhmatrix for rotation about axis \\spad{Z} for \\spad{r} degrees")) (|rotatey| (($ |#1|) "\\spad{rotatey(r)} returns a dhmatrix for rotation about axis \\spad{Y} for \\spad{r} degrees")) (|rotatex| (($ |#1|) "\\spad{rotatex(r)} returns a dhmatrix for rotation about axis \\spad{X} for \\spad{r} degrees")) (|identity| (($) "\\spad{identity()} create the identity dhmatrix")) (* (((|Point| |#1|) $ (|Point| |#1|)) "\\spad{t*p} applies the dhmatrix \\spad{t} to point \\spad{p}")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-515))) (|HasAttribute| |#1| (QUOTE (-4250 "*"))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-206 A S)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-517))) (|HasAttribute| |#1| (QUOTE (-4252 "*"))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-208 A S)
((|constructor| (NIL "A dictionary is an aggregate in which entries can be inserted,{} searched for and removed. Duplicates are thrown away on insertion. This category models the usual notion of dictionary which involves large amounts of data where copying is impractical. Principal operations are thus destructive (non-copying) ones.")))
NIL
NIL
-(-207 S)
+(-209 S)
((|constructor| (NIL "A dictionary is an aggregate in which entries can be inserted,{} searched for and removed. Duplicates are thrown away on insertion. This category models the usual notion of dictionary which involves large amounts of data where copying is impractical. Principal operations are thus destructive (non-copying) ones.")))
-((-4249 . T) (-2500 . T))
+((-4251 . T) (-2137 . T))
NIL
-(-208 S R)
+(-210 S R)
((|constructor| (NIL "Differential extensions of a ring \\spad{R}. Given a differentiation on \\spad{R},{} extend it to a differentiation on \\%.")) (D (($ $ (|Mapping| |#2| |#2|) (|NonNegativeInteger|)) "\\spad{D(x,{} deriv,{} n)} differentiate \\spad{x} \\spad{n} times using a derivation which extends \\spad{deriv} on \\spad{R}.") (($ $ (|Mapping| |#2| |#2|)) "\\spad{D(x,{} deriv)} differentiates \\spad{x} extending the derivation deriv on \\spad{R}.")) (|differentiate| (($ $ (|Mapping| |#2| |#2|) (|NonNegativeInteger|)) "\\spad{differentiate(x,{} deriv,{} n)} differentiate \\spad{x} \\spad{n} times using a derivation which extends \\spad{deriv} on \\spad{R}.") (($ $ (|Mapping| |#2| |#2|)) "\\spad{differentiate(x,{} deriv)} differentiates \\spad{x} extending the derivation deriv on \\spad{R}.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-211))))
-(-209 R)
+((|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-213))))
+(-211 R)
((|constructor| (NIL "Differential extensions of a ring \\spad{R}. Given a differentiation on \\spad{R},{} extend it to a differentiation on \\%.")) (D (($ $ (|Mapping| |#1| |#1|) (|NonNegativeInteger|)) "\\spad{D(x,{} deriv,{} n)} differentiate \\spad{x} \\spad{n} times using a derivation which extends \\spad{deriv} on \\spad{R}.") (($ $ (|Mapping| |#1| |#1|)) "\\spad{D(x,{} deriv)} differentiates \\spad{x} extending the derivation deriv on \\spad{R}.")) (|differentiate| (($ $ (|Mapping| |#1| |#1|) (|NonNegativeInteger|)) "\\spad{differentiate(x,{} deriv,{} n)} differentiate \\spad{x} \\spad{n} times using a derivation which extends \\spad{deriv} on \\spad{R}.") (($ $ (|Mapping| |#1| |#1|)) "\\spad{differentiate(x,{} deriv)} differentiates \\spad{x} extending the derivation deriv on \\spad{R}.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-210 S)
+(-212 S)
((|constructor| (NIL "An ordinary differential ring,{} that is,{} a ring with an operation \\spadfun{differentiate}. \\blankline")) (D (($ $ (|NonNegativeInteger|)) "\\spad{D(x,{} n)} returns the \\spad{n}-th derivative of \\spad{x}.") (($ $) "\\spad{D(x)} returns the derivative of \\spad{x}. This function is a simple differential operator where no variable needs to be specified.")) (|differentiate| (($ $ (|NonNegativeInteger|)) "\\spad{differentiate(x,{} n)} returns the \\spad{n}-th derivative of \\spad{x}.") (($ $) "\\spad{differentiate(x)} returns the derivative of \\spad{x}. This function is a simple differential operator where no variable needs to be specified.")))
NIL
NIL
-(-211)
+(-213)
((|constructor| (NIL "An ordinary differential ring,{} that is,{} a ring with an operation \\spadfun{differentiate}. \\blankline")) (D (($ $ (|NonNegativeInteger|)) "\\spad{D(x,{} n)} returns the \\spad{n}-th derivative of \\spad{x}.") (($ $) "\\spad{D(x)} returns the derivative of \\spad{x}. This function is a simple differential operator where no variable needs to be specified.")) (|differentiate| (($ $ (|NonNegativeInteger|)) "\\spad{differentiate(x,{} n)} returns the \\spad{n}-th derivative of \\spad{x}.") (($ $) "\\spad{differentiate(x)} returns the derivative of \\spad{x}. This function is a simple differential operator where no variable needs to be specified.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-212 A S)
+(-214 A S)
((|constructor| (NIL "This category is a collection of operations common to both categories \\spadtype{Dictionary} and \\spadtype{MultiDictionary}")) (|select!| (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{select!(p,{}d)} destructively changes dictionary \\spad{d} by removing all entries \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is not \\spad{true}.")) (|remove!| (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{remove!(p,{}d)} destructively changes dictionary \\spad{d} by removeing all entries \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}.") (($ |#2| $) "\\spad{remove!(x,{}d)} destructively changes dictionary \\spad{d} by removing all entries \\spad{y} such that \\axiom{\\spad{y} = \\spad{x}}.")) (|dictionary| (($ (|List| |#2|)) "\\spad{dictionary([x,{}y,{}...,{}z])} creates a dictionary consisting of entries \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}}.") (($) "\\spad{dictionary()}\\$\\spad{D} creates an empty dictionary of type \\spad{D}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4248)))
-(-213 S)
+((|HasAttribute| |#1| (QUOTE -4250)))
+(-215 S)
((|constructor| (NIL "This category is a collection of operations common to both categories \\spadtype{Dictionary} and \\spadtype{MultiDictionary}")) (|select!| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{select!(p,{}d)} destructively changes dictionary \\spad{d} by removing all entries \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is not \\spad{true}.")) (|remove!| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{remove!(p,{}d)} destructively changes dictionary \\spad{d} by removeing all entries \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}.") (($ |#1| $) "\\spad{remove!(x,{}d)} destructively changes dictionary \\spad{d} by removing all entries \\spad{y} such that \\axiom{\\spad{y} = \\spad{x}}.")) (|dictionary| (($ (|List| |#1|)) "\\spad{dictionary([x,{}y,{}...,{}z])} creates a dictionary consisting of entries \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}}.") (($) "\\spad{dictionary()}\\$\\spad{D} creates an empty dictionary of type \\spad{D}.")))
-((-4249 . T) (-2500 . T))
+((-4251 . T) (-2137 . T))
NIL
-(-214)
+(-216)
((|constructor| (NIL "any solution of a homogeneous linear Diophantine equation can be represented as a sum of minimal solutions,{} which form a \"basis\" (a minimal solution cannot be represented as a nontrivial sum of solutions) in the case of an inhomogeneous linear Diophantine equation,{} each solution is the sum of a inhomogeneous solution and any number of homogeneous solutions therefore,{} it suffices to compute two sets: \\indented{3}{1. all minimal inhomogeneous solutions} \\indented{3}{2. all minimal homogeneous solutions} the algorithm implemented is a completion procedure,{} which enumerates all solutions in a recursive depth-first-search it can be seen as finding monotone paths in a graph for more details see Reference")) (|dioSolve| (((|Record| (|:| |varOrder| (|List| (|Symbol|))) (|:| |inhom| (|Union| (|List| (|Vector| (|NonNegativeInteger|))) "failed")) (|:| |hom| (|List| (|Vector| (|NonNegativeInteger|))))) (|Equation| (|Polynomial| (|Integer|)))) "\\spad{dioSolve(u)} computes a basis of all minimal solutions for linear homogeneous Diophantine equation \\spad{u},{} then all minimal solutions of inhomogeneous equation")))
NIL
NIL
-(-215 S -3765 R)
+(-217 S -2951 R)
((|constructor| (NIL "\\indented{2}{This category represents a finite cartesian product of a given type.} Many categorical properties are preserved under this construction.")) (* (($ $ |#3|) "\\spad{y * r} multiplies each component of the vector \\spad{y} by the element \\spad{r}.") (($ |#3| $) "\\spad{r * y} multiplies the element \\spad{r} times each component of the vector \\spad{y}.")) (|dot| ((|#3| $ $) "\\spad{dot(x,{}y)} computes the inner product of the vectors \\spad{x} and \\spad{y}.")) (|unitVector| (($ (|PositiveInteger|)) "\\spad{unitVector(n)} produces a vector with 1 in position \\spad{n} and zero elsewhere.")) (|directProduct| (($ (|Vector| |#3|)) "\\spad{directProduct(v)} converts the vector \\spad{v} to become a direct product. Error: if the length of \\spad{v} is different from dim.")) (|finiteAggregate| ((|attribute|) "attribute to indicate an aggregate of finite size")))
NIL
-((|HasCategory| |#3| (QUOTE (-339))) (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (QUOTE (-784))) (|HasAttribute| |#3| (QUOTE -4245)) (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (QUOTE (-344))) (|HasCategory| |#3| (QUOTE (-666))) (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (QUOTE (-1016))))
-(-216 -3765 R)
+((|HasCategory| |#3| (QUOTE (-341))) (|HasCategory| |#3| (QUOTE (-734))) (|HasCategory| |#3| (QUOTE (-786))) (|HasAttribute| |#3| (QUOTE -4247)) (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (QUOTE (-346))) (|HasCategory| |#3| (QUOTE (-668))) (|HasCategory| |#3| (QUOTE (-126))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (QUOTE (-1018))))
+(-218 -2951 R)
((|constructor| (NIL "\\indented{2}{This category represents a finite cartesian product of a given type.} Many categorical properties are preserved under this construction.")) (* (($ $ |#2|) "\\spad{y * r} multiplies each component of the vector \\spad{y} by the element \\spad{r}.") (($ |#2| $) "\\spad{r * y} multiplies the element \\spad{r} times each component of the vector \\spad{y}.")) (|dot| ((|#2| $ $) "\\spad{dot(x,{}y)} computes the inner product of the vectors \\spad{x} and \\spad{y}.")) (|unitVector| (($ (|PositiveInteger|)) "\\spad{unitVector(n)} produces a vector with 1 in position \\spad{n} and zero elsewhere.")) (|directProduct| (($ (|Vector| |#2|)) "\\spad{directProduct(v)} converts the vector \\spad{v} to become a direct product. Error: if the length of \\spad{v} is different from dim.")) (|finiteAggregate| ((|attribute|) "attribute to indicate an aggregate of finite size")))
-((-4242 |has| |#2| (-973)) (-4243 |has| |#2| (-973)) (-4245 |has| |#2| (-6 -4245)) ((-4250 "*") |has| |#2| (-158)) (-4248 . T) (-2500 . T))
+((-4244 |has| |#2| (-975)) (-4245 |has| |#2| (-975)) (-4247 |has| |#2| (-6 -4247)) ((-4252 "*") |has| |#2| (-160)) (-4250 . T) (-2137 . T))
NIL
-(-217 -3765 A B)
+(-219 -2951 A B)
((|constructor| (NIL "\\indented{2}{This package provides operations which all take as arguments} direct products of elements of some type \\spad{A} and functions from \\spad{A} to another type \\spad{B}. The operations all iterate over their vector argument and either return a value of type \\spad{B} or a direct product over \\spad{B}.")) (|map| (((|DirectProduct| |#1| |#3|) (|Mapping| |#3| |#2|) (|DirectProduct| |#1| |#2|)) "\\spad{map(f,{} v)} applies the function \\spad{f} to every element of the vector \\spad{v} producing a new vector containing the values.")) (|reduce| ((|#3| (|Mapping| |#3| |#2| |#3|) (|DirectProduct| |#1| |#2|) |#3|) "\\spad{reduce(func,{}vec,{}ident)} combines the elements in \\spad{vec} using the binary function \\spad{func}. Argument \\spad{ident} is returned if the vector is empty.")) (|scan| (((|DirectProduct| |#1| |#3|) (|Mapping| |#3| |#2| |#3|) (|DirectProduct| |#1| |#2|) |#3|) "\\spad{scan(func,{}vec,{}ident)} creates a new vector whose elements are the result of applying reduce to the binary function \\spad{func},{} increasing initial subsequences of the vector \\spad{vec},{} and the element \\spad{ident}.")))
NIL
NIL
-(-218 -3765 R)
+(-220 -2951 R)
((|constructor| (NIL "\\indented{2}{This type represents the finite direct or cartesian product of an} underlying component type. This contrasts with simple vectors in that the members can be viewed as having constant length. Thus many categorical properties can by lifted from the underlying component type. Component extraction operations are provided but no updating operations. Thus new direct product elements can either be created by converting vector elements using the \\spadfun{directProduct} function or by taking appropriate linear combinations of basis vectors provided by the \\spad{unitVector} operation.")))
-((-4242 |has| |#2| (-973)) (-4243 |has| |#2| (-973)) (-4245 |has| |#2| (-6 -4245)) ((-4250 "*") |has| |#2| (-158)) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-344))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))))) (-3255 (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-1016)))) (-12 (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-973)))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087))))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#2| (QUOTE (-339))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-973)))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-339)))) (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (QUOTE (-732))) (-3255 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-784)))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-158))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-973)))) (|HasCategory| |#2| (QUOTE (-344))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-344))) (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (QUOTE (-1016)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-973)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-973)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-973)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-973)))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-158)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-211)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-339)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-344)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-732)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-784)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-973)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-1016))))) (-3255 (-12 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-344))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))))) (|HasCategory| (-523) (QUOTE (-786))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-973)))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087))))) (|HasCategory| |#2| (QUOTE (-666))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-3255 (|HasCategory| |#2| (QUOTE (-973))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-1016)))) (|HasAttribute| |#2| (QUOTE -4245)) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-25))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-219)
+((-4244 |has| |#2| (-975)) (-4245 |has| |#2| (-975)) (-4247 |has| |#2| (-6 -4247)) ((-4252 "*") |has| |#2| (-160)) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-346))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-734))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))))) (-3321 (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-975)))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#2| (QUOTE (-341))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-975)))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-341)))) (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (QUOTE (-734))) (-3321 (|HasCategory| |#2| (QUOTE (-734))) (|HasCategory| |#2| (QUOTE (-786)))) (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-160))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-975)))) (|HasCategory| |#2| (QUOTE (-346))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-346))) (|HasCategory| |#2| (QUOTE (-734))) (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (QUOTE (-1018)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-975)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-975)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-975)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-975)))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-126)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-160)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-213)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-341)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-346)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-734)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-786)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-975)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-1018))))) (-3321 (-12 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-346))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-734))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))))) (|HasCategory| (-525) (QUOTE (-788))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-975)))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089))))) (|HasCategory| |#2| (QUOTE (-668))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-3321 (|HasCategory| |#2| (QUOTE (-975))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasAttribute| |#2| (QUOTE -4247)) (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-25))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-221)
((|constructor| (NIL "DisplayPackage allows one to print strings in a nice manner,{} including highlighting substrings.")) (|sayLength| (((|Integer|) (|List| (|String|))) "\\spad{sayLength(l)} returns the length of a list of strings \\spad{l} as an integer.") (((|Integer|) (|String|)) "\\spad{sayLength(s)} returns the length of a string \\spad{s} as an integer.")) (|say| (((|Void|) (|List| (|String|))) "\\spad{say(l)} sends a list of strings \\spad{l} to output.") (((|Void|) (|String|)) "\\spad{say(s)} sends a string \\spad{s} to output.")) (|center| (((|List| (|String|)) (|List| (|String|)) (|Integer|) (|String|)) "\\spad{center(l,{}i,{}s)} takes a list of strings \\spad{l},{} and centers them within a list of strings which is \\spad{i} characters long,{} in which the remaining spaces are filled with strings composed of as many repetitions as possible of the last string parameter \\spad{s}.") (((|String|) (|String|) (|Integer|) (|String|)) "\\spad{center(s,{}i,{}s)} takes the first string \\spad{s},{} and centers it within a string of length \\spad{i},{} in which the other elements of the string are composed of as many replications as possible of the second indicated string,{} \\spad{s} which must have a length greater than that of an empty string.")) (|copies| (((|String|) (|Integer|) (|String|)) "\\spad{copies(i,{}s)} will take a string \\spad{s} and create a new string composed of \\spad{i} copies of \\spad{s}.")) (|newLine| (((|String|)) "\\spad{newLine()} sends a new line command to output.")) (|bright| (((|List| (|String|)) (|List| (|String|))) "\\spad{bright(l)} sets the font property of a list of strings,{} \\spad{l},{} to bold-face type.") (((|List| (|String|)) (|String|)) "\\spad{bright(s)} sets the font property of the string \\spad{s} to bold-face type.")))
NIL
NIL
-(-220 S)
+(-222 S)
((|constructor| (NIL "A division ring (sometimes called a skew field),{} \\spadignore{i.e.} a not necessarily commutative ring where all non-zero elements have multiplicative inverses.")) (|inv| (($ $) "\\spad{inv x} returns the multiplicative inverse of \\spad{x}. Error: if \\spad{x} is 0.")) (^ (($ $ (|Integer|)) "\\spad{x^n} returns \\spad{x} raised to the integer power \\spad{n}.")) (** (($ $ (|Integer|)) "\\spad{x**n} returns \\spad{x} raised to the integer power \\spad{n}.")))
NIL
NIL
-(-221)
+(-223)
((|constructor| (NIL "A division ring (sometimes called a skew field),{} \\spadignore{i.e.} a not necessarily commutative ring where all non-zero elements have multiplicative inverses.")) (|inv| (($ $) "\\spad{inv x} returns the multiplicative inverse of \\spad{x}. Error: if \\spad{x} is 0.")) (^ (($ $ (|Integer|)) "\\spad{x^n} returns \\spad{x} raised to the integer power \\spad{n}.")) (** (($ $ (|Integer|)) "\\spad{x**n} returns \\spad{x} raised to the integer power \\spad{n}.")))
-((-4241 . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-222 S)
+(-224 S)
((|constructor| (NIL "A doubly-linked aggregate serves as a model for a doubly-linked list,{} that is,{} a list which can has links to both next and previous nodes and thus can be efficiently traversed in both directions.")) (|setnext!| (($ $ $) "\\spad{setnext!(u,{}v)} destructively sets the next node of doubly-linked aggregate \\spad{u} to \\spad{v},{} returning \\spad{v}.")) (|setprevious!| (($ $ $) "\\spad{setprevious!(u,{}v)} destructively sets the previous node of doubly-linked aggregate \\spad{u} to \\spad{v},{} returning \\spad{v}.")) (|concat!| (($ $ $) "\\spad{concat!(u,{}v)} destructively concatenates doubly-linked aggregate \\spad{v} to the end of doubly-linked aggregate \\spad{u}.")) (|next| (($ $) "\\spad{next(l)} returns the doubly-linked aggregate beginning with its next element. Error: if \\spad{l} has no next element. Note: \\axiom{next(\\spad{l}) = rest(\\spad{l})} and \\axiom{previous(next(\\spad{l})) = \\spad{l}}.")) (|previous| (($ $) "\\spad{previous(l)} returns the doubly-link list beginning with its previous element. Error: if \\spad{l} has no previous element. Note: \\axiom{next(previous(\\spad{l})) = \\spad{l}}.")) (|tail| (($ $) "\\spad{tail(l)} returns the doubly-linked aggregate \\spad{l} starting at its second element. Error: if \\spad{l} is empty.")) (|head| (($ $) "\\spad{head(l)} returns the first element of a doubly-linked aggregate \\spad{l}. Error: if \\spad{l} is empty.")) (|last| ((|#1| $) "\\spad{last(l)} returns the last element of a doubly-linked aggregate \\spad{l}. Error: if \\spad{l} is empty.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-223 S)
+(-225 S)
((|constructor| (NIL "This domain provides some nice functions on lists")) (|elt| (((|NonNegativeInteger|) $ "count") "\\axiom{\\spad{l}.\"count\"} returns the number of elements in \\axiom{\\spad{l}}.") (($ $ "sort") "\\axiom{\\spad{l}.sort} returns \\axiom{\\spad{l}} with elements sorted. Note: \\axiom{\\spad{l}.sort = sort(\\spad{l})}") (($ $ "unique") "\\axiom{\\spad{l}.unique} returns \\axiom{\\spad{l}} with duplicates removed. Note: \\axiom{\\spad{l}.unique = removeDuplicates(\\spad{l})}.")) (|datalist| (($ (|List| |#1|)) "\\spad{datalist(l)} creates a datalist from \\spad{l}")) (|coerce| (((|List| |#1|) $) "\\spad{coerce(x)} returns the list of elements in \\spad{x}") (($ (|List| |#1|)) "\\spad{coerce(l)} creates a datalist from \\spad{l}")))
-((-4249 . T) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (-3255 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016)))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-224 M)
+((-4251 . T) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (-3321 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018)))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-226 M)
((|constructor| (NIL "DiscreteLogarithmPackage implements help functions for discrete logarithms in monoids using small cyclic groups.")) (|shanksDiscLogAlgorithm| (((|Union| (|NonNegativeInteger|) "failed") |#1| |#1| (|NonNegativeInteger|)) "\\spad{shanksDiscLogAlgorithm(b,{}a,{}p)} computes \\spad{s} with \\spad{b**s = a} for assuming that \\spad{a} and \\spad{b} are elements in a 'small' cyclic group of order \\spad{p} by Shank\\spad{'s} algorithm. Note: this is a subroutine of the function \\spadfun{discreteLog}.")) (** ((|#1| |#1| (|Integer|)) "\\spad{x ** n} returns \\spad{x} raised to the integer power \\spad{n}")))
NIL
NIL
-(-225 |vl| R)
+(-227 |vl| R)
((|constructor| (NIL "\\indented{2}{This type supports distributed multivariate polynomials} whose variables are from a user specified list of symbols. The coefficient ring may be non commutative,{} but the variables are assumed to commute. The term ordering is lexicographic specified by the variable list parameter with the most significant variable first in the list.")) (|reorder| (($ $ (|List| (|Integer|))) "\\spad{reorder(p,{} perm)} applies the permutation perm to the variables in a polynomial and returns the new correctly ordered polynomial")))
-(((-4250 "*") |has| |#2| (-158)) (-4241 |has| |#2| (-515)) (-4246 |has| |#2| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#2| (QUOTE (-840))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-840)))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-158))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-515)))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355)))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523)))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499))))) (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-134))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-339))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasAttribute| |#2| (QUOTE -4246)) (|HasCategory| |#2| (QUOTE (-427))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-840)))) (|HasCategory| |#2| (QUOTE (-134)))))
-(-226)
+(((-4252 "*") |has| |#2| (-160)) (-4243 |has| |#2| (-517)) (-4248 |has| |#2| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#2| (QUOTE (-842))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-842)))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-160))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-517)))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357)))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525)))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501))))) (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-138))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-341))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasAttribute| |#2| (QUOTE -4248)) (|HasCategory| |#2| (QUOTE (-429))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-842)))) (|HasCategory| |#2| (QUOTE (-136)))))
+(-228)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Create: October 18,{} 2007. Date Last Updated: January 19,{} 2008. Basic Operations: coerce,{} reify Related Constructors: Type,{} Syntax,{} OutputForm Also See: Type,{} ConstructorCall")) (|showSummary| (((|Void|) $) "\\spad{showSummary(d)} prints out implementation detail information of domain \\spad{`d'}.")) (|reflect| (($ (|ConstructorCall|)) "\\spad{reflect cc} returns the domain object designated by the ConstructorCall syntax `cc'. The constructor implied by `cc' must be known to the system since it is instantiated.")) (|reify| (((|ConstructorCall|) $) "\\spad{reify(d)} returns the abstract syntax for the domain \\spad{`x'}.")))
NIL
NIL
-(-227 |n| R M S)
+(-229 |n| R M S)
((|constructor| (NIL "This constructor provides a direct product type with a left matrix-module view.")))
-((-4245 -3255 (-2819 (|has| |#4| (-973)) (|has| |#4| (-211))) (-2819 (|has| |#4| (-973)) (|has| |#4| (-831 (-1087)))) (|has| |#4| (-6 -4245)) (-2819 (|has| |#4| (-973)) (|has| |#4| (-585 (-523))))) (-4242 |has| |#4| (-973)) (-4243 |has| |#4| (-973)) ((-4250 "*") |has| |#4| (-158)) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#4| (QUOTE (-158))) (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-211))) (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-339))) (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-344))) (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-732))) (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-784))) (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-973))) (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1016))) (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -831) (QUOTE (-1087)))))) (|HasCategory| |#4| (QUOTE (-339))) (-3255 (|HasCategory| |#4| (QUOTE (-158))) (|HasCategory| |#4| (QUOTE (-339))) (|HasCategory| |#4| (QUOTE (-973)))) (-3255 (|HasCategory| |#4| (QUOTE (-158))) (|HasCategory| |#4| (QUOTE (-339)))) (|HasCategory| |#4| (QUOTE (-973))) (|HasCategory| |#4| (QUOTE (-732))) (-3255 (|HasCategory| |#4| (QUOTE (-732))) (|HasCategory| |#4| (QUOTE (-784)))) (|HasCategory| |#4| (QUOTE (-784))) (|HasCategory| |#4| (QUOTE (-158))) (-3255 (|HasCategory| |#4| (QUOTE (-158))) (|HasCategory| |#4| (QUOTE (-973)))) (|HasCategory| |#4| (QUOTE (-344))) (|HasCategory| |#4| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#4| (LIST (QUOTE -831) (QUOTE (-1087)))) (-3255 (|HasCategory| |#4| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#4| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#4| (QUOTE (-158))) (|HasCategory| |#4| (QUOTE (-211))) (|HasCategory| |#4| (QUOTE (-973)))) (|HasCategory| |#4| (QUOTE (-211))) (|HasCategory| |#4| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#4| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#4| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#4| (LIST (QUOTE -831) (QUOTE (-1087))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#4| (QUOTE (-158)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#4| (QUOTE (-211)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#4| (QUOTE (-339)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#4| (QUOTE (-344)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#4| (QUOTE (-732)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#4| (QUOTE (-784)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#4| (QUOTE (-973)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#4| (QUOTE (-1016))))) (-3255 (-12 (|HasCategory| |#4| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#4| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#4| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#4| (QUOTE (-158))) (|HasCategory| |#4| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#4| (QUOTE (-211))) (|HasCategory| |#4| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#4| (QUOTE (-339))) (|HasCategory| |#4| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#4| (QUOTE (-344))) (|HasCategory| |#4| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#4| (QUOTE (-732))) (|HasCategory| |#4| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#4| (QUOTE (-784))) (|HasCategory| |#4| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#4| (QUOTE (-973))) (|HasCategory| |#4| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#4| (QUOTE (-1016))) (|HasCategory| |#4| (LIST (QUOTE -964) (QUOTE (-523)))))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| |#4| (QUOTE (-666))) (-12 (|HasCategory| |#4| (QUOTE (-973))) (|HasCategory| |#4| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#4| (QUOTE (-973))) (|HasCategory| |#4| (LIST (QUOTE -831) (QUOTE (-1087))))) (-12 (|HasCategory| |#4| (QUOTE (-211))) (|HasCategory| |#4| (QUOTE (-973)))) (-3255 (|HasCategory| |#4| (QUOTE (-973))) (-12 (|HasCategory| |#4| (QUOTE (-1016))) (|HasCategory| |#4| (LIST (QUOTE -964) (QUOTE (-523)))))) (-12 (|HasCategory| |#4| (QUOTE (-1016))) (|HasCategory| |#4| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#4| (QUOTE (-1016)))) (-3255 (|HasAttribute| |#4| (QUOTE -4245)) (-12 (|HasCategory| |#4| (QUOTE (-211))) (|HasCategory| |#4| (QUOTE (-973)))) (-12 (|HasCategory| |#4| (QUOTE (-973))) (|HasCategory| |#4| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#4| (QUOTE (-973))) (|HasCategory| |#4| (LIST (QUOTE -831) (QUOTE (-1087)))))) (|HasCategory| |#4| (QUOTE (-124))) (|HasCategory| |#4| (QUOTE (-25))) (-12 (|HasCategory| |#4| (QUOTE (-1016))) (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-228 |n| R S)
+((-4247 -3321 (-1213 (|has| |#4| (-975)) (|has| |#4| (-213))) (-1213 (|has| |#4| (-975)) (|has| |#4| (-833 (-1089)))) (|has| |#4| (-6 -4247)) (-1213 (|has| |#4| (-975)) (|has| |#4| (-587 (-525))))) (-4244 |has| |#4| (-975)) (-4245 |has| |#4| (-975)) ((-4252 "*") |has| |#4| (-160)) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#4| (QUOTE (-160))) (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-213))) (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-341))) (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-346))) (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-734))) (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-786))) (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-975))) (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -833) (QUOTE (-1089)))))) (|HasCategory| |#4| (QUOTE (-341))) (-3321 (|HasCategory| |#4| (QUOTE (-160))) (|HasCategory| |#4| (QUOTE (-341))) (|HasCategory| |#4| (QUOTE (-975)))) (-3321 (|HasCategory| |#4| (QUOTE (-160))) (|HasCategory| |#4| (QUOTE (-341)))) (|HasCategory| |#4| (QUOTE (-975))) (|HasCategory| |#4| (QUOTE (-734))) (-3321 (|HasCategory| |#4| (QUOTE (-734))) (|HasCategory| |#4| (QUOTE (-786)))) (|HasCategory| |#4| (QUOTE (-786))) (|HasCategory| |#4| (QUOTE (-160))) (-3321 (|HasCategory| |#4| (QUOTE (-160))) (|HasCategory| |#4| (QUOTE (-975)))) (|HasCategory| |#4| (QUOTE (-346))) (|HasCategory| |#4| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#4| (LIST (QUOTE -833) (QUOTE (-1089)))) (-3321 (|HasCategory| |#4| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#4| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#4| (QUOTE (-160))) (|HasCategory| |#4| (QUOTE (-213))) (|HasCategory| |#4| (QUOTE (-975)))) (|HasCategory| |#4| (QUOTE (-213))) (|HasCategory| |#4| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#4| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#4| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#4| (LIST (QUOTE -833) (QUOTE (-1089))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#4| (QUOTE (-160)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#4| (QUOTE (-213)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#4| (QUOTE (-341)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#4| (QUOTE (-346)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#4| (QUOTE (-734)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#4| (QUOTE (-786)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#4| (QUOTE (-975)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#4| (QUOTE (-1018))))) (-3321 (-12 (|HasCategory| |#4| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#4| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#4| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#4| (QUOTE (-160))) (|HasCategory| |#4| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#4| (QUOTE (-213))) (|HasCategory| |#4| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#4| (QUOTE (-341))) (|HasCategory| |#4| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#4| (QUOTE (-346))) (|HasCategory| |#4| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#4| (QUOTE (-734))) (|HasCategory| |#4| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#4| (QUOTE (-786))) (|HasCategory| |#4| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#4| (QUOTE (-975))) (|HasCategory| |#4| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -966) (QUOTE (-525)))))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| |#4| (QUOTE (-668))) (-12 (|HasCategory| |#4| (QUOTE (-975))) (|HasCategory| |#4| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#4| (QUOTE (-975))) (|HasCategory| |#4| (LIST (QUOTE -833) (QUOTE (-1089))))) (-12 (|HasCategory| |#4| (QUOTE (-213))) (|HasCategory| |#4| (QUOTE (-975)))) (-3321 (|HasCategory| |#4| (QUOTE (-975))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -966) (QUOTE (-525)))))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#4| (QUOTE (-1018)))) (-3321 (|HasAttribute| |#4| (QUOTE -4247)) (-12 (|HasCategory| |#4| (QUOTE (-213))) (|HasCategory| |#4| (QUOTE (-975)))) (-12 (|HasCategory| |#4| (QUOTE (-975))) (|HasCategory| |#4| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#4| (QUOTE (-975))) (|HasCategory| |#4| (LIST (QUOTE -833) (QUOTE (-1089)))))) (|HasCategory| |#4| (QUOTE (-126))) (|HasCategory| |#4| (QUOTE (-25))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-230 |n| R S)
((|constructor| (NIL "This constructor provides a direct product of \\spad{R}-modules with an \\spad{R}-module view.")))
-((-4245 -3255 (-2819 (|has| |#3| (-973)) (|has| |#3| (-211))) (-2819 (|has| |#3| (-973)) (|has| |#3| (-831 (-1087)))) (|has| |#3| (-6 -4245)) (-2819 (|has| |#3| (-973)) (|has| |#3| (-585 (-523))))) (-4242 |has| |#3| (-973)) (-4243 |has| |#3| (-973)) ((-4250 "*") |has| |#3| (-158)) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-339))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-344))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-784))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1016))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087)))))) (|HasCategory| |#3| (QUOTE (-339))) (-3255 (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (QUOTE (-339))) (|HasCategory| |#3| (QUOTE (-973)))) (-3255 (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (QUOTE (-339)))) (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (QUOTE (-732))) (-3255 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (QUOTE (-784)))) (|HasCategory| |#3| (QUOTE (-784))) (|HasCategory| |#3| (QUOTE (-158))) (-3255 (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (QUOTE (-973)))) (|HasCategory| |#3| (QUOTE (-344))) (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087)))) (-3255 (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (QUOTE (-973)))) (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-158)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-211)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-339)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-344)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-732)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-784)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-973)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-1016))))) (-3255 (-12 (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-339))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-344))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-784))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-1016))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523)))))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| |#3| (QUOTE (-666))) (-12 (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087))))) (-12 (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (QUOTE (-973)))) (-3255 (|HasCategory| |#3| (QUOTE (-973))) (-12 (|HasCategory| |#3| (QUOTE (-1016))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523)))))) (-12 (|HasCategory| |#3| (QUOTE (-1016))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-1016)))) (-3255 (|HasAttribute| |#3| (QUOTE -4245)) (-12 (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (QUOTE (-973)))) (-12 (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087)))))) (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (QUOTE (-25))) (-12 (|HasCategory| |#3| (QUOTE (-1016))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (|HasCategory| |#3| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-229 A R S V E)
+((-4247 -3321 (-1213 (|has| |#3| (-975)) (|has| |#3| (-213))) (-1213 (|has| |#3| (-975)) (|has| |#3| (-833 (-1089)))) (|has| |#3| (-6 -4247)) (-1213 (|has| |#3| (-975)) (|has| |#3| (-587 (-525))))) (-4244 |has| |#3| (-975)) (-4245 |has| |#3| (-975)) ((-4252 "*") |has| |#3| (-160)) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-341))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-346))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-734))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-786))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089)))))) (|HasCategory| |#3| (QUOTE (-341))) (-3321 (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (QUOTE (-341))) (|HasCategory| |#3| (QUOTE (-975)))) (-3321 (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (QUOTE (-341)))) (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (QUOTE (-734))) (-3321 (|HasCategory| |#3| (QUOTE (-734))) (|HasCategory| |#3| (QUOTE (-786)))) (|HasCategory| |#3| (QUOTE (-786))) (|HasCategory| |#3| (QUOTE (-160))) (-3321 (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (QUOTE (-975)))) (|HasCategory| |#3| (QUOTE (-346))) (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089)))) (-3321 (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (QUOTE (-975)))) (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-160)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-213)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-341)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-346)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-734)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-786)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-975)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-1018))))) (-3321 (-12 (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-341))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-346))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-734))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-786))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525)))))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| |#3| (QUOTE (-668))) (-12 (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089))))) (-12 (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (QUOTE (-975)))) (-3321 (|HasCategory| |#3| (QUOTE (-975))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525)))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-1018)))) (-3321 (|HasAttribute| |#3| (QUOTE -4247)) (-12 (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (QUOTE (-975)))) (-12 (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089)))))) (|HasCategory| |#3| (QUOTE (-126))) (|HasCategory| |#3| (QUOTE (-25))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (|HasCategory| |#3| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-231 A R S V E)
((|constructor| (NIL "\\spadtype{DifferentialPolynomialCategory} is a category constructor specifying basic functions in an ordinary differential polynomial ring with a given ordered set of differential indeterminates. In addition,{} it implements defaults for the basic functions. The functions \\spadfun{order} and \\spadfun{weight} are extended from the set of derivatives of differential indeterminates to the set of differential polynomials. Other operations provided on differential polynomials are \\spadfun{leader},{} \\spadfun{initial},{} \\spadfun{separant},{} \\spadfun{differentialVariables},{} and \\spadfun{isobaric?}. Furthermore,{} if the ground ring is a differential ring,{} then evaluation (substitution of differential indeterminates by elements of the ground ring or by differential polynomials) is provided by \\spadfun{eval}. A convenient way of referencing derivatives is provided by the functions \\spadfun{makeVariable}. \\blankline To construct a domain using this constructor,{} one needs to provide a ground ring \\spad{R},{} an ordered set \\spad{S} of differential indeterminates,{} a ranking \\spad{V} on the set of derivatives of the differential indeterminates,{} and a set \\spad{E} of exponents in bijection with the set of differential monomials in the given differential indeterminates. \\blankline")) (|separant| (($ $) "\\spad{separant(p)} returns the partial derivative of the differential polynomial \\spad{p} with respect to its leader.")) (|initial| (($ $) "\\spad{initial(p)} returns the leading coefficient when the differential polynomial \\spad{p} is written as a univariate polynomial in its leader.")) (|leader| ((|#4| $) "\\spad{leader(p)} returns the derivative of the highest rank appearing in the differential polynomial \\spad{p} Note: an error occurs if \\spad{p} is in the ground ring.")) (|isobaric?| (((|Boolean|) $) "\\spad{isobaric?(p)} returns \\spad{true} if every differential monomial appearing in the differential polynomial \\spad{p} has same weight,{} and returns \\spad{false} otherwise.")) (|weight| (((|NonNegativeInteger|) $ |#3|) "\\spad{weight(p,{} s)} returns the maximum weight of all differential monomials appearing in the differential polynomial \\spad{p} when \\spad{p} is viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.") (((|NonNegativeInteger|) $) "\\spad{weight(p)} returns the maximum weight of all differential monomials appearing in the differential polynomial \\spad{p}.")) (|weights| (((|List| (|NonNegativeInteger|)) $ |#3|) "\\spad{weights(p,{} s)} returns a list of weights of differential monomials appearing in the differential polynomial \\spad{p} when \\spad{p} is viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.") (((|List| (|NonNegativeInteger|)) $) "\\spad{weights(p)} returns a list of weights of differential monomials appearing in differential polynomial \\spad{p}.")) (|degree| (((|NonNegativeInteger|) $ |#3|) "\\spad{degree(p,{} s)} returns the maximum degree of the differential polynomial \\spad{p} viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(p)} returns the order of the differential polynomial \\spad{p},{} which is the maximum number of differentiations of a differential indeterminate,{} among all those appearing in \\spad{p}.") (((|NonNegativeInteger|) $ |#3|) "\\spad{order(p,{}s)} returns the order of the differential polynomial \\spad{p} in differential indeterminate \\spad{s}.")) (|differentialVariables| (((|List| |#3|) $) "\\spad{differentialVariables(p)} returns a list of differential indeterminates occurring in a differential polynomial \\spad{p}.")) (|makeVariable| (((|Mapping| $ (|NonNegativeInteger|)) $) "\\spad{makeVariable(p)} views \\spad{p} as an element of a differential ring,{} in such a way that the \\spad{n}-th derivative of \\spad{p} may be simply referenced as \\spad{z}.\\spad{n} where \\spad{z} \\spad{:=} makeVariable(\\spad{p}). Note: In the interpreter,{} \\spad{z} is given as an internal map,{} which may be ignored.") (((|Mapping| $ (|NonNegativeInteger|)) |#3|) "\\spad{makeVariable(s)} views \\spad{s} as a differential indeterminate,{} in such a way that the \\spad{n}-th derivative of \\spad{s} may be simply referenced as \\spad{z}.\\spad{n} where \\spad{z} :=makeVariable(\\spad{s}). Note: In the interpreter,{} \\spad{z} is given as an internal map,{} which may be ignored.")))
NIL
-((|HasCategory| |#2| (QUOTE (-211))))
-(-230 R S V E)
+((|HasCategory| |#2| (QUOTE (-213))))
+(-232 R S V E)
((|constructor| (NIL "\\spadtype{DifferentialPolynomialCategory} is a category constructor specifying basic functions in an ordinary differential polynomial ring with a given ordered set of differential indeterminates. In addition,{} it implements defaults for the basic functions. The functions \\spadfun{order} and \\spadfun{weight} are extended from the set of derivatives of differential indeterminates to the set of differential polynomials. Other operations provided on differential polynomials are \\spadfun{leader},{} \\spadfun{initial},{} \\spadfun{separant},{} \\spadfun{differentialVariables},{} and \\spadfun{isobaric?}. Furthermore,{} if the ground ring is a differential ring,{} then evaluation (substitution of differential indeterminates by elements of the ground ring or by differential polynomials) is provided by \\spadfun{eval}. A convenient way of referencing derivatives is provided by the functions \\spadfun{makeVariable}. \\blankline To construct a domain using this constructor,{} one needs to provide a ground ring \\spad{R},{} an ordered set \\spad{S} of differential indeterminates,{} a ranking \\spad{V} on the set of derivatives of the differential indeterminates,{} and a set \\spad{E} of exponents in bijection with the set of differential monomials in the given differential indeterminates. \\blankline")) (|separant| (($ $) "\\spad{separant(p)} returns the partial derivative of the differential polynomial \\spad{p} with respect to its leader.")) (|initial| (($ $) "\\spad{initial(p)} returns the leading coefficient when the differential polynomial \\spad{p} is written as a univariate polynomial in its leader.")) (|leader| ((|#3| $) "\\spad{leader(p)} returns the derivative of the highest rank appearing in the differential polynomial \\spad{p} Note: an error occurs if \\spad{p} is in the ground ring.")) (|isobaric?| (((|Boolean|) $) "\\spad{isobaric?(p)} returns \\spad{true} if every differential monomial appearing in the differential polynomial \\spad{p} has same weight,{} and returns \\spad{false} otherwise.")) (|weight| (((|NonNegativeInteger|) $ |#2|) "\\spad{weight(p,{} s)} returns the maximum weight of all differential monomials appearing in the differential polynomial \\spad{p} when \\spad{p} is viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.") (((|NonNegativeInteger|) $) "\\spad{weight(p)} returns the maximum weight of all differential monomials appearing in the differential polynomial \\spad{p}.")) (|weights| (((|List| (|NonNegativeInteger|)) $ |#2|) "\\spad{weights(p,{} s)} returns a list of weights of differential monomials appearing in the differential polynomial \\spad{p} when \\spad{p} is viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.") (((|List| (|NonNegativeInteger|)) $) "\\spad{weights(p)} returns a list of weights of differential monomials appearing in differential polynomial \\spad{p}.")) (|degree| (((|NonNegativeInteger|) $ |#2|) "\\spad{degree(p,{} s)} returns the maximum degree of the differential polynomial \\spad{p} viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(p)} returns the order of the differential polynomial \\spad{p},{} which is the maximum number of differentiations of a differential indeterminate,{} among all those appearing in \\spad{p}.") (((|NonNegativeInteger|) $ |#2|) "\\spad{order(p,{}s)} returns the order of the differential polynomial \\spad{p} in differential indeterminate \\spad{s}.")) (|differentialVariables| (((|List| |#2|) $) "\\spad{differentialVariables(p)} returns a list of differential indeterminates occurring in a differential polynomial \\spad{p}.")) (|makeVariable| (((|Mapping| $ (|NonNegativeInteger|)) $) "\\spad{makeVariable(p)} views \\spad{p} as an element of a differential ring,{} in such a way that the \\spad{n}-th derivative of \\spad{p} may be simply referenced as \\spad{z}.\\spad{n} where \\spad{z} \\spad{:=} makeVariable(\\spad{p}). Note: In the interpreter,{} \\spad{z} is given as an internal map,{} which may be ignored.") (((|Mapping| $ (|NonNegativeInteger|)) |#2|) "\\spad{makeVariable(s)} views \\spad{s} as a differential indeterminate,{} in such a way that the \\spad{n}-th derivative of \\spad{s} may be simply referenced as \\spad{z}.\\spad{n} where \\spad{z} :=makeVariable(\\spad{s}). Note: In the interpreter,{} \\spad{z} is given as an internal map,{} which may be ignored.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
NIL
-(-231 S)
+(-233 S)
((|constructor| (NIL "A dequeue is a doubly ended stack,{} that is,{} a bag where first items inserted are the first items extracted,{} at either the front or the back end of the data structure.")) (|reverse!| (($ $) "\\spad{reverse!(d)} destructively replaces \\spad{d} by its reverse dequeue,{} \\spadignore{i.e.} the top (front) element is now the bottom (back) element,{} and so on.")) (|extractBottom!| ((|#1| $) "\\spad{extractBottom!(d)} destructively extracts the bottom (back) element from the dequeue \\spad{d}. Error: if \\spad{d} is empty.")) (|extractTop!| ((|#1| $) "\\spad{extractTop!(d)} destructively extracts the top (front) element from the dequeue \\spad{d}. Error: if \\spad{d} is empty.")) (|insertBottom!| ((|#1| |#1| $) "\\spad{insertBottom!(x,{}d)} destructively inserts \\spad{x} into the dequeue \\spad{d} at the bottom (back) of the dequeue.")) (|insertTop!| ((|#1| |#1| $) "\\spad{insertTop!(x,{}d)} destructively inserts \\spad{x} into the dequeue \\spad{d},{} that is,{} at the top (front) of the dequeue. The element previously at the top of the dequeue becomes the second in the dequeue,{} and so on.")) (|bottom!| ((|#1| $) "\\spad{bottom!(d)} returns the element at the bottom (back) of the dequeue.")) (|top!| ((|#1| $) "\\spad{top!(d)} returns the element at the top (front) of the dequeue.")) (|height| (((|NonNegativeInteger|) $) "\\spad{height(d)} returns the number of elements in dequeue \\spad{d}. Note: \\axiom{height(\\spad{d}) = \\# \\spad{d}}.")) (|dequeue| (($ (|List| |#1|)) "\\spad{dequeue([x,{}y,{}...,{}z])} creates a dequeue with first (top or front) element \\spad{x},{} second element \\spad{y},{}...,{}and last (bottom or back) element \\spad{z}.") (($) "\\spad{dequeue()}\\$\\spad{D} creates an empty dequeue of type \\spad{D}.")))
-((-4248 . T) (-4249 . T) (-2500 . T))
+((-4250 . T) (-4251 . T) (-2137 . T))
NIL
-(-232)
+(-234)
((|constructor| (NIL "TopLevelDrawFunctionsForCompiledFunctions provides top level functions for drawing graphics of expressions.")) (|recolor| (((|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) "\\spad{recolor()},{} uninteresting to top level user; exported in order to compile package.")) (|makeObject| (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSurface| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{makeObject(surface(f,{}g,{}h),{}a..b,{}c..d,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric surface \\spad{x = f(u,{}v)},{} \\spad{y = g(u,{}v)},{} \\spad{z = h(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}.") (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSurface| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(surface(f,{}g,{}h),{}a..b,{}c..d,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric surface \\spad{x = f(u,{}v)},{} \\spad{y = g(u,{}v)},{} \\spad{z = h(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{makeObject(f,{}a..b,{}c..d,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric surface \\spad{f(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(f,{}a..b,{}c..d,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric surface \\spad{f(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}; The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{makeObject(f,{}a..b,{}c..d)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of \\spad{z = f(x,{}y)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{y} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(f,{}a..b,{}c..d,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of \\spad{z = f(x,{}y)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{y} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)},{} and the options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|Float|))) "\\spad{makeObject(sp,{}curve(f,{}g,{}h),{}a..b)} returns the space \\spad{sp} of the domain \\spadtype{ThreeSpace} with the addition of the graph of the parametric curve \\spad{x = f(t),{} y = g(t),{} z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(curve(f,{}g,{}h),{}a..b,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric curve \\spad{x = f(t),{} y = g(t),{} z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSpaceCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|))) "\\spad{makeObject(sp,{}curve(f,{}g,{}h),{}a..b)} returns the space \\spad{sp} of the domain \\spadtype{ThreeSpace} with the addition of the graph of the parametric curve \\spad{x = f(t),{} y = g(t),{} z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}.") (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSpaceCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(curve(f,{}g,{}h),{}a..b,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric curve \\spad{x = f(t),{} y = g(t),{} z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}; The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.")) (|draw| (((|ThreeDimensionalViewport|) (|ParametricSurface| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{draw(surface(f,{}g,{}h),{}a..b,{}c..d)} draws the graph of the parametric surface \\spad{x = f(u,{}v)},{} \\spad{y = g(u,{}v)},{} \\spad{z = h(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}.") (((|ThreeDimensionalViewport|) (|ParametricSurface| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(surface(f,{}g,{}h),{}a..b,{}c..d)} draws the graph of the parametric surface \\spad{x = f(u,{}v)},{} \\spad{y = g(u,{}v)},{} \\spad{z = h(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}; The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{draw(f,{}a..b,{}c..d)} draws the graph of the parametric surface \\spad{f(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)} The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(f,{}a..b,{}c..d)} draws the graph of the parametric surface \\spad{f(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{draw(f,{}a..b,{}c..d)} draws the graph of \\spad{z = f(x,{}y)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{y} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}.") (((|ThreeDimensionalViewport|) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(f,{}a..b,{}c..d,{}l)} draws the graph of \\spad{z = f(x,{}y)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{y} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}. and the options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|Float|))) "\\spad{draw(f,{}a..b,{}l)} draws the graph of the parametric curve \\spad{f} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}.") (((|ThreeDimensionalViewport|) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(f,{}a..b,{}l)} draws the graph of the parametric curve \\spad{f} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|ParametricSpaceCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|))) "\\spad{draw(curve(f,{}g,{}h),{}a..b,{}l)} draws the graph of the parametric curve \\spad{x = f(t),{} y = g(t),{} z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}.") (((|ThreeDimensionalViewport|) (|ParametricSpaceCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(curve(f,{}g,{}h),{}a..b,{}l)} draws the graph of the parametric curve \\spad{x = f(t),{} y = g(t),{} z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|TwoDimensionalViewport|) (|ParametricPlaneCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|))) "\\spad{draw(curve(f,{}g),{}a..b)} draws the graph of the parametric curve \\spad{x = f(t),{} y = g(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}.") (((|TwoDimensionalViewport|) (|ParametricPlaneCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(curve(f,{}g),{}a..b,{}l)} draws the graph of the parametric curve \\spad{x = f(t),{} y = g(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|TwoDimensionalViewport|) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|))) "\\spad{draw(f,{}a..b)} draws the graph of \\spad{y = f(x)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}.") (((|TwoDimensionalViewport|) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(f,{}a..b,{}l)} draws the graph of \\spad{y = f(x)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.")))
NIL
NIL
-(-233 R |Ex|)
+(-235 R |Ex|)
((|constructor| (NIL "TopLevelDrawFunctionsForAlgebraicCurves provides top level functions for drawing non-singular algebraic curves.")) (|draw| (((|TwoDimensionalViewport|) (|Equation| |#2|) (|Symbol|) (|Symbol|) (|List| (|DrawOption|))) "\\spad{draw(f(x,{}y) = g(x,{}y),{}x,{}y,{}l)} draws the graph of a polynomial equation. The list \\spad{l} of draw options must specify a region in the plane in which the curve is to sketched.")))
NIL
NIL
-(-234)
+(-236)
((|setClipValue| (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{setClipValue(x)} sets to \\spad{x} the maximum value to plot when drawing complex functions. Returns \\spad{x}.")) (|setImagSteps| (((|Integer|) (|Integer|)) "\\spad{setImagSteps(i)} sets to \\spad{i} the number of steps to use in the imaginary direction when drawing complex functions. Returns \\spad{i}.")) (|setRealSteps| (((|Integer|) (|Integer|)) "\\spad{setRealSteps(i)} sets to \\spad{i} the number of steps to use in the real direction when drawing complex functions. Returns \\spad{i}.")) (|drawComplexVectorField| (((|ThreeDimensionalViewport|) (|Mapping| (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|))) "\\spad{drawComplexVectorField(f,{}rRange,{}iRange)} draws a complex vector field using arrows on the \\spad{x--y} plane. These vector fields should be viewed from the top by pressing the \"XY\" translate button on the 3-\\spad{d} viewport control panel.\\newline Sample call: \\indented{3}{\\spad{f z == sin z}} \\indented{3}{\\spad{drawComplexVectorField(f,{} -2..2,{} -2..2)}} Parameter descriptions: \\indented{2}{\\spad{f} : the function to draw} \\indented{2}{\\spad{rRange} : the range of the real values} \\indented{2}{\\spad{iRange} : the range of the imaginary values} Call the functions \\axiomFunFrom{setRealSteps}{DrawComplex} and \\axiomFunFrom{setImagSteps}{DrawComplex} to change the number of steps used in each direction.")) (|drawComplex| (((|ThreeDimensionalViewport|) (|Mapping| (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Boolean|)) "\\spad{drawComplex(f,{}rRange,{}iRange,{}arrows?)} draws a complex function as a height field. It uses the complex norm as the height and the complex argument as the color. It will optionally draw arrows on the surface indicating the direction of the complex value.\\newline Sample call: \\indented{2}{\\spad{f z == exp(1/z)}} \\indented{2}{\\spad{drawComplex(f,{} 0.3..3,{} 0..2*\\%\\spad{pi},{} false)}} Parameter descriptions: \\indented{2}{\\spad{f:}\\space{2}the function to draw} \\indented{2}{\\spad{rRange} : the range of the real values} \\indented{2}{\\spad{iRange} : the range of imaginary values} \\indented{2}{\\spad{arrows?} : a flag indicating whether to draw the phase arrows for \\spad{f}} Call the functions \\axiomFunFrom{setRealSteps}{DrawComplex} and \\axiomFunFrom{setImagSteps}{DrawComplex} to change the number of steps used in each direction.")))
NIL
NIL
-(-235 R)
+(-237 R)
((|constructor| (NIL "Hack for the draw interface. DrawNumericHack provides a \"coercion\" from something of the form \\spad{x = a..b} where \\spad{a} and \\spad{b} are formal expressions to a binding of the form \\spad{x = c..d} where \\spad{c} and \\spad{d} are the numerical values of \\spad{a} and \\spad{b}. This \"coercion\" fails if \\spad{a} and \\spad{b} contains symbolic variables,{} but is meant for expressions involving \\%\\spad{pi}.")) (|coerce| (((|SegmentBinding| (|Float|)) (|SegmentBinding| (|Expression| |#1|))) "\\spad{coerce(x = a..b)} returns \\spad{x = c..d} where \\spad{c} and \\spad{d} are the numerical values of \\spad{a} and \\spad{b}.")))
NIL
NIL
-(-236 |Ex|)
+(-238 |Ex|)
((|constructor| (NIL "TopLevelDrawFunctions provides top level functions for drawing graphics of expressions.")) (|makeObject| (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSurface| |#1|) (|SegmentBinding| (|Float|)) (|SegmentBinding| (|Float|))) "\\spad{makeObject(surface(f(u,{}v),{}g(u,{}v),{}h(u,{}v)),{}u = a..b,{}v = c..d)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric surface \\spad{x = f(u,{}v)},{} \\spad{y = g(u,{}v)},{} \\spad{z = h(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}; \\spad{h(t)} is the default title.") (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSurface| |#1|) (|SegmentBinding| (|Float|)) (|SegmentBinding| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(surface(f(u,{}v),{}g(u,{}v),{}h(u,{}v)),{}u = a..b,{}v = c..d,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric surface \\spad{x = f(u,{}v)},{} \\spad{y = g(u,{}v)},{} \\spad{z = h(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}; \\spad{h(t)} is the default title,{} and the options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeSpace| (|DoubleFloat|)) |#1| (|SegmentBinding| (|Float|)) (|SegmentBinding| (|Float|))) "\\spad{makeObject(f(x,{}y),{}x = a..b,{}y = c..d)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of \\spad{z = f(x,{}y)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{y} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}; \\spad{f(x,{}y)} appears as the default title.") (((|ThreeSpace| (|DoubleFloat|)) |#1| (|SegmentBinding| (|Float|)) (|SegmentBinding| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(f(x,{}y),{}x = a..b,{}y = c..d,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of \\spad{z = f(x,{}y)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{y} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}; \\spad{f(x,{}y)} is the default title,{} and the options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSpaceCurve| |#1|) (|SegmentBinding| (|Float|))) "\\spad{makeObject(curve(f(t),{}g(t),{}h(t)),{}t = a..b)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric curve \\spad{x = f(t)},{} \\spad{y = g(t)},{} \\spad{z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}; \\spad{h(t)} is the default title.") (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSpaceCurve| |#1|) (|SegmentBinding| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(curve(f(t),{}g(t),{}h(t)),{}t = a..b,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric curve \\spad{x = f(t)},{} \\spad{y = g(t)},{} \\spad{z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}; \\spad{h(t)} is the default title,{} and the options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.")) (|draw| (((|ThreeDimensionalViewport|) (|ParametricSurface| |#1|) (|SegmentBinding| (|Float|)) (|SegmentBinding| (|Float|))) "\\spad{draw(surface(f(u,{}v),{}g(u,{}v),{}h(u,{}v)),{}u = a..b,{}v = c..d)} draws the graph of the parametric surface \\spad{x = f(u,{}v)},{} \\spad{y = g(u,{}v)},{} \\spad{z = h(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}; \\spad{h(t)} is the default title.") (((|ThreeDimensionalViewport|) (|ParametricSurface| |#1|) (|SegmentBinding| (|Float|)) (|SegmentBinding| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(surface(f(u,{}v),{}g(u,{}v),{}h(u,{}v)),{}u = a..b,{}v = c..d,{}l)} draws the graph of the parametric surface \\spad{x = f(u,{}v)},{} \\spad{y = g(u,{}v)},{} \\spad{z = h(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}; \\spad{h(t)} is the default title,{} and the options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) |#1| (|SegmentBinding| (|Float|)) (|SegmentBinding| (|Float|))) "\\spad{draw(f(x,{}y),{}x = a..b,{}y = c..d)} draws the graph of \\spad{z = f(x,{}y)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{y} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}; \\spad{f(x,{}y)} appears in the title bar.") (((|ThreeDimensionalViewport|) |#1| (|SegmentBinding| (|Float|)) (|SegmentBinding| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(f(x,{}y),{}x = a..b,{}y = c..d,{}l)} draws the graph of \\spad{z = f(x,{}y)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{y} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}; \\spad{f(x,{}y)} is the default title,{} and the options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|ParametricSpaceCurve| |#1|) (|SegmentBinding| (|Float|))) "\\spad{draw(curve(f(t),{}g(t),{}h(t)),{}t = a..b)} draws the graph of the parametric curve \\spad{x = f(t)},{} \\spad{y = g(t)},{} \\spad{z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}; \\spad{h(t)} is the default title.") (((|ThreeDimensionalViewport|) (|ParametricSpaceCurve| |#1|) (|SegmentBinding| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(curve(f(t),{}g(t),{}h(t)),{}t = a..b,{}l)} draws the graph of the parametric curve \\spad{x = f(t)},{} \\spad{y = g(t)},{} \\spad{z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}; \\spad{h(t)} is the default title,{} and the options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|TwoDimensionalViewport|) (|ParametricPlaneCurve| |#1|) (|SegmentBinding| (|Float|))) "\\spad{draw(curve(f(t),{}g(t)),{}t = a..b)} draws the graph of the parametric curve \\spad{x = f(t),{} y = g(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}; \\spad{(f(t),{}g(t))} appears in the title bar.") (((|TwoDimensionalViewport|) (|ParametricPlaneCurve| |#1|) (|SegmentBinding| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(curve(f(t),{}g(t)),{}t = a..b,{}l)} draws the graph of the parametric curve \\spad{x = f(t),{} y = g(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}; \\spad{(f(t),{}g(t))} is the default title,{} and the options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|TwoDimensionalViewport|) |#1| (|SegmentBinding| (|Float|))) "\\spad{draw(f(x),{}x = a..b)} draws the graph of \\spad{y = f(x)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}; \\spad{f(x)} appears in the title bar.") (((|TwoDimensionalViewport|) |#1| (|SegmentBinding| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(f(x),{}x = a..b,{}l)} draws the graph of \\spad{y = f(x)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}; \\spad{f(x)} is the default title,{} and the options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.")))
NIL
NIL
-(-237)
+(-239)
((|constructor| (NIL "TopLevelDrawFunctionsForPoints provides top level functions for drawing curves and surfaces described by sets of points.")) (|draw| (((|ThreeDimensionalViewport|) (|List| (|DoubleFloat|)) (|List| (|DoubleFloat|)) (|List| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{draw(lx,{}ly,{}lz,{}l)} draws the surface constructed by projecting the values in the \\axiom{\\spad{lz}} list onto the rectangular grid formed by the The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|List| (|DoubleFloat|)) (|List| (|DoubleFloat|)) (|List| (|DoubleFloat|))) "\\spad{draw(lx,{}ly,{}lz)} draws the surface constructed by projecting the values in the \\axiom{\\spad{lz}} list onto the rectangular grid formed by the \\axiom{\\spad{lx} \\spad{X} \\spad{ly}}.") (((|TwoDimensionalViewport|) (|List| (|Point| (|DoubleFloat|))) (|List| (|DrawOption|))) "\\spad{draw(lp,{}l)} plots the curve constructed from the list of points \\spad{lp}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|TwoDimensionalViewport|) (|List| (|Point| (|DoubleFloat|)))) "\\spad{draw(lp)} plots the curve constructed from the list of points \\spad{lp}.") (((|TwoDimensionalViewport|) (|List| (|DoubleFloat|)) (|List| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{draw(lx,{}ly,{}l)} plots the curve constructed of points (\\spad{x},{}\\spad{y}) for \\spad{x} in \\spad{lx} for \\spad{y} in \\spad{ly}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|TwoDimensionalViewport|) (|List| (|DoubleFloat|)) (|List| (|DoubleFloat|))) "\\spad{draw(lx,{}ly)} plots the curve constructed of points (\\spad{x},{}\\spad{y}) for \\spad{x} in \\spad{lx} for \\spad{y} in \\spad{ly}.")))
NIL
NIL
-(-238)
+(-240)
((|constructor| (NIL "This package \\undocumented{}")) (|units| (((|List| (|Float|)) (|List| (|DrawOption|)) (|List| (|Float|))) "\\spad{units(l,{}u)} takes the list of draw options,{} \\spad{l},{} and checks the list to see if it contains the option \\spad{unit}. If the option does not exist the value,{} \\spad{u} is returned.")) (|coord| (((|Mapping| (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) (|List| (|DrawOption|)) (|Mapping| (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)))) "\\spad{coord(l,{}p)} takes the list of draw options,{} \\spad{l},{} and checks the list to see if it contains the option \\spad{coord}. If the option does not exist the value,{} \\spad{p} is returned.")) (|tubeRadius| (((|Float|) (|List| (|DrawOption|)) (|Float|)) "\\spad{tubeRadius(l,{}n)} takes the list of draw options,{} \\spad{l},{} and checks the list to see if it contains the option \\spad{tubeRadius}. If the option does not exist the value,{} \\spad{n} is returned.")) (|tubePoints| (((|PositiveInteger|) (|List| (|DrawOption|)) (|PositiveInteger|)) "\\spad{tubePoints(l,{}n)} takes the list of draw options,{} \\spad{l},{} and checks the list to see if it contains the option \\spad{tubePoints}. If the option does not exist the value,{} \\spad{n} is returned.")) (|space| (((|ThreeSpace| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{space(l)} takes a list of draw options,{} \\spad{l},{} and checks to see if it contains the option \\spad{space}. If the the option doesn\\spad{'t} exist,{} then an empty space is returned.")) (|var2Steps| (((|PositiveInteger|) (|List| (|DrawOption|)) (|PositiveInteger|)) "\\spad{var2Steps(l,{}n)} takes the list of draw options,{} \\spad{l},{} and checks the list to see if it contains the option \\spad{var2Steps}. If the option does not exist the value,{} \\spad{n} is returned.")) (|var1Steps| (((|PositiveInteger|) (|List| (|DrawOption|)) (|PositiveInteger|)) "\\spad{var1Steps(l,{}n)} takes the list of draw options,{} \\spad{l},{} and checks the list to see if it contains the option \\spad{var1Steps}. If the option does not exist the value,{} \\spad{n} is returned.")) (|ranges| (((|List| (|Segment| (|Float|))) (|List| (|DrawOption|)) (|List| (|Segment| (|Float|)))) "\\spad{ranges(l,{}r)} takes the list of draw options,{} \\spad{l},{} and checks the list to see if it contains the option \\spad{ranges}. If the option does not exist the value,{} \\spad{r} is returned.")) (|curveColorPalette| (((|Palette|) (|List| (|DrawOption|)) (|Palette|)) "\\spad{curveColorPalette(l,{}p)} takes the list of draw options,{} \\spad{l},{} and checks the list to see if it contains the option \\spad{curveColorPalette}. If the option does not exist the value,{} \\spad{p} is returned.")) (|pointColorPalette| (((|Palette|) (|List| (|DrawOption|)) (|Palette|)) "\\spad{pointColorPalette(l,{}p)} takes the list of draw options,{} \\spad{l},{} and checks the list to see if it contains the option \\spad{pointColorPalette}. If the option does not exist the value,{} \\spad{p} is returned.")) (|toScale| (((|Boolean|) (|List| (|DrawOption|)) (|Boolean|)) "\\spad{toScale(l,{}b)} takes the list of draw options,{} \\spad{l},{} and checks the list to see if it contains the option \\spad{toScale}. If the option does not exist the value,{} \\spad{b} is returned.")) (|style| (((|String|) (|List| (|DrawOption|)) (|String|)) "\\spad{style(l,{}s)} takes the list of draw options,{} \\spad{l},{} and checks the list to see if it contains the option \\spad{style}. If the option does not exist the value,{} \\spad{s} is returned.")) (|title| (((|String|) (|List| (|DrawOption|)) (|String|)) "\\spad{title(l,{}s)} takes the list of draw options,{} \\spad{l},{} and checks the list to see if it contains the option \\spad{title}. If the option does not exist the value,{} \\spad{s} is returned.")) (|viewpoint| (((|Record| (|:| |theta| (|DoubleFloat|)) (|:| |phi| (|DoubleFloat|)) (|:| |scale| (|DoubleFloat|)) (|:| |scaleX| (|DoubleFloat|)) (|:| |scaleY| (|DoubleFloat|)) (|:| |scaleZ| (|DoubleFloat|)) (|:| |deltaX| (|DoubleFloat|)) (|:| |deltaY| (|DoubleFloat|))) (|List| (|DrawOption|)) (|Record| (|:| |theta| (|DoubleFloat|)) (|:| |phi| (|DoubleFloat|)) (|:| |scale| (|DoubleFloat|)) (|:| |scaleX| (|DoubleFloat|)) (|:| |scaleY| (|DoubleFloat|)) (|:| |scaleZ| (|DoubleFloat|)) (|:| |deltaX| (|DoubleFloat|)) (|:| |deltaY| (|DoubleFloat|)))) "\\spad{viewpoint(l,{}ls)} takes the list of draw options,{} \\spad{l},{} and checks the list to see if it contains the option \\spad{viewpoint}. IF the option does not exist,{} the value \\spad{ls} is returned.")) (|clipBoolean| (((|Boolean|) (|List| (|DrawOption|)) (|Boolean|)) "\\spad{clipBoolean(l,{}b)} takes the list of draw options,{} \\spad{l},{} and checks the list to see if it contains the option \\spad{clipBoolean}. If the option does not exist the value,{} \\spad{b} is returned.")) (|adaptive| (((|Boolean|) (|List| (|DrawOption|)) (|Boolean|)) "\\spad{adaptive(l,{}b)} takes the list of draw options,{} \\spad{l},{} and checks the list to see if it contains the option \\spad{adaptive}. If the option does not exist the value,{} \\spad{b} is returned.")))
NIL
NIL
-(-239 S)
+(-241 S)
((|constructor| (NIL "This package \\undocumented{}")) (|option| (((|Union| |#1| "failed") (|List| (|DrawOption|)) (|Symbol|)) "\\spad{option(l,{}s)} determines whether the indicated drawing option,{} \\spad{s},{} is contained in the list of drawing options,{} \\spad{l},{} which is defined by the draw command.")))
NIL
NIL
-(-240)
+(-242)
((|constructor| (NIL "DrawOption allows the user to specify defaults for the creation and rendering of plots.")) (|option?| (((|Boolean|) (|List| $) (|Symbol|)) "\\spad{option?()} is not to be used at the top level; option? internally returns \\spad{true} for drawing options which are indicated in a draw command,{} or \\spad{false} for those which are not.")) (|option| (((|Union| (|Any|) "failed") (|List| $) (|Symbol|)) "\\spad{option()} is not to be used at the top level; option determines internally which drawing options are indicated in a draw command.")) (|unit| (($ (|List| (|Float|))) "\\spad{unit(lf)} will mark off the units according to the indicated list \\spad{lf}. This option is expressed in the form \\spad{unit == [f1,{}f2]}.")) (|coord| (($ (|Mapping| (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)))) "\\spad{coord(p)} specifies a change of coordinates of point \\spad{p}. This option is expressed in the form \\spad{coord == p}.")) (|tubePoints| (($ (|PositiveInteger|)) "\\spad{tubePoints(n)} specifies the number of points,{} \\spad{n},{} defining the circle which creates the tube around a 3D curve,{} the default is 6. This option is expressed in the form \\spad{tubePoints == n}.")) (|var2Steps| (($ (|PositiveInteger|)) "\\spad{var2Steps(n)} indicates the number of subdivisions,{} \\spad{n},{} of the second range variable. This option is expressed in the form \\spad{var2Steps == n}.")) (|var1Steps| (($ (|PositiveInteger|)) "\\spad{var1Steps(n)} indicates the number of subdivisions,{} \\spad{n},{} of the first range variable. This option is expressed in the form \\spad{var1Steps == n}.")) (|space| (($ (|ThreeSpace| (|DoubleFloat|))) "\\spad{space specifies} the space into which we will draw. If none is given then a new space is created.")) (|ranges| (($ (|List| (|Segment| (|Float|)))) "\\spad{ranges(l)} provides a list of user-specified ranges \\spad{l}. This option is expressed in the form \\spad{ranges == l}.")) (|range| (($ (|List| (|Segment| (|Fraction| (|Integer|))))) "\\spad{range([i])} provides a user-specified range \\spad{i}. This option is expressed in the form \\spad{range == [i]}.") (($ (|List| (|Segment| (|Float|)))) "\\spad{range([l])} provides a user-specified range \\spad{l}. This option is expressed in the form \\spad{range == [l]}.")) (|tubeRadius| (($ (|Float|)) "\\spad{tubeRadius(r)} specifies a radius,{} \\spad{r},{} for a tube plot around a 3D curve; is expressed in the form \\spad{tubeRadius == 4}.")) (|colorFunction| (($ (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) "\\spad{colorFunction(f(x,{}y,{}z))} specifies the color for three dimensional plots as a function of \\spad{x},{} \\spad{y},{} and \\spad{z} coordinates. This option is expressed in the form \\spad{colorFunction == f(x,{}y,{}z)}.") (($ (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) "\\spad{colorFunction(f(u,{}v))} specifies the color for three dimensional plots as a function based upon the two parametric variables. This option is expressed in the form \\spad{colorFunction == f(u,{}v)}.") (($ (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) "\\spad{colorFunction(f(z))} specifies the color based upon the \\spad{z}-component of three dimensional plots. This option is expressed in the form \\spad{colorFunction == f(z)}.")) (|curveColor| (($ (|Palette|)) "\\spad{curveColor(p)} specifies a color index for 2D graph curves from the spadcolors palette \\spad{p}. This option is expressed in the form \\spad{curveColor ==p}.") (($ (|Float|)) "\\spad{curveColor(v)} specifies a color,{} \\spad{v},{} for 2D graph curves. This option is expressed in the form \\spad{curveColor == v}.")) (|pointColor| (($ (|Palette|)) "\\spad{pointColor(p)} specifies a color index for 2D graph points from the spadcolors palette \\spad{p}. This option is expressed in the form \\spad{pointColor == p}.") (($ (|Float|)) "\\spad{pointColor(v)} specifies a color,{} \\spad{v},{} for 2D graph points. This option is expressed in the form \\spad{pointColor == v}.")) (|coordinates| (($ (|Mapping| (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)))) "\\spad{coordinates(p)} specifies a change of coordinate systems of point \\spad{p}. This option is expressed in the form \\spad{coordinates == p}.")) (|toScale| (($ (|Boolean|)) "\\spad{toScale(b)} specifies whether or not a plot is to be drawn to scale; if \\spad{b} is \\spad{true} it is drawn to scale,{} if \\spad{b} is \\spad{false} it is not. This option is expressed in the form \\spad{toScale == b}.")) (|style| (($ (|String|)) "\\spad{style(s)} specifies the drawing style in which the graph will be plotted by the indicated string \\spad{s}. This option is expressed in the form \\spad{style == s}.")) (|title| (($ (|String|)) "\\spad{title(s)} specifies a title for a plot by the indicated string \\spad{s}. This option is expressed in the form \\spad{title == s}.")) (|viewpoint| (($ (|Record| (|:| |theta| (|DoubleFloat|)) (|:| |phi| (|DoubleFloat|)) (|:| |scale| (|DoubleFloat|)) (|:| |scaleX| (|DoubleFloat|)) (|:| |scaleY| (|DoubleFloat|)) (|:| |scaleZ| (|DoubleFloat|)) (|:| |deltaX| (|DoubleFloat|)) (|:| |deltaY| (|DoubleFloat|)))) "\\spad{viewpoint(vp)} creates a viewpoint data structure corresponding to the list of values. The values are interpreted as [theta,{} phi,{} scale,{} scaleX,{} scaleY,{} scaleZ,{} deltaX,{} deltaY]. This option is expressed in the form \\spad{viewpoint == ls}.")) (|clip| (($ (|List| (|Segment| (|Float|)))) "\\spad{clip([l])} provides ranges for user-defined clipping as specified in the list \\spad{l}. This option is expressed in the form \\spad{clip == [l]}.") (($ (|Boolean|)) "\\spad{clip(b)} turns 2D clipping on if \\spad{b} is \\spad{true},{} or off if \\spad{b} is \\spad{false}. This option is expressed in the form \\spad{clip == b}.")) (|adaptive| (($ (|Boolean|)) "\\spad{adaptive(b)} turns adaptive 2D plotting on if \\spad{b} is \\spad{true},{} or off if \\spad{b} is \\spad{false}. This option is expressed in the form \\spad{adaptive == b}.")))
NIL
NIL
-(-241 R S V)
+(-243 R S V)
((|constructor| (NIL "\\spadtype{DifferentialSparseMultivariatePolynomial} implements an ordinary differential polynomial ring by combining a domain belonging to the category \\spadtype{DifferentialVariableCategory} with the domain \\spadtype{SparseMultivariatePolynomial}. \\blankline")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-840))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#3| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#3| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#3| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#3| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#3| (LIST (QUOTE -564) (QUOTE (-499))))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-211))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-339))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasAttribute| |#1| (QUOTE -4246)) (|HasCategory| |#1| (QUOTE (-427))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-134)))))
-(-242 A S)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-842))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#3| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#3| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#3| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#3| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#3| (LIST (QUOTE -566) (QUOTE (-501))))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-213))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-341))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasAttribute| |#1| (QUOTE -4248)) (|HasCategory| |#1| (QUOTE (-429))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-136)))))
+(-244 A S)
((|constructor| (NIL "\\spadtype{DifferentialVariableCategory} constructs the set of derivatives of a given set of (ordinary) differential indeterminates. If \\spad{x},{}...,{}\\spad{y} is an ordered set of differential indeterminates,{} and the prime notation is used for differentiation,{} then the set of derivatives (including zero-th order) of the differential indeterminates is \\spad{x},{}\\spad{x'},{}\\spad{x''},{}...,{} \\spad{y},{}\\spad{y'},{}\\spad{y''},{}... (Note: in the interpreter,{} the \\spad{n}-th derivative of \\spad{y} is displayed as \\spad{y} with a subscript \\spad{n}.) This set is viewed as a set of algebraic indeterminates,{} totally ordered in a way compatible with differentiation and the given order on the differential indeterminates. Such a total order is called a ranking of the differential indeterminates. \\blankline A domain in this category is needed to construct a differential polynomial domain. Differential polynomials are ordered by a ranking on the derivatives,{} and by an order (extending the ranking) on on the set of differential monomials. One may thus associate a domain in this category with a ranking of the differential indeterminates,{} just as one associates a domain in the category \\spadtype{OrderedAbelianMonoidSup} with an ordering of the set of monomials in a set of algebraic indeterminates. The ranking is specified through the binary relation \\spadfun{<}. For example,{} one may define one derivative to be less than another by lexicographically comparing first the \\spadfun{order},{} then the given order of the differential indeterminates appearing in the derivatives. This is the default implementation. \\blankline The notion of weight generalizes that of degree. A polynomial domain may be made into a graded ring if a weight function is given on the set of indeterminates,{} Very often,{} a grading is the first step in ordering the set of monomials. For differential polynomial domains,{} this constructor provides a function \\spadfun{weight},{} which allows the assignment of a non-negative number to each derivative of a differential indeterminate. For example,{} one may define the weight of a derivative to be simply its \\spadfun{order} (this is the default assignment). This weight function can then be extended to the set of all differential polynomials,{} providing a graded ring structure.")) (|coerce| (($ |#2|) "\\spad{coerce(s)} returns \\spad{s},{} viewed as the zero-th order derivative of \\spad{s}.")) (|differentiate| (($ $ (|NonNegativeInteger|)) "\\spad{differentiate(v,{} n)} returns the \\spad{n}-th derivative of \\spad{v}.") (($ $) "\\spad{differentiate(v)} returns the derivative of \\spad{v}.")) (|weight| (((|NonNegativeInteger|) $) "\\spad{weight(v)} returns the weight of the derivative \\spad{v}.")) (|variable| ((|#2| $) "\\spad{variable(v)} returns \\spad{s} if \\spad{v} is any derivative of the differential indeterminate \\spad{s}.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(v)} returns \\spad{n} if \\spad{v} is the \\spad{n}-th derivative of any differential indeterminate.")) (|makeVariable| (($ |#2| (|NonNegativeInteger|)) "\\spad{makeVariable(s,{} n)} returns the \\spad{n}-th derivative of a differential indeterminate \\spad{s} as an algebraic indeterminate.")))
NIL
NIL
-(-243 S)
+(-245 S)
((|constructor| (NIL "\\spadtype{DifferentialVariableCategory} constructs the set of derivatives of a given set of (ordinary) differential indeterminates. If \\spad{x},{}...,{}\\spad{y} is an ordered set of differential indeterminates,{} and the prime notation is used for differentiation,{} then the set of derivatives (including zero-th order) of the differential indeterminates is \\spad{x},{}\\spad{x'},{}\\spad{x''},{}...,{} \\spad{y},{}\\spad{y'},{}\\spad{y''},{}... (Note: in the interpreter,{} the \\spad{n}-th derivative of \\spad{y} is displayed as \\spad{y} with a subscript \\spad{n}.) This set is viewed as a set of algebraic indeterminates,{} totally ordered in a way compatible with differentiation and the given order on the differential indeterminates. Such a total order is called a ranking of the differential indeterminates. \\blankline A domain in this category is needed to construct a differential polynomial domain. Differential polynomials are ordered by a ranking on the derivatives,{} and by an order (extending the ranking) on on the set of differential monomials. One may thus associate a domain in this category with a ranking of the differential indeterminates,{} just as one associates a domain in the category \\spadtype{OrderedAbelianMonoidSup} with an ordering of the set of monomials in a set of algebraic indeterminates. The ranking is specified through the binary relation \\spadfun{<}. For example,{} one may define one derivative to be less than another by lexicographically comparing first the \\spadfun{order},{} then the given order of the differential indeterminates appearing in the derivatives. This is the default implementation. \\blankline The notion of weight generalizes that of degree. A polynomial domain may be made into a graded ring if a weight function is given on the set of indeterminates,{} Very often,{} a grading is the first step in ordering the set of monomials. For differential polynomial domains,{} this constructor provides a function \\spadfun{weight},{} which allows the assignment of a non-negative number to each derivative of a differential indeterminate. For example,{} one may define the weight of a derivative to be simply its \\spadfun{order} (this is the default assignment). This weight function can then be extended to the set of all differential polynomials,{} providing a graded ring structure.")) (|coerce| (($ |#1|) "\\spad{coerce(s)} returns \\spad{s},{} viewed as the zero-th order derivative of \\spad{s}.")) (|differentiate| (($ $ (|NonNegativeInteger|)) "\\spad{differentiate(v,{} n)} returns the \\spad{n}-th derivative of \\spad{v}.") (($ $) "\\spad{differentiate(v)} returns the derivative of \\spad{v}.")) (|weight| (((|NonNegativeInteger|) $) "\\spad{weight(v)} returns the weight of the derivative \\spad{v}.")) (|variable| ((|#1| $) "\\spad{variable(v)} returns \\spad{s} if \\spad{v} is any derivative of the differential indeterminate \\spad{s}.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(v)} returns \\spad{n} if \\spad{v} is the \\spad{n}-th derivative of any differential indeterminate.")) (|makeVariable| (($ |#1| (|NonNegativeInteger|)) "\\spad{makeVariable(s,{} n)} returns the \\spad{n}-th derivative of a differential indeterminate \\spad{s} as an algebraic indeterminate.")))
NIL
NIL
-(-244)
+(-246)
((|optAttributes| (((|List| (|String|)) (|Union| (|:| |noa| (|Record| (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |init| (|List| (|DoubleFloat|))) (|:| |lb| (|List| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |cf| (|List| (|Expression| (|DoubleFloat|)))) (|:| |ub| (|List| (|OrderedCompletion| (|DoubleFloat|)))))) (|:| |lsa| (|Record| (|:| |lfn| (|List| (|Expression| (|DoubleFloat|)))) (|:| |init| (|List| (|DoubleFloat|))))))) "\\spad{optAttributes(o)} is a function for supplying a list of attributes of an optimization problem.")) (|expenseOfEvaluation| (((|Float|) (|Record| (|:| |lfn| (|List| (|Expression| (|DoubleFloat|)))) (|:| |init| (|List| (|DoubleFloat|))))) "\\spad{expenseOfEvaluation(o)} returns the intensity value of the cost of evaluating the input set of functions. This is in terms of the number of ``operational units\\spad{''}. It returns a value in the range [0,{}1].")) (|changeNameToObjf| (((|Result|) (|Symbol|) (|Result|)) "\\spad{changeNameToObjf(s,{}r)} changes the name of item \\axiom{\\spad{s}} in \\axiom{\\spad{r}} to objf.")) (|varList| (((|List| (|Symbol|)) (|Expression| (|DoubleFloat|)) (|NonNegativeInteger|)) "\\spad{varList(e,{}n)} returns a list of \\axiom{\\spad{n}} indexed variables with name as in \\axiom{\\spad{e}}.")) (|variables| (((|List| (|Symbol|)) (|Record| (|:| |lfn| (|List| (|Expression| (|DoubleFloat|)))) (|:| |init| (|List| (|DoubleFloat|))))) "\\spad{variables(args)} returns the list of variables in \\axiom{\\spad{args}.\\spad{lfn}}")) (|quadratic?| (((|Boolean|) (|Expression| (|DoubleFloat|))) "\\spad{quadratic?(e)} tests if \\axiom{\\spad{e}} is a quadratic function.")) (|nonLinearPart| (((|List| (|Expression| (|DoubleFloat|))) (|List| (|Expression| (|DoubleFloat|)))) "\\spad{nonLinearPart(l)} returns the list of non-linear functions of \\axiom{\\spad{l}}.")) (|linearPart| (((|List| (|Expression| (|DoubleFloat|))) (|List| (|Expression| (|DoubleFloat|)))) "\\spad{linearPart(l)} returns the list of linear functions of \\axiom{\\spad{l}}.")) (|linearMatrix| (((|Matrix| (|DoubleFloat|)) (|List| (|Expression| (|DoubleFloat|))) (|NonNegativeInteger|)) "\\spad{linearMatrix(l,{}n)} returns a matrix of coefficients of the linear functions in \\axiom{\\spad{l}}. If \\spad{l} is empty,{} the matrix has at least one row.")) (|linear?| (((|Boolean|) (|Expression| (|DoubleFloat|))) "\\spad{linear?(e)} tests if \\axiom{\\spad{e}} is a linear function.") (((|Boolean|) (|List| (|Expression| (|DoubleFloat|)))) "\\spad{linear?(l)} returns \\spad{true} if all the bounds \\spad{l} are either linear or simple.")) (|simpleBounds?| (((|Boolean|) (|List| (|Expression| (|DoubleFloat|)))) "\\spad{simpleBounds?(l)} returns \\spad{true} if the list of expressions \\spad{l} are simple.")) (|splitLinear| (((|Expression| (|DoubleFloat|)) (|Expression| (|DoubleFloat|))) "\\spad{splitLinear(f)} splits the linear part from an expression which it returns.")) (|sumOfSquares| (((|Union| (|Expression| (|DoubleFloat|)) "failed") (|Expression| (|DoubleFloat|))) "\\spad{sumOfSquares(f)} returns either an expression for which the square is the original function of \"failed\".")) (|sortConstraints| (((|Record| (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |init| (|List| (|DoubleFloat|))) (|:| |lb| (|List| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |cf| (|List| (|Expression| (|DoubleFloat|)))) (|:| |ub| (|List| (|OrderedCompletion| (|DoubleFloat|))))) (|Record| (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |init| (|List| (|DoubleFloat|))) (|:| |lb| (|List| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |cf| (|List| (|Expression| (|DoubleFloat|)))) (|:| |ub| (|List| (|OrderedCompletion| (|DoubleFloat|)))))) "\\spad{sortConstraints(args)} uses a simple bubblesort on the list of constraints using the degree of the expression on which to sort. Of course,{} it must match the bounds to the constraints.")) (|finiteBound| (((|List| (|DoubleFloat|)) (|List| (|OrderedCompletion| (|DoubleFloat|))) (|DoubleFloat|)) "\\spad{finiteBound(l,{}b)} repaces all instances of an infinite entry in \\axiom{\\spad{l}} by a finite entry \\axiom{\\spad{b}} or \\axiom{\\spad{-b}}.")))
NIL
NIL
-(-245)
+(-247)
((|constructor| (NIL "\\axiomType{e04dgfAnnaType} is a domain of \\axiomType{NumericalOptimization} for the NAG routine E04DGF,{} a general optimization routine which can handle some singularities in the input function. The function \\axiomFun{measure} measures the usefulness of the routine E04DGF for the given problem. The function \\axiomFun{numericalOptimization} performs the optimization by using \\axiomType{NagOptimisationPackage}.")))
NIL
NIL
-(-246)
+(-248)
((|constructor| (NIL "\\axiomType{e04fdfAnnaType} is a domain of \\axiomType{NumericalOptimization} for the NAG routine E04FDF,{} a general optimization routine which can handle some singularities in the input function. The function \\axiomFun{measure} measures the usefulness of the routine E04FDF for the given problem. The function \\axiomFun{numericalOptimization} performs the optimization by using \\axiomType{NagOptimisationPackage}.")))
NIL
NIL
-(-247)
+(-249)
((|constructor| (NIL "\\axiomType{e04gcfAnnaType} is a domain of \\axiomType{NumericalOptimization} for the NAG routine E04GCF,{} a general optimization routine which can handle some singularities in the input function. The function \\axiomFun{measure} measures the usefulness of the routine E04GCF for the given problem. The function \\axiomFun{numericalOptimization} performs the optimization by using \\axiomType{NagOptimisationPackage}.")))
NIL
NIL
-(-248)
+(-250)
((|constructor| (NIL "\\axiomType{e04jafAnnaType} is a domain of \\axiomType{NumericalOptimization} for the NAG routine E04JAF,{} a general optimization routine which can handle some singularities in the input function. The function \\axiomFun{measure} measures the usefulness of the routine E04JAF for the given problem. The function \\axiomFun{numericalOptimization} performs the optimization by using \\axiomType{NagOptimisationPackage}.")))
NIL
NIL
-(-249)
+(-251)
((|constructor| (NIL "\\axiomType{e04mbfAnnaType} is a domain of \\axiomType{NumericalOptimization} for the NAG routine E04MBF,{} an optimization routine for Linear functions. The function \\axiomFun{measure} measures the usefulness of the routine E04MBF for the given problem. The function \\axiomFun{numericalOptimization} performs the optimization by using \\axiomType{NagOptimisationPackage}.")))
NIL
NIL
-(-250)
+(-252)
((|constructor| (NIL "\\axiomType{e04nafAnnaType} is a domain of \\axiomType{NumericalOptimization} for the NAG routine E04NAF,{} an optimization routine for Quadratic functions. The function \\axiomFun{measure} measures the usefulness of the routine E04NAF for the given problem. The function \\axiomFun{numericalOptimization} performs the optimization by using \\axiomType{NagOptimisationPackage}.")))
NIL
NIL
-(-251)
+(-253)
((|constructor| (NIL "\\axiomType{e04ucfAnnaType} is a domain of \\axiomType{NumericalOptimization} for the NAG routine E04UCF,{} a general optimization routine which can handle some singularities in the input function. The function \\axiomFun{measure} measures the usefulness of the routine E04UCF for the given problem. The function \\axiomFun{numericalOptimization} performs the optimization by using \\axiomType{NagOptimisationPackage}.")))
NIL
NIL
-(-252)
+(-254)
((|constructor| (NIL "A domain used in the construction of the exterior algebra on a set \\spad{X} over a ring \\spad{R}. This domain represents the set of all ordered subsets of the set \\spad{X},{} assumed to be in correspondance with {1,{}2,{}3,{} ...}. The ordered subsets are themselves ordered lexicographically and are in bijective correspondance with an ordered basis of the exterior algebra. In this domain we are dealing strictly with the exponents of basis elements which can only be 0 or 1. \\blankline The multiplicative identity element of the exterior algebra corresponds to the empty subset of \\spad{X}. A coerce from List Integer to an ordered basis element is provided to allow the convenient input of expressions. Another exported function forgets the ordered structure and simply returns the list corresponding to an ordered subset.")) (|Nul| (($ (|NonNegativeInteger|)) "\\spad{Nul()} gives the basis element 1 for the algebra generated by \\spad{n} generators.")) (|exponents| (((|List| (|Integer|)) $) "\\spad{exponents(x)} converts a domain element into a list of zeros and ones corresponding to the exponents in the basis element that \\spad{x} represents.")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(x)} gives the numbers of 1\\spad{'s} in \\spad{x},{} \\spadignore{i.e.} the number of non-zero exponents in the basis element that \\spad{x} represents.")) (|coerce| (($ (|List| (|Integer|))) "\\spad{coerce(l)} converts a list of 0\\spad{'s} and 1\\spad{'s} into a basis element,{} where 1 (respectively 0) designates that the variable of the corresponding index of \\spad{l} is (respectively,{} is not) present. Error: if an element of \\spad{l} is not 0 or 1.")))
NIL
NIL
-(-253 R -3894)
+(-255 R -3576)
((|constructor| (NIL "Provides elementary functions over an integral domain.")) (|localReal?| (((|Boolean|) |#2|) "\\spad{localReal?(x)} should be local but conditional")) (|specialTrigs| (((|Union| |#2| "failed") |#2| (|List| (|Record| (|:| |func| |#2|) (|:| |pole| (|Boolean|))))) "\\spad{specialTrigs(x,{}l)} should be local but conditional")) (|iiacsch| ((|#2| |#2|) "\\spad{iiacsch(x)} should be local but conditional")) (|iiasech| ((|#2| |#2|) "\\spad{iiasech(x)} should be local but conditional")) (|iiacoth| ((|#2| |#2|) "\\spad{iiacoth(x)} should be local but conditional")) (|iiatanh| ((|#2| |#2|) "\\spad{iiatanh(x)} should be local but conditional")) (|iiacosh| ((|#2| |#2|) "\\spad{iiacosh(x)} should be local but conditional")) (|iiasinh| ((|#2| |#2|) "\\spad{iiasinh(x)} should be local but conditional")) (|iicsch| ((|#2| |#2|) "\\spad{iicsch(x)} should be local but conditional")) (|iisech| ((|#2| |#2|) "\\spad{iisech(x)} should be local but conditional")) (|iicoth| ((|#2| |#2|) "\\spad{iicoth(x)} should be local but conditional")) (|iitanh| ((|#2| |#2|) "\\spad{iitanh(x)} should be local but conditional")) (|iicosh| ((|#2| |#2|) "\\spad{iicosh(x)} should be local but conditional")) (|iisinh| ((|#2| |#2|) "\\spad{iisinh(x)} should be local but conditional")) (|iiacsc| ((|#2| |#2|) "\\spad{iiacsc(x)} should be local but conditional")) (|iiasec| ((|#2| |#2|) "\\spad{iiasec(x)} should be local but conditional")) (|iiacot| ((|#2| |#2|) "\\spad{iiacot(x)} should be local but conditional")) (|iiatan| ((|#2| |#2|) "\\spad{iiatan(x)} should be local but conditional")) (|iiacos| ((|#2| |#2|) "\\spad{iiacos(x)} should be local but conditional")) (|iiasin| ((|#2| |#2|) "\\spad{iiasin(x)} should be local but conditional")) (|iicsc| ((|#2| |#2|) "\\spad{iicsc(x)} should be local but conditional")) (|iisec| ((|#2| |#2|) "\\spad{iisec(x)} should be local but conditional")) (|iicot| ((|#2| |#2|) "\\spad{iicot(x)} should be local but conditional")) (|iitan| ((|#2| |#2|) "\\spad{iitan(x)} should be local but conditional")) (|iicos| ((|#2| |#2|) "\\spad{iicos(x)} should be local but conditional")) (|iisin| ((|#2| |#2|) "\\spad{iisin(x)} should be local but conditional")) (|iilog| ((|#2| |#2|) "\\spad{iilog(x)} should be local but conditional")) (|iiexp| ((|#2| |#2|) "\\spad{iiexp(x)} should be local but conditional")) (|iisqrt3| ((|#2|) "\\spad{iisqrt3()} should be local but conditional")) (|iisqrt2| ((|#2|) "\\spad{iisqrt2()} should be local but conditional")) (|operator| (((|BasicOperator|) (|BasicOperator|)) "\\spad{operator(p)} returns an elementary operator with the same symbol as \\spad{p}")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(p)} returns \\spad{true} if operator \\spad{p} is elementary")) (|pi| ((|#2|) "\\spad{\\spad{pi}()} returns the \\spad{pi} operator")) (|acsch| ((|#2| |#2|) "\\spad{acsch(x)} applies the inverse hyperbolic cosecant operator to \\spad{x}")) (|asech| ((|#2| |#2|) "\\spad{asech(x)} applies the inverse hyperbolic secant operator to \\spad{x}")) (|acoth| ((|#2| |#2|) "\\spad{acoth(x)} applies the inverse hyperbolic cotangent operator to \\spad{x}")) (|atanh| ((|#2| |#2|) "\\spad{atanh(x)} applies the inverse hyperbolic tangent operator to \\spad{x}")) (|acosh| ((|#2| |#2|) "\\spad{acosh(x)} applies the inverse hyperbolic cosine operator to \\spad{x}")) (|asinh| ((|#2| |#2|) "\\spad{asinh(x)} applies the inverse hyperbolic sine operator to \\spad{x}")) (|csch| ((|#2| |#2|) "\\spad{csch(x)} applies the hyperbolic cosecant operator to \\spad{x}")) (|sech| ((|#2| |#2|) "\\spad{sech(x)} applies the hyperbolic secant operator to \\spad{x}")) (|coth| ((|#2| |#2|) "\\spad{coth(x)} applies the hyperbolic cotangent operator to \\spad{x}")) (|tanh| ((|#2| |#2|) "\\spad{tanh(x)} applies the hyperbolic tangent operator to \\spad{x}")) (|cosh| ((|#2| |#2|) "\\spad{cosh(x)} applies the hyperbolic cosine operator to \\spad{x}")) (|sinh| ((|#2| |#2|) "\\spad{sinh(x)} applies the hyperbolic sine operator to \\spad{x}")) (|acsc| ((|#2| |#2|) "\\spad{acsc(x)} applies the inverse cosecant operator to \\spad{x}")) (|asec| ((|#2| |#2|) "\\spad{asec(x)} applies the inverse secant operator to \\spad{x}")) (|acot| ((|#2| |#2|) "\\spad{acot(x)} applies the inverse cotangent operator to \\spad{x}")) (|atan| ((|#2| |#2|) "\\spad{atan(x)} applies the inverse tangent operator to \\spad{x}")) (|acos| ((|#2| |#2|) "\\spad{acos(x)} applies the inverse cosine operator to \\spad{x}")) (|asin| ((|#2| |#2|) "\\spad{asin(x)} applies the inverse sine operator to \\spad{x}")) (|csc| ((|#2| |#2|) "\\spad{csc(x)} applies the cosecant operator to \\spad{x}")) (|sec| ((|#2| |#2|) "\\spad{sec(x)} applies the secant operator to \\spad{x}")) (|cot| ((|#2| |#2|) "\\spad{cot(x)} applies the cotangent operator to \\spad{x}")) (|tan| ((|#2| |#2|) "\\spad{tan(x)} applies the tangent operator to \\spad{x}")) (|cos| ((|#2| |#2|) "\\spad{cos(x)} applies the cosine operator to \\spad{x}")) (|sin| ((|#2| |#2|) "\\spad{sin(x)} applies the sine operator to \\spad{x}")) (|log| ((|#2| |#2|) "\\spad{log(x)} applies the logarithm operator to \\spad{x}")) (|exp| ((|#2| |#2|) "\\spad{exp(x)} applies the exponential operator to \\spad{x}")))
NIL
NIL
-(-254 R -3894)
+(-256 R -3576)
((|constructor| (NIL "ElementaryFunctionStructurePackage provides functions to test the algebraic independence of various elementary functions,{} using the Risch structure theorem (real and complex versions). It also provides transformations on elementary functions which are not considered simplifications.")) (|tanQ| ((|#2| (|Fraction| (|Integer|)) |#2|) "\\spad{tanQ(q,{}a)} is a local function with a conditional implementation.")) (|rootNormalize| ((|#2| |#2| (|Kernel| |#2|)) "\\spad{rootNormalize(f,{} k)} returns \\spad{f} rewriting either \\spad{k} which must be an \\spad{n}th-root in terms of radicals already in \\spad{f},{} or some radicals in \\spad{f} in terms of \\spad{k}.")) (|validExponential| (((|Union| |#2| "failed") (|List| (|Kernel| |#2|)) |#2| (|Symbol|)) "\\spad{validExponential([k1,{}...,{}kn],{}f,{}x)} returns \\spad{g} if \\spad{exp(f)=g} and \\spad{g} involves only \\spad{k1...kn},{} and \"failed\" otherwise.")) (|realElementary| ((|#2| |#2| (|Symbol|)) "\\spad{realElementary(f,{}x)} rewrites the kernels of \\spad{f} involving \\spad{x} in terms of the 4 fundamental real transcendental elementary functions: \\spad{log,{} exp,{} tan,{} atan}.") ((|#2| |#2|) "\\spad{realElementary(f)} rewrites \\spad{f} in terms of the 4 fundamental real transcendental elementary functions: \\spad{log,{} exp,{} tan,{} atan}.")) (|rischNormalize| (((|Record| (|:| |func| |#2|) (|:| |kers| (|List| (|Kernel| |#2|))) (|:| |vals| (|List| |#2|))) |#2| (|Symbol|)) "\\spad{rischNormalize(f,{} x)} returns \\spad{[g,{} [k1,{}...,{}kn],{} [h1,{}...,{}hn]]} such that \\spad{g = normalize(f,{} x)} and each \\spad{\\spad{ki}} was rewritten as \\spad{\\spad{hi}} during the normalization.")) (|normalize| ((|#2| |#2| (|Symbol|)) "\\spad{normalize(f,{} x)} rewrites \\spad{f} using the least possible number of real algebraically independent kernels involving \\spad{x}.") ((|#2| |#2|) "\\spad{normalize(f)} rewrites \\spad{f} using the least possible number of real algebraically independent kernels.")))
NIL
NIL
-(-255 |Coef| UTS ULS)
+(-257 |Coef| UTS ULS)
((|constructor| (NIL "\\indented{1}{This package provides elementary functions on any Laurent series} domain over a field which was constructed from a Taylor series domain. These functions are implemented by calling the corresponding functions on the Taylor series domain. We also provide 'partial functions' which compute transcendental functions of Laurent series when possible and return \"failed\" when this is not possible.")) (|acsch| ((|#3| |#3|) "\\spad{acsch(z)} returns the inverse hyperbolic cosecant of Laurent series \\spad{z}.")) (|asech| ((|#3| |#3|) "\\spad{asech(z)} returns the inverse hyperbolic secant of Laurent series \\spad{z}.")) (|acoth| ((|#3| |#3|) "\\spad{acoth(z)} returns the inverse hyperbolic cotangent of Laurent series \\spad{z}.")) (|atanh| ((|#3| |#3|) "\\spad{atanh(z)} returns the inverse hyperbolic tangent of Laurent series \\spad{z}.")) (|acosh| ((|#3| |#3|) "\\spad{acosh(z)} returns the inverse hyperbolic cosine of Laurent series \\spad{z}.")) (|asinh| ((|#3| |#3|) "\\spad{asinh(z)} returns the inverse hyperbolic sine of Laurent series \\spad{z}.")) (|csch| ((|#3| |#3|) "\\spad{csch(z)} returns the hyperbolic cosecant of Laurent series \\spad{z}.")) (|sech| ((|#3| |#3|) "\\spad{sech(z)} returns the hyperbolic secant of Laurent series \\spad{z}.")) (|coth| ((|#3| |#3|) "\\spad{coth(z)} returns the hyperbolic cotangent of Laurent series \\spad{z}.")) (|tanh| ((|#3| |#3|) "\\spad{tanh(z)} returns the hyperbolic tangent of Laurent series \\spad{z}.")) (|cosh| ((|#3| |#3|) "\\spad{cosh(z)} returns the hyperbolic cosine of Laurent series \\spad{z}.")) (|sinh| ((|#3| |#3|) "\\spad{sinh(z)} returns the hyperbolic sine of Laurent series \\spad{z}.")) (|acsc| ((|#3| |#3|) "\\spad{acsc(z)} returns the arc-cosecant of Laurent series \\spad{z}.")) (|asec| ((|#3| |#3|) "\\spad{asec(z)} returns the arc-secant of Laurent series \\spad{z}.")) (|acot| ((|#3| |#3|) "\\spad{acot(z)} returns the arc-cotangent of Laurent series \\spad{z}.")) (|atan| ((|#3| |#3|) "\\spad{atan(z)} returns the arc-tangent of Laurent series \\spad{z}.")) (|acos| ((|#3| |#3|) "\\spad{acos(z)} returns the arc-cosine of Laurent series \\spad{z}.")) (|asin| ((|#3| |#3|) "\\spad{asin(z)} returns the arc-sine of Laurent series \\spad{z}.")) (|csc| ((|#3| |#3|) "\\spad{csc(z)} returns the cosecant of Laurent series \\spad{z}.")) (|sec| ((|#3| |#3|) "\\spad{sec(z)} returns the secant of Laurent series \\spad{z}.")) (|cot| ((|#3| |#3|) "\\spad{cot(z)} returns the cotangent of Laurent series \\spad{z}.")) (|tan| ((|#3| |#3|) "\\spad{tan(z)} returns the tangent of Laurent series \\spad{z}.")) (|cos| ((|#3| |#3|) "\\spad{cos(z)} returns the cosine of Laurent series \\spad{z}.")) (|sin| ((|#3| |#3|) "\\spad{sin(z)} returns the sine of Laurent series \\spad{z}.")) (|log| ((|#3| |#3|) "\\spad{log(z)} returns the logarithm of Laurent series \\spad{z}.")) (|exp| ((|#3| |#3|) "\\spad{exp(z)} returns the exponential of Laurent series \\spad{z}.")) (** ((|#3| |#3| (|Fraction| (|Integer|))) "\\spad{s ** r} raises a Laurent series \\spad{s} to a rational power \\spad{r}")))
NIL
-((|HasCategory| |#1| (QUOTE (-339))))
-(-256 |Coef| ULS UPXS EFULS)
+((|HasCategory| |#1| (QUOTE (-341))))
+(-258 |Coef| ULS UPXS EFULS)
((|constructor| (NIL "\\indented{1}{This package provides elementary functions on any Laurent series} domain over a field which was constructed from a Taylor series domain. These functions are implemented by calling the corresponding functions on the Taylor series domain. We also provide 'partial functions' which compute transcendental functions of Laurent series when possible and return \"failed\" when this is not possible.")) (|acsch| ((|#3| |#3|) "\\spad{acsch(z)} returns the inverse hyperbolic cosecant of a Puiseux series \\spad{z}.")) (|asech| ((|#3| |#3|) "\\spad{asech(z)} returns the inverse hyperbolic secant of a Puiseux series \\spad{z}.")) (|acoth| ((|#3| |#3|) "\\spad{acoth(z)} returns the inverse hyperbolic cotangent of a Puiseux series \\spad{z}.")) (|atanh| ((|#3| |#3|) "\\spad{atanh(z)} returns the inverse hyperbolic tangent of a Puiseux series \\spad{z}.")) (|acosh| ((|#3| |#3|) "\\spad{acosh(z)} returns the inverse hyperbolic cosine of a Puiseux series \\spad{z}.")) (|asinh| ((|#3| |#3|) "\\spad{asinh(z)} returns the inverse hyperbolic sine of a Puiseux series \\spad{z}.")) (|csch| ((|#3| |#3|) "\\spad{csch(z)} returns the hyperbolic cosecant of a Puiseux series \\spad{z}.")) (|sech| ((|#3| |#3|) "\\spad{sech(z)} returns the hyperbolic secant of a Puiseux series \\spad{z}.")) (|coth| ((|#3| |#3|) "\\spad{coth(z)} returns the hyperbolic cotangent of a Puiseux series \\spad{z}.")) (|tanh| ((|#3| |#3|) "\\spad{tanh(z)} returns the hyperbolic tangent of a Puiseux series \\spad{z}.")) (|cosh| ((|#3| |#3|) "\\spad{cosh(z)} returns the hyperbolic cosine of a Puiseux series \\spad{z}.")) (|sinh| ((|#3| |#3|) "\\spad{sinh(z)} returns the hyperbolic sine of a Puiseux series \\spad{z}.")) (|acsc| ((|#3| |#3|) "\\spad{acsc(z)} returns the arc-cosecant of a Puiseux series \\spad{z}.")) (|asec| ((|#3| |#3|) "\\spad{asec(z)} returns the arc-secant of a Puiseux series \\spad{z}.")) (|acot| ((|#3| |#3|) "\\spad{acot(z)} returns the arc-cotangent of a Puiseux series \\spad{z}.")) (|atan| ((|#3| |#3|) "\\spad{atan(z)} returns the arc-tangent of a Puiseux series \\spad{z}.")) (|acos| ((|#3| |#3|) "\\spad{acos(z)} returns the arc-cosine of a Puiseux series \\spad{z}.")) (|asin| ((|#3| |#3|) "\\spad{asin(z)} returns the arc-sine of a Puiseux series \\spad{z}.")) (|csc| ((|#3| |#3|) "\\spad{csc(z)} returns the cosecant of a Puiseux series \\spad{z}.")) (|sec| ((|#3| |#3|) "\\spad{sec(z)} returns the secant of a Puiseux series \\spad{z}.")) (|cot| ((|#3| |#3|) "\\spad{cot(z)} returns the cotangent of a Puiseux series \\spad{z}.")) (|tan| ((|#3| |#3|) "\\spad{tan(z)} returns the tangent of a Puiseux series \\spad{z}.")) (|cos| ((|#3| |#3|) "\\spad{cos(z)} returns the cosine of a Puiseux series \\spad{z}.")) (|sin| ((|#3| |#3|) "\\spad{sin(z)} returns the sine of a Puiseux series \\spad{z}.")) (|log| ((|#3| |#3|) "\\spad{log(z)} returns the logarithm of a Puiseux series \\spad{z}.")) (|exp| ((|#3| |#3|) "\\spad{exp(z)} returns the exponential of a Puiseux series \\spad{z}.")) (** ((|#3| |#3| (|Fraction| (|Integer|))) "\\spad{z ** r} raises a Puiseaux series \\spad{z} to a rational power \\spad{r}")))
NIL
-((|HasCategory| |#1| (QUOTE (-339))))
-(-257)
+((|HasCategory| |#1| (QUOTE (-341))))
+(-259)
((|constructor| (NIL "This domains an expresion as elaborated by the interpreter. See Also:")) (|getOperands| (((|Union| (|List| $) "failed") $) "\\spad{getOperands(e)} returns the list of operands in `e',{} assuming it is a call form.")) (|getOperator| (((|Union| (|Symbol|) "failed") $) "\\spad{getOperator(e)} retrieves the operator being invoked in `e',{} when `e' is an expression.")) (|callForm?| (((|Boolean|) $) "\\spad{callForm?(e)} is \\spad{true} when `e' is a call expression.")) (|getIdentifier| (((|Union| (|Symbol|) "failed") $) "\\spad{getIdentifier(e)} retrieves the name of the variable `e'.")) (|variable?| (((|Boolean|) $) "\\spad{variable?(e)} returns \\spad{true} if `e' is a variable.")) (|getConstant| (((|Union| (|SExpression|) "failed") $) "\\spad{getConstant(e)} retrieves the constant value of `e'e.")) (|constant?| (((|Boolean|) $) "\\spad{constant?(e)} returns \\spad{true} if `e' is a constant.")) (|type| (((|ConstructorCall|) $) "\\spad{type(e)} returns the type of the expression as computed by the interpreter.")))
NIL
NIL
-(-258 A S)
+(-260 A S)
((|constructor| (NIL "An extensible aggregate is one which allows insertion and deletion of entries. These aggregates are models of lists and streams which are represented by linked structures so as to make insertion,{} deletion,{} and concatenation efficient. However,{} access to elements of these extensible aggregates is generally slow since access is made from the end. See \\spadtype{FlexibleArray} for an exception.")) (|removeDuplicates!| (($ $) "\\spad{removeDuplicates!(u)} destructively removes duplicates from \\spad{u}.")) (|select!| (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{select!(p,{}u)} destructively changes \\spad{u} by keeping only values \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})}.")) (|merge!| (($ $ $) "\\spad{merge!(u,{}v)} destructively merges \\spad{u} and \\spad{v} in ascending order.") (($ (|Mapping| (|Boolean|) |#2| |#2|) $ $) "\\spad{merge!(p,{}u,{}v)} destructively merges \\spad{u} and \\spad{v} using predicate \\spad{p}.")) (|insert!| (($ $ $ (|Integer|)) "\\spad{insert!(v,{}u,{}i)} destructively inserts aggregate \\spad{v} into \\spad{u} at position \\spad{i}.") (($ |#2| $ (|Integer|)) "\\spad{insert!(x,{}u,{}i)} destructively inserts \\spad{x} into \\spad{u} at position \\spad{i}.")) (|remove!| (($ |#2| $) "\\spad{remove!(x,{}u)} destructively removes all values \\spad{x} from \\spad{u}.") (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{remove!(p,{}u)} destructively removes all elements \\spad{x} of \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}.")) (|delete!| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{delete!(u,{}i..j)} destructively deletes elements \\spad{u}.\\spad{i} through \\spad{u}.\\spad{j}.") (($ $ (|Integer|)) "\\spad{delete!(u,{}i)} destructively deletes the \\axiom{\\spad{i}}th element of \\spad{u}.")) (|concat!| (($ $ $) "\\spad{concat!(u,{}v)} destructively appends \\spad{v} to the end of \\spad{u}. \\spad{v} is unchanged") (($ $ |#2|) "\\spad{concat!(u,{}x)} destructively adds element \\spad{x} to the end of \\spad{u}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-1016))))
-(-259 S)
+((|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-1018))))
+(-261 S)
((|constructor| (NIL "An extensible aggregate is one which allows insertion and deletion of entries. These aggregates are models of lists and streams which are represented by linked structures so as to make insertion,{} deletion,{} and concatenation efficient. However,{} access to elements of these extensible aggregates is generally slow since access is made from the end. See \\spadtype{FlexibleArray} for an exception.")) (|removeDuplicates!| (($ $) "\\spad{removeDuplicates!(u)} destructively removes duplicates from \\spad{u}.")) (|select!| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{select!(p,{}u)} destructively changes \\spad{u} by keeping only values \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})}.")) (|merge!| (($ $ $) "\\spad{merge!(u,{}v)} destructively merges \\spad{u} and \\spad{v} in ascending order.") (($ (|Mapping| (|Boolean|) |#1| |#1|) $ $) "\\spad{merge!(p,{}u,{}v)} destructively merges \\spad{u} and \\spad{v} using predicate \\spad{p}.")) (|insert!| (($ $ $ (|Integer|)) "\\spad{insert!(v,{}u,{}i)} destructively inserts aggregate \\spad{v} into \\spad{u} at position \\spad{i}.") (($ |#1| $ (|Integer|)) "\\spad{insert!(x,{}u,{}i)} destructively inserts \\spad{x} into \\spad{u} at position \\spad{i}.")) (|remove!| (($ |#1| $) "\\spad{remove!(x,{}u)} destructively removes all values \\spad{x} from \\spad{u}.") (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{remove!(p,{}u)} destructively removes all elements \\spad{x} of \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}.")) (|delete!| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{delete!(u,{}i..j)} destructively deletes elements \\spad{u}.\\spad{i} through \\spad{u}.\\spad{j}.") (($ $ (|Integer|)) "\\spad{delete!(u,{}i)} destructively deletes the \\axiom{\\spad{i}}th element of \\spad{u}.")) (|concat!| (($ $ $) "\\spad{concat!(u,{}v)} destructively appends \\spad{v} to the end of \\spad{u}. \\spad{v} is unchanged") (($ $ |#1|) "\\spad{concat!(u,{}x)} destructively adds element \\spad{x} to the end of \\spad{u}.")))
-((-4249 . T) (-2500 . T))
+((-4251 . T) (-2137 . T))
NIL
-(-260 S)
+(-262 S)
((|constructor| (NIL "Category for the elementary functions.")) (** (($ $ $) "\\spad{x**y} returns \\spad{x} to the power \\spad{y}.")) (|exp| (($ $) "\\spad{exp(x)} returns \\%\\spad{e} to the power \\spad{x}.")) (|log| (($ $) "\\spad{log(x)} returns the natural logarithm of \\spad{x}.")))
NIL
NIL
-(-261)
+(-263)
((|constructor| (NIL "Category for the elementary functions.")) (** (($ $ $) "\\spad{x**y} returns \\spad{x} to the power \\spad{y}.")) (|exp| (($ $) "\\spad{exp(x)} returns \\%\\spad{e} to the power \\spad{x}.")) (|log| (($ $) "\\spad{log(x)} returns the natural logarithm of \\spad{x}.")))
NIL
NIL
-(-262 |Coef| UTS)
+(-264 |Coef| UTS)
((|constructor| (NIL "The elliptic functions \\spad{sn},{} \\spad{sc} and \\spad{dn} are expanded as Taylor series.")) (|sncndn| (((|List| (|Stream| |#1|)) (|Stream| |#1|) |#1|) "\\spad{sncndn(s,{}c)} is used internally.")) (|dn| ((|#2| |#2| |#1|) "\\spad{dn(x,{}k)} expands the elliptic function \\spad{dn} as a Taylor \\indented{1}{series.}")) (|cn| ((|#2| |#2| |#1|) "\\spad{cn(x,{}k)} expands the elliptic function \\spad{cn} as a Taylor \\indented{1}{series.}")) (|sn| ((|#2| |#2| |#1|) "\\spad{sn(x,{}k)} expands the elliptic function \\spad{sn} as a Taylor \\indented{1}{series.}")))
NIL
NIL
-(-263 S |Index|)
+(-265 S |Index|)
((|constructor| (NIL "An eltable over domains \\spad{D} and \\spad{I} is a structure which can be viewed as a function from \\spad{D} to \\spad{I}. Examples of eltable structures range from data structures,{} \\spadignore{e.g.} those of type \\spadtype{List},{} to algebraic structures,{} \\spadignore{e.g.} \\spadtype{Polynomial}.")) (|elt| ((|#2| $ |#1|) "\\spad{elt(u,{}i)} (also written: \\spad{u} . \\spad{i}) returns the element of \\spad{u} indexed by \\spad{i}. Error: if \\spad{i} is not an index of \\spad{u}.")))
NIL
NIL
-(-264 S |Dom| |Im|)
+(-266 S |Dom| |Im|)
((|constructor| (NIL "An eltable aggregate is one which can be viewed as a function. For example,{} the list \\axiom{[1,{}7,{}4]} can applied to 0,{}1,{} and 2 respectively will return the integers 1,{}7,{} and 4; thus this list may be viewed as mapping 0 to 1,{} 1 to 7 and 2 to 4. In general,{} an aggregate can map members of a domain {\\em Dom} to an image domain {\\em Im}.")) (|qsetelt!| ((|#3| $ |#2| |#3|) "\\spad{qsetelt!(u,{}x,{}y)} sets the image of \\axiom{\\spad{x}} to be \\axiom{\\spad{y}} under \\axiom{\\spad{u}},{} without checking that \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}}. If such a check is required use the function \\axiom{setelt}.")) (|setelt| ((|#3| $ |#2| |#3|) "\\spad{setelt(u,{}x,{}y)} sets the image of \\spad{x} to be \\spad{y} under \\spad{u},{} assuming \\spad{x} is in the domain of \\spad{u}. Error: if \\spad{x} is not in the domain of \\spad{u}.")) (|qelt| ((|#3| $ |#2|) "\\spad{qelt(u,{} x)} applies \\axiom{\\spad{u}} to \\axiom{\\spad{x}} without checking whether \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}}. If \\axiom{\\spad{x}} is not in the domain of \\axiom{\\spad{u}} a memory-access violation may occur. If a check on whether \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}} is required,{} use the function \\axiom{elt}.")) (|elt| ((|#3| $ |#2| |#3|) "\\spad{elt(u,{} x,{} y)} applies \\spad{u} to \\spad{x} if \\spad{x} is in the domain of \\spad{u},{} and returns \\spad{y} otherwise. For example,{} if \\spad{u} is a polynomial in \\axiom{\\spad{x}} over the rationals,{} \\axiom{elt(\\spad{u},{}\\spad{n},{}0)} may define the coefficient of \\axiom{\\spad{x}} to the power \\spad{n},{} returning 0 when \\spad{n} is out of range.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4249)))
-(-265 |Dom| |Im|)
+((|HasAttribute| |#1| (QUOTE -4251)))
+(-267 |Dom| |Im|)
((|constructor| (NIL "An eltable aggregate is one which can be viewed as a function. For example,{} the list \\axiom{[1,{}7,{}4]} can applied to 0,{}1,{} and 2 respectively will return the integers 1,{}7,{} and 4; thus this list may be viewed as mapping 0 to 1,{} 1 to 7 and 2 to 4. In general,{} an aggregate can map members of a domain {\\em Dom} to an image domain {\\em Im}.")) (|qsetelt!| ((|#2| $ |#1| |#2|) "\\spad{qsetelt!(u,{}x,{}y)} sets the image of \\axiom{\\spad{x}} to be \\axiom{\\spad{y}} under \\axiom{\\spad{u}},{} without checking that \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}}. If such a check is required use the function \\axiom{setelt}.")) (|setelt| ((|#2| $ |#1| |#2|) "\\spad{setelt(u,{}x,{}y)} sets the image of \\spad{x} to be \\spad{y} under \\spad{u},{} assuming \\spad{x} is in the domain of \\spad{u}. Error: if \\spad{x} is not in the domain of \\spad{u}.")) (|qelt| ((|#2| $ |#1|) "\\spad{qelt(u,{} x)} applies \\axiom{\\spad{u}} to \\axiom{\\spad{x}} without checking whether \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}}. If \\axiom{\\spad{x}} is not in the domain of \\axiom{\\spad{u}} a memory-access violation may occur. If a check on whether \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}} is required,{} use the function \\axiom{elt}.")) (|elt| ((|#2| $ |#1| |#2|) "\\spad{elt(u,{} x,{} y)} applies \\spad{u} to \\spad{x} if \\spad{x} is in the domain of \\spad{u},{} and returns \\spad{y} otherwise. For example,{} if \\spad{u} is a polynomial in \\axiom{\\spad{x}} over the rationals,{} \\axiom{elt(\\spad{u},{}\\spad{n},{}0)} may define the coefficient of \\axiom{\\spad{x}} to the power \\spad{n},{} returning 0 when \\spad{n} is out of range.")))
NIL
NIL
-(-266 S R |Mod| -1345 -3123 |exactQuo|)
+(-268 S R |Mod| -3077 -2131 |exactQuo|)
((|constructor| (NIL "These domains are used for the factorization and gcds of univariate polynomials over the integers in order to work modulo different primes. See \\spadtype{ModularRing},{} \\spadtype{ModularField}")) (|elt| ((|#2| $ |#2|) "\\spad{elt(x,{}r)} or \\spad{x}.\\spad{r} \\undocumented")) (|inv| (($ $) "\\spad{inv(x)} \\undocumented")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(x)} \\undocumented")) (|exQuo| (((|Union| $ "failed") $ $) "\\spad{exQuo(x,{}y)} \\undocumented")) (|reduce| (($ |#2| |#3|) "\\spad{reduce(r,{}m)} \\undocumented")) (|coerce| ((|#2| $) "\\spad{coerce(x)} \\undocumented")) (|modulus| ((|#3| $) "\\spad{modulus(x)} \\undocumented")))
-((-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-267)
+(-269)
((|constructor| (NIL "Entire Rings (non-commutative Integral Domains),{} \\spadignore{i.e.} a ring not necessarily commutative which has no zero divisors. \\blankline")) (|noZeroDivisors| ((|attribute|) "if a product is zero then one of the factors must be zero.")))
-((-4241 . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-268)
+(-270)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: October 24,{} 2007 Date Last Modified: January 19,{} 2008. An `Environment' is a stack of scope.")) (|categoryFrame| (($) "the current category environment in the interpreter.")) (|currentEnv| (($) "the current normal environment in effect.")) (|setProperties!| (($ (|Symbol|) (|List| (|Property|)) $) "setBinding!(\\spad{n},{}props,{}\\spad{e}) set the list of properties of \\spad{`n'} to `props' in `e'.")) (|getProperties| (((|Union| (|List| (|Property|)) "failed") (|Symbol|) $) "getBinding(\\spad{n},{}\\spad{e}) returns the list of properties of \\spad{`n'} in \\spad{e}; otherwise `failed'.")) (|setProperty!| (($ (|Symbol|) (|Symbol|) (|SExpression|) $) "\\spad{setProperty!(n,{}p,{}v,{}e)} binds the property `(\\spad{p},{}\\spad{v})' to \\spad{`n'} in the topmost scope of `e'.")) (|getProperty| (((|Union| (|SExpression|) "failed") (|Symbol|) (|Symbol|) $) "\\spad{getProperty(n,{}p,{}e)} returns the value of property with name \\spad{`p'} for the symbol \\spad{`n'} in environment `e'. Otherwise,{} `failed'.")) (|scopes| (((|List| (|Scope|)) $) "\\spad{scopes(e)} returns the stack of scopes in environment \\spad{e}.")) (|empty| (($) "\\spad{empty()} constructs an empty environment")))
NIL
NIL
-(-269 R)
+(-271 R)
((|constructor| (NIL "This is a package for the exact computation of eigenvalues and eigenvectors. This package can be made to work for matrices with coefficients which are rational functions over a ring where we can factor polynomials. Rational eigenvalues are always explicitly computed while the non-rational ones are expressed in terms of their minimal polynomial.")) (|eigenvectors| (((|List| (|Record| (|:| |eigval| (|Union| (|Fraction| (|Polynomial| |#1|)) (|SuchThat| (|Symbol|) (|Polynomial| |#1|)))) (|:| |eigmult| (|NonNegativeInteger|)) (|:| |eigvec| (|List| (|Matrix| (|Fraction| (|Polynomial| |#1|))))))) (|Matrix| (|Fraction| (|Polynomial| |#1|)))) "\\spad{eigenvectors(m)} returns the eigenvalues and eigenvectors for the matrix \\spad{m}. The rational eigenvalues and the correspondent eigenvectors are explicitely computed,{} while the non rational ones are given via their minimal polynomial and the corresponding eigenvectors are expressed in terms of a \"generic\" root of such a polynomial.")) (|generalizedEigenvectors| (((|List| (|Record| (|:| |eigval| (|Union| (|Fraction| (|Polynomial| |#1|)) (|SuchThat| (|Symbol|) (|Polynomial| |#1|)))) (|:| |geneigvec| (|List| (|Matrix| (|Fraction| (|Polynomial| |#1|))))))) (|Matrix| (|Fraction| (|Polynomial| |#1|)))) "\\spad{generalizedEigenvectors(m)} returns the generalized eigenvectors of the matrix \\spad{m}.")) (|generalizedEigenvector| (((|List| (|Matrix| (|Fraction| (|Polynomial| |#1|)))) (|Record| (|:| |eigval| (|Union| (|Fraction| (|Polynomial| |#1|)) (|SuchThat| (|Symbol|) (|Polynomial| |#1|)))) (|:| |eigmult| (|NonNegativeInteger|)) (|:| |eigvec| (|List| (|Matrix| (|Fraction| (|Polynomial| |#1|)))))) (|Matrix| (|Fraction| (|Polynomial| |#1|)))) "\\spad{generalizedEigenvector(eigen,{}m)} returns the generalized eigenvectors of the matrix relative to the eigenvalue \\spad{eigen},{} as returned by the function eigenvectors.") (((|List| (|Matrix| (|Fraction| (|Polynomial| |#1|)))) (|Union| (|Fraction| (|Polynomial| |#1|)) (|SuchThat| (|Symbol|) (|Polynomial| |#1|))) (|Matrix| (|Fraction| (|Polynomial| |#1|))) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{generalizedEigenvector(alpha,{}m,{}k,{}g)} returns the generalized eigenvectors of the matrix relative to the eigenvalue \\spad{alpha}. The integers \\spad{k} and \\spad{g} are respectively the algebraic and the geometric multiplicity of tye eigenvalue \\spad{alpha}. \\spad{alpha} can be either rational or not. In the seconda case apha is the minimal polynomial of the eigenvalue.")) (|eigenvector| (((|List| (|Matrix| (|Fraction| (|Polynomial| |#1|)))) (|Union| (|Fraction| (|Polynomial| |#1|)) (|SuchThat| (|Symbol|) (|Polynomial| |#1|))) (|Matrix| (|Fraction| (|Polynomial| |#1|)))) "\\spad{eigenvector(eigval,{}m)} returns the eigenvectors belonging to the eigenvalue \\spad{eigval} for the matrix \\spad{m}.")) (|eigenvalues| (((|List| (|Union| (|Fraction| (|Polynomial| |#1|)) (|SuchThat| (|Symbol|) (|Polynomial| |#1|)))) (|Matrix| (|Fraction| (|Polynomial| |#1|)))) "\\spad{eigenvalues(m)} returns the eigenvalues of the matrix \\spad{m} which are expressible as rational functions over the rational numbers.")) (|characteristicPolynomial| (((|Polynomial| |#1|) (|Matrix| (|Fraction| (|Polynomial| |#1|)))) "\\spad{characteristicPolynomial(m)} returns the characteristicPolynomial of the matrix \\spad{m} using a new generated symbol symbol as the main variable.") (((|Polynomial| |#1|) (|Matrix| (|Fraction| (|Polynomial| |#1|))) (|Symbol|)) "\\spad{characteristicPolynomial(m,{}var)} returns the characteristicPolynomial of the matrix \\spad{m} using the symbol \\spad{var} as the main variable.")))
NIL
NIL
-(-270 S R)
+(-272 S R)
((|constructor| (NIL "This package provides operations for mapping the sides of equations.")) (|map| (((|Equation| |#2|) (|Mapping| |#2| |#1|) (|Equation| |#1|)) "\\spad{map(f,{}eq)} returns an equation where \\spad{f} is applied to the sides of \\spad{eq}")))
NIL
NIL
-(-271 S)
+(-273 S)
((|constructor| (NIL "Equations as mathematical objects. All properties of the basis domain,{} \\spadignore{e.g.} being an abelian group are carried over the equation domain,{} by performing the structural operations on the left and on the right hand side.")) (|subst| (($ $ $) "\\spad{subst(eq1,{}eq2)} substitutes \\spad{eq2} into both sides of \\spad{eq1} the \\spad{lhs} of \\spad{eq2} should be a kernel")) (|inv| (($ $) "\\spad{inv(x)} returns the multiplicative inverse of \\spad{x}.")) (/ (($ $ $) "\\spad{e1/e2} produces a new equation by dividing the left and right hand sides of equations e1 and e2.")) (|factorAndSplit| (((|List| $) $) "\\spad{factorAndSplit(eq)} make the right hand side 0 and factors the new left hand side. Each factor is equated to 0 and put into the resulting list without repetitions.")) (|rightOne| (((|Union| $ "failed") $) "\\spad{rightOne(eq)} divides by the right hand side.") (((|Union| $ "failed") $) "\\spad{rightOne(eq)} divides by the right hand side,{} if possible.")) (|leftOne| (((|Union| $ "failed") $) "\\spad{leftOne(eq)} divides by the left hand side.") (((|Union| $ "failed") $) "\\spad{leftOne(eq)} divides by the left hand side,{} if possible.")) (* (($ $ |#1|) "\\spad{eqn*x} produces a new equation by multiplying both sides of equation eqn by \\spad{x}.") (($ |#1| $) "\\spad{x*eqn} produces a new equation by multiplying both sides of equation eqn by \\spad{x}.")) (- (($ $ |#1|) "\\spad{eqn-x} produces a new equation by subtracting \\spad{x} from both sides of equation eqn.") (($ |#1| $) "\\spad{x-eqn} produces a new equation by subtracting both sides of equation eqn from \\spad{x}.")) (|rightZero| (($ $) "\\spad{rightZero(eq)} subtracts the right hand side.")) (|leftZero| (($ $) "\\spad{leftZero(eq)} subtracts the left hand side.")) (+ (($ $ |#1|) "\\spad{eqn+x} produces a new equation by adding \\spad{x} to both sides of equation eqn.") (($ |#1| $) "\\spad{x+eqn} produces a new equation by adding \\spad{x} to both sides of equation eqn.")) (|eval| (($ $ (|List| $)) "\\spad{eval(eqn,{} [x1=v1,{} ... xn=vn])} replaces \\spad{xi} by \\spad{vi} in equation \\spad{eqn}.") (($ $ $) "\\spad{eval(eqn,{} x=f)} replaces \\spad{x} by \\spad{f} in equation \\spad{eqn}.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,{}eqn)} constructs a new equation by applying \\spad{f} to both sides of \\spad{eqn}.")) (|rhs| ((|#1| $) "\\spad{rhs(eqn)} returns the right hand side of equation \\spad{eqn}.")) (|lhs| ((|#1| $) "\\spad{lhs(eqn)} returns the left hand side of equation \\spad{eqn}.")) (|swap| (($ $) "\\spad{swap(eq)} interchanges left and right hand side of equation \\spad{eq}.")) (|equation| (($ |#1| |#1|) "\\spad{equation(a,{}b)} creates an equation.")) (= (($ |#1| |#1|) "\\spad{a=b} creates an equation.")))
-((-4245 -3255 (|has| |#1| (-973)) (|has| |#1| (-448))) (-4242 |has| |#1| (-973)) (-4243 |has| |#1| (-973)))
-((|HasCategory| |#1| (QUOTE (-339))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-973)))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-973)))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-973)))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-973)))) (-3255 (|HasCategory| |#1| (QUOTE (-448))) (|HasCategory| |#1| (QUOTE (-666)))) (|HasCategory| |#1| (QUOTE (-448))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-448))) (|HasCategory| |#1| (QUOTE (-666))) (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (QUOTE (-1028))) (|HasCategory| |#1| (QUOTE (-1016)))) (-3255 (|HasCategory| |#1| (QUOTE (-448))) (|HasCategory| |#1| (QUOTE (-666))) (|HasCategory| |#1| (QUOTE (-1028)))) (|HasCategory| |#1| (LIST (QUOTE -484) (QUOTE (-1087)) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-279))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-448)))) (-3255 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-666)))) (-3255 (|HasCategory| |#1| (QUOTE (-448))) (|HasCategory| |#1| (QUOTE (-973)))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-666))) (|HasCategory| |#1| (QUOTE (-1028))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))))
-(-272 |Key| |Entry|)
+((-4247 -3321 (|has| |#1| (-975)) (|has| |#1| (-450))) (-4244 |has| |#1| (-975)) (-4245 |has| |#1| (-975)))
+((|HasCategory| |#1| (QUOTE (-341))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-975)))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-975))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-975)))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-975)))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-975)))) (-3321 (|HasCategory| |#1| (QUOTE (-450))) (|HasCategory| |#1| (QUOTE (-668)))) (|HasCategory| |#1| (QUOTE (-450))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-450))) (|HasCategory| |#1| (QUOTE (-668))) (|HasCategory| |#1| (QUOTE (-975))) (|HasCategory| |#1| (QUOTE (-1030))) (|HasCategory| |#1| (QUOTE (-1018)))) (-3321 (|HasCategory| |#1| (QUOTE (-450))) (|HasCategory| |#1| (QUOTE (-668))) (|HasCategory| |#1| (QUOTE (-1030)))) (|HasCategory| |#1| (LIST (QUOTE -486) (QUOTE (-1089)) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-281))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-450)))) (-3321 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-668)))) (-3321 (|HasCategory| |#1| (QUOTE (-450))) (|HasCategory| |#1| (QUOTE (-975)))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-668))) (|HasCategory| |#1| (QUOTE (-1030))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))))
+(-274 |Key| |Entry|)
((|constructor| (NIL "This domain provides tables where the keys are compared using \\spadfun{eq?}. Thus keys are considered equal only if they are the same instance of a structure.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -286) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2402) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2746) (|devaluate| |#2|)))))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| |#2| (QUOTE (-1016)))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -564) (QUOTE (-499)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-1016))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-273)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -288) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2019) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1221) (|devaluate| |#2|)))))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1018)))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -566) (QUOTE (-501)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-1018))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-275)
((|constructor| (NIL "ErrorFunctions implements error functions callable from the system interpreter. Typically,{} these functions would be called in user functions. The simple forms of the functions take one argument which is either a string (an error message) or a list of strings which all together make up a message. The list can contain formatting codes (see below). The more sophisticated versions takes two arguments where the first argument is the name of the function from which the error was invoked and the second argument is either a string or a list of strings,{} as above. When you use the one argument version in an interpreter function,{} the system will automatically insert the name of the function as the new first argument. Thus in the user interpreter function \\indented{2}{\\spad{f x == if x < 0 then error \"negative argument\" else x}} the call to error will actually be of the form \\indented{2}{\\spad{error(\"f\",{}\"negative argument\")}} because the interpreter will have created a new first argument. \\blankline Formatting codes: error messages may contain the following formatting codes (they should either start or end a string or else have blanks around them): \\indented{3}{\\spad{\\%l}\\space{6}start a new line} \\indented{3}{\\spad{\\%b}\\space{6}start printing in a bold font (where available)} \\indented{3}{\\spad{\\%d}\\space{6}stop\\space{2}printing in a bold font (where available)} \\indented{3}{\\spad{ \\%ceon}\\space{2}start centering message lines} \\indented{3}{\\spad{\\%ceoff}\\space{2}stop\\space{2}centering message lines} \\indented{3}{\\spad{\\%rjon}\\space{3}start displaying lines \"ragged left\"} \\indented{3}{\\spad{\\%rjoff}\\space{2}stop\\space{2}displaying lines \"ragged left\"} \\indented{3}{\\spad{\\%i}\\space{6}indent\\space{3}following lines 3 additional spaces} \\indented{3}{\\spad{\\%u}\\space{6}unindent following lines 3 additional spaces} \\indented{3}{\\spad{\\%xN}\\space{5}insert \\spad{N} blanks (eg,{} \\spad{\\%x10} inserts 10 blanks)} \\blankline")) (|error| (((|Exit|) (|String|) (|List| (|String|))) "\\spad{error(nam,{}lmsg)} displays error messages \\spad{lmsg} preceded by a message containing the name \\spad{nam} of the function in which the error is contained.") (((|Exit|) (|String|) (|String|)) "\\spad{error(nam,{}msg)} displays error message \\spad{msg} preceded by a message containing the name \\spad{nam} of the function in which the error is contained.") (((|Exit|) (|List| (|String|))) "\\spad{error(lmsg)} displays error message \\spad{lmsg} and terminates.") (((|Exit|) (|String|)) "\\spad{error(msg)} displays error message \\spad{msg} and terminates.")))
NIL
NIL
-(-274 -3894 S)
+(-276 -3576 S)
((|constructor| (NIL "This package allows a map from any expression space into any object to be lifted to a kernel over the expression set,{} using a given property of the operator of the kernel.")) (|map| ((|#2| (|Mapping| |#2| |#1|) (|String|) (|Kernel| |#1|)) "\\spad{map(f,{} p,{} k)} uses the property \\spad{p} of the operator of \\spad{k},{} in order to lift \\spad{f} and apply it to \\spad{k}.")))
NIL
NIL
-(-275 E -3894)
+(-277 E -3576)
((|constructor| (NIL "This package allows a mapping \\spad{E} \\spad{->} \\spad{F} to be lifted to a kernel over \\spad{E}; This lifting can fail if the operator of the kernel cannot be applied in \\spad{F}; Do not use this package with \\spad{E} = \\spad{F},{} since this may drop some properties of the operators.")) (|map| ((|#2| (|Mapping| |#2| |#1|) (|Kernel| |#1|)) "\\spad{map(f,{} k)} returns \\spad{g = op(f(a1),{}...,{}f(an))} where \\spad{k = op(a1,{}...,{}an)}.")))
NIL
NIL
-(-276 A B)
+(-278 A B)
((|constructor| (NIL "ExpertSystemContinuityPackage1 exports a function to check range inclusion")) (|in?| (((|Boolean|) (|DoubleFloat|)) "\\spad{in?(p)} tests whether point \\spad{p} is internal to the range [\\spad{A..B}]")))
NIL
NIL
-(-277)
+(-279)
((|constructor| (NIL "ExpertSystemContinuityPackage is a package of functions for the use of domains belonging to the category \\axiomType{NumericalIntegration}.")) (|sdf2lst| (((|List| (|String|)) (|Stream| (|DoubleFloat|))) "\\spad{sdf2lst(ln)} coerces a Stream of \\axiomType{DoubleFloat} to \\axiomType{List}(\\axiomType{String})")) (|ldf2lst| (((|List| (|String|)) (|List| (|DoubleFloat|))) "\\spad{ldf2lst(ln)} coerces a List of \\axiomType{DoubleFloat} to \\axiomType{List}(\\axiomType{String})")) (|df2st| (((|String|) (|DoubleFloat|)) "\\spad{df2st(n)} coerces a \\axiomType{DoubleFloat} to \\axiomType{String}")) (|polynomialZeros| (((|List| (|DoubleFloat|)) (|Polynomial| (|Fraction| (|Integer|))) (|Symbol|) (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) "\\spad{polynomialZeros(fn,{}var,{}range)} calculates the real zeros of the polynomial which are contained in the given interval. It returns a list of points (\\axiomType{Doublefloat}) for which the univariate polynomial \\spad{fn} is zero.")) (|singularitiesOf| (((|Stream| (|DoubleFloat|)) (|Vector| (|Expression| (|DoubleFloat|))) (|List| (|Symbol|)) (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) "\\spad{singularitiesOf(v,{}vars,{}range)} returns a list of points (\\axiomType{Doublefloat}) at which a NAG fortran version of \\spad{v} will most likely produce an error. This includes those points which evaluate to 0/0.") (((|Stream| (|DoubleFloat|)) (|Expression| (|DoubleFloat|)) (|List| (|Symbol|)) (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) "\\spad{singularitiesOf(e,{}vars,{}range)} returns a list of points (\\axiomType{Doublefloat}) at which a NAG fortran version of \\spad{e} will most likely produce an error. This includes those points which evaluate to 0/0.")) (|zerosOf| (((|Stream| (|DoubleFloat|)) (|Expression| (|DoubleFloat|)) (|List| (|Symbol|)) (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) "\\spad{zerosOf(e,{}vars,{}range)} returns a list of points (\\axiomType{Doublefloat}) at which a NAG fortran version of \\spad{e} will most likely produce an error.")) (|problemPoints| (((|List| (|DoubleFloat|)) (|Expression| (|DoubleFloat|)) (|Symbol|) (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) "\\spad{problemPoints(f,{}var,{}range)} returns a list of possible problem points by looking at the zeros of the denominator of the function \\spad{f} if it can be retracted to \\axiomType{Polynomial(DoubleFloat)}.")) (|functionIsFracPolynomial?| (((|Boolean|) (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{functionIsFracPolynomial?(args)} tests whether the function can be retracted to \\axiomType{Fraction(Polynomial(DoubleFloat))}")) (|gethi| (((|DoubleFloat|) (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) "\\spad{gethi(u)} gets the \\axiomType{DoubleFloat} equivalent of the second endpoint of the range \\axiom{\\spad{u}}")) (|getlo| (((|DoubleFloat|) (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) "\\spad{getlo(u)} gets the \\axiomType{DoubleFloat} equivalent of the first endpoint of the range \\axiom{\\spad{u}}")))
NIL
NIL
-(-278 S)
+(-280 S)
((|constructor| (NIL "An expression space is a set which is closed under certain operators.")) (|odd?| (((|Boolean|) $) "\\spad{odd? x} is \\spad{true} if \\spad{x} is an odd integer.")) (|even?| (((|Boolean|) $) "\\spad{even? x} is \\spad{true} if \\spad{x} is an even integer.")) (|definingPolynomial| (($ $) "\\spad{definingPolynomial(x)} returns an expression \\spad{p} such that \\spad{p(x) = 0}.")) (|minPoly| (((|SparseUnivariatePolynomial| $) (|Kernel| $)) "\\spad{minPoly(k)} returns \\spad{p} such that \\spad{p(k) = 0}.")) (|eval| (($ $ (|BasicOperator|) (|Mapping| $ $)) "\\spad{eval(x,{} s,{} f)} replaces every \\spad{s(a)} in \\spad{x} by \\spad{f(a)} for any \\spad{a}.") (($ $ (|BasicOperator|) (|Mapping| $ (|List| $))) "\\spad{eval(x,{} s,{} f)} replaces every \\spad{s(a1,{}..,{}am)} in \\spad{x} by \\spad{f(a1,{}..,{}am)} for any \\spad{a1},{}...,{}\\spad{am}.") (($ $ (|List| (|BasicOperator|)) (|List| (|Mapping| $ (|List| $)))) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [f1,{}...,{}fm])} replaces every \\spad{\\spad{si}(a1,{}...,{}an)} in \\spad{x} by \\spad{\\spad{fi}(a1,{}...,{}an)} for any \\spad{a1},{}...,{}\\spad{an}.") (($ $ (|List| (|BasicOperator|)) (|List| (|Mapping| $ $))) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [f1,{}...,{}fm])} replaces every \\spad{\\spad{si}(a)} in \\spad{x} by \\spad{\\spad{fi}(a)} for any \\spad{a}.") (($ $ (|Symbol|) (|Mapping| $ $)) "\\spad{eval(x,{} s,{} f)} replaces every \\spad{s(a)} in \\spad{x} by \\spad{f(a)} for any \\spad{a}.") (($ $ (|Symbol|) (|Mapping| $ (|List| $))) "\\spad{eval(x,{} s,{} f)} replaces every \\spad{s(a1,{}..,{}am)} in \\spad{x} by \\spad{f(a1,{}..,{}am)} for any \\spad{a1},{}...,{}\\spad{am}.") (($ $ (|List| (|Symbol|)) (|List| (|Mapping| $ (|List| $)))) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [f1,{}...,{}fm])} replaces every \\spad{\\spad{si}(a1,{}...,{}an)} in \\spad{x} by \\spad{\\spad{fi}(a1,{}...,{}an)} for any \\spad{a1},{}...,{}\\spad{an}.") (($ $ (|List| (|Symbol|)) (|List| (|Mapping| $ $))) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [f1,{}...,{}fm])} replaces every \\spad{\\spad{si}(a)} in \\spad{x} by \\spad{\\spad{fi}(a)} for any \\spad{a}.")) (|freeOf?| (((|Boolean|) $ (|Symbol|)) "\\spad{freeOf?(x,{} s)} tests if \\spad{x} does not contain any operator whose name is \\spad{s}.") (((|Boolean|) $ $) "\\spad{freeOf?(x,{} y)} tests if \\spad{x} does not contain any occurrence of \\spad{y},{} where \\spad{y} is a single kernel.")) (|map| (($ (|Mapping| $ $) (|Kernel| $)) "\\spad{map(f,{} k)} returns \\spad{op(f(x1),{}...,{}f(xn))} where \\spad{k = op(x1,{}...,{}xn)}.")) (|kernel| (($ (|BasicOperator|) (|List| $)) "\\spad{kernel(op,{} [f1,{}...,{}fn])} constructs \\spad{op(f1,{}...,{}fn)} without evaluating it.") (($ (|BasicOperator|) $) "\\spad{kernel(op,{} x)} constructs \\spad{op}(\\spad{x}) without evaluating it.")) (|is?| (((|Boolean|) $ (|Symbol|)) "\\spad{is?(x,{} s)} tests if \\spad{x} is a kernel and is the name of its operator is \\spad{s}.") (((|Boolean|) $ (|BasicOperator|)) "\\spad{is?(x,{} op)} tests if \\spad{x} is a kernel and is its operator is op.")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(op)} tests if \\% accepts \\spad{op} as applicable to its elements.")) (|operator| (((|BasicOperator|) (|BasicOperator|)) "\\spad{operator(op)} returns a copy of \\spad{op} with the domain-dependent properties appropriate for \\%.")) (|operators| (((|List| (|BasicOperator|)) $) "\\spad{operators(f)} returns all the basic operators appearing in \\spad{f},{} no matter what their levels are.")) (|tower| (((|List| (|Kernel| $)) $) "\\spad{tower(f)} returns all the kernels appearing in \\spad{f},{} no matter what their levels are.")) (|kernels| (((|List| (|Kernel| $)) $) "\\spad{kernels(f)} returns the list of all the top-level kernels appearing in \\spad{f},{} but not the ones appearing in the arguments of the top-level kernels.")) (|mainKernel| (((|Union| (|Kernel| $) "failed") $) "\\spad{mainKernel(f)} returns a kernel of \\spad{f} with maximum nesting level,{} or if \\spad{f} has no kernels (\\spadignore{i.e.} \\spad{f} is a constant).")) (|height| (((|NonNegativeInteger|) $) "\\spad{height(f)} returns the highest nesting level appearing in \\spad{f}. Constants have height 0. Symbols have height 1. For any operator op and expressions \\spad{f1},{}...,{}\\spad{fn},{} \\spad{op(f1,{}...,{}fn)} has height equal to \\spad{1 + max(height(f1),{}...,{}height(fn))}.")) (|distribute| (($ $ $) "\\spad{distribute(f,{} g)} expands all the kernels in \\spad{f} that contain \\spad{g} in their arguments and that are formally enclosed by a \\spadfunFrom{box}{ExpressionSpace} or a \\spadfunFrom{paren}{ExpressionSpace} expression.") (($ $) "\\spad{distribute(f)} expands all the kernels in \\spad{f} that are formally enclosed by a \\spadfunFrom{box}{ExpressionSpace} or \\spadfunFrom{paren}{ExpressionSpace} expression.")) (|paren| (($ (|List| $)) "\\spad{paren([f1,{}...,{}fn])} returns \\spad{(f1,{}...,{}fn)}. This prevents the \\spad{fi} from being evaluated when operators are applied to them,{} and makes them applicable to a unary operator. For example,{} \\spad{atan(paren [x,{} 2])} returns the formal kernel \\spad{atan((x,{} 2))}.") (($ $) "\\spad{paren(f)} returns (\\spad{f}). This prevents \\spad{f} from being evaluated when operators are applied to it. For example,{} \\spad{log(1)} returns 0,{} but \\spad{log(paren 1)} returns the formal kernel log((1)).")) (|box| (($ (|List| $)) "\\spad{box([f1,{}...,{}fn])} returns \\spad{(f1,{}...,{}fn)} with a 'box' around them that prevents the \\spad{fi} from being evaluated when operators are applied to them,{} and makes them applicable to a unary operator. For example,{} \\spad{atan(box [x,{} 2])} returns the formal kernel \\spad{atan(x,{} 2)}.") (($ $) "\\spad{box(f)} returns \\spad{f} with a 'box' around it that prevents \\spad{f} from being evaluated when operators are applied to it. For example,{} \\spad{log(1)} returns 0,{} but \\spad{log(box 1)} returns the formal kernel log(1).")) (|subst| (($ $ (|List| (|Kernel| $)) (|List| $)) "\\spad{subst(f,{} [k1...,{}kn],{} [g1,{}...,{}gn])} replaces the kernels \\spad{k1},{}...,{}\\spad{kn} by \\spad{g1},{}...,{}\\spad{gn} formally in \\spad{f}.") (($ $ (|List| (|Equation| $))) "\\spad{subst(f,{} [k1 = g1,{}...,{}kn = gn])} replaces the kernels \\spad{k1},{}...,{}\\spad{kn} by \\spad{g1},{}...,{}\\spad{gn} formally in \\spad{f}.") (($ $ (|Equation| $)) "\\spad{subst(f,{} k = g)} replaces the kernel \\spad{k} by \\spad{g} formally in \\spad{f}.")) (|elt| (($ (|BasicOperator|) (|List| $)) "\\spad{elt(op,{}[x1,{}...,{}xn])} or \\spad{op}([\\spad{x1},{}...,{}\\spad{xn}]) applies the \\spad{n}-ary operator \\spad{op} to \\spad{x1},{}...,{}\\spad{xn}.") (($ (|BasicOperator|) $ $ $ $) "\\spad{elt(op,{}x,{}y,{}z,{}t)} or \\spad{op}(\\spad{x},{} \\spad{y},{} \\spad{z},{} \\spad{t}) applies the 4-ary operator \\spad{op} to \\spad{x},{} \\spad{y},{} \\spad{z} and \\spad{t}.") (($ (|BasicOperator|) $ $ $) "\\spad{elt(op,{}x,{}y,{}z)} or \\spad{op}(\\spad{x},{} \\spad{y},{} \\spad{z}) applies the ternary operator \\spad{op} to \\spad{x},{} \\spad{y} and \\spad{z}.") (($ (|BasicOperator|) $ $) "\\spad{elt(op,{}x,{}y)} or \\spad{op}(\\spad{x},{} \\spad{y}) applies the binary operator \\spad{op} to \\spad{x} and \\spad{y}.") (($ (|BasicOperator|) $) "\\spad{elt(op,{}x)} or \\spad{op}(\\spad{x}) applies the unary operator \\spad{op} to \\spad{x}.")))
NIL
-((|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-973))))
-(-279)
+((|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-975))))
+(-281)
((|constructor| (NIL "An expression space is a set which is closed under certain operators.")) (|odd?| (((|Boolean|) $) "\\spad{odd? x} is \\spad{true} if \\spad{x} is an odd integer.")) (|even?| (((|Boolean|) $) "\\spad{even? x} is \\spad{true} if \\spad{x} is an even integer.")) (|definingPolynomial| (($ $) "\\spad{definingPolynomial(x)} returns an expression \\spad{p} such that \\spad{p(x) = 0}.")) (|minPoly| (((|SparseUnivariatePolynomial| $) (|Kernel| $)) "\\spad{minPoly(k)} returns \\spad{p} such that \\spad{p(k) = 0}.")) (|eval| (($ $ (|BasicOperator|) (|Mapping| $ $)) "\\spad{eval(x,{} s,{} f)} replaces every \\spad{s(a)} in \\spad{x} by \\spad{f(a)} for any \\spad{a}.") (($ $ (|BasicOperator|) (|Mapping| $ (|List| $))) "\\spad{eval(x,{} s,{} f)} replaces every \\spad{s(a1,{}..,{}am)} in \\spad{x} by \\spad{f(a1,{}..,{}am)} for any \\spad{a1},{}...,{}\\spad{am}.") (($ $ (|List| (|BasicOperator|)) (|List| (|Mapping| $ (|List| $)))) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [f1,{}...,{}fm])} replaces every \\spad{\\spad{si}(a1,{}...,{}an)} in \\spad{x} by \\spad{\\spad{fi}(a1,{}...,{}an)} for any \\spad{a1},{}...,{}\\spad{an}.") (($ $ (|List| (|BasicOperator|)) (|List| (|Mapping| $ $))) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [f1,{}...,{}fm])} replaces every \\spad{\\spad{si}(a)} in \\spad{x} by \\spad{\\spad{fi}(a)} for any \\spad{a}.") (($ $ (|Symbol|) (|Mapping| $ $)) "\\spad{eval(x,{} s,{} f)} replaces every \\spad{s(a)} in \\spad{x} by \\spad{f(a)} for any \\spad{a}.") (($ $ (|Symbol|) (|Mapping| $ (|List| $))) "\\spad{eval(x,{} s,{} f)} replaces every \\spad{s(a1,{}..,{}am)} in \\spad{x} by \\spad{f(a1,{}..,{}am)} for any \\spad{a1},{}...,{}\\spad{am}.") (($ $ (|List| (|Symbol|)) (|List| (|Mapping| $ (|List| $)))) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [f1,{}...,{}fm])} replaces every \\spad{\\spad{si}(a1,{}...,{}an)} in \\spad{x} by \\spad{\\spad{fi}(a1,{}...,{}an)} for any \\spad{a1},{}...,{}\\spad{an}.") (($ $ (|List| (|Symbol|)) (|List| (|Mapping| $ $))) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [f1,{}...,{}fm])} replaces every \\spad{\\spad{si}(a)} in \\spad{x} by \\spad{\\spad{fi}(a)} for any \\spad{a}.")) (|freeOf?| (((|Boolean|) $ (|Symbol|)) "\\spad{freeOf?(x,{} s)} tests if \\spad{x} does not contain any operator whose name is \\spad{s}.") (((|Boolean|) $ $) "\\spad{freeOf?(x,{} y)} tests if \\spad{x} does not contain any occurrence of \\spad{y},{} where \\spad{y} is a single kernel.")) (|map| (($ (|Mapping| $ $) (|Kernel| $)) "\\spad{map(f,{} k)} returns \\spad{op(f(x1),{}...,{}f(xn))} where \\spad{k = op(x1,{}...,{}xn)}.")) (|kernel| (($ (|BasicOperator|) (|List| $)) "\\spad{kernel(op,{} [f1,{}...,{}fn])} constructs \\spad{op(f1,{}...,{}fn)} without evaluating it.") (($ (|BasicOperator|) $) "\\spad{kernel(op,{} x)} constructs \\spad{op}(\\spad{x}) without evaluating it.")) (|is?| (((|Boolean|) $ (|Symbol|)) "\\spad{is?(x,{} s)} tests if \\spad{x} is a kernel and is the name of its operator is \\spad{s}.") (((|Boolean|) $ (|BasicOperator|)) "\\spad{is?(x,{} op)} tests if \\spad{x} is a kernel and is its operator is op.")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(op)} tests if \\% accepts \\spad{op} as applicable to its elements.")) (|operator| (((|BasicOperator|) (|BasicOperator|)) "\\spad{operator(op)} returns a copy of \\spad{op} with the domain-dependent properties appropriate for \\%.")) (|operators| (((|List| (|BasicOperator|)) $) "\\spad{operators(f)} returns all the basic operators appearing in \\spad{f},{} no matter what their levels are.")) (|tower| (((|List| (|Kernel| $)) $) "\\spad{tower(f)} returns all the kernels appearing in \\spad{f},{} no matter what their levels are.")) (|kernels| (((|List| (|Kernel| $)) $) "\\spad{kernels(f)} returns the list of all the top-level kernels appearing in \\spad{f},{} but not the ones appearing in the arguments of the top-level kernels.")) (|mainKernel| (((|Union| (|Kernel| $) "failed") $) "\\spad{mainKernel(f)} returns a kernel of \\spad{f} with maximum nesting level,{} or if \\spad{f} has no kernels (\\spadignore{i.e.} \\spad{f} is a constant).")) (|height| (((|NonNegativeInteger|) $) "\\spad{height(f)} returns the highest nesting level appearing in \\spad{f}. Constants have height 0. Symbols have height 1. For any operator op and expressions \\spad{f1},{}...,{}\\spad{fn},{} \\spad{op(f1,{}...,{}fn)} has height equal to \\spad{1 + max(height(f1),{}...,{}height(fn))}.")) (|distribute| (($ $ $) "\\spad{distribute(f,{} g)} expands all the kernels in \\spad{f} that contain \\spad{g} in their arguments and that are formally enclosed by a \\spadfunFrom{box}{ExpressionSpace} or a \\spadfunFrom{paren}{ExpressionSpace} expression.") (($ $) "\\spad{distribute(f)} expands all the kernels in \\spad{f} that are formally enclosed by a \\spadfunFrom{box}{ExpressionSpace} or \\spadfunFrom{paren}{ExpressionSpace} expression.")) (|paren| (($ (|List| $)) "\\spad{paren([f1,{}...,{}fn])} returns \\spad{(f1,{}...,{}fn)}. This prevents the \\spad{fi} from being evaluated when operators are applied to them,{} and makes them applicable to a unary operator. For example,{} \\spad{atan(paren [x,{} 2])} returns the formal kernel \\spad{atan((x,{} 2))}.") (($ $) "\\spad{paren(f)} returns (\\spad{f}). This prevents \\spad{f} from being evaluated when operators are applied to it. For example,{} \\spad{log(1)} returns 0,{} but \\spad{log(paren 1)} returns the formal kernel log((1)).")) (|box| (($ (|List| $)) "\\spad{box([f1,{}...,{}fn])} returns \\spad{(f1,{}...,{}fn)} with a 'box' around them that prevents the \\spad{fi} from being evaluated when operators are applied to them,{} and makes them applicable to a unary operator. For example,{} \\spad{atan(box [x,{} 2])} returns the formal kernel \\spad{atan(x,{} 2)}.") (($ $) "\\spad{box(f)} returns \\spad{f} with a 'box' around it that prevents \\spad{f} from being evaluated when operators are applied to it. For example,{} \\spad{log(1)} returns 0,{} but \\spad{log(box 1)} returns the formal kernel log(1).")) (|subst| (($ $ (|List| (|Kernel| $)) (|List| $)) "\\spad{subst(f,{} [k1...,{}kn],{} [g1,{}...,{}gn])} replaces the kernels \\spad{k1},{}...,{}\\spad{kn} by \\spad{g1},{}...,{}\\spad{gn} formally in \\spad{f}.") (($ $ (|List| (|Equation| $))) "\\spad{subst(f,{} [k1 = g1,{}...,{}kn = gn])} replaces the kernels \\spad{k1},{}...,{}\\spad{kn} by \\spad{g1},{}...,{}\\spad{gn} formally in \\spad{f}.") (($ $ (|Equation| $)) "\\spad{subst(f,{} k = g)} replaces the kernel \\spad{k} by \\spad{g} formally in \\spad{f}.")) (|elt| (($ (|BasicOperator|) (|List| $)) "\\spad{elt(op,{}[x1,{}...,{}xn])} or \\spad{op}([\\spad{x1},{}...,{}\\spad{xn}]) applies the \\spad{n}-ary operator \\spad{op} to \\spad{x1},{}...,{}\\spad{xn}.") (($ (|BasicOperator|) $ $ $ $) "\\spad{elt(op,{}x,{}y,{}z,{}t)} or \\spad{op}(\\spad{x},{} \\spad{y},{} \\spad{z},{} \\spad{t}) applies the 4-ary operator \\spad{op} to \\spad{x},{} \\spad{y},{} \\spad{z} and \\spad{t}.") (($ (|BasicOperator|) $ $ $) "\\spad{elt(op,{}x,{}y,{}z)} or \\spad{op}(\\spad{x},{} \\spad{y},{} \\spad{z}) applies the ternary operator \\spad{op} to \\spad{x},{} \\spad{y} and \\spad{z}.") (($ (|BasicOperator|) $ $) "\\spad{elt(op,{}x,{}y)} or \\spad{op}(\\spad{x},{} \\spad{y}) applies the binary operator \\spad{op} to \\spad{x} and \\spad{y}.") (($ (|BasicOperator|) $) "\\spad{elt(op,{}x)} or \\spad{op}(\\spad{x}) applies the unary operator \\spad{op} to \\spad{x}.")))
NIL
NIL
-(-280 R1)
+(-282 R1)
((|constructor| (NIL "\\axiom{ExpertSystemToolsPackage1} contains some useful functions for use by the computational agents of Ordinary Differential Equation solvers.")) (|neglist| (((|List| |#1|) (|List| |#1|)) "\\spad{neglist(l)} returns only the negative elements of the list \\spad{l}")))
NIL
NIL
-(-281 R1 R2)
+(-283 R1 R2)
((|constructor| (NIL "\\axiom{ExpertSystemToolsPackage2} contains some useful functions for use by the computational agents of Ordinary Differential Equation solvers.")) (|map| (((|Matrix| |#2|) (|Mapping| |#2| |#1|) (|Matrix| |#1|)) "\\spad{map(f,{}m)} applies a mapping f:R1 \\spad{->} \\spad{R2} onto a matrix \\spad{m} in \\spad{R1} returning a matrix in \\spad{R2}")))
NIL
NIL
-(-282)
+(-284)
((|constructor| (NIL "\\axiom{ExpertSystemToolsPackage} contains some useful functions for use by the computational agents of numerical solvers.")) (|mat| (((|Matrix| (|DoubleFloat|)) (|List| (|DoubleFloat|)) (|NonNegativeInteger|)) "\\spad{mat(a,{}n)} constructs a one-dimensional matrix of a.")) (|fi2df| (((|DoubleFloat|) (|Fraction| (|Integer|))) "\\spad{fi2df(f)} coerces a \\axiomType{Fraction Integer} to \\axiomType{DoubleFloat}")) (|df2ef| (((|Expression| (|Float|)) (|DoubleFloat|)) "\\spad{df2ef(a)} coerces a \\axiomType{DoubleFloat} to \\axiomType{Expression Float}")) (|pdf2df| (((|DoubleFloat|) (|Polynomial| (|DoubleFloat|))) "\\spad{pdf2df(p)} coerces a \\axiomType{Polynomial DoubleFloat} to \\axiomType{DoubleFloat}. It is an error if \\axiom{\\spad{p}} is not retractable to DoubleFloat.")) (|pdf2ef| (((|Expression| (|Float|)) (|Polynomial| (|DoubleFloat|))) "\\spad{pdf2ef(p)} coerces a \\axiomType{Polynomial DoubleFloat} to \\axiomType{Expression Float}")) (|iflist2Result| (((|Result|) (|Record| (|:| |stiffness| (|Float|)) (|:| |stability| (|Float|)) (|:| |expense| (|Float|)) (|:| |accuracy| (|Float|)) (|:| |intermediateResults| (|Float|)))) "\\spad{iflist2Result(m)} converts a attributes record into a \\axiomType{Result}")) (|att2Result| (((|Result|) (|Record| (|:| |endPointContinuity| (|Union| (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) "\\spad{att2Result(m)} converts a attributes record into a \\axiomType{Result}")) (|measure2Result| (((|Result|) (|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|))) (|:| |extra| (|Result|)))) "\\spad{measure2Result(m)} converts a measure record into a \\axiomType{Result}") (((|Result|) (|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|))))) "\\spad{measure2Result(m)} converts a measure record into a \\axiomType{Result}")) (|outputMeasure| (((|String|) (|Float|)) "\\spad{outputMeasure(n)} rounds \\spad{n} to 3 decimal places and outputs it as a string")) (|concat| (((|Result|) (|List| (|Result|))) "\\spad{concat(l)} concatenates a list of aggregates of type \\axiomType{Result}") (((|Result|) (|Result|) (|Result|)) "\\spad{concat(a,{}b)} adds two aggregates of type \\axiomType{Result}.")) (|gethi| (((|DoubleFloat|) (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) "\\spad{gethi(u)} gets the \\axiomType{DoubleFloat} equivalent of the second endpoint of the range \\spad{u}")) (|getlo| (((|DoubleFloat|) (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) "\\spad{getlo(u)} gets the \\axiomType{DoubleFloat} equivalent of the first endpoint of the range \\spad{u}")) (|sdf2lst| (((|List| (|String|)) (|Stream| (|DoubleFloat|))) "\\spad{sdf2lst(ln)} coerces a \\axiomType{Stream DoubleFloat} to \\axiomType{String}")) (|ldf2lst| (((|List| (|String|)) (|List| (|DoubleFloat|))) "\\spad{ldf2lst(ln)} coerces a \\axiomType{List DoubleFloat} to \\axiomType{List String}")) (|f2st| (((|String|) (|Float|)) "\\spad{f2st(n)} coerces a \\axiomType{Float} to \\axiomType{String}")) (|df2st| (((|String|) (|DoubleFloat|)) "\\spad{df2st(n)} coerces a \\axiomType{DoubleFloat} to \\axiomType{String}")) (|in?| (((|Boolean|) (|DoubleFloat|) (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) "\\spad{in?(p,{}range)} tests whether point \\spad{p} is internal to the \\spad{range} \\spad{range}")) (|vedf2vef| (((|Vector| (|Expression| (|Float|))) (|Vector| (|Expression| (|DoubleFloat|)))) "\\spad{vedf2vef(v)} maps \\axiomType{Vector Expression DoubleFloat} to \\axiomType{Vector Expression Float}")) (|edf2ef| (((|Expression| (|Float|)) (|Expression| (|DoubleFloat|))) "\\spad{edf2ef(e)} maps \\axiomType{Expression DoubleFloat} to \\axiomType{Expression Float}")) (|ldf2vmf| (((|Vector| (|MachineFloat|)) (|List| (|DoubleFloat|))) "\\spad{ldf2vmf(l)} coerces a \\axiomType{List DoubleFloat} to \\axiomType{List MachineFloat}")) (|df2mf| (((|MachineFloat|) (|DoubleFloat|)) "\\spad{df2mf(n)} coerces a \\axiomType{DoubleFloat} to \\axiomType{MachineFloat}")) (|dflist| (((|List| (|DoubleFloat|)) (|List| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|)))))) "\\spad{dflist(l)} returns a list of \\axiomType{DoubleFloat} equivalents of list \\spad{l}")) (|dfRange| (((|Segment| (|OrderedCompletion| (|DoubleFloat|))) (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) "\\spad{dfRange(r)} converts a range including \\inputbitmap{\\htbmdir{}/plusminus.bitmap} \\infty to \\axiomType{DoubleFloat} equavalents.")) (|edf2efi| (((|Expression| (|Fraction| (|Integer|))) (|Expression| (|DoubleFloat|))) "\\spad{edf2efi(e)} coerces \\axiomType{Expression DoubleFloat} into \\axiomType{Expression Fraction Integer}")) (|numberOfOperations| (((|Record| (|:| |additions| (|Integer|)) (|:| |multiplications| (|Integer|)) (|:| |exponentiations| (|Integer|)) (|:| |functionCalls| (|Integer|))) (|Vector| (|Expression| (|DoubleFloat|)))) "\\spad{numberOfOperations(ode)} counts additions,{} multiplications,{} exponentiations and function calls in the input set of expressions.")) (|expenseOfEvaluation| (((|Float|) (|Vector| (|Expression| (|DoubleFloat|)))) "\\spad{expenseOfEvaluation(o)} gives an approximation of the cost of evaluating a list of expressions in terms of the number of basic operations. < 0.3 inexpensive ; 0.5 neutral ; > 0.7 very expensive 400 `operation units' \\spad{->} 0.75 200 `operation units' \\spad{->} 0.5 83 `operation units' \\spad{->} 0.25 \\spad{**} = 4 units ,{} function calls = 10 units.")) (|isQuotient| (((|Union| (|Expression| (|DoubleFloat|)) "failed") (|Expression| (|DoubleFloat|))) "\\spad{isQuotient(expr)} returns the quotient part of the input expression or \\spad{\"failed\"} if the expression is not of that form.")) (|edf2df| (((|DoubleFloat|) (|Expression| (|DoubleFloat|))) "\\spad{edf2df(n)} maps \\axiomType{Expression DoubleFloat} to \\axiomType{DoubleFloat} It is an error if \\spad{n} is not coercible to DoubleFloat")) (|edf2fi| (((|Fraction| (|Integer|)) (|Expression| (|DoubleFloat|))) "\\spad{edf2fi(n)} maps \\axiomType{Expression DoubleFloat} to \\axiomType{Fraction Integer} It is an error if \\spad{n} is not coercible to Fraction Integer")) (|df2fi| (((|Fraction| (|Integer|)) (|DoubleFloat|)) "\\spad{df2fi(n)} is a function to convert a \\axiomType{DoubleFloat} to a \\axiomType{Fraction Integer}")) (|convert| (((|List| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|List| (|Segment| (|OrderedCompletion| (|Float|))))) "\\spad{convert(l)} is a function to convert a \\axiomType{Segment OrderedCompletion Float} to a \\axiomType{Segment OrderedCompletion DoubleFloat}")) (|socf2socdf| (((|Segment| (|OrderedCompletion| (|DoubleFloat|))) (|Segment| (|OrderedCompletion| (|Float|)))) "\\spad{socf2socdf(a)} is a function to convert a \\axiomType{Segment OrderedCompletion Float} to a \\axiomType{Segment OrderedCompletion DoubleFloat}")) (|ocf2ocdf| (((|OrderedCompletion| (|DoubleFloat|)) (|OrderedCompletion| (|Float|))) "\\spad{ocf2ocdf(a)} is a function to convert an \\axiomType{OrderedCompletion Float} to an \\axiomType{OrderedCompletion DoubleFloat}")) (|ef2edf| (((|Expression| (|DoubleFloat|)) (|Expression| (|Float|))) "\\spad{ef2edf(f)} is a function to convert an \\axiomType{Expression Float} to an \\axiomType{Expression DoubleFloat}")) (|f2df| (((|DoubleFloat|) (|Float|)) "\\spad{f2df(f)} is a function to convert a \\axiomType{Float} to a \\axiomType{DoubleFloat}")))
NIL
NIL
-(-283 S)
+(-285 S)
((|constructor| (NIL "A constructive euclidean domain,{} \\spadignore{i.e.} one can divide producing a quotient and a remainder where the remainder is either zero or is smaller (\\spadfun{euclideanSize}) than the divisor. \\blankline Conditional attributes: \\indented{2}{multiplicativeValuation\\tab{25}\\spad{Size(a*b)=Size(a)*Size(b)}} \\indented{2}{additiveValuation\\tab{25}\\spad{Size(a*b)=Size(a)+Size(b)}}")) (|multiEuclidean| (((|Union| (|List| $) "failed") (|List| $) $) "\\spad{multiEuclidean([f1,{}...,{}fn],{}z)} returns a list of coefficients \\spad{[a1,{} ...,{} an]} such that \\spad{ z / prod \\spad{fi} = sum aj/fj}. If no such list of coefficients exists,{} \"failed\" is returned.")) (|extendedEuclidean| (((|Union| (|Record| (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) "\\spad{extendedEuclidean(x,{}y,{}z)} either returns a record rec where \\spad{rec.coef1*x+rec.coef2*y=z} or returns \"failed\" if \\spad{z} cannot be expressed as a linear combination of \\spad{x} and \\spad{y}.") (((|Record| (|:| |coef1| $) (|:| |coef2| $) (|:| |generator| $)) $ $) "\\spad{extendedEuclidean(x,{}y)} returns a record rec where \\spad{rec.coef1*x+rec.coef2*y = rec.generator} and rec.generator is a \\spad{gcd} of \\spad{x} and \\spad{y}. The \\spad{gcd} is unique only up to associates if \\spadatt{canonicalUnitNormal} is not asserted. \\spadfun{principalIdeal} provides a version of this operation which accepts an arbitrary length list of arguments.")) (|rem| (($ $ $) "\\spad{x rem y} is the same as \\spad{divide(x,{}y).remainder}. See \\spadfunFrom{divide}{EuclideanDomain}.")) (|quo| (($ $ $) "\\spad{x quo y} is the same as \\spad{divide(x,{}y).quotient}. See \\spadfunFrom{divide}{EuclideanDomain}.")) (|divide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{divide(x,{}y)} divides \\spad{x} by \\spad{y} producing a record containing a \\spad{quotient} and \\spad{remainder},{} where the remainder is smaller (see \\spadfunFrom{sizeLess?}{EuclideanDomain}) than the divisor \\spad{y}.")) (|euclideanSize| (((|NonNegativeInteger|) $) "\\spad{euclideanSize(x)} returns the euclidean size of the element \\spad{x}. Error: if \\spad{x} is zero.")) (|sizeLess?| (((|Boolean|) $ $) "\\spad{sizeLess?(x,{}y)} tests whether \\spad{x} is strictly smaller than \\spad{y} with respect to the \\spadfunFrom{euclideanSize}{EuclideanDomain}.")))
NIL
NIL
-(-284)
+(-286)
((|constructor| (NIL "A constructive euclidean domain,{} \\spadignore{i.e.} one can divide producing a quotient and a remainder where the remainder is either zero or is smaller (\\spadfun{euclideanSize}) than the divisor. \\blankline Conditional attributes: \\indented{2}{multiplicativeValuation\\tab{25}\\spad{Size(a*b)=Size(a)*Size(b)}} \\indented{2}{additiveValuation\\tab{25}\\spad{Size(a*b)=Size(a)+Size(b)}}")) (|multiEuclidean| (((|Union| (|List| $) "failed") (|List| $) $) "\\spad{multiEuclidean([f1,{}...,{}fn],{}z)} returns a list of coefficients \\spad{[a1,{} ...,{} an]} such that \\spad{ z / prod \\spad{fi} = sum aj/fj}. If no such list of coefficients exists,{} \"failed\" is returned.")) (|extendedEuclidean| (((|Union| (|Record| (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) "\\spad{extendedEuclidean(x,{}y,{}z)} either returns a record rec where \\spad{rec.coef1*x+rec.coef2*y=z} or returns \"failed\" if \\spad{z} cannot be expressed as a linear combination of \\spad{x} and \\spad{y}.") (((|Record| (|:| |coef1| $) (|:| |coef2| $) (|:| |generator| $)) $ $) "\\spad{extendedEuclidean(x,{}y)} returns a record rec where \\spad{rec.coef1*x+rec.coef2*y = rec.generator} and rec.generator is a \\spad{gcd} of \\spad{x} and \\spad{y}. The \\spad{gcd} is unique only up to associates if \\spadatt{canonicalUnitNormal} is not asserted. \\spadfun{principalIdeal} provides a version of this operation which accepts an arbitrary length list of arguments.")) (|rem| (($ $ $) "\\spad{x rem y} is the same as \\spad{divide(x,{}y).remainder}. See \\spadfunFrom{divide}{EuclideanDomain}.")) (|quo| (($ $ $) "\\spad{x quo y} is the same as \\spad{divide(x,{}y).quotient}. See \\spadfunFrom{divide}{EuclideanDomain}.")) (|divide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{divide(x,{}y)} divides \\spad{x} by \\spad{y} producing a record containing a \\spad{quotient} and \\spad{remainder},{} where the remainder is smaller (see \\spadfunFrom{sizeLess?}{EuclideanDomain}) than the divisor \\spad{y}.")) (|euclideanSize| (((|NonNegativeInteger|) $) "\\spad{euclideanSize(x)} returns the euclidean size of the element \\spad{x}. Error: if \\spad{x} is zero.")) (|sizeLess?| (((|Boolean|) $ $) "\\spad{sizeLess?(x,{}y)} tests whether \\spad{x} is strictly smaller than \\spad{y} with respect to the \\spadfunFrom{euclideanSize}{EuclideanDomain}.")))
-((-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-285 S R)
+(-287 S R)
((|constructor| (NIL "This category provides \\spadfun{eval} operations. A domain may belong to this category if it is possible to make ``evaluation\\spad{''} substitutions.")) (|eval| (($ $ (|List| (|Equation| |#2|))) "\\spad{eval(f,{} [x1 = v1,{}...,{}xn = vn])} replaces \\spad{xi} by \\spad{vi} in \\spad{f}.") (($ $ (|Equation| |#2|)) "\\spad{eval(f,{}x = v)} replaces \\spad{x} by \\spad{v} in \\spad{f}.")))
NIL
NIL
-(-286 R)
+(-288 R)
((|constructor| (NIL "This category provides \\spadfun{eval} operations. A domain may belong to this category if it is possible to make ``evaluation\\spad{''} substitutions.")) (|eval| (($ $ (|List| (|Equation| |#1|))) "\\spad{eval(f,{} [x1 = v1,{}...,{}xn = vn])} replaces \\spad{xi} by \\spad{vi} in \\spad{f}.") (($ $ (|Equation| |#1|)) "\\spad{eval(f,{}x = v)} replaces \\spad{x} by \\spad{v} in \\spad{f}.")))
NIL
NIL
-(-287 -3894)
+(-289 -3576)
((|constructor| (NIL "This package is to be used in conjuction with \\indented{12}{the CycleIndicators package. It provides an evaluation} \\indented{12}{function for SymmetricPolynomials.}")) (|eval| ((|#1| (|Mapping| |#1| (|Integer|)) (|SymmetricPolynomial| (|Fraction| (|Integer|)))) "\\spad{eval(f,{}s)} evaluates the cycle index \\spad{s} by applying \\indented{1}{the function \\spad{f} to each integer in a monomial partition,{}} \\indented{1}{forms their product and sums the results over all monomials.}")))
NIL
NIL
-(-288)
+(-290)
((|constructor| (NIL "A function which does not return directly to its caller should have Exit as its return type. \\blankline Note: It is convenient to have a formal \\spad{coerce} into each type from type Exit. This allows,{} for example,{} errors to be raised in one half of a type-balanced \\spad{if}.")))
NIL
NIL
-(-289 R FE |var| |cen|)
+(-291 R FE |var| |cen|)
((|constructor| (NIL "UnivariatePuiseuxSeriesWithExponentialSingularity is a domain used to represent essential singularities of functions. Objects in this domain are quotients of sums,{} where each term in the sum is a univariate Puiseux series times the exponential of a univariate Puiseux series.")) (|coerce| (($ (|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) "\\spad{coerce(f)} converts a \\spadtype{UnivariatePuiseuxSeries} to an \\spadtype{ExponentialExpansion}.")) (|limitPlus| (((|Union| (|OrderedCompletion| |#2|) "failed") $) "\\spad{limitPlus(f(var))} returns \\spad{limit(var -> a+,{}f(var))}.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (QUOTE (-840))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (LIST (QUOTE -964) (QUOTE (-1087)))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (QUOTE (-134))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (QUOTE (-136))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (QUOTE (-949))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (QUOTE (-759))) (-3255 (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (QUOTE (-759))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (QUOTE (-786)))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (QUOTE (-1063))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (QUOTE (-211))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (LIST (QUOTE -484) (QUOTE (-1087)) (LIST (QUOTE -1155) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (LIST (QUOTE -286) (LIST (QUOTE -1155) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (LIST (QUOTE -263) (LIST (QUOTE -1155) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)) (LIST (QUOTE -1155) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (QUOTE (-284))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (QUOTE (-508))) (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (QUOTE (-786))) (-12 (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (QUOTE (-840))) (|HasCategory| $ (QUOTE (-134)))) (-3255 (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (QUOTE (-134))) (-12 (|HasCategory| (-1155 |#1| |#2| |#3| |#4|) (QUOTE (-840))) (|HasCategory| $ (QUOTE (-134))))))
-(-290 R S)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (QUOTE (-842))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (LIST (QUOTE -966) (QUOTE (-1089)))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (QUOTE (-136))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (QUOTE (-138))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (QUOTE (-951))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (QUOTE (-761))) (-3321 (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (QUOTE (-761))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (QUOTE (-788)))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (QUOTE (-1065))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (QUOTE (-213))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (LIST (QUOTE -486) (QUOTE (-1089)) (LIST (QUOTE -1157) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (LIST (QUOTE -288) (LIST (QUOTE -1157) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (LIST (QUOTE -265) (LIST (QUOTE -1157) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)) (LIST (QUOTE -1157) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (QUOTE (-286))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (QUOTE (-510))) (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (QUOTE (-788))) (-12 (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (QUOTE (-842))) (|HasCategory| $ (QUOTE (-136)))) (-3321 (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (QUOTE (-136))) (-12 (|HasCategory| (-1157 |#1| |#2| |#3| |#4|) (QUOTE (-842))) (|HasCategory| $ (QUOTE (-136))))))
+(-292 R S)
((|constructor| (NIL "Lifting of maps to Expressions. Date Created: 16 Jan 1989 Date Last Updated: 22 Jan 1990")) (|map| (((|Expression| |#2|) (|Mapping| |#2| |#1|) (|Expression| |#1|)) "\\spad{map(f,{} e)} applies \\spad{f} to all the constants appearing in \\spad{e}.")))
NIL
NIL
-(-291 R FE)
+(-293 R FE)
((|constructor| (NIL "This package provides functions to convert functional expressions to power series.")) (|series| (((|Any|) |#2| (|Equation| |#2|) (|Fraction| (|Integer|))) "\\spad{series(f,{}x = a,{}n)} expands the expression \\spad{f} as a series in powers of (\\spad{x} - a); terms will be computed up to order at least \\spad{n}.") (((|Any|) |#2| (|Equation| |#2|)) "\\spad{series(f,{}x = a)} expands the expression \\spad{f} as a series in powers of (\\spad{x} - a).") (((|Any|) |#2| (|Fraction| (|Integer|))) "\\spad{series(f,{}n)} returns a series expansion of the expression \\spad{f}. Note: \\spad{f} should have only one variable; the series will be expanded in powers of that variable and terms will be computed up to order at least \\spad{n}.") (((|Any|) |#2|) "\\spad{series(f)} returns a series expansion of the expression \\spad{f}. Note: \\spad{f} should have only one variable; the series will be expanded in powers of that variable.") (((|Any|) (|Symbol|)) "\\spad{series(x)} returns \\spad{x} viewed as a series.")) (|puiseux| (((|Any|) |#2| (|Equation| |#2|) (|Fraction| (|Integer|))) "\\spad{puiseux(f,{}x = a,{}n)} expands the expression \\spad{f} as a Puiseux series in powers of \\spad{(x - a)}; terms will be computed up to order at least \\spad{n}.") (((|Any|) |#2| (|Equation| |#2|)) "\\spad{puiseux(f,{}x = a)} expands the expression \\spad{f} as a Puiseux series in powers of \\spad{(x - a)}.") (((|Any|) |#2| (|Fraction| (|Integer|))) "\\spad{puiseux(f,{}n)} returns a Puiseux expansion of the expression \\spad{f}. Note: \\spad{f} should have only one variable; the series will be expanded in powers of that variable and terms will be computed up to order at least \\spad{n}.") (((|Any|) |#2|) "\\spad{puiseux(f)} returns a Puiseux expansion of the expression \\spad{f}. Note: \\spad{f} should have only one variable; the series will be expanded in powers of that variable.") (((|Any|) (|Symbol|)) "\\spad{puiseux(x)} returns \\spad{x} viewed as a Puiseux series.")) (|laurent| (((|Any|) |#2| (|Equation| |#2|) (|Integer|)) "\\spad{laurent(f,{}x = a,{}n)} expands the expression \\spad{f} as a Laurent series in powers of \\spad{(x - a)}; terms will be computed up to order at least \\spad{n}.") (((|Any|) |#2| (|Equation| |#2|)) "\\spad{laurent(f,{}x = a)} expands the expression \\spad{f} as a Laurent series in powers of \\spad{(x - a)}.") (((|Any|) |#2| (|Integer|)) "\\spad{laurent(f,{}n)} returns a Laurent expansion of the expression \\spad{f}. Note: \\spad{f} should have only one variable; the series will be expanded in powers of that variable and terms will be computed up to order at least \\spad{n}.") (((|Any|) |#2|) "\\spad{laurent(f)} returns a Laurent expansion of the expression \\spad{f}. Note: \\spad{f} should have only one variable; the series will be expanded in powers of that variable.") (((|Any|) (|Symbol|)) "\\spad{laurent(x)} returns \\spad{x} viewed as a Laurent series.")) (|taylor| (((|Any|) |#2| (|Equation| |#2|) (|NonNegativeInteger|)) "\\spad{taylor(f,{}x = a)} expands the expression \\spad{f} as a Taylor series in powers of \\spad{(x - a)}; terms will be computed up to order at least \\spad{n}.") (((|Any|) |#2| (|Equation| |#2|)) "\\spad{taylor(f,{}x = a)} expands the expression \\spad{f} as a Taylor series in powers of \\spad{(x - a)}.") (((|Any|) |#2| (|NonNegativeInteger|)) "\\spad{taylor(f,{}n)} returns a Taylor expansion of the expression \\spad{f}. Note: \\spad{f} should have only one variable; the series will be expanded in powers of that variable and terms will be computed up to order at least \\spad{n}.") (((|Any|) |#2|) "\\spad{taylor(f)} returns a Taylor expansion of the expression \\spad{f}. Note: \\spad{f} should have only one variable; the series will be expanded in powers of that variable.") (((|Any|) (|Symbol|)) "\\spad{taylor(x)} returns \\spad{x} viewed as a Taylor series.")))
NIL
NIL
-(-292 R)
+(-294 R)
((|constructor| (NIL "Expressions involving symbolic functions.")) (|squareFreePolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{squareFreePolynomial(p)} \\undocumented{}")) (|factorPolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{factorPolynomial(p)} \\undocumented{}")) (|simplifyPower| (($ $ (|Integer|)) "simplifyPower?(\\spad{f},{}\\spad{n}) \\undocumented{}")) (|number?| (((|Boolean|) $) "\\spad{number?(f)} tests if \\spad{f} is rational")) (|reduce| (($ $) "\\spad{reduce(f)} simplifies all the unreduced algebraic quantities present in \\spad{f} by applying their defining relations.")))
-((-4245 -3255 (-2819 (|has| |#1| (-973)) (|has| |#1| (-585 (-523)))) (-12 (|has| |#1| (-515)) (-3255 (-2819 (|has| |#1| (-973)) (|has| |#1| (-585 (-523)))) (|has| |#1| (-973)) (|has| |#1| (-448)))) (|has| |#1| (-973)) (|has| |#1| (-448))) (-4243 |has| |#1| (-158)) (-4242 |has| |#1| (-158)) ((-4250 "*") |has| |#1| (-515)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-515)) (-4240 |has| |#1| (-515)))
-((-3255 (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (-12 (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))))) (|HasCategory| |#1| (QUOTE (-515))) (-3255 (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-973)))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (-3255 (|HasCategory| |#1| (QUOTE (-448))) (|HasCategory| |#1| (QUOTE (-1028)))) (|HasCategory| |#1| (QUOTE (-448))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (-12 (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523))))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-973)))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-973)))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-973)))) (-12 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515)))) (-3255 (|HasCategory| |#1| (QUOTE (-448))) (|HasCategory| |#1| (QUOTE (-515)))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523))))) (-3255 (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523))))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-1028)))) (-3255 (|HasCategory| |#1| (QUOTE (-21))) (-12 (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))))) (-3255 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-1028)))) (-3255 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))))) (-3255 (|HasCategory| |#1| (QUOTE (-448))) (|HasCategory| |#1| (QUOTE (-973)))) (-3255 (-12 (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-1028))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| $ (QUOTE (-973))) (|HasCategory| $ (LIST (QUOTE -964) (QUOTE (-523)))))
-(-293 R -3894)
+((-4247 -3321 (-1213 (|has| |#1| (-975)) (|has| |#1| (-587 (-525)))) (-12 (|has| |#1| (-517)) (-3321 (-1213 (|has| |#1| (-975)) (|has| |#1| (-587 (-525)))) (|has| |#1| (-975)) (|has| |#1| (-450)))) (|has| |#1| (-975)) (|has| |#1| (-450))) (-4245 |has| |#1| (-160)) (-4244 |has| |#1| (-160)) ((-4252 "*") |has| |#1| (-517)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-517)) (-4242 |has| |#1| (-517)))
+((-3321 (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))))) (|HasCategory| |#1| (QUOTE (-517))) (-3321 (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-975)))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-975))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (-3321 (|HasCategory| |#1| (QUOTE (-450))) (|HasCategory| |#1| (QUOTE (-1030)))) (|HasCategory| |#1| (QUOTE (-450))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525))))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-975)))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-975)))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-975)))) (-12 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517)))) (-3321 (|HasCategory| |#1| (QUOTE (-450))) (|HasCategory| |#1| (QUOTE (-517)))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| |#1| (QUOTE (-975))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525))))) (-3321 (|HasCategory| |#1| (QUOTE (-975))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525))))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-975))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-1030)))) (-3321 (|HasCategory| |#1| (QUOTE (-21))) (-12 (|HasCategory| |#1| (QUOTE (-975))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))))) (-3321 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-975))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-1030)))) (-3321 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-975))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))))) (-3321 (|HasCategory| |#1| (QUOTE (-450))) (|HasCategory| |#1| (QUOTE (-975)))) (-3321 (-12 (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-1030))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| $ (QUOTE (-975))) (|HasCategory| $ (LIST (QUOTE -966) (QUOTE (-525)))))
+(-295 R -3576)
((|constructor| (NIL "Taylor series solutions of explicit ODE\\spad{'s}.")) (|seriesSolve| (((|Any|) |#2| (|BasicOperator|) (|Equation| |#2|) (|List| |#2|)) "\\spad{seriesSolve(eq,{} y,{} x = a,{} [b0,{}...,{}bn])} is equivalent to \\spad{seriesSolve(eq = 0,{} y,{} x = a,{} [b0,{}...,{}b(n-1)])}.") (((|Any|) |#2| (|BasicOperator|) (|Equation| |#2|) (|Equation| |#2|)) "\\spad{seriesSolve(eq,{} y,{} x = a,{} y a = b)} is equivalent to \\spad{seriesSolve(eq=0,{} y,{} x=a,{} y a = b)}.") (((|Any|) |#2| (|BasicOperator|) (|Equation| |#2|) |#2|) "\\spad{seriesSolve(eq,{} y,{} x = a,{} b)} is equivalent to \\spad{seriesSolve(eq = 0,{} y,{} x = a,{} y a = b)}.") (((|Any|) (|Equation| |#2|) (|BasicOperator|) (|Equation| |#2|) |#2|) "\\spad{seriesSolve(eq,{}y,{} x=a,{} b)} is equivalent to \\spad{seriesSolve(eq,{} y,{} x=a,{} y a = b)}.") (((|Any|) (|List| |#2|) (|List| (|BasicOperator|)) (|Equation| |#2|) (|List| (|Equation| |#2|))) "\\spad{seriesSolve([eq1,{}...,{}eqn],{} [y1,{}...,{}yn],{} x = a,{}[y1 a = b1,{}...,{} yn a = bn])} is equivalent to \\spad{seriesSolve([eq1=0,{}...,{}eqn=0],{} [y1,{}...,{}yn],{} x = a,{} [y1 a = b1,{}...,{} yn a = bn])}.") (((|Any|) (|List| |#2|) (|List| (|BasicOperator|)) (|Equation| |#2|) (|List| |#2|)) "\\spad{seriesSolve([eq1,{}...,{}eqn],{} [y1,{}...,{}yn],{} x=a,{} [b1,{}...,{}bn])} is equivalent to \\spad{seriesSolve([eq1=0,{}...,{}eqn=0],{} [y1,{}...,{}yn],{} x=a,{} [b1,{}...,{}bn])}.") (((|Any|) (|List| (|Equation| |#2|)) (|List| (|BasicOperator|)) (|Equation| |#2|) (|List| |#2|)) "\\spad{seriesSolve([eq1,{}...,{}eqn],{} [y1,{}...,{}yn],{} x=a,{} [b1,{}...,{}bn])} is equivalent to \\spad{seriesSolve([eq1,{}...,{}eqn],{} [y1,{}...,{}yn],{} x = a,{} [y1 a = b1,{}...,{} yn a = bn])}.") (((|Any|) (|List| (|Equation| |#2|)) (|List| (|BasicOperator|)) (|Equation| |#2|) (|List| (|Equation| |#2|))) "\\spad{seriesSolve([eq1,{}...,{}eqn],{}[y1,{}...,{}yn],{}x = a,{}[y1 a = b1,{}...,{}yn a = bn])} returns a taylor series solution of \\spad{[eq1,{}...,{}eqn]} around \\spad{x = a} with initial conditions \\spad{\\spad{yi}(a) = \\spad{bi}}. Note: eqi must be of the form \\spad{\\spad{fi}(x,{} y1 x,{} y2 x,{}...,{} yn x) y1'(x) + \\spad{gi}(x,{} y1 x,{} y2 x,{}...,{} yn x) = h(x,{} y1 x,{} y2 x,{}...,{} yn x)}.") (((|Any|) (|Equation| |#2|) (|BasicOperator|) (|Equation| |#2|) (|List| |#2|)) "\\spad{seriesSolve(eq,{}y,{}x=a,{}[b0,{}...,{}b(n-1)])} returns a Taylor series solution of \\spad{eq} around \\spad{x = a} with initial conditions \\spad{y(a) = b0},{} \\spad{y'(a) = b1},{} \\spad{y''(a) = b2},{} ...,{}\\spad{y(n-1)(a) = b(n-1)} \\spad{eq} must be of the form \\spad{f(x,{} y x,{} y'(x),{}...,{} y(n-1)(x)) y(n)(x) + g(x,{}y x,{}y'(x),{}...,{}y(n-1)(x)) = h(x,{}y x,{} y'(x),{}...,{} y(n-1)(x))}.") (((|Any|) (|Equation| |#2|) (|BasicOperator|) (|Equation| |#2|) (|Equation| |#2|)) "\\spad{seriesSolve(eq,{}y,{}x=a,{} y a = b)} returns a Taylor series solution of \\spad{eq} around \\spad{x} = a with initial condition \\spad{y(a) = b}. Note: \\spad{eq} must be of the form \\spad{f(x,{} y x) y'(x) + g(x,{} y x) = h(x,{} y x)}.")))
NIL
NIL
-(-294)
+(-296)
((|constructor| (NIL "\\indented{1}{Author: Clifton \\spad{J}. Williamson} Date Created: Bastille Day 1989 Date Last Updated: 5 June 1990 Keywords: Examples: Package for constructing tubes around 3-dimensional parametric curves.")) (|tubePlot| (((|TubePlot| (|Plot3D|)) (|Expression| (|Integer|)) (|Expression| (|Integer|)) (|Expression| (|Integer|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|DoubleFloat|) (|Integer|) (|String|)) "\\spad{tubePlot(f,{}g,{}h,{}colorFcn,{}a..b,{}r,{}n,{}s)} puts a tube of radius \\spad{r} with \\spad{n} points on each circle about the curve \\spad{x = f(t)},{} \\spad{y = g(t)},{} \\spad{z = h(t)} for \\spad{t} in \\spad{[a,{}b]}. If \\spad{s} = \"closed\",{} the tube is considered to be closed; if \\spad{s} = \"open\",{} the tube is considered to be open.") (((|TubePlot| (|Plot3D|)) (|Expression| (|Integer|)) (|Expression| (|Integer|)) (|Expression| (|Integer|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|DoubleFloat|) (|Integer|)) "\\spad{tubePlot(f,{}g,{}h,{}colorFcn,{}a..b,{}r,{}n)} puts a tube of radius \\spad{r} with \\spad{n} points on each circle about the curve \\spad{x = f(t)},{} \\spad{y = g(t)},{} \\spad{z = h(t)} for \\spad{t} in \\spad{[a,{}b]}. The tube is considered to be open.") (((|TubePlot| (|Plot3D|)) (|Expression| (|Integer|)) (|Expression| (|Integer|)) (|Expression| (|Integer|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Integer|) (|String|)) "\\spad{tubePlot(f,{}g,{}h,{}colorFcn,{}a..b,{}r,{}n,{}s)} puts a tube of radius \\spad{r(t)} with \\spad{n} points on each circle about the curve \\spad{x = f(t)},{} \\spad{y = g(t)},{} \\spad{z = h(t)} for \\spad{t} in \\spad{[a,{}b]}. If \\spad{s} = \"closed\",{} the tube is considered to be closed; if \\spad{s} = \"open\",{} the tube is considered to be open.") (((|TubePlot| (|Plot3D|)) (|Expression| (|Integer|)) (|Expression| (|Integer|)) (|Expression| (|Integer|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Integer|)) "\\spad{tubePlot(f,{}g,{}h,{}colorFcn,{}a..b,{}r,{}n)} puts a tube of radius \\spad{r}(\\spad{t}) with \\spad{n} points on each circle about the curve \\spad{x = f(t)},{} \\spad{y = g(t)},{} \\spad{z = h(t)} for \\spad{t} in \\spad{[a,{}b]}. The tube is considered to be open.")) (|constantToUnaryFunction| (((|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|DoubleFloat|)) "\\spad{constantToUnaryFunction(s)} is a local function which takes the value of \\spad{s},{} which may be a function of a constant,{} and returns a function which always returns the value \\spadtype{DoubleFloat} \\spad{s}.")))
NIL
NIL
-(-295 FE |var| |cen|)
+(-297 FE |var| |cen|)
((|constructor| (NIL "ExponentialOfUnivariatePuiseuxSeries is a domain used to represent essential singularities of functions. An object in this domain is a function of the form \\spad{exp(f(x))},{} where \\spad{f(x)} is a Puiseux series with no terms of non-negative degree. Objects are ordered according to order of singularity,{} with functions which tend more rapidly to zero or infinity considered to be larger. Thus,{} if \\spad{order(f(x)) < order(g(x))},{} \\spadignore{i.e.} the first non-zero term of \\spad{f(x)} has lower degree than the first non-zero term of \\spad{g(x)},{} then \\spad{exp(f(x)) > exp(g(x))}. If \\spad{order(f(x)) = order(g(x))},{} then the ordering is essentially random. This domain is used in computing limits involving functions with essential singularities.")) (|exponentialOrder| (((|Fraction| (|Integer|)) $) "\\spad{exponentialOrder(exp(c * x **(-n) + ...))} returns \\spad{-n}. exponentialOrder(0) returns \\spad{0}.")) (|exponent| (((|UnivariatePuiseuxSeries| |#1| |#2| |#3|) $) "\\spad{exponent(exp(f(x)))} returns \\spad{f(x)}")) (|exponential| (($ (|UnivariatePuiseuxSeries| |#1| |#2| |#3|)) "\\spad{exponential(f(x))} returns \\spad{exp(f(x))}. Note: the function does NOT check that \\spad{f(x)} has no non-negative terms.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (-12 (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523))) (|devaluate| |#1|)))) (|HasCategory| (-383 (-523)) (QUOTE (-1028))) (|HasCategory| |#1| (QUOTE (-339))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasSignature| |#1| (LIST (QUOTE -3976) (LIST (|devaluate| |#1|) (QUOTE (-1087)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523)))))) (-3255 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-889))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasSignature| |#1| (LIST (QUOTE -2669) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1087))))) (|HasSignature| |#1| (LIST (QUOTE -3716) (LIST (LIST (QUOTE -589) (QUOTE (-1087))) (|devaluate| |#1|)))))))
-(-296 M)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (-12 (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525))) (|devaluate| |#1|)))) (|HasCategory| (-385 (-525)) (QUOTE (-1030))) (|HasCategory| |#1| (QUOTE (-341))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasSignature| |#1| (LIST (QUOTE -3022) (LIST (|devaluate| |#1|) (QUOTE (-1089)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525)))))) (-3321 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-891))) (|HasCategory| |#1| (QUOTE (-1111))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasSignature| |#1| (LIST (QUOTE -4141) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1089))))) (|HasSignature| |#1| (LIST (QUOTE -1507) (LIST (LIST (QUOTE -591) (QUOTE (-1089))) (|devaluate| |#1|)))))))
+(-298 M)
((|constructor| (NIL "computes various functions on factored arguments.")) (|log| (((|List| (|Record| (|:| |coef| (|NonNegativeInteger|)) (|:| |logand| |#1|))) (|Factored| |#1|)) "\\spad{log(f)} returns \\spad{[(a1,{}b1),{}...,{}(am,{}bm)]} such that the logarithm of \\spad{f} is equal to \\spad{a1*log(b1) + ... + am*log(bm)}.")) (|nthRoot| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| |#1|) (|:| |radicand| (|List| |#1|))) (|Factored| |#1|) (|NonNegativeInteger|)) "\\spad{nthRoot(f,{} n)} returns \\spad{(p,{} r,{} [r1,{}...,{}rm])} such that the \\spad{n}th-root of \\spad{f} is equal to \\spad{r * \\spad{p}th-root(r1 * ... * rm)},{} where \\spad{r1},{}...,{}\\spad{rm} are distinct factors of \\spad{f},{} each of which has an exponent smaller than \\spad{p} in \\spad{f}.")))
NIL
NIL
-(-297 E OV R P)
+(-299 E OV R P)
((|constructor| (NIL "This package provides utilities used by the factorizers which operate on polynomials represented as univariate polynomials with multivariate coefficients.")) (|ran| ((|#3| (|Integer|)) "\\spad{ran(k)} computes a random integer between \\spad{-k} and \\spad{k} as a member of \\spad{R}.")) (|normalDeriv| (((|SparseUnivariatePolynomial| |#4|) (|SparseUnivariatePolynomial| |#4|) (|Integer|)) "\\spad{normalDeriv(poly,{}i)} computes the \\spad{i}th derivative of \\spad{poly} divided by i!.")) (|raisePolynomial| (((|SparseUnivariatePolynomial| |#4|) (|SparseUnivariatePolynomial| |#3|)) "\\spad{raisePolynomial(rpoly)} converts \\spad{rpoly} from a univariate polynomial over \\spad{r} to be a univariate polynomial with polynomial coefficients.")) (|lowerPolynomial| (((|SparseUnivariatePolynomial| |#3|) (|SparseUnivariatePolynomial| |#4|)) "\\spad{lowerPolynomial(upoly)} converts \\spad{upoly} to be a univariate polynomial over \\spad{R}. An error if the coefficients contain variables.")) (|variables| (((|List| |#2|) (|SparseUnivariatePolynomial| |#4|)) "\\spad{variables(upoly)} returns the list of variables for the coefficients of \\spad{upoly}.")) (|degree| (((|List| (|NonNegativeInteger|)) (|SparseUnivariatePolynomial| |#4|) (|List| |#2|)) "\\spad{degree(upoly,{} lvar)} returns a list containing the maximum degree for each variable in lvar.")) (|completeEval| (((|SparseUnivariatePolynomial| |#3|) (|SparseUnivariatePolynomial| |#4|) (|List| |#2|) (|List| |#3|)) "\\spad{completeEval(upoly,{} lvar,{} lval)} evaluates the polynomial \\spad{upoly} with each variable in \\spad{lvar} replaced by the corresponding value in lval. Substitutions are done for all variables in \\spad{upoly} producing a univariate polynomial over \\spad{R}.")))
NIL
NIL
-(-298 S)
+(-300 S)
((|constructor| (NIL "The free abelian group on a set \\spad{S} is the monoid of finite sums of the form \\spad{reduce(+,{}[\\spad{ni} * \\spad{si}])} where the \\spad{si}\\spad{'s} are in \\spad{S},{} and the \\spad{ni}\\spad{'s} are integers. The operation is commutative.")))
-((-4243 . T) (-4242 . T))
-((|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| (-523) (QUOTE (-731))))
-(-299 S E)
+((-4245 . T) (-4244 . T))
+((|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-733))))
+(-301 S E)
((|constructor| (NIL "A free abelian monoid on a set \\spad{S} is the monoid of finite sums of the form \\spad{reduce(+,{}[\\spad{ni} * \\spad{si}])} where the \\spad{si}\\spad{'s} are in \\spad{S},{} and the \\spad{ni}\\spad{'s} are in a given abelian monoid. The operation is commutative.")) (|highCommonTerms| (($ $ $) "\\spad{highCommonTerms(e1 a1 + ... + en an,{} f1 b1 + ... + fm bm)} returns \\indented{2}{\\spad{reduce(+,{}[max(\\spad{ei},{} \\spad{fi}) \\spad{ci}])}} where \\spad{ci} ranges in the intersection of \\spad{{a1,{}...,{}an}} and \\spad{{b1,{}...,{}bm}}.")) (|mapGen| (($ (|Mapping| |#1| |#1|) $) "\\spad{mapGen(f,{} e1 a1 +...+ en an)} returns \\spad{e1 f(a1) +...+ en f(an)}.")) (|mapCoef| (($ (|Mapping| |#2| |#2|) $) "\\spad{mapCoef(f,{} e1 a1 +...+ en an)} returns \\spad{f(e1) a1 +...+ f(en) an}.")) (|coefficient| ((|#2| |#1| $) "\\spad{coefficient(s,{} e1 a1 + ... + en an)} returns \\spad{ei} such that \\spad{ai} = \\spad{s},{} or 0 if \\spad{s} is not one of the \\spad{ai}\\spad{'s}.")) (|nthFactor| ((|#1| $ (|Integer|)) "\\spad{nthFactor(x,{} n)} returns the factor of the n^th term of \\spad{x}.")) (|nthCoef| ((|#2| $ (|Integer|)) "\\spad{nthCoef(x,{} n)} returns the coefficient of the n^th term of \\spad{x}.")) (|terms| (((|List| (|Record| (|:| |gen| |#1|) (|:| |exp| |#2|))) $) "\\spad{terms(e1 a1 + ... + en an)} returns \\spad{[[a1,{} e1],{}...,{}[an,{} en]]}.")) (|size| (((|NonNegativeInteger|) $) "\\spad{size(x)} returns the number of terms in \\spad{x}. mapGen(\\spad{f},{} a1\\spad{\\^}e1 ... an\\spad{\\^}en) returns \\spad{f(a1)\\^e1 ... f(an)\\^en}.")) (* (($ |#2| |#1|) "\\spad{e * s} returns \\spad{e} times \\spad{s}.")) (+ (($ |#1| $) "\\spad{s + x} returns the sum of \\spad{s} and \\spad{x}.")))
NIL
NIL
-(-300 S)
+(-302 S)
((|constructor| (NIL "The free abelian monoid on a set \\spad{S} is the monoid of finite sums of the form \\spad{reduce(+,{}[\\spad{ni} * \\spad{si}])} where the \\spad{si}\\spad{'s} are in \\spad{S},{} and the \\spad{ni}\\spad{'s} are non-negative integers. The operation is commutative.")))
NIL
-((|HasCategory| (-710) (QUOTE (-731))))
-(-301 S R E)
+((|HasCategory| (-712) (QUOTE (-733))))
+(-303 S R E)
((|constructor| (NIL "This category is similar to AbelianMonoidRing,{} except that the sum is assumed to be finite. It is a useful model for polynomials,{} but is somewhat more general.")) (|primitivePart| (($ $) "\\spad{primitivePart(p)} returns the unit normalized form of polynomial \\spad{p} divided by the content of \\spad{p}.")) (|content| ((|#2| $) "\\spad{content(p)} gives the \\spad{gcd} of the coefficients of polynomial \\spad{p}.")) (|exquo| (((|Union| $ "failed") $ |#2|) "\\spad{exquo(p,{}r)} returns the exact quotient of polynomial \\spad{p} by \\spad{r},{} or \"failed\" if none exists.")) (|binomThmExpt| (($ $ $ (|NonNegativeInteger|)) "\\spad{binomThmExpt(p,{}q,{}n)} returns \\spad{(x+y)^n} by means of the binomial theorem trick.")) (|pomopo!| (($ $ |#2| |#3| $) "\\spad{pomopo!(p1,{}r,{}e,{}p2)} returns \\spad{p1 + monomial(e,{}r) * p2} and may use \\spad{p1} as workspace. The constaant \\spad{r} is assumed to be nonzero.")) (|mapExponents| (($ (|Mapping| |#3| |#3|) $) "\\spad{mapExponents(fn,{}u)} maps function \\spad{fn} onto the exponents of the non-zero monomials of polynomial \\spad{u}.")) (|minimumDegree| ((|#3| $) "\\spad{minimumDegree(p)} gives the least exponent of a non-zero term of polynomial \\spad{p}. Error: if applied to 0.")) (|numberOfMonomials| (((|NonNegativeInteger|) $) "\\spad{numberOfMonomials(p)} gives the number of non-zero monomials in polynomial \\spad{p}.")) (|coefficients| (((|List| |#2|) $) "\\spad{coefficients(p)} gives the list of non-zero coefficients of polynomial \\spad{p}.")) (|ground| ((|#2| $) "\\spad{ground(p)} retracts polynomial \\spad{p} to the coefficient ring.")) (|ground?| (((|Boolean|) $) "\\spad{ground?(p)} tests if polynomial \\spad{p} is a member of the coefficient ring.")))
NIL
-((|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-158))))
-(-302 R E)
+((|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-160))))
+(-304 R E)
((|constructor| (NIL "This category is similar to AbelianMonoidRing,{} except that the sum is assumed to be finite. It is a useful model for polynomials,{} but is somewhat more general.")) (|primitivePart| (($ $) "\\spad{primitivePart(p)} returns the unit normalized form of polynomial \\spad{p} divided by the content of \\spad{p}.")) (|content| ((|#1| $) "\\spad{content(p)} gives the \\spad{gcd} of the coefficients of polynomial \\spad{p}.")) (|exquo| (((|Union| $ "failed") $ |#1|) "\\spad{exquo(p,{}r)} returns the exact quotient of polynomial \\spad{p} by \\spad{r},{} or \"failed\" if none exists.")) (|binomThmExpt| (($ $ $ (|NonNegativeInteger|)) "\\spad{binomThmExpt(p,{}q,{}n)} returns \\spad{(x+y)^n} by means of the binomial theorem trick.")) (|pomopo!| (($ $ |#1| |#2| $) "\\spad{pomopo!(p1,{}r,{}e,{}p2)} returns \\spad{p1 + monomial(e,{}r) * p2} and may use \\spad{p1} as workspace. The constaant \\spad{r} is assumed to be nonzero.")) (|mapExponents| (($ (|Mapping| |#2| |#2|) $) "\\spad{mapExponents(fn,{}u)} maps function \\spad{fn} onto the exponents of the non-zero monomials of polynomial \\spad{u}.")) (|minimumDegree| ((|#2| $) "\\spad{minimumDegree(p)} gives the least exponent of a non-zero term of polynomial \\spad{p}. Error: if applied to 0.")) (|numberOfMonomials| (((|NonNegativeInteger|) $) "\\spad{numberOfMonomials(p)} gives the number of non-zero monomials in polynomial \\spad{p}.")) (|coefficients| (((|List| |#1|) $) "\\spad{coefficients(p)} gives the list of non-zero coefficients of polynomial \\spad{p}.")) (|ground| ((|#1| $) "\\spad{ground(p)} retracts polynomial \\spad{p} to the coefficient ring.")) (|ground?| (((|Boolean|) $) "\\spad{ground?(p)} tests if polynomial \\spad{p} is a member of the coefficient ring.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4242 . T) (-4243 . T) (-4245 . T))
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-303 S)
+(-305 S)
((|constructor| (NIL "\\indented{1}{A FlexibleArray is the notion of an array intended to allow for growth} at the end only. Hence the following efficient operations \\indented{2}{\\spad{append(x,{}a)} meaning append item \\spad{x} at the end of the array \\spad{a}} \\indented{2}{\\spad{delete(a,{}n)} meaning delete the last item from the array \\spad{a}} Flexible arrays support the other operations inherited from \\spadtype{ExtensibleLinearAggregate}. However,{} these are not efficient. Flexible arrays combine the \\spad{O(1)} access time property of arrays with growing and shrinking at the end in \\spad{O(1)} (average) time. This is done by using an ordinary array which may have zero or more empty slots at the end. When the array becomes full it is copied into a new larger (50\\% larger) array. Conversely,{} when the array becomes less than 1/2 full,{} it is copied into a smaller array. Flexible arrays provide for an efficient implementation of many data structures in particular heaps,{} stacks and sets.")))
-((-4249 . T) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (-3255 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016)))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-304 S -3894)
+((-4251 . T) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (-3321 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018)))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-306 S -3576)
((|constructor| (NIL "FiniteAlgebraicExtensionField {\\em F} is the category of fields which are finite algebraic extensions of the field {\\em F}. If {\\em F} is finite then any finite algebraic extension of {\\em F} is finite,{} too. Let {\\em K} be a finite algebraic extension of the finite field {\\em F}. The exponentiation of elements of {\\em K} defines a \\spad{Z}-module structure on the multiplicative group of {\\em K}. The additive group of {\\em K} becomes a module over the ring of polynomials over {\\em F} via the operation \\spadfun{linearAssociatedExp}(a:K,{}f:SparseUnivariatePolynomial \\spad{F}) which is linear over {\\em F},{} \\spadignore{i.e.} for elements {\\em a} from {\\em K},{} {\\em c,{}d} from {\\em F} and {\\em f,{}g} univariate polynomials over {\\em F} we have \\spadfun{linearAssociatedExp}(a,{}cf+dg) equals {\\em c} times \\spadfun{linearAssociatedExp}(a,{}\\spad{f}) plus {\\em d} times \\spadfun{linearAssociatedExp}(a,{}\\spad{g}). Therefore \\spadfun{linearAssociatedExp} is defined completely by its action on monomials from {\\em F[X]}: \\spadfun{linearAssociatedExp}(a,{}monomial(1,{}\\spad{k})\\spad{\\$}SUP(\\spad{F})) is defined to be \\spadfun{Frobenius}(a,{}\\spad{k}) which is {\\em a**(q**k)} where {\\em q=size()\\$F}. The operations order and discreteLog associated with the multiplicative exponentiation have additive analogues associated to the operation \\spadfun{linearAssociatedExp}. These are the functions \\spadfun{linearAssociatedOrder} and \\spadfun{linearAssociatedLog},{} respectively.")) (|linearAssociatedLog| (((|Union| (|SparseUnivariatePolynomial| |#2|) "failed") $ $) "\\spad{linearAssociatedLog(b,{}a)} returns a polynomial {\\em g},{} such that the \\spadfun{linearAssociatedExp}(\\spad{b},{}\\spad{g}) equals {\\em a}. If there is no such polynomial {\\em g},{} then \\spadfun{linearAssociatedLog} fails.") (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{linearAssociatedLog(a)} returns a polynomial {\\em g},{} such that \\spadfun{linearAssociatedExp}(normalElement(),{}\\spad{g}) equals {\\em a}.")) (|linearAssociatedOrder| (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{linearAssociatedOrder(a)} retruns the monic polynomial {\\em g} of least degree,{} such that \\spadfun{linearAssociatedExp}(a,{}\\spad{g}) is 0.")) (|linearAssociatedExp| (($ $ (|SparseUnivariatePolynomial| |#2|)) "\\spad{linearAssociatedExp(a,{}f)} is linear over {\\em F},{} \\spadignore{i.e.} for elements {\\em a} from {\\em \\$},{} {\\em c,{}d} form {\\em F} and {\\em f,{}g} univariate polynomials over {\\em F} we have \\spadfun{linearAssociatedExp}(a,{}cf+dg) equals {\\em c} times \\spadfun{linearAssociatedExp}(a,{}\\spad{f}) plus {\\em d} times \\spadfun{linearAssociatedExp}(a,{}\\spad{g}). Therefore \\spadfun{linearAssociatedExp} is defined completely by its action on monomials from {\\em F[X]}: \\spadfun{linearAssociatedExp}(a,{}monomial(1,{}\\spad{k})\\spad{\\$}SUP(\\spad{F})) is defined to be \\spadfun{Frobenius}(a,{}\\spad{k}) which is {\\em a**(q**k)},{} where {\\em q=size()\\$F}.")) (|generator| (($) "\\spad{generator()} returns a root of the defining polynomial. This element generates the field as an algebra over the ground field.")) (|normal?| (((|Boolean|) $) "\\spad{normal?(a)} tests whether the element \\spad{a} is normal over the ground field \\spad{F},{} \\spadignore{i.e.} \\spad{a**(q**i),{} 0 <= i <= extensionDegree()-1} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. Implementation according to Lidl/Niederreiter: Theorem 2.39.")) (|normalElement| (($) "\\spad{normalElement()} returns a element,{} normal over the ground field \\spad{F},{} \\spadignore{i.e.} \\spad{a**(q**i),{} 0 <= i < extensionDegree()} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. At the first call,{} the element is computed by \\spadfunFrom{createNormalElement}{FiniteAlgebraicExtensionField} then cached in a global variable. On subsequent calls,{} the element is retrieved by referencing the global variable.")) (|createNormalElement| (($) "\\spad{createNormalElement()} computes a normal element over the ground field \\spad{F},{} that is,{} \\spad{a**(q**i),{} 0 <= i < extensionDegree()} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. Reference: Such an element exists Lidl/Niederreiter: Theorem 2.35.")) (|trace| (($ $ (|PositiveInteger|)) "\\spad{trace(a,{}d)} computes the trace of \\spad{a} with respect to the field of extension degree \\spad{d} over the ground field of size \\spad{q}. Error: if \\spad{d} does not divide the extension degree of \\spad{a}. Note: \\spad{trace(a,{}d) = reduce(+,{}[a**(q**(d*i)) for i in 0..n/d])}.") ((|#2| $) "\\spad{trace(a)} computes the trace of \\spad{a} with respect to the field considered as an algebra with 1 over the ground field \\spad{F}.")) (|norm| (($ $ (|PositiveInteger|)) "\\spad{norm(a,{}d)} computes the norm of \\spad{a} with respect to the field of extension degree \\spad{d} over the ground field of size. Error: if \\spad{d} does not divide the extension degree of \\spad{a}. Note: norm(a,{}\\spad{d}) = reduce(*,{}[a**(\\spad{q**}(d*i)) for \\spad{i} in 0..\\spad{n/d}])") ((|#2| $) "\\spad{norm(a)} computes the norm of \\spad{a} with respect to the field considered as an algebra with 1 over the ground field \\spad{F}.")) (|degree| (((|PositiveInteger|) $) "\\spad{degree(a)} returns the degree of the minimal polynomial of an element \\spad{a} over the ground field \\spad{F}.")) (|extensionDegree| (((|PositiveInteger|)) "\\spad{extensionDegree()} returns the degree of field extension.")) (|definingPolynomial| (((|SparseUnivariatePolynomial| |#2|)) "\\spad{definingPolynomial()} returns the polynomial used to define the field extension.")) (|minimalPolynomial| (((|SparseUnivariatePolynomial| $) $ (|PositiveInteger|)) "\\spad{minimalPolynomial(x,{}n)} computes the minimal polynomial of \\spad{x} over the field of extension degree \\spad{n} over the ground field \\spad{F}.") (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{minimalPolynomial(a)} returns the minimal polynomial of an element \\spad{a} over the ground field \\spad{F}.")) (|represents| (($ (|Vector| |#2|)) "\\spad{represents([a1,{}..,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed basis.")) (|coordinates| (((|Matrix| |#2|) (|Vector| $)) "\\spad{coordinates([v1,{}...,{}vm])} returns the coordinates of the \\spad{vi}\\spad{'s} with to the fixed basis. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#2|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{F}-vectorspace basis.")) (|basis| (((|Vector| $) (|PositiveInteger|)) "\\spad{basis(n)} returns a fixed basis of a subfield of \\spad{\\$} as \\spad{F}-vectorspace.") (((|Vector| $)) "\\spad{basis()} returns a fixed basis of \\spad{\\$} as \\spad{F}-vectorspace.")))
NIL
-((|HasCategory| |#2| (QUOTE (-344))))
-(-305 -3894)
+((|HasCategory| |#2| (QUOTE (-346))))
+(-307 -3576)
((|constructor| (NIL "FiniteAlgebraicExtensionField {\\em F} is the category of fields which are finite algebraic extensions of the field {\\em F}. If {\\em F} is finite then any finite algebraic extension of {\\em F} is finite,{} too. Let {\\em K} be a finite algebraic extension of the finite field {\\em F}. The exponentiation of elements of {\\em K} defines a \\spad{Z}-module structure on the multiplicative group of {\\em K}. The additive group of {\\em K} becomes a module over the ring of polynomials over {\\em F} via the operation \\spadfun{linearAssociatedExp}(a:K,{}f:SparseUnivariatePolynomial \\spad{F}) which is linear over {\\em F},{} \\spadignore{i.e.} for elements {\\em a} from {\\em K},{} {\\em c,{}d} from {\\em F} and {\\em f,{}g} univariate polynomials over {\\em F} we have \\spadfun{linearAssociatedExp}(a,{}cf+dg) equals {\\em c} times \\spadfun{linearAssociatedExp}(a,{}\\spad{f}) plus {\\em d} times \\spadfun{linearAssociatedExp}(a,{}\\spad{g}). Therefore \\spadfun{linearAssociatedExp} is defined completely by its action on monomials from {\\em F[X]}: \\spadfun{linearAssociatedExp}(a,{}monomial(1,{}\\spad{k})\\spad{\\$}SUP(\\spad{F})) is defined to be \\spadfun{Frobenius}(a,{}\\spad{k}) which is {\\em a**(q**k)} where {\\em q=size()\\$F}. The operations order and discreteLog associated with the multiplicative exponentiation have additive analogues associated to the operation \\spadfun{linearAssociatedExp}. These are the functions \\spadfun{linearAssociatedOrder} and \\spadfun{linearAssociatedLog},{} respectively.")) (|linearAssociatedLog| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") $ $) "\\spad{linearAssociatedLog(b,{}a)} returns a polynomial {\\em g},{} such that the \\spadfun{linearAssociatedExp}(\\spad{b},{}\\spad{g}) equals {\\em a}. If there is no such polynomial {\\em g},{} then \\spadfun{linearAssociatedLog} fails.") (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{linearAssociatedLog(a)} returns a polynomial {\\em g},{} such that \\spadfun{linearAssociatedExp}(normalElement(),{}\\spad{g}) equals {\\em a}.")) (|linearAssociatedOrder| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{linearAssociatedOrder(a)} retruns the monic polynomial {\\em g} of least degree,{} such that \\spadfun{linearAssociatedExp}(a,{}\\spad{g}) is 0.")) (|linearAssociatedExp| (($ $ (|SparseUnivariatePolynomial| |#1|)) "\\spad{linearAssociatedExp(a,{}f)} is linear over {\\em F},{} \\spadignore{i.e.} for elements {\\em a} from {\\em \\$},{} {\\em c,{}d} form {\\em F} and {\\em f,{}g} univariate polynomials over {\\em F} we have \\spadfun{linearAssociatedExp}(a,{}cf+dg) equals {\\em c} times \\spadfun{linearAssociatedExp}(a,{}\\spad{f}) plus {\\em d} times \\spadfun{linearAssociatedExp}(a,{}\\spad{g}). Therefore \\spadfun{linearAssociatedExp} is defined completely by its action on monomials from {\\em F[X]}: \\spadfun{linearAssociatedExp}(a,{}monomial(1,{}\\spad{k})\\spad{\\$}SUP(\\spad{F})) is defined to be \\spadfun{Frobenius}(a,{}\\spad{k}) which is {\\em a**(q**k)},{} where {\\em q=size()\\$F}.")) (|generator| (($) "\\spad{generator()} returns a root of the defining polynomial. This element generates the field as an algebra over the ground field.")) (|normal?| (((|Boolean|) $) "\\spad{normal?(a)} tests whether the element \\spad{a} is normal over the ground field \\spad{F},{} \\spadignore{i.e.} \\spad{a**(q**i),{} 0 <= i <= extensionDegree()-1} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. Implementation according to Lidl/Niederreiter: Theorem 2.39.")) (|normalElement| (($) "\\spad{normalElement()} returns a element,{} normal over the ground field \\spad{F},{} \\spadignore{i.e.} \\spad{a**(q**i),{} 0 <= i < extensionDegree()} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. At the first call,{} the element is computed by \\spadfunFrom{createNormalElement}{FiniteAlgebraicExtensionField} then cached in a global variable. On subsequent calls,{} the element is retrieved by referencing the global variable.")) (|createNormalElement| (($) "\\spad{createNormalElement()} computes a normal element over the ground field \\spad{F},{} that is,{} \\spad{a**(q**i),{} 0 <= i < extensionDegree()} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. Reference: Such an element exists Lidl/Niederreiter: Theorem 2.35.")) (|trace| (($ $ (|PositiveInteger|)) "\\spad{trace(a,{}d)} computes the trace of \\spad{a} with respect to the field of extension degree \\spad{d} over the ground field of size \\spad{q}. Error: if \\spad{d} does not divide the extension degree of \\spad{a}. Note: \\spad{trace(a,{}d) = reduce(+,{}[a**(q**(d*i)) for i in 0..n/d])}.") ((|#1| $) "\\spad{trace(a)} computes the trace of \\spad{a} with respect to the field considered as an algebra with 1 over the ground field \\spad{F}.")) (|norm| (($ $ (|PositiveInteger|)) "\\spad{norm(a,{}d)} computes the norm of \\spad{a} with respect to the field of extension degree \\spad{d} over the ground field of size. Error: if \\spad{d} does not divide the extension degree of \\spad{a}. Note: norm(a,{}\\spad{d}) = reduce(*,{}[a**(\\spad{q**}(d*i)) for \\spad{i} in 0..\\spad{n/d}])") ((|#1| $) "\\spad{norm(a)} computes the norm of \\spad{a} with respect to the field considered as an algebra with 1 over the ground field \\spad{F}.")) (|degree| (((|PositiveInteger|) $) "\\spad{degree(a)} returns the degree of the minimal polynomial of an element \\spad{a} over the ground field \\spad{F}.")) (|extensionDegree| (((|PositiveInteger|)) "\\spad{extensionDegree()} returns the degree of field extension.")) (|definingPolynomial| (((|SparseUnivariatePolynomial| |#1|)) "\\spad{definingPolynomial()} returns the polynomial used to define the field extension.")) (|minimalPolynomial| (((|SparseUnivariatePolynomial| $) $ (|PositiveInteger|)) "\\spad{minimalPolynomial(x,{}n)} computes the minimal polynomial of \\spad{x} over the field of extension degree \\spad{n} over the ground field \\spad{F}.") (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{minimalPolynomial(a)} returns the minimal polynomial of an element \\spad{a} over the ground field \\spad{F}.")) (|represents| (($ (|Vector| |#1|)) "\\spad{represents([a1,{}..,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed basis.")) (|coordinates| (((|Matrix| |#1|) (|Vector| $)) "\\spad{coordinates([v1,{}...,{}vm])} returns the coordinates of the \\spad{vi}\\spad{'s} with to the fixed basis. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#1|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{F}-vectorspace basis.")) (|basis| (((|Vector| $) (|PositiveInteger|)) "\\spad{basis(n)} returns a fixed basis of a subfield of \\spad{\\$} as \\spad{F}-vectorspace.") (((|Vector| $)) "\\spad{basis()} returns a fixed basis of \\spad{\\$} as \\spad{F}-vectorspace.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-306)
+(-308)
((|constructor| (NIL "This domain builds representations of program code segments for use with the FortranProgram domain.")) (|setLabelValue| (((|SingleInteger|) (|SingleInteger|)) "\\spad{setLabelValue(i)} resets the counter which produces labels to \\spad{i}")) (|getCode| (((|SExpression|) $) "\\spad{getCode(f)} returns a Lisp list of strings representing \\spad{f} in Fortran notation. This is used by the FortranProgram domain.")) (|printCode| (((|Void|) $) "\\spad{printCode(f)} prints out \\spad{f} in FORTRAN notation.")) (|code| (((|Union| (|:| |nullBranch| "null") (|:| |assignmentBranch| (|Record| (|:| |var| (|Symbol|)) (|:| |arrayIndex| (|List| (|Polynomial| (|Integer|)))) (|:| |rand| (|Record| (|:| |ints2Floats?| (|Boolean|)) (|:| |expr| (|OutputForm|)))))) (|:| |arrayAssignmentBranch| (|Record| (|:| |var| (|Symbol|)) (|:| |rand| (|OutputForm|)) (|:| |ints2Floats?| (|Boolean|)))) (|:| |conditionalBranch| (|Record| (|:| |switch| (|Switch|)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (|Record| (|:| |empty?| (|Boolean|)) (|:| |value| (|Record| (|:| |ints2Floats?| (|Boolean|)) (|:| |expr| (|OutputForm|)))))) (|:| |blockBranch| (|List| $)) (|:| |commentBranch| (|List| (|String|))) (|:| |callBranch| (|String|)) (|:| |forBranch| (|Record| (|:| |range| (|SegmentBinding| (|Polynomial| (|Integer|)))) (|:| |span| (|Polynomial| (|Integer|))) (|:| |body| $))) (|:| |labelBranch| (|SingleInteger|)) (|:| |loopBranch| (|Record| (|:| |switch| (|Switch|)) (|:| |body| $))) (|:| |commonBranch| (|Record| (|:| |name| (|Symbol|)) (|:| |contents| (|List| (|Symbol|))))) (|:| |printBranch| (|List| (|OutputForm|)))) $) "\\spad{code(f)} returns the internal representation of the object represented by \\spad{f}.")) (|operation| (((|Union| (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $) "\\spad{operation(f)} returns the name of the operation represented by \\spad{f}.")) (|common| (($ (|Symbol|) (|List| (|Symbol|))) "\\spad{common(name,{}contents)} creates a representation a named common block.")) (|printStatement| (($ (|List| (|OutputForm|))) "\\spad{printStatement(l)} creates a representation of a PRINT statement.")) (|save| (($) "\\spad{save()} creates a representation of a SAVE statement.")) (|stop| (($) "\\spad{stop()} creates a representation of a STOP statement.")) (|block| (($ (|List| $)) "\\spad{block(l)} creates a representation of the statements in \\spad{l} as a block.")) (|assign| (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|Complex| (|Float|)))) "\\spad{assign(x,{}l,{}y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|Float|))) "\\spad{assign(x,{}l,{}y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|Integer|))) "\\spad{assign(x,{}l,{}y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|Vector| (|Expression| (|Complex| (|Float|))))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|Expression| (|Float|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|Expression| (|Integer|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|Complex| (|Float|))))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|Float|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|Integer|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|Complex| (|Float|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|Float|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|Integer|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|MachineComplex|))) "\\spad{assign(x,{}l,{}y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|MachineFloat|))) "\\spad{assign(x,{}l,{}y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|MachineInteger|))) "\\spad{assign(x,{}l,{}y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|Vector| (|Expression| (|MachineComplex|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|Expression| (|MachineFloat|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|Expression| (|MachineInteger|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|MachineComplex|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|MachineFloat|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|MachineInteger|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|MachineComplex|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|MachineFloat|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|MachineInteger|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|MachineComplex|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|MachineFloat|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|MachineInteger|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|MachineComplex|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|MachineFloat|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|MachineInteger|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|String|)) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.")) (|cond| (($ (|Switch|) $ $) "\\spad{cond(s,{}e,{}f)} creates a representation of the FORTRAN expression IF (\\spad{s}) THEN \\spad{e} ELSE \\spad{f}.") (($ (|Switch|) $) "\\spad{cond(s,{}e)} creates a representation of the FORTRAN expression IF (\\spad{s}) THEN \\spad{e}.")) (|returns| (($ (|Expression| (|Complex| (|Float|)))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($ (|Expression| (|Integer|))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($ (|Expression| (|Float|))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($ (|Expression| (|MachineComplex|))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($ (|Expression| (|MachineInteger|))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($ (|Expression| (|MachineFloat|))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($) "\\spad{returns()} creates a representation of a FORTRAN RETURN statement.")) (|call| (($ (|String|)) "\\spad{call(s)} creates a representation of a FORTRAN CALL statement")) (|comment| (($ (|List| (|String|))) "\\spad{comment(s)} creates a representation of the Strings \\spad{s} as a multi-line FORTRAN comment.") (($ (|String|)) "\\spad{comment(s)} creates a representation of the String \\spad{s} as a single FORTRAN comment.")) (|continue| (($ (|SingleInteger|)) "\\spad{continue(l)} creates a representation of a FORTRAN CONTINUE labelled with \\spad{l}")) (|goto| (($ (|SingleInteger|)) "\\spad{goto(l)} creates a representation of a FORTRAN GOTO statement")) (|repeatUntilLoop| (($ (|Switch|) $) "\\spad{repeatUntilLoop(s,{}c)} creates a repeat ... until loop in FORTRAN.")) (|whileLoop| (($ (|Switch|) $) "\\spad{whileLoop(s,{}c)} creates a while loop in FORTRAN.")) (|forLoop| (($ (|SegmentBinding| (|Polynomial| (|Integer|))) (|Polynomial| (|Integer|)) $) "\\spad{forLoop(i=1..10,{}n,{}c)} creates a representation of a FORTRAN DO loop with \\spad{i} ranging over the values 1 to 10 by \\spad{n}.") (($ (|SegmentBinding| (|Polynomial| (|Integer|))) $) "\\spad{forLoop(i=1..10,{}c)} creates a representation of a FORTRAN DO loop with \\spad{i} ranging over the values 1 to 10.")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(f)} returns an object of type OutputForm.")))
NIL
NIL
-(-307 E)
+(-309 E)
((|constructor| (NIL "\\indented{1}{Author: James Davenport} Date Created: 17 April 1992 Date Last Updated: 12 June 1992 Basic Functions: Related Constructors: Also See: AMS Classifications: Keywords: References: Description:")) (|argument| ((|#1| $) "\\spad{argument(x)} returns the argument of a given sin/cos expressions")) (|sin?| (((|Boolean|) $) "\\spad{sin?(x)} returns \\spad{true} if term is a sin,{} otherwise \\spad{false}")) (|cos| (($ |#1|) "\\spad{cos(x)} makes a cos kernel for use in Fourier series")) (|sin| (($ |#1|) "\\spad{sin(x)} makes a sin kernel for use in Fourier series")))
NIL
NIL
-(-308)
+(-310)
((|constructor| (NIL "\\spadtype{FortranCodePackage1} provides some utilities for producing useful objects in FortranCode domain. The Package may be used with the FortranCode domain and its \\spad{printCode} or possibly via an outputAsFortran. (The package provides items of use in connection with ASPs in the AXIOM-NAG link and,{} where appropriate,{} naming accords with that in IRENA.) The easy-to-use functions use Fortran loop variables I1,{} I2,{} and it is users' responsibility to check that this is sensible. The advanced functions use SegmentBinding to allow users control over Fortran loop variable names.")) (|identitySquareMatrix| (((|FortranCode|) (|Symbol|) (|Polynomial| (|Integer|))) "\\spad{identitySquareMatrix(s,{}p)} \\undocumented{}")) (|zeroSquareMatrix| (((|FortranCode|) (|Symbol|) (|Polynomial| (|Integer|))) "\\spad{zeroSquareMatrix(s,{}p)} \\undocumented{}")) (|zeroMatrix| (((|FortranCode|) (|Symbol|) (|SegmentBinding| (|Polynomial| (|Integer|))) (|SegmentBinding| (|Polynomial| (|Integer|)))) "\\spad{zeroMatrix(s,{}b,{}d)} in this version gives the user control over names of Fortran variables used in loops.") (((|FortranCode|) (|Symbol|) (|Polynomial| (|Integer|)) (|Polynomial| (|Integer|))) "\\spad{zeroMatrix(s,{}p,{}q)} uses loop variables in the Fortran,{} I1 and I2")) (|zeroVector| (((|FortranCode|) (|Symbol|) (|Polynomial| (|Integer|))) "\\spad{zeroVector(s,{}p)} \\undocumented{}")))
NIL
NIL
-(-309 R1 UP1 UPUP1 F1 R2 UP2 UPUP2 F2)
+(-311 R1 UP1 UPUP1 F1 R2 UP2 UPUP2 F2)
((|constructor| (NIL "\\indented{1}{Lift a map to finite divisors.} Author: Manuel Bronstein Date Created: 1988 Date Last Updated: 19 May 1993")) (|map| (((|FiniteDivisor| |#5| |#6| |#7| |#8|) (|Mapping| |#5| |#1|) (|FiniteDivisor| |#1| |#2| |#3| |#4|)) "\\spad{map(f,{}d)} \\undocumented{}")))
NIL
NIL
-(-310 S -3894 UP UPUP R)
+(-312 S -3576 UP UPUP R)
((|constructor| (NIL "This category describes finite rational divisors on a curve,{} that is finite formal sums SUM(\\spad{n} * \\spad{P}) where the \\spad{n}\\spad{'s} are integers and the \\spad{P}\\spad{'s} are finite rational points on the curve.")) (|generator| (((|Union| |#5| "failed") $) "\\spad{generator(d)} returns \\spad{f} if \\spad{(f) = d},{} \"failed\" if \\spad{d} is not principal.")) (|principal?| (((|Boolean|) $) "\\spad{principal?(D)} tests if the argument is the divisor of a function.")) (|reduce| (($ $) "\\spad{reduce(D)} converts \\spad{D} to some reduced form (the reduced forms can be differents in different implementations).")) (|decompose| (((|Record| (|:| |id| (|FractionalIdeal| |#3| (|Fraction| |#3|) |#4| |#5|)) (|:| |principalPart| |#5|)) $) "\\spad{decompose(d)} returns \\spad{[id,{} f]} where \\spad{d = (id) + div(f)}.")) (|divisor| (($ |#5| |#3| |#3| |#3| |#2|) "\\spad{divisor(h,{} d,{} d',{} g,{} r)} returns the sum of all the finite points where \\spad{h/d} has residue \\spad{r}. \\spad{h} must be integral. \\spad{d} must be squarefree. \\spad{d'} is some derivative of \\spad{d} (not necessarily dd/dx). \\spad{g = gcd(d,{}discriminant)} contains the ramified zeros of \\spad{d}") (($ |#2| |#2| (|Integer|)) "\\spad{divisor(a,{} b,{} n)} makes the divisor \\spad{nP} where \\spad{P:} \\spad{(x = a,{} y = b)}. \\spad{P} is allowed to be singular if \\spad{n} is a multiple of the rank.") (($ |#2| |#2|) "\\spad{divisor(a,{} b)} makes the divisor \\spad{P:} \\spad{(x = a,{} y = b)}. Error: if \\spad{P} is singular.") (($ |#5|) "\\spad{divisor(g)} returns the divisor of the function \\spad{g}.") (($ (|FractionalIdeal| |#3| (|Fraction| |#3|) |#4| |#5|)) "\\spad{divisor(I)} makes a divisor \\spad{D} from an ideal \\spad{I}.")) (|ideal| (((|FractionalIdeal| |#3| (|Fraction| |#3|) |#4| |#5|) $) "\\spad{ideal(D)} returns the ideal corresponding to a divisor \\spad{D}.")))
NIL
NIL
-(-311 -3894 UP UPUP R)
+(-313 -3576 UP UPUP R)
((|constructor| (NIL "This category describes finite rational divisors on a curve,{} that is finite formal sums SUM(\\spad{n} * \\spad{P}) where the \\spad{n}\\spad{'s} are integers and the \\spad{P}\\spad{'s} are finite rational points on the curve.")) (|generator| (((|Union| |#4| "failed") $) "\\spad{generator(d)} returns \\spad{f} if \\spad{(f) = d},{} \"failed\" if \\spad{d} is not principal.")) (|principal?| (((|Boolean|) $) "\\spad{principal?(D)} tests if the argument is the divisor of a function.")) (|reduce| (($ $) "\\spad{reduce(D)} converts \\spad{D} to some reduced form (the reduced forms can be differents in different implementations).")) (|decompose| (((|Record| (|:| |id| (|FractionalIdeal| |#2| (|Fraction| |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) "\\spad{decompose(d)} returns \\spad{[id,{} f]} where \\spad{d = (id) + div(f)}.")) (|divisor| (($ |#4| |#2| |#2| |#2| |#1|) "\\spad{divisor(h,{} d,{} d',{} g,{} r)} returns the sum of all the finite points where \\spad{h/d} has residue \\spad{r}. \\spad{h} must be integral. \\spad{d} must be squarefree. \\spad{d'} is some derivative of \\spad{d} (not necessarily dd/dx). \\spad{g = gcd(d,{}discriminant)} contains the ramified zeros of \\spad{d}") (($ |#1| |#1| (|Integer|)) "\\spad{divisor(a,{} b,{} n)} makes the divisor \\spad{nP} where \\spad{P:} \\spad{(x = a,{} y = b)}. \\spad{P} is allowed to be singular if \\spad{n} is a multiple of the rank.") (($ |#1| |#1|) "\\spad{divisor(a,{} b)} makes the divisor \\spad{P:} \\spad{(x = a,{} y = b)}. Error: if \\spad{P} is singular.") (($ |#4|) "\\spad{divisor(g)} returns the divisor of the function \\spad{g}.") (($ (|FractionalIdeal| |#2| (|Fraction| |#2|) |#3| |#4|)) "\\spad{divisor(I)} makes a divisor \\spad{D} from an ideal \\spad{I}.")) (|ideal| (((|FractionalIdeal| |#2| (|Fraction| |#2|) |#3| |#4|) $) "\\spad{ideal(D)} returns the ideal corresponding to a divisor \\spad{D}.")))
NIL
NIL
-(-312 -3894 UP UPUP R)
+(-314 -3576 UP UPUP R)
((|constructor| (NIL "This domains implements finite rational divisors on a curve,{} that is finite formal sums SUM(\\spad{n} * \\spad{P}) where the \\spad{n}\\spad{'s} are integers and the \\spad{P}\\spad{'s} are finite rational points on the curve.")) (|lSpaceBasis| (((|Vector| |#4|) $) "\\spad{lSpaceBasis(d)} returns a basis for \\spad{L(d) = {f | (f) >= -d}} as a module over \\spad{K[x]}.")) (|finiteBasis| (((|Vector| |#4|) $) "\\spad{finiteBasis(d)} returns a basis for \\spad{d} as a module over {\\em K[x]}.")))
NIL
NIL
-(-313 S R)
+(-315 S R)
((|constructor| (NIL "This category provides a selection of evaluation operations depending on what the argument type \\spad{R} provides.")) (|map| (($ (|Mapping| |#2| |#2|) $) "\\spad{map(f,{} ex)} evaluates ex,{} applying \\spad{f} to values of type \\spad{R} in ex.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -484) (QUOTE (-1087)) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -263) (|devaluate| |#2|) (|devaluate| |#2|))))
-(-314 R)
+((|HasCategory| |#2| (LIST (QUOTE -486) (QUOTE (-1089)) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -265) (|devaluate| |#2|) (|devaluate| |#2|))))
+(-316 R)
((|constructor| (NIL "This category provides a selection of evaluation operations depending on what the argument type \\spad{R} provides.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,{} ex)} evaluates ex,{} applying \\spad{f} to values of type \\spad{R} in ex.")))
NIL
NIL
-(-315 |basicSymbols| |subscriptedSymbols| R)
+(-317 |basicSymbols| |subscriptedSymbols| R)
((|constructor| (NIL "A domain of expressions involving functions which can be translated into standard Fortran-77,{} with some extra extensions from the NAG Fortran Library.")) (|useNagFunctions| (((|Boolean|) (|Boolean|)) "\\spad{useNagFunctions(v)} sets the flag which controls whether NAG functions \\indented{1}{are being used for mathematical and machine constants.\\space{2}The previous} \\indented{1}{value is returned.}") (((|Boolean|)) "\\spad{useNagFunctions()} indicates whether NAG functions are being used \\indented{1}{for mathematical and machine constants.}")) (|variables| (((|List| (|Symbol|)) $) "\\spad{variables(e)} return a list of all the variables in \\spad{e}.")) (|pi| (($) "\\spad{\\spad{pi}(x)} represents the NAG Library function X01AAF which returns \\indented{1}{an approximation to the value of \\spad{pi}}")) (|tanh| (($ $) "\\spad{tanh(x)} represents the Fortran intrinsic function TANH")) (|cosh| (($ $) "\\spad{cosh(x)} represents the Fortran intrinsic function COSH")) (|sinh| (($ $) "\\spad{sinh(x)} represents the Fortran intrinsic function SINH")) (|atan| (($ $) "\\spad{atan(x)} represents the Fortran intrinsic function ATAN")) (|acos| (($ $) "\\spad{acos(x)} represents the Fortran intrinsic function ACOS")) (|asin| (($ $) "\\spad{asin(x)} represents the Fortran intrinsic function ASIN")) (|tan| (($ $) "\\spad{tan(x)} represents the Fortran intrinsic function TAN")) (|cos| (($ $) "\\spad{cos(x)} represents the Fortran intrinsic function COS")) (|sin| (($ $) "\\spad{sin(x)} represents the Fortran intrinsic function SIN")) (|log10| (($ $) "\\spad{log10(x)} represents the Fortran intrinsic function LOG10")) (|log| (($ $) "\\spad{log(x)} represents the Fortran intrinsic function LOG")) (|exp| (($ $) "\\spad{exp(x)} represents the Fortran intrinsic function EXP")) (|sqrt| (($ $) "\\spad{sqrt(x)} represents the Fortran intrinsic function SQRT")) (|abs| (($ $) "\\spad{abs(x)} represents the Fortran intrinsic function ABS")) (|coerce| (((|Expression| |#3|) $) "\\spad{coerce(x)} \\undocumented{}")) (|retractIfCan| (((|Union| $ "failed") (|Polynomial| (|Float|))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Fraction| (|Polynomial| (|Float|)))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Expression| (|Float|))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Fraction| (|Polynomial| (|Integer|)))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Expression| (|Integer|))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Symbol|)) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a FortranExpression \\indented{1}{checking that it is one of the given basic symbols} \\indented{1}{or subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Expression| |#3|)) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}")) (|retract| (($ (|Polynomial| (|Float|))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Fraction| (|Polynomial| (|Float|)))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Expression| (|Float|))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Polynomial| (|Integer|))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Fraction| (|Polynomial| (|Integer|)))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Expression| (|Integer|))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Symbol|)) "\\spad{retract(e)} takes \\spad{e} and transforms it into a FortranExpression \\indented{1}{checking that it is one of the given basic symbols} \\indented{1}{or subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Expression| |#3|)) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}")))
-((-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-355)))) (|HasCategory| $ (QUOTE (-973))) (|HasCategory| $ (LIST (QUOTE -964) (QUOTE (-523)))))
-(-316 R1 UP1 UPUP1 F1 R2 UP2 UPUP2 F2)
+((-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-357)))) (|HasCategory| $ (QUOTE (-975))) (|HasCategory| $ (LIST (QUOTE -966) (QUOTE (-525)))))
+(-318 R1 UP1 UPUP1 F1 R2 UP2 UPUP2 F2)
((|constructor| (NIL "Lifts a map from rings to function fields over them.")) (|map| ((|#8| (|Mapping| |#5| |#1|) |#4|) "\\spad{map(f,{} p)} lifts \\spad{f} to \\spad{F1} and applies it to \\spad{p}.")))
NIL
NIL
-(-317 S -3894 UP UPUP)
+(-319 S -3576 UP UPUP)
((|constructor| (NIL "This category is a model for the function field of a plane algebraic curve.")) (|rationalPoints| (((|List| (|List| |#2|))) "\\spad{rationalPoints()} returns the list of all the affine rational points.")) (|nonSingularModel| (((|List| (|Polynomial| |#2|)) (|Symbol|)) "\\spad{nonSingularModel(u)} returns the equations in u1,{}...,{}un of an affine non-singular model for the curve.")) (|algSplitSimple| (((|Record| (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (|Mapping| |#3| |#3|)) "\\spad{algSplitSimple(f,{} D)} returns \\spad{[h,{}d,{}d',{}g]} such that \\spad{f=h/d},{} \\spad{h} is integral at all the normal places \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} \\spad{d' = Dd},{} \\spad{g = gcd(d,{} discriminant())} and \\spad{D} is the derivation to use. \\spad{f} must have at most simple finite poles.")) (|hyperelliptic| (((|Union| |#3| "failed")) "\\spad{hyperelliptic()} returns \\spad{p(x)} if the curve is the hyperelliptic defined by \\spad{y**2 = p(x)},{} \"failed\" otherwise.")) (|elliptic| (((|Union| |#3| "failed")) "\\spad{elliptic()} returns \\spad{p(x)} if the curve is the elliptic defined by \\spad{y**2 = p(x)},{} \"failed\" otherwise.")) (|elt| ((|#2| $ |#2| |#2|) "\\spad{elt(f,{}a,{}b)} or \\spad{f}(a,{} \\spad{b}) returns the value of \\spad{f} at the point \\spad{(x = a,{} y = b)} if it is not singular.")) (|primitivePart| (($ $) "\\spad{primitivePart(f)} removes the content of the denominator and the common content of the numerator of \\spad{f}.")) (|differentiate| (($ $ (|Mapping| |#3| |#3|)) "\\spad{differentiate(x,{} d)} extends the derivation \\spad{d} from UP to \\$ and applies it to \\spad{x}.")) (|integralDerivationMatrix| (((|Record| (|:| |num| (|Matrix| |#3|)) (|:| |den| |#3|)) (|Mapping| |#3| |#3|)) "\\spad{integralDerivationMatrix(d)} extends the derivation \\spad{d} from UP to \\$ and returns (\\spad{M},{} \\spad{Q}) such that the i^th row of \\spad{M} divided by \\spad{Q} form the coordinates of \\spad{d(\\spad{wi})} with respect to \\spad{(w1,{}...,{}wn)} where \\spad{(w1,{}...,{}wn)} is the integral basis returned by integralBasis().")) (|integralRepresents| (($ (|Vector| |#3|) |#3|) "\\spad{integralRepresents([A1,{}...,{}An],{} D)} returns \\spad{(A1 w1+...+An wn)/D} where \\spad{(w1,{}...,{}wn)} is the integral basis of \\spad{integralBasis()}.")) (|integralCoordinates| (((|Record| (|:| |num| (|Vector| |#3|)) (|:| |den| |#3|)) $) "\\spad{integralCoordinates(f)} returns \\spad{[[A1,{}...,{}An],{} D]} such that \\spad{f = (A1 w1 +...+ An wn) / D} where \\spad{(w1,{}...,{}wn)} is the integral basis returned by \\spad{integralBasis()}.")) (|represents| (($ (|Vector| |#3|) |#3|) "\\spad{represents([A0,{}...,{}A(n-1)],{}D)} returns \\spad{(A0 + A1 y +...+ A(n-1)*y**(n-1))/D}.") (($ (|Vector| |#3|) |#3|) "\\spad{represents([A0,{}...,{}A(n-1)],{}D)} returns \\spad{(A0 + A1 y +...+ A(n-1)*y**(n-1))/D}.")) (|yCoordinates| (((|Record| (|:| |num| (|Vector| |#3|)) (|:| |den| |#3|)) $) "\\spad{yCoordinates(f)} returns \\spad{[[A1,{}...,{}An],{} D]} such that \\spad{f = (A1 + A2 y +...+ An y**(n-1)) / D}.")) (|inverseIntegralMatrixAtInfinity| (((|Matrix| (|Fraction| |#3|))) "\\spad{inverseIntegralMatrixAtInfinity()} returns \\spad{M} such that \\spad{M (v1,{}...,{}vn) = (1,{} y,{} ...,{} y**(n-1))} where \\spad{(v1,{}...,{}vn)} is the local integral basis at infinity returned by \\spad{infIntBasis()}.")) (|integralMatrixAtInfinity| (((|Matrix| (|Fraction| |#3|))) "\\spad{integralMatrixAtInfinity()} returns \\spad{M} such that \\spad{(v1,{}...,{}vn) = M (1,{} y,{} ...,{} y**(n-1))} where \\spad{(v1,{}...,{}vn)} is the local integral basis at infinity returned by \\spad{infIntBasis()}.")) (|inverseIntegralMatrix| (((|Matrix| (|Fraction| |#3|))) "\\spad{inverseIntegralMatrix()} returns \\spad{M} such that \\spad{M (w1,{}...,{}wn) = (1,{} y,{} ...,{} y**(n-1))} where \\spad{(w1,{}...,{}wn)} is the integral basis of \\spadfunFrom{integralBasis}{FunctionFieldCategory}.")) (|integralMatrix| (((|Matrix| (|Fraction| |#3|))) "\\spad{integralMatrix()} returns \\spad{M} such that \\spad{(w1,{}...,{}wn) = M (1,{} y,{} ...,{} y**(n-1))},{} where \\spad{(w1,{}...,{}wn)} is the integral basis of \\spadfunFrom{integralBasis}{FunctionFieldCategory}.")) (|reduceBasisAtInfinity| (((|Vector| $) (|Vector| $)) "\\spad{reduceBasisAtInfinity(b1,{}...,{}bn)} returns \\spad{(x**i * bj)} for all \\spad{i},{}\\spad{j} such that \\spad{x**i*bj} is locally integral at infinity.")) (|normalizeAtInfinity| (((|Vector| $) (|Vector| $)) "\\spad{normalizeAtInfinity(v)} makes \\spad{v} normal at infinity.")) (|complementaryBasis| (((|Vector| $) (|Vector| $)) "\\spad{complementaryBasis(b1,{}...,{}bn)} returns the complementary basis \\spad{(b1',{}...,{}bn')} of \\spad{(b1,{}...,{}bn)}.")) (|integral?| (((|Boolean|) $ |#3|) "\\spad{integral?(f,{} p)} tests whether \\spad{f} is locally integral at \\spad{p(x) = 0}.") (((|Boolean|) $ |#2|) "\\spad{integral?(f,{} a)} tests whether \\spad{f} is locally integral at \\spad{x = a}.") (((|Boolean|) $) "\\spad{integral?()} tests if \\spad{f} is integral over \\spad{k[x]}.")) (|integralAtInfinity?| (((|Boolean|) $) "\\spad{integralAtInfinity?()} tests if \\spad{f} is locally integral at infinity.")) (|integralBasisAtInfinity| (((|Vector| $)) "\\spad{integralBasisAtInfinity()} returns the local integral basis at infinity.")) (|integralBasis| (((|Vector| $)) "\\spad{integralBasis()} returns the integral basis for the curve.")) (|ramified?| (((|Boolean|) |#3|) "\\spad{ramified?(p)} tests whether \\spad{p(x) = 0} is ramified.") (((|Boolean|) |#2|) "\\spad{ramified?(a)} tests whether \\spad{x = a} is ramified.")) (|ramifiedAtInfinity?| (((|Boolean|)) "\\spad{ramifiedAtInfinity?()} tests if infinity is ramified.")) (|singular?| (((|Boolean|) |#3|) "\\spad{singular?(p)} tests whether \\spad{p(x) = 0} is singular.") (((|Boolean|) |#2|) "\\spad{singular?(a)} tests whether \\spad{x = a} is singular.")) (|singularAtInfinity?| (((|Boolean|)) "\\spad{singularAtInfinity?()} tests if there is a singularity at infinity.")) (|branchPoint?| (((|Boolean|) |#3|) "\\spad{branchPoint?(p)} tests whether \\spad{p(x) = 0} is a branch point.") (((|Boolean|) |#2|) "\\spad{branchPoint?(a)} tests whether \\spad{x = a} is a branch point.")) (|branchPointAtInfinity?| (((|Boolean|)) "\\spad{branchPointAtInfinity?()} tests if there is a branch point at infinity.")) (|rationalPoint?| (((|Boolean|) |#2| |#2|) "\\spad{rationalPoint?(a,{} b)} tests if \\spad{(x=a,{}y=b)} is on the curve.")) (|absolutelyIrreducible?| (((|Boolean|)) "\\spad{absolutelyIrreducible?()} tests if the curve absolutely irreducible?")) (|genus| (((|NonNegativeInteger|)) "\\spad{genus()} returns the genus of one absolutely irreducible component")) (|numberOfComponents| (((|NonNegativeInteger|)) "\\spad{numberOfComponents()} returns the number of absolutely irreducible components.")))
NIL
-((|HasCategory| |#2| (QUOTE (-344))) (|HasCategory| |#2| (QUOTE (-339))))
-(-318 -3894 UP UPUP)
+((|HasCategory| |#2| (QUOTE (-346))) (|HasCategory| |#2| (QUOTE (-341))))
+(-320 -3576 UP UPUP)
((|constructor| (NIL "This category is a model for the function field of a plane algebraic curve.")) (|rationalPoints| (((|List| (|List| |#1|))) "\\spad{rationalPoints()} returns the list of all the affine rational points.")) (|nonSingularModel| (((|List| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{nonSingularModel(u)} returns the equations in u1,{}...,{}un of an affine non-singular model for the curve.")) (|algSplitSimple| (((|Record| (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (|Mapping| |#2| |#2|)) "\\spad{algSplitSimple(f,{} D)} returns \\spad{[h,{}d,{}d',{}g]} such that \\spad{f=h/d},{} \\spad{h} is integral at all the normal places \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} \\spad{d' = Dd},{} \\spad{g = gcd(d,{} discriminant())} and \\spad{D} is the derivation to use. \\spad{f} must have at most simple finite poles.")) (|hyperelliptic| (((|Union| |#2| "failed")) "\\spad{hyperelliptic()} returns \\spad{p(x)} if the curve is the hyperelliptic defined by \\spad{y**2 = p(x)},{} \"failed\" otherwise.")) (|elliptic| (((|Union| |#2| "failed")) "\\spad{elliptic()} returns \\spad{p(x)} if the curve is the elliptic defined by \\spad{y**2 = p(x)},{} \"failed\" otherwise.")) (|elt| ((|#1| $ |#1| |#1|) "\\spad{elt(f,{}a,{}b)} or \\spad{f}(a,{} \\spad{b}) returns the value of \\spad{f} at the point \\spad{(x = a,{} y = b)} if it is not singular.")) (|primitivePart| (($ $) "\\spad{primitivePart(f)} removes the content of the denominator and the common content of the numerator of \\spad{f}.")) (|differentiate| (($ $ (|Mapping| |#2| |#2|)) "\\spad{differentiate(x,{} d)} extends the derivation \\spad{d} from UP to \\$ and applies it to \\spad{x}.")) (|integralDerivationMatrix| (((|Record| (|:| |num| (|Matrix| |#2|)) (|:| |den| |#2|)) (|Mapping| |#2| |#2|)) "\\spad{integralDerivationMatrix(d)} extends the derivation \\spad{d} from UP to \\$ and returns (\\spad{M},{} \\spad{Q}) such that the i^th row of \\spad{M} divided by \\spad{Q} form the coordinates of \\spad{d(\\spad{wi})} with respect to \\spad{(w1,{}...,{}wn)} where \\spad{(w1,{}...,{}wn)} is the integral basis returned by integralBasis().")) (|integralRepresents| (($ (|Vector| |#2|) |#2|) "\\spad{integralRepresents([A1,{}...,{}An],{} D)} returns \\spad{(A1 w1+...+An wn)/D} where \\spad{(w1,{}...,{}wn)} is the integral basis of \\spad{integralBasis()}.")) (|integralCoordinates| (((|Record| (|:| |num| (|Vector| |#2|)) (|:| |den| |#2|)) $) "\\spad{integralCoordinates(f)} returns \\spad{[[A1,{}...,{}An],{} D]} such that \\spad{f = (A1 w1 +...+ An wn) / D} where \\spad{(w1,{}...,{}wn)} is the integral basis returned by \\spad{integralBasis()}.")) (|represents| (($ (|Vector| |#2|) |#2|) "\\spad{represents([A0,{}...,{}A(n-1)],{}D)} returns \\spad{(A0 + A1 y +...+ A(n-1)*y**(n-1))/D}.") (($ (|Vector| |#2|) |#2|) "\\spad{represents([A0,{}...,{}A(n-1)],{}D)} returns \\spad{(A0 + A1 y +...+ A(n-1)*y**(n-1))/D}.")) (|yCoordinates| (((|Record| (|:| |num| (|Vector| |#2|)) (|:| |den| |#2|)) $) "\\spad{yCoordinates(f)} returns \\spad{[[A1,{}...,{}An],{} D]} such that \\spad{f = (A1 + A2 y +...+ An y**(n-1)) / D}.")) (|inverseIntegralMatrixAtInfinity| (((|Matrix| (|Fraction| |#2|))) "\\spad{inverseIntegralMatrixAtInfinity()} returns \\spad{M} such that \\spad{M (v1,{}...,{}vn) = (1,{} y,{} ...,{} y**(n-1))} where \\spad{(v1,{}...,{}vn)} is the local integral basis at infinity returned by \\spad{infIntBasis()}.")) (|integralMatrixAtInfinity| (((|Matrix| (|Fraction| |#2|))) "\\spad{integralMatrixAtInfinity()} returns \\spad{M} such that \\spad{(v1,{}...,{}vn) = M (1,{} y,{} ...,{} y**(n-1))} where \\spad{(v1,{}...,{}vn)} is the local integral basis at infinity returned by \\spad{infIntBasis()}.")) (|inverseIntegralMatrix| (((|Matrix| (|Fraction| |#2|))) "\\spad{inverseIntegralMatrix()} returns \\spad{M} such that \\spad{M (w1,{}...,{}wn) = (1,{} y,{} ...,{} y**(n-1))} where \\spad{(w1,{}...,{}wn)} is the integral basis of \\spadfunFrom{integralBasis}{FunctionFieldCategory}.")) (|integralMatrix| (((|Matrix| (|Fraction| |#2|))) "\\spad{integralMatrix()} returns \\spad{M} such that \\spad{(w1,{}...,{}wn) = M (1,{} y,{} ...,{} y**(n-1))},{} where \\spad{(w1,{}...,{}wn)} is the integral basis of \\spadfunFrom{integralBasis}{FunctionFieldCategory}.")) (|reduceBasisAtInfinity| (((|Vector| $) (|Vector| $)) "\\spad{reduceBasisAtInfinity(b1,{}...,{}bn)} returns \\spad{(x**i * bj)} for all \\spad{i},{}\\spad{j} such that \\spad{x**i*bj} is locally integral at infinity.")) (|normalizeAtInfinity| (((|Vector| $) (|Vector| $)) "\\spad{normalizeAtInfinity(v)} makes \\spad{v} normal at infinity.")) (|complementaryBasis| (((|Vector| $) (|Vector| $)) "\\spad{complementaryBasis(b1,{}...,{}bn)} returns the complementary basis \\spad{(b1',{}...,{}bn')} of \\spad{(b1,{}...,{}bn)}.")) (|integral?| (((|Boolean|) $ |#2|) "\\spad{integral?(f,{} p)} tests whether \\spad{f} is locally integral at \\spad{p(x) = 0}.") (((|Boolean|) $ |#1|) "\\spad{integral?(f,{} a)} tests whether \\spad{f} is locally integral at \\spad{x = a}.") (((|Boolean|) $) "\\spad{integral?()} tests if \\spad{f} is integral over \\spad{k[x]}.")) (|integralAtInfinity?| (((|Boolean|) $) "\\spad{integralAtInfinity?()} tests if \\spad{f} is locally integral at infinity.")) (|integralBasisAtInfinity| (((|Vector| $)) "\\spad{integralBasisAtInfinity()} returns the local integral basis at infinity.")) (|integralBasis| (((|Vector| $)) "\\spad{integralBasis()} returns the integral basis for the curve.")) (|ramified?| (((|Boolean|) |#2|) "\\spad{ramified?(p)} tests whether \\spad{p(x) = 0} is ramified.") (((|Boolean|) |#1|) "\\spad{ramified?(a)} tests whether \\spad{x = a} is ramified.")) (|ramifiedAtInfinity?| (((|Boolean|)) "\\spad{ramifiedAtInfinity?()} tests if infinity is ramified.")) (|singular?| (((|Boolean|) |#2|) "\\spad{singular?(p)} tests whether \\spad{p(x) = 0} is singular.") (((|Boolean|) |#1|) "\\spad{singular?(a)} tests whether \\spad{x = a} is singular.")) (|singularAtInfinity?| (((|Boolean|)) "\\spad{singularAtInfinity?()} tests if there is a singularity at infinity.")) (|branchPoint?| (((|Boolean|) |#2|) "\\spad{branchPoint?(p)} tests whether \\spad{p(x) = 0} is a branch point.") (((|Boolean|) |#1|) "\\spad{branchPoint?(a)} tests whether \\spad{x = a} is a branch point.")) (|branchPointAtInfinity?| (((|Boolean|)) "\\spad{branchPointAtInfinity?()} tests if there is a branch point at infinity.")) (|rationalPoint?| (((|Boolean|) |#1| |#1|) "\\spad{rationalPoint?(a,{} b)} tests if \\spad{(x=a,{}y=b)} is on the curve.")) (|absolutelyIrreducible?| (((|Boolean|)) "\\spad{absolutelyIrreducible?()} tests if the curve absolutely irreducible?")) (|genus| (((|NonNegativeInteger|)) "\\spad{genus()} returns the genus of one absolutely irreducible component")) (|numberOfComponents| (((|NonNegativeInteger|)) "\\spad{numberOfComponents()} returns the number of absolutely irreducible components.")))
-((-4241 |has| (-383 |#2|) (-339)) (-4246 |has| (-383 |#2|) (-339)) (-4240 |has| (-383 |#2|) (-339)) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 |has| (-385 |#2|) (-341)) (-4248 |has| (-385 |#2|) (-341)) (-4242 |has| (-385 |#2|) (-341)) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-319 |p| |extdeg|)
+(-321 |p| |extdeg|)
((|constructor| (NIL "FiniteFieldCyclicGroup(\\spad{p},{}\\spad{n}) implements a finite field extension of degee \\spad{n} over the prime field with \\spad{p} elements. Its elements are represented by powers of a primitive element,{} \\spadignore{i.e.} a generator of the multiplicative (cyclic) group. As primitive element we choose the root of the extension polynomial,{} which is created by {\\em createPrimitivePoly} from \\spadtype{FiniteFieldPolynomialPackage}. The Zech logarithms are stored in a table of size half of the field size,{} and use \\spadtype{SingleInteger} for representing field elements,{} hence,{} there are restrictions on the size of the field.")) (|getZechTable| (((|PrimitiveArray| (|SingleInteger|))) "\\spad{getZechTable()} returns the zech logarithm table of the field. This table is used to perform additions in the field quickly.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((-3255 (|HasCategory| (-841 |#1|) (QUOTE (-134))) (|HasCategory| (-841 |#1|) (QUOTE (-344)))) (|HasCategory| (-841 |#1|) (QUOTE (-136))) (|HasCategory| (-841 |#1|) (QUOTE (-344))) (|HasCategory| (-841 |#1|) (QUOTE (-134))))
-(-320 GF |defpol|)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((-3321 (|HasCategory| (-843 |#1|) (QUOTE (-136))) (|HasCategory| (-843 |#1|) (QUOTE (-346)))) (|HasCategory| (-843 |#1|) (QUOTE (-138))) (|HasCategory| (-843 |#1|) (QUOTE (-346))) (|HasCategory| (-843 |#1|) (QUOTE (-136))))
+(-322 GF |defpol|)
((|constructor| (NIL "FiniteFieldCyclicGroupExtensionByPolynomial(\\spad{GF},{}defpol) implements a finite extension field of the ground field {\\em GF}. Its elements are represented by powers of a primitive element,{} \\spadignore{i.e.} a generator of the multiplicative (cyclic) group. As primitive element we choose the root of the extension polynomial {\\em defpol},{} which MUST be primitive (user responsibility). Zech logarithms are stored in a table of size half of the field size,{} and use \\spadtype{SingleInteger} for representing field elements,{} hence,{} there are restrictions on the size of the field.")) (|getZechTable| (((|PrimitiveArray| (|SingleInteger|))) "\\spad{getZechTable()} returns the zech logarithm table of the field it is used to perform additions in the field quickly.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((-3255 (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-344)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-344))) (|HasCategory| |#1| (QUOTE (-134))))
-(-321 GF |extdeg|)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((-3321 (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-346)))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-346))) (|HasCategory| |#1| (QUOTE (-136))))
+(-323 GF |extdeg|)
((|constructor| (NIL "FiniteFieldCyclicGroupExtension(\\spad{GF},{}\\spad{n}) implements a extension of degree \\spad{n} over the ground field {\\em GF}. Its elements are represented by powers of a primitive element,{} \\spadignore{i.e.} a generator of the multiplicative (cyclic) group. As primitive element we choose the root of the extension polynomial,{} which is created by {\\em createPrimitivePoly} from \\spadtype{FiniteFieldPolynomialPackage}. Zech logarithms are stored in a table of size half of the field size,{} and use \\spadtype{SingleInteger} for representing field elements,{} hence,{} there are restrictions on the size of the field.")) (|getZechTable| (((|PrimitiveArray| (|SingleInteger|))) "\\spad{getZechTable()} returns the zech logarithm table of the field. This table is used to perform additions in the field quickly.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((-3255 (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-344)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-344))) (|HasCategory| |#1| (QUOTE (-134))))
-(-322 GF)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((-3321 (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-346)))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-346))) (|HasCategory| |#1| (QUOTE (-136))))
+(-324 GF)
((|constructor| (NIL "FiniteFieldFunctions(\\spad{GF}) is a package with functions concerning finite extension fields of the finite ground field {\\em GF},{} \\spadignore{e.g.} Zech logarithms.")) (|createLowComplexityNormalBasis| (((|Union| (|SparseUnivariatePolynomial| |#1|) (|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|)))))) (|PositiveInteger|)) "\\spad{createLowComplexityNormalBasis(n)} tries to find a a low complexity normal basis of degree {\\em n} over {\\em GF} and returns its multiplication matrix If no low complexity basis is found it calls \\axiomFunFrom{createNormalPoly}{FiniteFieldPolynomialPackage}(\\spad{n}) to produce a normal polynomial of degree {\\em n} over {\\em GF}")) (|createLowComplexityTable| (((|Union| (|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|))))) "failed") (|PositiveInteger|)) "\\spad{createLowComplexityTable(n)} tries to find a low complexity normal basis of degree {\\em n} over {\\em GF} and returns its multiplication matrix Fails,{} if it does not find a low complexity basis")) (|sizeMultiplication| (((|NonNegativeInteger|) (|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|)))))) "\\spad{sizeMultiplication(m)} returns the number of entries of the multiplication table {\\em m}.")) (|createMultiplicationMatrix| (((|Matrix| |#1|) (|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|)))))) "\\spad{createMultiplicationMatrix(m)} forms the multiplication table {\\em m} into a matrix over the ground field.")) (|createMultiplicationTable| (((|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|))))) (|SparseUnivariatePolynomial| |#1|)) "\\spad{createMultiplicationTable(f)} generates a multiplication table for the normal basis of the field extension determined by {\\em f}. This is needed to perform multiplications between elements represented as coordinate vectors to this basis. See \\spadtype{FFNBP},{} \\spadtype{FFNBX}.")) (|createZechTable| (((|PrimitiveArray| (|SingleInteger|)) (|SparseUnivariatePolynomial| |#1|)) "\\spad{createZechTable(f)} generates a Zech logarithm table for the cyclic group representation of a extension of the ground field by the primitive polynomial {\\em f(x)},{} \\spadignore{i.e.} \\spad{Z(i)},{} defined by {\\em x**Z(i) = 1+x**i} is stored at index \\spad{i}. This is needed in particular to perform addition of field elements in finite fields represented in this way. See \\spadtype{FFCGP},{} \\spadtype{FFCGX}.")))
NIL
NIL
-(-323 F1 GF F2)
+(-325 F1 GF F2)
((|constructor| (NIL "FiniteFieldHomomorphisms(\\spad{F1},{}\\spad{GF},{}\\spad{F2}) exports coercion functions of elements between the fields {\\em F1} and {\\em F2},{} which both must be finite simple algebraic extensions of the finite ground field {\\em GF}.")) (|coerce| ((|#1| |#3|) "\\spad{coerce(x)} is the homomorphic image of \\spad{x} from {\\em F2} in {\\em F1},{} where {\\em coerce} is a field homomorphism between the fields extensions {\\em F2} and {\\em F1} both over ground field {\\em GF} (the second argument to the package). Error: if the extension degree of {\\em F2} doesn\\spad{'t} divide the extension degree of {\\em F1}. Note that the other coercion function in the \\spadtype{FiniteFieldHomomorphisms} is a left inverse.") ((|#3| |#1|) "\\spad{coerce(x)} is the homomorphic image of \\spad{x} from {\\em F1} in {\\em F2}. Thus {\\em coerce} is a field homomorphism between the fields extensions {\\em F1} and {\\em F2} both over ground field {\\em GF} (the second argument to the package). Error: if the extension degree of {\\em F1} doesn\\spad{'t} divide the extension degree of {\\em F2}. Note that the other coercion function in the \\spadtype{FiniteFieldHomomorphisms} is a left inverse.")))
NIL
NIL
-(-324 S)
+(-326 S)
((|constructor| (NIL "FiniteFieldCategory is the category of finite fields")) (|representationType| (((|Union| "prime" "polynomial" "normal" "cyclic")) "\\spad{representationType()} returns the type of the representation,{} one of: \\spad{prime},{} \\spad{polynomial},{} \\spad{normal},{} or \\spad{cyclic}.")) (|order| (((|PositiveInteger|) $) "\\spad{order(b)} computes the order of an element \\spad{b} in the multiplicative group of the field. Error: if \\spad{b} equals 0.")) (|discreteLog| (((|NonNegativeInteger|) $) "\\spad{discreteLog(a)} computes the discrete logarithm of \\spad{a} with respect to \\spad{primitiveElement()} of the field.")) (|primitive?| (((|Boolean|) $) "\\spad{primitive?(b)} tests whether the element \\spad{b} is a generator of the (cyclic) multiplicative group of the field,{} \\spadignore{i.e.} is a primitive element. Implementation Note: see \\spad{ch}.IX.1.3,{} th.2 in \\spad{D}. Lipson.")) (|primitiveElement| (($) "\\spad{primitiveElement()} returns a primitive element stored in a global variable in the domain. At first call,{} the primitive element is computed by calling \\spadfun{createPrimitiveElement}.")) (|createPrimitiveElement| (($) "\\spad{createPrimitiveElement()} computes a generator of the (cyclic) multiplicative group of the field.")) (|tableForDiscreteLogarithm| (((|Table| (|PositiveInteger|) (|NonNegativeInteger|)) (|Integer|)) "\\spad{tableForDiscreteLogarithm(a,{}n)} returns a table of the discrete logarithms of \\spad{a**0} up to \\spad{a**(n-1)} which,{} called with key \\spad{lookup(a**i)} returns \\spad{i} for \\spad{i} in \\spad{0..n-1}. Error: if not called for prime divisors of order of \\indented{7}{multiplicative group.}")) (|factorsOfCyclicGroupSize| (((|List| (|Record| (|:| |factor| (|Integer|)) (|:| |exponent| (|Integer|))))) "\\spad{factorsOfCyclicGroupSize()} returns the factorization of size()\\spad{-1}")) (|conditionP| (((|Union| (|Vector| $) "failed") (|Matrix| $)) "\\spad{conditionP(mat)},{} given a matrix representing a homogeneous system of equations,{} returns a vector whose characteristic'th powers is a non-trivial solution,{} or \"failed\" if no such vector exists.")) (|charthRoot| (($ $) "\\spad{charthRoot(a)} takes the characteristic'th root of {\\em a}. Note: such a root is alway defined in finite fields.")))
NIL
NIL
-(-325)
+(-327)
((|constructor| (NIL "FiniteFieldCategory is the category of finite fields")) (|representationType| (((|Union| "prime" "polynomial" "normal" "cyclic")) "\\spad{representationType()} returns the type of the representation,{} one of: \\spad{prime},{} \\spad{polynomial},{} \\spad{normal},{} or \\spad{cyclic}.")) (|order| (((|PositiveInteger|) $) "\\spad{order(b)} computes the order of an element \\spad{b} in the multiplicative group of the field. Error: if \\spad{b} equals 0.")) (|discreteLog| (((|NonNegativeInteger|) $) "\\spad{discreteLog(a)} computes the discrete logarithm of \\spad{a} with respect to \\spad{primitiveElement()} of the field.")) (|primitive?| (((|Boolean|) $) "\\spad{primitive?(b)} tests whether the element \\spad{b} is a generator of the (cyclic) multiplicative group of the field,{} \\spadignore{i.e.} is a primitive element. Implementation Note: see \\spad{ch}.IX.1.3,{} th.2 in \\spad{D}. Lipson.")) (|primitiveElement| (($) "\\spad{primitiveElement()} returns a primitive element stored in a global variable in the domain. At first call,{} the primitive element is computed by calling \\spadfun{createPrimitiveElement}.")) (|createPrimitiveElement| (($) "\\spad{createPrimitiveElement()} computes a generator of the (cyclic) multiplicative group of the field.")) (|tableForDiscreteLogarithm| (((|Table| (|PositiveInteger|) (|NonNegativeInteger|)) (|Integer|)) "\\spad{tableForDiscreteLogarithm(a,{}n)} returns a table of the discrete logarithms of \\spad{a**0} up to \\spad{a**(n-1)} which,{} called with key \\spad{lookup(a**i)} returns \\spad{i} for \\spad{i} in \\spad{0..n-1}. Error: if not called for prime divisors of order of \\indented{7}{multiplicative group.}")) (|factorsOfCyclicGroupSize| (((|List| (|Record| (|:| |factor| (|Integer|)) (|:| |exponent| (|Integer|))))) "\\spad{factorsOfCyclicGroupSize()} returns the factorization of size()\\spad{-1}")) (|conditionP| (((|Union| (|Vector| $) "failed") (|Matrix| $)) "\\spad{conditionP(mat)},{} given a matrix representing a homogeneous system of equations,{} returns a vector whose characteristic'th powers is a non-trivial solution,{} or \"failed\" if no such vector exists.")) (|charthRoot| (($ $) "\\spad{charthRoot(a)} takes the characteristic'th root of {\\em a}. Note: such a root is alway defined in finite fields.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-326 R UP -3894)
+(-328 R UP -3576)
((|constructor| (NIL "In this package \\spad{R} is a Euclidean domain and \\spad{F} is a framed algebra over \\spad{R}. The package provides functions to compute the integral closure of \\spad{R} in the quotient field of \\spad{F}. It is assumed that \\spad{char(R/P) = char(R)} for any prime \\spad{P} of \\spad{R}. A typical instance of this is when \\spad{R = K[x]} and \\spad{F} is a function field over \\spad{R}.")) (|localIntegralBasis| (((|Record| (|:| |basis| (|Matrix| |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (|Matrix| |#1|))) |#1|) "\\spad{integralBasis(p)} returns a record \\spad{[basis,{}basisDen,{}basisInv]} containing information regarding the local integral closure of \\spad{R} at the prime \\spad{p} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,{}w2,{}...,{}wn}. If \\spad{basis} is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the local integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if \\spad{basisInv} is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")) (|integralBasis| (((|Record| (|:| |basis| (|Matrix| |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (|Matrix| |#1|)))) "\\spad{integralBasis()} returns a record \\spad{[basis,{}basisDen,{}basisInv]} containing information regarding the integral closure of \\spad{R} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,{}w2,{}...,{}wn}. If \\spad{basis} is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if \\spad{basisInv} is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(x)} returns a square-free factorisation of \\spad{x}")))
NIL
NIL
-(-327 |p| |extdeg|)
+(-329 |p| |extdeg|)
((|constructor| (NIL "FiniteFieldNormalBasis(\\spad{p},{}\\spad{n}) implements a finite extension field of degree \\spad{n} over the prime field with \\spad{p} elements. The elements are represented by coordinate vectors with respect to a normal basis,{} \\spadignore{i.e.} a basis consisting of the conjugates (\\spad{q}-powers) of an element,{} in this case called normal element. This is chosen as a root of the extension polynomial created by \\spadfunFrom{createNormalPoly}{FiniteFieldPolynomialPackage}.")) (|sizeMultiplication| (((|NonNegativeInteger|)) "\\spad{sizeMultiplication()} returns the number of entries in the multiplication table of the field. Note: The time of multiplication of field elements depends on this size.")) (|getMultiplicationMatrix| (((|Matrix| (|PrimeField| |#1|))) "\\spad{getMultiplicationMatrix()} returns the multiplication table in form of a matrix.")) (|getMultiplicationTable| (((|Vector| (|List| (|Record| (|:| |value| (|PrimeField| |#1|)) (|:| |index| (|SingleInteger|)))))) "\\spad{getMultiplicationTable()} returns the multiplication table for the normal basis of the field. This table is used to perform multiplications between field elements.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((-3255 (|HasCategory| (-841 |#1|) (QUOTE (-134))) (|HasCategory| (-841 |#1|) (QUOTE (-344)))) (|HasCategory| (-841 |#1|) (QUOTE (-136))) (|HasCategory| (-841 |#1|) (QUOTE (-344))) (|HasCategory| (-841 |#1|) (QUOTE (-134))))
-(-328 GF |uni|)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((-3321 (|HasCategory| (-843 |#1|) (QUOTE (-136))) (|HasCategory| (-843 |#1|) (QUOTE (-346)))) (|HasCategory| (-843 |#1|) (QUOTE (-138))) (|HasCategory| (-843 |#1|) (QUOTE (-346))) (|HasCategory| (-843 |#1|) (QUOTE (-136))))
+(-330 GF |uni|)
((|constructor| (NIL "FiniteFieldNormalBasisExtensionByPolynomial(\\spad{GF},{}uni) implements a finite extension of the ground field {\\em GF}. The elements are represented by coordinate vectors with respect to. a normal basis,{} \\spadignore{i.e.} a basis consisting of the conjugates (\\spad{q}-powers) of an element,{} in this case called normal element,{} where \\spad{q} is the size of {\\em GF}. The normal element is chosen as a root of the extension polynomial,{} which MUST be normal over {\\em GF} (user responsibility)")) (|sizeMultiplication| (((|NonNegativeInteger|)) "\\spad{sizeMultiplication()} returns the number of entries in the multiplication table of the field. Note: the time of multiplication of field elements depends on this size.")) (|getMultiplicationMatrix| (((|Matrix| |#1|)) "\\spad{getMultiplicationMatrix()} returns the multiplication table in form of a matrix.")) (|getMultiplicationTable| (((|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|)))))) "\\spad{getMultiplicationTable()} returns the multiplication table for the normal basis of the field. This table is used to perform multiplications between field elements.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((-3255 (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-344)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-344))) (|HasCategory| |#1| (QUOTE (-134))))
-(-329 GF |extdeg|)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((-3321 (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-346)))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-346))) (|HasCategory| |#1| (QUOTE (-136))))
+(-331 GF |extdeg|)
((|constructor| (NIL "FiniteFieldNormalBasisExtensionByPolynomial(\\spad{GF},{}\\spad{n}) implements a finite extension field of degree \\spad{n} over the ground field {\\em GF}. The elements are represented by coordinate vectors with respect to a normal basis,{} \\spadignore{i.e.} a basis consisting of the conjugates (\\spad{q}-powers) of an element,{} in this case called normal element. This is chosen as a root of the extension polynomial,{} created by {\\em createNormalPoly} from \\spadtype{FiniteFieldPolynomialPackage}")) (|sizeMultiplication| (((|NonNegativeInteger|)) "\\spad{sizeMultiplication()} returns the number of entries in the multiplication table of the field. Note: the time of multiplication of field elements depends on this size.")) (|getMultiplicationMatrix| (((|Matrix| |#1|)) "\\spad{getMultiplicationMatrix()} returns the multiplication table in form of a matrix.")) (|getMultiplicationTable| (((|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|)))))) "\\spad{getMultiplicationTable()} returns the multiplication table for the normal basis of the field. This table is used to perform multiplications between field elements.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((-3255 (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-344)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-344))) (|HasCategory| |#1| (QUOTE (-134))))
-(-330 |p| |n|)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((-3321 (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-346)))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-346))) (|HasCategory| |#1| (QUOTE (-136))))
+(-332 |p| |n|)
((|constructor| (NIL "FiniteField(\\spad{p},{}\\spad{n}) implements finite fields with p**n elements. This packages checks that \\spad{p} is prime. For a non-checking version,{} see \\spadtype{InnerFiniteField}.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((-3255 (|HasCategory| (-841 |#1|) (QUOTE (-134))) (|HasCategory| (-841 |#1|) (QUOTE (-344)))) (|HasCategory| (-841 |#1|) (QUOTE (-136))) (|HasCategory| (-841 |#1|) (QUOTE (-344))) (|HasCategory| (-841 |#1|) (QUOTE (-134))))
-(-331 GF |defpol|)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((-3321 (|HasCategory| (-843 |#1|) (QUOTE (-136))) (|HasCategory| (-843 |#1|) (QUOTE (-346)))) (|HasCategory| (-843 |#1|) (QUOTE (-138))) (|HasCategory| (-843 |#1|) (QUOTE (-346))) (|HasCategory| (-843 |#1|) (QUOTE (-136))))
+(-333 GF |defpol|)
((|constructor| (NIL "FiniteFieldExtensionByPolynomial(\\spad{GF},{} defpol) implements the extension of the finite field {\\em GF} generated by the extension polynomial {\\em defpol} which MUST be irreducible. Note: the user has the responsibility to ensure that {\\em defpol} is irreducible.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((-3255 (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-344)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-344))) (|HasCategory| |#1| (QUOTE (-134))))
-(-332 -3894 GF)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((-3321 (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-346)))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-346))) (|HasCategory| |#1| (QUOTE (-136))))
+(-334 -3576 GF)
((|constructor| (NIL "FiniteFieldPolynomialPackage2(\\spad{F},{}\\spad{GF}) exports some functions concerning finite fields,{} which depend on a finite field {\\em GF} and an algebraic extension \\spad{F} of {\\em GF},{} \\spadignore{e.g.} a zero of a polynomial over {\\em GF} in \\spad{F}.")) (|rootOfIrreduciblePoly| ((|#1| (|SparseUnivariatePolynomial| |#2|)) "\\spad{rootOfIrreduciblePoly(f)} computes one root of the monic,{} irreducible polynomial \\spad{f},{} which degree must divide the extension degree of {\\em F} over {\\em GF},{} \\spadignore{i.e.} \\spad{f} splits into linear factors over {\\em F}.")) (|Frobenius| ((|#1| |#1|) "\\spad{Frobenius(x)} \\undocumented{}")) (|basis| (((|Vector| |#1|) (|PositiveInteger|)) "\\spad{basis(n)} \\undocumented{}")) (|lookup| (((|PositiveInteger|) |#1|) "\\spad{lookup(x)} \\undocumented{}")) (|coerce| ((|#1| |#2|) "\\spad{coerce(x)} \\undocumented{}")))
NIL
NIL
-(-333 GF)
+(-335 GF)
((|constructor| (NIL "This package provides a number of functions for generating,{} counting and testing irreducible,{} normal,{} primitive,{} random polynomials over finite fields.")) (|reducedQPowers| (((|PrimitiveArray| (|SparseUnivariatePolynomial| |#1|)) (|SparseUnivariatePolynomial| |#1|)) "\\spad{reducedQPowers(f)} generates \\spad{[x,{}x**q,{}x**(q**2),{}...,{}x**(q**(n-1))]} reduced modulo \\spad{f} where \\spad{q = size()\\$GF} and \\spad{n = degree f}.")) (|leastAffineMultiple| (((|SparseUnivariatePolynomial| |#1|) (|SparseUnivariatePolynomial| |#1|)) "\\spad{leastAffineMultiple(f)} computes the least affine polynomial which is divisible by the polynomial \\spad{f} over the finite field {\\em GF},{} \\spadignore{i.e.} a polynomial whose exponents are 0 or a power of \\spad{q},{} the size of {\\em GF}.")) (|random| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|) (|PositiveInteger|)) "\\spad{random(m,{}n)}\\$FFPOLY(\\spad{GF}) generates a random monic polynomial of degree \\spad{d} over the finite field {\\em GF},{} \\spad{d} between \\spad{m} and \\spad{n}.") (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{random(n)}\\$FFPOLY(\\spad{GF}) generates a random monic polynomial of degree \\spad{n} over the finite field {\\em GF}.")) (|nextPrimitiveNormalPoly| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") (|SparseUnivariatePolynomial| |#1|)) "\\spad{nextPrimitiveNormalPoly(f)} yields the next primitive normal polynomial over a finite field {\\em GF} of the same degree as \\spad{f} in the following order,{} or \"failed\" if there are no greater ones. Error: if \\spad{f} has degree 0. Note: the input polynomial \\spad{f} is made monic. Also,{} \\spad{f < g} if the {\\em lookup} of the constant term of \\spad{f} is less than this number for \\spad{g} or,{} in case these numbers are equal,{} if the {\\em lookup} of the coefficient of the term of degree {\\em n-1} of \\spad{f} is less than this number for \\spad{g}. If these numbers are equals,{} \\spad{f < g} if the number of monomials of \\spad{f} is less than that for \\spad{g},{} or if the lists of exponents for \\spad{f} are lexicographically less than those for \\spad{g}. If these lists are also equal,{} the lists of coefficients are coefficients according to the lexicographic ordering induced by the ordering of the elements of {\\em GF} given by {\\em lookup}. This operation is equivalent to nextNormalPrimitivePoly(\\spad{f}).")) (|nextNormalPrimitivePoly| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") (|SparseUnivariatePolynomial| |#1|)) "\\spad{nextNormalPrimitivePoly(f)} yields the next normal primitive polynomial over a finite field {\\em GF} of the same degree as \\spad{f} in the following order,{} or \"failed\" if there are no greater ones. Error: if \\spad{f} has degree 0. Note: the input polynomial \\spad{f} is made monic. Also,{} \\spad{f < g} if the {\\em lookup} of the constant term of \\spad{f} is less than this number for \\spad{g} or if {\\em lookup} of the coefficient of the term of degree {\\em n-1} of \\spad{f} is less than this number for \\spad{g}. Otherwise,{} \\spad{f < g} if the number of monomials of \\spad{f} is less than that for \\spad{g} or if the lists of exponents for \\spad{f} are lexicographically less than those for \\spad{g}. If these lists are also equal,{} the lists of coefficients are compared according to the lexicographic ordering induced by the ordering of the elements of {\\em GF} given by {\\em lookup}. This operation is equivalent to nextPrimitiveNormalPoly(\\spad{f}).")) (|nextNormalPoly| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") (|SparseUnivariatePolynomial| |#1|)) "\\spad{nextNormalPoly(f)} yields the next normal polynomial over a finite field {\\em GF} of the same degree as \\spad{f} in the following order,{} or \"failed\" if there are no greater ones. Error: if \\spad{f} has degree 0. Note: the input polynomial \\spad{f} is made monic. Also,{} \\spad{f < g} if the {\\em lookup} of the coefficient of the term of degree {\\em n-1} of \\spad{f} is less than that for \\spad{g}. In case these numbers are equal,{} \\spad{f < g} if if the number of monomials of \\spad{f} is less that for \\spad{g} or if the list of exponents of \\spad{f} are lexicographically less than the corresponding list for \\spad{g}. If these lists are also equal,{} the lists of coefficients are compared according to the lexicographic ordering induced by the ordering of the elements of {\\em GF} given by {\\em lookup}.")) (|nextPrimitivePoly| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") (|SparseUnivariatePolynomial| |#1|)) "\\spad{nextPrimitivePoly(f)} yields the next primitive polynomial over a finite field {\\em GF} of the same degree as \\spad{f} in the following order,{} or \"failed\" if there are no greater ones. Error: if \\spad{f} has degree 0. Note: the input polynomial \\spad{f} is made monic. Also,{} \\spad{f < g} if the {\\em lookup} of the constant term of \\spad{f} is less than this number for \\spad{g}. If these values are equal,{} then \\spad{f < g} if if the number of monomials of \\spad{f} is less than that for \\spad{g} or if the lists of exponents of \\spad{f} are lexicographically less than the corresponding list for \\spad{g}. If these lists are also equal,{} the lists of coefficients are compared according to the lexicographic ordering induced by the ordering of the elements of {\\em GF} given by {\\em lookup}.")) (|nextIrreduciblePoly| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") (|SparseUnivariatePolynomial| |#1|)) "\\spad{nextIrreduciblePoly(f)} yields the next monic irreducible polynomial over a finite field {\\em GF} of the same degree as \\spad{f} in the following order,{} or \"failed\" if there are no greater ones. Error: if \\spad{f} has degree 0. Note: the input polynomial \\spad{f} is made monic. Also,{} \\spad{f < g} if the number of monomials of \\spad{f} is less than this number for \\spad{g}. If \\spad{f} and \\spad{g} have the same number of monomials,{} the lists of exponents are compared lexicographically. If these lists are also equal,{} the lists of coefficients are compared according to the lexicographic ordering induced by the ordering of the elements of {\\em GF} given by {\\em lookup}.")) (|createPrimitiveNormalPoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{createPrimitiveNormalPoly(n)}\\$FFPOLY(\\spad{GF}) generates a normal and primitive polynomial of degree \\spad{n} over the field {\\em GF}. polynomial of degree \\spad{n} over the field {\\em GF}.")) (|createNormalPrimitivePoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{createNormalPrimitivePoly(n)}\\$FFPOLY(\\spad{GF}) generates a normal and primitive polynomial of degree \\spad{n} over the field {\\em GF}. Note: this function is equivalent to createPrimitiveNormalPoly(\\spad{n})")) (|createNormalPoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{createNormalPoly(n)}\\$FFPOLY(\\spad{GF}) generates a normal polynomial of degree \\spad{n} over the finite field {\\em GF}.")) (|createPrimitivePoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{createPrimitivePoly(n)}\\$FFPOLY(\\spad{GF}) generates a primitive polynomial of degree \\spad{n} over the finite field {\\em GF}.")) (|createIrreduciblePoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{createIrreduciblePoly(n)}\\$FFPOLY(\\spad{GF}) generates a monic irreducible univariate polynomial of degree \\spad{n} over the finite field {\\em GF}.")) (|numberOfNormalPoly| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{numberOfNormalPoly(n)}\\$FFPOLY(\\spad{GF}) yields the number of normal polynomials of degree \\spad{n} over the finite field {\\em GF}.")) (|numberOfPrimitivePoly| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{numberOfPrimitivePoly(n)}\\$FFPOLY(\\spad{GF}) yields the number of primitive polynomials of degree \\spad{n} over the finite field {\\em GF}.")) (|numberOfIrreduciblePoly| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{numberOfIrreduciblePoly(n)}\\$FFPOLY(\\spad{GF}) yields the number of monic irreducible univariate polynomials of degree \\spad{n} over the finite field {\\em GF}.")) (|normal?| (((|Boolean|) (|SparseUnivariatePolynomial| |#1|)) "\\spad{normal?(f)} tests whether the polynomial \\spad{f} over a finite field is normal,{} \\spadignore{i.e.} its roots are linearly independent over the field.")) (|primitive?| (((|Boolean|) (|SparseUnivariatePolynomial| |#1|)) "\\spad{primitive?(f)} tests whether the polynomial \\spad{f} over a finite field is primitive,{} \\spadignore{i.e.} all its roots are primitive.")))
NIL
NIL
-(-334 -3894 FP FPP)
+(-336 -3576 FP FPP)
((|constructor| (NIL "This package solves linear diophantine equations for Bivariate polynomials over finite fields")) (|solveLinearPolynomialEquation| (((|Union| (|List| |#3|) "failed") (|List| |#3|) |#3|) "\\spad{solveLinearPolynomialEquation([f1,{} ...,{} fn],{} g)} (where the \\spad{fi} are relatively prime to each other) returns a list of \\spad{ai} such that \\spad{g/prod \\spad{fi} = sum ai/fi} or returns \"failed\" if no such list of \\spad{ai}\\spad{'s} exists.")))
NIL
NIL
-(-335 GF |n|)
+(-337 GF |n|)
((|constructor| (NIL "FiniteFieldExtensionByPolynomial(\\spad{GF},{} \\spad{n}) implements an extension of the finite field {\\em GF} of degree \\spad{n} generated by the extension polynomial constructed by \\spadfunFrom{createIrreduciblePoly}{FiniteFieldPolynomialPackage} from \\spadtype{FiniteFieldPolynomialPackage}.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((-3255 (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-344)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-344))) (|HasCategory| |#1| (QUOTE (-134))))
-(-336 R |ls|)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((-3321 (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-346)))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-346))) (|HasCategory| |#1| (QUOTE (-136))))
+(-338 R |ls|)
((|constructor| (NIL "This is just an interface between several packages and domains. The goal is to compute lexicographical Groebner bases of sets of polynomial with type \\spadtype{Polynomial R} by the {\\em FGLM} algorithm if this is possible (\\spadignore{i.e.} if the input system generates a zero-dimensional ideal).")) (|groebner| (((|List| (|Polynomial| |#1|)) (|List| (|Polynomial| |#1|))) "\\axiom{groebner(\\spad{lq1})} returns the lexicographical Groebner basis of \\axiom{\\spad{lq1}}. If \\axiom{\\spad{lq1}} generates a zero-dimensional ideal then the {\\em FGLM} strategy is used,{} otherwise the {\\em Sugar} strategy is used.")) (|fglmIfCan| (((|Union| (|List| (|Polynomial| |#1|)) "failed") (|List| (|Polynomial| |#1|))) "\\axiom{fglmIfCan(\\spad{lq1})} returns the lexicographical Groebner basis of \\axiom{\\spad{lq1}} by using the {\\em FGLM} strategy,{} if \\axiom{zeroDimensional?(\\spad{lq1})} holds.")) (|zeroDimensional?| (((|Boolean|) (|List| (|Polynomial| |#1|))) "\\axiom{zeroDimensional?(\\spad{lq1})} returns \\spad{true} iff \\axiom{\\spad{lq1}} generates a zero-dimensional ideal \\spad{w}.\\spad{r}.\\spad{t}. the variables of \\axiom{\\spad{ls}}.")))
NIL
NIL
-(-337 S)
+(-339 S)
((|constructor| (NIL "The free group on a set \\spad{S} is the group of finite products of the form \\spad{reduce(*,{}[\\spad{si} ** \\spad{ni}])} where the \\spad{si}\\spad{'s} are in \\spad{S},{} and the \\spad{ni}\\spad{'s} are integers. The multiplication is not commutative.")) (|factors| (((|List| (|Record| (|:| |gen| |#1|) (|:| |exp| (|Integer|)))) $) "\\spad{factors(a1\\^e1,{}...,{}an\\^en)} returns \\spad{[[a1,{} e1],{}...,{}[an,{} en]]}.")) (|mapGen| (($ (|Mapping| |#1| |#1|) $) "\\spad{mapGen(f,{} a1\\^e1 ... an\\^en)} returns \\spad{f(a1)\\^e1 ... f(an)\\^en}.")) (|mapExpon| (($ (|Mapping| (|Integer|) (|Integer|)) $) "\\spad{mapExpon(f,{} a1\\^e1 ... an\\^en)} returns \\spad{a1\\^f(e1) ... an\\^f(en)}.")) (|nthFactor| ((|#1| $ (|Integer|)) "\\spad{nthFactor(x,{} n)} returns the factor of the n^th monomial of \\spad{x}.")) (|nthExpon| (((|Integer|) $ (|Integer|)) "\\spad{nthExpon(x,{} n)} returns the exponent of the n^th monomial of \\spad{x}.")) (|size| (((|NonNegativeInteger|) $) "\\spad{size(x)} returns the number of monomials in \\spad{x}.")) (** (($ |#1| (|Integer|)) "\\spad{s ** n} returns the product of \\spad{s} by itself \\spad{n} times.")) (* (($ $ |#1|) "\\spad{x * s} returns the product of \\spad{x} by \\spad{s} on the right.") (($ |#1| $) "\\spad{s * x} returns the product of \\spad{x} by \\spad{s} on the left.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-338 S)
+(-340 S)
((|constructor| (NIL "The category of commutative fields,{} \\spadignore{i.e.} commutative rings where all non-zero elements have multiplicative inverses. The \\spadfun{factor} operation while trivial is useful to have defined. \\blankline")) (|canonicalsClosed| ((|attribute|) "since \\spad{0*0=0},{} \\spad{1*1=1}")) (|canonicalUnitNormal| ((|attribute|) "either 0 or 1.")) (/ (($ $ $) "\\spad{x/y} divides the element \\spad{x} by the element \\spad{y}. Error: if \\spad{y} is 0.")))
NIL
NIL
-(-339)
+(-341)
((|constructor| (NIL "The category of commutative fields,{} \\spadignore{i.e.} commutative rings where all non-zero elements have multiplicative inverses. The \\spadfun{factor} operation while trivial is useful to have defined. \\blankline")) (|canonicalsClosed| ((|attribute|) "since \\spad{0*0=0},{} \\spad{1*1=1}")) (|canonicalUnitNormal| ((|attribute|) "either 0 or 1.")) (/ (($ $ $) "\\spad{x/y} divides the element \\spad{x} by the element \\spad{y}. Error: if \\spad{y} is 0.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-340 |Name| S)
+(-342 |Name| S)
((|constructor| (NIL "This category provides an interface to operate on files in the computer\\spad{'s} file system. The precise method of naming files is determined by the Name parameter. The type of the contents of the file is determined by \\spad{S}.")) (|write!| ((|#2| $ |#2|) "\\spad{write!(f,{}s)} puts the value \\spad{s} into the file \\spad{f}. The state of \\spad{f} is modified so subsequents call to \\spad{write!} will append one after another.")) (|read!| ((|#2| $) "\\spad{read!(f)} extracts a value from file \\spad{f}. The state of \\spad{f} is modified so a subsequent call to \\spadfun{read!} will return the next element.")) (|iomode| (((|String|) $) "\\spad{iomode(f)} returns the status of the file \\spad{f}. The input/output status of \\spad{f} may be \"input\",{} \"output\" or \"closed\" mode.")) (|name| ((|#1| $) "\\spad{name(f)} returns the external name of the file \\spad{f}.")) (|close!| (($ $) "\\spad{close!(f)} returns the file \\spad{f} closed to input and output.")) (|reopen!| (($ $ (|String|)) "\\spad{reopen!(f,{}mode)} returns a file \\spad{f} reopened for operation in the indicated mode: \"input\" or \"output\". \\spad{reopen!(f,{}\"input\")} will reopen the file \\spad{f} for input.")) (|open| (($ |#1| (|String|)) "\\spad{open(s,{}mode)} returns a file \\spad{s} open for operation in the indicated mode: \"input\" or \"output\".") (($ |#1|) "\\spad{open(s)} returns the file \\spad{s} open for input.")))
NIL
NIL
-(-341 S)
+(-343 S)
((|constructor| (NIL "This domain provides a basic model of files to save arbitrary values. The operations provide sequential access to the contents.")) (|readIfCan!| (((|Union| |#1| "failed") $) "\\spad{readIfCan!(f)} returns a value from the file \\spad{f},{} if possible. If \\spad{f} is not open for reading,{} or if \\spad{f} is at the end of file then \\spad{\"failed\"} is the result.")))
NIL
NIL
-(-342 S R)
+(-344 S R)
((|constructor| (NIL "A FiniteRankNonAssociativeAlgebra is a non associative algebra over a commutative ring \\spad{R} which is a free \\spad{R}-module of finite rank.")) (|unitsKnown| ((|attribute|) "unitsKnown means that \\spadfun{recip} truly yields reciprocal or \\spad{\"failed\"} if not a unit,{} similarly for \\spadfun{leftRecip} and \\spadfun{rightRecip}. The reason is that we use left,{} respectively right,{} minimal polynomials to decide this question.")) (|unit| (((|Union| $ "failed")) "\\spad{unit()} returns a unit of the algebra (necessarily unique),{} or \\spad{\"failed\"} if there is none.")) (|rightUnit| (((|Union| $ "failed")) "\\spad{rightUnit()} returns a right unit of the algebra (not necessarily unique),{} or \\spad{\"failed\"} if there is none.")) (|leftUnit| (((|Union| $ "failed")) "\\spad{leftUnit()} returns a left unit of the algebra (not necessarily unique),{} or \\spad{\"failed\"} if there is none.")) (|rightUnits| (((|Union| (|Record| (|:| |particular| $) (|:| |basis| (|List| $))) "failed")) "\\spad{rightUnits()} returns the affine space of all right units of the algebra,{} or \\spad{\"failed\"} if there is none.")) (|leftUnits| (((|Union| (|Record| (|:| |particular| $) (|:| |basis| (|List| $))) "failed")) "\\spad{leftUnits()} returns the affine space of all left units of the algebra,{} or \\spad{\"failed\"} if there is none.")) (|rightMinimalPolynomial| (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{rightMinimalPolynomial(a)} returns the polynomial determined by the smallest non-trivial linear combination of right powers of \\spad{a}. Note: the polynomial never has a constant term as in general the algebra has no unit.")) (|leftMinimalPolynomial| (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{leftMinimalPolynomial(a)} returns the polynomial determined by the smallest non-trivial linear combination of left powers of \\spad{a}. Note: the polynomial never has a constant term as in general the algebra has no unit.")) (|associatorDependence| (((|List| (|Vector| |#2|))) "\\spad{associatorDependence()} looks for the associator identities,{} \\spadignore{i.e.} finds a basis of the solutions of the linear combinations of the six permutations of \\spad{associator(a,{}b,{}c)} which yield 0,{} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra. The order of the permutations is \\spad{123 231 312 132 321 213}.")) (|rightRecip| (((|Union| $ "failed") $) "\\spad{rightRecip(a)} returns an element,{} which is a right inverse of \\spad{a},{} or \\spad{\"failed\"} if there is no unit element,{} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|leftRecip| (((|Union| $ "failed") $) "\\spad{leftRecip(a)} returns an element,{} which is a left inverse of \\spad{a},{} or \\spad{\"failed\"} if there is no unit element,{} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(a)} returns an element,{} which is both a left and a right inverse of \\spad{a},{} or \\spad{\"failed\"} if there is no unit element,{} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|lieAlgebra?| (((|Boolean|)) "\\spad{lieAlgebra?()} tests if the algebra is anticommutative and \\spad{(a*b)*c + (b*c)*a + (c*a)*b = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra (Jacobi identity). Example: for every associative algebra \\spad{(A,{}+,{}@)} we can construct a Lie algebra \\spad{(A,{}+,{}*)},{} where \\spad{a*b := a@b-b@a}.")) (|jordanAlgebra?| (((|Boolean|)) "\\spad{jordanAlgebra?()} tests if the algebra is commutative,{} characteristic is not 2,{} and \\spad{(a*b)*a**2 - a*(b*a**2) = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra (Jordan identity). Example: for every associative algebra \\spad{(A,{}+,{}@)} we can construct a Jordan algebra \\spad{(A,{}+,{}*)},{} where \\spad{a*b := (a@b+b@a)/2}.")) (|noncommutativeJordanAlgebra?| (((|Boolean|)) "\\spad{noncommutativeJordanAlgebra?()} tests if the algebra is flexible and Jordan admissible.")) (|jordanAdmissible?| (((|Boolean|)) "\\spad{jordanAdmissible?()} tests if 2 is invertible in the coefficient domain and the multiplication defined by \\spad{(1/2)(a*b+b*a)} determines a Jordan algebra,{} \\spadignore{i.e.} satisfies the Jordan identity. The property of \\spadatt{commutative(\\spad{\"*\"})} follows from by definition.")) (|lieAdmissible?| (((|Boolean|)) "\\spad{lieAdmissible?()} tests if the algebra defined by the commutators is a Lie algebra,{} \\spadignore{i.e.} satisfies the Jacobi identity. The property of anticommutativity follows from definition.")) (|jacobiIdentity?| (((|Boolean|)) "\\spad{jacobiIdentity?()} tests if \\spad{(a*b)*c + (b*c)*a + (c*a)*b = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra. For example,{} this holds for crossed products of 3-dimensional vectors.")) (|powerAssociative?| (((|Boolean|)) "\\spad{powerAssociative?()} tests if all subalgebras generated by a single element are associative.")) (|alternative?| (((|Boolean|)) "\\spad{alternative?()} tests if \\spad{2*associator(a,{}a,{}b) = 0 = 2*associator(a,{}b,{}b)} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|flexible?| (((|Boolean|)) "\\spad{flexible?()} tests if \\spad{2*associator(a,{}b,{}a) = 0} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|rightAlternative?| (((|Boolean|)) "\\spad{rightAlternative?()} tests if \\spad{2*associator(a,{}b,{}b) = 0} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|leftAlternative?| (((|Boolean|)) "\\spad{leftAlternative?()} tests if \\spad{2*associator(a,{}a,{}b) = 0} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|antiAssociative?| (((|Boolean|)) "\\spad{antiAssociative?()} tests if multiplication in algebra is anti-associative,{} \\spadignore{i.e.} \\spad{(a*b)*c + a*(b*c) = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra.")) (|associative?| (((|Boolean|)) "\\spad{associative?()} tests if multiplication in algebra is associative.")) (|antiCommutative?| (((|Boolean|)) "\\spad{antiCommutative?()} tests if \\spad{a*a = 0} for all \\spad{a} in the algebra. Note: this implies \\spad{a*b + b*a = 0} for all \\spad{a} and \\spad{b}.")) (|commutative?| (((|Boolean|)) "\\spad{commutative?()} tests if multiplication in the algebra is commutative.")) (|rightCharacteristicPolynomial| (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{rightCharacteristicPolynomial(a)} returns the characteristic polynomial of the right regular representation of \\spad{a} with respect to any basis.")) (|leftCharacteristicPolynomial| (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{leftCharacteristicPolynomial(a)} returns the characteristic polynomial of the left regular representation of \\spad{a} with respect to any basis.")) (|rightTraceMatrix| (((|Matrix| |#2|) (|Vector| $)) "\\spad{rightTraceMatrix([v1,{}...,{}vn])} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj}.")) (|leftTraceMatrix| (((|Matrix| |#2|) (|Vector| $)) "\\spad{leftTraceMatrix([v1,{}...,{}vn])} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the left trace of the product \\spad{vi*vj}.")) (|rightDiscriminant| ((|#2| (|Vector| $)) "\\spad{rightDiscriminant([v1,{}...,{}vn])} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj}. Note: the same as \\spad{determinant(rightTraceMatrix([v1,{}...,{}vn]))}.")) (|leftDiscriminant| ((|#2| (|Vector| $)) "\\spad{leftDiscriminant([v1,{}...,{}vn])} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the left trace of the product \\spad{vi*vj}. Note: the same as \\spad{determinant(leftTraceMatrix([v1,{}...,{}vn]))}.")) (|represents| (($ (|Vector| |#2|) (|Vector| $)) "\\spad{represents([a1,{}...,{}am],{}[v1,{}...,{}vm])} returns the linear combination \\spad{a1*vm + ... + an*vm}.")) (|coordinates| (((|Matrix| |#2|) (|Vector| $) (|Vector| $)) "\\spad{coordinates([a1,{}...,{}am],{}[v1,{}...,{}vn])} returns a matrix whose \\spad{i}-th row is formed by the coordinates of \\spad{\\spad{ai}} with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}.") (((|Vector| |#2|) $ (|Vector| $)) "\\spad{coordinates(a,{}[v1,{}...,{}vn])} returns the coordinates of \\spad{a} with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}.")) (|rightNorm| ((|#2| $) "\\spad{rightNorm(a)} returns the determinant of the right regular representation of \\spad{a}.")) (|leftNorm| ((|#2| $) "\\spad{leftNorm(a)} returns the determinant of the left regular representation of \\spad{a}.")) (|rightTrace| ((|#2| $) "\\spad{rightTrace(a)} returns the trace of the right regular representation of \\spad{a}.")) (|leftTrace| ((|#2| $) "\\spad{leftTrace(a)} returns the trace of the left regular representation of \\spad{a}.")) (|rightRegularRepresentation| (((|Matrix| |#2|) $ (|Vector| $)) "\\spad{rightRegularRepresentation(a,{}[v1,{}...,{}vn])} returns the matrix of the linear map defined by right multiplication by \\spad{a} with respect to the \\spad{R}-module basis \\spad{[v1,{}...,{}vn]}.")) (|leftRegularRepresentation| (((|Matrix| |#2|) $ (|Vector| $)) "\\spad{leftRegularRepresentation(a,{}[v1,{}...,{}vn])} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the \\spad{R}-module basis \\spad{[v1,{}...,{}vn]}.")) (|structuralConstants| (((|Vector| (|Matrix| |#2|)) (|Vector| $)) "\\spad{structuralConstants([v1,{}v2,{}...,{}vm])} calculates the structural constants \\spad{[(gammaijk) for k in 1..m]} defined by \\spad{\\spad{vi} * vj = gammaij1 * v1 + ... + gammaijm * vm},{} where \\spad{[v1,{}...,{}vm]} is an \\spad{R}-module basis of a subalgebra.")) (|conditionsForIdempotents| (((|List| (|Polynomial| |#2|)) (|Vector| $)) "\\spad{conditionsForIdempotents([v1,{}...,{}vn])} determines a complete list of polynomial equations for the coefficients of idempotents with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}.")) (|rank| (((|PositiveInteger|)) "\\spad{rank()} returns the rank of the algebra as \\spad{R}-module.")) (|someBasis| (((|Vector| $)) "\\spad{someBasis()} returns some \\spad{R}-module basis.")))
NIL
-((|HasCategory| |#2| (QUOTE (-515))))
-(-343 R)
+((|HasCategory| |#2| (QUOTE (-517))))
+(-345 R)
((|constructor| (NIL "A FiniteRankNonAssociativeAlgebra is a non associative algebra over a commutative ring \\spad{R} which is a free \\spad{R}-module of finite rank.")) (|unitsKnown| ((|attribute|) "unitsKnown means that \\spadfun{recip} truly yields reciprocal or \\spad{\"failed\"} if not a unit,{} similarly for \\spadfun{leftRecip} and \\spadfun{rightRecip}. The reason is that we use left,{} respectively right,{} minimal polynomials to decide this question.")) (|unit| (((|Union| $ "failed")) "\\spad{unit()} returns a unit of the algebra (necessarily unique),{} or \\spad{\"failed\"} if there is none.")) (|rightUnit| (((|Union| $ "failed")) "\\spad{rightUnit()} returns a right unit of the algebra (not necessarily unique),{} or \\spad{\"failed\"} if there is none.")) (|leftUnit| (((|Union| $ "failed")) "\\spad{leftUnit()} returns a left unit of the algebra (not necessarily unique),{} or \\spad{\"failed\"} if there is none.")) (|rightUnits| (((|Union| (|Record| (|:| |particular| $) (|:| |basis| (|List| $))) "failed")) "\\spad{rightUnits()} returns the affine space of all right units of the algebra,{} or \\spad{\"failed\"} if there is none.")) (|leftUnits| (((|Union| (|Record| (|:| |particular| $) (|:| |basis| (|List| $))) "failed")) "\\spad{leftUnits()} returns the affine space of all left units of the algebra,{} or \\spad{\"failed\"} if there is none.")) (|rightMinimalPolynomial| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{rightMinimalPolynomial(a)} returns the polynomial determined by the smallest non-trivial linear combination of right powers of \\spad{a}. Note: the polynomial never has a constant term as in general the algebra has no unit.")) (|leftMinimalPolynomial| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{leftMinimalPolynomial(a)} returns the polynomial determined by the smallest non-trivial linear combination of left powers of \\spad{a}. Note: the polynomial never has a constant term as in general the algebra has no unit.")) (|associatorDependence| (((|List| (|Vector| |#1|))) "\\spad{associatorDependence()} looks for the associator identities,{} \\spadignore{i.e.} finds a basis of the solutions of the linear combinations of the six permutations of \\spad{associator(a,{}b,{}c)} which yield 0,{} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra. The order of the permutations is \\spad{123 231 312 132 321 213}.")) (|rightRecip| (((|Union| $ "failed") $) "\\spad{rightRecip(a)} returns an element,{} which is a right inverse of \\spad{a},{} or \\spad{\"failed\"} if there is no unit element,{} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|leftRecip| (((|Union| $ "failed") $) "\\spad{leftRecip(a)} returns an element,{} which is a left inverse of \\spad{a},{} or \\spad{\"failed\"} if there is no unit element,{} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(a)} returns an element,{} which is both a left and a right inverse of \\spad{a},{} or \\spad{\"failed\"} if there is no unit element,{} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|lieAlgebra?| (((|Boolean|)) "\\spad{lieAlgebra?()} tests if the algebra is anticommutative and \\spad{(a*b)*c + (b*c)*a + (c*a)*b = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra (Jacobi identity). Example: for every associative algebra \\spad{(A,{}+,{}@)} we can construct a Lie algebra \\spad{(A,{}+,{}*)},{} where \\spad{a*b := a@b-b@a}.")) (|jordanAlgebra?| (((|Boolean|)) "\\spad{jordanAlgebra?()} tests if the algebra is commutative,{} characteristic is not 2,{} and \\spad{(a*b)*a**2 - a*(b*a**2) = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra (Jordan identity). Example: for every associative algebra \\spad{(A,{}+,{}@)} we can construct a Jordan algebra \\spad{(A,{}+,{}*)},{} where \\spad{a*b := (a@b+b@a)/2}.")) (|noncommutativeJordanAlgebra?| (((|Boolean|)) "\\spad{noncommutativeJordanAlgebra?()} tests if the algebra is flexible and Jordan admissible.")) (|jordanAdmissible?| (((|Boolean|)) "\\spad{jordanAdmissible?()} tests if 2 is invertible in the coefficient domain and the multiplication defined by \\spad{(1/2)(a*b+b*a)} determines a Jordan algebra,{} \\spadignore{i.e.} satisfies the Jordan identity. The property of \\spadatt{commutative(\\spad{\"*\"})} follows from by definition.")) (|lieAdmissible?| (((|Boolean|)) "\\spad{lieAdmissible?()} tests if the algebra defined by the commutators is a Lie algebra,{} \\spadignore{i.e.} satisfies the Jacobi identity. The property of anticommutativity follows from definition.")) (|jacobiIdentity?| (((|Boolean|)) "\\spad{jacobiIdentity?()} tests if \\spad{(a*b)*c + (b*c)*a + (c*a)*b = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra. For example,{} this holds for crossed products of 3-dimensional vectors.")) (|powerAssociative?| (((|Boolean|)) "\\spad{powerAssociative?()} tests if all subalgebras generated by a single element are associative.")) (|alternative?| (((|Boolean|)) "\\spad{alternative?()} tests if \\spad{2*associator(a,{}a,{}b) = 0 = 2*associator(a,{}b,{}b)} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|flexible?| (((|Boolean|)) "\\spad{flexible?()} tests if \\spad{2*associator(a,{}b,{}a) = 0} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|rightAlternative?| (((|Boolean|)) "\\spad{rightAlternative?()} tests if \\spad{2*associator(a,{}b,{}b) = 0} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|leftAlternative?| (((|Boolean|)) "\\spad{leftAlternative?()} tests if \\spad{2*associator(a,{}a,{}b) = 0} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|antiAssociative?| (((|Boolean|)) "\\spad{antiAssociative?()} tests if multiplication in algebra is anti-associative,{} \\spadignore{i.e.} \\spad{(a*b)*c + a*(b*c) = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra.")) (|associative?| (((|Boolean|)) "\\spad{associative?()} tests if multiplication in algebra is associative.")) (|antiCommutative?| (((|Boolean|)) "\\spad{antiCommutative?()} tests if \\spad{a*a = 0} for all \\spad{a} in the algebra. Note: this implies \\spad{a*b + b*a = 0} for all \\spad{a} and \\spad{b}.")) (|commutative?| (((|Boolean|)) "\\spad{commutative?()} tests if multiplication in the algebra is commutative.")) (|rightCharacteristicPolynomial| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{rightCharacteristicPolynomial(a)} returns the characteristic polynomial of the right regular representation of \\spad{a} with respect to any basis.")) (|leftCharacteristicPolynomial| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{leftCharacteristicPolynomial(a)} returns the characteristic polynomial of the left regular representation of \\spad{a} with respect to any basis.")) (|rightTraceMatrix| (((|Matrix| |#1|) (|Vector| $)) "\\spad{rightTraceMatrix([v1,{}...,{}vn])} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj}.")) (|leftTraceMatrix| (((|Matrix| |#1|) (|Vector| $)) "\\spad{leftTraceMatrix([v1,{}...,{}vn])} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the left trace of the product \\spad{vi*vj}.")) (|rightDiscriminant| ((|#1| (|Vector| $)) "\\spad{rightDiscriminant([v1,{}...,{}vn])} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj}. Note: the same as \\spad{determinant(rightTraceMatrix([v1,{}...,{}vn]))}.")) (|leftDiscriminant| ((|#1| (|Vector| $)) "\\spad{leftDiscriminant([v1,{}...,{}vn])} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the left trace of the product \\spad{vi*vj}. Note: the same as \\spad{determinant(leftTraceMatrix([v1,{}...,{}vn]))}.")) (|represents| (($ (|Vector| |#1|) (|Vector| $)) "\\spad{represents([a1,{}...,{}am],{}[v1,{}...,{}vm])} returns the linear combination \\spad{a1*vm + ... + an*vm}.")) (|coordinates| (((|Matrix| |#1|) (|Vector| $) (|Vector| $)) "\\spad{coordinates([a1,{}...,{}am],{}[v1,{}...,{}vn])} returns a matrix whose \\spad{i}-th row is formed by the coordinates of \\spad{\\spad{ai}} with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}.") (((|Vector| |#1|) $ (|Vector| $)) "\\spad{coordinates(a,{}[v1,{}...,{}vn])} returns the coordinates of \\spad{a} with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}.")) (|rightNorm| ((|#1| $) "\\spad{rightNorm(a)} returns the determinant of the right regular representation of \\spad{a}.")) (|leftNorm| ((|#1| $) "\\spad{leftNorm(a)} returns the determinant of the left regular representation of \\spad{a}.")) (|rightTrace| ((|#1| $) "\\spad{rightTrace(a)} returns the trace of the right regular representation of \\spad{a}.")) (|leftTrace| ((|#1| $) "\\spad{leftTrace(a)} returns the trace of the left regular representation of \\spad{a}.")) (|rightRegularRepresentation| (((|Matrix| |#1|) $ (|Vector| $)) "\\spad{rightRegularRepresentation(a,{}[v1,{}...,{}vn])} returns the matrix of the linear map defined by right multiplication by \\spad{a} with respect to the \\spad{R}-module basis \\spad{[v1,{}...,{}vn]}.")) (|leftRegularRepresentation| (((|Matrix| |#1|) $ (|Vector| $)) "\\spad{leftRegularRepresentation(a,{}[v1,{}...,{}vn])} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the \\spad{R}-module basis \\spad{[v1,{}...,{}vn]}.")) (|structuralConstants| (((|Vector| (|Matrix| |#1|)) (|Vector| $)) "\\spad{structuralConstants([v1,{}v2,{}...,{}vm])} calculates the structural constants \\spad{[(gammaijk) for k in 1..m]} defined by \\spad{\\spad{vi} * vj = gammaij1 * v1 + ... + gammaijm * vm},{} where \\spad{[v1,{}...,{}vm]} is an \\spad{R}-module basis of a subalgebra.")) (|conditionsForIdempotents| (((|List| (|Polynomial| |#1|)) (|Vector| $)) "\\spad{conditionsForIdempotents([v1,{}...,{}vn])} determines a complete list of polynomial equations for the coefficients of idempotents with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}.")) (|rank| (((|PositiveInteger|)) "\\spad{rank()} returns the rank of the algebra as \\spad{R}-module.")) (|someBasis| (((|Vector| $)) "\\spad{someBasis()} returns some \\spad{R}-module basis.")))
-((-4245 |has| |#1| (-515)) (-4243 . T) (-4242 . T))
+((-4247 |has| |#1| (-517)) (-4245 . T) (-4244 . T))
NIL
-(-344)
+(-346)
((|constructor| (NIL "The category of domains composed of a finite set of elements. We include the functions \\spadfun{lookup} and \\spadfun{index} to give a bijection between the finite set and an initial segment of positive integers. \\blankline")) (|random| (($) "\\spad{random()} returns a random element from the set.")) (|lookup| (((|PositiveInteger|) $) "\\spad{lookup(x)} returns a positive integer such that \\spad{x = index lookup x}.")) (|index| (($ (|PositiveInteger|)) "\\spad{index(i)} takes a positive integer \\spad{i} less than or equal to \\spad{size()} and returns the \\spad{i}\\spad{-}th element of the set. This operation establishs a bijection between the elements of the finite set and \\spad{1..size()}.")) (|size| (((|NonNegativeInteger|)) "\\spad{size()} returns the number of elements in the set.")))
NIL
NIL
-(-345 S R UP)
+(-347 S R UP)
((|constructor| (NIL "A FiniteRankAlgebra is an algebra over a commutative ring \\spad{R} which is a free \\spad{R}-module of finite rank.")) (|minimalPolynomial| ((|#3| $) "\\spad{minimalPolynomial(a)} returns the minimal polynomial of \\spad{a}.")) (|characteristicPolynomial| ((|#3| $) "\\spad{characteristicPolynomial(a)} returns the characteristic polynomial of the regular representation of \\spad{a} with respect to any basis.")) (|traceMatrix| (((|Matrix| |#2|) (|Vector| $)) "\\spad{traceMatrix([v1,{}..,{}vn])} is the \\spad{n}-by-\\spad{n} matrix ( \\spad{Tr}(\\spad{vi} * \\spad{vj}) )")) (|discriminant| ((|#2| (|Vector| $)) "\\spad{discriminant([v1,{}..,{}vn])} returns \\spad{determinant(traceMatrix([v1,{}..,{}vn]))}.")) (|represents| (($ (|Vector| |#2|) (|Vector| $)) "\\spad{represents([a1,{}..,{}an],{}[v1,{}..,{}vn])} returns \\spad{a1*v1 + ... + an*vn}.")) (|coordinates| (((|Matrix| |#2|) (|Vector| $) (|Vector| $)) "\\spad{coordinates([v1,{}...,{}vm],{} basis)} returns the coordinates of the \\spad{vi}\\spad{'s} with to the basis \\spad{basis}. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#2|) $ (|Vector| $)) "\\spad{coordinates(a,{}basis)} returns the coordinates of \\spad{a} with respect to the \\spad{basis} \\spad{basis}.")) (|norm| ((|#2| $) "\\spad{norm(a)} returns the determinant of the regular representation of \\spad{a} with respect to any basis.")) (|trace| ((|#2| $) "\\spad{trace(a)} returns the trace of the regular representation of \\spad{a} with respect to any basis.")) (|regularRepresentation| (((|Matrix| |#2|) $ (|Vector| $)) "\\spad{regularRepresentation(a,{}basis)} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the \\spad{basis} \\spad{basis}.")) (|rank| (((|PositiveInteger|)) "\\spad{rank()} returns the rank of the algebra.")))
NIL
-((|HasCategory| |#2| (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-339))))
-(-346 R UP)
+((|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-138))) (|HasCategory| |#2| (QUOTE (-341))))
+(-348 R UP)
((|constructor| (NIL "A FiniteRankAlgebra is an algebra over a commutative ring \\spad{R} which is a free \\spad{R}-module of finite rank.")) (|minimalPolynomial| ((|#2| $) "\\spad{minimalPolynomial(a)} returns the minimal polynomial of \\spad{a}.")) (|characteristicPolynomial| ((|#2| $) "\\spad{characteristicPolynomial(a)} returns the characteristic polynomial of the regular representation of \\spad{a} with respect to any basis.")) (|traceMatrix| (((|Matrix| |#1|) (|Vector| $)) "\\spad{traceMatrix([v1,{}..,{}vn])} is the \\spad{n}-by-\\spad{n} matrix ( \\spad{Tr}(\\spad{vi} * \\spad{vj}) )")) (|discriminant| ((|#1| (|Vector| $)) "\\spad{discriminant([v1,{}..,{}vn])} returns \\spad{determinant(traceMatrix([v1,{}..,{}vn]))}.")) (|represents| (($ (|Vector| |#1|) (|Vector| $)) "\\spad{represents([a1,{}..,{}an],{}[v1,{}..,{}vn])} returns \\spad{a1*v1 + ... + an*vn}.")) (|coordinates| (((|Matrix| |#1|) (|Vector| $) (|Vector| $)) "\\spad{coordinates([v1,{}...,{}vm],{} basis)} returns the coordinates of the \\spad{vi}\\spad{'s} with to the basis \\spad{basis}. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#1|) $ (|Vector| $)) "\\spad{coordinates(a,{}basis)} returns the coordinates of \\spad{a} with respect to the \\spad{basis} \\spad{basis}.")) (|norm| ((|#1| $) "\\spad{norm(a)} returns the determinant of the regular representation of \\spad{a} with respect to any basis.")) (|trace| ((|#1| $) "\\spad{trace(a)} returns the trace of the regular representation of \\spad{a} with respect to any basis.")) (|regularRepresentation| (((|Matrix| |#1|) $ (|Vector| $)) "\\spad{regularRepresentation(a,{}basis)} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the \\spad{basis} \\spad{basis}.")) (|rank| (((|PositiveInteger|)) "\\spad{rank()} returns the rank of the algebra.")))
-((-4242 . T) (-4243 . T) (-4245 . T))
+((-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-347 S A R B)
+(-349 S A R B)
((|constructor| (NIL "FiniteLinearAggregateFunctions2 provides functions involving two FiniteLinearAggregates where the underlying domains might be different. An example of this might be creating a list of rational numbers by mapping a function across a list of integers where the function divides each integer by 1000.")) (|scan| ((|#4| (|Mapping| |#3| |#1| |#3|) |#2| |#3|) "\\spad{scan(f,{}a,{}r)} successively applies \\spad{reduce(f,{}x,{}r)} to more and more leading sub-aggregates \\spad{x} of aggregrate \\spad{a}. More precisely,{} if \\spad{a} is \\spad{[a1,{}a2,{}...]},{} then \\spad{scan(f,{}a,{}r)} returns \\spad{[reduce(f,{}[a1],{}r),{}reduce(f,{}[a1,{}a2],{}r),{}...]}.")) (|reduce| ((|#3| (|Mapping| |#3| |#1| |#3|) |#2| |#3|) "\\spad{reduce(f,{}a,{}r)} applies function \\spad{f} to each successive element of the aggregate \\spad{a} and an accumulant initialized to \\spad{r}. For example,{} \\spad{reduce(_+\\$Integer,{}[1,{}2,{}3],{}0)} does \\spad{3+(2+(1+0))}. Note: third argument \\spad{r} may be regarded as the identity element for the function \\spad{f}.")) (|map| ((|#4| (|Mapping| |#3| |#1|) |#2|) "\\spad{map(f,{}a)} applies function \\spad{f} to each member of aggregate \\spad{a} resulting in a new aggregate over a possibly different underlying domain.")))
NIL
NIL
-(-348 A S)
+(-350 A S)
((|constructor| (NIL "A finite linear aggregate is a linear aggregate of finite length. The finite property of the aggregate adds several exports to the list of exports from \\spadtype{LinearAggregate} such as \\spadfun{reverse},{} \\spadfun{sort},{} and so on.")) (|sort!| (($ $) "\\spad{sort!(u)} returns \\spad{u} with its elements in ascending order.") (($ (|Mapping| (|Boolean|) |#2| |#2|) $) "\\spad{sort!(p,{}u)} returns \\spad{u} with its elements ordered by \\spad{p}.")) (|reverse!| (($ $) "\\spad{reverse!(u)} returns \\spad{u} with its elements in reverse order.")) (|copyInto!| (($ $ $ (|Integer|)) "\\spad{copyInto!(u,{}v,{}i)} returns aggregate \\spad{u} containing a copy of \\spad{v} inserted at element \\spad{i}.")) (|position| (((|Integer|) |#2| $ (|Integer|)) "\\spad{position(x,{}a,{}n)} returns the index \\spad{i} of the first occurrence of \\spad{x} in \\axiom{a} where \\axiom{\\spad{i} \\spad{>=} \\spad{n}},{} and \\axiom{minIndex(a) - 1} if no such \\spad{x} is found.") (((|Integer|) |#2| $) "\\spad{position(x,{}a)} returns the index \\spad{i} of the first occurrence of \\spad{x} in a,{} and \\axiom{minIndex(a) - 1} if there is no such \\spad{x}.") (((|Integer|) (|Mapping| (|Boolean|) |#2|) $) "\\spad{position(p,{}a)} returns the index \\spad{i} of the first \\spad{x} in \\axiom{a} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true},{} and \\axiom{minIndex(a) - 1} if there is no such \\spad{x}.")) (|sorted?| (((|Boolean|) $) "\\spad{sorted?(u)} tests if the elements of \\spad{u} are in ascending order.") (((|Boolean|) (|Mapping| (|Boolean|) |#2| |#2|) $) "\\spad{sorted?(p,{}a)} tests if \\axiom{a} is sorted according to predicate \\spad{p}.")) (|sort| (($ $) "\\spad{sort(u)} returns an \\spad{u} with elements in ascending order. Note: \\axiom{sort(\\spad{u}) = sort(\\spad{<=},{}\\spad{u})}.") (($ (|Mapping| (|Boolean|) |#2| |#2|) $) "\\spad{sort(p,{}a)} returns a copy of \\axiom{a} sorted using total ordering predicate \\spad{p}.")) (|reverse| (($ $) "\\spad{reverse(a)} returns a copy of \\axiom{a} with elements in reverse order.")) (|merge| (($ $ $) "\\spad{merge(u,{}v)} merges \\spad{u} and \\spad{v} in ascending order. Note: \\axiom{merge(\\spad{u},{}\\spad{v}) = merge(\\spad{<=},{}\\spad{u},{}\\spad{v})}.") (($ (|Mapping| (|Boolean|) |#2| |#2|) $ $) "\\spad{merge(p,{}a,{}b)} returns an aggregate \\spad{c} which merges \\axiom{a} and \\spad{b}. The result is produced by examining each element \\spad{x} of \\axiom{a} and \\spad{y} of \\spad{b} successively. If \\axiom{\\spad{p}(\\spad{x},{}\\spad{y})} is \\spad{true},{} then \\spad{x} is inserted into the result; otherwise \\spad{y} is inserted. If \\spad{x} is chosen,{} the next element of \\axiom{a} is examined,{} and so on. When all the elements of one aggregate are examined,{} the remaining elements of the other are appended. For example,{} \\axiom{merge(<,{}[1,{}3],{}[2,{}7,{}5])} returns \\axiom{[1,{}2,{}3,{}7,{}5]}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4249)) (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-1016))))
-(-349 S)
+((|HasAttribute| |#1| (QUOTE -4251)) (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-1018))))
+(-351 S)
((|constructor| (NIL "A finite linear aggregate is a linear aggregate of finite length. The finite property of the aggregate adds several exports to the list of exports from \\spadtype{LinearAggregate} such as \\spadfun{reverse},{} \\spadfun{sort},{} and so on.")) (|sort!| (($ $) "\\spad{sort!(u)} returns \\spad{u} with its elements in ascending order.") (($ (|Mapping| (|Boolean|) |#1| |#1|) $) "\\spad{sort!(p,{}u)} returns \\spad{u} with its elements ordered by \\spad{p}.")) (|reverse!| (($ $) "\\spad{reverse!(u)} returns \\spad{u} with its elements in reverse order.")) (|copyInto!| (($ $ $ (|Integer|)) "\\spad{copyInto!(u,{}v,{}i)} returns aggregate \\spad{u} containing a copy of \\spad{v} inserted at element \\spad{i}.")) (|position| (((|Integer|) |#1| $ (|Integer|)) "\\spad{position(x,{}a,{}n)} returns the index \\spad{i} of the first occurrence of \\spad{x} in \\axiom{a} where \\axiom{\\spad{i} \\spad{>=} \\spad{n}},{} and \\axiom{minIndex(a) - 1} if no such \\spad{x} is found.") (((|Integer|) |#1| $) "\\spad{position(x,{}a)} returns the index \\spad{i} of the first occurrence of \\spad{x} in a,{} and \\axiom{minIndex(a) - 1} if there is no such \\spad{x}.") (((|Integer|) (|Mapping| (|Boolean|) |#1|) $) "\\spad{position(p,{}a)} returns the index \\spad{i} of the first \\spad{x} in \\axiom{a} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true},{} and \\axiom{minIndex(a) - 1} if there is no such \\spad{x}.")) (|sorted?| (((|Boolean|) $) "\\spad{sorted?(u)} tests if the elements of \\spad{u} are in ascending order.") (((|Boolean|) (|Mapping| (|Boolean|) |#1| |#1|) $) "\\spad{sorted?(p,{}a)} tests if \\axiom{a} is sorted according to predicate \\spad{p}.")) (|sort| (($ $) "\\spad{sort(u)} returns an \\spad{u} with elements in ascending order. Note: \\axiom{sort(\\spad{u}) = sort(\\spad{<=},{}\\spad{u})}.") (($ (|Mapping| (|Boolean|) |#1| |#1|) $) "\\spad{sort(p,{}a)} returns a copy of \\axiom{a} sorted using total ordering predicate \\spad{p}.")) (|reverse| (($ $) "\\spad{reverse(a)} returns a copy of \\axiom{a} with elements in reverse order.")) (|merge| (($ $ $) "\\spad{merge(u,{}v)} merges \\spad{u} and \\spad{v} in ascending order. Note: \\axiom{merge(\\spad{u},{}\\spad{v}) = merge(\\spad{<=},{}\\spad{u},{}\\spad{v})}.") (($ (|Mapping| (|Boolean|) |#1| |#1|) $ $) "\\spad{merge(p,{}a,{}b)} returns an aggregate \\spad{c} which merges \\axiom{a} and \\spad{b}. The result is produced by examining each element \\spad{x} of \\axiom{a} and \\spad{y} of \\spad{b} successively. If \\axiom{\\spad{p}(\\spad{x},{}\\spad{y})} is \\spad{true},{} then \\spad{x} is inserted into the result; otherwise \\spad{y} is inserted. If \\spad{x} is chosen,{} the next element of \\axiom{a} is examined,{} and so on. When all the elements of one aggregate are examined,{} the remaining elements of the other are appended. For example,{} \\axiom{merge(<,{}[1,{}3],{}[2,{}7,{}5])} returns \\axiom{[1,{}2,{}3,{}7,{}5]}.")))
-((-4248 . T) (-2500 . T))
+((-4250 . T) (-2137 . T))
NIL
-(-350 |VarSet| R)
+(-352 |VarSet| R)
((|constructor| (NIL "The category of free Lie algebras. It is used by domains of non-commutative algebra: \\spadtype{LiePolynomial} and \\spadtype{XPBWPolynomial}. \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr})")) (|eval| (($ $ (|List| |#1|) (|List| $)) "\\axiom{eval(\\spad{p},{} [\\spad{x1},{}...,{}\\spad{xn}],{} [\\spad{v1},{}...,{}\\spad{vn}])} replaces \\axiom{\\spad{xi}} by \\axiom{\\spad{vi}} in \\axiom{\\spad{p}}.") (($ $ |#1| $) "\\axiom{eval(\\spad{p},{} \\spad{x},{} \\spad{v})} replaces \\axiom{\\spad{x}} by \\axiom{\\spad{v}} in \\axiom{\\spad{p}}.")) (|varList| (((|List| |#1|) $) "\\axiom{varList(\\spad{x})} returns the list of distinct entries of \\axiom{\\spad{x}}.")) (|trunc| (($ $ (|NonNegativeInteger|)) "\\axiom{trunc(\\spad{p},{}\\spad{n})} returns the polynomial \\axiom{\\spad{p}} truncated at order \\axiom{\\spad{n}}.")) (|mirror| (($ $) "\\axiom{mirror(\\spad{x})} returns \\axiom{Sum(r_i mirror(w_i))} if \\axiom{\\spad{x}} is \\axiom{Sum(r_i w_i)}.")) (|LiePoly| (($ (|LyndonWord| |#1|)) "\\axiom{LiePoly(\\spad{l})} returns the bracketed form of \\axiom{\\spad{l}} as a Lie polynomial.")) (|rquo| (((|XRecursivePolynomial| |#1| |#2|) (|XRecursivePolynomial| |#1| |#2|) $) "\\axiom{rquo(\\spad{x},{}\\spad{y})} returns the right simplification of \\axiom{\\spad{x}} by \\axiom{\\spad{y}}.")) (|lquo| (((|XRecursivePolynomial| |#1| |#2|) (|XRecursivePolynomial| |#1| |#2|) $) "\\axiom{lquo(\\spad{x},{}\\spad{y})} returns the left simplification of \\axiom{\\spad{x}} by \\axiom{\\spad{y}}.")) (|degree| (((|NonNegativeInteger|) $) "\\axiom{degree(\\spad{x})} returns the greatest length of a word in the support of \\axiom{\\spad{x}}.")) (|coerce| (((|XRecursivePolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{x})} returns \\axiom{\\spad{x}} as a recursive polynomial.") (((|XDistributedPolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{x})} returns \\axiom{\\spad{x}} as distributed polynomial.") (($ |#1|) "\\axiom{coerce(\\spad{x})} returns \\axiom{\\spad{x}} as a Lie polynomial.")) (|coef| ((|#2| (|XRecursivePolynomial| |#1| |#2|) $) "\\axiom{coef(\\spad{x},{}\\spad{y})} returns the scalar product of \\axiom{\\spad{x}} by \\axiom{\\spad{y}},{} the set of words being regarded as an orthogonal basis.")))
-((|JacobiIdentity| . T) (|NullSquare| . T) (-4243 . T) (-4242 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4245 . T) (-4244 . T))
NIL
-(-351 S V)
+(-353 S V)
((|constructor| (NIL "This package exports 3 sorting algorithms which work over FiniteLinearAggregates.")) (|shellSort| ((|#2| (|Mapping| (|Boolean|) |#1| |#1|) |#2|) "\\spad{shellSort(f,{} agg)} sorts the aggregate agg with the ordering function \\spad{f} using the shellSort algorithm.")) (|heapSort| ((|#2| (|Mapping| (|Boolean|) |#1| |#1|) |#2|) "\\spad{heapSort(f,{} agg)} sorts the aggregate agg with the ordering function \\spad{f} using the heapsort algorithm.")) (|quickSort| ((|#2| (|Mapping| (|Boolean|) |#1| |#1|) |#2|) "\\spad{quickSort(f,{} agg)} sorts the aggregate agg with the ordering function \\spad{f} using the quicksort algorithm.")))
NIL
NIL
-(-352 S R)
+(-354 S R)
((|constructor| (NIL "\\spad{S} is \\spadtype{FullyLinearlyExplicitRingOver R} means that \\spad{S} is a \\spadtype{LinearlyExplicitRingOver R} and,{} in addition,{} if \\spad{R} is a \\spadtype{LinearlyExplicitRingOver Integer},{} then so is \\spad{S}")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))))
-(-353 R)
+((|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))))
+(-355 R)
((|constructor| (NIL "\\spad{S} is \\spadtype{FullyLinearlyExplicitRingOver R} means that \\spad{S} is a \\spadtype{LinearlyExplicitRingOver R} and,{} in addition,{} if \\spad{R} is a \\spadtype{LinearlyExplicitRingOver Integer},{} then so is \\spad{S}")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-354 |Par|)
+(-356 |Par|)
((|constructor| (NIL "\\indented{3}{This is a package for the approximation of complex solutions for} systems of equations of rational functions with complex rational coefficients. The results are expressed as either complex rational numbers or complex floats depending on the type of the precision parameter which can be either a rational number or a floating point number.")) (|complexRoots| (((|List| (|List| (|Complex| |#1|))) (|List| (|Fraction| (|Polynomial| (|Complex| (|Integer|))))) (|List| (|Symbol|)) |#1|) "\\spad{complexRoots(lrf,{} lv,{} eps)} finds all the complex solutions of a list of rational functions with rational number coefficients with respect the the variables appearing in \\spad{lv}. Each solution is computed to precision eps and returned as list corresponding to the order of variables in \\spad{lv}.") (((|List| (|Complex| |#1|)) (|Fraction| (|Polynomial| (|Complex| (|Integer|)))) |#1|) "\\spad{complexRoots(rf,{} eps)} finds all the complex solutions of a univariate rational function with rational number coefficients. The solutions are computed to precision eps.")) (|complexSolve| (((|List| (|Equation| (|Polynomial| (|Complex| |#1|)))) (|Equation| (|Fraction| (|Polynomial| (|Complex| (|Integer|))))) |#1|) "\\spad{complexSolve(eq,{}eps)} finds all the complex solutions of the equation \\spad{eq} of rational functions with rational rational coefficients with respect to all the variables appearing in \\spad{eq},{} with precision \\spad{eps}.") (((|List| (|Equation| (|Polynomial| (|Complex| |#1|)))) (|Fraction| (|Polynomial| (|Complex| (|Integer|)))) |#1|) "\\spad{complexSolve(p,{}eps)} find all the complex solutions of the rational function \\spad{p} with complex rational coefficients with respect to all the variables appearing in \\spad{p},{} with precision \\spad{eps}.") (((|List| (|List| (|Equation| (|Polynomial| (|Complex| |#1|))))) (|List| (|Equation| (|Fraction| (|Polynomial| (|Complex| (|Integer|)))))) |#1|) "\\spad{complexSolve(leq,{}eps)} finds all the complex solutions to precision \\spad{eps} of the system \\spad{leq} of equations of rational functions over complex rationals with respect to all the variables appearing in \\spad{lp}.") (((|List| (|List| (|Equation| (|Polynomial| (|Complex| |#1|))))) (|List| (|Fraction| (|Polynomial| (|Complex| (|Integer|))))) |#1|) "\\spad{complexSolve(lp,{}eps)} finds all the complex solutions to precision \\spad{eps} of the system \\spad{lp} of rational functions over the complex rationals with respect to all the variables appearing in \\spad{lp}.")))
NIL
NIL
-(-355)
+(-357)
((|constructor| (NIL "\\spadtype{Float} implements arbitrary precision floating point arithmetic. The number of significant digits of each operation can be set to an arbitrary value (the default is 20 decimal digits). The operation \\spad{float(mantissa,{}exponent,{}\\spadfunFrom{base}{FloatingPointSystem})} for integer \\spad{mantissa},{} \\spad{exponent} specifies the number \\spad{mantissa * \\spadfunFrom{base}{FloatingPointSystem} ** exponent} The underlying representation for floats is binary not decimal. The implications of this are described below. \\blankline The model adopted is that arithmetic operations are rounded to to nearest unit in the last place,{} that is,{} accurate to within \\spad{2**(-\\spadfunFrom{bits}{FloatingPointSystem})}. Also,{} the elementary functions and constants are accurate to one unit in the last place. A float is represented as a record of two integers,{} the mantissa and the exponent. The \\spadfunFrom{base}{FloatingPointSystem} of the representation is binary,{} hence a \\spad{Record(m:mantissa,{}e:exponent)} represents the number \\spad{m * 2 ** e}. Though it is not assumed that the underlying integers are represented with a binary \\spadfunFrom{base}{FloatingPointSystem},{} the code will be most efficient when this is the the case (this is \\spad{true} in most implementations of Lisp). The decision to choose the \\spadfunFrom{base}{FloatingPointSystem} to be binary has some unfortunate consequences. First,{} decimal numbers like 0.3 cannot be represented exactly. Second,{} there is a further loss of accuracy during conversion to decimal for output. To compensate for this,{} if \\spad{d} digits of precision are specified,{} \\spad{1 + ceiling(log2 d)} bits are used. Two numbers that are displayed identically may therefore be not equal. On the other hand,{} a significant efficiency loss would be incurred if we chose to use a decimal \\spadfunFrom{base}{FloatingPointSystem} when the underlying integer base is binary. \\blankline Algorithms used: For the elementary functions,{} the general approach is to apply identities so that the taylor series can be used,{} and,{} so that it will converge within \\spad{O( sqrt n )} steps. For example,{} using the identity \\spad{exp(x) = exp(x/2)**2},{} we can compute \\spad{exp(1/3)} to \\spad{n} digits of precision as follows. We have \\spad{exp(1/3) = exp(2 ** (-sqrt s) / 3) ** (2 ** sqrt s)}. The taylor series will converge in less than sqrt \\spad{n} steps and the exponentiation requires sqrt \\spad{n} multiplications for a total of \\spad{2 sqrt n} multiplications. Assuming integer multiplication costs \\spad{O( n**2 )} the overall running time is \\spad{O( sqrt(n) n**2 )}. This approach is the best known approach for precisions up to about 10,{}000 digits at which point the methods of Brent which are \\spad{O( log(n) n**2 )} become competitive. Note also that summing the terms of the taylor series for the elementary functions is done using integer operations. This avoids the overhead of floating point operations and results in efficient code at low precisions. This implementation makes no attempt to reuse storage,{} relying on the underlying system to do \\spadgloss{garbage collection}. \\spad{I} estimate that the efficiency of this package at low precisions could be improved by a factor of 2 if in-place operations were available. \\blankline Running times: in the following,{} \\spad{n} is the number of bits of precision \\indented{5}{\\spad{*},{} \\spad{/},{} \\spad{sqrt},{} \\spad{\\spad{pi}},{} \\spad{exp1},{} \\spad{log2},{} \\spad{log10}: \\spad{ O( n**2 )}} \\indented{5}{\\spad{exp},{} \\spad{log},{} \\spad{sin},{} \\spad{atan}:\\space{2}\\spad{ O( sqrt(n) n**2 )}} The other elementary functions are coded in terms of the ones above.")) (|outputSpacing| (((|Void|) (|NonNegativeInteger|)) "\\spad{outputSpacing(n)} inserts a space after \\spad{n} (default 10) digits on output; outputSpacing(0) means no spaces are inserted.")) (|outputGeneral| (((|Void|) (|NonNegativeInteger|)) "\\spad{outputGeneral(n)} sets the output mode to general notation with \\spad{n} significant digits displayed.") (((|Void|)) "\\spad{outputGeneral()} sets the output mode (default mode) to general notation; numbers will be displayed in either fixed or floating (scientific) notation depending on the magnitude.")) (|outputFixed| (((|Void|) (|NonNegativeInteger|)) "\\spad{outputFixed(n)} sets the output mode to fixed point notation,{} with \\spad{n} digits displayed after the decimal point.") (((|Void|)) "\\spad{outputFixed()} sets the output mode to fixed point notation; the output will contain a decimal point.")) (|outputFloating| (((|Void|) (|NonNegativeInteger|)) "\\spad{outputFloating(n)} sets the output mode to floating (scientific) notation with \\spad{n} significant digits displayed after the decimal point.") (((|Void|)) "\\spad{outputFloating()} sets the output mode to floating (scientific) notation,{} \\spadignore{i.e.} \\spad{mantissa * 10 exponent} is displayed as \\spad{0.mantissa E exponent}.")) (|convert| (($ (|DoubleFloat|)) "\\spad{convert(x)} converts a \\spadtype{DoubleFloat} \\spad{x} to a \\spadtype{Float}.")) (|atan| (($ $ $) "\\spad{atan(x,{}y)} computes the arc tangent from \\spad{x} with phase \\spad{y}.")) (|exp1| (($) "\\spad{exp1()} returns exp 1: \\spad{2.7182818284...}.")) (|log10| (($ $) "\\spad{log10(x)} computes the logarithm for \\spad{x} to base 10.") (($) "\\spad{log10()} returns \\spad{ln 10}: \\spad{2.3025809299...}.")) (|log2| (($ $) "\\spad{log2(x)} computes the logarithm for \\spad{x} to base 2.") (($) "\\spad{log2()} returns \\spad{ln 2},{} \\spadignore{i.e.} \\spad{0.6931471805...}.")) (|rationalApproximation| (((|Fraction| (|Integer|)) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{rationalApproximation(f,{} n,{} b)} computes a rational approximation \\spad{r} to \\spad{f} with relative error \\spad{< b**(-n)},{} that is \\spad{|(r-f)/f| < b**(-n)}.") (((|Fraction| (|Integer|)) $ (|NonNegativeInteger|)) "\\spad{rationalApproximation(f,{} n)} computes a rational approximation \\spad{r} to \\spad{f} with relative error \\spad{< 10**(-n)}.")) (|shift| (($ $ (|Integer|)) "\\spad{shift(x,{}n)} adds \\spad{n} to the exponent of float \\spad{x}.")) (|relerror| (((|Integer|) $ $) "\\spad{relerror(x,{}y)} computes the absolute value of \\spad{x - y} divided by \\spad{y},{} when \\spad{y \\~= 0}.")) (|normalize| (($ $) "\\spad{normalize(x)} normalizes \\spad{x} at current precision.")) (** (($ $ $) "\\spad{x ** y} computes \\spad{exp(y log x)} where \\spad{x >= 0}.")) (/ (($ $ (|Integer|)) "\\spad{x / i} computes the division from \\spad{x} by an integer \\spad{i}.")))
-((-4231 . T) (-4239 . T) (-2523 . T) (-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4233 . T) (-4241 . T) (-2176 . T) (-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-356 |Par|)
+(-358 |Par|)
((|constructor| (NIL "\\indented{3}{This is a package for the approximation of real solutions for} systems of polynomial equations over the rational numbers. The results are expressed as either rational numbers or floats depending on the type of the precision parameter which can be either a rational number or a floating point number.")) (|realRoots| (((|List| |#1|) (|Fraction| (|Polynomial| (|Integer|))) |#1|) "\\spad{realRoots(rf,{} eps)} finds the real zeros of a univariate rational function with precision given by eps.") (((|List| (|List| |#1|)) (|List| (|Fraction| (|Polynomial| (|Integer|)))) (|List| (|Symbol|)) |#1|) "\\spad{realRoots(lp,{}lv,{}eps)} computes the list of the real solutions of the list \\spad{lp} of rational functions with rational coefficients with respect to the variables in \\spad{lv},{} with precision \\spad{eps}. Each solution is expressed as a list of numbers in order corresponding to the variables in \\spad{lv}.")) (|solve| (((|List| (|Equation| (|Polynomial| |#1|))) (|Equation| (|Fraction| (|Polynomial| (|Integer|)))) |#1|) "\\spad{solve(eq,{}eps)} finds all of the real solutions of the univariate equation \\spad{eq} of rational functions with respect to the unique variables appearing in \\spad{eq},{} with precision \\spad{eps}.") (((|List| (|Equation| (|Polynomial| |#1|))) (|Fraction| (|Polynomial| (|Integer|))) |#1|) "\\spad{solve(p,{}eps)} finds all of the real solutions of the univariate rational function \\spad{p} with rational coefficients with respect to the unique variable appearing in \\spad{p},{} with precision \\spad{eps}.") (((|List| (|List| (|Equation| (|Polynomial| |#1|)))) (|List| (|Equation| (|Fraction| (|Polynomial| (|Integer|))))) |#1|) "\\spad{solve(leq,{}eps)} finds all of the real solutions of the system \\spad{leq} of equationas of rational functions with respect to all the variables appearing in \\spad{lp},{} with precision \\spad{eps}.") (((|List| (|List| (|Equation| (|Polynomial| |#1|)))) (|List| (|Fraction| (|Polynomial| (|Integer|)))) |#1|) "\\spad{solve(lp,{}eps)} finds all of the real solutions of the system \\spad{lp} of rational functions over the rational numbers with respect to all the variables appearing in \\spad{lp},{} with precision \\spad{eps}.")))
NIL
NIL
-(-357 R S)
+(-359 R S)
((|constructor| (NIL "This domain implements linear combinations of elements from the domain \\spad{S} with coefficients in the domain \\spad{R} where \\spad{S} is an ordered set and \\spad{R} is a ring (which may be non-commutative). This domain is used by domains of non-commutative algebra such as: \\indented{4}{\\spadtype{XDistributedPolynomial},{}} \\indented{4}{\\spadtype{XRecursivePolynomial}.} Author: Michel Petitot (petitot@lifl.\\spad{fr})")) (* (($ |#2| |#1|) "\\spad{s*r} returns the product \\spad{r*s} used by \\spadtype{XRecursivePolynomial}")))
-((-4243 . T) (-4242 . T))
-((|HasCategory| |#1| (QUOTE (-158))))
-(-358 R |Basis|)
+((-4245 . T) (-4244 . T))
+((|HasCategory| |#1| (QUOTE (-160))))
+(-360 R |Basis|)
((|constructor| (NIL "A domain of this category implements formal linear combinations of elements from a domain \\spad{Basis} with coefficients in a domain \\spad{R}. The domain \\spad{Basis} needs only to belong to the category \\spadtype{SetCategory} and \\spad{R} to the category \\spadtype{Ring}. Thus the coefficient ring may be non-commutative. See the \\spadtype{XDistributedPolynomial} constructor for examples of domains built with the \\spadtype{FreeModuleCat} category constructor. Author: Michel Petitot (petitot@lifl.\\spad{fr})")) (|reductum| (($ $) "\\spad{reductum(x)} returns \\spad{x} minus its leading term.")) (|leadingTerm| (((|Record| (|:| |k| |#2|) (|:| |c| |#1|)) $) "\\spad{leadingTerm(x)} returns the first term which appears in \\spad{ListOfTerms(x)}.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(x)} returns the first coefficient which appears in \\spad{ListOfTerms(x)}.")) (|leadingMonomial| ((|#2| $) "\\spad{leadingMonomial(x)} returns the first element from \\spad{Basis} which appears in \\spad{ListOfTerms(x)}.")) (|numberOfMonomials| (((|NonNegativeInteger|) $) "\\spad{numberOfMonomials(x)} returns the number of monomials of \\spad{x}.")) (|monomials| (((|List| $) $) "\\spad{monomials(x)} returns the list of \\spad{r_i*b_i} whose sum is \\spad{x}.")) (|coefficients| (((|List| |#1|) $) "\\spad{coefficients(x)} returns the list of coefficients of \\spad{x}.")) (|ListOfTerms| (((|List| (|Record| (|:| |k| |#2|) (|:| |c| |#1|))) $) "\\spad{ListOfTerms(x)} returns a list \\spad{lt} of terms with type \\spad{Record(k: Basis,{} c: R)} such that \\spad{x} equals \\spad{reduce(+,{} map(x +-> monom(x.k,{} x.c),{} lt))}.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(x)} returns \\spad{true} if \\spad{x} contains a single monomial.")) (|monom| (($ |#2| |#1|) "\\spad{monom(b,{}r)} returns the element with the single monomial \\indented{1}{\\spad{b} and coefficient \\spad{r}.}")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(fn,{}u)} maps function \\spad{fn} onto the coefficients \\indented{1}{of the non-zero monomials of \\spad{u}.}")) (|coefficient| ((|#1| $ |#2|) "\\spad{coefficient(x,{}b)} returns the coefficient of \\spad{b} in \\spad{x}.")) (* (($ |#1| |#2|) "\\spad{r*b} returns the product of \\spad{r} by \\spad{b}.")))
-((-4243 . T) (-4242 . T))
+((-4245 . T) (-4244 . T))
NIL
-(-359)
+(-361)
((|constructor| (NIL "\\axiomType{FortranMatrixCategory} provides support for producing Functions and Subroutines when the input to these is an AXIOM object of type \\axiomType{Matrix} or in domains involving \\axiomType{FortranCode}.")) (|coerce| (($ (|Record| (|:| |localSymbols| (|SymbolTable|)) (|:| |code| (|List| (|FortranCode|))))) "\\spad{coerce(e)} takes the component of \\spad{e} from \\spadtype{List FortranCode} and uses it as the body of the ASP,{} making the declarations in the \\spadtype{SymbolTable} component.") (($ (|FortranCode|)) "\\spad{coerce(e)} takes an object from \\spadtype{FortranCode} and \\indented{1}{uses it as the body of an ASP.}") (($ (|List| (|FortranCode|))) "\\spad{coerce(e)} takes an object from \\spadtype{List FortranCode} and \\indented{1}{uses it as the body of an ASP.}") (($ (|Matrix| (|MachineFloat|))) "\\spad{coerce(v)} produces an ASP which returns the value of \\spad{v}.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-360)
+(-362)
((|constructor| (NIL "\\axiomType{FortranMatrixFunctionCategory} provides support for producing Functions and Subroutines representing matrices of expressions.")) (|retractIfCan| (((|Union| $ "failed") (|Matrix| (|Fraction| (|Polynomial| (|Integer|))))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Matrix| (|Fraction| (|Polynomial| (|Float|))))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Matrix| (|Polynomial| (|Integer|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Matrix| (|Polynomial| (|Float|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Matrix| (|Expression| (|Integer|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Matrix| (|Expression| (|Float|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}")) (|retract| (($ (|Matrix| (|Fraction| (|Polynomial| (|Integer|))))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Matrix| (|Fraction| (|Polynomial| (|Float|))))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Matrix| (|Polynomial| (|Integer|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Matrix| (|Polynomial| (|Float|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Matrix| (|Expression| (|Integer|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Matrix| (|Expression| (|Float|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}")) (|coerce| (($ (|Record| (|:| |localSymbols| (|SymbolTable|)) (|:| |code| (|List| (|FortranCode|))))) "\\spad{coerce(e)} takes the component of \\spad{e} from \\spadtype{List FortranCode} and uses it as the body of the ASP,{} making the declarations in the \\spadtype{SymbolTable} component.") (($ (|FortranCode|)) "\\spad{coerce(e)} takes an object from \\spadtype{FortranCode} and \\indented{1}{uses it as the body of an ASP.}") (($ (|List| (|FortranCode|))) "\\spad{coerce(e)} takes an object from \\spadtype{List FortranCode} and \\indented{1}{uses it as the body of an ASP.}")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-361 R S)
+(-363 R S)
((|constructor| (NIL "A \\spad{bi}-module is a free module over a ring with generators indexed by an ordered set. Each element can be expressed as a finite linear combination of generators. Only non-zero terms are stored.")))
-((-4243 . T) (-4242 . T))
-((|HasCategory| |#1| (QUOTE (-158))))
-(-362 S)
+((-4245 . T) (-4244 . T))
+((|HasCategory| |#1| (QUOTE (-160))))
+(-364 S)
((|constructor| (NIL "The free monoid on a set \\spad{S} is the monoid of finite products of the form \\spad{reduce(*,{}[\\spad{si} ** \\spad{ni}])} where the \\spad{si}\\spad{'s} are in \\spad{S},{} and the \\spad{ni}\\spad{'s} are nonnegative integers. The multiplication is not commutative.")) (|mapGen| (($ (|Mapping| |#1| |#1|) $) "\\spad{mapGen(f,{} a1\\^e1 ... an\\^en)} returns \\spad{f(a1)\\^e1 ... f(an)\\^en}.")) (|mapExpon| (($ (|Mapping| (|NonNegativeInteger|) (|NonNegativeInteger|)) $) "\\spad{mapExpon(f,{} a1\\^e1 ... an\\^en)} returns \\spad{a1\\^f(e1) ... an\\^f(en)}.")) (|nthFactor| ((|#1| $ (|Integer|)) "\\spad{nthFactor(x,{} n)} returns the factor of the n^th monomial of \\spad{x}.")) (|nthExpon| (((|NonNegativeInteger|) $ (|Integer|)) "\\spad{nthExpon(x,{} n)} returns the exponent of the n^th monomial of \\spad{x}.")) (|factors| (((|List| (|Record| (|:| |gen| |#1|) (|:| |exp| (|NonNegativeInteger|)))) $) "\\spad{factors(a1\\^e1,{}...,{}an\\^en)} returns \\spad{[[a1,{} e1],{}...,{}[an,{} en]]}.")) (|size| (((|NonNegativeInteger|) $) "\\spad{size(x)} returns the number of monomials in \\spad{x}.")) (|overlap| (((|Record| (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) "\\spad{overlap(x,{} y)} returns \\spad{[l,{} m,{} r]} such that \\spad{x = l * m},{} \\spad{y = m * r} and \\spad{l} and \\spad{r} have no overlap,{} \\spadignore{i.e.} \\spad{overlap(l,{} r) = [l,{} 1,{} r]}.")) (|divide| (((|Union| (|Record| (|:| |lm| $) (|:| |rm| $)) "failed") $ $) "\\spad{divide(x,{} y)} returns the left and right exact quotients of \\spad{x} by \\spad{y},{} \\spadignore{i.e.} \\spad{[l,{} r]} such that \\spad{x = l * y * r},{} \"failed\" if \\spad{x} is not of the form \\spad{l * y * r}.")) (|rquo| (((|Union| $ "failed") $ $) "\\spad{rquo(x,{} y)} returns the exact right quotient of \\spad{x} by \\spad{y} \\spadignore{i.e.} \\spad{q} such that \\spad{x = q * y},{} \"failed\" if \\spad{x} is not of the form \\spad{q * y}.")) (|lquo| (((|Union| $ "failed") $ $) "\\spad{lquo(x,{} y)} returns the exact left quotient of \\spad{x} by \\spad{y} \\spadignore{i.e.} \\spad{q} such that \\spad{x = y * q},{} \"failed\" if \\spad{x} is not of the form \\spad{y * q}.")) (|hcrf| (($ $ $) "\\spad{hcrf(x,{} y)} returns the highest common right factor of \\spad{x} and \\spad{y},{} \\spadignore{i.e.} the largest \\spad{d} such that \\spad{x = a d} and \\spad{y = b d}.")) (|hclf| (($ $ $) "\\spad{hclf(x,{} y)} returns the highest common left factor of \\spad{x} and \\spad{y},{} \\spadignore{i.e.} the largest \\spad{d} such that \\spad{x = d a} and \\spad{y = d b}.")) (** (($ |#1| (|NonNegativeInteger|)) "\\spad{s ** n} returns the product of \\spad{s} by itself \\spad{n} times.")) (* (($ $ |#1|) "\\spad{x * s} returns the product of \\spad{x} by \\spad{s} on the right.") (($ |#1| $) "\\spad{s * x} returns the product of \\spad{x} by \\spad{s} on the left.")))
NIL
-((|HasCategory| |#1| (QUOTE (-786))))
-(-363)
+((|HasCategory| |#1| (QUOTE (-788))))
+(-365)
((|constructor| (NIL "A category of domains which model machine arithmetic used by machines in the AXIOM-NAG link.")))
-((-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-364)
+(-366)
((|constructor| (NIL "This domain provides an interface to names in the file system.")))
NIL
NIL
-(-365)
+(-367)
((|constructor| (NIL "This category provides an interface to names in the file system.")) (|new| (($ (|String|) (|String|) (|String|)) "\\spad{new(d,{}pref,{}e)} constructs the name of a new writable file with \\spad{d} as its directory,{} \\spad{pref} as a prefix of its name and \\spad{e} as its extension. When \\spad{d} or \\spad{t} is the empty string,{} a default is used. An error occurs if a new file cannot be written in the given directory.")) (|writable?| (((|Boolean|) $) "\\spad{writable?(f)} tests if the named file be opened for writing. The named file need not already exist.")) (|readable?| (((|Boolean|) $) "\\spad{readable?(f)} tests if the named file exist and can it be opened for reading.")) (|exists?| (((|Boolean|) $) "\\spad{exists?(f)} tests if the file exists in the file system.")) (|extension| (((|String|) $) "\\spad{extension(f)} returns the type part of the file name.")) (|name| (((|String|) $) "\\spad{name(f)} returns the name part of the file name.")) (|directory| (((|String|) $) "\\spad{directory(f)} returns the directory part of the file name.")) (|filename| (($ (|String|) (|String|) (|String|)) "\\spad{filename(d,{}n,{}e)} creates a file name with \\spad{d} as its directory,{} \\spad{n} as its name and \\spad{e} as its extension. This is a portable way to create file names. When \\spad{d} or \\spad{t} is the empty string,{} a default is used.")) (|coerce| (((|String|) $) "\\spad{coerce(fn)} produces a string for a file name according to operating system-dependent conventions.") (($ (|String|)) "\\spad{coerce(s)} converts a string to a file name according to operating system-dependent conventions.")))
NIL
NIL
-(-366 |n| |class| R)
+(-368 |n| |class| R)
((|constructor| (NIL "Generate the Free Lie Algebra over a ring \\spad{R} with identity; A \\spad{P}. Hall basis is generated by a package call to HallBasis.")) (|generator| (($ (|NonNegativeInteger|)) "\\spad{generator(i)} is the \\spad{i}th Hall Basis element")) (|shallowExpand| (((|OutputForm|) $) "\\spad{shallowExpand(x)} \\undocumented{}")) (|deepExpand| (((|OutputForm|) $) "\\spad{deepExpand(x)} \\undocumented{}")) (|dimension| (((|NonNegativeInteger|)) "\\spad{dimension()} is the rank of this Lie algebra")))
-((-4243 . T) (-4242 . T))
+((-4245 . T) (-4244 . T))
NIL
-(-367)
+(-369)
((|constructor| (NIL "Code to manipulate Fortran Output Stack")) (|topFortranOutputStack| (((|String|)) "\\spad{topFortranOutputStack()} returns the top element of the Fortran output stack")) (|pushFortranOutputStack| (((|Void|) (|String|)) "\\spad{pushFortranOutputStack(f)} pushes \\spad{f} onto the Fortran output stack") (((|Void|) (|FileName|)) "\\spad{pushFortranOutputStack(f)} pushes \\spad{f} onto the Fortran output stack")) (|popFortranOutputStack| (((|Void|)) "\\spad{popFortranOutputStack()} pops the Fortran output stack")) (|showFortranOutputStack| (((|Stack| (|String|))) "\\spad{showFortranOutputStack()} returns the Fortran output stack")) (|clearFortranOutputStack| (((|Stack| (|String|))) "\\spad{clearFortranOutputStack()} clears the Fortran output stack")))
NIL
NIL
-(-368 -3894 UP UPUP R)
+(-370 -3576 UP UPUP R)
((|constructor| (NIL "\\indented{1}{Finds the order of a divisor over a finite field} Author: Manuel Bronstein Date Created: 1988 Date Last Updated: 11 Jul 1990")) (|order| (((|NonNegativeInteger|) (|FiniteDivisor| |#1| |#2| |#3| |#4|)) "\\spad{order(x)} \\undocumented")))
NIL
NIL
-(-369 S)
+(-371 S)
((|constructor| (NIL "\\spadtype{ScriptFormulaFormat1} provides a utility coercion for changing to SCRIPT formula format anything that has a coercion to the standard output format.")) (|coerce| (((|ScriptFormulaFormat|) |#1|) "\\spad{coerce(s)} provides a direct coercion from an expression \\spad{s} of domain \\spad{S} to SCRIPT formula format. This allows the user to skip the step of first manually coercing the object to standard output format before it is coerced to SCRIPT formula format.")))
NIL
NIL
-(-370)
+(-372)
((|constructor| (NIL "\\spadtype{ScriptFormulaFormat} provides a coercion from \\spadtype{OutputForm} to IBM SCRIPT/VS Mathematical Formula Format. The basic SCRIPT formula format object consists of three parts: a prologue,{} a formula part and an epilogue. The functions \\spadfun{prologue},{} \\spadfun{formula} and \\spadfun{epilogue} extract these parts,{} respectively. The central parts of the expression go into the formula part. The other parts can be set (\\spadfun{setPrologue!},{} \\spadfun{setEpilogue!}) so that contain the appropriate tags for printing. For example,{} the prologue and epilogue might simply contain \":df.\" and \":edf.\" so that the formula section will be printed in display math mode.")) (|setPrologue!| (((|List| (|String|)) $ (|List| (|String|))) "\\spad{setPrologue!(t,{}strings)} sets the prologue section of a formatted object \\spad{t} to \\spad{strings}.")) (|setFormula!| (((|List| (|String|)) $ (|List| (|String|))) "\\spad{setFormula!(t,{}strings)} sets the formula section of a formatted object \\spad{t} to \\spad{strings}.")) (|setEpilogue!| (((|List| (|String|)) $ (|List| (|String|))) "\\spad{setEpilogue!(t,{}strings)} sets the epilogue section of a formatted object \\spad{t} to \\spad{strings}.")) (|prologue| (((|List| (|String|)) $) "\\spad{prologue(t)} extracts the prologue section of a formatted object \\spad{t}.")) (|new| (($) "\\spad{new()} create a new,{} empty object. Use \\spadfun{setPrologue!},{} \\spadfun{setFormula!} and \\spadfun{setEpilogue!} to set the various components of this object.")) (|formula| (((|List| (|String|)) $) "\\spad{formula(t)} extracts the formula section of a formatted object \\spad{t}.")) (|epilogue| (((|List| (|String|)) $) "\\spad{epilogue(t)} extracts the epilogue section of a formatted object \\spad{t}.")) (|display| (((|Void|) $) "\\spad{display(t)} outputs the formatted code \\spad{t} so that each line has length less than or equal to the value set by the system command \\spadsyscom{set output length}.") (((|Void|) $ (|Integer|)) "\\spad{display(t,{}width)} outputs the formatted code \\spad{t} so that each line has length less than or equal to \\spadvar{\\spad{width}}.")) (|convert| (($ (|OutputForm|) (|Integer|)) "\\spad{convert(o,{}step)} changes \\spad{o} in standard output format to SCRIPT formula format and also adds the given \\spad{step} number. This is useful if you want to create equations with given numbers or have the equation numbers correspond to the interpreter \\spad{step} numbers.")) (|coerce| (($ (|OutputForm|)) "\\spad{coerce(o)} changes \\spad{o} in the standard output format to SCRIPT formula format.")))
NIL
NIL
-(-371)
+(-373)
((|constructor| (NIL "\\axiomType{FortranProgramCategory} provides various models of FORTRAN subprograms. These can be transformed into actual FORTRAN code.")) (|outputAsFortran| (((|Void|) $) "\\axiom{outputAsFortran(\\spad{u})} translates \\axiom{\\spad{u}} into a legal FORTRAN subprogram.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-372)
+(-374)
((|constructor| (NIL "\\axiomType{FortranFunctionCategory} is the category of arguments to NAG Library routines which return (sets of) function values.")) (|retractIfCan| (((|Union| $ "failed") (|Fraction| (|Polynomial| (|Integer|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Fraction| (|Polynomial| (|Float|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Polynomial| (|Float|))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Expression| (|Integer|))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Expression| (|Float|))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}")) (|retract| (($ (|Fraction| (|Polynomial| (|Integer|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Fraction| (|Polynomial| (|Float|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Polynomial| (|Integer|))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Polynomial| (|Float|))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Expression| (|Integer|))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Expression| (|Float|))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}")) (|coerce| (($ (|Record| (|:| |localSymbols| (|SymbolTable|)) (|:| |code| (|List| (|FortranCode|))))) "\\spad{coerce(e)} takes the component of \\spad{e} from \\spadtype{List FortranCode} and uses it as the body of the ASP,{} making the declarations in the \\spadtype{SymbolTable} component.") (($ (|FortranCode|)) "\\spad{coerce(e)} takes an object from \\spadtype{FortranCode} and \\indented{1}{uses it as the body of an ASP.}") (($ (|List| (|FortranCode|))) "\\spad{coerce(e)} takes an object from \\spadtype{List FortranCode} and \\indented{1}{uses it as the body of an ASP.}")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-373)
+(-375)
((|constructor| (NIL "provides an interface to the boot code for calling Fortran")) (|setLegalFortranSourceExtensions| (((|List| (|String|)) (|List| (|String|))) "\\spad{setLegalFortranSourceExtensions(l)} \\undocumented{}")) (|outputAsFortran| (((|Void|) (|FileName|)) "\\spad{outputAsFortran(fn)} \\undocumented{}")) (|linkToFortran| (((|SExpression|) (|Symbol|) (|List| (|Symbol|)) (|TheSymbolTable|) (|List| (|Symbol|))) "\\spad{linkToFortran(s,{}l,{}t,{}lv)} \\undocumented{}") (((|SExpression|) (|Symbol|) (|List| (|Union| (|:| |array| (|List| (|Symbol|))) (|:| |scalar| (|Symbol|)))) (|List| (|List| (|Union| (|:| |array| (|List| (|Symbol|))) (|:| |scalar| (|Symbol|))))) (|List| (|Symbol|)) (|Symbol|)) "\\spad{linkToFortran(s,{}l,{}ll,{}lv,{}t)} \\undocumented{}") (((|SExpression|) (|Symbol|) (|List| (|Union| (|:| |array| (|List| (|Symbol|))) (|:| |scalar| (|Symbol|)))) (|List| (|List| (|Union| (|:| |array| (|List| (|Symbol|))) (|:| |scalar| (|Symbol|))))) (|List| (|Symbol|))) "\\spad{linkToFortran(s,{}l,{}ll,{}lv)} \\undocumented{}")))
NIL
NIL
-(-374 -1522 |returnType| -1858 |symbols|)
+(-376 -2400 |returnType| -1235 |symbols|)
((|constructor| (NIL "\\axiomType{FortranProgram} allows the user to build and manipulate simple models of FORTRAN subprograms. These can then be transformed into actual FORTRAN notation.")) (|coerce| (($ (|Equation| (|Expression| (|Complex| (|Float|))))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Equation| (|Expression| (|Float|)))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Equation| (|Expression| (|Integer|)))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Expression| (|Complex| (|Float|)))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Expression| (|Float|))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Expression| (|Integer|))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Equation| (|Expression| (|MachineComplex|)))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Equation| (|Expression| (|MachineFloat|)))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Equation| (|Expression| (|MachineInteger|)))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Expression| (|MachineComplex|))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Expression| (|MachineFloat|))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Expression| (|MachineInteger|))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Record| (|:| |localSymbols| (|SymbolTable|)) (|:| |code| (|List| (|FortranCode|))))) "\\spad{coerce(r)} \\undocumented{}") (($ (|List| (|FortranCode|))) "\\spad{coerce(lfc)} \\undocumented{}") (($ (|FortranCode|)) "\\spad{coerce(fc)} \\undocumented{}")))
NIL
NIL
-(-375 -3894 UP)
+(-377 -3576 UP)
((|constructor| (NIL "\\indented{1}{Full partial fraction expansion of rational functions} Author: Manuel Bronstein Date Created: 9 December 1992 Date Last Updated: 6 October 1993 References: \\spad{M}.Bronstein & \\spad{B}.Salvy,{} \\indented{12}{Full Partial Fraction Decomposition of Rational Functions,{}} \\indented{12}{in Proceedings of ISSAC'93,{} Kiev,{} ACM Press.}")) (D (($ $ (|NonNegativeInteger|)) "\\spad{D(f,{} n)} returns the \\spad{n}-th derivative of \\spad{f}.") (($ $) "\\spad{D(f)} returns the derivative of \\spad{f}.")) (|differentiate| (($ $ (|NonNegativeInteger|)) "\\spad{differentiate(f,{} n)} returns the \\spad{n}-th derivative of \\spad{f}.") (($ $) "\\spad{differentiate(f)} returns the derivative of \\spad{f}.")) (|construct| (($ (|List| (|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |center| |#2|) (|:| |num| |#2|)))) "\\spad{construct(l)} is the inverse of fracPart.")) (|fracPart| (((|List| (|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |center| |#2|) (|:| |num| |#2|))) $) "\\spad{fracPart(f)} returns the list of summands of the fractional part of \\spad{f}.")) (|polyPart| ((|#2| $) "\\spad{polyPart(f)} returns the polynomial part of \\spad{f}.")) (|fullPartialFraction| (($ (|Fraction| |#2|)) "\\spad{fullPartialFraction(f)} returns \\spad{[p,{} [[j,{} Dj,{} Hj]...]]} such that \\spad{f = p(x) + \\sum_{[j,{}Dj,{}Hj] in l} \\sum_{Dj(a)=0} Hj(a)/(x - a)\\^j}.")) (+ (($ |#2| $) "\\spad{p + x} returns the sum of \\spad{p} and \\spad{x}")))
NIL
NIL
-(-376 R)
+(-378 R)
((|constructor| (NIL "A set \\spad{S} is PatternMatchable over \\spad{R} if \\spad{S} can lift the pattern-matching functions of \\spad{S} over the integers and float to itself (necessary for matching in towers).")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-377 S)
+(-379 S)
((|constructor| (NIL "FieldOfPrimeCharacteristic is the category of fields of prime characteristic,{} \\spadignore{e.g.} finite fields,{} algebraic closures of fields of prime characteristic,{} transcendental extensions of of fields of prime characteristic.")) (|primeFrobenius| (($ $ (|NonNegativeInteger|)) "\\spad{primeFrobenius(a,{}s)} returns \\spad{a**(p**s)} where \\spad{p} is the characteristic.") (($ $) "\\spad{primeFrobenius(a)} returns \\spad{a ** p} where \\spad{p} is the characteristic.")) (|discreteLog| (((|Union| (|NonNegativeInteger|) "failed") $ $) "\\spad{discreteLog(b,{}a)} computes \\spad{s} with \\spad{b**s = a} if such an \\spad{s} exists.")) (|order| (((|OnePointCompletion| (|PositiveInteger|)) $) "\\spad{order(a)} computes the order of an element in the multiplicative group of the field. Error: if \\spad{a} is 0.")))
NIL
NIL
-(-378)
+(-380)
((|constructor| (NIL "FieldOfPrimeCharacteristic is the category of fields of prime characteristic,{} \\spadignore{e.g.} finite fields,{} algebraic closures of fields of prime characteristic,{} transcendental extensions of of fields of prime characteristic.")) (|primeFrobenius| (($ $ (|NonNegativeInteger|)) "\\spad{primeFrobenius(a,{}s)} returns \\spad{a**(p**s)} where \\spad{p} is the characteristic.") (($ $) "\\spad{primeFrobenius(a)} returns \\spad{a ** p} where \\spad{p} is the characteristic.")) (|discreteLog| (((|Union| (|NonNegativeInteger|) "failed") $ $) "\\spad{discreteLog(b,{}a)} computes \\spad{s} with \\spad{b**s = a} if such an \\spad{s} exists.")) (|order| (((|OnePointCompletion| (|PositiveInteger|)) $) "\\spad{order(a)} computes the order of an element in the multiplicative group of the field. Error: if \\spad{a} is 0.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-379 S)
+(-381 S)
((|constructor| (NIL "This category is intended as a model for floating point systems. A floating point system is a model for the real numbers. In fact,{} it is an approximation in the sense that not all real numbers are exactly representable by floating point numbers. A floating point system is characterized by the following: \\blankline \\indented{2}{1: \\spadfunFrom{base}{FloatingPointSystem} of the \\spadfunFrom{exponent}{FloatingPointSystem}.} \\indented{9}{(actual implemenations are usually binary or decimal)} \\indented{2}{2: \\spadfunFrom{precision}{FloatingPointSystem} of the \\spadfunFrom{mantissa}{FloatingPointSystem} (arbitrary or fixed)} \\indented{2}{3: rounding error for operations} \\blankline Because a Float is an approximation to the real numbers,{} even though it is defined to be a join of a Field and OrderedRing,{} some of the attributes do not hold. In particular associative(\\spad{\"+\"}) does not hold. Algorithms defined over a field need special considerations when the field is a floating point system.")) (|max| (($) "\\spad{max()} returns the maximum floating point number.")) (|min| (($) "\\spad{min()} returns the minimum floating point number.")) (|decreasePrecision| (((|PositiveInteger|) (|Integer|)) "\\spad{decreasePrecision(n)} decreases the current \\spadfunFrom{precision}{FloatingPointSystem} precision by \\spad{n} decimal digits.")) (|increasePrecision| (((|PositiveInteger|) (|Integer|)) "\\spad{increasePrecision(n)} increases the current \\spadfunFrom{precision}{FloatingPointSystem} by \\spad{n} decimal digits.")) (|precision| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{precision(n)} set the precision in the base to \\spad{n} decimal digits.") (((|PositiveInteger|)) "\\spad{precision()} returns the precision in digits base.")) (|digits| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{digits(d)} set the \\spadfunFrom{precision}{FloatingPointSystem} to \\spad{d} digits.") (((|PositiveInteger|)) "\\spad{digits()} returns ceiling\\spad{'s} precision in decimal digits.")) (|bits| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{bits(n)} set the \\spadfunFrom{precision}{FloatingPointSystem} to \\spad{n} bits.") (((|PositiveInteger|)) "\\spad{bits()} returns ceiling\\spad{'s} precision in bits.")) (|mantissa| (((|Integer|) $) "\\spad{mantissa(x)} returns the mantissa part of \\spad{x}.")) (|exponent| (((|Integer|) $) "\\spad{exponent(x)} returns the \\spadfunFrom{exponent}{FloatingPointSystem} part of \\spad{x}.")) (|base| (((|PositiveInteger|)) "\\spad{base()} returns the base of the \\spadfunFrom{exponent}{FloatingPointSystem}.")) (|order| (((|Integer|) $) "\\spad{order x} is the order of magnitude of \\spad{x}. Note: \\spad{base ** order x <= |x| < base ** (1 + order x)}.")) (|float| (($ (|Integer|) (|Integer|) (|PositiveInteger|)) "\\spad{float(a,{}e,{}b)} returns \\spad{a * b ** e}.") (($ (|Integer|) (|Integer|)) "\\spad{float(a,{}e)} returns \\spad{a * base() ** e}.")) (|approximate| ((|attribute|) "\\spad{approximate} means \"is an approximation to the real numbers\".")))
NIL
-((|HasAttribute| |#1| (QUOTE -4231)) (|HasAttribute| |#1| (QUOTE -4239)))
-(-380)
+((|HasAttribute| |#1| (QUOTE -4233)) (|HasAttribute| |#1| (QUOTE -4241)))
+(-382)
((|constructor| (NIL "This category is intended as a model for floating point systems. A floating point system is a model for the real numbers. In fact,{} it is an approximation in the sense that not all real numbers are exactly representable by floating point numbers. A floating point system is characterized by the following: \\blankline \\indented{2}{1: \\spadfunFrom{base}{FloatingPointSystem} of the \\spadfunFrom{exponent}{FloatingPointSystem}.} \\indented{9}{(actual implemenations are usually binary or decimal)} \\indented{2}{2: \\spadfunFrom{precision}{FloatingPointSystem} of the \\spadfunFrom{mantissa}{FloatingPointSystem} (arbitrary or fixed)} \\indented{2}{3: rounding error for operations} \\blankline Because a Float is an approximation to the real numbers,{} even though it is defined to be a join of a Field and OrderedRing,{} some of the attributes do not hold. In particular associative(\\spad{\"+\"}) does not hold. Algorithms defined over a field need special considerations when the field is a floating point system.")) (|max| (($) "\\spad{max()} returns the maximum floating point number.")) (|min| (($) "\\spad{min()} returns the minimum floating point number.")) (|decreasePrecision| (((|PositiveInteger|) (|Integer|)) "\\spad{decreasePrecision(n)} decreases the current \\spadfunFrom{precision}{FloatingPointSystem} precision by \\spad{n} decimal digits.")) (|increasePrecision| (((|PositiveInteger|) (|Integer|)) "\\spad{increasePrecision(n)} increases the current \\spadfunFrom{precision}{FloatingPointSystem} by \\spad{n} decimal digits.")) (|precision| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{precision(n)} set the precision in the base to \\spad{n} decimal digits.") (((|PositiveInteger|)) "\\spad{precision()} returns the precision in digits base.")) (|digits| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{digits(d)} set the \\spadfunFrom{precision}{FloatingPointSystem} to \\spad{d} digits.") (((|PositiveInteger|)) "\\spad{digits()} returns ceiling\\spad{'s} precision in decimal digits.")) (|bits| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{bits(n)} set the \\spadfunFrom{precision}{FloatingPointSystem} to \\spad{n} bits.") (((|PositiveInteger|)) "\\spad{bits()} returns ceiling\\spad{'s} precision in bits.")) (|mantissa| (((|Integer|) $) "\\spad{mantissa(x)} returns the mantissa part of \\spad{x}.")) (|exponent| (((|Integer|) $) "\\spad{exponent(x)} returns the \\spadfunFrom{exponent}{FloatingPointSystem} part of \\spad{x}.")) (|base| (((|PositiveInteger|)) "\\spad{base()} returns the base of the \\spadfunFrom{exponent}{FloatingPointSystem}.")) (|order| (((|Integer|) $) "\\spad{order x} is the order of magnitude of \\spad{x}. Note: \\spad{base ** order x <= |x| < base ** (1 + order x)}.")) (|float| (($ (|Integer|) (|Integer|) (|PositiveInteger|)) "\\spad{float(a,{}e,{}b)} returns \\spad{a * b ** e}.") (($ (|Integer|) (|Integer|)) "\\spad{float(a,{}e)} returns \\spad{a * base() ** e}.")) (|approximate| ((|attribute|) "\\spad{approximate} means \"is an approximation to the real numbers\".")))
-((-2523 . T) (-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-2176 . T) (-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-381 R S)
+(-383 R S)
((|constructor| (NIL "\\spadtype{FactoredFunctions2} contains functions that involve factored objects whose underlying domains may not be the same. For example,{} \\spadfun{map} might be used to coerce an object of type \\spadtype{Factored(Integer)} to \\spadtype{Factored(Complex(Integer))}.")) (|map| (((|Factored| |#2|) (|Mapping| |#2| |#1|) (|Factored| |#1|)) "\\spad{map(fn,{}u)} is used to apply the function \\userfun{\\spad{fn}} to every factor of \\spadvar{\\spad{u}}. The new factored object will have all its information flags set to \"nil\". This function is used,{} for example,{} to coerce every factor base to another type.")))
NIL
NIL
-(-382 A B)
+(-384 A B)
((|constructor| (NIL "This package extends a map between integral domains to a map between Fractions over those domains by applying the map to the numerators and denominators.")) (|map| (((|Fraction| |#2|) (|Mapping| |#2| |#1|) (|Fraction| |#1|)) "\\spad{map(func,{}frac)} applies the function \\spad{func} to the numerator and denominator of the fraction \\spad{frac}.")))
NIL
NIL
-(-383 S)
+(-385 S)
((|constructor| (NIL "Fraction takes an IntegralDomain \\spad{S} and produces the domain of Fractions with numerators and denominators from \\spad{S}. If \\spad{S} is also a GcdDomain,{} then \\spad{gcd}\\spad{'s} between numerator and denominator will be cancelled during all operations.")) (|canonical| ((|attribute|) "\\spad{canonical} means that equal elements are in fact identical.")))
-((-4235 -12 (|has| |#1| (-6 -4246)) (|has| |#1| (-427)) (|has| |#1| (-6 -4235))) (-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-840))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-508))) (|HasCategory| |#1| (QUOTE (-767)))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499))))) (|HasCategory| |#1| (QUOTE (-949))) (|HasCategory| |#1| (QUOTE (-759))) (-3255 (|HasCategory| |#1| (QUOTE (-759))) (|HasCategory| |#1| (QUOTE (-786)))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-508))) (|HasCategory| |#1| (QUOTE (-767)))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-1063))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-508))) (|HasCategory| |#1| (QUOTE (-767)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (-12 (|HasCategory| |#1| (QUOTE (-508))) (|HasCategory| |#1| (QUOTE (-767))))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (-12 (|HasCategory| |#1| (QUOTE (-508))) (|HasCategory| |#1| (QUOTE (-767))))) (|HasCategory| |#1| (QUOTE (-211))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#1| (LIST (QUOTE -484) (QUOTE (-1087)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -263) (|devaluate| |#1|) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-508))) (|HasCategory| |#1| (QUOTE (-767)))) (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-508))) (-12 (|HasAttribute| |#1| (QUOTE -4246)) (|HasAttribute| |#1| (QUOTE -4235)) (|HasCategory| |#1| (QUOTE (-427)))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-134)))))
-(-384 S R UP)
+((-4237 -12 (|has| |#1| (-6 -4248)) (|has| |#1| (-429)) (|has| |#1| (-6 -4237))) (-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-842))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-510))) (|HasCategory| |#1| (QUOTE (-769)))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501))))) (|HasCategory| |#1| (QUOTE (-951))) (|HasCategory| |#1| (QUOTE (-761))) (-3321 (|HasCategory| |#1| (QUOTE (-761))) (|HasCategory| |#1| (QUOTE (-788)))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-510))) (|HasCategory| |#1| (QUOTE (-769)))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-1065))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-510))) (|HasCategory| |#1| (QUOTE (-769)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-510))) (|HasCategory| |#1| (QUOTE (-769))))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (-12 (|HasCategory| |#1| (QUOTE (-510))) (|HasCategory| |#1| (QUOTE (-769))))) (|HasCategory| |#1| (QUOTE (-213))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#1| (LIST (QUOTE -486) (QUOTE (-1089)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -265) (|devaluate| |#1|) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-510))) (|HasCategory| |#1| (QUOTE (-769)))) (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-510))) (-12 (|HasAttribute| |#1| (QUOTE -4248)) (|HasAttribute| |#1| (QUOTE -4237)) (|HasCategory| |#1| (QUOTE (-429)))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-136)))))
+(-386 S R UP)
((|constructor| (NIL "A \\spadtype{FramedAlgebra} is a \\spadtype{FiniteRankAlgebra} together with a fixed \\spad{R}-module basis.")) (|regularRepresentation| (((|Matrix| |#2|) $) "\\spad{regularRepresentation(a)} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the fixed basis.")) (|discriminant| ((|#2|) "\\spad{discriminant()} = determinant(traceMatrix()).")) (|traceMatrix| (((|Matrix| |#2|)) "\\spad{traceMatrix()} is the \\spad{n}-by-\\spad{n} matrix ( \\spad{Tr(\\spad{vi} * vj)} ),{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.")) (|convert| (($ (|Vector| |#2|)) "\\spad{convert([a1,{}..,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.") (((|Vector| |#2|) $) "\\spad{convert(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|represents| (($ (|Vector| |#2|)) "\\spad{represents([a1,{}..,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.")) (|coordinates| (((|Matrix| |#2|) (|Vector| $)) "\\spad{coordinates([v1,{}...,{}vm])} returns the coordinates of the \\spad{vi}\\spad{'s} with to the fixed basis. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#2|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|basis| (((|Vector| $)) "\\spad{basis()} returns the fixed \\spad{R}-module basis.")))
NIL
NIL
-(-385 R UP)
+(-387 R UP)
((|constructor| (NIL "A \\spadtype{FramedAlgebra} is a \\spadtype{FiniteRankAlgebra} together with a fixed \\spad{R}-module basis.")) (|regularRepresentation| (((|Matrix| |#1|) $) "\\spad{regularRepresentation(a)} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the fixed basis.")) (|discriminant| ((|#1|) "\\spad{discriminant()} = determinant(traceMatrix()).")) (|traceMatrix| (((|Matrix| |#1|)) "\\spad{traceMatrix()} is the \\spad{n}-by-\\spad{n} matrix ( \\spad{Tr(\\spad{vi} * vj)} ),{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.")) (|convert| (($ (|Vector| |#1|)) "\\spad{convert([a1,{}..,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.") (((|Vector| |#1|) $) "\\spad{convert(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|represents| (($ (|Vector| |#1|)) "\\spad{represents([a1,{}..,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.")) (|coordinates| (((|Matrix| |#1|) (|Vector| $)) "\\spad{coordinates([v1,{}...,{}vm])} returns the coordinates of the \\spad{vi}\\spad{'s} with to the fixed basis. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#1|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|basis| (((|Vector| $)) "\\spad{basis()} returns the fixed \\spad{R}-module basis.")))
-((-4242 . T) (-4243 . T) (-4245 . T))
+((-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-386 A S)
+(-388 A S)
((|constructor| (NIL "\\indented{2}{A is fully retractable to \\spad{B} means that A is retractable to \\spad{B},{} and,{}} \\indented{2}{in addition,{} if \\spad{B} is retractable to the integers or rational} \\indented{2}{numbers then so is A.} \\indented{2}{In particular,{} what we are asserting is that there are no integers} \\indented{2}{(rationals) in A which don\\spad{'t} retract into \\spad{B}.} Date Created: March 1990 Date Last Updated: 9 April 1991")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))))
-(-387 S)
+((|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))))
+(-389 S)
((|constructor| (NIL "\\indented{2}{A is fully retractable to \\spad{B} means that A is retractable to \\spad{B},{} and,{}} \\indented{2}{in addition,{} if \\spad{B} is retractable to the integers or rational} \\indented{2}{numbers then so is A.} \\indented{2}{In particular,{} what we are asserting is that there are no integers} \\indented{2}{(rationals) in A which don\\spad{'t} retract into \\spad{B}.} Date Created: March 1990 Date Last Updated: 9 April 1991")))
NIL
NIL
-(-388 R1 F1 U1 A1 R2 F2 U2 A2)
+(-390 R1 F1 U1 A1 R2 F2 U2 A2)
((|constructor| (NIL "\\indented{1}{Lifting of morphisms to fractional ideals.} Author: Manuel Bronstein Date Created: 1 Feb 1989 Date Last Updated: 27 Feb 1990 Keywords: ideal,{} algebra,{} module.")) (|map| (((|FractionalIdeal| |#5| |#6| |#7| |#8|) (|Mapping| |#5| |#1|) (|FractionalIdeal| |#1| |#2| |#3| |#4|)) "\\spad{map(f,{}i)} \\undocumented{}")))
NIL
NIL
-(-389 R -3894 UP A)
+(-391 R -3576 UP A)
((|constructor| (NIL "Fractional ideals in a framed algebra.")) (|randomLC| ((|#4| (|NonNegativeInteger|) (|Vector| |#4|)) "\\spad{randomLC(n,{}x)} should be local but conditional.")) (|minimize| (($ $) "\\spad{minimize(I)} returns a reduced set of generators for \\spad{I}.")) (|denom| ((|#1| $) "\\spad{denom(1/d * (f1,{}...,{}fn))} returns \\spad{d}.")) (|numer| (((|Vector| |#4|) $) "\\spad{numer(1/d * (f1,{}...,{}fn))} = the vector \\spad{[f1,{}...,{}fn]}.")) (|norm| ((|#2| $) "\\spad{norm(I)} returns the norm of the ideal \\spad{I}.")) (|basis| (((|Vector| |#4|) $) "\\spad{basis((f1,{}...,{}fn))} returns the vector \\spad{[f1,{}...,{}fn]}.")) (|ideal| (($ (|Vector| |#4|)) "\\spad{ideal([f1,{}...,{}fn])} returns the ideal \\spad{(f1,{}...,{}fn)}.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-390 R -3894 UP A |ibasis|)
+(-392 R -3576 UP A |ibasis|)
((|constructor| (NIL "Module representation of fractional ideals.")) (|module| (($ (|FractionalIdeal| |#1| |#2| |#3| |#4|)) "\\spad{module(I)} returns \\spad{I} viewed has a module over \\spad{R}.") (($ (|Vector| |#4|)) "\\spad{module([f1,{}...,{}fn])} = the module generated by \\spad{(f1,{}...,{}fn)} over \\spad{R}.")) (|norm| ((|#2| $) "\\spad{norm(f)} returns the norm of the module \\spad{f}.")) (|basis| (((|Vector| |#4|) $) "\\spad{basis((f1,{}...,{}fn))} = the vector \\spad{[f1,{}...,{}fn]}.")))
NIL
-((|HasCategory| |#4| (LIST (QUOTE -964) (|devaluate| |#2|))))
-(-391 AR R AS S)
+((|HasCategory| |#4| (LIST (QUOTE -966) (|devaluate| |#2|))))
+(-393 AR R AS S)
((|constructor| (NIL "FramedNonAssociativeAlgebraFunctions2 implements functions between two framed non associative algebra domains defined over different rings. The function map is used to coerce between algebras over different domains having the same structural constants.")) (|map| ((|#3| (|Mapping| |#4| |#2|) |#1|) "\\spad{map(f,{}u)} maps \\spad{f} onto the coordinates of \\spad{u} to get an element in \\spad{AS} via identification of the basis of \\spad{AR} as beginning part of the basis of \\spad{AS}.")))
NIL
NIL
-(-392 S R)
+(-394 S R)
((|constructor| (NIL "FramedNonAssociativeAlgebra(\\spad{R}) is a \\spadtype{FiniteRankNonAssociativeAlgebra} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank) over a commutative ring \\spad{R} together with a fixed \\spad{R}-module basis.")) (|apply| (($ (|Matrix| |#2|) $) "\\spad{apply(m,{}a)} defines a left operation of \\spad{n} by \\spad{n} matrices where \\spad{n} is the rank of the algebra in terms of matrix-vector multiplication,{} this is a substitute for a left module structure. Error: if shape of matrix doesn\\spad{'t} fit.")) (|rightRankPolynomial| (((|SparseUnivariatePolynomial| (|Polynomial| |#2|))) "\\spad{rightRankPolynomial()} calculates the right minimal polynomial of the generic element in the algebra,{} defined by the same structural constants over the polynomial ring in symbolic coefficients with respect to the fixed basis.")) (|leftRankPolynomial| (((|SparseUnivariatePolynomial| (|Polynomial| |#2|))) "\\spad{leftRankPolynomial()} calculates the left minimal polynomial of the generic element in the algebra,{} defined by the same structural constants over the polynomial ring in symbolic coefficients with respect to the fixed basis.")) (|rightRegularRepresentation| (((|Matrix| |#2|) $) "\\spad{rightRegularRepresentation(a)} returns the matrix of the linear map defined by right multiplication by \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|leftRegularRepresentation| (((|Matrix| |#2|) $) "\\spad{leftRegularRepresentation(a)} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|rightTraceMatrix| (((|Matrix| |#2|)) "\\spad{rightTraceMatrix()} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis.")) (|leftTraceMatrix| (((|Matrix| |#2|)) "\\spad{leftTraceMatrix()} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by left trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis.")) (|rightDiscriminant| ((|#2|) "\\spad{rightDiscriminant()} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis. Note: the same as \\spad{determinant(rightTraceMatrix())}.")) (|leftDiscriminant| ((|#2|) "\\spad{leftDiscriminant()} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the left trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis. Note: the same as \\spad{determinant(leftTraceMatrix())}.")) (|convert| (($ (|Vector| |#2|)) "\\spad{convert([a1,{}...,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed \\spad{R}-module basis.") (((|Vector| |#2|) $) "\\spad{convert(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|represents| (($ (|Vector| |#2|)) "\\spad{represents([a1,{}...,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed \\spad{R}-module basis.")) (|conditionsForIdempotents| (((|List| (|Polynomial| |#2|))) "\\spad{conditionsForIdempotents()} determines a complete list of polynomial equations for the coefficients of idempotents with respect to the fixed \\spad{R}-module basis.")) (|structuralConstants| (((|Vector| (|Matrix| |#2|))) "\\spad{structuralConstants()} calculates the structural constants \\spad{[(gammaijk) for k in 1..rank()]} defined by \\spad{\\spad{vi} * vj = gammaij1 * v1 + ... + gammaijn * vn},{} where \\spad{v1},{}...,{}\\spad{vn} is the fixed \\spad{R}-module basis.")) (|elt| ((|#2| $ (|Integer|)) "\\spad{elt(a,{}i)} returns the \\spad{i}-th coefficient of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|coordinates| (((|Matrix| |#2|) (|Vector| $)) "\\spad{coordinates([a1,{}...,{}am])} returns a matrix whose \\spad{i}-th row is formed by the coordinates of \\spad{\\spad{ai}} with respect to the fixed \\spad{R}-module basis.") (((|Vector| |#2|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|basis| (((|Vector| $)) "\\spad{basis()} returns the fixed \\spad{R}-module basis.")))
NIL
-((|HasCategory| |#2| (QUOTE (-339))))
-(-393 R)
+((|HasCategory| |#2| (QUOTE (-341))))
+(-395 R)
((|constructor| (NIL "FramedNonAssociativeAlgebra(\\spad{R}) is a \\spadtype{FiniteRankNonAssociativeAlgebra} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank) over a commutative ring \\spad{R} together with a fixed \\spad{R}-module basis.")) (|apply| (($ (|Matrix| |#1|) $) "\\spad{apply(m,{}a)} defines a left operation of \\spad{n} by \\spad{n} matrices where \\spad{n} is the rank of the algebra in terms of matrix-vector multiplication,{} this is a substitute for a left module structure. Error: if shape of matrix doesn\\spad{'t} fit.")) (|rightRankPolynomial| (((|SparseUnivariatePolynomial| (|Polynomial| |#1|))) "\\spad{rightRankPolynomial()} calculates the right minimal polynomial of the generic element in the algebra,{} defined by the same structural constants over the polynomial ring in symbolic coefficients with respect to the fixed basis.")) (|leftRankPolynomial| (((|SparseUnivariatePolynomial| (|Polynomial| |#1|))) "\\spad{leftRankPolynomial()} calculates the left minimal polynomial of the generic element in the algebra,{} defined by the same structural constants over the polynomial ring in symbolic coefficients with respect to the fixed basis.")) (|rightRegularRepresentation| (((|Matrix| |#1|) $) "\\spad{rightRegularRepresentation(a)} returns the matrix of the linear map defined by right multiplication by \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|leftRegularRepresentation| (((|Matrix| |#1|) $) "\\spad{leftRegularRepresentation(a)} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|rightTraceMatrix| (((|Matrix| |#1|)) "\\spad{rightTraceMatrix()} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis.")) (|leftTraceMatrix| (((|Matrix| |#1|)) "\\spad{leftTraceMatrix()} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by left trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis.")) (|rightDiscriminant| ((|#1|) "\\spad{rightDiscriminant()} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis. Note: the same as \\spad{determinant(rightTraceMatrix())}.")) (|leftDiscriminant| ((|#1|) "\\spad{leftDiscriminant()} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the left trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis. Note: the same as \\spad{determinant(leftTraceMatrix())}.")) (|convert| (($ (|Vector| |#1|)) "\\spad{convert([a1,{}...,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed \\spad{R}-module basis.") (((|Vector| |#1|) $) "\\spad{convert(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|represents| (($ (|Vector| |#1|)) "\\spad{represents([a1,{}...,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed \\spad{R}-module basis.")) (|conditionsForIdempotents| (((|List| (|Polynomial| |#1|))) "\\spad{conditionsForIdempotents()} determines a complete list of polynomial equations for the coefficients of idempotents with respect to the fixed \\spad{R}-module basis.")) (|structuralConstants| (((|Vector| (|Matrix| |#1|))) "\\spad{structuralConstants()} calculates the structural constants \\spad{[(gammaijk) for k in 1..rank()]} defined by \\spad{\\spad{vi} * vj = gammaij1 * v1 + ... + gammaijn * vn},{} where \\spad{v1},{}...,{}\\spad{vn} is the fixed \\spad{R}-module basis.")) (|elt| ((|#1| $ (|Integer|)) "\\spad{elt(a,{}i)} returns the \\spad{i}-th coefficient of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|coordinates| (((|Matrix| |#1|) (|Vector| $)) "\\spad{coordinates([a1,{}...,{}am])} returns a matrix whose \\spad{i}-th row is formed by the coordinates of \\spad{\\spad{ai}} with respect to the fixed \\spad{R}-module basis.") (((|Vector| |#1|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|basis| (((|Vector| $)) "\\spad{basis()} returns the fixed \\spad{R}-module basis.")))
-((-4245 |has| |#1| (-515)) (-4243 . T) (-4242 . T))
+((-4247 |has| |#1| (-517)) (-4245 . T) (-4244 . T))
NIL
-(-394 R)
+(-396 R)
((|constructor| (NIL "\\spadtype{Factored} creates a domain whose objects are kept in factored form as long as possible. Thus certain operations like multiplication and \\spad{gcd} are relatively easy to do. Others,{} like addition require somewhat more work,{} and unless the argument domain provides a factor function,{} the result may not be completely factored. Each object consists of a unit and a list of factors,{} where a factor has a member of \\spad{R} (the \"base\"),{} and exponent and a flag indicating what is known about the base. A flag may be one of \"nil\",{} \"sqfr\",{} \"irred\" or \"prime\",{} which respectively mean that nothing is known about the base,{} it is square-free,{} it is irreducible,{} or it is prime. The current restriction to integral domains allows simplification to be performed without worrying about multiplication order.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(u)} returns a rational number if \\spad{u} really is one,{} and \"failed\" otherwise.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(u)} assumes spadvar{\\spad{u}} is actually a rational number and does the conversion to rational number (see \\spadtype{Fraction Integer}).")) (|rational?| (((|Boolean|) $) "\\spad{rational?(u)} tests if \\spadvar{\\spad{u}} is actually a rational number (see \\spadtype{Fraction Integer}).")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(fn,{}u)} maps the function \\userfun{\\spad{fn}} across the factors of \\spadvar{\\spad{u}} and creates a new factored object. Note: this clears the information flags (sets them to \"nil\") because the effect of \\userfun{\\spad{fn}} is clearly not known in general.")) (|unitNormalize| (($ $) "\\spad{unitNormalize(u)} normalizes the unit part of the factorization. For example,{} when working with factored integers,{} this operation will ensure that the bases are all positive integers.")) (|unit| ((|#1| $) "\\spad{unit(u)} extracts the unit part of the factorization.")) (|flagFactor| (($ |#1| (|Integer|) (|Union| "nil" "sqfr" "irred" "prime")) "\\spad{flagFactor(base,{}exponent,{}flag)} creates a factored object with a single factor whose \\spad{base} is asserted to be properly described by the information \\spad{flag}.")) (|sqfrFactor| (($ |#1| (|Integer|)) "\\spad{sqfrFactor(base,{}exponent)} creates a factored object with a single factor whose \\spad{base} is asserted to be square-free (flag = \"sqfr\").")) (|primeFactor| (($ |#1| (|Integer|)) "\\spad{primeFactor(base,{}exponent)} creates a factored object with a single factor whose \\spad{base} is asserted to be prime (flag = \"prime\").")) (|numberOfFactors| (((|NonNegativeInteger|) $) "\\spad{numberOfFactors(u)} returns the number of factors in \\spadvar{\\spad{u}}.")) (|nthFlag| (((|Union| "nil" "sqfr" "irred" "prime") $ (|Integer|)) "\\spad{nthFlag(u,{}n)} returns the information flag of the \\spad{n}th factor of \\spadvar{\\spad{u}}. If \\spadvar{\\spad{n}} is not a valid index for a factor (for example,{} less than 1 or too big),{} \"nil\" is returned.")) (|nthFactor| ((|#1| $ (|Integer|)) "\\spad{nthFactor(u,{}n)} returns the base of the \\spad{n}th factor of \\spadvar{\\spad{u}}. If \\spadvar{\\spad{n}} is not a valid index for a factor (for example,{} less than 1 or too big),{} 1 is returned. If \\spadvar{\\spad{u}} consists only of a unit,{} the unit is returned.")) (|nthExponent| (((|Integer|) $ (|Integer|)) "\\spad{nthExponent(u,{}n)} returns the exponent of the \\spad{n}th factor of \\spadvar{\\spad{u}}. If \\spadvar{\\spad{n}} is not a valid index for a factor (for example,{} less than 1 or too big),{} 0 is returned.")) (|irreducibleFactor| (($ |#1| (|Integer|)) "\\spad{irreducibleFactor(base,{}exponent)} creates a factored object with a single factor whose \\spad{base} is asserted to be irreducible (flag = \"irred\").")) (|factors| (((|List| (|Record| (|:| |factor| |#1|) (|:| |exponent| (|Integer|)))) $) "\\spad{factors(u)} returns a list of the factors in a form suitable for iteration. That is,{} it returns a list where each element is a record containing a base and exponent. The original object is the product of all the factors and the unit (which can be extracted by \\axiom{unit(\\spad{u})}).")) (|nilFactor| (($ |#1| (|Integer|)) "\\spad{nilFactor(base,{}exponent)} creates a factored object with a single factor with no information about the kind of \\spad{base} (flag = \"nil\").")) (|factorList| (((|List| (|Record| (|:| |flg| (|Union| "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (|Integer|)))) $) "\\spad{factorList(u)} returns the list of factors with flags (for use by factoring code).")) (|makeFR| (($ |#1| (|List| (|Record| (|:| |flg| (|Union| "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (|Integer|))))) "\\spad{makeFR(unit,{}listOfFactors)} creates a factored object (for use by factoring code).")) (|exponent| (((|Integer|) $) "\\spad{exponent(u)} returns the exponent of the first factor of \\spadvar{\\spad{u}},{} or 0 if the factored form consists solely of a unit.")) (|expand| ((|#1| $) "\\spad{expand(f)} multiplies the unit and factors together,{} yielding an \"unfactored\" object. Note: this is purposely not called \\spadfun{coerce} which would cause the interpreter to do this automatically.")))
-((-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (LIST (QUOTE -484) (QUOTE (-1087)) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -286) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -263) (QUOTE $) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (QUOTE (-1127))) (-3255 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-1127)))) (|HasCategory| |#1| (QUOTE (-949))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -484) (QUOTE (-1087)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -263) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-211))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-508))) (|HasCategory| |#1| (QUOTE (-427))))
-(-395 R)
+((-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (LIST (QUOTE -486) (QUOTE (-1089)) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -288) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -265) (QUOTE $) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (QUOTE (-1129))) (-3321 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-1129)))) (|HasCategory| |#1| (QUOTE (-951))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -486) (QUOTE (-1089)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -265) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-213))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-510))) (|HasCategory| |#1| (QUOTE (-429))))
+(-397 R)
((|constructor| (NIL "\\spadtype{FactoredFunctionUtilities} implements some utility functions for manipulating factored objects.")) (|mergeFactors| (((|Factored| |#1|) (|Factored| |#1|) (|Factored| |#1|)) "\\spad{mergeFactors(u,{}v)} is used when the factorizations of \\spadvar{\\spad{u}} and \\spadvar{\\spad{v}} are known to be disjoint,{} \\spadignore{e.g.} resulting from a content/primitive part split. Essentially,{} it creates a new factored object by multiplying the units together and appending the lists of factors.")) (|refine| (((|Factored| |#1|) (|Factored| |#1|) (|Mapping| (|Factored| |#1|) |#1|)) "\\spad{refine(u,{}fn)} is used to apply the function \\userfun{\\spad{fn}} to each factor of \\spadvar{\\spad{u}} and then build a new factored object from the results. For example,{} if \\spadvar{\\spad{u}} were created by calling \\spad{nilFactor(10,{}2)} then \\spad{refine(u,{}factor)} would create a factored object equal to that created by \\spad{factor(100)} or \\spad{primeFactor(2,{}2) * primeFactor(5,{}2)}.")))
NIL
NIL
-(-396 R FE |x| |cen|)
+(-398 R FE |x| |cen|)
((|constructor| (NIL "This package converts expressions in some function space to exponential expansions.")) (|localAbs| ((|#2| |#2|) "\\spad{localAbs(fcn)} = \\spad{abs(fcn)} or \\spad{sqrt(fcn**2)} depending on whether or not FE has a function \\spad{abs}. This should be a local function,{} but the compiler won\\spad{'t} allow it.")) (|exprToXXP| (((|Union| (|:| |%expansion| (|ExponentialExpansion| |#1| |#2| |#3| |#4|)) (|:| |%problem| (|Record| (|:| |func| (|String|)) (|:| |prob| (|String|))))) |#2| (|Boolean|)) "\\spad{exprToXXP(fcn,{}posCheck?)} converts the expression \\spad{fcn} to an exponential expansion. If \\spad{posCheck?} is \\spad{true},{} log\\spad{'s} of negative numbers are not allowed nor are \\spad{n}th roots of negative numbers with \\spad{n} even. If \\spad{posCheck?} is \\spad{false},{} these are allowed.")))
NIL
NIL
-(-397 R A S B)
+(-399 R A S B)
((|constructor| (NIL "This package allows a mapping \\spad{R} \\spad{->} \\spad{S} to be lifted to a mapping from a function space over \\spad{R} to a function space over \\spad{S}.")) (|map| ((|#4| (|Mapping| |#3| |#1|) |#2|) "\\spad{map(f,{} a)} applies \\spad{f} to all the constants in \\spad{R} appearing in \\spad{a}.")))
NIL
NIL
-(-398 R FE |Expon| UPS TRAN |x|)
+(-400 R FE |Expon| UPS TRAN |x|)
((|constructor| (NIL "This package converts expressions in some function space to power series in a variable \\spad{x} with coefficients in that function space. The function \\spadfun{exprToUPS} converts expressions to power series whose coefficients do not contain the variable \\spad{x}. The function \\spadfun{exprToGenUPS} converts functional expressions to power series whose coefficients may involve functions of \\spad{log(x)}.")) (|localAbs| ((|#2| |#2|) "\\spad{localAbs(fcn)} = \\spad{abs(fcn)} or \\spad{sqrt(fcn**2)} depending on whether or not FE has a function \\spad{abs}. This should be a local function,{} but the compiler won\\spad{'t} allow it.")) (|exprToGenUPS| (((|Union| (|:| |%series| |#4|) (|:| |%problem| (|Record| (|:| |func| (|String|)) (|:| |prob| (|String|))))) |#2| (|Boolean|) (|String|)) "\\spad{exprToGenUPS(fcn,{}posCheck?,{}atanFlag)} converts the expression \\spad{fcn} to a generalized power series. If \\spad{posCheck?} is \\spad{true},{} log\\spad{'s} of negative numbers are not allowed nor are \\spad{n}th roots of negative numbers with \\spad{n} even. If \\spad{posCheck?} is \\spad{false},{} these are allowed. \\spad{atanFlag} determines how the case \\spad{atan(f(x))},{} where \\spad{f(x)} has a pole,{} will be treated. The possible values of \\spad{atanFlag} are \\spad{\"complex\"},{} \\spad{\"real: two sides\"},{} \\spad{\"real: left side\"},{} \\spad{\"real: right side\"},{} and \\spad{\"just do it\"}. If \\spad{atanFlag} is \\spad{\"complex\"},{} then no series expansion will be computed because,{} viewed as a function of a complex variable,{} \\spad{atan(f(x))} has an essential singularity. Otherwise,{} the sign of the leading coefficient of the series expansion of \\spad{f(x)} determines the constant coefficient in the series expansion of \\spad{atan(f(x))}. If this sign cannot be determined,{} a series expansion is computed only when \\spad{atanFlag} is \\spad{\"just do it\"}. When the leading term in the series expansion of \\spad{f(x)} is of odd degree (or is a rational degree with odd numerator),{} then the constant coefficient in the series expansion of \\spad{atan(f(x))} for values to the left differs from that for values to the right. If \\spad{atanFlag} is \\spad{\"real: two sides\"},{} no series expansion will be computed. If \\spad{atanFlag} is \\spad{\"real: left side\"} the constant coefficient for values to the left will be used and if \\spad{atanFlag} \\spad{\"real: right side\"} the constant coefficient for values to the right will be used. If there is a problem in converting the function to a power series,{} we return a record containing the name of the function that caused the problem and a brief description of the problem. When expanding the expression into a series it is assumed that the series is centered at 0. For a series centered at a,{} the user should perform the substitution \\spad{x -> x + a} before calling this function.")) (|exprToUPS| (((|Union| (|:| |%series| |#4|) (|:| |%problem| (|Record| (|:| |func| (|String|)) (|:| |prob| (|String|))))) |#2| (|Boolean|) (|String|)) "\\spad{exprToUPS(fcn,{}posCheck?,{}atanFlag)} converts the expression \\spad{fcn} to a power series. If \\spad{posCheck?} is \\spad{true},{} log\\spad{'s} of negative numbers are not allowed nor are \\spad{n}th roots of negative numbers with \\spad{n} even. If \\spad{posCheck?} is \\spad{false},{} these are allowed. \\spad{atanFlag} determines how the case \\spad{atan(f(x))},{} where \\spad{f(x)} has a pole,{} will be treated. The possible values of \\spad{atanFlag} are \\spad{\"complex\"},{} \\spad{\"real: two sides\"},{} \\spad{\"real: left side\"},{} \\spad{\"real: right side\"},{} and \\spad{\"just do it\"}. If \\spad{atanFlag} is \\spad{\"complex\"},{} then no series expansion will be computed because,{} viewed as a function of a complex variable,{} \\spad{atan(f(x))} has an essential singularity. Otherwise,{} the sign of the leading coefficient of the series expansion of \\spad{f(x)} determines the constant coefficient in the series expansion of \\spad{atan(f(x))}. If this sign cannot be determined,{} a series expansion is computed only when \\spad{atanFlag} is \\spad{\"just do it\"}. When the leading term in the series expansion of \\spad{f(x)} is of odd degree (or is a rational degree with odd numerator),{} then the constant coefficient in the series expansion of \\spad{atan(f(x))} for values to the left differs from that for values to the right. If \\spad{atanFlag} is \\spad{\"real: two sides\"},{} no series expansion will be computed. If \\spad{atanFlag} is \\spad{\"real: left side\"} the constant coefficient for values to the left will be used and if \\spad{atanFlag} \\spad{\"real: right side\"} the constant coefficient for values to the right will be used. If there is a problem in converting the function to a power series,{} a record containing the name of the function that caused the problem and a brief description of the problem is returned. When expanding the expression into a series it is assumed that the series is centered at 0. For a series centered at a,{} the user should perform the substitution \\spad{x -> x + a} before calling this function.")) (|integrate| (($ $) "\\spad{integrate(x)} returns the integral of \\spad{x} since we need to be able to integrate a power series")) (|differentiate| (($ $) "\\spad{differentiate(x)} returns the derivative of \\spad{x} since we need to be able to differentiate a power series")) (|coerce| (($ |#3|) "\\spad{coerce(e)} converts an 'exponent' \\spad{e} to an 'expression'")))
NIL
NIL
-(-399 S A R B)
+(-401 S A R B)
((|constructor| (NIL "FiniteSetAggregateFunctions2 provides functions involving two finite set aggregates where the underlying domains might be different. An example of this is to create a set of rational numbers by mapping a function across a set of integers,{} where the function divides each integer by 1000.")) (|scan| ((|#4| (|Mapping| |#3| |#1| |#3|) |#2| |#3|) "\\spad{scan(f,{}a,{}r)} successively applies \\spad{reduce(f,{}x,{}r)} to more and more leading sub-aggregates \\spad{x} of aggregate \\spad{a}. More precisely,{} if \\spad{a} is \\spad{[a1,{}a2,{}...]},{} then \\spad{scan(f,{}a,{}r)} returns \\spad {[reduce(f,{}[a1],{}r),{}reduce(f,{}[a1,{}a2],{}r),{}...]}.")) (|reduce| ((|#3| (|Mapping| |#3| |#1| |#3|) |#2| |#3|) "\\spad{reduce(f,{}a,{}r)} applies function \\spad{f} to each successive element of the aggregate \\spad{a} and an accumulant initialised to \\spad{r}. For example,{} \\spad{reduce(_+\\$Integer,{}[1,{}2,{}3],{}0)} does a \\spad{3+(2+(1+0))}. Note: third argument \\spad{r} may be regarded as an identity element for the function.")) (|map| ((|#4| (|Mapping| |#3| |#1|) |#2|) "\\spad{map(f,{}a)} applies function \\spad{f} to each member of aggregate \\spad{a},{} creating a new aggregate with a possibly different underlying domain.")))
NIL
NIL
-(-400 A S)
+(-402 A S)
((|constructor| (NIL "A finite-set aggregate models the notion of a finite set,{} that is,{} a collection of elements characterized by membership,{} but not by order or multiplicity. See \\spadtype{Set} for an example.")) (|min| ((|#2| $) "\\spad{min(u)} returns the smallest element of aggregate \\spad{u}.")) (|max| ((|#2| $) "\\spad{max(u)} returns the largest element of aggregate \\spad{u}.")) (|universe| (($) "\\spad{universe()}\\$\\spad{D} returns the universal set for finite set aggregate \\spad{D}.")) (|complement| (($ $) "\\spad{complement(u)} returns the complement of the set \\spad{u},{} \\spadignore{i.e.} the set of all values not in \\spad{u}.")) (|cardinality| (((|NonNegativeInteger|) $) "\\spad{cardinality(u)} returns the number of elements of \\spad{u}. Note: \\axiom{cardinality(\\spad{u}) = \\#u}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-344))))
-(-401 S)
+((|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-346))))
+(-403 S)
((|constructor| (NIL "A finite-set aggregate models the notion of a finite set,{} that is,{} a collection of elements characterized by membership,{} but not by order or multiplicity. See \\spadtype{Set} for an example.")) (|min| ((|#1| $) "\\spad{min(u)} returns the smallest element of aggregate \\spad{u}.")) (|max| ((|#1| $) "\\spad{max(u)} returns the largest element of aggregate \\spad{u}.")) (|universe| (($) "\\spad{universe()}\\$\\spad{D} returns the universal set for finite set aggregate \\spad{D}.")) (|complement| (($ $) "\\spad{complement(u)} returns the complement of the set \\spad{u},{} \\spadignore{i.e.} the set of all values not in \\spad{u}.")) (|cardinality| (((|NonNegativeInteger|) $) "\\spad{cardinality(u)} returns the number of elements of \\spad{u}. Note: \\axiom{cardinality(\\spad{u}) = \\#u}.")))
-((-4248 . T) (-4238 . T) (-4249 . T) (-2500 . T))
+((-4250 . T) (-4240 . T) (-4251 . T) (-2137 . T))
NIL
-(-402 R -3894)
+(-404 R -3576)
((|constructor| (NIL "\\spadtype{FunctionSpaceComplexIntegration} provides functions for the indefinite integration of complex-valued functions.")) (|complexIntegrate| ((|#2| |#2| (|Symbol|)) "\\spad{complexIntegrate(f,{} x)} returns the integral of \\spad{f(x)dx} where \\spad{x} is viewed as a complex variable.")) (|internalIntegrate0| (((|IntegrationResult| |#2|) |#2| (|Symbol|)) "\\spad{internalIntegrate0 should} be a local function,{} but is conditional.")) (|internalIntegrate| (((|IntegrationResult| |#2|) |#2| (|Symbol|)) "\\spad{internalIntegrate(f,{} x)} returns the integral of \\spad{f(x)dx} where \\spad{x} is viewed as a complex variable.")))
NIL
NIL
-(-403 R E)
+(-405 R E)
((|constructor| (NIL "\\indented{1}{Author: James Davenport} Date Created: 17 April 1992 Date Last Updated: Basic Functions: Related Constructors: Also See: AMS Classifications: Keywords: References: Description:")) (|makeCos| (($ |#2| |#1|) "\\spad{makeCos(e,{}r)} makes a sin expression with given argument and coefficient")) (|makeSin| (($ |#2| |#1|) "\\spad{makeSin(e,{}r)} makes a sin expression with given argument and coefficient")) (|coerce| (($ (|FourierComponent| |#2|)) "\\spad{coerce(c)} converts sin/cos terms into Fourier Series") (($ |#1|) "\\spad{coerce(r)} converts coefficients into Fourier Series")))
-((-4235 -12 (|has| |#1| (-6 -4235)) (|has| |#2| (-6 -4235))) (-4242 . T) (-4243 . T) (-4245 . T))
-((-12 (|HasAttribute| |#1| (QUOTE -4235)) (|HasAttribute| |#2| (QUOTE -4235))))
-(-404 R -3894)
+((-4237 -12 (|has| |#1| (-6 -4237)) (|has| |#2| (-6 -4237))) (-4244 . T) (-4245 . T) (-4247 . T))
+((-12 (|HasAttribute| |#1| (QUOTE -4237)) (|HasAttribute| |#2| (QUOTE -4237))))
+(-406 R -3576)
((|constructor| (NIL "\\spadtype{FunctionSpaceIntegration} provides functions for the indefinite integration of real-valued functions.")) (|integrate| (((|Union| |#2| (|List| |#2|)) |#2| (|Symbol|)) "\\spad{integrate(f,{} x)} returns the integral of \\spad{f(x)dx} where \\spad{x} is viewed as a real variable.")))
NIL
NIL
-(-405 S R)
+(-407 S R)
((|constructor| (NIL "A space of formal functions with arguments in an arbitrary ordered set.")) (|univariate| (((|Fraction| (|SparseUnivariatePolynomial| $)) $ (|Kernel| $)) "\\spad{univariate(f,{} k)} returns \\spad{f} viewed as a univariate fraction in \\spad{k}.")) (/ (($ (|SparseMultivariatePolynomial| |#2| (|Kernel| $)) (|SparseMultivariatePolynomial| |#2| (|Kernel| $))) "\\spad{p1/p2} returns the quotient of \\spad{p1} and \\spad{p2} as an element of \\%.")) (|denominator| (($ $) "\\spad{denominator(f)} returns the denominator of \\spad{f} converted to \\%.")) (|denom| (((|SparseMultivariatePolynomial| |#2| (|Kernel| $)) $) "\\spad{denom(f)} returns the denominator of \\spad{f} viewed as a polynomial in the kernels over \\spad{R}.")) (|convert| (($ (|Factored| $)) "\\spad{convert(f1\\^e1 ... fm\\^em)} returns \\spad{(f1)\\^e1 ... (fm)\\^em} as an element of \\%,{} using formal kernels created using a \\spadfunFrom{paren}{ExpressionSpace}.")) (|isPower| (((|Union| (|Record| (|:| |val| $) (|:| |exponent| (|Integer|))) "failed") $) "\\spad{isPower(p)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0}.")) (|numerator| (($ $) "\\spad{numerator(f)} returns the numerator of \\spad{f} converted to \\%.")) (|numer| (((|SparseMultivariatePolynomial| |#2| (|Kernel| $)) $) "\\spad{numer(f)} returns the numerator of \\spad{f} viewed as a polynomial in the kernels over \\spad{R} if \\spad{R} is an integral domain. If not,{} then numer(\\spad{f}) = \\spad{f} viewed as a polynomial in the kernels over \\spad{R}.")) (|coerce| (($ (|Fraction| (|Polynomial| (|Fraction| |#2|)))) "\\spad{coerce(f)} returns \\spad{f} as an element of \\%.") (($ (|Polynomial| (|Fraction| |#2|))) "\\spad{coerce(p)} returns \\spad{p} as an element of \\%.") (($ (|Fraction| |#2|)) "\\spad{coerce(q)} returns \\spad{q} as an element of \\%.") (($ (|SparseMultivariatePolynomial| |#2| (|Kernel| $))) "\\spad{coerce(p)} returns \\spad{p} as an element of \\%.")) (|isMult| (((|Union| (|Record| (|:| |coef| (|Integer|)) (|:| |var| (|Kernel| $))) "failed") $) "\\spad{isMult(p)} returns \\spad{[n,{} x]} if \\spad{p = n * x} and \\spad{n <> 0}.")) (|isPlus| (((|Union| (|List| $) "failed") $) "\\spad{isPlus(p)} returns \\spad{[m1,{}...,{}mn]} if \\spad{p = m1 +...+ mn} and \\spad{n > 1}.")) (|isExpt| (((|Union| (|Record| (|:| |var| (|Kernel| $)) (|:| |exponent| (|Integer|))) "failed") $ (|Symbol|)) "\\spad{isExpt(p,{}f)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0} and \\spad{x = f(a)}.") (((|Union| (|Record| (|:| |var| (|Kernel| $)) (|:| |exponent| (|Integer|))) "failed") $ (|BasicOperator|)) "\\spad{isExpt(p,{}op)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0} and \\spad{x = op(a)}.") (((|Union| (|Record| (|:| |var| (|Kernel| $)) (|:| |exponent| (|Integer|))) "failed") $) "\\spad{isExpt(p)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0}.")) (|isTimes| (((|Union| (|List| $) "failed") $) "\\spad{isTimes(p)} returns \\spad{[a1,{}...,{}an]} if \\spad{p = a1*...*an} and \\spad{n > 1}.")) (** (($ $ (|NonNegativeInteger|)) "\\spad{x**n} returns \\spad{x} * \\spad{x} * \\spad{x} * ... * \\spad{x} (\\spad{n} times).")) (|eval| (($ $ (|Symbol|) (|NonNegativeInteger|) (|Mapping| $ $)) "\\spad{eval(x,{} s,{} n,{} f)} replaces every \\spad{s(a)**n} in \\spad{x} by \\spad{f(a)} for any \\spad{a}.") (($ $ (|Symbol|) (|NonNegativeInteger|) (|Mapping| $ (|List| $))) "\\spad{eval(x,{} s,{} n,{} f)} replaces every \\spad{s(a1,{}...,{}am)**n} in \\spad{x} by \\spad{f(a1,{}...,{}am)} for any a1,{}...,{}am.") (($ $ (|List| (|Symbol|)) (|List| (|NonNegativeInteger|)) (|List| (|Mapping| $ (|List| $)))) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [n1,{}...,{}nm],{} [f1,{}...,{}fm])} replaces every \\spad{\\spad{si}(a1,{}...,{}an)**ni} in \\spad{x} by \\spad{\\spad{fi}(a1,{}...,{}an)} for any a1,{}...,{}am.") (($ $ (|List| (|Symbol|)) (|List| (|NonNegativeInteger|)) (|List| (|Mapping| $ $))) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [n1,{}...,{}nm],{} [f1,{}...,{}fm])} replaces every \\spad{\\spad{si}(a)**ni} in \\spad{x} by \\spad{\\spad{fi}(a)} for any \\spad{a}.") (($ $ (|List| (|BasicOperator|)) (|List| $) (|Symbol|)) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [f1,{}...,{}fm],{} y)} replaces every \\spad{\\spad{si}(a)} in \\spad{x} by \\spad{\\spad{fi}(y)} with \\spad{y} replaced by \\spad{a} for any \\spad{a}.") (($ $ (|BasicOperator|) $ (|Symbol|)) "\\spad{eval(x,{} s,{} f,{} y)} replaces every \\spad{s(a)} in \\spad{x} by \\spad{f(y)} with \\spad{y} replaced by \\spad{a} for any \\spad{a}.") (($ $) "\\spad{eval(f)} unquotes all the quoted operators in \\spad{f}.") (($ $ (|List| (|Symbol|))) "\\spad{eval(f,{} [foo1,{}...,{}foon])} unquotes all the \\spad{fooi}\\spad{'s} in \\spad{f}.") (($ $ (|Symbol|)) "\\spad{eval(f,{} foo)} unquotes all the foo\\spad{'s} in \\spad{f}.")) (|applyQuote| (($ (|Symbol|) (|List| $)) "\\spad{applyQuote(foo,{} [x1,{}...,{}xn])} returns \\spad{'foo(x1,{}...,{}xn)}.") (($ (|Symbol|) $ $ $ $) "\\spad{applyQuote(foo,{} x,{} y,{} z,{} t)} returns \\spad{'foo(x,{}y,{}z,{}t)}.") (($ (|Symbol|) $ $ $) "\\spad{applyQuote(foo,{} x,{} y,{} z)} returns \\spad{'foo(x,{}y,{}z)}.") (($ (|Symbol|) $ $) "\\spad{applyQuote(foo,{} x,{} y)} returns \\spad{'foo(x,{}y)}.") (($ (|Symbol|) $) "\\spad{applyQuote(foo,{} x)} returns \\spad{'foo(x)}.")) (|variables| (((|List| (|Symbol|)) $) "\\spad{variables(f)} returns the list of all the variables of \\spad{f}.")) (|ground| ((|#2| $) "\\spad{ground(f)} returns \\spad{f} as an element of \\spad{R}. An error occurs if \\spad{f} is not an element of \\spad{R}.")) (|ground?| (((|Boolean|) $) "\\spad{ground?(f)} tests if \\spad{f} is an element of \\spad{R}.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-448))) (|HasCategory| |#2| (QUOTE (-1028))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499)))))
-(-406 R)
+((|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-138))) (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-450))) (|HasCategory| |#2| (QUOTE (-1030))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501)))))
+(-408 R)
((|constructor| (NIL "A space of formal functions with arguments in an arbitrary ordered set.")) (|univariate| (((|Fraction| (|SparseUnivariatePolynomial| $)) $ (|Kernel| $)) "\\spad{univariate(f,{} k)} returns \\spad{f} viewed as a univariate fraction in \\spad{k}.")) (/ (($ (|SparseMultivariatePolynomial| |#1| (|Kernel| $)) (|SparseMultivariatePolynomial| |#1| (|Kernel| $))) "\\spad{p1/p2} returns the quotient of \\spad{p1} and \\spad{p2} as an element of \\%.")) (|denominator| (($ $) "\\spad{denominator(f)} returns the denominator of \\spad{f} converted to \\%.")) (|denom| (((|SparseMultivariatePolynomial| |#1| (|Kernel| $)) $) "\\spad{denom(f)} returns the denominator of \\spad{f} viewed as a polynomial in the kernels over \\spad{R}.")) (|convert| (($ (|Factored| $)) "\\spad{convert(f1\\^e1 ... fm\\^em)} returns \\spad{(f1)\\^e1 ... (fm)\\^em} as an element of \\%,{} using formal kernels created using a \\spadfunFrom{paren}{ExpressionSpace}.")) (|isPower| (((|Union| (|Record| (|:| |val| $) (|:| |exponent| (|Integer|))) "failed") $) "\\spad{isPower(p)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0}.")) (|numerator| (($ $) "\\spad{numerator(f)} returns the numerator of \\spad{f} converted to \\%.")) (|numer| (((|SparseMultivariatePolynomial| |#1| (|Kernel| $)) $) "\\spad{numer(f)} returns the numerator of \\spad{f} viewed as a polynomial in the kernels over \\spad{R} if \\spad{R} is an integral domain. If not,{} then numer(\\spad{f}) = \\spad{f} viewed as a polynomial in the kernels over \\spad{R}.")) (|coerce| (($ (|Fraction| (|Polynomial| (|Fraction| |#1|)))) "\\spad{coerce(f)} returns \\spad{f} as an element of \\%.") (($ (|Polynomial| (|Fraction| |#1|))) "\\spad{coerce(p)} returns \\spad{p} as an element of \\%.") (($ (|Fraction| |#1|)) "\\spad{coerce(q)} returns \\spad{q} as an element of \\%.") (($ (|SparseMultivariatePolynomial| |#1| (|Kernel| $))) "\\spad{coerce(p)} returns \\spad{p} as an element of \\%.")) (|isMult| (((|Union| (|Record| (|:| |coef| (|Integer|)) (|:| |var| (|Kernel| $))) "failed") $) "\\spad{isMult(p)} returns \\spad{[n,{} x]} if \\spad{p = n * x} and \\spad{n <> 0}.")) (|isPlus| (((|Union| (|List| $) "failed") $) "\\spad{isPlus(p)} returns \\spad{[m1,{}...,{}mn]} if \\spad{p = m1 +...+ mn} and \\spad{n > 1}.")) (|isExpt| (((|Union| (|Record| (|:| |var| (|Kernel| $)) (|:| |exponent| (|Integer|))) "failed") $ (|Symbol|)) "\\spad{isExpt(p,{}f)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0} and \\spad{x = f(a)}.") (((|Union| (|Record| (|:| |var| (|Kernel| $)) (|:| |exponent| (|Integer|))) "failed") $ (|BasicOperator|)) "\\spad{isExpt(p,{}op)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0} and \\spad{x = op(a)}.") (((|Union| (|Record| (|:| |var| (|Kernel| $)) (|:| |exponent| (|Integer|))) "failed") $) "\\spad{isExpt(p)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0}.")) (|isTimes| (((|Union| (|List| $) "failed") $) "\\spad{isTimes(p)} returns \\spad{[a1,{}...,{}an]} if \\spad{p = a1*...*an} and \\spad{n > 1}.")) (** (($ $ (|NonNegativeInteger|)) "\\spad{x**n} returns \\spad{x} * \\spad{x} * \\spad{x} * ... * \\spad{x} (\\spad{n} times).")) (|eval| (($ $ (|Symbol|) (|NonNegativeInteger|) (|Mapping| $ $)) "\\spad{eval(x,{} s,{} n,{} f)} replaces every \\spad{s(a)**n} in \\spad{x} by \\spad{f(a)} for any \\spad{a}.") (($ $ (|Symbol|) (|NonNegativeInteger|) (|Mapping| $ (|List| $))) "\\spad{eval(x,{} s,{} n,{} f)} replaces every \\spad{s(a1,{}...,{}am)**n} in \\spad{x} by \\spad{f(a1,{}...,{}am)} for any a1,{}...,{}am.") (($ $ (|List| (|Symbol|)) (|List| (|NonNegativeInteger|)) (|List| (|Mapping| $ (|List| $)))) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [n1,{}...,{}nm],{} [f1,{}...,{}fm])} replaces every \\spad{\\spad{si}(a1,{}...,{}an)**ni} in \\spad{x} by \\spad{\\spad{fi}(a1,{}...,{}an)} for any a1,{}...,{}am.") (($ $ (|List| (|Symbol|)) (|List| (|NonNegativeInteger|)) (|List| (|Mapping| $ $))) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [n1,{}...,{}nm],{} [f1,{}...,{}fm])} replaces every \\spad{\\spad{si}(a)**ni} in \\spad{x} by \\spad{\\spad{fi}(a)} for any \\spad{a}.") (($ $ (|List| (|BasicOperator|)) (|List| $) (|Symbol|)) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [f1,{}...,{}fm],{} y)} replaces every \\spad{\\spad{si}(a)} in \\spad{x} by \\spad{\\spad{fi}(y)} with \\spad{y} replaced by \\spad{a} for any \\spad{a}.") (($ $ (|BasicOperator|) $ (|Symbol|)) "\\spad{eval(x,{} s,{} f,{} y)} replaces every \\spad{s(a)} in \\spad{x} by \\spad{f(y)} with \\spad{y} replaced by \\spad{a} for any \\spad{a}.") (($ $) "\\spad{eval(f)} unquotes all the quoted operators in \\spad{f}.") (($ $ (|List| (|Symbol|))) "\\spad{eval(f,{} [foo1,{}...,{}foon])} unquotes all the \\spad{fooi}\\spad{'s} in \\spad{f}.") (($ $ (|Symbol|)) "\\spad{eval(f,{} foo)} unquotes all the foo\\spad{'s} in \\spad{f}.")) (|applyQuote| (($ (|Symbol|) (|List| $)) "\\spad{applyQuote(foo,{} [x1,{}...,{}xn])} returns \\spad{'foo(x1,{}...,{}xn)}.") (($ (|Symbol|) $ $ $ $) "\\spad{applyQuote(foo,{} x,{} y,{} z,{} t)} returns \\spad{'foo(x,{}y,{}z,{}t)}.") (($ (|Symbol|) $ $ $) "\\spad{applyQuote(foo,{} x,{} y,{} z)} returns \\spad{'foo(x,{}y,{}z)}.") (($ (|Symbol|) $ $) "\\spad{applyQuote(foo,{} x,{} y)} returns \\spad{'foo(x,{}y)}.") (($ (|Symbol|) $) "\\spad{applyQuote(foo,{} x)} returns \\spad{'foo(x)}.")) (|variables| (((|List| (|Symbol|)) $) "\\spad{variables(f)} returns the list of all the variables of \\spad{f}.")) (|ground| ((|#1| $) "\\spad{ground(f)} returns \\spad{f} as an element of \\spad{R}. An error occurs if \\spad{f} is not an element of \\spad{R}.")) (|ground?| (((|Boolean|) $) "\\spad{ground?(f)} tests if \\spad{f} is an element of \\spad{R}.")))
-((-4245 -3255 (|has| |#1| (-973)) (|has| |#1| (-448))) (-4243 |has| |#1| (-158)) (-4242 |has| |#1| (-158)) ((-4250 "*") |has| |#1| (-515)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-515)) (-4240 |has| |#1| (-515)) (-2500 . T))
+((-4247 -3321 (|has| |#1| (-975)) (|has| |#1| (-450))) (-4245 |has| |#1| (-160)) (-4244 |has| |#1| (-160)) ((-4252 "*") |has| |#1| (-517)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-517)) (-4242 |has| |#1| (-517)) (-2137 . T))
NIL
-(-407 R -3894)
+(-409 R -3576)
((|constructor| (NIL "Provides some special functions over an integral domain.")) (|iiabs| ((|#2| |#2|) "\\spad{iiabs(x)} should be local but conditional.")) (|iiGamma| ((|#2| |#2|) "\\spad{iiGamma(x)} should be local but conditional.")) (|airyBi| ((|#2| |#2|) "\\spad{airyBi(x)} returns the airybi function applied to \\spad{x}")) (|airyAi| ((|#2| |#2|) "\\spad{airyAi(x)} returns the airyai function applied to \\spad{x}")) (|besselK| ((|#2| |#2| |#2|) "\\spad{besselK(x,{}y)} returns the besselk function applied to \\spad{x} and \\spad{y}")) (|besselI| ((|#2| |#2| |#2|) "\\spad{besselI(x,{}y)} returns the besseli function applied to \\spad{x} and \\spad{y}")) (|besselY| ((|#2| |#2| |#2|) "\\spad{besselY(x,{}y)} returns the bessely function applied to \\spad{x} and \\spad{y}")) (|besselJ| ((|#2| |#2| |#2|) "\\spad{besselJ(x,{}y)} returns the besselj function applied to \\spad{x} and \\spad{y}")) (|polygamma| ((|#2| |#2| |#2|) "\\spad{polygamma(x,{}y)} returns the polygamma function applied to \\spad{x} and \\spad{y}")) (|digamma| ((|#2| |#2|) "\\spad{digamma(x)} returns the digamma function applied to \\spad{x}")) (|Beta| ((|#2| |#2| |#2|) "\\spad{Beta(x,{}y)} returns the beta function applied to \\spad{x} and \\spad{y}")) (|Gamma| ((|#2| |#2| |#2|) "\\spad{Gamma(a,{}x)} returns the incomplete Gamma function applied to a and \\spad{x}") ((|#2| |#2|) "\\spad{Gamma(f)} returns the formal Gamma function applied to \\spad{f}")) (|abs| ((|#2| |#2|) "\\spad{abs(f)} returns the absolute value operator applied to \\spad{f}")) (|operator| (((|BasicOperator|) (|BasicOperator|)) "\\spad{operator(op)} returns a copy of \\spad{op} with the domain-dependent properties appropriate for \\spad{F}; error if \\spad{op} is not a special function operator")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(op)} is \\spad{true} if \\spad{op} is a special function operator.")))
NIL
NIL
-(-408 R -3894)
+(-410 R -3576)
((|constructor| (NIL "FunctionsSpacePrimitiveElement provides functions to compute primitive elements in functions spaces.")) (|primitiveElement| (((|Record| (|:| |primelt| |#2|) (|:| |pol1| (|SparseUnivariatePolynomial| |#2|)) (|:| |pol2| (|SparseUnivariatePolynomial| |#2|)) (|:| |prim| (|SparseUnivariatePolynomial| |#2|))) |#2| |#2|) "\\spad{primitiveElement(a1,{} a2)} returns \\spad{[a,{} q1,{} q2,{} q]} such that \\spad{k(a1,{} a2) = k(a)},{} \\spad{\\spad{ai} = \\spad{qi}(a)},{} and \\spad{q(a) = 0}. The minimal polynomial for a2 may involve \\spad{a1},{} but the minimal polynomial for \\spad{a1} may not involve a2; This operations uses \\spadfun{resultant}.") (((|Record| (|:| |primelt| |#2|) (|:| |poly| (|List| (|SparseUnivariatePolynomial| |#2|))) (|:| |prim| (|SparseUnivariatePolynomial| |#2|))) (|List| |#2|)) "\\spad{primitiveElement([a1,{}...,{}an])} returns \\spad{[a,{} [q1,{}...,{}qn],{} q]} such that then \\spad{k(a1,{}...,{}an) = k(a)},{} \\spad{\\spad{ai} = \\spad{qi}(a)},{} and \\spad{q(a) = 0}. This operation uses the technique of \\spadglossSee{groebner bases}{Groebner basis}.")))
NIL
((|HasCategory| |#2| (QUOTE (-27))))
-(-409 R -3894)
+(-411 R -3576)
((|constructor| (NIL "This package provides function which replaces transcendental kernels in a function space by random integers. The correspondence between the kernels and the integers is fixed between calls to new().")) (|newReduc| (((|Void|)) "\\spad{newReduc()} \\undocumented")) (|bringDown| (((|SparseUnivariatePolynomial| (|Fraction| (|Integer|))) |#2| (|Kernel| |#2|)) "\\spad{bringDown(f,{}k)} \\undocumented") (((|Fraction| (|Integer|)) |#2|) "\\spad{bringDown(f)} \\undocumented")))
NIL
NIL
-(-410)
+(-412)
((|constructor| (NIL "Creates and manipulates objects which correspond to the basic FORTRAN data types: REAL,{} INTEGER,{} COMPLEX,{} LOGICAL and CHARACTER")) (= (((|Boolean|) $ $) "\\spad{x=y} tests for equality")) (|logical?| (((|Boolean|) $) "\\spad{logical?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type LOGICAL.")) (|character?| (((|Boolean|) $) "\\spad{character?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type CHARACTER.")) (|doubleComplex?| (((|Boolean|) $) "\\spad{doubleComplex?(t)} tests whether \\spad{t} is equivalent to the (non-standard) FORTRAN type DOUBLE COMPLEX.")) (|complex?| (((|Boolean|) $) "\\spad{complex?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type COMPLEX.")) (|integer?| (((|Boolean|) $) "\\spad{integer?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type INTEGER.")) (|double?| (((|Boolean|) $) "\\spad{double?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type DOUBLE PRECISION")) (|real?| (((|Boolean|) $) "\\spad{real?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type REAL.")) (|coerce| (((|SExpression|) $) "\\spad{coerce(x)} returns the \\spad{s}-expression associated with \\spad{x}") (((|Symbol|) $) "\\spad{coerce(x)} returns the symbol associated with \\spad{x}") (($ (|Symbol|)) "\\spad{coerce(s)} transforms the symbol \\spad{s} into an element of FortranScalarType provided \\spad{s} is one of real,{} complex,{}double precision,{} logical,{} integer,{} character,{} REAL,{} COMPLEX,{} LOGICAL,{} INTEGER,{} CHARACTER,{} DOUBLE PRECISION") (($ (|String|)) "\\spad{coerce(s)} transforms the string \\spad{s} into an element of FortranScalarType provided \\spad{s} is one of \"real\",{} \"double precision\",{} \"complex\",{} \"logical\",{} \"integer\",{} \"character\",{} \"REAL\",{} \"COMPLEX\",{} \"LOGICAL\",{} \"INTEGER\",{} \"CHARACTER\",{} \"DOUBLE PRECISION\"")))
NIL
NIL
-(-411 R -3894 UP)
+(-413 R -3576 UP)
((|constructor| (NIL "\\indented{1}{Used internally by IR2F} Author: Manuel Bronstein Date Created: 12 May 1988 Date Last Updated: 22 September 1993 Keywords: function,{} space,{} polynomial,{} factoring")) (|anfactor| (((|Union| (|Factored| (|SparseUnivariatePolynomial| (|AlgebraicNumber|))) "failed") |#3|) "\\spad{anfactor(p)} tries to factor \\spad{p} over algebraic numbers,{} returning \"failed\" if it cannot")) (|UP2ifCan| (((|Union| (|:| |overq| (|SparseUnivariatePolynomial| (|Fraction| (|Integer|)))) (|:| |overan| (|SparseUnivariatePolynomial| (|AlgebraicNumber|))) (|:| |failed| (|Boolean|))) |#3|) "\\spad{UP2ifCan(x)} should be local but conditional.")) (|qfactor| (((|Union| (|Factored| (|SparseUnivariatePolynomial| (|Fraction| (|Integer|)))) "failed") |#3|) "\\spad{qfactor(p)} tries to factor \\spad{p} over fractions of integers,{} returning \"failed\" if it cannot")) (|ffactor| (((|Factored| |#3|) |#3|) "\\spad{ffactor(p)} tries to factor a univariate polynomial \\spad{p} over \\spad{F}")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-47)))))
-(-412)
+((|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-47)))))
+(-414)
((|constructor| (NIL "Code to manipulate Fortran templates")) (|fortranCarriageReturn| (((|Void|)) "\\spad{fortranCarriageReturn()} produces a carriage return on the current Fortran output stream")) (|fortranLiteral| (((|Void|) (|String|)) "\\spad{fortranLiteral(s)} writes \\spad{s} to the current Fortran output stream")) (|fortranLiteralLine| (((|Void|) (|String|)) "\\spad{fortranLiteralLine(s)} writes \\spad{s} to the current Fortran output stream,{} followed by a carriage return")) (|processTemplate| (((|FileName|) (|FileName|)) "\\spad{processTemplate(tp)} processes the template \\spad{tp},{} writing the result to the current FORTRAN output stream.") (((|FileName|) (|FileName|) (|FileName|)) "\\spad{processTemplate(tp,{}fn)} processes the template \\spad{tp},{} writing the result out to \\spad{fn}.")))
NIL
NIL
-(-413)
+(-415)
((|constructor| (NIL "Creates and manipulates objects which correspond to FORTRAN data types,{} including array dimensions.")) (|fortranCharacter| (($) "\\spad{fortranCharacter()} returns CHARACTER,{} an element of FortranType")) (|fortranDoubleComplex| (($) "\\spad{fortranDoubleComplex()} returns DOUBLE COMPLEX,{} an element of FortranType")) (|fortranComplex| (($) "\\spad{fortranComplex()} returns COMPLEX,{} an element of FortranType")) (|fortranLogical| (($) "\\spad{fortranLogical()} returns LOGICAL,{} an element of FortranType")) (|fortranInteger| (($) "\\spad{fortranInteger()} returns INTEGER,{} an element of FortranType")) (|fortranDouble| (($) "\\spad{fortranDouble()} returns DOUBLE PRECISION,{} an element of FortranType")) (|fortranReal| (($) "\\spad{fortranReal()} returns REAL,{} an element of FortranType")) (|construct| (($ (|Union| (|:| |fst| (|FortranScalarType|)) (|:| |void| "void")) (|List| (|Polynomial| (|Integer|))) (|Boolean|)) "\\spad{construct(type,{}dims)} creates an element of FortranType") (($ (|Union| (|:| |fst| (|FortranScalarType|)) (|:| |void| "void")) (|List| (|Symbol|)) (|Boolean|)) "\\spad{construct(type,{}dims)} creates an element of FortranType")) (|external?| (((|Boolean|) $) "\\spad{external?(u)} returns \\spad{true} if \\spad{u} is declared to be EXTERNAL")) (|dimensionsOf| (((|List| (|Polynomial| (|Integer|))) $) "\\spad{dimensionsOf(t)} returns the dimensions of \\spad{t}")) (|scalarTypeOf| (((|Union| (|:| |fst| (|FortranScalarType|)) (|:| |void| "void")) $) "\\spad{scalarTypeOf(t)} returns the FORTRAN data type of \\spad{t}")) (|coerce| (($ (|FortranScalarType|)) "\\spad{coerce(t)} creates an element from a scalar type") (((|OutputForm|) $) "\\spad{coerce(x)} provides a printable form for \\spad{x}")))
NIL
NIL
-(-414 |f|)
+(-416 |f|)
((|constructor| (NIL "This domain implements named functions")) (|name| (((|Symbol|) $) "\\spad{name(x)} returns the symbol")))
NIL
NIL
-(-415)
+(-417)
((|constructor| (NIL "\\axiomType{FortranVectorCategory} provides support for producing Functions and Subroutines when the input to these is an AXIOM object of type \\axiomType{Vector} or in domains involving \\axiomType{FortranCode}.")) (|coerce| (($ (|Record| (|:| |localSymbols| (|SymbolTable|)) (|:| |code| (|List| (|FortranCode|))))) "\\spad{coerce(e)} takes the component of \\spad{e} from \\spadtype{List FortranCode} and uses it as the body of the ASP,{} making the declarations in the \\spadtype{SymbolTable} component.") (($ (|FortranCode|)) "\\spad{coerce(e)} takes an object from \\spadtype{FortranCode} and \\indented{1}{uses it as the body of an ASP.}") (($ (|List| (|FortranCode|))) "\\spad{coerce(e)} takes an object from \\spadtype{List FortranCode} and \\indented{1}{uses it as the body of an ASP.}") (($ (|Vector| (|MachineFloat|))) "\\spad{coerce(v)} produces an ASP which returns the value of \\spad{v}.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-416)
+(-418)
((|constructor| (NIL "\\axiomType{FortranVectorFunctionCategory} is the catagory of arguments to NAG Library routines which return the values of vectors of functions.")) (|retractIfCan| (((|Union| $ "failed") (|Vector| (|Fraction| (|Polynomial| (|Integer|))))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Vector| (|Fraction| (|Polynomial| (|Float|))))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Vector| (|Polynomial| (|Integer|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Vector| (|Polynomial| (|Float|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Vector| (|Expression| (|Integer|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Vector| (|Expression| (|Float|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}")) (|retract| (($ (|Vector| (|Fraction| (|Polynomial| (|Integer|))))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Vector| (|Fraction| (|Polynomial| (|Float|))))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Vector| (|Polynomial| (|Integer|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Vector| (|Polynomial| (|Float|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Vector| (|Expression| (|Integer|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Vector| (|Expression| (|Float|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}")) (|coerce| (($ (|Record| (|:| |localSymbols| (|SymbolTable|)) (|:| |code| (|List| (|FortranCode|))))) "\\spad{coerce(e)} takes the component of \\spad{e} from \\spadtype{List FortranCode} and uses it as the body of the ASP,{} making the declarations in the \\spadtype{SymbolTable} component.") (($ (|FortranCode|)) "\\spad{coerce(e)} takes an object from \\spadtype{FortranCode} and \\indented{1}{uses it as the body of an ASP.}") (($ (|List| (|FortranCode|))) "\\spad{coerce(e)} takes an object from \\spadtype{List FortranCode} and \\indented{1}{uses it as the body of an ASP.}")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-417 UP)
+(-419 UP)
((|constructor| (NIL "\\spadtype{GaloisGroupFactorizer} provides functions to factor resolvents.")) (|btwFact| (((|Record| (|:| |contp| (|Integer|)) (|:| |factors| (|List| (|Record| (|:| |irr| |#1|) (|:| |pow| (|Integer|)))))) |#1| (|Boolean|) (|Set| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{btwFact(p,{}sqf,{}pd,{}r)} returns the factorization of \\spad{p},{} the result is a Record such that \\spad{contp=}content \\spad{p},{} \\spad{factors=}List of irreducible factors of \\spad{p} with exponent. If \\spad{sqf=true} the polynomial is assumed to be square free (\\spadignore{i.e.} without repeated factors). \\spad{pd} is the \\spadtype{Set} of possible degrees. \\spad{r} is a lower bound for the number of factors of \\spad{p}. Please do not use this function in your code because its design may change.")) (|henselFact| (((|Record| (|:| |contp| (|Integer|)) (|:| |factors| (|List| (|Record| (|:| |irr| |#1|) (|:| |pow| (|Integer|)))))) |#1| (|Boolean|)) "\\spad{henselFact(p,{}sqf)} returns the factorization of \\spad{p},{} the result is a Record such that \\spad{contp=}content \\spad{p},{} \\spad{factors=}List of irreducible factors of \\spad{p} with exponent. If \\spad{sqf=true} the polynomial is assumed to be square free (\\spadignore{i.e.} without repeated factors).")) (|factorOfDegree| (((|Union| |#1| "failed") (|PositiveInteger|) |#1| (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|) (|Boolean|)) "\\spad{factorOfDegree(d,{}p,{}listOfDegrees,{}r,{}sqf)} returns a factor of \\spad{p} of degree \\spad{d} knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees},{} and that \\spad{p} has at least \\spad{r} factors. If \\spad{sqf=true} the polynomial is assumed to be square free (\\spadignore{i.e.} without repeated factors).") (((|Union| |#1| "failed") (|PositiveInteger|) |#1| (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{factorOfDegree(d,{}p,{}listOfDegrees,{}r)} returns a factor of \\spad{p} of degree \\spad{d} knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees},{} and that \\spad{p} has at least \\spad{r} factors.") (((|Union| |#1| "failed") (|PositiveInteger|) |#1| (|List| (|NonNegativeInteger|))) "\\spad{factorOfDegree(d,{}p,{}listOfDegrees)} returns a factor of \\spad{p} of degree \\spad{d} knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees}.") (((|Union| |#1| "failed") (|PositiveInteger|) |#1| (|NonNegativeInteger|)) "\\spad{factorOfDegree(d,{}p,{}r)} returns a factor of \\spad{p} of degree \\spad{d} knowing that \\spad{p} has at least \\spad{r} factors.") (((|Union| |#1| "failed") (|PositiveInteger|) |#1|) "\\spad{factorOfDegree(d,{}p)} returns a factor of \\spad{p} of degree \\spad{d}.")) (|factorSquareFree| (((|Factored| |#1|) |#1| (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{factorSquareFree(p,{}d,{}r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm,{} knowing that \\spad{d} divides the degree of all factors of \\spad{p} and that \\spad{p} has at least \\spad{r} factors. \\spad{f} is supposed not having any repeated factor (this is not checked).") (((|Factored| |#1|) |#1| (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{factorSquareFree(p,{}listOfDegrees,{}r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm,{} knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees} and that \\spad{p} has at least \\spad{r} factors. \\spad{f} is supposed not having any repeated factor (this is not checked).") (((|Factored| |#1|) |#1| (|List| (|NonNegativeInteger|))) "\\spad{factorSquareFree(p,{}listOfDegrees)} factorizes the polynomial \\spad{p} using the single factor bound algorithm and knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees}. \\spad{f} is supposed not having any repeated factor (this is not checked).") (((|Factored| |#1|) |#1| (|NonNegativeInteger|)) "\\spad{factorSquareFree(p,{}r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm and knowing that \\spad{p} has at least \\spad{r} factors. \\spad{f} is supposed not having any repeated factor (this is not checked).") (((|Factored| |#1|) |#1|) "\\spad{factorSquareFree(p)} returns the factorization of \\spad{p} which is supposed not having any repeated factor (this is not checked).")) (|factor| (((|Factored| |#1|) |#1| (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{factor(p,{}d,{}r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm,{} knowing that \\spad{d} divides the degree of all factors of \\spad{p} and that \\spad{p} has at least \\spad{r} factors.") (((|Factored| |#1|) |#1| (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{factor(p,{}listOfDegrees,{}r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm,{} knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees} and that \\spad{p} has at least \\spad{r} factors.") (((|Factored| |#1|) |#1| (|List| (|NonNegativeInteger|))) "\\spad{factor(p,{}listOfDegrees)} factorizes the polynomial \\spad{p} using the single factor bound algorithm and knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees}.") (((|Factored| |#1|) |#1| (|NonNegativeInteger|)) "\\spad{factor(p,{}r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm and knowing that \\spad{p} has at least \\spad{r} factors.") (((|Factored| |#1|) |#1|) "\\spad{factor(p)} returns the factorization of \\spad{p} over the integers.")) (|tryFunctionalDecomposition| (((|Boolean|) (|Boolean|)) "\\spad{tryFunctionalDecomposition(b)} chooses whether factorizers have to look for functional decomposition of polynomials (\\spad{true}) or not (\\spad{false}). Returns the previous value.")) (|tryFunctionalDecomposition?| (((|Boolean|)) "\\spad{tryFunctionalDecomposition?()} returns \\spad{true} if factorizers try functional decomposition of polynomials before factoring them.")) (|eisensteinIrreducible?| (((|Boolean|) |#1|) "\\spad{eisensteinIrreducible?(p)} returns \\spad{true} if \\spad{p} can be shown to be irreducible by Eisenstein\\spad{'s} criterion,{} \\spad{false} is inconclusive.")) (|useEisensteinCriterion| (((|Boolean|) (|Boolean|)) "\\spad{useEisensteinCriterion(b)} chooses whether factorizers check Eisenstein\\spad{'s} criterion before factoring: \\spad{true} for using it,{} \\spad{false} else. Returns the previous value.")) (|useEisensteinCriterion?| (((|Boolean|)) "\\spad{useEisensteinCriterion?()} returns \\spad{true} if factorizers check Eisenstein\\spad{'s} criterion before factoring.")) (|useSingleFactorBound| (((|Boolean|) (|Boolean|)) "\\spad{useSingleFactorBound(b)} chooses the algorithm to be used by the factorizers: \\spad{true} for algorithm with single factor bound,{} \\spad{false} for algorithm with overall bound. Returns the previous value.")) (|useSingleFactorBound?| (((|Boolean|)) "\\spad{useSingleFactorBound?()} returns \\spad{true} if algorithm with single factor bound is used for factorization,{} \\spad{false} for algorithm with overall bound.")) (|modularFactor| (((|Record| (|:| |prime| (|Integer|)) (|:| |factors| (|List| |#1|))) |#1|) "\\spad{modularFactor(f)} chooses a \"good\" prime and returns the factorization of \\spad{f} modulo this prime in a form that may be used by \\spadfunFrom{completeHensel}{GeneralHenselPackage}. If prime is zero it means that \\spad{f} has been proved to be irreducible over the integers or that \\spad{f} is a unit (\\spadignore{i.e.} 1 or \\spad{-1}). \\spad{f} shall be primitive (\\spadignore{i.e.} content(\\spad{p})\\spad{=1}) and square free (\\spadignore{i.e.} without repeated factors).")) (|numberOfFactors| (((|NonNegativeInteger|) (|List| (|Record| (|:| |factor| |#1|) (|:| |degree| (|Integer|))))) "\\spad{numberOfFactors(ddfactorization)} returns the number of factors of the polynomial \\spad{f} modulo \\spad{p} where \\spad{ddfactorization} is the distinct degree factorization of \\spad{f} computed by \\spadfunFrom{ddFact}{ModularDistinctDegreeFactorizer} for some prime \\spad{p}.")) (|stopMusserTrials| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{stopMusserTrials(n)} sets to \\spad{n} the bound on the number of factors for which \\spadfun{modularFactor} stops to look for an other prime. You will have to remember that the step of recombining the extraneous factors may take up to \\spad{2**n} trials. Returns the previous value.") (((|PositiveInteger|)) "\\spad{stopMusserTrials()} returns the bound on the number of factors for which \\spadfun{modularFactor} stops to look for an other prime. You will have to remember that the step of recombining the extraneous factors may take up to \\spad{2**stopMusserTrials()} trials.")) (|musserTrials| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{musserTrials(n)} sets to \\spad{n} the number of primes to be tried in \\spadfun{modularFactor} and returns the previous value.") (((|PositiveInteger|)) "\\spad{musserTrials()} returns the number of primes that are tried in \\spadfun{modularFactor}.")) (|degreePartition| (((|Multiset| (|NonNegativeInteger|)) (|List| (|Record| (|:| |factor| |#1|) (|:| |degree| (|Integer|))))) "\\spad{degreePartition(ddfactorization)} returns the degree partition of the polynomial \\spad{f} modulo \\spad{p} where \\spad{ddfactorization} is the distinct degree factorization of \\spad{f} computed by \\spadfunFrom{ddFact}{ModularDistinctDegreeFactorizer} for some prime \\spad{p}.")) (|makeFR| (((|Factored| |#1|) (|Record| (|:| |contp| (|Integer|)) (|:| |factors| (|List| (|Record| (|:| |irr| |#1|) (|:| |pow| (|Integer|))))))) "\\spad{makeFR(flist)} turns the final factorization of henselFact into a \\spadtype{Factored} object.")))
NIL
NIL
-(-418 R UP -3894)
+(-420 R UP -3576)
((|constructor| (NIL "\\spadtype{GaloisGroupFactorizationUtilities} provides functions that will be used by the factorizer.")) (|length| ((|#3| |#2|) "\\spad{length(p)} returns the sum of the absolute values of the coefficients of the polynomial \\spad{p}.")) (|height| ((|#3| |#2|) "\\spad{height(p)} returns the maximal absolute value of the coefficients of the polynomial \\spad{p}.")) (|infinityNorm| ((|#3| |#2|) "\\spad{infinityNorm(f)} returns the maximal absolute value of the coefficients of the polynomial \\spad{f}.")) (|quadraticNorm| ((|#3| |#2|) "\\spad{quadraticNorm(f)} returns the \\spad{l2} norm of the polynomial \\spad{f}.")) (|norm| ((|#3| |#2| (|PositiveInteger|)) "\\spad{norm(f,{}p)} returns the \\spad{lp} norm of the polynomial \\spad{f}.")) (|singleFactorBound| (((|Integer|) |#2|) "\\spad{singleFactorBound(p,{}r)} returns a bound on the infinite norm of the factor of \\spad{p} with smallest Bombieri\\spad{'s} norm. \\spad{p} shall be of degree higher or equal to 2.") (((|Integer|) |#2| (|NonNegativeInteger|)) "\\spad{singleFactorBound(p,{}r)} returns a bound on the infinite norm of the factor of \\spad{p} with smallest Bombieri\\spad{'s} norm. \\spad{r} is a lower bound for the number of factors of \\spad{p}. \\spad{p} shall be of degree higher or equal to 2.")) (|rootBound| (((|Integer|) |#2|) "\\spad{rootBound(p)} returns a bound on the largest norm of the complex roots of \\spad{p}.")) (|bombieriNorm| ((|#3| |#2| (|PositiveInteger|)) "\\spad{bombieriNorm(p,{}n)} returns the \\spad{n}th Bombieri\\spad{'s} norm of \\spad{p}.") ((|#3| |#2|) "\\spad{bombieriNorm(p)} returns quadratic Bombieri\\spad{'s} norm of \\spad{p}.")) (|beauzamyBound| (((|Integer|) |#2|) "\\spad{beauzamyBound(p)} returns a bound on the larger coefficient of any factor of \\spad{p}.")))
NIL
NIL
-(-419 R UP)
+(-421 R UP)
((|constructor| (NIL "\\spadtype{GaloisGroupPolynomialUtilities} provides useful functions for univariate polynomials which should be added to \\spadtype{UnivariatePolynomialCategory} or to \\spadtype{Factored} (July 1994).")) (|factorsOfDegree| (((|List| |#2|) (|PositiveInteger|) (|Factored| |#2|)) "\\spad{factorsOfDegree(d,{}f)} returns the factors of degree \\spad{d} of the factored polynomial \\spad{f}.")) (|factorOfDegree| ((|#2| (|PositiveInteger|) (|Factored| |#2|)) "\\spad{factorOfDegree(d,{}f)} returns a factor of degree \\spad{d} of the factored polynomial \\spad{f}. Such a factor shall exist.")) (|degreePartition| (((|Multiset| (|NonNegativeInteger|)) (|Factored| |#2|)) "\\spad{degreePartition(f)} returns the degree partition (\\spadignore{i.e.} the multiset of the degrees of the irreducible factors) of the polynomial \\spad{f}.")) (|shiftRoots| ((|#2| |#2| |#1|) "\\spad{shiftRoots(p,{}c)} returns the polynomial which has for roots \\spad{c} added to the roots of \\spad{p}.")) (|scaleRoots| ((|#2| |#2| |#1|) "\\spad{scaleRoots(p,{}c)} returns the polynomial which has \\spad{c} times the roots of \\spad{p}.")) (|reverse| ((|#2| |#2|) "\\spad{reverse(p)} returns the reverse polynomial of \\spad{p}.")) (|unvectorise| ((|#2| (|Vector| |#1|)) "\\spad{unvectorise(v)} returns the polynomial which has for coefficients the entries of \\spad{v} in the increasing order.")) (|monic?| (((|Boolean|) |#2|) "\\spad{monic?(p)} tests if \\spad{p} is monic (\\spadignore{i.e.} leading coefficient equal to 1).")))
NIL
NIL
-(-420 R)
+(-422 R)
((|constructor| (NIL "\\spadtype{GaloisGroupUtilities} provides several useful functions.")) (|safetyMargin| (((|NonNegativeInteger|)) "\\spad{safetyMargin()} returns the number of low weight digits we do not trust in the floating point representation (used by \\spadfun{safeCeiling}).") (((|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{safetyMargin(n)} sets to \\spad{n} the number of low weight digits we do not trust in the floating point representation and returns the previous value (for use by \\spadfun{safeCeiling}).")) (|safeFloor| (((|Integer|) |#1|) "\\spad{safeFloor(x)} returns the integer which is lower or equal to the largest integer which has the same floating point number representation.")) (|safeCeiling| (((|Integer|) |#1|) "\\spad{safeCeiling(x)} returns the integer which is greater than any integer with the same floating point number representation.")) (|fillPascalTriangle| (((|Void|)) "\\spad{fillPascalTriangle()} fills the stored table.")) (|sizePascalTriangle| (((|NonNegativeInteger|)) "\\spad{sizePascalTriangle()} returns the number of entries currently stored in the table.")) (|rangePascalTriangle| (((|NonNegativeInteger|)) "\\spad{rangePascalTriangle()} returns the maximal number of lines stored.") (((|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{rangePascalTriangle(n)} sets the maximal number of lines which are stored and returns the previous value.")) (|pascalTriangle| ((|#1| (|NonNegativeInteger|) (|Integer|)) "\\spad{pascalTriangle(n,{}r)} returns the binomial coefficient \\spad{C(n,{}r)=n!/(r! (n-r)!)} and stores it in a table to prevent recomputation.")))
NIL
-((|HasCategory| |#1| (QUOTE (-380))))
-(-421)
+((|HasCategory| |#1| (QUOTE (-382))))
+(-423)
((|constructor| (NIL "Package for the factorization of complex or gaussian integers.")) (|prime?| (((|Boolean|) (|Complex| (|Integer|))) "\\spad{prime?(\\spad{zi})} tests if the complex integer \\spad{zi} is prime.")) (|sumSquares| (((|List| (|Integer|)) (|Integer|)) "\\spad{sumSquares(p)} construct \\spad{a} and \\spad{b} such that \\spad{a**2+b**2} is equal to the integer prime \\spad{p},{} and otherwise returns an error. It will succeed if the prime number \\spad{p} is 2 or congruent to 1 mod 4.")) (|factor| (((|Factored| (|Complex| (|Integer|))) (|Complex| (|Integer|))) "\\spad{factor(\\spad{zi})} produces the complete factorization of the complex integer \\spad{zi}.")))
NIL
NIL
-(-422 |Dom| |Expon| |VarSet| |Dpol|)
+(-424 |Dom| |Expon| |VarSet| |Dpol|)
((|constructor| (NIL "\\spadtype{EuclideanGroebnerBasisPackage} computes groebner bases for polynomial ideals over euclidean domains. The basic computation provides a distinguished set of generators for these ideals. This basis allows an easy test for membership: the operation \\spadfun{euclideanNormalForm} returns zero on ideal members. The string \"info\" and \"redcrit\" can be given as additional args to provide incremental information during the computation. If \"info\" is given,{} \\indented{1}{a computational summary is given for each \\spad{s}-polynomial. If \"redcrit\"} is given,{} the reduced critical pairs are printed. The term ordering is determined by the polynomial type used. Suggested types include \\spadtype{DistributedMultivariatePolynomial},{} \\spadtype{HomogeneousDistributedMultivariatePolynomial},{} \\spadtype{GeneralDistributedMultivariatePolynomial}.")) (|euclideanGroebner| (((|List| |#4|) (|List| |#4|) (|String|) (|String|)) "\\spad{euclideanGroebner(lp,{} \"info\",{} \"redcrit\")} computes a groebner basis for a polynomial ideal generated by the list of polynomials \\spad{lp}. If the second argument is \\spad{\"info\"},{} a summary is given of the critical pairs. If the third argument is \"redcrit\",{} critical pairs are printed.") (((|List| |#4|) (|List| |#4|) (|String|)) "\\spad{euclideanGroebner(lp,{} infoflag)} computes a groebner basis for a polynomial ideal over a euclidean domain generated by the list of polynomials \\spad{lp}. During computation,{} additional information is printed out if infoflag is given as either \"info\" (for summary information) or \"redcrit\" (for reduced critical pairs)") (((|List| |#4|) (|List| |#4|)) "\\spad{euclideanGroebner(lp)} computes a groebner basis for a polynomial ideal over a euclidean domain generated by the list of polynomials \\spad{lp}.")) (|euclideanNormalForm| ((|#4| |#4| (|List| |#4|)) "\\spad{euclideanNormalForm(poly,{}gb)} reduces the polynomial \\spad{poly} modulo the precomputed groebner basis \\spad{gb} giving a canonical representative of the residue class.")))
NIL
NIL
-(-423 |Dom| |Expon| |VarSet| |Dpol|)
+(-425 |Dom| |Expon| |VarSet| |Dpol|)
((|constructor| (NIL "\\spadtype{GroebnerFactorizationPackage} provides the function groebnerFactor\" which uses the factorization routines of \\Language{} to factor each polynomial under consideration while doing the groebner basis algorithm. Then it writes the ideal as an intersection of ideals determined by the irreducible factors. Note that the whole ring may occur as well as other redundancies. We also use the fact,{} that from the second factor on we can assume that the preceding factors are not equal to 0 and we divide all polynomials under considerations by the elements of this list of \"nonZeroRestrictions\". The result is a list of groebner bases,{} whose union of solutions of the corresponding systems of equations is the solution of the system of equation corresponding to the input list. The term ordering is determined by the polynomial type used. Suggested types include \\spadtype{DistributedMultivariatePolynomial},{} \\spadtype{HomogeneousDistributedMultivariatePolynomial},{} \\spadtype{GeneralDistributedMultivariatePolynomial}.")) (|groebnerFactorize| (((|List| (|List| |#4|)) (|List| |#4|) (|Boolean|)) "\\spad{groebnerFactorize(listOfPolys,{} info)} returns a list of groebner bases. The union of their solutions is the solution of the system of equations given by {\\em listOfPolys}. At each stage the polynomial \\spad{p} under consideration (either from the given basis or obtained from a reduction of the next \\spad{S}-polynomial) is factorized. For each irreducible factors of \\spad{p},{} a new {\\em createGroebnerBasis} is started doing the usual updates with the factor in place of \\spad{p}. If {\\em info} is \\spad{true},{} information is printed about partial results.") (((|List| (|List| |#4|)) (|List| |#4|)) "\\spad{groebnerFactorize(listOfPolys)} returns a list of groebner bases. The union of their solutions is the solution of the system of equations given by {\\em listOfPolys}. At each stage the polynomial \\spad{p} under consideration (either from the given basis or obtained from a reduction of the next \\spad{S}-polynomial) is factorized. For each irreducible factors of \\spad{p},{} a new {\\em createGroebnerBasis} is started doing the usual updates with the factor in place of \\spad{p}.") (((|List| (|List| |#4|)) (|List| |#4|) (|List| |#4|) (|Boolean|)) "\\spad{groebnerFactorize(listOfPolys,{} nonZeroRestrictions,{} info)} returns a list of groebner basis. The union of their solutions is the solution of the system of equations given by {\\em listOfPolys} under the restriction that the polynomials of {\\em nonZeroRestrictions} don\\spad{'t} vanish. At each stage the polynomial \\spad{p} under consideration (either from the given basis or obtained from a reduction of the next \\spad{S}-polynomial) is factorized. For each irreducible factors of \\spad{p} a new {\\em createGroebnerBasis} is started doing the usual updates with the factor in place of \\spad{p}. If argument {\\em info} is \\spad{true},{} information is printed about partial results.") (((|List| (|List| |#4|)) (|List| |#4|) (|List| |#4|)) "\\spad{groebnerFactorize(listOfPolys,{} nonZeroRestrictions)} returns a list of groebner basis. The union of their solutions is the solution of the system of equations given by {\\em listOfPolys} under the restriction that the polynomials of {\\em nonZeroRestrictions} don\\spad{'t} vanish. At each stage the polynomial \\spad{p} under consideration (either from the given basis or obtained from a reduction of the next \\spad{S}-polynomial) is factorized. For each irreducible factors of \\spad{p},{} a new {\\em createGroebnerBasis} is started doing the usual updates with the factor in place of \\spad{p}.")) (|factorGroebnerBasis| (((|List| (|List| |#4|)) (|List| |#4|) (|Boolean|)) "\\spad{factorGroebnerBasis(basis,{}info)} checks whether the \\spad{basis} contains reducible polynomials and uses these to split the \\spad{basis}. If argument {\\em info} is \\spad{true},{} information is printed about partial results.") (((|List| (|List| |#4|)) (|List| |#4|)) "\\spad{factorGroebnerBasis(basis)} checks whether the \\spad{basis} contains reducible polynomials and uses these to split the \\spad{basis}.")))
NIL
NIL
-(-424 |Dom| |Expon| |VarSet| |Dpol|)
+(-426 |Dom| |Expon| |VarSet| |Dpol|)
((|constructor| (NIL "\\indented{1}{Author:} Date Created: Date Last Updated: Keywords: Description This package provides low level tools for Groebner basis computations")) (|virtualDegree| (((|NonNegativeInteger|) |#4|) "\\spad{virtualDegree }\\undocumented")) (|makeCrit| (((|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (|Record| (|:| |totdeg| (|NonNegativeInteger|)) (|:| |pol| |#4|)) |#4| (|NonNegativeInteger|)) "\\spad{makeCrit }\\undocumented")) (|critpOrder| (((|Boolean|) (|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|))) "\\spad{critpOrder }\\undocumented")) (|prinb| (((|Void|) (|Integer|)) "\\spad{prinb }\\undocumented")) (|prinpolINFO| (((|Void|) (|List| |#4|)) "\\spad{prinpolINFO }\\undocumented")) (|fprindINFO| (((|Integer|) (|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{fprindINFO }\\undocumented")) (|prindINFO| (((|Integer|) (|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (|Integer|) (|Integer|) (|Integer|)) "\\spad{prindINFO }\\undocumented")) (|prinshINFO| (((|Void|) |#4|) "\\spad{prinshINFO }\\undocumented")) (|lepol| (((|Integer|) |#4|) "\\spad{lepol }\\undocumented")) (|minGbasis| (((|List| |#4|) (|List| |#4|)) "\\spad{minGbasis }\\undocumented")) (|updatD| (((|List| (|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (|List| (|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (|List| (|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) "\\spad{updatD }\\undocumented")) (|sPol| ((|#4| (|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|))) "\\spad{sPol }\\undocumented")) (|updatF| (((|List| (|Record| (|:| |totdeg| (|NonNegativeInteger|)) (|:| |pol| |#4|))) |#4| (|NonNegativeInteger|) (|List| (|Record| (|:| |totdeg| (|NonNegativeInteger|)) (|:| |pol| |#4|)))) "\\spad{updatF }\\undocumented")) (|hMonic| ((|#4| |#4|) "\\spad{hMonic }\\undocumented")) (|redPo| (((|Record| (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (|List| |#4|)) "\\spad{redPo }\\undocumented")) (|critMonD1| (((|List| (|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (|List| (|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) "\\spad{critMonD1 }\\undocumented")) (|critMTonD1| (((|List| (|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (|List| (|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) "\\spad{critMTonD1 }\\undocumented")) (|critBonD| (((|List| (|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (|List| (|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) "\\spad{critBonD }\\undocumented")) (|critB| (((|Boolean|) |#2| |#2| |#2| |#2|) "\\spad{critB }\\undocumented")) (|critM| (((|Boolean|) |#2| |#2|) "\\spad{critM }\\undocumented")) (|critT| (((|Boolean|) (|Record| (|:| |lcmfij| |#2|) (|:| |totdeg| (|NonNegativeInteger|)) (|:| |poli| |#4|) (|:| |polj| |#4|))) "\\spad{critT }\\undocumented")) (|gbasis| (((|List| |#4|) (|List| |#4|) (|Integer|) (|Integer|)) "\\spad{gbasis }\\undocumented")) (|redPol| ((|#4| |#4| (|List| |#4|)) "\\spad{redPol }\\undocumented")) (|credPol| ((|#4| |#4| (|List| |#4|)) "\\spad{credPol }\\undocumented")))
NIL
NIL
-(-425 |Dom| |Expon| |VarSet| |Dpol|)
+(-427 |Dom| |Expon| |VarSet| |Dpol|)
((|constructor| (NIL "\\spadtype{GroebnerPackage} computes groebner bases for polynomial ideals. The basic computation provides a distinguished set of generators for polynomial ideals over fields. This basis allows an easy test for membership: the operation \\spadfun{normalForm} returns zero on ideal members. When the provided coefficient domain,{} Dom,{} is not a field,{} the result is equivalent to considering the extended ideal with \\spadtype{Fraction(Dom)} as coefficients,{} but considerably more efficient since all calculations are performed in Dom. Additional argument \"info\" and \"redcrit\" can be given to provide incremental information during computation. Argument \"info\" produces a computational summary for each \\spad{s}-polynomial. Argument \"redcrit\" prints out the reduced critical pairs. The term ordering is determined by the polynomial type used. Suggested types include \\spadtype{DistributedMultivariatePolynomial},{} \\spadtype{HomogeneousDistributedMultivariatePolynomial},{} \\spadtype{GeneralDistributedMultivariatePolynomial}.")) (|normalForm| ((|#4| |#4| (|List| |#4|)) "\\spad{normalForm(poly,{}gb)} reduces the polynomial \\spad{poly} modulo the precomputed groebner basis \\spad{gb} giving a canonical representative of the residue class.")) (|groebner| (((|List| |#4|) (|List| |#4|) (|String|) (|String|)) "\\spad{groebner(lp,{} \"info\",{} \"redcrit\")} computes a groebner basis for a polynomial ideal generated by the list of polynomials \\spad{lp},{} displaying both a summary of the critical pairs considered (\\spad{\"info\"}) and the result of reducing each critical pair (\"redcrit\"). If the second or third arguments have any other string value,{} the indicated information is suppressed.") (((|List| |#4|) (|List| |#4|) (|String|)) "\\spad{groebner(lp,{} infoflag)} computes a groebner basis for a polynomial ideal generated by the list of polynomials \\spad{lp}. Argument infoflag is used to get information on the computation. If infoflag is \"info\",{} then summary information is displayed for each \\spad{s}-polynomial generated. If infoflag is \"redcrit\",{} the reduced critical pairs are displayed. If infoflag is any other string,{} no information is printed during computation.") (((|List| |#4|) (|List| |#4|)) "\\spad{groebner(lp)} computes a groebner basis for a polynomial ideal generated by the list of polynomials \\spad{lp}.")))
NIL
-((|HasCategory| |#1| (QUOTE (-339))))
-(-426 S)
+((|HasCategory| |#1| (QUOTE (-341))))
+(-428 S)
((|constructor| (NIL "This category describes domains where \\spadfun{\\spad{gcd}} can be computed but where there is no guarantee of the existence of \\spadfun{factor} operation for factorisation into irreducibles. However,{} if such a \\spadfun{factor} operation exist,{} factorization will be unique up to order and units.")) (|lcm| (($ (|List| $)) "\\spad{lcm(l)} returns the least common multiple of the elements of the list \\spad{l}.") (($ $ $) "\\spad{lcm(x,{}y)} returns the least common multiple of \\spad{x} and \\spad{y}.")) (|gcd| (($ (|List| $)) "\\spad{gcd(l)} returns the common \\spad{gcd} of the elements in the list \\spad{l}.") (($ $ $) "\\spad{gcd(x,{}y)} returns the greatest common divisor of \\spad{x} and \\spad{y}.")))
NIL
NIL
-(-427)
+(-429)
((|constructor| (NIL "This category describes domains where \\spadfun{\\spad{gcd}} can be computed but where there is no guarantee of the existence of \\spadfun{factor} operation for factorisation into irreducibles. However,{} if such a \\spadfun{factor} operation exist,{} factorization will be unique up to order and units.")) (|lcm| (($ (|List| $)) "\\spad{lcm(l)} returns the least common multiple of the elements of the list \\spad{l}.") (($ $ $) "\\spad{lcm(x,{}y)} returns the least common multiple of \\spad{x} and \\spad{y}.")) (|gcd| (($ (|List| $)) "\\spad{gcd(l)} returns the common \\spad{gcd} of the elements in the list \\spad{l}.") (($ $ $) "\\spad{gcd(x,{}y)} returns the greatest common divisor of \\spad{x} and \\spad{y}.")))
-((-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-428 R |n| |ls| |gamma|)
+(-430 R |n| |ls| |gamma|)
((|constructor| (NIL "AlgebraGenericElementPackage allows you to create generic elements of an algebra,{} \\spadignore{i.e.} the scalars are extended to include symbolic coefficients")) (|conditionsForIdempotents| (((|List| (|Polynomial| |#1|))) "\\spad{conditionsForIdempotents()} determines a complete list of polynomial equations for the coefficients of idempotents with respect to the fixed \\spad{R}-module basis") (((|List| (|Polynomial| |#1|)) (|Vector| $)) "\\spad{conditionsForIdempotents([v1,{}...,{}vn])} determines a complete list of polynomial equations for the coefficients of idempotents with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}")) (|genericRightDiscriminant| (((|Fraction| (|Polynomial| |#1|))) "\\spad{genericRightDiscriminant()} is the determinant of the generic left trace forms of all products of basis element,{} if the generic left trace form is associative,{} an algebra is separable if the generic left discriminant is invertible,{} if it is non-zero,{} there is some ring extension which makes the algebra separable")) (|genericRightTraceForm| (((|Fraction| (|Polynomial| |#1|)) $ $) "\\spad{genericRightTraceForm (a,{}b)} is defined to be \\spadfun{genericRightTrace (a*b)},{} this defines a symmetric bilinear form on the algebra")) (|genericLeftDiscriminant| (((|Fraction| (|Polynomial| |#1|))) "\\spad{genericLeftDiscriminant()} is the determinant of the generic left trace forms of all products of basis element,{} if the generic left trace form is associative,{} an algebra is separable if the generic left discriminant is invertible,{} if it is non-zero,{} there is some ring extension which makes the algebra separable")) (|genericLeftTraceForm| (((|Fraction| (|Polynomial| |#1|)) $ $) "\\spad{genericLeftTraceForm (a,{}b)} is defined to be \\spad{genericLeftTrace (a*b)},{} this defines a symmetric bilinear form on the algebra")) (|genericRightNorm| (((|Fraction| (|Polynomial| |#1|)) $) "\\spad{genericRightNorm(a)} substitutes the coefficients of \\spad{a} for the generic coefficients into the coefficient of the constant term in \\spadfun{rightRankPolynomial} and changes the sign if the degree of this polynomial is odd")) (|genericRightTrace| (((|Fraction| (|Polynomial| |#1|)) $) "\\spad{genericRightTrace(a)} substitutes the coefficients of \\spad{a} for the generic coefficients into the coefficient of the second highest term in \\spadfun{rightRankPolynomial} and changes the sign")) (|genericRightMinimalPolynomial| (((|SparseUnivariatePolynomial| (|Fraction| (|Polynomial| |#1|))) $) "\\spad{genericRightMinimalPolynomial(a)} substitutes the coefficients of \\spad{a} for the generic coefficients in \\spadfun{rightRankPolynomial}")) (|rightRankPolynomial| (((|SparseUnivariatePolynomial| (|Fraction| (|Polynomial| |#1|)))) "\\spad{rightRankPolynomial()} returns the right minimimal polynomial of the generic element")) (|genericLeftNorm| (((|Fraction| (|Polynomial| |#1|)) $) "\\spad{genericLeftNorm(a)} substitutes the coefficients of \\spad{a} for the generic coefficients into the coefficient of the constant term in \\spadfun{leftRankPolynomial} and changes the sign if the degree of this polynomial is odd. This is a form of degree \\spad{k}")) (|genericLeftTrace| (((|Fraction| (|Polynomial| |#1|)) $) "\\spad{genericLeftTrace(a)} substitutes the coefficients of \\spad{a} for the generic coefficients into the coefficient of the second highest term in \\spadfun{leftRankPolynomial} and changes the sign. \\indented{1}{This is a linear form}")) (|genericLeftMinimalPolynomial| (((|SparseUnivariatePolynomial| (|Fraction| (|Polynomial| |#1|))) $) "\\spad{genericLeftMinimalPolynomial(a)} substitutes the coefficients of {em a} for the generic coefficients in \\spad{leftRankPolynomial()}")) (|leftRankPolynomial| (((|SparseUnivariatePolynomial| (|Fraction| (|Polynomial| |#1|)))) "\\spad{leftRankPolynomial()} returns the left minimimal polynomial of the generic element")) (|generic| (($ (|Vector| (|Symbol|)) (|Vector| $)) "\\spad{generic(vs,{}ve)} returns a generic element,{} \\spadignore{i.e.} the linear combination of \\spad{ve} with the symbolic coefficients \\spad{vs} error,{} if the vector of symbols is shorter than the vector of elements") (($ (|Symbol|) (|Vector| $)) "\\spad{generic(s,{}v)} returns a generic element,{} \\spadignore{i.e.} the linear combination of \\spad{v} with the symbolic coefficients \\spad{s1,{}s2,{}..}") (($ (|Vector| $)) "\\spad{generic(ve)} returns a generic element,{} \\spadignore{i.e.} the linear combination of \\spad{ve} basis with the symbolic coefficients \\spad{\\%x1,{}\\%x2,{}..}") (($ (|Vector| (|Symbol|))) "\\spad{generic(vs)} returns a generic element,{} \\spadignore{i.e.} the linear combination of the fixed basis with the symbolic coefficients \\spad{vs}; error,{} if the vector of symbols is too short") (($ (|Symbol|)) "\\spad{generic(s)} returns a generic element,{} \\spadignore{i.e.} the linear combination of the fixed basis with the symbolic coefficients \\spad{s1,{}s2,{}..}") (($) "\\spad{generic()} returns a generic element,{} \\spadignore{i.e.} the linear combination of the fixed basis with the symbolic coefficients \\spad{\\%x1,{}\\%x2,{}..}")) (|rightUnits| (((|Union| (|Record| (|:| |particular| $) (|:| |basis| (|List| $))) "failed")) "\\spad{rightUnits()} returns the affine space of all right units of the algebra,{} or \\spad{\"failed\"} if there is none")) (|leftUnits| (((|Union| (|Record| (|:| |particular| $) (|:| |basis| (|List| $))) "failed")) "\\spad{leftUnits()} returns the affine space of all left units of the algebra,{} or \\spad{\"failed\"} if there is none")) (|coerce| (($ (|Vector| (|Fraction| (|Polynomial| |#1|)))) "\\spad{coerce(v)} assumes that it is called with a vector of length equal to the dimension of the algebra,{} then a linear combination with the basis element is formed")))
-((-4245 |has| (-383 (-883 |#1|)) (-515)) (-4243 . T) (-4242 . T))
-((|HasCategory| (-383 (-883 |#1|)) (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| (-383 (-883 |#1|)) (QUOTE (-515))))
-(-429 |vl| R E)
+((-4247 |has| (-385 (-885 |#1|)) (-517)) (-4245 . T) (-4244 . T))
+((|HasCategory| (-385 (-885 |#1|)) (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| (-385 (-885 |#1|)) (QUOTE (-517))))
+(-431 |vl| R E)
((|constructor| (NIL "\\indented{2}{This type supports distributed multivariate polynomials} whose variables are from a user specified list of symbols. The coefficient ring may be non commutative,{} but the variables are assumed to commute. The term ordering is specified by its third parameter. Suggested types which define term orderings include: \\spadtype{DirectProduct},{} \\spadtype{HomogeneousDirectProduct},{} \\spadtype{SplitHomogeneousDirectProduct} and finally \\spadtype{OrderedDirectProduct} which accepts an arbitrary user function to define a term ordering.")) (|reorder| (($ $ (|List| (|Integer|))) "\\spad{reorder(p,{} perm)} applies the permutation perm to the variables in a polynomial and returns the new correctly ordered polynomial")))
-(((-4250 "*") |has| |#2| (-158)) (-4241 |has| |#2| (-515)) (-4246 |has| |#2| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#2| (QUOTE (-840))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-840)))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-158))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-515)))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355)))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523)))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499))))) (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-134))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-339))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasAttribute| |#2| (QUOTE -4246)) (|HasCategory| |#2| (QUOTE (-427))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-840)))) (|HasCategory| |#2| (QUOTE (-134)))))
-(-430 R BP)
+(((-4252 "*") |has| |#2| (-160)) (-4243 |has| |#2| (-517)) (-4248 |has| |#2| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#2| (QUOTE (-842))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-842)))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-160))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-517)))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357)))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525)))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501))))) (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-138))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-341))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasAttribute| |#2| (QUOTE -4248)) (|HasCategory| |#2| (QUOTE (-429))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-842)))) (|HasCategory| |#2| (QUOTE (-136)))))
+(-432 R BP)
((|constructor| (NIL "\\indented{1}{Author : \\spad{P}.Gianni.} January 1990 The equation \\spad{Af+Bg=h} and its generalization to \\spad{n} polynomials is solved for solutions over the \\spad{R},{} euclidean domain. A table containing the solutions of \\spad{Af+Bg=x**k} is used. The operations are performed modulus a prime which are in principle big enough,{} but the solutions are tested and,{} in case of failure,{} a hensel lifting process is used to get to the right solutions. It will be used in the factorization of multivariate polynomials over finite field,{} with \\spad{R=F[x]}.")) (|testModulus| (((|Boolean|) |#1| (|List| |#2|)) "\\spad{testModulus(p,{}lp)} returns \\spad{true} if the the prime \\spad{p} is valid for the list of polynomials \\spad{lp},{} \\spadignore{i.e.} preserves the degree and they remain relatively prime.")) (|solveid| (((|Union| (|List| |#2|) "failed") |#2| |#1| (|Vector| (|List| |#2|))) "\\spad{solveid(h,{}table)} computes the coefficients of the extended euclidean algorithm for a list of polynomials whose tablePow is \\spad{table} and with right side \\spad{h}.")) (|tablePow| (((|Union| (|Vector| (|List| |#2|)) "failed") (|NonNegativeInteger|) |#1| (|List| |#2|)) "\\spad{tablePow(maxdeg,{}prime,{}lpol)} constructs the table with the coefficients of the Extended Euclidean Algorithm for \\spad{lpol}. Here the right side is \\spad{x**k},{} for \\spad{k} less or equal to \\spad{maxdeg}. The operation returns \"failed\" when the elements are not coprime modulo \\spad{prime}.")) (|compBound| (((|NonNegativeInteger|) |#2| (|List| |#2|)) "\\spad{compBound(p,{}lp)} computes a bound for the coefficients of the solution polynomials. Given a polynomial right hand side \\spad{p},{} and a list \\spad{lp} of left hand side polynomials. Exported because it depends on the valuation.")) (|reduction| ((|#2| |#2| |#1|) "\\spad{reduction(p,{}prime)} reduces the polynomial \\spad{p} modulo \\spad{prime} of \\spad{R}. Note: this function is exported only because it\\spad{'s} conditional.")))
NIL
NIL
-(-431 OV E S R P)
+(-433 OV E S R P)
((|constructor| (NIL "\\indented{2}{This is the top level package for doing multivariate factorization} over basic domains like \\spadtype{Integer} or \\spadtype{Fraction Integer}.")) (|factor| (((|Factored| |#5|) |#5|) "\\spad{factor(p)} factors the multivariate polynomial \\spad{p} over its coefficient domain")) (|variable| (((|Union| $ "failed") (|Symbol|)) "\\spad{variable(s)} makes an element from symbol \\spad{s} or fails.")) (|convert| (((|Symbol|) $) "\\spad{convert(x)} converts \\spad{x} to a symbol")))
NIL
NIL
-(-432 E OV R P)
+(-434 E OV R P)
((|constructor| (NIL "This package provides operations for \\spad{GCD} computations on polynomials")) (|randomR| ((|#3|) "\\spad{randomR()} should be local but conditional")) (|gcdPolynomial| (((|SparseUnivariatePolynomial| |#4|) (|SparseUnivariatePolynomial| |#4|) (|SparseUnivariatePolynomial| |#4|)) "\\spad{gcdPolynomial(p,{}q)} returns the \\spad{GCD} of \\spad{p} and \\spad{q}")))
NIL
NIL
-(-433 R)
+(-435 R)
((|constructor| (NIL "\\indented{1}{Description} This package provides operations for the factorization of univariate polynomials with integer coefficients. The factorization is done by \"lifting\" the finite \"berlekamp's\" factorization")) (|factor| (((|Factored| (|SparseUnivariatePolynomial| |#1|)) (|SparseUnivariatePolynomial| |#1|)) "\\spad{factor(p)} returns the factorisation of \\spad{p}")))
NIL
NIL
-(-434 R FE)
+(-436 R FE)
((|constructor| (NIL "\\spadtype{GenerateUnivariatePowerSeries} provides functions that create power series from explicit formulas for their \\spad{n}th coefficient.")) (|series| (((|Any|) |#2| (|Symbol|) (|Equation| |#2|) (|UniversalSegment| (|Fraction| (|Integer|))) (|Fraction| (|Integer|))) "\\spad{series(a(n),{}n,{}x = a,{}r0..,{}r)} returns \\spad{sum(n = r0,{}r0 + r,{}r0 + 2*r...,{} a(n) * (x - a)**n)}; \\spad{series(a(n),{}n,{}x = a,{}r0..r1,{}r)} returns \\spad{sum(n = r0 + k*r while n <= r1,{} a(n) * (x - a)**n)}.") (((|Any|) (|Mapping| |#2| (|Fraction| (|Integer|))) (|Equation| |#2|) (|UniversalSegment| (|Fraction| (|Integer|))) (|Fraction| (|Integer|))) "\\spad{series(n +-> a(n),{}x = a,{}r0..,{}r)} returns \\spad{sum(n = r0,{}r0 + r,{}r0 + 2*r...,{} a(n) * (x - a)**n)}; \\spad{series(n +-> a(n),{}x = a,{}r0..r1,{}r)} returns \\spad{sum(n = r0 + k*r while n <= r1,{} a(n) * (x - a)**n)}.") (((|Any|) |#2| (|Symbol|) (|Equation| |#2|) (|UniversalSegment| (|Integer|))) "\\spad{series(a(n),{}n,{}x=a,{}n0..)} returns \\spad{sum(n = n0..,{}a(n) * (x - a)**n)}; \\spad{series(a(n),{}n,{}x=a,{}n0..n1)} returns \\spad{sum(n = n0..n1,{}a(n) * (x - a)**n)}.") (((|Any|) (|Mapping| |#2| (|Integer|)) (|Equation| |#2|) (|UniversalSegment| (|Integer|))) "\\spad{series(n +-> a(n),{}x = a,{}n0..)} returns \\spad{sum(n = n0..,{}a(n) * (x - a)**n)}; \\spad{series(n +-> a(n),{}x = a,{}n0..n1)} returns \\spad{sum(n = n0..n1,{}a(n) * (x - a)**n)}.") (((|Any|) |#2| (|Symbol|) (|Equation| |#2|)) "\\spad{series(a(n),{}n,{}x = a)} returns \\spad{sum(n = 0..,{}a(n)*(x-a)**n)}.") (((|Any|) (|Mapping| |#2| (|Integer|)) (|Equation| |#2|)) "\\spad{series(n +-> a(n),{}x = a)} returns \\spad{sum(n = 0..,{}a(n)*(x-a)**n)}.")) (|puiseux| (((|Any|) |#2| (|Symbol|) (|Equation| |#2|) (|UniversalSegment| (|Fraction| (|Integer|))) (|Fraction| (|Integer|))) "\\spad{puiseux(a(n),{}n,{}x = a,{}r0..,{}r)} returns \\spad{sum(n = r0,{}r0 + r,{}r0 + 2*r...,{} a(n) * (x - a)**n)}; \\spad{puiseux(a(n),{}n,{}x = a,{}r0..r1,{}r)} returns \\spad{sum(n = r0 + k*r while n <= r1,{} a(n) * (x - a)**n)}.") (((|Any|) (|Mapping| |#2| (|Fraction| (|Integer|))) (|Equation| |#2|) (|UniversalSegment| (|Fraction| (|Integer|))) (|Fraction| (|Integer|))) "\\spad{puiseux(n +-> a(n),{}x = a,{}r0..,{}r)} returns \\spad{sum(n = r0,{}r0 + r,{}r0 + 2*r...,{} a(n) * (x - a)**n)}; \\spad{puiseux(n +-> a(n),{}x = a,{}r0..r1,{}r)} returns \\spad{sum(n = r0 + k*r while n <= r1,{} a(n) * (x - a)**n)}.")) (|laurent| (((|Any|) |#2| (|Symbol|) (|Equation| |#2|) (|UniversalSegment| (|Integer|))) "\\spad{laurent(a(n),{}n,{}x=a,{}n0..)} returns \\spad{sum(n = n0..,{}a(n) * (x - a)**n)}; \\spad{laurent(a(n),{}n,{}x=a,{}n0..n1)} returns \\spad{sum(n = n0..n1,{}a(n) * (x - a)**n)}.") (((|Any|) (|Mapping| |#2| (|Integer|)) (|Equation| |#2|) (|UniversalSegment| (|Integer|))) "\\spad{laurent(n +-> a(n),{}x = a,{}n0..)} returns \\spad{sum(n = n0..,{}a(n) * (x - a)**n)}; \\spad{laurent(n +-> a(n),{}x = a,{}n0..n1)} returns \\spad{sum(n = n0..n1,{}a(n) * (x - a)**n)}.")) (|taylor| (((|Any|) |#2| (|Symbol|) (|Equation| |#2|) (|UniversalSegment| (|NonNegativeInteger|))) "\\spad{taylor(a(n),{}n,{}x = a,{}n0..)} returns \\spad{sum(n = n0..,{}a(n)*(x-a)**n)}; \\spad{taylor(a(n),{}n,{}x = a,{}n0..n1)} returns \\spad{sum(n = n0..,{}a(n)*(x-a)**n)}.") (((|Any|) (|Mapping| |#2| (|Integer|)) (|Equation| |#2|) (|UniversalSegment| (|NonNegativeInteger|))) "\\spad{taylor(n +-> a(n),{}x = a,{}n0..)} returns \\spad{sum(n=n0..,{}a(n)*(x-a)**n)}; \\spad{taylor(n +-> a(n),{}x = a,{}n0..n1)} returns \\spad{sum(n = n0..,{}a(n)*(x-a)**n)}.") (((|Any|) |#2| (|Symbol|) (|Equation| |#2|)) "\\spad{taylor(a(n),{}n,{}x = a)} returns \\spad{sum(n = 0..,{}a(n)*(x-a)**n)}.") (((|Any|) (|Mapping| |#2| (|Integer|)) (|Equation| |#2|)) "\\spad{taylor(n +-> a(n),{}x = a)} returns \\spad{sum(n = 0..,{}a(n)*(x-a)**n)}.")))
NIL
NIL
-(-435 RP TP)
+(-437 RP TP)
((|constructor| (NIL "\\indented{1}{Author : \\spad{P}.Gianni} General Hensel Lifting Used for Factorization of bivariate polynomials over a finite field.")) (|reduction| ((|#2| |#2| |#1|) "\\spad{reduction(u,{}pol)} computes the symmetric reduction of \\spad{u} mod \\spad{pol}")) (|completeHensel| (((|List| |#2|) |#2| (|List| |#2|) |#1| (|PositiveInteger|)) "\\spad{completeHensel(pol,{}lfact,{}prime,{}bound)} lifts \\spad{lfact},{} the factorization mod \\spad{prime} of \\spad{pol},{} to the factorization mod prime**k>bound. Factors are recombined on the way.")) (|HenselLift| (((|Record| (|:| |plist| (|List| |#2|)) (|:| |modulo| |#1|)) |#2| (|List| |#2|) |#1| (|PositiveInteger|)) "\\spad{HenselLift(pol,{}lfacts,{}prime,{}bound)} lifts \\spad{lfacts},{} that are the factors of \\spad{pol} mod \\spad{prime},{} to factors of \\spad{pol} mod prime**k > \\spad{bound}. No recombining is done .")))
NIL
NIL
-(-436 |vl| R IS E |ff| P)
+(-438 |vl| R IS E |ff| P)
((|constructor| (NIL "This package \\undocumented")) (* (($ |#6| $) "\\spad{p*x} \\undocumented")) (|multMonom| (($ |#2| |#4| $) "\\spad{multMonom(r,{}e,{}x)} \\undocumented")) (|build| (($ |#2| |#3| |#4|) "\\spad{build(r,{}i,{}e)} \\undocumented")) (|unitVector| (($ |#3|) "\\spad{unitVector(x)} \\undocumented")) (|monomial| (($ |#2| (|ModuleMonomial| |#3| |#4| |#5|)) "\\spad{monomial(r,{}x)} \\undocumented")) (|reductum| (($ $) "\\spad{reductum(x)} \\undocumented")) (|leadingIndex| ((|#3| $) "\\spad{leadingIndex(x)} \\undocumented")) (|leadingExponent| ((|#4| $) "\\spad{leadingExponent(x)} \\undocumented")) (|leadingMonomial| (((|ModuleMonomial| |#3| |#4| |#5|) $) "\\spad{leadingMonomial(x)} \\undocumented")) (|leadingCoefficient| ((|#2| $) "\\spad{leadingCoefficient(x)} \\undocumented")))
-((-4243 . T) (-4242 . T))
+((-4245 . T) (-4244 . T))
NIL
-(-437 E V R P Q)
+(-439 E V R P Q)
((|constructor| (NIL "Gosper\\spad{'s} summation algorithm.")) (|GospersMethod| (((|Union| |#5| "failed") |#5| |#2| (|Mapping| |#2|)) "\\spad{GospersMethod(b,{} n,{} new)} returns a rational function \\spad{rf(n)} such that \\spad{a(n) * rf(n)} is the indefinite sum of \\spad{a(n)} with respect to upward difference on \\spad{n},{} \\spadignore{i.e.} \\spad{a(n+1) * rf(n+1) - a(n) * rf(n) = a(n)},{} where \\spad{b(n) = a(n)/a(n-1)} is a rational function. Returns \"failed\" if no such rational function \\spad{rf(n)} exists. Note: \\spad{new} is a nullary function returning a new \\spad{V} every time. The condition on \\spad{a(n)} is that \\spad{a(n)/a(n-1)} is a rational function of \\spad{n}.")))
NIL
NIL
-(-438 R E |VarSet| P)
+(-440 R E |VarSet| P)
((|constructor| (NIL "A domain for polynomial sets.")) (|convert| (($ (|List| |#4|)) "\\axiom{convert(\\spad{lp})} returns the polynomial set whose members are the polynomials of \\axiom{\\spad{lp}}.")))
-((-4249 . T) (-4248 . T))
-((-12 (|HasCategory| |#4| (QUOTE (-1016))) (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#4| (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#4| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-439 S R E)
+((-4251 . T) (-4250 . T))
+((-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#4| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-441 S R E)
((|constructor| (NIL "GradedAlgebra(\\spad{R},{}\\spad{E}) denotes ``E-graded \\spad{R}-algebra\\spad{''}. A graded algebra is a graded module together with a degree preserving \\spad{R}-linear map,{} called the {\\em product}. \\blankline The name ``product\\spad{''} is written out in full so inner and outer products with the same mapping type can be distinguished by name.")) (|product| (($ $ $) "\\spad{product(a,{}b)} is the degree-preserving \\spad{R}-linear product: \\blankline \\indented{2}{\\spad{degree product(a,{}b) = degree a + degree b}} \\indented{2}{\\spad{product(a1+a2,{}b) = product(a1,{}b) + product(a2,{}b)}} \\indented{2}{\\spad{product(a,{}b1+b2) = product(a,{}b1) + product(a,{}b2)}} \\indented{2}{\\spad{product(r*a,{}b) = product(a,{}r*b) = r*product(a,{}b)}} \\indented{2}{\\spad{product(a,{}product(b,{}c)) = product(product(a,{}b),{}c)}}")) ((|One|) (($) "1 is the identity for \\spad{product}.")))
NIL
NIL
-(-440 R E)
+(-442 R E)
((|constructor| (NIL "GradedAlgebra(\\spad{R},{}\\spad{E}) denotes ``E-graded \\spad{R}-algebra\\spad{''}. A graded algebra is a graded module together with a degree preserving \\spad{R}-linear map,{} called the {\\em product}. \\blankline The name ``product\\spad{''} is written out in full so inner and outer products with the same mapping type can be distinguished by name.")) (|product| (($ $ $) "\\spad{product(a,{}b)} is the degree-preserving \\spad{R}-linear product: \\blankline \\indented{2}{\\spad{degree product(a,{}b) = degree a + degree b}} \\indented{2}{\\spad{product(a1+a2,{}b) = product(a1,{}b) + product(a2,{}b)}} \\indented{2}{\\spad{product(a,{}b1+b2) = product(a,{}b1) + product(a,{}b2)}} \\indented{2}{\\spad{product(r*a,{}b) = product(a,{}r*b) = r*product(a,{}b)}} \\indented{2}{\\spad{product(a,{}product(b,{}c)) = product(product(a,{}b),{}c)}}")) ((|One|) (($) "1 is the identity for \\spad{product}.")))
NIL
NIL
-(-441)
+(-443)
((|constructor| (NIL "GrayCode provides a function for efficiently running through all subsets of a finite set,{} only changing one element by another one.")) (|firstSubsetGray| (((|Vector| (|Vector| (|Integer|))) (|PositiveInteger|)) "\\spad{firstSubsetGray(n)} creates the first vector {\\em ww} to start a loop using {\\em nextSubsetGray(ww,{}n)}")) (|nextSubsetGray| (((|Vector| (|Vector| (|Integer|))) (|Vector| (|Vector| (|Integer|))) (|PositiveInteger|)) "\\spad{nextSubsetGray(ww,{}n)} returns a vector {\\em vv} whose components have the following meanings:\\begin{items} \\item {\\em vv.1}: a vector of length \\spad{n} whose entries are 0 or 1. This \\indented{3}{can be interpreted as a code for a subset of the set 1,{}...,{}\\spad{n};} \\indented{3}{{\\em vv.1} differs from {\\em ww.1} by exactly one entry;} \\item {\\em vv.2.1} is the number of the entry of {\\em vv.1} which \\indented{3}{will be changed next time;} \\item {\\em vv.2.1 = n+1} means that {\\em vv.1} is the last subset; \\indented{3}{trying to compute nextSubsetGray(\\spad{vv}) if {\\em vv.2.1 = n+1}} \\indented{3}{will produce an error!} \\end{items} The other components of {\\em vv.2} are needed to compute nextSubsetGray efficiently. Note: this is an implementation of [Williamson,{} Topic II,{} 3.54,{} \\spad{p}. 112] for the special case {\\em r1 = r2 = ... = rn = 2}; Note: nextSubsetGray produces a side-effect,{} \\spadignore{i.e.} {\\em nextSubsetGray(vv)} and {\\em vv := nextSubsetGray(vv)} will have the same effect.")))
NIL
NIL
-(-442)
+(-444)
((|constructor| (NIL "TwoDimensionalPlotSettings sets global flags and constants for 2-dimensional plotting.")) (|screenResolution| (((|Integer|) (|Integer|)) "\\spad{screenResolution(n)} sets the screen resolution to \\spad{n}.") (((|Integer|)) "\\spad{screenResolution()} returns the screen resolution \\spad{n}.")) (|minPoints| (((|Integer|) (|Integer|)) "\\spad{minPoints()} sets the minimum number of points in a plot.") (((|Integer|)) "\\spad{minPoints()} returns the minimum number of points in a plot.")) (|maxPoints| (((|Integer|) (|Integer|)) "\\spad{maxPoints()} sets the maximum number of points in a plot.") (((|Integer|)) "\\spad{maxPoints()} returns the maximum number of points in a plot.")) (|adaptive| (((|Boolean|) (|Boolean|)) "\\spad{adaptive(true)} turns adaptive plotting on; \\spad{adaptive(false)} turns adaptive plotting off.") (((|Boolean|)) "\\spad{adaptive()} determines whether plotting will be done adaptively.")) (|drawToScale| (((|Boolean|) (|Boolean|)) "\\spad{drawToScale(true)} causes plots to be drawn to scale. \\spad{drawToScale(false)} causes plots to be drawn so that they fill up the viewport window. The default setting is \\spad{false}.") (((|Boolean|)) "\\spad{drawToScale()} determines whether or not plots are to be drawn to scale.")) (|clipPointsDefault| (((|Boolean|) (|Boolean|)) "\\spad{clipPointsDefault(true)} turns on automatic clipping; \\spad{clipPointsDefault(false)} turns off automatic clipping. The default setting is \\spad{true}.") (((|Boolean|)) "\\spad{clipPointsDefault()} determines whether or not automatic clipping is to be done.")))
NIL
NIL
-(-443)
+(-445)
((|constructor| (NIL "TwoDimensionalGraph creates virtual two dimensional graphs (to be displayed on TwoDimensionalViewports).")) (|putColorInfo| (((|List| (|List| (|Point| (|DoubleFloat|)))) (|List| (|List| (|Point| (|DoubleFloat|)))) (|List| (|Palette|))) "\\spad{putColorInfo(llp,{}lpal)} takes a list of list of points,{} \\spad{llp},{} and returns the points with their hue and shade components set according to the list of palette colors,{} \\spad{lpal}.")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(\\spad{gi})} returns the indicated graph,{} \\spad{\\spad{gi}},{} of domain \\spadtype{GraphImage} as output of the domain \\spadtype{OutputForm}.") (($ (|List| (|List| (|Point| (|DoubleFloat|))))) "\\spad{coerce(llp)} component(\\spad{gi},{}\\spad{pt}) creates and returns a graph of the domain \\spadtype{GraphImage} which is composed of the list of list of points given by \\spad{llp},{} and whose point colors,{} line colors and point sizes are determined by the default functions \\spadfun{pointColorDefault},{} \\spadfun{lineColorDefault},{} and \\spadfun{pointSizeDefault}. The graph data is then sent to the viewport manager where it waits to be included in a two-dimensional viewport window.")) (|point| (((|Void|) $ (|Point| (|DoubleFloat|)) (|Palette|)) "\\spad{point(\\spad{gi},{}pt,{}pal)} modifies the graph \\spad{\\spad{gi}} of the domain \\spadtype{GraphImage} to contain one point component,{} \\spad{pt} whose point color is set to be the palette color \\spad{pal},{} and whose line color and point size are determined by the default functions \\spadfun{lineColorDefault} and \\spadfun{pointSizeDefault}.")) (|appendPoint| (((|Void|) $ (|Point| (|DoubleFloat|))) "\\spad{appendPoint(\\spad{gi},{}pt)} appends the point \\spad{pt} to the end of the list of points component for the graph,{} \\spad{\\spad{gi}},{} which is of the domain \\spadtype{GraphImage}.")) (|component| (((|Void|) $ (|Point| (|DoubleFloat|)) (|Palette|) (|Palette|) (|PositiveInteger|)) "\\spad{component(\\spad{gi},{}pt,{}pal1,{}pal2,{}ps)} modifies the graph \\spad{\\spad{gi}} of the domain \\spadtype{GraphImage} to contain one point component,{} \\spad{pt} whose point color is set to the palette color \\spad{pal1},{} line color is set to the palette color \\spad{pal2},{} and point size is set to the positive integer \\spad{ps}.") (((|Void|) $ (|Point| (|DoubleFloat|))) "\\spad{component(\\spad{gi},{}pt)} modifies the graph \\spad{\\spad{gi}} of the domain \\spadtype{GraphImage} to contain one point component,{} \\spad{pt} whose point color,{} line color and point size are determined by the default functions \\spadfun{pointColorDefault},{} \\spadfun{lineColorDefault},{} and \\spadfun{pointSizeDefault}.") (((|Void|) $ (|List| (|Point| (|DoubleFloat|))) (|Palette|) (|Palette|) (|PositiveInteger|)) "\\spad{component(\\spad{gi},{}lp,{}pal1,{}pal2,{}p)} sets the components of the graph,{} \\spad{\\spad{gi}} of the domain \\spadtype{GraphImage},{} to the values given. The point list for \\spad{\\spad{gi}} is set to the list \\spad{lp},{} the color of the points in \\spad{lp} is set to the palette color \\spad{pal1},{} the color of the lines which connect the points \\spad{lp} is set to the palette color \\spad{pal2},{} and the size of the points in \\spad{lp} is given by the integer \\spad{p}.")) (|units| (((|List| (|Float|)) $ (|List| (|Float|))) "\\spad{units(\\spad{gi},{}lu)} modifies the list of unit increments for the \\spad{x} and \\spad{y} axes of the given graph,{} \\spad{\\spad{gi}} of the domain \\spadtype{GraphImage},{} to be that of the list of unit increments,{} \\spad{lu},{} and returns the new list of units for \\spad{\\spad{gi}}.") (((|List| (|Float|)) $) "\\spad{units(\\spad{gi})} returns the list of unit increments for the \\spad{x} and \\spad{y} axes of the indicated graph,{} \\spad{\\spad{gi}},{} of the domain \\spadtype{GraphImage}.")) (|ranges| (((|List| (|Segment| (|Float|))) $ (|List| (|Segment| (|Float|)))) "\\spad{ranges(\\spad{gi},{}lr)} modifies the list of ranges for the given graph,{} \\spad{\\spad{gi}} of the domain \\spadtype{GraphImage},{} to be that of the list of range segments,{} \\spad{lr},{} and returns the new range list for \\spad{\\spad{gi}}.") (((|List| (|Segment| (|Float|))) $) "\\spad{ranges(\\spad{gi})} returns the list of ranges of the point components from the indicated graph,{} \\spad{\\spad{gi}},{} of the domain \\spadtype{GraphImage}.")) (|key| (((|Integer|) $) "\\spad{key(\\spad{gi})} returns the process ID of the given graph,{} \\spad{\\spad{gi}},{} of the domain \\spadtype{GraphImage}.")) (|pointLists| (((|List| (|List| (|Point| (|DoubleFloat|)))) $) "\\spad{pointLists(\\spad{gi})} returns the list of lists of points which compose the given graph,{} \\spad{\\spad{gi}},{} of the domain \\spadtype{GraphImage}.")) (|makeGraphImage| (($ (|List| (|List| (|Point| (|DoubleFloat|)))) (|List| (|Palette|)) (|List| (|Palette|)) (|List| (|PositiveInteger|)) (|List| (|DrawOption|))) "\\spad{makeGraphImage(llp,{}lpal1,{}lpal2,{}lp,{}lopt)} returns a graph of the domain \\spadtype{GraphImage} which is composed of the points and lines from the list of lists of points,{} \\spad{llp},{} whose point colors are indicated by the list of palette colors,{} \\spad{lpal1},{} and whose lines are colored according to the list of palette colors,{} \\spad{lpal2}. The paramater \\spad{lp} is a list of integers which denote the size of the data points,{} and \\spad{lopt} is the list of draw command options. The graph data is then sent to the viewport manager where it waits to be included in a two-dimensional viewport window.") (($ (|List| (|List| (|Point| (|DoubleFloat|)))) (|List| (|Palette|)) (|List| (|Palette|)) (|List| (|PositiveInteger|))) "\\spad{makeGraphImage(llp,{}lpal1,{}lpal2,{}lp)} returns a graph of the domain \\spadtype{GraphImage} which is composed of the points and lines from the list of lists of points,{} \\spad{llp},{} whose point colors are indicated by the list of palette colors,{} \\spad{lpal1},{} and whose lines are colored according to the list of palette colors,{} \\spad{lpal2}. The paramater \\spad{lp} is a list of integers which denote the size of the data points. The graph data is then sent to the viewport manager where it waits to be included in a two-dimensional viewport window.") (($ (|List| (|List| (|Point| (|DoubleFloat|))))) "\\spad{makeGraphImage(llp)} returns a graph of the domain \\spadtype{GraphImage} which is composed of the points and lines from the list of lists of points,{} \\spad{llp},{} with default point size and default point and line colours. The graph data is then sent to the viewport manager where it waits to be included in a two-dimensional viewport window.") (($ $) "\\spad{makeGraphImage(\\spad{gi})} takes the given graph,{} \\spad{\\spad{gi}} of the domain \\spadtype{GraphImage},{} and sends it\\spad{'s} data to the viewport manager where it waits to be included in a two-dimensional viewport window. \\spad{\\spad{gi}} cannot be an empty graph,{} and it\\spad{'s} elements must have been created using the \\spadfun{point} or \\spadfun{component} functions,{} not by a previous \\spadfun{makeGraphImage}.")) (|graphImage| (($) "\\spad{graphImage()} returns an empty graph with 0 point lists of the domain \\spadtype{GraphImage}. A graph image contains the graph data component of a two dimensional viewport.")))
NIL
NIL
-(-444 S R E)
+(-446 S R E)
((|constructor| (NIL "GradedModule(\\spad{R},{}\\spad{E}) denotes ``E-graded \\spad{R}-module\\spad{''},{} \\spadignore{i.e.} collection of \\spad{R}-modules indexed by an abelian monoid \\spad{E}. An element \\spad{g} of \\spad{G[s]} for some specific \\spad{s} in \\spad{E} is said to be an element of \\spad{G} with {\\em degree} \\spad{s}. Sums are defined in each module \\spad{G[s]} so two elements of \\spad{G} have a sum if they have the same degree. \\blankline Morphisms can be defined and composed by degree to give the mathematical category of graded modules.")) (+ (($ $ $) "\\spad{g+h} is the sum of \\spad{g} and \\spad{h} in the module of elements of the same degree as \\spad{g} and \\spad{h}. Error: if \\spad{g} and \\spad{h} have different degrees.")) (- (($ $ $) "\\spad{g-h} is the difference of \\spad{g} and \\spad{h} in the module of elements of the same degree as \\spad{g} and \\spad{h}. Error: if \\spad{g} and \\spad{h} have different degrees.") (($ $) "\\spad{-g} is the additive inverse of \\spad{g} in the module of elements of the same grade as \\spad{g}.")) (* (($ $ |#2|) "\\spad{g*r} is right module multiplication.") (($ |#2| $) "\\spad{r*g} is left module multiplication.")) ((|Zero|) (($) "0 denotes the zero of degree 0.")) (|degree| ((|#3| $) "\\spad{degree(g)} names the degree of \\spad{g}. The set of all elements of a given degree form an \\spad{R}-module.")))
NIL
NIL
-(-445 R E)
+(-447 R E)
((|constructor| (NIL "GradedModule(\\spad{R},{}\\spad{E}) denotes ``E-graded \\spad{R}-module\\spad{''},{} \\spadignore{i.e.} collection of \\spad{R}-modules indexed by an abelian monoid \\spad{E}. An element \\spad{g} of \\spad{G[s]} for some specific \\spad{s} in \\spad{E} is said to be an element of \\spad{G} with {\\em degree} \\spad{s}. Sums are defined in each module \\spad{G[s]} so two elements of \\spad{G} have a sum if they have the same degree. \\blankline Morphisms can be defined and composed by degree to give the mathematical category of graded modules.")) (+ (($ $ $) "\\spad{g+h} is the sum of \\spad{g} and \\spad{h} in the module of elements of the same degree as \\spad{g} and \\spad{h}. Error: if \\spad{g} and \\spad{h} have different degrees.")) (- (($ $ $) "\\spad{g-h} is the difference of \\spad{g} and \\spad{h} in the module of elements of the same degree as \\spad{g} and \\spad{h}. Error: if \\spad{g} and \\spad{h} have different degrees.") (($ $) "\\spad{-g} is the additive inverse of \\spad{g} in the module of elements of the same grade as \\spad{g}.")) (* (($ $ |#1|) "\\spad{g*r} is right module multiplication.") (($ |#1| $) "\\spad{r*g} is left module multiplication.")) ((|Zero|) (($) "0 denotes the zero of degree 0.")) (|degree| ((|#2| $) "\\spad{degree(g)} names the degree of \\spad{g}. The set of all elements of a given degree form an \\spad{R}-module.")))
NIL
NIL
-(-446 |lv| -3894 R)
+(-448 |lv| -3576 R)
((|constructor| (NIL "\\indented{1}{Author : \\spad{P}.Gianni,{} Summer \\spad{'88},{} revised November \\spad{'89}} Solve systems of polynomial equations using Groebner bases Total order Groebner bases are computed and then converted to lex ones This package is mostly intended for internal use.")) (|genericPosition| (((|Record| (|:| |dpolys| (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) (|:| |coords| (|List| (|Integer|)))) (|List| (|DistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|OrderedVariableList| |#1|))) "\\spad{genericPosition(lp,{}lv)} puts a radical zero dimensional ideal in general position,{} for system \\spad{lp} in variables \\spad{lv}.")) (|testDim| (((|Union| (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) "failed") (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|OrderedVariableList| |#1|))) "\\spad{testDim(lp,{}lv)} tests if the polynomial system \\spad{lp} in variables \\spad{lv} is zero dimensional.")) (|groebSolve| (((|List| (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) (|List| (|DistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|OrderedVariableList| |#1|))) "\\spad{groebSolve(lp,{}lv)} reduces the polynomial system \\spad{lp} in variables \\spad{lv} to triangular form. Algorithm based on groebner bases algorithm with linear algebra for change of ordering. Preprocessing for the general solver. The polynomials in input are of type \\spadtype{DMP}.")))
NIL
NIL
-(-447 S)
+(-449 S)
((|constructor| (NIL "The class of multiplicative groups,{} \\spadignore{i.e.} monoids with multiplicative inverses. \\blankline")) (|commutator| (($ $ $) "\\spad{commutator(p,{}q)} computes \\spad{inv(p) * inv(q) * p * q}.")) (|conjugate| (($ $ $) "\\spad{conjugate(p,{}q)} computes \\spad{inv(q) * p * q}; this is 'right action by conjugation'.")) (|unitsKnown| ((|attribute|) "unitsKnown asserts that recip only returns \"failed\" for non-units.")) (^ (($ $ (|Integer|)) "\\spad{x^n} returns \\spad{x} raised to the integer power \\spad{n}.")) (** (($ $ (|Integer|)) "\\spad{x**n} returns \\spad{x} raised to the integer power \\spad{n}.")) (/ (($ $ $) "\\spad{x/y} is the same as \\spad{x} times the inverse of \\spad{y}.")) (|inv| (($ $) "\\spad{inv(x)} returns the inverse of \\spad{x}.")))
NIL
NIL
-(-448)
+(-450)
((|constructor| (NIL "The class of multiplicative groups,{} \\spadignore{i.e.} monoids with multiplicative inverses. \\blankline")) (|commutator| (($ $ $) "\\spad{commutator(p,{}q)} computes \\spad{inv(p) * inv(q) * p * q}.")) (|conjugate| (($ $ $) "\\spad{conjugate(p,{}q)} computes \\spad{inv(q) * p * q}; this is 'right action by conjugation'.")) (|unitsKnown| ((|attribute|) "unitsKnown asserts that recip only returns \"failed\" for non-units.")) (^ (($ $ (|Integer|)) "\\spad{x^n} returns \\spad{x} raised to the integer power \\spad{n}.")) (** (($ $ (|Integer|)) "\\spad{x**n} returns \\spad{x} raised to the integer power \\spad{n}.")) (/ (($ $ $) "\\spad{x/y} is the same as \\spad{x} times the inverse of \\spad{y}.")) (|inv| (($ $) "\\spad{inv(x)} returns the inverse of \\spad{x}.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-449 |Coef| |var| |cen|)
+(-451 |Coef| |var| |cen|)
((|constructor| (NIL "This is a category of univariate Puiseux series constructed from univariate Laurent series. A Puiseux series is represented by a pair \\spad{[r,{}f(x)]},{} where \\spad{r} is a positive rational number and \\spad{f(x)} is a Laurent series. This pair represents the Puiseux series \\spad{f(x\\^r)}.")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),{}x)} returns the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|coerce| (($ (|UnivariatePuiseuxSeries| |#1| |#2| |#3|)) "\\spad{coerce(f)} converts a Puiseux series to a general power series.") (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a Puiseux series.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (-12 (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523))) (|devaluate| |#1|)))) (|HasCategory| (-383 (-523)) (QUOTE (-1028))) (|HasCategory| |#1| (QUOTE (-339))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasSignature| |#1| (LIST (QUOTE -3976) (LIST (|devaluate| |#1|) (QUOTE (-1087)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523)))))) (-3255 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-889))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasSignature| |#1| (LIST (QUOTE -2669) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1087))))) (|HasSignature| |#1| (LIST (QUOTE -3716) (LIST (LIST (QUOTE -589) (QUOTE (-1087))) (|devaluate| |#1|)))))))
-(-450 |Key| |Entry| |Tbl| |dent|)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (-12 (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525))) (|devaluate| |#1|)))) (|HasCategory| (-385 (-525)) (QUOTE (-1030))) (|HasCategory| |#1| (QUOTE (-341))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasSignature| |#1| (LIST (QUOTE -3022) (LIST (|devaluate| |#1|) (QUOTE (-1089)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525)))))) (-3321 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-891))) (|HasCategory| |#1| (QUOTE (-1111))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasSignature| |#1| (LIST (QUOTE -4141) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1089))))) (|HasSignature| |#1| (LIST (QUOTE -1507) (LIST (LIST (QUOTE -591) (QUOTE (-1089))) (|devaluate| |#1|)))))))
+(-452 |Key| |Entry| |Tbl| |dent|)
((|constructor| (NIL "A sparse table has a default entry,{} which is returned if no other value has been explicitly stored for a key.")))
-((-4249 . T))
-((-12 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -286) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2402) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2746) (|devaluate| |#2|)))))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| |#2| (QUOTE (-1016)))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -564) (QUOTE (-499)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-786))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-451 R E V P)
+((-4251 . T))
+((-12 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -288) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2019) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1221) (|devaluate| |#2|)))))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1018)))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -566) (QUOTE (-501)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-788))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-453 R E V P)
((|constructor| (NIL "A domain constructor of the category \\axiomType{TriangularSetCategory}. The only requirement for a list of polynomials to be a member of such a domain is the following: no polynomial is constant and two distinct polynomials have distinct main variables. Such a triangular set may not be auto-reduced or consistent. Triangular sets are stored as sorted lists \\spad{w}.\\spad{r}.\\spad{t}. the main variables of their members but they are displayed in reverse order.\\newline References : \\indented{1}{[1] \\spad{P}. AUBRY,{} \\spad{D}. LAZARD and \\spad{M}. MORENO MAZA \"On the Theories} \\indented{5}{of Triangular Sets\" Journal of Symbol. Comp. (to appear)}")))
-((-4249 . T) (-4248 . T))
-((-12 (|HasCategory| |#4| (QUOTE (-1016))) (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#4| (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#3| (QUOTE (-344))) (|HasCategory| |#4| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-452)
+((-4251 . T) (-4250 . T))
+((-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#3| (QUOTE (-346))) (|HasCategory| |#4| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-454)
((|constructor| (NIL "\\indented{1}{Symbolic fractions in \\%\\spad{pi} with integer coefficients;} \\indented{1}{The point for using \\spad{Pi} as the default domain for those fractions} \\indented{1}{is that \\spad{Pi} is coercible to the float types,{} and not Expression.} Date Created: 21 Feb 1990 Date Last Updated: 12 Mai 1992")) (|pi| (($) "\\spad{\\spad{pi}()} returns the symbolic \\%\\spad{pi}.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-453 |Key| |Entry| |hashfn|)
+(-455 |Key| |Entry| |hashfn|)
((|constructor| (NIL "This domain provides access to the underlying Lisp hash tables. By varying the hashfn parameter,{} tables suited for different purposes can be obtained.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -286) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2402) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2746) (|devaluate| |#2|)))))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| |#2| (QUOTE (-1016)))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -564) (QUOTE (-499)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-1016))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-454)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -288) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2019) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1221) (|devaluate| |#2|)))))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1018)))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -566) (QUOTE (-501)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-1018))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-456)
((|constructor| (NIL "\\indented{1}{Author : Larry Lambe} Date Created : August 1988 Date Last Updated : March 9 1990 Related Constructors: OrderedSetInts,{} Commutator,{} FreeNilpotentLie AMS Classification: Primary 17B05,{} 17B30; Secondary 17A50 Keywords: free Lie algebra,{} Hall basis,{} basic commutators Description : Generate a basis for the free Lie algebra on \\spad{n} generators over a ring \\spad{R} with identity up to basic commutators of length \\spad{c} using the algorithm of \\spad{P}. Hall as given in Serre\\spad{'s} book Lie Groups \\spad{--} Lie Algebras")) (|generate| (((|Vector| (|List| (|Integer|))) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{generate(numberOfGens,{} maximalWeight)} generates a vector of elements of the form [left,{}weight,{}right] which represents a \\spad{P}. Hall basis element for the free lie algebra on \\spad{numberOfGens} generators. We only generate those basis elements of weight less than or equal to maximalWeight")) (|inHallBasis?| (((|Boolean|) (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{inHallBasis?(numberOfGens,{} leftCandidate,{} rightCandidate,{} left)} tests to see if a new element should be added to the \\spad{P}. Hall basis being constructed. The list \\spad{[leftCandidate,{}wt,{}rightCandidate]} is included in the basis if in the unique factorization of \\spad{rightCandidate},{} we have left factor leftOfRight,{} and leftOfRight \\spad{<=} \\spad{leftCandidate}")) (|lfunc| (((|Integer|) (|Integer|) (|Integer|)) "\\spad{lfunc(d,{}n)} computes the rank of the \\spad{n}th factor in the lower central series of the free \\spad{d}-generated free Lie algebra; This rank is \\spad{d} if \\spad{n} = 1 and binom(\\spad{d},{}2) if \\spad{n} = 2")))
NIL
NIL
-(-455 |vl| R)
+(-457 |vl| R)
((|constructor| (NIL "\\indented{2}{This type supports distributed multivariate polynomials} whose variables are from a user specified list of symbols. The coefficient ring may be non commutative,{} but the variables are assumed to commute. The term ordering is total degree ordering refined by reverse lexicographic ordering with respect to the position that the variables appear in the list of variables parameter.")) (|reorder| (($ $ (|List| (|Integer|))) "\\spad{reorder(p,{} perm)} applies the permutation perm to the variables in a polynomial and returns the new correctly ordered polynomial")))
-(((-4250 "*") |has| |#2| (-158)) (-4241 |has| |#2| (-515)) (-4246 |has| |#2| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#2| (QUOTE (-840))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-840)))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-158))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-515)))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355)))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523)))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499))))) (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-134))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-339))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasAttribute| |#2| (QUOTE -4246)) (|HasCategory| |#2| (QUOTE (-427))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-840)))) (|HasCategory| |#2| (QUOTE (-134)))))
-(-456 -3765 S)
+(((-4252 "*") |has| |#2| (-160)) (-4243 |has| |#2| (-517)) (-4248 |has| |#2| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#2| (QUOTE (-842))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-842)))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-160))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-517)))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357)))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525)))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501))))) (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-138))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-341))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasAttribute| |#2| (QUOTE -4248)) (|HasCategory| |#2| (QUOTE (-429))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-842)))) (|HasCategory| |#2| (QUOTE (-136)))))
+(-458 -2951 S)
((|constructor| (NIL "\\indented{2}{This type represents the finite direct or cartesian product of an} underlying ordered component type. The vectors are ordered first by the sum of their components,{} and then refined using a reverse lexicographic ordering. This type is a suitable third argument for \\spadtype{GeneralDistributedMultivariatePolynomial}.")))
-((-4242 |has| |#2| (-973)) (-4243 |has| |#2| (-973)) (-4245 |has| |#2| (-6 -4245)) ((-4250 "*") |has| |#2| (-158)) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-344))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))))) (-3255 (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-1016)))) (-12 (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-973)))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087))))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#2| (QUOTE (-339))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-973)))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-339)))) (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (QUOTE (-732))) (-3255 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-784)))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-158))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-973)))) (|HasCategory| |#2| (QUOTE (-344))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-344))) (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (QUOTE (-1016)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-973)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-973)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-973)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-973)))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-158)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-211)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-339)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-344)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-732)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-784)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-973)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-1016))))) (-3255 (-12 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-344))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))))) (|HasCategory| (-523) (QUOTE (-786))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-973)))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087))))) (|HasCategory| |#2| (QUOTE (-666))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-3255 (|HasCategory| |#2| (QUOTE (-973))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-1016)))) (|HasAttribute| |#2| (QUOTE -4245)) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-25))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-457 S)
+((-4244 |has| |#2| (-975)) (-4245 |has| |#2| (-975)) (-4247 |has| |#2| (-6 -4247)) ((-4252 "*") |has| |#2| (-160)) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-346))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-734))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))))) (-3321 (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-975)))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#2| (QUOTE (-341))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-975)))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-341)))) (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (QUOTE (-734))) (-3321 (|HasCategory| |#2| (QUOTE (-734))) (|HasCategory| |#2| (QUOTE (-786)))) (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-160))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-975)))) (|HasCategory| |#2| (QUOTE (-346))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-346))) (|HasCategory| |#2| (QUOTE (-734))) (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (QUOTE (-1018)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-975)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-975)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-975)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-975)))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-126)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-160)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-213)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-341)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-346)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-734)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-786)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-975)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-1018))))) (-3321 (-12 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-346))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-734))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))))) (|HasCategory| (-525) (QUOTE (-788))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-975)))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089))))) (|HasCategory| |#2| (QUOTE (-668))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-3321 (|HasCategory| |#2| (QUOTE (-975))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasAttribute| |#2| (QUOTE -4247)) (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-25))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-459 S)
((|constructor| (NIL "Heap implemented in a flexible array to allow for insertions")) (|heap| (($ (|List| |#1|)) "\\spad{heap(ls)} creates a heap of elements consisting of the elements of \\spad{ls}.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-458 -3894 UP UPUP R)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-460 -3576 UP UPUP R)
((|constructor| (NIL "This domains implements finite rational divisors on an hyperelliptic curve,{} that is finite formal sums SUM(\\spad{n} * \\spad{P}) where the \\spad{n}\\spad{'s} are integers and the \\spad{P}\\spad{'s} are finite rational points on the curve. The equation of the curve must be \\spad{y^2} = \\spad{f}(\\spad{x}) and \\spad{f} must have odd degree.")))
NIL
NIL
-(-459 BP)
+(-461 BP)
((|constructor| (NIL "This package provides the functions for the heuristic integer \\spad{gcd}. Geddes\\spad{'s} algorithm,{}for univariate polynomials with integer coefficients")) (|lintgcd| (((|Integer|) (|List| (|Integer|))) "\\spad{lintgcd([a1,{}..,{}ak])} = \\spad{gcd} of a list of integers")) (|content| (((|List| (|Integer|)) (|List| |#1|)) "\\spad{content([f1,{}..,{}fk])} = content of a list of univariate polynonials")) (|gcdcofactprim| (((|List| |#1|) (|List| |#1|)) "\\spad{gcdcofactprim([f1,{}..fk])} = \\spad{gcd} and cofactors of \\spad{k} primitive polynomials.")) (|gcdcofact| (((|List| |#1|) (|List| |#1|)) "\\spad{gcdcofact([f1,{}..fk])} = \\spad{gcd} and cofactors of \\spad{k} univariate polynomials.")) (|gcdprim| ((|#1| (|List| |#1|)) "\\spad{gcdprim([f1,{}..,{}fk])} = \\spad{gcd} of \\spad{k} PRIMITIVE univariate polynomials")) (|gcd| ((|#1| (|List| |#1|)) "\\spad{gcd([f1,{}..,{}fk])} = \\spad{gcd} of the polynomials \\spad{fi}.")))
NIL
NIL
-(-460)
+(-462)
((|constructor| (NIL "This domain allows rational numbers to be presented as repeating hexadecimal expansions.")) (|hex| (($ (|Fraction| (|Integer|))) "\\spad{hex(r)} converts a rational number to a hexadecimal expansion.")) (|fractionPart| (((|Fraction| (|Integer|)) $) "\\spad{fractionPart(h)} returns the fractional part of a hexadecimal expansion.")) (|coerce| (((|RadixExpansion| 16) $) "\\spad{coerce(h)} converts a hexadecimal expansion to a radix expansion with base 16.") (((|Fraction| (|Integer|)) $) "\\spad{coerce(h)} converts a hexadecimal expansion to a rational number.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| (-523) (QUOTE (-840))) (|HasCategory| (-523) (LIST (QUOTE -964) (QUOTE (-1087)))) (|HasCategory| (-523) (QUOTE (-134))) (|HasCategory| (-523) (QUOTE (-136))) (|HasCategory| (-523) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| (-523) (QUOTE (-949))) (|HasCategory| (-523) (QUOTE (-759))) (-3255 (|HasCategory| (-523) (QUOTE (-759))) (|HasCategory| (-523) (QUOTE (-786)))) (|HasCategory| (-523) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| (-523) (QUOTE (-1063))) (|HasCategory| (-523) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| (-523) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| (-523) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| (-523) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| (-523) (QUOTE (-211))) (|HasCategory| (-523) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| (-523) (LIST (QUOTE -484) (QUOTE (-1087)) (QUOTE (-523)))) (|HasCategory| (-523) (LIST (QUOTE -286) (QUOTE (-523)))) (|HasCategory| (-523) (LIST (QUOTE -263) (QUOTE (-523)) (QUOTE (-523)))) (|HasCategory| (-523) (QUOTE (-284))) (|HasCategory| (-523) (QUOTE (-508))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| (-523) (LIST (QUOTE -585) (QUOTE (-523)))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-523) (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-523) (QUOTE (-840)))) (|HasCategory| (-523) (QUOTE (-134)))))
-(-461 A S)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| (-525) (QUOTE (-842))) (|HasCategory| (-525) (LIST (QUOTE -966) (QUOTE (-1089)))) (|HasCategory| (-525) (QUOTE (-136))) (|HasCategory| (-525) (QUOTE (-138))) (|HasCategory| (-525) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| (-525) (QUOTE (-951))) (|HasCategory| (-525) (QUOTE (-761))) (-3321 (|HasCategory| (-525) (QUOTE (-761))) (|HasCategory| (-525) (QUOTE (-788)))) (|HasCategory| (-525) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| (-525) (QUOTE (-1065))) (|HasCategory| (-525) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| (-525) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| (-525) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| (-525) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| (-525) (QUOTE (-213))) (|HasCategory| (-525) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| (-525) (LIST (QUOTE -486) (QUOTE (-1089)) (QUOTE (-525)))) (|HasCategory| (-525) (LIST (QUOTE -288) (QUOTE (-525)))) (|HasCategory| (-525) (LIST (QUOTE -265) (QUOTE (-525)) (QUOTE (-525)))) (|HasCategory| (-525) (QUOTE (-286))) (|HasCategory| (-525) (QUOTE (-510))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| (-525) (LIST (QUOTE -587) (QUOTE (-525)))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-525) (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-525) (QUOTE (-842)))) (|HasCategory| (-525) (QUOTE (-136)))))
+(-463 A S)
((|constructor| (NIL "A homogeneous aggregate is an aggregate of elements all of the same type. In the current system,{} all aggregates are homogeneous. Two attributes characterize classes of aggregates. Aggregates from domains with attribute \\spadatt{finiteAggregate} have a finite number of members. Those with attribute \\spadatt{shallowlyMutable} allow an element to be modified or updated without changing its overall value.")) (|member?| (((|Boolean|) |#2| $) "\\spad{member?(x,{}u)} tests if \\spad{x} is a member of \\spad{u}. For collections,{} \\axiom{member?(\\spad{x},{}\\spad{u}) = reduce(or,{}[x=y for \\spad{y} in \\spad{u}],{}\\spad{false})}.")) (|members| (((|List| |#2|) $) "\\spad{members(u)} returns a list of the consecutive elements of \\spad{u}. For collections,{} \\axiom{parts([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = (\\spad{x},{}\\spad{y},{}...,{}\\spad{z})}.")) (|parts| (((|List| |#2|) $) "\\spad{parts(u)} returns a list of the consecutive elements of \\spad{u}. For collections,{} \\axiom{parts([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = (\\spad{x},{}\\spad{y},{}...,{}\\spad{z})}.")) (|count| (((|NonNegativeInteger|) |#2| $) "\\spad{count(x,{}u)} returns the number of occurrences of \\spad{x} in \\spad{u}. For collections,{} \\axiom{count(\\spad{x},{}\\spad{u}) = reduce(+,{}[x=y for \\spad{y} in \\spad{u}],{}0)}.") (((|NonNegativeInteger|) (|Mapping| (|Boolean|) |#2|) $) "\\spad{count(p,{}u)} returns the number of elements \\spad{x} in \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. For collections,{} \\axiom{count(\\spad{p},{}\\spad{u}) = reduce(+,{}[1 for \\spad{x} in \\spad{u} | \\spad{p}(\\spad{x})],{}0)}.")) (|every?| (((|Boolean|) (|Mapping| (|Boolean|) |#2|) $) "\\spad{every?(f,{}u)} tests if \\spad{p}(\\spad{x}) is \\spad{true} for all elements \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{every?(\\spad{p},{}\\spad{u}) = reduce(and,{}map(\\spad{f},{}\\spad{u}),{}\\spad{true},{}\\spad{false})}.")) (|any?| (((|Boolean|) (|Mapping| (|Boolean|) |#2|) $) "\\spad{any?(p,{}u)} tests if \\axiom{\\spad{p}(\\spad{x})} is \\spad{true} for any element \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{any?(\\spad{p},{}\\spad{u}) = reduce(or,{}map(\\spad{f},{}\\spad{u}),{}\\spad{false},{}\\spad{true})}.")) (|map!| (($ (|Mapping| |#2| |#2|) $) "\\spad{map!(f,{}u)} destructively replaces each element \\spad{x} of \\spad{u} by \\axiom{\\spad{f}(\\spad{x})}.")) (|map| (($ (|Mapping| |#2| |#2|) $) "\\spad{map(f,{}u)} returns a copy of \\spad{u} with each element \\spad{x} replaced by \\spad{f}(\\spad{x}). For collections,{} \\axiom{map(\\spad{f},{}\\spad{u}) = [\\spad{f}(\\spad{x}) for \\spad{x} in \\spad{u}]}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4248)) (|HasAttribute| |#1| (QUOTE -4249)) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-462 S)
+((|HasAttribute| |#1| (QUOTE -4250)) (|HasAttribute| |#1| (QUOTE -4251)) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-464 S)
((|constructor| (NIL "A homogeneous aggregate is an aggregate of elements all of the same type. In the current system,{} all aggregates are homogeneous. Two attributes characterize classes of aggregates. Aggregates from domains with attribute \\spadatt{finiteAggregate} have a finite number of members. Those with attribute \\spadatt{shallowlyMutable} allow an element to be modified or updated without changing its overall value.")) (|member?| (((|Boolean|) |#1| $) "\\spad{member?(x,{}u)} tests if \\spad{x} is a member of \\spad{u}. For collections,{} \\axiom{member?(\\spad{x},{}\\spad{u}) = reduce(or,{}[x=y for \\spad{y} in \\spad{u}],{}\\spad{false})}.")) (|members| (((|List| |#1|) $) "\\spad{members(u)} returns a list of the consecutive elements of \\spad{u}. For collections,{} \\axiom{parts([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = (\\spad{x},{}\\spad{y},{}...,{}\\spad{z})}.")) (|parts| (((|List| |#1|) $) "\\spad{parts(u)} returns a list of the consecutive elements of \\spad{u}. For collections,{} \\axiom{parts([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = (\\spad{x},{}\\spad{y},{}...,{}\\spad{z})}.")) (|count| (((|NonNegativeInteger|) |#1| $) "\\spad{count(x,{}u)} returns the number of occurrences of \\spad{x} in \\spad{u}. For collections,{} \\axiom{count(\\spad{x},{}\\spad{u}) = reduce(+,{}[x=y for \\spad{y} in \\spad{u}],{}0)}.") (((|NonNegativeInteger|) (|Mapping| (|Boolean|) |#1|) $) "\\spad{count(p,{}u)} returns the number of elements \\spad{x} in \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. For collections,{} \\axiom{count(\\spad{p},{}\\spad{u}) = reduce(+,{}[1 for \\spad{x} in \\spad{u} | \\spad{p}(\\spad{x})],{}0)}.")) (|every?| (((|Boolean|) (|Mapping| (|Boolean|) |#1|) $) "\\spad{every?(f,{}u)} tests if \\spad{p}(\\spad{x}) is \\spad{true} for all elements \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{every?(\\spad{p},{}\\spad{u}) = reduce(and,{}map(\\spad{f},{}\\spad{u}),{}\\spad{true},{}\\spad{false})}.")) (|any?| (((|Boolean|) (|Mapping| (|Boolean|) |#1|) $) "\\spad{any?(p,{}u)} tests if \\axiom{\\spad{p}(\\spad{x})} is \\spad{true} for any element \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{any?(\\spad{p},{}\\spad{u}) = reduce(or,{}map(\\spad{f},{}\\spad{u}),{}\\spad{false},{}\\spad{true})}.")) (|map!| (($ (|Mapping| |#1| |#1|) $) "\\spad{map!(f,{}u)} destructively replaces each element \\spad{x} of \\spad{u} by \\axiom{\\spad{f}(\\spad{x})}.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,{}u)} returns a copy of \\spad{u} with each element \\spad{x} replaced by \\spad{f}(\\spad{x}). For collections,{} \\axiom{map(\\spad{f},{}\\spad{u}) = [\\spad{f}(\\spad{x}) for \\spad{x} in \\spad{u}]}.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-463 S)
+(-465 S)
((|constructor| (NIL "Category for the hyperbolic trigonometric functions.")) (|tanh| (($ $) "\\spad{tanh(x)} returns the hyperbolic tangent of \\spad{x}.")) (|sinh| (($ $) "\\spad{sinh(x)} returns the hyperbolic sine of \\spad{x}.")) (|sech| (($ $) "\\spad{sech(x)} returns the hyperbolic secant of \\spad{x}.")) (|csch| (($ $) "\\spad{csch(x)} returns the hyperbolic cosecant of \\spad{x}.")) (|coth| (($ $) "\\spad{coth(x)} returns the hyperbolic cotangent of \\spad{x}.")) (|cosh| (($ $) "\\spad{cosh(x)} returns the hyperbolic cosine of \\spad{x}.")))
NIL
NIL
-(-464)
+(-466)
((|constructor| (NIL "Category for the hyperbolic trigonometric functions.")) (|tanh| (($ $) "\\spad{tanh(x)} returns the hyperbolic tangent of \\spad{x}.")) (|sinh| (($ $) "\\spad{sinh(x)} returns the hyperbolic sine of \\spad{x}.")) (|sech| (($ $) "\\spad{sech(x)} returns the hyperbolic secant of \\spad{x}.")) (|csch| (($ $) "\\spad{csch(x)} returns the hyperbolic cosecant of \\spad{x}.")) (|coth| (($ $) "\\spad{coth(x)} returns the hyperbolic cotangent of \\spad{x}.")) (|cosh| (($ $) "\\spad{cosh(x)} returns the hyperbolic cosine of \\spad{x}.")))
NIL
NIL
-(-465 -3894 UP |AlExt| |AlPol|)
+(-467 -3576 UP |AlExt| |AlPol|)
((|constructor| (NIL "Factorization of univariate polynomials with coefficients in an algebraic extension of a field over which we can factor UP\\spad{'s}.")) (|factor| (((|Factored| |#4|) |#4| (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{factor(p,{} f)} returns a prime factorisation of \\spad{p}; \\spad{f} is a factorisation map for elements of UP.")))
NIL
NIL
-(-466)
+(-468)
((|constructor| (NIL "Algebraic closure of the rational numbers.")) (|norm| (($ $ (|List| (|Kernel| $))) "\\spad{norm(f,{}l)} computes the norm of the algebraic number \\spad{f} with respect to the extension generated by kernels \\spad{l}") (($ $ (|Kernel| $)) "\\spad{norm(f,{}k)} computes the norm of the algebraic number \\spad{f} with respect to the extension generated by kernel \\spad{k}") (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|List| (|Kernel| $))) "\\spad{norm(p,{}l)} computes the norm of the polynomial \\spad{p} with respect to the extension generated by kernels \\spad{l}") (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|Kernel| $)) "\\spad{norm(p,{}k)} computes the norm of the polynomial \\spad{p} with respect to the extension generated by kernel \\spad{k}")) (|trueEqual| (((|Boolean|) $ $) "\\spad{trueEqual(x,{}y)} tries to determine if the two numbers are equal")) (|reduce| (($ $) "\\spad{reduce(f)} simplifies all the unreduced algebraic numbers present in \\spad{f} by applying their defining relations.")) (|denom| (((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $)) $) "\\spad{denom(f)} returns the denominator of \\spad{f} viewed as a polynomial in the kernels over \\spad{Z}.")) (|numer| (((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $)) $) "\\spad{numer(f)} returns the numerator of \\spad{f} viewed as a polynomial in the kernels over \\spad{Z}.")) (|coerce| (($ (|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $))) "\\spad{coerce(p)} returns \\spad{p} viewed as an algebraic number.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| $ (QUOTE (-973))) (|HasCategory| $ (LIST (QUOTE -964) (QUOTE (-523)))))
-(-467 S |mn|)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| $ (QUOTE (-975))) (|HasCategory| $ (LIST (QUOTE -966) (QUOTE (-525)))))
+(-469 S |mn|)
((|constructor| (NIL "\\indented{1}{Author Micheal Monagan Aug/87} This is the basic one dimensional array data type.")))
-((-4249 . T) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (-3255 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016)))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-468 R |mnRow| |mnCol|)
+((-4251 . T) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (-3321 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018)))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-470 R |mnRow| |mnCol|)
((|constructor| (NIL "\\indented{1}{An IndexedTwoDimensionalArray is a 2-dimensional array where} the minimal row and column indices are parameters of the type. Rows and columns are returned as IndexedOneDimensionalArray\\spad{'s} with minimal indices matching those of the IndexedTwoDimensionalArray. The index of the 'first' row may be obtained by calling the function 'minRowIndex'. The index of the 'first' column may be obtained by calling the function 'minColIndex'. The index of the first element of a 'Row' is the same as the index of the first column in an array and vice versa.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-469 K R UP)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-471 K R UP)
((|constructor| (NIL "\\indented{1}{Author: Clifton Williamson} Date Created: 9 August 1993 Date Last Updated: 3 December 1993 Basic Operations: chineseRemainder,{} factorList Related Domains: PAdicWildFunctionFieldIntegralBasis(\\spad{K},{}\\spad{R},{}UP,{}\\spad{F}) Also See: WildFunctionFieldIntegralBasis,{} FunctionFieldIntegralBasis AMS Classifications: Keywords: function field,{} finite field,{} integral basis Examples: References: Description:")) (|chineseRemainder| (((|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|))) (|List| |#3|) (|List| (|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|)))) (|NonNegativeInteger|)) "\\spad{chineseRemainder(lu,{}lr,{}n)} \\undocumented")) (|listConjugateBases| (((|List| (|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|)))) (|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|))) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{listConjugateBases(bas,{}q,{}n)} returns the list \\spad{[bas,{}bas^Frob,{}bas^(Frob^2),{}...bas^(Frob^(n-1))]},{} where \\spad{Frob} raises the coefficients of all polynomials appearing in the basis \\spad{bas} to the \\spad{q}th power.")) (|factorList| (((|List| (|SparseUnivariatePolynomial| |#1|)) |#1| (|NonNegativeInteger|) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{factorList(k,{}n,{}m,{}j)} \\undocumented")))
NIL
NIL
-(-470 R UP -3894)
+(-472 R UP -3576)
((|constructor| (NIL "This package contains functions used in the packages FunctionFieldIntegralBasis and NumberFieldIntegralBasis.")) (|moduleSum| (((|Record| (|:| |basis| (|Matrix| |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (|Matrix| |#1|))) (|Record| (|:| |basis| (|Matrix| |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (|Matrix| |#1|))) (|Record| (|:| |basis| (|Matrix| |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (|Matrix| |#1|)))) "\\spad{moduleSum(m1,{}m2)} returns the sum of two modules in the framed algebra \\spad{F}. Each module \\spad{\\spad{mi}} is represented as follows: \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,{}w2,{}...,{}wn} and \\spad{\\spad{mi}} is a record \\spad{[basis,{}basisDen,{}basisInv]}. If \\spad{basis} is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then a basis \\spad{v1,{}...,{}vn} for \\spad{\\spad{mi}} is given by \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of 'basis' contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if \\spad{basisInv} is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")) (|idealiserMatrix| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{idealiserMatrix(m1,{} m2)} returns the matrix representing the linear conditions on the Ring associatied with an ideal defined by \\spad{m1} and \\spad{m2}.")) (|idealiser| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) |#1|) "\\spad{idealiser(m1,{}m2,{}d)} computes the order of an ideal defined by \\spad{m1} and \\spad{m2} where \\spad{d} is the known part of the denominator") (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{idealiser(m1,{}m2)} computes the order of an ideal defined by \\spad{m1} and \\spad{m2}")) (|leastPower| (((|NonNegativeInteger|) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{leastPower(p,{}n)} returns \\spad{e},{} where \\spad{e} is the smallest integer such that \\spad{p **e >= n}")) (|divideIfCan!| ((|#1| (|Matrix| |#1|) (|Matrix| |#1|) |#1| (|Integer|)) "\\spad{divideIfCan!(matrix,{}matrixOut,{}prime,{}n)} attempts to divide the entries of \\spad{matrix} by \\spad{prime} and store the result in \\spad{matrixOut}. If it is successful,{} 1 is returned and if not,{} \\spad{prime} is returned. Here both \\spad{matrix} and \\spad{matrixOut} are \\spad{n}-by-\\spad{n} upper triangular matrices.")) (|matrixGcd| ((|#1| (|Matrix| |#1|) |#1| (|NonNegativeInteger|)) "\\spad{matrixGcd(mat,{}sing,{}n)} is \\spad{gcd(sing,{}g)} where \\spad{g} is the \\spad{gcd} of the entries of the \\spad{n}-by-\\spad{n} upper-triangular matrix \\spad{mat}.")) (|diagonalProduct| ((|#1| (|Matrix| |#1|)) "\\spad{diagonalProduct(m)} returns the product of the elements on the diagonal of the matrix \\spad{m}")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(x)} returns a square-free factorisation of \\spad{x}")))
NIL
NIL
-(-471 |mn|)
+(-473 |mn|)
((|constructor| (NIL "\\spadtype{IndexedBits} is a domain to compactly represent large quantities of Boolean data.")) (|And| (($ $ $) "\\spad{And(n,{}m)} returns the bit-by-bit logical {\\em And} of \\spad{n} and \\spad{m}.")) (|Or| (($ $ $) "\\spad{Or(n,{}m)} returns the bit-by-bit logical {\\em Or} of \\spad{n} and \\spad{m}.")) (|Not| (($ $) "\\spad{Not(n)} returns the bit-by-bit logical {\\em Not} of \\spad{n}.")))
-((-4249 . T) (-4248 . T))
-((-12 (|HasCategory| (-108) (QUOTE (-1016))) (|HasCategory| (-108) (LIST (QUOTE -286) (QUOTE (-108))))) (|HasCategory| (-108) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| (-108) (QUOTE (-786))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| (-108) (QUOTE (-1016))) (|HasCategory| (-108) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-472 K R UP L)
+((-4251 . T) (-4250 . T))
+((-12 (|HasCategory| (-108) (QUOTE (-1018))) (|HasCategory| (-108) (LIST (QUOTE -288) (QUOTE (-108))))) (|HasCategory| (-108) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| (-108) (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| (-108) (QUOTE (-1018))) (|HasCategory| (-108) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-474 K R UP L)
((|constructor| (NIL "IntegralBasisPolynomialTools provides functions for \\indented{1}{mapping functions on the coefficients of univariate and bivariate} \\indented{1}{polynomials.}")) (|mapBivariate| (((|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#4|)) (|Mapping| |#4| |#1|) |#3|) "\\spad{mapBivariate(f,{}p(x,{}y))} applies the function \\spad{f} to the coefficients of \\spad{p(x,{}y)}.")) (|mapMatrixIfCan| (((|Union| (|Matrix| |#2|) "failed") (|Mapping| (|Union| |#1| "failed") |#4|) (|Matrix| (|SparseUnivariatePolynomial| |#4|))) "\\spad{mapMatrixIfCan(f,{}mat)} applies the function \\spad{f} to the coefficients of the entries of \\spad{mat} if possible,{} and returns \\spad{\"failed\"} otherwise.")) (|mapUnivariateIfCan| (((|Union| |#2| "failed") (|Mapping| (|Union| |#1| "failed") |#4|) (|SparseUnivariatePolynomial| |#4|)) "\\spad{mapUnivariateIfCan(f,{}p(x))} applies the function \\spad{f} to the coefficients of \\spad{p(x)},{} if possible,{} and returns \\spad{\"failed\"} otherwise.")) (|mapUnivariate| (((|SparseUnivariatePolynomial| |#4|) (|Mapping| |#4| |#1|) |#2|) "\\spad{mapUnivariate(f,{}p(x))} applies the function \\spad{f} to the coefficients of \\spad{p(x)}.") ((|#2| (|Mapping| |#1| |#4|) (|SparseUnivariatePolynomial| |#4|)) "\\spad{mapUnivariate(f,{}p(x))} applies the function \\spad{f} to the coefficients of \\spad{p(x)}.")))
NIL
NIL
-(-473)
+(-475)
((|constructor| (NIL "\\indented{1}{This domain implements a container of information} about the AXIOM library")) (|coerce| (($ (|String|)) "\\spad{coerce(s)} converts \\axiom{\\spad{s}} into an \\axiom{IndexCard}. Warning: if \\axiom{\\spad{s}} is not of the right format then an error will occur when using it.")) (|fullDisplay| (((|Void|) $) "\\spad{fullDisplay(ic)} prints all of the information contained in \\axiom{\\spad{ic}}.")) (|display| (((|Void|) $) "\\spad{display(ic)} prints a summary of the information contained in \\axiom{\\spad{ic}}.")) (|elt| (((|String|) $ (|Symbol|)) "\\spad{elt(ic,{}s)} selects a particular field from \\axiom{\\spad{ic}}. Valid fields are \\axiom{name,{} nargs,{} exposed,{} type,{} abbreviation,{} kind,{} origin,{} params,{} condition,{} doc}.")))
NIL
NIL
-(-474 R Q A B)
+(-476 R Q A B)
((|constructor| (NIL "InnerCommonDenominator provides functions to compute the common denominator of a finite linear aggregate of elements of the quotient field of an integral domain.")) (|splitDenominator| (((|Record| (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) "\\spad{splitDenominator([q1,{}...,{}qn])} returns \\spad{[[p1,{}...,{}pn],{} d]} such that \\spad{\\spad{qi} = pi/d} and \\spad{d} is a common denominator for the \\spad{qi}\\spad{'s}.")) (|clearDenominator| ((|#3| |#4|) "\\spad{clearDenominator([q1,{}...,{}qn])} returns \\spad{[p1,{}...,{}pn]} such that \\spad{\\spad{qi} = pi/d} where \\spad{d} is a common denominator for the \\spad{qi}\\spad{'s}.")) (|commonDenominator| ((|#1| |#4|) "\\spad{commonDenominator([q1,{}...,{}qn])} returns a common denominator \\spad{d} for \\spad{q1},{}...,{}\\spad{qn}.")))
NIL
NIL
-(-475 -3894 |Expon| |VarSet| |DPoly|)
+(-477 -3576 |Expon| |VarSet| |DPoly|)
((|constructor| (NIL "This domain represents polynomial ideals with coefficients in any field and supports the basic ideal operations,{} including intersection sum and quotient. An ideal is represented by a list of polynomials (the generators of the ideal) and a boolean that is \\spad{true} if the generators are a Groebner basis. The algorithms used are based on Groebner basis computations. The ordering is determined by the datatype of the input polynomials. Users may use refinements of total degree orderings.")) (|relationsIdeal| (((|SuchThat| (|List| (|Polynomial| |#1|)) (|List| (|Equation| (|Polynomial| |#1|)))) (|List| |#4|)) "\\spad{relationsIdeal(polyList)} returns the ideal of relations among the polynomials in \\spad{polyList}.")) (|saturate| (($ $ |#4| (|List| |#3|)) "\\spad{saturate(I,{}f,{}lvar)} is the saturation with respect to the prime principal ideal which is generated by \\spad{f} in the polynomial ring \\spad{F[lvar]}.") (($ $ |#4|) "\\spad{saturate(I,{}f)} is the saturation of the ideal \\spad{I} with respect to the multiplicative set generated by the polynomial \\spad{f}.")) (|coerce| (($ (|List| |#4|)) "\\spad{coerce(polyList)} converts the list of polynomials \\spad{polyList} to an ideal.")) (|generators| (((|List| |#4|) $) "\\spad{generators(I)} returns a list of generators for the ideal \\spad{I}.")) (|groebner?| (((|Boolean|) $) "\\spad{groebner?(I)} tests if the generators of the ideal \\spad{I} are a Groebner basis.")) (|groebnerIdeal| (($ (|List| |#4|)) "\\spad{groebnerIdeal(polyList)} constructs the ideal generated by the list of polynomials \\spad{polyList} which are assumed to be a Groebner basis. Note: this operation avoids a Groebner basis computation.")) (|ideal| (($ (|List| |#4|)) "\\spad{ideal(polyList)} constructs the ideal generated by the list of polynomials \\spad{polyList}.")) (|leadingIdeal| (($ $) "\\spad{leadingIdeal(I)} is the ideal generated by the leading terms of the elements of the ideal \\spad{I}.")) (|dimension| (((|Integer|) $) "\\spad{dimension(I)} gives the dimension of the ideal \\spad{I}. in the ring \\spad{F[lvar]},{} where lvar are the variables appearing in \\spad{I}") (((|Integer|) $ (|List| |#3|)) "\\spad{dimension(I,{}lvar)} gives the dimension of the ideal \\spad{I},{} in the ring \\spad{F[lvar]}")) (|backOldPos| (($ (|Record| (|:| |mval| (|Matrix| |#1|)) (|:| |invmval| (|Matrix| |#1|)) (|:| |genIdeal| $))) "\\spad{backOldPos(genPos)} takes the result produced by \\spadfunFrom{generalPosition}{PolynomialIdeals} and performs the inverse transformation,{} returning the original ideal \\spad{backOldPos(generalPosition(I,{}listvar))} = \\spad{I}.")) (|generalPosition| (((|Record| (|:| |mval| (|Matrix| |#1|)) (|:| |invmval| (|Matrix| |#1|)) (|:| |genIdeal| $)) $ (|List| |#3|)) "\\spad{generalPosition(I,{}listvar)} perform a random linear transformation on the variables in \\spad{listvar} and returns the transformed ideal along with the change of basis matrix.")) (|groebner| (($ $) "\\spad{groebner(I)} returns a set of generators of \\spad{I} that are a Groebner basis for \\spad{I}.")) (|quotient| (($ $ |#4|) "\\spad{quotient(I,{}f)} computes the quotient of the ideal \\spad{I} by the principal ideal generated by the polynomial \\spad{f},{} \\spad{(I:(f))}.") (($ $ $) "\\spad{quotient(I,{}J)} computes the quotient of the ideals \\spad{I} and \\spad{J},{} \\spad{(I:J)}.")) (|intersect| (($ (|List| $)) "\\spad{intersect(LI)} computes the intersection of the list of ideals \\spad{LI}.") (($ $ $) "\\spad{intersect(I,{}J)} computes the intersection of the ideals \\spad{I} and \\spad{J}.")) (|zeroDim?| (((|Boolean|) $) "\\spad{zeroDim?(I)} tests if the ideal \\spad{I} is zero dimensional,{} \\spadignore{i.e.} all its associated primes are maximal,{} in the ring \\spad{F[lvar]},{} where lvar are the variables appearing in \\spad{I}") (((|Boolean|) $ (|List| |#3|)) "\\spad{zeroDim?(I,{}lvar)} tests if the ideal \\spad{I} is zero dimensional,{} \\spadignore{i.e.} all its associated primes are maximal,{} in the ring \\spad{F[lvar]}")) (|inRadical?| (((|Boolean|) |#4| $) "\\spad{inRadical?(f,{}I)} tests if some power of the polynomial \\spad{f} belongs to the ideal \\spad{I}.")) (|in?| (((|Boolean|) $ $) "\\spad{in?(I,{}J)} tests if the ideal \\spad{I} is contained in the ideal \\spad{J}.")) (|element?| (((|Boolean|) |#4| $) "\\spad{element?(f,{}I)} tests whether the polynomial \\spad{f} belongs to the ideal \\spad{I}.")) (|zero?| (((|Boolean|) $) "\\spad{zero?(I)} tests whether the ideal \\spad{I} is the zero ideal")) (|one?| (((|Boolean|) $) "\\spad{one?(I)} tests whether the ideal \\spad{I} is the unit ideal,{} \\spadignore{i.e.} contains 1.")) (+ (($ $ $) "\\spad{I+J} computes the ideal generated by the union of \\spad{I} and \\spad{J}.")) (** (($ $ (|NonNegativeInteger|)) "\\spad{I**n} computes the \\spad{n}th power of the ideal \\spad{I}.")) (* (($ $ $) "\\spad{I*J} computes the product of the ideal \\spad{I} and \\spad{J}.")))
NIL
-((|HasCategory| |#3| (LIST (QUOTE -564) (QUOTE (-1087)))))
-(-476 |vl| |nv|)
+((|HasCategory| |#3| (LIST (QUOTE -566) (QUOTE (-1089)))))
+(-478 |vl| |nv|)
((|constructor| (NIL "\\indented{2}{This package provides functions for the primary decomposition of} polynomial ideals over the rational numbers. The ideals are members of the \\spadtype{PolynomialIdeals} domain,{} and the polynomial generators are required to be from the \\spadtype{DistributedMultivariatePolynomial} domain.")) (|contract| (((|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|)))) (|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|)))) (|List| (|OrderedVariableList| |#1|))) "\\spad{contract(I,{}lvar)} contracts the ideal \\spad{I} to the polynomial ring \\spad{F[lvar]}.")) (|primaryDecomp| (((|List| (|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|))))) (|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|))))) "\\spad{primaryDecomp(I)} returns a list of primary ideals such that their intersection is the ideal \\spad{I}.")) (|radical| (((|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|)))) (|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|))))) "\\spad{radical(I)} returns the radical of the ideal \\spad{I}.")) (|prime?| (((|Boolean|) (|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|))))) "\\spad{prime?(I)} tests if the ideal \\spad{I} is prime.")) (|zeroDimPrimary?| (((|Boolean|) (|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|))))) "\\spad{zeroDimPrimary?(I)} tests if the ideal \\spad{I} is 0-dimensional primary.")) (|zeroDimPrime?| (((|Boolean|) (|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|))))) "\\spad{zeroDimPrime?(I)} tests if the ideal \\spad{I} is a 0-dimensional prime.")))
NIL
NIL
-(-477 A S)
+(-479 A S)
((|constructor| (NIL "\\indented{1}{Indexed direct products of abelian groups over an abelian group \\spad{A} of} generators indexed by the ordered set \\spad{S}. All items have finite support: only non-zero terms are stored.")))
NIL
NIL
-(-478 A S)
+(-480 A S)
((|constructor| (NIL "\\indented{1}{Indexed direct products of abelian monoids over an abelian monoid \\spad{A} of} generators indexed by the ordered set \\spad{S}. All items have finite support. Only non-zero terms are stored.")))
NIL
NIL
-(-479 A S)
+(-481 A S)
((|constructor| (NIL "This category represents the direct product of some set with respect to an ordered indexing set.")) (|reductum| (($ $) "\\spad{reductum(z)} returns a new element created by removing the leading coefficient/support pair from the element \\spad{z}. Error: if \\spad{z} has no support.")) (|leadingSupport| ((|#2| $) "\\spad{leadingSupport(z)} returns the index of leading (with respect to the ordering on the indexing set) monomial of \\spad{z}. Error: if \\spad{z} has no support.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(z)} returns the coefficient of the leading (with respect to the ordering on the indexing set) monomial of \\spad{z}. Error: if \\spad{z} has no support.")) (|monomial| (($ |#1| |#2|) "\\spad{monomial(a,{}s)} constructs a direct product element with the \\spad{s} component set to \\spad{a}")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,{}z)} returns the new element created by applying the function \\spad{f} to each component of the direct product element \\spad{z}.")))
NIL
NIL
-(-480 A S)
+(-482 A S)
((|constructor| (NIL "\\indented{1}{Indexed direct products of ordered abelian monoids \\spad{A} of} generators indexed by the ordered set \\spad{S}. The inherited order is lexicographical. All items have finite support: only non-zero terms are stored.")))
NIL
NIL
-(-481 A S)
+(-483 A S)
((|constructor| (NIL "\\indented{1}{Indexed direct products of ordered abelian monoid sups \\spad{A},{}} generators indexed by the ordered set \\spad{S}. All items have finite support: only non-zero terms are stored.")))
NIL
NIL
-(-482 A S)
+(-484 A S)
((|constructor| (NIL "\\indented{1}{Indexed direct products of objects over a set \\spad{A}} of generators indexed by an ordered set \\spad{S}. All items have finite support.")))
NIL
NIL
-(-483 S A B)
+(-485 S A B)
((|constructor| (NIL "This category provides \\spadfun{eval} operations. A domain may belong to this category if it is possible to make ``evaluation\\spad{''} substitutions. The difference between this and \\spadtype{Evalable} is that the operations in this category specify the substitution as a pair of arguments rather than as an equation.")) (|eval| (($ $ (|List| |#2|) (|List| |#3|)) "\\spad{eval(f,{} [x1,{}...,{}xn],{} [v1,{}...,{}vn])} replaces \\spad{xi} by \\spad{vi} in \\spad{f}.") (($ $ |#2| |#3|) "\\spad{eval(f,{} x,{} v)} replaces \\spad{x} by \\spad{v} in \\spad{f}.")))
NIL
NIL
-(-484 A B)
+(-486 A B)
((|constructor| (NIL "This category provides \\spadfun{eval} operations. A domain may belong to this category if it is possible to make ``evaluation\\spad{''} substitutions. The difference between this and \\spadtype{Evalable} is that the operations in this category specify the substitution as a pair of arguments rather than as an equation.")) (|eval| (($ $ (|List| |#1|) (|List| |#2|)) "\\spad{eval(f,{} [x1,{}...,{}xn],{} [v1,{}...,{}vn])} replaces \\spad{xi} by \\spad{vi} in \\spad{f}.") (($ $ |#1| |#2|) "\\spad{eval(f,{} x,{} v)} replaces \\spad{x} by \\spad{v} in \\spad{f}.")))
NIL
NIL
-(-485 S E |un|)
+(-487 S E |un|)
((|constructor| (NIL "Internal implementation of a free abelian monoid.")))
NIL
-((|HasCategory| |#2| (QUOTE (-731))))
-(-486 S |mn|)
+((|HasCategory| |#2| (QUOTE (-733))))
+(-488 S |mn|)
((|constructor| (NIL "\\indented{1}{Author: Michael Monagan July/87,{} modified \\spad{SMW} June/91} A FlexibleArray is the notion of an array intended to allow for growth at the end only. Hence the following efficient operations \\indented{2}{\\spad{append(x,{}a)} meaning append item \\spad{x} at the end of the array \\spad{a}} \\indented{2}{\\spad{delete(a,{}n)} meaning delete the last item from the array \\spad{a}} Flexible arrays support the other operations inherited from \\spadtype{ExtensibleLinearAggregate}. However,{} these are not efficient. Flexible arrays combine the \\spad{O(1)} access time property of arrays with growing and shrinking at the end in \\spad{O(1)} (average) time. This is done by using an ordinary array which may have zero or more empty slots at the end. When the array becomes full it is copied into a new larger (50\\% larger) array. Conversely,{} when the array becomes less than 1/2 full,{} it is copied into a smaller array. Flexible arrays provide for an efficient implementation of many data structures in particular heaps,{} stacks and sets.")) (|shrinkable| (((|Boolean|) (|Boolean|)) "\\spad{shrinkable(b)} sets the shrinkable attribute of flexible arrays to \\spad{b} and returns the previous value")) (|physicalLength!| (($ $ (|Integer|)) "\\spad{physicalLength!(x,{}n)} changes the physical length of \\spad{x} to be \\spad{n} and returns the new array.")) (|physicalLength| (((|NonNegativeInteger|) $) "\\spad{physicalLength(x)} returns the number of elements \\spad{x} can accomodate before growing")) (|flexibleArray| (($ (|List| |#1|)) "\\spad{flexibleArray(l)} creates a flexible array from the list of elements \\spad{l}")))
-((-4249 . T) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (-3255 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016)))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-487 |p| |n|)
+((-4251 . T) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (-3321 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018)))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-489 |p| |n|)
((|constructor| (NIL "InnerFiniteField(\\spad{p},{}\\spad{n}) implements finite fields with \\spad{p**n} elements where \\spad{p} is assumed prime but does not check. For a version which checks that \\spad{p} is prime,{} see \\spadtype{FiniteField}.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((-3255 (|HasCategory| (-536 |#1|) (QUOTE (-134))) (|HasCategory| (-536 |#1|) (QUOTE (-344)))) (|HasCategory| (-536 |#1|) (QUOTE (-136))) (|HasCategory| (-536 |#1|) (QUOTE (-344))) (|HasCategory| (-536 |#1|) (QUOTE (-134))))
-(-488 R |mnRow| |mnCol| |Row| |Col|)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((-3321 (|HasCategory| (-538 |#1|) (QUOTE (-136))) (|HasCategory| (-538 |#1|) (QUOTE (-346)))) (|HasCategory| (-538 |#1|) (QUOTE (-138))) (|HasCategory| (-538 |#1|) (QUOTE (-346))) (|HasCategory| (-538 |#1|) (QUOTE (-136))))
+(-490 R |mnRow| |mnCol| |Row| |Col|)
((|constructor| (NIL "\\indented{1}{This is an internal type which provides an implementation of} 2-dimensional arrays as PrimitiveArray\\spad{'s} of PrimitiveArray\\spad{'s}.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-489 S |mn|)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-491 S |mn|)
((|constructor| (NIL "\\spadtype{IndexedList} is a basic implementation of the functions in \\spadtype{ListAggregate},{} often using functions in the underlying LISP system. The second parameter to the constructor (\\spad{mn}) is the beginning index of the list. That is,{} if \\spad{l} is a list,{} then \\spad{elt(l,{}mn)} is the first value. This constructor is probably best viewed as the implementation of singly-linked lists that are addressable by index rather than as a mere wrapper for LISP lists.")))
-((-4249 . T) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (-3255 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016)))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-490 R |Row| |Col| M)
+((-4251 . T) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (-3321 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018)))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-492 R |Row| |Col| M)
((|constructor| (NIL "\\spadtype{InnerMatrixLinearAlgebraFunctions} is an internal package which provides standard linear algebra functions on domains in \\spad{MatrixCategory}")) (|inverse| (((|Union| |#4| "failed") |#4|) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m}. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square.")) (|generalizedInverse| ((|#4| |#4|) "\\spad{generalizedInverse(m)} returns the generalized (Moore--Penrose) inverse of the matrix \\spad{m},{} \\spadignore{i.e.} the matrix \\spad{h} such that m*h*m=h,{} h*m*h=m,{} \\spad{m*h} and \\spad{h*m} are both symmetric matrices.")) (|determinant| ((|#1| |#4|) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}. an error message is returned if the matrix is not square.")) (|nullSpace| (((|List| |#3|) |#4|) "\\spad{nullSpace(m)} returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) |#4|) "\\spad{nullity(m)} returns the mullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) |#4|) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|rowEchelon| ((|#4| |#4|) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")))
NIL
-((|HasAttribute| |#3| (QUOTE -4249)))
-(-491 R |Row| |Col| M QF |Row2| |Col2| M2)
+((|HasAttribute| |#3| (QUOTE -4251)))
+(-493 R |Row| |Col| M QF |Row2| |Col2| M2)
((|constructor| (NIL "\\spadtype{InnerMatrixQuotientFieldFunctions} provides functions on matrices over an integral domain which involve the quotient field of that integral domain. The functions rowEchelon and inverse return matrices with entries in the quotient field.")) (|nullSpace| (((|List| |#3|) |#4|) "\\spad{nullSpace(m)} returns a basis for the null space of the matrix \\spad{m}.")) (|inverse| (((|Union| |#8| "failed") |#4|) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m}. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square. Note: the result will have entries in the quotient field.")) (|rowEchelon| ((|#8| |#4|) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}. the result will have entries in the quotient field.")))
NIL
-((|HasAttribute| |#7| (QUOTE -4249)))
-(-492 R |mnRow| |mnCol|)
+((|HasAttribute| |#7| (QUOTE -4251)))
+(-494 R |mnRow| |mnCol|)
((|constructor| (NIL "An \\spad{IndexedMatrix} is a matrix where the minimal row and column indices are parameters of the type. The domains Row and Col are both IndexedVectors. The index of the 'first' row may be obtained by calling the function \\spadfun{minRowIndex}. The index of the 'first' column may be obtained by calling the function \\spadfun{minColIndex}. The index of the first element of a 'Row' is the same as the index of the first column in a matrix and vice versa.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-515))) (|HasAttribute| |#1| (QUOTE (-4250 "*"))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-493 GF)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-517))) (|HasAttribute| |#1| (QUOTE (-4252 "*"))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-495 GF)
((|constructor| (NIL "InnerNormalBasisFieldFunctions(\\spad{GF}) (unexposed): This package has functions used by every normal basis finite field extension domain.")) (|minimalPolynomial| (((|SparseUnivariatePolynomial| |#1|) (|Vector| |#1|)) "\\spad{minimalPolynomial(x)} \\undocumented{} See \\axiomFunFrom{minimalPolynomial}{FiniteAlgebraicExtensionField}")) (|normalElement| (((|Vector| |#1|) (|PositiveInteger|)) "\\spad{normalElement(n)} \\undocumented{} See \\axiomFunFrom{normalElement}{FiniteAlgebraicExtensionField}")) (|basis| (((|Vector| (|Vector| |#1|)) (|PositiveInteger|)) "\\spad{basis(n)} \\undocumented{} See \\axiomFunFrom{basis}{FiniteAlgebraicExtensionField}")) (|normal?| (((|Boolean|) (|Vector| |#1|)) "\\spad{normal?(x)} \\undocumented{} See \\axiomFunFrom{normal?}{FiniteAlgebraicExtensionField}")) (|lookup| (((|PositiveInteger|) (|Vector| |#1|)) "\\spad{lookup(x)} \\undocumented{} See \\axiomFunFrom{lookup}{Finite}")) (|inv| (((|Vector| |#1|) (|Vector| |#1|)) "\\spad{inv x} \\undocumented{} See \\axiomFunFrom{inv}{DivisionRing}")) (|trace| (((|Vector| |#1|) (|Vector| |#1|) (|PositiveInteger|)) "\\spad{trace(x,{}n)} \\undocumented{} See \\axiomFunFrom{trace}{FiniteAlgebraicExtensionField}")) (|norm| (((|Vector| |#1|) (|Vector| |#1|) (|PositiveInteger|)) "\\spad{norm(x,{}n)} \\undocumented{} See \\axiomFunFrom{norm}{FiniteAlgebraicExtensionField}")) (/ (((|Vector| |#1|) (|Vector| |#1|) (|Vector| |#1|)) "\\spad{x/y} \\undocumented{} See \\axiomFunFrom{/}{Field}")) (* (((|Vector| |#1|) (|Vector| |#1|) (|Vector| |#1|)) "\\spad{x*y} \\undocumented{} See \\axiomFunFrom{*}{SemiGroup}")) (** (((|Vector| |#1|) (|Vector| |#1|) (|Integer|)) "\\spad{x**n} \\undocumented{} See \\axiomFunFrom{\\spad{**}}{DivisionRing}")) (|qPot| (((|Vector| |#1|) (|Vector| |#1|) (|Integer|)) "\\spad{qPot(v,{}e)} computes \\spad{v**(q**e)},{} interpreting \\spad{v} as an element of normal basis field,{} \\spad{q} the size of the ground field. This is done by a cyclic \\spad{e}-shift of the vector \\spad{v}.")) (|expPot| (((|Vector| |#1|) (|Vector| |#1|) (|SingleInteger|) (|SingleInteger|)) "\\spad{expPot(v,{}e,{}d)} returns the sum from \\spad{i = 0} to \\spad{e - 1} of \\spad{v**(q**i*d)},{} interpreting \\spad{v} as an element of a normal basis field and where \\spad{q} is the size of the ground field. Note: for a description of the algorithm,{} see \\spad{T}.Itoh and \\spad{S}.Tsujii,{} \"A fast algorithm for computing multiplicative inverses in \\spad{GF}(2^m) using normal bases\",{} Information and Computation 78,{} \\spad{pp}.171-177,{} 1988.")) (|repSq| (((|Vector| |#1|) (|Vector| |#1|) (|NonNegativeInteger|)) "\\spad{repSq(v,{}e)} computes \\spad{v**e} by repeated squaring,{} interpreting \\spad{v} as an element of a normal basis field.")) (|dAndcExp| (((|Vector| |#1|) (|Vector| |#1|) (|NonNegativeInteger|) (|SingleInteger|)) "\\spad{dAndcExp(v,{}n,{}k)} computes \\spad{v**e} interpreting \\spad{v} as an element of normal basis field. A divide and conquer algorithm similar to the one from \\spad{D}.\\spad{R}.Stinson,{} \"Some observations on parallel Algorithms for fast exponentiation in \\spad{GF}(2^n)\",{} Siam \\spad{J}. Computation,{} Vol.19,{} No.4,{} \\spad{pp}.711-717,{} August 1990 is used. Argument \\spad{k} is a parameter of this algorithm.")) (|xn| (((|SparseUnivariatePolynomial| |#1|) (|NonNegativeInteger|)) "\\spad{xn(n)} returns the polynomial \\spad{x**n-1}.")) (|pol| (((|SparseUnivariatePolynomial| |#1|) (|Vector| |#1|)) "\\spad{pol(v)} turns the vector \\spad{[v0,{}...,{}vn]} into the polynomial \\spad{v0+v1*x+ ... + vn*x**n}.")) (|index| (((|Vector| |#1|) (|PositiveInteger|) (|PositiveInteger|)) "\\spad{index(n,{}m)} is a index function for vectors of length \\spad{n} over the ground field.")) (|random| (((|Vector| |#1|) (|PositiveInteger|)) "\\spad{random(n)} creates a vector over the ground field with random entries.")) (|setFieldInfo| (((|Void|) (|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|))))) |#1|) "\\spad{setFieldInfo(m,{}p)} initializes the field arithmetic,{} where \\spad{m} is the multiplication table and \\spad{p} is the respective normal element of the ground field \\spad{GF}.")))
NIL
NIL
-(-494 R)
+(-496 R)
((|constructor| (NIL "This package provides operations to create incrementing functions.")) (|incrementBy| (((|Mapping| |#1| |#1|) |#1|) "\\spad{incrementBy(n)} produces a function which adds \\spad{n} to whatever argument it is given. For example,{} if {\\spad{f} \\spad{:=} increment(\\spad{n})} then \\spad{f x} is \\spad{x+n}.")) (|increment| (((|Mapping| |#1| |#1|)) "\\spad{increment()} produces a function which adds \\spad{1} to whatever argument it is given. For example,{} if {\\spad{f} \\spad{:=} increment()} then \\spad{f x} is \\spad{x+1}.")))
NIL
NIL
-(-495 |Varset|)
+(-497 |Varset|)
((|constructor| (NIL "converts entire exponents to OutputForm")))
NIL
NIL
-(-496 K -3894 |Par|)
+(-498 K -3576 |Par|)
((|constructor| (NIL "This package is the inner package to be used by NumericRealEigenPackage and NumericComplexEigenPackage for the computation of numeric eigenvalues and eigenvectors.")) (|innerEigenvectors| (((|List| (|Record| (|:| |outval| |#2|) (|:| |outmult| (|Integer|)) (|:| |outvect| (|List| (|Matrix| |#2|))))) (|Matrix| |#1|) |#3| (|Mapping| (|Factored| (|SparseUnivariatePolynomial| |#1|)) (|SparseUnivariatePolynomial| |#1|))) "\\spad{innerEigenvectors(m,{}eps,{}factor)} computes explicitly the eigenvalues and the correspondent eigenvectors of the matrix \\spad{m}. The parameter \\spad{eps} determines the type of the output,{} \\spad{factor} is the univariate factorizer to \\spad{br} used to reduce the characteristic polynomial into irreducible factors.")) (|solve1| (((|List| |#2|) (|SparseUnivariatePolynomial| |#1|) |#3|) "\\spad{solve1(pol,{} eps)} finds the roots of the univariate polynomial polynomial \\spad{pol} to precision eps. If \\spad{K} is \\spad{Fraction Integer} then only the real roots are returned,{} if \\spad{K} is \\spad{Complex Fraction Integer} then all roots are found.")) (|charpol| (((|SparseUnivariatePolynomial| |#1|) (|Matrix| |#1|)) "\\spad{charpol(m)} computes the characteristic polynomial of a matrix \\spad{m} with entries in \\spad{K}. This function returns a polynomial over \\spad{K},{} while the general one (that is in EiegenPackage) returns Fraction \\spad{P} \\spad{K}")))
NIL
NIL
-(-497)
+(-499)
((|constructor| (NIL "Default infinity signatures for the interpreter; Date Created: 4 Oct 1989 Date Last Updated: 4 Oct 1989")) (|minusInfinity| (((|OrderedCompletion| (|Integer|))) "\\spad{minusInfinity()} returns minusInfinity.")) (|plusInfinity| (((|OrderedCompletion| (|Integer|))) "\\spad{plusInfinity()} returns plusIinfinity.")) (|infinity| (((|OnePointCompletion| (|Integer|))) "\\spad{infinity()} returns infinity.")))
NIL
NIL
-(-498 R)
+(-500 R)
((|constructor| (NIL "Tools for manipulating input forms.")) (|interpret| ((|#1| (|InputForm|)) "\\spad{interpret(f)} passes \\spad{f} to the interpreter,{} and transforms the result into an object of type \\spad{R}.")) (|packageCall| (((|InputForm|) (|Symbol|)) "\\spad{packageCall(f)} returns the input form corresponding to \\spad{f}\\$\\spad{R}.")))
NIL
NIL
-(-499)
+(-501)
((|constructor| (NIL "Domain of parsed forms which can be passed to the interpreter. This is also the interface between algebra code and facilities in the interpreter.")) (|compile| (((|Symbol|) (|Symbol|) (|List| $)) "\\spad{compile(f,{} [t1,{}...,{}tn])} forces the interpreter to compile the function \\spad{f} with signature \\spad{(t1,{}...,{}tn) -> ?}. returns the symbol \\spad{f} if successful. Error: if \\spad{f} was not defined beforehand in the interpreter,{} or if the \\spad{ti}\\spad{'s} are not valid types,{} or if the compiler fails.")) (|declare| (((|Symbol|) (|List| $)) "\\spad{declare(t)} returns a name \\spad{f} such that \\spad{f} has been declared to the interpreter to be of type \\spad{t},{} but has not been assigned a value yet. Note: \\spad{t} should be created as \\spad{devaluate(T)\\$Lisp} where \\spad{T} is the actual type of \\spad{f} (this hack is required for the case where \\spad{T} is a mapping type).")) (|unparse| (((|String|) $) "\\spad{unparse(f)} returns a string \\spad{s} such that the parser would transform \\spad{s} to \\spad{f}. Error: if \\spad{f} is not the parsed form of a string.")) (|flatten| (($ $) "\\spad{flatten(s)} returns an input form corresponding to \\spad{s} with all the nested operations flattened to triples using new local variables. If \\spad{s} is a piece of code,{} this speeds up the compilation tremendously later on.")) ((|One|) (($) "\\spad{1} returns the input form corresponding to 1.")) ((|Zero|) (($) "\\spad{0} returns the input form corresponding to 0.")) (** (($ $ (|Integer|)) "\\spad{a ** b} returns the input form corresponding to \\spad{a ** b}.") (($ $ (|NonNegativeInteger|)) "\\spad{a ** b} returns the input form corresponding to \\spad{a ** b}.")) (/ (($ $ $) "\\spad{a / b} returns the input form corresponding to \\spad{a / b}.")) (* (($ $ $) "\\spad{a * b} returns the input form corresponding to \\spad{a * b}.")) (+ (($ $ $) "\\spad{a + b} returns the input form corresponding to \\spad{a + b}.")) (|lambda| (($ $ (|List| (|Symbol|))) "\\spad{lambda(code,{} [x1,{}...,{}xn])} returns the input form corresponding to \\spad{(x1,{}...,{}xn) +-> code} if \\spad{n > 1},{} or to \\spad{x1 +-> code} if \\spad{n = 1}.")) (|function| (($ $ (|List| (|Symbol|)) (|Symbol|)) "\\spad{function(code,{} [x1,{}...,{}xn],{} f)} returns the input form corresponding to \\spad{f(x1,{}...,{}xn) == code}.")) (|binary| (($ $ (|List| $)) "\\spad{binary(op,{} [a1,{}...,{}an])} returns the input form corresponding to \\spad{a1 op a2 op ... op an}.")) (|convert| (($ (|SExpression|)) "\\spad{convert(s)} makes \\spad{s} into an input form.")) (|interpret| (((|Any|) $) "\\spad{interpret(f)} passes \\spad{f} to the interpreter.")))
NIL
NIL
-(-500 |Coef| UTS)
+(-502 |Coef| UTS)
((|constructor| (NIL "This package computes infinite products of univariate Taylor series over an integral domain of characteristic 0.")) (|generalInfiniteProduct| ((|#2| |#2| (|Integer|) (|Integer|)) "\\spad{generalInfiniteProduct(f(x),{}a,{}d)} computes \\spad{product(n=a,{}a+d,{}a+2*d,{}...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|oddInfiniteProduct| ((|#2| |#2|) "\\spad{oddInfiniteProduct(f(x))} computes \\spad{product(n=1,{}3,{}5...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|evenInfiniteProduct| ((|#2| |#2|) "\\spad{evenInfiniteProduct(f(x))} computes \\spad{product(n=2,{}4,{}6...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|infiniteProduct| ((|#2| |#2|) "\\spad{infiniteProduct(f(x))} computes \\spad{product(n=1,{}2,{}3...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")))
NIL
NIL
-(-501 K -3894 |Par|)
+(-503 K -3576 |Par|)
((|constructor| (NIL "This is an internal package for computing approximate solutions to systems of polynomial equations. The parameter \\spad{K} specifies the coefficient field of the input polynomials and must be either \\spad{Fraction(Integer)} or \\spad{Complex(Fraction Integer)}. The parameter \\spad{F} specifies where the solutions must lie and can be one of the following: \\spad{Float},{} \\spad{Fraction(Integer)},{} \\spad{Complex(Float)},{} \\spad{Complex(Fraction Integer)}. The last parameter specifies the type of the precision operand and must be either \\spad{Fraction(Integer)} or \\spad{Float}.")) (|makeEq| (((|List| (|Equation| (|Polynomial| |#2|))) (|List| |#2|) (|List| (|Symbol|))) "\\spad{makeEq(lsol,{}lvar)} returns a list of equations formed by corresponding members of \\spad{lvar} and \\spad{lsol}.")) (|innerSolve| (((|List| (|List| |#2|)) (|List| (|Polynomial| |#1|)) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|)) |#3|) "\\spad{innerSolve(lnum,{}lden,{}lvar,{}eps)} returns a list of solutions of the system of polynomials \\spad{lnum},{} with the side condition that none of the members of \\spad{lden} vanish identically on any solution. Each solution is expressed as a list corresponding to the list of variables in \\spad{lvar} and with precision specified by \\spad{eps}.")) (|innerSolve1| (((|List| |#2|) (|Polynomial| |#1|) |#3|) "\\spad{innerSolve1(p,{}eps)} returns the list of the zeros of the polynomial \\spad{p} with precision \\spad{eps}.") (((|List| |#2|) (|SparseUnivariatePolynomial| |#1|) |#3|) "\\spad{innerSolve1(up,{}eps)} returns the list of the zeros of the univariate polynomial \\spad{up} with precision \\spad{eps}.")))
NIL
NIL
-(-502 R BP |pMod| |nextMod|)
+(-504 R BP |pMod| |nextMod|)
((|reduction| ((|#2| |#2| |#1|) "\\spad{reduction(f,{}p)} reduces the coefficients of the polynomial \\spad{f} modulo the prime \\spad{p}.")) (|modularGcd| ((|#2| (|List| |#2|)) "\\spad{modularGcd(listf)} computes the \\spad{gcd} of the list of polynomials \\spad{listf} by modular methods.")) (|modularGcdPrimitive| ((|#2| (|List| |#2|)) "\\spad{modularGcdPrimitive(f1,{}f2)} computes the \\spad{gcd} of the two polynomials \\spad{f1} and \\spad{f2} by modular methods.")))
NIL
NIL
-(-503 OV E R P)
+(-505 OV E R P)
((|constructor| (NIL "\\indented{2}{This is an inner package for factoring multivariate polynomials} over various coefficient domains in characteristic 0. The univariate factor operation is passed as a parameter. Multivariate hensel lifting is used to lift the univariate factorization")) (|factor| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|) (|Mapping| (|Factored| (|SparseUnivariatePolynomial| |#3|)) (|SparseUnivariatePolynomial| |#3|))) "\\spad{factor(p,{}ufact)} factors the multivariate polynomial \\spad{p} by specializing variables and calling the univariate factorizer \\spad{ufact}. \\spad{p} is represented as a univariate polynomial with multivariate coefficients.") (((|Factored| |#4|) |#4| (|Mapping| (|Factored| (|SparseUnivariatePolynomial| |#3|)) (|SparseUnivariatePolynomial| |#3|))) "\\spad{factor(p,{}ufact)} factors the multivariate polynomial \\spad{p} by specializing variables and calling the univariate factorizer \\spad{ufact}.")))
NIL
NIL
-(-504 K UP |Coef| UTS)
+(-506 K UP |Coef| UTS)
((|constructor| (NIL "This package computes infinite products of univariate Taylor series over an arbitrary finite field.")) (|generalInfiniteProduct| ((|#4| |#4| (|Integer|) (|Integer|)) "\\spad{generalInfiniteProduct(f(x),{}a,{}d)} computes \\spad{product(n=a,{}a+d,{}a+2*d,{}...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|oddInfiniteProduct| ((|#4| |#4|) "\\spad{oddInfiniteProduct(f(x))} computes \\spad{product(n=1,{}3,{}5...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|evenInfiniteProduct| ((|#4| |#4|) "\\spad{evenInfiniteProduct(f(x))} computes \\spad{product(n=2,{}4,{}6...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|infiniteProduct| ((|#4| |#4|) "\\spad{infiniteProduct(f(x))} computes \\spad{product(n=1,{}2,{}3...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")))
NIL
NIL
-(-505 |Coef| UTS)
+(-507 |Coef| UTS)
((|constructor| (NIL "This package computes infinite products of univariate Taylor series over a field of prime order.")) (|generalInfiniteProduct| ((|#2| |#2| (|Integer|) (|Integer|)) "\\spad{generalInfiniteProduct(f(x),{}a,{}d)} computes \\spad{product(n=a,{}a+d,{}a+2*d,{}...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|oddInfiniteProduct| ((|#2| |#2|) "\\spad{oddInfiniteProduct(f(x))} computes \\spad{product(n=1,{}3,{}5...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|evenInfiniteProduct| ((|#2| |#2|) "\\spad{evenInfiniteProduct(f(x))} computes \\spad{product(n=2,{}4,{}6...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|infiniteProduct| ((|#2| |#2|) "\\spad{infiniteProduct(f(x))} computes \\spad{product(n=1,{}2,{}3...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")))
NIL
NIL
-(-506 R UP)
+(-508 R UP)
((|constructor| (NIL "Find the sign of a polynomial around a point or infinity.")) (|signAround| (((|Union| (|Integer|) "failed") |#2| |#1| (|Mapping| (|Union| (|Integer|) "failed") |#1|)) "\\spad{signAround(u,{}r,{}f)} \\undocumented") (((|Union| (|Integer|) "failed") |#2| |#1| (|Integer|) (|Mapping| (|Union| (|Integer|) "failed") |#1|)) "\\spad{signAround(u,{}r,{}i,{}f)} \\undocumented") (((|Union| (|Integer|) "failed") |#2| (|Integer|) (|Mapping| (|Union| (|Integer|) "failed") |#1|)) "\\spad{signAround(u,{}i,{}f)} \\undocumented")))
NIL
NIL
-(-507 S)
+(-509 S)
((|constructor| (NIL "An \\spad{IntegerNumberSystem} is a model for the integers.")) (|invmod| (($ $ $) "\\spad{invmod(a,{}b)},{} \\spad{0<=a<b>1},{} \\spad{(a,{}b)=1} means \\spad{1/a mod b}.")) (|powmod| (($ $ $ $) "\\spad{powmod(a,{}b,{}p)},{} \\spad{0<=a,{}b<p>1},{} means \\spad{a**b mod p}.")) (|mulmod| (($ $ $ $) "\\spad{mulmod(a,{}b,{}p)},{} \\spad{0<=a,{}b<p>1},{} means \\spad{a*b mod p}.")) (|submod| (($ $ $ $) "\\spad{submod(a,{}b,{}p)},{} \\spad{0<=a,{}b<p>1},{} means \\spad{a-b mod p}.")) (|addmod| (($ $ $ $) "\\spad{addmod(a,{}b,{}p)},{} \\spad{0<=a,{}b<p>1},{} means \\spad{a+b mod p}.")) (|mask| (($ $) "\\spad{mask(n)} returns \\spad{2**n-1} (an \\spad{n} bit mask).")) (|dec| (($ $) "\\spad{dec(x)} returns \\spad{x - 1}.")) (|inc| (($ $) "\\spad{inc(x)} returns \\spad{x + 1}.")) (|copy| (($ $) "\\spad{copy(n)} gives a copy of \\spad{n}.")) (|hash| (($ $) "\\spad{hash(n)} returns the hash code of \\spad{n}.")) (|random| (($ $) "\\spad{random(a)} creates a random element from 0 to \\spad{n-1}.") (($) "\\spad{random()} creates a random element.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(n)} creates a rational number,{} or returns \"failed\" if this is not possible.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(n)} creates a rational number (see \\spadtype{Fraction Integer})..")) (|rational?| (((|Boolean|) $) "\\spad{rational?(n)} tests if \\spad{n} is a rational number (see \\spadtype{Fraction Integer}).")) (|symmetricRemainder| (($ $ $) "\\spad{symmetricRemainder(a,{}b)} (where \\spad{b > 1}) yields \\spad{r} where \\spad{ -b/2 <= r < b/2 }.")) (|positiveRemainder| (($ $ $) "\\spad{positiveRemainder(a,{}b)} (where \\spad{b > 1}) yields \\spad{r} where \\spad{0 <= r < b} and \\spad{r == a rem b}.")) (|bit?| (((|Boolean|) $ $) "\\spad{bit?(n,{}i)} returns \\spad{true} if and only if \\spad{i}-th bit of \\spad{n} is a 1.")) (|shift| (($ $ $) "\\spad{shift(a,{}i)} shift \\spad{a} by \\spad{i} digits.")) (|length| (($ $) "\\spad{length(a)} length of \\spad{a} in digits.")) (|base| (($) "\\spad{base()} returns the base for the operations of \\spad{IntegerNumberSystem}.")) (|multiplicativeValuation| ((|attribute|) "euclideanSize(a*b) returns \\spad{euclideanSize(a)*euclideanSize(b)}.")) (|even?| (((|Boolean|) $) "\\spad{even?(n)} returns \\spad{true} if and only if \\spad{n} is even.")) (|odd?| (((|Boolean|) $) "\\spad{odd?(n)} returns \\spad{true} if and only if \\spad{n} is odd.")))
NIL
NIL
-(-508)
+(-510)
((|constructor| (NIL "An \\spad{IntegerNumberSystem} is a model for the integers.")) (|invmod| (($ $ $) "\\spad{invmod(a,{}b)},{} \\spad{0<=a<b>1},{} \\spad{(a,{}b)=1} means \\spad{1/a mod b}.")) (|powmod| (($ $ $ $) "\\spad{powmod(a,{}b,{}p)},{} \\spad{0<=a,{}b<p>1},{} means \\spad{a**b mod p}.")) (|mulmod| (($ $ $ $) "\\spad{mulmod(a,{}b,{}p)},{} \\spad{0<=a,{}b<p>1},{} means \\spad{a*b mod p}.")) (|submod| (($ $ $ $) "\\spad{submod(a,{}b,{}p)},{} \\spad{0<=a,{}b<p>1},{} means \\spad{a-b mod p}.")) (|addmod| (($ $ $ $) "\\spad{addmod(a,{}b,{}p)},{} \\spad{0<=a,{}b<p>1},{} means \\spad{a+b mod p}.")) (|mask| (($ $) "\\spad{mask(n)} returns \\spad{2**n-1} (an \\spad{n} bit mask).")) (|dec| (($ $) "\\spad{dec(x)} returns \\spad{x - 1}.")) (|inc| (($ $) "\\spad{inc(x)} returns \\spad{x + 1}.")) (|copy| (($ $) "\\spad{copy(n)} gives a copy of \\spad{n}.")) (|hash| (($ $) "\\spad{hash(n)} returns the hash code of \\spad{n}.")) (|random| (($ $) "\\spad{random(a)} creates a random element from 0 to \\spad{n-1}.") (($) "\\spad{random()} creates a random element.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(n)} creates a rational number,{} or returns \"failed\" if this is not possible.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(n)} creates a rational number (see \\spadtype{Fraction Integer})..")) (|rational?| (((|Boolean|) $) "\\spad{rational?(n)} tests if \\spad{n} is a rational number (see \\spadtype{Fraction Integer}).")) (|symmetricRemainder| (($ $ $) "\\spad{symmetricRemainder(a,{}b)} (where \\spad{b > 1}) yields \\spad{r} where \\spad{ -b/2 <= r < b/2 }.")) (|positiveRemainder| (($ $ $) "\\spad{positiveRemainder(a,{}b)} (where \\spad{b > 1}) yields \\spad{r} where \\spad{0 <= r < b} and \\spad{r == a rem b}.")) (|bit?| (((|Boolean|) $ $) "\\spad{bit?(n,{}i)} returns \\spad{true} if and only if \\spad{i}-th bit of \\spad{n} is a 1.")) (|shift| (($ $ $) "\\spad{shift(a,{}i)} shift \\spad{a} by \\spad{i} digits.")) (|length| (($ $) "\\spad{length(a)} length of \\spad{a} in digits.")) (|base| (($) "\\spad{base()} returns the base for the operations of \\spad{IntegerNumberSystem}.")) (|multiplicativeValuation| ((|attribute|) "euclideanSize(a*b) returns \\spad{euclideanSize(a)*euclideanSize(b)}.")) (|even?| (((|Boolean|) $) "\\spad{even?(n)} returns \\spad{true} if and only if \\spad{n} is even.")) (|odd?| (((|Boolean|) $) "\\spad{odd?(n)} returns \\spad{true} if and only if \\spad{n} is odd.")))
-((-4246 . T) (-4247 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4248 . T) (-4249 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-509 |Key| |Entry| |addDom|)
+(-511 |Key| |Entry| |addDom|)
((|constructor| (NIL "This domain is used to provide a conditional \"add\" domain for the implementation of \\spadtype{Table}.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -286) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2402) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2746) (|devaluate| |#2|)))))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| |#2| (QUOTE (-1016)))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -564) (QUOTE (-499)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-1016))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-510 R -3894)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -288) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2019) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1221) (|devaluate| |#2|)))))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1018)))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -566) (QUOTE (-501)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-1018))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-512 R -3576)
((|constructor| (NIL "This package provides functions for the integration of algebraic integrands over transcendental functions.")) (|algint| (((|IntegrationResult| |#2|) |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Mapping| (|SparseUnivariatePolynomial| |#2|) (|SparseUnivariatePolynomial| |#2|))) "\\spad{algint(f,{} x,{} y,{} d)} returns the integral of \\spad{f(x,{}y)dx} where \\spad{y} is an algebraic function of \\spad{x}; \\spad{d} is the derivation to use on \\spad{k[x]}.")))
NIL
NIL
-(-511 R0 -3894 UP UPUP R)
+(-513 R0 -3576 UP UPUP R)
((|constructor| (NIL "This package provides functions for integrating a function on an algebraic curve.")) (|palginfieldint| (((|Union| |#5| "failed") |#5| (|Mapping| |#3| |#3|)) "\\spad{palginfieldint(f,{} d)} returns an algebraic function \\spad{g} such that \\spad{dg = f} if such a \\spad{g} exists,{} \"failed\" otherwise. Argument \\spad{f} must be a pure algebraic function.")) (|palgintegrate| (((|IntegrationResult| |#5|) |#5| (|Mapping| |#3| |#3|)) "\\spad{palgintegrate(f,{} d)} integrates \\spad{f} with respect to the derivation \\spad{d}. Argument \\spad{f} must be a pure algebraic function.")) (|algintegrate| (((|IntegrationResult| |#5|) |#5| (|Mapping| |#3| |#3|)) "\\spad{algintegrate(f,{} d)} integrates \\spad{f} with respect to the derivation \\spad{d}.")))
NIL
NIL
-(-512)
+(-514)
((|constructor| (NIL "This package provides functions to lookup bits in integers")) (|bitTruth| (((|Boolean|) (|Integer|) (|Integer|)) "\\spad{bitTruth(n,{}m)} returns \\spad{true} if coefficient of 2**m in abs(\\spad{n}) is 1")) (|bitCoef| (((|Integer|) (|Integer|) (|Integer|)) "\\spad{bitCoef(n,{}m)} returns the coefficient of 2**m in abs(\\spad{n})")) (|bitLength| (((|Integer|) (|Integer|)) "\\spad{bitLength(n)} returns the number of bits to represent abs(\\spad{n})")))
NIL
NIL
-(-513 R)
+(-515 R)
((|constructor| (NIL "\\indented{1}{+ Author: Mike Dewar} + Date Created: November 1996 + Date Last Updated: + Basic Functions: + Related Constructors: + Also See: + AMS Classifications: + Keywords: + References: + Description: + This category implements of interval arithmetic and transcendental + functions over intervals.")) (|contains?| (((|Boolean|) $ |#1|) "\\spad{contains?(i,{}f)} returns \\spad{true} if \\axiom{\\spad{f}} is contained within the interval \\axiom{\\spad{i}},{} \\spad{false} otherwise.")) (|negative?| (((|Boolean|) $) "\\spad{negative?(u)} returns \\axiom{\\spad{true}} if every element of \\spad{u} is negative,{} \\axiom{\\spad{false}} otherwise.")) (|positive?| (((|Boolean|) $) "\\spad{positive?(u)} returns \\axiom{\\spad{true}} if every element of \\spad{u} is positive,{} \\axiom{\\spad{false}} otherwise.")) (|width| ((|#1| $) "\\spad{width(u)} returns \\axiom{sup(\\spad{u}) - inf(\\spad{u})}.")) (|sup| ((|#1| $) "\\spad{sup(u)} returns the supremum of \\axiom{\\spad{u}}.")) (|inf| ((|#1| $) "\\spad{inf(u)} returns the infinum of \\axiom{\\spad{u}}.")) (|qinterval| (($ |#1| |#1|) "\\spad{qinterval(inf,{}sup)} creates a new interval \\axiom{[\\spad{inf},{}\\spad{sup}]},{} without checking the ordering on the elements.")) (|interval| (($ (|Fraction| (|Integer|))) "\\spad{interval(f)} creates a new interval around \\spad{f}.") (($ |#1|) "\\spad{interval(f)} creates a new interval around \\spad{f}.") (($ |#1| |#1|) "\\spad{interval(inf,{}sup)} creates a new interval,{} either \\axiom{[\\spad{inf},{}\\spad{sup}]} if \\axiom{\\spad{inf} \\spad{<=} \\spad{sup}} or \\axiom{[\\spad{sup},{}in]} otherwise.")))
-((-2523 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-2176 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-514 S)
+(-516 S)
((|constructor| (NIL "The category of commutative integral domains,{} \\spadignore{i.e.} commutative rings with no zero divisors. \\blankline Conditional attributes: \\indented{2}{canonicalUnitNormal\\tab{20}the canonical field is the same for all associates} \\indented{2}{canonicalsClosed\\tab{20}the product of two canonicals is itself canonical}")) (|unit?| (((|Boolean|) $) "\\spad{unit?(x)} tests whether \\spad{x} is a unit,{} \\spadignore{i.e.} is invertible.")) (|associates?| (((|Boolean|) $ $) "\\spad{associates?(x,{}y)} tests whether \\spad{x} and \\spad{y} are associates,{} \\spadignore{i.e.} differ by a unit factor.")) (|unitCanonical| (($ $) "\\spad{unitCanonical(x)} returns \\spad{unitNormal(x).canonical}.")) (|unitNormal| (((|Record| (|:| |unit| $) (|:| |canonical| $) (|:| |associate| $)) $) "\\spad{unitNormal(x)} tries to choose a canonical element from the associate class of \\spad{x}. The attribute canonicalUnitNormal,{} if asserted,{} means that the \"canonical\" element is the same across all associates of \\spad{x} if \\spad{unitNormal(x) = [u,{}c,{}a]} then \\spad{u*c = x},{} \\spad{a*u = 1}.")) (|exquo| (((|Union| $ "failed") $ $) "\\spad{exquo(a,{}b)} either returns an element \\spad{c} such that \\spad{c*b=a} or \"failed\" if no such element can be found.")))
NIL
NIL
-(-515)
+(-517)
((|constructor| (NIL "The category of commutative integral domains,{} \\spadignore{i.e.} commutative rings with no zero divisors. \\blankline Conditional attributes: \\indented{2}{canonicalUnitNormal\\tab{20}the canonical field is the same for all associates} \\indented{2}{canonicalsClosed\\tab{20}the product of two canonicals is itself canonical}")) (|unit?| (((|Boolean|) $) "\\spad{unit?(x)} tests whether \\spad{x} is a unit,{} \\spadignore{i.e.} is invertible.")) (|associates?| (((|Boolean|) $ $) "\\spad{associates?(x,{}y)} tests whether \\spad{x} and \\spad{y} are associates,{} \\spadignore{i.e.} differ by a unit factor.")) (|unitCanonical| (($ $) "\\spad{unitCanonical(x)} returns \\spad{unitNormal(x).canonical}.")) (|unitNormal| (((|Record| (|:| |unit| $) (|:| |canonical| $) (|:| |associate| $)) $) "\\spad{unitNormal(x)} tries to choose a canonical element from the associate class of \\spad{x}. The attribute canonicalUnitNormal,{} if asserted,{} means that the \"canonical\" element is the same across all associates of \\spad{x} if \\spad{unitNormal(x) = [u,{}c,{}a]} then \\spad{u*c = x},{} \\spad{a*u = 1}.")) (|exquo| (((|Union| $ "failed") $ $) "\\spad{exquo(a,{}b)} either returns an element \\spad{c} such that \\spad{c*b=a} or \"failed\" if no such element can be found.")))
-((-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-516 R -3894)
+(-518 R -3576)
((|constructor| (NIL "This package provides functions for integration,{} limited integration,{} extended integration and the risch differential equation for elemntary functions.")) (|lfextlimint| (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| (|Symbol|) (|Kernel| |#2|) (|List| (|Kernel| |#2|))) "\\spad{lfextlimint(f,{}x,{}k,{}[k1,{}...,{}kn])} returns functions \\spad{[h,{} c]} such that \\spad{dh/dx = f - c dk/dx}. Value \\spad{h} is looked for in a field containing \\spad{f} and \\spad{k1},{}...,{}\\spad{kn} (the \\spad{ki}\\spad{'s} must be logs).")) (|lfintegrate| (((|IntegrationResult| |#2|) |#2| (|Symbol|)) "\\spad{lfintegrate(f,{} x)} = \\spad{g} such that \\spad{dg/dx = f}.")) (|lfinfieldint| (((|Union| |#2| "failed") |#2| (|Symbol|)) "\\spad{lfinfieldint(f,{} x)} returns a function \\spad{g} such that \\spad{dg/dx = f} if \\spad{g} exists,{} \"failed\" otherwise.")) (|lflimitedint| (((|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|Symbol|) (|List| |#2|)) "\\spad{lflimitedint(f,{}x,{}[g1,{}...,{}gn])} returns functions \\spad{[h,{}[[\\spad{ci},{} \\spad{gi}]]]} such that the \\spad{gi}\\spad{'s} are among \\spad{[g1,{}...,{}gn]},{} and \\spad{d(h+sum(\\spad{ci} log(\\spad{gi})))/dx = f},{} if possible,{} \"failed\" otherwise.")) (|lfextendedint| (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| (|Symbol|) |#2|) "\\spad{lfextendedint(f,{} x,{} g)} returns functions \\spad{[h,{} c]} such that \\spad{dh/dx = f - cg},{} if (\\spad{h},{} \\spad{c}) exist,{} \"failed\" otherwise.")))
NIL
NIL
-(-517 I)
+(-519 I)
((|constructor| (NIL "\\indented{1}{This Package contains basic methods for integer factorization.} The factor operation employs trial division up to 10,{}000. It then tests to see if \\spad{n} is a perfect power before using Pollards rho method. Because Pollards method may fail,{} the result of factor may contain composite factors. We should also employ Lenstra\\spad{'s} eliptic curve method.")) (|PollardSmallFactor| (((|Union| |#1| "failed") |#1|) "\\spad{PollardSmallFactor(n)} returns a factor of \\spad{n} or \"failed\" if no one is found")) (|BasicMethod| (((|Factored| |#1|) |#1|) "\\spad{BasicMethod(n)} returns the factorization of integer \\spad{n} by trial division")) (|squareFree| (((|Factored| |#1|) |#1|) "\\spad{squareFree(n)} returns the square free factorization of integer \\spad{n}")) (|factor| (((|Factored| |#1|) |#1|) "\\spad{factor(n)} returns the full factorization of integer \\spad{n}")))
NIL
NIL
-(-518)
+(-520)
((|constructor| (NIL "\\blankline")) (|entry| (((|Record| (|:| |endPointContinuity| (|Union| (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{entry(n)} \\undocumented{}")) (|entries| (((|List| (|Record| (|:| |key| (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |entry| (|Record| (|:| |endPointContinuity| (|Union| (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $) "\\spad{entries(x)} \\undocumented{}")) (|showAttributes| (((|Union| (|Record| (|:| |endPointContinuity| (|Union| (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{showAttributes(x)} \\undocumented{}")) (|insert!| (($ (|Record| (|:| |key| (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |entry| (|Record| (|:| |endPointContinuity| (|Union| (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) "\\spad{insert!(r)} inserts an entry \\spad{r} into theIFTable")) (|fTable| (($ (|List| (|Record| (|:| |key| (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |entry| (|Record| (|:| |endPointContinuity| (|Union| (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) "\\spad{fTable(l)} creates a functions table from the elements of \\spad{l}.")) (|keys| (((|List| (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) $) "\\spad{keys(f)} returns the list of keys of \\spad{f}")) (|clearTheFTable| (((|Void|)) "\\spad{clearTheFTable()} clears the current table of functions.")) (|showTheFTable| (($) "\\spad{showTheFTable()} returns the current table of functions.")))
NIL
NIL
-(-519 R -3894 L)
+(-521 R -3576 L)
((|constructor| (NIL "This internal package rationalises integrands on curves of the form: \\indented{2}{\\spad{y\\^2 = a x\\^2 + b x + c}} \\indented{2}{\\spad{y\\^2 = (a x + b) / (c x + d)}} \\indented{2}{\\spad{f(x,{} y) = 0} where \\spad{f} has degree 1 in \\spad{x}} The rationalization is done for integration,{} limited integration,{} extended integration and the risch differential equation.")) (|palgLODE0| (((|Record| (|:| |particular| (|Union| |#2| "failed")) (|:| |basis| (|List| |#2|))) |#3| |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Kernel| |#2|) |#2| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) "\\spad{palgLODE0(op,{}g,{}x,{}y,{}z,{}t,{}c)} returns the solution of \\spad{op f = g} Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{f(x,{}y)dx = c f(t,{}y) dy}; \\spad{c} and \\spad{t} are rational functions of \\spad{y}.") (((|Record| (|:| |particular| (|Union| |#2| "failed")) (|:| |basis| (|List| |#2|))) |#3| |#2| (|Kernel| |#2|) (|Kernel| |#2|) |#2| (|SparseUnivariatePolynomial| |#2|)) "\\spad{palgLODE0(op,{} g,{} x,{} y,{} d,{} p)} returns the solution of \\spad{op f = g}. Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{d(x)\\^2y(x)\\^2 = P(x)}.")) (|lift| (((|SparseUnivariatePolynomial| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) (|SparseUnivariatePolynomial| |#2|) (|Kernel| |#2|)) "\\spad{lift(u,{}k)} \\undocumented")) (|multivariate| ((|#2| (|SparseUnivariatePolynomial| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) (|Kernel| |#2|) |#2|) "\\spad{multivariate(u,{}k,{}f)} \\undocumented")) (|univariate| (((|SparseUnivariatePolynomial| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|SparseUnivariatePolynomial| |#2|)) "\\spad{univariate(f,{}k,{}k,{}p)} \\undocumented")) (|palgRDE0| (((|Union| |#2| "failed") |#2| |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Mapping| (|Union| |#2| "failed") |#2| |#2| (|Symbol|)) (|Kernel| |#2|) |#2| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) "\\spad{palgRDE0(f,{} g,{} x,{} y,{} foo,{} t,{} c)} returns a function \\spad{z(x,{}y)} such that \\spad{dz/dx + n * df/dx z(x,{}y) = g(x,{}y)} if such a \\spad{z} exists,{} and \"failed\" otherwise. Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{f(x,{}y)dx = c f(t,{}y) dy}; \\spad{c} and \\spad{t} are rational functions of \\spad{y}. Argument \\spad{foo},{} called by \\spad{foo(a,{} b,{} x)},{} is a function that solves \\spad{du/dx + n * da/dx u(x) = u(x)} for an unknown \\spad{u(x)} not involving \\spad{y}.") (((|Union| |#2| "failed") |#2| |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Mapping| (|Union| |#2| "failed") |#2| |#2| (|Symbol|)) |#2| (|SparseUnivariatePolynomial| |#2|)) "\\spad{palgRDE0(f,{} g,{} x,{} y,{} foo,{} d,{} p)} returns a function \\spad{z(x,{}y)} such that \\spad{dz/dx + n * df/dx z(x,{}y) = g(x,{}y)} if such a \\spad{z} exists,{} and \"failed\" otherwise. Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{d(x)\\^2y(x)\\^2 = P(x)}. Argument \\spad{foo},{} called by \\spad{foo(a,{} b,{} x)},{} is a function that solves \\spad{du/dx + n * da/dx u(x) = u(x)} for an unknown \\spad{u(x)} not involving \\spad{y}.")) (|palglimint0| (((|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|List| |#2|) (|Kernel| |#2|) |#2| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) "\\spad{palglimint0(f,{} x,{} y,{} [u1,{}...,{}un],{} z,{} t,{} c)} returns functions \\spad{[h,{}[[\\spad{ci},{} \\spad{ui}]]]} such that the \\spad{ui}\\spad{'s} are among \\spad{[u1,{}...,{}un]} and \\spad{d(h + sum(\\spad{ci} log(\\spad{ui})))/dx = f(x,{}y)} if such functions exist,{} and \"failed\" otherwise. Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{f(x,{}y)dx = c f(t,{}y) dy}; \\spad{c} and \\spad{t} are rational functions of \\spad{y}.") (((|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|List| |#2|) |#2| (|SparseUnivariatePolynomial| |#2|)) "\\spad{palglimint0(f,{} x,{} y,{} [u1,{}...,{}un],{} d,{} p)} returns functions \\spad{[h,{}[[\\spad{ci},{} \\spad{ui}]]]} such that the \\spad{ui}\\spad{'s} are among \\spad{[u1,{}...,{}un]} and \\spad{d(h + sum(\\spad{ci} log(\\spad{ui})))/dx = f(x,{}y)} if such functions exist,{} and \"failed\" otherwise. Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{d(x)\\^2y(x)\\^2 = P(x)}.")) (|palgextint0| (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) |#2| (|Kernel| |#2|) |#2| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) "\\spad{palgextint0(f,{} x,{} y,{} g,{} z,{} t,{} c)} returns functions \\spad{[h,{} d]} such that \\spad{dh/dx = f(x,{}y) - d g},{} where \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{f(x,{}y)dx = c f(t,{}y) dy},{} and \\spad{c} and \\spad{t} are rational functions of \\spad{y}. Argument \\spad{z} is a dummy variable not appearing in \\spad{f(x,{}y)}. The operation returns \"failed\" if no such functions exist.") (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) |#2| |#2| (|SparseUnivariatePolynomial| |#2|)) "\\spad{palgextint0(f,{} x,{} y,{} g,{} d,{} p)} returns functions \\spad{[h,{} c]} such that \\spad{dh/dx = f(x,{}y) - c g},{} where \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{d(x)\\^2 y(x)\\^2 = P(x)},{} or \"failed\" if no such functions exist.")) (|palgint0| (((|IntegrationResult| |#2|) |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Kernel| |#2|) |#2| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) "\\spad{palgint0(f,{} x,{} y,{} z,{} t,{} c)} returns the integral of \\spad{f(x,{}y)dx} where \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{f(x,{}y)dx = c f(t,{}y) dy}; \\spad{c} and \\spad{t} are rational functions of \\spad{y}. Argument \\spad{z} is a dummy variable not appearing in \\spad{f(x,{}y)}.") (((|IntegrationResult| |#2|) |#2| (|Kernel| |#2|) (|Kernel| |#2|) |#2| (|SparseUnivariatePolynomial| |#2|)) "\\spad{palgint0(f,{} x,{} y,{} d,{} p)} returns the integral of \\spad{f(x,{}y)dx} where \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{d(x)\\^2 y(x)\\^2 = P(x)}.")))
NIL
-((|HasCategory| |#3| (LIST (QUOTE -599) (|devaluate| |#2|))))
-(-520)
+((|HasCategory| |#3| (LIST (QUOTE -601) (|devaluate| |#2|))))
+(-522)
((|constructor| (NIL "This package provides various number theoretic functions on the integers.")) (|sumOfKthPowerDivisors| (((|Integer|) (|Integer|) (|NonNegativeInteger|)) "\\spad{sumOfKthPowerDivisors(n,{}k)} returns the sum of the \\spad{k}th powers of the integers between 1 and \\spad{n} (inclusive) which divide \\spad{n}. the sum of the \\spad{k}th powers of the divisors of \\spad{n} is often denoted by \\spad{sigma_k(n)}.")) (|sumOfDivisors| (((|Integer|) (|Integer|)) "\\spad{sumOfDivisors(n)} returns the sum of the integers between 1 and \\spad{n} (inclusive) which divide \\spad{n}. The sum of the divisors of \\spad{n} is often denoted by \\spad{sigma(n)}.")) (|numberOfDivisors| (((|Integer|) (|Integer|)) "\\spad{numberOfDivisors(n)} returns the number of integers between 1 and \\spad{n} (inclusive) which divide \\spad{n}. The number of divisors of \\spad{n} is often denoted by \\spad{tau(n)}.")) (|moebiusMu| (((|Integer|) (|Integer|)) "\\spad{moebiusMu(n)} returns the Moebius function \\spad{mu(n)}. \\spad{mu(n)} is either \\spad{-1},{}0 or 1 as follows: \\spad{mu(n) = 0} if \\spad{n} is divisible by a square > 1,{} \\spad{mu(n) = (-1)^k} if \\spad{n} is square-free and has \\spad{k} distinct prime divisors.")) (|legendre| (((|Integer|) (|Integer|) (|Integer|)) "\\spad{legendre(a,{}p)} returns the Legendre symbol \\spad{L(a/p)}. \\spad{L(a/p) = (-1)**((p-1)/2) mod p} (\\spad{p} prime),{} which is 0 if \\spad{a} is 0,{} 1 if \\spad{a} is a quadratic residue \\spad{mod p} and \\spad{-1} otherwise. Note: because the primality test is expensive,{} if it is known that \\spad{p} is prime then use \\spad{jacobi(a,{}p)}.")) (|jacobi| (((|Integer|) (|Integer|) (|Integer|)) "\\spad{jacobi(a,{}b)} returns the Jacobi symbol \\spad{J(a/b)}. When \\spad{b} is odd,{} \\spad{J(a/b) = product(L(a/p) for p in factor b )}. Note: by convention,{} 0 is returned if \\spad{gcd(a,{}b) ~= 1}. Iterative \\spad{O(log(b)^2)} version coded by Michael Monagan June 1987.")) (|harmonic| (((|Fraction| (|Integer|)) (|Integer|)) "\\spad{harmonic(n)} returns the \\spad{n}th harmonic number. This is \\spad{H[n] = sum(1/k,{}k=1..n)}.")) (|fibonacci| (((|Integer|) (|Integer|)) "\\spad{fibonacci(n)} returns the \\spad{n}th Fibonacci number. the Fibonacci numbers \\spad{F[n]} are defined by \\spad{F[0] = F[1] = 1} and \\spad{F[n] = F[n-1] + F[n-2]}. The algorithm has running time \\spad{O(log(n)^3)}. Reference: Knuth,{} The Art of Computer Programming Vol 2,{} Semi-Numerical Algorithms.")) (|eulerPhi| (((|Integer|) (|Integer|)) "\\spad{eulerPhi(n)} returns the number of integers between 1 and \\spad{n} (including 1) which are relatively prime to \\spad{n}. This is the Euler phi function \\spad{\\phi(n)} is also called the totient function.")) (|euler| (((|Integer|) (|Integer|)) "\\spad{euler(n)} returns the \\spad{n}th Euler number. This is \\spad{2^n E(n,{}1/2)},{} where \\spad{E(n,{}x)} is the \\spad{n}th Euler polynomial.")) (|divisors| (((|List| (|Integer|)) (|Integer|)) "\\spad{divisors(n)} returns a list of the divisors of \\spad{n}.")) (|chineseRemainder| (((|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{chineseRemainder(x1,{}m1,{}x2,{}m2)} returns \\spad{w},{} where \\spad{w} is such that \\spad{w = x1 mod m1} and \\spad{w = x2 mod m2}. Note: \\spad{m1} and \\spad{m2} must be relatively prime.")) (|bernoulli| (((|Fraction| (|Integer|)) (|Integer|)) "\\spad{bernoulli(n)} returns the \\spad{n}th Bernoulli number. this is \\spad{B(n,{}0)},{} where \\spad{B(n,{}x)} is the \\spad{n}th Bernoulli polynomial.")))
NIL
NIL
-(-521 -3894 UP UPUP R)
+(-523 -3576 UP UPUP R)
((|constructor| (NIL "algebraic Hermite redution.")) (|HermiteIntegrate| (((|Record| (|:| |answer| |#4|) (|:| |logpart| |#4|)) |#4| (|Mapping| |#2| |#2|)) "\\spad{HermiteIntegrate(f,{} ')} returns \\spad{[g,{}h]} such that \\spad{f = g' + h} and \\spad{h} has a only simple finite normal poles.")))
NIL
NIL
-(-522 -3894 UP)
+(-524 -3576 UP)
((|constructor| (NIL "Hermite integration,{} transcendental case.")) (|HermiteIntegrate| (((|Record| (|:| |answer| (|Fraction| |#2|)) (|:| |logpart| (|Fraction| |#2|)) (|:| |specpart| (|Fraction| |#2|)) (|:| |polypart| |#2|)) (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{HermiteIntegrate(f,{} D)} returns \\spad{[g,{} h,{} s,{} p]} such that \\spad{f = Dg + h + s + p},{} \\spad{h} has a squarefree denominator normal \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} and all the squarefree factors of the denominator of \\spad{s} are special \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D}. Furthermore,{} \\spad{h} and \\spad{s} have no polynomial parts. \\spad{D} is the derivation to use on \\spadtype{UP}.")))
NIL
NIL
-(-523)
+(-525)
((|constructor| (NIL "\\spadtype{Integer} provides the domain of arbitrary precision integers.")) (|infinite| ((|attribute|) "nextItem never returns \"failed\".")) (|noetherian| ((|attribute|) "ascending chain condition on ideals.")) (|canonicalsClosed| ((|attribute|) "two positives multiply to give positive.")) (|canonical| ((|attribute|) "mathematical equality is data structure equality.")) (|random| (($ $) "\\spad{random(n)} returns a random integer from 0 to \\spad{n-1}.")))
-((-4230 . T) (-4236 . T) (-4240 . T) (-4235 . T) (-4246 . T) (-4247 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4232 . T) (-4238 . T) (-4242 . T) (-4237 . T) (-4248 . T) (-4249 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-524)
+(-526)
((|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|))) (|:| |extra| (|Result|))) (|NumericalIntegrationProblem|) (|RoutinesTable|)) "\\spad{measure(prob,{}R)} is a top level ANNA function for identifying the most appropriate numerical routine from those in the routines table provided for solving the numerical integration problem defined by \\axiom{\\spad{prob}}. \\blankline It calls each \\axiom{domain} listed in \\axiom{\\spad{R}} of \\axiom{category} \\axiomType{NumericalIntegrationCategory} in turn to calculate all measures and returns the best \\spadignore{i.e.} the name of the most appropriate domain and any other relevant information.") (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|))) (|:| |extra| (|Result|))) (|NumericalIntegrationProblem|)) "\\spad{measure(prob)} is a top level ANNA function for identifying the most appropriate numerical routine for solving the numerical integration problem defined by \\axiom{\\spad{prob}}. \\blankline It calls each \\axiom{domain} of \\axiom{category} \\axiomType{NumericalIntegrationCategory} in turn to calculate all measures and returns the best \\spadignore{i.e.} the name of the most appropriate domain and any other relevant information.")) (|integrate| (((|Union| (|Result|) "failed") (|Expression| (|Float|)) (|SegmentBinding| (|OrderedCompletion| (|Float|))) (|Symbol|)) "\\spad{integrate(exp,{} x = a..b,{} numerical)} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range,{} {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.\\newline \\blankline Default values for the absolute and relative error are used. \\blankline It is an error if the last argument is not {\\spad{\\tt} numerical}.") (((|Union| (|Result|) "failed") (|Expression| (|Float|)) (|SegmentBinding| (|OrderedCompletion| (|Float|))) (|String|)) "\\spad{integrate(exp,{} x = a..b,{} \"numerical\")} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range,{} {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.\\newline \\blankline Default values for the absolute and relative error are used. \\blankline It is an error of the last argument is not {\\spad{\\tt} \"numerical\"}.") (((|Result|) (|Expression| (|Float|)) (|List| (|Segment| (|OrderedCompletion| (|Float|)))) (|Float|) (|Float|) (|RoutinesTable|)) "\\spad{integrate(exp,{} [a..b,{}c..d,{}...],{} epsabs,{} epsrel,{} routines)} is a top level ANNA function to integrate a multivariate expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given set of ranges to the required absolute and relative accuracy,{} using the routines available in the RoutinesTable provided. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.") (((|Result|) (|Expression| (|Float|)) (|List| (|Segment| (|OrderedCompletion| (|Float|)))) (|Float|) (|Float|)) "\\spad{integrate(exp,{} [a..b,{}c..d,{}...],{} epsabs,{} epsrel)} is a top level ANNA function to integrate a multivariate expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given set of ranges to the required absolute and relative accuracy. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.") (((|Result|) (|Expression| (|Float|)) (|List| (|Segment| (|OrderedCompletion| (|Float|)))) (|Float|)) "\\spad{integrate(exp,{} [a..b,{}c..d,{}...],{} epsrel)} is a top level ANNA function to integrate a multivariate expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given set of ranges to the required relative accuracy. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}. \\blankline If epsrel = 0,{} a default absolute accuracy is used.") (((|Result|) (|Expression| (|Float|)) (|List| (|Segment| (|OrderedCompletion| (|Float|))))) "\\spad{integrate(exp,{} [a..b,{}c..d,{}...])} is a top level ANNA function to integrate a multivariate expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given set of ranges. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}. \\blankline Default values for the absolute and relative error are used.") (((|Result|) (|Expression| (|Float|)) (|Segment| (|OrderedCompletion| (|Float|)))) "\\spad{integrate(exp,{} a..b)} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}. \\blankline Default values for the absolute and relative error are used.") (((|Result|) (|Expression| (|Float|)) (|Segment| (|OrderedCompletion| (|Float|))) (|Float|)) "\\spad{integrate(exp,{} a..b,{} epsrel)} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}} to the required relative accuracy. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}. \\blankline If epsrel = 0,{} a default absolute accuracy is used.") (((|Result|) (|Expression| (|Float|)) (|Segment| (|OrderedCompletion| (|Float|))) (|Float|) (|Float|)) "\\spad{integrate(exp,{} a..b,{} epsabs,{} epsrel)} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}} to the required absolute and relative accuracy. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.") (((|Result|) (|NumericalIntegrationProblem|)) "\\spad{integrate(IntegrationProblem)} is a top level ANNA function to integrate an expression over a given range or ranges to the required absolute and relative accuracy. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.") (((|Result|) (|Expression| (|Float|)) (|Segment| (|OrderedCompletion| (|Float|))) (|Float|) (|Float|) (|RoutinesTable|)) "\\spad{integrate(exp,{} a..b,{} epsrel,{} routines)} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}} to the required absolute and relative accuracy using the routines available in the RoutinesTable provided. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.")))
NIL
NIL
-(-525 R -3894 L)
+(-527 R -3576 L)
((|constructor| (NIL "This package provides functions for integration,{} limited integration,{} extended integration and the risch differential equation for pure algebraic integrands.")) (|palgLODE| (((|Record| (|:| |particular| (|Union| |#2| "failed")) (|:| |basis| (|List| |#2|))) |#3| |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Symbol|)) "\\spad{palgLODE(op,{} g,{} kx,{} y,{} x)} returns the solution of \\spad{op f = g}. \\spad{y} is an algebraic function of \\spad{x}.")) (|palgRDE| (((|Union| |#2| "failed") |#2| |#2| |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Mapping| (|Union| |#2| "failed") |#2| |#2| (|Symbol|))) "\\spad{palgRDE(nfp,{} f,{} g,{} x,{} y,{} foo)} returns a function \\spad{z(x,{}y)} such that \\spad{dz/dx + n * df/dx z(x,{}y) = g(x,{}y)} if such a \\spad{z} exists,{} \"failed\" otherwise; \\spad{y} is an algebraic function of \\spad{x}; \\spad{foo(a,{} b,{} x)} is a function that solves \\spad{du/dx + n * da/dx u(x) = u(x)} for an unknown \\spad{u(x)} not involving \\spad{y}. \\spad{nfp} is \\spad{n * df/dx}.")) (|palglimint| (((|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|List| |#2|)) "\\spad{palglimint(f,{} x,{} y,{} [u1,{}...,{}un])} returns functions \\spad{[h,{}[[\\spad{ci},{} \\spad{ui}]]]} such that the \\spad{ui}\\spad{'s} are among \\spad{[u1,{}...,{}un]} and \\spad{d(h + sum(\\spad{ci} log(\\spad{ui})))/dx = f(x,{}y)} if such functions exist,{} \"failed\" otherwise; \\spad{y} is an algebraic function of \\spad{x}.")) (|palgextint| (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) |#2|) "\\spad{palgextint(f,{} x,{} y,{} g)} returns functions \\spad{[h,{} c]} such that \\spad{dh/dx = f(x,{}y) - c g},{} where \\spad{y} is an algebraic function of \\spad{x}; returns \"failed\" if no such functions exist.")) (|palgint| (((|IntegrationResult| |#2|) |#2| (|Kernel| |#2|) (|Kernel| |#2|)) "\\spad{palgint(f,{} x,{} y)} returns the integral of \\spad{f(x,{}y)dx} where \\spad{y} is an algebraic function of \\spad{x}.")))
NIL
-((|HasCategory| |#3| (LIST (QUOTE -599) (|devaluate| |#2|))))
-(-526 R -3894)
+((|HasCategory| |#3| (LIST (QUOTE -601) (|devaluate| |#2|))))
+(-528 R -3576)
((|constructor| (NIL "\\spadtype{PatternMatchIntegration} provides functions that use the pattern matcher to find some indefinite and definite integrals involving special functions and found in the litterature.")) (|pmintegrate| (((|Union| |#2| "failed") |#2| (|Symbol|) (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|)) "\\spad{pmintegrate(f,{} x = a..b)} returns the integral of \\spad{f(x)dx} from a to \\spad{b} if it can be found by the built-in pattern matching rules.") (((|Union| (|Record| (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (|Symbol|)) "\\spad{pmintegrate(f,{} x)} returns either \"failed\" or \\spad{[g,{}h]} such that \\spad{integrate(f,{}x) = g + integrate(h,{}x)}.")) (|pmComplexintegrate| (((|Union| (|Record| (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (|Symbol|)) "\\spad{pmComplexintegrate(f,{} x)} returns either \"failed\" or \\spad{[g,{}h]} such that \\spad{integrate(f,{}x) = g + integrate(h,{}x)}. It only looks for special complex integrals that pmintegrate does not return.")) (|splitConstant| (((|Record| (|:| |const| |#2|) (|:| |nconst| |#2|)) |#2| (|Symbol|)) "\\spad{splitConstant(f,{} x)} returns \\spad{[c,{} g]} such that \\spad{f = c * g} and \\spad{c} does not involve \\spad{t}.")))
NIL
-((-12 (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#2| (QUOTE (-1051)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#2| (QUOTE (-575)))))
-(-527 -3894 UP)
+((-12 (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-1053)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-577)))))
+(-529 -3576 UP)
((|constructor| (NIL "This package provides functions for the base case of the Risch algorithm.")) (|limitedint| (((|Union| (|Record| (|:| |mainpart| (|Fraction| |#2|)) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| (|Fraction| |#2|)) (|:| |logand| (|Fraction| |#2|)))))) "failed") (|Fraction| |#2|) (|List| (|Fraction| |#2|))) "\\spad{limitedint(f,{} [g1,{}...,{}gn])} returns fractions \\spad{[h,{}[[\\spad{ci},{} \\spad{gi}]]]} such that the \\spad{gi}\\spad{'s} are among \\spad{[g1,{}...,{}gn]},{} \\spad{ci' = 0},{} and \\spad{(h+sum(\\spad{ci} log(\\spad{gi})))' = f},{} if possible,{} \"failed\" otherwise.")) (|extendedint| (((|Union| (|Record| (|:| |ratpart| (|Fraction| |#2|)) (|:| |coeff| (|Fraction| |#2|))) "failed") (|Fraction| |#2|) (|Fraction| |#2|)) "\\spad{extendedint(f,{} g)} returns fractions \\spad{[h,{} c]} such that \\spad{c' = 0} and \\spad{h' = f - cg},{} if \\spad{(h,{} c)} exist,{} \"failed\" otherwise.")) (|infieldint| (((|Union| (|Fraction| |#2|) "failed") (|Fraction| |#2|)) "\\spad{infieldint(f)} returns \\spad{g} such that \\spad{g' = f} or \"failed\" if the integral of \\spad{f} is not a rational function.")) (|integrate| (((|IntegrationResult| (|Fraction| |#2|)) (|Fraction| |#2|)) "\\spad{integrate(f)} returns \\spad{g} such that \\spad{g' = f}.")))
NIL
NIL
-(-528 S)
+(-530 S)
((|constructor| (NIL "Provides integer testing and retraction functions. Date Created: March 1990 Date Last Updated: 9 April 1991")) (|integerIfCan| (((|Union| (|Integer|) "failed") |#1|) "\\spad{integerIfCan(x)} returns \\spad{x} as an integer,{} \"failed\" if \\spad{x} is not an integer.")) (|integer?| (((|Boolean|) |#1|) "\\spad{integer?(x)} is \\spad{true} if \\spad{x} is an integer,{} \\spad{false} otherwise.")) (|integer| (((|Integer|) |#1|) "\\spad{integer(x)} returns \\spad{x} as an integer; error if \\spad{x} is not an integer.")))
NIL
NIL
-(-529 -3894)
+(-531 -3576)
((|constructor| (NIL "This package provides functions for the integration of rational functions.")) (|extendedIntegrate| (((|Union| (|Record| (|:| |ratpart| (|Fraction| (|Polynomial| |#1|))) (|:| |coeff| (|Fraction| (|Polynomial| |#1|)))) "failed") (|Fraction| (|Polynomial| |#1|)) (|Symbol|) (|Fraction| (|Polynomial| |#1|))) "\\spad{extendedIntegrate(f,{} x,{} g)} returns fractions \\spad{[h,{} c]} such that \\spad{dc/dx = 0} and \\spad{dh/dx = f - cg},{} if \\spad{(h,{} c)} exist,{} \"failed\" otherwise.")) (|limitedIntegrate| (((|Union| (|Record| (|:| |mainpart| (|Fraction| (|Polynomial| |#1|))) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| (|Fraction| (|Polynomial| |#1|))) (|:| |logand| (|Fraction| (|Polynomial| |#1|))))))) "failed") (|Fraction| (|Polynomial| |#1|)) (|Symbol|) (|List| (|Fraction| (|Polynomial| |#1|)))) "\\spad{limitedIntegrate(f,{} x,{} [g1,{}...,{}gn])} returns fractions \\spad{[h,{} [[\\spad{ci},{}\\spad{gi}]]]} such that the \\spad{gi}\\spad{'s} are among \\spad{[g1,{}...,{}gn]},{} \\spad{dci/dx = 0},{} and \\spad{d(h + sum(\\spad{ci} log(\\spad{gi})))/dx = f} if possible,{} \"failed\" otherwise.")) (|infieldIntegrate| (((|Union| (|Fraction| (|Polynomial| |#1|)) "failed") (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{infieldIntegrate(f,{} x)} returns a fraction \\spad{g} such that \\spad{dg/dx = f} if \\spad{g} exists,{} \"failed\" otherwise.")) (|internalIntegrate| (((|IntegrationResult| (|Fraction| (|Polynomial| |#1|))) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{internalIntegrate(f,{} x)} returns \\spad{g} such that \\spad{dg/dx = f}.")))
NIL
NIL
-(-530 R)
+(-532 R)
((|constructor| (NIL "\\indented{1}{+ Author: Mike Dewar} + Date Created: November 1996 + Date Last Updated: + Basic Functions: + Related Constructors: + Also See: + AMS Classifications: + Keywords: + References: + Description: + This domain is an implementation of interval arithmetic and transcendental + functions over intervals.")))
-((-2523 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-2176 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-531)
+(-533)
((|constructor| (NIL "This package provides the implementation for the \\spadfun{solveLinearPolynomialEquation} operation over the integers. It uses a lifting technique from the package GenExEuclid")) (|solveLinearPolynomialEquation| (((|Union| (|List| (|SparseUnivariatePolynomial| (|Integer|))) "failed") (|List| (|SparseUnivariatePolynomial| (|Integer|))) (|SparseUnivariatePolynomial| (|Integer|))) "\\spad{solveLinearPolynomialEquation([f1,{} ...,{} fn],{} g)} (where the \\spad{fi} are relatively prime to each other) returns a list of \\spad{ai} such that \\spad{g/prod \\spad{fi} = sum ai/fi} or returns \"failed\" if no such list of \\spad{ai}\\spad{'s} exists.")))
NIL
NIL
-(-532 R -3894)
+(-534 R -3576)
((|constructor| (NIL "\\indented{1}{Tools for the integrator} Author: Manuel Bronstein Date Created: 25 April 1990 Date Last Updated: 9 June 1993 Keywords: elementary,{} function,{} integration.")) (|intPatternMatch| (((|IntegrationResult| |#2|) |#2| (|Symbol|) (|Mapping| (|IntegrationResult| |#2|) |#2| (|Symbol|)) (|Mapping| (|Union| (|Record| (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (|Symbol|))) "\\spad{intPatternMatch(f,{} x,{} int,{} pmint)} tries to integrate \\spad{f} first by using the integration function \\spad{int},{} and then by using the pattern match intetgration function \\spad{pmint} on any remaining unintegrable part.")) (|mkPrim| ((|#2| |#2| (|Symbol|)) "\\spad{mkPrim(f,{} x)} makes the logs in \\spad{f} which are linear in \\spad{x} primitive with respect to \\spad{x}.")) (|removeConstantTerm| ((|#2| |#2| (|Symbol|)) "\\spad{removeConstantTerm(f,{} x)} returns \\spad{f} minus any additive constant with respect to \\spad{x}.")) (|vark| (((|List| (|Kernel| |#2|)) (|List| |#2|) (|Symbol|)) "\\spad{vark([f1,{}...,{}fn],{}x)} returns the set-theoretic union of \\spad{(varselect(f1,{}x),{}...,{}varselect(fn,{}x))}.")) (|union| (((|List| (|Kernel| |#2|)) (|List| (|Kernel| |#2|)) (|List| (|Kernel| |#2|))) "\\spad{union(l1,{} l2)} returns set-theoretic union of \\spad{l1} and \\spad{l2}.")) (|ksec| (((|Kernel| |#2|) (|Kernel| |#2|) (|List| (|Kernel| |#2|)) (|Symbol|)) "\\spad{ksec(k,{} [k1,{}...,{}kn],{} x)} returns the second top-level \\spad{ki} after \\spad{k} involving \\spad{x}.")) (|kmax| (((|Kernel| |#2|) (|List| (|Kernel| |#2|))) "\\spad{kmax([k1,{}...,{}kn])} returns the top-level \\spad{ki} for integration.")) (|varselect| (((|List| (|Kernel| |#2|)) (|List| (|Kernel| |#2|)) (|Symbol|)) "\\spad{varselect([k1,{}...,{}kn],{} x)} returns the \\spad{ki} which involve \\spad{x}.")))
NIL
-((-12 (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#2| (QUOTE (-261))) (|HasCategory| |#2| (QUOTE (-575))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-1087))))) (-12 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-261)))) (|HasCategory| |#1| (QUOTE (-515))))
-(-533 -3894 UP)
+((-12 (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-263))) (|HasCategory| |#2| (QUOTE (-577))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-1089))))) (-12 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-263)))) (|HasCategory| |#1| (QUOTE (-517))))
+(-535 -3576 UP)
((|constructor| (NIL "This package provides functions for the transcendental case of the Risch algorithm.")) (|monomialIntPoly| (((|Record| (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (|Mapping| |#2| |#2|)) "\\spad{monomialIntPoly(p,{} ')} returns [\\spad{q},{} \\spad{r}] such that \\spad{p = q' + r} and \\spad{degree(r) < degree(t')}. Error if \\spad{degree(t') < 2}.")) (|monomialIntegrate| (((|Record| (|:| |ir| (|IntegrationResult| (|Fraction| |#2|))) (|:| |specpart| (|Fraction| |#2|)) (|:| |polypart| |#2|)) (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{monomialIntegrate(f,{} ')} returns \\spad{[ir,{} s,{} p]} such that \\spad{f = ir' + s + p} and all the squarefree factors of the denominator of \\spad{s} are special \\spad{w}.\\spad{r}.\\spad{t} the derivation '.")) (|expintfldpoly| (((|Union| (|LaurentPolynomial| |#1| |#2|) "failed") (|LaurentPolynomial| |#1| |#2|) (|Mapping| (|Record| (|:| |ans| |#1|) (|:| |right| |#1|) (|:| |sol?| (|Boolean|))) (|Integer|) |#1|)) "\\spad{expintfldpoly(p,{} foo)} returns \\spad{q} such that \\spad{p' = q} or \"failed\" if no such \\spad{q} exists. Argument foo is a Risch differential equation function on \\spad{F}.")) (|primintfldpoly| (((|Union| |#2| "failed") |#2| (|Mapping| (|Union| (|Record| (|:| |ratpart| |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) "\\spad{primintfldpoly(p,{} ',{} t')} returns \\spad{q} such that \\spad{p' = q} or \"failed\" if no such \\spad{q} exists. Argument \\spad{t'} is the derivative of the primitive generating the extension.")) (|primlimintfrac| (((|Union| (|Record| (|:| |mainpart| (|Fraction| |#2|)) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| (|Fraction| |#2|)) (|:| |logand| (|Fraction| |#2|)))))) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|List| (|Fraction| |#2|))) "\\spad{primlimintfrac(f,{} ',{} [u1,{}...,{}un])} returns \\spad{[v,{} [c1,{}...,{}cn]]} such that \\spad{ci' = 0} and \\spad{f = v' + +/[\\spad{ci} * ui'/ui]}. Error: if \\spad{degree numer f >= degree denom f}.")) (|primextintfrac| (((|Union| (|Record| (|:| |ratpart| (|Fraction| |#2|)) (|:| |coeff| (|Fraction| |#2|))) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Fraction| |#2|)) "\\spad{primextintfrac(f,{} ',{} g)} returns \\spad{[v,{} c]} such that \\spad{f = v' + c g} and \\spad{c' = 0}. Error: if \\spad{degree numer f >= degree denom f} or if \\spad{degree numer g >= degree denom g} or if \\spad{denom g} is not squarefree.")) (|explimitedint| (((|Union| (|Record| (|:| |answer| (|Record| (|:| |mainpart| (|Fraction| |#2|)) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| (|Fraction| |#2|)) (|:| |logand| (|Fraction| |#2|))))))) (|:| |a0| |#1|)) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Record| (|:| |ans| |#1|) (|:| |right| |#1|) (|:| |sol?| (|Boolean|))) (|Integer|) |#1|) (|List| (|Fraction| |#2|))) "\\spad{explimitedint(f,{} ',{} foo,{} [u1,{}...,{}un])} returns \\spad{[v,{} [c1,{}...,{}cn],{} a]} such that \\spad{ci' = 0},{} \\spad{f = v' + a + reduce(+,{}[\\spad{ci} * ui'/ui])},{} and \\spad{a = 0} or \\spad{a} has no integral in \\spad{F}. Returns \"failed\" if no such \\spad{v},{} \\spad{ci},{} a exist. Argument \\spad{foo} is a Risch differential equation function on \\spad{F}.")) (|primlimitedint| (((|Union| (|Record| (|:| |answer| (|Record| (|:| |mainpart| (|Fraction| |#2|)) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| (|Fraction| |#2|)) (|:| |logand| (|Fraction| |#2|))))))) (|:| |a0| |#1|)) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Union| (|Record| (|:| |ratpart| |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (|List| (|Fraction| |#2|))) "\\spad{primlimitedint(f,{} ',{} foo,{} [u1,{}...,{}un])} returns \\spad{[v,{} [c1,{}...,{}cn],{} a]} such that \\spad{ci' = 0},{} \\spad{f = v' + a + reduce(+,{}[\\spad{ci} * ui'/ui])},{} and \\spad{a = 0} or \\spad{a} has no integral in UP. Returns \"failed\" if no such \\spad{v},{} \\spad{ci},{} a exist. Argument \\spad{foo} is an extended integration function on \\spad{F}.")) (|expextendedint| (((|Union| (|Record| (|:| |answer| (|Fraction| |#2|)) (|:| |a0| |#1|)) (|Record| (|:| |ratpart| (|Fraction| |#2|)) (|:| |coeff| (|Fraction| |#2|))) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Record| (|:| |ans| |#1|) (|:| |right| |#1|) (|:| |sol?| (|Boolean|))) (|Integer|) |#1|) (|Fraction| |#2|)) "\\spad{expextendedint(f,{} ',{} foo,{} g)} returns either \\spad{[v,{} c]} such that \\spad{f = v' + c g} and \\spad{c' = 0},{} or \\spad{[v,{} a]} such that \\spad{f = g' + a},{} and \\spad{a = 0} or \\spad{a} has no integral in \\spad{F}. Returns \"failed\" if neither case can hold. Argument \\spad{foo} is a Risch differential equation function on \\spad{F}.")) (|primextendedint| (((|Union| (|Record| (|:| |answer| (|Fraction| |#2|)) (|:| |a0| |#1|)) (|Record| (|:| |ratpart| (|Fraction| |#2|)) (|:| |coeff| (|Fraction| |#2|))) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Union| (|Record| (|:| |ratpart| |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (|Fraction| |#2|)) "\\spad{primextendedint(f,{} ',{} foo,{} g)} returns either \\spad{[v,{} c]} such that \\spad{f = v' + c g} and \\spad{c' = 0},{} or \\spad{[v,{} a]} such that \\spad{f = g' + a},{} and \\spad{a = 0} or \\spad{a} has no integral in UP. Returns \"failed\" if neither case can hold. Argument \\spad{foo} is an extended integration function on \\spad{F}.")) (|tanintegrate| (((|Record| (|:| |answer| (|IntegrationResult| (|Fraction| |#2|))) (|:| |a0| |#1|)) (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Union| (|List| |#1|) "failed") (|Integer|) |#1| |#1|)) "\\spad{tanintegrate(f,{} ',{} foo)} returns \\spad{[g,{} a]} such that \\spad{f = g' + a},{} and \\spad{a = 0} or \\spad{a} has no integral in \\spad{F}; Argument foo is a Risch differential system solver on \\spad{F}.")) (|expintegrate| (((|Record| (|:| |answer| (|IntegrationResult| (|Fraction| |#2|))) (|:| |a0| |#1|)) (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Record| (|:| |ans| |#1|) (|:| |right| |#1|) (|:| |sol?| (|Boolean|))) (|Integer|) |#1|)) "\\spad{expintegrate(f,{} ',{} foo)} returns \\spad{[g,{} a]} such that \\spad{f = g' + a},{} and \\spad{a = 0} or \\spad{a} has no integral in \\spad{F}; Argument foo is a Risch differential equation solver on \\spad{F}.")) (|primintegrate| (((|Record| (|:| |answer| (|IntegrationResult| (|Fraction| |#2|))) (|:| |a0| |#1|)) (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Union| (|Record| (|:| |ratpart| |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) "\\spad{primintegrate(f,{} ',{} foo)} returns \\spad{[g,{} a]} such that \\spad{f = g' + a},{} and \\spad{a = 0} or \\spad{a} has no integral in UP. Argument foo is an extended integration function on \\spad{F}.")))
NIL
NIL
-(-534 R -3894)
+(-536 R -3576)
((|constructor| (NIL "This package computes the inverse Laplace Transform.")) (|inverseLaplace| (((|Union| |#2| "failed") |#2| (|Symbol|) (|Symbol|)) "\\spad{inverseLaplace(f,{} s,{} t)} returns the Inverse Laplace transform of \\spad{f(s)} using \\spad{t} as the new variable or \"failed\" if unable to find a closed form.")))
NIL
NIL
-(-535 |p| |unBalanced?|)
+(-537 |p| |unBalanced?|)
((|constructor| (NIL "This domain implements \\spad{Zp},{} the \\spad{p}-adic completion of the integers. This is an internal domain.")))
-((-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-536 |p|)
+(-538 |p|)
((|constructor| (NIL "InnerPrimeField(\\spad{p}) implements the field with \\spad{p} elements. Note: argument \\spad{p} MUST be a prime (this domain does not check). See \\spadtype{PrimeField} for a domain that does check.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| $ (QUOTE (-136))) (|HasCategory| $ (QUOTE (-134))) (|HasCategory| $ (QUOTE (-344))))
-(-537)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| $ (QUOTE (-138))) (|HasCategory| $ (QUOTE (-136))) (|HasCategory| $ (QUOTE (-346))))
+(-539)
((|constructor| (NIL "A package to print strings without line-feed nor carriage-return.")) (|iprint| (((|Void|) (|String|)) "\\axiom{iprint(\\spad{s})} prints \\axiom{\\spad{s}} at the current position of the cursor.")))
NIL
NIL
-(-538 R -3894)
+(-540 R -3576)
((|constructor| (NIL "This package allows a sum of logs over the roots of a polynomial to be expressed as explicit logarithms and arc tangents,{} provided that the indexing polynomial can be factored into quadratics.")) (|complexExpand| ((|#2| (|IntegrationResult| |#2|)) "\\spad{complexExpand(i)} returns the expanded complex function corresponding to \\spad{i}.")) (|expand| (((|List| |#2|) (|IntegrationResult| |#2|)) "\\spad{expand(i)} returns the list of possible real functions corresponding to \\spad{i}.")) (|split| (((|IntegrationResult| |#2|) (|IntegrationResult| |#2|)) "\\spad{split(u(x) + sum_{P(a)=0} Q(a,{}x))} returns \\spad{u(x) + sum_{P1(a)=0} Q(a,{}x) + ... + sum_{Pn(a)=0} Q(a,{}x)} where \\spad{P1},{}...,{}\\spad{Pn} are the factors of \\spad{P}.")))
NIL
NIL
-(-539 E -3894)
+(-541 E -3576)
((|constructor| (NIL "\\indented{1}{Internally used by the integration packages} Author: Manuel Bronstein Date Created: 1987 Date Last Updated: 12 August 1992 Keywords: integration.")) (|map| (((|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (|Mapping| |#2| |#1|) (|Union| (|Record| (|:| |mainpart| |#1|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) "\\spad{map(f,{}ufe)} \\undocumented") (((|Union| |#2| "failed") (|Mapping| |#2| |#1|) (|Union| |#1| "failed")) "\\spad{map(f,{}ue)} \\undocumented") (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") (|Mapping| |#2| |#1|) (|Union| (|Record| (|:| |ratpart| |#1|) (|:| |coeff| |#1|)) "failed")) "\\spad{map(f,{}ure)} \\undocumented") (((|IntegrationResult| |#2|) (|Mapping| |#2| |#1|) (|IntegrationResult| |#1|)) "\\spad{map(f,{}ire)} \\undocumented")))
NIL
NIL
-(-540 -3894)
+(-542 -3576)
((|constructor| (NIL "If a function \\spad{f} has an elementary integral \\spad{g},{} then \\spad{g} can be written in the form \\spad{g = h + c1 log(u1) + c2 log(u2) + ... + cn log(un)} where \\spad{h},{} which is in the same field than \\spad{f},{} is called the rational part of the integral,{} and \\spad{c1 log(u1) + ... cn log(un)} is called the logarithmic part of the integral. This domain manipulates integrals represented in that form,{} by keeping both parts separately. The logs are not explicitly computed.")) (|differentiate| ((|#1| $ (|Symbol|)) "\\spad{differentiate(ir,{}x)} differentiates \\spad{ir} with respect to \\spad{x}") ((|#1| $ (|Mapping| |#1| |#1|)) "\\spad{differentiate(ir,{}D)} differentiates \\spad{ir} with respect to the derivation \\spad{D}.")) (|integral| (($ |#1| (|Symbol|)) "\\spad{integral(f,{}x)} returns the formal integral of \\spad{f} with respect to \\spad{x}") (($ |#1| |#1|) "\\spad{integral(f,{}x)} returns the formal integral of \\spad{f} with respect to \\spad{x}")) (|elem?| (((|Boolean|) $) "\\spad{elem?(ir)} tests if an integration result is elementary over \\spad{F?}")) (|notelem| (((|List| (|Record| (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) "\\spad{notelem(ir)} returns the non-elementary part of an integration result")) (|logpart| (((|List| (|Record| (|:| |scalar| (|Fraction| (|Integer|))) (|:| |coeff| (|SparseUnivariatePolynomial| |#1|)) (|:| |logand| (|SparseUnivariatePolynomial| |#1|)))) $) "\\spad{logpart(ir)} returns the logarithmic part of an integration result")) (|ratpart| ((|#1| $) "\\spad{ratpart(ir)} returns the rational part of an integration result")) (|mkAnswer| (($ |#1| (|List| (|Record| (|:| |scalar| (|Fraction| (|Integer|))) (|:| |coeff| (|SparseUnivariatePolynomial| |#1|)) (|:| |logand| (|SparseUnivariatePolynomial| |#1|)))) (|List| (|Record| (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) "\\spad{mkAnswer(r,{}l,{}ne)} creates an integration result from a rational part \\spad{r},{} a logarithmic part \\spad{l},{} and a non-elementary part \\spad{ne}.")))
-((-4243 . T) (-4242 . T))
-((|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-1087)))))
-(-541 I)
+((-4245 . T) (-4244 . T))
+((|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-1089)))))
+(-543 I)
((|constructor| (NIL "The \\spadtype{IntegerRoots} package computes square roots and \\indented{2}{\\spad{n}th roots of integers efficiently.}")) (|approxSqrt| ((|#1| |#1|) "\\spad{approxSqrt(n)} returns an approximation \\spad{x} to \\spad{sqrt(n)} such that \\spad{-1 < x - sqrt(n) < 1}. Compute an approximation \\spad{s} to \\spad{sqrt(n)} such that \\indented{10}{\\spad{-1 < s - sqrt(n) < 1}} A variable precision Newton iteration is used. The running time is \\spad{O( log(n)**2 )}.")) (|perfectSqrt| (((|Union| |#1| "failed") |#1|) "\\spad{perfectSqrt(n)} returns the square root of \\spad{n} if \\spad{n} is a perfect square and returns \"failed\" otherwise")) (|perfectSquare?| (((|Boolean|) |#1|) "\\spad{perfectSquare?(n)} returns \\spad{true} if \\spad{n} is a perfect square and \\spad{false} otherwise")) (|approxNthRoot| ((|#1| |#1| (|NonNegativeInteger|)) "\\spad{approxRoot(n,{}r)} returns an approximation \\spad{x} to \\spad{n**(1/r)} such that \\spad{-1 < x - n**(1/r) < 1}")) (|perfectNthRoot| (((|Record| (|:| |base| |#1|) (|:| |exponent| (|NonNegativeInteger|))) |#1|) "\\spad{perfectNthRoot(n)} returns \\spad{[x,{}r]},{} where \\spad{n = x\\^r} and \\spad{r} is the largest integer such that \\spad{n} is a perfect \\spad{r}th power") (((|Union| |#1| "failed") |#1| (|NonNegativeInteger|)) "\\spad{perfectNthRoot(n,{}r)} returns the \\spad{r}th root of \\spad{n} if \\spad{n} is an \\spad{r}th power and returns \"failed\" otherwise")) (|perfectNthPower?| (((|Boolean|) |#1| (|NonNegativeInteger|)) "\\spad{perfectNthPower?(n,{}r)} returns \\spad{true} if \\spad{n} is an \\spad{r}th power and \\spad{false} otherwise")))
NIL
NIL
-(-542 GF)
+(-544 GF)
((|constructor| (NIL "This package exports the function generateIrredPoly that computes a monic irreducible polynomial of degree \\spad{n} over a finite field.")) (|generateIrredPoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{generateIrredPoly(n)} generates an irreducible univariate polynomial of the given degree \\spad{n} over the finite field.")))
NIL
NIL
-(-543 R)
+(-545 R)
((|constructor| (NIL "\\indented{2}{This package allows a sum of logs over the roots of a polynomial} \\indented{2}{to be expressed as explicit logarithms and arc tangents,{} provided} \\indented{2}{that the indexing polynomial can be factored into quadratics.} Date Created: 21 August 1988 Date Last Updated: 4 October 1993")) (|complexIntegrate| (((|Expression| |#1|) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{complexIntegrate(f,{} x)} returns the integral of \\spad{f(x)dx} where \\spad{x} is viewed as a complex variable.")) (|integrate| (((|Union| (|Expression| |#1|) (|List| (|Expression| |#1|))) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{integrate(f,{} x)} returns the integral of \\spad{f(x)dx} where \\spad{x} is viewed as a real variable..")) (|complexExpand| (((|Expression| |#1|) (|IntegrationResult| (|Fraction| (|Polynomial| |#1|)))) "\\spad{complexExpand(i)} returns the expanded complex function corresponding to \\spad{i}.")) (|expand| (((|List| (|Expression| |#1|)) (|IntegrationResult| (|Fraction| (|Polynomial| |#1|)))) "\\spad{expand(i)} returns the list of possible real functions corresponding to \\spad{i}.")) (|split| (((|IntegrationResult| (|Fraction| (|Polynomial| |#1|))) (|IntegrationResult| (|Fraction| (|Polynomial| |#1|)))) "\\spad{split(u(x) + sum_{P(a)=0} Q(a,{}x))} returns \\spad{u(x) + sum_{P1(a)=0} Q(a,{}x) + ... + sum_{Pn(a)=0} Q(a,{}x)} where \\spad{P1},{}...,{}\\spad{Pn} are the factors of \\spad{P}.")))
NIL
-((|HasCategory| |#1| (QUOTE (-136))))
-(-544)
+((|HasCategory| |#1| (QUOTE (-138))))
+(-546)
((|constructor| (NIL "IrrRepSymNatPackage contains functions for computing the ordinary irreducible representations of symmetric groups on \\spad{n} letters {\\em {1,{}2,{}...,{}n}} in Young\\spad{'s} natural form and their dimensions. These representations can be labelled by number partitions of \\spad{n},{} \\spadignore{i.e.} a weakly decreasing sequence of integers summing up to \\spad{n},{} \\spadignore{e.g.} {\\em [3,{}3,{}3,{}1]} labels an irreducible representation for \\spad{n} equals 10. Note: whenever a \\spadtype{List Integer} appears in a signature,{} a partition required.")) (|irreducibleRepresentation| (((|List| (|Matrix| (|Integer|))) (|List| (|Integer|)) (|List| (|Permutation| (|Integer|)))) "\\spad{irreducibleRepresentation(lambda,{}listOfPerm)} is the list of the irreducible representations corresponding to {\\em lambda} in Young\\spad{'s} natural form for the list of permutations given by {\\em listOfPerm}.") (((|List| (|Matrix| (|Integer|))) (|List| (|Integer|))) "\\spad{irreducibleRepresentation(lambda)} is the list of the two irreducible representations corresponding to the partition {\\em lambda} in Young\\spad{'s} natural form for the following two generators of the symmetric group,{} whose elements permute {\\em {1,{}2,{}...,{}n}},{} namely {\\em (1 2)} (2-cycle) and {\\em (1 2 ... n)} (\\spad{n}-cycle).") (((|Matrix| (|Integer|)) (|List| (|Integer|)) (|Permutation| (|Integer|))) "\\spad{irreducibleRepresentation(lambda,{}\\spad{pi})} is the irreducible representation corresponding to partition {\\em lambda} in Young\\spad{'s} natural form of the permutation {\\em \\spad{pi}} in the symmetric group,{} whose elements permute {\\em {1,{}2,{}...,{}n}}.")) (|dimensionOfIrreducibleRepresentation| (((|NonNegativeInteger|) (|List| (|Integer|))) "\\spad{dimensionOfIrreducibleRepresentation(lambda)} is the dimension of the ordinary irreducible representation of the symmetric group corresponding to {\\em lambda}. Note: the Robinson-Thrall hook formula is implemented.")))
NIL
NIL
-(-545 R E V P TS)
+(-547 R E V P TS)
((|constructor| (NIL "\\indented{1}{An internal package for computing the rational univariate representation} \\indented{1}{of a zero-dimensional algebraic variety given by a square-free} \\indented{1}{triangular set.} \\indented{1}{The main operation is \\axiomOpFrom{rur}{InternalRationalUnivariateRepresentationPackage}.} \\indented{1}{It is based on the {\\em generic} algorithm description in [1]. \\newline References:} [1] \\spad{D}. LAZARD \"Solving Zero-dimensional Algebraic Systems\" \\indented{4}{Journal of Symbolic Computation,{} 1992,{} 13,{} 117-131}")) (|checkRur| (((|Boolean|) |#5| (|List| |#5|)) "\\spad{checkRur(ts,{}lus)} returns \\spad{true} if \\spad{lus} is a rational univariate representation of \\spad{ts}.")) (|rur| (((|List| |#5|) |#5| (|Boolean|)) "\\spad{rur(ts,{}univ?)} returns a rational univariate representation of \\spad{ts}. This assumes that the lowest polynomial in \\spad{ts} is a variable \\spad{v} which does not occur in the other polynomials of \\spad{ts}. This variable will be used to define the simple algebraic extension over which these other polynomials will be rewritten as univariate polynomials with degree one. If \\spad{univ?} is \\spad{true} then these polynomials will have a constant initial.")))
NIL
NIL
-(-546 |mn|)
+(-548 |mn|)
((|constructor| (NIL "This domain implements low-level strings")) (|hash| (((|Integer|) $) "\\spad{hash(x)} provides a hashing function for strings")))
-((-4249 . T) (-4248 . T))
-((-3255 (-12 (|HasCategory| (-133) (QUOTE (-786))) (|HasCategory| (-133) (LIST (QUOTE -286) (QUOTE (-133))))) (-12 (|HasCategory| (-133) (QUOTE (-1016))) (|HasCategory| (-133) (LIST (QUOTE -286) (QUOTE (-133)))))) (-3255 (|HasCategory| (-133) (LIST (QUOTE -563) (QUOTE (-794)))) (-12 (|HasCategory| (-133) (QUOTE (-1016))) (|HasCategory| (-133) (LIST (QUOTE -286) (QUOTE (-133)))))) (|HasCategory| (-133) (LIST (QUOTE -564) (QUOTE (-499)))) (-3255 (|HasCategory| (-133) (QUOTE (-786))) (|HasCategory| (-133) (QUOTE (-1016)))) (|HasCategory| (-133) (QUOTE (-786))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| (-133) (QUOTE (-1016))) (-12 (|HasCategory| (-133) (QUOTE (-1016))) (|HasCategory| (-133) (LIST (QUOTE -286) (QUOTE (-133))))) (|HasCategory| (-133) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-547 E V R P)
+((-4251 . T) (-4250 . T))
+((-3321 (-12 (|HasCategory| (-135) (QUOTE (-788))) (|HasCategory| (-135) (LIST (QUOTE -288) (QUOTE (-135))))) (-12 (|HasCategory| (-135) (QUOTE (-1018))) (|HasCategory| (-135) (LIST (QUOTE -288) (QUOTE (-135)))))) (-3321 (|HasCategory| (-135) (LIST (QUOTE -565) (QUOTE (-796)))) (-12 (|HasCategory| (-135) (QUOTE (-1018))) (|HasCategory| (-135) (LIST (QUOTE -288) (QUOTE (-135)))))) (|HasCategory| (-135) (LIST (QUOTE -566) (QUOTE (-501)))) (-3321 (|HasCategory| (-135) (QUOTE (-788))) (|HasCategory| (-135) (QUOTE (-1018)))) (|HasCategory| (-135) (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| (-135) (QUOTE (-1018))) (-12 (|HasCategory| (-135) (QUOTE (-1018))) (|HasCategory| (-135) (LIST (QUOTE -288) (QUOTE (-135))))) (|HasCategory| (-135) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-549 E V R P)
((|constructor| (NIL "tools for the summation packages.")) (|sum| (((|Record| (|:| |num| |#4|) (|:| |den| (|Integer|))) |#4| |#2|) "\\spad{sum(p(n),{} n)} returns \\spad{P(n)},{} the indefinite sum of \\spad{p(n)} with respect to upward difference on \\spad{n},{} \\spadignore{i.e.} \\spad{P(n+1) - P(n) = a(n)}.") (((|Record| (|:| |num| |#4|) (|:| |den| (|Integer|))) |#4| |#2| (|Segment| |#4|)) "\\spad{sum(p(n),{} n = a..b)} returns \\spad{p(a) + p(a+1) + ... + p(b)}.")))
NIL
NIL
-(-548 |Coef|)
+(-550 |Coef|)
((|constructor| (NIL "InnerSparseUnivariatePowerSeries is an internal domain \\indented{2}{used for creating sparse Taylor and Laurent series.}")) (|cAcsch| (($ $) "\\spad{cAcsch(f)} computes the inverse hyperbolic cosecant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAsech| (($ $) "\\spad{cAsech(f)} computes the inverse hyperbolic secant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAcoth| (($ $) "\\spad{cAcoth(f)} computes the inverse hyperbolic cotangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAtanh| (($ $) "\\spad{cAtanh(f)} computes the inverse hyperbolic tangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAcosh| (($ $) "\\spad{cAcosh(f)} computes the inverse hyperbolic cosine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAsinh| (($ $) "\\spad{cAsinh(f)} computes the inverse hyperbolic sine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCsch| (($ $) "\\spad{cCsch(f)} computes the hyperbolic cosecant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cSech| (($ $) "\\spad{cSech(f)} computes the hyperbolic secant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCoth| (($ $) "\\spad{cCoth(f)} computes the hyperbolic cotangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cTanh| (($ $) "\\spad{cTanh(f)} computes the hyperbolic tangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCosh| (($ $) "\\spad{cCosh(f)} computes the hyperbolic cosine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cSinh| (($ $) "\\spad{cSinh(f)} computes the hyperbolic sine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAcsc| (($ $) "\\spad{cAcsc(f)} computes the arccosecant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAsec| (($ $) "\\spad{cAsec(f)} computes the arcsecant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAcot| (($ $) "\\spad{cAcot(f)} computes the arccotangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAtan| (($ $) "\\spad{cAtan(f)} computes the arctangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAcos| (($ $) "\\spad{cAcos(f)} computes the arccosine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAsin| (($ $) "\\spad{cAsin(f)} computes the arcsine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCsc| (($ $) "\\spad{cCsc(f)} computes the cosecant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cSec| (($ $) "\\spad{cSec(f)} computes the secant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCot| (($ $) "\\spad{cCot(f)} computes the cotangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cTan| (($ $) "\\spad{cTan(f)} computes the tangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCos| (($ $) "\\spad{cCos(f)} computes the cosine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cSin| (($ $) "\\spad{cSin(f)} computes the sine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cLog| (($ $) "\\spad{cLog(f)} computes the logarithm of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cExp| (($ $) "\\spad{cExp(f)} computes the exponential of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cRationalPower| (($ $ (|Fraction| (|Integer|))) "\\spad{cRationalPower(f,{}r)} computes \\spad{f^r}. For use when the coefficient ring is commutative.")) (|cPower| (($ $ |#1|) "\\spad{cPower(f,{}r)} computes \\spad{f^r},{} where \\spad{f} has constant coefficient 1. For use when the coefficient ring is commutative.")) (|integrate| (($ $) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. Warning: function does not check for a term of degree \\spad{-1}.")) (|seriesToOutputForm| (((|OutputForm|) (|Stream| (|Record| (|:| |k| (|Integer|)) (|:| |c| |#1|))) (|Reference| (|OrderedCompletion| (|Integer|))) (|Symbol|) |#1| (|Fraction| (|Integer|))) "\\spad{seriesToOutputForm(st,{}refer,{}var,{}cen,{}r)} prints the series \\spad{f((var - cen)^r)}.")) (|iCompose| (($ $ $) "\\spad{iCompose(f,{}g)} returns \\spad{f(g(x))}. This is an internal function which should only be called for Taylor series \\spad{f(x)} and \\spad{g(x)} such that the constant coefficient of \\spad{g(x)} is zero.")) (|taylorQuoByVar| (($ $) "\\spad{taylorQuoByVar(a0 + a1 x + a2 x**2 + ...)} returns \\spad{a1 + a2 x + a3 x**2 + ...}")) (|iExquo| (((|Union| $ "failed") $ $ (|Boolean|)) "\\spad{iExquo(f,{}g,{}taylor?)} is the quotient of the power series \\spad{f} and \\spad{g}. If \\spad{taylor?} is \\spad{true},{} then we must have \\spad{order(f) >= order(g)}.")) (|multiplyCoefficients| (($ (|Mapping| |#1| (|Integer|)) $) "\\spad{multiplyCoefficients(fn,{}f)} returns the series \\spad{sum(fn(n) * an * x^n,{}n = n0..)},{} where \\spad{f} is the series \\spad{sum(an * x^n,{}n = n0..)}.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(f)} tests if \\spad{f} is a single monomial.")) (|series| (($ (|Stream| (|Record| (|:| |k| (|Integer|)) (|:| |c| |#1|)))) "\\spad{series(st)} creates a series from a stream of non-zero terms,{} where a term is an exponent-coefficient pair. The terms in the stream should be ordered by increasing order of exponents.")) (|getStream| (((|Stream| (|Record| (|:| |k| (|Integer|)) (|:| |c| |#1|))) $) "\\spad{getStream(f)} returns the stream of terms representing the series \\spad{f}.")) (|getRef| (((|Reference| (|OrderedCompletion| (|Integer|))) $) "\\spad{getRef(f)} returns a reference containing the order to which the terms of \\spad{f} have been computed.")) (|makeSeries| (($ (|Reference| (|OrderedCompletion| (|Integer|))) (|Stream| (|Record| (|:| |k| (|Integer|)) (|:| |c| |#1|)))) "\\spad{makeSeries(refer,{}str)} creates a power series from the reference \\spad{refer} and the stream \\spad{str}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-515))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (-12 (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-523)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-523)) (|devaluate| |#1|)))) (|HasCategory| (-523) (QUOTE (-1028))) (|HasCategory| |#1| (QUOTE (-339))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-523))))) (|HasSignature| |#1| (LIST (QUOTE -3976) (LIST (|devaluate| |#1|) (QUOTE (-1087)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-523))))))
-(-549 |Coef|)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-517))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (-12 (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-525)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-525)) (|devaluate| |#1|)))) (|HasCategory| (-525) (QUOTE (-1030))) (|HasCategory| |#1| (QUOTE (-341))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-525))))) (|HasSignature| |#1| (LIST (QUOTE -3022) (LIST (|devaluate| |#1|) (QUOTE (-1089)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-525))))))
+(-551 |Coef|)
((|constructor| (NIL "Internal package for dense Taylor series. This is an internal Taylor series type in which Taylor series are represented by a \\spadtype{Stream} of \\spadtype{Ring} elements. For univariate series,{} the \\spad{Stream} elements are the Taylor coefficients. For multivariate series,{} the \\spad{n}th Stream element is a form of degree \\spad{n} in the power series variables.")) (* (($ $ (|Integer|)) "\\spad{x*i} returns the product of integer \\spad{i} and the series \\spad{x}.") (($ $ |#1|) "\\spad{x*c} returns the product of \\spad{c} and the series \\spad{x}.") (($ |#1| $) "\\spad{c*x} returns the product of \\spad{c} and the series \\spad{x}.")) (|order| (((|NonNegativeInteger|) $ (|NonNegativeInteger|)) "\\spad{order(x,{}n)} returns the minimum of \\spad{n} and the order of \\spad{x}.") (((|NonNegativeInteger|) $) "\\spad{order(x)} returns the order of a power series \\spad{x},{} \\indented{1}{\\spadignore{i.e.} the degree of the first non-zero term of the series.}")) (|pole?| (((|Boolean|) $) "\\spad{pole?(x)} tests if the series \\spad{x} has a pole. \\indented{1}{Note: this is \\spad{false} when \\spad{x} is a Taylor series.}")) (|series| (($ (|Stream| |#1|)) "\\spad{series(s)} creates a power series from a stream of \\indented{1}{ring elements.} \\indented{1}{For univariate series types,{} the stream \\spad{s} should be a stream} \\indented{1}{of Taylor coefficients. For multivariate series types,{} the} \\indented{1}{stream \\spad{s} should be a stream of forms the \\spad{n}th element} \\indented{1}{of which is a} \\indented{1}{form of degree \\spad{n} in the power series variables.}")) (|coefficients| (((|Stream| |#1|) $) "\\spad{coefficients(x)} returns a stream of ring elements. \\indented{1}{When \\spad{x} is a univariate series,{} this is a stream of Taylor} \\indented{1}{coefficients. When \\spad{x} is a multivariate series,{} the} \\indented{1}{\\spad{n}th element of the stream is a form of} \\indented{1}{degree \\spad{n} in the power series variables.}")))
-((-4243 |has| |#1| (-515)) (-4242 |has| |#1| (-515)) ((-4250 "*") |has| |#1| (-515)) (-4241 |has| |#1| (-515)) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-515))))
-(-550 A B)
+((-4245 |has| |#1| (-517)) (-4244 |has| |#1| (-517)) ((-4252 "*") |has| |#1| (-517)) (-4243 |has| |#1| (-517)) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-517))))
+(-552 A B)
((|constructor| (NIL "Functions defined on streams with entries in two sets.")) (|map| (((|InfiniteTuple| |#2|) (|Mapping| |#2| |#1|) (|InfiniteTuple| |#1|)) "\\spad{map(f,{}[x0,{}x1,{}x2,{}...])} returns \\spad{[f(x0),{}f(x1),{}f(x2),{}..]}.")))
NIL
NIL
-(-551 A B C)
+(-553 A B C)
((|constructor| (NIL "Functions defined on streams with entries in two sets.")) (|map| (((|Stream| |#3|) (|Mapping| |#3| |#1| |#2|) (|InfiniteTuple| |#1|) (|Stream| |#2|)) "\\spad{map(f,{}a,{}b)} \\undocumented") (((|Stream| |#3|) (|Mapping| |#3| |#1| |#2|) (|Stream| |#1|) (|InfiniteTuple| |#2|)) "\\spad{map(f,{}a,{}b)} \\undocumented") (((|InfiniteTuple| |#3|) (|Mapping| |#3| |#1| |#2|) (|InfiniteTuple| |#1|) (|InfiniteTuple| |#2|)) "\\spad{map(f,{}a,{}b)} \\undocumented")))
NIL
NIL
-(-552 R -3894 FG)
+(-554 R -3576 FG)
((|constructor| (NIL "This package provides transformations from trigonometric functions to exponentials and logarithms,{} and back. \\spad{F} and \\spad{FG} should be the same type of function space.")) (|trigs2explogs| ((|#3| |#3| (|List| (|Kernel| |#3|)) (|List| (|Symbol|))) "\\spad{trigs2explogs(f,{} [k1,{}...,{}kn],{} [x1,{}...,{}xm])} rewrites all the trigonometric functions appearing in \\spad{f} and involving one of the \\spad{\\spad{xi}'s} in terms of complex logarithms and exponentials. A kernel of the form \\spad{tan(u)} is expressed using \\spad{exp(u)**2} if it is one of the \\spad{\\spad{ki}'s},{} in terms of \\spad{exp(2*u)} otherwise.")) (|explogs2trigs| (((|Complex| |#2|) |#3|) "\\spad{explogs2trigs(f)} rewrites all the complex logs and exponentials appearing in \\spad{f} in terms of trigonometric functions.")) (F2FG ((|#3| |#2|) "\\spad{F2FG(a + sqrt(-1) b)} returns \\spad{a + i b}.")) (FG2F ((|#2| |#3|) "\\spad{FG2F(a + i b)} returns \\spad{a + sqrt(-1) b}.")) (GF2FG ((|#3| (|Complex| |#2|)) "\\spad{GF2FG(a + i b)} returns \\spad{a + i b} viewed as a function with the \\spad{i} pushed down into the coefficient domain.")))
NIL
NIL
-(-553 S)
+(-555 S)
((|constructor| (NIL "\\indented{1}{This package implements 'infinite tuples' for the interpreter.} The representation is a stream.")) (|construct| (((|Stream| |#1|) $) "\\spad{construct(t)} converts an infinite tuple to a stream.")) (|generate| (($ (|Mapping| |#1| |#1|) |#1|) "\\spad{generate(f,{}s)} returns \\spad{[s,{}f(s),{}f(f(s)),{}...]}.")) (|select| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{select(p,{}t)} returns \\spad{[x for x in t | p(x)]}.")) (|filterUntil| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{filterUntil(p,{}t)} returns \\spad{[x for x in t while not p(x)]}.")) (|filterWhile| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{filterWhile(p,{}t)} returns \\spad{[x for x in t while p(x)]}.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,{}t)} replaces the tuple \\spad{t} by \\spad{[f(x) for x in t]}.")))
NIL
NIL
-(-554 R |mn|)
+(-556 R |mn|)
((|constructor| (NIL "\\indented{2}{This type represents vector like objects with varying lengths} and a user-specified initial index.")))
-((-4249 . T) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (-3255 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016)))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-666))) (|HasCategory| |#1| (QUOTE (-973))) (-12 (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-973)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-555 S |Index| |Entry|)
+((-4251 . T) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (-3321 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018)))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-668))) (|HasCategory| |#1| (QUOTE (-975))) (-12 (|HasCategory| |#1| (QUOTE (-932))) (|HasCategory| |#1| (QUOTE (-975)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-557 S |Index| |Entry|)
((|constructor| (NIL "An indexed aggregate is a many-to-one mapping of indices to entries. For example,{} a one-dimensional-array is an indexed aggregate where the index is an integer. Also,{} a table is an indexed aggregate where the indices and entries may have any type.")) (|swap!| (((|Void|) $ |#2| |#2|) "\\spad{swap!(u,{}i,{}j)} interchanges elements \\spad{i} and \\spad{j} of aggregate \\spad{u}. No meaningful value is returned.")) (|fill!| (($ $ |#3|) "\\spad{fill!(u,{}x)} replaces each entry in aggregate \\spad{u} by \\spad{x}. The modified \\spad{u} is returned as value.")) (|first| ((|#3| $) "\\spad{first(u)} returns the first element \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{first([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = \\spad{x}}. Error: if \\spad{u} is empty.")) (|minIndex| ((|#2| $) "\\spad{minIndex(u)} returns the minimum index \\spad{i} of aggregate \\spad{u}. Note: in general,{} \\axiom{minIndex(a) = reduce(min,{}[\\spad{i} for \\spad{i} in indices a])}; for lists,{} \\axiom{minIndex(a) = 1}.")) (|maxIndex| ((|#2| $) "\\spad{maxIndex(u)} returns the maximum index \\spad{i} of aggregate \\spad{u}. Note: in general,{} \\axiom{maxIndex(\\spad{u}) = reduce(max,{}[\\spad{i} for \\spad{i} in indices \\spad{u}])}; if \\spad{u} is a list,{} \\axiom{maxIndex(\\spad{u}) = \\#u}.")) (|entry?| (((|Boolean|) |#3| $) "\\spad{entry?(x,{}u)} tests if \\spad{x} equals \\axiom{\\spad{u} . \\spad{i}} for some index \\spad{i}.")) (|indices| (((|List| |#2|) $) "\\spad{indices(u)} returns a list of indices of aggregate \\spad{u} in no particular order.")) (|index?| (((|Boolean|) |#2| $) "\\spad{index?(i,{}u)} tests if \\spad{i} is an index of aggregate \\spad{u}.")) (|entries| (((|List| |#3|) $) "\\spad{entries(u)} returns a list of all the entries of aggregate \\spad{u} in no assumed order.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4249)) (|HasCategory| |#2| (QUOTE (-786))) (|HasAttribute| |#1| (QUOTE -4248)) (|HasCategory| |#3| (QUOTE (-1016))))
-(-556 |Index| |Entry|)
+((|HasAttribute| |#1| (QUOTE -4251)) (|HasCategory| |#2| (QUOTE (-788))) (|HasAttribute| |#1| (QUOTE -4250)) (|HasCategory| |#3| (QUOTE (-1018))))
+(-558 |Index| |Entry|)
((|constructor| (NIL "An indexed aggregate is a many-to-one mapping of indices to entries. For example,{} a one-dimensional-array is an indexed aggregate where the index is an integer. Also,{} a table is an indexed aggregate where the indices and entries may have any type.")) (|swap!| (((|Void|) $ |#1| |#1|) "\\spad{swap!(u,{}i,{}j)} interchanges elements \\spad{i} and \\spad{j} of aggregate \\spad{u}. No meaningful value is returned.")) (|fill!| (($ $ |#2|) "\\spad{fill!(u,{}x)} replaces each entry in aggregate \\spad{u} by \\spad{x}. The modified \\spad{u} is returned as value.")) (|first| ((|#2| $) "\\spad{first(u)} returns the first element \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{first([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = \\spad{x}}. Error: if \\spad{u} is empty.")) (|minIndex| ((|#1| $) "\\spad{minIndex(u)} returns the minimum index \\spad{i} of aggregate \\spad{u}. Note: in general,{} \\axiom{minIndex(a) = reduce(min,{}[\\spad{i} for \\spad{i} in indices a])}; for lists,{} \\axiom{minIndex(a) = 1}.")) (|maxIndex| ((|#1| $) "\\spad{maxIndex(u)} returns the maximum index \\spad{i} of aggregate \\spad{u}. Note: in general,{} \\axiom{maxIndex(\\spad{u}) = reduce(max,{}[\\spad{i} for \\spad{i} in indices \\spad{u}])}; if \\spad{u} is a list,{} \\axiom{maxIndex(\\spad{u}) = \\#u}.")) (|entry?| (((|Boolean|) |#2| $) "\\spad{entry?(x,{}u)} tests if \\spad{x} equals \\axiom{\\spad{u} . \\spad{i}} for some index \\spad{i}.")) (|indices| (((|List| |#1|) $) "\\spad{indices(u)} returns a list of indices of aggregate \\spad{u} in no particular order.")) (|index?| (((|Boolean|) |#1| $) "\\spad{index?(i,{}u)} tests if \\spad{i} is an index of aggregate \\spad{u}.")) (|entries| (((|List| |#2|) $) "\\spad{entries(u)} returns a list of all the entries of aggregate \\spad{u} in no assumed order.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-557 R A)
+(-559 R A)
((|constructor| (NIL "\\indented{1}{AssociatedJordanAlgebra takes an algebra \\spad{A} and uses \\spadfun{*\\$A}} \\indented{1}{to define the new multiplications \\spad{a*b := (a *\\$A b + b *\\$A a)/2}} \\indented{1}{(anticommutator).} \\indented{1}{The usual notation \\spad{{a,{}b}_+} cannot be used due to} \\indented{1}{restrictions in the current language.} \\indented{1}{This domain only gives a Jordan algebra if the} \\indented{1}{Jordan-identity \\spad{(a*b)*c + (b*c)*a + (c*a)*b = 0} holds} \\indented{1}{for all \\spad{a},{}\\spad{b},{}\\spad{c} in \\spad{A}.} \\indented{1}{This relation can be checked by} \\indented{1}{\\spadfun{jordanAdmissible?()\\$A}.} \\blankline If the underlying algebra is of type \\spadtype{FramedNonAssociativeAlgebra(R)} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank,{} together with a fixed \\spad{R}-module basis),{} then the same is \\spad{true} for the associated Jordan algebra. Moreover,{} if the underlying algebra is of type \\spadtype{FiniteRankNonAssociativeAlgebra(R)} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank),{} then the same \\spad{true} for the associated Jordan algebra.")) (|coerce| (($ |#2|) "\\spad{coerce(a)} coerces the element \\spad{a} of the algebra \\spad{A} to an element of the Jordan algebra \\spadtype{AssociatedJordanAlgebra}(\\spad{R},{}A).")))
-((-4245 -3255 (-2819 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))) (-4243 . T) (-4242 . T))
-((-3255 (|HasCategory| |#2| (LIST (QUOTE -343) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -393) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -393) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -393) (|devaluate| |#1|)))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#2| (LIST (QUOTE -343) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#2| (LIST (QUOTE -393) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -343) (|devaluate| |#1|))))
-(-558 |Entry|)
+((-4247 -3321 (-1213 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))) (-4245 . T) (-4244 . T))
+((-3321 (|HasCategory| |#2| (LIST (QUOTE -345) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -395) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -395) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -395) (|devaluate| |#1|)))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#2| (LIST (QUOTE -345) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#2| (LIST (QUOTE -395) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -345) (|devaluate| |#1|))))
+(-560 |Entry|)
((|constructor| (NIL "This domain allows a random access file to be viewed both as a table and as a file object.")) (|pack!| (($ $) "\\spad{pack!(f)} reorganizes the file \\spad{f} on disk to recover unused space.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (LIST (QUOTE -286) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2402) (QUOTE (-1070))) (LIST (QUOTE |:|) (QUOTE -2746) (|devaluate| |#1|)))))) (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (LIST (QUOTE -564) (QUOTE (-499)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| (-1070) (QUOTE (-786))) (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-559 S |Key| |Entry|)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (LIST (QUOTE -288) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2019) (QUOTE (-1072))) (LIST (QUOTE |:|) (QUOTE -1221) (|devaluate| |#1|)))))) (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (LIST (QUOTE -566) (QUOTE (-501)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| (-1072) (QUOTE (-788))) (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-561 S |Key| |Entry|)
((|constructor| (NIL "A keyed dictionary is a dictionary of key-entry pairs for which there is a unique entry for each key.")) (|search| (((|Union| |#3| "failed") |#2| $) "\\spad{search(k,{}t)} searches the table \\spad{t} for the key \\spad{k},{} returning the entry stored in \\spad{t} for key \\spad{k}. If \\spad{t} has no such key,{} \\axiom{search(\\spad{k},{}\\spad{t})} returns \"failed\".")) (|remove!| (((|Union| |#3| "failed") |#2| $) "\\spad{remove!(k,{}t)} searches the table \\spad{t} for the key \\spad{k} removing (and return) the entry if there. If \\spad{t} has no such key,{} \\axiom{remove!(\\spad{k},{}\\spad{t})} returns \"failed\".")) (|keys| (((|List| |#2|) $) "\\spad{keys(t)} returns the list the keys in table \\spad{t}.")) (|key?| (((|Boolean|) |#2| $) "\\spad{key?(k,{}t)} tests if \\spad{k} is a key in table \\spad{t}.")))
NIL
NIL
-(-560 |Key| |Entry|)
+(-562 |Key| |Entry|)
((|constructor| (NIL "A keyed dictionary is a dictionary of key-entry pairs for which there is a unique entry for each key.")) (|search| (((|Union| |#2| "failed") |#1| $) "\\spad{search(k,{}t)} searches the table \\spad{t} for the key \\spad{k},{} returning the entry stored in \\spad{t} for key \\spad{k}. If \\spad{t} has no such key,{} \\axiom{search(\\spad{k},{}\\spad{t})} returns \"failed\".")) (|remove!| (((|Union| |#2| "failed") |#1| $) "\\spad{remove!(k,{}t)} searches the table \\spad{t} for the key \\spad{k} removing (and return) the entry if there. If \\spad{t} has no such key,{} \\axiom{remove!(\\spad{k},{}\\spad{t})} returns \"failed\".")) (|keys| (((|List| |#1|) $) "\\spad{keys(t)} returns the list the keys in table \\spad{t}.")) (|key?| (((|Boolean|) |#1| $) "\\spad{key?(k,{}t)} tests if \\spad{k} is a key in table \\spad{t}.")))
-((-4249 . T) (-2500 . T))
+((-4251 . T) (-2137 . T))
NIL
-(-561 R S)
+(-563 R S)
((|constructor| (NIL "This package exports some auxiliary functions on kernels")) (|constantIfCan| (((|Union| |#1| "failed") (|Kernel| |#2|)) "\\spad{constantIfCan(k)} \\undocumented")) (|constantKernel| (((|Kernel| |#2|) |#1|) "\\spad{constantKernel(r)} \\undocumented")))
NIL
NIL
-(-562 S)
+(-564 S)
((|constructor| (NIL "A kernel over a set \\spad{S} is an operator applied to a given list of arguments from \\spad{S}.")) (|is?| (((|Boolean|) $ (|Symbol|)) "\\spad{is?(op(a1,{}...,{}an),{} s)} tests if the name of op is \\spad{s}.") (((|Boolean|) $ (|BasicOperator|)) "\\spad{is?(op(a1,{}...,{}an),{} f)} tests if op = \\spad{f}.")) (|symbolIfCan| (((|Union| (|Symbol|) "failed") $) "\\spad{symbolIfCan(k)} returns \\spad{k} viewed as a symbol if \\spad{k} is a symbol,{} and \"failed\" otherwise.")) (|kernel| (($ (|Symbol|)) "\\spad{kernel(x)} returns \\spad{x} viewed as a kernel.") (($ (|BasicOperator|) (|List| |#1|) (|NonNegativeInteger|)) "\\spad{kernel(op,{} [a1,{}...,{}an],{} m)} returns the kernel \\spad{op(a1,{}...,{}an)} of nesting level \\spad{m}. Error: if \\spad{op} is \\spad{k}-ary for some \\spad{k} not equal to \\spad{m}.")) (|height| (((|NonNegativeInteger|) $) "\\spad{height(k)} returns the nesting level of \\spad{k}.")) (|argument| (((|List| |#1|) $) "\\spad{argument(op(a1,{}...,{}an))} returns \\spad{[a1,{}...,{}an]}.")) (|operator| (((|BasicOperator|) $) "\\spad{operator(op(a1,{}...,{}an))} returns the operator op.")) (|name| (((|Symbol|) $) "\\spad{name(op(a1,{}...,{}an))} returns the name of op.")))
NIL
-((|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))))
-(-563 S)
+((|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))))
+(-565 S)
((|constructor| (NIL "A is coercible to \\spad{B} means any element of A can automatically be converted into an element of \\spad{B} by the interpreter.")) (|coerce| ((|#1| $) "\\spad{coerce(a)} transforms a into an element of \\spad{S}.")))
NIL
NIL
-(-564 S)
+(-566 S)
((|constructor| (NIL "A is convertible to \\spad{B} means any element of A can be converted into an element of \\spad{B},{} but not automatically by the interpreter.")) (|convert| ((|#1| $) "\\spad{convert(a)} transforms a into an element of \\spad{S}.")))
NIL
NIL
-(-565 -3894 UP)
+(-567 -3576 UP)
((|constructor| (NIL "\\spadtype{Kovacic} provides a modified Kovacic\\spad{'s} algorithm for solving explicitely irreducible 2nd order linear ordinary differential equations.")) (|kovacic| (((|Union| (|SparseUnivariatePolynomial| (|Fraction| |#2|)) "failed") (|Fraction| |#2|) (|Fraction| |#2|) (|Fraction| |#2|) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{kovacic(a_0,{}a_1,{}a_2,{}ezfactor)} returns either \"failed\" or \\spad{P}(\\spad{u}) such that \\spad{\\$e^{\\int(-a_1/2a_2)} e^{\\int u}\\$} is a solution of \\indented{5}{\\spad{\\$a_2 y'' + a_1 y' + a0 y = 0\\$}} whenever \\spad{u} is a solution of \\spad{P u = 0}. The equation must be already irreducible over the rational functions. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.") (((|Union| (|SparseUnivariatePolynomial| (|Fraction| |#2|)) "failed") (|Fraction| |#2|) (|Fraction| |#2|) (|Fraction| |#2|)) "\\spad{kovacic(a_0,{}a_1,{}a_2)} returns either \"failed\" or \\spad{P}(\\spad{u}) such that \\spad{\\$e^{\\int(-a_1/2a_2)} e^{\\int u}\\$} is a solution of \\indented{5}{\\spad{a_2 y'' + a_1 y' + a0 y = 0}} whenever \\spad{u} is a solution of \\spad{P u = 0}. The equation must be already irreducible over the rational functions.")))
NIL
NIL
-(-566 S R)
+(-568 S R)
((|constructor| (NIL "The category of all left algebras over an arbitrary ring.")) (|coerce| (($ |#2|) "\\spad{coerce(r)} returns \\spad{r} * 1 where 1 is the identity of the left algebra.")))
NIL
NIL
-(-567 R)
+(-569 R)
((|constructor| (NIL "The category of all left algebras over an arbitrary ring.")) (|coerce| (($ |#1|) "\\spad{coerce(r)} returns \\spad{r} * 1 where 1 is the identity of the left algebra.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-568 A R S)
+(-570 A R S)
((|constructor| (NIL "LocalAlgebra produces the localization of an algebra,{} \\spadignore{i.e.} fractions whose numerators come from some \\spad{R} algebra.")) (|denom| ((|#3| $) "\\spad{denom x} returns the denominator of \\spad{x}.")) (|numer| ((|#1| $) "\\spad{numer x} returns the numerator of \\spad{x}.")) (/ (($ |#1| |#3|) "\\spad{a / d} divides the element \\spad{a} by \\spad{d}.") (($ $ |#3|) "\\spad{x / d} divides the element \\spad{x} by \\spad{d}.")))
-((-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-784))))
-(-569 R -3894)
+((-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-786))))
+(-571 R -3576)
((|constructor| (NIL "This package computes the forward Laplace Transform.")) (|laplace| ((|#2| |#2| (|Symbol|) (|Symbol|)) "\\spad{laplace(f,{} t,{} s)} returns the Laplace transform of \\spad{f(t)} using \\spad{s} as the new variable. This is \\spad{integral(exp(-s*t)*f(t),{} t = 0..\\%plusInfinity)}. Returns the formal object \\spad{laplace(f,{} t,{} s)} if it cannot compute the transform.")))
NIL
NIL
-(-570 R UP)
+(-572 R UP)
((|constructor| (NIL "\\indented{1}{Univariate polynomials with negative and positive exponents.} Author: Manuel Bronstein Date Created: May 1988 Date Last Updated: 26 Apr 1990")) (|separate| (((|Record| (|:| |polyPart| $) (|:| |fracPart| (|Fraction| |#2|))) (|Fraction| |#2|)) "\\spad{separate(x)} \\undocumented")) (|monomial| (($ |#1| (|Integer|)) "\\spad{monomial(x,{}n)} \\undocumented")) (|coefficient| ((|#1| $ (|Integer|)) "\\spad{coefficient(x,{}n)} \\undocumented")) (|trailingCoefficient| ((|#1| $) "\\spad{trailingCoefficient }\\undocumented")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient }\\undocumented")) (|reductum| (($ $) "\\spad{reductum(x)} \\undocumented")) (|order| (((|Integer|) $) "\\spad{order(x)} \\undocumented")) (|degree| (((|Integer|) $) "\\spad{degree(x)} \\undocumented")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(x)} \\undocumented")))
-((-4243 . T) (-4242 . T) ((-4250 "*") . T) (-4241 . T) (-4245 . T))
-((|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))))
-(-571 R E V P TS ST)
+((-4245 . T) (-4244 . T) ((-4252 "*") . T) (-4243 . T) (-4247 . T))
+((|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))))
+(-573 R E V P TS ST)
((|constructor| (NIL "A package for solving polynomial systems by means of Lazard triangular sets [1]. This package provides two operations. One for solving in the sense of the regular zeros,{} and the other for solving in the sense of the Zariski closure. Both produce square-free regular sets. Moreover,{} the decompositions do not contain any redundant component. However,{} only zero-dimensional regular sets are normalized,{} since normalization may be time consumming in positive dimension. The decomposition process is that of [2].\\newline References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991} \\indented{1}{[2] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")) (|zeroSetSplit| (((|List| |#6|) (|List| |#4|) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{}clos?)} has the same specifications as \\axiomOpFrom{zeroSetSplit(\\spad{lp},{}clos?)}{RegularTriangularSetCategory}.")) (|normalizeIfCan| ((|#6| |#6|) "\\axiom{normalizeIfCan(\\spad{ts})} returns \\axiom{\\spad{ts}} in an normalized shape if \\axiom{\\spad{ts}} is zero-dimensional.")))
NIL
NIL
-(-572 OV E Z P)
+(-574 OV E Z P)
((|constructor| (NIL "Package for leading coefficient determination in the lifting step. Package working for every \\spad{R} euclidean with property \\spad{\"F\"}.")) (|distFact| (((|Union| (|Record| (|:| |polfac| (|List| |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (|List| (|SparseUnivariatePolynomial| |#3|)))) "failed") |#3| (|List| (|SparseUnivariatePolynomial| |#3|)) (|Record| (|:| |contp| |#3|) (|:| |factors| (|List| (|Record| (|:| |irr| |#4|) (|:| |pow| (|Integer|)))))) (|List| |#3|) (|List| |#1|) (|List| |#3|)) "\\spad{distFact(contm,{}unilist,{}plead,{}vl,{}lvar,{}lval)},{} where \\spad{contm} is the content of the evaluated polynomial,{} \\spad{unilist} is the list of factors of the evaluated polynomial,{} \\spad{plead} is the complete factorization of the leading coefficient,{} \\spad{vl} is the list of factors of the leading coefficient evaluated,{} \\spad{lvar} is the list of variables,{} \\spad{lval} is the list of values,{} returns a record giving the list of leading coefficients to impose on the univariate factors,{}")) (|polCase| (((|Boolean|) |#3| (|NonNegativeInteger|) (|List| |#3|)) "\\spad{polCase(contprod,{} numFacts,{} evallcs)},{} where \\spad{contprod} is the product of the content of the leading coefficient of the polynomial to be factored with the content of the evaluated polynomial,{} \\spad{numFacts} is the number of factors of the leadingCoefficient,{} and evallcs is the list of the evaluated factors of the leadingCoefficient,{} returns \\spad{true} if the factors of the leading Coefficient can be distributed with this valuation.")))
NIL
NIL
-(-573 |VarSet| R |Order|)
+(-575 |VarSet| R |Order|)
((|constructor| (NIL "Management of the Lie Group associated with a free nilpotent Lie algebra. Every Lie bracket with length greater than \\axiom{Order} are assumed to be null. The implementation inherits from the \\spadtype{XPBWPolynomial} domain constructor: Lyndon coordinates are exponential coordinates of the second kind. \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr}).")) (|identification| (((|List| (|Equation| |#2|)) $ $) "\\axiom{identification(\\spad{g},{}\\spad{h})} returns the list of equations \\axiom{g_i = h_i},{} where \\axiom{g_i} (resp. \\axiom{h_i}) are exponential coordinates of \\axiom{\\spad{g}} (resp. \\axiom{\\spad{h}}).")) (|LyndonCoordinates| (((|List| (|Record| (|:| |k| (|LyndonWord| |#1|)) (|:| |c| |#2|))) $) "\\axiom{LyndonCoordinates(\\spad{g})} returns the exponential coordinates of \\axiom{\\spad{g}}.")) (|LyndonBasis| (((|List| (|LiePolynomial| |#1| |#2|)) (|List| |#1|)) "\\axiom{LyndonBasis(\\spad{lv})} returns the Lyndon basis of the nilpotent free Lie algebra.")) (|varList| (((|List| |#1|) $) "\\axiom{varList(\\spad{g})} returns the list of variables of \\axiom{\\spad{g}}.")) (|mirror| (($ $) "\\axiom{mirror(\\spad{g})} is the mirror of the internal representation of \\axiom{\\spad{g}}.")) (|coerce| (((|XPBWPolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{g})} returns the internal representation of \\axiom{\\spad{g}}.") (((|XDistributedPolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{g})} returns the internal representation of \\axiom{\\spad{g}}.")) (|ListOfTerms| (((|List| (|Record| (|:| |k| (|PoincareBirkhoffWittLyndonBasis| |#1|)) (|:| |c| |#2|))) $) "\\axiom{ListOfTerms(\\spad{p})} returns the internal representation of \\axiom{\\spad{p}}.")) (|log| (((|LiePolynomial| |#1| |#2|) $) "\\axiom{log(\\spad{p})} returns the logarithm of \\axiom{\\spad{p}}.")) (|exp| (($ (|LiePolynomial| |#1| |#2|)) "\\axiom{exp(\\spad{p})} returns the exponential of \\axiom{\\spad{p}}.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-574 R |ls|)
+(-576 R |ls|)
((|constructor| (NIL "A package for solving polynomial systems with finitely many solutions. The decompositions are given by means of regular triangular sets. The computations use lexicographical Groebner bases. The main operations are \\axiomOpFrom{lexTriangular}{LexTriangularPackage} and \\axiomOpFrom{squareFreeLexTriangular}{LexTriangularPackage}. The second one provide decompositions by means of square-free regular triangular sets. Both are based on the {\\em lexTriangular} method described in [1]. They differ from the algorithm described in [2] by the fact that multiciplities of the roots are not kept. With the \\axiomOpFrom{squareFreeLexTriangular}{LexTriangularPackage} operation all multiciplities are removed. With the other operation some multiciplities may remain. Both operations admit an optional argument to produce normalized triangular sets. \\newline")) (|zeroSetSplit| (((|List| (|SquareFreeRegularTriangularSet| |#1| (|IndexedExponents| (|OrderedVariableList| |#2|)) (|OrderedVariableList| |#2|) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{} norm?)} decomposes the variety associated with \\axiom{\\spad{lp}} into square-free regular chains. Thus a point belongs to this variety iff it is a regular zero of a regular set in in the output. Note that \\axiom{\\spad{lp}} needs to generate a zero-dimensional ideal. If \\axiom{norm?} is \\axiom{\\spad{true}} then the regular sets are normalized.") (((|List| (|RegularChain| |#1| |#2|)) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{} norm?)} decomposes the variety associated with \\axiom{\\spad{lp}} into regular chains. Thus a point belongs to this variety iff it is a regular zero of a regular set in in the output. Note that \\axiom{\\spad{lp}} needs to generate a zero-dimensional ideal. If \\axiom{norm?} is \\axiom{\\spad{true}} then the regular sets are normalized.")) (|squareFreeLexTriangular| (((|List| (|SquareFreeRegularTriangularSet| |#1| (|IndexedExponents| (|OrderedVariableList| |#2|)) (|OrderedVariableList| |#2|) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|Boolean|)) "\\axiom{squareFreeLexTriangular(base,{} norm?)} decomposes the variety associated with \\axiom{base} into square-free regular chains. Thus a point belongs to this variety iff it is a regular zero of a regular set in in the output. Note that \\axiom{base} needs to be a lexicographical Groebner basis of a zero-dimensional ideal. If \\axiom{norm?} is \\axiom{\\spad{true}} then the regular sets are normalized.")) (|lexTriangular| (((|List| (|RegularChain| |#1| |#2|)) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|Boolean|)) "\\axiom{lexTriangular(base,{} norm?)} decomposes the variety associated with \\axiom{base} into regular chains. Thus a point belongs to this variety iff it is a regular zero of a regular set in in the output. Note that \\axiom{base} needs to be a lexicographical Groebner basis of a zero-dimensional ideal. If \\axiom{norm?} is \\axiom{\\spad{true}} then the regular sets are normalized.")) (|groebner| (((|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) "\\axiom{groebner(\\spad{lp})} returns the lexicographical Groebner basis of \\axiom{\\spad{lp}}. If \\axiom{\\spad{lp}} generates a zero-dimensional ideal then the {\\em FGLM} strategy is used,{} otherwise the {\\em Sugar} strategy is used.")) (|fglmIfCan| (((|Union| (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) "failed") (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) "\\axiom{fglmIfCan(\\spad{lp})} returns the lexicographical Groebner basis of \\axiom{\\spad{lp}} by using the {\\em FGLM} strategy,{} if \\axiom{zeroDimensional?(\\spad{lp})} holds .")) (|zeroDimensional?| (((|Boolean|) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) "\\axiom{zeroDimensional?(\\spad{lp})} returns \\spad{true} iff \\axiom{\\spad{lp}} generates a zero-dimensional ideal \\spad{w}.\\spad{r}.\\spad{t}. the variables involved in \\axiom{\\spad{lp}}.")))
NIL
NIL
-(-575)
+(-577)
((|constructor| (NIL "Category for the transcendental Liouvillian functions.")) (|erf| (($ $) "\\spad{erf(x)} returns the error function of \\spad{x},{} \\spadignore{i.e.} \\spad{2 / sqrt(\\%\\spad{pi})} times the integral of \\spad{exp(-x**2) dx}.")) (|dilog| (($ $) "\\spad{dilog(x)} returns the dilogarithm of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{log(x) / (1 - x) dx}.")) (|li| (($ $) "\\spad{\\spad{li}(x)} returns the logarithmic integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{dx / log(x)}.")) (|Ci| (($ $) "\\spad{\\spad{Ci}(x)} returns the cosine integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{cos(x) / x dx}.")) (|Si| (($ $) "\\spad{\\spad{Si}(x)} returns the sine integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{sin(x) / x dx}.")) (|Ei| (($ $) "\\spad{\\spad{Ei}(x)} returns the exponential integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{exp(x)/x dx}.")))
NIL
NIL
-(-576 R -3894)
+(-578 R -3576)
((|constructor| (NIL "This package provides liouvillian functions over an integral domain.")) (|integral| ((|#2| |#2| (|SegmentBinding| |#2|)) "\\spad{integral(f,{}x = a..b)} denotes the definite integral of \\spad{f} with respect to \\spad{x} from \\spad{a} to \\spad{b}.") ((|#2| |#2| (|Symbol|)) "\\spad{integral(f,{}x)} indefinite integral of \\spad{f} with respect to \\spad{x}.")) (|dilog| ((|#2| |#2|) "\\spad{dilog(f)} denotes the dilogarithm")) (|erf| ((|#2| |#2|) "\\spad{erf(f)} denotes the error function")) (|li| ((|#2| |#2|) "\\spad{\\spad{li}(f)} denotes the logarithmic integral")) (|Ci| ((|#2| |#2|) "\\spad{\\spad{Ci}(f)} denotes the cosine integral")) (|Si| ((|#2| |#2|) "\\spad{\\spad{Si}(f)} denotes the sine integral")) (|Ei| ((|#2| |#2|) "\\spad{\\spad{Ei}(f)} denotes the exponential integral")) (|operator| (((|BasicOperator|) (|BasicOperator|)) "\\spad{operator(op)} returns the Liouvillian operator based on \\spad{op}")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(op)} checks if \\spad{op} is Liouvillian")))
NIL
NIL
-(-577 |lv| -3894)
+(-579 |lv| -3576)
((|constructor| (NIL "\\indented{1}{Given a Groebner basis \\spad{B} with respect to the total degree ordering for} a zero-dimensional ideal \\spad{I},{} compute a Groebner basis with respect to the lexicographical ordering by using linear algebra.")) (|transform| (((|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|DistributedMultivariatePolynomial| |#1| |#2|)) "\\spad{transform }\\undocumented")) (|choosemon| (((|DistributedMultivariatePolynomial| |#1| |#2|) (|DistributedMultivariatePolynomial| |#1| |#2|) (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{choosemon }\\undocumented")) (|intcompBasis| (((|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|OrderedVariableList| |#1|) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{intcompBasis }\\undocumented")) (|anticoord| (((|DistributedMultivariatePolynomial| |#1| |#2|) (|List| |#2|) (|DistributedMultivariatePolynomial| |#1| |#2|) (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{anticoord }\\undocumented")) (|coord| (((|Vector| |#2|) (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{coord }\\undocumented")) (|computeBasis| (((|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{computeBasis }\\undocumented")) (|minPol| (((|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|OrderedVariableList| |#1|)) "\\spad{minPol }\\undocumented") (((|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|OrderedVariableList| |#1|)) "\\spad{minPol }\\undocumented")) (|totolex| (((|List| (|DistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{totolex }\\undocumented")) (|groebgen| (((|Record| (|:| |glbase| (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) (|:| |glval| (|List| (|Integer|)))) (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{groebgen }\\undocumented")) (|linGenPos| (((|Record| (|:| |gblist| (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) (|:| |gvlist| (|List| (|Integer|)))) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{linGenPos }\\undocumented")))
NIL
NIL
-(-578)
+(-580)
((|constructor| (NIL "This domain provides a simple way to save values in files.")) (|setelt| (((|Any|) $ (|Symbol|) (|Any|)) "\\spad{lib.k := v} saves the value \\spad{v} in the library \\spad{lib}. It can later be extracted using the key \\spad{k}.")) (|elt| (((|Any|) $ (|Symbol|)) "\\spad{elt(lib,{}k)} or \\spad{lib}.\\spad{k} extracts the value corresponding to the key \\spad{k} from the library \\spad{lib}.")) (|pack!| (($ $) "\\spad{pack!(f)} reorganizes the file \\spad{f} on disk to recover unused space.")) (|library| (($ (|FileName|)) "\\spad{library(ln)} creates a new library file.")))
-((-4249 . T))
-((-12 (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (LIST (QUOTE -286) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2402) (QUOTE (-1070))) (LIST (QUOTE |:|) (QUOTE -2746) (QUOTE (-51))))))) (-3255 (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (QUOTE (-1016))) (|HasCategory| (-51) (QUOTE (-1016)))) (-3255 (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| (-51) (QUOTE (-1016))) (|HasCategory| (-51) (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (LIST (QUOTE -564) (QUOTE (-499)))) (-12 (|HasCategory| (-51) (QUOTE (-1016))) (|HasCategory| (-51) (LIST (QUOTE -286) (QUOTE (-51))))) (|HasCategory| (-1070) (QUOTE (-786))) (-3255 (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| (-51) (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| (-51) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| (-51) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-579 S R)
+((-4251 . T))
+((-12 (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (LIST (QUOTE -288) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2019) (QUOTE (-1072))) (LIST (QUOTE |:|) (QUOTE -1221) (QUOTE (-51))))))) (-3321 (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (QUOTE (-1018))) (|HasCategory| (-51) (QUOTE (-1018)))) (-3321 (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| (-51) (QUOTE (-1018))) (|HasCategory| (-51) (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (LIST (QUOTE -566) (QUOTE (-501)))) (-12 (|HasCategory| (-51) (QUOTE (-1018))) (|HasCategory| (-51) (LIST (QUOTE -288) (QUOTE (-51))))) (|HasCategory| (-1072) (QUOTE (-788))) (-3321 (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| (-51) (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| (-51) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| (-51) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-581 S R)
((|constructor| (NIL "\\axiom{JacobiIdentity} means that \\axiom{[\\spad{x},{}[\\spad{y},{}\\spad{z}]]+[\\spad{y},{}[\\spad{z},{}\\spad{x}]]+[\\spad{z},{}[\\spad{x},{}\\spad{y}]] = 0} holds.")) (/ (($ $ |#2|) "\\axiom{\\spad{x/r}} returns the division of \\axiom{\\spad{x}} by \\axiom{\\spad{r}}.")) (|construct| (($ $ $) "\\axiom{construct(\\spad{x},{}\\spad{y})} returns the Lie bracket of \\axiom{\\spad{x}} and \\axiom{\\spad{y}}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-339))))
-(-580 R)
+((|HasCategory| |#2| (QUOTE (-341))))
+(-582 R)
((|constructor| (NIL "\\axiom{JacobiIdentity} means that \\axiom{[\\spad{x},{}[\\spad{y},{}\\spad{z}]]+[\\spad{y},{}[\\spad{z},{}\\spad{x}]]+[\\spad{z},{}[\\spad{x},{}\\spad{y}]] = 0} holds.")) (/ (($ $ |#1|) "\\axiom{\\spad{x/r}} returns the division of \\axiom{\\spad{x}} by \\axiom{\\spad{r}}.")) (|construct| (($ $ $) "\\axiom{construct(\\spad{x},{}\\spad{y})} returns the Lie bracket of \\axiom{\\spad{x}} and \\axiom{\\spad{y}}.")))
-((|JacobiIdentity| . T) (|NullSquare| . T) (-4243 . T) (-4242 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4245 . T) (-4244 . T))
NIL
-(-581 R A)
+(-583 R A)
((|constructor| (NIL "AssociatedLieAlgebra takes an algebra \\spad{A} and uses \\spadfun{*\\$A} to define the Lie bracket \\spad{a*b := (a *\\$A b - b *\\$A a)} (commutator). Note that the notation \\spad{[a,{}b]} cannot be used due to restrictions of the current compiler. This domain only gives a Lie algebra if the Jacobi-identity \\spad{(a*b)*c + (b*c)*a + (c*a)*b = 0} holds for all \\spad{a},{}\\spad{b},{}\\spad{c} in \\spad{A}. This relation can be checked by \\spad{lieAdmissible?()\\$A}. \\blankline If the underlying algebra is of type \\spadtype{FramedNonAssociativeAlgebra(R)} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank,{} together with a fixed \\spad{R}-module basis),{} then the same is \\spad{true} for the associated Lie algebra. Also,{} if the underlying algebra is of type \\spadtype{FiniteRankNonAssociativeAlgebra(R)} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank),{} then the same is \\spad{true} for the associated Lie algebra.")) (|coerce| (($ |#2|) "\\spad{coerce(a)} coerces the element \\spad{a} of the algebra \\spad{A} to an element of the Lie algebra \\spadtype{AssociatedLieAlgebra}(\\spad{R},{}A).")))
-((-4245 -3255 (-2819 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))) (-4243 . T) (-4242 . T))
-((-3255 (|HasCategory| |#2| (LIST (QUOTE -343) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -393) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -393) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -393) (|devaluate| |#1|)))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#2| (LIST (QUOTE -343) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#2| (LIST (QUOTE -393) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -343) (|devaluate| |#1|))))
-(-582 R FE)
+((-4247 -3321 (-1213 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))) (-4245 . T) (-4244 . T))
+((-3321 (|HasCategory| |#2| (LIST (QUOTE -345) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -395) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -395) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -395) (|devaluate| |#1|)))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#2| (LIST (QUOTE -345) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#2| (LIST (QUOTE -395) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -345) (|devaluate| |#1|))))
+(-584 R FE)
((|constructor| (NIL "PowerSeriesLimitPackage implements limits of expressions in one or more variables as one of the variables approaches a limiting value. Included are two-sided limits,{} left- and right- hand limits,{} and limits at plus or minus infinity.")) (|complexLimit| (((|Union| (|OnePointCompletion| |#2|) "failed") |#2| (|Equation| (|OnePointCompletion| |#2|))) "\\spad{complexLimit(f(x),{}x = a)} computes the complex limit \\spad{lim(x -> a,{}f(x))}.")) (|limit| (((|Union| (|OrderedCompletion| |#2|) "failed") |#2| (|Equation| |#2|) (|String|)) "\\spad{limit(f(x),{}x=a,{}\"left\")} computes the left hand real limit \\spad{lim(x -> a-,{}f(x))}; \\spad{limit(f(x),{}x=a,{}\"right\")} computes the right hand real limit \\spad{lim(x -> a+,{}f(x))}.") (((|Union| (|OrderedCompletion| |#2|) (|Record| (|:| |leftHandLimit| (|Union| (|OrderedCompletion| |#2|) "failed")) (|:| |rightHandLimit| (|Union| (|OrderedCompletion| |#2|) "failed"))) "failed") |#2| (|Equation| (|OrderedCompletion| |#2|))) "\\spad{limit(f(x),{}x = a)} computes the real limit \\spad{lim(x -> a,{}f(x))}.")))
NIL
NIL
-(-583 R)
+(-585 R)
((|constructor| (NIL "Computation of limits for rational functions.")) (|complexLimit| (((|OnePointCompletion| (|Fraction| (|Polynomial| |#1|))) (|Fraction| (|Polynomial| |#1|)) (|Equation| (|Fraction| (|Polynomial| |#1|)))) "\\spad{complexLimit(f(x),{}x = a)} computes the complex limit of \\spad{f} as its argument \\spad{x} approaches \\spad{a}.") (((|OnePointCompletion| (|Fraction| (|Polynomial| |#1|))) (|Fraction| (|Polynomial| |#1|)) (|Equation| (|OnePointCompletion| (|Polynomial| |#1|)))) "\\spad{complexLimit(f(x),{}x = a)} computes the complex limit of \\spad{f} as its argument \\spad{x} approaches \\spad{a}.")) (|limit| (((|Union| (|OrderedCompletion| (|Fraction| (|Polynomial| |#1|))) "failed") (|Fraction| (|Polynomial| |#1|)) (|Equation| (|Fraction| (|Polynomial| |#1|))) (|String|)) "\\spad{limit(f(x),{}x,{}a,{}\"left\")} computes the real limit of \\spad{f} as its argument \\spad{x} approaches \\spad{a} from the left; limit(\\spad{f}(\\spad{x}),{}\\spad{x},{}a,{}\"right\") computes the corresponding limit as \\spad{x} approaches \\spad{a} from the right.") (((|Union| (|OrderedCompletion| (|Fraction| (|Polynomial| |#1|))) (|Record| (|:| |leftHandLimit| (|Union| (|OrderedCompletion| (|Fraction| (|Polynomial| |#1|))) "failed")) (|:| |rightHandLimit| (|Union| (|OrderedCompletion| (|Fraction| (|Polynomial| |#1|))) "failed"))) "failed") (|Fraction| (|Polynomial| |#1|)) (|Equation| (|Fraction| (|Polynomial| |#1|)))) "\\spad{limit(f(x),{}x = a)} computes the real two-sided limit of \\spad{f} as its argument \\spad{x} approaches \\spad{a}.") (((|Union| (|OrderedCompletion| (|Fraction| (|Polynomial| |#1|))) (|Record| (|:| |leftHandLimit| (|Union| (|OrderedCompletion| (|Fraction| (|Polynomial| |#1|))) "failed")) (|:| |rightHandLimit| (|Union| (|OrderedCompletion| (|Fraction| (|Polynomial| |#1|))) "failed"))) "failed") (|Fraction| (|Polynomial| |#1|)) (|Equation| (|OrderedCompletion| (|Polynomial| |#1|)))) "\\spad{limit(f(x),{}x = a)} computes the real two-sided limit of \\spad{f} as its argument \\spad{x} approaches \\spad{a}.")))
NIL
NIL
-(-584 S R)
+(-586 S R)
((|constructor| (NIL "Test for linear dependence.")) (|solveLinear| (((|Union| (|Vector| (|Fraction| |#1|)) "failed") (|Vector| |#2|) |#2|) "\\spad{solveLinear([v1,{}...,{}vn],{} u)} returns \\spad{[c1,{}...,{}cn]} such that \\spad{c1*v1 + ... + cn*vn = u},{} \"failed\" if no such \\spad{ci}\\spad{'s} exist in the quotient field of \\spad{S}.") (((|Union| (|Vector| |#1|) "failed") (|Vector| |#2|) |#2|) "\\spad{solveLinear([v1,{}...,{}vn],{} u)} returns \\spad{[c1,{}...,{}cn]} such that \\spad{c1*v1 + ... + cn*vn = u},{} \"failed\" if no such \\spad{ci}\\spad{'s} exist in \\spad{S}.")) (|linearDependence| (((|Union| (|Vector| |#1|) "failed") (|Vector| |#2|)) "\\spad{linearDependence([v1,{}...,{}vn])} returns \\spad{[c1,{}...,{}cn]} if \\spad{c1*v1 + ... + cn*vn = 0} and not all the \\spad{ci}\\spad{'s} are 0,{} \"failed\" if the \\spad{vi}\\spad{'s} are linearly independent over \\spad{S}.")) (|linearlyDependent?| (((|Boolean|) (|Vector| |#2|)) "\\spad{linearlyDependent?([v1,{}...,{}vn])} returns \\spad{true} if the \\spad{vi}\\spad{'s} are linearly dependent over \\spad{S},{} \\spad{false} otherwise.")))
NIL
-((-2575 (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (QUOTE (-339))))
-(-585 R)
+((-2247 (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (QUOTE (-341))))
+(-587 R)
((|constructor| (NIL "An extension ring with an explicit linear dependence test.")) (|reducedSystem| (((|Record| (|:| |mat| (|Matrix| |#1|)) (|:| |vec| (|Vector| |#1|))) (|Matrix| $) (|Vector| $)) "\\spad{reducedSystem(A,{} v)} returns a matrix \\spad{B} and a vector \\spad{w} such that \\spad{A x = v} and \\spad{B x = w} have the same solutions in \\spad{R}.") (((|Matrix| |#1|) (|Matrix| $)) "\\spad{reducedSystem(A)} returns a matrix \\spad{B} such that \\spad{A x = 0} and \\spad{B x = 0} have the same solutions in \\spad{R}.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-586 A B)
+(-588 A B)
((|constructor| (NIL "\\spadtype{ListToMap} allows mappings to be described by a pair of lists of equal lengths. The image of an element \\spad{x},{} which appears in position \\spad{n} in the first list,{} is then the \\spad{n}th element of the second list. A default value or default function can be specified to be used when \\spad{x} does not appear in the first list. In the absence of defaults,{} an error will occur in that case.")) (|match| ((|#2| (|List| |#1|) (|List| |#2|) |#1| (|Mapping| |#2| |#1|)) "\\spad{match(la,{} lb,{} a,{} f)} creates a map defined by lists \\spad{la} and \\spad{lb} of equal length. and applies this map to a. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Argument \\spad{f} is a default function to call if a is not in \\spad{la}. The value returned is then obtained by applying \\spad{f} to argument a.") (((|Mapping| |#2| |#1|) (|List| |#1|) (|List| |#2|) (|Mapping| |#2| |#1|)) "\\spad{match(la,{} lb,{} f)} creates a map defined by lists \\spad{la} and \\spad{lb} of equal length. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Argument \\spad{f} is used as the function to call when the given function argument is not in \\spad{la}. The value returned is \\spad{f} applied to that argument.") ((|#2| (|List| |#1|) (|List| |#2|) |#1| |#2|) "\\spad{match(la,{} lb,{} a,{} b)} creates a map defined by lists \\spad{la} and \\spad{lb} of equal length. and applies this map to a. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Argument \\spad{b} is the default target value if a is not in \\spad{la}. Error: if \\spad{la} and \\spad{lb} are not of equal length.") (((|Mapping| |#2| |#1|) (|List| |#1|) (|List| |#2|) |#2|) "\\spad{match(la,{} lb,{} b)} creates a map defined by lists \\spad{la} and \\spad{lb} of equal length,{} where \\spad{b} is used as the default target value if the given function argument is not in \\spad{la}. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Error: if \\spad{la} and \\spad{lb} are not of equal length.") ((|#2| (|List| |#1|) (|List| |#2|) |#1|) "\\spad{match(la,{} lb,{} a)} creates a map defined by lists \\spad{la} and \\spad{lb} of equal length,{} where \\spad{a} is used as the default source value if the given one is not in \\spad{la}. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Error: if \\spad{la} and \\spad{lb} are not of equal length.") (((|Mapping| |#2| |#1|) (|List| |#1|) (|List| |#2|)) "\\spad{match(la,{} lb)} creates a map with no default source or target values defined by lists \\spad{la} and \\spad{lb} of equal length. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Error: if \\spad{la} and \\spad{lb} are not of equal length. Note: when this map is applied,{} an error occurs when applied to a value missing from \\spad{la}.")))
NIL
NIL
-(-587 A B)
+(-589 A B)
((|constructor| (NIL "\\spadtype{ListFunctions2} implements utility functions that operate on two kinds of lists,{} each with a possibly different type of element.")) (|map| (((|List| |#2|) (|Mapping| |#2| |#1|) (|List| |#1|)) "\\spad{map(fn,{}u)} applies \\spad{fn} to each element of list \\spad{u} and returns a new list with the results. For example \\spad{map(square,{}[1,{}2,{}3]) = [1,{}4,{}9]}.")) (|reduce| ((|#2| (|Mapping| |#2| |#1| |#2|) (|List| |#1|) |#2|) "\\spad{reduce(fn,{}u,{}ident)} successively uses the binary function \\spad{fn} on the elements of list \\spad{u} and the result of previous applications. \\spad{ident} is returned if the \\spad{u} is empty. Note the order of application in the following examples: \\spad{reduce(fn,{}[1,{}2,{}3],{}0) = fn(3,{}fn(2,{}fn(1,{}0)))} and \\spad{reduce(*,{}[2,{}3],{}1) = 3 * (2 * 1)}.")) (|scan| (((|List| |#2|) (|Mapping| |#2| |#1| |#2|) (|List| |#1|) |#2|) "\\spad{scan(fn,{}u,{}ident)} successively uses the binary function \\spad{fn} to reduce more and more of list \\spad{u}. \\spad{ident} is returned if the \\spad{u} is empty. The result is a list of the reductions at each step. See \\spadfun{reduce} for more information. Examples: \\spad{scan(fn,{}[1,{}2],{}0) = [fn(2,{}fn(1,{}0)),{}fn(1,{}0)]} and \\spad{scan(*,{}[2,{}3],{}1) = [2 * 1,{} 3 * (2 * 1)]}.")))
NIL
NIL
-(-588 A B C)
+(-590 A B C)
((|constructor| (NIL "\\spadtype{ListFunctions3} implements utility functions that operate on three kinds of lists,{} each with a possibly different type of element.")) (|map| (((|List| |#3|) (|Mapping| |#3| |#1| |#2|) (|List| |#1|) (|List| |#2|)) "\\spad{map(fn,{}list1,{} u2)} applies the binary function \\spad{fn} to corresponding elements of lists \\spad{u1} and \\spad{u2} and returns a list of the results (in the same order). Thus \\spad{map(/,{}[1,{}2,{}3],{}[4,{}5,{}6]) = [1/4,{}2/4,{}1/2]}. The computation terminates when the end of either list is reached. That is,{} the length of the result list is equal to the minimum of the lengths of \\spad{u1} and \\spad{u2}.")))
NIL
NIL
-(-589 S)
+(-591 S)
((|constructor| (NIL "\\spadtype{List} implements singly-linked lists that are addressable by indices; the index of the first element is 1. In addition to the operations provided by \\spadtype{IndexedList},{} this constructor provides some LISP-like functions such as \\spadfun{null} and \\spadfun{cons}.")) (|setDifference| (($ $ $) "\\spad{setDifference(u1,{}u2)} returns a list of the elements of \\spad{u1} that are not also in \\spad{u2}. The order of elements in the resulting list is unspecified.")) (|setIntersection| (($ $ $) "\\spad{setIntersection(u1,{}u2)} returns a list of the elements that lists \\spad{u1} and \\spad{u2} have in common. The order of elements in the resulting list is unspecified.")) (|setUnion| (($ $ $) "\\spad{setUnion(u1,{}u2)} appends the two lists \\spad{u1} and \\spad{u2},{} then removes all duplicates. The order of elements in the resulting list is unspecified.")) (|append| (($ $ $) "\\spad{append(u1,{}u2)} appends the elements of list \\spad{u1} onto the front of list \\spad{u2}. This new list and \\spad{u2} will share some structure.")) (|cons| (($ |#1| $) "\\spad{cons(element,{}u)} appends \\spad{element} onto the front of list \\spad{u} and returns the new list. This new list and the old one will share some structure.")) (|null| (((|Boolean|) $) "\\spad{null(u)} tests if list \\spad{u} is the empty list.")) (|nil| (($) "\\spad{nil()} returns the empty list.")))
-((-4249 . T) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (-3255 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016)))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-767))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-590 S)
+((-4251 . T) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (-3321 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018)))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-769))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-592 S)
((|substitute| (($ |#1| |#1| $) "\\spad{substitute(x,{}y,{}d)} replace \\spad{x}\\spad{'s} with \\spad{y}\\spad{'s} in dictionary \\spad{d}.")) (|duplicates?| (((|Boolean|) $) "\\spad{duplicates?(d)} tests if dictionary \\spad{d} has duplicate entries.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-591 R)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-593 R)
((|constructor| (NIL "The category of left modules over an \\spad{rng} (ring not necessarily with unit). This is an abelian group which supports left multiplation by elements of the \\spad{rng}. \\blankline")) (* (($ |#1| $) "\\spad{r*x} returns the left multiplication of the module element \\spad{x} by the ring element \\spad{r}.")))
NIL
NIL
-(-592 S E |un|)
+(-594 S E |un|)
((|constructor| (NIL "This internal package represents monoid (abelian or not,{} with or without inverses) as lists and provides some common operations to the various flavors of monoids.")) (|mapGen| (($ (|Mapping| |#1| |#1|) $) "\\spad{mapGen(f,{} a1\\^e1 ... an\\^en)} returns \\spad{f(a1)\\^e1 ... f(an)\\^en}.")) (|mapExpon| (($ (|Mapping| |#2| |#2|) $) "\\spad{mapExpon(f,{} a1\\^e1 ... an\\^en)} returns \\spad{a1\\^f(e1) ... an\\^f(en)}.")) (|commutativeEquality| (((|Boolean|) $ $) "\\spad{commutativeEquality(x,{}y)} returns \\spad{true} if \\spad{x} and \\spad{y} are equal assuming commutativity")) (|plus| (($ $ $) "\\spad{plus(x,{} y)} returns \\spad{x + y} where \\spad{+} is the monoid operation,{} which is assumed commutative.") (($ |#1| |#2| $) "\\spad{plus(s,{} e,{} x)} returns \\spad{e * s + x} where \\spad{+} is the monoid operation,{} which is assumed commutative.")) (|leftMult| (($ |#1| $) "\\spad{leftMult(s,{} a)} returns \\spad{s * a} where \\spad{*} is the monoid operation,{} which is assumed non-commutative.")) (|rightMult| (($ $ |#1|) "\\spad{rightMult(a,{} s)} returns \\spad{a * s} where \\spad{*} is the monoid operation,{} which is assumed non-commutative.")) (|makeUnit| (($) "\\spad{makeUnit()} returns the unit element of the monomial.")) (|size| (((|NonNegativeInteger|) $) "\\spad{size(l)} returns the number of monomials forming \\spad{l}.")) (|reverse!| (($ $) "\\spad{reverse!(l)} reverses the list of monomials forming \\spad{l},{} destroying the element \\spad{l}.")) (|reverse| (($ $) "\\spad{reverse(l)} reverses the list of monomials forming \\spad{l}. This has some effect if the monoid is non-abelian,{} \\spadignore{i.e.} \\spad{reverse(a1\\^e1 ... an\\^en) = an\\^en ... a1\\^e1} which is different.")) (|nthFactor| ((|#1| $ (|Integer|)) "\\spad{nthFactor(l,{} n)} returns the factor of the n^th monomial of \\spad{l}.")) (|nthExpon| ((|#2| $ (|Integer|)) "\\spad{nthExpon(l,{} n)} returns the exponent of the n^th monomial of \\spad{l}.")) (|makeMulti| (($ (|List| (|Record| (|:| |gen| |#1|) (|:| |exp| |#2|)))) "\\spad{makeMulti(l)} returns the element whose list of monomials is \\spad{l}.")) (|makeTerm| (($ |#1| |#2|) "\\spad{makeTerm(s,{} e)} returns the monomial \\spad{s} exponentiated by \\spad{e} (\\spadignore{e.g.} s^e or \\spad{e} * \\spad{s}).")) (|listOfMonoms| (((|List| (|Record| (|:| |gen| |#1|) (|:| |exp| |#2|))) $) "\\spad{listOfMonoms(l)} returns the list of the monomials forming \\spad{l}.")) (|outputForm| (((|OutputForm|) $ (|Mapping| (|OutputForm|) (|OutputForm|) (|OutputForm|)) (|Mapping| (|OutputForm|) (|OutputForm|) (|OutputForm|)) (|Integer|)) "\\spad{outputForm(l,{} fop,{} fexp,{} unit)} converts the monoid element represented by \\spad{l} to an \\spadtype{OutputForm}. Argument unit is the output form for the \\spadignore{unit} of the monoid (\\spadignore{e.g.} 0 or 1),{} \\spad{fop(a,{} b)} is the output form for the monoid operation applied to \\spad{a} and \\spad{b} (\\spadignore{e.g.} \\spad{a + b},{} \\spad{a * b},{} \\spad{ab}),{} and \\spad{fexp(a,{} n)} is the output form for the exponentiation operation applied to \\spad{a} and \\spad{n} (\\spadignore{e.g.} \\spad{n a},{} \\spad{n * a},{} \\spad{a ** n},{} \\spad{a\\^n}).")))
NIL
NIL
-(-593 A S)
+(-595 A S)
((|constructor| (NIL "A linear aggregate is an aggregate whose elements are indexed by integers. Examples of linear aggregates are strings,{} lists,{} and arrays. Most of the exported operations for linear aggregates are non-destructive but are not always efficient for a particular aggregate. For example,{} \\spadfun{concat} of two lists needs only to copy its first argument,{} whereas \\spadfun{concat} of two arrays needs to copy both arguments. Most of the operations exported here apply to infinite objects (\\spadignore{e.g.} streams) as well to finite ones. For finite linear aggregates,{} see \\spadtype{FiniteLinearAggregate}.")) (|setelt| ((|#2| $ (|UniversalSegment| (|Integer|)) |#2|) "\\spad{setelt(u,{}i..j,{}x)} (also written: \\axiom{\\spad{u}(\\spad{i}..\\spad{j}) \\spad{:=} \\spad{x}}) destructively replaces each element in the segment \\axiom{\\spad{u}(\\spad{i}..\\spad{j})} by \\spad{x}. The value \\spad{x} is returned. Note: \\spad{u} is destructively change so that \\axiom{\\spad{u}.\\spad{k} \\spad{:=} \\spad{x} for \\spad{k} in \\spad{i}..\\spad{j}}; its length remains unchanged.")) (|insert| (($ $ $ (|Integer|)) "\\spad{insert(v,{}u,{}k)} returns a copy of \\spad{u} having \\spad{v} inserted beginning at the \\axiom{\\spad{i}}th element. Note: \\axiom{insert(\\spad{v},{}\\spad{u},{}\\spad{k}) = concat( \\spad{u}(0..\\spad{k}-1),{} \\spad{v},{} \\spad{u}(\\spad{k}..) )}.") (($ |#2| $ (|Integer|)) "\\spad{insert(x,{}u,{}i)} returns a copy of \\spad{u} having \\spad{x} as its \\axiom{\\spad{i}}th element. Note: \\axiom{insert(\\spad{x},{}a,{}\\spad{k}) = concat(concat(a(0..\\spad{k}-1),{}\\spad{x}),{}a(\\spad{k}..))}.")) (|delete| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{delete(u,{}i..j)} returns a copy of \\spad{u} with the \\axiom{\\spad{i}}th through \\axiom{\\spad{j}}th element deleted. Note: \\axiom{delete(a,{}\\spad{i}..\\spad{j}) = concat(a(0..\\spad{i}-1),{}a(\\spad{j+1}..))}.") (($ $ (|Integer|)) "\\spad{delete(u,{}i)} returns a copy of \\spad{u} with the \\axiom{\\spad{i}}th element deleted. Note: for lists,{} \\axiom{delete(a,{}\\spad{i}) \\spad{==} concat(a(0..\\spad{i} - 1),{}a(\\spad{i} + 1,{}..))}.")) (|elt| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{elt(u,{}i..j)} (also written: \\axiom{a(\\spad{i}..\\spad{j})}) returns the aggregate of elements \\axiom{\\spad{u}} for \\spad{k} from \\spad{i} to \\spad{j} in that order. Note: in general,{} \\axiom{a.\\spad{s} = [a.\\spad{k} for \\spad{i} in \\spad{s}]}.")) (|map| (($ (|Mapping| |#2| |#2| |#2|) $ $) "\\spad{map(f,{}u,{}v)} returns a new collection \\spad{w} with elements \\axiom{\\spad{z} = \\spad{f}(\\spad{x},{}\\spad{y})} for corresponding elements \\spad{x} and \\spad{y} from \\spad{u} and \\spad{v}. Note: for linear aggregates,{} \\axiom{\\spad{w}.\\spad{i} = \\spad{f}(\\spad{u}.\\spad{i},{}\\spad{v}.\\spad{i})}.")) (|concat| (($ (|List| $)) "\\spad{concat(u)},{} where \\spad{u} is a lists of aggregates \\axiom{[a,{}\\spad{b},{}...,{}\\spad{c}]},{} returns a single aggregate consisting of the elements of \\axiom{a} followed by those of \\spad{b} followed ... by the elements of \\spad{c}. Note: \\axiom{concat(a,{}\\spad{b},{}...,{}\\spad{c}) = concat(a,{}concat(\\spad{b},{}...,{}\\spad{c}))}.") (($ $ $) "\\spad{concat(u,{}v)} returns an aggregate consisting of the elements of \\spad{u} followed by the elements of \\spad{v}. Note: if \\axiom{\\spad{w} = concat(\\spad{u},{}\\spad{v})} then \\axiom{\\spad{w}.\\spad{i} = \\spad{u}.\\spad{i} for \\spad{i} in indices \\spad{u}} and \\axiom{\\spad{w}.(\\spad{j} + maxIndex \\spad{u}) = \\spad{v}.\\spad{j} for \\spad{j} in indices \\spad{v}}.") (($ |#2| $) "\\spad{concat(x,{}u)} returns aggregate \\spad{u} with additional element at the front. Note: for lists: \\axiom{concat(\\spad{x},{}\\spad{u}) \\spad{==} concat([\\spad{x}],{}\\spad{u})}.") (($ $ |#2|) "\\spad{concat(u,{}x)} returns aggregate \\spad{u} with additional element \\spad{x} at the end. Note: for lists,{} \\axiom{concat(\\spad{u},{}\\spad{x}) \\spad{==} concat(\\spad{u},{}[\\spad{x}])}")) (|new| (($ (|NonNegativeInteger|) |#2|) "\\spad{new(n,{}x)} returns \\axiom{fill!(new \\spad{n},{}\\spad{x})}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4249)))
-(-594 S)
+((|HasAttribute| |#1| (QUOTE -4251)))
+(-596 S)
((|constructor| (NIL "A linear aggregate is an aggregate whose elements are indexed by integers. Examples of linear aggregates are strings,{} lists,{} and arrays. Most of the exported operations for linear aggregates are non-destructive but are not always efficient for a particular aggregate. For example,{} \\spadfun{concat} of two lists needs only to copy its first argument,{} whereas \\spadfun{concat} of two arrays needs to copy both arguments. Most of the operations exported here apply to infinite objects (\\spadignore{e.g.} streams) as well to finite ones. For finite linear aggregates,{} see \\spadtype{FiniteLinearAggregate}.")) (|setelt| ((|#1| $ (|UniversalSegment| (|Integer|)) |#1|) "\\spad{setelt(u,{}i..j,{}x)} (also written: \\axiom{\\spad{u}(\\spad{i}..\\spad{j}) \\spad{:=} \\spad{x}}) destructively replaces each element in the segment \\axiom{\\spad{u}(\\spad{i}..\\spad{j})} by \\spad{x}. The value \\spad{x} is returned. Note: \\spad{u} is destructively change so that \\axiom{\\spad{u}.\\spad{k} \\spad{:=} \\spad{x} for \\spad{k} in \\spad{i}..\\spad{j}}; its length remains unchanged.")) (|insert| (($ $ $ (|Integer|)) "\\spad{insert(v,{}u,{}k)} returns a copy of \\spad{u} having \\spad{v} inserted beginning at the \\axiom{\\spad{i}}th element. Note: \\axiom{insert(\\spad{v},{}\\spad{u},{}\\spad{k}) = concat( \\spad{u}(0..\\spad{k}-1),{} \\spad{v},{} \\spad{u}(\\spad{k}..) )}.") (($ |#1| $ (|Integer|)) "\\spad{insert(x,{}u,{}i)} returns a copy of \\spad{u} having \\spad{x} as its \\axiom{\\spad{i}}th element. Note: \\axiom{insert(\\spad{x},{}a,{}\\spad{k}) = concat(concat(a(0..\\spad{k}-1),{}\\spad{x}),{}a(\\spad{k}..))}.")) (|delete| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{delete(u,{}i..j)} returns a copy of \\spad{u} with the \\axiom{\\spad{i}}th through \\axiom{\\spad{j}}th element deleted. Note: \\axiom{delete(a,{}\\spad{i}..\\spad{j}) = concat(a(0..\\spad{i}-1),{}a(\\spad{j+1}..))}.") (($ $ (|Integer|)) "\\spad{delete(u,{}i)} returns a copy of \\spad{u} with the \\axiom{\\spad{i}}th element deleted. Note: for lists,{} \\axiom{delete(a,{}\\spad{i}) \\spad{==} concat(a(0..\\spad{i} - 1),{}a(\\spad{i} + 1,{}..))}.")) (|elt| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{elt(u,{}i..j)} (also written: \\axiom{a(\\spad{i}..\\spad{j})}) returns the aggregate of elements \\axiom{\\spad{u}} for \\spad{k} from \\spad{i} to \\spad{j} in that order. Note: in general,{} \\axiom{a.\\spad{s} = [a.\\spad{k} for \\spad{i} in \\spad{s}]}.")) (|map| (($ (|Mapping| |#1| |#1| |#1|) $ $) "\\spad{map(f,{}u,{}v)} returns a new collection \\spad{w} with elements \\axiom{\\spad{z} = \\spad{f}(\\spad{x},{}\\spad{y})} for corresponding elements \\spad{x} and \\spad{y} from \\spad{u} and \\spad{v}. Note: for linear aggregates,{} \\axiom{\\spad{w}.\\spad{i} = \\spad{f}(\\spad{u}.\\spad{i},{}\\spad{v}.\\spad{i})}.")) (|concat| (($ (|List| $)) "\\spad{concat(u)},{} where \\spad{u} is a lists of aggregates \\axiom{[a,{}\\spad{b},{}...,{}\\spad{c}]},{} returns a single aggregate consisting of the elements of \\axiom{a} followed by those of \\spad{b} followed ... by the elements of \\spad{c}. Note: \\axiom{concat(a,{}\\spad{b},{}...,{}\\spad{c}) = concat(a,{}concat(\\spad{b},{}...,{}\\spad{c}))}.") (($ $ $) "\\spad{concat(u,{}v)} returns an aggregate consisting of the elements of \\spad{u} followed by the elements of \\spad{v}. Note: if \\axiom{\\spad{w} = concat(\\spad{u},{}\\spad{v})} then \\axiom{\\spad{w}.\\spad{i} = \\spad{u}.\\spad{i} for \\spad{i} in indices \\spad{u}} and \\axiom{\\spad{w}.(\\spad{j} + maxIndex \\spad{u}) = \\spad{v}.\\spad{j} for \\spad{j} in indices \\spad{v}}.") (($ |#1| $) "\\spad{concat(x,{}u)} returns aggregate \\spad{u} with additional element at the front. Note: for lists: \\axiom{concat(\\spad{x},{}\\spad{u}) \\spad{==} concat([\\spad{x}],{}\\spad{u})}.") (($ $ |#1|) "\\spad{concat(u,{}x)} returns aggregate \\spad{u} with additional element \\spad{x} at the end. Note: for lists,{} \\axiom{concat(\\spad{u},{}\\spad{x}) \\spad{==} concat(\\spad{u},{}[\\spad{x}])}")) (|new| (($ (|NonNegativeInteger|) |#1|) "\\spad{new(n,{}x)} returns \\axiom{fill!(new \\spad{n},{}\\spad{x})}.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-595 R -3894 L)
+(-597 R -3576 L)
((|constructor| (NIL "\\spad{ElementaryFunctionLODESolver} provides the top-level functions for finding closed form solutions of linear ordinary differential equations and initial value problems.")) (|solve| (((|Union| |#2| "failed") |#3| |#2| (|Symbol|) |#2| (|List| |#2|)) "\\spad{solve(op,{} g,{} x,{} a,{} [y0,{}...,{}ym])} returns either the solution of the initial value problem \\spad{op y = g,{} y(a) = y0,{} y'(a) = y1,{}...} or \"failed\" if the solution cannot be found; \\spad{x} is the dependent variable.") (((|Union| (|Record| (|:| |particular| |#2|) (|:| |basis| (|List| |#2|))) "failed") |#3| |#2| (|Symbol|)) "\\spad{solve(op,{} g,{} x)} returns either a solution of the ordinary differential equation \\spad{op y = g} or \"failed\" if no non-trivial solution can be found; When found,{} the solution is returned in the form \\spad{[h,{} [b1,{}...,{}bm]]} where \\spad{h} is a particular solution and and \\spad{[b1,{}...bm]} are linearly independent solutions of the associated homogenuous equation \\spad{op y = 0}. A full basis for the solutions of the homogenuous equation is not always returned,{} only the solutions which were found; \\spad{x} is the dependent variable.")))
NIL
NIL
-(-596 A)
+(-598 A)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperator1} defines a ring of differential operators with coefficients in a differential ring A. Multiplication of operators corresponds to functional composition: \\indented{4}{\\spad{(L1 * L2).(f) = L1 L2 f}}")))
-((-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-339))))
-(-597 A M)
+((-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-341))))
+(-599 A M)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperator2} defines a ring of differential operators with coefficients in a differential ring A and acting on an A-module \\spad{M}. Multiplication of operators corresponds to functional composition: \\indented{4}{\\spad{(L1 * L2).(f) = L1 L2 f}}")) (|differentiate| (($ $) "\\spad{differentiate(x)} returns the derivative of \\spad{x}")))
-((-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-339))))
-(-598 S A)
+((-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-341))))
+(-600 S A)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperatorCategory} is the category of differential operators with coefficients in a ring A with a given derivation. Multiplication of operators corresponds to functional composition: \\indented{4}{\\spad{(L1 * L2).(f) = L1 L2 f}}")) (|directSum| (($ $ $) "\\spad{directSum(a,{}b)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the sums of a solution of \\spad{a} by a solution of \\spad{b}.")) (|symmetricSquare| (($ $) "\\spad{symmetricSquare(a)} computes \\spad{symmetricProduct(a,{}a)} using a more efficient method.")) (|symmetricPower| (($ $ (|NonNegativeInteger|)) "\\spad{symmetricPower(a,{}n)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of \\spad{n} solutions of \\spad{a}.")) (|symmetricProduct| (($ $ $) "\\spad{symmetricProduct(a,{}b)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of a solution of \\spad{a} by a solution of \\spad{b}.")) (|adjoint| (($ $) "\\spad{adjoint(a)} returns the adjoint operator of a.")) (D (($) "\\spad{D()} provides the operator corresponding to a derivation in the ring \\spad{A}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-339))))
-(-599 A)
+((|HasCategory| |#2| (QUOTE (-341))))
+(-601 A)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperatorCategory} is the category of differential operators with coefficients in a ring A with a given derivation. Multiplication of operators corresponds to functional composition: \\indented{4}{\\spad{(L1 * L2).(f) = L1 L2 f}}")) (|directSum| (($ $ $) "\\spad{directSum(a,{}b)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the sums of a solution of \\spad{a} by a solution of \\spad{b}.")) (|symmetricSquare| (($ $) "\\spad{symmetricSquare(a)} computes \\spad{symmetricProduct(a,{}a)} using a more efficient method.")) (|symmetricPower| (($ $ (|NonNegativeInteger|)) "\\spad{symmetricPower(a,{}n)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of \\spad{n} solutions of \\spad{a}.")) (|symmetricProduct| (($ $ $) "\\spad{symmetricProduct(a,{}b)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of a solution of \\spad{a} by a solution of \\spad{b}.")) (|adjoint| (($ $) "\\spad{adjoint(a)} returns the adjoint operator of a.")) (D (($) "\\spad{D()} provides the operator corresponding to a derivation in the ring \\spad{A}.")))
-((-4242 . T) (-4243 . T) (-4245 . T))
+((-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-600 -3894 UP)
+(-602 -3576 UP)
((|constructor| (NIL "\\spadtype{LinearOrdinaryDifferentialOperatorFactorizer} provides a factorizer for linear ordinary differential operators whose coefficients are rational functions.")) (|factor1| (((|List| (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) "\\spad{factor1(a)} returns the factorisation of a,{} assuming that a has no first-order right factor.")) (|factor| (((|List| (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) "\\spad{factor(a)} returns the factorisation of a.") (((|List| (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|)) "\\spad{factor(a,{} zeros)} returns the factorisation of a. \\spad{zeros} is a zero finder in \\spad{UP}.")))
NIL
((|HasCategory| |#1| (QUOTE (-27))))
-(-601 A -2208)
+(-603 A -2643)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperator} defines a ring of differential operators with coefficients in a ring A with a given derivation. Multiplication of operators corresponds to functional composition: \\indented{4}{\\spad{(L1 * L2).(f) = L1 L2 f}}")))
-((-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-339))))
-(-602 A L)
+((-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-341))))
+(-604 A L)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperatorsOps} provides symmetric products and sums for linear ordinary differential operators.")) (|directSum| ((|#2| |#2| |#2| (|Mapping| |#1| |#1|)) "\\spad{directSum(a,{}b,{}D)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the sums of a solution of \\spad{a} by a solution of \\spad{b}. \\spad{D} is the derivation to use.")) (|symmetricPower| ((|#2| |#2| (|NonNegativeInteger|) (|Mapping| |#1| |#1|)) "\\spad{symmetricPower(a,{}n,{}D)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of \\spad{n} solutions of \\spad{a}. \\spad{D} is the derivation to use.")) (|symmetricProduct| ((|#2| |#2| |#2| (|Mapping| |#1| |#1|)) "\\spad{symmetricProduct(a,{}b,{}D)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of a solution of \\spad{a} by a solution of \\spad{b}. \\spad{D} is the derivation to use.")))
NIL
NIL
-(-603 S)
+(-605 S)
((|constructor| (NIL "`Logic' provides the basic operations for lattices,{} \\spadignore{e.g.} boolean algebra.")) (|\\/| (($ $ $) "\\spadignore{ \\/ } returns the logical `join',{} \\spadignore{e.g.} `or'.")) (|/\\| (($ $ $) "\\spadignore { /\\ }returns the logical `meet',{} \\spadignore{e.g.} `and'.")) (~ (($ $) "\\spad{~(x)} returns the logical complement of \\spad{x}.")))
NIL
NIL
-(-604)
+(-606)
((|constructor| (NIL "`Logic' provides the basic operations for lattices,{} \\spadignore{e.g.} boolean algebra.")) (|\\/| (($ $ $) "\\spadignore{ \\/ } returns the logical `join',{} \\spadignore{e.g.} `or'.")) (|/\\| (($ $ $) "\\spadignore { /\\ }returns the logical `meet',{} \\spadignore{e.g.} `and'.")) (~ (($ $) "\\spad{~(x)} returns the logical complement of \\spad{x}.")))
NIL
NIL
-(-605 M R S)
+(-607 M R S)
((|constructor| (NIL "Localize(\\spad{M},{}\\spad{R},{}\\spad{S}) produces fractions with numerators from an \\spad{R} module \\spad{M} and denominators from some multiplicative subset \\spad{D} of \\spad{R}.")) (|denom| ((|#3| $) "\\spad{denom x} returns the denominator of \\spad{x}.")) (|numer| ((|#1| $) "\\spad{numer x} returns the numerator of \\spad{x}.")) (/ (($ |#1| |#3|) "\\spad{m / d} divides the element \\spad{m} by \\spad{d}.") (($ $ |#3|) "\\spad{x / d} divides the element \\spad{x} by \\spad{d}.")))
-((-4243 . T) (-4242 . T))
-((|HasCategory| |#1| (QUOTE (-730))))
-(-606 R)
+((-4245 . T) (-4244 . T))
+((|HasCategory| |#1| (QUOTE (-732))))
+(-608 R)
((|constructor| (NIL "Given a PolynomialFactorizationExplicit ring,{} this package provides a defaulting rule for the \\spad{solveLinearPolynomialEquation} operation,{} by moving into the field of fractions,{} and solving it there via the \\spad{multiEuclidean} operation.")) (|solveLinearPolynomialEquationByFractions| (((|Union| (|List| (|SparseUnivariatePolynomial| |#1|)) "failed") (|List| (|SparseUnivariatePolynomial| |#1|)) (|SparseUnivariatePolynomial| |#1|)) "\\spad{solveLinearPolynomialEquationByFractions([f1,{} ...,{} fn],{} g)} (where the \\spad{fi} are relatively prime to each other) returns a list of \\spad{ai} such that \\spad{g/prod \\spad{fi} = sum ai/fi} or returns \"failed\" if no such exists.")))
NIL
NIL
-(-607 |VarSet| R)
+(-609 |VarSet| R)
((|constructor| (NIL "This type supports Lie polynomials in Lyndon basis see Free Lie Algebras by \\spad{C}. Reutenauer (Oxford science publications). \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr}).")) (|construct| (($ $ (|LyndonWord| |#1|)) "\\axiom{construct(\\spad{x},{}\\spad{y})} returns the Lie bracket \\axiom{[\\spad{x},{}\\spad{y}]}.") (($ (|LyndonWord| |#1|) $) "\\axiom{construct(\\spad{x},{}\\spad{y})} returns the Lie bracket \\axiom{[\\spad{x},{}\\spad{y}]}.") (($ (|LyndonWord| |#1|) (|LyndonWord| |#1|)) "\\axiom{construct(\\spad{x},{}\\spad{y})} returns the Lie bracket \\axiom{[\\spad{x},{}\\spad{y}]}.")) (|LiePolyIfCan| (((|Union| $ "failed") (|XDistributedPolynomial| |#1| |#2|)) "\\axiom{LiePolyIfCan(\\spad{p})} returns \\axiom{\\spad{p}} in Lyndon basis if \\axiom{\\spad{p}} is a Lie polynomial,{} otherwise \\axiom{\"failed\"} is returned.")))
-((|JacobiIdentity| . T) (|NullSquare| . T) (-4243 . T) (-4242 . T))
-((|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-158))))
-(-608 A S)
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4245 . T) (-4244 . T))
+((|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-160))))
+(-610 A S)
((|constructor| (NIL "A list aggregate is a model for a linked list data structure. A linked list is a versatile data structure. Insertion and deletion are efficient and searching is a linear operation.")) (|list| (($ |#2|) "\\spad{list(x)} returns the list of one element \\spad{x}.")))
NIL
NIL
-(-609 S)
+(-611 S)
((|constructor| (NIL "A list aggregate is a model for a linked list data structure. A linked list is a versatile data structure. Insertion and deletion are efficient and searching is a linear operation.")) (|list| (($ |#1|) "\\spad{list(x)} returns the list of one element \\spad{x}.")))
-((-4249 . T) (-4248 . T) (-2500 . T))
+((-4251 . T) (-4250 . T) (-2137 . T))
NIL
-(-610 -3894)
+(-612 -3576)
((|constructor| (NIL "This package solves linear system in the matrix form \\spad{AX = B}. It is essentially a particular instantiation of the package \\spadtype{LinearSystemMatrixPackage} for Matrix and Vector. This package\\spad{'s} existence makes it easier to use \\spadfun{solve} in the AXIOM interpreter.")) (|rank| (((|NonNegativeInteger|) (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{rank(A,{}B)} computes the rank of the complete matrix \\spad{(A|B)} of the linear system \\spad{AX = B}.")) (|hasSolution?| (((|Boolean|) (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{hasSolution?(A,{}B)} tests if the linear system \\spad{AX = B} has a solution.")) (|particularSolution| (((|Union| (|Vector| |#1|) "failed") (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{particularSolution(A,{}B)} finds a particular solution of the linear system \\spad{AX = B}.")) (|solve| (((|List| (|Record| (|:| |particular| (|Union| (|Vector| |#1|) "failed")) (|:| |basis| (|List| (|Vector| |#1|))))) (|List| (|List| |#1|)) (|List| (|Vector| |#1|))) "\\spad{solve(A,{}LB)} finds a particular soln of the systems \\spad{AX = B} and a basis of the associated homogeneous systems \\spad{AX = 0} where \\spad{B} varies in the list of column vectors \\spad{LB}.") (((|List| (|Record| (|:| |particular| (|Union| (|Vector| |#1|) "failed")) (|:| |basis| (|List| (|Vector| |#1|))))) (|Matrix| |#1|) (|List| (|Vector| |#1|))) "\\spad{solve(A,{}LB)} finds a particular soln of the systems \\spad{AX = B} and a basis of the associated homogeneous systems \\spad{AX = 0} where \\spad{B} varies in the list of column vectors \\spad{LB}.") (((|Record| (|:| |particular| (|Union| (|Vector| |#1|) "failed")) (|:| |basis| (|List| (|Vector| |#1|)))) (|List| (|List| |#1|)) (|Vector| |#1|)) "\\spad{solve(A,{}B)} finds a particular solution of the system \\spad{AX = B} and a basis of the associated homogeneous system \\spad{AX = 0}.") (((|Record| (|:| |particular| (|Union| (|Vector| |#1|) "failed")) (|:| |basis| (|List| (|Vector| |#1|)))) (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{solve(A,{}B)} finds a particular solution of the system \\spad{AX = B} and a basis of the associated homogeneous system \\spad{AX = 0}.")))
NIL
NIL
-(-611 -3894 |Row| |Col| M)
+(-613 -3576 |Row| |Col| M)
((|constructor| (NIL "This package solves linear system in the matrix form \\spad{AX = B}.")) (|rank| (((|NonNegativeInteger|) |#4| |#3|) "\\spad{rank(A,{}B)} computes the rank of the complete matrix \\spad{(A|B)} of the linear system \\spad{AX = B}.")) (|hasSolution?| (((|Boolean|) |#4| |#3|) "\\spad{hasSolution?(A,{}B)} tests if the linear system \\spad{AX = B} has a solution.")) (|particularSolution| (((|Union| |#3| "failed") |#4| |#3|) "\\spad{particularSolution(A,{}B)} finds a particular solution of the linear system \\spad{AX = B}.")) (|solve| (((|List| (|Record| (|:| |particular| (|Union| |#3| "failed")) (|:| |basis| (|List| |#3|)))) |#4| (|List| |#3|)) "\\spad{solve(A,{}LB)} finds a particular soln of the systems \\spad{AX = B} and a basis of the associated homogeneous systems \\spad{AX = 0} where \\spad{B} varies in the list of column vectors \\spad{LB}.") (((|Record| (|:| |particular| (|Union| |#3| "failed")) (|:| |basis| (|List| |#3|))) |#4| |#3|) "\\spad{solve(A,{}B)} finds a particular solution of the system \\spad{AX = B} and a basis of the associated homogeneous system \\spad{AX = 0}.")))
NIL
NIL
-(-612 R E OV P)
+(-614 R E OV P)
((|constructor| (NIL "this package finds the solutions of linear systems presented as a list of polynomials.")) (|linSolve| (((|Record| (|:| |particular| (|Union| (|Vector| (|Fraction| |#4|)) "failed")) (|:| |basis| (|List| (|Vector| (|Fraction| |#4|))))) (|List| |#4|) (|List| |#3|)) "\\spad{linSolve(lp,{}lvar)} finds the solutions of the linear system of polynomials \\spad{lp} = 0 with respect to the list of symbols \\spad{lvar}.")))
NIL
NIL
-(-613 |n| R)
+(-615 |n| R)
((|constructor| (NIL "LieSquareMatrix(\\spad{n},{}\\spad{R}) implements the Lie algebra of the \\spad{n} by \\spad{n} matrices over the commutative ring \\spad{R}. The Lie bracket (commutator) of the algebra is given by \\spad{a*b := (a *\\$SQMATRIX(n,{}R) b - b *\\$SQMATRIX(n,{}R) a)},{} where \\spadfun{*\\$SQMATRIX(\\spad{n},{}\\spad{R})} is the usual matrix multiplication.")))
-((-4245 . T) (-4248 . T) (-4242 . T) (-4243 . T))
-((|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-211))) (|HasAttribute| |#2| (QUOTE (-4250 "*"))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))) (-3255 (-12 (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))))) (|HasCategory| |#2| (QUOTE (-284))) (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-515))) (-3255 (|HasAttribute| |#2| (QUOTE (-4250 "*"))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-211)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (QUOTE (-158))))
-(-614 |VarSet|)
+((-4247 . T) (-4250 . T) (-4244 . T) (-4245 . T))
+((|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-213))) (|HasAttribute| |#2| (QUOTE (-4252 "*"))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))) (-3321 (-12 (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))))) (|HasCategory| |#2| (QUOTE (-286))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-517))) (-3321 (|HasAttribute| |#2| (QUOTE (-4252 "*"))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-213)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (QUOTE (-160))))
+(-616 |VarSet|)
((|constructor| (NIL "Lyndon words over arbitrary (ordered) symbols: see Free Lie Algebras by \\spad{C}. Reutenauer (Oxford science publications). A Lyndon word is a word which is smaller than any of its right factors \\spad{w}.\\spad{r}.\\spad{t}. the pure lexicographical ordering. If \\axiom{a} and \\axiom{\\spad{b}} are two Lyndon words such that \\axiom{a < \\spad{b}} holds \\spad{w}.\\spad{r}.\\spad{t} lexicographical ordering then \\axiom{a*b} is a Lyndon word. Parenthesized Lyndon words can be generated from symbols by using the following rule: \\axiom{[[a,{}\\spad{b}],{}\\spad{c}]} is a Lyndon word iff \\axiom{a*b < \\spad{c} \\spad{<=} \\spad{b}} holds. Lyndon words are internally represented by binary trees using the \\spadtype{Magma} domain constructor. Two ordering are provided: lexicographic and length-lexicographic. \\newline Author : Michel Petitot (petitot@lifl.\\spad{fr}).")) (|LyndonWordsList| (((|List| $) (|List| |#1|) (|PositiveInteger|)) "\\axiom{LyndonWordsList(\\spad{vl},{} \\spad{n})} returns the list of Lyndon words over the alphabet \\axiom{\\spad{vl}},{} up to order \\axiom{\\spad{n}}.")) (|LyndonWordsList1| (((|OneDimensionalArray| (|List| $)) (|List| |#1|) (|PositiveInteger|)) "\\axiom{LyndonWordsList1(\\spad{vl},{} \\spad{n})} returns an array of lists of Lyndon words over the alphabet \\axiom{\\spad{vl}},{} up to order \\axiom{\\spad{n}}.")) (|varList| (((|List| |#1|) $) "\\axiom{varList(\\spad{x})} returns the list of distinct entries of \\axiom{\\spad{x}}.")) (|lyndonIfCan| (((|Union| $ "failed") (|OrderedFreeMonoid| |#1|)) "\\axiom{lyndonIfCan(\\spad{w})} convert \\axiom{\\spad{w}} into a Lyndon word.")) (|lyndon| (($ (|OrderedFreeMonoid| |#1|)) "\\axiom{lyndon(\\spad{w})} convert \\axiom{\\spad{w}} into a Lyndon word,{} error if \\axiom{\\spad{w}} is not a Lyndon word.")) (|lyndon?| (((|Boolean|) (|OrderedFreeMonoid| |#1|)) "\\axiom{lyndon?(\\spad{w})} test if \\axiom{\\spad{w}} is a Lyndon word.")) (|factor| (((|List| $) (|OrderedFreeMonoid| |#1|)) "\\axiom{factor(\\spad{x})} returns the decreasing factorization into Lyndon words.")) (|coerce| (((|Magma| |#1|) $) "\\axiom{coerce(\\spad{x})} returns the element of \\axiomType{Magma}(VarSet) corresponding to \\axiom{\\spad{x}}.") (((|OrderedFreeMonoid| |#1|) $) "\\axiom{coerce(\\spad{x})} returns the element of \\axiomType{OrderedFreeMonoid}(VarSet) corresponding to \\axiom{\\spad{x}}.")) (|lexico| (((|Boolean|) $ $) "\\axiom{lexico(\\spad{x},{}\\spad{y})} returns \\axiom{\\spad{true}} iff \\axiom{\\spad{x}} is smaller than \\axiom{\\spad{y}} \\spad{w}.\\spad{r}.\\spad{t}. the lexicographical ordering induced by \\axiom{VarSet}.")) (|length| (((|PositiveInteger|) $) "\\axiom{length(\\spad{x})} returns the number of entries in \\axiom{\\spad{x}}.")) (|right| (($ $) "\\axiom{right(\\spad{x})} returns right subtree of \\axiom{\\spad{x}} or error if \\axiomOpFrom{retractable?}{LyndonWord}(\\axiom{\\spad{x}}) is \\spad{true}.")) (|left| (($ $) "\\axiom{left(\\spad{x})} returns left subtree of \\axiom{\\spad{x}} or error if \\axiomOpFrom{retractable?}{LyndonWord}(\\axiom{\\spad{x}}) is \\spad{true}.")) (|retractable?| (((|Boolean|) $) "\\axiom{retractable?(\\spad{x})} tests if \\axiom{\\spad{x}} is a tree with only one entry.")))
NIL
NIL
-(-615 A S)
+(-617 A S)
((|constructor| (NIL "LazyStreamAggregate is the category of streams with lazy evaluation. It is understood that the function 'empty?' will cause lazy evaluation if necessary to determine if there are entries. Functions which call 'empty?',{} \\spadignore{e.g.} 'first' and 'rest',{} will also cause lazy evaluation if necessary.")) (|complete| (($ $) "\\spad{complete(st)} causes all entries of 'st' to be computed. this function should only be called on streams which are known to be finite.")) (|extend| (($ $ (|Integer|)) "\\spad{extend(st,{}n)} causes entries to be computed,{} if necessary,{} so that 'st' will have at least \\spad{'n'} explicit entries or so that all entries of 'st' will be computed if 'st' is finite with length \\spad{<=} \\spad{n}.")) (|numberOfComputedEntries| (((|NonNegativeInteger|) $) "\\spad{numberOfComputedEntries(st)} returns the number of explicitly computed entries of stream \\spad{st} which exist immediately prior to the time this function is called.")) (|rst| (($ $) "\\spad{rst(s)} returns a pointer to the next node of stream \\spad{s}. Caution: this function should only be called after a \\spad{empty?} test has been made since there no error check.")) (|frst| ((|#2| $) "\\spad{frst(s)} returns the first element of stream \\spad{s}. Caution: this function should only be called after a \\spad{empty?} test has been made since there no error check.")) (|lazyEvaluate| (($ $) "\\spad{lazyEvaluate(s)} causes one lazy evaluation of stream \\spad{s}. Caution: the first node must be a lazy evaluation mechanism (satisfies \\spad{lazy?(s) = true}) as there is no error check. Note: a call to this function may or may not produce an explicit first entry")) (|lazy?| (((|Boolean|) $) "\\spad{lazy?(s)} returns \\spad{true} if the first node of the stream \\spad{s} is a lazy evaluation mechanism which could produce an additional entry to \\spad{s}.")) (|explicitlyEmpty?| (((|Boolean|) $) "\\spad{explicitlyEmpty?(s)} returns \\spad{true} if the stream is an (explicitly) empty stream. Note: this is a null test which will not cause lazy evaluation.")) (|explicitEntries?| (((|Boolean|) $) "\\spad{explicitEntries?(s)} returns \\spad{true} if the stream \\spad{s} has explicitly computed entries,{} and \\spad{false} otherwise.")) (|select| (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{select(f,{}st)} returns a stream consisting of those elements of stream \\spad{st} satisfying the predicate \\spad{f}. Note: \\spad{select(f,{}st) = [x for x in st | f(x)]}.")) (|remove| (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{remove(f,{}st)} returns a stream consisting of those elements of stream \\spad{st} which do not satisfy the predicate \\spad{f}. Note: \\spad{remove(f,{}st) = [x for x in st | not f(x)]}.")))
NIL
NIL
-(-616 S)
+(-618 S)
((|constructor| (NIL "LazyStreamAggregate is the category of streams with lazy evaluation. It is understood that the function 'empty?' will cause lazy evaluation if necessary to determine if there are entries. Functions which call 'empty?',{} \\spadignore{e.g.} 'first' and 'rest',{} will also cause lazy evaluation if necessary.")) (|complete| (($ $) "\\spad{complete(st)} causes all entries of 'st' to be computed. this function should only be called on streams which are known to be finite.")) (|extend| (($ $ (|Integer|)) "\\spad{extend(st,{}n)} causes entries to be computed,{} if necessary,{} so that 'st' will have at least \\spad{'n'} explicit entries or so that all entries of 'st' will be computed if 'st' is finite with length \\spad{<=} \\spad{n}.")) (|numberOfComputedEntries| (((|NonNegativeInteger|) $) "\\spad{numberOfComputedEntries(st)} returns the number of explicitly computed entries of stream \\spad{st} which exist immediately prior to the time this function is called.")) (|rst| (($ $) "\\spad{rst(s)} returns a pointer to the next node of stream \\spad{s}. Caution: this function should only be called after a \\spad{empty?} test has been made since there no error check.")) (|frst| ((|#1| $) "\\spad{frst(s)} returns the first element of stream \\spad{s}. Caution: this function should only be called after a \\spad{empty?} test has been made since there no error check.")) (|lazyEvaluate| (($ $) "\\spad{lazyEvaluate(s)} causes one lazy evaluation of stream \\spad{s}. Caution: the first node must be a lazy evaluation mechanism (satisfies \\spad{lazy?(s) = true}) as there is no error check. Note: a call to this function may or may not produce an explicit first entry")) (|lazy?| (((|Boolean|) $) "\\spad{lazy?(s)} returns \\spad{true} if the first node of the stream \\spad{s} is a lazy evaluation mechanism which could produce an additional entry to \\spad{s}.")) (|explicitlyEmpty?| (((|Boolean|) $) "\\spad{explicitlyEmpty?(s)} returns \\spad{true} if the stream is an (explicitly) empty stream. Note: this is a null test which will not cause lazy evaluation.")) (|explicitEntries?| (((|Boolean|) $) "\\spad{explicitEntries?(s)} returns \\spad{true} if the stream \\spad{s} has explicitly computed entries,{} and \\spad{false} otherwise.")) (|select| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{select(f,{}st)} returns a stream consisting of those elements of stream \\spad{st} satisfying the predicate \\spad{f}. Note: \\spad{select(f,{}st) = [x for x in st | f(x)]}.")) (|remove| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{remove(f,{}st)} returns a stream consisting of those elements of stream \\spad{st} which do not satisfy the predicate \\spad{f}. Note: \\spad{remove(f,{}st) = [x for x in st | not f(x)]}.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-617 R)
+(-619 R)
((|constructor| (NIL "This domain represents three dimensional matrices over a general object type")) (|matrixDimensions| (((|Vector| (|NonNegativeInteger|)) $) "\\spad{matrixDimensions(x)} returns the dimensions of a matrix")) (|matrixConcat3D| (($ (|Symbol|) $ $) "\\spad{matrixConcat3D(s,{}x,{}y)} concatenates two 3-\\spad{D} matrices along a specified axis")) (|coerce| (((|PrimitiveArray| (|PrimitiveArray| (|PrimitiveArray| |#1|))) $) "\\spad{coerce(x)} moves from the domain to the representation type") (($ (|PrimitiveArray| (|PrimitiveArray| (|PrimitiveArray| |#1|)))) "\\spad{coerce(p)} moves from the representation type (PrimitiveArray PrimitiveArray PrimitiveArray \\spad{R}) to the domain")) (|setelt!| ((|#1| $ (|NonNegativeInteger|) (|NonNegativeInteger|) (|NonNegativeInteger|) |#1|) "\\spad{setelt!(x,{}i,{}j,{}k,{}s)} (or \\spad{x}.\\spad{i}.\\spad{j}.k:=s) sets a specific element of the array to some value of type \\spad{R}")) (|elt| ((|#1| $ (|NonNegativeInteger|) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{elt(x,{}i,{}j,{}k)} extract an element from the matrix \\spad{x}")) (|construct| (($ (|List| (|List| (|List| |#1|)))) "\\spad{construct(lll)} creates a 3-\\spad{D} matrix from a List List List \\spad{R} \\spad{lll}")) (|plus| (($ $ $) "\\spad{plus(x,{}y)} adds two matrices,{} term by term we note that they must be the same size")) (|identityMatrix| (($ (|NonNegativeInteger|)) "\\spad{identityMatrix(n)} create an identity matrix we note that this must be square")) (|zeroMatrix| (($ (|NonNegativeInteger|) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{zeroMatrix(i,{}j,{}k)} create a matrix with all zero terms")))
NIL
-((-3255 (-12 (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (QUOTE (-973))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-618 |VarSet|)
+((-3321 (-12 (|HasCategory| |#1| (QUOTE (-975))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (QUOTE (-975))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-620 |VarSet|)
((|constructor| (NIL "This type is the basic representation of parenthesized words (binary trees over arbitrary symbols) useful in \\spadtype{LiePolynomial}. \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr}).")) (|varList| (((|List| |#1|) $) "\\axiom{varList(\\spad{x})} returns the list of distinct entries of \\axiom{\\spad{x}}.")) (|right| (($ $) "\\axiom{right(\\spad{x})} returns right subtree of \\axiom{\\spad{x}} or error if \\axiomOpFrom{retractable?}{Magma}(\\axiom{\\spad{x}}) is \\spad{true}.")) (|retractable?| (((|Boolean|) $) "\\axiom{retractable?(\\spad{x})} tests if \\axiom{\\spad{x}} is a tree with only one entry.")) (|rest| (($ $) "\\axiom{rest(\\spad{x})} return \\axiom{\\spad{x}} without the first entry or error if \\axiomOpFrom{retractable?}{Magma}(\\axiom{\\spad{x}}) is \\spad{true}.")) (|mirror| (($ $) "\\axiom{mirror(\\spad{x})} returns the reversed word of \\axiom{\\spad{x}}. That is \\axiom{\\spad{x}} itself if \\axiomOpFrom{retractable?}{Magma}(\\axiom{\\spad{x}}) is \\spad{true} and \\axiom{mirror(\\spad{z}) * mirror(\\spad{y})} if \\axiom{\\spad{x}} is \\axiom{\\spad{y*z}}.")) (|lexico| (((|Boolean|) $ $) "\\axiom{lexico(\\spad{x},{}\\spad{y})} returns \\axiom{\\spad{true}} iff \\axiom{\\spad{x}} is smaller than \\axiom{\\spad{y}} \\spad{w}.\\spad{r}.\\spad{t}. the lexicographical ordering induced by \\axiom{VarSet}. \\spad{N}.\\spad{B}. This operation does not take into account the tree structure of its arguments. Thus this is not a total ordering.")) (|length| (((|PositiveInteger|) $) "\\axiom{length(\\spad{x})} returns the number of entries in \\axiom{\\spad{x}}.")) (|left| (($ $) "\\axiom{left(\\spad{x})} returns left subtree of \\axiom{\\spad{x}} or error if \\axiomOpFrom{retractable?}{Magma}(\\axiom{\\spad{x}}) is \\spad{true}.")) (|first| ((|#1| $) "\\axiom{first(\\spad{x})} returns the first entry of the tree \\axiom{\\spad{x}}.")) (|coerce| (((|OrderedFreeMonoid| |#1|) $) "\\axiom{coerce(\\spad{x})} returns the element of \\axiomType{OrderedFreeMonoid}(VarSet) corresponding to \\axiom{\\spad{x}} by removing parentheses.")) (* (($ $ $) "\\axiom{x*y} returns the tree \\axiom{[\\spad{x},{}\\spad{y}]}.")))
NIL
NIL
-(-619 A)
+(-621 A)
((|constructor| (NIL "various Currying operations.")) (|recur| ((|#1| (|Mapping| |#1| (|NonNegativeInteger|) |#1|) (|NonNegativeInteger|) |#1|) "\\spad{recur(n,{}g,{}x)} is \\spad{g(n,{}g(n-1,{}..g(1,{}x)..))}.")) (|iter| ((|#1| (|Mapping| |#1| |#1|) (|NonNegativeInteger|) |#1|) "\\spad{iter(f,{}n,{}x)} applies \\spad{f n} times to \\spad{x}.")))
NIL
NIL
-(-620 A C)
+(-622 A C)
((|constructor| (NIL "various Currying operations.")) (|arg2| ((|#2| |#1| |#2|) "\\spad{arg2(a,{}c)} selects its second argument.")) (|arg1| ((|#1| |#1| |#2|) "\\spad{arg1(a,{}c)} selects its first argument.")))
NIL
NIL
-(-621 A B C)
+(-623 A B C)
((|constructor| (NIL "various Currying operations.")) (|comp| ((|#3| (|Mapping| |#3| |#2|) (|Mapping| |#2| |#1|) |#1|) "\\spad{comp(f,{}g,{}x)} is \\spad{f(g x)}.")))
NIL
NIL
-(-622 A)
+(-624 A)
((|constructor| (NIL "various Currying operations.")) (|recur| (((|Mapping| |#1| (|NonNegativeInteger|) |#1|) (|Mapping| |#1| (|NonNegativeInteger|) |#1|)) "\\spad{recur(g)} is the function \\spad{h} such that \\indented{1}{\\spad{h(n,{}x)= g(n,{}g(n-1,{}..g(1,{}x)..))}.}")) (** (((|Mapping| |#1| |#1|) (|Mapping| |#1| |#1|) (|NonNegativeInteger|)) "\\spad{f**n} is the function which is the \\spad{n}-fold application \\indented{1}{of \\spad{f}.}")) (|id| ((|#1| |#1|) "\\spad{id x} is \\spad{x}.")) (|fixedPoint| (((|List| |#1|) (|Mapping| (|List| |#1|) (|List| |#1|)) (|Integer|)) "\\spad{fixedPoint(f,{}n)} is the fixed point of function \\indented{1}{\\spad{f} which is assumed to transform a list of length} \\indented{1}{\\spad{n}.}") ((|#1| (|Mapping| |#1| |#1|)) "\\spad{fixedPoint f} is the fixed point of function \\spad{f}. \\indented{1}{\\spadignore{i.e.} such that \\spad{fixedPoint f = f(fixedPoint f)}.}")) (|coerce| (((|Mapping| |#1|) |#1|) "\\spad{coerce A} changes its argument into a \\indented{1}{nullary function.}")) (|nullary| (((|Mapping| |#1|) |#1|) "\\spad{nullary A} changes its argument into a \\indented{1}{nullary function.}")))
NIL
NIL
-(-623 A C)
+(-625 A C)
((|constructor| (NIL "various Currying operations.")) (|diag| (((|Mapping| |#2| |#1|) (|Mapping| |#2| |#1| |#1|)) "\\spad{diag(f)} is the function \\spad{g} \\indented{1}{such that \\spad{g a = f(a,{}a)}.}")) (|constant| (((|Mapping| |#2| |#1|) (|Mapping| |#2|)) "\\spad{vu(f)} is the function \\spad{g} \\indented{1}{such that \\spad{g a= f ()}.}")) (|curry| (((|Mapping| |#2|) (|Mapping| |#2| |#1|) |#1|) "\\spad{cu(f,{}a)} is the function \\spad{g} \\indented{1}{such that \\spad{g ()= f a}.}")) (|const| (((|Mapping| |#2| |#1|) |#2|) "\\spad{const c} is a function which produces \\spad{c} when \\indented{1}{applied to its argument.}")))
NIL
NIL
-(-624 A B C)
+(-626 A B C)
((|constructor| (NIL "various Currying operations.")) (* (((|Mapping| |#3| |#1|) (|Mapping| |#3| |#2|) (|Mapping| |#2| |#1|)) "\\spad{f*g} is the function \\spad{h} \\indented{1}{such that \\spad{h x= f(g x)}.}")) (|twist| (((|Mapping| |#3| |#2| |#1|) (|Mapping| |#3| |#1| |#2|)) "\\spad{twist(f)} is the function \\spad{g} \\indented{1}{such that \\spad{g (a,{}b)= f(b,{}a)}.}")) (|constantLeft| (((|Mapping| |#3| |#1| |#2|) (|Mapping| |#3| |#2|)) "\\spad{constantLeft(f)} is the function \\spad{g} \\indented{1}{such that \\spad{g (a,{}b)= f b}.}")) (|constantRight| (((|Mapping| |#3| |#1| |#2|) (|Mapping| |#3| |#1|)) "\\spad{constantRight(f)} is the function \\spad{g} \\indented{1}{such that \\spad{g (a,{}b)= f a}.}")) (|curryLeft| (((|Mapping| |#3| |#2|) (|Mapping| |#3| |#1| |#2|) |#1|) "\\spad{curryLeft(f,{}a)} is the function \\spad{g} \\indented{1}{such that \\spad{g b = f(a,{}b)}.}")) (|curryRight| (((|Mapping| |#3| |#1|) (|Mapping| |#3| |#1| |#2|) |#2|) "\\spad{curryRight(f,{}b)} is the function \\spad{g} such that \\indented{1}{\\spad{g a = f(a,{}b)}.}")))
NIL
NIL
-(-625 R1 |Row1| |Col1| M1 R2 |Row2| |Col2| M2)
+(-627 R1 |Row1| |Col1| M1 R2 |Row2| |Col2| M2)
((|constructor| (NIL "\\spadtype{MatrixCategoryFunctions2} provides functions between two matrix domains. The functions provided are \\spadfun{map} and \\spadfun{reduce}.")) (|reduce| ((|#5| (|Mapping| |#5| |#1| |#5|) |#4| |#5|) "\\spad{reduce(f,{}m,{}r)} returns a matrix \\spad{n} where \\spad{n[i,{}j] = f(m[i,{}j],{}r)} for all indices \\spad{i} and \\spad{j}.")) (|map| (((|Union| |#8| "failed") (|Mapping| (|Union| |#5| "failed") |#1|) |#4|) "\\spad{map(f,{}m)} applies the function \\spad{f} to the elements of the matrix \\spad{m}.") ((|#8| (|Mapping| |#5| |#1|) |#4|) "\\spad{map(f,{}m)} applies the function \\spad{f} to the elements of the matrix \\spad{m}.")))
NIL
NIL
-(-626 S R |Row| |Col|)
+(-628 S R |Row| |Col|)
((|constructor| (NIL "\\spadtype{MatrixCategory} is a general matrix category which allows different representations and indexing schemes. Rows and columns may be extracted with rows returned as objects of type Row and colums returned as objects of type Col. A domain belonging to this category will be shallowly mutable. The index of the 'first' row may be obtained by calling the function \\spadfun{minRowIndex}. The index of the 'first' column may be obtained by calling the function \\spadfun{minColIndex}. The index of the first element of a Row is the same as the index of the first column in a matrix and vice versa.")) (|inverse| (((|Union| $ "failed") $) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m}. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square.")) (|minordet| ((|#2| $) "\\spad{minordet(m)} computes the determinant of the matrix \\spad{m} using minors. Error: if the matrix is not square.")) (|determinant| ((|#2| $) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}. Error: if the matrix is not square.")) (|nullSpace| (((|List| |#4|) $) "\\spad{nullSpace(m)} returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) $) "\\spad{nullity(m)} returns the nullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) $) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|rowEchelon| (($ $) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")) (/ (($ $ |#2|) "\\spad{m/r} divides the elements of \\spad{m} by \\spad{r}. Error: if \\spad{r = 0}.")) (|exquo| (((|Union| $ "failed") $ |#2|) "\\spad{exquo(m,{}r)} computes the exact quotient of the elements of \\spad{m} by \\spad{r},{} returning \\axiom{\"failed\"} if this is not possible.")) (** (($ $ (|Integer|)) "\\spad{m**n} computes an integral power of the matrix \\spad{m}. Error: if matrix is not square or if the matrix is square but not invertible.") (($ $ (|NonNegativeInteger|)) "\\spad{x ** n} computes a non-negative integral power of the matrix \\spad{x}. Error: if the matrix is not square.")) (* ((|#3| |#3| $) "\\spad{r * x} is the product of the row vector \\spad{r} and the matrix \\spad{x}. Error: if the dimensions are incompatible.") ((|#4| $ |#4|) "\\spad{x * c} is the product of the matrix \\spad{x} and the column vector \\spad{c}. Error: if the dimensions are incompatible.") (($ (|Integer|) $) "\\spad{n * x} is an integer multiple.") (($ $ |#2|) "\\spad{x * r} is the right scalar multiple of the scalar \\spad{r} and the matrix \\spad{x}.") (($ |#2| $) "\\spad{r*x} is the left scalar multiple of the scalar \\spad{r} and the matrix \\spad{x}.") (($ $ $) "\\spad{x * y} is the product of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (- (($ $) "\\spad{-x} returns the negative of the matrix \\spad{x}.") (($ $ $) "\\spad{x - y} is the difference of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (+ (($ $ $) "\\spad{x + y} is the sum of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (|setsubMatrix!| (($ $ (|Integer|) (|Integer|) $) "\\spad{setsubMatrix(x,{}i1,{}j1,{}y)} destructively alters the matrix \\spad{x}. Here \\spad{x(i,{}j)} is set to \\spad{y(i-i1+1,{}j-j1+1)} for \\spad{i = i1,{}...,{}i1-1+nrows y} and \\spad{j = j1,{}...,{}j1-1+ncols y}.")) (|subMatrix| (($ $ (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{subMatrix(x,{}i1,{}i2,{}j1,{}j2)} extracts the submatrix \\spad{[x(i,{}j)]} where the index \\spad{i} ranges from \\spad{i1} to \\spad{i2} and the index \\spad{j} ranges from \\spad{j1} to \\spad{j2}.")) (|swapColumns!| (($ $ (|Integer|) (|Integer|)) "\\spad{swapColumns!(m,{}i,{}j)} interchanges the \\spad{i}th and \\spad{j}th columns of \\spad{m}. This destructively alters the matrix.")) (|swapRows!| (($ $ (|Integer|) (|Integer|)) "\\spad{swapRows!(m,{}i,{}j)} interchanges the \\spad{i}th and \\spad{j}th rows of \\spad{m}. This destructively alters the matrix.")) (|setelt| (($ $ (|List| (|Integer|)) (|List| (|Integer|)) $) "\\spad{setelt(x,{}rowList,{}colList,{}y)} destructively alters the matrix \\spad{x}. If \\spad{y} is \\spad{m}-by-\\spad{n},{} \\spad{rowList = [i<1>,{}i<2>,{}...,{}i<m>]} and \\spad{colList = [j<1>,{}j<2>,{}...,{}j<n>]},{} then \\spad{x(i<k>,{}j<l>)} is set to \\spad{y(k,{}l)} for \\spad{k = 1,{}...,{}m} and \\spad{l = 1,{}...,{}n}.")) (|elt| (($ $ (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{elt(x,{}rowList,{}colList)} returns an \\spad{m}-by-\\spad{n} matrix consisting of elements of \\spad{x},{} where \\spad{m = \\# rowList} and \\spad{n = \\# colList}. If \\spad{rowList = [i<1>,{}i<2>,{}...,{}i<m>]} and \\spad{colList = [j<1>,{}j<2>,{}...,{}j<n>]},{} then the \\spad{(k,{}l)}th entry of \\spad{elt(x,{}rowList,{}colList)} is \\spad{x(i<k>,{}j<l>)}.")) (|listOfLists| (((|List| (|List| |#2|)) $) "\\spad{listOfLists(m)} returns the rows of the matrix \\spad{m} as a list of lists.")) (|vertConcat| (($ $ $) "\\spad{vertConcat(x,{}y)} vertically concatenates two matrices with an equal number of columns. The entries of \\spad{y} appear below of the entries of \\spad{x}. Error: if the matrices do not have the same number of columns.")) (|horizConcat| (($ $ $) "\\spad{horizConcat(x,{}y)} horizontally concatenates two matrices with an equal number of rows. The entries of \\spad{y} appear to the right of the entries of \\spad{x}. Error: if the matrices do not have the same number of rows.")) (|squareTop| (($ $) "\\spad{squareTop(m)} returns an \\spad{n}-by-\\spad{n} matrix consisting of the first \\spad{n} rows of the \\spad{m}-by-\\spad{n} matrix \\spad{m}. Error: if \\spad{m < n}.")) (|transpose| (($ $) "\\spad{transpose(m)} returns the transpose of the matrix \\spad{m}.") (($ |#3|) "\\spad{transpose(r)} converts the row \\spad{r} to a row matrix.")) (|coerce| (($ |#4|) "\\spad{coerce(col)} converts the column \\spad{col} to a column matrix.")) (|diagonalMatrix| (($ (|List| $)) "\\spad{diagonalMatrix([m1,{}...,{}mk])} creates a block diagonal matrix \\spad{M} with block matrices {\\em m1},{}...,{}{\\em mk} down the diagonal,{} with 0 block matrices elsewhere. More precisly: if \\spad{\\spad{ri} := nrows \\spad{mi}},{} \\spad{\\spad{ci} := ncols \\spad{mi}},{} then \\spad{m} is an (\\spad{r1+}..\\spad{+rk}) by (\\spad{c1+}..\\spad{+ck}) - matrix with entries \\spad{m.i.j = ml.(i-r1-..-r(l-1)).(j-n1-..-n(l-1))},{} if \\spad{(r1+..+r(l-1)) < i <= r1+..+rl} and \\spad{(c1+..+c(l-1)) < i <= c1+..+cl},{} \\spad{m.i.j} = 0 otherwise.") (($ (|List| |#2|)) "\\spad{diagonalMatrix(l)} returns a diagonal matrix with the elements of \\spad{l} on the diagonal.")) (|scalarMatrix| (($ (|NonNegativeInteger|) |#2|) "\\spad{scalarMatrix(n,{}r)} returns an \\spad{n}-by-\\spad{n} matrix with \\spad{r}\\spad{'s} on the diagonal and zeroes elsewhere.")) (|matrix| (($ (|List| (|List| |#2|))) "\\spad{matrix(l)} converts the list of lists \\spad{l} to a matrix,{} where the list of lists is viewed as a list of the rows of the matrix.")) (|zero| (($ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{zero(m,{}n)} returns an \\spad{m}-by-\\spad{n} zero matrix.")) (|antisymmetric?| (((|Boolean|) $) "\\spad{antisymmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and antisymmetric (\\spadignore{i.e.} \\spad{m[i,{}j] = -m[j,{}i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|symmetric?| (((|Boolean|) $) "\\spad{symmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and symmetric (\\spadignore{i.e.} \\spad{m[i,{}j] = m[j,{}i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|diagonal?| (((|Boolean|) $) "\\spad{diagonal?(m)} returns \\spad{true} if the matrix \\spad{m} is square and diagonal (\\spadignore{i.e.} all entries of \\spad{m} not on the diagonal are zero) and \\spad{false} otherwise.")) (|square?| (((|Boolean|) $) "\\spad{square?(m)} returns \\spad{true} if \\spad{m} is a square matrix (\\spadignore{i.e.} if \\spad{m} has the same number of rows as columns) and \\spad{false} otherwise.")) (|finiteAggregate| ((|attribute|) "matrices are finite")) (|shallowlyMutable| ((|attribute|) "One may destructively alter matrices")))
NIL
-((|HasAttribute| |#2| (QUOTE (-4250 "*"))) (|HasCategory| |#2| (QUOTE (-284))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-515))))
-(-627 R |Row| |Col|)
+((|HasAttribute| |#2| (QUOTE (-4252 "*"))) (|HasCategory| |#2| (QUOTE (-286))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-517))))
+(-629 R |Row| |Col|)
((|constructor| (NIL "\\spadtype{MatrixCategory} is a general matrix category which allows different representations and indexing schemes. Rows and columns may be extracted with rows returned as objects of type Row and colums returned as objects of type Col. A domain belonging to this category will be shallowly mutable. The index of the 'first' row may be obtained by calling the function \\spadfun{minRowIndex}. The index of the 'first' column may be obtained by calling the function \\spadfun{minColIndex}. The index of the first element of a Row is the same as the index of the first column in a matrix and vice versa.")) (|inverse| (((|Union| $ "failed") $) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m}. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square.")) (|minordet| ((|#1| $) "\\spad{minordet(m)} computes the determinant of the matrix \\spad{m} using minors. Error: if the matrix is not square.")) (|determinant| ((|#1| $) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}. Error: if the matrix is not square.")) (|nullSpace| (((|List| |#3|) $) "\\spad{nullSpace(m)} returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) $) "\\spad{nullity(m)} returns the nullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) $) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|rowEchelon| (($ $) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")) (/ (($ $ |#1|) "\\spad{m/r} divides the elements of \\spad{m} by \\spad{r}. Error: if \\spad{r = 0}.")) (|exquo| (((|Union| $ "failed") $ |#1|) "\\spad{exquo(m,{}r)} computes the exact quotient of the elements of \\spad{m} by \\spad{r},{} returning \\axiom{\"failed\"} if this is not possible.")) (** (($ $ (|Integer|)) "\\spad{m**n} computes an integral power of the matrix \\spad{m}. Error: if matrix is not square or if the matrix is square but not invertible.") (($ $ (|NonNegativeInteger|)) "\\spad{x ** n} computes a non-negative integral power of the matrix \\spad{x}. Error: if the matrix is not square.")) (* ((|#2| |#2| $) "\\spad{r * x} is the product of the row vector \\spad{r} and the matrix \\spad{x}. Error: if the dimensions are incompatible.") ((|#3| $ |#3|) "\\spad{x * c} is the product of the matrix \\spad{x} and the column vector \\spad{c}. Error: if the dimensions are incompatible.") (($ (|Integer|) $) "\\spad{n * x} is an integer multiple.") (($ $ |#1|) "\\spad{x * r} is the right scalar multiple of the scalar \\spad{r} and the matrix \\spad{x}.") (($ |#1| $) "\\spad{r*x} is the left scalar multiple of the scalar \\spad{r} and the matrix \\spad{x}.") (($ $ $) "\\spad{x * y} is the product of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (- (($ $) "\\spad{-x} returns the negative of the matrix \\spad{x}.") (($ $ $) "\\spad{x - y} is the difference of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (+ (($ $ $) "\\spad{x + y} is the sum of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (|setsubMatrix!| (($ $ (|Integer|) (|Integer|) $) "\\spad{setsubMatrix(x,{}i1,{}j1,{}y)} destructively alters the matrix \\spad{x}. Here \\spad{x(i,{}j)} is set to \\spad{y(i-i1+1,{}j-j1+1)} for \\spad{i = i1,{}...,{}i1-1+nrows y} and \\spad{j = j1,{}...,{}j1-1+ncols y}.")) (|subMatrix| (($ $ (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{subMatrix(x,{}i1,{}i2,{}j1,{}j2)} extracts the submatrix \\spad{[x(i,{}j)]} where the index \\spad{i} ranges from \\spad{i1} to \\spad{i2} and the index \\spad{j} ranges from \\spad{j1} to \\spad{j2}.")) (|swapColumns!| (($ $ (|Integer|) (|Integer|)) "\\spad{swapColumns!(m,{}i,{}j)} interchanges the \\spad{i}th and \\spad{j}th columns of \\spad{m}. This destructively alters the matrix.")) (|swapRows!| (($ $ (|Integer|) (|Integer|)) "\\spad{swapRows!(m,{}i,{}j)} interchanges the \\spad{i}th and \\spad{j}th rows of \\spad{m}. This destructively alters the matrix.")) (|setelt| (($ $ (|List| (|Integer|)) (|List| (|Integer|)) $) "\\spad{setelt(x,{}rowList,{}colList,{}y)} destructively alters the matrix \\spad{x}. If \\spad{y} is \\spad{m}-by-\\spad{n},{} \\spad{rowList = [i<1>,{}i<2>,{}...,{}i<m>]} and \\spad{colList = [j<1>,{}j<2>,{}...,{}j<n>]},{} then \\spad{x(i<k>,{}j<l>)} is set to \\spad{y(k,{}l)} for \\spad{k = 1,{}...,{}m} and \\spad{l = 1,{}...,{}n}.")) (|elt| (($ $ (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{elt(x,{}rowList,{}colList)} returns an \\spad{m}-by-\\spad{n} matrix consisting of elements of \\spad{x},{} where \\spad{m = \\# rowList} and \\spad{n = \\# colList}. If \\spad{rowList = [i<1>,{}i<2>,{}...,{}i<m>]} and \\spad{colList = [j<1>,{}j<2>,{}...,{}j<n>]},{} then the \\spad{(k,{}l)}th entry of \\spad{elt(x,{}rowList,{}colList)} is \\spad{x(i<k>,{}j<l>)}.")) (|listOfLists| (((|List| (|List| |#1|)) $) "\\spad{listOfLists(m)} returns the rows of the matrix \\spad{m} as a list of lists.")) (|vertConcat| (($ $ $) "\\spad{vertConcat(x,{}y)} vertically concatenates two matrices with an equal number of columns. The entries of \\spad{y} appear below of the entries of \\spad{x}. Error: if the matrices do not have the same number of columns.")) (|horizConcat| (($ $ $) "\\spad{horizConcat(x,{}y)} horizontally concatenates two matrices with an equal number of rows. The entries of \\spad{y} appear to the right of the entries of \\spad{x}. Error: if the matrices do not have the same number of rows.")) (|squareTop| (($ $) "\\spad{squareTop(m)} returns an \\spad{n}-by-\\spad{n} matrix consisting of the first \\spad{n} rows of the \\spad{m}-by-\\spad{n} matrix \\spad{m}. Error: if \\spad{m < n}.")) (|transpose| (($ $) "\\spad{transpose(m)} returns the transpose of the matrix \\spad{m}.") (($ |#2|) "\\spad{transpose(r)} converts the row \\spad{r} to a row matrix.")) (|coerce| (($ |#3|) "\\spad{coerce(col)} converts the column \\spad{col} to a column matrix.")) (|diagonalMatrix| (($ (|List| $)) "\\spad{diagonalMatrix([m1,{}...,{}mk])} creates a block diagonal matrix \\spad{M} with block matrices {\\em m1},{}...,{}{\\em mk} down the diagonal,{} with 0 block matrices elsewhere. More precisly: if \\spad{\\spad{ri} := nrows \\spad{mi}},{} \\spad{\\spad{ci} := ncols \\spad{mi}},{} then \\spad{m} is an (\\spad{r1+}..\\spad{+rk}) by (\\spad{c1+}..\\spad{+ck}) - matrix with entries \\spad{m.i.j = ml.(i-r1-..-r(l-1)).(j-n1-..-n(l-1))},{} if \\spad{(r1+..+r(l-1)) < i <= r1+..+rl} and \\spad{(c1+..+c(l-1)) < i <= c1+..+cl},{} \\spad{m.i.j} = 0 otherwise.") (($ (|List| |#1|)) "\\spad{diagonalMatrix(l)} returns a diagonal matrix with the elements of \\spad{l} on the diagonal.")) (|scalarMatrix| (($ (|NonNegativeInteger|) |#1|) "\\spad{scalarMatrix(n,{}r)} returns an \\spad{n}-by-\\spad{n} matrix with \\spad{r}\\spad{'s} on the diagonal and zeroes elsewhere.")) (|matrix| (($ (|List| (|List| |#1|))) "\\spad{matrix(l)} converts the list of lists \\spad{l} to a matrix,{} where the list of lists is viewed as a list of the rows of the matrix.")) (|zero| (($ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{zero(m,{}n)} returns an \\spad{m}-by-\\spad{n} zero matrix.")) (|antisymmetric?| (((|Boolean|) $) "\\spad{antisymmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and antisymmetric (\\spadignore{i.e.} \\spad{m[i,{}j] = -m[j,{}i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|symmetric?| (((|Boolean|) $) "\\spad{symmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and symmetric (\\spadignore{i.e.} \\spad{m[i,{}j] = m[j,{}i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|diagonal?| (((|Boolean|) $) "\\spad{diagonal?(m)} returns \\spad{true} if the matrix \\spad{m} is square and diagonal (\\spadignore{i.e.} all entries of \\spad{m} not on the diagonal are zero) and \\spad{false} otherwise.")) (|square?| (((|Boolean|) $) "\\spad{square?(m)} returns \\spad{true} if \\spad{m} is a square matrix (\\spadignore{i.e.} if \\spad{m} has the same number of rows as columns) and \\spad{false} otherwise.")) (|finiteAggregate| ((|attribute|) "matrices are finite")) (|shallowlyMutable| ((|attribute|) "One may destructively alter matrices")))
-((-4248 . T) (-4249 . T) (-2500 . T))
+((-4250 . T) (-4251 . T) (-2137 . T))
NIL
-(-628 R |Row| |Col| M)
+(-630 R |Row| |Col| M)
((|constructor| (NIL "\\spadtype{MatrixLinearAlgebraFunctions} provides functions to compute inverses and canonical forms.")) (|inverse| (((|Union| |#4| "failed") |#4|) "\\spad{inverse(m)} returns the inverse of the matrix. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square.")) (|normalizedDivide| (((|Record| (|:| |quotient| |#1|) (|:| |remainder| |#1|)) |#1| |#1|) "\\spad{normalizedDivide(n,{}d)} returns a normalized quotient and remainder such that consistently unique representatives for the residue class are chosen,{} \\spadignore{e.g.} positive remainders")) (|rowEchelon| ((|#4| |#4|) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")) (|adjoint| (((|Record| (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) "\\spad{adjoint(m)} returns the ajoint matrix of \\spad{m} (\\spadignore{i.e.} the matrix \\spad{n} such that \\spad{m*n} = determinant(\\spad{m})*id) and the detrminant of \\spad{m}.")) (|invertIfCan| (((|Union| |#4| "failed") |#4|) "\\spad{invertIfCan(m)} returns the inverse of \\spad{m} over \\spad{R}")) (|fractionFreeGauss!| ((|#4| |#4|) "\\spad{fractionFreeGauss(m)} performs the fraction free gaussian elimination on the matrix \\spad{m}.")) (|nullSpace| (((|List| |#3|) |#4|) "\\spad{nullSpace(m)} returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) |#4|) "\\spad{nullity(m)} returns the mullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) |#4|) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|elColumn2!| ((|#4| |#4| |#1| (|Integer|) (|Integer|)) "\\spad{elColumn2!(m,{}a,{}i,{}j)} adds to column \\spad{i} a*column(\\spad{m},{}\\spad{j}) : elementary operation of second kind. (\\spad{i} \\spad{~=j})")) (|elRow2!| ((|#4| |#4| |#1| (|Integer|) (|Integer|)) "\\spad{elRow2!(m,{}a,{}i,{}j)} adds to row \\spad{i} a*row(\\spad{m},{}\\spad{j}) : elementary operation of second kind. (\\spad{i} \\spad{~=j})")) (|elRow1!| ((|#4| |#4| (|Integer|) (|Integer|)) "\\spad{elRow1!(m,{}i,{}j)} swaps rows \\spad{i} and \\spad{j} of matrix \\spad{m} : elementary operation of first kind")) (|minordet| ((|#1| |#4|) "\\spad{minordet(m)} computes the determinant of the matrix \\spad{m} using minors. Error: if the matrix is not square.")) (|determinant| ((|#1| |#4|) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}. an error message is returned if the matrix is not square.")))
NIL
-((|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-515))))
-(-629 R)
+((|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-517))))
+(-631 R)
((|constructor| (NIL "\\spadtype{Matrix} is a matrix domain where 1-based indexing is used for both rows and columns.")) (|inverse| (((|Union| $ "failed") $) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m}. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square.")) (|diagonalMatrix| (($ (|Vector| |#1|)) "\\spad{diagonalMatrix(v)} returns a diagonal matrix where the elements of \\spad{v} appear on the diagonal.")))
-((-4248 . T) (-4249 . T))
-((-3255 (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-515))) (|HasAttribute| |#1| (QUOTE (-4250 "*"))) (|HasCategory| |#1| (QUOTE (-339))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-630 R)
+((-4250 . T) (-4251 . T))
+((-3321 (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-517))) (|HasAttribute| |#1| (QUOTE (-4252 "*"))) (|HasCategory| |#1| (QUOTE (-341))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-632 R)
((|constructor| (NIL "This package provides standard arithmetic operations on matrices. The functions in this package store the results of computations in existing matrices,{} rather than creating new matrices. This package works only for matrices of type Matrix and uses the internal representation of this type.")) (** (((|Matrix| |#1|) (|Matrix| |#1|) (|NonNegativeInteger|)) "\\spad{x ** n} computes the \\spad{n}-th power of a square matrix. The power \\spad{n} is assumed greater than 1.")) (|power!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|NonNegativeInteger|)) "\\spad{power!(a,{}b,{}c,{}m,{}n)} computes \\spad{m} \\spad{**} \\spad{n} and stores the result in \\spad{a}. The matrices \\spad{b} and \\spad{c} are used to store intermediate results. Error: if \\spad{a},{} \\spad{b},{} \\spad{c},{} and \\spad{m} are not square and of the same dimensions.")) (|times!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{times!(c,{}a,{}b)} computes the matrix product \\spad{a * b} and stores the result in the matrix \\spad{c}. Error: if \\spad{a},{} \\spad{b},{} and \\spad{c} do not have compatible dimensions.")) (|rightScalarTimes!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) |#1|) "\\spad{rightScalarTimes!(c,{}a,{}r)} computes the scalar product \\spad{a * r} and stores the result in the matrix \\spad{c}. Error: if \\spad{a} and \\spad{c} do not have the same dimensions.")) (|leftScalarTimes!| (((|Matrix| |#1|) (|Matrix| |#1|) |#1| (|Matrix| |#1|)) "\\spad{leftScalarTimes!(c,{}r,{}a)} computes the scalar product \\spad{r * a} and stores the result in the matrix \\spad{c}. Error: if \\spad{a} and \\spad{c} do not have the same dimensions.")) (|minus!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{!minus!(c,{}a,{}b)} computes the matrix difference \\spad{a - b} and stores the result in the matrix \\spad{c}. Error: if \\spad{a},{} \\spad{b},{} and \\spad{c} do not have the same dimensions.") (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{minus!(c,{}a)} computes \\spad{-a} and stores the result in the matrix \\spad{c}. Error: if a and \\spad{c} do not have the same dimensions.")) (|plus!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{plus!(c,{}a,{}b)} computes the matrix sum \\spad{a + b} and stores the result in the matrix \\spad{c}. Error: if \\spad{a},{} \\spad{b},{} and \\spad{c} do not have the same dimensions.")) (|copy!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{copy!(c,{}a)} copies the matrix \\spad{a} into the matrix \\spad{c}. Error: if \\spad{a} and \\spad{c} do not have the same dimensions.")))
NIL
NIL
-(-631 S -3894 FLAF FLAS)
+(-633 S -3576 FLAF FLAS)
((|constructor| (NIL "\\indented{1}{\\spadtype{MultiVariableCalculusFunctions} Package provides several} \\indented{1}{functions for multivariable calculus.} These include gradient,{} hessian and jacobian,{} divergence and laplacian. Various forms for banded and sparse storage of matrices are included.")) (|bandedJacobian| (((|Matrix| |#2|) |#3| |#4| (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{bandedJacobian(vf,{}xlist,{}kl,{}ku)} computes the jacobian,{} the matrix of first partial derivatives,{} of the vector field \\spad{vf},{} \\spad{vf} a vector function of the variables listed in \\spad{xlist},{} \\spad{kl} is the number of nonzero subdiagonals,{} \\spad{ku} is the number of nonzero superdiagonals,{} kl+ku+1 being actual bandwidth. Stores the nonzero band in a matrix,{} dimensions kl+ku+1 by \\#xlist. The upper triangle is in the top \\spad{ku} rows,{} the diagonal is in row ku+1,{} the lower triangle in the last \\spad{kl} rows. Entries in a column in the band store correspond to entries in same column of full store. (The notation conforms to LAPACK/NAG-\\spad{F07} conventions.)")) (|jacobian| (((|Matrix| |#2|) |#3| |#4|) "\\spad{jacobian(vf,{}xlist)} computes the jacobian,{} the matrix of first partial derivatives,{} of the vector field \\spad{vf},{} \\spad{vf} a vector function of the variables listed in \\spad{xlist}.")) (|bandedHessian| (((|Matrix| |#2|) |#2| |#4| (|NonNegativeInteger|)) "\\spad{bandedHessian(v,{}xlist,{}k)} computes the hessian,{} the matrix of second partial derivatives,{} of the scalar field \\spad{v},{} \\spad{v} a function of the variables listed in \\spad{xlist},{} \\spad{k} is the semi-bandwidth,{} the number of nonzero subdiagonals,{} 2*k+1 being actual bandwidth. Stores the nonzero band in lower triangle in a matrix,{} dimensions \\spad{k+1} by \\#xlist,{} whose rows are the vectors formed by diagonal,{} subdiagonal,{} etc. of the real,{} full-matrix,{} hessian. (The notation conforms to LAPACK/NAG-\\spad{F07} conventions.)")) (|hessian| (((|Matrix| |#2|) |#2| |#4|) "\\spad{hessian(v,{}xlist)} computes the hessian,{} the matrix of second partial derivatives,{} of the scalar field \\spad{v},{} \\spad{v} a function of the variables listed in \\spad{xlist}.")) (|laplacian| ((|#2| |#2| |#4|) "\\spad{laplacian(v,{}xlist)} computes the laplacian of the scalar field \\spad{v},{} \\spad{v} a function of the variables listed in \\spad{xlist}.")) (|divergence| ((|#2| |#3| |#4|) "\\spad{divergence(vf,{}xlist)} computes the divergence of the vector field \\spad{vf},{} \\spad{vf} a vector function of the variables listed in \\spad{xlist}.")) (|gradient| (((|Vector| |#2|) |#2| |#4|) "\\spad{gradient(v,{}xlist)} computes the gradient,{} the vector of first partial derivatives,{} of the scalar field \\spad{v},{} \\spad{v} a function of the variables listed in \\spad{xlist}.")))
NIL
NIL
-(-632 R Q)
+(-634 R Q)
((|constructor| (NIL "MatrixCommonDenominator provides functions to compute the common denominator of a matrix of elements of the quotient field of an integral domain.")) (|splitDenominator| (((|Record| (|:| |num| (|Matrix| |#1|)) (|:| |den| |#1|)) (|Matrix| |#2|)) "\\spad{splitDenominator(q)} returns \\spad{[p,{} d]} such that \\spad{q = p/d} and \\spad{d} is a common denominator for the elements of \\spad{q}.")) (|clearDenominator| (((|Matrix| |#1|) (|Matrix| |#2|)) "\\spad{clearDenominator(q)} returns \\spad{p} such that \\spad{q = p/d} where \\spad{d} is a common denominator for the elements of \\spad{q}.")) (|commonDenominator| ((|#1| (|Matrix| |#2|)) "\\spad{commonDenominator(q)} returns a common denominator \\spad{d} for the elements of \\spad{q}.")))
NIL
NIL
-(-633)
+(-635)
((|constructor| (NIL "A domain which models the complex number representation used by machines in the AXIOM-NAG link.")) (|coerce| (((|Complex| (|Float|)) $) "\\spad{coerce(u)} transforms \\spad{u} into a COmplex Float") (($ (|Complex| (|MachineInteger|))) "\\spad{coerce(u)} transforms \\spad{u} into a MachineComplex") (($ (|Complex| (|MachineFloat|))) "\\spad{coerce(u)} transforms \\spad{u} into a MachineComplex") (($ (|Complex| (|Integer|))) "\\spad{coerce(u)} transforms \\spad{u} into a MachineComplex") (($ (|Complex| (|Float|))) "\\spad{coerce(u)} transforms \\spad{u} into a MachineComplex")))
-((-4241 . T) (-4246 |has| (-638) (-339)) (-4240 |has| (-638) (-339)) (-2531 . T) (-4247 |has| (-638) (-6 -4247)) (-4244 |has| (-638) (-6 -4244)) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| (-638) (QUOTE (-136))) (|HasCategory| (-638) (QUOTE (-134))) (|HasCategory| (-638) (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| (-638) (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| (-638) (QUOTE (-344))) (|HasCategory| (-638) (QUOTE (-339))) (|HasCategory| (-638) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| (-638) (QUOTE (-211))) (-3255 (|HasCategory| (-638) (QUOTE (-339))) (|HasCategory| (-638) (QUOTE (-325)))) (|HasCategory| (-638) (QUOTE (-325))) (|HasCategory| (-638) (LIST (QUOTE -263) (QUOTE (-638)) (QUOTE (-638)))) (|HasCategory| (-638) (LIST (QUOTE -286) (QUOTE (-638)))) (|HasCategory| (-638) (LIST (QUOTE -484) (QUOTE (-1087)) (QUOTE (-638)))) (|HasCategory| (-638) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| (-638) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| (-638) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| (-638) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (-3255 (|HasCategory| (-638) (QUOTE (-284))) (|HasCategory| (-638) (QUOTE (-339))) (|HasCategory| (-638) (QUOTE (-325)))) (|HasCategory| (-638) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| (-638) (QUOTE (-949))) (|HasCategory| (-638) (QUOTE (-1109))) (-12 (|HasCategory| (-638) (QUOTE (-930))) (|HasCategory| (-638) (QUOTE (-1109)))) (-3255 (-12 (|HasCategory| (-638) (QUOTE (-284))) (|HasCategory| (-638) (QUOTE (-840)))) (|HasCategory| (-638) (QUOTE (-339))) (-12 (|HasCategory| (-638) (QUOTE (-325))) (|HasCategory| (-638) (QUOTE (-840))))) (-3255 (-12 (|HasCategory| (-638) (QUOTE (-284))) (|HasCategory| (-638) (QUOTE (-840)))) (-12 (|HasCategory| (-638) (QUOTE (-339))) (|HasCategory| (-638) (QUOTE (-840)))) (-12 (|HasCategory| (-638) (QUOTE (-325))) (|HasCategory| (-638) (QUOTE (-840))))) (|HasCategory| (-638) (QUOTE (-508))) (-12 (|HasCategory| (-638) (QUOTE (-982))) (|HasCategory| (-638) (QUOTE (-1109)))) (|HasCategory| (-638) (QUOTE (-982))) (-3255 (|HasCategory| (-638) (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| (-638) (QUOTE (-339)))) (|HasCategory| (-638) (QUOTE (-284))) (|HasCategory| (-638) (QUOTE (-840))) (-3255 (-12 (|HasCategory| (-638) (QUOTE (-284))) (|HasCategory| (-638) (QUOTE (-840)))) (|HasCategory| (-638) (QUOTE (-339)))) (-3255 (-12 (|HasCategory| (-638) (QUOTE (-284))) (|HasCategory| (-638) (QUOTE (-840)))) (|HasCategory| (-638) (QUOTE (-515)))) (-12 (|HasCategory| (-638) (QUOTE (-211))) (|HasCategory| (-638) (QUOTE (-339)))) (-12 (|HasCategory| (-638) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| (-638) (QUOTE (-339)))) (|HasCategory| (-638) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| (-638) (QUOTE (-786))) (|HasCategory| (-638) (QUOTE (-515))) (|HasAttribute| (-638) (QUOTE -4247)) (|HasAttribute| (-638) (QUOTE -4244)) (-12 (|HasCategory| (-638) (QUOTE (-284))) (|HasCategory| (-638) (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-638) (QUOTE (-284))) (|HasCategory| (-638) (QUOTE (-840)))) (|HasCategory| (-638) (QUOTE (-134)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-638) (QUOTE (-284))) (|HasCategory| (-638) (QUOTE (-840)))) (|HasCategory| (-638) (QUOTE (-325)))))
-(-634 S)
+((-4243 . T) (-4248 |has| (-640) (-341)) (-4242 |has| (-640) (-341)) (-2182 . T) (-4249 |has| (-640) (-6 -4249)) (-4246 |has| (-640) (-6 -4246)) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| (-640) (QUOTE (-138))) (|HasCategory| (-640) (QUOTE (-136))) (|HasCategory| (-640) (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| (-640) (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| (-640) (QUOTE (-346))) (|HasCategory| (-640) (QUOTE (-341))) (|HasCategory| (-640) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| (-640) (QUOTE (-213))) (-3321 (|HasCategory| (-640) (QUOTE (-341))) (|HasCategory| (-640) (QUOTE (-327)))) (|HasCategory| (-640) (QUOTE (-327))) (|HasCategory| (-640) (LIST (QUOTE -265) (QUOTE (-640)) (QUOTE (-640)))) (|HasCategory| (-640) (LIST (QUOTE -288) (QUOTE (-640)))) (|HasCategory| (-640) (LIST (QUOTE -486) (QUOTE (-1089)) (QUOTE (-640)))) (|HasCategory| (-640) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| (-640) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| (-640) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| (-640) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (-3321 (|HasCategory| (-640) (QUOTE (-286))) (|HasCategory| (-640) (QUOTE (-341))) (|HasCategory| (-640) (QUOTE (-327)))) (|HasCategory| (-640) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| (-640) (QUOTE (-951))) (|HasCategory| (-640) (QUOTE (-1111))) (-12 (|HasCategory| (-640) (QUOTE (-932))) (|HasCategory| (-640) (QUOTE (-1111)))) (-3321 (-12 (|HasCategory| (-640) (QUOTE (-286))) (|HasCategory| (-640) (QUOTE (-842)))) (|HasCategory| (-640) (QUOTE (-341))) (-12 (|HasCategory| (-640) (QUOTE (-327))) (|HasCategory| (-640) (QUOTE (-842))))) (-3321 (-12 (|HasCategory| (-640) (QUOTE (-286))) (|HasCategory| (-640) (QUOTE (-842)))) (-12 (|HasCategory| (-640) (QUOTE (-341))) (|HasCategory| (-640) (QUOTE (-842)))) (-12 (|HasCategory| (-640) (QUOTE (-327))) (|HasCategory| (-640) (QUOTE (-842))))) (|HasCategory| (-640) (QUOTE (-510))) (-12 (|HasCategory| (-640) (QUOTE (-984))) (|HasCategory| (-640) (QUOTE (-1111)))) (|HasCategory| (-640) (QUOTE (-984))) (-3321 (|HasCategory| (-640) (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| (-640) (QUOTE (-341)))) (|HasCategory| (-640) (QUOTE (-286))) (|HasCategory| (-640) (QUOTE (-842))) (-3321 (-12 (|HasCategory| (-640) (QUOTE (-286))) (|HasCategory| (-640) (QUOTE (-842)))) (|HasCategory| (-640) (QUOTE (-341)))) (-3321 (-12 (|HasCategory| (-640) (QUOTE (-286))) (|HasCategory| (-640) (QUOTE (-842)))) (|HasCategory| (-640) (QUOTE (-517)))) (-12 (|HasCategory| (-640) (QUOTE (-213))) (|HasCategory| (-640) (QUOTE (-341)))) (-12 (|HasCategory| (-640) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| (-640) (QUOTE (-341)))) (|HasCategory| (-640) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| (-640) (QUOTE (-788))) (|HasCategory| (-640) (QUOTE (-517))) (|HasAttribute| (-640) (QUOTE -4249)) (|HasAttribute| (-640) (QUOTE -4246)) (-12 (|HasCategory| (-640) (QUOTE (-286))) (|HasCategory| (-640) (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-640) (QUOTE (-286))) (|HasCategory| (-640) (QUOTE (-842)))) (|HasCategory| (-640) (QUOTE (-136)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-640) (QUOTE (-286))) (|HasCategory| (-640) (QUOTE (-842)))) (|HasCategory| (-640) (QUOTE (-327)))))
+(-636 S)
((|constructor| (NIL "A multi-dictionary is a dictionary which may contain duplicates. As for any dictionary,{} its size is assumed large so that copying (non-destructive) operations are generally to be avoided.")) (|duplicates| (((|List| (|Record| (|:| |entry| |#1|) (|:| |count| (|NonNegativeInteger|)))) $) "\\spad{duplicates(d)} returns a list of values which have duplicates in \\spad{d}")) (|removeDuplicates!| (($ $) "\\spad{removeDuplicates!(d)} destructively removes any duplicate values in dictionary \\spad{d}.")) (|insert!| (($ |#1| $ (|NonNegativeInteger|)) "\\spad{insert!(x,{}d,{}n)} destructively inserts \\spad{n} copies of \\spad{x} into dictionary \\spad{d}.")))
-((-4249 . T) (-2500 . T))
+((-4251 . T) (-2137 . T))
NIL
-(-635 U)
+(-637 U)
((|constructor| (NIL "This package supports factorization and gcds of univariate polynomials over the integers modulo different primes. The inputs are given as polynomials over the integers with the prime passed explicitly as an extra argument.")) (|exptMod| ((|#1| |#1| (|Integer|) |#1| (|Integer|)) "\\spad{exptMod(f,{}n,{}g,{}p)} raises the univariate polynomial \\spad{f} to the \\spad{n}th power modulo the polynomial \\spad{g} and the prime \\spad{p}.")) (|separateFactors| (((|List| |#1|) (|List| (|Record| (|:| |factor| |#1|) (|:| |degree| (|Integer|)))) (|Integer|)) "\\spad{separateFactors(ddl,{} p)} refines the distinct degree factorization produced by \\spadfunFrom{ddFact}{ModularDistinctDegreeFactorizer} to give a complete list of factors.")) (|ddFact| (((|List| (|Record| (|:| |factor| |#1|) (|:| |degree| (|Integer|)))) |#1| (|Integer|)) "\\spad{ddFact(f,{}p)} computes a distinct degree factorization of the polynomial \\spad{f} modulo the prime \\spad{p},{} \\spadignore{i.e.} such that each factor is a product of irreducibles of the same degrees. The input polynomial \\spad{f} is assumed to be square-free modulo \\spad{p}.")) (|factor| (((|List| |#1|) |#1| (|Integer|)) "\\spad{factor(f1,{}p)} returns the list of factors of the univariate polynomial \\spad{f1} modulo the integer prime \\spad{p}. Error: if \\spad{f1} is not square-free modulo \\spad{p}.")) (|linears| ((|#1| |#1| (|Integer|)) "\\spad{linears(f,{}p)} returns the product of all the linear factors of \\spad{f} modulo \\spad{p}. Potentially incorrect result if \\spad{f} is not square-free modulo \\spad{p}.")) (|gcd| ((|#1| |#1| |#1| (|Integer|)) "\\spad{gcd(f1,{}f2,{}p)} computes the \\spad{gcd} of the univariate polynomials \\spad{f1} and \\spad{f2} modulo the integer prime \\spad{p}.")))
NIL
NIL
-(-636)
+(-638)
((|constructor| (NIL "\\indented{1}{<description of package>} Author: Jim Wen Date Created: \\spad{??} Date Last Updated: October 1991 by Jon Steinbach Keywords: Examples: References:")) (|ptFunc| (((|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) "\\spad{ptFunc(a,{}b,{}c,{}d)} is an internal function exported in order to compile packages.")) (|meshPar1Var| (((|ThreeSpace| (|DoubleFloat|)) (|Expression| (|Integer|)) (|Expression| (|Integer|)) (|Expression| (|Integer|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{meshPar1Var(s,{}t,{}u,{}f,{}s1,{}l)} \\undocumented")) (|meshFun2Var| (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Union| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "undefined") (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{meshFun2Var(f,{}g,{}s1,{}s2,{}l)} \\undocumented")) (|meshPar2Var| (((|ThreeSpace| (|DoubleFloat|)) (|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{meshPar2Var(sp,{}f,{}s1,{}s2,{}l)} \\undocumented") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{meshPar2Var(f,{}s1,{}s2,{}l)} \\undocumented") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Union| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "undefined") (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{meshPar2Var(f,{}g,{}h,{}j,{}s1,{}s2,{}l)} \\undocumented")))
NIL
NIL
-(-637 OV E -3894 PG)
+(-639 OV E -3576 PG)
((|constructor| (NIL "Package for factorization of multivariate polynomials over finite fields.")) (|factor| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{factor(p)} produces the complete factorization of the multivariate polynomial \\spad{p} over a finite field. \\spad{p} is represented as a univariate polynomial with multivariate coefficients over a finite field.") (((|Factored| |#4|) |#4|) "\\spad{factor(p)} produces the complete factorization of the multivariate polynomial \\spad{p} over a finite field.")))
NIL
NIL
-(-638)
+(-640)
((|constructor| (NIL "A domain which models the floating point representation used by machines in the AXIOM-NAG link.")) (|changeBase| (($ (|Integer|) (|Integer|) (|PositiveInteger|)) "\\spad{changeBase(exp,{}man,{}base)} \\undocumented{}")) (|exponent| (((|Integer|) $) "\\spad{exponent(u)} returns the exponent of \\spad{u}")) (|mantissa| (((|Integer|) $) "\\spad{mantissa(u)} returns the mantissa of \\spad{u}")) (|coerce| (($ (|MachineInteger|)) "\\spad{coerce(u)} transforms a MachineInteger into a MachineFloat") (((|Float|) $) "\\spad{coerce(u)} transforms a MachineFloat to a standard Float")) (|minimumExponent| (((|Integer|)) "\\spad{minimumExponent()} returns the minimum exponent in the model") (((|Integer|) (|Integer|)) "\\spad{minimumExponent(e)} sets the minimum exponent in the model to \\spad{e}")) (|maximumExponent| (((|Integer|)) "\\spad{maximumExponent()} returns the maximum exponent in the model") (((|Integer|) (|Integer|)) "\\spad{maximumExponent(e)} sets the maximum exponent in the model to \\spad{e}")) (|base| (((|PositiveInteger|)) "\\spad{base()} returns the base of the model") (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{base(b)} sets the base of the model to \\spad{b}")) (|precision| (((|PositiveInteger|)) "\\spad{precision()} returns the number of digits in the model") (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{precision(p)} sets the number of digits in the model to \\spad{p}")))
-((-2523 . T) (-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-2176 . T) (-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-639 R)
+(-641 R)
((|constructor| (NIL "\\indented{1}{Modular hermitian row reduction.} Author: Manuel Bronstein Date Created: 22 February 1989 Date Last Updated: 24 November 1993 Keywords: matrix,{} reduction.")) (|normalizedDivide| (((|Record| (|:| |quotient| |#1|) (|:| |remainder| |#1|)) |#1| |#1|) "\\spad{normalizedDivide(n,{}d)} returns a normalized quotient and remainder such that consistently unique representatives for the residue class are chosen,{} \\spadignore{e.g.} positive remainders")) (|rowEchelonLocal| (((|Matrix| |#1|) (|Matrix| |#1|) |#1| |#1|) "\\spad{rowEchelonLocal(m,{} d,{} p)} computes the row-echelon form of \\spad{m} concatenated with \\spad{d} times the identity matrix over a local ring where \\spad{p} is the only prime.")) (|rowEchLocal| (((|Matrix| |#1|) (|Matrix| |#1|) |#1|) "\\spad{rowEchLocal(m,{}p)} computes a modular row-echelon form of \\spad{m},{} finding an appropriate modulus over a local ring where \\spad{p} is the only prime.")) (|rowEchelon| (((|Matrix| |#1|) (|Matrix| |#1|) |#1|) "\\spad{rowEchelon(m,{} d)} computes a modular row-echelon form mod \\spad{d} of \\indented{3}{[\\spad{d}\\space{5}]} \\indented{3}{[\\space{2}\\spad{d}\\space{3}]} \\indented{3}{[\\space{4}. ]} \\indented{3}{[\\space{5}\\spad{d}]} \\indented{3}{[\\space{3}\\spad{M}\\space{2}]} where \\spad{M = m mod d}.")) (|rowEch| (((|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{rowEch(m)} computes a modular row-echelon form of \\spad{m},{} finding an appropriate modulus.")))
NIL
NIL
-(-640)
+(-642)
((|constructor| (NIL "A domain which models the integer representation used by machines in the AXIOM-NAG link.")) (|coerce| (((|Expression| $) (|Expression| (|Integer|))) "\\spad{coerce(x)} returns \\spad{x} with coefficients in the domain")) (|maxint| (((|PositiveInteger|)) "\\spad{maxint()} returns the maximum integer in the model") (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{maxint(u)} sets the maximum integer in the model to \\spad{u}")))
-((-4247 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4249 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-641 S D1 D2 I)
+(-643 S D1 D2 I)
((|constructor| (NIL "transforms top-level objects into compiled functions.")) (|compiledFunction| (((|Mapping| |#4| |#2| |#3|) |#1| (|Symbol|) (|Symbol|)) "\\spad{compiledFunction(expr,{}x,{}y)} returns a function \\spad{f: (D1,{} D2) -> I} defined by \\spad{f(x,{} y) == expr}. Function \\spad{f} is compiled and directly applicable to objects of type \\spad{(D1,{} D2)}")) (|binaryFunction| (((|Mapping| |#4| |#2| |#3|) (|Symbol|)) "\\spad{binaryFunction(s)} is a local function")))
NIL
NIL
-(-642 S)
+(-644 S)
((|constructor| (NIL "MakeCachableSet(\\spad{S}) returns a cachable set which is equal to \\spad{S} as a set.")) (|coerce| (($ |#1|) "\\spad{coerce(s)} returns \\spad{s} viewed as an element of \\%.")))
NIL
NIL
-(-643 S)
+(-645 S)
((|constructor| (NIL "MakeFloatCompiledFunction transforms top-level objects into compiled Lisp functions whose arguments are Lisp floats. This by-passes the \\Language{} compiler and interpreter,{} thereby gaining several orders of magnitude.")) (|makeFloatFunction| (((|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) |#1| (|Symbol|) (|Symbol|)) "\\spad{makeFloatFunction(expr,{} x,{} y)} returns a Lisp function \\spad{f: (\\axiomType{DoubleFloat},{} \\axiomType{DoubleFloat}) -> \\axiomType{DoubleFloat}} defined by \\spad{f(x,{} y) == expr}. Function \\spad{f} is compiled and directly applicable to objects of type \\spad{(\\axiomType{DoubleFloat},{} \\axiomType{DoubleFloat})}.") (((|Mapping| (|DoubleFloat|) (|DoubleFloat|)) |#1| (|Symbol|)) "\\spad{makeFloatFunction(expr,{} x)} returns a Lisp function \\spad{f: \\axiomType{DoubleFloat} -> \\axiomType{DoubleFloat}} defined by \\spad{f(x) == expr}. Function \\spad{f} is compiled and directly applicable to objects of type \\axiomType{DoubleFloat}.")))
NIL
NIL
-(-644 S)
+(-646 S)
((|constructor| (NIL "transforms top-level objects into interpreter functions.")) (|function| (((|Symbol|) |#1| (|Symbol|) (|List| (|Symbol|))) "\\spad{function(e,{} foo,{} [x1,{}...,{}xn])} creates a function \\spad{foo(x1,{}...,{}xn) == e}.") (((|Symbol|) |#1| (|Symbol|) (|Symbol|) (|Symbol|)) "\\spad{function(e,{} foo,{} x,{} y)} creates a function \\spad{foo(x,{} y) = e}.") (((|Symbol|) |#1| (|Symbol|) (|Symbol|)) "\\spad{function(e,{} foo,{} x)} creates a function \\spad{foo(x) == e}.") (((|Symbol|) |#1| (|Symbol|)) "\\spad{function(e,{} foo)} creates a function \\spad{foo() == e}.")))
NIL
NIL
-(-645 S T$)
+(-647 S T$)
((|constructor| (NIL "MakeRecord is used internally by the interpreter to create record types which are used for doing parallel iterations on streams.")) (|makeRecord| (((|Record| (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) "\\spad{makeRecord(a,{}b)} creates a record object with type Record(part1:S,{} part2:R),{} where part1 is \\spad{a} and part2 is \\spad{b}.")))
NIL
NIL
-(-646 S -1943 I)
+(-648 S -4196 I)
((|constructor| (NIL "transforms top-level objects into compiled functions.")) (|compiledFunction| (((|Mapping| |#3| |#2|) |#1| (|Symbol|)) "\\spad{compiledFunction(expr,{} x)} returns a function \\spad{f: D -> I} defined by \\spad{f(x) == expr}. Function \\spad{f} is compiled and directly applicable to objects of type \\spad{D}.")) (|unaryFunction| (((|Mapping| |#3| |#2|) (|Symbol|)) "\\spad{unaryFunction(a)} is a local function")))
NIL
NIL
-(-647 E OV R P)
+(-649 E OV R P)
((|constructor| (NIL "This package provides the functions for the multivariate \"lifting\",{} using an algorithm of Paul Wang. This package will work for every euclidean domain \\spad{R} which has property \\spad{F},{} \\spadignore{i.e.} there exists a factor operation in \\spad{R[x]}.")) (|lifting1| (((|Union| (|List| (|SparseUnivariatePolynomial| |#4|)) "failed") (|SparseUnivariatePolynomial| |#4|) (|List| |#2|) (|List| (|SparseUnivariatePolynomial| |#4|)) (|List| |#3|) (|List| |#4|) (|List| (|List| (|Record| (|:| |expt| (|NonNegativeInteger|)) (|:| |pcoef| |#4|)))) (|List| (|NonNegativeInteger|)) (|Vector| (|List| (|SparseUnivariatePolynomial| |#3|))) |#3|) "\\spad{lifting1(u,{}lv,{}lu,{}lr,{}lp,{}lt,{}ln,{}t,{}r)} \\undocumented")) (|lifting| (((|Union| (|List| (|SparseUnivariatePolynomial| |#4|)) "failed") (|SparseUnivariatePolynomial| |#4|) (|List| |#2|) (|List| (|SparseUnivariatePolynomial| |#3|)) (|List| |#3|) (|List| |#4|) (|List| (|NonNegativeInteger|)) |#3|) "\\spad{lifting(u,{}lv,{}lu,{}lr,{}lp,{}ln,{}r)} \\undocumented")) (|corrPoly| (((|Union| (|List| (|SparseUnivariatePolynomial| |#4|)) "failed") (|SparseUnivariatePolynomial| |#4|) (|List| |#2|) (|List| |#3|) (|List| (|NonNegativeInteger|)) (|List| (|SparseUnivariatePolynomial| |#4|)) (|Vector| (|List| (|SparseUnivariatePolynomial| |#3|))) |#3|) "\\spad{corrPoly(u,{}lv,{}lr,{}ln,{}lu,{}t,{}r)} \\undocumented")))
NIL
NIL
-(-648 R)
+(-650 R)
((|constructor| (NIL "This is the category of linear operator rings with one generator. The generator is not named by the category but can always be constructed as \\spad{monomial(1,{}1)}. \\blankline For convenience,{} call the generator \\spad{G}. Then each value is equal to \\indented{4}{\\spad{sum(a(i)*G**i,{} i = 0..n)}} for some unique \\spad{n} and \\spad{a(i)} in \\spad{R}. \\blankline Note that multiplication is not necessarily commutative. In fact,{} if \\spad{a} is in \\spad{R},{} it is quite normal to have \\spad{a*G \\~= G*a}.")) (|monomial| (($ |#1| (|NonNegativeInteger|)) "\\spad{monomial(c,{}k)} produces \\spad{c} times the \\spad{k}-th power of the generating operator,{} \\spad{monomial(1,{}1)}.")) (|coefficient| ((|#1| $ (|NonNegativeInteger|)) "\\spad{coefficient(l,{}k)} is \\spad{a(k)} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|reductum| (($ $) "\\spad{reductum(l)} is \\spad{l - monomial(a(n),{}n)} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(l)} is \\spad{a(n)} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|minimumDegree| (((|NonNegativeInteger|) $) "\\spad{minimumDegree(l)} is the smallest \\spad{k} such that \\spad{a(k) \\~= 0} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(l)} is \\spad{n} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")))
-((-4242 . T) (-4243 . T) (-4245 . T))
+((-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-649 R1 UP1 UPUP1 R2 UP2 UPUP2)
+(-651 R1 UP1 UPUP1 R2 UP2 UPUP2)
((|constructor| (NIL "Lifting of a map through 2 levels of polynomials.")) (|map| ((|#6| (|Mapping| |#4| |#1|) |#3|) "\\spad{map(f,{} p)} lifts \\spad{f} to the domain of \\spad{p} then applies it to \\spad{p}.")))
NIL
NIL
-(-650)
+(-652)
((|constructor| (NIL "\\spadtype{MathMLFormat} provides a coercion from \\spadtype{OutputForm} to MathML format.")) (|display| (((|Void|) (|String|)) "prints the string returned by coerce,{} adding <math ...> tags.")) (|exprex| (((|String|) (|OutputForm|)) "coverts \\spadtype{OutputForm} to \\spadtype{String} with the structure preserved with braces. Actually this is not quite accurate. The function \\spadfun{precondition} is first applied to the \\spadtype{OutputForm} expression before \\spadfun{exprex}. The raw \\spadtype{OutputForm} and the nature of the \\spadfun{precondition} function is still obscure to me at the time of this writing (2007-02-14).")) (|coerceL| (((|String|) (|OutputForm|)) "coerceS(\\spad{o}) changes \\spad{o} in the standard output format to MathML format and displays result as one long string.")) (|coerceS| (((|String|) (|OutputForm|)) "\\spad{coerceS(o)} changes \\spad{o} in the standard output format to MathML format and displays formatted result.")) (|coerce| (((|String|) (|OutputForm|)) "coerceS(\\spad{o}) changes \\spad{o} in the standard output format to MathML format.")))
NIL
NIL
-(-651 R |Mod| -1345 -3123 |exactQuo|)
+(-653 R |Mod| -3077 -2131 |exactQuo|)
((|constructor| (NIL "\\indented{1}{These domains are used for the factorization and gcds} of univariate polynomials over the integers in order to work modulo different primes. See \\spadtype{ModularRing},{} \\spadtype{EuclideanModularRing}")) (|exQuo| (((|Union| $ "failed") $ $) "\\spad{exQuo(x,{}y)} \\undocumented")) (|reduce| (($ |#1| |#2|) "\\spad{reduce(r,{}m)} \\undocumented")) (|coerce| ((|#1| $) "\\spad{coerce(x)} \\undocumented")) (|modulus| ((|#2| $) "\\spad{modulus(x)} \\undocumented")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-652 R |Rep|)
+(-654 R |Rep|)
((|constructor| (NIL "This package \\undocumented")) (|frobenius| (($ $) "\\spad{frobenius(x)} \\undocumented")) (|computePowers| (((|PrimitiveArray| $)) "\\spad{computePowers()} \\undocumented")) (|pow| (((|PrimitiveArray| $)) "\\spad{pow()} \\undocumented")) (|An| (((|Vector| |#1|) $) "\\spad{An(x)} \\undocumented")) (|UnVectorise| (($ (|Vector| |#1|)) "\\spad{UnVectorise(v)} \\undocumented")) (|Vectorise| (((|Vector| |#1|) $) "\\spad{Vectorise(x)} \\undocumented")) (|coerce| (($ |#2|) "\\spad{coerce(x)} \\undocumented")) (|lift| ((|#2| $) "\\spad{lift(x)} \\undocumented")) (|reduce| (($ |#2|) "\\spad{reduce(x)} \\undocumented")) (|modulus| ((|#2|) "\\spad{modulus()} \\undocumented")) (|setPoly| ((|#2| |#2|) "\\spad{setPoly(x)} \\undocumented")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4244 |has| |#1| (-339)) (-4246 |has| |#1| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-840))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355)))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523)))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499))))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-1063))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-344))) (|HasCategory| |#1| (QUOTE (-325))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasCategory| |#1| (QUOTE (-211))) (|HasAttribute| |#1| (QUOTE -4246)) (|HasCategory| |#1| (QUOTE (-427))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-134)))))
-(-653 IS E |ff|)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4246 |has| |#1| (-341)) (-4248 |has| |#1| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-842))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357)))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525)))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501))))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-1065))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-346))) (|HasCategory| |#1| (QUOTE (-327))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasCategory| |#1| (QUOTE (-213))) (|HasAttribute| |#1| (QUOTE -4248)) (|HasCategory| |#1| (QUOTE (-429))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-136)))))
+(-655 IS E |ff|)
((|constructor| (NIL "This package \\undocumented")) (|construct| (($ |#1| |#2|) "\\spad{construct(i,{}e)} \\undocumented")) (|coerce| (((|Record| (|:| |index| |#1|) (|:| |exponent| |#2|)) $) "\\spad{coerce(x)} \\undocumented") (($ (|Record| (|:| |index| |#1|) (|:| |exponent| |#2|))) "\\spad{coerce(x)} \\undocumented")) (|index| ((|#1| $) "\\spad{index(x)} \\undocumented")) (|exponent| ((|#2| $) "\\spad{exponent(x)} \\undocumented")))
NIL
NIL
-(-654 R M)
+(-656 R M)
((|constructor| (NIL "Algebra of ADDITIVE operators on a module.")) (|makeop| (($ |#1| (|FreeGroup| (|BasicOperator|))) "\\spad{makeop should} be local but conditional")) (|opeval| ((|#2| (|BasicOperator|) |#2|) "\\spad{opeval should} be local but conditional")) (** (($ $ (|Integer|)) "\\spad{op**n} \\undocumented") (($ (|BasicOperator|) (|Integer|)) "\\spad{op**n} \\undocumented")) (|evaluateInverse| (($ $ (|Mapping| |#2| |#2|)) "\\spad{evaluateInverse(x,{}f)} \\undocumented")) (|evaluate| (($ $ (|Mapping| |#2| |#2|)) "\\spad{evaluate(f,{} u +-> g u)} attaches the map \\spad{g} to \\spad{f}. \\spad{f} must be a basic operator \\spad{g} MUST be additive,{} \\spadignore{i.e.} \\spad{g(a + b) = g(a) + g(b)} for any \\spad{a},{} \\spad{b} in \\spad{M}. This implies that \\spad{g(n a) = n g(a)} for any \\spad{a} in \\spad{M} and integer \\spad{n > 0}.")) (|conjug| ((|#1| |#1|) "\\spad{conjug(x)}should be local but conditional")) (|adjoint| (($ $ $) "\\spad{adjoint(op1,{} op2)} sets the adjoint of \\spad{op1} to be op2. \\spad{op1} must be a basic operator") (($ $) "\\spad{adjoint(op)} returns the adjoint of the operator \\spad{op}.")))
-((-4243 |has| |#1| (-158)) (-4242 |has| |#1| (-158)) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))))
-(-655 R |Mod| -1345 -3123 |exactQuo|)
+((-4245 |has| |#1| (-160)) (-4244 |has| |#1| (-160)) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))))
+(-657 R |Mod| -3077 -2131 |exactQuo|)
((|constructor| (NIL "These domains are used for the factorization and gcds of univariate polynomials over the integers in order to work modulo different primes. See \\spadtype{EuclideanModularRing} ,{}\\spadtype{ModularField}")) (|inv| (($ $) "\\spad{inv(x)} \\undocumented")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(x)} \\undocumented")) (|exQuo| (((|Union| $ "failed") $ $) "\\spad{exQuo(x,{}y)} \\undocumented")) (|reduce| (($ |#1| |#2|) "\\spad{reduce(r,{}m)} \\undocumented")) (|coerce| ((|#1| $) "\\spad{coerce(x)} \\undocumented")) (|modulus| ((|#2| $) "\\spad{modulus(x)} \\undocumented")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-656 S R)
+(-658 S R)
((|constructor| (NIL "The category of modules over a commutative ring. \\blankline")))
NIL
NIL
-(-657 R)
+(-659 R)
((|constructor| (NIL "The category of modules over a commutative ring. \\blankline")))
-((-4243 . T) (-4242 . T))
+((-4245 . T) (-4244 . T))
NIL
-(-658 -3894)
+(-660 -3576)
((|constructor| (NIL "\\indented{1}{MoebiusTransform(\\spad{F}) is the domain of fractional linear (Moebius)} transformations over \\spad{F}.")) (|eval| (((|OnePointCompletion| |#1|) $ (|OnePointCompletion| |#1|)) "\\spad{eval(m,{}x)} returns \\spad{(a*x + b)/(c*x + d)} where \\spad{m = moebius(a,{}b,{}c,{}d)} (see \\spadfunFrom{moebius}{MoebiusTransform}).") ((|#1| $ |#1|) "\\spad{eval(m,{}x)} returns \\spad{(a*x + b)/(c*x + d)} where \\spad{m = moebius(a,{}b,{}c,{}d)} (see \\spadfunFrom{moebius}{MoebiusTransform}).")) (|recip| (($ $) "\\spad{recip(m)} = recip() * \\spad{m}") (($) "\\spad{recip()} returns \\spad{matrix [[0,{}1],{}[1,{}0]]} representing the map \\spad{x -> 1 / x}.")) (|scale| (($ $ |#1|) "\\spad{scale(m,{}h)} returns \\spad{scale(h) * m} (see \\spadfunFrom{shift}{MoebiusTransform}).") (($ |#1|) "\\spad{scale(k)} returns \\spad{matrix [[k,{}0],{}[0,{}1]]} representing the map \\spad{x -> k * x}.")) (|shift| (($ $ |#1|) "\\spad{shift(m,{}h)} returns \\spad{shift(h) * m} (see \\spadfunFrom{shift}{MoebiusTransform}).") (($ |#1|) "\\spad{shift(k)} returns \\spad{matrix [[1,{}k],{}[0,{}1]]} representing the map \\spad{x -> x + k}.")) (|moebius| (($ |#1| |#1| |#1| |#1|) "\\spad{moebius(a,{}b,{}c,{}d)} returns \\spad{matrix [[a,{}b],{}[c,{}d]]}.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-659 S)
+(-661 S)
((|constructor| (NIL "Monad is the class of all multiplicative monads,{} \\spadignore{i.e.} sets with a binary operation.")) (** (($ $ (|PositiveInteger|)) "\\spad{a**n} returns the \\spad{n}\\spad{-}th power of \\spad{a},{} defined by repeated squaring.")) (|leftPower| (($ $ (|PositiveInteger|)) "\\spad{leftPower(a,{}n)} returns the \\spad{n}\\spad{-}th left power of \\spad{a},{} \\spadignore{i.e.} \\spad{leftPower(a,{}n) := a * leftPower(a,{}n-1)} and \\spad{leftPower(a,{}1) := a}.")) (|rightPower| (($ $ (|PositiveInteger|)) "\\spad{rightPower(a,{}n)} returns the \\spad{n}\\spad{-}th right power of \\spad{a},{} \\spadignore{i.e.} \\spad{rightPower(a,{}n) := rightPower(a,{}n-1) * a} and \\spad{rightPower(a,{}1) := a}.")) (* (($ $ $) "\\spad{a*b} is the product of \\spad{a} and \\spad{b} in a set with a binary operation.")))
NIL
NIL
-(-660)
+(-662)
((|constructor| (NIL "Monad is the class of all multiplicative monads,{} \\spadignore{i.e.} sets with a binary operation.")) (** (($ $ (|PositiveInteger|)) "\\spad{a**n} returns the \\spad{n}\\spad{-}th power of \\spad{a},{} defined by repeated squaring.")) (|leftPower| (($ $ (|PositiveInteger|)) "\\spad{leftPower(a,{}n)} returns the \\spad{n}\\spad{-}th left power of \\spad{a},{} \\spadignore{i.e.} \\spad{leftPower(a,{}n) := a * leftPower(a,{}n-1)} and \\spad{leftPower(a,{}1) := a}.")) (|rightPower| (($ $ (|PositiveInteger|)) "\\spad{rightPower(a,{}n)} returns the \\spad{n}\\spad{-}th right power of \\spad{a},{} \\spadignore{i.e.} \\spad{rightPower(a,{}n) := rightPower(a,{}n-1) * a} and \\spad{rightPower(a,{}1) := a}.")) (* (($ $ $) "\\spad{a*b} is the product of \\spad{a} and \\spad{b} in a set with a binary operation.")))
NIL
NIL
-(-661 S)
+(-663 S)
((|constructor| (NIL "\\indented{1}{MonadWithUnit is the class of multiplicative monads with unit,{}} \\indented{1}{\\spadignore{i.e.} sets with a binary operation and a unit element.} Axioms \\indented{3}{leftIdentity(\"*\":(\\%,{}\\%)\\spad{->}\\%,{}1)\\space{3}\\tab{30} 1*x=x} \\indented{3}{rightIdentity(\"*\":(\\%,{}\\%)\\spad{->}\\%,{}1)\\space{2}\\tab{30} x*1=x} Common Additional Axioms \\indented{3}{unitsKnown---if \"recip\" says \"failed\",{} that PROVES input wasn\\spad{'t} a unit}")) (|rightRecip| (((|Union| $ "failed") $) "\\spad{rightRecip(a)} returns an element,{} which is a right inverse of \\spad{a},{} or \\spad{\"failed\"} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|leftRecip| (((|Union| $ "failed") $) "\\spad{leftRecip(a)} returns an element,{} which is a left inverse of \\spad{a},{} or \\spad{\"failed\"} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(a)} returns an element,{} which is both a left and a right inverse of \\spad{a},{} or \\spad{\"failed\"} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (** (($ $ (|NonNegativeInteger|)) "\\spad{a**n} returns the \\spad{n}\\spad{-}th power of \\spad{a},{} defined by repeated squaring.")) (|leftPower| (($ $ (|NonNegativeInteger|)) "\\spad{leftPower(a,{}n)} returns the \\spad{n}\\spad{-}th left power of \\spad{a},{} \\spadignore{i.e.} \\spad{leftPower(a,{}n) := a * leftPower(a,{}n-1)} and \\spad{leftPower(a,{}0) := 1}.")) (|rightPower| (($ $ (|NonNegativeInteger|)) "\\spad{rightPower(a,{}n)} returns the \\spad{n}\\spad{-}th right power of \\spad{a},{} \\spadignore{i.e.} \\spad{rightPower(a,{}n) := rightPower(a,{}n-1) * a} and \\spad{rightPower(a,{}0) := 1}.")) (|one?| (((|Boolean|) $) "\\spad{one?(a)} tests whether \\spad{a} is the unit 1.")) ((|One|) (($) "1 returns the unit element,{} denoted by 1.")))
NIL
NIL
-(-662)
+(-664)
((|constructor| (NIL "\\indented{1}{MonadWithUnit is the class of multiplicative monads with unit,{}} \\indented{1}{\\spadignore{i.e.} sets with a binary operation and a unit element.} Axioms \\indented{3}{leftIdentity(\"*\":(\\%,{}\\%)\\spad{->}\\%,{}1)\\space{3}\\tab{30} 1*x=x} \\indented{3}{rightIdentity(\"*\":(\\%,{}\\%)\\spad{->}\\%,{}1)\\space{2}\\tab{30} x*1=x} Common Additional Axioms \\indented{3}{unitsKnown---if \"recip\" says \"failed\",{} that PROVES input wasn\\spad{'t} a unit}")) (|rightRecip| (((|Union| $ "failed") $) "\\spad{rightRecip(a)} returns an element,{} which is a right inverse of \\spad{a},{} or \\spad{\"failed\"} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|leftRecip| (((|Union| $ "failed") $) "\\spad{leftRecip(a)} returns an element,{} which is a left inverse of \\spad{a},{} or \\spad{\"failed\"} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(a)} returns an element,{} which is both a left and a right inverse of \\spad{a},{} or \\spad{\"failed\"} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (** (($ $ (|NonNegativeInteger|)) "\\spad{a**n} returns the \\spad{n}\\spad{-}th power of \\spad{a},{} defined by repeated squaring.")) (|leftPower| (($ $ (|NonNegativeInteger|)) "\\spad{leftPower(a,{}n)} returns the \\spad{n}\\spad{-}th left power of \\spad{a},{} \\spadignore{i.e.} \\spad{leftPower(a,{}n) := a * leftPower(a,{}n-1)} and \\spad{leftPower(a,{}0) := 1}.")) (|rightPower| (($ $ (|NonNegativeInteger|)) "\\spad{rightPower(a,{}n)} returns the \\spad{n}\\spad{-}th right power of \\spad{a},{} \\spadignore{i.e.} \\spad{rightPower(a,{}n) := rightPower(a,{}n-1) * a} and \\spad{rightPower(a,{}0) := 1}.")) (|one?| (((|Boolean|) $) "\\spad{one?(a)} tests whether \\spad{a} is the unit 1.")) ((|One|) (($) "1 returns the unit element,{} denoted by 1.")))
NIL
NIL
-(-663 S R UP)
+(-665 S R UP)
((|constructor| (NIL "A \\spadtype{MonogenicAlgebra} is an algebra of finite rank which can be generated by a single element.")) (|derivationCoordinates| (((|Matrix| |#2|) (|Vector| $) (|Mapping| |#2| |#2|)) "\\spad{derivationCoordinates(b,{} ')} returns \\spad{M} such that \\spad{b' = M b}.")) (|lift| ((|#3| $) "\\spad{lift(z)} returns a minimal degree univariate polynomial up such that \\spad{z=reduce up}.")) (|convert| (($ |#3|) "\\spad{convert(up)} converts the univariate polynomial \\spad{up} to an algebra element,{} reducing by the \\spad{definingPolynomial()} if necessary.")) (|reduce| (((|Union| $ "failed") (|Fraction| |#3|)) "\\spad{reduce(frac)} converts the fraction \\spad{frac} to an algebra element.") (($ |#3|) "\\spad{reduce(up)} converts the univariate polynomial \\spad{up} to an algebra element,{} reducing by the \\spad{definingPolynomial()} if necessary.")) (|definingPolynomial| ((|#3|) "\\spad{definingPolynomial()} returns the minimal polynomial which \\spad{generator()} satisfies.")) (|generator| (($) "\\spad{generator()} returns the generator for this domain.")))
NIL
-((|HasCategory| |#2| (QUOTE (-325))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-344))))
-(-664 R UP)
+((|HasCategory| |#2| (QUOTE (-327))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-346))))
+(-666 R UP)
((|constructor| (NIL "A \\spadtype{MonogenicAlgebra} is an algebra of finite rank which can be generated by a single element.")) (|derivationCoordinates| (((|Matrix| |#1|) (|Vector| $) (|Mapping| |#1| |#1|)) "\\spad{derivationCoordinates(b,{} ')} returns \\spad{M} such that \\spad{b' = M b}.")) (|lift| ((|#2| $) "\\spad{lift(z)} returns a minimal degree univariate polynomial up such that \\spad{z=reduce up}.")) (|convert| (($ |#2|) "\\spad{convert(up)} converts the univariate polynomial \\spad{up} to an algebra element,{} reducing by the \\spad{definingPolynomial()} if necessary.")) (|reduce| (((|Union| $ "failed") (|Fraction| |#2|)) "\\spad{reduce(frac)} converts the fraction \\spad{frac} to an algebra element.") (($ |#2|) "\\spad{reduce(up)} converts the univariate polynomial \\spad{up} to an algebra element,{} reducing by the \\spad{definingPolynomial()} if necessary.")) (|definingPolynomial| ((|#2|) "\\spad{definingPolynomial()} returns the minimal polynomial which \\spad{generator()} satisfies.")) (|generator| (($) "\\spad{generator()} returns the generator for this domain.")))
-((-4241 |has| |#1| (-339)) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 |has| |#1| (-341)) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-665 S)
+(-667 S)
((|constructor| (NIL "The class of multiplicative monoids,{} \\spadignore{i.e.} semigroups with a multiplicative identity element. \\blankline")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(x)} tries to compute the multiplicative inverse for \\spad{x} or \"failed\" if it cannot find the inverse (see unitsKnown).")) (^ (($ $ (|NonNegativeInteger|)) "\\spad{x^n} returns the repeated product of \\spad{x} \\spad{n} times,{} \\spadignore{i.e.} exponentiation.")) (** (($ $ (|NonNegativeInteger|)) "\\spad{x**n} returns the repeated product of \\spad{x} \\spad{n} times,{} \\spadignore{i.e.} exponentiation.")) (|one?| (((|Boolean|) $) "\\spad{one?(x)} tests if \\spad{x} is equal to 1.")) (|sample| (($) "\\spad{sample yields} a value of type \\%")) ((|One|) (($) "1 is the multiplicative identity.")))
NIL
NIL
-(-666)
+(-668)
((|constructor| (NIL "The class of multiplicative monoids,{} \\spadignore{i.e.} semigroups with a multiplicative identity element. \\blankline")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(x)} tries to compute the multiplicative inverse for \\spad{x} or \"failed\" if it cannot find the inverse (see unitsKnown).")) (^ (($ $ (|NonNegativeInteger|)) "\\spad{x^n} returns the repeated product of \\spad{x} \\spad{n} times,{} \\spadignore{i.e.} exponentiation.")) (** (($ $ (|NonNegativeInteger|)) "\\spad{x**n} returns the repeated product of \\spad{x} \\spad{n} times,{} \\spadignore{i.e.} exponentiation.")) (|one?| (((|Boolean|) $) "\\spad{one?(x)} tests if \\spad{x} is equal to 1.")) (|sample| (($) "\\spad{sample yields} a value of type \\%")) ((|One|) (($) "1 is the multiplicative identity.")))
NIL
NIL
-(-667 -3894 UP)
+(-669 -3576 UP)
((|constructor| (NIL "Tools for handling monomial extensions.")) (|decompose| (((|Record| (|:| |poly| |#2|) (|:| |normal| (|Fraction| |#2|)) (|:| |special| (|Fraction| |#2|))) (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{decompose(f,{} D)} returns \\spad{[p,{}n,{}s]} such that \\spad{f = p+n+s},{} all the squarefree factors of \\spad{denom(n)} are normal \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} \\spad{denom(s)} is special \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} and \\spad{n} and \\spad{s} are proper fractions (no pole at infinity). \\spad{D} is the derivation to use.")) (|normalDenom| ((|#2| (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{normalDenom(f,{} D)} returns the product of all the normal factors of \\spad{denom(f)}. \\spad{D} is the derivation to use.")) (|splitSquarefree| (((|Record| (|:| |normal| (|Factored| |#2|)) (|:| |special| (|Factored| |#2|))) |#2| (|Mapping| |#2| |#2|)) "\\spad{splitSquarefree(p,{} D)} returns \\spad{[n_1 n_2\\^2 ... n_m\\^m,{} s_1 s_2\\^2 ... s_q\\^q]} such that \\spad{p = n_1 n_2\\^2 ... n_m\\^m s_1 s_2\\^2 ... s_q\\^q},{} each \\spad{n_i} is normal \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D} and each \\spad{s_i} is special \\spad{w}.\\spad{r}.\\spad{t} \\spad{D}. \\spad{D} is the derivation to use.")) (|split| (((|Record| (|:| |normal| |#2|) (|:| |special| |#2|)) |#2| (|Mapping| |#2| |#2|)) "\\spad{split(p,{} D)} returns \\spad{[n,{}s]} such that \\spad{p = n s},{} all the squarefree factors of \\spad{n} are normal \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} and \\spad{s} is special \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D}. \\spad{D} is the derivation to use.")))
NIL
NIL
-(-668 |VarSet| E1 E2 R S PR PS)
+(-670 |VarSet| E1 E2 R S PR PS)
((|constructor| (NIL "\\indented{1}{Utilities for MPolyCat} Author: Manuel Bronstein Date Created: 1987 Date Last Updated: 28 March 1990 (\\spad{PG})")) (|reshape| ((|#7| (|List| |#5|) |#6|) "\\spad{reshape(l,{}p)} \\undocumented")) (|map| ((|#7| (|Mapping| |#5| |#4|) |#6|) "\\spad{map(f,{}p)} \\undocumented")))
NIL
NIL
-(-669 |Vars1| |Vars2| E1 E2 R PR1 PR2)
+(-671 |Vars1| |Vars2| E1 E2 R PR1 PR2)
((|constructor| (NIL "This package \\undocumented")) (|map| ((|#7| (|Mapping| |#2| |#1|) |#6|) "\\spad{map(f,{}x)} \\undocumented")))
NIL
NIL
-(-670 E OV R PPR)
+(-672 E OV R PPR)
((|constructor| (NIL "\\indented{3}{This package exports a factor operation for multivariate polynomials} with coefficients which are polynomials over some ring \\spad{R} over which we can factor. It is used internally by packages such as the solve package which need to work with polynomials in a specific set of variables with coefficients which are polynomials in all the other variables.")) (|factor| (((|Factored| |#4|) |#4|) "\\spad{factor(p)} factors a polynomial with polynomial coefficients.")) (|variable| (((|Union| $ "failed") (|Symbol|)) "\\spad{variable(s)} makes an element from symbol \\spad{s} or fails.")) (|convert| (((|Symbol|) $) "\\spad{convert(x)} converts \\spad{x} to a symbol")))
NIL
NIL
-(-671 |vl| R)
+(-673 |vl| R)
((|constructor| (NIL "\\indented{2}{This type is the basic representation of sparse recursive multivariate} polynomials whose variables are from a user specified list of symbols. The ordering is specified by the position of the variable in the list. The coefficient ring may be non commutative,{} but the variables are assumed to commute.")))
-(((-4250 "*") |has| |#2| (-158)) (-4241 |has| |#2| (-515)) (-4246 |has| |#2| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#2| (QUOTE (-840))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-840)))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-158))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-515)))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355)))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523)))))) (-12 (|HasCategory| (-796 |#1|) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499))))) (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-134))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-339))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasAttribute| |#2| (QUOTE -4246)) (|HasCategory| |#2| (QUOTE (-427))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-840)))) (|HasCategory| |#2| (QUOTE (-134)))))
-(-672 E OV R PRF)
+(((-4252 "*") |has| |#2| (-160)) (-4243 |has| |#2| (-517)) (-4248 |has| |#2| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#2| (QUOTE (-842))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-842)))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-160))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-517)))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357)))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525)))))) (-12 (|HasCategory| (-798 |#1|) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501))))) (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-138))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-341))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasAttribute| |#2| (QUOTE -4248)) (|HasCategory| |#2| (QUOTE (-429))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-842)))) (|HasCategory| |#2| (QUOTE (-136)))))
+(-674 E OV R PRF)
((|constructor| (NIL "\\indented{3}{This package exports a factor operation for multivariate polynomials} with coefficients which are rational functions over some ring \\spad{R} over which we can factor. It is used internally by packages such as primary decomposition which need to work with polynomials with rational function coefficients,{} \\spadignore{i.e.} themselves fractions of polynomials.")) (|factor| (((|Factored| |#4|) |#4|) "\\spad{factor(prf)} factors a polynomial with rational function coefficients.")) (|pushuconst| ((|#4| (|Fraction| (|Polynomial| |#3|)) |#2|) "\\spad{pushuconst(r,{}var)} takes a rational function and raises all occurances of the variable \\spad{var} to the polynomial level.")) (|pushucoef| ((|#4| (|SparseUnivariatePolynomial| (|Polynomial| |#3|)) |#2|) "\\spad{pushucoef(upoly,{}var)} converts the anonymous univariate polynomial \\spad{upoly} to a polynomial in \\spad{var} over rational functions.")) (|pushup| ((|#4| |#4| |#2|) "\\spad{pushup(prf,{}var)} raises all occurences of the variable \\spad{var} in the coefficients of the polynomial \\spad{prf} back to the polynomial level.")) (|pushdterm| ((|#4| (|SparseUnivariatePolynomial| |#4|) |#2|) "\\spad{pushdterm(monom,{}var)} pushes all top level occurences of the variable \\spad{var} into the coefficient domain for the monomial \\spad{monom}.")) (|pushdown| ((|#4| |#4| |#2|) "\\spad{pushdown(prf,{}var)} pushes all top level occurences of the variable \\spad{var} into the coefficient domain for the polynomial \\spad{prf}.")) (|totalfract| (((|Record| (|:| |sup| (|Polynomial| |#3|)) (|:| |inf| (|Polynomial| |#3|))) |#4|) "\\spad{totalfract(prf)} takes a polynomial whose coefficients are themselves fractions of polynomials and returns a record containing the numerator and denominator resulting from putting \\spad{prf} over a common denominator.")) (|convert| (((|Symbol|) $) "\\spad{convert(x)} converts \\spad{x} to a symbol")))
NIL
NIL
-(-673 E OV R P)
+(-675 E OV R P)
((|constructor| (NIL "\\indented{1}{MRationalFactorize contains the factor function for multivariate} polynomials over the quotient field of a ring \\spad{R} such that the package MultivariateFactorize can factor multivariate polynomials over \\spad{R}.")) (|factor| (((|Factored| |#4|) |#4|) "\\spad{factor(p)} factors the multivariate polynomial \\spad{p} with coefficients which are fractions of elements of \\spad{R}.")))
NIL
NIL
-(-674 R S M)
+(-676 R S M)
((|constructor| (NIL "MonoidRingFunctions2 implements functions between two monoid rings defined with the same monoid over different rings.")) (|map| (((|MonoidRing| |#2| |#3|) (|Mapping| |#2| |#1|) (|MonoidRing| |#1| |#3|)) "\\spad{map(f,{}u)} maps \\spad{f} onto the coefficients \\spad{f} the element \\spad{u} of the monoid ring to create an element of a monoid ring with the same monoid \\spad{b}.")))
NIL
NIL
-(-675 R M)
+(-677 R M)
((|constructor| (NIL "\\spadtype{MonoidRing}(\\spad{R},{}\\spad{M}),{} implements the algebra of all maps from the monoid \\spad{M} to the commutative ring \\spad{R} with finite support. Multiplication of two maps \\spad{f} and \\spad{g} is defined to map an element \\spad{c} of \\spad{M} to the (convolution) sum over {\\em f(a)g(b)} such that {\\em ab = c}. Thus \\spad{M} can be identified with a canonical basis and the maps can also be considered as formal linear combinations of the elements in \\spad{M}. Scalar multiples of a basis element are called monomials. A prominent example is the class of polynomials where the monoid is a direct product of the natural numbers with pointwise addition. When \\spad{M} is \\spadtype{FreeMonoid Symbol},{} one gets polynomials in infinitely many non-commuting variables. Another application area is representation theory of finite groups \\spad{G},{} where modules over \\spadtype{MonoidRing}(\\spad{R},{}\\spad{G}) are studied.")) (|reductum| (($ $) "\\spad{reductum(f)} is \\spad{f} minus its leading monomial.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(f)} gives the coefficient of \\spad{f},{} whose corresponding monoid element is the greatest among all those with non-zero coefficients.")) (|leadingMonomial| ((|#2| $) "\\spad{leadingMonomial(f)} gives the monomial of \\spad{f} whose corresponding monoid element is the greatest among all those with non-zero coefficients.")) (|numberOfMonomials| (((|NonNegativeInteger|) $) "\\spad{numberOfMonomials(f)} is the number of non-zero coefficients with respect to the canonical basis.")) (|monomials| (((|List| $) $) "\\spad{monomials(f)} gives the list of all monomials whose sum is \\spad{f}.")) (|coefficients| (((|List| |#1|) $) "\\spad{coefficients(f)} lists all non-zero coefficients.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(f)} tests if \\spad{f} is a single monomial.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(fn,{}u)} maps function \\spad{fn} onto the coefficients of the non-zero monomials of \\spad{u}.")) (|terms| (((|List| (|Record| (|:| |coef| |#1|) (|:| |monom| |#2|))) $) "\\spad{terms(f)} gives the list of non-zero coefficients combined with their corresponding basis element as records. This is the internal representation.")) (|coerce| (($ (|List| (|Record| (|:| |coef| |#1|) (|:| |monom| |#2|)))) "\\spad{coerce(lt)} converts a list of terms and coefficients to a member of the domain.")) (|coefficient| ((|#1| $ |#2|) "\\spad{coefficient(f,{}m)} extracts the coefficient of \\spad{m} in \\spad{f} with respect to the canonical basis \\spad{M}.")) (|monomial| (($ |#1| |#2|) "\\spad{monomial(r,{}m)} creates a scalar multiple of the basis element \\spad{m}.")))
-((-4243 |has| |#1| (-158)) (-4242 |has| |#1| (-158)) (-4245 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-344))) (|HasCategory| |#2| (QUOTE (-344)))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-786))))
-(-676 S)
+((-4245 |has| |#1| (-160)) (-4244 |has| |#1| (-160)) (-4247 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-346))) (|HasCategory| |#2| (QUOTE (-346)))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#2| (QUOTE (-788))))
+(-678 S)
((|constructor| (NIL "A multi-set aggregate is a set which keeps track of the multiplicity of its elements.")))
-((-4238 . T) (-4249 . T) (-2500 . T))
+((-4240 . T) (-4251 . T) (-2137 . T))
NIL
-(-677 S)
+(-679 S)
((|constructor| (NIL "A multiset is a set with multiplicities.")) (|remove!| (($ (|Mapping| (|Boolean|) |#1|) $ (|Integer|)) "\\spad{remove!(p,{}ms,{}number)} removes destructively at most \\spad{number} copies of elements \\spad{x} such that \\spad{p(x)} is \\spadfun{\\spad{true}} if \\spad{number} is positive,{} all of them if \\spad{number} equals zero,{} and all but at most \\spad{-number} if \\spad{number} is negative.") (($ |#1| $ (|Integer|)) "\\spad{remove!(x,{}ms,{}number)} removes destructively at most \\spad{number} copies of element \\spad{x} if \\spad{number} is positive,{} all of them if \\spad{number} equals zero,{} and all but at most \\spad{-number} if \\spad{number} is negative.")) (|remove| (($ (|Mapping| (|Boolean|) |#1|) $ (|Integer|)) "\\spad{remove(p,{}ms,{}number)} removes at most \\spad{number} copies of elements \\spad{x} such that \\spad{p(x)} is \\spadfun{\\spad{true}} if \\spad{number} is positive,{} all of them if \\spad{number} equals zero,{} and all but at most \\spad{-number} if \\spad{number} is negative.") (($ |#1| $ (|Integer|)) "\\spad{remove(x,{}ms,{}number)} removes at most \\spad{number} copies of element \\spad{x} if \\spad{number} is positive,{} all of them if \\spad{number} equals zero,{} and all but at most \\spad{-number} if \\spad{number} is negative.")) (|members| (((|List| |#1|) $) "\\spad{members(ms)} returns a list of the elements of \\spad{ms} {\\em without} their multiplicity. See also \\spadfun{parts}.")) (|multiset| (($ (|List| |#1|)) "\\spad{multiset(ls)} creates a multiset with elements from \\spad{ls}.") (($ |#1|) "\\spad{multiset(s)} creates a multiset with singleton \\spad{s}.") (($) "\\spad{multiset()}\\$\\spad{D} creates an empty multiset of domain \\spad{D}.")))
-((-4248 . T) (-4238 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-678)
+((-4250 . T) (-4240 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-680)
((|constructor| (NIL "\\spadtype{MoreSystemCommands} implements an interface with the system command facility. These are the commands that are issued from source files or the system interpreter and they start with a close parenthesis,{} \\spadignore{e.g.} \\spadsyscom{what} commands.")) (|systemCommand| (((|Void|) (|String|)) "\\spad{systemCommand(cmd)} takes the string \\spadvar{\\spad{cmd}} and passes it to the runtime environment for execution as a system command. Although various things may be printed,{} no usable value is returned.")))
NIL
NIL
-(-679 S)
+(-681 S)
((|constructor| (NIL "This package exports tools for merging lists")) (|mergeDifference| (((|List| |#1|) (|List| |#1|) (|List| |#1|)) "\\spad{mergeDifference(l1,{}l2)} returns a list of elements in \\spad{l1} not present in \\spad{l2}. Assumes lists are ordered and all \\spad{x} in \\spad{l2} are also in \\spad{l1}.")))
NIL
NIL
-(-680 |Coef| |Var|)
+(-682 |Coef| |Var|)
((|constructor| (NIL "\\spadtype{MultivariateTaylorSeriesCategory} is the most general multivariate Taylor series category.")) (|integrate| (($ $ |#2|) "\\spad{integrate(f,{}x)} returns the anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{x} with constant coefficient 1. We may integrate a series when we can divide coefficients by integers.")) (|polynomial| (((|Polynomial| |#1|) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{polynomial(f,{}k1,{}k2)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (((|Polynomial| |#1|) $ (|NonNegativeInteger|)) "\\spad{polynomial(f,{}k)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.")) (|order| (((|NonNegativeInteger|) $ |#2| (|NonNegativeInteger|)) "\\spad{order(f,{}x,{}n)} returns \\spad{min(n,{}order(f,{}x))}.") (((|NonNegativeInteger|) $ |#2|) "\\spad{order(f,{}x)} returns the order of \\spad{f} viewed as a series in \\spad{x} may result in an infinite loop if \\spad{f} has no non-zero terms.")) (|monomial| (($ $ (|List| |#2|) (|List| (|NonNegativeInteger|))) "\\spad{monomial(a,{}[x1,{}x2,{}...,{}xk],{}[n1,{}n2,{}...,{}nk])} returns \\spad{a * x1^n1 * ... * xk^nk}.") (($ $ |#2| (|NonNegativeInteger|)) "\\spad{monomial(a,{}x,{}n)} returns \\spad{a*x^n}.")) (|extend| (($ $ (|NonNegativeInteger|)) "\\spad{extend(f,{}n)} causes all terms of \\spad{f} of degree \\spad{<= n} to be computed.")) (|coefficient| (($ $ (|List| |#2|) (|List| (|NonNegativeInteger|))) "\\spad{coefficient(f,{}[x1,{}x2,{}...,{}xk],{}[n1,{}n2,{}...,{}nk])} returns the coefficient of \\spad{x1^n1 * ... * xk^nk} in \\spad{f}.") (($ $ |#2| (|NonNegativeInteger|)) "\\spad{coefficient(f,{}x,{}n)} returns the coefficient of \\spad{x^n} in \\spad{f}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4243 . T) (-4242 . T) (-4245 . T))
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4245 . T) (-4244 . T) (-4247 . T))
NIL
-(-681 OV E R P)
+(-683 OV E R P)
((|constructor| (NIL "\\indented{2}{This is the top level package for doing multivariate factorization} over basic domains like \\spadtype{Integer} or \\spadtype{Fraction Integer}.")) (|factor| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{factor(p)} factors the multivariate polynomial \\spad{p} over its coefficient domain where \\spad{p} is represented as a univariate polynomial with multivariate coefficients") (((|Factored| |#4|) |#4|) "\\spad{factor(p)} factors the multivariate polynomial \\spad{p} over its coefficient domain")))
NIL
NIL
-(-682 E OV R P)
+(-684 E OV R P)
((|constructor| (NIL "Author : \\spad{P}.Gianni This package provides the functions for the computation of the square free decomposition of a multivariate polynomial. It uses the package GenExEuclid for the resolution of the equation \\spad{Af + Bg = h} and its generalization to \\spad{n} polynomials over an integral domain and the package \\spad{MultivariateLifting} for the \"multivariate\" lifting.")) (|normDeriv2| (((|SparseUnivariatePolynomial| |#3|) (|SparseUnivariatePolynomial| |#3|) (|Integer|)) "\\spad{normDeriv2 should} be local")) (|myDegree| (((|List| (|NonNegativeInteger|)) (|SparseUnivariatePolynomial| |#4|) (|List| |#2|) (|NonNegativeInteger|)) "\\spad{myDegree should} be local")) (|lift| (((|Union| (|List| (|SparseUnivariatePolynomial| |#4|)) "failed") (|SparseUnivariatePolynomial| |#4|) (|SparseUnivariatePolynomial| |#3|) (|SparseUnivariatePolynomial| |#3|) |#4| (|List| |#2|) (|List| (|NonNegativeInteger|)) (|List| |#3|)) "\\spad{lift should} be local")) (|check| (((|Boolean|) (|List| (|Record| (|:| |factor| (|SparseUnivariatePolynomial| |#3|)) (|:| |exponent| (|Integer|)))) (|List| (|Record| (|:| |factor| (|SparseUnivariatePolynomial| |#3|)) (|:| |exponent| (|Integer|))))) "\\spad{check should} be local")) (|coefChoose| ((|#4| (|Integer|) (|Factored| |#4|)) "\\spad{coefChoose should} be local")) (|intChoose| (((|Record| (|:| |upol| (|SparseUnivariatePolynomial| |#3|)) (|:| |Lval| (|List| |#3|)) (|:| |Lfact| (|List| (|Record| (|:| |factor| (|SparseUnivariatePolynomial| |#3|)) (|:| |exponent| (|Integer|))))) (|:| |ctpol| |#3|)) (|SparseUnivariatePolynomial| |#4|) (|List| |#2|) (|List| (|List| |#3|))) "\\spad{intChoose should} be local")) (|nsqfree| (((|Record| (|:| |unitPart| |#4|) (|:| |suPart| (|List| (|Record| (|:| |factor| (|SparseUnivariatePolynomial| |#4|)) (|:| |exponent| (|Integer|)))))) (|SparseUnivariatePolynomial| |#4|) (|List| |#2|) (|List| (|List| |#3|))) "\\spad{nsqfree should} be local")) (|consnewpol| (((|Record| (|:| |pol| (|SparseUnivariatePolynomial| |#4|)) (|:| |polval| (|SparseUnivariatePolynomial| |#3|))) (|SparseUnivariatePolynomial| |#4|) (|SparseUnivariatePolynomial| |#3|) (|Integer|)) "\\spad{consnewpol should} be local")) (|univcase| (((|Factored| |#4|) |#4| |#2|) "\\spad{univcase should} be local")) (|compdegd| (((|Integer|) (|List| (|Record| (|:| |factor| (|SparseUnivariatePolynomial| |#3|)) (|:| |exponent| (|Integer|))))) "\\spad{compdegd should} be local")) (|squareFreePrim| (((|Factored| |#4|) |#4|) "\\spad{squareFreePrim(p)} compute the square free decomposition of a primitive multivariate polynomial \\spad{p}.")) (|squareFree| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{squareFree(p)} computes the square free decomposition of a multivariate polynomial \\spad{p} presented as a univariate polynomial with multivariate coefficients.") (((|Factored| |#4|) |#4|) "\\spad{squareFree(p)} computes the square free decomposition of a multivariate polynomial \\spad{p}.")))
NIL
NIL
-(-683 S R)
+(-685 S R)
((|constructor| (NIL "NonAssociativeAlgebra is the category of non associative algebras (modules which are themselves non associative rngs). Axioms \\indented{3}{\\spad{r*}(a*b) = (r*a)\\spad{*b} = a*(\\spad{r*b})}")) (|plenaryPower| (($ $ (|PositiveInteger|)) "\\spad{plenaryPower(a,{}n)} is recursively defined to be \\spad{plenaryPower(a,{}n-1)*plenaryPower(a,{}n-1)} for \\spad{n>1} and \\spad{a} for \\spad{n=1}.")))
NIL
NIL
-(-684 R)
+(-686 R)
((|constructor| (NIL "NonAssociativeAlgebra is the category of non associative algebras (modules which are themselves non associative rngs). Axioms \\indented{3}{\\spad{r*}(a*b) = (r*a)\\spad{*b} = a*(\\spad{r*b})}")) (|plenaryPower| (($ $ (|PositiveInteger|)) "\\spad{plenaryPower(a,{}n)} is recursively defined to be \\spad{plenaryPower(a,{}n-1)*plenaryPower(a,{}n-1)} for \\spad{n>1} and \\spad{a} for \\spad{n=1}.")))
-((-4243 . T) (-4242 . T))
+((-4245 . T) (-4244 . T))
NIL
-(-685)
+(-687)
((|constructor| (NIL "This package uses the NAG Library to compute the zeros of a polynomial with real or complex coefficients. See \\downlink{Manual Page}{manpageXXc02}.")) (|c02agf| (((|Result|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Boolean|) (|Integer|)) "\\spad{c02agf(a,{}n,{}scale,{}ifail)} finds all the roots of a real polynomial equation,{} using a variant of Laguerre\\spad{'s} Method. See \\downlink{Manual Page}{manpageXXc02agf}.")) (|c02aff| (((|Result|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Boolean|) (|Integer|)) "\\spad{c02aff(a,{}n,{}scale,{}ifail)} finds all the roots of a complex polynomial equation,{} using a variant of Laguerre\\spad{'s} Method. See \\downlink{Manual Page}{manpageXXc02aff}.")))
NIL
NIL
-(-686)
+(-688)
((|constructor| (NIL "This package uses the NAG Library to calculate real zeros of continuous real functions of one or more variables. (Complex equations must be expressed in terms of the equivalent larger system of real equations.) See \\downlink{Manual Page}{manpageXXc05}.")) (|c05pbf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp35| FCN)))) "\\spad{c05pbf(n,{}ldfjac,{}lwa,{}x,{}xtol,{}ifail,{}fcn)} is an easy-to-use routine to find a solution of a system of nonlinear equations by a modification of the Powell hybrid method. The user must provide the Jacobian. See \\downlink{Manual Page}{manpageXXc05pbf}.")) (|c05nbf| (((|Result|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp6| FCN)))) "\\spad{c05nbf(n,{}lwa,{}x,{}xtol,{}ifail,{}fcn)} is an easy-to-use routine to find a solution of a system of nonlinear equations by a modification of the Powell hybrid method. See \\downlink{Manual Page}{manpageXXc05nbf}.")) (|c05adf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp1| F)))) "\\spad{c05adf(a,{}b,{}eps,{}eta,{}ifail,{}f)} locates a zero of a continuous function in a given interval by a combination of the methods of linear interpolation,{} extrapolation and bisection. See \\downlink{Manual Page}{manpageXXc05adf}.")))
NIL
NIL
-(-687)
+(-689)
((|constructor| (NIL "This package uses the NAG Library to calculate the discrete Fourier transform of a sequence of real or complex data values,{} and applies it to calculate convolutions and correlations. See \\downlink{Manual Page}{manpageXXc06}.")) (|c06gsf| (((|Result|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{c06gsf(m,{}n,{}x,{}ifail)} takes \\spad{m} Hermitian sequences,{} each containing \\spad{n} data values,{} and forms the real and imaginary parts of the \\spad{m} corresponding complex sequences. See \\downlink{Manual Page}{manpageXXc06gsf}.")) (|c06gqf| (((|Result|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{c06gqf(m,{}n,{}x,{}ifail)} forms the complex conjugates,{} each containing \\spad{n} data values. See \\downlink{Manual Page}{manpageXXc06gqf}.")) (|c06gcf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{c06gcf(n,{}y,{}ifail)} forms the complex conjugate of a sequence of \\spad{n} data values. See \\downlink{Manual Page}{manpageXXc06gcf}.")) (|c06gbf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{c06gbf(n,{}x,{}ifail)} forms the complex conjugate of \\spad{n} data values. See \\downlink{Manual Page}{manpageXXc06gbf}.")) (|c06fuf| (((|Result|) (|Integer|) (|Integer|) (|String|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{c06fuf(m,{}n,{}init,{}x,{}y,{}trigm,{}trign,{}ifail)} computes the two-dimensional discrete Fourier transform of a bivariate sequence of complex data values. This routine is designed to be particularly efficient on vector processors. See \\downlink{Manual Page}{manpageXXc06fuf}.")) (|c06frf| (((|Result|) (|Integer|) (|Integer|) (|String|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{c06frf(m,{}n,{}init,{}x,{}y,{}trig,{}ifail)} computes the discrete Fourier transforms of \\spad{m} sequences,{} each containing \\spad{n} complex data values. This routine is designed to be particularly efficient on vector processors. See \\downlink{Manual Page}{manpageXXc06frf}.")) (|c06fqf| (((|Result|) (|Integer|) (|Integer|) (|String|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{c06fqf(m,{}n,{}init,{}x,{}trig,{}ifail)} computes the discrete Fourier transforms of \\spad{m} Hermitian sequences,{} each containing \\spad{n} complex data values. This routine is designed to be particularly efficient on vector processors. See \\downlink{Manual Page}{manpageXXc06fqf}.")) (|c06fpf| (((|Result|) (|Integer|) (|Integer|) (|String|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{c06fpf(m,{}n,{}init,{}x,{}trig,{}ifail)} computes the discrete Fourier transforms of \\spad{m} sequences,{} each containing \\spad{n} real data values. This routine is designed to be particularly efficient on vector processors. See \\downlink{Manual Page}{manpageXXc06fpf}.")) (|c06ekf| (((|Result|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{c06ekf(job,{}n,{}x,{}y,{}ifail)} calculates the circular convolution of two real vectors of period \\spad{n}. No extra workspace is required. See \\downlink{Manual Page}{manpageXXc06ekf}.")) (|c06ecf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{c06ecf(n,{}x,{}y,{}ifail)} calculates the discrete Fourier transform of a sequence of \\spad{n} complex data values. (No extra workspace required.) See \\downlink{Manual Page}{manpageXXc06ecf}.")) (|c06ebf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{c06ebf(n,{}x,{}ifail)} calculates the discrete Fourier transform of a Hermitian sequence of \\spad{n} complex data values. (No extra workspace required.) See \\downlink{Manual Page}{manpageXXc06ebf}.")) (|c06eaf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{c06eaf(n,{}x,{}ifail)} calculates the discrete Fourier transform of a sequence of \\spad{n} real data values. (No extra workspace required.) See \\downlink{Manual Page}{manpageXXc06eaf}.")))
NIL
NIL
-(-688)
+(-690)
((|constructor| (NIL "This package uses the NAG Library to calculate the numerical value of definite integrals in one or more dimensions and to evaluate weights and abscissae of integration rules. See \\downlink{Manual Page}{manpageXXd01}.")) (|d01gbf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp4| FUNCTN)))) "\\spad{d01gbf(ndim,{}a,{}b,{}maxcls,{}eps,{}lenwrk,{}mincls,{}wrkstr,{}ifail,{}functn)} returns an approximation to the integral of a function over a hyper-rectangular region,{} using a Monte Carlo method. An approximate relative error estimate is also returned. This routine is suitable for low accuracy work. See \\downlink{Manual Page}{manpageXXd01gbf}.")) (|d01gaf| (((|Result|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|)) "\\spad{d01gaf(x,{}y,{}n,{}ifail)} integrates a function which is specified numerically at four or more points,{} over the whole of its specified range,{} using third-order finite-difference formulae with error estimates,{} according to a method due to Gill and Miller. See \\downlink{Manual Page}{manpageXXd01gaf}.")) (|d01fcf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp4| FUNCTN)))) "\\spad{d01fcf(ndim,{}a,{}b,{}maxpts,{}eps,{}lenwrk,{}minpts,{}ifail,{}functn)} attempts to evaluate a multi-dimensional integral (up to 15 dimensions),{} with constant and finite limits,{} to a specified relative accuracy,{} using an adaptive subdivision strategy. See \\downlink{Manual Page}{manpageXXd01fcf}.")) (|d01bbf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{d01bbf(a,{}b,{}itype,{}n,{}gtype,{}ifail)} returns the weight appropriate to a Gaussian quadrature. The formulae provided are Gauss-Legendre,{} Gauss-Rational,{} Gauss- Laguerre and Gauss-Hermite. See \\downlink{Manual Page}{manpageXXd01bbf}.")) (|d01asf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp1| G)))) "\\spad{d01asf(a,{}omega,{}key,{}epsabs,{}limlst,{}lw,{}liw,{}ifail,{}g)} calculates an approximation to the sine or the cosine transform of a function \\spad{g} over [a,{}infty): See \\downlink{Manual Page}{manpageXXd01asf}.")) (|d01aqf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp1| G)))) "\\spad{d01aqf(a,{}b,{}c,{}epsabs,{}epsrel,{}lw,{}liw,{}ifail,{}g)} calculates an approximation to the Hilbert transform of a function \\spad{g}(\\spad{x}) over [a,{}\\spad{b}]: See \\downlink{Manual Page}{manpageXXd01aqf}.")) (|d01apf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp1| G)))) "\\spad{d01apf(a,{}b,{}alfa,{}beta,{}key,{}epsabs,{}epsrel,{}lw,{}liw,{}ifail,{}g)} is an adaptive integrator which calculates an approximation to the integral of a function \\spad{g}(\\spad{x})\\spad{w}(\\spad{x}) over a finite interval [a,{}\\spad{b}]: See \\downlink{Manual Page}{manpageXXd01apf}.")) (|d01anf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp1| G)))) "\\spad{d01anf(a,{}b,{}omega,{}key,{}epsabs,{}epsrel,{}lw,{}liw,{}ifail,{}g)} calculates an approximation to the sine or the cosine transform of a function \\spad{g} over [a,{}\\spad{b}]: See \\downlink{Manual Page}{manpageXXd01anf}.")) (|d01amf| (((|Result|) (|DoubleFloat|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp1| F)))) "\\spad{d01amf(bound,{}inf,{}epsabs,{}epsrel,{}lw,{}liw,{}ifail,{}f)} calculates an approximation to the integral of a function \\spad{f}(\\spad{x}) over an infinite or semi-infinite interval [a,{}\\spad{b}]: See \\downlink{Manual Page}{manpageXXd01amf}.")) (|d01alf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp1| F)))) "\\spad{d01alf(a,{}b,{}npts,{}points,{}epsabs,{}epsrel,{}lw,{}liw,{}ifail,{}f)} is a general purpose integrator which calculates an approximation to the integral of a function \\spad{f}(\\spad{x}) over a finite interval [a,{}\\spad{b}]: See \\downlink{Manual Page}{manpageXXd01alf}.")) (|d01akf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp1| F)))) "\\spad{d01akf(a,{}b,{}epsabs,{}epsrel,{}lw,{}liw,{}ifail,{}f)} is an adaptive integrator,{} especially suited to oscillating,{} non-singular integrands,{} which calculates an approximation to the integral of a function \\spad{f}(\\spad{x}) over a finite interval [a,{}\\spad{b}]: See \\downlink{Manual Page}{manpageXXd01akf}.")) (|d01ajf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp1| F)))) "\\spad{d01ajf(a,{}b,{}epsabs,{}epsrel,{}lw,{}liw,{}ifail,{}f)} is a general-purpose integrator which calculates an approximation to the integral of a function \\spad{f}(\\spad{x}) over a finite interval [a,{}\\spad{b}]: See \\downlink{Manual Page}{manpageXXd01ajf}.")))
NIL
NIL
-(-689)
+(-691)
((|constructor| (NIL "This package uses the NAG Library to calculate the numerical solution of ordinary differential equations. There are two main types of problem,{} those in which all boundary conditions are specified at one point (initial-value problems),{} and those in which the boundary conditions are distributed between two or more points (boundary- value problems and eigenvalue problems). Routines are available for initial-value problems,{} two-point boundary-value problems and Sturm-Liouville eigenvalue problems. See \\downlink{Manual Page}{manpageXXd02}.")) (|d02raf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp41| FCN JACOBF JACEPS))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp42| G JACOBG JACGEP)))) "\\spad{d02raf(n,{}mnp,{}numbeg,{}nummix,{}tol,{}init,{}iy,{}ijac,{}lwork,{}liwork,{}np,{}x,{}y,{}deleps,{}ifail,{}fcn,{}g)} solves the two-point boundary-value problem with general boundary conditions for a system of ordinary differential equations,{} using a deferred correction technique and Newton iteration. See \\downlink{Manual Page}{manpageXXd02raf}.")) (|d02kef| (((|Result|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|DoubleFloat|) (|Integer|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp10| COEFFN))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp80| BDYVAL))) (|FileName|) (|FileName|)) "\\spad{d02kef(xpoint,{}m,{}k,{}tol,{}maxfun,{}match,{}elam,{}delam,{}hmax,{}maxit,{}ifail,{}coeffn,{}bdyval,{}monit,{}report)} finds a specified eigenvalue of a regular singular second- order Sturm-Liouville system on a finite or infinite range,{} using a Pruefer transformation and a shooting method. It also reports values of the eigenfunction and its derivatives. Provision is made for discontinuities in the coefficient functions or their derivatives. See \\downlink{Manual Page}{manpageXXd02kef}. Files \\spad{monit} and \\spad{report} will be used to define the subroutines for the MONIT and REPORT arguments. See \\downlink{Manual Page}{manpageXXd02gbf}.") (((|Result|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|DoubleFloat|) (|Integer|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp10| COEFFN))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp80| BDYVAL)))) "\\spad{d02kef(xpoint,{}m,{}k,{}tol,{}maxfun,{}match,{}elam,{}delam,{}hmax,{}maxit,{}ifail,{}coeffn,{}bdyval)} finds a specified eigenvalue of a regular singular second- order Sturm-Liouville system on a finite or infinite range,{} using a Pruefer transformation and a shooting method. It also reports values of the eigenfunction and its derivatives. Provision is made for discontinuities in the coefficient functions or their derivatives. See \\downlink{Manual Page}{manpageXXd02kef}. ASP domains Asp12 and Asp33 are used to supply default subroutines for the MONIT and REPORT arguments via their \\axiomOp{outputAsFortran} operation.")) (|d02gbf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp77| FCNF))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp78| FCNG)))) "\\spad{d02gbf(a,{}b,{}n,{}tol,{}mnp,{}lw,{}liw,{}c,{}d,{}gam,{}x,{}np,{}ifail,{}fcnf,{}fcng)} solves a general linear two-point boundary value problem for a system of ordinary differential equations using a deferred correction technique. See \\downlink{Manual Page}{manpageXXd02gbf}.")) (|d02gaf| (((|Result|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp7| FCN)))) "\\spad{d02gaf(u,{}v,{}n,{}a,{}b,{}tol,{}mnp,{}lw,{}liw,{}x,{}np,{}ifail,{}fcn)} solves the two-point boundary-value problem with assigned boundary values for a system of ordinary differential equations,{} using a deferred correction technique and a Newton iteration. See \\downlink{Manual Page}{manpageXXd02gaf}.")) (|d02ejf| (((|Result|) (|DoubleFloat|) (|Integer|) (|Integer|) (|String|) (|Integer|) (|DoubleFloat|) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp9| G))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp7| FCN))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp31| PEDERV))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp8| OUTPUT)))) "\\spad{d02ejf(xend,{}m,{}n,{}relabs,{}iw,{}x,{}y,{}tol,{}ifail,{}g,{}fcn,{}pederv,{}output)} integrates a stiff system of first-order ordinary differential equations over an interval with suitable initial conditions,{} using a variable-order,{} variable-step method implementing the Backward Differentiation Formulae (\\spad{BDF}),{} until a user-specified function,{} if supplied,{} of the solution is zero,{} and returns the solution at points specified by the user,{} if desired. See \\downlink{Manual Page}{manpageXXd02ejf}.")) (|d02cjf| (((|Result|) (|DoubleFloat|) (|Integer|) (|Integer|) (|DoubleFloat|) (|String|) (|DoubleFloat|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp9| G))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp7| FCN))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp8| OUTPUT)))) "\\spad{d02cjf(xend,{}m,{}n,{}tol,{}relabs,{}x,{}y,{}ifail,{}g,{}fcn,{}output)} integrates a system of first-order ordinary differential equations over a range with suitable initial conditions,{} using a variable-order,{} variable-step Adams method until a user-specified function,{} if supplied,{} of the solution is zero,{} and returns the solution at points specified by the user,{} if desired. See \\downlink{Manual Page}{manpageXXd02cjf}.")) (|d02bhf| (((|Result|) (|DoubleFloat|) (|Integer|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp9| G))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp7| FCN)))) "\\spad{d02bhf(xend,{}n,{}irelab,{}hmax,{}x,{}y,{}tol,{}ifail,{}g,{}fcn)} integrates a system of first-order ordinary differential equations over an interval with suitable initial conditions,{} using a Runge-Kutta-Merson method,{} until a user-specified function of the solution is zero. See \\downlink{Manual Page}{manpageXXd02bhf}.")) (|d02bbf| (((|Result|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|DoubleFloat|) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp7| FCN))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp8| OUTPUT)))) "\\spad{d02bbf(xend,{}m,{}n,{}irelab,{}x,{}y,{}tol,{}ifail,{}fcn,{}output)} integrates a system of first-order ordinary differential equations over an interval with suitable initial conditions,{} using a Runge-Kutta-Merson method,{} and returns the solution at points specified by the user. See \\downlink{Manual Page}{manpageXXd02bbf}.")))
NIL
NIL
-(-690)
+(-692)
((|constructor| (NIL "This package uses the NAG Library to solve partial differential equations. See \\downlink{Manual Page}{manpageXXd03}.")) (|d03faf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|ThreeDimensionalMatrix| (|DoubleFloat|)) (|Integer|)) "\\spad{d03faf(xs,{}xf,{}l,{}lbdcnd,{}bdxs,{}bdxf,{}ys,{}yf,{}m,{}mbdcnd,{}bdys,{}bdyf,{}zs,{}zf,{}n,{}nbdcnd,{}bdzs,{}bdzf,{}lambda,{}ldimf,{}mdimf,{}lwrk,{}f,{}ifail)} solves the Helmholtz equation in Cartesian co-ordinates in three dimensions using the standard seven-point finite difference approximation. This routine is designed to be particularly efficient on vector processors. See \\downlink{Manual Page}{manpageXXd03faf}.")) (|d03eef| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|String|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp73| PDEF))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp74| BNDY)))) "\\spad{d03eef(xmin,{}xmax,{}ymin,{}ymax,{}ngx,{}ngy,{}lda,{}scheme,{}ifail,{}pdef,{}bndy)} discretizes a second order elliptic partial differential equation (PDE) on a rectangular region. See \\downlink{Manual Page}{manpageXXd03eef}.")) (|d03edf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|DoubleFloat|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{d03edf(ngx,{}ngy,{}lda,{}maxit,{}acc,{}iout,{}a,{}rhs,{}ub,{}ifail)} solves seven-diagonal systems of linear equations which arise from the discretization of an elliptic partial differential equation on a rectangular region. This routine uses a multigrid technique. See \\downlink{Manual Page}{manpageXXd03edf}.")))
NIL
NIL
-(-691)
+(-693)
((|constructor| (NIL "This package uses the NAG Library to calculate the interpolation of a function of one or two variables. When provided with the value of the function (and possibly one or more of its lowest-order derivatives) at each of a number of values of the variable(\\spad{s}),{} the routines provide either an interpolating function or an interpolated value. For some of the interpolating functions,{} there are supporting routines to evaluate,{} differentiate or integrate them. See \\downlink{Manual Page}{manpageXXe01}.")) (|e01sff| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|) (|Integer|)) "\\spad{e01sff(m,{}x,{}y,{}f,{}rnw,{}fnodes,{}px,{}py,{}ifail)} evaluates at a given point the two-dimensional interpolating function computed by E01SEF. See \\downlink{Manual Page}{manpageXXe01sff}.")) (|e01sef| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|)) "\\spad{e01sef(m,{}x,{}y,{}f,{}nw,{}nq,{}rnw,{}rnq,{}ifail)} generates a two-dimensional surface interpolating a set of scattered data points,{} using a modified Shepard method. See \\downlink{Manual Page}{manpageXXe01sef}.")) (|e01sbf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|Integer|)) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|) (|Integer|)) "\\spad{e01sbf(m,{}x,{}y,{}f,{}triang,{}grads,{}px,{}py,{}ifail)} evaluates at a given point the two-dimensional interpolant function computed by E01SAF. See \\downlink{Manual Page}{manpageXXe01sbf}.")) (|e01saf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{e01saf(m,{}x,{}y,{}f,{}ifail)} generates a two-dimensional surface interpolating a set of scattered data points,{} using the method of Renka and Cline. See \\downlink{Manual Page}{manpageXXe01saf}.")) (|e01daf| (((|Result|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{e01daf(mx,{}my,{}x,{}y,{}f,{}ifail)} computes a bicubic spline interpolating surface through a set of data values,{} given on a rectangular grid in the \\spad{x}-\\spad{y} plane. See \\downlink{Manual Page}{manpageXXe01daf}.")) (|e01bhf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|) (|Integer|)) "\\spad{e01bhf(n,{}x,{}f,{}d,{}a,{}b,{}ifail)} evaluates the definite integral of a piecewise cubic Hermite interpolant over the interval [a,{}\\spad{b}]. See \\downlink{Manual Page}{manpageXXe01bhf}.")) (|e01bgf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{e01bgf(n,{}x,{}f,{}d,{}m,{}px,{}ifail)} evaluates a piecewise cubic Hermite interpolant and its first derivative at a set of points. See \\downlink{Manual Page}{manpageXXe01bgf}.")) (|e01bff| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{e01bff(n,{}x,{}f,{}d,{}m,{}px,{}ifail)} evaluates a piecewise cubic Hermite interpolant at a set of points. See \\downlink{Manual Page}{manpageXXe01bff}.")) (|e01bef| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{e01bef(n,{}x,{}f,{}ifail)} computes a monotonicity-preserving piecewise cubic Hermite interpolant to a set of data points. See \\downlink{Manual Page}{manpageXXe01bef}.")) (|e01baf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{e01baf(m,{}x,{}y,{}lck,{}lwrk,{}ifail)} determines a cubic spline to a given set of data. See \\downlink{Manual Page}{manpageXXe01baf}.")))
NIL
NIL
-(-692)
+(-694)
((|constructor| (NIL "This package uses the NAG Library to find a function which approximates a set of data points. Typically the data contain random errors,{} as of experimental measurement,{} which need to be smoothed out. To seek an approximation to the data,{} it is first necessary to specify for the approximating function a mathematical form (a polynomial,{} for example) which contains a number of unspecified coefficients: the appropriate fitting routine then derives for the coefficients the values which provide the best fit of that particular form. The package deals mainly with curve and surface fitting (\\spadignore{i.e.} fitting with functions of one and of two variables) when a polynomial or a cubic spline is used as the fitting function,{} since these cover the most common needs. However,{} fitting with other functions and/or more variables can be undertaken by means of general linear or nonlinear routines (some of which are contained in other packages) depending on whether the coefficients in the function occur linearly or nonlinearly. Cases where a graph rather than a set of data points is given can be treated simply by first reading a suitable set of points from the graph. The package also contains routines for evaluating,{} differentiating and integrating polynomial and spline curves and surfaces,{} once the numerical values of their coefficients have been determined. See \\downlink{Manual Page}{manpageXXe02}.")) (|e02zaf| (((|Result|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{e02zaf(px,{}py,{}lamda,{}mu,{}m,{}x,{}y,{}npoint,{}nadres,{}ifail)} sorts two-dimensional data into rectangular panels. See \\downlink{Manual Page}{manpageXXe02zaf}.")) (|e02gaf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|DoubleFloat|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{e02gaf(m,{}la,{}nplus2,{}toler,{}a,{}b,{}ifail)} calculates an \\spad{l} solution to an over-determined system of \\indented{22}{1} linear equations. See \\downlink{Manual Page}{manpageXXe02gaf}.")) (|e02dff| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{e02dff(mx,{}my,{}px,{}py,{}x,{}y,{}lamda,{}mu,{}c,{}lwrk,{}liwrk,{}ifail)} calculates values of a bicubic spline representation. The spline is evaluated at all points on a rectangular grid. See \\downlink{Manual Page}{manpageXXe02dff}.")) (|e02def| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{e02def(m,{}px,{}py,{}x,{}y,{}lamda,{}mu,{}c,{}ifail)} calculates values of a bicubic spline representation. See \\downlink{Manual Page}{manpageXXe02def}.")) (|e02ddf| (((|Result|) (|String|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{e02ddf(start,{}m,{}x,{}y,{}f,{}w,{}s,{}nxest,{}nyest,{}lwrk,{}liwrk,{}nx,{}lamda,{}ny,{}mu,{}wrk,{}ifail)} computes a bicubic spline approximation to a set of scattered data are located automatically,{} but a single parameter must be specified to control the trade-off between closeness of fit and smoothness of fit. See \\downlink{Manual Page}{manpageXXe02ddf}.")) (|e02dcf| (((|Result|) (|String|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|Integer|)) (|Integer|)) "\\spad{e02dcf(start,{}mx,{}x,{}my,{}y,{}f,{}s,{}nxest,{}nyest,{}lwrk,{}liwrk,{}nx,{}lamda,{}ny,{}mu,{}wrk,{}iwrk,{}ifail)} computes a bicubic spline approximation to a set of data values,{} given on a rectangular grid in the \\spad{x}-\\spad{y} plane. The knots of the spline are located automatically,{} but a single parameter must be specified to control the trade-off between closeness of fit and smoothness of fit. See \\downlink{Manual Page}{manpageXXe02dcf}.")) (|e02daf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|Integer|)) (|Integer|) (|Integer|) (|Integer|) (|DoubleFloat|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{e02daf(m,{}px,{}py,{}x,{}y,{}f,{}w,{}mu,{}point,{}npoint,{}nc,{}nws,{}eps,{}lamda,{}ifail)} forms a minimal,{} weighted least-squares bicubic spline surface fit with prescribed knots to a given set of data points. See \\downlink{Manual Page}{manpageXXe02daf}.")) (|e02bef| (((|Result|) (|String|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|Integer|))) "\\spad{e02bef(start,{}m,{}x,{}y,{}w,{}s,{}nest,{}lwrk,{}n,{}lamda,{}ifail,{}wrk,{}iwrk)} computes a cubic spline approximation to an arbitrary set of data points. The knot are located automatically,{} but a single parameter must be specified to control the trade-off between closeness of fit and smoothness of fit. See \\downlink{Manual Page}{manpageXXe02bef}.")) (|e02bdf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{e02bdf(ncap7,{}lamda,{}c,{}ifail)} computes the definite integral from its \\spad{B}-spline representation. See \\downlink{Manual Page}{manpageXXe02bdf}.")) (|e02bcf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|Integer|) (|Integer|)) "\\spad{e02bcf(ncap7,{}lamda,{}c,{}x,{}left,{}ifail)} evaluates a cubic spline and its first three derivatives from its \\spad{B}-spline representation. See \\downlink{Manual Page}{manpageXXe02bcf}.")) (|e02bbf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|Integer|)) "\\spad{e02bbf(ncap7,{}lamda,{}c,{}x,{}ifail)} evaluates a cubic spline representation. See \\downlink{Manual Page}{manpageXXe02bbf}.")) (|e02baf| (((|Result|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{e02baf(m,{}ncap7,{}x,{}y,{}w,{}lamda,{}ifail)} computes a weighted least-squares approximation to an arbitrary set of data points by a cubic splines prescribed by the user. Cubic spline can also be carried out. See \\downlink{Manual Page}{manpageXXe02baf}.")) (|e02akf| (((|Result|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|DoubleFloat|) (|Integer|)) "\\spad{e02akf(np1,{}xmin,{}xmax,{}a,{}ia1,{}la,{}x,{}ifail)} evaluates a polynomial from its Chebyshev-series representation,{} allowing an arbitrary index increment for accessing the array of coefficients. See \\downlink{Manual Page}{manpageXXe02akf}.")) (|e02ajf| (((|Result|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{e02ajf(np1,{}xmin,{}xmax,{}a,{}ia1,{}la,{}qatm1,{}iaint1,{}laint,{}ifail)} determines the coefficients in the Chebyshev-series representation of the indefinite integral of a polynomial given in Chebyshev-series form. See \\downlink{Manual Page}{manpageXXe02ajf}.")) (|e02ahf| (((|Result|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{e02ahf(np1,{}xmin,{}xmax,{}a,{}ia1,{}la,{}iadif1,{}ladif,{}ifail)} determines the coefficients in the Chebyshev-series representation of the derivative of a polynomial given in Chebyshev-series form. See \\downlink{Manual Page}{manpageXXe02ahf}.")) (|e02agf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|Integer|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{e02agf(m,{}kplus1,{}nrows,{}xmin,{}xmax,{}x,{}y,{}w,{}mf,{}xf,{}yf,{}lyf,{}ip,{}lwrk,{}liwrk,{}ifail)} computes constrained weighted least-squares polynomial approximations in Chebyshev-series form to an arbitrary set of data points. The values of the approximations and any number of their derivatives can be specified at selected points. See \\downlink{Manual Page}{manpageXXe02agf}.")) (|e02aef| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|DoubleFloat|) (|Integer|)) "\\spad{e02aef(nplus1,{}a,{}xcap,{}ifail)} evaluates a polynomial from its Chebyshev-series representation. See \\downlink{Manual Page}{manpageXXe02aef}.")) (|e02adf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{e02adf(m,{}kplus1,{}nrows,{}x,{}y,{}w,{}ifail)} computes weighted least-squares polynomial approximations to an arbitrary set of data points. See \\downlink{Manual Page}{manpageXXe02adf}.")))
NIL
NIL
-(-693)
+(-695)
((|constructor| (NIL "This package uses the NAG Library to perform optimization. An optimization problem involves minimizing a function (called the objective function) of several variables,{} possibly subject to restrictions on the values of the variables defined by a set of constraint functions. The routines in the NAG Foundation Library are concerned with function minimization only,{} since the problem of maximizing a given function can be transformed into a minimization problem simply by multiplying the function by \\spad{-1}. See \\downlink{Manual Page}{manpageXXe04}.")) (|e04ycf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|DoubleFloat|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{e04ycf(job,{}m,{}n,{}fsumsq,{}s,{}lv,{}v,{}ifail)} returns estimates of elements of the variance matrix of the estimated regression coefficients for a nonlinear least squares problem. The estimates are derived from the Jacobian of the function \\spad{f}(\\spad{x}) at the solution. See \\downlink{Manual Page}{manpageXXe04ycf}.")) (|e04ucf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|Boolean|) (|DoubleFloat|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|Boolean|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Boolean|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|Integer|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp55| CONFUN))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp49| OBJFUN)))) "\\spad{e04ucf(n,{}nclin,{}ncnln,{}nrowa,{}nrowj,{}nrowr,{}a,{}bl,{}bu,{}liwork,{}lwork,{}sta,{}cra,{}der,{}fea,{}fun,{}hes,{}infb,{}infs,{}linf,{}lint,{}list,{}maji,{}majp,{}mini,{}minp,{}mon,{}nonf,{}opt,{}ste,{}stao,{}stac,{}stoo,{}stoc,{}ve,{}istate,{}cjac,{}clamda,{}r,{}x,{}ifail,{}confun,{}objfun)} is designed to minimize an arbitrary smooth function subject to constraints on the variables,{} linear constraints. (E04UCF may be used for unconstrained,{} bound-constrained and linearly constrained optimization.) The user must provide subroutines that define the objective and constraint functions and as many of their first partial derivatives as possible. Unspecified derivatives are approximated by finite differences. All matrices are treated as dense,{} and hence E04UCF is not intended for large sparse problems. See \\downlink{Manual Page}{manpageXXe04ucf}.")) (|e04naf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|DoubleFloat|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Boolean|) (|Boolean|) (|Boolean|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|Integer|)) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp20| QPHESS)))) "\\spad{e04naf(itmax,{}msglvl,{}n,{}nclin,{}nctotl,{}nrowa,{}nrowh,{}ncolh,{}bigbnd,{}a,{}bl,{}bu,{}cvec,{}featol,{}hess,{}cold,{}lpp,{}orthog,{}liwork,{}lwork,{}x,{}istate,{}ifail,{}qphess)} is a comprehensive programming (\\spad{QP}) or linear programming (\\spad{LP}) problems. It is not intended for large sparse problems. See \\downlink{Manual Page}{manpageXXe04naf}.")) (|e04mbf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Boolean|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{e04mbf(itmax,{}msglvl,{}n,{}nclin,{}nctotl,{}nrowa,{}a,{}bl,{}bu,{}cvec,{}linobj,{}liwork,{}lwork,{}x,{}ifail)} is an easy-to-use routine for solving linear programming problems,{} or for finding a feasible point for such problems. It is not intended for large sparse problems. See \\downlink{Manual Page}{manpageXXe04mbf}.")) (|e04jaf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp24| FUNCT1)))) "\\spad{e04jaf(n,{}ibound,{}liw,{}lw,{}bl,{}bu,{}x,{}ifail,{}funct1)} is an easy-to-use quasi-Newton algorithm for finding a minimum of a function \\spad{F}(\\spad{x} ,{}\\spad{x} ,{}...,{}\\spad{x} ),{} subject to fixed upper and \\indented{25}{1\\space{2}2\\space{6}\\spad{n}} lower bounds of the independent variables \\spad{x} ,{}\\spad{x} ,{}...,{}\\spad{x} ,{} using \\indented{43}{1\\space{2}2\\space{6}\\spad{n}} function values only. See \\downlink{Manual Page}{manpageXXe04jaf}.")) (|e04gcf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp19| LSFUN2)))) "\\spad{e04gcf(m,{}n,{}liw,{}lw,{}x,{}ifail,{}lsfun2)} is an easy-to-use quasi-Newton algorithm for finding an unconstrained minimum of \\spad{m} nonlinear functions in \\spad{n} variables (m>=n). First derivatives are required. See \\downlink{Manual Page}{manpageXXe04gcf}.")) (|e04fdf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp50| LSFUN1)))) "\\spad{e04fdf(m,{}n,{}liw,{}lw,{}x,{}ifail,{}lsfun1)} is an easy-to-use algorithm for finding an unconstrained minimum of a sum of squares of \\spad{m} nonlinear functions in \\spad{n} variables (m>=n). No derivatives are required. See \\downlink{Manual Page}{manpageXXe04fdf}.")) (|e04dgf| (((|Result|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|DoubleFloat|) (|Boolean|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp49| OBJFUN)))) "\\spad{e04dgf(n,{}es,{}fu,{}it,{}lin,{}list,{}ma,{}op,{}pr,{}sta,{}sto,{}ve,{}x,{}ifail,{}objfun)} minimizes an unconstrained nonlinear function of several variables using a pre-conditioned,{} limited memory quasi-Newton conjugate gradient method. First derivatives are required. The routine is intended for use on large scale problems. See \\downlink{Manual Page}{manpageXXe04dgf}.")))
NIL
NIL
-(-694)
+(-696)
((|constructor| (NIL "This package uses the NAG Library to provide facilities for matrix factorizations and associated transformations. See \\downlink{Manual Page}{manpageXXf01}.")) (|f01ref| (((|Result|) (|String|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|Complex| (|DoubleFloat|))) (|Matrix| (|Complex| (|DoubleFloat|))) (|Integer|)) "\\spad{f01ref(wheret,{}m,{}n,{}ncolq,{}lda,{}theta,{}a,{}ifail)} returns the first \\spad{ncolq} columns of the complex \\spad{m} by \\spad{m} unitary matrix \\spad{Q},{} where \\spad{Q} is given as the product of Householder transformation matrices. See \\downlink{Manual Page}{manpageXXf01ref}.")) (|f01rdf| (((|Result|) (|String|) (|String|) (|Integer|) (|Integer|) (|Matrix| (|Complex| (|DoubleFloat|))) (|Integer|) (|Matrix| (|Complex| (|DoubleFloat|))) (|Integer|) (|Integer|) (|Matrix| (|Complex| (|DoubleFloat|))) (|Integer|)) "\\spad{f01rdf(trans,{}wheret,{}m,{}n,{}a,{}lda,{}theta,{}ncolb,{}ldb,{}b,{}ifail)} performs one of the transformations See \\downlink{Manual Page}{manpageXXf01rdf}.")) (|f01rcf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|Complex| (|DoubleFloat|))) (|Integer|)) "\\spad{f01rcf(m,{}n,{}lda,{}a,{}ifail)} finds the \\spad{QR} factorization of the complex \\spad{m} by \\spad{n} matrix A,{} where m>=n. See \\downlink{Manual Page}{manpageXXf01rcf}.")) (|f01qef| (((|Result|) (|String|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f01qef(wheret,{}m,{}n,{}ncolq,{}lda,{}zeta,{}a,{}ifail)} returns the first \\spad{ncolq} columns of the real \\spad{m} by \\spad{m} orthogonal matrix \\spad{Q},{} where \\spad{Q} is given as the product of Householder transformation matrices. See \\downlink{Manual Page}{manpageXXf01qef}.")) (|f01qdf| (((|Result|) (|String|) (|String|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f01qdf(trans,{}wheret,{}m,{}n,{}a,{}lda,{}zeta,{}ncolb,{}ldb,{}b,{}ifail)} performs one of the transformations See \\downlink{Manual Page}{manpageXXf01qdf}.")) (|f01qcf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f01qcf(m,{}n,{}lda,{}a,{}ifail)} finds the \\spad{QR} factorization of the real \\spad{m} by \\spad{n} matrix A,{} where m>=n. See \\downlink{Manual Page}{manpageXXf01qcf}.")) (|f01mcf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|Integer|)) (|Integer|)) "\\spad{f01mcf(n,{}avals,{}lal,{}nrow,{}ifail)} computes the Cholesky factorization of a real symmetric positive-definite variable-bandwidth matrix. See \\downlink{Manual Page}{manpageXXf01mcf}.")) (|f01maf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|List| (|Boolean|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|Integer|)) (|Matrix| (|Integer|)) (|DoubleFloat|) (|DoubleFloat|) (|Integer|)) "\\spad{f01maf(n,{}nz,{}licn,{}lirn,{}abort,{}avals,{}irn,{}icn,{}droptl,{}densw,{}ifail)} computes an incomplete Cholesky factorization of a real sparse symmetric positive-definite matrix A. See \\downlink{Manual Page}{manpageXXf01maf}.")) (|f01bsf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|Integer|)) (|Matrix| (|Integer|)) (|Matrix| (|Integer|)) (|Matrix| (|Integer|)) (|Boolean|) (|DoubleFloat|) (|Boolean|) (|Matrix| (|Integer|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f01bsf(n,{}nz,{}licn,{}ivect,{}jvect,{}icn,{}ikeep,{}grow,{}eta,{}abort,{}idisp,{}avals,{}ifail)} factorizes a real sparse matrix using the pivotal sequence previously obtained by F01BRF when a matrix of the same sparsity pattern was factorized. See \\downlink{Manual Page}{manpageXXf01bsf}.")) (|f01brf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|DoubleFloat|) (|Boolean|) (|Boolean|) (|List| (|Boolean|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|Integer|)) (|Matrix| (|Integer|)) (|Integer|)) "\\spad{f01brf(n,{}nz,{}licn,{}lirn,{}pivot,{}lblock,{}grow,{}abort,{}a,{}irn,{}icn,{}ifail)} factorizes a real sparse matrix. The routine either forms the LU factorization of a permutation of the entire matrix,{} or,{} optionally,{} first permutes the matrix to block lower triangular form and then only factorizes the diagonal blocks. See \\downlink{Manual Page}{manpageXXf01brf}.")))
NIL
NIL
-(-695)
+(-697)
((|constructor| (NIL "This package uses the NAG Library to compute \\begin{items} \\item eigenvalues and eigenvectors of a matrix \\item eigenvalues and eigenvectors of generalized matrix eigenvalue problems \\item singular values and singular vectors of a matrix. \\end{items} See \\downlink{Manual Page}{manpageXXf02}.")) (|f02xef| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Boolean|) (|Integer|) (|Boolean|) (|Integer|) (|Matrix| (|Complex| (|DoubleFloat|))) (|Matrix| (|Complex| (|DoubleFloat|))) (|Integer|)) "\\spad{f02xef(m,{}n,{}lda,{}ncolb,{}ldb,{}wantq,{}ldq,{}wantp,{}ldph,{}a,{}b,{}ifail)} returns all,{} or part,{} of the singular value decomposition of a general complex matrix. See \\downlink{Manual Page}{manpageXXf02xef}.")) (|f02wef| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Boolean|) (|Integer|) (|Boolean|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f02wef(m,{}n,{}lda,{}ncolb,{}ldb,{}wantq,{}ldq,{}wantp,{}ldpt,{}a,{}b,{}ifail)} returns all,{} or part,{} of the singular value decomposition of a general real matrix. See \\downlink{Manual Page}{manpageXXf02wef}.")) (|f02fjf| (((|Result|) (|Integer|) (|Integer|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp27| DOT))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp28| IMAGE))) (|FileName|)) "\\spad{f02fjf(n,{}k,{}tol,{}novecs,{}nrx,{}lwork,{}lrwork,{}liwork,{}m,{}noits,{}x,{}ifail,{}dot,{}image,{}monit)} finds eigenvalues of a real sparse symmetric or generalized symmetric eigenvalue problem. See \\downlink{Manual Page}{manpageXXf02fjf}.") (((|Result|) (|Integer|) (|Integer|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp27| DOT))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp28| IMAGE)))) "\\spad{f02fjf(n,{}k,{}tol,{}novecs,{}nrx,{}lwork,{}lrwork,{}liwork,{}m,{}noits,{}x,{}ifail,{}dot,{}image)} finds eigenvalues of a real sparse symmetric or generalized symmetric eigenvalue problem. See \\downlink{Manual Page}{manpageXXf02fjf}.")) (|f02bjf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|DoubleFloat|) (|Boolean|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f02bjf(n,{}ia,{}ib,{}eps1,{}matv,{}iv,{}a,{}b,{}ifail)} calculates all the eigenvalues and,{} if required,{} all the eigenvectors of the generalized eigenproblem Ax=(lambda)\\spad{Bx} where A and \\spad{B} are real,{} square matrices,{} using the \\spad{QZ} algorithm. See \\downlink{Manual Page}{manpageXXf02bjf}.")) (|f02bbf| (((|Result|) (|Integer|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f02bbf(ia,{}n,{}alb,{}ub,{}m,{}iv,{}a,{}ifail)} calculates selected eigenvalues of a real symmetric matrix by reduction to tridiagonal form,{} bisection and inverse iteration,{} where the selected eigenvalues lie within a given interval. See \\downlink{Manual Page}{manpageXXf02bbf}.")) (|f02axf| (((|Result|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{f02axf(ar,{}iar,{}\\spad{ai},{}iai,{}n,{}ivr,{}ivi,{}ifail)} calculates all the eigenvalues of a complex Hermitian matrix. See \\downlink{Manual Page}{manpageXXf02axf}.")) (|f02awf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f02awf(iar,{}iai,{}n,{}ar,{}\\spad{ai},{}ifail)} calculates all the eigenvalues of a complex Hermitian matrix. See \\downlink{Manual Page}{manpageXXf02awf}.")) (|f02akf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f02akf(iar,{}iai,{}n,{}ivr,{}ivi,{}ar,{}\\spad{ai},{}ifail)} calculates all the eigenvalues of a complex matrix. See \\downlink{Manual Page}{manpageXXf02akf}.")) (|f02ajf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f02ajf(iar,{}iai,{}n,{}ar,{}\\spad{ai},{}ifail)} calculates all the eigenvalue. See \\downlink{Manual Page}{manpageXXf02ajf}.")) (|f02agf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f02agf(ia,{}n,{}ivr,{}ivi,{}a,{}ifail)} calculates all the eigenvalues of a real unsymmetric matrix. See \\downlink{Manual Page}{manpageXXf02agf}.")) (|f02aff| (((|Result|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f02aff(ia,{}n,{}a,{}ifail)} calculates all the eigenvalues of a real unsymmetric matrix. See \\downlink{Manual Page}{manpageXXf02aff}.")) (|f02aef| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f02aef(ia,{}ib,{}n,{}iv,{}a,{}b,{}ifail)} calculates all the eigenvalues of Ax=(lambda)\\spad{Bx},{} where A is a real symmetric matrix and \\spad{B} is a real symmetric positive-definite matrix. See \\downlink{Manual Page}{manpageXXf02aef}.")) (|f02adf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f02adf(ia,{}ib,{}n,{}a,{}b,{}ifail)} calculates all the eigenvalues of Ax=(lambda)\\spad{Bx},{} where A is a real symmetric matrix and \\spad{B} is a real symmetric positive- definite matrix. See \\downlink{Manual Page}{manpageXXf02adf}.")) (|f02abf| (((|Result|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{f02abf(a,{}ia,{}n,{}iv,{}ifail)} calculates all the eigenvalues of a real symmetric matrix. See \\downlink{Manual Page}{manpageXXf02abf}.")) (|f02aaf| (((|Result|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f02aaf(ia,{}n,{}a,{}ifail)} calculates all the eigenvalue. See \\downlink{Manual Page}{manpageXXf02aaf}.")))
NIL
NIL
-(-696)
+(-698)
((|constructor| (NIL "This package uses the NAG Library to solve the matrix equation \\axiom{AX=B},{} where \\axiom{\\spad{B}} may be a single vector or a matrix of multiple right-hand sides. The matrix \\axiom{A} may be real,{} complex,{} symmetric,{} Hermitian positive- definite,{} or sparse. It may also be rectangular,{} in which case a least-squares solution is obtained. See \\downlink{Manual Page}{manpageXXf04}.")) (|f04qaf| (((|Result|) (|Integer|) (|Integer|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp30| APROD)))) "\\spad{f04qaf(m,{}n,{}damp,{}atol,{}btol,{}conlim,{}itnlim,{}msglvl,{}lrwork,{}liwork,{}b,{}ifail,{}aprod)} solves sparse unsymmetric equations,{} sparse linear least- squares problems and sparse damped linear least-squares problems,{} using a Lanczos algorithm. See \\downlink{Manual Page}{manpageXXf04qaf}.")) (|f04mcf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|Integer|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{f04mcf(n,{}al,{}lal,{}d,{}nrow,{}ir,{}b,{}nrb,{}iselct,{}nrx,{}ifail)} computes the approximate solution of a system of real linear equations with multiple right-hand sides,{} AX=B,{} where A is a symmetric positive-definite variable-bandwidth matrix,{} which has previously been factorized by F01MCF. Related systems may also be solved. See \\downlink{Manual Page}{manpageXXf04mcf}.")) (|f04mbf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Boolean|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|DoubleFloat|) (|Integer|) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp28| APROD))) (|Union| (|:| |fn| (|FileName|)) (|:| |fp| (|Asp34| MSOLVE)))) "\\spad{f04mbf(n,{}b,{}precon,{}shift,{}itnlim,{}msglvl,{}lrwork,{}liwork,{}rtol,{}ifail,{}aprod,{}msolve)} solves a system of real sparse symmetric linear equations using a Lanczos algorithm. See \\downlink{Manual Page}{manpageXXf04mbf}.")) (|f04maf| (((|Result|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|Integer|)) (|Integer|) (|Matrix| (|Integer|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|Integer|)) (|Matrix| (|Integer|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|Integer|)) (|Integer|)) "\\spad{f04maf(n,{}nz,{}avals,{}licn,{}irn,{}lirn,{}icn,{}wkeep,{}ikeep,{}inform,{}b,{}acc,{}noits,{}ifail)} \\spad{e} a sparse symmetric positive-definite system of linear equations,{} Ax=b,{} using a pre-conditioned conjugate gradient method,{} where A has been factorized by F01MAF. See \\downlink{Manual Page}{manpageXXf04maf}.")) (|f04jgf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|DoubleFloat|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f04jgf(m,{}n,{}nra,{}tol,{}lwork,{}a,{}b,{}ifail)} finds the solution of a linear least-squares problem,{} Ax=b ,{} where A is a real \\spad{m} by \\spad{n} (m>=n) matrix and \\spad{b} is an \\spad{m} element vector. If the matrix of observations is not of full rank,{} then the minimal least-squares solution is returned. See \\downlink{Manual Page}{manpageXXf04jgf}.")) (|f04faf| (((|Result|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f04faf(job,{}n,{}d,{}e,{}b,{}ifail)} calculates the approximate solution of a set of real symmetric positive-definite tridiagonal linear equations. See \\downlink{Manual Page}{manpageXXf04faf}.")) (|f04axf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|Integer|)) (|Matrix| (|Integer|)) (|Integer|) (|Matrix| (|Integer|)) (|Matrix| (|DoubleFloat|))) "\\spad{f04axf(n,{}a,{}licn,{}icn,{}ikeep,{}mtype,{}idisp,{}rhs)} calculates the approximate solution of a set of real sparse linear equations with a single right-hand side,{} Ax=b or \\indented{1}{\\spad{T}} A \\spad{x=b},{} where A has been factorized by F01BRF or F01BSF. See \\downlink{Manual Page}{manpageXXf04axf}.")) (|f04atf| (((|Result|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{f04atf(a,{}ia,{}b,{}n,{}iaa,{}ifail)} calculates the accurate solution of a set of real linear equations with a single right-hand side,{} using an LU factorization with partial pivoting,{} and iterative refinement. See \\downlink{Manual Page}{manpageXXf04atf}.")) (|f04asf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f04asf(ia,{}b,{}n,{}a,{}ifail)} calculates the accurate solution of a set of real symmetric positive-definite linear equations with a single right- hand side,{} Ax=b,{} using a Cholesky factorization and iterative refinement. See \\downlink{Manual Page}{manpageXXf04asf}.")) (|f04arf| (((|Result|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|)) "\\spad{f04arf(ia,{}b,{}n,{}a,{}ifail)} calculates the approximate solution of a set of real linear equations with a single right-hand side,{} using an LU factorization with partial pivoting. See \\downlink{Manual Page}{manpageXXf04arf}.")) (|f04adf| (((|Result|) (|Integer|) (|Matrix| (|Complex| (|DoubleFloat|))) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|Complex| (|DoubleFloat|))) (|Integer|)) "\\spad{f04adf(ia,{}b,{}ib,{}n,{}m,{}ic,{}a,{}ifail)} calculates the approximate solution of a set of complex linear equations with multiple right-hand sides,{} using an LU factorization with partial pivoting. See \\downlink{Manual Page}{manpageXXf04adf}.")))
NIL
NIL
-(-697)
+(-699)
((|constructor| (NIL "This package uses the NAG Library to compute matrix factorizations,{} and to solve systems of linear equations following the matrix factorizations. See \\downlink{Manual Page}{manpageXXf07}.")) (|f07fef| (((|Result|) (|String|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|))) "\\spad{f07fef(uplo,{}n,{}nrhs,{}a,{}lda,{}ldb,{}b)} (DPOTRS) solves a real symmetric positive-definite system of linear equations with multiple right-hand sides,{} AX=B,{} where A has been factorized by F07FDF (DPOTRF). See \\downlink{Manual Page}{manpageXXf07fef}.")) (|f07fdf| (((|Result|) (|String|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|))) "\\spad{f07fdf(uplo,{}n,{}lda,{}a)} (DPOTRF) computes the Cholesky factorization of a real symmetric positive-definite matrix. See \\downlink{Manual Page}{manpageXXf07fdf}.")) (|f07aef| (((|Result|) (|String|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Matrix| (|Integer|)) (|Integer|) (|Matrix| (|DoubleFloat|))) "\\spad{f07aef(trans,{}n,{}nrhs,{}a,{}lda,{}ipiv,{}ldb,{}b)} (DGETRS) solves a real system of linear equations with \\indented{36}{\\spad{T}} multiple right-hand sides,{} AX=B or A \\spad{X=B},{} where A has been factorized by F07ADF (DGETRF). See \\downlink{Manual Page}{manpageXXf07aef}.")) (|f07adf| (((|Result|) (|Integer|) (|Integer|) (|Integer|) (|Matrix| (|DoubleFloat|))) "\\spad{f07adf(m,{}n,{}lda,{}a)} (DGETRF) computes the LU factorization of a real \\spad{m} by \\spad{n} matrix. See \\downlink{Manual Page}{manpageXXf07adf}.")))
NIL
NIL
-(-698)
+(-700)
((|constructor| (NIL "This package uses the NAG Library to compute some commonly occurring physical and mathematical functions. See \\downlink{Manual Page}{manpageXXs}.")) (|s21bdf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|)) "\\spad{s21bdf(x,{}y,{}z,{}r,{}ifail)} returns a value of the symmetrised elliptic integral of the third kind,{} via the routine name. See \\downlink{Manual Page}{manpageXXs21bdf}.")) (|s21bcf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|)) "\\spad{s21bcf(x,{}y,{}z,{}ifail)} returns a value of the symmetrised elliptic integral of the second kind,{} via the routine name. See \\downlink{Manual Page}{manpageXXs21bcf}.")) (|s21bbf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|)) "\\spad{s21bbf(x,{}y,{}z,{}ifail)} returns a value of the symmetrised elliptic integral of the first kind,{} via the routine name. See \\downlink{Manual Page}{manpageXXs21bbf}.")) (|s21baf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|)) "\\spad{s21baf(x,{}y,{}ifail)} returns a value of an elementary integral,{} which occurs as a degenerate case of an elliptic integral of the first kind,{} via the routine name. See \\downlink{Manual Page}{manpageXXs21baf}.")) (|s20adf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s20adf(x,{}ifail)} returns a value for the Fresnel Integral \\spad{C}(\\spad{x}),{} via the routine name. See \\downlink{Manual Page}{manpageXXs20adf}.")) (|s20acf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s20acf(x,{}ifail)} returns a value for the Fresnel Integral \\spad{S}(\\spad{x}),{} via the routine name. See \\downlink{Manual Page}{manpageXXs20acf}.")) (|s19adf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s19adf(x,{}ifail)} returns a value for the Kelvin function kei(\\spad{x}) via the routine name. See \\downlink{Manual Page}{manpageXXs19adf}.")) (|s19acf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s19acf(x,{}ifail)} returns a value for the Kelvin function ker(\\spad{x}),{} via the routine name. See \\downlink{Manual Page}{manpageXXs19acf}.")) (|s19abf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s19abf(x,{}ifail)} returns a value for the Kelvin function bei(\\spad{x}) via the routine name. See \\downlink{Manual Page}{manpageXXs19abf}.")) (|s19aaf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s19aaf(x,{}ifail)} returns a value for the Kelvin function ber(\\spad{x}) via the routine name. See \\downlink{Manual Page}{manpageXXs19aaf}.")) (|s18def| (((|Result|) (|DoubleFloat|) (|Complex| (|DoubleFloat|)) (|Integer|) (|String|) (|Integer|)) "\\spad{s18def(fnu,{}z,{}n,{}scale,{}ifail)} returns a sequence of values for the modified Bessel functions \\indented{1}{\\spad{I}\\space{6}(\\spad{z}) for complex \\spad{z},{} non-negative (nu) and} \\indented{2}{(nu)\\spad{+n}} \\spad{n=0},{}1,{}...,{}\\spad{N}-1,{} with an option for exponential scaling. See \\downlink{Manual Page}{manpageXXs18def}.")) (|s18dcf| (((|Result|) (|DoubleFloat|) (|Complex| (|DoubleFloat|)) (|Integer|) (|String|) (|Integer|)) "\\spad{s18dcf(fnu,{}z,{}n,{}scale,{}ifail)} returns a sequence of values for the modified Bessel functions \\indented{1}{\\spad{K}\\space{6}(\\spad{z}) for complex \\spad{z},{} non-negative (nu) and} \\indented{2}{(nu)\\spad{+n}} \\spad{n=0},{}1,{}...,{}\\spad{N}-1,{} with an option for exponential scaling. See \\downlink{Manual Page}{manpageXXs18dcf}.")) (|s18aff| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s18aff(x,{}ifail)} returns a value for the modified Bessel Function \\indented{1}{\\spad{I} (\\spad{x}),{} via the routine name.} \\indented{2}{1} See \\downlink{Manual Page}{manpageXXs18aff}.")) (|s18aef| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s18aef(x,{}ifail)} returns the value of the modified Bessel Function \\indented{1}{\\spad{I} (\\spad{x}),{} via the routine name.} \\indented{2}{0} See \\downlink{Manual Page}{manpageXXs18aef}.")) (|s18adf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s18adf(x,{}ifail)} returns the value of the modified Bessel Function \\indented{1}{\\spad{K} (\\spad{x}),{} via the routine name.} \\indented{2}{1} See \\downlink{Manual Page}{manpageXXs18adf}.")) (|s18acf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s18acf(x,{}ifail)} returns the value of the modified Bessel Function \\indented{1}{\\spad{K} (\\spad{x}),{} via the routine name.} \\indented{2}{0} See \\downlink{Manual Page}{manpageXXs18acf}.")) (|s17dlf| (((|Result|) (|Integer|) (|DoubleFloat|) (|Complex| (|DoubleFloat|)) (|Integer|) (|String|) (|Integer|)) "\\spad{s17dlf(m,{}fnu,{}z,{}n,{}scale,{}ifail)} returns a sequence of values for the Hankel functions \\indented{2}{(1)\\space{11}(2)} \\indented{1}{\\spad{H}\\space{6}(\\spad{z}) or \\spad{H}\\space{6}(\\spad{z}) for complex \\spad{z},{} non-negative (nu) and} \\indented{2}{(nu)\\spad{+n}\\space{8}(nu)\\spad{+n}} \\spad{n=0},{}1,{}...,{}\\spad{N}-1,{} with an option for exponential scaling. See \\downlink{Manual Page}{manpageXXs17dlf}.")) (|s17dhf| (((|Result|) (|String|) (|Complex| (|DoubleFloat|)) (|String|) (|Integer|)) "\\spad{s17dhf(deriv,{}z,{}scale,{}ifail)} returns the value of the Airy function \\spad{Bi}(\\spad{z}) or its derivative Bi'(\\spad{z}) for complex \\spad{z},{} with an option for exponential scaling. See \\downlink{Manual Page}{manpageXXs17dhf}.")) (|s17dgf| (((|Result|) (|String|) (|Complex| (|DoubleFloat|)) (|String|) (|Integer|)) "\\spad{s17dgf(deriv,{}z,{}scale,{}ifail)} returns the value of the Airy function \\spad{Ai}(\\spad{z}) or its derivative Ai'(\\spad{z}) for complex \\spad{z},{} with an option for exponential scaling. See \\downlink{Manual Page}{manpageXXs17dgf}.")) (|s17def| (((|Result|) (|DoubleFloat|) (|Complex| (|DoubleFloat|)) (|Integer|) (|String|) (|Integer|)) "\\spad{s17def(fnu,{}z,{}n,{}scale,{}ifail)} returns a sequence of values for the Bessel functions \\indented{1}{\\spad{J}\\space{6}(\\spad{z}) for complex \\spad{z},{} non-negative (nu) and \\spad{n=0},{}1,{}...,{}\\spad{N}-1,{}} \\indented{2}{(nu)\\spad{+n}} with an option for exponential scaling. See \\downlink{Manual Page}{manpageXXs17def}.")) (|s17dcf| (((|Result|) (|DoubleFloat|) (|Complex| (|DoubleFloat|)) (|Integer|) (|String|) (|Integer|)) "\\spad{s17dcf(fnu,{}z,{}n,{}scale,{}ifail)} returns a sequence of values for the Bessel functions \\indented{1}{\\spad{Y}\\space{6}(\\spad{z}) for complex \\spad{z},{} non-negative (nu) and \\spad{n=0},{}1,{}...,{}\\spad{N}-1,{}} \\indented{2}{(nu)\\spad{+n}} with an option for exponential scaling. See \\downlink{Manual Page}{manpageXXs17dcf}.")) (|s17akf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s17akf(x,{}ifail)} returns a value for the derivative of the Airy function \\spad{Bi}(\\spad{x}),{} via the routine name. See \\downlink{Manual Page}{manpageXXs17akf}.")) (|s17ajf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s17ajf(x,{}ifail)} returns a value of the derivative of the Airy function \\spad{Ai}(\\spad{x}),{} via the routine name. See \\downlink{Manual Page}{manpageXXs17ajf}.")) (|s17ahf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s17ahf(x,{}ifail)} returns a value of the Airy function,{} \\spad{Bi}(\\spad{x}),{} via the routine name. See \\downlink{Manual Page}{manpageXXs17ahf}.")) (|s17agf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s17agf(x,{}ifail)} returns a value for the Airy function,{} \\spad{Ai}(\\spad{x}),{} via the routine name. See \\downlink{Manual Page}{manpageXXs17agf}.")) (|s17aff| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s17aff(x,{}ifail)} returns the value of the Bessel Function \\indented{1}{\\spad{J} (\\spad{x}),{} via the routine name.} \\indented{2}{1} See \\downlink{Manual Page}{manpageXXs17aff}.")) (|s17aef| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s17aef(x,{}ifail)} returns the value of the Bessel Function \\indented{1}{\\spad{J} (\\spad{x}),{} via the routine name.} \\indented{2}{0} See \\downlink{Manual Page}{manpageXXs17aef}.")) (|s17adf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s17adf(x,{}ifail)} returns the value of the Bessel Function \\indented{1}{\\spad{Y} (\\spad{x}),{} via the routine name.} \\indented{2}{1} See \\downlink{Manual Page}{manpageXXs17adf}.")) (|s17acf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s17acf(x,{}ifail)} returns the value of the Bessel Function \\indented{1}{\\spad{Y} (\\spad{x}),{} via the routine name.} \\indented{2}{0} See \\downlink{Manual Page}{manpageXXs17acf}.")) (|s15aef| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s15aef(x,{}ifail)} returns the value of the error function erf(\\spad{x}),{} via the routine name. See \\downlink{Manual Page}{manpageXXs15aef}.")) (|s15adf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s15adf(x,{}ifail)} returns the value of the complementary error function,{} erfc(\\spad{x}),{} via the routine name. See \\downlink{Manual Page}{manpageXXs15adf}.")) (|s14baf| (((|Result|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|)) "\\spad{s14baf(a,{}x,{}tol,{}ifail)} computes values for the incomplete gamma functions \\spad{P}(a,{}\\spad{x}) and \\spad{Q}(a,{}\\spad{x}). See \\downlink{Manual Page}{manpageXXs14baf}.")) (|s14abf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s14abf(x,{}ifail)} returns a value for the log,{} \\spad{ln}(Gamma(\\spad{x})),{} via the routine name. See \\downlink{Manual Page}{manpageXXs14abf}.")) (|s14aaf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s14aaf(x,{}ifail)} returns the value of the Gamma function (Gamma)(\\spad{x}),{} via the routine name. See \\downlink{Manual Page}{manpageXXs14aaf}.")) (|s13adf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s13adf(x,{}ifail)} returns the value of the sine integral See \\downlink{Manual Page}{manpageXXs13adf}.")) (|s13acf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s13acf(x,{}ifail)} returns the value of the cosine integral See \\downlink{Manual Page}{manpageXXs13acf}.")) (|s13aaf| (((|Result|) (|DoubleFloat|) (|Integer|)) "\\spad{s13aaf(x,{}ifail)} returns the value of the exponential integral \\indented{1}{\\spad{E} (\\spad{x}),{} via the routine name.} \\indented{2}{1} See \\downlink{Manual Page}{manpageXXs13aaf}.")) (|s01eaf| (((|Result|) (|Complex| (|DoubleFloat|)) (|Integer|)) "\\spad{s01eaf(z,{}ifail)} S01EAF evaluates the exponential function exp(\\spad{z}) ,{} for complex \\spad{z}. See \\downlink{Manual Page}{manpageXXs01eaf}.")))
NIL
NIL
-(-699)
+(-701)
((|constructor| (NIL "Support functions for the NAG Library Link functions")) (|restorePrecision| (((|Void|)) "\\spad{restorePrecision()} \\undocumented{}")) (|checkPrecision| (((|Boolean|)) "\\spad{checkPrecision()} \\undocumented{}")) (|dimensionsOf| (((|SExpression|) (|Symbol|) (|Matrix| (|Integer|))) "\\spad{dimensionsOf(s,{}m)} \\undocumented{}") (((|SExpression|) (|Symbol|) (|Matrix| (|DoubleFloat|))) "\\spad{dimensionsOf(s,{}m)} \\undocumented{}")) (|aspFilename| (((|String|) (|String|)) "\\spad{aspFilename(\"f\")} returns a String consisting of \\spad{\"f\"} suffixed with \\indented{1}{an extension identifying the current AXIOM session.}")) (|fortranLinkerArgs| (((|String|)) "\\spad{fortranLinkerArgs()} returns the current linker arguments")) (|fortranCompilerName| (((|String|)) "\\spad{fortranCompilerName()} returns the name of the currently selected \\indented{1}{Fortran compiler}")))
NIL
NIL
-(-700 S)
+(-702 S)
((|constructor| (NIL "NonAssociativeRng is a basic ring-type structure,{} not necessarily commutative or associative,{} and not necessarily with unit. Axioms \\indented{2}{\\spad{x*}(\\spad{y+z}) = x*y + \\spad{x*z}} \\indented{2}{(x+y)\\spad{*z} = \\spad{x*z} + \\spad{y*z}} Common Additional Axioms \\indented{2}{noZeroDivisors\\space{2}ab = 0 \\spad{=>} a=0 or \\spad{b=0}}")) (|antiCommutator| (($ $ $) "\\spad{antiCommutator(a,{}b)} returns \\spad{a*b+b*a}.")) (|commutator| (($ $ $) "\\spad{commutator(a,{}b)} returns \\spad{a*b-b*a}.")) (|associator| (($ $ $ $) "\\spad{associator(a,{}b,{}c)} returns \\spad{(a*b)*c-a*(b*c)}.")))
NIL
NIL
-(-701)
+(-703)
((|constructor| (NIL "NonAssociativeRng is a basic ring-type structure,{} not necessarily commutative or associative,{} and not necessarily with unit. Axioms \\indented{2}{\\spad{x*}(\\spad{y+z}) = x*y + \\spad{x*z}} \\indented{2}{(x+y)\\spad{*z} = \\spad{x*z} + \\spad{y*z}} Common Additional Axioms \\indented{2}{noZeroDivisors\\space{2}ab = 0 \\spad{=>} a=0 or \\spad{b=0}}")) (|antiCommutator| (($ $ $) "\\spad{antiCommutator(a,{}b)} returns \\spad{a*b+b*a}.")) (|commutator| (($ $ $) "\\spad{commutator(a,{}b)} returns \\spad{a*b-b*a}.")) (|associator| (($ $ $ $) "\\spad{associator(a,{}b,{}c)} returns \\spad{(a*b)*c-a*(b*c)}.")))
NIL
NIL
-(-702 S)
+(-704 S)
((|constructor| (NIL "A NonAssociativeRing is a non associative \\spad{rng} which has a unit,{} the multiplication is not necessarily commutative or associative.")) (|coerce| (($ (|Integer|)) "\\spad{coerce(n)} coerces the integer \\spad{n} to an element of the ring.")) (|characteristic| (((|NonNegativeInteger|)) "\\spad{characteristic()} returns the characteristic of the ring.")))
NIL
NIL
-(-703)
+(-705)
((|constructor| (NIL "A NonAssociativeRing is a non associative \\spad{rng} which has a unit,{} the multiplication is not necessarily commutative or associative.")) (|coerce| (($ (|Integer|)) "\\spad{coerce(n)} coerces the integer \\spad{n} to an element of the ring.")) (|characteristic| (((|NonNegativeInteger|)) "\\spad{characteristic()} returns the characteristic of the ring.")))
NIL
NIL
-(-704 |Par|)
+(-706 |Par|)
((|constructor| (NIL "This package computes explicitly eigenvalues and eigenvectors of matrices with entries over the complex rational numbers. The results are expressed either as complex floating numbers or as complex rational numbers depending on the type of the precision parameter.")) (|complexEigenvectors| (((|List| (|Record| (|:| |outval| (|Complex| |#1|)) (|:| |outmult| (|Integer|)) (|:| |outvect| (|List| (|Matrix| (|Complex| |#1|)))))) (|Matrix| (|Complex| (|Fraction| (|Integer|)))) |#1|) "\\spad{complexEigenvectors(m,{}eps)} returns a list of records each one containing a complex eigenvalue,{} its algebraic multiplicity,{} and a list of associated eigenvectors. All these results are computed to precision \\spad{eps} and are expressed as complex floats or complex rational numbers depending on the type of \\spad{eps} (float or rational).")) (|complexEigenvalues| (((|List| (|Complex| |#1|)) (|Matrix| (|Complex| (|Fraction| (|Integer|)))) |#1|) "\\spad{complexEigenvalues(m,{}eps)} computes the eigenvalues of the matrix \\spad{m} to precision \\spad{eps}. The eigenvalues are expressed as complex floats or complex rational numbers depending on the type of \\spad{eps} (float or rational).")) (|characteristicPolynomial| (((|Polynomial| (|Complex| (|Fraction| (|Integer|)))) (|Matrix| (|Complex| (|Fraction| (|Integer|)))) (|Symbol|)) "\\spad{characteristicPolynomial(m,{}x)} returns the characteristic polynomial of the matrix \\spad{m} expressed as polynomial over Complex Rationals with variable \\spad{x}.") (((|Polynomial| (|Complex| (|Fraction| (|Integer|)))) (|Matrix| (|Complex| (|Fraction| (|Integer|))))) "\\spad{characteristicPolynomial(m)} returns the characteristic polynomial of the matrix \\spad{m} expressed as polynomial over complex rationals with a new symbol as variable.")))
NIL
NIL
-(-705 -3894)
+(-707 -3576)
((|constructor| (NIL "\\spadtype{NumericContinuedFraction} provides functions \\indented{2}{for converting floating point numbers to continued fractions.}")) (|continuedFraction| (((|ContinuedFraction| (|Integer|)) |#1|) "\\spad{continuedFraction(f)} converts the floating point number \\spad{f} to a reduced continued fraction.")))
NIL
NIL
-(-706 P -3894)
+(-708 P -3576)
((|constructor| (NIL "This package provides a division and related operations for \\spadtype{MonogenicLinearOperator}\\spad{s} over a \\spadtype{Field}. Since the multiplication is in general non-commutative,{} these operations all have left- and right-hand versions. This package provides the operations based on left-division.")) (|leftLcm| ((|#1| |#1| |#1|) "\\spad{leftLcm(a,{}b)} computes the value \\spad{m} of lowest degree such that \\spad{m = a*aa = b*bb} for some values \\spad{aa} and \\spad{bb}. The value \\spad{m} is computed using left-division.")) (|leftGcd| ((|#1| |#1| |#1|) "\\spad{leftGcd(a,{}b)} computes the value \\spad{g} of highest degree such that \\indented{3}{\\spad{a = aa*g}} \\indented{3}{\\spad{b = bb*g}} for some values \\spad{aa} and \\spad{bb}. The value \\spad{g} is computed using left-division.")) (|leftExactQuotient| (((|Union| |#1| "failed") |#1| |#1|) "\\spad{leftExactQuotient(a,{}b)} computes the value \\spad{q},{} if it exists,{} \\indented{1}{such that \\spad{a = b*q}.}")) (|leftRemainder| ((|#1| |#1| |#1|) "\\spad{leftRemainder(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{r} is returned.")) (|leftQuotient| ((|#1| |#1| |#1|) "\\spad{leftQuotient(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{q} is returned.")) (|leftDivide| (((|Record| (|:| |quotient| |#1|) (|:| |remainder| |#1|)) |#1| |#1|) "\\spad{leftDivide(a,{}b)} returns the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``left division\\spad{''}.")))
NIL
NIL
-(-707 UP -3894)
+(-709 UP -3576)
((|constructor| (NIL "In this package \\spad{F} is a framed algebra over the integers (typically \\spad{F = Z[a]} for some algebraic integer a). The package provides functions to compute the integral closure of \\spad{Z} in the quotient quotient field of \\spad{F}.")) (|localIntegralBasis| (((|Record| (|:| |basis| (|Matrix| (|Integer|))) (|:| |basisDen| (|Integer|)) (|:| |basisInv| (|Matrix| (|Integer|)))) (|Integer|)) "\\spad{integralBasis(p)} returns a record \\spad{[basis,{}basisDen,{}basisInv]} containing information regarding the local integral closure of \\spad{Z} at the prime \\spad{p} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{Z}-module basis \\spad{w1,{}w2,{}...,{}wn}. If \\spad{basis} is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if \\spad{basisInv} is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")) (|integralBasis| (((|Record| (|:| |basis| (|Matrix| (|Integer|))) (|:| |basisDen| (|Integer|)) (|:| |basisInv| (|Matrix| (|Integer|))))) "\\spad{integralBasis()} returns a record \\spad{[basis,{}basisDen,{}basisInv]} containing information regarding the integral closure of \\spad{Z} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{Z}-module basis \\spad{w1,{}w2,{}...,{}wn}. If \\spad{basis} is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if \\spad{basisInv} is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")) (|discriminant| (((|Integer|)) "\\spad{discriminant()} returns the discriminant of the integral closure of \\spad{Z} in the quotient field of the framed algebra \\spad{F}.")))
NIL
NIL
-(-708)
+(-710)
((|retract| (((|Union| (|:| |nia| (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |mdnia| (|Record| (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|List| (|Segment| (|OrderedCompletion| (|DoubleFloat|))))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|))))) $) "\\spad{retract(x)} \\undocumented{}")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(x)} \\undocumented{}") (($ (|Union| (|:| |nia| (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |mdnia| (|Record| (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|List| (|Segment| (|OrderedCompletion| (|DoubleFloat|))))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))))) "\\spad{coerce(x)} \\undocumented{}") (($ (|Record| (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|List| (|Segment| (|OrderedCompletion| (|DoubleFloat|))))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{coerce(x)} \\undocumented{}") (($ (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{coerce(x)} \\undocumented{}")))
NIL
NIL
-(-709 R)
+(-711 R)
((|constructor| (NIL "NonLinearSolvePackage is an interface to \\spadtype{SystemSolvePackage} that attempts to retract the coefficients of the equations before solving. The solutions are given in the algebraic closure of \\spad{R} whenever possible.")) (|solve| (((|List| (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|))) "\\spad{solve(lp)} finds the solution in the algebraic closure of \\spad{R} of the list \\spad{lp} of rational functions with respect to all the symbols appearing in \\spad{lp}.") (((|List| (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|))) "\\spad{solve(lp,{}lv)} finds the solutions in the algebraic closure of \\spad{R} of the list \\spad{lp} of rational functions with respect to the list of symbols \\spad{lv}.")) (|solveInField| (((|List| (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|))) "\\spad{solveInField(lp)} finds the solution of the list \\spad{lp} of rational functions with respect to all the symbols appearing in \\spad{lp}.") (((|List| (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|))) "\\spad{solveInField(lp,{}lv)} finds the solutions of the list \\spad{lp} of rational functions with respect to the list of symbols \\spad{lv}.")))
NIL
NIL
-(-710)
+(-712)
((|constructor| (NIL "\\spadtype{NonNegativeInteger} provides functions for non \\indented{2}{negative integers.}")) (|commutative| ((|attribute| "*") "\\spad{commutative(\"*\")} means multiplication is commutative : \\spad{x*y = y*x}.")) (|random| (($ $) "\\spad{random(n)} returns a random integer from 0 to \\spad{n-1}.")) (|shift| (($ $ (|Integer|)) "\\spad{shift(a,{}i)} shift \\spad{a} by \\spad{i} bits.")) (|exquo| (((|Union| $ "failed") $ $) "\\spad{exquo(a,{}b)} returns the quotient of \\spad{a} and \\spad{b},{} or \"failed\" if \\spad{b} is zero or \\spad{a} rem \\spad{b} is zero.")) (|divide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{divide(a,{}b)} returns a record containing both remainder and quotient.")) (|gcd| (($ $ $) "\\spad{gcd(a,{}b)} computes the greatest common divisor of two non negative integers \\spad{a} and \\spad{b}.")) (|rem| (($ $ $) "\\spad{a rem b} returns the remainder of \\spad{a} and \\spad{b}.")) (|quo| (($ $ $) "\\spad{a quo b} returns the quotient of \\spad{a} and \\spad{b},{} forgetting the remainder.")))
-(((-4250 "*") . T))
+(((-4252 "*") . T))
NIL
-(-711 R -3894)
+(-713 R -3576)
((|constructor| (NIL "NonLinearFirstOrderODESolver provides a function for finding closed form first integrals of nonlinear ordinary differential equations of order 1.")) (|solve| (((|Union| |#2| "failed") |#2| |#2| (|BasicOperator|) (|Symbol|)) "\\spad{solve(M(x,{}y),{} N(x,{}y),{} y,{} x)} returns \\spad{F(x,{}y)} such that \\spad{F(x,{}y) = c} for a constant \\spad{c} is a first integral of the equation \\spad{M(x,{}y) dx + N(x,{}y) dy = 0},{} or \"failed\" if no first-integral can be found.")))
NIL
NIL
-(-712 S)
+(-714 S)
((|constructor| (NIL "\\spadtype{NoneFunctions1} implements functions on \\spadtype{None}. It particular it includes a particulary dangerous coercion from any other type to \\spadtype{None}.")) (|coerce| (((|None|) |#1|) "\\spad{coerce(x)} changes \\spad{x} into an object of type \\spadtype{None}.")))
NIL
NIL
-(-713)
+(-715)
((|constructor| (NIL "\\spadtype{None} implements a type with no objects. It is mainly used in technical situations where such a thing is needed (\\spadignore{e.g.} the interpreter and some of the internal \\spadtype{Expression} code).")))
NIL
NIL
-(-714 R |PolR| E |PolE|)
+(-716 R |PolR| E |PolE|)
((|constructor| (NIL "This package implements the norm of a polynomial with coefficients in a monogenic algebra (using resultants)")) (|norm| ((|#2| |#4|) "\\spad{norm q} returns the norm of \\spad{q},{} \\spadignore{i.e.} the product of all the conjugates of \\spad{q}.")))
NIL
NIL
-(-715 R E V P TS)
+(-717 R E V P TS)
((|constructor| (NIL "A package for computing normalized assocites of univariate polynomials with coefficients in a tower of simple extensions of a field.\\newline References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991} \\indented{1}{[2] \\spad{M}. MORENO MAZA and \\spad{R}. RIOBOO \"Computations of \\spad{gcd} over} \\indented{5}{algebraic towers of simple extensions\" In proceedings of AAECC11} \\indented{5}{Paris,{} 1995.} \\indented{1}{[3] \\spad{M}. MORENO MAZA \"Calculs de pgcd au-dessus des tours} \\indented{5}{d'extensions simples et resolution des systemes d'equations} \\indented{5}{algebriques\" These,{} Universite \\spad{P}.etM. Curie,{} Paris,{} 1997.}")) (|normInvertible?| (((|List| (|Record| (|:| |val| (|Boolean|)) (|:| |tower| |#5|))) |#4| |#5|) "\\axiom{normInvertible?(\\spad{p},{}\\spad{ts})} is an internal subroutine,{} exported only for developement.")) (|outputArgs| (((|Void|) (|String|) (|String|) |#4| |#5|) "\\axiom{outputArgs(\\spad{s1},{}\\spad{s2},{}\\spad{p},{}\\spad{ts})} is an internal subroutine,{} exported only for developement.")) (|normalize| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) |#4| |#5|) "\\axiom{normalize(\\spad{p},{}\\spad{ts})} normalizes \\axiom{\\spad{p}} \\spad{w}.\\spad{r}.\\spad{t} \\spad{ts}.")) (|normalizedAssociate| ((|#4| |#4| |#5|) "\\axiom{normalizedAssociate(\\spad{p},{}\\spad{ts})} returns a normalized polynomial \\axiom{\\spad{n}} \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts} such that \\axiom{\\spad{n}} and \\axiom{\\spad{p}} are associates \\spad{w}.\\spad{r}.\\spad{t} \\spad{ts} and assuming that \\axiom{\\spad{p}} is invertible \\spad{w}.\\spad{r}.\\spad{t} \\spad{ts}.")) (|recip| (((|Record| (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) "\\axiom{recip(\\spad{p},{}\\spad{ts})} returns the inverse of \\axiom{\\spad{p}} \\spad{w}.\\spad{r}.\\spad{t} \\spad{ts} assuming that \\axiom{\\spad{p}} is invertible \\spad{w}.\\spad{r}.\\spad{t} \\spad{ts}.")))
NIL
NIL
-(-716 -3894 |ExtF| |SUEx| |ExtP| |n|)
+(-718 -3576 |ExtF| |SUEx| |ExtP| |n|)
((|constructor| (NIL "This package \\undocumented")) (|Frobenius| ((|#4| |#4|) "\\spad{Frobenius(x)} \\undocumented")) (|retractIfCan| (((|Union| (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|)) "failed") |#4|) "\\spad{retractIfCan(x)} \\undocumented")) (|normFactors| (((|List| |#4|) |#4|) "\\spad{normFactors(x)} \\undocumented")))
NIL
NIL
-(-717 BP E OV R P)
+(-719 BP E OV R P)
((|constructor| (NIL "Package for the determination of the coefficients in the lifting process. Used by \\spadtype{MultivariateLifting}. This package will work for every euclidean domain \\spad{R} which has property \\spad{F},{} \\spadignore{i.e.} there exists a factor operation in \\spad{R[x]}.")) (|listexp| (((|List| (|NonNegativeInteger|)) |#1|) "\\spad{listexp }\\undocumented")) (|npcoef| (((|Record| (|:| |deter| (|List| (|SparseUnivariatePolynomial| |#5|))) (|:| |dterm| (|List| (|List| (|Record| (|:| |expt| (|NonNegativeInteger|)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (|List| |#1|)) (|:| |nlead| (|List| |#5|))) (|SparseUnivariatePolynomial| |#5|) (|List| |#1|) (|List| |#5|)) "\\spad{npcoef }\\undocumented")))
NIL
NIL
-(-718 |Par|)
+(-720 |Par|)
((|constructor| (NIL "This package computes explicitly eigenvalues and eigenvectors of matrices with entries over the Rational Numbers. The results are expressed as floating numbers or as rational numbers depending on the type of the parameter Par.")) (|realEigenvectors| (((|List| (|Record| (|:| |outval| |#1|) (|:| |outmult| (|Integer|)) (|:| |outvect| (|List| (|Matrix| |#1|))))) (|Matrix| (|Fraction| (|Integer|))) |#1|) "\\spad{realEigenvectors(m,{}eps)} returns a list of records each one containing a real eigenvalue,{} its algebraic multiplicity,{} and a list of associated eigenvectors. All these results are computed to precision \\spad{eps} as floats or rational numbers depending on the type of \\spad{eps} .")) (|realEigenvalues| (((|List| |#1|) (|Matrix| (|Fraction| (|Integer|))) |#1|) "\\spad{realEigenvalues(m,{}eps)} computes the eigenvalues of the matrix \\spad{m} to precision \\spad{eps}. The eigenvalues are expressed as floats or rational numbers depending on the type of \\spad{eps} (float or rational).")) (|characteristicPolynomial| (((|Polynomial| (|Fraction| (|Integer|))) (|Matrix| (|Fraction| (|Integer|))) (|Symbol|)) "\\spad{characteristicPolynomial(m,{}x)} returns the characteristic polynomial of the matrix \\spad{m} expressed as polynomial over \\spad{RN} with variable \\spad{x}. Fraction \\spad{P} \\spad{RN}.") (((|Polynomial| (|Fraction| (|Integer|))) (|Matrix| (|Fraction| (|Integer|)))) "\\spad{characteristicPolynomial(m)} returns the characteristic polynomial of the matrix \\spad{m} expressed as polynomial over \\spad{RN} with a new symbol as variable.")))
NIL
NIL
-(-719 R |VarSet|)
+(-721 R |VarSet|)
((|constructor| (NIL "A post-facto extension for \\axiomType{\\spad{SMP}} in order to speed up operations related to pseudo-division and \\spad{gcd}. This domain is based on the \\axiomType{NSUP} constructor which is itself a post-facto extension of the \\axiomType{SUP} constructor.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-840))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499))))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-1087))))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-339))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-1087))))) (-3255 (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-1087)))) (-2575 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-1087)))))) (-3255 (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-1087)))) (-2575 (|HasCategory| |#1| (QUOTE (-508)))) (-2575 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-1087)))) (-2575 (|HasCategory| |#1| (LIST (QUOTE -37) (QUOTE (-523))))) (-2575 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-1087)))) (-2575 (|HasCategory| |#1| (LIST (QUOTE -921) (QUOTE (-523))))))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasAttribute| |#1| (QUOTE -4246)) (|HasCategory| |#1| (QUOTE (-427))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-134)))))
-(-720 R S)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-842))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501))))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-1089))))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-341))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-1089))))) (-3321 (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-1089)))) (-2247 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-1089)))))) (-3321 (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-1089)))) (-2247 (|HasCategory| |#1| (QUOTE (-510)))) (-2247 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-1089)))) (-2247 (|HasCategory| |#1| (LIST (QUOTE -37) (QUOTE (-525))))) (-2247 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-1089)))) (-2247 (|HasCategory| |#1| (LIST (QUOTE -923) (QUOTE (-525))))))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasAttribute| |#1| (QUOTE -4248)) (|HasCategory| |#1| (QUOTE (-429))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-136)))))
+(-722 R S)
((|constructor| (NIL "This package lifts a mapping from coefficient rings \\spad{R} to \\spad{S} to a mapping from sparse univariate polynomial over \\spad{R} to a sparse univariate polynomial over \\spad{S}. Note that the mapping is assumed to send zero to zero,{} since it will only be applied to the non-zero coefficients of the polynomial.")) (|map| (((|NewSparseUnivariatePolynomial| |#2|) (|Mapping| |#2| |#1|) (|NewSparseUnivariatePolynomial| |#1|)) "\\axiom{map(func,{} poly)} creates a new polynomial by applying func to every non-zero coefficient of the polynomial poly.")))
NIL
NIL
-(-721 R)
+(-723 R)
((|constructor| (NIL "A post-facto extension for \\axiomType{SUP} in order to speed up operations related to pseudo-division and \\spad{gcd} for both \\axiomType{SUP} and,{} consequently,{} \\axiomType{NSMP}.")) (|halfExtendedResultant2| (((|Record| (|:| |resultant| |#1|) (|:| |coef2| $)) $ $) "\\axiom{halfExtendedResultant2(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}ca]} such that \\axiom{extendedResultant(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}ca,{} \\spad{cb}]}")) (|halfExtendedResultant1| (((|Record| (|:| |resultant| |#1|) (|:| |coef1| $)) $ $) "\\axiom{halfExtendedResultant1(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}ca]} such that \\axiom{extendedResultant(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}ca,{} \\spad{cb}]}")) (|extendedResultant| (((|Record| (|:| |resultant| |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) "\\axiom{extendedResultant(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}ca,{}\\spad{cb}]} such that \\axiom{\\spad{r}} is the resultant of \\axiom{a} and \\axiom{\\spad{b}} and \\axiom{\\spad{r} = ca * a + \\spad{cb} * \\spad{b}}")) (|halfExtendedSubResultantGcd2| (((|Record| (|:| |gcd| $) (|:| |coef2| $)) $ $) "\\axiom{halfExtendedSubResultantGcd2(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}\\spad{cb}]} such that \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{} \\spad{cb}]}")) (|halfExtendedSubResultantGcd1| (((|Record| (|:| |gcd| $) (|:| |coef1| $)) $ $) "\\axiom{halfExtendedSubResultantGcd1(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca]} such that \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{} \\spad{cb}]}")) (|extendedSubResultantGcd| (((|Record| (|:| |gcd| $) (|:| |coef1| $) (|:| |coef2| $)) $ $) "\\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{} \\spad{cb}]} such that \\axiom{\\spad{g}} is a \\spad{gcd} of \\axiom{a} and \\axiom{\\spad{b}} in \\axiom{\\spad{R^}(\\spad{-1}) \\spad{P}} and \\axiom{\\spad{g} = ca * a + \\spad{cb} * \\spad{b}}")) (|lastSubResultant| (($ $ $) "\\axiom{lastSubResultant(a,{}\\spad{b})} returns \\axiom{resultant(a,{}\\spad{b})} if \\axiom{a} and \\axiom{\\spad{b}} has no non-trivial \\spad{gcd} in \\axiom{\\spad{R^}(\\spad{-1}) \\spad{P}} otherwise the non-zero sub-resultant with smallest index.")) (|subResultantsChain| (((|List| $) $ $) "\\axiom{subResultantsChain(a,{}\\spad{b})} returns the list of the non-zero sub-resultants of \\axiom{a} and \\axiom{\\spad{b}} sorted by increasing degree.")) (|lazyPseudoQuotient| (($ $ $) "\\axiom{lazyPseudoQuotient(a,{}\\spad{b})} returns \\axiom{\\spad{q}} if \\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]}")) (|lazyPseudoDivide| (((|Record| (|:| |coef| |#1|) (|:| |gap| (|NonNegativeInteger|)) (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]} such that \\axiom{\\spad{c^n} * a = \\spad{q*b} \\spad{+r}} and \\axiom{lazyResidueClass(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}\\spad{c},{}\\spad{n}]} where \\axiom{\\spad{n} + \\spad{g} = max(0,{} degree(\\spad{b}) - degree(a) + 1)}.")) (|lazyPseudoRemainder| (($ $ $) "\\axiom{lazyPseudoRemainder(a,{}\\spad{b})} returns \\axiom{\\spad{r}} if \\axiom{lazyResidueClass(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}\\spad{c},{}\\spad{n}]}. This lazy pseudo-remainder is computed by means of the \\axiomOpFrom{fmecg}{NewSparseUnivariatePolynomial} operation.")) (|lazyResidueClass| (((|Record| (|:| |polnum| $) (|:| |polden| |#1|) (|:| |power| (|NonNegativeInteger|))) $ $) "\\axiom{lazyResidueClass(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}\\spad{c},{}\\spad{n}]} such that \\axiom{\\spad{r}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and \\axiom{\\spad{b}} divides \\axiom{\\spad{c^n} * a - \\spad{r}} where \\axiom{\\spad{c}} is \\axiom{leadingCoefficient(\\spad{b})} and \\axiom{\\spad{n}} is as small as possible with the previous properties.")) (|monicModulo| (($ $ $) "\\axiom{monicModulo(a,{}\\spad{b})} returns \\axiom{\\spad{r}} such that \\axiom{\\spad{r}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and \\axiom{\\spad{b}} divides \\axiom{a \\spad{-r}} where \\axiom{\\spad{b}} is monic.")) (|fmecg| (($ $ (|NonNegativeInteger|) |#1| $) "\\axiom{fmecg(\\spad{p1},{}\\spad{e},{}\\spad{r},{}\\spad{p2})} returns \\axiom{\\spad{p1} - \\spad{r} * X**e * \\spad{p2}} where \\axiom{\\spad{X}} is \\axiom{monomial(1,{}1)}")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4244 |has| |#1| (-339)) (-4246 |has| |#1| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-840))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355)))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523)))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499))))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-1063))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasCategory| |#1| (QUOTE (-211))) (|HasAttribute| |#1| (QUOTE -4246)) (|HasCategory| |#1| (QUOTE (-427))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-134)))))
-(-722 R)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4246 |has| |#1| (-341)) (-4248 |has| |#1| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-842))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357)))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525)))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501))))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-1065))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasCategory| |#1| (QUOTE (-213))) (|HasAttribute| |#1| (QUOTE -4248)) (|HasCategory| |#1| (QUOTE (-429))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-136)))))
+(-724 R)
((|constructor| (NIL "This package provides polynomials as functions on a ring.")) (|eulerE| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{eulerE(n,{}r)} \\undocumented")) (|bernoulliB| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{bernoulliB(n,{}r)} \\undocumented")) (|cyclotomic| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{cyclotomic(n,{}r)} \\undocumented")))
NIL
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))))
-(-723 R E V P)
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))))
+(-725 R E V P)
((|constructor| (NIL "The category of normalized triangular sets. A triangular set \\spad{ts} is said normalized if for every algebraic variable \\spad{v} of \\spad{ts} the polynomial \\spad{select(ts,{}v)} is normalized \\spad{w}.\\spad{r}.\\spad{t}. every polynomial in \\spad{collectUnder(ts,{}v)}. A polynomial \\spad{p} is said normalized \\spad{w}.\\spad{r}.\\spad{t}. a non-constant polynomial \\spad{q} if \\spad{p} is constant or \\spad{degree(p,{}mdeg(q)) = 0} and \\spad{init(p)} is normalized \\spad{w}.\\spad{r}.\\spad{t}. \\spad{q}. One of the important features of normalized triangular sets is that they are regular sets.\\newline References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991} \\indented{1}{[2] \\spad{P}. AUBRY,{} \\spad{D}. LAZARD and \\spad{M}. MORENO MAZA \"On the Theories} \\indented{5}{of Triangular Sets\" Journal of Symbol. Comp. (to appear)} \\indented{1}{[3] \\spad{M}. MORENO MAZA and \\spad{R}. RIOBOO \"Computations of \\spad{gcd} over} \\indented{5}{algebraic towers of simple extensions\" In proceedings of AAECC11} \\indented{5}{Paris,{} 1995.} \\indented{1}{[4] \\spad{M}. MORENO MAZA \"Calculs de pgcd au-dessus des tours} \\indented{5}{d'extensions simples et resolution des systemes d'equations} \\indented{5}{algebriques\" These,{} Universite \\spad{P}.etM. Curie,{} Paris,{} 1997.}")))
-((-4249 . T) (-4248 . T) (-2500 . T))
+((-4251 . T) (-4250 . T) (-2137 . T))
NIL
-(-724 S)
+(-726 S)
((|constructor| (NIL "Numeric provides real and complex numerical evaluation functions for various symbolic types.")) (|numericIfCan| (((|Union| (|Float|) "failed") (|Expression| |#1|) (|PositiveInteger|)) "\\spad{numericIfCan(x,{} n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Float|) "failed") (|Expression| |#1|)) "\\spad{numericIfCan(x)} returns a real approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Float|) "failed") (|Fraction| (|Polynomial| |#1|)) (|PositiveInteger|)) "\\spad{numericIfCan(x,{}n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Float|) "failed") (|Fraction| (|Polynomial| |#1|))) "\\spad{numericIfCan(x)} returns a real approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Float|) "failed") (|Polynomial| |#1|) (|PositiveInteger|)) "\\spad{numericIfCan(x,{}n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Float|) "failed") (|Polynomial| |#1|)) "\\spad{numericIfCan(x)} returns a real approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.")) (|complexNumericIfCan| (((|Union| (|Complex| (|Float|)) "failed") (|Expression| (|Complex| |#1|)) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Expression| (|Complex| |#1|))) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Expression| |#1|) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Expression| |#1|)) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Fraction| (|Polynomial| (|Complex| |#1|))) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Fraction| (|Polynomial| (|Complex| |#1|)))) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Fraction| (|Polynomial| |#1|)) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x,{} n)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Fraction| (|Polynomial| |#1|))) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Polynomial| |#1|) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Polynomial| |#1|)) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Polynomial| (|Complex| |#1|)) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Polynomial| (|Complex| |#1|))) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not constant.")) (|complexNumeric| (((|Complex| (|Float|)) (|Expression| (|Complex| |#1|)) (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Expression| (|Complex| |#1|))) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Expression| |#1|) (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Expression| |#1|)) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Fraction| (|Polynomial| (|Complex| |#1|))) (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Fraction| (|Polynomial| (|Complex| |#1|)))) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Fraction| (|Polynomial| |#1|)) (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x}") (((|Complex| (|Float|)) (|Fraction| (|Polynomial| |#1|))) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Polynomial| |#1|) (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Polynomial| |#1|)) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Polynomial| (|Complex| |#1|)) (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Polynomial| (|Complex| |#1|))) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Complex| |#1|) (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Complex| |#1|)) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) |#1| (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) |#1|) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.")) (|numeric| (((|Float|) (|Expression| |#1|) (|PositiveInteger|)) "\\spad{numeric(x,{} n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Float|) (|Expression| |#1|)) "\\spad{numeric(x)} returns a real approximation of \\spad{x}.") (((|Float|) (|Fraction| (|Polynomial| |#1|)) (|PositiveInteger|)) "\\spad{numeric(x,{}n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Float|) (|Fraction| (|Polynomial| |#1|))) "\\spad{numeric(x)} returns a real approximation of \\spad{x}.") (((|Float|) (|Polynomial| |#1|) (|PositiveInteger|)) "\\spad{numeric(x,{}n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Float|) (|Polynomial| |#1|)) "\\spad{numeric(x)} returns a real approximation of \\spad{x}.") (((|Float|) |#1| (|PositiveInteger|)) "\\spad{numeric(x,{} n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Float|) |#1|) "\\spad{numeric(x)} returns a real approximation of \\spad{x}.")))
NIL
-((-12 (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-786)))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (QUOTE (-158))))
-(-725)
+((-12 (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-788)))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-975))) (|HasCategory| |#1| (QUOTE (-160))))
+(-727)
((|constructor| (NIL "NumberFormats provides function to format and read arabic and roman numbers,{} to convert numbers to strings and to read floating-point numbers.")) (|ScanFloatIgnoreSpacesIfCan| (((|Union| (|Float|) "failed") (|String|)) "\\spad{ScanFloatIgnoreSpacesIfCan(s)} tries to form a floating point number from the string \\spad{s} ignoring any spaces.")) (|ScanFloatIgnoreSpaces| (((|Float|) (|String|)) "\\spad{ScanFloatIgnoreSpaces(s)} forms a floating point number from the string \\spad{s} ignoring any spaces. Error is generated if the string is not recognised as a floating point number.")) (|ScanRoman| (((|PositiveInteger|) (|String|)) "\\spad{ScanRoman(s)} forms an integer from a Roman numeral string \\spad{s}.")) (|FormatRoman| (((|String|) (|PositiveInteger|)) "\\spad{FormatRoman(n)} forms a Roman numeral string from an integer \\spad{n}.")) (|ScanArabic| (((|PositiveInteger|) (|String|)) "\\spad{ScanArabic(s)} forms an integer from an Arabic numeral string \\spad{s}.")) (|FormatArabic| (((|String|) (|PositiveInteger|)) "\\spad{FormatArabic(n)} forms an Arabic numeral string from an integer \\spad{n}.")))
NIL
NIL
-(-726)
+(-728)
((|numericalIntegration| (((|Result|) (|Record| (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|List| (|Segment| (|OrderedCompletion| (|DoubleFloat|))))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|))) (|Result|)) "\\spad{numericalIntegration(args,{}hints)} performs the integration of the function given the strategy or method returned by \\axiomFun{measure}.") (((|Result|) (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|))) (|Result|)) "\\spad{numericalIntegration(args,{}hints)} performs the integration of the function given the strategy or method returned by \\axiomFun{measure}.")) (|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |explanations| (|String|)) (|:| |extra| (|Result|))) (|RoutinesTable|) (|Record| (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|List| (|Segment| (|OrderedCompletion| (|DoubleFloat|))))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{measure(R,{}args)} calculates an estimate of the ability of a particular method to solve a problem. \\blankline This method may be either a specific NAG routine or a strategy (such as transforming the function from one which is difficult to one which is easier to solve). \\blankline It will call whichever agents are needed to perform analysis on the problem in order to calculate the measure. There is a parameter,{} labelled \\axiom{sofar},{} which would contain the best compatibility found so far.") (((|Record| (|:| |measure| (|Float|)) (|:| |explanations| (|String|)) (|:| |extra| (|Result|))) (|RoutinesTable|) (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{measure(R,{}args)} calculates an estimate of the ability of a particular method to solve a problem. \\blankline This method may be either a specific NAG routine or a strategy (such as transforming the function from one which is difficult to one which is easier to solve). \\blankline It will call whichever agents are needed to perform analysis on the problem in order to calculate the measure. There is a parameter,{} labelled \\axiom{sofar},{} which would contain the best compatibility found so far.")))
NIL
NIL
-(-727)
+(-729)
((|constructor| (NIL "This package is a suite of functions for the numerical integration of an ordinary differential equation of \\spad{n} variables: \\blankline \\indented{8}{\\center{dy/dx = \\spad{f}(\\spad{y},{}\\spad{x})\\space{5}\\spad{y} is an \\spad{n}-vector}} \\blankline \\par All the routines are based on a 4-th order Runge-Kutta kernel. These routines generally have as arguments: \\spad{n},{} the number of dependent variables; \\spad{x1},{} the initial point; \\spad{h},{} the step size; \\spad{y},{} a vector of initial conditions of length \\spad{n} which upon exit contains the solution at \\spad{x1 + h}; \\spad{derivs},{} a function which computes the right hand side of the ordinary differential equation: \\spad{derivs(dydx,{}y,{}x)} computes \\spad{dydx},{} a vector which contains the derivative information. \\blankline \\par In order of increasing complexity:\\begin{items} \\blankline \\item \\spad{rk4(y,{}n,{}x1,{}h,{}derivs)} advances the solution vector to \\spad{x1 + h} and return the values in \\spad{y}. \\blankline \\item \\spad{rk4(y,{}n,{}x1,{}h,{}derivs,{}t1,{}t2,{}t3,{}t4)} is the same as \\spad{rk4(y,{}n,{}x1,{}h,{}derivs)} except that you must provide 4 scratch arrays \\spad{t1}-\\spad{t4} of size \\spad{n}. \\blankline \\item Starting with \\spad{y} at \\spad{x1},{} \\spad{rk4f(y,{}n,{}x1,{}x2,{}ns,{}derivs)} uses \\spad{ns} fixed steps of a 4-th order Runge-Kutta integrator to advance the solution vector to \\spad{x2} and return the values in \\spad{y}. Argument \\spad{x2},{} is the final point,{} and \\spad{ns},{} the number of steps to take. \\blankline \\item \\spad{rk4qc(y,{}n,{}x1,{}step,{}eps,{}yscal,{}derivs)} takes a 5-th order Runge-Kutta step with monitoring of local truncation to ensure accuracy and adjust stepsize. The function takes two half steps and one full step and scales the difference in solutions at the final point. If the error is within \\spad{eps},{} the step is taken and the result is returned. If the error is not within \\spad{eps},{} the stepsize if decreased and the procedure is tried again until the desired accuracy is reached. Upon input,{} an trial step size must be given and upon return,{} an estimate of the next step size to use is returned as well as the step size which produced the desired accuracy. The scaled error is computed as \\center{\\spad{error = MAX(ABS((y2steps(i) - y1step(i))/yscal(i)))}} and this is compared against \\spad{eps}. If this is greater than \\spad{eps},{} the step size is reduced accordingly to \\center{\\spad{hnew = 0.9 * hdid * (error/eps)**(-1/4)}} If the error criterion is satisfied,{} then we check if the step size was too fine and return a more efficient one. If \\spad{error > \\spad{eps} * (6.0E-04)} then the next step size should be \\center{\\spad{hnext = 0.9 * hdid * (error/\\spad{eps})\\spad{**}(-1/5)}} Otherwise \\spad{hnext = 4.0 * hdid} is returned. A more detailed discussion of this and related topics can be found in the book \"Numerical Recipies\" by \\spad{W}.Press,{} \\spad{B}.\\spad{P}. Flannery,{} \\spad{S}.A. Teukolsky,{} \\spad{W}.\\spad{T}. Vetterling published by Cambridge University Press. Argument \\spad{step} is a record of 3 floating point numbers \\spad{(try ,{} did ,{} next)},{} \\spad{eps} is the required accuracy,{} \\spad{yscal} is the scaling vector for the difference in solutions. On input,{} \\spad{step.try} should be the guess at a step size to achieve the accuracy. On output,{} \\spad{step.did} contains the step size which achieved the accuracy and \\spad{step.next} is the next step size to use. \\blankline \\item \\spad{rk4qc(y,{}n,{}x1,{}step,{}eps,{}yscal,{}derivs,{}t1,{}t2,{}t3,{}t4,{}t5,{}t6,{}t7)} is the same as \\spad{rk4qc(y,{}n,{}x1,{}step,{}eps,{}yscal,{}derivs)} except that the user must provide the 7 scratch arrays \\spad{t1-t7} of size \\spad{n}. \\blankline \\item \\spad{rk4a(y,{}n,{}x1,{}x2,{}eps,{}h,{}ns,{}derivs)} is a driver program which uses \\spad{rk4qc} to integrate \\spad{n} ordinary differential equations starting at \\spad{x1} to \\spad{x2},{} keeping the local truncation error to within \\spad{eps} by changing the local step size. The scaling vector is defined as \\center{\\spad{yscal(i) = abs(y(i)) + abs(h*dydx(i)) + tiny}} where \\spad{y(i)} is the solution at location \\spad{x},{} \\spad{dydx} is the ordinary differential equation\\spad{'s} right hand side,{} \\spad{h} is the current step size and \\spad{tiny} is 10 times the smallest positive number representable. The user must supply an estimate for a trial step size and the maximum number of calls to \\spad{rk4qc} to use. Argument \\spad{x2} is the final point,{} \\spad{eps} is local truncation,{} \\spad{ns} is the maximum number of call to \\spad{rk4qc} to use. \\end{items}")) (|rk4f| (((|Void|) (|Vector| (|Float|)) (|Integer|) (|Float|) (|Float|) (|Integer|) (|Mapping| (|Void|) (|Vector| (|Float|)) (|Vector| (|Float|)) (|Float|))) "\\spad{rk4f(y,{}n,{}x1,{}x2,{}ns,{}derivs)} uses a 4-th order Runge-Kutta method to numerically integrate the ordinary differential equation {\\em dy/dx = f(y,{}x)} of \\spad{n} variables,{} where \\spad{y} is an \\spad{n}-vector. Starting with \\spad{y} at \\spad{x1},{} this function uses \\spad{ns} fixed steps of a 4-th order Runge-Kutta integrator to advance the solution vector to \\spad{x2} and return the values in \\spad{y}. For details,{} see \\con{NumericalOrdinaryDifferentialEquations}.")) (|rk4qc| (((|Void|) (|Vector| (|Float|)) (|Integer|) (|Float|) (|Record| (|:| |try| (|Float|)) (|:| |did| (|Float|)) (|:| |next| (|Float|))) (|Float|) (|Vector| (|Float|)) (|Mapping| (|Void|) (|Vector| (|Float|)) (|Vector| (|Float|)) (|Float|)) (|Vector| (|Float|)) (|Vector| (|Float|)) (|Vector| (|Float|)) (|Vector| (|Float|)) (|Vector| (|Float|)) (|Vector| (|Float|)) (|Vector| (|Float|))) "\\spad{rk4qc(y,{}n,{}x1,{}step,{}eps,{}yscal,{}derivs,{}t1,{}t2,{}t3,{}t4,{}t5,{}t6,{}t7)} is a subfunction for the numerical integration of an ordinary differential equation {\\em dy/dx = f(y,{}x)} of \\spad{n} variables,{} where \\spad{y} is an \\spad{n}-vector using a 4-th order Runge-Kutta method. This function takes a 5-th order Runge-Kutta \\spad{step} with monitoring of local truncation to ensure accuracy and adjust stepsize. For details,{} see \\con{NumericalOrdinaryDifferentialEquations}.") (((|Void|) (|Vector| (|Float|)) (|Integer|) (|Float|) (|Record| (|:| |try| (|Float|)) (|:| |did| (|Float|)) (|:| |next| (|Float|))) (|Float|) (|Vector| (|Float|)) (|Mapping| (|Void|) (|Vector| (|Float|)) (|Vector| (|Float|)) (|Float|))) "\\spad{rk4qc(y,{}n,{}x1,{}step,{}eps,{}yscal,{}derivs)} is a subfunction for the numerical integration of an ordinary differential equation {\\em dy/dx = f(y,{}x)} of \\spad{n} variables,{} where \\spad{y} is an \\spad{n}-vector using a 4-th order Runge-Kutta method. This function takes a 5-th order Runge-Kutta \\spad{step} with monitoring of local truncation to ensure accuracy and adjust stepsize. For details,{} see \\con{NumericalOrdinaryDifferentialEquations}.")) (|rk4a| (((|Void|) (|Vector| (|Float|)) (|Integer|) (|Float|) (|Float|) (|Float|) (|Float|) (|Integer|) (|Mapping| (|Void|) (|Vector| (|Float|)) (|Vector| (|Float|)) (|Float|))) "\\spad{rk4a(y,{}n,{}x1,{}x2,{}eps,{}h,{}ns,{}derivs)} is a driver function for the numerical integration of an ordinary differential equation {\\em dy/dx = f(y,{}x)} of \\spad{n} variables,{} where \\spad{y} is an \\spad{n}-vector using a 4-th order Runge-Kutta method. For details,{} see \\con{NumericalOrdinaryDifferentialEquations}.")) (|rk4| (((|Void|) (|Vector| (|Float|)) (|Integer|) (|Float|) (|Float|) (|Mapping| (|Void|) (|Vector| (|Float|)) (|Vector| (|Float|)) (|Float|)) (|Vector| (|Float|)) (|Vector| (|Float|)) (|Vector| (|Float|)) (|Vector| (|Float|))) "\\spad{rk4(y,{}n,{}x1,{}h,{}derivs,{}t1,{}t2,{}t3,{}t4)} is the same as \\spad{rk4(y,{}n,{}x1,{}h,{}derivs)} except that you must provide 4 scratch arrays \\spad{t1}-\\spad{t4} of size \\spad{n}. For details,{} see \\con{NumericalOrdinaryDifferentialEquations}.") (((|Void|) (|Vector| (|Float|)) (|Integer|) (|Float|) (|Float|) (|Mapping| (|Void|) (|Vector| (|Float|)) (|Vector| (|Float|)) (|Float|))) "\\spad{rk4(y,{}n,{}x1,{}h,{}derivs)} uses a 4-th order Runge-Kutta method to numerically integrate the ordinary differential equation {\\em dy/dx = f(y,{}x)} of \\spad{n} variables,{} where \\spad{y} is an \\spad{n}-vector. Argument \\spad{y} is a vector of initial conditions of length \\spad{n} which upon exit contains the solution at \\spad{x1 + h},{} \\spad{n} is the number of dependent variables,{} \\spad{x1} is the initial point,{} \\spad{h} is the step size,{} and \\spad{derivs} is a function which computes the right hand side of the ordinary differential equation. For details,{} see \\spadtype{NumericalOrdinaryDifferentialEquations}.")))
NIL
NIL
-(-728)
+(-730)
((|constructor| (NIL "This suite of routines performs numerical quadrature using algorithms derived from the basic trapezoidal rule. Because the error term of this rule contains only even powers of the step size (for open and closed versions),{} fast convergence can be obtained if the integrand is sufficiently smooth. \\blankline Each routine returns a Record of type TrapAns,{} which contains\\indent{3} \\newline value (\\spadtype{Float}):\\tab{20} estimate of the integral \\newline error (\\spadtype{Float}):\\tab{20} estimate of the error in the computation \\newline totalpts (\\spadtype{Integer}):\\tab{20} total number of function evaluations \\newline success (\\spadtype{Boolean}):\\tab{20} if the integral was computed within the user specified error criterion \\indent{0}\\indent{0} To produce this estimate,{} each routine generates an internal sequence of sub-estimates,{} denoted by {\\em S(i)},{} depending on the routine,{} to which the various convergence criteria are applied. The user must supply a relative accuracy,{} \\spad{eps_r},{} and an absolute accuracy,{} \\spad{eps_a}. Convergence is obtained when either \\center{\\spad{ABS(S(i) - S(i-1)) < eps_r * ABS(S(i-1))}} \\center{or \\spad{ABS(S(i) - S(i-1)) < eps_a}} are \\spad{true} statements. \\blankline The routines come in three families and three flavors: \\newline\\tab{3} closed:\\tab{20}romberg,{}\\tab{30}simpson,{}\\tab{42}trapezoidal \\newline\\tab{3} open: \\tab{20}rombergo,{}\\tab{30}simpsono,{}\\tab{42}trapezoidalo \\newline\\tab{3} adaptive closed:\\tab{20}aromberg,{}\\tab{30}asimpson,{}\\tab{42}atrapezoidal \\par The {\\em S(i)} for the trapezoidal family is the value of the integral using an equally spaced absicca trapezoidal rule for that level of refinement. \\par The {\\em S(i)} for the simpson family is the value of the integral using an equally spaced absicca simpson rule for that level of refinement. \\par The {\\em S(i)} for the romberg family is the estimate of the integral using an equally spaced absicca romberg method. For the \\spad{i}\\spad{-}th level,{} this is an appropriate combination of all the previous trapezodial estimates so that the error term starts with the \\spad{2*(i+1)} power only. \\par The three families come in a closed version,{} where the formulas include the endpoints,{} an open version where the formulas do not include the endpoints and an adaptive version,{} where the user is required to input the number of subintervals over which the appropriate closed family integrator will apply with the usual convergence parmeters for each subinterval. This is useful where a large number of points are needed only in a small fraction of the entire domain. \\par Each routine takes as arguments: \\newline \\spad{f}\\tab{10} integrand \\newline a\\tab{10} starting point \\newline \\spad{b}\\tab{10} ending point \\newline \\spad{eps_r}\\tab{10} relative error \\newline \\spad{eps_a}\\tab{10} absolute error \\newline \\spad{nmin} \\tab{10} refinement level when to start checking for convergence (> 1) \\newline \\spad{nmax} \\tab{10} maximum level of refinement \\par The adaptive routines take as an additional parameter \\newline \\spad{nint}\\tab{10} the number of independent intervals to apply a closed \\indented{1}{family integrator of the same name.} \\par Notes: \\newline Closed family level \\spad{i} uses \\spad{1 + 2**i} points. \\newline Open family level \\spad{i} uses \\spad{1 + 3**i} points.")) (|trapezoidalo| (((|Record| (|:| |value| (|Float|)) (|:| |error| (|Float|)) (|:| |totalpts| (|Integer|)) (|:| |success| (|Boolean|))) (|Mapping| (|Float|) (|Float|)) (|Float|) (|Float|) (|Float|) (|Float|) (|Integer|) (|Integer|)) "\\spad{trapezoidalo(fn,{}a,{}b,{}epsrel,{}epsabs,{}nmin,{}nmax)} uses the trapezoidal method to numerically integrate function \\spad{fn} over the open interval from \\spad{a} to \\spad{b},{} with relative accuracy \\spad{epsrel} and absolute accuracy \\spad{epsabs},{} with the refinement levels for convergence checking vary from \\spad{nmin} to \\spad{nmax}. The value returned is a record containing the value of the integral,{} the estimate of the error in the computation,{} the total number of function evaluations,{} and either a boolean value which is \\spad{true} if the integral was computed within the user specified error criterion. See \\spadtype{NumericalQuadrature} for details.")) (|simpsono| (((|Record| (|:| |value| (|Float|)) (|:| |error| (|Float|)) (|:| |totalpts| (|Integer|)) (|:| |success| (|Boolean|))) (|Mapping| (|Float|) (|Float|)) (|Float|) (|Float|) (|Float|) (|Float|) (|Integer|) (|Integer|)) "\\spad{simpsono(fn,{}a,{}b,{}epsrel,{}epsabs,{}nmin,{}nmax)} uses the simpson method to numerically integrate function \\spad{fn} over the open interval from \\spad{a} to \\spad{b},{} with relative accuracy \\spad{epsrel} and absolute accuracy \\spad{epsabs},{} with the refinement levels for convergence checking vary from \\spad{nmin} to \\spad{nmax}. The value returned is a record containing the value of the integral,{} the estimate of the error in the computation,{} the total number of function evaluations,{} and either a boolean value which is \\spad{true} if the integral was computed within the user specified error criterion. See \\spadtype{NumericalQuadrature} for details.")) (|rombergo| (((|Record| (|:| |value| (|Float|)) (|:| |error| (|Float|)) (|:| |totalpts| (|Integer|)) (|:| |success| (|Boolean|))) (|Mapping| (|Float|) (|Float|)) (|Float|) (|Float|) (|Float|) (|Float|) (|Integer|) (|Integer|)) "\\spad{rombergo(fn,{}a,{}b,{}epsrel,{}epsabs,{}nmin,{}nmax)} uses the romberg method to numerically integrate function \\spad{fn} over the open interval from \\spad{a} to \\spad{b},{} with relative accuracy \\spad{epsrel} and absolute accuracy \\spad{epsabs},{} with the refinement levels for convergence checking vary from \\spad{nmin} to \\spad{nmax}. The value returned is a record containing the value of the integral,{} the estimate of the error in the computation,{} the total number of function evaluations,{} and either a boolean value which is \\spad{true} if the integral was computed within the user specified error criterion. See \\spadtype{NumericalQuadrature} for details.")) (|trapezoidal| (((|Record| (|:| |value| (|Float|)) (|:| |error| (|Float|)) (|:| |totalpts| (|Integer|)) (|:| |success| (|Boolean|))) (|Mapping| (|Float|) (|Float|)) (|Float|) (|Float|) (|Float|) (|Float|) (|Integer|) (|Integer|)) "\\spad{trapezoidal(fn,{}a,{}b,{}epsrel,{}epsabs,{}nmin,{}nmax)} uses the trapezoidal method to numerically integrate function \\spadvar{\\spad{fn}} over the closed interval \\spad{a} to \\spad{b},{} with relative accuracy \\spad{epsrel} and absolute accuracy \\spad{epsabs},{} with the refinement levels for convergence checking vary from \\spad{nmin} to \\spad{nmax}. The value returned is a record containing the value of the integral,{} the estimate of the error in the computation,{} the total number of function evaluations,{} and either a boolean value which is \\spad{true} if the integral was computed within the user specified error criterion. See \\spadtype{NumericalQuadrature} for details.")) (|simpson| (((|Record| (|:| |value| (|Float|)) (|:| |error| (|Float|)) (|:| |totalpts| (|Integer|)) (|:| |success| (|Boolean|))) (|Mapping| (|Float|) (|Float|)) (|Float|) (|Float|) (|Float|) (|Float|) (|Integer|) (|Integer|)) "\\spad{simpson(fn,{}a,{}b,{}epsrel,{}epsabs,{}nmin,{}nmax)} uses the simpson method to numerically integrate function \\spad{fn} over the closed interval \\spad{a} to \\spad{b},{} with relative accuracy \\spad{epsrel} and absolute accuracy \\spad{epsabs},{} with the refinement levels for convergence checking vary from \\spad{nmin} to \\spad{nmax}. The value returned is a record containing the value of the integral,{} the estimate of the error in the computation,{} the total number of function evaluations,{} and either a boolean value which is \\spad{true} if the integral was computed within the user specified error criterion. See \\spadtype{NumericalQuadrature} for details.")) (|romberg| (((|Record| (|:| |value| (|Float|)) (|:| |error| (|Float|)) (|:| |totalpts| (|Integer|)) (|:| |success| (|Boolean|))) (|Mapping| (|Float|) (|Float|)) (|Float|) (|Float|) (|Float|) (|Float|) (|Integer|) (|Integer|)) "\\spad{romberg(fn,{}a,{}b,{}epsrel,{}epsabs,{}nmin,{}nmax)} uses the romberg method to numerically integrate function \\spadvar{\\spad{fn}} over the closed interval \\spad{a} to \\spad{b},{} with relative accuracy \\spad{epsrel} and absolute accuracy \\spad{epsabs},{} with the refinement levels for convergence checking vary from \\spad{nmin} to \\spad{nmax}. The value returned is a record containing the value of the integral,{} the estimate of the error in the computation,{} the total number of function evaluations,{} and either a boolean value which is \\spad{true} if the integral was computed within the user specified error criterion. See \\spadtype{NumericalQuadrature} for details.")) (|atrapezoidal| (((|Record| (|:| |value| (|Float|)) (|:| |error| (|Float|)) (|:| |totalpts| (|Integer|)) (|:| |success| (|Boolean|))) (|Mapping| (|Float|) (|Float|)) (|Float|) (|Float|) (|Float|) (|Float|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{atrapezoidal(fn,{}a,{}b,{}epsrel,{}epsabs,{}nmin,{}nmax,{}nint)} uses the adaptive trapezoidal method to numerically integrate function \\spad{fn} over the closed interval from \\spad{a} to \\spad{b},{} with relative accuracy \\spad{epsrel} and absolute accuracy \\spad{epsabs},{} with the refinement levels for convergence checking vary from \\spad{nmin} to \\spad{nmax},{} and where \\spad{nint} is the number of independent intervals to apply the integrator. The value returned is a record containing the value of the integral,{} the estimate of the error in the computation,{} the total number of function evaluations,{} and either a boolean value which is \\spad{true} if the integral was computed within the user specified error criterion. See \\spadtype{NumericalQuadrature} for details.")) (|asimpson| (((|Record| (|:| |value| (|Float|)) (|:| |error| (|Float|)) (|:| |totalpts| (|Integer|)) (|:| |success| (|Boolean|))) (|Mapping| (|Float|) (|Float|)) (|Float|) (|Float|) (|Float|) (|Float|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{asimpson(fn,{}a,{}b,{}epsrel,{}epsabs,{}nmin,{}nmax,{}nint)} uses the adaptive simpson method to numerically integrate function \\spad{fn} over the closed interval from \\spad{a} to \\spad{b},{} with relative accuracy \\spad{epsrel} and absolute accuracy \\spad{epsabs},{} with the refinement levels for convergence checking vary from \\spad{nmin} to \\spad{nmax},{} and where \\spad{nint} is the number of independent intervals to apply the integrator. The value returned is a record containing the value of the integral,{} the estimate of the error in the computation,{} the total number of function evaluations,{} and either a boolean value which is \\spad{true} if the integral was computed within the user specified error criterion. See \\spadtype{NumericalQuadrature} for details.")) (|aromberg| (((|Record| (|:| |value| (|Float|)) (|:| |error| (|Float|)) (|:| |totalpts| (|Integer|)) (|:| |success| (|Boolean|))) (|Mapping| (|Float|) (|Float|)) (|Float|) (|Float|) (|Float|) (|Float|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{aromberg(fn,{}a,{}b,{}epsrel,{}epsabs,{}nmin,{}nmax,{}nint)} uses the adaptive romberg method to numerically integrate function \\spad{fn} over the closed interval from \\spad{a} to \\spad{b},{} with relative accuracy \\spad{epsrel} and absolute accuracy \\spad{epsabs},{} with the refinement levels for convergence checking vary from \\spad{nmin} to \\spad{nmax},{} and where \\spad{nint} is the number of independent intervals to apply the integrator. The value returned is a record containing the value of the integral,{} the estimate of the error in the computation,{} the total number of function evaluations,{} and either a boolean value which is \\spad{true} if the integral was computed within the user specified error criterion. See \\spadtype{NumericalQuadrature} for details.")))
NIL
NIL
-(-729 |Curve|)
+(-731 |Curve|)
((|constructor| (NIL "\\indented{1}{Author: Clifton \\spad{J}. Williamson} Date Created: Bastille Day 1989 Date Last Updated: 5 June 1990 Keywords: Examples: Package for constructing tubes around 3-dimensional parametric curves.")) (|tube| (((|TubePlot| |#1|) |#1| (|DoubleFloat|) (|Integer|)) "\\spad{tube(c,{}r,{}n)} creates a tube of radius \\spad{r} around the curve \\spad{c}.")))
NIL
NIL
-(-730)
+(-732)
((|constructor| (NIL "Ordered sets which are also abelian groups,{} such that the addition preserves the ordering.")))
NIL
NIL
-(-731)
+(-733)
((|constructor| (NIL "Ordered sets which are also abelian monoids,{} such that the addition preserves the ordering.")))
NIL
NIL
-(-732)
+(-734)
((|constructor| (NIL "This domain is an OrderedAbelianMonoid with a \\spadfun{sup} operation added. The purpose of the \\spadfun{sup} operator in this domain is to act as a supremum with respect to the partial order imposed by \\spadop{-},{} rather than with respect to the total \\spad{>} order (since that is \"max\"). \\blankline")) (|sup| (($ $ $) "\\spad{sup(x,{}y)} returns the least element from which both \\spad{x} and \\spad{y} can be subtracted.")))
NIL
NIL
-(-733)
+(-735)
((|constructor| (NIL "Ordered sets which are also abelian semigroups,{} such that the addition preserves the ordering. \\indented{2}{\\spad{ x < y => x+z < y+z}}")))
NIL
NIL
-(-734)
+(-736)
((|constructor| (NIL "Ordered sets which are also abelian cancellation monoids,{} such that the addition preserves the ordering.")))
NIL
NIL
-(-735 S R)
+(-737 S R)
((|constructor| (NIL "OctonionCategory gives the categorial frame for the octonions,{} and eight-dimensional non-associative algebra,{} doubling the the quaternions in the same way as doubling the Complex numbers to get the quaternions.")) (|inv| (($ $) "\\spad{inv(o)} returns the inverse of \\spad{o} if it exists.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(o)} returns the real part if all seven imaginary parts are 0,{} and \"failed\" otherwise.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(o)} returns the real part if all seven imaginary parts are 0. Error: if \\spad{o} is not rational.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(o)} tests if \\spad{o} is rational,{} \\spadignore{i.e.} that all seven imaginary parts are 0.")) (|abs| ((|#2| $) "\\spad{abs(o)} computes the absolute value of an octonion,{} equal to the square root of the \\spadfunFrom{norm}{Octonion}.")) (|octon| (($ |#2| |#2| |#2| |#2| |#2| |#2| |#2| |#2|) "\\spad{octon(re,{}\\spad{ri},{}rj,{}rk,{}rE,{}rI,{}rJ,{}rK)} constructs an octonion from scalars.")) (|norm| ((|#2| $) "\\spad{norm(o)} returns the norm of an octonion,{} equal to the sum of the squares of its coefficients.")) (|imagK| ((|#2| $) "\\spad{imagK(o)} extracts the imaginary \\spad{K} part of octonion \\spad{o}.")) (|imagJ| ((|#2| $) "\\spad{imagJ(o)} extracts the imaginary \\spad{J} part of octonion \\spad{o}.")) (|imagI| ((|#2| $) "\\spad{imagI(o)} extracts the imaginary \\spad{I} part of octonion \\spad{o}.")) (|imagE| ((|#2| $) "\\spad{imagE(o)} extracts the imaginary \\spad{E} part of octonion \\spad{o}.")) (|imagk| ((|#2| $) "\\spad{imagk(o)} extracts the \\spad{k} part of octonion \\spad{o}.")) (|imagj| ((|#2| $) "\\spad{imagj(o)} extracts the \\spad{j} part of octonion \\spad{o}.")) (|imagi| ((|#2| $) "\\spad{imagi(o)} extracts the \\spad{i} part of octonion \\spad{o}.")) (|real| ((|#2| $) "\\spad{real(o)} extracts real part of octonion \\spad{o}.")) (|conjugate| (($ $) "\\spad{conjugate(o)} negates the imaginary parts \\spad{i},{}\\spad{j},{}\\spad{k},{}\\spad{E},{}\\spad{I},{}\\spad{J},{}\\spad{K} of octonian \\spad{o}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-508))) (|HasCategory| |#2| (QUOTE (-982))) (|HasCategory| |#2| (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-344))))
-(-736 R)
+((|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-510))) (|HasCategory| |#2| (QUOTE (-984))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-138))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-346))))
+(-738 R)
((|constructor| (NIL "OctonionCategory gives the categorial frame for the octonions,{} and eight-dimensional non-associative algebra,{} doubling the the quaternions in the same way as doubling the Complex numbers to get the quaternions.")) (|inv| (($ $) "\\spad{inv(o)} returns the inverse of \\spad{o} if it exists.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(o)} returns the real part if all seven imaginary parts are 0,{} and \"failed\" otherwise.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(o)} returns the real part if all seven imaginary parts are 0. Error: if \\spad{o} is not rational.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(o)} tests if \\spad{o} is rational,{} \\spadignore{i.e.} that all seven imaginary parts are 0.")) (|abs| ((|#1| $) "\\spad{abs(o)} computes the absolute value of an octonion,{} equal to the square root of the \\spadfunFrom{norm}{Octonion}.")) (|octon| (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) "\\spad{octon(re,{}\\spad{ri},{}rj,{}rk,{}rE,{}rI,{}rJ,{}rK)} constructs an octonion from scalars.")) (|norm| ((|#1| $) "\\spad{norm(o)} returns the norm of an octonion,{} equal to the sum of the squares of its coefficients.")) (|imagK| ((|#1| $) "\\spad{imagK(o)} extracts the imaginary \\spad{K} part of octonion \\spad{o}.")) (|imagJ| ((|#1| $) "\\spad{imagJ(o)} extracts the imaginary \\spad{J} part of octonion \\spad{o}.")) (|imagI| ((|#1| $) "\\spad{imagI(o)} extracts the imaginary \\spad{I} part of octonion \\spad{o}.")) (|imagE| ((|#1| $) "\\spad{imagE(o)} extracts the imaginary \\spad{E} part of octonion \\spad{o}.")) (|imagk| ((|#1| $) "\\spad{imagk(o)} extracts the \\spad{k} part of octonion \\spad{o}.")) (|imagj| ((|#1| $) "\\spad{imagj(o)} extracts the \\spad{j} part of octonion \\spad{o}.")) (|imagi| ((|#1| $) "\\spad{imagi(o)} extracts the \\spad{i} part of octonion \\spad{o}.")) (|real| ((|#1| $) "\\spad{real(o)} extracts real part of octonion \\spad{o}.")) (|conjugate| (($ $) "\\spad{conjugate(o)} negates the imaginary parts \\spad{i},{}\\spad{j},{}\\spad{k},{}\\spad{E},{}\\spad{I},{}\\spad{J},{}\\spad{K} of octonian \\spad{o}.")))
-((-4242 . T) (-4243 . T) (-4245 . T))
+((-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-737 -3255 R OS S)
+(-739 -3321 R OS S)
((|constructor| (NIL "OctonionCategoryFunctions2 implements functions between two octonion domains defined over different rings. The function map is used to coerce between octonion types.")) (|map| ((|#3| (|Mapping| |#4| |#2|) |#1|) "\\spad{map(f,{}u)} maps \\spad{f} onto the component parts of the octonion \\spad{u}.")))
NIL
NIL
-(-738 R)
+(-740 R)
((|constructor| (NIL "Octonion implements octonions (Cayley-Dixon algebra) over a commutative ring,{} an eight-dimensional non-associative algebra,{} doubling the quaternions in the same way as doubling the complex numbers to get the quaternions the main constructor function is {\\em octon} which takes 8 arguments: the real part,{} the \\spad{i} imaginary part,{} the \\spad{j} imaginary part,{} the \\spad{k} imaginary part,{} (as with quaternions) and in addition the imaginary parts \\spad{E},{} \\spad{I},{} \\spad{J},{} \\spad{K}.")) (|octon| (($ (|Quaternion| |#1|) (|Quaternion| |#1|)) "\\spad{octon(qe,{}qE)} constructs an octonion from two quaternions using the relation {\\em O = Q + QE}.")))
-((-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-344))) (|HasCategory| |#1| (LIST (QUOTE -484) (QUOTE (-1087)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -263) (|devaluate| |#1|) (|devaluate| |#1|))) (-3255 (|HasCategory| (-927 |#1|) (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (-3255 (|HasCategory| (-927 |#1|) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-982))) (|HasCategory| |#1| (QUOTE (-508))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| (-927 |#1|) (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| (-927 |#1|) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))))
-(-739)
+((-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-346))) (|HasCategory| |#1| (LIST (QUOTE -486) (QUOTE (-1089)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -265) (|devaluate| |#1|) (|devaluate| |#1|))) (-3321 (|HasCategory| (-929 |#1|) (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (-3321 (|HasCategory| (-929 |#1|) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-984))) (|HasCategory| |#1| (QUOTE (-510))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| (-929 |#1|) (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| (-929 |#1|) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))))
+(-741)
((|ODESolve| (((|Result|) (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{ODESolve(args)} performs the integration of the function given the strategy or method returned by \\axiomFun{measure}.")) (|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |explanations| (|String|))) (|RoutinesTable|) (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{measure(R,{}args)} calculates an estimate of the ability of a particular method to solve a problem. \\blankline This method may be either a specific NAG routine or a strategy (such as transforming the function from one which is difficult to one which is easier to solve). \\blankline It will call whichever agents are needed to perform analysis on the problem in order to calculate the measure. There is a parameter,{} labelled \\axiom{sofar},{} which would contain the best compatibility found so far.")))
NIL
NIL
-(-740 R -3894 L)
+(-742 R -3576 L)
((|constructor| (NIL "Solution of linear ordinary differential equations,{} constant coefficient case.")) (|constDsolve| (((|Record| (|:| |particular| |#2|) (|:| |basis| (|List| |#2|))) |#3| |#2| (|Symbol|)) "\\spad{constDsolve(op,{} g,{} x)} returns \\spad{[f,{} [y1,{}...,{}ym]]} where \\spad{f} is a particular solution of the equation \\spad{op y = g},{} and the \\spad{\\spad{yi}}\\spad{'s} form a basis for the solutions of \\spad{op y = 0}.")))
NIL
NIL
-(-741 R -3894)
+(-743 R -3576)
((|constructor| (NIL "\\spad{ElementaryFunctionODESolver} provides the top-level functions for finding closed form solutions of ordinary differential equations and initial value problems.")) (|solve| (((|Union| |#2| "failed") |#2| (|BasicOperator|) (|Equation| |#2|) (|List| |#2|)) "\\spad{solve(eq,{} y,{} x = a,{} [y0,{}...,{}ym])} returns either the solution of the initial value problem \\spad{eq,{} y(a) = y0,{} y'(a) = y1,{}...} or \"failed\" if the solution cannot be found; error if the equation is not one linear ordinary or of the form \\spad{dy/dx = f(x,{}y)}.") (((|Union| |#2| "failed") (|Equation| |#2|) (|BasicOperator|) (|Equation| |#2|) (|List| |#2|)) "\\spad{solve(eq,{} y,{} x = a,{} [y0,{}...,{}ym])} returns either the solution of the initial value problem \\spad{eq,{} y(a) = y0,{} y'(a) = y1,{}...} or \"failed\" if the solution cannot be found; error if the equation is not one linear ordinary or of the form \\spad{dy/dx = f(x,{}y)}.") (((|Union| (|Record| (|:| |particular| |#2|) (|:| |basis| (|List| |#2|))) |#2| "failed") |#2| (|BasicOperator|) (|Symbol|)) "\\spad{solve(eq,{} y,{} x)} returns either a solution of the ordinary differential equation \\spad{eq} or \"failed\" if no non-trivial solution can be found; If the equation is linear ordinary,{} a solution is of the form \\spad{[h,{} [b1,{}...,{}bm]]} where \\spad{h} is a particular solution and and \\spad{[b1,{}...bm]} are linearly independent solutions of the associated homogenuous equation \\spad{f(x,{}y) = 0}; A full basis for the solutions of the homogenuous equation is not always returned,{} only the solutions which were found; If the equation is of the form {dy/dx = \\spad{f}(\\spad{x},{}\\spad{y})},{} a solution is of the form \\spad{h(x,{}y)} where \\spad{h(x,{}y) = c} is a first integral of the equation for any constant \\spad{c}.") (((|Union| (|Record| (|:| |particular| |#2|) (|:| |basis| (|List| |#2|))) |#2| "failed") (|Equation| |#2|) (|BasicOperator|) (|Symbol|)) "\\spad{solve(eq,{} y,{} x)} returns either a solution of the ordinary differential equation \\spad{eq} or \"failed\" if no non-trivial solution can be found; If the equation is linear ordinary,{} a solution is of the form \\spad{[h,{} [b1,{}...,{}bm]]} where \\spad{h} is a particular solution and \\spad{[b1,{}...bm]} are linearly independent solutions of the associated homogenuous equation \\spad{f(x,{}y) = 0}; A full basis for the solutions of the homogenuous equation is not always returned,{} only the solutions which were found; If the equation is of the form {dy/dx = \\spad{f}(\\spad{x},{}\\spad{y})},{} a solution is of the form \\spad{h(x,{}y)} where \\spad{h(x,{}y) = c} is a first integral of the equation for any constant \\spad{c}; error if the equation is not one of those 2 forms.") (((|Union| (|Record| (|:| |particular| (|Vector| |#2|)) (|:| |basis| (|List| (|Vector| |#2|)))) "failed") (|List| |#2|) (|List| (|BasicOperator|)) (|Symbol|)) "\\spad{solve([eq_1,{}...,{}eq_n],{} [y_1,{}...,{}y_n],{} x)} returns either \"failed\" or,{} if the equations form a fist order linear system,{} a solution of the form \\spad{[y_p,{} [b_1,{}...,{}b_n]]} where \\spad{h_p} is a particular solution and \\spad{[b_1,{}...b_m]} are linearly independent solutions of the associated homogenuous system. error if the equations do not form a first order linear system") (((|Union| (|Record| (|:| |particular| (|Vector| |#2|)) (|:| |basis| (|List| (|Vector| |#2|)))) "failed") (|List| (|Equation| |#2|)) (|List| (|BasicOperator|)) (|Symbol|)) "\\spad{solve([eq_1,{}...,{}eq_n],{} [y_1,{}...,{}y_n],{} x)} returns either \"failed\" or,{} if the equations form a fist order linear system,{} a solution of the form \\spad{[y_p,{} [b_1,{}...,{}b_n]]} where \\spad{h_p} is a particular solution and \\spad{[b_1,{}...b_m]} are linearly independent solutions of the associated homogenuous system. error if the equations do not form a first order linear system") (((|Union| (|List| (|Vector| |#2|)) "failed") (|Matrix| |#2|) (|Symbol|)) "\\spad{solve(m,{} x)} returns a basis for the solutions of \\spad{D y = m y}. \\spad{x} is the dependent variable.") (((|Union| (|Record| (|:| |particular| (|Vector| |#2|)) (|:| |basis| (|List| (|Vector| |#2|)))) "failed") (|Matrix| |#2|) (|Vector| |#2|) (|Symbol|)) "\\spad{solve(m,{} v,{} x)} returns \\spad{[v_p,{} [v_1,{}...,{}v_m]]} such that the solutions of the system \\spad{D y = m y + v} are \\spad{v_p + c_1 v_1 + ... + c_m v_m} where the \\spad{c_i's} are constants,{} and the \\spad{v_i's} form a basis for the solutions of \\spad{D y = m y}. \\spad{x} is the dependent variable.")))
NIL
NIL
-(-742)
+(-744)
((|constructor| (NIL "\\axiom{ODEIntensityFunctionsTable()} provides a dynamic table and a set of functions to store details found out about sets of ODE\\spad{'s}.")) (|showIntensityFunctions| (((|Union| (|Record| (|:| |stiffness| (|Float|)) (|:| |stability| (|Float|)) (|:| |expense| (|Float|)) (|:| |accuracy| (|Float|)) (|:| |intermediateResults| (|Float|))) "failed") (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{showIntensityFunctions(k)} returns the entries in the table of intensity functions \\spad{k}.")) (|insert!| (($ (|Record| (|:| |key| (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |entry| (|Record| (|:| |stiffness| (|Float|)) (|:| |stability| (|Float|)) (|:| |expense| (|Float|)) (|:| |accuracy| (|Float|)) (|:| |intermediateResults| (|Float|)))))) "\\spad{insert!(r)} inserts an entry \\spad{r} into theIFTable")) (|iFTable| (($ (|List| (|Record| (|:| |key| (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |entry| (|Record| (|:| |stiffness| (|Float|)) (|:| |stability| (|Float|)) (|:| |expense| (|Float|)) (|:| |accuracy| (|Float|)) (|:| |intermediateResults| (|Float|))))))) "\\spad{iFTable(l)} creates an intensity-functions table from the elements of \\spad{l}.")) (|keys| (((|List| (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) $) "\\spad{keys(tab)} returns the list of keys of \\spad{f}")) (|clearTheIFTable| (((|Void|)) "\\spad{clearTheIFTable()} clears the current table of intensity functions.")) (|showTheIFTable| (($) "\\spad{showTheIFTable()} returns the current table of intensity functions.")))
NIL
NIL
-(-743 R -3894)
+(-745 R -3576)
((|constructor| (NIL "\\spadtype{ODEIntegration} provides an interface to the integrator. This package is intended for use by the differential equations solver but not at top-level.")) (|diff| (((|Mapping| |#2| |#2|) (|Symbol|)) "\\spad{diff(x)} returns the derivation with respect to \\spad{x}.")) (|expint| ((|#2| |#2| (|Symbol|)) "\\spad{expint(f,{} x)} returns e^{the integral of \\spad{f} with respect to \\spad{x}}.")) (|int| ((|#2| |#2| (|Symbol|)) "\\spad{int(f,{} x)} returns the integral of \\spad{f} with respect to \\spad{x}.")))
NIL
NIL
-(-744)
+(-746)
((|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|)))) (|NumericalODEProblem|) (|RoutinesTable|)) "\\spad{measure(prob,{}R)} is a top level ANNA function for identifying the most appropriate numerical routine from those in the routines table provided for solving the numerical ODE problem defined by \\axiom{\\spad{prob}}. \\blankline It calls each \\axiom{domain} listed in \\axiom{\\spad{R}} of \\axiom{category} \\axiomType{OrdinaryDifferentialEquationsSolverCategory} in turn to calculate all measures and returns the best \\spadignore{i.e.} the name of the most appropriate domain and any other relevant information. It predicts the likely most effective NAG numerical Library routine to solve the input set of ODEs by checking various attributes of the system of ODEs and calculating a measure of compatibility of each routine to these attributes.") (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|)))) (|NumericalODEProblem|)) "\\spad{measure(prob)} is a top level ANNA function for identifying the most appropriate numerical routine from those in the routines table provided for solving the numerical ODE problem defined by \\axiom{\\spad{prob}}. \\blankline It calls each \\axiom{domain} of \\axiom{category} \\axiomType{OrdinaryDifferentialEquationsSolverCategory} in turn to calculate all measures and returns the best \\spadignore{i.e.} the name of the most appropriate domain and any other relevant information. It predicts the likely most effective NAG numerical Library routine to solve the input set of ODEs by checking various attributes of the system of ODEs and calculating a measure of compatibility of each routine to these attributes.")) (|solve| (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|)) (|Expression| (|Float|)) (|List| (|Float|)) (|Float|) (|Float|)) "\\spad{solve(f,{}xStart,{}xEnd,{}yInitial,{}G,{}intVals,{}epsabs,{}epsrel)} is a top level ANNA function to solve numerically a system of ordinary differential equations,{} \\axiom{\\spad{f}},{} \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}] from \\axiom{\\spad{xStart}} to \\axiom{\\spad{xEnd}} with the initial values for \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (\\axiom{\\spad{yInitial}}) to an absolute error requirement \\axiom{\\spad{epsabs}} and relative error \\axiom{\\spad{epsrel}}. The values of \\spad{Y}[1]..\\spad{Y}[\\spad{n}] will be output for the values of \\spad{X} in \\axiom{\\spad{intVals}}. The calculation will stop if the function \\spad{G}(\\spad{X},{}\\spad{Y}[1],{}..,{}\\spad{Y}[\\spad{n}]) evaluates to zero before \\spad{X} = \\spad{xEnd}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|)) (|Expression| (|Float|)) (|List| (|Float|)) (|Float|)) "\\spad{solve(f,{}xStart,{}xEnd,{}yInitial,{}G,{}intVals,{}tol)} is a top level ANNA function to solve numerically a system of ordinary differential equations,{} \\axiom{\\spad{f}},{} \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}] from \\axiom{\\spad{xStart}} to \\axiom{\\spad{xEnd}} with the initial values for \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (\\axiom{\\spad{yInitial}}) to a tolerance \\axiom{\\spad{tol}}. The values of \\spad{Y}[1]..\\spad{Y}[\\spad{n}] will be output for the values of \\spad{X} in \\axiom{\\spad{intVals}}. The calculation will stop if the function \\spad{G}(\\spad{X},{}\\spad{Y}[1],{}..,{}\\spad{Y}[\\spad{n}]) evaluates to zero before \\spad{X} = \\spad{xEnd}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|)) (|List| (|Float|)) (|Float|)) "\\spad{solve(f,{}xStart,{}xEnd,{}yInitial,{}intVals,{}tol)} is a top level ANNA function to solve numerically a system of ordinary differential equations,{} \\axiom{\\spad{f}},{} \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}] from \\axiom{\\spad{xStart}} to \\axiom{\\spad{xEnd}} with the initial values for \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (\\axiom{\\spad{yInitial}}) to a tolerance \\axiom{\\spad{tol}}. The values of \\spad{Y}[1]..\\spad{Y}[\\spad{n}] will be output for the values of \\spad{X} in \\axiom{\\spad{intVals}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|)) (|Expression| (|Float|)) (|Float|)) "\\spad{solve(f,{}xStart,{}xEnd,{}yInitial,{}G,{}tol)} is a top level ANNA function to solve numerically a system of ordinary differential equations,{} \\axiom{\\spad{f}},{} \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}] from \\axiom{\\spad{xStart}} to \\axiom{\\spad{xEnd}} with the initial values for \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (\\axiom{\\spad{yInitial}}) to a tolerance \\axiom{\\spad{tol}}. The calculation will stop if the function \\spad{G}(\\spad{X},{}\\spad{Y}[1],{}..,{}\\spad{Y}[\\spad{n}]) evaluates to zero before \\spad{X} = \\spad{xEnd}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|)) (|Float|)) "\\spad{solve(f,{}xStart,{}xEnd,{}yInitial,{}tol)} is a top level ANNA function to solve numerically a system of ordinary differential equations,{} \\axiom{\\spad{f}},{} \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}] from \\axiom{\\spad{xStart}} to \\axiom{\\spad{xEnd}} with the initial values for \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (\\axiom{\\spad{yInitial}}) to a tolerance \\axiom{\\spad{tol}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|))) "\\spad{solve(f,{}xStart,{}xEnd,{}yInitial)} is a top level ANNA function to solve numerically a system of ordinary differential equations \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}],{} together with a starting value for \\spad{X} and \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (called the initial conditions) and a final value of \\spad{X}. A default value is used for the accuracy requirement. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|NumericalODEProblem|) (|RoutinesTable|)) "\\spad{solve(odeProblem,{}R)} is a top level ANNA function to solve numerically a system of ordinary differential equations \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}],{} together with starting values for \\spad{X} and \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (called the initial conditions),{} a final value of \\spad{X},{} an accuracy requirement and any intermediate points at which the result is required. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|NumericalODEProblem|)) "\\spad{solve(odeProblem)} is a top level ANNA function to solve numerically a system of ordinary differential equations \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}],{} together with starting values for \\spad{X} and \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (called the initial conditions),{} a final value of \\spad{X},{} an accuracy requirement and any intermediate points at which the result is required. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.")))
NIL
NIL
-(-745 -3894 UP UPUP R)
+(-747 -3576 UP UPUP R)
((|constructor| (NIL "In-field solution of an linear ordinary differential equation,{} pure algebraic case.")) (|algDsolve| (((|Record| (|:| |particular| (|Union| |#4| "failed")) (|:| |basis| (|List| |#4|))) (|LinearOrdinaryDifferentialOperator1| |#4|) |#4|) "\\spad{algDsolve(op,{} g)} returns \\spad{[\"failed\",{} []]} if the equation \\spad{op y = g} has no solution in \\spad{R}. Otherwise,{} it returns \\spad{[f,{} [y1,{}...,{}ym]]} where \\spad{f} is a particular rational solution and the \\spad{y_i's} form a basis for the solutions in \\spad{R} of the homogeneous equation.")))
NIL
NIL
-(-746 -3894 UP L LQ)
+(-748 -3576 UP L LQ)
((|constructor| (NIL "\\spad{PrimitiveRatDE} provides functions for in-field solutions of linear \\indented{1}{ordinary differential equations,{} in the transcendental case.} \\indented{1}{The derivation to use is given by the parameter \\spad{L}.}")) (|splitDenominator| (((|Record| (|:| |eq| |#3|) (|:| |rh| (|List| (|Fraction| |#2|)))) |#4| (|List| (|Fraction| |#2|))) "\\spad{splitDenominator(op,{} [g1,{}...,{}gm])} returns \\spad{op0,{} [h1,{}...,{}hm]} such that the equations \\spad{op y = c1 g1 + ... + cm gm} and \\spad{op0 y = c1 h1 + ... + cm hm} have the same solutions.")) (|indicialEquation| ((|#2| |#4| |#1|) "\\spad{indicialEquation(op,{} a)} returns the indicial equation of \\spad{op} at \\spad{a}.") ((|#2| |#3| |#1|) "\\spad{indicialEquation(op,{} a)} returns the indicial equation of \\spad{op} at \\spad{a}.")) (|indicialEquations| (((|List| (|Record| (|:| |center| |#2|) (|:| |equation| |#2|))) |#4| |#2|) "\\spad{indicialEquations(op,{} p)} returns \\spad{[[d1,{}e1],{}...,{}[dq,{}eq]]} where the \\spad{d_i}\\spad{'s} are the affine singularities of \\spad{op} above the roots of \\spad{p},{} and the \\spad{e_i}\\spad{'s} are the indicial equations at each \\spad{d_i}.") (((|List| (|Record| (|:| |center| |#2|) (|:| |equation| |#2|))) |#4|) "\\spad{indicialEquations op} returns \\spad{[[d1,{}e1],{}...,{}[dq,{}eq]]} where the \\spad{d_i}\\spad{'s} are the affine singularities of \\spad{op},{} and the \\spad{e_i}\\spad{'s} are the indicial equations at each \\spad{d_i}.") (((|List| (|Record| (|:| |center| |#2|) (|:| |equation| |#2|))) |#3| |#2|) "\\spad{indicialEquations(op,{} p)} returns \\spad{[[d1,{}e1],{}...,{}[dq,{}eq]]} where the \\spad{d_i}\\spad{'s} are the affine singularities of \\spad{op} above the roots of \\spad{p},{} and the \\spad{e_i}\\spad{'s} are the indicial equations at each \\spad{d_i}.") (((|List| (|Record| (|:| |center| |#2|) (|:| |equation| |#2|))) |#3|) "\\spad{indicialEquations op} returns \\spad{[[d1,{}e1],{}...,{}[dq,{}eq]]} where the \\spad{d_i}\\spad{'s} are the affine singularities of \\spad{op},{} and the \\spad{e_i}\\spad{'s} are the indicial equations at each \\spad{d_i}.")) (|denomLODE| ((|#2| |#3| (|List| (|Fraction| |#2|))) "\\spad{denomLODE(op,{} [g1,{}...,{}gm])} returns a polynomial \\spad{d} such that any rational solution of \\spad{op y = c1 g1 + ... + cm gm} is of the form \\spad{p/d} for some polynomial \\spad{p}.") (((|Union| |#2| "failed") |#3| (|Fraction| |#2|)) "\\spad{denomLODE(op,{} g)} returns a polynomial \\spad{d} such that any rational solution of \\spad{op y = g} is of the form \\spad{p/d} for some polynomial \\spad{p},{} and \"failed\",{} if the equation has no rational solution.")))
NIL
NIL
-(-747)
+(-749)
((|retract| (((|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|))) $) "\\spad{retract(x)} \\undocumented{}")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(x)} \\undocumented{}") (($ (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{coerce(x)} \\undocumented{}")))
NIL
NIL
-(-748 -3894 UP L LQ)
+(-750 -3576 UP L LQ)
((|constructor| (NIL "In-field solution of Riccati equations,{} primitive case.")) (|changeVar| ((|#3| |#3| (|Fraction| |#2|)) "\\spad{changeVar(+/[\\spad{ai} D^i],{} a)} returns the operator \\spad{+/[\\spad{ai} (D+a)\\spad{^i}]}.") ((|#3| |#3| |#2|) "\\spad{changeVar(+/[\\spad{ai} D^i],{} a)} returns the operator \\spad{+/[\\spad{ai} (D+a)\\spad{^i}]}.")) (|singRicDE| (((|List| (|Record| (|:| |frac| (|Fraction| |#2|)) (|:| |eq| |#3|))) |#3| (|Mapping| (|List| |#2|) |#2| (|SparseUnivariatePolynomial| |#2|)) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{singRicDE(op,{} zeros,{} ezfactor)} returns \\spad{[[f1,{} L1],{} [f2,{} L2],{} ... ,{} [fk,{} Lk]]} such that the singular part of any rational solution of the associated Riccati equation of \\spad{op y=0} must be one of the \\spad{fi}\\spad{'s} (up to the constant coefficient),{} in which case the equation for \\spad{z=y e^{-int p}} is \\spad{\\spad{Li} z=0}. \\spad{zeros(C(x),{}H(x,{}y))} returns all the \\spad{P_i(x)}\\spad{'s} such that \\spad{H(x,{}P_i(x)) = 0 modulo C(x)}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.")) (|polyRicDE| (((|List| (|Record| (|:| |poly| |#2|) (|:| |eq| |#3|))) |#3| (|Mapping| (|List| |#1|) |#2|)) "\\spad{polyRicDE(op,{} zeros)} returns \\spad{[[p1,{} L1],{} [p2,{} L2],{} ... ,{} [pk,{} Lk]]} such that the polynomial part of any rational solution of the associated Riccati equation of \\spad{op y=0} must be one of the \\spad{pi}\\spad{'s} (up to the constant coefficient),{} in which case the equation for \\spad{z=y e^{-int p}} is \\spad{\\spad{Li} z =0}. \\spad{zeros} is a zero finder in \\spad{UP}.")) (|constantCoefficientRicDE| (((|List| (|Record| (|:| |constant| |#1|) (|:| |eq| |#3|))) |#3| (|Mapping| (|List| |#1|) |#2|)) "\\spad{constantCoefficientRicDE(op,{} ric)} returns \\spad{[[a1,{} L1],{} [a2,{} L2],{} ... ,{} [ak,{} Lk]]} such that any rational solution with no polynomial part of the associated Riccati equation of \\spad{op y = 0} must be one of the \\spad{ai}\\spad{'s} in which case the equation for \\spad{z = y e^{-int \\spad{ai}}} is \\spad{\\spad{Li} z = 0}. \\spad{ric} is a Riccati equation solver over \\spad{F},{} whose input is the associated linear equation.")) (|leadingCoefficientRicDE| (((|List| (|Record| (|:| |deg| (|NonNegativeInteger|)) (|:| |eq| |#2|))) |#3|) "\\spad{leadingCoefficientRicDE(op)} returns \\spad{[[m1,{} p1],{} [m2,{} p2],{} ... ,{} [mk,{} pk]]} such that the polynomial part of any rational solution of the associated Riccati equation of \\spad{op y = 0} must have degree \\spad{mj} for some \\spad{j},{} and its leading coefficient is then a zero of \\spad{pj}. In addition,{}\\spad{m1>m2> ... >mk}.")) (|denomRicDE| ((|#2| |#3|) "\\spad{denomRicDE(op)} returns a polynomial \\spad{d} such that any rational solution of the associated Riccati equation of \\spad{op y = 0} is of the form \\spad{p/d + q'/q + r} for some polynomials \\spad{p} and \\spad{q} and a reduced \\spad{r}. Also,{} \\spad{deg(p) < deg(d)} and {\\spad{gcd}(\\spad{d},{}\\spad{q}) = 1}.")))
NIL
NIL
-(-749 -3894 UP)
+(-751 -3576 UP)
((|constructor| (NIL "\\spad{RationalLODE} provides functions for in-field solutions of linear \\indented{1}{ordinary differential equations,{} in the rational case.}")) (|indicialEquationAtInfinity| ((|#2| (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|))) "\\spad{indicialEquationAtInfinity op} returns the indicial equation of \\spad{op} at infinity.") ((|#2| (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) "\\spad{indicialEquationAtInfinity op} returns the indicial equation of \\spad{op} at infinity.")) (|ratDsolve| (((|Record| (|:| |basis| (|List| (|Fraction| |#2|))) (|:| |mat| (|Matrix| |#1|))) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|List| (|Fraction| |#2|))) "\\spad{ratDsolve(op,{} [g1,{}...,{}gm])} returns \\spad{[[h1,{}...,{}hq],{} M]} such that any rational solution of \\spad{op y = c1 g1 + ... + cm gm} is of the form \\spad{d1 h1 + ... + dq hq} where \\spad{M [d1,{}...,{}dq,{}c1,{}...,{}cm] = 0}.") (((|Record| (|:| |particular| (|Union| (|Fraction| |#2|) "failed")) (|:| |basis| (|List| (|Fraction| |#2|)))) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Fraction| |#2|)) "\\spad{ratDsolve(op,{} g)} returns \\spad{[\"failed\",{} []]} if the equation \\spad{op y = g} has no rational solution. Otherwise,{} it returns \\spad{[f,{} [y1,{}...,{}ym]]} where \\spad{f} is a particular rational solution and the \\spad{yi}\\spad{'s} form a basis for the rational solutions of the homogeneous equation.") (((|Record| (|:| |basis| (|List| (|Fraction| |#2|))) (|:| |mat| (|Matrix| |#1|))) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|List| (|Fraction| |#2|))) "\\spad{ratDsolve(op,{} [g1,{}...,{}gm])} returns \\spad{[[h1,{}...,{}hq],{} M]} such that any rational solution of \\spad{op y = c1 g1 + ... + cm gm} is of the form \\spad{d1 h1 + ... + dq hq} where \\spad{M [d1,{}...,{}dq,{}c1,{}...,{}cm] = 0}.") (((|Record| (|:| |particular| (|Union| (|Fraction| |#2|) "failed")) (|:| |basis| (|List| (|Fraction| |#2|)))) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|Fraction| |#2|)) "\\spad{ratDsolve(op,{} g)} returns \\spad{[\"failed\",{} []]} if the equation \\spad{op y = g} has no rational solution. Otherwise,{} it returns \\spad{[f,{} [y1,{}...,{}ym]]} where \\spad{f} is a particular rational solution and the \\spad{yi}\\spad{'s} form a basis for the rational solutions of the homogeneous equation.")))
NIL
NIL
-(-750 -3894 L UP A LO)
+(-752 -3576 L UP A LO)
((|constructor| (NIL "Elimination of an algebraic from the coefficentss of a linear ordinary differential equation.")) (|reduceLODE| (((|Record| (|:| |mat| (|Matrix| |#2|)) (|:| |vec| (|Vector| |#1|))) |#5| |#4|) "\\spad{reduceLODE(op,{} g)} returns \\spad{[m,{} v]} such that any solution in \\spad{A} of \\spad{op z = g} is of the form \\spad{z = (z_1,{}...,{}z_m) . (b_1,{}...,{}b_m)} where the \\spad{b_i's} are the basis of \\spad{A} over \\spad{F} returned by \\spadfun{basis}() from \\spad{A},{} and the \\spad{z_i's} satisfy the differential system \\spad{M.z = v}.")))
NIL
NIL
-(-751 -3894 UP)
+(-753 -3576 UP)
((|constructor| (NIL "In-field solution of Riccati equations,{} rational case.")) (|polyRicDE| (((|List| (|Record| (|:| |poly| |#2|) (|:| |eq| (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|))))) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|)) "\\spad{polyRicDE(op,{} zeros)} returns \\spad{[[p1,{} L1],{} [p2,{} L2],{} ... ,{} [pk,{}Lk]]} such that the polynomial part of any rational solution of the associated Riccati equation of \\spad{op y = 0} must be one of the \\spad{pi}\\spad{'s} (up to the constant coefficient),{} in which case the equation for \\spad{z = y e^{-int p}} is \\spad{\\spad{Li} z = 0}. \\spad{zeros} is a zero finder in \\spad{UP}.")) (|singRicDE| (((|List| (|Record| (|:| |frac| (|Fraction| |#2|)) (|:| |eq| (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|))))) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{singRicDE(op,{} ezfactor)} returns \\spad{[[f1,{}L1],{} [f2,{}L2],{}...,{} [fk,{}Lk]]} such that the singular \\spad{++} part of any rational solution of the associated Riccati equation of \\spad{op y = 0} must be one of the \\spad{fi}\\spad{'s} (up to the constant coefficient),{} in which case the equation for \\spad{z = y e^{-int \\spad{ai}}} is \\spad{\\spad{Li} z = 0}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.")) (|ricDsolve| (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{ricDsolve(op,{} ezfactor)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|))) "\\spad{ricDsolve(op)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{ricDsolve(op,{} ezfactor)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) "\\spad{ricDsolve(op)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{ricDsolve(op,{} zeros,{} ezfactor)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. \\spad{zeros} is a zero finder in \\spad{UP}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|)) "\\spad{ricDsolve(op,{} zeros)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. \\spad{zeros} is a zero finder in \\spad{UP}.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{ricDsolve(op,{} zeros,{} ezfactor)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. \\spad{zeros} is a zero finder in \\spad{UP}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|)) "\\spad{ricDsolve(op,{} zeros)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. \\spad{zeros} is a zero finder in \\spad{UP}.")))
NIL
((|HasCategory| |#1| (QUOTE (-27))))
-(-752 -3894 LO)
+(-754 -3576 LO)
((|constructor| (NIL "SystemODESolver provides tools for triangulating and solving some systems of linear ordinary differential equations.")) (|solveInField| (((|Record| (|:| |particular| (|Union| (|Vector| |#1|) "failed")) (|:| |basis| (|List| (|Vector| |#1|)))) (|Matrix| |#2|) (|Vector| |#1|) (|Mapping| (|Record| (|:| |particular| (|Union| |#1| "failed")) (|:| |basis| (|List| |#1|))) |#2| |#1|)) "\\spad{solveInField(m,{} v,{} solve)} returns \\spad{[[v_1,{}...,{}v_m],{} v_p]} such that the solutions in \\spad{F} of the system \\spad{m x = v} are \\spad{v_p + c_1 v_1 + ... + c_m v_m} where the \\spad{c_i's} are constants,{} and the \\spad{v_i's} form a basis for the solutions of \\spad{m x = 0}. Argument \\spad{solve} is a function for solving a single linear ordinary differential equation in \\spad{F}.")) (|solve| (((|Union| (|Record| (|:| |particular| (|Vector| |#1|)) (|:| |basis| (|Matrix| |#1|))) "failed") (|Matrix| |#1|) (|Vector| |#1|) (|Mapping| (|Union| (|Record| (|:| |particular| |#1|) (|:| |basis| (|List| |#1|))) "failed") |#2| |#1|)) "\\spad{solve(m,{} v,{} solve)} returns \\spad{[[v_1,{}...,{}v_m],{} v_p]} such that the solutions in \\spad{F} of the system \\spad{D x = m x + v} are \\spad{v_p + c_1 v_1 + ... + c_m v_m} where the \\spad{c_i's} are constants,{} and the \\spad{v_i's} form a basis for the solutions of \\spad{D x = m x}. Argument \\spad{solve} is a function for solving a single linear ordinary differential equation in \\spad{F}.")) (|triangulate| (((|Record| (|:| |mat| (|Matrix| |#2|)) (|:| |vec| (|Vector| |#1|))) (|Matrix| |#2|) (|Vector| |#1|)) "\\spad{triangulate(m,{} v)} returns \\spad{[m_0,{} v_0]} such that \\spad{m_0} is upper triangular and the system \\spad{m_0 x = v_0} is equivalent to \\spad{m x = v}.") (((|Record| (|:| A (|Matrix| |#1|)) (|:| |eqs| (|List| (|Record| (|:| C (|Matrix| |#1|)) (|:| |g| (|Vector| |#1|)) (|:| |eq| |#2|) (|:| |rh| |#1|))))) (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{triangulate(M,{}v)} returns \\spad{A,{}[[C_1,{}g_1,{}L_1,{}h_1],{}...,{}[C_k,{}g_k,{}L_k,{}h_k]]} such that under the change of variable \\spad{y = A z},{} the first order linear system \\spad{D y = M y + v} is uncoupled as \\spad{D z_i = C_i z_i + g_i} and each \\spad{C_i} is a companion matrix corresponding to the scalar equation \\spad{L_i z_j = h_i}.")))
NIL
NIL
-(-753 -3894 LODO)
+(-755 -3576 LODO)
((|constructor| (NIL "\\spad{ODETools} provides tools for the linear ODE solver.")) (|particularSolution| (((|Union| |#1| "failed") |#2| |#1| (|List| |#1|) (|Mapping| |#1| |#1|)) "\\spad{particularSolution(op,{} g,{} [f1,{}...,{}fm],{} I)} returns a particular solution \\spad{h} of the equation \\spad{op y = g} where \\spad{[f1,{}...,{}fm]} are linearly independent and \\spad{op(\\spad{fi})=0}. The value \"failed\" is returned if no particular solution is found. Note: the method of variations of parameters is used.")) (|variationOfParameters| (((|Union| (|Vector| |#1|) "failed") |#2| |#1| (|List| |#1|)) "\\spad{variationOfParameters(op,{} g,{} [f1,{}...,{}fm])} returns \\spad{[u1,{}...,{}um]} such that a particular solution of the equation \\spad{op y = g} is \\spad{f1 int(u1) + ... + fm int(um)} where \\spad{[f1,{}...,{}fm]} are linearly independent and \\spad{op(\\spad{fi})=0}. The value \"failed\" is returned if \\spad{m < n} and no particular solution is found.")) (|wronskianMatrix| (((|Matrix| |#1|) (|List| |#1|) (|NonNegativeInteger|)) "\\spad{wronskianMatrix([f1,{}...,{}fn],{} q,{} D)} returns the \\spad{q x n} matrix \\spad{m} whose i^th row is \\spad{[f1^(i-1),{}...,{}fn^(i-1)]}.") (((|Matrix| |#1|) (|List| |#1|)) "\\spad{wronskianMatrix([f1,{}...,{}fn])} returns the \\spad{n x n} matrix \\spad{m} whose i^th row is \\spad{[f1^(i-1),{}...,{}fn^(i-1)]}.")))
NIL
NIL
-(-754 -3765 S |f|)
+(-756 -2951 S |f|)
((|constructor| (NIL "\\indented{2}{This type represents the finite direct or cartesian product of an} underlying ordered component type. The ordering on the type is determined by its third argument which represents the less than function on vectors. This type is a suitable third argument for \\spadtype{GeneralDistributedMultivariatePolynomial}.")))
-((-4242 |has| |#2| (-973)) (-4243 |has| |#2| (-973)) (-4245 |has| |#2| (-6 -4245)) ((-4250 "*") |has| |#2| (-158)) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-344))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))))) (-3255 (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-1016)))) (-12 (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-973)))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087))))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#2| (QUOTE (-339))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-973)))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-339)))) (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (QUOTE (-732))) (-3255 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-784)))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-158))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-973)))) (|HasCategory| |#2| (QUOTE (-344))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-344))) (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (QUOTE (-1016)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-973)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-973)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-973)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-973)))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-158)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-211)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-339)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-344)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-732)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-784)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-973)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-1016))))) (-3255 (-12 (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-344))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-732))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))))) (|HasCategory| (-523) (QUOTE (-786))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (QUOTE (-973)))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087))))) (|HasCategory| |#2| (QUOTE (-666))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-3255 (|HasCategory| |#2| (QUOTE (-973))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-1016)))) (|HasAttribute| |#2| (QUOTE -4245)) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-25))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-755 R)
+((-4244 |has| |#2| (-975)) (-4245 |has| |#2| (-975)) (-4247 |has| |#2| (-6 -4247)) ((-4252 "*") |has| |#2| (-160)) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-346))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-734))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))))) (-3321 (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-975)))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#2| (QUOTE (-341))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-975)))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-341)))) (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (QUOTE (-734))) (-3321 (|HasCategory| |#2| (QUOTE (-734))) (|HasCategory| |#2| (QUOTE (-786)))) (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-160))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-975)))) (|HasCategory| |#2| (QUOTE (-346))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-346))) (|HasCategory| |#2| (QUOTE (-734))) (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (QUOTE (-1018)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-975)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-975)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-975)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-975)))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-126)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-160)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-213)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-341)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-346)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-734)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-786)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-975)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-1018))))) (-3321 (-12 (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-346))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-734))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))))) (|HasCategory| (-525) (QUOTE (-788))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (QUOTE (-975)))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089))))) (|HasCategory| |#2| (QUOTE (-668))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-3321 (|HasCategory| |#2| (QUOTE (-975))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasAttribute| |#2| (QUOTE -4247)) (|HasCategory| |#2| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-25))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-757 R)
((|constructor| (NIL "\\spadtype{OrderlyDifferentialPolynomial} implements an ordinary differential polynomial ring in arbitrary number of differential indeterminates,{} with coefficients in a ring. The ranking on the differential indeterminate is orderly. This is analogous to the domain \\spadtype{Polynomial}. \\blankline")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-840))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| (-757 (-1087)) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasCategory| (-757 (-1087)) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| (-757 (-1087)) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355)))))) (-12 (|HasCategory| (-757 (-1087)) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523)))))) (-12 (|HasCategory| (-757 (-1087)) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499))))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-211))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-339))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasAttribute| |#1| (QUOTE -4246)) (|HasCategory| |#1| (QUOTE (-427))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-134)))))
-(-756 |Kernels| R |var|)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-842))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| (-759 (-1089)) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasCategory| (-759 (-1089)) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| (-759 (-1089)) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357)))))) (-12 (|HasCategory| (-759 (-1089)) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525)))))) (-12 (|HasCategory| (-759 (-1089)) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501))))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-213))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-341))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasAttribute| |#1| (QUOTE -4248)) (|HasCategory| |#1| (QUOTE (-429))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-136)))))
+(-758 |Kernels| R |var|)
((|constructor| (NIL "This constructor produces an ordinary differential ring from a partial differential ring by specifying a variable.")) (|coerce| ((|#2| $) "\\spad{coerce(p)} views \\spad{p} as a valie in the partial differential ring.") (($ |#2|) "\\spad{coerce(r)} views \\spad{r} as a value in the ordinary differential ring.")))
-(((-4250 "*") |has| |#2| (-339)) (-4241 |has| |#2| (-339)) (-4246 |has| |#2| (-339)) (-4240 |has| |#2| (-339)) (-4245 . T) (-4243 . T) (-4242 . T))
-((|HasCategory| |#2| (QUOTE (-339))))
-(-757 S)
+(((-4252 "*") |has| |#2| (-341)) (-4243 |has| |#2| (-341)) (-4248 |has| |#2| (-341)) (-4242 |has| |#2| (-341)) (-4247 . T) (-4245 . T) (-4244 . T))
+((|HasCategory| |#2| (QUOTE (-341))))
+(-759 S)
((|constructor| (NIL "\\spadtype{OrderlyDifferentialVariable} adds a commonly used orderly ranking to the set of derivatives of an ordered list of differential indeterminates. An orderly ranking is a ranking \\spadfun{<} of the derivatives with the property that for two derivatives \\spad{u} and \\spad{v},{} \\spad{u} \\spadfun{<} \\spad{v} if the \\spadfun{order} of \\spad{u} is less than that of \\spad{v}. This domain belongs to \\spadtype{DifferentialVariableCategory}. It defines \\spadfun{weight} to be just \\spadfun{order},{} and it defines an orderly ranking \\spadfun{<} on derivatives \\spad{u} via the lexicographic order on the pair (\\spadfun{order}(\\spad{u}),{} \\spadfun{variable}(\\spad{u})).")))
NIL
NIL
-(-758 S)
+(-760 S)
((|constructor| (NIL "\\indented{3}{The free monoid on a set \\spad{S} is the monoid of finite products of} the form \\spad{reduce(*,{}[\\spad{si} ** \\spad{ni}])} where the \\spad{si}\\spad{'s} are in \\spad{S},{} and the \\spad{ni}\\spad{'s} are non-negative integers. The multiplication is not commutative. For two elements \\spad{x} and \\spad{y} the relation \\spad{x < y} holds if either \\spad{length(x) < length(y)} holds or if these lengths are equal and if \\spad{x} is smaller than \\spad{y} \\spad{w}.\\spad{r}.\\spad{t}. the lexicographical ordering induced by \\spad{S}. This domain inherits implementation from \\spadtype{FreeMonoid}.")) (|varList| (((|List| |#1|) $) "\\spad{varList(x)} returns the list of variables of \\spad{x}.")) (|length| (((|NonNegativeInteger|) $) "\\spad{length(x)} returns the length of \\spad{x}.")) (|factors| (((|List| (|Record| (|:| |gen| |#1|) (|:| |exp| (|NonNegativeInteger|)))) $) "\\spad{factors(a1\\^e1,{}...,{}an\\^en)} returns \\spad{[[a1,{} e1],{}...,{}[an,{} en]]}.")) (|nthFactor| ((|#1| $ (|Integer|)) "\\spad{nthFactor(x,{} n)} returns the factor of the \\spad{n-th} monomial of \\spad{x}.")) (|nthExpon| (((|NonNegativeInteger|) $ (|Integer|)) "\\spad{nthExpon(x,{} n)} returns the exponent of the \\spad{n-th} monomial of \\spad{x}.")) (|size| (((|NonNegativeInteger|) $) "\\spad{size(x)} returns the number of monomials in \\spad{x}.")) (|overlap| (((|Record| (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) "\\spad{overlap(x,{} y)} returns \\spad{[l,{} m,{} r]} such that \\spad{x = l * m} and \\spad{y = m * r} hold and such that \\spad{l} and \\spad{r} have no overlap,{} that is \\spad{overlap(l,{} r) = [l,{} 1,{} r]}.")) (|div| (((|Union| (|Record| (|:| |lm| $) (|:| |rm| $)) "failed") $ $) "\\spad{x div y} returns the left and right exact quotients of \\spad{x} by \\spad{y},{} that is \\spad{[l,{} r]} such that \\spad{x = l * y * r}. \"failed\" is returned iff \\spad{x} is not of the form \\spad{l * y * r}.")) (|rquo| (((|Union| $ "failed") $ |#1|) "\\spad{rquo(x,{} s)} returns the exact right quotient of \\spad{x} by \\spad{s}.") (((|Union| $ "failed") $ $) "\\spad{rquo(x,{} y)} returns the exact right quotient of \\spad{x} by \\spad{y} that is \\spad{q} such that \\spad{x = q * y},{} \"failed\" if \\spad{x} is not of the form \\spad{q * y}.")) (|lquo| (((|Union| $ "failed") $ |#1|) "\\spad{lquo(x,{} s)} returns the exact left quotient of \\spad{x} by \\spad{s}.") (((|Union| $ "failed") $ $) "\\spad{lquo(x,{} y)} returns the exact left quotient of \\spad{x} \\indented{1}{by \\spad{y} that is \\spad{q} such that \\spad{x = y * q},{}} \"failed\" if \\spad{x} is not of the form \\spad{y * q}.")) (|hcrf| (($ $ $) "\\spad{hcrf(x,{} y)} returns the highest common right factor of \\spad{x} and \\spad{y},{} that is the largest \\spad{d} such that \\spad{x = a d} and \\spad{y = b d}.")) (|hclf| (($ $ $) "\\spad{hclf(x,{} y)} returns the highest common left factor of \\spad{x} and \\spad{y},{} that is the largest \\spad{d} such that \\spad{x = d a} and \\spad{y = d b}.")) (|lexico| (((|Boolean|) $ $) "\\spad{lexico(x,{}y)} returns \\spad{true} iff \\spad{x} is smaller than \\spad{y} \\spad{w}.\\spad{r}.\\spad{t}. the pure lexicographical ordering induced by \\spad{S}.")) (|mirror| (($ $) "\\spad{mirror(x)} returns the reversed word of \\spad{x}.")) (|rest| (($ $) "\\spad{rest(x)} returns \\spad{x} except the first letter.")) (|first| ((|#1| $) "\\spad{first(x)} returns the first letter of \\spad{x}.")) (** (($ |#1| (|NonNegativeInteger|)) "\\spad{s ** n} returns the product of \\spad{s} by itself \\spad{n} times.")) (* (($ $ |#1|) "\\spad{x * s} returns the product of \\spad{x} by \\spad{s} on the right.") (($ |#1| $) "\\spad{s * x} returns the product of \\spad{x} by \\spad{s} on the left.")))
NIL
NIL
-(-759)
+(-761)
((|constructor| (NIL "The category of ordered commutative integral domains,{} where ordering and the arithmetic operations are compatible \\blankline")))
-((-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-760)
+(-762)
((|constructor| (NIL "\\spadtype{OpenMathConnection} provides low-level functions for handling connections to and from \\spadtype{OpenMathDevice}\\spad{s}.")) (|OMbindTCP| (((|Boolean|) $ (|SingleInteger|)) "\\spad{OMbindTCP}")) (|OMconnectTCP| (((|Boolean|) $ (|String|) (|SingleInteger|)) "\\spad{OMconnectTCP}")) (|OMconnOutDevice| (((|OpenMathDevice|) $) "\\spad{OMconnOutDevice:}")) (|OMconnInDevice| (((|OpenMathDevice|) $) "\\spad{OMconnInDevice:}")) (|OMcloseConn| (((|Void|) $) "\\spad{OMcloseConn}")) (|OMmakeConn| (($ (|SingleInteger|)) "\\spad{OMmakeConn}")))
NIL
NIL
-(-761)
+(-763)
((|constructor| (NIL "\\spadtype{OpenMathDevice} provides support for reading and writing openMath objects to files,{} strings etc. It also provides access to low-level operations from within the interpreter.")) (|OMgetType| (((|Symbol|) $) "\\spad{OMgetType(dev)} returns the type of the next object on \\axiom{\\spad{dev}}.")) (|OMgetSymbol| (((|Record| (|:| |cd| (|String|)) (|:| |name| (|String|))) $) "\\spad{OMgetSymbol(dev)} reads a symbol from \\axiom{\\spad{dev}}.")) (|OMgetString| (((|String|) $) "\\spad{OMgetString(dev)} reads a string from \\axiom{\\spad{dev}}.")) (|OMgetVariable| (((|Symbol|) $) "\\spad{OMgetVariable(dev)} reads a variable from \\axiom{\\spad{dev}}.")) (|OMgetFloat| (((|DoubleFloat|) $) "\\spad{OMgetFloat(dev)} reads a float from \\axiom{\\spad{dev}}.")) (|OMgetInteger| (((|Integer|) $) "\\spad{OMgetInteger(dev)} reads an integer from \\axiom{\\spad{dev}}.")) (|OMgetEndObject| (((|Void|) $) "\\spad{OMgetEndObject(dev)} reads an end object token from \\axiom{\\spad{dev}}.")) (|OMgetEndError| (((|Void|) $) "\\spad{OMgetEndError(dev)} reads an end error token from \\axiom{\\spad{dev}}.")) (|OMgetEndBVar| (((|Void|) $) "\\spad{OMgetEndBVar(dev)} reads an end bound variable list token from \\axiom{\\spad{dev}}.")) (|OMgetEndBind| (((|Void|) $) "\\spad{OMgetEndBind(dev)} reads an end binder token from \\axiom{\\spad{dev}}.")) (|OMgetEndAttr| (((|Void|) $) "\\spad{OMgetEndAttr(dev)} reads an end attribute token from \\axiom{\\spad{dev}}.")) (|OMgetEndAtp| (((|Void|) $) "\\spad{OMgetEndAtp(dev)} reads an end attribute pair token from \\axiom{\\spad{dev}}.")) (|OMgetEndApp| (((|Void|) $) "\\spad{OMgetEndApp(dev)} reads an end application token from \\axiom{\\spad{dev}}.")) (|OMgetObject| (((|Void|) $) "\\spad{OMgetObject(dev)} reads a begin object token from \\axiom{\\spad{dev}}.")) (|OMgetError| (((|Void|) $) "\\spad{OMgetError(dev)} reads a begin error token from \\axiom{\\spad{dev}}.")) (|OMgetBVar| (((|Void|) $) "\\spad{OMgetBVar(dev)} reads a begin bound variable list token from \\axiom{\\spad{dev}}.")) (|OMgetBind| (((|Void|) $) "\\spad{OMgetBind(dev)} reads a begin binder token from \\axiom{\\spad{dev}}.")) (|OMgetAttr| (((|Void|) $) "\\spad{OMgetAttr(dev)} reads a begin attribute token from \\axiom{\\spad{dev}}.")) (|OMgetAtp| (((|Void|) $) "\\spad{OMgetAtp(dev)} reads a begin attribute pair token from \\axiom{\\spad{dev}}.")) (|OMgetApp| (((|Void|) $) "\\spad{OMgetApp(dev)} reads a begin application token from \\axiom{\\spad{dev}}.")) (|OMputSymbol| (((|Void|) $ (|String|) (|String|)) "\\spad{OMputSymbol(dev,{}cd,{}s)} writes the symbol \\axiom{\\spad{s}} from \\spad{CD} \\axiom{\\spad{cd}} to \\axiom{\\spad{dev}}.")) (|OMputString| (((|Void|) $ (|String|)) "\\spad{OMputString(dev,{}i)} writes the string \\axiom{\\spad{i}} to \\axiom{\\spad{dev}}.")) (|OMputVariable| (((|Void|) $ (|Symbol|)) "\\spad{OMputVariable(dev,{}i)} writes the variable \\axiom{\\spad{i}} to \\axiom{\\spad{dev}}.")) (|OMputFloat| (((|Void|) $ (|DoubleFloat|)) "\\spad{OMputFloat(dev,{}i)} writes the float \\axiom{\\spad{i}} to \\axiom{\\spad{dev}}.")) (|OMputInteger| (((|Void|) $ (|Integer|)) "\\spad{OMputInteger(dev,{}i)} writes the integer \\axiom{\\spad{i}} to \\axiom{\\spad{dev}}.")) (|OMputEndObject| (((|Void|) $) "\\spad{OMputEndObject(dev)} writes an end object token to \\axiom{\\spad{dev}}.")) (|OMputEndError| (((|Void|) $) "\\spad{OMputEndError(dev)} writes an end error token to \\axiom{\\spad{dev}}.")) (|OMputEndBVar| (((|Void|) $) "\\spad{OMputEndBVar(dev)} writes an end bound variable list token to \\axiom{\\spad{dev}}.")) (|OMputEndBind| (((|Void|) $) "\\spad{OMputEndBind(dev)} writes an end binder token to \\axiom{\\spad{dev}}.")) (|OMputEndAttr| (((|Void|) $) "\\spad{OMputEndAttr(dev)} writes an end attribute token to \\axiom{\\spad{dev}}.")) (|OMputEndAtp| (((|Void|) $) "\\spad{OMputEndAtp(dev)} writes an end attribute pair token to \\axiom{\\spad{dev}}.")) (|OMputEndApp| (((|Void|) $) "\\spad{OMputEndApp(dev)} writes an end application token to \\axiom{\\spad{dev}}.")) (|OMputObject| (((|Void|) $) "\\spad{OMputObject(dev)} writes a begin object token to \\axiom{\\spad{dev}}.")) (|OMputError| (((|Void|) $) "\\spad{OMputError(dev)} writes a begin error token to \\axiom{\\spad{dev}}.")) (|OMputBVar| (((|Void|) $) "\\spad{OMputBVar(dev)} writes a begin bound variable list token to \\axiom{\\spad{dev}}.")) (|OMputBind| (((|Void|) $) "\\spad{OMputBind(dev)} writes a begin binder token to \\axiom{\\spad{dev}}.")) (|OMputAttr| (((|Void|) $) "\\spad{OMputAttr(dev)} writes a begin attribute token to \\axiom{\\spad{dev}}.")) (|OMputAtp| (((|Void|) $) "\\spad{OMputAtp(dev)} writes a begin attribute pair token to \\axiom{\\spad{dev}}.")) (|OMputApp| (((|Void|) $) "\\spad{OMputApp(dev)} writes a begin application token to \\axiom{\\spad{dev}}.")) (|OMsetEncoding| (((|Void|) $ (|OpenMathEncoding|)) "\\spad{OMsetEncoding(dev,{}enc)} sets the encoding used for reading or writing OpenMath objects to or from \\axiom{\\spad{dev}} to \\axiom{\\spad{enc}}.")) (|OMclose| (((|Void|) $) "\\spad{OMclose(dev)} closes \\axiom{\\spad{dev}},{} flushing output if necessary.")) (|OMopenString| (($ (|String|) (|OpenMathEncoding|)) "\\spad{OMopenString(s,{}mode)} opens the string \\axiom{\\spad{s}} for reading or writing OpenMath objects in encoding \\axiom{enc}.")) (|OMopenFile| (($ (|String|) (|String|) (|OpenMathEncoding|)) "\\spad{OMopenFile(f,{}mode,{}enc)} opens file \\axiom{\\spad{f}} for reading or writing OpenMath objects (depending on \\axiom{\\spad{mode}} which can be \\spad{\"r\"},{} \\spad{\"w\"} or \"a\" for read,{} write and append respectively),{} in the encoding \\axiom{\\spad{enc}}.")))
NIL
NIL
-(-762)
+(-764)
((|constructor| (NIL "\\spadtype{OpenMathEncoding} is the set of valid OpenMath encodings.")) (|OMencodingBinary| (($) "\\spad{OMencodingBinary()} is the constant for the OpenMath binary encoding.")) (|OMencodingSGML| (($) "\\spad{OMencodingSGML()} is the constant for the deprecated OpenMath SGML encoding.")) (|OMencodingXML| (($) "\\spad{OMencodingXML()} is the constant for the OpenMath \\spad{XML} encoding.")) (|OMencodingUnknown| (($) "\\spad{OMencodingUnknown()} is the constant for unknown encoding types. If this is used on an input device,{} the encoding will be autodetected. It is invalid to use it on an output device.")))
NIL
NIL
-(-763)
+(-765)
((|constructor| (NIL "\\spadtype{OpenMathErrorKind} represents different kinds of OpenMath errors: specifically parse errors,{} unknown \\spad{CD} or symbol errors,{} and read errors.")) (|OMReadError?| (((|Boolean|) $) "\\spad{OMReadError?(u)} tests whether \\spad{u} is an OpenMath read error.")) (|OMUnknownSymbol?| (((|Boolean|) $) "\\spad{OMUnknownSymbol?(u)} tests whether \\spad{u} is an OpenMath unknown symbol error.")) (|OMUnknownCD?| (((|Boolean|) $) "\\spad{OMUnknownCD?(u)} tests whether \\spad{u} is an OpenMath unknown \\spad{CD} error.")) (|OMParseError?| (((|Boolean|) $) "\\spad{OMParseError?(u)} tests whether \\spad{u} is an OpenMath parsing error.")) (|coerce| (($ (|Symbol|)) "\\spad{coerce(u)} creates an OpenMath error object of an appropriate type if \\axiom{\\spad{u}} is one of \\axiom{OMParseError},{} \\axiom{OMReadError},{} \\axiom{OMUnknownCD} or \\axiom{OMUnknownSymbol},{} otherwise it raises a runtime error.")))
NIL
NIL
-(-764)
+(-766)
((|constructor| (NIL "\\spadtype{OpenMathError} is the domain of OpenMath errors.")) (|omError| (($ (|OpenMathErrorKind|) (|List| (|Symbol|))) "\\spad{omError(k,{}l)} creates an instance of OpenMathError.")) (|errorInfo| (((|List| (|Symbol|)) $) "\\spad{errorInfo(u)} returns information about the error \\spad{u}.")) (|errorKind| (((|OpenMathErrorKind|) $) "\\spad{errorKind(u)} returns the type of error which \\spad{u} represents.")))
NIL
NIL
-(-765 R)
+(-767 R)
((|constructor| (NIL "\\spadtype{ExpressionToOpenMath} provides support for converting objects of type \\spadtype{Expression} into OpenMath.")))
NIL
NIL
-(-766 P R)
+(-768 P R)
((|constructor| (NIL "This constructor creates the \\spadtype{MonogenicLinearOperator} domain which is ``opposite\\spad{''} in the ring sense to \\spad{P}. That is,{} as sets \\spad{P = \\$} but \\spad{a * b} in \\spad{\\$} is equal to \\spad{b * a} in \\spad{P}.")) (|po| ((|#1| $) "\\spad{po(q)} creates a value in \\spad{P} equal to \\spad{q} in \\$.")) (|op| (($ |#1|) "\\spad{op(p)} creates a value in \\$ equal to \\spad{p} in \\spad{P}.")))
-((-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-211))))
-(-767)
+((-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-213))))
+(-769)
((|constructor| (NIL "\\spadtype{OpenMath} provides operations for exporting an object in OpenMath format.")) (|OMwrite| (((|Void|) (|OpenMathDevice|) $ (|Boolean|)) "\\spad{OMwrite(dev,{} u,{} true)} writes the OpenMath form of \\axiom{\\spad{u}} to the OpenMath device \\axiom{\\spad{dev}} as a complete OpenMath object; OMwrite(\\spad{dev},{} \\spad{u},{} \\spad{false}) writes the object as an OpenMath fragment.") (((|Void|) (|OpenMathDevice|) $) "\\spad{OMwrite(dev,{} u)} writes the OpenMath form of \\axiom{\\spad{u}} to the OpenMath device \\axiom{\\spad{dev}} as a complete OpenMath object.") (((|String|) $ (|Boolean|)) "\\spad{OMwrite(u,{} true)} returns the OpenMath \\spad{XML} encoding of \\axiom{\\spad{u}} as a complete OpenMath object; OMwrite(\\spad{u},{} \\spad{false}) returns the OpenMath \\spad{XML} encoding of \\axiom{\\spad{u}} as an OpenMath fragment.") (((|String|) $) "\\spad{OMwrite(u)} returns the OpenMath \\spad{XML} encoding of \\axiom{\\spad{u}} as a complete OpenMath object.")))
NIL
NIL
-(-768)
+(-770)
((|constructor| (NIL "\\spadtype{OpenMathPackage} provides some simple utilities to make reading OpenMath objects easier.")) (|OMunhandledSymbol| (((|Exit|) (|String|) (|String|)) "\\spad{OMunhandledSymbol(s,{}cd)} raises an error if AXIOM reads a symbol which it is unable to handle. Note that this is different from an unexpected symbol.")) (|OMsupportsSymbol?| (((|Boolean|) (|String|) (|String|)) "\\spad{OMsupportsSymbol?(s,{}cd)} returns \\spad{true} if AXIOM supports symbol \\axiom{\\spad{s}} from \\spad{CD} \\axiom{\\spad{cd}},{} \\spad{false} otherwise.")) (|OMsupportsCD?| (((|Boolean|) (|String|)) "\\spad{OMsupportsCD?(cd)} returns \\spad{true} if AXIOM supports \\axiom{\\spad{cd}},{} \\spad{false} otherwise.")) (|OMlistSymbols| (((|List| (|String|)) (|String|)) "\\spad{OMlistSymbols(cd)} lists all the symbols in \\axiom{\\spad{cd}}.")) (|OMlistCDs| (((|List| (|String|))) "\\spad{OMlistCDs()} lists all the \\spad{CDs} supported by AXIOM.")) (|OMreadStr| (((|Any|) (|String|)) "\\spad{OMreadStr(f)} reads an OpenMath object from \\axiom{\\spad{f}} and passes it to AXIOM.")) (|OMreadFile| (((|Any|) (|String|)) "\\spad{OMreadFile(f)} reads an OpenMath object from \\axiom{\\spad{f}} and passes it to AXIOM.")) (|OMread| (((|Any|) (|OpenMathDevice|)) "\\spad{OMread(dev)} reads an OpenMath object from \\axiom{\\spad{dev}} and passes it to AXIOM.")))
NIL
NIL
-(-769 S)
+(-771 S)
((|constructor| (NIL "to become an in order iterator")) (|min| ((|#1| $) "\\spad{min(u)} returns the smallest entry in the multiset aggregate \\spad{u}.")))
-((-4248 . T) (-4238 . T) (-4249 . T) (-2500 . T))
+((-4250 . T) (-4240 . T) (-4251 . T) (-2137 . T))
NIL
-(-770)
+(-772)
((|constructor| (NIL "\\spadtype{OpenMathServerPackage} provides the necessary operations to run AXIOM as an OpenMath server,{} reading/writing objects to/from a port. Please note the facilities available here are very basic. The idea is that a user calls \\spadignore{e.g.} \\axiom{Omserve(4000,{}60)} and then another process sends OpenMath objects to port 4000 and reads the result.")) (|OMserve| (((|Void|) (|SingleInteger|) (|SingleInteger|)) "\\spad{OMserve(portnum,{}timeout)} puts AXIOM into server mode on port number \\axiom{\\spad{portnum}}. The parameter \\axiom{\\spad{timeout}} specifies the \\spad{timeout} period for the connection.")) (|OMsend| (((|Void|) (|OpenMathConnection|) (|Any|)) "\\spad{OMsend(c,{}u)} attempts to output \\axiom{\\spad{u}} on \\aciom{\\spad{c}} in OpenMath.")) (|OMreceive| (((|Any|) (|OpenMathConnection|)) "\\spad{OMreceive(c)} reads an OpenMath object from connection \\axiom{\\spad{c}} and returns the appropriate AXIOM object.")))
NIL
NIL
-(-771 R S)
+(-773 R S)
((|constructor| (NIL "Lifting of maps to one-point completions. Date Created: 4 Oct 1989 Date Last Updated: 4 Oct 1989")) (|map| (((|OnePointCompletion| |#2|) (|Mapping| |#2| |#1|) (|OnePointCompletion| |#1|) (|OnePointCompletion| |#2|)) "\\spad{map(f,{} r,{} i)} lifts \\spad{f} and applies it to \\spad{r},{} assuming that \\spad{f}(infinity) = \\spad{i}.") (((|OnePointCompletion| |#2|) (|Mapping| |#2| |#1|) (|OnePointCompletion| |#1|)) "\\spad{map(f,{} r)} lifts \\spad{f} and applies it to \\spad{r},{} assuming that \\spad{f}(infinity) = infinity.")))
NIL
NIL
-(-772 R)
+(-774 R)
((|constructor| (NIL "Adjunction of a complex infinity to a set. Date Created: 4 Oct 1989 Date Last Updated: 1 Nov 1989")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(x)} returns \\spad{x} as a finite rational number if it is one,{} \"failed\" otherwise.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(x)} returns \\spad{x} as a finite rational number. Error: if \\spad{x} is not a rational number.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(x)} tests if \\spad{x} is a finite rational number.")) (|infinite?| (((|Boolean|) $) "\\spad{infinite?(x)} tests if \\spad{x} is infinite.")) (|finite?| (((|Boolean|) $) "\\spad{finite?(x)} tests if \\spad{x} is finite.")) (|infinity| (($) "\\spad{infinity()} returns infinity.")))
-((-4245 |has| |#1| (-784)))
-((|HasCategory| |#1| (QUOTE (-784))) (-3255 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-784)))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-508))) (-3255 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-21))))
-(-773 R)
+((-4247 |has| |#1| (-786)))
+((|HasCategory| |#1| (QUOTE (-786))) (-3321 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-786)))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-510))) (-3321 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-21))))
+(-775 R)
((|constructor| (NIL "Algebra of ADDITIVE operators over a ring.")))
-((-4243 |has| |#1| (-158)) (-4242 |has| |#1| (-158)) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))))
-(-774)
+((-4245 |has| |#1| (-160)) (-4244 |has| |#1| (-160)) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))))
+(-776)
((|constructor| (NIL "This package exports tools to create AXIOM Library information databases.")) (|getDatabase| (((|Database| (|IndexCard|)) (|String|)) "\\spad{getDatabase(\"char\")} returns a list of appropriate entries in the browser database. The legal values for \\spad{\"char\"} are \"o\" (operations),{} \\spad{\"k\"} (constructors),{} \\spad{\"d\"} (domains),{} \\spad{\"c\"} (categories) or \\spad{\"p\"} (packages).")))
NIL
NIL
-(-775)
+(-777)
((|numericalOptimization| (((|Result|) (|Record| (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |init| (|List| (|DoubleFloat|))) (|:| |lb| (|List| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |cf| (|List| (|Expression| (|DoubleFloat|)))) (|:| |ub| (|List| (|OrderedCompletion| (|DoubleFloat|)))))) "\\spad{numericalOptimization(args)} performs the optimization of the function given the strategy or method returned by \\axiomFun{measure}.") (((|Result|) (|Record| (|:| |lfn| (|List| (|Expression| (|DoubleFloat|)))) (|:| |init| (|List| (|DoubleFloat|))))) "\\spad{numericalOptimization(args)} performs the optimization of the function given the strategy or method returned by \\axiomFun{measure}.")) (|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |explanations| (|String|))) (|RoutinesTable|) (|Record| (|:| |lfn| (|List| (|Expression| (|DoubleFloat|)))) (|:| |init| (|List| (|DoubleFloat|))))) "\\spad{measure(R,{}args)} calculates an estimate of the ability of a particular method to solve an optimization problem. \\blankline This method may be either a specific NAG routine or a strategy (such as transforming the function from one which is difficult to one which is easier to solve). \\blankline It will call whichever agents are needed to perform analysis on the problem in order to calculate the measure. There is a parameter,{} labelled \\axiom{sofar},{} which would contain the best compatibility found so far.") (((|Record| (|:| |measure| (|Float|)) (|:| |explanations| (|String|))) (|RoutinesTable|) (|Record| (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |init| (|List| (|DoubleFloat|))) (|:| |lb| (|List| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |cf| (|List| (|Expression| (|DoubleFloat|)))) (|:| |ub| (|List| (|OrderedCompletion| (|DoubleFloat|)))))) "\\spad{measure(R,{}args)} calculates an estimate of the ability of a particular method to solve an optimization problem. \\blankline This method may be either a specific NAG routine or a strategy (such as transforming the function from one which is difficult to one which is easier to solve). \\blankline It will call whichever agents are needed to perform analysis on the problem in order to calculate the measure. There is a parameter,{} labelled \\axiom{sofar},{} which would contain the best compatibility found so far.")))
NIL
NIL
-(-776)
+(-778)
((|goodnessOfFit| (((|Result|) (|List| (|Expression| (|Float|))) (|List| (|Float|))) "\\spad{goodnessOfFit(lf,{}start)} is a top level ANNA function to check to goodness of fit of a least squares model \\spadignore{i.e.} the minimization of a set of functions,{} \\axiom{\\spad{lf}},{} of one or more variables without constraints. \\blankline The parameter \\axiom{\\spad{start}} is a list of the initial guesses of the values of the variables. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalOptimizationCategory} to get the name and other relevant information of the best \\axiom{measure} and then optimize the function on that \\axiom{domain}. It then calls the numerical routine \\axiomType{E04YCF} to get estimates of the variance-covariance matrix of the regression coefficients of the least-squares problem. \\blankline It thus returns both the results of the optimization and the variance-covariance calculation. goodnessOfFit(\\spad{lf},{}\\spad{start}) is a top level function to iterate over the \\axiom{domains} of \\axiomType{NumericalOptimizationCategory} to get the name and other relevant information of the best \\axiom{measure} and then optimize the function on that \\axiom{domain}. It then checks the goodness of fit of the least squares model.") (((|Result|) (|NumericalOptimizationProblem|)) "\\spad{goodnessOfFit(prob)} is a top level ANNA function to check to goodness of fit of a least squares model as defined within \\axiom{\\spad{prob}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalOptimizationCategory} to get the name and other relevant information of the best \\axiom{measure} and then optimize the function on that \\axiom{domain}. It then calls the numerical routine \\axiomType{E04YCF} to get estimates of the variance-covariance matrix of the regression coefficients of the least-squares problem. \\blankline It thus returns both the results of the optimization and the variance-covariance calculation.")) (|optimize| (((|Result|) (|List| (|Expression| (|Float|))) (|List| (|Float|))) "\\spad{optimize(lf,{}start)} is a top level ANNA function to minimize a set of functions,{} \\axiom{\\spad{lf}},{} of one or more variables without constraints \\spadignore{i.e.} a least-squares problem. \\blankline The parameter \\axiom{\\spad{start}} is a list of the initial guesses of the values of the variables. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalOptimizationCategory} to get the name and other relevant information of the best \\axiom{measure} and then optimize the function on that \\axiom{domain}.") (((|Result|) (|Expression| (|Float|)) (|List| (|Float|))) "\\spad{optimize(f,{}start)} is a top level ANNA function to minimize a function,{} \\axiom{\\spad{f}},{} of one or more variables without constraints. \\blankline The parameter \\axiom{\\spad{start}} is a list of the initial guesses of the values of the variables. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalOptimizationCategory} to get the name and other relevant information of the best \\axiom{measure} and then optimize the function on that \\axiom{domain}.") (((|Result|) (|Expression| (|Float|)) (|List| (|Float|)) (|List| (|OrderedCompletion| (|Float|))) (|List| (|OrderedCompletion| (|Float|)))) "\\spad{optimize(f,{}start,{}lower,{}upper)} is a top level ANNA function to minimize a function,{} \\axiom{\\spad{f}},{} of one or more variables with simple constraints. The bounds on the variables are defined in \\axiom{\\spad{lower}} and \\axiom{\\spad{upper}}. \\blankline The parameter \\axiom{\\spad{start}} is a list of the initial guesses of the values of the variables. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalOptimizationCategory} to get the name and other relevant information of the best \\axiom{measure} and then optimize the function on that \\axiom{domain}.") (((|Result|) (|Expression| (|Float|)) (|List| (|Float|)) (|List| (|OrderedCompletion| (|Float|))) (|List| (|Expression| (|Float|))) (|List| (|OrderedCompletion| (|Float|)))) "\\spad{optimize(f,{}start,{}lower,{}cons,{}upper)} is a top level ANNA function to minimize a function,{} \\axiom{\\spad{f}},{} of one or more variables with the given constraints. \\blankline These constraints may be simple constraints on the variables in which case \\axiom{\\spad{cons}} would be an empty list and the bounds on those variables defined in \\axiom{\\spad{lower}} and \\axiom{\\spad{upper}},{} or a mixture of simple,{} linear and non-linear constraints,{} where \\axiom{\\spad{cons}} contains the linear and non-linear constraints and the bounds on these are added to \\axiom{\\spad{upper}} and \\axiom{\\spad{lower}}. \\blankline The parameter \\axiom{\\spad{start}} is a list of the initial guesses of the values of the variables. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalOptimizationCategory} to get the name and other relevant information of the best \\axiom{measure} and then optimize the function on that \\axiom{domain}.") (((|Result|) (|NumericalOptimizationProblem|)) "\\spad{optimize(prob)} is a top level ANNA function to minimize a function or a set of functions with any constraints as defined within \\axiom{\\spad{prob}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalOptimizationCategory} to get the name and other relevant information of the best \\axiom{measure} and then optimize the function on that \\axiom{domain}.") (((|Result|) (|NumericalOptimizationProblem|) (|RoutinesTable|)) "\\spad{optimize(prob,{}routines)} is a top level ANNA function to minimize a function or a set of functions with any constraints as defined within \\axiom{\\spad{prob}}. \\blankline It iterates over the \\axiom{domains} listed in \\axiom{\\spad{routines}} of \\axiomType{NumericalOptimizationCategory} to get the name and other relevant information of the best \\axiom{measure} and then optimize the function on that \\axiom{domain}.")) (|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|)))) (|NumericalOptimizationProblem|) (|RoutinesTable|)) "\\spad{measure(prob,{}R)} is a top level ANNA function for identifying the most appropriate numerical routine from those in the routines table provided for solving the numerical optimization problem defined by \\axiom{\\spad{prob}} by checking various attributes of the functions and calculating a measure of compatibility of each routine to these attributes. \\blankline It calls each \\axiom{domain} listed in \\axiom{\\spad{R}} of \\axiom{category} \\axiomType{NumericalOptimizationCategory} in turn to calculate all measures and returns the best \\spadignore{i.e.} the name of the most appropriate domain and any other relevant information.") (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|)))) (|NumericalOptimizationProblem|)) "\\spad{measure(prob)} is a top level ANNA function for identifying the most appropriate numerical routine from those in the routines table provided for solving the numerical optimization problem defined by \\axiom{\\spad{prob}} by checking various attributes of the functions and calculating a measure of compatibility of each routine to these attributes. \\blankline It calls each \\axiom{domain} of \\axiom{category} \\axiomType{NumericalOptimizationCategory} in turn to calculate all measures and returns the best \\spadignore{i.e.} the name of the most appropriate domain and any other relevant information.")))
NIL
NIL
-(-777)
+(-779)
((|retract| (((|Union| (|:| |noa| (|Record| (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |init| (|List| (|DoubleFloat|))) (|:| |lb| (|List| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |cf| (|List| (|Expression| (|DoubleFloat|)))) (|:| |ub| (|List| (|OrderedCompletion| (|DoubleFloat|)))))) (|:| |lsa| (|Record| (|:| |lfn| (|List| (|Expression| (|DoubleFloat|)))) (|:| |init| (|List| (|DoubleFloat|)))))) $) "\\spad{retract(x)} \\undocumented{}")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(x)} \\undocumented{}") (($ (|Union| (|:| |noa| (|Record| (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |init| (|List| (|DoubleFloat|))) (|:| |lb| (|List| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |cf| (|List| (|Expression| (|DoubleFloat|)))) (|:| |ub| (|List| (|OrderedCompletion| (|DoubleFloat|)))))) (|:| |lsa| (|Record| (|:| |lfn| (|List| (|Expression| (|DoubleFloat|)))) (|:| |init| (|List| (|DoubleFloat|))))))) "\\spad{coerce(x)} \\undocumented{}") (($ (|Record| (|:| |lfn| (|List| (|Expression| (|DoubleFloat|)))) (|:| |init| (|List| (|DoubleFloat|))))) "\\spad{coerce(x)} \\undocumented{}") (($ (|Record| (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |init| (|List| (|DoubleFloat|))) (|:| |lb| (|List| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |cf| (|List| (|Expression| (|DoubleFloat|)))) (|:| |ub| (|List| (|OrderedCompletion| (|DoubleFloat|)))))) "\\spad{coerce(x)} \\undocumented{}")))
NIL
NIL
-(-778 R S)
+(-780 R S)
((|constructor| (NIL "Lifting of maps to ordered completions. Date Created: 4 Oct 1989 Date Last Updated: 4 Oct 1989")) (|map| (((|OrderedCompletion| |#2|) (|Mapping| |#2| |#1|) (|OrderedCompletion| |#1|) (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|)) "\\spad{map(f,{} r,{} p,{} m)} lifts \\spad{f} and applies it to \\spad{r},{} assuming that \\spad{f}(plusInfinity) = \\spad{p} and that \\spad{f}(minusInfinity) = \\spad{m}.") (((|OrderedCompletion| |#2|) (|Mapping| |#2| |#1|) (|OrderedCompletion| |#1|)) "\\spad{map(f,{} r)} lifts \\spad{f} and applies it to \\spad{r},{} assuming that \\spad{f}(plusInfinity) = plusInfinity and that \\spad{f}(minusInfinity) = minusInfinity.")))
NIL
NIL
-(-779 R)
+(-781 R)
((|constructor| (NIL "Adjunction of two real infinites quantities to a set. Date Created: 4 Oct 1989 Date Last Updated: 1 Nov 1989")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(x)} returns \\spad{x} as a finite rational number if it is one and \"failed\" otherwise.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(x)} returns \\spad{x} as a finite rational number. Error: if \\spad{x} cannot be so converted.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(x)} tests if \\spad{x} is a finite rational number.")) (|whatInfinity| (((|SingleInteger|) $) "\\spad{whatInfinity(x)} returns 0 if \\spad{x} is finite,{} 1 if \\spad{x} is +infinity,{} and \\spad{-1} if \\spad{x} is -infinity.")) (|infinite?| (((|Boolean|) $) "\\spad{infinite?(x)} tests if \\spad{x} is +infinity or -infinity,{}")) (|finite?| (((|Boolean|) $) "\\spad{finite?(x)} tests if \\spad{x} is finite.")) (|minusInfinity| (($) "\\spad{minusInfinity()} returns -infinity.")) (|plusInfinity| (($) "\\spad{plusInfinity()} returns +infinity.")))
-((-4245 |has| |#1| (-784)))
-((|HasCategory| |#1| (QUOTE (-784))) (-3255 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-784)))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-508))) (-3255 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-21))))
-(-780)
+((-4247 |has| |#1| (-786)))
+((|HasCategory| |#1| (QUOTE (-786))) (-3321 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-786)))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-510))) (-3321 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-21))))
+(-782)
((|constructor| (NIL "Ordered finite sets.")))
NIL
NIL
-(-781 -3765 S)
+(-783 -2951 S)
((|constructor| (NIL "\\indented{3}{This package provides ordering functions on vectors which} are suitable parameters for OrderedDirectProduct.")) (|reverseLex| (((|Boolean|) (|Vector| |#2|) (|Vector| |#2|)) "\\spad{reverseLex(v1,{}v2)} return \\spad{true} if the vector \\spad{v1} is less than the vector \\spad{v2} in the ordering which is total degree refined by the reverse lexicographic ordering.")) (|totalLex| (((|Boolean|) (|Vector| |#2|) (|Vector| |#2|)) "\\spad{totalLex(v1,{}v2)} return \\spad{true} if the vector \\spad{v1} is less than the vector \\spad{v2} in the ordering which is total degree refined by lexicographic ordering.")) (|pureLex| (((|Boolean|) (|Vector| |#2|) (|Vector| |#2|)) "\\spad{pureLex(v1,{}v2)} return \\spad{true} if the vector \\spad{v1} is less than the vector \\spad{v2} in the lexicographic ordering.")))
NIL
NIL
-(-782)
+(-784)
((|constructor| (NIL "Ordered sets which are also monoids,{} such that multiplication preserves the ordering. \\blankline")))
NIL
NIL
-(-783 S)
+(-785 S)
((|constructor| (NIL "Ordered sets which are also rings,{} that is,{} domains where the ring operations are compatible with the ordering. \\blankline")) (|abs| (($ $) "\\spad{abs(x)} returns the absolute value of \\spad{x}.")) (|sign| (((|Integer|) $) "\\spad{sign(x)} is 1 if \\spad{x} is positive,{} \\spad{-1} if \\spad{x} is negative,{} 0 if \\spad{x} equals 0.")) (|negative?| (((|Boolean|) $) "\\spad{negative?(x)} tests whether \\spad{x} is strictly less than 0.")) (|positive?| (((|Boolean|) $) "\\spad{positive?(x)} tests whether \\spad{x} is strictly greater than 0.")))
NIL
NIL
-(-784)
+(-786)
((|constructor| (NIL "Ordered sets which are also rings,{} that is,{} domains where the ring operations are compatible with the ordering. \\blankline")) (|abs| (($ $) "\\spad{abs(x)} returns the absolute value of \\spad{x}.")) (|sign| (((|Integer|) $) "\\spad{sign(x)} is 1 if \\spad{x} is positive,{} \\spad{-1} if \\spad{x} is negative,{} 0 if \\spad{x} equals 0.")) (|negative?| (((|Boolean|) $) "\\spad{negative?(x)} tests whether \\spad{x} is strictly less than 0.")) (|positive?| (((|Boolean|) $) "\\spad{positive?(x)} tests whether \\spad{x} is strictly greater than 0.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-785 S)
+(-787 S)
((|constructor| (NIL "The class of totally ordered sets,{} that is,{} sets such that for each pair of elements \\spad{(a,{}b)} exactly one of the following relations holds \\spad{a<b or a=b or b<a} and the relation is transitive,{} \\spadignore{i.e.} \\spad{a<b and b<c => a<c}.")) (|min| (($ $ $) "\\spad{min(x,{}y)} returns the minimum of \\spad{x} and \\spad{y} relative to \\spad{\"<\"}.")) (|max| (($ $ $) "\\spad{max(x,{}y)} returns the maximum of \\spad{x} and \\spad{y} relative to \\spad{\"<\"}.")) (<= (((|Boolean|) $ $) "\\spad{x <= y} is a less than or equal test.")) (>= (((|Boolean|) $ $) "\\spad{x >= y} is a greater than or equal test.")) (> (((|Boolean|) $ $) "\\spad{x > y} is a greater than test.")) (< (((|Boolean|) $ $) "\\spad{x < y} is a strict total ordering on the elements of the set.")))
NIL
NIL
-(-786)
+(-788)
((|constructor| (NIL "The class of totally ordered sets,{} that is,{} sets such that for each pair of elements \\spad{(a,{}b)} exactly one of the following relations holds \\spad{a<b or a=b or b<a} and the relation is transitive,{} \\spadignore{i.e.} \\spad{a<b and b<c => a<c}.")) (|min| (($ $ $) "\\spad{min(x,{}y)} returns the minimum of \\spad{x} and \\spad{y} relative to \\spad{\"<\"}.")) (|max| (($ $ $) "\\spad{max(x,{}y)} returns the maximum of \\spad{x} and \\spad{y} relative to \\spad{\"<\"}.")) (<= (((|Boolean|) $ $) "\\spad{x <= y} is a less than or equal test.")) (>= (((|Boolean|) $ $) "\\spad{x >= y} is a greater than or equal test.")) (> (((|Boolean|) $ $) "\\spad{x > y} is a greater than test.")) (< (((|Boolean|) $ $) "\\spad{x < y} is a strict total ordering on the elements of the set.")))
NIL
NIL
-(-787 S R)
+(-789 S R)
((|constructor| (NIL "This is the category of univariate skew polynomials over an Ore coefficient ring. The multiplication is given by \\spad{x a = \\sigma(a) x + \\delta a}. This category is an evolution of the types \\indented{2}{MonogenicLinearOperator,{} OppositeMonogenicLinearOperator,{} and} \\indented{2}{NonCommutativeOperatorDivision} developped by Jean Della Dora and Stephen \\spad{M}. Watt.")) (|leftLcm| (($ $ $) "\\spad{leftLcm(a,{}b)} computes the value \\spad{m} of lowest degree such that \\spad{m = aa*a = bb*b} for some values \\spad{aa} and \\spad{bb}. The value \\spad{m} is computed using right-division.")) (|rightExtendedGcd| (((|Record| (|:| |coef1| $) (|:| |coef2| $) (|:| |generator| $)) $ $) "\\spad{rightExtendedGcd(a,{}b)} returns \\spad{[c,{}d]} such that \\spad{g = c * a + d * b = rightGcd(a,{} b)}.")) (|rightGcd| (($ $ $) "\\spad{rightGcd(a,{}b)} computes the value \\spad{g} of highest degree such that \\indented{3}{\\spad{a = aa*g}} \\indented{3}{\\spad{b = bb*g}} for some values \\spad{aa} and \\spad{bb}. The value \\spad{g} is computed using right-division.")) (|rightExactQuotient| (((|Union| $ "failed") $ $) "\\spad{rightExactQuotient(a,{}b)} computes the value \\spad{q},{} if it exists such that \\spad{a = q*b}.")) (|rightRemainder| (($ $ $) "\\spad{rightRemainder(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{r} is returned.")) (|rightQuotient| (($ $ $) "\\spad{rightQuotient(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{q} is returned.")) (|rightDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{rightDivide(a,{}b)} returns the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``right division\\spad{''}.")) (|rightLcm| (($ $ $) "\\spad{rightLcm(a,{}b)} computes the value \\spad{m} of lowest degree such that \\spad{m = a*aa = b*bb} for some values \\spad{aa} and \\spad{bb}. The value \\spad{m} is computed using left-division.")) (|leftExtendedGcd| (((|Record| (|:| |coef1| $) (|:| |coef2| $) (|:| |generator| $)) $ $) "\\spad{leftExtendedGcd(a,{}b)} returns \\spad{[c,{}d]} such that \\spad{g = a * c + b * d = leftGcd(a,{} b)}.")) (|leftGcd| (($ $ $) "\\spad{leftGcd(a,{}b)} computes the value \\spad{g} of highest degree such that \\indented{3}{\\spad{a = g*aa}} \\indented{3}{\\spad{b = g*bb}} for some values \\spad{aa} and \\spad{bb}. The value \\spad{g} is computed using left-division.")) (|leftExactQuotient| (((|Union| $ "failed") $ $) "\\spad{leftExactQuotient(a,{}b)} computes the value \\spad{q},{} if it exists,{} \\indented{1}{such that \\spad{a = b*q}.}")) (|leftRemainder| (($ $ $) "\\spad{leftRemainder(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{r} is returned.")) (|leftQuotient| (($ $ $) "\\spad{leftQuotient(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{q} is returned.")) (|leftDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{leftDivide(a,{}b)} returns the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``left division\\spad{''}.")) (|primitivePart| (($ $) "\\spad{primitivePart(l)} returns \\spad{l0} such that \\spad{l = a * l0} for some a in \\spad{R},{} and \\spad{content(l0) = 1}.")) (|content| ((|#2| $) "\\spad{content(l)} returns the \\spad{gcd} of all the coefficients of \\spad{l}.")) (|monicRightDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{monicRightDivide(a,{}b)} returns the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. \\spad{b} must be monic. This process is called ``right division\\spad{''}.")) (|monicLeftDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{monicLeftDivide(a,{}b)} returns the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. \\spad{b} must be monic. This process is called ``left division\\spad{''}.")) (|exquo| (((|Union| $ "failed") $ |#2|) "\\spad{exquo(l,{} a)} returns the exact quotient of \\spad{l} by a,{} returning \\axiom{\"failed\"} if this is not possible.")) (|apply| ((|#2| $ |#2| |#2|) "\\spad{apply(p,{} c,{} m)} returns \\spad{p(m)} where the action is given by \\spad{x m = c sigma(m) + delta(m)}.")) (|coefficients| (((|List| |#2|) $) "\\spad{coefficients(l)} returns the list of all the nonzero coefficients of \\spad{l}.")) (|monomial| (($ |#2| (|NonNegativeInteger|)) "\\spad{monomial(c,{}k)} produces \\spad{c} times the \\spad{k}-th power of the generating operator,{} \\spad{monomial(1,{}1)}.")) (|coefficient| ((|#2| $ (|NonNegativeInteger|)) "\\spad{coefficient(l,{}k)} is \\spad{a(k)} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|reductum| (($ $) "\\spad{reductum(l)} is \\spad{l - monomial(a(n),{}n)} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|leadingCoefficient| ((|#2| $) "\\spad{leadingCoefficient(l)} is \\spad{a(n)} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|minimumDegree| (((|NonNegativeInteger|) $) "\\spad{minimumDegree(l)} is the smallest \\spad{k} such that \\spad{a(k) ~= 0} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(l)} is \\spad{n} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")))
NIL
-((|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-158))))
-(-788 R)
+((|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-160))))
+(-790 R)
((|constructor| (NIL "This is the category of univariate skew polynomials over an Ore coefficient ring. The multiplication is given by \\spad{x a = \\sigma(a) x + \\delta a}. This category is an evolution of the types \\indented{2}{MonogenicLinearOperator,{} OppositeMonogenicLinearOperator,{} and} \\indented{2}{NonCommutativeOperatorDivision} developped by Jean Della Dora and Stephen \\spad{M}. Watt.")) (|leftLcm| (($ $ $) "\\spad{leftLcm(a,{}b)} computes the value \\spad{m} of lowest degree such that \\spad{m = aa*a = bb*b} for some values \\spad{aa} and \\spad{bb}. The value \\spad{m} is computed using right-division.")) (|rightExtendedGcd| (((|Record| (|:| |coef1| $) (|:| |coef2| $) (|:| |generator| $)) $ $) "\\spad{rightExtendedGcd(a,{}b)} returns \\spad{[c,{}d]} such that \\spad{g = c * a + d * b = rightGcd(a,{} b)}.")) (|rightGcd| (($ $ $) "\\spad{rightGcd(a,{}b)} computes the value \\spad{g} of highest degree such that \\indented{3}{\\spad{a = aa*g}} \\indented{3}{\\spad{b = bb*g}} for some values \\spad{aa} and \\spad{bb}. The value \\spad{g} is computed using right-division.")) (|rightExactQuotient| (((|Union| $ "failed") $ $) "\\spad{rightExactQuotient(a,{}b)} computes the value \\spad{q},{} if it exists such that \\spad{a = q*b}.")) (|rightRemainder| (($ $ $) "\\spad{rightRemainder(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{r} is returned.")) (|rightQuotient| (($ $ $) "\\spad{rightQuotient(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{q} is returned.")) (|rightDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{rightDivide(a,{}b)} returns the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``right division\\spad{''}.")) (|rightLcm| (($ $ $) "\\spad{rightLcm(a,{}b)} computes the value \\spad{m} of lowest degree such that \\spad{m = a*aa = b*bb} for some values \\spad{aa} and \\spad{bb}. The value \\spad{m} is computed using left-division.")) (|leftExtendedGcd| (((|Record| (|:| |coef1| $) (|:| |coef2| $) (|:| |generator| $)) $ $) "\\spad{leftExtendedGcd(a,{}b)} returns \\spad{[c,{}d]} such that \\spad{g = a * c + b * d = leftGcd(a,{} b)}.")) (|leftGcd| (($ $ $) "\\spad{leftGcd(a,{}b)} computes the value \\spad{g} of highest degree such that \\indented{3}{\\spad{a = g*aa}} \\indented{3}{\\spad{b = g*bb}} for some values \\spad{aa} and \\spad{bb}. The value \\spad{g} is computed using left-division.")) (|leftExactQuotient| (((|Union| $ "failed") $ $) "\\spad{leftExactQuotient(a,{}b)} computes the value \\spad{q},{} if it exists,{} \\indented{1}{such that \\spad{a = b*q}.}")) (|leftRemainder| (($ $ $) "\\spad{leftRemainder(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{r} is returned.")) (|leftQuotient| (($ $ $) "\\spad{leftQuotient(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{q} is returned.")) (|leftDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{leftDivide(a,{}b)} returns the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``left division\\spad{''}.")) (|primitivePart| (($ $) "\\spad{primitivePart(l)} returns \\spad{l0} such that \\spad{l = a * l0} for some a in \\spad{R},{} and \\spad{content(l0) = 1}.")) (|content| ((|#1| $) "\\spad{content(l)} returns the \\spad{gcd} of all the coefficients of \\spad{l}.")) (|monicRightDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{monicRightDivide(a,{}b)} returns the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. \\spad{b} must be monic. This process is called ``right division\\spad{''}.")) (|monicLeftDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{monicLeftDivide(a,{}b)} returns the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. \\spad{b} must be monic. This process is called ``left division\\spad{''}.")) (|exquo| (((|Union| $ "failed") $ |#1|) "\\spad{exquo(l,{} a)} returns the exact quotient of \\spad{l} by a,{} returning \\axiom{\"failed\"} if this is not possible.")) (|apply| ((|#1| $ |#1| |#1|) "\\spad{apply(p,{} c,{} m)} returns \\spad{p(m)} where the action is given by \\spad{x m = c sigma(m) + delta(m)}.")) (|coefficients| (((|List| |#1|) $) "\\spad{coefficients(l)} returns the list of all the nonzero coefficients of \\spad{l}.")) (|monomial| (($ |#1| (|NonNegativeInteger|)) "\\spad{monomial(c,{}k)} produces \\spad{c} times the \\spad{k}-th power of the generating operator,{} \\spad{monomial(1,{}1)}.")) (|coefficient| ((|#1| $ (|NonNegativeInteger|)) "\\spad{coefficient(l,{}k)} is \\spad{a(k)} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|reductum| (($ $) "\\spad{reductum(l)} is \\spad{l - monomial(a(n),{}n)} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(l)} is \\spad{a(n)} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|minimumDegree| (((|NonNegativeInteger|) $) "\\spad{minimumDegree(l)} is the smallest \\spad{k} such that \\spad{a(k) ~= 0} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(l)} is \\spad{n} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")))
-((-4242 . T) (-4243 . T) (-4245 . T))
+((-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-789 R C)
+(-791 R C)
((|constructor| (NIL "\\spad{UnivariateSkewPolynomialCategoryOps} provides products and \\indented{1}{divisions of univariate skew polynomials.}")) (|rightDivide| (((|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2| (|Automorphism| |#1|)) "\\spad{rightDivide(a,{} b,{} sigma)} returns the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``right division\\spad{''}. \\spad{\\sigma} is the morphism to use.")) (|leftDivide| (((|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2| (|Automorphism| |#1|)) "\\spad{leftDivide(a,{} b,{} sigma)} returns the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``left division\\spad{''}. \\spad{\\sigma} is the morphism to use.")) (|monicRightDivide| (((|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2| (|Automorphism| |#1|)) "\\spad{monicRightDivide(a,{} b,{} sigma)} returns the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. \\spad{b} must be monic. This process is called ``right division\\spad{''}. \\spad{\\sigma} is the morphism to use.")) (|monicLeftDivide| (((|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2| (|Automorphism| |#1|)) "\\spad{monicLeftDivide(a,{} b,{} sigma)} returns the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. \\spad{b} must be monic. This process is called ``left division\\spad{''}. \\spad{\\sigma} is the morphism to use.")) (|apply| ((|#1| |#2| |#1| |#1| (|Automorphism| |#1|) (|Mapping| |#1| |#1|)) "\\spad{apply(p,{} c,{} m,{} sigma,{} delta)} returns \\spad{p(m)} where the action is given by \\spad{x m = c sigma(m) + delta(m)}.")) (|times| ((|#2| |#2| |#2| (|Automorphism| |#1|) (|Mapping| |#1| |#1|)) "\\spad{times(p,{} q,{} sigma,{} delta)} returns \\spad{p * q}. \\spad{\\sigma} and \\spad{\\delta} are the maps to use.")))
NIL
-((|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515))))
-(-790 R |sigma| -3414)
+((|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517))))
+(-792 R |sigma| -2576)
((|constructor| (NIL "This is the domain of sparse univariate skew polynomials over an Ore coefficient field. The multiplication is given by \\spad{x a = \\sigma(a) x + \\delta a}.")) (|outputForm| (((|OutputForm|) $ (|OutputForm|)) "\\spad{outputForm(p,{} x)} returns the output form of \\spad{p} using \\spad{x} for the otherwise anonymous variable.")))
-((-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-339))))
-(-791 |x| R |sigma| -3414)
+((-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-341))))
+(-793 |x| R |sigma| -2576)
((|constructor| (NIL "This is the domain of univariate skew polynomials over an Ore coefficient field in a named variable. The multiplication is given by \\spad{x a = \\sigma(a) x + \\delta a}.")) (|coerce| (($ (|Variable| |#1|)) "\\spad{coerce(x)} returns \\spad{x} as a skew-polynomial.")))
-((-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-339))))
-(-792 R)
+((-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-341))))
+(-794 R)
((|constructor| (NIL "This package provides orthogonal polynomials as functions on a ring.")) (|legendreP| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{legendreP(n,{}x)} is the \\spad{n}-th Legendre polynomial,{} \\spad{P[n](x)}. These are defined by \\spad{1/sqrt(1-2*x*t+t**2) = sum(P[n](x)*t**n,{} n = 0..)}.")) (|laguerreL| ((|#1| (|NonNegativeInteger|) (|NonNegativeInteger|) |#1|) "\\spad{laguerreL(m,{}n,{}x)} is the associated Laguerre polynomial,{} \\spad{L<m>[n](x)}. This is the \\spad{m}-th derivative of \\spad{L[n](x)}.") ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{laguerreL(n,{}x)} is the \\spad{n}-th Laguerre polynomial,{} \\spad{L[n](x)}. These are defined by \\spad{exp(-t*x/(1-t))/(1-t) = sum(L[n](x)*t**n/n!,{} n = 0..)}.")) (|hermiteH| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{hermiteH(n,{}x)} is the \\spad{n}-th Hermite polynomial,{} \\spad{H[n](x)}. These are defined by \\spad{exp(2*t*x-t**2) = sum(H[n](x)*t**n/n!,{} n = 0..)}.")) (|chebyshevU| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{chebyshevU(n,{}x)} is the \\spad{n}-th Chebyshev polynomial of the second kind,{} \\spad{U[n](x)}. These are defined by \\spad{1/(1-2*t*x+t**2) = sum(T[n](x) *t**n,{} n = 0..)}.")) (|chebyshevT| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{chebyshevT(n,{}x)} is the \\spad{n}-th Chebyshev polynomial of the first kind,{} \\spad{T[n](x)}. These are defined by \\spad{(1-t*x)/(1-2*t*x+t**2) = sum(T[n](x) *t**n,{} n = 0..)}.")))
NIL
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))))
-(-793)
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))))
+(-795)
((|constructor| (NIL "\\indented{1}{Author : Larry Lambe} Date created : 14 August 1988 Date Last Updated : 11 March 1991 Description : A domain used in order to take the free \\spad{R}-module on the Integers \\spad{I}. This is actually the forgetful functor from OrderedRings to OrderedSets applied to \\spad{I}")) (|value| (((|Integer|) $) "\\spad{value(x)} returns the integer associated with \\spad{x}")) (|coerce| (($ (|Integer|)) "\\spad{coerce(i)} returns the element corresponding to \\spad{i}")))
NIL
NIL
-(-794)
+(-796)
((|constructor| (NIL "This domain is used to create and manipulate mathematical expressions for output. It is intended to provide an insulating layer between the expression rendering software (\\spadignore{e.g.} TeX,{} or Script) and the output coercions in the various domains.")) (SEGMENT (($ $) "\\spad{SEGMENT(x)} creates the prefix form: \\spad{x..}.") (($ $ $) "\\spad{SEGMENT(x,{}y)} creates the infix form: \\spad{x..y}.")) (|not| (($ $) "\\spad{not f} creates the equivalent prefix form.")) (|or| (($ $ $) "\\spad{f or g} creates the equivalent infix form.")) (|and| (($ $ $) "\\spad{f and g} creates the equivalent infix form.")) (|exquo| (($ $ $) "\\spad{exquo(f,{}g)} creates the equivalent infix form.")) (|quo| (($ $ $) "\\spad{f quo g} creates the equivalent infix form.")) (|rem| (($ $ $) "\\spad{f rem g} creates the equivalent infix form.")) (|div| (($ $ $) "\\spad{f div g} creates the equivalent infix form.")) (** (($ $ $) "\\spad{f ** g} creates the equivalent infix form.")) (/ (($ $ $) "\\spad{f / g} creates the equivalent infix form.")) (* (($ $ $) "\\spad{f * g} creates the equivalent infix form.")) (- (($ $) "\\spad{- f} creates the equivalent prefix form.") (($ $ $) "\\spad{f - g} creates the equivalent infix form.")) (+ (($ $ $) "\\spad{f + g} creates the equivalent infix form.")) (>= (($ $ $) "\\spad{f >= g} creates the equivalent infix form.")) (<= (($ $ $) "\\spad{f <= g} creates the equivalent infix form.")) (> (($ $ $) "\\spad{f > g} creates the equivalent infix form.")) (< (($ $ $) "\\spad{f < g} creates the equivalent infix form.")) (~= (($ $ $) "\\spad{f ~= g} creates the equivalent infix form.")) (= (($ $ $) "\\spad{f = g} creates the equivalent infix form.")) (|blankSeparate| (($ (|List| $)) "\\spad{blankSeparate(l)} creates the form separating the elements of \\spad{l} by blanks.")) (|semicolonSeparate| (($ (|List| $)) "\\spad{semicolonSeparate(l)} creates the form separating the elements of \\spad{l} by semicolons.")) (|commaSeparate| (($ (|List| $)) "\\spad{commaSeparate(l)} creates the form separating the elements of \\spad{l} by commas.")) (|pile| (($ (|List| $)) "\\spad{pile(l)} creates the form consisting of the elements of \\spad{l} which displays as a pile,{} \\spadignore{i.e.} the elements begin on a new line and are indented right to the same margin.")) (|paren| (($ (|List| $)) "\\spad{paren(lf)} creates the form separating the elements of \\spad{lf} by commas and encloses the result in parentheses.") (($ $) "\\spad{paren(f)} creates the form enclosing \\spad{f} in parentheses.")) (|bracket| (($ (|List| $)) "\\spad{bracket(lf)} creates the form separating the elements of \\spad{lf} by commas and encloses the result in square brackets.") (($ $) "\\spad{bracket(f)} creates the form enclosing \\spad{f} in square brackets.")) (|brace| (($ (|List| $)) "\\spad{brace(lf)} creates the form separating the elements of \\spad{lf} by commas and encloses the result in curly brackets.") (($ $) "\\spad{brace(f)} creates the form enclosing \\spad{f} in braces (curly brackets).")) (|int| (($ $ $ $) "\\spad{int(expr,{}lowerlimit,{}upperlimit)} creates the form prefixing \\spad{expr} by an integral sign with both a \\spad{lowerlimit} and \\spad{upperlimit}.") (($ $ $) "\\spad{int(expr,{}lowerlimit)} creates the form prefixing \\spad{expr} by an integral sign with a \\spad{lowerlimit}.") (($ $) "\\spad{int(expr)} creates the form prefixing \\spad{expr} with an integral sign.")) (|prod| (($ $ $ $) "\\spad{prod(expr,{}lowerlimit,{}upperlimit)} creates the form prefixing \\spad{expr} by a capital \\spad{pi} with both a \\spad{lowerlimit} and \\spad{upperlimit}.") (($ $ $) "\\spad{prod(expr,{}lowerlimit)} creates the form prefixing \\spad{expr} by a capital \\spad{pi} with a \\spad{lowerlimit}.") (($ $) "\\spad{prod(expr)} creates the form prefixing \\spad{expr} by a capital \\spad{pi}.")) (|sum| (($ $ $ $) "\\spad{sum(expr,{}lowerlimit,{}upperlimit)} creates the form prefixing \\spad{expr} by a capital sigma with both a \\spad{lowerlimit} and \\spad{upperlimit}.") (($ $ $) "\\spad{sum(expr,{}lowerlimit)} creates the form prefixing \\spad{expr} by a capital sigma with a \\spad{lowerlimit}.") (($ $) "\\spad{sum(expr)} creates the form prefixing \\spad{expr} by a capital sigma.")) (|overlabel| (($ $ $) "\\spad{overlabel(x,{}f)} creates the form \\spad{f} with \\spad{\"x} overbar\" over the top.")) (|overbar| (($ $) "\\spad{overbar(f)} creates the form \\spad{f} with an overbar.")) (|prime| (($ $ (|NonNegativeInteger|)) "\\spad{prime(f,{}n)} creates the form \\spad{f} followed by \\spad{n} primes.") (($ $) "\\spad{prime(f)} creates the form \\spad{f} followed by a suffix prime (single quote).")) (|dot| (($ $ (|NonNegativeInteger|)) "\\spad{dot(f,{}n)} creates the form \\spad{f} with \\spad{n} dots overhead.") (($ $) "\\spad{dot(f)} creates the form with a one dot overhead.")) (|quote| (($ $) "\\spad{quote(f)} creates the form \\spad{f} with a prefix quote.")) (|supersub| (($ $ (|List| $)) "\\spad{supersub(a,{}[sub1,{}super1,{}sub2,{}super2,{}...])} creates a form with each subscript aligned under each superscript.")) (|scripts| (($ $ (|List| $)) "\\spad{scripts(f,{} [sub,{} super,{} presuper,{} presub])} \\indented{1}{creates a form for \\spad{f} with scripts on all 4 corners.}")) (|presuper| (($ $ $) "\\spad{presuper(f,{}n)} creates a form for \\spad{f} presuperscripted by \\spad{n}.")) (|presub| (($ $ $) "\\spad{presub(f,{}n)} creates a form for \\spad{f} presubscripted by \\spad{n}.")) (|super| (($ $ $) "\\spad{super(f,{}n)} creates a form for \\spad{f} superscripted by \\spad{n}.")) (|sub| (($ $ $) "\\spad{sub(f,{}n)} creates a form for \\spad{f} subscripted by \\spad{n}.")) (|binomial| (($ $ $) "\\spad{binomial(n,{}m)} creates a form for the binomial coefficient of \\spad{n} and \\spad{m}.")) (|differentiate| (($ $ (|NonNegativeInteger|)) "\\spad{differentiate(f,{}n)} creates a form for the \\spad{n}th derivative of \\spad{f},{} \\spadignore{e.g.} \\spad{f'},{} \\spad{f''},{} \\spad{f'''},{} \\spad{\"f} super \\spad{iv}\".")) (|rarrow| (($ $ $) "\\spad{rarrow(f,{}g)} creates a form for the mapping \\spad{f -> g}.")) (|assign| (($ $ $) "\\spad{assign(f,{}g)} creates a form for the assignment \\spad{f := g}.")) (|slash| (($ $ $) "\\spad{slash(f,{}g)} creates a form for the horizontal fraction of \\spad{f} over \\spad{g}.")) (|over| (($ $ $) "\\spad{over(f,{}g)} creates a form for the vertical fraction of \\spad{f} over \\spad{g}.")) (|root| (($ $ $) "\\spad{root(f,{}n)} creates a form for the \\spad{n}th root of form \\spad{f}.") (($ $) "\\spad{root(f)} creates a form for the square root of form \\spad{f}.")) (|zag| (($ $ $) "\\spad{zag(f,{}g)} creates a form for the continued fraction form for \\spad{f} over \\spad{g}.")) (|matrix| (($ (|List| (|List| $))) "\\spad{matrix(llf)} makes \\spad{llf} (a list of lists of forms) into a form which displays as a matrix.")) (|box| (($ $) "\\spad{box(f)} encloses \\spad{f} in a box.")) (|label| (($ $ $) "\\spad{label(n,{}f)} gives form \\spad{f} an equation label \\spad{n}.")) (|string| (($ $) "\\spad{string(f)} creates \\spad{f} with string quotes.")) (|elt| (($ $ (|List| $)) "\\spad{elt(op,{}l)} creates a form for application of \\spad{op} to list of arguments \\spad{l}.")) (|infix?| (((|Boolean|) $) "\\spad{infix?(op)} returns \\spad{true} if \\spad{op} is an infix operator,{} and \\spad{false} otherwise.")) (|postfix| (($ $ $) "\\spad{postfix(op,{} a)} creates a form which prints as: a \\spad{op}.")) (|infix| (($ $ $ $) "\\spad{infix(op,{} a,{} b)} creates a form which prints as: a \\spad{op} \\spad{b}.") (($ $ (|List| $)) "\\spad{infix(f,{}l)} creates a form depicting the \\spad{n}-ary application of infix operation \\spad{f} to a tuple of arguments \\spad{l}.")) (|prefix| (($ $ (|List| $)) "\\spad{prefix(f,{}l)} creates a form depicting the \\spad{n}-ary prefix application of \\spad{f} to a tuple of arguments given by list \\spad{l}.")) (|vconcat| (($ (|List| $)) "\\spad{vconcat(u)} vertically concatenates all forms in list \\spad{u}.") (($ $ $) "\\spad{vconcat(f,{}g)} vertically concatenates forms \\spad{f} and \\spad{g}.")) (|hconcat| (($ (|List| $)) "\\spad{hconcat(u)} horizontally concatenates all forms in list \\spad{u}.") (($ $ $) "\\spad{hconcat(f,{}g)} horizontally concatenate forms \\spad{f} and \\spad{g}.")) (|center| (($ $) "\\spad{center(f)} centers form \\spad{f} in total space.") (($ $ (|Integer|)) "\\spad{center(f,{}n)} centers form \\spad{f} within space of width \\spad{n}.")) (|right| (($ $) "\\spad{right(f)} right-justifies form \\spad{f} in total space.") (($ $ (|Integer|)) "\\spad{right(f,{}n)} right-justifies form \\spad{f} within space of width \\spad{n}.")) (|left| (($ $) "\\spad{left(f)} left-justifies form \\spad{f} in total space.") (($ $ (|Integer|)) "\\spad{left(f,{}n)} left-justifies form \\spad{f} within space of width \\spad{n}.")) (|rspace| (($ (|Integer|) (|Integer|)) "\\spad{rspace(n,{}m)} creates rectangular white space,{} \\spad{n} wide by \\spad{m} high.")) (|vspace| (($ (|Integer|)) "\\spad{vspace(n)} creates white space of height \\spad{n}.")) (|hspace| (($ (|Integer|)) "\\spad{hspace(n)} creates white space of width \\spad{n}.")) (|superHeight| (((|Integer|) $) "\\spad{superHeight(f)} returns the height of form \\spad{f} above the base line.")) (|subHeight| (((|Integer|) $) "\\spad{subHeight(f)} returns the height of form \\spad{f} below the base line.")) (|height| (((|Integer|)) "\\spad{height()} returns the height of the display area (an integer).") (((|Integer|) $) "\\spad{height(f)} returns the height of form \\spad{f} (an integer).")) (|width| (((|Integer|)) "\\spad{width()} returns the width of the display area (an integer).") (((|Integer|) $) "\\spad{width(f)} returns the width of form \\spad{f} (an integer).")) (|empty| (($) "\\spad{empty()} creates an empty form.")) (|outputForm| (($ (|DoubleFloat|)) "\\spad{outputForm(sf)} creates an form for small float \\spad{sf}.") (($ (|String|)) "\\spad{outputForm(s)} creates an form for string \\spad{s}.") (($ (|Symbol|)) "\\spad{outputForm(s)} creates an form for symbol \\spad{s}.") (($ (|Integer|)) "\\spad{outputForm(n)} creates an form for integer \\spad{n}.")) (|messagePrint| (((|Void|) (|String|)) "\\spad{messagePrint(s)} prints \\spad{s} without string quotes. Note: \\spad{messagePrint(s)} is equivalent to \\spad{print message(s)}.")) (|message| (($ (|String|)) "\\spad{message(s)} creates an form with no string quotes from string \\spad{s}.")) (|print| (((|Void|) $) "\\spad{print(u)} prints the form \\spad{u}.")))
NIL
NIL
-(-795)
+(-797)
((|constructor| (NIL "OutPackage allows pretty-printing from programs.")) (|outputList| (((|Void|) (|List| (|Any|))) "\\spad{outputList(l)} displays the concatenated components of the list \\spad{l} on the ``algebra output\\spad{''} stream,{} as defined by \\spadsyscom{set output algebra}; quotes are stripped from strings.")) (|output| (((|Void|) (|String|) (|OutputForm|)) "\\spad{output(s,{}x)} displays the string \\spad{s} followed by the form \\spad{x} on the ``algebra output\\spad{''} stream,{} as defined by \\spadsyscom{set output algebra}.") (((|Void|) (|OutputForm|)) "\\spad{output(x)} displays the output form \\spad{x} on the ``algebra output\\spad{''} stream,{} as defined by \\spadsyscom{set output algebra}.") (((|Void|) (|String|)) "\\spad{output(s)} displays the string \\spad{s} on the ``algebra output\\spad{''} stream,{} as defined by \\spadsyscom{set output algebra}.")))
NIL
NIL
-(-796 |VariableList|)
+(-798 |VariableList|)
((|constructor| (NIL "This domain implements ordered variables")) (|variable| (((|Union| $ "failed") (|Symbol|)) "\\spad{variable(s)} returns a member of the variable set or failed")))
NIL
NIL
-(-797 R |vl| |wl| |wtlevel|)
+(-799 R |vl| |wl| |wtlevel|)
((|constructor| (NIL "This domain represents truncated weighted polynomials over the \"Polynomial\" type. The variables must be specified,{} as must the weights. The representation is sparse in the sense that only non-zero terms are represented.")) (|changeWeightLevel| (((|Void|) (|NonNegativeInteger|)) "\\spad{changeWeightLevel(n)} This changes the weight level to the new value given: \\spad{NB:} previously calculated terms are not affected")) (/ (((|Union| $ "failed") $ $) "\\spad{x/y} division (only works if minimum weight of divisor is zero,{} and if \\spad{R} is a Field)")) (|coerce| (($ (|Polynomial| |#1|)) "\\spad{coerce(p)} coerces a Polynomial(\\spad{R}) into Weighted form,{} applying weights and ignoring terms") (((|Polynomial| |#1|) $) "\\spad{coerce(p)} converts back into a Polynomial(\\spad{R}),{} ignoring weights")))
-((-4243 |has| |#1| (-158)) (-4242 |has| |#1| (-158)) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))))
-(-798 R PS UP)
+((-4245 |has| |#1| (-160)) (-4244 |has| |#1| (-160)) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))))
+(-800 R PS UP)
((|constructor| (NIL "\\indented{1}{This package computes reliable Pad&ea. approximants using} a generalized Viskovatov continued fraction algorithm. Authors: Burge,{} Hassner & Watt. Date Created: April 1987 Date Last Updated: 12 April 1990 Keywords: Pade,{} series Examples: References: \\indented{2}{\"Pade Approximants,{} Part I: Basic Theory\",{} Baker & Graves-Morris.}")) (|padecf| (((|Union| (|ContinuedFraction| |#3|) "failed") (|NonNegativeInteger|) (|NonNegativeInteger|) |#2| |#2|) "\\spad{padecf(nd,{}dd,{}ns,{}ds)} computes the approximant as a continued fraction of polynomials (if it exists) for arguments \\spad{nd} (numerator degree of approximant),{} \\spad{dd} (denominator degree of approximant),{} \\spad{ns} (numerator series of function),{} and \\spad{ds} (denominator series of function).")) (|pade| (((|Union| (|Fraction| |#3|) "failed") (|NonNegativeInteger|) (|NonNegativeInteger|) |#2| |#2|) "\\spad{pade(nd,{}dd,{}ns,{}ds)} computes the approximant as a quotient of polynomials (if it exists) for arguments \\spad{nd} (numerator degree of approximant),{} \\spad{dd} (denominator degree of approximant),{} \\spad{ns} (numerator series of function),{} and \\spad{ds} (denominator series of function).")))
NIL
NIL
-(-799 R |x| |pt|)
+(-801 R |x| |pt|)
((|constructor| (NIL "\\indented{1}{This package computes reliable Pad&ea. approximants using} a generalized Viskovatov continued fraction algorithm. Authors: Trager,{}Burge,{} Hassner & Watt. Date Created: April 1987 Date Last Updated: 12 April 1990 Keywords: Pade,{} series Examples: References: \\indented{2}{\"Pade Approximants,{} Part I: Basic Theory\",{} Baker & Graves-Morris.}")) (|pade| (((|Union| (|Fraction| (|UnivariatePolynomial| |#2| |#1|)) "failed") (|NonNegativeInteger|) (|NonNegativeInteger|) (|UnivariateTaylorSeries| |#1| |#2| |#3|)) "\\spad{pade(nd,{}dd,{}s)} computes the quotient of polynomials (if it exists) with numerator degree at most \\spad{nd} and denominator degree at most \\spad{dd} which matches the series \\spad{s} to order \\spad{nd + dd}.") (((|Union| (|Fraction| (|UnivariatePolynomial| |#2| |#1|)) "failed") (|NonNegativeInteger|) (|NonNegativeInteger|) (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|UnivariateTaylorSeries| |#1| |#2| |#3|)) "\\spad{pade(nd,{}dd,{}ns,{}ds)} computes the approximant as a quotient of polynomials (if it exists) for arguments \\spad{nd} (numerator degree of approximant),{} \\spad{dd} (denominator degree of approximant),{} \\spad{ns} (numerator series of function),{} and \\spad{ds} (denominator series of function).")))
NIL
NIL
-(-800 |p|)
+(-802 |p|)
((|constructor| (NIL "This is the catefory of stream-based representations of \\indented{2}{the \\spad{p}-adic integers.}")) (|root| (($ (|SparseUnivariatePolynomial| (|Integer|)) (|Integer|)) "\\spad{root(f,{}a)} returns a root of the polynomial \\spad{f}. Argument \\spad{a} must be a root of \\spad{f} \\spad{(mod p)}.")) (|sqrt| (($ $ (|Integer|)) "\\spad{sqrt(b,{}a)} returns a square root of \\spad{b}. Argument \\spad{a} is a square root of \\spad{b} \\spad{(mod p)}.")) (|approximate| (((|Integer|) $ (|Integer|)) "\\spad{approximate(x,{}n)} returns an integer \\spad{y} such that \\spad{y = x (mod p^n)} when \\spad{n} is positive,{} and 0 otherwise.")) (|quotientByP| (($ $) "\\spad{quotientByP(x)} returns \\spad{b},{} where \\spad{x = a + b p}.")) (|moduloP| (((|Integer|) $) "\\spad{modulo(x)} returns a,{} where \\spad{x = a + b p}.")) (|modulus| (((|Integer|)) "\\spad{modulus()} returns the value of \\spad{p}.")) (|complete| (($ $) "\\spad{complete(x)} forces the computation of all digits.")) (|extend| (($ $ (|Integer|)) "\\spad{extend(x,{}n)} forces the computation of digits up to order \\spad{n}.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(x)} returns the exponent of the highest power of \\spad{p} dividing \\spad{x}.")) (|digits| (((|Stream| (|Integer|)) $) "\\spad{digits(x)} returns a stream of \\spad{p}-adic digits of \\spad{x}.")))
-((-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-801 |p|)
+(-803 |p|)
((|constructor| (NIL "Stream-based implementation of \\spad{Zp:} \\spad{p}-adic numbers are represented as sum(\\spad{i} = 0..,{} a[\\spad{i}] * p^i),{} where the a[\\spad{i}] lie in 0,{}1,{}...,{}(\\spad{p} - 1).")))
-((-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-802 |p|)
+(-804 |p|)
((|constructor| (NIL "Stream-based implementation of \\spad{Qp:} numbers are represented as sum(\\spad{i} = \\spad{k}..,{} a[\\spad{i}] * p^i) where the a[\\spad{i}] lie in 0,{}1,{}...,{}(\\spad{p} - 1).")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| (-801 |#1|) (QUOTE (-840))) (|HasCategory| (-801 |#1|) (LIST (QUOTE -964) (QUOTE (-1087)))) (|HasCategory| (-801 |#1|) (QUOTE (-134))) (|HasCategory| (-801 |#1|) (QUOTE (-136))) (|HasCategory| (-801 |#1|) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| (-801 |#1|) (QUOTE (-949))) (|HasCategory| (-801 |#1|) (QUOTE (-759))) (-3255 (|HasCategory| (-801 |#1|) (QUOTE (-759))) (|HasCategory| (-801 |#1|) (QUOTE (-786)))) (|HasCategory| (-801 |#1|) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| (-801 |#1|) (QUOTE (-1063))) (|HasCategory| (-801 |#1|) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| (-801 |#1|) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| (-801 |#1|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| (-801 |#1|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| (-801 |#1|) (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| (-801 |#1|) (QUOTE (-211))) (|HasCategory| (-801 |#1|) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| (-801 |#1|) (LIST (QUOTE -484) (QUOTE (-1087)) (LIST (QUOTE -801) (|devaluate| |#1|)))) (|HasCategory| (-801 |#1|) (LIST (QUOTE -286) (LIST (QUOTE -801) (|devaluate| |#1|)))) (|HasCategory| (-801 |#1|) (LIST (QUOTE -263) (LIST (QUOTE -801) (|devaluate| |#1|)) (LIST (QUOTE -801) (|devaluate| |#1|)))) (|HasCategory| (-801 |#1|) (QUOTE (-284))) (|HasCategory| (-801 |#1|) (QUOTE (-508))) (|HasCategory| (-801 |#1|) (QUOTE (-786))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-801 |#1|) (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-801 |#1|) (QUOTE (-840)))) (|HasCategory| (-801 |#1|) (QUOTE (-134)))))
-(-803 |p| PADIC)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| (-803 |#1|) (QUOTE (-842))) (|HasCategory| (-803 |#1|) (LIST (QUOTE -966) (QUOTE (-1089)))) (|HasCategory| (-803 |#1|) (QUOTE (-136))) (|HasCategory| (-803 |#1|) (QUOTE (-138))) (|HasCategory| (-803 |#1|) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| (-803 |#1|) (QUOTE (-951))) (|HasCategory| (-803 |#1|) (QUOTE (-761))) (-3321 (|HasCategory| (-803 |#1|) (QUOTE (-761))) (|HasCategory| (-803 |#1|) (QUOTE (-788)))) (|HasCategory| (-803 |#1|) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| (-803 |#1|) (QUOTE (-1065))) (|HasCategory| (-803 |#1|) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| (-803 |#1|) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| (-803 |#1|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| (-803 |#1|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| (-803 |#1|) (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| (-803 |#1|) (QUOTE (-213))) (|HasCategory| (-803 |#1|) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| (-803 |#1|) (LIST (QUOTE -486) (QUOTE (-1089)) (LIST (QUOTE -803) (|devaluate| |#1|)))) (|HasCategory| (-803 |#1|) (LIST (QUOTE -288) (LIST (QUOTE -803) (|devaluate| |#1|)))) (|HasCategory| (-803 |#1|) (LIST (QUOTE -265) (LIST (QUOTE -803) (|devaluate| |#1|)) (LIST (QUOTE -803) (|devaluate| |#1|)))) (|HasCategory| (-803 |#1|) (QUOTE (-286))) (|HasCategory| (-803 |#1|) (QUOTE (-510))) (|HasCategory| (-803 |#1|) (QUOTE (-788))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-803 |#1|) (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-803 |#1|) (QUOTE (-842)))) (|HasCategory| (-803 |#1|) (QUOTE (-136)))))
+(-805 |p| PADIC)
((|constructor| (NIL "This is the category of stream-based representations of \\spad{Qp}.")) (|removeZeroes| (($ (|Integer|) $) "\\spad{removeZeroes(n,{}x)} removes up to \\spad{n} leading zeroes from the \\spad{p}-adic rational \\spad{x}.") (($ $) "\\spad{removeZeroes(x)} removes leading zeroes from the representation of the \\spad{p}-adic rational \\spad{x}. A \\spad{p}-adic rational is represented by (1) an exponent and (2) a \\spad{p}-adic integer which may have leading zero digits. When the \\spad{p}-adic integer has a leading zero digit,{} a 'leading zero' is removed from the \\spad{p}-adic rational as follows: the number is rewritten by increasing the exponent by 1 and dividing the \\spad{p}-adic integer by \\spad{p}. Note: \\spad{removeZeroes(f)} removes all leading zeroes from \\spad{f}.")) (|continuedFraction| (((|ContinuedFraction| (|Fraction| (|Integer|))) $) "\\spad{continuedFraction(x)} converts the \\spad{p}-adic rational number \\spad{x} to a continued fraction.")) (|approximate| (((|Fraction| (|Integer|)) $ (|Integer|)) "\\spad{approximate(x,{}n)} returns a rational number \\spad{y} such that \\spad{y = x (mod p^n)}.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#2| (QUOTE (-840))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (QUOTE (-949))) (|HasCategory| |#2| (QUOTE (-759))) (-3255 (|HasCategory| |#2| (QUOTE (-759))) (|HasCategory| |#2| (QUOTE (-786)))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#2| (QUOTE (-1063))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (LIST (QUOTE -484) (QUOTE (-1087)) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -263) (|devaluate| |#2|) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-284))) (|HasCategory| |#2| (QUOTE (-508))) (|HasCategory| |#2| (QUOTE (-786))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-840)))) (|HasCategory| |#2| (QUOTE (-134)))))
-(-804 S T$)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#2| (QUOTE (-842))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-138))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (QUOTE (-951))) (|HasCategory| |#2| (QUOTE (-761))) (-3321 (|HasCategory| |#2| (QUOTE (-761))) (|HasCategory| |#2| (QUOTE (-788)))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-1065))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (LIST (QUOTE -486) (QUOTE (-1089)) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -265) (|devaluate| |#2|) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-286))) (|HasCategory| |#2| (QUOTE (-510))) (|HasCategory| |#2| (QUOTE (-788))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-842)))) (|HasCategory| |#2| (QUOTE (-136)))))
+(-806 S T$)
((|constructor| (NIL "\\indented{1}{This domain provides a very simple representation} of the notion of `pair of objects'. It does not try to achieve all possible imaginable things.")) (|second| ((|#2| $) "\\spad{second(p)} extracts the second components of \\spad{`p'}.")) (|first| ((|#1| $) "\\spad{first(p)} extracts the first component of \\spad{`p'}.")) (|construct| (($ |#1| |#2|) "\\spad{construct(s,{}t)} is same as pair(\\spad{s},{}\\spad{t}),{} with syntactic sugar.")) (|pair| (($ |#1| |#2|) "\\spad{pair(s,{}t)} returns a pair object composed of \\spad{`s'} and \\spad{`t'}.")))
NIL
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#2| (QUOTE (-1016)))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#2| (QUOTE (-1016)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))))
-(-805)
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1018)))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))))
+(-807)
((|constructor| (NIL "This domain describes four groups of color shades (palettes).")) (|coerce| (($ (|Color|)) "\\spad{coerce(c)} sets the average shade for the palette to that of the indicated color \\spad{c}.")) (|shade| (((|Integer|) $) "\\spad{shade(p)} returns the shade index of the indicated palette \\spad{p}.")) (|hue| (((|Color|) $) "\\spad{hue(p)} returns the hue field of the indicated palette \\spad{p}.")) (|light| (($ (|Color|)) "\\spad{light(c)} sets the shade of a hue,{} \\spad{c},{} to it\\spad{'s} highest value.")) (|pastel| (($ (|Color|)) "\\spad{pastel(c)} sets the shade of a hue,{} \\spad{c},{} above bright,{} but below light.")) (|bright| (($ (|Color|)) "\\spad{bright(c)} sets the shade of a hue,{} \\spad{c},{} above dim,{} but below pastel.")) (|dim| (($ (|Color|)) "\\spad{dim(c)} sets the shade of a hue,{} \\spad{c},{} above dark,{} but below bright.")) (|dark| (($ (|Color|)) "\\spad{dark(c)} sets the shade of the indicated hue of \\spad{c} to it\\spad{'s} lowest value.")))
NIL
NIL
-(-806)
+(-808)
((|constructor| (NIL "This package provides a coerce from polynomials over algebraic numbers to \\spadtype{Expression AlgebraicNumber}.")) (|coerce| (((|Expression| (|Integer|)) (|Fraction| (|Polynomial| (|AlgebraicNumber|)))) "\\spad{coerce(rf)} converts \\spad{rf},{} a fraction of polynomial \\spad{p} with algebraic number coefficients to \\spadtype{Expression Integer}.") (((|Expression| (|Integer|)) (|Polynomial| (|AlgebraicNumber|))) "\\spad{coerce(p)} converts the polynomial \\spad{p} with algebraic number coefficients to \\spadtype{Expression Integer}.")))
NIL
NIL
-(-807 CF1 CF2)
+(-809 CF1 CF2)
((|constructor| (NIL "This package \\undocumented")) (|map| (((|ParametricPlaneCurve| |#2|) (|Mapping| |#2| |#1|) (|ParametricPlaneCurve| |#1|)) "\\spad{map(f,{}x)} \\undocumented")))
NIL
NIL
-(-808 |ComponentFunction|)
+(-810 |ComponentFunction|)
((|constructor| (NIL "ParametricPlaneCurve is used for plotting parametric plane curves in the affine plane.")) (|coordinate| ((|#1| $ (|NonNegativeInteger|)) "\\spad{coordinate(c,{}i)} returns a coordinate function for \\spad{c} using 1-based indexing according to \\spad{i}. This indicates what the function for the coordinate component \\spad{i} of the plane curve is.")) (|curve| (($ |#1| |#1|) "\\spad{curve(c1,{}c2)} creates a plane curve from 2 component functions \\spad{c1} and \\spad{c2}.")))
NIL
NIL
-(-809 CF1 CF2)
+(-811 CF1 CF2)
((|constructor| (NIL "This package \\undocumented")) (|map| (((|ParametricSpaceCurve| |#2|) (|Mapping| |#2| |#1|) (|ParametricSpaceCurve| |#1|)) "\\spad{map(f,{}x)} \\undocumented")))
NIL
NIL
-(-810 |ComponentFunction|)
+(-812 |ComponentFunction|)
((|constructor| (NIL "ParametricSpaceCurve is used for plotting parametric space curves in affine 3-space.")) (|coordinate| ((|#1| $ (|NonNegativeInteger|)) "\\spad{coordinate(c,{}i)} returns a coordinate function of \\spad{c} using 1-based indexing according to \\spad{i}. This indicates what the function for the coordinate component,{} \\spad{i},{} of the space curve is.")) (|curve| (($ |#1| |#1| |#1|) "\\spad{curve(c1,{}c2,{}c3)} creates a space curve from 3 component functions \\spad{c1},{} \\spad{c2},{} and \\spad{c3}.")))
NIL
NIL
-(-811)
+(-813)
((|constructor| (NIL "\\indented{1}{This package provides a simple Spad script parser.} Related Constructors: Syntax. See Also: Syntax.")) (|getSyntaxFormsFromFile| (((|List| (|Syntax|)) (|String|)) "\\spad{getSyntaxFormsFromFile(f)} parses the source file \\spad{f} (supposedly containing Spad scripts) and returns a List Syntax. The filename \\spad{f} is supposed to have the proper extension. Note that source location information is not part of result.")))
NIL
NIL
-(-812 CF1 CF2)
+(-814 CF1 CF2)
((|constructor| (NIL "This package \\undocumented")) (|map| (((|ParametricSurface| |#2|) (|Mapping| |#2| |#1|) (|ParametricSurface| |#1|)) "\\spad{map(f,{}x)} \\undocumented")))
NIL
NIL
-(-813 |ComponentFunction|)
+(-815 |ComponentFunction|)
((|constructor| (NIL "ParametricSurface is used for plotting parametric surfaces in affine 3-space.")) (|coordinate| ((|#1| $ (|NonNegativeInteger|)) "\\spad{coordinate(s,{}i)} returns a coordinate function of \\spad{s} using 1-based indexing according to \\spad{i}. This indicates what the function for the coordinate component,{} \\spad{i},{} of the surface is.")) (|surface| (($ |#1| |#1| |#1|) "\\spad{surface(c1,{}c2,{}c3)} creates a surface from 3 parametric component functions \\spad{c1},{} \\spad{c2},{} and \\spad{c3}.")))
NIL
NIL
-(-814)
+(-816)
((|constructor| (NIL "PartitionsAndPermutations contains functions for generating streams of integer partitions,{} and streams of sequences of integers composed from a multi-set.")) (|permutations| (((|Stream| (|List| (|Integer|))) (|Integer|)) "\\spad{permutations(n)} is the stream of permutations \\indented{1}{formed from \\spad{1,{}2,{}3,{}...,{}n}.}")) (|sequences| (((|Stream| (|List| (|Integer|))) (|List| (|Integer|))) "\\spad{sequences([l0,{}l1,{}l2,{}..,{}ln])} is the set of \\indented{1}{all sequences formed from} \\spad{l0} 0\\spad{'s},{}\\spad{l1} 1\\spad{'s},{}\\spad{l2} 2\\spad{'s},{}...,{}\\spad{ln} \\spad{n}\\spad{'s}.") (((|Stream| (|List| (|Integer|))) (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{sequences(l1,{}l2)} is the stream of all sequences that \\indented{1}{can be composed from the multiset defined from} \\indented{1}{two lists of integers \\spad{l1} and \\spad{l2}.} \\indented{1}{For example,{}the pair \\spad{([1,{}2,{}4],{}[2,{}3,{}5])} represents} \\indented{1}{multi-set with 1 \\spad{2},{} 2 \\spad{3}\\spad{'s},{} and 4 \\spad{5}\\spad{'s}.}")) (|shufflein| (((|Stream| (|List| (|Integer|))) (|List| (|Integer|)) (|Stream| (|List| (|Integer|)))) "\\spad{shufflein(l,{}st)} maps shuffle(\\spad{l},{}\\spad{u}) on to all \\indented{1}{members \\spad{u} of \\spad{st},{} concatenating the results.}")) (|shuffle| (((|Stream| (|List| (|Integer|))) (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{shuffle(l1,{}l2)} forms the stream of all shuffles of \\spad{l1} \\indented{1}{and \\spad{l2},{} \\spadignore{i.e.} all sequences that can be formed from} \\indented{1}{merging \\spad{l1} and \\spad{l2}.}")) (|conjugates| (((|Stream| (|List| (|Integer|))) (|Stream| (|List| (|Integer|)))) "\\spad{conjugates(lp)} is the stream of conjugates of a stream \\indented{1}{of partitions \\spad{lp}.}")) (|conjugate| (((|List| (|Integer|)) (|List| (|Integer|))) "\\spad{conjugate(pt)} is the conjugate of the partition \\spad{pt}.")) (|partitions| (((|Stream| (|List| (|Integer|))) (|Integer|) (|Integer|)) "\\spad{partitions(p,{}l)} is the stream of all \\indented{1}{partitions whose number of} \\indented{1}{parts and largest part are no greater than \\spad{p} and \\spad{l}.}") (((|Stream| (|List| (|Integer|))) (|Integer|)) "\\spad{partitions(n)} is the stream of all partitions of \\spad{n}.") (((|Stream| (|List| (|Integer|))) (|Integer|) (|Integer|) (|Integer|)) "\\spad{partitions(p,{}l,{}n)} is the stream of partitions \\indented{1}{of \\spad{n} whose number of parts is no greater than \\spad{p}} \\indented{1}{and whose largest part is no greater than \\spad{l}.}")))
NIL
NIL
-(-815 R)
+(-817 R)
((|constructor| (NIL "An object \\spad{S} is Patternable over an object \\spad{R} if \\spad{S} can lift the conversions from \\spad{R} into \\spadtype{Pattern(Integer)} and \\spadtype{Pattern(Float)} to itself.")))
NIL
NIL
-(-816 R S L)
+(-818 R S L)
((|constructor| (NIL "A PatternMatchListResult is an object internally returned by the pattern matcher when matching on lists. It is either a failed match,{} or a pair of PatternMatchResult,{} one for atoms (elements of the list),{} and one for lists.")) (|lists| (((|PatternMatchResult| |#1| |#3|) $) "\\spad{lists(r)} returns the list of matches that match lists.")) (|atoms| (((|PatternMatchResult| |#1| |#2|) $) "\\spad{atoms(r)} returns the list of matches that match atoms (elements of the lists).")) (|makeResult| (($ (|PatternMatchResult| |#1| |#2|) (|PatternMatchResult| |#1| |#3|)) "\\spad{makeResult(r1,{}r2)} makes the combined result [\\spad{r1},{}\\spad{r2}].")) (|new| (($) "\\spad{new()} returns a new empty match result.")) (|failed| (($) "\\spad{failed()} returns a failed match.")) (|failed?| (((|Boolean|) $) "\\spad{failed?(r)} tests if \\spad{r} is a failed match.")))
NIL
NIL
-(-817 S)
+(-819 S)
((|constructor| (NIL "A set \\spad{R} is PatternMatchable over \\spad{S} if elements of \\spad{R} can be matched to patterns over \\spad{S}.")) (|patternMatch| (((|PatternMatchResult| |#1| $) $ (|Pattern| |#1|) (|PatternMatchResult| |#1| $)) "\\spad{patternMatch(expr,{} pat,{} res)} matches the pattern \\spad{pat} to the expression \\spad{expr}. res contains the variables of \\spad{pat} which are already matched and their matches (necessary for recursion). Initially,{} res is just the result of \\spadfun{new} which is an empty list of matches.")))
NIL
NIL
-(-818 |Base| |Subject| |Pat|)
+(-820 |Base| |Subject| |Pat|)
((|constructor| (NIL "This package provides the top-level pattern macthing functions.")) (|Is| (((|PatternMatchResult| |#1| |#2|) |#2| |#3|) "\\spad{Is(expr,{} pat)} matches the pattern pat on the expression \\spad{expr} and returns a match of the form \\spad{[v1 = e1,{}...,{}vn = en]}; returns an empty match if \\spad{expr} is exactly equal to pat. returns a \\spadfun{failed} match if pat does not match \\spad{expr}.") (((|List| (|Equation| (|Polynomial| |#2|))) |#2| |#3|) "\\spad{Is(expr,{} pat)} matches the pattern pat on the expression \\spad{expr} and returns a list of matches \\spad{[v1 = e1,{}...,{}vn = en]}; returns an empty list if either \\spad{expr} is exactly equal to pat or if pat does not match \\spad{expr}.") (((|List| (|Equation| |#2|)) |#2| |#3|) "\\spad{Is(expr,{} pat)} matches the pattern pat on the expression \\spad{expr} and returns a list of matches \\spad{[v1 = e1,{}...,{}vn = en]}; returns an empty list if either \\spad{expr} is exactly equal to pat or if pat does not match \\spad{expr}.") (((|PatternMatchListResult| |#1| |#2| (|List| |#2|)) (|List| |#2|) |#3|) "\\spad{Is([e1,{}...,{}en],{} pat)} matches the pattern pat on the list of expressions \\spad{[e1,{}...,{}en]} and returns the result.")) (|is?| (((|Boolean|) (|List| |#2|) |#3|) "\\spad{is?([e1,{}...,{}en],{} pat)} tests if the list of expressions \\spad{[e1,{}...,{}en]} matches the pattern pat.") (((|Boolean|) |#2| |#3|) "\\spad{is?(expr,{} pat)} tests if the expression \\spad{expr} matches the pattern pat.")))
NIL
-((-12 (-2575 (|HasCategory| |#2| (QUOTE (-973)))) (-2575 (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-1087)))))) (-12 (|HasCategory| |#2| (QUOTE (-973))) (-2575 (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-1087)))))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-1087)))))
-(-819 R A B)
+((-12 (-2247 (|HasCategory| |#2| (QUOTE (-975)))) (-2247 (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-1089)))))) (-12 (|HasCategory| |#2| (QUOTE (-975))) (-2247 (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-1089)))))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-1089)))))
+(-821 R A B)
((|constructor| (NIL "Lifts maps to pattern matching results.")) (|map| (((|PatternMatchResult| |#1| |#3|) (|Mapping| |#3| |#2|) (|PatternMatchResult| |#1| |#2|)) "\\spad{map(f,{} [(v1,{}a1),{}...,{}(vn,{}an)])} returns the matching result [(\\spad{v1},{}\\spad{f}(a1)),{}...,{}(\\spad{vn},{}\\spad{f}(an))].")))
NIL
NIL
-(-820 R S)
+(-822 R S)
((|constructor| (NIL "A PatternMatchResult is an object internally returned by the pattern matcher; It is either a failed match,{} or a list of matches of the form (var,{} expr) meaning that the variable var matches the expression expr.")) (|satisfy?| (((|Union| (|Boolean|) "failed") $ (|Pattern| |#1|)) "\\spad{satisfy?(r,{} p)} returns \\spad{true} if the matches satisfy the top-level predicate of \\spad{p},{} \\spad{false} if they don\\spad{'t},{} and \"failed\" if not enough variables of \\spad{p} are matched in \\spad{r} to decide.")) (|construct| (($ (|List| (|Record| (|:| |key| (|Symbol|)) (|:| |entry| |#2|)))) "\\spad{construct([v1,{}e1],{}...,{}[vn,{}en])} returns the match result containing the matches (\\spad{v1},{}e1),{}...,{}(\\spad{vn},{}en).")) (|destruct| (((|List| (|Record| (|:| |key| (|Symbol|)) (|:| |entry| |#2|))) $) "\\spad{destruct(r)} returns the list of matches (var,{} expr) in \\spad{r}. Error: if \\spad{r} is a failed match.")) (|addMatchRestricted| (($ (|Pattern| |#1|) |#2| $ |#2|) "\\spad{addMatchRestricted(var,{} expr,{} r,{} val)} adds the match (\\spad{var},{} \\spad{expr}) in \\spad{r},{} provided that \\spad{expr} satisfies the predicates attached to \\spad{var},{} that \\spad{var} is not matched to another expression already,{} and that either \\spad{var} is an optional pattern variable or that \\spad{expr} is not equal to val (usually an identity).")) (|insertMatch| (($ (|Pattern| |#1|) |#2| $) "\\spad{insertMatch(var,{} expr,{} r)} adds the match (\\spad{var},{} \\spad{expr}) in \\spad{r},{} without checking predicates or previous matches for \\spad{var}.")) (|addMatch| (($ (|Pattern| |#1|) |#2| $) "\\spad{addMatch(var,{} expr,{} r)} adds the match (\\spad{var},{} \\spad{expr}) in \\spad{r},{} provided that \\spad{expr} satisfies the predicates attached to \\spad{var},{} and that \\spad{var} is not matched to another expression already.")) (|getMatch| (((|Union| |#2| "failed") (|Pattern| |#1|) $) "\\spad{getMatch(var,{} r)} returns the expression that \\spad{var} matches in the result \\spad{r},{} and \"failed\" if \\spad{var} is not matched in \\spad{r}.")) (|union| (($ $ $) "\\spad{union(a,{} b)} makes the set-union of two match results.")) (|new| (($) "\\spad{new()} returns a new empty match result.")) (|failed| (($) "\\spad{failed()} returns a failed match.")) (|failed?| (((|Boolean|) $) "\\spad{failed?(r)} tests if \\spad{r} is a failed match.")))
NIL
NIL
-(-821 R -1943)
+(-823 R -4196)
((|constructor| (NIL "Tools for patterns.")) (|badValues| (((|List| |#2|) (|Pattern| |#1|)) "\\spad{badValues(p)} returns the list of \"bad values\" for \\spad{p}; \\spad{p} is not allowed to match any of its \"bad values\".")) (|addBadValue| (((|Pattern| |#1|) (|Pattern| |#1|) |#2|) "\\spad{addBadValue(p,{} v)} adds \\spad{v} to the list of \"bad values\" for \\spad{p}; \\spad{p} is not allowed to match any of its \"bad values\".")) (|satisfy?| (((|Boolean|) (|List| |#2|) (|Pattern| |#1|)) "\\spad{satisfy?([v1,{}...,{}vn],{} p)} returns \\spad{f(v1,{}...,{}vn)} where \\spad{f} is the top-level predicate attached to \\spad{p}.") (((|Boolean|) |#2| (|Pattern| |#1|)) "\\spad{satisfy?(v,{} p)} returns \\spad{f}(\\spad{v}) where \\spad{f} is the predicate attached to \\spad{p}.")) (|predicate| (((|Mapping| (|Boolean|) |#2|) (|Pattern| |#1|)) "\\spad{predicate(p)} returns the predicate attached to \\spad{p},{} the constant function \\spad{true} if \\spad{p} has no predicates attached to it.")) (|suchThat| (((|Pattern| |#1|) (|Pattern| |#1|) (|List| (|Symbol|)) (|Mapping| (|Boolean|) (|List| |#2|))) "\\spad{suchThat(p,{} [a1,{}...,{}an],{} f)} returns a copy of \\spad{p} with the top-level predicate set to \\spad{f(a1,{}...,{}an)}.") (((|Pattern| |#1|) (|Pattern| |#1|) (|List| (|Mapping| (|Boolean|) |#2|))) "\\spad{suchThat(p,{} [f1,{}...,{}fn])} makes a copy of \\spad{p} and adds the predicate \\spad{f1} and ... and \\spad{fn} to the copy,{} which is returned.") (((|Pattern| |#1|) (|Pattern| |#1|) (|Mapping| (|Boolean|) |#2|)) "\\spad{suchThat(p,{} f)} makes a copy of \\spad{p} and adds the predicate \\spad{f} to the copy,{} which is returned.")))
NIL
NIL
-(-822 R S)
+(-824 R S)
((|constructor| (NIL "Lifts maps to patterns.")) (|map| (((|Pattern| |#2|) (|Mapping| |#2| |#1|) (|Pattern| |#1|)) "\\spad{map(f,{} p)} applies \\spad{f} to all the leaves of \\spad{p} and returns the result as a pattern over \\spad{S}.")))
NIL
NIL
-(-823 R)
+(-825 R)
((|constructor| (NIL "Patterns for use by the pattern matcher.")) (|optpair| (((|Union| (|List| $) "failed") (|List| $)) "\\spad{optpair(l)} returns \\spad{l} has the form \\spad{[a,{} b]} and a is optional,{} and \"failed\" otherwise.")) (|variables| (((|List| $) $) "\\spad{variables(p)} returns the list of matching variables appearing in \\spad{p}.")) (|getBadValues| (((|List| (|Any|)) $) "\\spad{getBadValues(p)} returns the list of \"bad values\" for \\spad{p}. Note: \\spad{p} is not allowed to match any of its \"bad values\".")) (|addBadValue| (($ $ (|Any|)) "\\spad{addBadValue(p,{} v)} adds \\spad{v} to the list of \"bad values\" for \\spad{p}. Note: \\spad{p} is not allowed to match any of its \"bad values\".")) (|resetBadValues| (($ $) "\\spad{resetBadValues(p)} initializes the list of \"bad values\" for \\spad{p} to \\spad{[]}. Note: \\spad{p} is not allowed to match any of its \"bad values\".")) (|hasTopPredicate?| (((|Boolean|) $) "\\spad{hasTopPredicate?(p)} tests if \\spad{p} has a top-level predicate.")) (|topPredicate| (((|Record| (|:| |var| (|List| (|Symbol|))) (|:| |pred| (|Any|))) $) "\\spad{topPredicate(x)} returns \\spad{[[a1,{}...,{}an],{} f]} where the top-level predicate of \\spad{x} is \\spad{f(a1,{}...,{}an)}. Note: \\spad{n} is 0 if \\spad{x} has no top-level predicate.")) (|setTopPredicate| (($ $ (|List| (|Symbol|)) (|Any|)) "\\spad{setTopPredicate(x,{} [a1,{}...,{}an],{} f)} returns \\spad{x} with the top-level predicate set to \\spad{f(a1,{}...,{}an)}.")) (|patternVariable| (($ (|Symbol|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\spad{patternVariable(x,{} c?,{} o?,{} m?)} creates a pattern variable \\spad{x},{} which is constant if \\spad{c? = true},{} optional if \\spad{o? = true},{} and multiple if \\spad{m? = true}.")) (|withPredicates| (($ $ (|List| (|Any|))) "\\spad{withPredicates(p,{} [p1,{}...,{}pn])} makes a copy of \\spad{p} and attaches the predicate \\spad{p1} and ... and \\spad{pn} to the copy,{} which is returned.")) (|setPredicates| (($ $ (|List| (|Any|))) "\\spad{setPredicates(p,{} [p1,{}...,{}pn])} attaches the predicate \\spad{p1} and ... and \\spad{pn} to \\spad{p}.")) (|predicates| (((|List| (|Any|)) $) "\\spad{predicates(p)} returns \\spad{[p1,{}...,{}pn]} such that the predicate attached to \\spad{p} is \\spad{p1} and ... and \\spad{pn}.")) (|hasPredicate?| (((|Boolean|) $) "\\spad{hasPredicate?(p)} tests if \\spad{p} has predicates attached to it.")) (|optional?| (((|Boolean|) $) "\\spad{optional?(p)} tests if \\spad{p} is a single matching variable which can match an identity.")) (|multiple?| (((|Boolean|) $) "\\spad{multiple?(p)} tests if \\spad{p} is a single matching variable allowing list matching or multiple term matching in a sum or product.")) (|generic?| (((|Boolean|) $) "\\spad{generic?(p)} tests if \\spad{p} is a single matching variable.")) (|constant?| (((|Boolean|) $) "\\spad{constant?(p)} tests if \\spad{p} contains no matching variables.")) (|symbol?| (((|Boolean|) $) "\\spad{symbol?(p)} tests if \\spad{p} is a symbol.")) (|quoted?| (((|Boolean|) $) "\\spad{quoted?(p)} tests if \\spad{p} is of the form \\spad{'s} for a symbol \\spad{s}.")) (|inR?| (((|Boolean|) $) "\\spad{inR?(p)} tests if \\spad{p} is an atom (\\spadignore{i.e.} an element of \\spad{R}).")) (|copy| (($ $) "\\spad{copy(p)} returns a recursive copy of \\spad{p}.")) (|convert| (($ (|List| $)) "\\spad{convert([a1,{}...,{}an])} returns the pattern \\spad{[a1,{}...,{}an]}.")) (|depth| (((|NonNegativeInteger|) $) "\\spad{depth(p)} returns the nesting level of \\spad{p}.")) (/ (($ $ $) "\\spad{a / b} returns the pattern \\spad{a / b}.")) (** (($ $ $) "\\spad{a ** b} returns the pattern \\spad{a ** b}.") (($ $ (|NonNegativeInteger|)) "\\spad{a ** n} returns the pattern \\spad{a ** n}.")) (* (($ $ $) "\\spad{a * b} returns the pattern \\spad{a * b}.")) (+ (($ $ $) "\\spad{a + b} returns the pattern \\spad{a + b}.")) (|elt| (($ (|BasicOperator|) (|List| $)) "\\spad{elt(op,{} [a1,{}...,{}an])} returns \\spad{op(a1,{}...,{}an)}.")) (|isPower| (((|Union| (|Record| (|:| |val| $) (|:| |exponent| $)) "failed") $) "\\spad{isPower(p)} returns \\spad{[a,{} b]} if \\spad{p = a ** b},{} and \"failed\" otherwise.")) (|isList| (((|Union| (|List| $) "failed") $) "\\spad{isList(p)} returns \\spad{[a1,{}...,{}an]} if \\spad{p = [a1,{}...,{}an]},{} \"failed\" otherwise.")) (|isQuotient| (((|Union| (|Record| (|:| |num| $) (|:| |den| $)) "failed") $) "\\spad{isQuotient(p)} returns \\spad{[a,{} b]} if \\spad{p = a / b},{} and \"failed\" otherwise.")) (|isExpt| (((|Union| (|Record| (|:| |val| $) (|:| |exponent| (|NonNegativeInteger|))) "failed") $) "\\spad{isExpt(p)} returns \\spad{[q,{} n]} if \\spad{n > 0} and \\spad{p = q ** n},{} and \"failed\" otherwise.")) (|isOp| (((|Union| (|Record| (|:| |op| (|BasicOperator|)) (|:| |arg| (|List| $))) "failed") $) "\\spad{isOp(p)} returns \\spad{[op,{} [a1,{}...,{}an]]} if \\spad{p = op(a1,{}...,{}an)},{} and \"failed\" otherwise.") (((|Union| (|List| $) "failed") $ (|BasicOperator|)) "\\spad{isOp(p,{} op)} returns \\spad{[a1,{}...,{}an]} if \\spad{p = op(a1,{}...,{}an)},{} and \"failed\" otherwise.")) (|isTimes| (((|Union| (|List| $) "failed") $) "\\spad{isTimes(p)} returns \\spad{[a1,{}...,{}an]} if \\spad{n > 1} and \\spad{p = a1 * ... * an},{} and \"failed\" otherwise.")) (|isPlus| (((|Union| (|List| $) "failed") $) "\\spad{isPlus(p)} returns \\spad{[a1,{}...,{}an]} if \\spad{n > 1} \\indented{1}{and \\spad{p = a1 + ... + an},{}} and \"failed\" otherwise.")) ((|One|) (($) "1")) ((|Zero|) (($) "0")))
NIL
NIL
-(-824 |VarSet|)
+(-826 |VarSet|)
((|constructor| (NIL "This domain provides the internal representation of polynomials in non-commutative variables written over the Poincare-Birkhoff-Witt basis. See the \\spadtype{XPBWPolynomial} domain constructor. See Free Lie Algebras by \\spad{C}. Reutenauer (Oxford science publications). \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr}).")) (|varList| (((|List| |#1|) $) "\\spad{varList([l1]*[l2]*...[ln])} returns the list of variables in the word \\spad{l1*l2*...*ln}.")) (|retractable?| (((|Boolean|) $) "\\spad{retractable?([l1]*[l2]*...[ln])} returns \\spad{true} iff \\spad{n} equals \\spad{1}.")) (|rest| (($ $) "\\spad{rest([l1]*[l2]*...[ln])} returns the list \\spad{l2,{} .... ln}.")) (|ListOfTerms| (((|List| (|LyndonWord| |#1|)) $) "\\spad{ListOfTerms([l1]*[l2]*...[ln])} returns the list of words \\spad{l1,{} l2,{} .... ln}.")) (|length| (((|NonNegativeInteger|) $) "\\spad{length([l1]*[l2]*...[ln])} returns the length of the word \\spad{l1*l2*...*ln}.")) (|first| (((|LyndonWord| |#1|) $) "\\spad{first([l1]*[l2]*...[ln])} returns the Lyndon word \\spad{l1}.")) (|coerce| (($ |#1|) "\\spad{coerce(v)} return \\spad{v}") (((|OrderedFreeMonoid| |#1|) $) "\\spad{coerce([l1]*[l2]*...[ln])} returns the word \\spad{l1*l2*...*ln},{} where \\spad{[l_i]} is the backeted form of the Lyndon word \\spad{l_i}.")) ((|One|) (($) "\\spad{1} returns the empty list.")))
NIL
NIL
-(-825 UP R)
+(-827 UP R)
((|constructor| (NIL "This package \\undocumented")) (|compose| ((|#1| |#1| |#1|) "\\spad{compose(p,{}q)} \\undocumented")))
NIL
NIL
-(-826)
+(-828)
((|PDESolve| (((|Result|) (|Record| (|:| |pde| (|List| (|Expression| (|DoubleFloat|)))) (|:| |constraints| (|List| (|Record| (|:| |start| (|DoubleFloat|)) (|:| |finish| (|DoubleFloat|)) (|:| |grid| (|NonNegativeInteger|)) (|:| |boundaryType| (|Integer|)) (|:| |dStart| (|Matrix| (|DoubleFloat|))) (|:| |dFinish| (|Matrix| (|DoubleFloat|)))))) (|:| |f| (|List| (|List| (|Expression| (|DoubleFloat|))))) (|:| |st| (|String|)) (|:| |tol| (|DoubleFloat|)))) "\\spad{PDESolve(args)} performs the integration of the function given the strategy or method returned by \\axiomFun{measure}.")) (|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |explanations| (|String|))) (|RoutinesTable|) (|Record| (|:| |pde| (|List| (|Expression| (|DoubleFloat|)))) (|:| |constraints| (|List| (|Record| (|:| |start| (|DoubleFloat|)) (|:| |finish| (|DoubleFloat|)) (|:| |grid| (|NonNegativeInteger|)) (|:| |boundaryType| (|Integer|)) (|:| |dStart| (|Matrix| (|DoubleFloat|))) (|:| |dFinish| (|Matrix| (|DoubleFloat|)))))) (|:| |f| (|List| (|List| (|Expression| (|DoubleFloat|))))) (|:| |st| (|String|)) (|:| |tol| (|DoubleFloat|)))) "\\spad{measure(R,{}args)} calculates an estimate of the ability of a particular method to solve a problem. \\blankline This method may be either a specific NAG routine or a strategy (such as transforming the function from one which is difficult to one which is easier to solve). \\blankline It will call whichever agents are needed to perform analysis on the problem in order to calculate the measure. There is a parameter,{} labelled \\axiom{sofar},{} which would contain the best compatibility found so far.")))
NIL
NIL
-(-827 UP -3894)
+(-829 UP -3576)
((|constructor| (NIL "This package \\undocumented")) (|rightFactorCandidate| ((|#1| |#1| (|NonNegativeInteger|)) "\\spad{rightFactorCandidate(p,{}n)} \\undocumented")) (|leftFactor| (((|Union| |#1| "failed") |#1| |#1|) "\\spad{leftFactor(p,{}q)} \\undocumented")) (|decompose| (((|Union| (|Record| (|:| |left| |#1|) (|:| |right| |#1|)) "failed") |#1| (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{decompose(up,{}m,{}n)} \\undocumented") (((|List| |#1|) |#1|) "\\spad{decompose(up)} \\undocumented")))
NIL
NIL
-(-828)
+(-830)
((|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|)))) (|NumericalPDEProblem|) (|RoutinesTable|)) "\\spad{measure(prob,{}R)} is a top level ANNA function for identifying the most appropriate numerical routine from those in the routines table provided for solving the numerical PDE problem defined by \\axiom{\\spad{prob}}. \\blankline It calls each \\axiom{domain} listed in \\axiom{\\spad{R}} of \\axiom{category} \\axiomType{PartialDifferentialEquationsSolverCategory} in turn to calculate all measures and returns the best \\spadignore{i.e.} the name of the most appropriate domain and any other relevant information. It predicts the likely most effective NAG numerical Library routine to solve the input set of PDEs by checking various attributes of the system of PDEs and calculating a measure of compatibility of each routine to these attributes.") (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|)))) (|NumericalPDEProblem|)) "\\spad{measure(prob)} is a top level ANNA function for identifying the most appropriate numerical routine from those in the routines table provided for solving the numerical PDE problem defined by \\axiom{\\spad{prob}}. \\blankline It calls each \\axiom{domain} of \\axiom{category} \\axiomType{PartialDifferentialEquationsSolverCategory} in turn to calculate all measures and returns the best \\spadignore{i.e.} the name of the most appropriate domain and any other relevant information. It predicts the likely most effective NAG numerical Library routine to solve the input set of PDEs by checking various attributes of the system of PDEs and calculating a measure of compatibility of each routine to these attributes.")) (|solve| (((|Result|) (|Float|) (|Float|) (|Float|) (|Float|) (|NonNegativeInteger|) (|NonNegativeInteger|) (|List| (|Expression| (|Float|))) (|List| (|List| (|Expression| (|Float|)))) (|String|)) "\\spad{solve(xmin,{}ymin,{}xmax,{}ymax,{}ngx,{}ngy,{}pde,{}bounds,{}st)} is a top level ANNA function to solve numerically a system of partial differential equations. This is defined as a list of coefficients (\\axiom{\\spad{pde}}),{} a grid (\\axiom{\\spad{xmin}},{} \\axiom{\\spad{ymin}},{} \\axiom{\\spad{xmax}},{} \\axiom{\\spad{ymax}},{} \\axiom{\\spad{ngx}},{} \\axiom{\\spad{ngy}}) and the boundary values (\\axiom{\\spad{bounds}}). A default value for tolerance is used. There is also a parameter (\\axiom{\\spad{st}}) which should contain the value \"elliptic\" if the PDE is known to be elliptic,{} or \"unknown\" if it is uncertain. This causes the routine to check whether the PDE is elliptic. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of PDE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine. \\blankline \\spad{**} At the moment,{} only Second Order Elliptic Partial Differential Equations are solved \\spad{**}") (((|Result|) (|Float|) (|Float|) (|Float|) (|Float|) (|NonNegativeInteger|) (|NonNegativeInteger|) (|List| (|Expression| (|Float|))) (|List| (|List| (|Expression| (|Float|)))) (|String|) (|DoubleFloat|)) "\\spad{solve(xmin,{}ymin,{}xmax,{}ymax,{}ngx,{}ngy,{}pde,{}bounds,{}st,{}tol)} is a top level ANNA function to solve numerically a system of partial differential equations. This is defined as a list of coefficients (\\axiom{\\spad{pde}}),{} a grid (\\axiom{\\spad{xmin}},{} \\axiom{\\spad{ymin}},{} \\axiom{\\spad{xmax}},{} \\axiom{\\spad{ymax}},{} \\axiom{\\spad{ngx}},{} \\axiom{\\spad{ngy}}),{} the boundary values (\\axiom{\\spad{bounds}}) and a tolerance requirement (\\axiom{\\spad{tol}}). There is also a parameter (\\axiom{\\spad{st}}) which should contain the value \"elliptic\" if the PDE is known to be elliptic,{} or \"unknown\" if it is uncertain. This causes the routine to check whether the PDE is elliptic. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of PDE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine. \\blankline \\spad{**} At the moment,{} only Second Order Elliptic Partial Differential Equations are solved \\spad{**}") (((|Result|) (|NumericalPDEProblem|) (|RoutinesTable|)) "\\spad{solve(PDEProblem,{}routines)} is a top level ANNA function to solve numerically a system of partial differential equations. \\blankline The method used to perform the numerical process will be one of the \\spad{routines} contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of PDE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine. \\blankline \\spad{**} At the moment,{} only Second Order Elliptic Partial Differential Equations are solved \\spad{**}") (((|Result|) (|NumericalPDEProblem|)) "\\spad{solve(PDEProblem)} is a top level ANNA function to solve numerically a system of partial differential equations. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of PDE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine. \\blankline \\spad{**} At the moment,{} only Second Order Elliptic Partial Differential Equations are solved \\spad{**}")))
NIL
NIL
-(-829)
+(-831)
((|retract| (((|Record| (|:| |pde| (|List| (|Expression| (|DoubleFloat|)))) (|:| |constraints| (|List| (|Record| (|:| |start| (|DoubleFloat|)) (|:| |finish| (|DoubleFloat|)) (|:| |grid| (|NonNegativeInteger|)) (|:| |boundaryType| (|Integer|)) (|:| |dStart| (|Matrix| (|DoubleFloat|))) (|:| |dFinish| (|Matrix| (|DoubleFloat|)))))) (|:| |f| (|List| (|List| (|Expression| (|DoubleFloat|))))) (|:| |st| (|String|)) (|:| |tol| (|DoubleFloat|))) $) "\\spad{retract(x)} \\undocumented{}")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(x)} \\undocumented{}") (($ (|Record| (|:| |pde| (|List| (|Expression| (|DoubleFloat|)))) (|:| |constraints| (|List| (|Record| (|:| |start| (|DoubleFloat|)) (|:| |finish| (|DoubleFloat|)) (|:| |grid| (|NonNegativeInteger|)) (|:| |boundaryType| (|Integer|)) (|:| |dStart| (|Matrix| (|DoubleFloat|))) (|:| |dFinish| (|Matrix| (|DoubleFloat|)))))) (|:| |f| (|List| (|List| (|Expression| (|DoubleFloat|))))) (|:| |st| (|String|)) (|:| |tol| (|DoubleFloat|)))) "\\spad{coerce(x)} \\undocumented{}")))
NIL
NIL
-(-830 A S)
+(-832 A S)
((|constructor| (NIL "A partial differential ring with differentiations indexed by a parameter type \\spad{S}. \\blankline")) (D (($ $ (|List| |#2|) (|List| (|NonNegativeInteger|))) "\\spad{D(x,{} [s1,{}...,{}sn],{} [n1,{}...,{}nn])} computes multiple partial derivatives,{} \\spadignore{i.e.} \\spad{D(...D(x,{} s1,{} n1)...,{} sn,{} nn)}.") (($ $ |#2| (|NonNegativeInteger|)) "\\spad{D(x,{} s,{} n)} computes multiple partial derivatives,{} \\spadignore{i.e.} \\spad{n}-th derivative of \\spad{x} with respect to \\spad{s}.") (($ $ (|List| |#2|)) "\\spad{D(x,{}[s1,{}...sn])} computes successive partial derivatives,{} \\spadignore{i.e.} \\spad{D(...D(x,{} s1)...,{} sn)}.") (($ $ |#2|) "\\spad{D(x,{}v)} computes the partial derivative of \\spad{x} with respect to \\spad{v}.")) (|differentiate| (($ $ (|List| |#2|) (|List| (|NonNegativeInteger|))) "\\spad{differentiate(x,{} [s1,{}...,{}sn],{} [n1,{}...,{}nn])} computes multiple partial derivatives,{} \\spadignore{i.e.}") (($ $ |#2| (|NonNegativeInteger|)) "\\spad{differentiate(x,{} s,{} n)} computes multiple partial derivatives,{} \\spadignore{i.e.} \\spad{n}-th derivative of \\spad{x} with respect to \\spad{s}.") (($ $ (|List| |#2|)) "\\spad{differentiate(x,{}[s1,{}...sn])} computes successive partial derivatives,{} \\spadignore{i.e.} \\spad{differentiate(...differentiate(x,{} s1)...,{} sn)}.") (($ $ |#2|) "\\spad{differentiate(x,{}v)} computes the partial derivative of \\spad{x} with respect to \\spad{v}.")))
NIL
NIL
-(-831 S)
+(-833 S)
((|constructor| (NIL "A partial differential ring with differentiations indexed by a parameter type \\spad{S}. \\blankline")) (D (($ $ (|List| |#1|) (|List| (|NonNegativeInteger|))) "\\spad{D(x,{} [s1,{}...,{}sn],{} [n1,{}...,{}nn])} computes multiple partial derivatives,{} \\spadignore{i.e.} \\spad{D(...D(x,{} s1,{} n1)...,{} sn,{} nn)}.") (($ $ |#1| (|NonNegativeInteger|)) "\\spad{D(x,{} s,{} n)} computes multiple partial derivatives,{} \\spadignore{i.e.} \\spad{n}-th derivative of \\spad{x} with respect to \\spad{s}.") (($ $ (|List| |#1|)) "\\spad{D(x,{}[s1,{}...sn])} computes successive partial derivatives,{} \\spadignore{i.e.} \\spad{D(...D(x,{} s1)...,{} sn)}.") (($ $ |#1|) "\\spad{D(x,{}v)} computes the partial derivative of \\spad{x} with respect to \\spad{v}.")) (|differentiate| (($ $ (|List| |#1|) (|List| (|NonNegativeInteger|))) "\\spad{differentiate(x,{} [s1,{}...,{}sn],{} [n1,{}...,{}nn])} computes multiple partial derivatives,{} \\spadignore{i.e.}") (($ $ |#1| (|NonNegativeInteger|)) "\\spad{differentiate(x,{} s,{} n)} computes multiple partial derivatives,{} \\spadignore{i.e.} \\spad{n}-th derivative of \\spad{x} with respect to \\spad{s}.") (($ $ (|List| |#1|)) "\\spad{differentiate(x,{}[s1,{}...sn])} computes successive partial derivatives,{} \\spadignore{i.e.} \\spad{differentiate(...differentiate(x,{} s1)...,{} sn)}.") (($ $ |#1|) "\\spad{differentiate(x,{}v)} computes the partial derivative of \\spad{x} with respect to \\spad{v}.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-832 S)
+(-834 S)
((|constructor| (NIL "\\indented{1}{A PendantTree(\\spad{S})is either a leaf? and is an \\spad{S} or has} a left and a right both PendantTree(\\spad{S})\\spad{'s}")) (|coerce| (((|Tree| |#1|) $) "\\spad{coerce(x)} \\undocumented")) (|ptree| (($ $ $) "\\spad{ptree(x,{}y)} \\undocumented") (($ |#1|) "\\spad{ptree(s)} is a leaf? pendant tree")))
NIL
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-833 |n| R)
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-835 |n| R)
((|constructor| (NIL "Permanent implements the functions {\\em permanent},{} the permanent for square matrices.")) (|permanent| ((|#2| (|SquareMatrix| |#1| |#2|)) "\\spad{permanent(x)} computes the permanent of a square matrix \\spad{x}. The {\\em permanent} is equivalent to the \\spadfun{determinant} except that coefficients have no change of sign. This function is much more difficult to compute than the {\\em determinant}. The formula used is by \\spad{H}.\\spad{J}. Ryser,{} improved by [Nijenhuis and Wilf,{} \\spad{Ch}. 19]. Note: permanent(\\spad{x}) choose one of three algorithms,{} depending on the underlying ring \\spad{R} and on \\spad{n},{} the number of rows (and columns) of \\spad{x:}\\begin{items} \\item 1. if 2 has an inverse in \\spad{R} we can use the algorithm of \\indented{3}{[Nijenhuis and Wilf,{} \\spad{ch}.19,{}\\spad{p}.158]; if 2 has no inverse,{}} \\indented{3}{some modifications are necessary:} \\item 2. if {\\em n > 6} and \\spad{R} is an integral domain with characteristic \\indented{3}{different from 2 (the algorithm works if and only 2 is not a} \\indented{3}{zero-divisor of \\spad{R} and {\\em characteristic()\\$R ~= 2},{}} \\indented{3}{but how to check that for any given \\spad{R} ?),{}} \\indented{3}{the local function {\\em permanent2} is called;} \\item 3. else,{} the local function {\\em permanent3} is called \\indented{3}{(works for all commutative rings \\spad{R}).} \\end{items}")))
NIL
NIL
-(-834 S)
+(-836 S)
((|constructor| (NIL "PermutationCategory provides a categorial environment \\indented{1}{for subgroups of bijections of a set (\\spadignore{i.e.} permutations)}")) (< (((|Boolean|) $ $) "\\spad{p < q} is an order relation on permutations. Note: this order is only total if and only if \\spad{S} is totally ordered or \\spad{S} is finite.")) (|orbit| (((|Set| |#1|) $ |#1|) "\\spad{orbit(p,{} el)} returns the orbit of {\\em el} under the permutation \\spad{p},{} \\spadignore{i.e.} the set which is given by applications of the powers of \\spad{p} to {\\em el}.")) (|elt| ((|#1| $ |#1|) "\\spad{elt(p,{} el)} returns the image of {\\em el} under the permutation \\spad{p}.")) (|eval| ((|#1| $ |#1|) "\\spad{eval(p,{} el)} returns the image of {\\em el} under the permutation \\spad{p}.")) (|cycles| (($ (|List| (|List| |#1|))) "\\spad{cycles(lls)} coerces a list list of cycles {\\em lls} to a permutation,{} each cycle being a list with not repetitions,{} is coerced to the permutation,{} which maps {\\em ls.i} to {\\em ls.i+1},{} indices modulo the length of the list,{} then these permutations are mutiplied. Error: if repetitions occur in one cycle.")) (|cycle| (($ (|List| |#1|)) "\\spad{cycle(ls)} coerces a cycle {\\em ls},{} \\spadignore{i.e.} a list with not repetitions to a permutation,{} which maps {\\em ls.i} to {\\em ls.i+1},{} indices modulo the length of the list. Error: if repetitions occur.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-835 S)
+(-837 S)
((|constructor| (NIL "PermutationGroup implements permutation groups acting on a set \\spad{S},{} \\spadignore{i.e.} all subgroups of the symmetric group of \\spad{S},{} represented as a list of permutations (generators). Note that therefore the objects are not members of the \\Language category \\spadtype{Group}. Using the idea of base and strong generators by Sims,{} basic routines and algorithms are implemented so that the word problem for permutation groups can be solved.")) (|initializeGroupForWordProblem| (((|Void|) $ (|Integer|) (|Integer|)) "\\spad{initializeGroupForWordProblem(gp,{}m,{}n)} initializes the group {\\em gp} for the word problem. Notes: (1) with a small integer you get shorter words,{} but the routine takes longer than the standard routine for longer words. (2) be careful: invoking this routine will destroy the possibly stored information about your group (but will recompute it again). (3) users need not call this function normally for the soultion of the word problem.") (((|Void|) $) "\\spad{initializeGroupForWordProblem(gp)} initializes the group {\\em gp} for the word problem. Notes: it calls the other function of this name with parameters 0 and 1: {\\em initializeGroupForWordProblem(gp,{}0,{}1)}. Notes: (1) be careful: invoking this routine will destroy the possibly information about your group (but will recompute it again) (2) users need not call this function normally for the soultion of the word problem.")) (<= (((|Boolean|) $ $) "\\spad{gp1 <= gp2} returns \\spad{true} if and only if {\\em gp1} is a subgroup of {\\em gp2}. Note: because of a bug in the parser you have to call this function explicitly by {\\em gp1 <=\\$(PERMGRP S) gp2}.")) (< (((|Boolean|) $ $) "\\spad{gp1 < gp2} returns \\spad{true} if and only if {\\em gp1} is a proper subgroup of {\\em gp2}.")) (|movedPoints| (((|Set| |#1|) $) "\\spad{movedPoints(gp)} returns the points moved by the group {\\em gp}.")) (|wordInGenerators| (((|List| (|NonNegativeInteger|)) (|Permutation| |#1|) $) "\\spad{wordInGenerators(p,{}gp)} returns the word for the permutation \\spad{p} in the original generators of the group {\\em gp},{} represented by the indices of the list,{} given by {\\em generators}.")) (|wordInStrongGenerators| (((|List| (|NonNegativeInteger|)) (|Permutation| |#1|) $) "\\spad{wordInStrongGenerators(p,{}gp)} returns the word for the permutation \\spad{p} in the strong generators of the group {\\em gp},{} represented by the indices of the list,{} given by {\\em strongGenerators}.")) (|member?| (((|Boolean|) (|Permutation| |#1|) $) "\\spad{member?(pp,{}gp)} answers the question,{} whether the permutation {\\em pp} is in the group {\\em gp} or not.")) (|orbits| (((|Set| (|Set| |#1|)) $) "\\spad{orbits(gp)} returns the orbits of the group {\\em gp},{} \\spadignore{i.e.} it partitions the (finite) of all moved points.")) (|orbit| (((|Set| (|List| |#1|)) $ (|List| |#1|)) "\\spad{orbit(gp,{}ls)} returns the orbit of the ordered list {\\em ls} under the group {\\em gp}. Note: return type is \\spad{L} \\spad{L} \\spad{S} temporarily because FSET \\spad{L} \\spad{S} has an error.") (((|Set| (|Set| |#1|)) $ (|Set| |#1|)) "\\spad{orbit(gp,{}els)} returns the orbit of the unordered set {\\em els} under the group {\\em gp}.") (((|Set| |#1|) $ |#1|) "\\spad{orbit(gp,{}el)} returns the orbit of the element {\\em el} under the group {\\em gp},{} \\spadignore{i.e.} the set of all points gained by applying each group element to {\\em el}.")) (|permutationGroup| (($ (|List| (|Permutation| |#1|))) "\\spad{permutationGroup(ls)} coerces a list of permutations {\\em ls} to the group generated by this list.")) (|wordsForStrongGenerators| (((|List| (|List| (|NonNegativeInteger|))) $) "\\spad{wordsForStrongGenerators(gp)} returns the words for the strong generators of the group {\\em gp} in the original generators of {\\em gp},{} represented by their indices in the list,{} given by {\\em generators}.")) (|strongGenerators| (((|List| (|Permutation| |#1|)) $) "\\spad{strongGenerators(gp)} returns strong generators for the group {\\em gp}.")) (|base| (((|List| |#1|) $) "\\spad{base(gp)} returns a base for the group {\\em gp}.")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(gp)} returns the number of points moved by all permutations of the group {\\em gp}.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(gp)} returns the order of the group {\\em gp}.")) (|random| (((|Permutation| |#1|) $) "\\spad{random(gp)} returns a random product of maximal 20 generators of the group {\\em gp}. Note: {\\em random(gp)=random(gp,{}20)}.") (((|Permutation| |#1|) $ (|Integer|)) "\\spad{random(gp,{}i)} returns a random product of maximal \\spad{i} generators of the group {\\em gp}.")) (|elt| (((|Permutation| |#1|) $ (|NonNegativeInteger|)) "\\spad{elt(gp,{}i)} returns the \\spad{i}-th generator of the group {\\em gp}.")) (|generators| (((|List| (|Permutation| |#1|)) $) "\\spad{generators(gp)} returns the generators of the group {\\em gp}.")) (|coerce| (($ (|List| (|Permutation| |#1|))) "\\spad{coerce(ls)} coerces a list of permutations {\\em ls} to the group generated by this list.") (((|List| (|Permutation| |#1|)) $) "\\spad{coerce(gp)} returns the generators of the group {\\em gp}.")))
NIL
NIL
-(-836 S)
+(-838 S)
((|constructor| (NIL "Permutation(\\spad{S}) implements the group of all bijections \\indented{2}{on a set \\spad{S},{} which move only a finite number of points.} \\indented{2}{A permutation is considered as a map from \\spad{S} into \\spad{S}. In particular} \\indented{2}{multiplication is defined as composition of maps:} \\indented{2}{{\\em pi1 * pi2 = pi1 o pi2}.} \\indented{2}{The internal representation of permuatations are two lists} \\indented{2}{of equal length representing preimages and images.}")) (|coerceImages| (($ (|List| |#1|)) "\\spad{coerceImages(ls)} coerces the list {\\em ls} to a permutation whose image is given by {\\em ls} and the preimage is fixed to be {\\em [1,{}...,{}n]}. Note: {coerceImages(\\spad{ls})=coercePreimagesImages([1,{}...,{}\\spad{n}],{}\\spad{ls})}. We assume that both preimage and image do not contain repetitions.")) (|fixedPoints| (((|Set| |#1|) $) "\\spad{fixedPoints(p)} returns the points fixed by the permutation \\spad{p}.")) (|sort| (((|List| $) (|List| $)) "\\spad{sort(lp)} sorts a list of permutations {\\em lp} according to cycle structure first according to length of cycles,{} second,{} if \\spad{S} has \\spadtype{Finite} or \\spad{S} has \\spadtype{OrderedSet} according to lexicographical order of entries in cycles of equal length.")) (|odd?| (((|Boolean|) $) "\\spad{odd?(p)} returns \\spad{true} if and only if \\spad{p} is an odd permutation \\spadignore{i.e.} {\\em sign(p)} is {\\em -1}.")) (|even?| (((|Boolean|) $) "\\spad{even?(p)} returns \\spad{true} if and only if \\spad{p} is an even permutation,{} \\spadignore{i.e.} {\\em sign(p)} is 1.")) (|sign| (((|Integer|) $) "\\spad{sign(p)} returns the signum of the permutation \\spad{p},{} \\spad{+1} or \\spad{-1}.")) (|numberOfCycles| (((|NonNegativeInteger|) $) "\\spad{numberOfCycles(p)} returns the number of non-trivial cycles of the permutation \\spad{p}.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(p)} returns the order of a permutation \\spad{p} as a group element.")) (|cyclePartition| (((|Partition|) $) "\\spad{cyclePartition(p)} returns the cycle structure of a permutation \\spad{p} including cycles of length 1 only if \\spad{S} is finite.")) (|movedPoints| (((|Set| |#1|) $) "\\spad{movedPoints(p)} returns the set of points moved by the permutation \\spad{p}.")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(p)} retuns the number of points moved by the permutation \\spad{p}.")) (|coerceListOfPairs| (($ (|List| (|List| |#1|))) "\\spad{coerceListOfPairs(lls)} coerces a list of pairs {\\em lls} to a permutation. Error: if not consistent,{} \\spadignore{i.e.} the set of the first elements coincides with the set of second elements. coerce(\\spad{p}) generates output of the permutation \\spad{p} with domain OutputForm.")) (|coerce| (($ (|List| |#1|)) "\\spad{coerce(ls)} coerces a cycle {\\em ls},{} \\spadignore{i.e.} a list with not repetitions to a permutation,{} which maps {\\em ls.i} to {\\em ls.i+1},{} indices modulo the length of the list. Error: if repetitions occur.") (($ (|List| (|List| |#1|))) "\\spad{coerce(lls)} coerces a list of cycles {\\em lls} to a permutation,{} each cycle being a list with no repetitions,{} is coerced to the permutation,{} which maps {\\em ls.i} to {\\em ls.i+1},{} indices modulo the length of the list,{} then these permutations are mutiplied. Error: if repetitions occur in one cycle.")) (|coercePreimagesImages| (($ (|List| (|List| |#1|))) "\\spad{coercePreimagesImages(lls)} coerces the representation {\\em lls} of a permutation as a list of preimages and images to a permutation. We assume that both preimage and image do not contain repetitions.")) (|listRepresentation| (((|Record| (|:| |preimage| (|List| |#1|)) (|:| |image| (|List| |#1|))) $) "\\spad{listRepresentation(p)} produces a representation {\\em rep} of the permutation \\spad{p} as a list of preimages and images,{} \\spad{i}.\\spad{e} \\spad{p} maps {\\em (rep.preimage).k} to {\\em (rep.image).k} for all indices \\spad{k}. Elements of \\spad{S} not in {\\em (rep.preimage).k} are fixed points,{} and these are the only fixed points of the permutation.")))
-((-4245 . T))
-((-3255 (|HasCategory| |#1| (QUOTE (-344))) (|HasCategory| |#1| (QUOTE (-786)))) (|HasCategory| |#1| (QUOTE (-344))) (|HasCategory| |#1| (QUOTE (-786))))
-(-837 R E |VarSet| S)
+((-4247 . T))
+((-3321 (|HasCategory| |#1| (QUOTE (-346))) (|HasCategory| |#1| (QUOTE (-788)))) (|HasCategory| |#1| (QUOTE (-346))) (|HasCategory| |#1| (QUOTE (-788))))
+(-839 R E |VarSet| S)
((|constructor| (NIL "PolynomialFactorizationByRecursion(\\spad{R},{}\\spad{E},{}\\spad{VarSet},{}\\spad{S}) is used for factorization of sparse univariate polynomials over a domain \\spad{S} of multivariate polynomials over \\spad{R}.")) (|factorSFBRlcUnit| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|List| |#3|) (|SparseUnivariatePolynomial| |#4|)) "\\spad{factorSFBRlcUnit(p)} returns the square free factorization of polynomial \\spad{p} (see \\spadfun{factorSquareFreeByRecursion}{PolynomialFactorizationByRecursionUnivariate}) in the case where the leading coefficient of \\spad{p} is a unit.")) (|bivariateSLPEBR| (((|Union| (|List| (|SparseUnivariatePolynomial| |#4|)) "failed") (|List| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|) |#3|) "\\spad{bivariateSLPEBR(lp,{}p,{}v)} implements the bivariate case of \\spadfunFrom{solveLinearPolynomialEquationByRecursion}{PolynomialFactorizationByRecursionUnivariate}; its implementation depends on \\spad{R}")) (|randomR| ((|#1|) "\\spad{randomR produces} a random element of \\spad{R}")) (|factorSquareFreeByRecursion| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{factorSquareFreeByRecursion(p)} returns the square free factorization of \\spad{p}. This functions performs the recursion step for factorSquareFreePolynomial,{} as defined in \\spadfun{PolynomialFactorizationExplicit} category (see \\spadfun{factorSquareFreePolynomial}).")) (|factorByRecursion| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{factorByRecursion(p)} factors polynomial \\spad{p}. This function performs the recursion step for factorPolynomial,{} as defined in \\spadfun{PolynomialFactorizationExplicit} category (see \\spadfun{factorPolynomial})")) (|solveLinearPolynomialEquationByRecursion| (((|Union| (|List| (|SparseUnivariatePolynomial| |#4|)) "failed") (|List| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{solveLinearPolynomialEquationByRecursion([p1,{}...,{}pn],{}p)} returns the list of polynomials \\spad{[q1,{}...,{}qn]} such that \\spad{sum qi/pi = p / prod \\spad{pi}},{} a recursion step for solveLinearPolynomialEquation as defined in \\spadfun{PolynomialFactorizationExplicit} category (see \\spadfun{solveLinearPolynomialEquation}). If no such list of \\spad{qi} exists,{} then \"failed\" is returned.")))
NIL
NIL
-(-838 R S)
+(-840 R S)
((|constructor| (NIL "\\indented{1}{PolynomialFactorizationByRecursionUnivariate} \\spad{R} is a \\spadfun{PolynomialFactorizationExplicit} domain,{} \\spad{S} is univariate polynomials over \\spad{R} We are interested in handling SparseUnivariatePolynomials over \\spad{S},{} is a variable we shall call \\spad{z}")) (|factorSFBRlcUnit| (((|Factored| (|SparseUnivariatePolynomial| |#2|)) (|SparseUnivariatePolynomial| |#2|)) "\\spad{factorSFBRlcUnit(p)} returns the square free factorization of polynomial \\spad{p} (see \\spadfun{factorSquareFreeByRecursion}{PolynomialFactorizationByRecursionUnivariate}) in the case where the leading coefficient of \\spad{p} is a unit.")) (|randomR| ((|#1|) "\\spad{randomR()} produces a random element of \\spad{R}")) (|factorSquareFreeByRecursion| (((|Factored| (|SparseUnivariatePolynomial| |#2|)) (|SparseUnivariatePolynomial| |#2|)) "\\spad{factorSquareFreeByRecursion(p)} returns the square free factorization of \\spad{p}. This functions performs the recursion step for factorSquareFreePolynomial,{} as defined in \\spadfun{PolynomialFactorizationExplicit} category (see \\spadfun{factorSquareFreePolynomial}).")) (|factorByRecursion| (((|Factored| (|SparseUnivariatePolynomial| |#2|)) (|SparseUnivariatePolynomial| |#2|)) "\\spad{factorByRecursion(p)} factors polynomial \\spad{p}. This function performs the recursion step for factorPolynomial,{} as defined in \\spadfun{PolynomialFactorizationExplicit} category (see \\spadfun{factorPolynomial})")) (|solveLinearPolynomialEquationByRecursion| (((|Union| (|List| (|SparseUnivariatePolynomial| |#2|)) "failed") (|List| (|SparseUnivariatePolynomial| |#2|)) (|SparseUnivariatePolynomial| |#2|)) "\\spad{solveLinearPolynomialEquationByRecursion([p1,{}...,{}pn],{}p)} returns the list of polynomials \\spad{[q1,{}...,{}qn]} such that \\spad{sum qi/pi = p / prod \\spad{pi}},{} a recursion step for solveLinearPolynomialEquation as defined in \\spadfun{PolynomialFactorizationExplicit} category (see \\spadfun{solveLinearPolynomialEquation}). If no such list of \\spad{qi} exists,{} then \"failed\" is returned.")))
NIL
NIL
-(-839 S)
+(-841 S)
((|constructor| (NIL "This is the category of domains that know \"enough\" about themselves in order to factor univariate polynomials over themselves. This will be used in future releases for supporting factorization over finitely generated coefficient fields,{} it is not yet available in the current release of axiom.")) (|charthRoot| (((|Union| $ "failed") $) "\\spad{charthRoot(r)} returns the \\spad{p}\\spad{-}th root of \\spad{r},{} or \"failed\" if none exists in the domain.")) (|conditionP| (((|Union| (|Vector| $) "failed") (|Matrix| $)) "\\spad{conditionP(m)} returns a vector of elements,{} not all zero,{} whose \\spad{p}\\spad{-}th powers (\\spad{p} is the characteristic of the domain) are a solution of the homogenous linear system represented by \\spad{m},{} or \"failed\" is there is no such vector.")) (|solveLinearPolynomialEquation| (((|Union| (|List| (|SparseUnivariatePolynomial| $)) "failed") (|List| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{solveLinearPolynomialEquation([f1,{} ...,{} fn],{} g)} (where the \\spad{fi} are relatively prime to each other) returns a list of \\spad{ai} such that \\spad{g/prod \\spad{fi} = sum ai/fi} or returns \"failed\" if no such list of \\spad{ai}\\spad{'s} exists.")) (|gcdPolynomial| (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $)) "\\spad{gcdPolynomial(p,{}q)} returns the \\spad{gcd} of the univariate polynomials \\spad{p} \\spad{qnd} \\spad{q}.")) (|factorSquareFreePolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{factorSquareFreePolynomial(p)} factors the univariate polynomial \\spad{p} into irreducibles where \\spad{p} is known to be square free and primitive with respect to its main variable.")) (|factorPolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{factorPolynomial(p)} returns the factorization into irreducibles of the univariate polynomial \\spad{p}.")) (|squareFreePolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{squareFreePolynomial(p)} returns the square-free factorization of the univariate polynomial \\spad{p}.")))
NIL
-((|HasCategory| |#1| (QUOTE (-134))))
-(-840)
+((|HasCategory| |#1| (QUOTE (-136))))
+(-842)
((|constructor| (NIL "This is the category of domains that know \"enough\" about themselves in order to factor univariate polynomials over themselves. This will be used in future releases for supporting factorization over finitely generated coefficient fields,{} it is not yet available in the current release of axiom.")) (|charthRoot| (((|Union| $ "failed") $) "\\spad{charthRoot(r)} returns the \\spad{p}\\spad{-}th root of \\spad{r},{} or \"failed\" if none exists in the domain.")) (|conditionP| (((|Union| (|Vector| $) "failed") (|Matrix| $)) "\\spad{conditionP(m)} returns a vector of elements,{} not all zero,{} whose \\spad{p}\\spad{-}th powers (\\spad{p} is the characteristic of the domain) are a solution of the homogenous linear system represented by \\spad{m},{} or \"failed\" is there is no such vector.")) (|solveLinearPolynomialEquation| (((|Union| (|List| (|SparseUnivariatePolynomial| $)) "failed") (|List| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{solveLinearPolynomialEquation([f1,{} ...,{} fn],{} g)} (where the \\spad{fi} are relatively prime to each other) returns a list of \\spad{ai} such that \\spad{g/prod \\spad{fi} = sum ai/fi} or returns \"failed\" if no such list of \\spad{ai}\\spad{'s} exists.")) (|gcdPolynomial| (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $)) "\\spad{gcdPolynomial(p,{}q)} returns the \\spad{gcd} of the univariate polynomials \\spad{p} \\spad{qnd} \\spad{q}.")) (|factorSquareFreePolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{factorSquareFreePolynomial(p)} factors the univariate polynomial \\spad{p} into irreducibles where \\spad{p} is known to be square free and primitive with respect to its main variable.")) (|factorPolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{factorPolynomial(p)} returns the factorization into irreducibles of the univariate polynomial \\spad{p}.")) (|squareFreePolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{squareFreePolynomial(p)} returns the square-free factorization of the univariate polynomial \\spad{p}.")))
-((-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-841 |p|)
+(-843 |p|)
((|constructor| (NIL "PrimeField(\\spad{p}) implements the field with \\spad{p} elements if \\spad{p} is a prime number. Error: if \\spad{p} is not prime. Note: this domain does not check that argument is a prime.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| $ (QUOTE (-136))) (|HasCategory| $ (QUOTE (-134))) (|HasCategory| $ (QUOTE (-344))))
-(-842 R0 -3894 UP UPUP R)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| $ (QUOTE (-138))) (|HasCategory| $ (QUOTE (-136))) (|HasCategory| $ (QUOTE (-346))))
+(-844 R0 -3576 UP UPUP R)
((|constructor| (NIL "This package provides function for testing whether a divisor on a curve is a torsion divisor.")) (|torsionIfCan| (((|Union| (|Record| (|:| |order| (|NonNegativeInteger|)) (|:| |function| |#5|)) "failed") (|FiniteDivisor| |#2| |#3| |#4| |#5|)) "\\spad{torsionIfCan(f)}\\\\ undocumented")) (|torsion?| (((|Boolean|) (|FiniteDivisor| |#2| |#3| |#4| |#5|)) "\\spad{torsion?(f)} \\undocumented")) (|order| (((|Union| (|NonNegativeInteger|) "failed") (|FiniteDivisor| |#2| |#3| |#4| |#5|)) "\\spad{order(f)} \\undocumented")))
NIL
NIL
-(-843 UP UPUP R)
+(-845 UP UPUP R)
((|constructor| (NIL "This package provides function for testing whether a divisor on a curve is a torsion divisor.")) (|torsionIfCan| (((|Union| (|Record| (|:| |order| (|NonNegativeInteger|)) (|:| |function| |#3|)) "failed") (|FiniteDivisor| (|Fraction| (|Integer|)) |#1| |#2| |#3|)) "\\spad{torsionIfCan(f)} \\undocumented")) (|torsion?| (((|Boolean|) (|FiniteDivisor| (|Fraction| (|Integer|)) |#1| |#2| |#3|)) "\\spad{torsion?(f)} \\undocumented")) (|order| (((|Union| (|NonNegativeInteger|) "failed") (|FiniteDivisor| (|Fraction| (|Integer|)) |#1| |#2| |#3|)) "\\spad{order(f)} \\undocumented")))
NIL
NIL
-(-844 UP UPUP)
+(-846 UP UPUP)
((|constructor| (NIL "\\indented{1}{Utilities for PFOQ and PFO} Author: Manuel Bronstein Date Created: 25 Aug 1988 Date Last Updated: 11 Jul 1990")) (|polyred| ((|#2| |#2|) "\\spad{polyred(u)} \\undocumented")) (|doubleDisc| (((|Integer|) |#2|) "\\spad{doubleDisc(u)} \\undocumented")) (|mix| (((|Integer|) (|List| (|Record| (|:| |den| (|Integer|)) (|:| |gcdnum| (|Integer|))))) "\\spad{mix(l)} \\undocumented")) (|badNum| (((|Integer|) |#2|) "\\spad{badNum(u)} \\undocumented") (((|Record| (|:| |den| (|Integer|)) (|:| |gcdnum| (|Integer|))) |#1|) "\\spad{badNum(p)} \\undocumented")) (|getGoodPrime| (((|PositiveInteger|) (|Integer|)) "\\spad{getGoodPrime n} returns the smallest prime not dividing \\spad{n}")))
NIL
NIL
-(-845 R)
+(-847 R)
((|constructor| (NIL "The domain \\spadtype{PartialFraction} implements partial fractions over a euclidean domain \\spad{R}. This requirement on the argument domain allows us to normalize the fractions. Of particular interest are the 2 forms for these fractions. The ``compact\\spad{''} form has only one fractional term per prime in the denominator,{} while the \\spad{``p}-adic\\spad{''} form expands each numerator \\spad{p}-adically via the prime \\spad{p} in the denominator. For computational efficiency,{} the compact form is used,{} though the \\spad{p}-adic form may be gotten by calling the function \\spadfunFrom{padicFraction}{PartialFraction}. For a general euclidean domain,{} it is not known how to factor the denominator. Thus the function \\spadfunFrom{partialFraction}{PartialFraction} takes as its second argument an element of \\spadtype{Factored(R)}.")) (|wholePart| ((|#1| $) "\\spad{wholePart(p)} extracts the whole part of the partial fraction \\spad{p}.")) (|partialFraction| (($ |#1| (|Factored| |#1|)) "\\spad{partialFraction(numer,{}denom)} is the main function for constructing partial fractions. The second argument is the denominator and should be factored.")) (|padicFraction| (($ $) "\\spad{padicFraction(q)} expands the fraction \\spad{p}-adically in the primes \\spad{p} in the denominator of \\spad{q}. For example,{} \\spad{padicFraction(3/(2**2)) = 1/2 + 1/(2**2)}. Use \\spadfunFrom{compactFraction}{PartialFraction} to return to compact form.")) (|padicallyExpand| (((|SparseUnivariatePolynomial| |#1|) |#1| |#1|) "\\spad{padicallyExpand(p,{}x)} is a utility function that expands the second argument \\spad{x} \\spad{``p}-adically\\spad{''} in the first.")) (|numberOfFractionalTerms| (((|Integer|) $) "\\spad{numberOfFractionalTerms(p)} computes the number of fractional terms in \\spad{p}. This returns 0 if there is no fractional part.")) (|nthFractionalTerm| (($ $ (|Integer|)) "\\spad{nthFractionalTerm(p,{}n)} extracts the \\spad{n}th fractional term from the partial fraction \\spad{p}. This returns 0 if the index \\spad{n} is out of range.")) (|firstNumer| ((|#1| $) "\\spad{firstNumer(p)} extracts the numerator of the first fractional term. This returns 0 if there is no fractional part (use \\spadfunFrom{wholePart}{PartialFraction} to get the whole part).")) (|firstDenom| (((|Factored| |#1|) $) "\\spad{firstDenom(p)} extracts the denominator of the first fractional term. This returns 1 if there is no fractional part (use \\spadfunFrom{wholePart}{PartialFraction} to get the whole part).")) (|compactFraction| (($ $) "\\spad{compactFraction(p)} normalizes the partial fraction \\spad{p} to the compact representation. In this form,{} the partial fraction has only one fractional term per prime in the denominator.")) (|coerce| (($ (|Fraction| (|Factored| |#1|))) "\\spad{coerce(f)} takes a fraction with numerator and denominator in factored form and creates a partial fraction. It is necessary for the parts to be factored because it is not known in general how to factor elements of \\spad{R} and this is needed to decompose into partial fractions.") (((|Fraction| |#1|) $) "\\spad{coerce(p)} sums up the components of the partial fraction and returns a single fraction.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-846 R)
+(-848 R)
((|constructor| (NIL "The package \\spadtype{PartialFractionPackage} gives an easier to use interfact the domain \\spadtype{PartialFraction}. The user gives a fraction of polynomials,{} and a variable and the package converts it to the proper datatype for the \\spadtype{PartialFraction} domain.")) (|partialFraction| (((|Any|) (|Polynomial| |#1|) (|Factored| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{partialFraction(num,{} facdenom,{} var)} returns the partial fraction decomposition of the rational function whose numerator is \\spad{num} and whose factored denominator is \\spad{facdenom} with respect to the variable var.") (((|Any|) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{partialFraction(rf,{} var)} returns the partial fraction decomposition of the rational function \\spad{rf} with respect to the variable var.")))
NIL
NIL
-(-847 E OV R P)
+(-849 E OV R P)
((|gcdPrimitive| ((|#4| (|List| |#4|)) "\\spad{gcdPrimitive lp} computes the \\spad{gcd} of the list of primitive polynomials \\spad{lp}.") (((|SparseUnivariatePolynomial| |#4|) (|SparseUnivariatePolynomial| |#4|) (|SparseUnivariatePolynomial| |#4|)) "\\spad{gcdPrimitive(p,{}q)} computes the \\spad{gcd} of the primitive polynomials \\spad{p} and \\spad{q}.") ((|#4| |#4| |#4|) "\\spad{gcdPrimitive(p,{}q)} computes the \\spad{gcd} of the primitive polynomials \\spad{p} and \\spad{q}.")) (|gcd| (((|SparseUnivariatePolynomial| |#4|) (|List| (|SparseUnivariatePolynomial| |#4|))) "\\spad{gcd(lp)} computes the \\spad{gcd} of the list of polynomials \\spad{lp}.") (((|SparseUnivariatePolynomial| |#4|) (|SparseUnivariatePolynomial| |#4|) (|SparseUnivariatePolynomial| |#4|)) "\\spad{gcd(p,{}q)} computes the \\spad{gcd} of the two polynomials \\spad{p} and \\spad{q}.") ((|#4| (|List| |#4|)) "\\spad{gcd(lp)} computes the \\spad{gcd} of the list of polynomials \\spad{lp}.") ((|#4| |#4| |#4|) "\\spad{gcd(p,{}q)} computes the \\spad{gcd} of the two polynomials \\spad{p} and \\spad{q}.")))
NIL
NIL
-(-848)
+(-850)
((|constructor| (NIL "PermutationGroupExamples provides permutation groups for some classes of groups: symmetric,{} alternating,{} dihedral,{} cyclic,{} direct products of cyclic,{} which are in fact the finite abelian groups of symmetric groups called Young subgroups. Furthermore,{} Rubik\\spad{'s} group as permutation group of 48 integers and a list of sporadic simple groups derived from the atlas of finite groups.")) (|youngGroup| (((|PermutationGroup| (|Integer|)) (|Partition|)) "\\spad{youngGroup(lambda)} constructs the direct product of the symmetric groups given by the parts of the partition {\\em lambda}.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{youngGroup([n1,{}...,{}nk])} constructs the direct product of the symmetric groups {\\em Sn1},{}...,{}{\\em Snk}.")) (|rubiksGroup| (((|PermutationGroup| (|Integer|))) "\\spad{rubiksGroup constructs} the permutation group representing Rubic\\spad{'s} Cube acting on integers {\\em 10*i+j} for {\\em 1 <= i <= 6},{} {\\em 1 <= j <= 8}. The faces of Rubik\\spad{'s} Cube are labelled in the obvious way Front,{} Right,{} Up,{} Down,{} Left,{} Back and numbered from 1 to 6 in this given ordering,{} the pieces on each face (except the unmoveable center piece) are clockwise numbered from 1 to 8 starting with the piece in the upper left corner. The moves of the cube are represented as permutations on these pieces,{} represented as a two digit integer {\\em ij} where \\spad{i} is the numer of theface (1 to 6) and \\spad{j} is the number of the piece on this face. The remaining ambiguities are resolved by looking at the 6 generators,{} which represent a 90 degree turns of the faces,{} or from the following pictorial description. Permutation group representing Rubic\\spad{'s} Cube acting on integers 10*i+j for 1 \\spad{<=} \\spad{i} \\spad{<=} 6,{} 1 \\spad{<=} \\spad{j} \\spad{<=8}. \\blankline\\begin{verbatim}Rubik's Cube: +-----+ +-- B where: marks Side # : / U /|/ / / | F(ront) <-> 1 L --> +-----+ R| R(ight) <-> 2 | | + U(p) <-> 3 | F | / D(own) <-> 4 | |/ L(eft) <-> 5 +-----+ B(ack) <-> 6 ^ | DThe Cube's surface: The pieces on each side +---+ (except the unmoveable center |567| piece) are clockwise numbered |4U8| from 1 to 8 starting with the |321| piece in the upper left +---+---+---+ corner (see figure on the |781|123|345| left). The moves of the cube |6L2|8F4|2R6| are represented as |543|765|187| permutations on these pieces. +---+---+---+ Each of the pieces is |123| represented as a two digit |8D4| integer ij where i is the |765| # of the side ( 1 to 6 for +---+ F to B (see table above )) |567| and j is the # of the piece. |4B8| |321| +---+\\end{verbatim}")) (|janko2| (((|PermutationGroup| (|Integer|))) "\\spad{janko2 constructs} the janko group acting on the integers 1,{}...,{}100.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{janko2(\\spad{li})} constructs the janko group acting on the 100 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed. Error: if {\\em \\spad{li}} has less or more than 100 different entries")) (|mathieu24| (((|PermutationGroup| (|Integer|))) "\\spad{mathieu24 constructs} the mathieu group acting on the integers 1,{}...,{}24.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{mathieu24(\\spad{li})} constructs the mathieu group acting on the 24 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed. Error: if {\\em \\spad{li}} has less or more than 24 different entries.")) (|mathieu23| (((|PermutationGroup| (|Integer|))) "\\spad{mathieu23 constructs} the mathieu group acting on the integers 1,{}...,{}23.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{mathieu23(\\spad{li})} constructs the mathieu group acting on the 23 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed. Error: if {\\em \\spad{li}} has less or more than 23 different entries.")) (|mathieu22| (((|PermutationGroup| (|Integer|))) "\\spad{mathieu22 constructs} the mathieu group acting on the integers 1,{}...,{}22.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{mathieu22(\\spad{li})} constructs the mathieu group acting on the 22 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed. Error: if {\\em \\spad{li}} has less or more than 22 different entries.")) (|mathieu12| (((|PermutationGroup| (|Integer|))) "\\spad{mathieu12 constructs} the mathieu group acting on the integers 1,{}...,{}12.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{mathieu12(\\spad{li})} constructs the mathieu group acting on the 12 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed Error: if {\\em \\spad{li}} has less or more than 12 different entries.")) (|mathieu11| (((|PermutationGroup| (|Integer|))) "\\spad{mathieu11 constructs} the mathieu group acting on the integers 1,{}...,{}11.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{mathieu11(\\spad{li})} constructs the mathieu group acting on the 11 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed. error,{} if {\\em \\spad{li}} has less or more than 11 different entries.")) (|dihedralGroup| (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{dihedralGroup([i1,{}...,{}ik])} constructs the dihedral group of order 2k acting on the integers out of {\\em i1},{}...,{}{\\em ik}. Note: duplicates in the list will be removed.") (((|PermutationGroup| (|Integer|)) (|PositiveInteger|)) "\\spad{dihedralGroup(n)} constructs the dihedral group of order 2n acting on integers 1,{}...,{}\\spad{N}.")) (|cyclicGroup| (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{cyclicGroup([i1,{}...,{}ik])} constructs the cyclic group of order \\spad{k} acting on the integers {\\em i1},{}...,{}{\\em ik}. Note: duplicates in the list will be removed.") (((|PermutationGroup| (|Integer|)) (|PositiveInteger|)) "\\spad{cyclicGroup(n)} constructs the cyclic group of order \\spad{n} acting on the integers 1,{}...,{}\\spad{n}.")) (|abelianGroup| (((|PermutationGroup| (|Integer|)) (|List| (|PositiveInteger|))) "\\spad{abelianGroup([n1,{}...,{}nk])} constructs the abelian group that is the direct product of cyclic groups with order {\\em \\spad{ni}}.")) (|alternatingGroup| (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{alternatingGroup(\\spad{li})} constructs the alternating group acting on the integers in the list {\\em \\spad{li}},{} generators are in general the {\\em n-2}-cycle {\\em (\\spad{li}.3,{}...,{}\\spad{li}.n)} and the 3-cycle {\\em (\\spad{li}.1,{}\\spad{li}.2,{}\\spad{li}.3)},{} if \\spad{n} is odd and product of the 2-cycle {\\em (\\spad{li}.1,{}\\spad{li}.2)} with {\\em n-2}-cycle {\\em (\\spad{li}.3,{}...,{}\\spad{li}.n)} and the 3-cycle {\\em (\\spad{li}.1,{}\\spad{li}.2,{}\\spad{li}.3)},{} if \\spad{n} is even. Note: duplicates in the list will be removed.") (((|PermutationGroup| (|Integer|)) (|PositiveInteger|)) "\\spad{alternatingGroup(n)} constructs the alternating group {\\em An} acting on the integers 1,{}...,{}\\spad{n},{} generators are in general the {\\em n-2}-cycle {\\em (3,{}...,{}n)} and the 3-cycle {\\em (1,{}2,{}3)} if \\spad{n} is odd and the product of the 2-cycle {\\em (1,{}2)} with {\\em n-2}-cycle {\\em (3,{}...,{}n)} and the 3-cycle {\\em (1,{}2,{}3)} if \\spad{n} is even.")) (|symmetricGroup| (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{symmetricGroup(\\spad{li})} constructs the symmetric group acting on the integers in the list {\\em \\spad{li}},{} generators are the cycle given by {\\em \\spad{li}} and the 2-cycle {\\em (\\spad{li}.1,{}\\spad{li}.2)}. Note: duplicates in the list will be removed.") (((|PermutationGroup| (|Integer|)) (|PositiveInteger|)) "\\spad{symmetricGroup(n)} constructs the symmetric group {\\em Sn} acting on the integers 1,{}...,{}\\spad{n},{} generators are the {\\em n}-cycle {\\em (1,{}...,{}n)} and the 2-cycle {\\em (1,{}2)}.")))
NIL
NIL
-(-849 -3894)
+(-851 -3576)
((|constructor| (NIL "Groebner functions for \\spad{P} \\spad{F} \\indented{2}{This package is an interface package to the groebner basis} package which allows you to compute groebner bases for polynomials in either lexicographic ordering or total degree ordering refined by reverse lex. The input is the ordinary polynomial type which is internally converted to a type with the required ordering. The resulting grobner basis is converted back to ordinary polynomials. The ordering among the variables is controlled by an explicit list of variables which is passed as a second argument. The coefficient domain is allowed to be any \\spad{gcd} domain,{} but the groebner basis is computed as if the polynomials were over a field.")) (|totalGroebner| (((|List| (|Polynomial| |#1|)) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|))) "\\spad{totalGroebner(lp,{}lv)} computes Groebner basis for the list of polynomials \\spad{lp} with the terms ordered first by total degree and then refined by reverse lexicographic ordering. The variables are ordered by their position in the list \\spad{lv}.")) (|lexGroebner| (((|List| (|Polynomial| |#1|)) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|))) "\\spad{lexGroebner(lp,{}lv)} computes Groebner basis for the list of polynomials \\spad{lp} in lexicographic order. The variables are ordered by their position in the list \\spad{lv}.")))
NIL
NIL
-(-850 R)
+(-852 R)
((|constructor| (NIL "\\indented{1}{Provides a coercion from the symbolic fractions in \\%\\spad{pi} with} integer coefficients to any Expression type. Date Created: 21 Feb 1990 Date Last Updated: 21 Feb 1990")) (|coerce| (((|Expression| |#1|) (|Pi|)) "\\spad{coerce(f)} returns \\spad{f} as an Expression(\\spad{R}).")))
NIL
NIL
-(-851)
+(-853)
((|constructor| (NIL "The category of constructive principal ideal domains,{} \\spadignore{i.e.} where a single generator can be constructively found for any ideal given by a finite set of generators. Note that this constructive definition only implies that finitely generated ideals are principal. It is not clear what we would mean by an infinitely generated ideal.")) (|expressIdealMember| (((|Union| (|List| $) "failed") (|List| $) $) "\\spad{expressIdealMember([f1,{}...,{}fn],{}h)} returns a representation of \\spad{h} as a linear combination of the \\spad{fi} or \"failed\" if \\spad{h} is not in the ideal generated by the \\spad{fi}.")) (|principalIdeal| (((|Record| (|:| |coef| (|List| $)) (|:| |generator| $)) (|List| $)) "\\spad{principalIdeal([f1,{}...,{}fn])} returns a record whose generator component is a generator of the ideal generated by \\spad{[f1,{}...,{}fn]} whose coef component satisfies \\spad{generator = sum (input.i * coef.i)}")))
-((-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-852)
+(-854)
((|constructor| (NIL "\\spadtype{PositiveInteger} provides functions for \\indented{2}{positive integers.}")) (|commutative| ((|attribute| "*") "\\spad{commutative(\"*\")} means multiplication is commutative : x*y = \\spad{y*x}")) (|gcd| (($ $ $) "\\spad{gcd(a,{}b)} computes the greatest common divisor of two positive integers \\spad{a} and \\spad{b}.")))
-(((-4250 "*") . T))
+(((-4252 "*") . T))
NIL
-(-853 -3894 P)
+(-855 -3576 P)
((|constructor| (NIL "This package exports interpolation algorithms")) (|LagrangeInterpolation| ((|#2| (|List| |#1|) (|List| |#1|)) "\\spad{LagrangeInterpolation(l1,{}l2)} \\undocumented")))
NIL
NIL
-(-854 |xx| -3894)
+(-856 |xx| -3576)
((|constructor| (NIL "This package exports interpolation algorithms")) (|interpolate| (((|SparseUnivariatePolynomial| |#2|) (|List| |#2|) (|List| |#2|)) "\\spad{interpolate(lf,{}lg)} \\undocumented") (((|UnivariatePolynomial| |#1| |#2|) (|UnivariatePolynomial| |#1| |#2|) (|List| |#2|) (|List| |#2|)) "\\spad{interpolate(u,{}lf,{}lg)} \\undocumented")))
NIL
NIL
-(-855 R |Var| |Expon| GR)
+(-857 R |Var| |Expon| GR)
((|constructor| (NIL "Author: William Sit,{} spring 89")) (|inconsistent?| (((|Boolean|) (|List| (|Polynomial| |#1|))) "inconsistant?(\\spad{pl}) returns \\spad{true} if the system of equations \\spad{p} = 0 for \\spad{p} in \\spad{pl} is inconsistent. It is assumed that \\spad{pl} is a groebner basis.") (((|Boolean|) (|List| |#4|)) "inconsistant?(\\spad{pl}) returns \\spad{true} if the system of equations \\spad{p} = 0 for \\spad{p} in \\spad{pl} is inconsistent. It is assumed that \\spad{pl} is a groebner basis.")) (|sqfree| ((|#4| |#4|) "\\spad{sqfree(p)} returns the product of square free factors of \\spad{p}")) (|regime| (((|Record| (|:| |eqzro| (|List| |#4|)) (|:| |neqzro| (|List| |#4|)) (|:| |wcond| (|List| (|Polynomial| |#1|))) (|:| |bsoln| (|Record| (|:| |partsol| (|Vector| (|Fraction| (|Polynomial| |#1|)))) (|:| |basis| (|List| (|Vector| (|Fraction| (|Polynomial| |#1|)))))))) (|Record| (|:| |det| |#4|) (|:| |rows| (|List| (|Integer|))) (|:| |cols| (|List| (|Integer|)))) (|Matrix| |#4|) (|List| (|Fraction| (|Polynomial| |#1|))) (|List| (|List| |#4|)) (|NonNegativeInteger|) (|NonNegativeInteger|) (|Integer|)) "\\spad{regime(y,{}c,{} w,{} p,{} r,{} rm,{} m)} returns a regime,{} a list of polynomials specifying the consistency conditions,{} a particular solution and basis representing the general solution of the parametric linear system \\spad{c} \\spad{z} = \\spad{w} on that regime. The regime returned depends on the subdeterminant \\spad{y}.det and the row and column indices. The solutions are simplified using the assumption that the system has rank \\spad{r} and maximum rank \\spad{rm}. The list \\spad{p} represents a list of list of factors of polynomials in a groebner basis of the ideal generated by higher order subdeterminants,{} and ius used for the simplification. The mode \\spad{m} distinguishes the cases when the system is homogeneous,{} or the right hand side is arbitrary,{} or when there is no new right hand side variables.")) (|redmat| (((|Matrix| |#4|) (|Matrix| |#4|) (|List| |#4|)) "\\spad{redmat(m,{}g)} returns a matrix whose entries are those of \\spad{m} modulo the ideal generated by the groebner basis \\spad{g}")) (|ParCond| (((|List| (|Record| (|:| |det| |#4|) (|:| |rows| (|List| (|Integer|))) (|:| |cols| (|List| (|Integer|))))) (|Matrix| |#4|) (|NonNegativeInteger|)) "\\spad{ParCond(m,{}k)} returns the list of all \\spad{k} by \\spad{k} subdeterminants in the matrix \\spad{m}")) (|overset?| (((|Boolean|) (|List| |#4|) (|List| (|List| |#4|))) "\\spad{overset?(s,{}sl)} returns \\spad{true} if \\spad{s} properly a sublist of a member of \\spad{sl}; otherwise it returns \\spad{false}")) (|nextSublist| (((|List| (|List| (|Integer|))) (|Integer|) (|Integer|)) "\\spad{nextSublist(n,{}k)} returns a list of \\spad{k}-subsets of {1,{} ...,{} \\spad{n}}.")) (|minset| (((|List| (|List| |#4|)) (|List| (|List| |#4|))) "\\spad{minset(sl)} returns the sublist of \\spad{sl} consisting of the minimal lists (with respect to inclusion) in the list \\spad{sl} of lists")) (|minrank| (((|NonNegativeInteger|) (|List| (|Record| (|:| |rank| (|NonNegativeInteger|)) (|:| |eqns| (|List| (|Record| (|:| |det| |#4|) (|:| |rows| (|List| (|Integer|))) (|:| |cols| (|List| (|Integer|)))))) (|:| |fgb| (|List| |#4|))))) "\\spad{minrank(r)} returns the minimum rank in the list \\spad{r} of regimes")) (|maxrank| (((|NonNegativeInteger|) (|List| (|Record| (|:| |rank| (|NonNegativeInteger|)) (|:| |eqns| (|List| (|Record| (|:| |det| |#4|) (|:| |rows| (|List| (|Integer|))) (|:| |cols| (|List| (|Integer|)))))) (|:| |fgb| (|List| |#4|))))) "\\spad{maxrank(r)} returns the maximum rank in the list \\spad{r} of regimes")) (|factorset| (((|List| |#4|) |#4|) "\\spad{factorset(p)} returns the set of irreducible factors of \\spad{p}.")) (|B1solve| (((|Record| (|:| |partsol| (|Vector| (|Fraction| (|Polynomial| |#1|)))) (|:| |basis| (|List| (|Vector| (|Fraction| (|Polynomial| |#1|)))))) (|Record| (|:| |mat| (|Matrix| (|Fraction| (|Polynomial| |#1|)))) (|:| |vec| (|List| (|Fraction| (|Polynomial| |#1|)))) (|:| |rank| (|NonNegativeInteger|)) (|:| |rows| (|List| (|Integer|))) (|:| |cols| (|List| (|Integer|))))) "\\spad{B1solve(s)} solves the system (\\spad{s}.mat) \\spad{z} = \\spad{s}.vec for the variables given by the column indices of \\spad{s}.cols in terms of the other variables and the right hand side \\spad{s}.vec by assuming that the rank is \\spad{s}.rank,{} that the system is consistent,{} with the linearly independent equations indexed by the given row indices \\spad{s}.rows; the coefficients in \\spad{s}.mat involving parameters are treated as polynomials. B1solve(\\spad{s}) returns a particular solution to the system and a basis of the homogeneous system (\\spad{s}.mat) \\spad{z} = 0.")) (|redpps| (((|Record| (|:| |partsol| (|Vector| (|Fraction| (|Polynomial| |#1|)))) (|:| |basis| (|List| (|Vector| (|Fraction| (|Polynomial| |#1|)))))) (|Record| (|:| |partsol| (|Vector| (|Fraction| (|Polynomial| |#1|)))) (|:| |basis| (|List| (|Vector| (|Fraction| (|Polynomial| |#1|)))))) (|List| |#4|)) "\\spad{redpps(s,{}g)} returns the simplified form of \\spad{s} after reducing modulo a groebner basis \\spad{g}")) (|ParCondList| (((|List| (|Record| (|:| |rank| (|NonNegativeInteger|)) (|:| |eqns| (|List| (|Record| (|:| |det| |#4|) (|:| |rows| (|List| (|Integer|))) (|:| |cols| (|List| (|Integer|)))))) (|:| |fgb| (|List| |#4|)))) (|Matrix| |#4|) (|NonNegativeInteger|)) "\\spad{ParCondList(c,{}r)} computes a list of subdeterminants of each rank \\spad{>=} \\spad{r} of the matrix \\spad{c} and returns a groebner basis for the ideal they generate")) (|hasoln| (((|Record| (|:| |sysok| (|Boolean|)) (|:| |z0| (|List| |#4|)) (|:| |n0| (|List| |#4|))) (|List| |#4|) (|List| |#4|)) "\\spad{hasoln(g,{} l)} tests whether the quasi-algebraic set defined by \\spad{p} = 0 for \\spad{p} in \\spad{g} and \\spad{q} \\spad{~=} 0 for \\spad{q} in \\spad{l} is empty or not and returns a simplified definition of the quasi-algebraic set")) (|pr2dmp| ((|#4| (|Polynomial| |#1|)) "\\spad{pr2dmp(p)} converts \\spad{p} to target domain")) (|se2rfi| (((|List| (|Fraction| (|Polynomial| |#1|))) (|List| (|Symbol|))) "\\spad{se2rfi(l)} converts \\spad{l} to target domain")) (|dmp2rfi| (((|List| (|Fraction| (|Polynomial| |#1|))) (|List| |#4|)) "\\spad{dmp2rfi(l)} converts \\spad{l} to target domain") (((|Matrix| (|Fraction| (|Polynomial| |#1|))) (|Matrix| |#4|)) "\\spad{dmp2rfi(m)} converts \\spad{m} to target domain") (((|Fraction| (|Polynomial| |#1|)) |#4|) "\\spad{dmp2rfi(p)} converts \\spad{p} to target domain")) (|bsolve| (((|Record| (|:| |rgl| (|List| (|Record| (|:| |eqzro| (|List| |#4|)) (|:| |neqzro| (|List| |#4|)) (|:| |wcond| (|List| (|Polynomial| |#1|))) (|:| |bsoln| (|Record| (|:| |partsol| (|Vector| (|Fraction| (|Polynomial| |#1|)))) (|:| |basis| (|List| (|Vector| (|Fraction| (|Polynomial| |#1|)))))))))) (|:| |rgsz| (|Integer|))) (|Matrix| |#4|) (|List| (|Fraction| (|Polynomial| |#1|))) (|NonNegativeInteger|) (|String|) (|Integer|)) "\\spad{bsolve(c,{} w,{} r,{} s,{} m)} returns a list of regimes and solutions of the system \\spad{c} \\spad{z} = \\spad{w} for ranks at least \\spad{r}; depending on the mode \\spad{m} chosen,{} it writes the output to a file given by the string \\spad{s}.")) (|rdregime| (((|List| (|Record| (|:| |eqzro| (|List| |#4|)) (|:| |neqzro| (|List| |#4|)) (|:| |wcond| (|List| (|Polynomial| |#1|))) (|:| |bsoln| (|Record| (|:| |partsol| (|Vector| (|Fraction| (|Polynomial| |#1|)))) (|:| |basis| (|List| (|Vector| (|Fraction| (|Polynomial| |#1|))))))))) (|String|)) "\\spad{rdregime(s)} reads in a list from a file with name \\spad{s}")) (|wrregime| (((|Integer|) (|List| (|Record| (|:| |eqzro| (|List| |#4|)) (|:| |neqzro| (|List| |#4|)) (|:| |wcond| (|List| (|Polynomial| |#1|))) (|:| |bsoln| (|Record| (|:| |partsol| (|Vector| (|Fraction| (|Polynomial| |#1|)))) (|:| |basis| (|List| (|Vector| (|Fraction| (|Polynomial| |#1|))))))))) (|String|)) "\\spad{wrregime(l,{}s)} writes a list of regimes to a file named \\spad{s} and returns the number of regimes written")) (|psolve| (((|Integer|) (|Matrix| |#4|) (|PositiveInteger|) (|String|)) "\\spad{psolve(c,{}k,{}s)} solves \\spad{c} \\spad{z} = 0 for all possible ranks \\spad{>=} \\spad{k} of the matrix \\spad{c},{} writes the results to a file named \\spad{s},{} and returns the number of regimes") (((|Integer|) (|Matrix| |#4|) (|List| (|Symbol|)) (|PositiveInteger|) (|String|)) "\\spad{psolve(c,{}w,{}k,{}s)} solves \\spad{c} \\spad{z} = \\spad{w} for all possible ranks \\spad{>=} \\spad{k} of the matrix \\spad{c} and indeterminate right hand side \\spad{w},{} writes the results to a file named \\spad{s},{} and returns the number of regimes") (((|Integer|) (|Matrix| |#4|) (|List| |#4|) (|PositiveInteger|) (|String|)) "\\spad{psolve(c,{}w,{}k,{}s)} solves \\spad{c} \\spad{z} = \\spad{w} for all possible ranks \\spad{>=} \\spad{k} of the matrix \\spad{c} and given right hand side \\spad{w},{} writes the results to a file named \\spad{s},{} and returns the number of regimes") (((|Integer|) (|Matrix| |#4|) (|String|)) "\\spad{psolve(c,{}s)} solves \\spad{c} \\spad{z} = 0 for all possible ranks of the matrix \\spad{c} and given right hand side vector \\spad{w},{} writes the results to a file named \\spad{s},{} and returns the number of regimes") (((|Integer|) (|Matrix| |#4|) (|List| (|Symbol|)) (|String|)) "\\spad{psolve(c,{}w,{}s)} solves \\spad{c} \\spad{z} = \\spad{w} for all possible ranks of the matrix \\spad{c} and indeterminate right hand side \\spad{w},{} writes the results to a file named \\spad{s},{} and returns the number of regimes") (((|Integer|) (|Matrix| |#4|) (|List| |#4|) (|String|)) "\\spad{psolve(c,{}w,{}s)} solves \\spad{c} \\spad{z} = \\spad{w} for all possible ranks of the matrix \\spad{c} and given right hand side vector \\spad{w},{} writes the results to a file named \\spad{s},{} and returns the number of regimes") (((|List| (|Record| (|:| |eqzro| (|List| |#4|)) (|:| |neqzro| (|List| |#4|)) (|:| |wcond| (|List| (|Polynomial| |#1|))) (|:| |bsoln| (|Record| (|:| |partsol| (|Vector| (|Fraction| (|Polynomial| |#1|)))) (|:| |basis| (|List| (|Vector| (|Fraction| (|Polynomial| |#1|))))))))) (|Matrix| |#4|) (|PositiveInteger|)) "\\spad{psolve(c)} solves the homogeneous linear system \\spad{c} \\spad{z} = 0 for all possible ranks \\spad{>=} \\spad{k} of the matrix \\spad{c}") (((|List| (|Record| (|:| |eqzro| (|List| |#4|)) (|:| |neqzro| (|List| |#4|)) (|:| |wcond| (|List| (|Polynomial| |#1|))) (|:| |bsoln| (|Record| (|:| |partsol| (|Vector| (|Fraction| (|Polynomial| |#1|)))) (|:| |basis| (|List| (|Vector| (|Fraction| (|Polynomial| |#1|))))))))) (|Matrix| |#4|) (|List| (|Symbol|)) (|PositiveInteger|)) "\\spad{psolve(c,{}w,{}k)} solves \\spad{c} \\spad{z} = \\spad{w} for all possible ranks \\spad{>=} \\spad{k} of the matrix \\spad{c} and indeterminate right hand side \\spad{w}") (((|List| (|Record| (|:| |eqzro| (|List| |#4|)) (|:| |neqzro| (|List| |#4|)) (|:| |wcond| (|List| (|Polynomial| |#1|))) (|:| |bsoln| (|Record| (|:| |partsol| (|Vector| (|Fraction| (|Polynomial| |#1|)))) (|:| |basis| (|List| (|Vector| (|Fraction| (|Polynomial| |#1|))))))))) (|Matrix| |#4|) (|List| |#4|) (|PositiveInteger|)) "\\spad{psolve(c,{}w,{}k)} solves \\spad{c} \\spad{z} = \\spad{w} for all possible ranks \\spad{>=} \\spad{k} of the matrix \\spad{c} and given right hand side vector \\spad{w}") (((|List| (|Record| (|:| |eqzro| (|List| |#4|)) (|:| |neqzro| (|List| |#4|)) (|:| |wcond| (|List| (|Polynomial| |#1|))) (|:| |bsoln| (|Record| (|:| |partsol| (|Vector| (|Fraction| (|Polynomial| |#1|)))) (|:| |basis| (|List| (|Vector| (|Fraction| (|Polynomial| |#1|))))))))) (|Matrix| |#4|)) "\\spad{psolve(c)} solves the homogeneous linear system \\spad{c} \\spad{z} = 0 for all possible ranks of the matrix \\spad{c}") (((|List| (|Record| (|:| |eqzro| (|List| |#4|)) (|:| |neqzro| (|List| |#4|)) (|:| |wcond| (|List| (|Polynomial| |#1|))) (|:| |bsoln| (|Record| (|:| |partsol| (|Vector| (|Fraction| (|Polynomial| |#1|)))) (|:| |basis| (|List| (|Vector| (|Fraction| (|Polynomial| |#1|))))))))) (|Matrix| |#4|) (|List| (|Symbol|))) "\\spad{psolve(c,{}w)} solves \\spad{c} \\spad{z} = \\spad{w} for all possible ranks of the matrix \\spad{c} and indeterminate right hand side \\spad{w}") (((|List| (|Record| (|:| |eqzro| (|List| |#4|)) (|:| |neqzro| (|List| |#4|)) (|:| |wcond| (|List| (|Polynomial| |#1|))) (|:| |bsoln| (|Record| (|:| |partsol| (|Vector| (|Fraction| (|Polynomial| |#1|)))) (|:| |basis| (|List| (|Vector| (|Fraction| (|Polynomial| |#1|))))))))) (|Matrix| |#4|) (|List| |#4|)) "\\spad{psolve(c,{}w)} solves \\spad{c} \\spad{z} = \\spad{w} for all possible ranks of the matrix \\spad{c} and given right hand side vector \\spad{w}")))
NIL
NIL
-(-856 S)
+(-858 S)
((|constructor| (NIL "PlotFunctions1 provides facilities for plotting curves where functions \\spad{SF} \\spad{->} \\spad{SF} are specified by giving an expression")) (|plotPolar| (((|Plot|) |#1| (|Symbol|)) "\\spad{plotPolar(f,{}theta)} plots the graph of \\spad{r = f(theta)} as \\spad{theta} ranges from 0 to 2 \\spad{pi}") (((|Plot|) |#1| (|Symbol|) (|Segment| (|DoubleFloat|))) "\\spad{plotPolar(f,{}theta,{}seg)} plots the graph of \\spad{r = f(theta)} as \\spad{theta} ranges over an interval")) (|plot| (((|Plot|) |#1| |#1| (|Symbol|) (|Segment| (|DoubleFloat|))) "\\spad{plot(f,{}g,{}t,{}seg)} plots the graph of \\spad{x = f(t)},{} \\spad{y = g(t)} as \\spad{t} ranges over an interval.") (((|Plot|) |#1| (|Symbol|) (|Segment| (|DoubleFloat|))) "\\spad{plot(fcn,{}x,{}seg)} plots the graph of \\spad{y = f(x)} on a interval")))
NIL
NIL
-(-857)
+(-859)
((|constructor| (NIL "Plot3D supports parametric plots defined over a real number system. A real number system is a model for the real numbers and as such may be an approximation. For example,{} floating point numbers and infinite continued fractions are real number systems. The facilities at this point are limited to 3-dimensional parametric plots.")) (|debug3D| (((|Boolean|) (|Boolean|)) "\\spad{debug3D(true)} turns debug mode on; debug3D(\\spad{false}) turns debug mode off.")) (|numFunEvals3D| (((|Integer|)) "\\spad{numFunEvals3D()} returns the number of points computed.")) (|setAdaptive3D| (((|Boolean|) (|Boolean|)) "\\spad{setAdaptive3D(true)} turns adaptive plotting on; setAdaptive3D(\\spad{false}) turns adaptive plotting off.")) (|adaptive3D?| (((|Boolean|)) "\\spad{adaptive3D?()} determines whether plotting be done adaptively.")) (|setScreenResolution3D| (((|Integer|) (|Integer|)) "\\spad{setScreenResolution3D(i)} sets the screen resolution for a 3d graph to \\spad{i}.")) (|screenResolution3D| (((|Integer|)) "\\spad{screenResolution3D()} returns the screen resolution for a 3d graph.")) (|setMaxPoints3D| (((|Integer|) (|Integer|)) "\\spad{setMaxPoints3D(i)} sets the maximum number of points in a plot to \\spad{i}.")) (|maxPoints3D| (((|Integer|)) "\\spad{maxPoints3D()} returns the maximum number of points in a plot.")) (|setMinPoints3D| (((|Integer|) (|Integer|)) "\\spad{setMinPoints3D(i)} sets the minimum number of points in a plot to \\spad{i}.")) (|minPoints3D| (((|Integer|)) "\\spad{minPoints3D()} returns the minimum number of points in a plot.")) (|tValues| (((|List| (|List| (|DoubleFloat|))) $) "\\spad{tValues(p)} returns a list of lists of the values of the parameter for which a point is computed,{} one list for each curve in the plot \\spad{p}.")) (|tRange| (((|Segment| (|DoubleFloat|)) $) "\\spad{tRange(p)} returns the range of the parameter in a parametric plot \\spad{p}.")) (|refine| (($ $) "\\spad{refine(x)} \\undocumented") (($ $ (|Segment| (|DoubleFloat|))) "\\spad{refine(x,{}r)} \\undocumented")) (|zoom| (($ $ (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|))) "\\spad{zoom(x,{}r,{}s,{}t)} \\undocumented")) (|plot| (($ $ (|Segment| (|DoubleFloat|))) "\\spad{plot(x,{}r)} \\undocumented") (($ (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|))) "\\spad{plot(f1,{}f2,{}f3,{}f4,{}x,{}y,{}z,{}w)} \\undocumented") (($ (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|))) "\\spad{plot(f,{}g,{}h,{}a..b)} plots {/emx = \\spad{f}(\\spad{t}),{} \\spad{y} = \\spad{g}(\\spad{t}),{} \\spad{z} = \\spad{h}(\\spad{t})} as \\spad{t} ranges over {/em[a,{}\\spad{b}]}.")) (|pointPlot| (($ (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|))) "\\spad{pointPlot(f,{}x,{}y,{}z,{}w)} \\undocumented") (($ (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|DoubleFloat|))) "\\spad{pointPlot(f,{}g,{}h,{}a..b)} plots {/emx = \\spad{f}(\\spad{t}),{} \\spad{y} = \\spad{g}(\\spad{t}),{} \\spad{z} = \\spad{h}(\\spad{t})} as \\spad{t} ranges over {/em[a,{}\\spad{b}]}.")))
NIL
NIL
-(-858)
+(-860)
((|constructor| (NIL "The Plot domain supports plotting of functions defined over a real number system. A real number system is a model for the real numbers and as such may be an approximation. For example floating point numbers and infinite continued fractions. The facilities at this point are limited to 2-dimensional plots or either a single function or a parametric function.")) (|debug| (((|Boolean|) (|Boolean|)) "\\spad{debug(true)} turns debug mode on \\spad{debug(false)} turns debug mode off")) (|numFunEvals| (((|Integer|)) "\\spad{numFunEvals()} returns the number of points computed")) (|setAdaptive| (((|Boolean|) (|Boolean|)) "\\spad{setAdaptive(true)} turns adaptive plotting on \\spad{setAdaptive(false)} turns adaptive plotting off")) (|adaptive?| (((|Boolean|)) "\\spad{adaptive?()} determines whether plotting be done adaptively")) (|setScreenResolution| (((|Integer|) (|Integer|)) "\\spad{setScreenResolution(i)} sets the screen resolution to \\spad{i}")) (|screenResolution| (((|Integer|)) "\\spad{screenResolution()} returns the screen resolution")) (|setMaxPoints| (((|Integer|) (|Integer|)) "\\spad{setMaxPoints(i)} sets the maximum number of points in a plot to \\spad{i}")) (|maxPoints| (((|Integer|)) "\\spad{maxPoints()} returns the maximum number of points in a plot")) (|setMinPoints| (((|Integer|) (|Integer|)) "\\spad{setMinPoints(i)} sets the minimum number of points in a plot to \\spad{i}")) (|minPoints| (((|Integer|)) "\\spad{minPoints()} returns the minimum number of points in a plot")) (|tRange| (((|Segment| (|DoubleFloat|)) $) "\\spad{tRange(p)} returns the range of the parameter in a parametric plot \\spad{p}")) (|refine| (($ $) "\\spad{refine(p)} performs a refinement on the plot \\spad{p}") (($ $ (|Segment| (|DoubleFloat|))) "\\spad{refine(x,{}r)} \\undocumented")) (|zoom| (($ $ (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|))) "\\spad{zoom(x,{}r,{}s)} \\undocumented") (($ $ (|Segment| (|DoubleFloat|))) "\\spad{zoom(x,{}r)} \\undocumented")) (|parametric?| (((|Boolean|) $) "\\spad{parametric? determines} whether it is a parametric plot?")) (|plotPolar| (($ (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) "\\spad{plotPolar(f)} plots the polar curve \\spad{r = f(theta)} as theta ranges over the interval \\spad{[0,{}2*\\%\\spad{pi}]}; this is the same as the parametric curve \\spad{x = f(t) * cos(t)},{} \\spad{y = f(t) * sin(t)}.") (($ (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|))) "\\spad{plotPolar(f,{}a..b)} plots the polar curve \\spad{r = f(theta)} as theta ranges over the interval \\spad{[a,{}b]}; this is the same as the parametric curve \\spad{x = f(t) * cos(t)},{} \\spad{y = f(t) * sin(t)}.")) (|pointPlot| (($ (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|))) "\\spad{pointPlot(t +-> (f(t),{}g(t)),{}a..b,{}c..d,{}e..f)} plots the parametric curve \\spad{x = f(t)},{} \\spad{y = g(t)} as \\spad{t} ranges over the interval \\spad{[a,{}b]}; \\spad{x}-range of \\spad{[c,{}d]} and \\spad{y}-range of \\spad{[e,{}f]} are noted in Plot object.") (($ (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|DoubleFloat|))) "\\spad{pointPlot(t +-> (f(t),{}g(t)),{}a..b)} plots the parametric curve \\spad{x = f(t)},{} \\spad{y = g(t)} as \\spad{t} ranges over the interval \\spad{[a,{}b]}.")) (|plot| (($ $ (|Segment| (|DoubleFloat|))) "\\spad{plot(x,{}r)} \\undocumented") (($ (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|))) "\\spad{plot(f,{}g,{}a..b,{}c..d,{}e..f)} plots the parametric curve \\spad{x = f(t)},{} \\spad{y = g(t)} as \\spad{t} ranges over the interval \\spad{[a,{}b]}; \\spad{x}-range of \\spad{[c,{}d]} and \\spad{y}-range of \\spad{[e,{}f]} are noted in Plot object.") (($ (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|))) "\\spad{plot(f,{}g,{}a..b)} plots the parametric curve \\spad{x = f(t)},{} \\spad{y = g(t)} as \\spad{t} ranges over the interval \\spad{[a,{}b]}.") (($ (|List| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|))) "\\spad{plot([f1,{}...,{}fm],{}a..b,{}c..d)} plots the functions \\spad{y = f1(x)},{}...,{} \\spad{y = fm(x)} on the interval \\spad{a..b}; \\spad{y}-range of \\spad{[c,{}d]} is noted in Plot object.") (($ (|List| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|DoubleFloat|))) "\\spad{plot([f1,{}...,{}fm],{}a..b)} plots the functions \\spad{y = f1(x)},{}...,{} \\spad{y = fm(x)} on the interval \\spad{a..b}.") (($ (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|))) "\\spad{plot(f,{}a..b,{}c..d)} plots the function \\spad{f(x)} on the interval \\spad{[a,{}b]}; \\spad{y}-range of \\spad{[c,{}d]} is noted in Plot object.") (($ (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|))) "\\spad{plot(f,{}a..b)} plots the function \\spad{f(x)} on the interval \\spad{[a,{}b]}.")))
NIL
NIL
-(-859)
+(-861)
((|constructor| (NIL "This package exports plotting tools")) (|calcRanges| (((|List| (|Segment| (|DoubleFloat|))) (|List| (|List| (|Point| (|DoubleFloat|))))) "\\spad{calcRanges(l)} \\undocumented")))
NIL
NIL
-(-860 R -3894)
+(-862 R -3576)
((|constructor| (NIL "Attaching assertions to symbols for pattern matching; Date Created: 21 Mar 1989 Date Last Updated: 23 May 1990")) (|multiple| ((|#2| |#2|) "\\spad{multiple(x)} tells the pattern matcher that \\spad{x} should preferably match a multi-term quantity in a sum or product. For matching on lists,{} multiple(\\spad{x}) tells the pattern matcher that \\spad{x} should match a list instead of an element of a list. Error: if \\spad{x} is not a symbol.")) (|optional| ((|#2| |#2|) "\\spad{optional(x)} tells the pattern matcher that \\spad{x} can match an identity (0 in a sum,{} 1 in a product or exponentiation). Error: if \\spad{x} is not a symbol.")) (|constant| ((|#2| |#2|) "\\spad{constant(x)} tells the pattern matcher that \\spad{x} should match only the symbol \\spad{'x} and no other quantity. Error: if \\spad{x} is not a symbol.")) (|assert| ((|#2| |#2| (|String|)) "\\spad{assert(x,{} s)} makes the assertion \\spad{s} about \\spad{x}. Error: if \\spad{x} is not a symbol.")))
NIL
NIL
-(-861)
+(-863)
((|constructor| (NIL "Attaching assertions to symbols for pattern matching. Date Created: 21 Mar 1989 Date Last Updated: 23 May 1990")) (|multiple| (((|Expression| (|Integer|)) (|Symbol|)) "\\spad{multiple(x)} tells the pattern matcher that \\spad{x} should preferably match a multi-term quantity in a sum or product. For matching on lists,{} multiple(\\spad{x}) tells the pattern matcher that \\spad{x} should match a list instead of an element of a list.")) (|optional| (((|Expression| (|Integer|)) (|Symbol|)) "\\spad{optional(x)} tells the pattern matcher that \\spad{x} can match an identity (0 in a sum,{} 1 in a product or exponentiation)..")) (|constant| (((|Expression| (|Integer|)) (|Symbol|)) "\\spad{constant(x)} tells the pattern matcher that \\spad{x} should match only the symbol \\spad{'x} and no other quantity.")) (|assert| (((|Expression| (|Integer|)) (|Symbol|) (|String|)) "\\spad{assert(x,{} s)} makes the assertion \\spad{s} about \\spad{x}.")))
NIL
NIL
-(-862 S A B)
+(-864 S A B)
((|constructor| (NIL "This packages provides tools for matching recursively in type towers.")) (|patternMatch| (((|PatternMatchResult| |#1| |#3|) |#2| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#3|)) "\\spad{patternMatch(expr,{} pat,{} res)} matches the pattern \\spad{pat} to the expression \\spad{expr}; res contains the variables of \\spad{pat} which are already matched and their matches. Note: this function handles type towers by changing the predicates and calling the matching function provided by \\spad{A}.")) (|fixPredicate| (((|Mapping| (|Boolean|) |#2|) (|Mapping| (|Boolean|) |#3|)) "\\spad{fixPredicate(f)} returns \\spad{g} defined by \\spad{g}(a) = \\spad{f}(a::B).")))
NIL
NIL
-(-863 S R -3894)
+(-865 S R -3576)
((|constructor| (NIL "This package provides pattern matching functions on function spaces.")) (|patternMatch| (((|PatternMatchResult| |#1| |#3|) |#3| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#3|)) "\\spad{patternMatch(expr,{} pat,{} res)} matches the pattern \\spad{pat} to the expression \\spad{expr}; res contains the variables of \\spad{pat} which are already matched and their matches.")))
NIL
NIL
-(-864 I)
+(-866 I)
((|constructor| (NIL "This package provides pattern matching functions on integers.")) (|patternMatch| (((|PatternMatchResult| (|Integer|) |#1|) |#1| (|Pattern| (|Integer|)) (|PatternMatchResult| (|Integer|) |#1|)) "\\spad{patternMatch(n,{} pat,{} res)} matches the pattern \\spad{pat} to the integer \\spad{n}; res contains the variables of \\spad{pat} which are already matched and their matches.")))
NIL
NIL
-(-865 S E)
+(-867 S E)
((|constructor| (NIL "This package provides pattern matching functions on kernels.")) (|patternMatch| (((|PatternMatchResult| |#1| |#2|) (|Kernel| |#2|) (|Pattern| |#1|) (|PatternMatchResult| |#1| |#2|)) "\\spad{patternMatch(f(e1,{}...,{}en),{} pat,{} res)} matches the pattern \\spad{pat} to \\spad{f(e1,{}...,{}en)}; res contains the variables of \\spad{pat} which are already matched and their matches.")))
NIL
NIL
-(-866 S R L)
+(-868 S R L)
((|constructor| (NIL "This package provides pattern matching functions on lists.")) (|patternMatch| (((|PatternMatchListResult| |#1| |#2| |#3|) |#3| (|Pattern| |#1|) (|PatternMatchListResult| |#1| |#2| |#3|)) "\\spad{patternMatch(l,{} pat,{} res)} matches the pattern \\spad{pat} to the list \\spad{l}; res contains the variables of \\spad{pat} which are already matched and their matches.")))
NIL
NIL
-(-867 S E V R P)
+(-869 S E V R P)
((|constructor| (NIL "This package provides pattern matching functions on polynomials.")) (|patternMatch| (((|PatternMatchResult| |#1| |#5|) |#5| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#5|)) "\\spad{patternMatch(p,{} pat,{} res)} matches the pattern \\spad{pat} to the polynomial \\spad{p}; res contains the variables of \\spad{pat} which are already matched and their matches.") (((|PatternMatchResult| |#1| |#5|) |#5| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#5|) (|Mapping| (|PatternMatchResult| |#1| |#5|) |#3| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#5|))) "\\spad{patternMatch(p,{} pat,{} res,{} vmatch)} matches the pattern \\spad{pat} to the polynomial \\spad{p}. \\spad{res} contains the variables of \\spad{pat} which are already matched and their matches; vmatch is the matching function to use on the variables.")))
NIL
-((|HasCategory| |#3| (LIST (QUOTE -817) (|devaluate| |#1|))))
-(-868 R -3894 -1943)
+((|HasCategory| |#3| (LIST (QUOTE -819) (|devaluate| |#1|))))
+(-870 R -3576 -4196)
((|constructor| (NIL "Attaching predicates to symbols for pattern matching. Date Created: 21 Mar 1989 Date Last Updated: 23 May 1990")) (|suchThat| ((|#2| |#2| (|List| (|Mapping| (|Boolean|) |#3|))) "\\spad{suchThat(x,{} [f1,{} f2,{} ...,{} fn])} attaches the predicate \\spad{f1} and \\spad{f2} and ... and \\spad{fn} to \\spad{x}. Error: if \\spad{x} is not a symbol.") ((|#2| |#2| (|Mapping| (|Boolean|) |#3|)) "\\spad{suchThat(x,{} foo)} attaches the predicate foo to \\spad{x}; error if \\spad{x} is not a symbol.")))
NIL
NIL
-(-869 -1943)
+(-871 -4196)
((|constructor| (NIL "Attaching predicates to symbols for pattern matching. Date Created: 21 Mar 1989 Date Last Updated: 23 May 1990")) (|suchThat| (((|Expression| (|Integer|)) (|Symbol|) (|List| (|Mapping| (|Boolean|) |#1|))) "\\spad{suchThat(x,{} [f1,{} f2,{} ...,{} fn])} attaches the predicate \\spad{f1} and \\spad{f2} and ... and \\spad{fn} to \\spad{x}.") (((|Expression| (|Integer|)) (|Symbol|) (|Mapping| (|Boolean|) |#1|)) "\\spad{suchThat(x,{} foo)} attaches the predicate foo to \\spad{x}.")))
NIL
NIL
-(-870 S R Q)
+(-872 S R Q)
((|constructor| (NIL "This package provides pattern matching functions on quotients.")) (|patternMatch| (((|PatternMatchResult| |#1| |#3|) |#3| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#3|)) "\\spad{patternMatch(a/b,{} pat,{} res)} matches the pattern \\spad{pat} to the quotient \\spad{a/b}; res contains the variables of \\spad{pat} which are already matched and their matches.")))
NIL
NIL
-(-871 S)
+(-873 S)
((|constructor| (NIL "This package provides pattern matching functions on symbols.")) (|patternMatch| (((|PatternMatchResult| |#1| (|Symbol|)) (|Symbol|) (|Pattern| |#1|) (|PatternMatchResult| |#1| (|Symbol|))) "\\spad{patternMatch(expr,{} pat,{} res)} matches the pattern \\spad{pat} to the expression \\spad{expr}; res contains the variables of \\spad{pat} which are already matched and their matches (necessary for recursion).")))
NIL
NIL
-(-872 S R P)
+(-874 S R P)
((|constructor| (NIL "This package provides tools for the pattern matcher.")) (|patternMatchTimes| (((|PatternMatchResult| |#1| |#3|) (|List| |#3|) (|List| (|Pattern| |#1|)) (|PatternMatchResult| |#1| |#3|) (|Mapping| (|PatternMatchResult| |#1| |#3|) |#3| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#3|))) "\\spad{patternMatchTimes(lsubj,{} lpat,{} res,{} match)} matches the product of patterns \\spad{reduce(*,{}lpat)} to the product of subjects \\spad{reduce(*,{}lsubj)}; \\spad{r} contains the previous matches and match is a pattern-matching function on \\spad{P}.")) (|patternMatch| (((|PatternMatchResult| |#1| |#3|) (|List| |#3|) (|List| (|Pattern| |#1|)) (|Mapping| |#3| (|List| |#3|)) (|PatternMatchResult| |#1| |#3|) (|Mapping| (|PatternMatchResult| |#1| |#3|) |#3| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#3|))) "\\spad{patternMatch(lsubj,{} lpat,{} op,{} res,{} match)} matches the list of patterns \\spad{lpat} to the list of subjects \\spad{lsubj},{} allowing for commutativity; \\spad{op} is the operator such that \\spad{op}(\\spad{lpat}) should match \\spad{op}(\\spad{lsubj}) at the end,{} \\spad{r} contains the previous matches,{} and match is a pattern-matching function on \\spad{P}.")))
NIL
NIL
-(-873)
+(-875)
((|constructor| (NIL "This package provides various polynomial number theoretic functions over the integers.")) (|legendre| (((|SparseUnivariatePolynomial| (|Fraction| (|Integer|))) (|Integer|)) "\\spad{legendre(n)} returns the \\spad{n}th Legendre polynomial \\spad{P[n](x)}. Note: Legendre polynomials,{} denoted \\spad{P[n](x)},{} are computed from the two term recurrence. The generating function is: \\spad{1/sqrt(1-2*t*x+t**2) = sum(P[n](x)*t**n,{} n=0..infinity)}.")) (|laguerre| (((|SparseUnivariatePolynomial| (|Integer|)) (|Integer|)) "\\spad{laguerre(n)} returns the \\spad{n}th Laguerre polynomial \\spad{L[n](x)}. Note: Laguerre polynomials,{} denoted \\spad{L[n](x)},{} are computed from the two term recurrence. The generating function is: \\spad{exp(x*t/(t-1))/(1-t) = sum(L[n](x)*t**n/n!,{} n=0..infinity)}.")) (|hermite| (((|SparseUnivariatePolynomial| (|Integer|)) (|Integer|)) "\\spad{hermite(n)} returns the \\spad{n}th Hermite polynomial \\spad{H[n](x)}. Note: Hermite polynomials,{} denoted \\spad{H[n](x)},{} are computed from the two term recurrence. The generating function is: \\spad{exp(2*t*x-t**2) = sum(H[n](x)*t**n/n!,{} n=0..infinity)}.")) (|fixedDivisor| (((|Integer|) (|SparseUnivariatePolynomial| (|Integer|))) "\\spad{fixedDivisor(a)} for \\spad{a(x)} in \\spad{Z[x]} is the largest integer \\spad{f} such that \\spad{f} divides \\spad{a(x=k)} for all integers \\spad{k}. Note: fixed divisor of \\spad{a} is \\spad{reduce(gcd,{}[a(x=k) for k in 0..degree(a)])}.")) (|euler| (((|SparseUnivariatePolynomial| (|Fraction| (|Integer|))) (|Integer|)) "\\spad{euler(n)} returns the \\spad{n}th Euler polynomial \\spad{E[n](x)}. Note: Euler polynomials denoted \\spad{E(n,{}x)} computed by solving the differential equation \\spad{differentiate(E(n,{}x),{}x) = n E(n-1,{}x)} where \\spad{E(0,{}x) = 1} and initial condition comes from \\spad{E(n) = 2**n E(n,{}1/2)}.")) (|cyclotomic| (((|SparseUnivariatePolynomial| (|Integer|)) (|Integer|)) "\\spad{cyclotomic(n)} returns the \\spad{n}th cyclotomic polynomial \\spad{phi[n](x)}. Note: \\spad{phi[n](x)} is the factor of \\spad{x**n - 1} whose roots are the primitive \\spad{n}th roots of unity.")) (|chebyshevU| (((|SparseUnivariatePolynomial| (|Integer|)) (|Integer|)) "\\spad{chebyshevU(n)} returns the \\spad{n}th Chebyshev polynomial \\spad{U[n](x)}. Note: Chebyshev polynomials of the second kind,{} denoted \\spad{U[n](x)},{} computed from the two term recurrence. The generating function \\spad{1/(1-2*t*x+t**2) = sum(T[n](x)*t**n,{} n=0..infinity)}.")) (|chebyshevT| (((|SparseUnivariatePolynomial| (|Integer|)) (|Integer|)) "\\spad{chebyshevT(n)} returns the \\spad{n}th Chebyshev polynomial \\spad{T[n](x)}. Note: Chebyshev polynomials of the first kind,{} denoted \\spad{T[n](x)},{} computed from the two term recurrence. The generating function \\spad{(1-t*x)/(1-2*t*x+t**2) = sum(T[n](x)*t**n,{} n=0..infinity)}.")) (|bernoulli| (((|SparseUnivariatePolynomial| (|Fraction| (|Integer|))) (|Integer|)) "\\spad{bernoulli(n)} returns the \\spad{n}th Bernoulli polynomial \\spad{B[n](x)}. Note: Bernoulli polynomials denoted \\spad{B(n,{}x)} computed by solving the differential equation \\spad{differentiate(B(n,{}x),{}x) = n B(n-1,{}x)} where \\spad{B(0,{}x) = 1} and initial condition comes from \\spad{B(n) = B(n,{}0)}.")))
NIL
NIL
-(-874 R)
+(-876 R)
((|constructor| (NIL "This domain implements points in coordinate space")))
-((-4249 . T) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (-3255 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016)))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-666))) (|HasCategory| |#1| (QUOTE (-973))) (-12 (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-973)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-875 |lv| R)
+((-4251 . T) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (-3321 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018)))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-668))) (|HasCategory| |#1| (QUOTE (-975))) (-12 (|HasCategory| |#1| (QUOTE (-932))) (|HasCategory| |#1| (QUOTE (-975)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-877 |lv| R)
((|constructor| (NIL "Package with the conversion functions among different kind of polynomials")) (|pToDmp| (((|DistributedMultivariatePolynomial| |#1| |#2|) (|Polynomial| |#2|)) "\\spad{pToDmp(p)} converts \\spad{p} from a \\spadtype{POLY} to a \\spadtype{DMP}.")) (|dmpToP| (((|Polynomial| |#2|) (|DistributedMultivariatePolynomial| |#1| |#2|)) "\\spad{dmpToP(p)} converts \\spad{p} from a \\spadtype{DMP} to a \\spadtype{POLY}.")) (|hdmpToP| (((|Polynomial| |#2|) (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) "\\spad{hdmpToP(p)} converts \\spad{p} from a \\spadtype{HDMP} to a \\spadtype{POLY}.")) (|pToHdmp| (((|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|Polynomial| |#2|)) "\\spad{pToHdmp(p)} converts \\spad{p} from a \\spadtype{POLY} to a \\spadtype{HDMP}.")) (|hdmpToDmp| (((|DistributedMultivariatePolynomial| |#1| |#2|) (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) "\\spad{hdmpToDmp(p)} converts \\spad{p} from a \\spadtype{HDMP} to a \\spadtype{DMP}.")) (|dmpToHdmp| (((|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|DistributedMultivariatePolynomial| |#1| |#2|)) "\\spad{dmpToHdmp(p)} converts \\spad{p} from a \\spadtype{DMP} to a \\spadtype{HDMP}.")))
NIL
NIL
-(-876 |TheField| |ThePols|)
+(-878 |TheField| |ThePols|)
((|constructor| (NIL "\\axiomType{RealPolynomialUtilitiesPackage} provides common functions used by interval coding.")) (|lazyVariations| (((|NonNegativeInteger|) (|List| |#1|) (|Integer|) (|Integer|)) "\\axiom{lazyVariations(\\spad{l},{}\\spad{s1},{}\\spad{sn})} is the number of sign variations in the list of non null numbers [s1::l]\\spad{@sn},{}")) (|sturmVariationsOf| (((|NonNegativeInteger|) (|List| |#1|)) "\\axiom{sturmVariationsOf(\\spad{l})} is the number of sign variations in the list of numbers \\spad{l},{} note that the first term counts as a sign")) (|boundOfCauchy| ((|#1| |#2|) "\\axiom{boundOfCauchy(\\spad{p})} bounds the roots of \\spad{p}")) (|sturmSequence| (((|List| |#2|) |#2|) "\\axiom{sturmSequence(\\spad{p}) = sylvesterSequence(\\spad{p},{}\\spad{p'})}")) (|sylvesterSequence| (((|List| |#2|) |#2| |#2|) "\\axiom{sylvesterSequence(\\spad{p},{}\\spad{q})} is the negated remainder sequence of \\spad{p} and \\spad{q} divided by the last computed term")))
NIL
-((|HasCategory| |#1| (QUOTE (-784))))
-(-877 R S)
+((|HasCategory| |#1| (QUOTE (-786))))
+(-879 R S)
((|constructor| (NIL "\\indented{2}{This package takes a mapping between coefficient rings,{} and lifts} it to a mapping between polynomials over those rings.")) (|map| (((|Polynomial| |#2|) (|Mapping| |#2| |#1|) (|Polynomial| |#1|)) "\\spad{map(f,{} p)} produces a new polynomial as a result of applying the function \\spad{f} to every coefficient of the polynomial \\spad{p}.")))
NIL
NIL
-(-878 |x| R)
+(-880 |x| R)
((|constructor| (NIL "This package is primarily to help the interpreter do coercions. It allows you to view a polynomial as a univariate polynomial in one of its variables with coefficients which are again a polynomial in all the other variables.")) (|univariate| (((|UnivariatePolynomial| |#1| (|Polynomial| |#2|)) (|Polynomial| |#2|) (|Variable| |#1|)) "\\spad{univariate(p,{} x)} converts the polynomial \\spad{p} to a one of type \\spad{UnivariatePolynomial(x,{}Polynomial(R))},{} ie. as a member of \\spad{R[...][x]}.")))
NIL
NIL
-(-879 S R E |VarSet|)
+(-881 S R E |VarSet|)
((|constructor| (NIL "The category for general multi-variate polynomials over a ring \\spad{R},{} in variables from VarSet,{} with exponents from the \\spadtype{OrderedAbelianMonoidSup}.")) (|canonicalUnitNormal| ((|attribute|) "we can choose a unique representative for each associate class. This normalization is chosen to be normalization of leading coefficient (by default).")) (|squareFreePart| (($ $) "\\spad{squareFreePart(p)} returns product of all the irreducible factors of polynomial \\spad{p} each taken with multiplicity one.")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(p)} returns the square free factorization of the polynomial \\spad{p}.")) (|primitivePart| (($ $ |#4|) "\\spad{primitivePart(p,{}v)} returns the unitCanonical associate of the polynomial \\spad{p} with its content with respect to the variable \\spad{v} divided out.") (($ $) "\\spad{primitivePart(p)} returns the unitCanonical associate of the polynomial \\spad{p} with its content divided out.")) (|content| (($ $ |#4|) "\\spad{content(p,{}v)} is the \\spad{gcd} of the coefficients of the polynomial \\spad{p} when \\spad{p} is viewed as a univariate polynomial with respect to the variable \\spad{v}. Thus,{} for polynomial 7*x**2*y + 14*x*y**2,{} the \\spad{gcd} of the coefficients with respect to \\spad{x} is 7*y.")) (|discriminant| (($ $ |#4|) "\\spad{discriminant(p,{}v)} returns the disriminant of the polynomial \\spad{p} with respect to the variable \\spad{v}.")) (|resultant| (($ $ $ |#4|) "\\spad{resultant(p,{}q,{}v)} returns the resultant of the polynomials \\spad{p} and \\spad{q} with respect to the variable \\spad{v}.")) (|primitiveMonomials| (((|List| $) $) "\\spad{primitiveMonomials(p)} gives the list of monomials of the polynomial \\spad{p} with their coefficients removed. Note: \\spad{primitiveMonomials(sum(a_(i) X^(i))) = [X^(1),{}...,{}X^(n)]}.")) (|variables| (((|List| |#4|) $) "\\spad{variables(p)} returns the list of those variables actually appearing in the polynomial \\spad{p}.")) (|totalDegree| (((|NonNegativeInteger|) $ (|List| |#4|)) "\\spad{totalDegree(p,{} lv)} returns the maximum sum (over all monomials of polynomial \\spad{p}) of the variables in the list \\spad{lv}.") (((|NonNegativeInteger|) $) "\\spad{totalDegree(p)} returns the largest sum over all monomials of all exponents of a monomial.")) (|isExpt| (((|Union| (|Record| (|:| |var| |#4|) (|:| |exponent| (|NonNegativeInteger|))) "failed") $) "\\spad{isExpt(p)} returns \\spad{[x,{} n]} if polynomial \\spad{p} has the form \\spad{x**n} and \\spad{n > 0}.")) (|isTimes| (((|Union| (|List| $) "failed") $) "\\spad{isTimes(p)} returns \\spad{[a1,{}...,{}an]} if polynomial \\spad{p = a1 ... an} and \\spad{n >= 2},{} and,{} for each \\spad{i},{} \\spad{ai} is either a nontrivial constant in \\spad{R} or else of the form \\spad{x**e},{} where \\spad{e > 0} is an integer and \\spad{x} in a member of VarSet.")) (|isPlus| (((|Union| (|List| $) "failed") $) "\\spad{isPlus(p)} returns \\spad{[m1,{}...,{}mn]} if polynomial \\spad{p = m1 + ... + mn} and \\spad{n >= 2} and each \\spad{mi} is a nonzero monomial.")) (|multivariate| (($ (|SparseUnivariatePolynomial| $) |#4|) "\\spad{multivariate(sup,{}v)} converts an anonymous univariable polynomial \\spad{sup} to a polynomial in the variable \\spad{v}.") (($ (|SparseUnivariatePolynomial| |#2|) |#4|) "\\spad{multivariate(sup,{}v)} converts an anonymous univariable polynomial \\spad{sup} to a polynomial in the variable \\spad{v}.")) (|monomial| (($ $ (|List| |#4|) (|List| (|NonNegativeInteger|))) "\\spad{monomial(a,{}[v1..vn],{}[e1..en])} returns \\spad{a*prod(vi**ei)}.") (($ $ |#4| (|NonNegativeInteger|)) "\\spad{monomial(a,{}x,{}n)} creates the monomial \\spad{a*x**n} where \\spad{a} is a polynomial,{} \\spad{x} is a variable and \\spad{n} is a nonnegative integer.")) (|monicDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $ |#4|) "\\spad{monicDivide(a,{}b,{}v)} divides the polynomial a by the polynomial \\spad{b},{} with each viewed as a univariate polynomial in \\spad{v} returning both the quotient and remainder. Error: if \\spad{b} is not monic with respect to \\spad{v}.")) (|minimumDegree| (((|List| (|NonNegativeInteger|)) $ (|List| |#4|)) "\\spad{minimumDegree(p,{} lv)} gives the list of minimum degrees of the polynomial \\spad{p} with respect to each of the variables in the list \\spad{lv}") (((|NonNegativeInteger|) $ |#4|) "\\spad{minimumDegree(p,{}v)} gives the minimum degree of polynomial \\spad{p} with respect to \\spad{v},{} \\spadignore{i.e.} viewed a univariate polynomial in \\spad{v}")) (|mainVariable| (((|Union| |#4| "failed") $) "\\spad{mainVariable(p)} returns the biggest variable which actually occurs in the polynomial \\spad{p},{} or \"failed\" if no variables are present. fails precisely if polynomial satisfies ground?")) (|univariate| (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{univariate(p)} converts the multivariate polynomial \\spad{p},{} which should actually involve only one variable,{} into a univariate polynomial in that variable,{} whose coefficients are in the ground ring. Error: if polynomial is genuinely multivariate") (((|SparseUnivariatePolynomial| $) $ |#4|) "\\spad{univariate(p,{}v)} converts the multivariate polynomial \\spad{p} into a univariate polynomial in \\spad{v},{} whose coefficients are still multivariate polynomials (in all the other variables).")) (|monomials| (((|List| $) $) "\\spad{monomials(p)} returns the list of non-zero monomials of polynomial \\spad{p},{} \\spadignore{i.e.} \\spad{monomials(sum(a_(i) X^(i))) = [a_(1) X^(1),{}...,{}a_(n) X^(n)]}.")) (|coefficient| (($ $ (|List| |#4|) (|List| (|NonNegativeInteger|))) "\\spad{coefficient(p,{} lv,{} ln)} views the polynomial \\spad{p} as a polynomial in the variables of \\spad{lv} and returns the coefficient of the term \\spad{lv**ln},{} \\spadignore{i.e.} \\spad{prod(lv_i ** ln_i)}.") (($ $ |#4| (|NonNegativeInteger|)) "\\spad{coefficient(p,{}v,{}n)} views the polynomial \\spad{p} as a univariate polynomial in \\spad{v} and returns the coefficient of the \\spad{v**n} term.")) (|degree| (((|List| (|NonNegativeInteger|)) $ (|List| |#4|)) "\\spad{degree(p,{}lv)} gives the list of degrees of polynomial \\spad{p} with respect to each of the variables in the list \\spad{lv}.") (((|NonNegativeInteger|) $ |#4|) "\\spad{degree(p,{}v)} gives the degree of polynomial \\spad{p} with respect to the variable \\spad{v}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-840))) (|HasAttribute| |#2| (QUOTE -4246)) (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#4| (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#4| (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#4| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#4| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#4| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (QUOTE (-786))))
-(-880 R E |VarSet|)
+((|HasCategory| |#2| (QUOTE (-842))) (|HasAttribute| |#2| (QUOTE -4248)) (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#4| (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#4| (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#4| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#4| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#4| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (QUOTE (-788))))
+(-882 R E |VarSet|)
((|constructor| (NIL "The category for general multi-variate polynomials over a ring \\spad{R},{} in variables from VarSet,{} with exponents from the \\spadtype{OrderedAbelianMonoidSup}.")) (|canonicalUnitNormal| ((|attribute|) "we can choose a unique representative for each associate class. This normalization is chosen to be normalization of leading coefficient (by default).")) (|squareFreePart| (($ $) "\\spad{squareFreePart(p)} returns product of all the irreducible factors of polynomial \\spad{p} each taken with multiplicity one.")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(p)} returns the square free factorization of the polynomial \\spad{p}.")) (|primitivePart| (($ $ |#3|) "\\spad{primitivePart(p,{}v)} returns the unitCanonical associate of the polynomial \\spad{p} with its content with respect to the variable \\spad{v} divided out.") (($ $) "\\spad{primitivePart(p)} returns the unitCanonical associate of the polynomial \\spad{p} with its content divided out.")) (|content| (($ $ |#3|) "\\spad{content(p,{}v)} is the \\spad{gcd} of the coefficients of the polynomial \\spad{p} when \\spad{p} is viewed as a univariate polynomial with respect to the variable \\spad{v}. Thus,{} for polynomial 7*x**2*y + 14*x*y**2,{} the \\spad{gcd} of the coefficients with respect to \\spad{x} is 7*y.")) (|discriminant| (($ $ |#3|) "\\spad{discriminant(p,{}v)} returns the disriminant of the polynomial \\spad{p} with respect to the variable \\spad{v}.")) (|resultant| (($ $ $ |#3|) "\\spad{resultant(p,{}q,{}v)} returns the resultant of the polynomials \\spad{p} and \\spad{q} with respect to the variable \\spad{v}.")) (|primitiveMonomials| (((|List| $) $) "\\spad{primitiveMonomials(p)} gives the list of monomials of the polynomial \\spad{p} with their coefficients removed. Note: \\spad{primitiveMonomials(sum(a_(i) X^(i))) = [X^(1),{}...,{}X^(n)]}.")) (|variables| (((|List| |#3|) $) "\\spad{variables(p)} returns the list of those variables actually appearing in the polynomial \\spad{p}.")) (|totalDegree| (((|NonNegativeInteger|) $ (|List| |#3|)) "\\spad{totalDegree(p,{} lv)} returns the maximum sum (over all monomials of polynomial \\spad{p}) of the variables in the list \\spad{lv}.") (((|NonNegativeInteger|) $) "\\spad{totalDegree(p)} returns the largest sum over all monomials of all exponents of a monomial.")) (|isExpt| (((|Union| (|Record| (|:| |var| |#3|) (|:| |exponent| (|NonNegativeInteger|))) "failed") $) "\\spad{isExpt(p)} returns \\spad{[x,{} n]} if polynomial \\spad{p} has the form \\spad{x**n} and \\spad{n > 0}.")) (|isTimes| (((|Union| (|List| $) "failed") $) "\\spad{isTimes(p)} returns \\spad{[a1,{}...,{}an]} if polynomial \\spad{p = a1 ... an} and \\spad{n >= 2},{} and,{} for each \\spad{i},{} \\spad{ai} is either a nontrivial constant in \\spad{R} or else of the form \\spad{x**e},{} where \\spad{e > 0} is an integer and \\spad{x} in a member of VarSet.")) (|isPlus| (((|Union| (|List| $) "failed") $) "\\spad{isPlus(p)} returns \\spad{[m1,{}...,{}mn]} if polynomial \\spad{p = m1 + ... + mn} and \\spad{n >= 2} and each \\spad{mi} is a nonzero monomial.")) (|multivariate| (($ (|SparseUnivariatePolynomial| $) |#3|) "\\spad{multivariate(sup,{}v)} converts an anonymous univariable polynomial \\spad{sup} to a polynomial in the variable \\spad{v}.") (($ (|SparseUnivariatePolynomial| |#1|) |#3|) "\\spad{multivariate(sup,{}v)} converts an anonymous univariable polynomial \\spad{sup} to a polynomial in the variable \\spad{v}.")) (|monomial| (($ $ (|List| |#3|) (|List| (|NonNegativeInteger|))) "\\spad{monomial(a,{}[v1..vn],{}[e1..en])} returns \\spad{a*prod(vi**ei)}.") (($ $ |#3| (|NonNegativeInteger|)) "\\spad{monomial(a,{}x,{}n)} creates the monomial \\spad{a*x**n} where \\spad{a} is a polynomial,{} \\spad{x} is a variable and \\spad{n} is a nonnegative integer.")) (|monicDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $ |#3|) "\\spad{monicDivide(a,{}b,{}v)} divides the polynomial a by the polynomial \\spad{b},{} with each viewed as a univariate polynomial in \\spad{v} returning both the quotient and remainder. Error: if \\spad{b} is not monic with respect to \\spad{v}.")) (|minimumDegree| (((|List| (|NonNegativeInteger|)) $ (|List| |#3|)) "\\spad{minimumDegree(p,{} lv)} gives the list of minimum degrees of the polynomial \\spad{p} with respect to each of the variables in the list \\spad{lv}") (((|NonNegativeInteger|) $ |#3|) "\\spad{minimumDegree(p,{}v)} gives the minimum degree of polynomial \\spad{p} with respect to \\spad{v},{} \\spadignore{i.e.} viewed a univariate polynomial in \\spad{v}")) (|mainVariable| (((|Union| |#3| "failed") $) "\\spad{mainVariable(p)} returns the biggest variable which actually occurs in the polynomial \\spad{p},{} or \"failed\" if no variables are present. fails precisely if polynomial satisfies ground?")) (|univariate| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{univariate(p)} converts the multivariate polynomial \\spad{p},{} which should actually involve only one variable,{} into a univariate polynomial in that variable,{} whose coefficients are in the ground ring. Error: if polynomial is genuinely multivariate") (((|SparseUnivariatePolynomial| $) $ |#3|) "\\spad{univariate(p,{}v)} converts the multivariate polynomial \\spad{p} into a univariate polynomial in \\spad{v},{} whose coefficients are still multivariate polynomials (in all the other variables).")) (|monomials| (((|List| $) $) "\\spad{monomials(p)} returns the list of non-zero monomials of polynomial \\spad{p},{} \\spadignore{i.e.} \\spad{monomials(sum(a_(i) X^(i))) = [a_(1) X^(1),{}...,{}a_(n) X^(n)]}.")) (|coefficient| (($ $ (|List| |#3|) (|List| (|NonNegativeInteger|))) "\\spad{coefficient(p,{} lv,{} ln)} views the polynomial \\spad{p} as a polynomial in the variables of \\spad{lv} and returns the coefficient of the term \\spad{lv**ln},{} \\spadignore{i.e.} \\spad{prod(lv_i ** ln_i)}.") (($ $ |#3| (|NonNegativeInteger|)) "\\spad{coefficient(p,{}v,{}n)} views the polynomial \\spad{p} as a univariate polynomial in \\spad{v} and returns the coefficient of the \\spad{v**n} term.")) (|degree| (((|List| (|NonNegativeInteger|)) $ (|List| |#3|)) "\\spad{degree(p,{}lv)} gives the list of degrees of polynomial \\spad{p} with respect to each of the variables in the list \\spad{lv}.") (((|NonNegativeInteger|) $ |#3|) "\\spad{degree(p,{}v)} gives the degree of polynomial \\spad{p} with respect to the variable \\spad{v}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
NIL
-(-881 E V R P -3894)
+(-883 E V R P -3576)
((|constructor| (NIL "This package transforms multivariate polynomials or fractions into univariate polynomials or fractions,{} and back.")) (|isPower| (((|Union| (|Record| (|:| |val| |#5|) (|:| |exponent| (|Integer|))) "failed") |#5|) "\\spad{isPower(p)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0},{} \"failed\" otherwise.")) (|isExpt| (((|Union| (|Record| (|:| |var| |#2|) (|:| |exponent| (|Integer|))) "failed") |#5|) "\\spad{isExpt(p)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0},{} \"failed\" otherwise.")) (|isTimes| (((|Union| (|List| |#5|) "failed") |#5|) "\\spad{isTimes(p)} returns \\spad{[a1,{}...,{}an]} if \\spad{p = a1 ... an} and \\spad{n > 1},{} \"failed\" otherwise.")) (|isPlus| (((|Union| (|List| |#5|) "failed") |#5|) "\\spad{isPlus(p)} returns [\\spad{m1},{}...,{}\\spad{mn}] if \\spad{p = m1 + ... + mn} and \\spad{n > 1},{} \"failed\" otherwise.")) (|multivariate| ((|#5| (|Fraction| (|SparseUnivariatePolynomial| |#5|)) |#2|) "\\spad{multivariate(f,{} v)} applies both the numerator and denominator of \\spad{f} to \\spad{v}.")) (|univariate| (((|SparseUnivariatePolynomial| |#5|) |#5| |#2| (|SparseUnivariatePolynomial| |#5|)) "\\spad{univariate(f,{} x,{} p)} returns \\spad{f} viewed as a univariate polynomial in \\spad{x},{} using the side-condition \\spad{p(x) = 0}.") (((|Fraction| (|SparseUnivariatePolynomial| |#5|)) |#5| |#2|) "\\spad{univariate(f,{} v)} returns \\spad{f} viewed as a univariate rational function in \\spad{v}.")) (|mainVariable| (((|Union| |#2| "failed") |#5|) "\\spad{mainVariable(f)} returns the highest variable appearing in the numerator or the denominator of \\spad{f},{} \"failed\" if \\spad{f} has no variables.")) (|variables| (((|List| |#2|) |#5|) "\\spad{variables(f)} returns the list of variables appearing in the numerator or the denominator of \\spad{f}.")))
NIL
NIL
-(-882 E |Vars| R P S)
+(-884 E |Vars| R P S)
((|constructor| (NIL "This package provides a very general map function,{} which given a set \\spad{S} and polynomials over \\spad{R} with maps from the variables into \\spad{S} and the coefficients into \\spad{S},{} maps polynomials into \\spad{S}. \\spad{S} is assumed to support \\spad{+},{} \\spad{*} and \\spad{**}.")) (|map| ((|#5| (|Mapping| |#5| |#2|) (|Mapping| |#5| |#3|) |#4|) "\\spad{map(varmap,{} coefmap,{} p)} takes a \\spad{varmap},{} a mapping from the variables of polynomial \\spad{p} into \\spad{S},{} \\spad{coefmap},{} a mapping from coefficients of \\spad{p} into \\spad{S},{} and \\spad{p},{} and produces a member of \\spad{S} using the corresponding arithmetic. in \\spad{S}")))
NIL
NIL
-(-883 R)
+(-885 R)
((|constructor| (NIL "\\indented{2}{This type is the basic representation of sparse recursive multivariate} polynomials whose variables are arbitrary symbols. The ordering is alphabetic determined by the Symbol type. The coefficient ring may be non commutative,{} but the variables are assumed to commute.")) (|integrate| (($ $ (|Symbol|)) "\\spad{integrate(p,{}x)} computes the integral of \\spad{p*dx},{} \\spadignore{i.e.} integrates the polynomial \\spad{p} with respect to the variable \\spad{x}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-840))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| (-1087) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasCategory| (-1087) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| (-1087) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355)))))) (-12 (|HasCategory| (-1087) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523)))))) (-12 (|HasCategory| (-1087) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499))))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-339))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasAttribute| |#1| (QUOTE -4246)) (|HasCategory| |#1| (QUOTE (-427))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-134)))))
-(-884 E V R P -3894)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-842))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| (-1089) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasCategory| (-1089) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| (-1089) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357)))))) (-12 (|HasCategory| (-1089) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525)))))) (-12 (|HasCategory| (-1089) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501))))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-341))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasAttribute| |#1| (QUOTE -4248)) (|HasCategory| |#1| (QUOTE (-429))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-136)))))
+(-886 E V R P -3576)
((|constructor| (NIL "computes \\spad{n}-th roots of quotients of multivariate polynomials")) (|nthr| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| |#4|) (|:| |radicand| (|List| |#4|))) |#4| (|NonNegativeInteger|)) "\\spad{nthr(p,{}n)} should be local but conditional")) (|froot| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| |#5|) (|:| |radicand| |#5|)) |#5| (|NonNegativeInteger|)) "\\spad{froot(f,{} n)} returns \\spad{[m,{}c,{}r]} such that \\spad{f**(1/n) = c * r**(1/m)}.")) (|qroot| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| |#5|) (|:| |radicand| |#5|)) (|Fraction| (|Integer|)) (|NonNegativeInteger|)) "\\spad{qroot(f,{} n)} returns \\spad{[m,{}c,{}r]} such that \\spad{f**(1/n) = c * r**(1/m)}.")) (|rroot| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| |#5|) (|:| |radicand| |#5|)) |#3| (|NonNegativeInteger|)) "\\spad{rroot(f,{} n)} returns \\spad{[m,{}c,{}r]} such that \\spad{f**(1/n) = c * r**(1/m)}.")) (|coerce| (($ |#4|) "\\spad{coerce(p)} \\undocumented")) (|denom| ((|#4| $) "\\spad{denom(x)} \\undocumented")) (|numer| ((|#4| $) "\\spad{numer(x)} \\undocumented")))
NIL
-((|HasCategory| |#3| (QUOTE (-427))))
-(-885)
+((|HasCategory| |#3| (QUOTE (-429))))
+(-887)
((|constructor| (NIL "PlottablePlaneCurveCategory is the category of curves in the plane which may be plotted via the graphics facilities. Functions are provided for obtaining lists of lists of points,{} representing the branches of the curve,{} and for determining the ranges of the \\spad{x}-coordinates and \\spad{y}-coordinates of the points on the curve.")) (|yRange| (((|Segment| (|DoubleFloat|)) $) "\\spad{yRange(c)} returns the range of the \\spad{y}-coordinates of the points on the curve \\spad{c}.")) (|xRange| (((|Segment| (|DoubleFloat|)) $) "\\spad{xRange(c)} returns the range of the \\spad{x}-coordinates of the points on the curve \\spad{c}.")) (|listBranches| (((|List| (|List| (|Point| (|DoubleFloat|)))) $) "\\spad{listBranches(c)} returns a list of lists of points,{} representing the branches of the curve \\spad{c}.")))
NIL
NIL
-(-886 R L)
+(-888 R L)
((|constructor| (NIL "\\spadtype{PrecomputedAssociatedEquations} stores some generic precomputations which speed up the computations of the associated equations needed for factoring operators.")) (|firstUncouplingMatrix| (((|Union| (|Matrix| |#1|) "failed") |#2| (|PositiveInteger|)) "\\spad{firstUncouplingMatrix(op,{} m)} returns the matrix A such that \\spad{A w = (W',{}W'',{}...,{}W^N)} in the corresponding associated equations for right-factors of order \\spad{m} of \\spad{op}. Returns \"failed\" if the matrix A has not been precomputed for the particular combination \\spad{degree(L),{} m}.")))
NIL
NIL
-(-887 A B)
+(-889 A B)
((|constructor| (NIL "\\indented{1}{This package provides tools for operating on primitive arrays} with unary and binary functions involving different underlying types")) (|map| (((|PrimitiveArray| |#2|) (|Mapping| |#2| |#1|) (|PrimitiveArray| |#1|)) "\\spad{map(f,{}a)} applies function \\spad{f} to each member of primitive array \\spad{a} resulting in a new primitive array over a possibly different underlying domain.")) (|reduce| ((|#2| (|Mapping| |#2| |#1| |#2|) (|PrimitiveArray| |#1|) |#2|) "\\spad{reduce(f,{}a,{}r)} applies function \\spad{f} to each successive element of the primitive array \\spad{a} and an accumulant initialized to \\spad{r}. For example,{} \\spad{reduce(_+\\$Integer,{}[1,{}2,{}3],{}0)} does \\spad{3+(2+(1+0))}. Note: third argument \\spad{r} may be regarded as the identity element for the function \\spad{f}.")) (|scan| (((|PrimitiveArray| |#2|) (|Mapping| |#2| |#1| |#2|) (|PrimitiveArray| |#1|) |#2|) "\\spad{scan(f,{}a,{}r)} successively applies \\spad{reduce(f,{}x,{}r)} to more and more leading sub-arrays \\spad{x} of primitive array \\spad{a}. More precisely,{} if \\spad{a} is \\spad{[a1,{}a2,{}...]},{} then \\spad{scan(f,{}a,{}r)} returns \\spad{[reduce(f,{}[a1],{}r),{}reduce(f,{}[a1,{}a2],{}r),{}...]}.")))
NIL
NIL
-(-888 S)
+(-890 S)
((|constructor| (NIL "\\indented{1}{This provides a fast array type with no bound checking on elt\\spad{'s}.} Minimum index is 0 in this type,{} cannot be changed")))
-((-4249 . T) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (-3255 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016)))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-889)
+((-4251 . T) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (-3321 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018)))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-891)
((|constructor| (NIL "Category for the functions defined by integrals.")) (|integral| (($ $ (|SegmentBinding| $)) "\\spad{integral(f,{} x = a..b)} returns the formal definite integral of \\spad{f} \\spad{dx} for \\spad{x} between \\spad{a} and \\spad{b}.") (($ $ (|Symbol|)) "\\spad{integral(f,{} x)} returns the formal integral of \\spad{f} \\spad{dx}.")))
NIL
NIL
-(-890 -3894)
+(-892 -3576)
((|constructor| (NIL "PrimitiveElement provides functions to compute primitive elements in algebraic extensions.")) (|primitiveElement| (((|Record| (|:| |coef| (|List| (|Integer|))) (|:| |poly| (|List| (|SparseUnivariatePolynomial| |#1|))) (|:| |prim| (|SparseUnivariatePolynomial| |#1|))) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|)) (|Symbol|)) "\\spad{primitiveElement([p1,{}...,{}pn],{} [a1,{}...,{}an],{} a)} returns \\spad{[[c1,{}...,{}cn],{} [q1,{}...,{}qn],{} q]} such that then \\spad{k(a1,{}...,{}an) = k(a)},{} where \\spad{a = a1 c1 + ... + an cn},{} \\spad{\\spad{ai} = \\spad{qi}(a)},{} and \\spad{q(a) = 0}. The \\spad{pi}\\spad{'s} are the defining polynomials for the \\spad{ai}\\spad{'s}. This operation uses the technique of \\spadglossSee{groebner bases}{Groebner basis}.") (((|Record| (|:| |coef| (|List| (|Integer|))) (|:| |poly| (|List| (|SparseUnivariatePolynomial| |#1|))) (|:| |prim| (|SparseUnivariatePolynomial| |#1|))) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|))) "\\spad{primitiveElement([p1,{}...,{}pn],{} [a1,{}...,{}an])} returns \\spad{[[c1,{}...,{}cn],{} [q1,{}...,{}qn],{} q]} such that then \\spad{k(a1,{}...,{}an) = k(a)},{} where \\spad{a = a1 c1 + ... + an cn},{} \\spad{\\spad{ai} = \\spad{qi}(a)},{} and \\spad{q(a) = 0}. The \\spad{pi}\\spad{'s} are the defining polynomials for the \\spad{ai}\\spad{'s}. This operation uses the technique of \\spadglossSee{groebner bases}{Groebner basis}.") (((|Record| (|:| |coef1| (|Integer|)) (|:| |coef2| (|Integer|)) (|:| |prim| (|SparseUnivariatePolynomial| |#1|))) (|Polynomial| |#1|) (|Symbol|) (|Polynomial| |#1|) (|Symbol|)) "\\spad{primitiveElement(p1,{} a1,{} p2,{} a2)} returns \\spad{[c1,{} c2,{} q]} such that \\spad{k(a1,{} a2) = k(a)} where \\spad{a = c1 a1 + c2 a2,{} and q(a) = 0}. The \\spad{pi}\\spad{'s} are the defining polynomials for the \\spad{ai}\\spad{'s}. The \\spad{p2} may involve \\spad{a1},{} but \\spad{p1} must not involve a2. This operation uses \\spadfun{resultant}.")))
NIL
NIL
-(-891 I)
+(-893 I)
((|constructor| (NIL "The \\spadtype{IntegerPrimesPackage} implements a modification of Rabin\\spad{'s} probabilistic primality test and the utility functions \\spadfun{nextPrime},{} \\spadfun{prevPrime} and \\spadfun{primes}.")) (|primes| (((|List| |#1|) |#1| |#1|) "\\spad{primes(a,{}b)} returns a list of all primes \\spad{p} with \\spad{a <= p <= b}")) (|prevPrime| ((|#1| |#1|) "\\spad{prevPrime(n)} returns the largest prime strictly smaller than \\spad{n}")) (|nextPrime| ((|#1| |#1|) "\\spad{nextPrime(n)} returns the smallest prime strictly larger than \\spad{n}")) (|prime?| (((|Boolean|) |#1|) "\\spad{prime?(n)} returns \\spad{true} if \\spad{n} is prime and \\spad{false} if not. The algorithm used is Rabin\\spad{'s} probabilistic primality test (reference: Knuth Volume 2 Semi Numerical Algorithms). If \\spad{prime? n} returns \\spad{false},{} \\spad{n} is proven composite. If \\spad{prime? n} returns \\spad{true},{} prime? may be in error however,{} the probability of error is very low. and is zero below 25*10**9 (due to a result of Pomerance et al),{} below 10**12 and 10**13 due to results of Pinch,{} and below 341550071728321 due to a result of Jaeschke. Specifically,{} this implementation does at least 10 pseudo prime tests and so the probability of error is \\spad{< 4**(-10)}. The running time of this method is cubic in the length of the input \\spad{n},{} that is \\spad{O( (log n)**3 )},{} for n<10**20. beyond that,{} the algorithm is quartic,{} \\spad{O( (log n)**4 )}. Two improvements due to Davenport have been incorporated which catches some trivial strong pseudo-primes,{} such as [Jaeschke,{} 1991] 1377161253229053 * 413148375987157,{} which the original algorithm regards as prime")))
NIL
NIL
-(-892)
+(-894)
((|constructor| (NIL "PrintPackage provides a print function for output forms.")) (|print| (((|Void|) (|OutputForm|)) "\\spad{print(o)} writes the output form \\spad{o} on standard output using the two-dimensional formatter.")))
NIL
NIL
-(-893 R E)
+(-895 R E)
((|constructor| (NIL "This domain represents generalized polynomials with coefficients (from a not necessarily commutative ring),{} and terms indexed by their exponents (from an arbitrary ordered abelian monoid). This type is used,{} for example,{} by the \\spadtype{DistributedMultivariatePolynomial} domain where the exponent domain is a direct product of non negative integers.")) (|canonicalUnitNormal| ((|attribute|) "canonicalUnitNormal guarantees that the function unitCanonical returns the same representative for all associates of any particular element.")) (|fmecg| (($ $ |#2| |#1| $) "\\spad{fmecg(p1,{}e,{}r,{}p2)} finds \\spad{X} : \\spad{p1} - \\spad{r} * X**e * \\spad{p2}")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-6 -4246)) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-515))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-427))) (-12 (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-124)))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasAttribute| |#1| (QUOTE -4246)))
-(-894 A B)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-6 -4248)) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-517))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-429))) (-12 (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-126)))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasAttribute| |#1| (QUOTE -4248)))
+(-896 A B)
((|constructor| (NIL "This domain implements cartesian product")) (|selectsecond| ((|#2| $) "\\spad{selectsecond(x)} \\undocumented")) (|selectfirst| ((|#1| $) "\\spad{selectfirst(x)} \\undocumented")) (|makeprod| (($ |#1| |#2|) "\\spad{makeprod(a,{}b)} \\undocumented")))
-((-4245 -12 (|has| |#2| (-448)) (|has| |#1| (-448))))
-((-3255 (-12 (|HasCategory| |#1| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-732)))) (-12 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-786))))) (-12 (|HasCategory| |#1| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-732)))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#1| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-732))))) (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#1| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-732))))) (-12 (|HasCategory| |#1| (QUOTE (-448))) (|HasCategory| |#2| (QUOTE (-448)))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-448))) (|HasCategory| |#2| (QUOTE (-448)))) (-12 (|HasCategory| |#1| (QUOTE (-666))) (|HasCategory| |#2| (QUOTE (-666))))) (-12 (|HasCategory| |#1| (QUOTE (-344))) (|HasCategory| |#2| (QUOTE (-344)))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#1| (QUOTE (-448))) (|HasCategory| |#2| (QUOTE (-448)))) (-12 (|HasCategory| |#1| (QUOTE (-666))) (|HasCategory| |#2| (QUOTE (-666)))) (-12 (|HasCategory| |#1| (QUOTE (-732))) (|HasCategory| |#2| (QUOTE (-732))))) (-12 (|HasCategory| |#1| (QUOTE (-666))) (|HasCategory| |#2| (QUOTE (-666)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-786)))))
-(-895)
+((-4247 -12 (|has| |#2| (-450)) (|has| |#1| (-450))))
+((-3321 (-12 (|HasCategory| |#1| (QUOTE (-734))) (|HasCategory| |#2| (QUOTE (-734)))) (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-788))))) (-12 (|HasCategory| |#1| (QUOTE (-734))) (|HasCategory| |#2| (QUOTE (-734)))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-126)))) (-12 (|HasCategory| |#1| (QUOTE (-734))) (|HasCategory| |#2| (QUOTE (-734))))) (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-126)))) (-12 (|HasCategory| |#1| (QUOTE (-734))) (|HasCategory| |#2| (QUOTE (-734))))) (-12 (|HasCategory| |#1| (QUOTE (-450))) (|HasCategory| |#2| (QUOTE (-450)))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-450))) (|HasCategory| |#2| (QUOTE (-450)))) (-12 (|HasCategory| |#1| (QUOTE (-668))) (|HasCategory| |#2| (QUOTE (-668))))) (-12 (|HasCategory| |#1| (QUOTE (-346))) (|HasCategory| |#2| (QUOTE (-346)))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-126)))) (-12 (|HasCategory| |#1| (QUOTE (-450))) (|HasCategory| |#2| (QUOTE (-450)))) (-12 (|HasCategory| |#1| (QUOTE (-668))) (|HasCategory| |#2| (QUOTE (-668)))) (-12 (|HasCategory| |#1| (QUOTE (-734))) (|HasCategory| |#2| (QUOTE (-734))))) (-12 (|HasCategory| |#1| (QUOTE (-668))) (|HasCategory| |#2| (QUOTE (-668)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-126))) (|HasCategory| |#2| (QUOTE (-126)))) (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-788)))))
+(-897)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: October 24,{} 2007 Date Last Modified: January 18,{} 2008. An `Property' is a pair of name and value.")) (|property| (($ (|Symbol|) (|SExpression|)) "\\spad{property(n,{}val)} constructs a property with name \\spad{`n'} and value `val'.")) (|value| (((|SExpression|) $) "\\spad{value(p)} returns value of property \\spad{p}")) (|name| (((|Symbol|) $) "\\spad{name(p)} returns the name of property \\spad{p}")))
NIL
NIL
-(-896 T$)
+(-898 T$)
((|constructor| (NIL "This domain implements propositional formula build over a term domain,{} that itself belongs to PropositionalLogic")) (|equivOperands| (((|Pair| $ $) $) "\\spad{equivOperands p} extracts the operands to the logical equivalence; otherwise errors.")) (|equiv?| (((|Boolean|) $) "\\spad{equiv? p} is \\spad{true} when \\spad{`p'} is a logical equivalence.")) (|impliesOperands| (((|Pair| $ $) $) "\\spad{impliesOperands p} extracts the operands to the logical implication; otherwise errors.")) (|implies?| (((|Boolean|) $) "\\spad{implies? p} is \\spad{true} when \\spad{`p'} is a logical implication.")) (|orOperands| (((|Pair| $ $) $) "\\spad{orOperands p} extracts the operands to the logical disjunction; otherwise errors.")) (|or?| (((|Boolean|) $) "\\spad{or? p} is \\spad{true} when \\spad{`p'} is a logical disjunction.")) (|andOperands| (((|Pair| $ $) $) "\\spad{andOperands p} extracts the operands of the logical conjunction; otherwise errors.")) (|and?| (((|Boolean|) $) "\\spad{and? p} is \\spad{true} when \\spad{`p'} is a logical conjunction.")) (|notOperand| (($ $) "\\spad{notOperand returns} the operand to the logical `not' operator; otherwise errors.")) (|not?| (((|Boolean|) $) "\\spad{not? p} is \\spad{true} when \\spad{`p'} is a logical negation")) (|variable| (((|Symbol|) $) "\\spad{variable p} extracts the varible name from \\spad{`p'}; otherwise errors.")) (|variable?| (((|Boolean|) $) "variables? \\spad{p} returns \\spad{true} when \\spad{`p'} really is a variable.")) (|term| ((|#1| $) "\\spad{term p} extracts the term value from \\spad{`p'}; otherwise errors.")) (|term?| (((|Boolean|) $) "\\spad{term? p} returns \\spad{true} when \\spad{`p'} really is a term")) (|variables| (((|Set| (|Symbol|)) $) "\\spad{variables(p)} returns the set of propositional variables appearing in the proposition \\spad{`p'}.")) (|coerce| (($ (|Symbol|)) "\\spad{coerce(t)} turns the term \\spad{`t'} into a propositional variable.") (($ |#1|) "\\spad{coerce(t)} turns the term \\spad{`t'} into a propositional formula")))
NIL
-((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-897)
+((|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-899)
((|constructor| (NIL "This category declares the connectives of Propositional Logic.")) (|equiv| (($ $ $) "\\spad{equiv(p,{}q)} returns the logical equivalence of \\spad{`p'},{} \\spad{`q'}.")) (|implies| (($ $ $) "\\spad{implies(p,{}q)} returns the logical implication of \\spad{`q'} by \\spad{`p'}.")) (|or| (($ $ $) "\\spad{p or q} returns the logical disjunction of \\spad{`p'},{} \\spad{`q'}.")) (|and| (($ $ $) "\\spad{p and q} returns the logical conjunction of \\spad{`p'},{} \\spad{`q'}.")) (|not| (($ $) "\\spad{not p} returns the logical negation of \\spad{`p'}.")))
NIL
NIL
-(-898 S)
+(-900 S)
((|constructor| (NIL "A priority queue is a bag of items from an ordered set where the item extracted is always the maximum element.")) (|merge!| (($ $ $) "\\spad{merge!(q,{}q1)} destructively changes priority queue \\spad{q} to include the values from priority queue \\spad{q1}.")) (|merge| (($ $ $) "\\spad{merge(q1,{}q2)} returns combines priority queues \\spad{q1} and \\spad{q2} to return a single priority queue \\spad{q}.")) (|max| ((|#1| $) "\\spad{max(q)} returns the maximum element of priority queue \\spad{q}.")))
-((-4248 . T) (-4249 . T) (-2500 . T))
+((-4250 . T) (-4251 . T) (-2137 . T))
NIL
-(-899 R |polR|)
+(-901 R |polR|)
((|constructor| (NIL "This package contains some functions: \\axiomOpFrom{discriminant}{PseudoRemainderSequence},{} \\axiomOpFrom{resultant}{PseudoRemainderSequence},{} \\axiomOpFrom{subResultantGcd}{PseudoRemainderSequence},{} \\axiomOpFrom{chainSubResultants}{PseudoRemainderSequence},{} \\axiomOpFrom{degreeSubResultant}{PseudoRemainderSequence},{} \\axiomOpFrom{lastSubResultant}{PseudoRemainderSequence},{} \\axiomOpFrom{resultantEuclidean}{PseudoRemainderSequence},{} \\axiomOpFrom{subResultantGcdEuclidean}{PseudoRemainderSequence},{} \\axiomOpFrom{semiSubResultantGcdEuclidean1}{PseudoRemainderSequence},{} \\axiomOpFrom{semiSubResultantGcdEuclidean2}{PseudoRemainderSequence},{} etc. This procedures are coming from improvements of the subresultants algorithm. \\indented{2}{Version : 7} \\indented{2}{References : Lionel Ducos \"Optimizations of the subresultant algorithm\"} \\indented{2}{to appear in the Journal of Pure and Applied Algebra.} \\indented{2}{Author : Ducos Lionel \\axiom{Lionel.Ducos@mathlabo.univ-poitiers.\\spad{fr}}}")) (|semiResultantEuclideannaif| (((|Record| (|:| |coef2| |#2|) (|:| |resultant| |#1|)) |#2| |#2|) "\\axiom{resultantEuclidean_naif(\\spad{P},{}\\spad{Q})} returns the semi-extended resultant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}} computed by means of the naive algorithm.")) (|resultantEuclideannaif| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |resultant| |#1|)) |#2| |#2|) "\\axiom{resultantEuclidean_naif(\\spad{P},{}\\spad{Q})} returns the extended resultant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}} computed by means of the naive algorithm.")) (|resultantnaif| ((|#1| |#2| |#2|) "\\axiom{resultantEuclidean_naif(\\spad{P},{}\\spad{Q})} returns the resultant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}} computed by means of the naive algorithm.")) (|nextsousResultant2| ((|#2| |#2| |#2| |#2| |#1|) "\\axiom{nextsousResultant2(\\spad{P},{} \\spad{Q},{} \\spad{Z},{} \\spad{s})} returns the subresultant \\axiom{\\spad{S_}{\\spad{e}-1}} where \\axiom{\\spad{P} ~ \\spad{S_d},{} \\spad{Q} = \\spad{S_}{\\spad{d}-1},{} \\spad{Z} = S_e,{} \\spad{s} = \\spad{lc}(\\spad{S_d})}")) (|Lazard2| ((|#2| |#2| |#1| |#1| (|NonNegativeInteger|)) "\\axiom{Lazard2(\\spad{F},{} \\spad{x},{} \\spad{y},{} \\spad{n})} computes \\axiom{(x/y)\\spad{**}(\\spad{n}-1) * \\spad{F}}")) (|Lazard| ((|#1| |#1| |#1| (|NonNegativeInteger|)) "\\axiom{Lazard(\\spad{x},{} \\spad{y},{} \\spad{n})} computes \\axiom{x**n/y**(\\spad{n}-1)}")) (|divide| (((|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2|) "\\axiom{divide(\\spad{F},{}\\spad{G})} computes quotient and rest of the exact euclidean division of \\axiom{\\spad{F}} by \\axiom{\\spad{G}}.")) (|pseudoDivide| (((|Record| (|:| |coef| |#1|) (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2|) "\\axiom{pseudoDivide(\\spad{P},{}\\spad{Q})} computes the pseudoDivide of \\axiom{\\spad{P}} by \\axiom{\\spad{Q}}.")) (|exquo| (((|Vector| |#2|) (|Vector| |#2|) |#1|) "\\axiom{\\spad{v} exquo \\spad{r}} computes the exact quotient of \\axiom{\\spad{v}} by \\axiom{\\spad{r}}")) (* (((|Vector| |#2|) |#1| (|Vector| |#2|)) "\\axiom{\\spad{r} * \\spad{v}} computes the product of \\axiom{\\spad{r}} and \\axiom{\\spad{v}}")) (|gcd| ((|#2| |#2| |#2|) "\\axiom{\\spad{gcd}(\\spad{P},{} \\spad{Q})} returns the \\spad{gcd} of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|semiResultantReduitEuclidean| (((|Record| (|:| |coef2| |#2|) (|:| |resultantReduit| |#1|)) |#2| |#2|) "\\axiom{semiResultantReduitEuclidean(\\spad{P},{}\\spad{Q})} returns the \"reduce resultant\" and carries out the equality \\axiom{...\\spad{P} + coef2*Q = resultantReduit(\\spad{P},{}\\spad{Q})}.")) (|resultantReduitEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |resultantReduit| |#1|)) |#2| |#2|) "\\axiom{resultantReduitEuclidean(\\spad{P},{}\\spad{Q})} returns the \"reduce resultant\" and carries out the equality \\axiom{coef1*P + coef2*Q = resultantReduit(\\spad{P},{}\\spad{Q})}.")) (|resultantReduit| ((|#1| |#2| |#2|) "\\axiom{resultantReduit(\\spad{P},{}\\spad{Q})} returns the \"reduce resultant\" of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|schema| (((|List| (|NonNegativeInteger|)) |#2| |#2|) "\\axiom{schema(\\spad{P},{}\\spad{Q})} returns the list of degrees of non zero subresultants of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|chainSubResultants| (((|List| |#2|) |#2| |#2|) "\\axiom{chainSubResultants(\\spad{P},{} \\spad{Q})} computes the list of non zero subresultants of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|semiDiscriminantEuclidean| (((|Record| (|:| |coef2| |#2|) (|:| |discriminant| |#1|)) |#2|) "\\axiom{discriminantEuclidean(\\spad{P})} carries out the equality \\axiom{...\\spad{P} + coef2 * \\spad{D}(\\spad{P}) = discriminant(\\spad{P})}. Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|discriminantEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |discriminant| |#1|)) |#2|) "\\axiom{discriminantEuclidean(\\spad{P})} carries out the equality \\axiom{coef1 * \\spad{P} + coef2 * \\spad{D}(\\spad{P}) = discriminant(\\spad{P})}.")) (|discriminant| ((|#1| |#2|) "\\axiom{discriminant(\\spad{P},{} \\spad{Q})} returns the discriminant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|semiSubResultantGcdEuclidean1| (((|Record| (|:| |coef1| |#2|) (|:| |gcd| |#2|)) |#2| |#2|) "\\axiom{semiSubResultantGcdEuclidean1(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{coef1*P + ? \\spad{Q} = \\spad{+/-} S_i(\\spad{P},{}\\spad{Q})} where the degree (not the indice) of the subresultant \\axiom{S_i(\\spad{P},{}\\spad{Q})} is the smaller as possible.")) (|semiSubResultantGcdEuclidean2| (((|Record| (|:| |coef2| |#2|) (|:| |gcd| |#2|)) |#2| |#2|) "\\axiom{semiSubResultantGcdEuclidean2(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{...\\spad{P} + coef2*Q = \\spad{+/-} S_i(\\spad{P},{}\\spad{Q})} where the degree (not the indice) of the subresultant \\axiom{S_i(\\spad{P},{}\\spad{Q})} is the smaller as possible. Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|subResultantGcdEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |gcd| |#2|)) |#2| |#2|) "\\axiom{subResultantGcdEuclidean(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{coef1*P + coef2*Q = \\spad{+/-} S_i(\\spad{P},{}\\spad{Q})} where the degree (not the indice) of the subresultant \\axiom{S_i(\\spad{P},{}\\spad{Q})} is the smaller as possible.")) (|subResultantGcd| ((|#2| |#2| |#2|) "\\axiom{subResultantGcd(\\spad{P},{} \\spad{Q})} returns the \\spad{gcd} of two primitive polynomials \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|semiLastSubResultantEuclidean| (((|Record| (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) "\\axiom{semiLastSubResultantEuclidean(\\spad{P},{} \\spad{Q})} computes the last non zero subresultant \\axiom{\\spad{S}} and carries out the equality \\axiom{...\\spad{P} + coef2*Q = \\spad{S}}. Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|lastSubResultantEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) "\\axiom{lastSubResultantEuclidean(\\spad{P},{} \\spad{Q})} computes the last non zero subresultant \\axiom{\\spad{S}} and carries out the equality \\axiom{coef1*P + coef2*Q = \\spad{S}}.")) (|lastSubResultant| ((|#2| |#2| |#2|) "\\axiom{lastSubResultant(\\spad{P},{} \\spad{Q})} computes the last non zero subresultant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}")) (|semiDegreeSubResultantEuclidean| (((|Record| (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (|NonNegativeInteger|)) "\\axiom{indiceSubResultant(\\spad{P},{} \\spad{Q},{} \\spad{i})} returns a subresultant \\axiom{\\spad{S}} of degree \\axiom{\\spad{d}} and carries out the equality \\axiom{...\\spad{P} + coef2*Q = S_i}. Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|degreeSubResultantEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (|NonNegativeInteger|)) "\\axiom{indiceSubResultant(\\spad{P},{} \\spad{Q},{} \\spad{i})} returns a subresultant \\axiom{\\spad{S}} of degree \\axiom{\\spad{d}} and carries out the equality \\axiom{coef1*P + coef2*Q = S_i}.")) (|degreeSubResultant| ((|#2| |#2| |#2| (|NonNegativeInteger|)) "\\axiom{degreeSubResultant(\\spad{P},{} \\spad{Q},{} \\spad{d})} computes a subresultant of degree \\axiom{\\spad{d}}.")) (|semiIndiceSubResultantEuclidean| (((|Record| (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (|NonNegativeInteger|)) "\\axiom{semiIndiceSubResultantEuclidean(\\spad{P},{} \\spad{Q},{} \\spad{i})} returns the subresultant \\axiom{S_i(\\spad{P},{}\\spad{Q})} and carries out the equality \\axiom{...\\spad{P} + coef2*Q = S_i(\\spad{P},{}\\spad{Q})} Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|indiceSubResultantEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (|NonNegativeInteger|)) "\\axiom{indiceSubResultant(\\spad{P},{} \\spad{Q},{} \\spad{i})} returns the subresultant \\axiom{S_i(\\spad{P},{}\\spad{Q})} and carries out the equality \\axiom{coef1*P + coef2*Q = S_i(\\spad{P},{}\\spad{Q})}")) (|indiceSubResultant| ((|#2| |#2| |#2| (|NonNegativeInteger|)) "\\axiom{indiceSubResultant(\\spad{P},{} \\spad{Q},{} \\spad{i})} returns the subresultant of indice \\axiom{\\spad{i}}")) (|semiResultantEuclidean1| (((|Record| (|:| |coef1| |#2|) (|:| |resultant| |#1|)) |#2| |#2|) "\\axiom{semiResultantEuclidean1(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{coef1.\\spad{P} + ? \\spad{Q} = resultant(\\spad{P},{}\\spad{Q})}.")) (|semiResultantEuclidean2| (((|Record| (|:| |coef2| |#2|) (|:| |resultant| |#1|)) |#2| |#2|) "\\axiom{semiResultantEuclidean2(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{...\\spad{P} + coef2*Q = resultant(\\spad{P},{}\\spad{Q})}. Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|resultantEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |resultant| |#1|)) |#2| |#2|) "\\axiom{resultantEuclidean(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{coef1*P + coef2*Q = resultant(\\spad{P},{}\\spad{Q})}")) (|resultant| ((|#1| |#2| |#2|) "\\axiom{resultant(\\spad{P},{} \\spad{Q})} returns the resultant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}")))
NIL
-((|HasCategory| |#1| (QUOTE (-427))))
-(-900)
+((|HasCategory| |#1| (QUOTE (-429))))
+(-902)
((|constructor| (NIL "\\indented{1}{Partition is an OrderedCancellationAbelianMonoid which is used} as the basis for symmetric polynomial representation of the sums of powers in SymmetricPolynomial. Thus,{} \\spad{(5 2 2 1)} will represent \\spad{s5 * s2**2 * s1}.")) (|coerce| (((|List| (|Integer|)) $) "\\spad{coerce(p)} coerces a partition into a list of integers")) (|conjugate| (($ $) "\\spad{conjugate(p)} returns the conjugate partition of a partition \\spad{p}")) (|pdct| (((|Integer|) $) "\\spad{pdct(a1**n1 a2**n2 ...)} returns \\spad{n1! * a1**n1 * n2! * a2**n2 * ...}. This function is used in the package \\spadtype{CycleIndicators}.")) (|powers| (((|List| (|List| (|Integer|))) (|List| (|Integer|))) "\\spad{powers(\\spad{li})} returns a list of 2-element lists. For each 2-element list,{} the first element is an entry of \\spad{li} and the second element is the multiplicity with which the first element occurs in \\spad{li}. There is a 2-element list for each value occurring in \\spad{l}.")) (|partition| (($ (|List| (|Integer|))) "\\spad{partition(\\spad{li})} converts a list of integers \\spad{li} to a partition")))
NIL
NIL
-(-901 S |Coef| |Expon| |Var|)
+(-903 S |Coef| |Expon| |Var|)
((|constructor| (NIL "\\spadtype{PowerSeriesCategory} is the most general power series category with exponents in an ordered abelian monoid.")) (|complete| (($ $) "\\spad{complete(f)} causes all terms of \\spad{f} to be computed. Note: this results in an infinite loop if \\spad{f} has infinitely many terms.")) (|pole?| (((|Boolean|) $) "\\spad{pole?(f)} determines if the power series \\spad{f} has a pole.")) (|variables| (((|List| |#4|) $) "\\spad{variables(f)} returns a list of the variables occuring in the power series \\spad{f}.")) (|degree| ((|#3| $) "\\spad{degree(f)} returns the exponent of the lowest order term of \\spad{f}.")) (|leadingCoefficient| ((|#2| $) "\\spad{leadingCoefficient(f)} returns the coefficient of the lowest order term of \\spad{f}")) (|leadingMonomial| (($ $) "\\spad{leadingMonomial(f)} returns the monomial of \\spad{f} of lowest order.")) (|monomial| (($ $ (|List| |#4|) (|List| |#3|)) "\\spad{monomial(a,{}[x1,{}..,{}xk],{}[n1,{}..,{}nk])} computes \\spad{a * x1**n1 * .. * xk**nk}.") (($ $ |#4| |#3|) "\\spad{monomial(a,{}x,{}n)} computes \\spad{a*x**n}.")))
NIL
NIL
-(-902 |Coef| |Expon| |Var|)
+(-904 |Coef| |Expon| |Var|)
((|constructor| (NIL "\\spadtype{PowerSeriesCategory} is the most general power series category with exponents in an ordered abelian monoid.")) (|complete| (($ $) "\\spad{complete(f)} causes all terms of \\spad{f} to be computed. Note: this results in an infinite loop if \\spad{f} has infinitely many terms.")) (|pole?| (((|Boolean|) $) "\\spad{pole?(f)} determines if the power series \\spad{f} has a pole.")) (|variables| (((|List| |#3|) $) "\\spad{variables(f)} returns a list of the variables occuring in the power series \\spad{f}.")) (|degree| ((|#2| $) "\\spad{degree(f)} returns the exponent of the lowest order term of \\spad{f}.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(f)} returns the coefficient of the lowest order term of \\spad{f}")) (|leadingMonomial| (($ $) "\\spad{leadingMonomial(f)} returns the monomial of \\spad{f} of lowest order.")) (|monomial| (($ $ (|List| |#3|) (|List| |#2|)) "\\spad{monomial(a,{}[x1,{}..,{}xk],{}[n1,{}..,{}nk])} computes \\spad{a * x1**n1 * .. * xk**nk}.") (($ $ |#3| |#2|) "\\spad{monomial(a,{}x,{}n)} computes \\spad{a*x**n}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4242 . T) (-4243 . T) (-4245 . T))
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-903)
+(-905)
((|constructor| (NIL "PlottableSpaceCurveCategory is the category of curves in 3-space which may be plotted via the graphics facilities. Functions are provided for obtaining lists of lists of points,{} representing the branches of the curve,{} and for determining the ranges of the \\spad{x-},{} \\spad{y-},{} and \\spad{z}-coordinates of the points on the curve.")) (|zRange| (((|Segment| (|DoubleFloat|)) $) "\\spad{zRange(c)} returns the range of the \\spad{z}-coordinates of the points on the curve \\spad{c}.")) (|yRange| (((|Segment| (|DoubleFloat|)) $) "\\spad{yRange(c)} returns the range of the \\spad{y}-coordinates of the points on the curve \\spad{c}.")) (|xRange| (((|Segment| (|DoubleFloat|)) $) "\\spad{xRange(c)} returns the range of the \\spad{x}-coordinates of the points on the curve \\spad{c}.")) (|listBranches| (((|List| (|List| (|Point| (|DoubleFloat|)))) $) "\\spad{listBranches(c)} returns a list of lists of points,{} representing the branches of the curve \\spad{c}.")))
NIL
NIL
-(-904 S R E |VarSet| P)
+(-906 S R E |VarSet| P)
((|constructor| (NIL "A category for finite subsets of a polynomial ring. Such a set is only regarded as a set of polynomials and not identified to the ideal it generates. So two distinct sets may generate the same the ideal. Furthermore,{} for \\spad{R} being an integral domain,{} a set of polynomials may be viewed as a representation of the ideal it generates in the polynomial ring \\spad{(R)^(-1) P},{} or the set of its zeros (described for instance by the radical of the previous ideal,{} or a split of the associated affine variety) and so on. So this category provides operations about those different notions.")) (|triangular?| (((|Boolean|) $) "\\axiom{triangular?(\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{ps}} is a triangular set,{} \\spadignore{i.e.} two distinct polynomials have distinct main variables and no constant lies in \\axiom{\\spad{ps}}.")) (|rewriteIdealWithRemainder| (((|List| |#5|) (|List| |#5|) $) "\\axiom{rewriteIdealWithRemainder(\\spad{lp},{}\\spad{cs})} returns \\axiom{\\spad{lr}} such that every polynomial in \\axiom{\\spad{lr}} is fully reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{cs}} and \\axiom{(\\spad{lp},{}\\spad{cs})} and \\axiom{(\\spad{lr},{}\\spad{cs})} generate the same ideal in \\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}}.")) (|rewriteIdealWithHeadRemainder| (((|List| |#5|) (|List| |#5|) $) "\\axiom{rewriteIdealWithHeadRemainder(\\spad{lp},{}\\spad{cs})} returns \\axiom{\\spad{lr}} such that the leading monomial of every polynomial in \\axiom{\\spad{lr}} is reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{cs}} and \\axiom{(\\spad{lp},{}\\spad{cs})} and \\axiom{(\\spad{lr},{}\\spad{cs})} generate the same ideal in \\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}}.")) (|remainder| (((|Record| (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) "\\axiom{remainder(a,{}\\spad{ps})} returns \\axiom{[\\spad{c},{}\\spad{b},{}\\spad{r}]} such that \\axiom{\\spad{b}} is fully reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ps}},{} \\axiom{r*a - \\spad{c*b}} lies in the ideal generated by \\axiom{\\spad{ps}}. Furthermore,{} if \\axiom{\\spad{R}} is a \\spad{gcd}-domain,{} \\axiom{\\spad{b}} is primitive.")) (|headRemainder| (((|Record| (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) "\\axiom{headRemainder(a,{}\\spad{ps})} returns \\axiom{[\\spad{b},{}\\spad{r}]} such that the leading monomial of \\axiom{\\spad{b}} is reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ps}} and \\axiom{r*a - \\spad{b}} lies in the ideal generated by \\axiom{\\spad{ps}}.")) (|roughUnitIdeal?| (((|Boolean|) $) "\\axiom{roughUnitIdeal?(\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{ps}} contains some non null element lying in the base ring \\axiom{\\spad{R}}.")) (|roughEqualIdeals?| (((|Boolean|) $ $) "\\axiom{roughEqualIdeals?(\\spad{ps1},{}\\spad{ps2})} returns \\spad{true} iff it can proved that \\axiom{\\spad{ps1}} and \\axiom{\\spad{ps2}} generate the same ideal in \\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}} without computing Groebner bases.")) (|roughSubIdeal?| (((|Boolean|) $ $) "\\axiom{roughSubIdeal?(\\spad{ps1},{}\\spad{ps2})} returns \\spad{true} iff it can proved that all polynomials in \\axiom{\\spad{ps1}} lie in the ideal generated by \\axiom{\\spad{ps2}} in \\axiom{\\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}}} without computing Groebner bases.")) (|roughBase?| (((|Boolean|) $) "\\axiom{roughBase?(\\spad{ps})} returns \\spad{true} iff for every pair \\axiom{{\\spad{p},{}\\spad{q}}} of polynomials in \\axiom{\\spad{ps}} their leading monomials are relatively prime.")) (|trivialIdeal?| (((|Boolean|) $) "\\axiom{trivialIdeal?(\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{ps}} does not contain non-zero elements.")) (|sort| (((|Record| (|:| |under| $) (|:| |floor| $) (|:| |upper| $)) $ |#4|) "\\axiom{sort(\\spad{v},{}\\spad{ps})} returns \\axiom{us,{}\\spad{vs},{}\\spad{ws}} such that \\axiom{us} is \\axiom{collectUnder(\\spad{ps},{}\\spad{v})},{} \\axiom{\\spad{vs}} is \\axiom{collect(\\spad{ps},{}\\spad{v})} and \\axiom{\\spad{ws}} is \\axiom{collectUpper(\\spad{ps},{}\\spad{v})}.")) (|collectUpper| (($ $ |#4|) "\\axiom{collectUpper(\\spad{ps},{}\\spad{v})} returns the set consisting of the polynomials of \\axiom{\\spad{ps}} with main variable greater than \\axiom{\\spad{v}}.")) (|collect| (($ $ |#4|) "\\axiom{collect(\\spad{ps},{}\\spad{v})} returns the set consisting of the polynomials of \\axiom{\\spad{ps}} with \\axiom{\\spad{v}} as main variable.")) (|collectUnder| (($ $ |#4|) "\\axiom{collectUnder(\\spad{ps},{}\\spad{v})} returns the set consisting of the polynomials of \\axiom{\\spad{ps}} with main variable less than \\axiom{\\spad{v}}.")) (|mainVariable?| (((|Boolean|) |#4| $) "\\axiom{mainVariable?(\\spad{v},{}\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{v}} is the main variable of some polynomial in \\axiom{\\spad{ps}}.")) (|mainVariables| (((|List| |#4|) $) "\\axiom{mainVariables(\\spad{ps})} returns the decreasingly sorted list of the variables which are main variables of some polynomial in \\axiom{\\spad{ps}}.")) (|variables| (((|List| |#4|) $) "\\axiom{variables(\\spad{ps})} returns the decreasingly sorted list of the variables which are variables of some polynomial in \\axiom{\\spad{ps}}.")) (|mvar| ((|#4| $) "\\axiom{mvar(\\spad{ps})} returns the main variable of the non constant polynomial with the greatest main variable,{} if any,{} else an error is returned.")) (|retract| (($ (|List| |#5|)) "\\axiom{retract(\\spad{lp})} returns an element of the domain whose elements are the members of \\axiom{\\spad{lp}} if such an element exists,{} otherwise an error is produced.")) (|retractIfCan| (((|Union| $ "failed") (|List| |#5|)) "\\axiom{retractIfCan(\\spad{lp})} returns an element of the domain whose elements are the members of \\axiom{\\spad{lp}} if such an element exists,{} otherwise \\axiom{\"failed\"} is returned.")))
NIL
-((|HasCategory| |#2| (QUOTE (-515))))
-(-905 R E |VarSet| P)
+((|HasCategory| |#2| (QUOTE (-517))))
+(-907 R E |VarSet| P)
((|constructor| (NIL "A category for finite subsets of a polynomial ring. Such a set is only regarded as a set of polynomials and not identified to the ideal it generates. So two distinct sets may generate the same the ideal. Furthermore,{} for \\spad{R} being an integral domain,{} a set of polynomials may be viewed as a representation of the ideal it generates in the polynomial ring \\spad{(R)^(-1) P},{} or the set of its zeros (described for instance by the radical of the previous ideal,{} or a split of the associated affine variety) and so on. So this category provides operations about those different notions.")) (|triangular?| (((|Boolean|) $) "\\axiom{triangular?(\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{ps}} is a triangular set,{} \\spadignore{i.e.} two distinct polynomials have distinct main variables and no constant lies in \\axiom{\\spad{ps}}.")) (|rewriteIdealWithRemainder| (((|List| |#4|) (|List| |#4|) $) "\\axiom{rewriteIdealWithRemainder(\\spad{lp},{}\\spad{cs})} returns \\axiom{\\spad{lr}} such that every polynomial in \\axiom{\\spad{lr}} is fully reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{cs}} and \\axiom{(\\spad{lp},{}\\spad{cs})} and \\axiom{(\\spad{lr},{}\\spad{cs})} generate the same ideal in \\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}}.")) (|rewriteIdealWithHeadRemainder| (((|List| |#4|) (|List| |#4|) $) "\\axiom{rewriteIdealWithHeadRemainder(\\spad{lp},{}\\spad{cs})} returns \\axiom{\\spad{lr}} such that the leading monomial of every polynomial in \\axiom{\\spad{lr}} is reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{cs}} and \\axiom{(\\spad{lp},{}\\spad{cs})} and \\axiom{(\\spad{lr},{}\\spad{cs})} generate the same ideal in \\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}}.")) (|remainder| (((|Record| (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) "\\axiom{remainder(a,{}\\spad{ps})} returns \\axiom{[\\spad{c},{}\\spad{b},{}\\spad{r}]} such that \\axiom{\\spad{b}} is fully reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ps}},{} \\axiom{r*a - \\spad{c*b}} lies in the ideal generated by \\axiom{\\spad{ps}}. Furthermore,{} if \\axiom{\\spad{R}} is a \\spad{gcd}-domain,{} \\axiom{\\spad{b}} is primitive.")) (|headRemainder| (((|Record| (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) "\\axiom{headRemainder(a,{}\\spad{ps})} returns \\axiom{[\\spad{b},{}\\spad{r}]} such that the leading monomial of \\axiom{\\spad{b}} is reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ps}} and \\axiom{r*a - \\spad{b}} lies in the ideal generated by \\axiom{\\spad{ps}}.")) (|roughUnitIdeal?| (((|Boolean|) $) "\\axiom{roughUnitIdeal?(\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{ps}} contains some non null element lying in the base ring \\axiom{\\spad{R}}.")) (|roughEqualIdeals?| (((|Boolean|) $ $) "\\axiom{roughEqualIdeals?(\\spad{ps1},{}\\spad{ps2})} returns \\spad{true} iff it can proved that \\axiom{\\spad{ps1}} and \\axiom{\\spad{ps2}} generate the same ideal in \\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}} without computing Groebner bases.")) (|roughSubIdeal?| (((|Boolean|) $ $) "\\axiom{roughSubIdeal?(\\spad{ps1},{}\\spad{ps2})} returns \\spad{true} iff it can proved that all polynomials in \\axiom{\\spad{ps1}} lie in the ideal generated by \\axiom{\\spad{ps2}} in \\axiom{\\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}}} without computing Groebner bases.")) (|roughBase?| (((|Boolean|) $) "\\axiom{roughBase?(\\spad{ps})} returns \\spad{true} iff for every pair \\axiom{{\\spad{p},{}\\spad{q}}} of polynomials in \\axiom{\\spad{ps}} their leading monomials are relatively prime.")) (|trivialIdeal?| (((|Boolean|) $) "\\axiom{trivialIdeal?(\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{ps}} does not contain non-zero elements.")) (|sort| (((|Record| (|:| |under| $) (|:| |floor| $) (|:| |upper| $)) $ |#3|) "\\axiom{sort(\\spad{v},{}\\spad{ps})} returns \\axiom{us,{}\\spad{vs},{}\\spad{ws}} such that \\axiom{us} is \\axiom{collectUnder(\\spad{ps},{}\\spad{v})},{} \\axiom{\\spad{vs}} is \\axiom{collect(\\spad{ps},{}\\spad{v})} and \\axiom{\\spad{ws}} is \\axiom{collectUpper(\\spad{ps},{}\\spad{v})}.")) (|collectUpper| (($ $ |#3|) "\\axiom{collectUpper(\\spad{ps},{}\\spad{v})} returns the set consisting of the polynomials of \\axiom{\\spad{ps}} with main variable greater than \\axiom{\\spad{v}}.")) (|collect| (($ $ |#3|) "\\axiom{collect(\\spad{ps},{}\\spad{v})} returns the set consisting of the polynomials of \\axiom{\\spad{ps}} with \\axiom{\\spad{v}} as main variable.")) (|collectUnder| (($ $ |#3|) "\\axiom{collectUnder(\\spad{ps},{}\\spad{v})} returns the set consisting of the polynomials of \\axiom{\\spad{ps}} with main variable less than \\axiom{\\spad{v}}.")) (|mainVariable?| (((|Boolean|) |#3| $) "\\axiom{mainVariable?(\\spad{v},{}\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{v}} is the main variable of some polynomial in \\axiom{\\spad{ps}}.")) (|mainVariables| (((|List| |#3|) $) "\\axiom{mainVariables(\\spad{ps})} returns the decreasingly sorted list of the variables which are main variables of some polynomial in \\axiom{\\spad{ps}}.")) (|variables| (((|List| |#3|) $) "\\axiom{variables(\\spad{ps})} returns the decreasingly sorted list of the variables which are variables of some polynomial in \\axiom{\\spad{ps}}.")) (|mvar| ((|#3| $) "\\axiom{mvar(\\spad{ps})} returns the main variable of the non constant polynomial with the greatest main variable,{} if any,{} else an error is returned.")) (|retract| (($ (|List| |#4|)) "\\axiom{retract(\\spad{lp})} returns an element of the domain whose elements are the members of \\axiom{\\spad{lp}} if such an element exists,{} otherwise an error is produced.")) (|retractIfCan| (((|Union| $ "failed") (|List| |#4|)) "\\axiom{retractIfCan(\\spad{lp})} returns an element of the domain whose elements are the members of \\axiom{\\spad{lp}} if such an element exists,{} otherwise \\axiom{\"failed\"} is returned.")))
-((-4248 . T) (-2500 . T))
+((-4250 . T) (-2137 . T))
NIL
-(-906 R E V P)
+(-908 R E V P)
((|constructor| (NIL "This package provides modest routines for polynomial system solving. The aim of many of the operations of this package is to remove certain factors in some polynomials in order to avoid unnecessary computations in algorithms involving splitting techniques by partial factorization.")) (|removeIrreducibleRedundantFactors| (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeIrreducibleRedundantFactors(\\spad{lp},{}\\spad{lq})} returns the same as \\axiom{irreducibleFactors(concat(\\spad{lp},{}\\spad{lq}))} assuming that \\axiom{irreducibleFactors(\\spad{lp})} returns \\axiom{\\spad{lp}} up to replacing some polynomial \\axiom{\\spad{pj}} in \\axiom{\\spad{lp}} by some polynomial \\axiom{\\spad{qj}} associated to \\axiom{\\spad{pj}}.")) (|lazyIrreducibleFactors| (((|List| |#4|) (|List| |#4|)) "\\axiom{lazyIrreducibleFactors(\\spad{lp})} returns \\axiom{\\spad{lf}} such that if \\axiom{\\spad{lp} = [\\spad{p1},{}...,{}\\spad{pn}]} and \\axiom{\\spad{lf} = [\\spad{f1},{}...,{}\\spad{fm}]} then \\axiom{p1*p2*...*pn=0} means \\axiom{f1*f2*...*fm=0},{} and the \\axiom{\\spad{fi}} are irreducible over \\axiom{\\spad{R}} and are pairwise distinct. The algorithm tries to avoid factorization into irreducible factors as far as possible and makes previously use of \\spad{gcd} techniques over \\axiom{\\spad{R}}.")) (|irreducibleFactors| (((|List| |#4|) (|List| |#4|)) "\\axiom{irreducibleFactors(\\spad{lp})} returns \\axiom{\\spad{lf}} such that if \\axiom{\\spad{lp} = [\\spad{p1},{}...,{}\\spad{pn}]} and \\axiom{\\spad{lf} = [\\spad{f1},{}...,{}\\spad{fm}]} then \\axiom{p1*p2*...*pn=0} means \\axiom{f1*f2*...*fm=0},{} and the \\axiom{\\spad{fi}} are irreducible over \\axiom{\\spad{R}} and are pairwise distinct.")) (|removeRedundantFactorsInPols| (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeRedundantFactorsInPols(\\spad{lp},{}\\spad{lf})} returns \\axiom{newlp} where \\axiom{newlp} is obtained from \\axiom{\\spad{lp}} by removing in every polynomial \\axiom{\\spad{p}} of \\axiom{\\spad{lp}} any non trivial factor of any polynomial \\axiom{\\spad{f}} in \\axiom{\\spad{lf}}. Moreover,{} squares over \\axiom{\\spad{R}} are first removed in every polynomial \\axiom{\\spad{lp}}.")) (|removeRedundantFactorsInContents| (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeRedundantFactorsInContents(\\spad{lp},{}\\spad{lf})} returns \\axiom{newlp} where \\axiom{newlp} is obtained from \\axiom{\\spad{lp}} by removing in the content of every polynomial of \\axiom{\\spad{lp}} any non trivial factor of any polynomial \\axiom{\\spad{f}} in \\axiom{\\spad{lf}}. Moreover,{} squares over \\axiom{\\spad{R}} are first removed in the content of every polynomial of \\axiom{\\spad{lp}}.")) (|removeRoughlyRedundantFactorsInContents| (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeRoughlyRedundantFactorsInContents(\\spad{lp},{}\\spad{lf})} returns \\axiom{newlp}where \\axiom{newlp} is obtained from \\axiom{\\spad{lp}} by removing in the content of every polynomial of \\axiom{\\spad{lp}} any occurence of a polynomial \\axiom{\\spad{f}} in \\axiom{\\spad{lf}}. Moreover,{} squares over \\axiom{\\spad{R}} are first removed in the content of every polynomial of \\axiom{\\spad{lp}}.")) (|univariatePolynomialsGcds| (((|List| |#4|) (|List| |#4|) (|Boolean|)) "\\axiom{univariatePolynomialsGcds(\\spad{lp},{}opt)} returns the same as \\axiom{univariatePolynomialsGcds(\\spad{lp})} if \\axiom{opt} is \\axiom{\\spad{false}} and if the previous operation does not return any non null and constant polynomial,{} else return \\axiom{[1]}.") (((|List| |#4|) (|List| |#4|)) "\\axiom{univariatePolynomialsGcds(\\spad{lp})} returns \\axiom{\\spad{lg}} where \\axiom{\\spad{lg}} is a list of the gcds of every pair in \\axiom{\\spad{lp}} of univariate polynomials in the same main variable.")) (|squareFreeFactors| (((|List| |#4|) |#4|) "\\axiom{squareFreeFactors(\\spad{p})} returns the square-free factors of \\axiom{\\spad{p}} over \\axiom{\\spad{R}}")) (|rewriteIdealWithQuasiMonicGenerators| (((|List| |#4|) (|List| |#4|) (|Mapping| (|Boolean|) |#4| |#4|) (|Mapping| |#4| |#4| |#4|)) "\\axiom{rewriteIdealWithQuasiMonicGenerators(\\spad{lp},{}redOp?,{}redOp)} returns \\axiom{\\spad{lq}} where \\axiom{\\spad{lq}} and \\axiom{\\spad{lp}} generate the same ideal in \\axiom{\\spad{R^}(\\spad{-1}) \\spad{P}} and \\axiom{\\spad{lq}} has rank not higher than the one of \\axiom{\\spad{lp}}. Moreover,{} \\axiom{\\spad{lq}} is computed by reducing \\axiom{\\spad{lp}} \\spad{w}.\\spad{r}.\\spad{t}. some basic set of the ideal generated by the quasi-monic polynomials in \\axiom{\\spad{lp}}.")) (|rewriteSetByReducingWithParticularGenerators| (((|List| |#4|) (|List| |#4|) (|Mapping| (|Boolean|) |#4|) (|Mapping| (|Boolean|) |#4| |#4|) (|Mapping| |#4| |#4| |#4|)) "\\axiom{rewriteSetByReducingWithParticularGenerators(\\spad{lp},{}pred?,{}redOp?,{}redOp)} returns \\axiom{\\spad{lq}} where \\axiom{\\spad{lq}} is computed by the following algorithm. Chose a basic set \\spad{w}.\\spad{r}.\\spad{t}. the reduction-test \\axiom{redOp?} among the polynomials satisfying property \\axiom{pred?},{} if it is empty then leave,{} else reduce the other polynomials by this basic set \\spad{w}.\\spad{r}.\\spad{t}. the reduction-operation \\axiom{redOp}. Repeat while another basic set with smaller rank can be computed. See code. If \\axiom{pred?} is \\axiom{quasiMonic?} the ideal is unchanged.")) (|crushedSet| (((|List| |#4|) (|List| |#4|)) "\\axiom{crushedSet(\\spad{lp})} returns \\axiom{\\spad{lq}} such that \\axiom{\\spad{lp}} and and \\axiom{\\spad{lq}} generate the same ideal and no rough basic sets reduce (in the sense of Groebner bases) the other polynomials in \\axiom{\\spad{lq}}.")) (|roughBasicSet| (((|Union| (|Record| (|:| |bas| (|GeneralTriangularSet| |#1| |#2| |#3| |#4|)) (|:| |top| (|List| |#4|))) "failed") (|List| |#4|)) "\\axiom{roughBasicSet(\\spad{lp})} returns the smallest (with Ritt-Wu ordering) triangular set contained in \\axiom{\\spad{lp}}.")) (|interReduce| (((|List| |#4|) (|List| |#4|)) "\\axiom{interReduce(\\spad{lp})} returns \\axiom{\\spad{lq}} such that \\axiom{\\spad{lp}} and \\axiom{\\spad{lq}} generate the same ideal and no polynomial in \\axiom{\\spad{lq}} is reducuble by the others in the sense of Groebner bases. Since no assumptions are required the result may depend on the ordering the reductions are performed.")) (|removeRoughlyRedundantFactorsInPol| ((|#4| |#4| (|List| |#4|)) "\\axiom{removeRoughlyRedundantFactorsInPol(\\spad{p},{}\\spad{lf})} returns the same as removeRoughlyRedundantFactorsInPols([\\spad{p}],{}\\spad{lf},{}\\spad{true})")) (|removeRoughlyRedundantFactorsInPols| (((|List| |#4|) (|List| |#4|) (|List| |#4|) (|Boolean|)) "\\axiom{removeRoughlyRedundantFactorsInPols(\\spad{lp},{}\\spad{lf},{}opt)} returns the same as \\axiom{removeRoughlyRedundantFactorsInPols(\\spad{lp},{}\\spad{lf})} if \\axiom{opt} is \\axiom{\\spad{false}} and if the previous operation does not return any non null and constant polynomial,{} else return \\axiom{[1]}.") (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeRoughlyRedundantFactorsInPols(\\spad{lp},{}\\spad{lf})} returns \\axiom{newlp}where \\axiom{newlp} is obtained from \\axiom{\\spad{lp}} by removing in every polynomial \\axiom{\\spad{p}} of \\axiom{\\spad{lp}} any occurence of a polynomial \\axiom{\\spad{f}} in \\axiom{\\spad{lf}}. This may involve a lot of exact-quotients computations.")) (|bivariatePolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| |#4|)) "\\axiom{bivariatePolynomials(\\spad{lp})} returns \\axiom{\\spad{bps},{}nbps} where \\axiom{\\spad{bps}} is a list of the bivariate polynomials,{} and \\axiom{nbps} are the other ones.")) (|bivariate?| (((|Boolean|) |#4|) "\\axiom{bivariate?(\\spad{p})} returns \\spad{true} iff \\axiom{\\spad{p}} involves two and only two variables.")) (|linearPolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| |#4|)) "\\axiom{linearPolynomials(\\spad{lp})} returns \\axiom{\\spad{lps},{}nlps} where \\axiom{\\spad{lps}} is a list of the linear polynomials in \\spad{lp},{} and \\axiom{nlps} are the other ones.")) (|linear?| (((|Boolean|) |#4|) "\\axiom{linear?(\\spad{p})} returns \\spad{true} iff \\axiom{\\spad{p}} does not lie in the base ring \\axiom{\\spad{R}} and has main degree \\axiom{1}.")) (|univariatePolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| |#4|)) "\\axiom{univariatePolynomials(\\spad{lp})} returns \\axiom{ups,{}nups} where \\axiom{ups} is a list of the univariate polynomials,{} and \\axiom{nups} are the other ones.")) (|univariate?| (((|Boolean|) |#4|) "\\axiom{univariate?(\\spad{p})} returns \\spad{true} iff \\axiom{\\spad{p}} involves one and only one variable.")) (|quasiMonicPolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| |#4|)) "\\axiom{quasiMonicPolynomials(\\spad{lp})} returns \\axiom{qmps,{}nqmps} where \\axiom{qmps} is a list of the quasi-monic polynomials in \\axiom{\\spad{lp}} and \\axiom{nqmps} are the other ones.")) (|selectAndPolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| (|Mapping| (|Boolean|) |#4|)) (|List| |#4|)) "\\axiom{selectAndPolynomials(lpred?,{}\\spad{ps})} returns \\axiom{\\spad{gps},{}\\spad{bps}} where \\axiom{\\spad{gps}} is a list of the polynomial \\axiom{\\spad{p}} in \\axiom{\\spad{ps}} such that \\axiom{pred?(\\spad{p})} holds for every \\axiom{pred?} in \\axiom{lpred?} and \\axiom{\\spad{bps}} are the other ones.")) (|selectOrPolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| (|Mapping| (|Boolean|) |#4|)) (|List| |#4|)) "\\axiom{selectOrPolynomials(lpred?,{}\\spad{ps})} returns \\axiom{\\spad{gps},{}\\spad{bps}} where \\axiom{\\spad{gps}} is a list of the polynomial \\axiom{\\spad{p}} in \\axiom{\\spad{ps}} such that \\axiom{pred?(\\spad{p})} holds for some \\axiom{pred?} in \\axiom{lpred?} and \\axiom{\\spad{bps}} are the other ones.")) (|selectPolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|Mapping| (|Boolean|) |#4|) (|List| |#4|)) "\\axiom{selectPolynomials(pred?,{}\\spad{ps})} returns \\axiom{\\spad{gps},{}\\spad{bps}} where \\axiom{\\spad{gps}} is a list of the polynomial \\axiom{\\spad{p}} in \\axiom{\\spad{ps}} such that \\axiom{pred?(\\spad{p})} holds and \\axiom{\\spad{bps}} are the other ones.")) (|probablyZeroDim?| (((|Boolean|) (|List| |#4|)) "\\axiom{probablyZeroDim?(\\spad{lp})} returns \\spad{true} iff the number of polynomials in \\axiom{\\spad{lp}} is not smaller than the number of variables occurring in these polynomials.")) (|possiblyNewVariety?| (((|Boolean|) (|List| |#4|) (|List| (|List| |#4|))) "\\axiom{possiblyNewVariety?(newlp,{}\\spad{llp})} returns \\spad{true} iff for every \\axiom{\\spad{lp}} in \\axiom{\\spad{llp}} certainlySubVariety?(newlp,{}\\spad{lp}) does not hold.")) (|certainlySubVariety?| (((|Boolean|) (|List| |#4|) (|List| |#4|)) "\\axiom{certainlySubVariety?(newlp,{}\\spad{lp})} returns \\spad{true} iff for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}} the remainder of \\axiom{\\spad{p}} by \\axiom{newlp} using the division algorithm of Groebner techniques is zero.")) (|unprotectedRemoveRedundantFactors| (((|List| |#4|) |#4| |#4|) "\\axiom{unprotectedRemoveRedundantFactors(\\spad{p},{}\\spad{q})} returns the same as \\axiom{removeRedundantFactors(\\spad{p},{}\\spad{q})} but does assume that neither \\axiom{\\spad{p}} nor \\axiom{\\spad{q}} lie in the base ring \\axiom{\\spad{R}} and assumes that \\axiom{infRittWu?(\\spad{p},{}\\spad{q})} holds. Moreover,{} if \\axiom{\\spad{R}} is \\spad{gcd}-domain,{} then \\axiom{\\spad{p}} and \\axiom{\\spad{q}} are assumed to be square free.")) (|removeSquaresIfCan| (((|List| |#4|) (|List| |#4|)) "\\axiom{removeSquaresIfCan(\\spad{lp})} returns \\axiom{removeDuplicates [squareFreePart(\\spad{p})\\$\\spad{P} for \\spad{p} in \\spad{lp}]} if \\axiom{\\spad{R}} is \\spad{gcd}-domain else returns \\axiom{\\spad{lp}}.")) (|removeRedundantFactors| (((|List| |#4|) (|List| |#4|) (|List| |#4|) (|Mapping| (|List| |#4|) (|List| |#4|))) "\\axiom{removeRedundantFactors(\\spad{lp},{}\\spad{lq},{}remOp)} returns the same as \\axiom{concat(remOp(removeRoughlyRedundantFactorsInPols(\\spad{lp},{}\\spad{lq})),{}\\spad{lq})} assuming that \\axiom{remOp(\\spad{lq})} returns \\axiom{\\spad{lq}} up to similarity.") (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeRedundantFactors(\\spad{lp},{}\\spad{lq})} returns the same as \\axiom{removeRedundantFactors(concat(\\spad{lp},{}\\spad{lq}))} assuming that \\axiom{removeRedundantFactors(\\spad{lp})} returns \\axiom{\\spad{lp}} up to replacing some polynomial \\axiom{\\spad{pj}} in \\axiom{\\spad{lp}} by some polynomial \\axiom{\\spad{qj}} associated to \\axiom{\\spad{pj}}.") (((|List| |#4|) (|List| |#4|) |#4|) "\\axiom{removeRedundantFactors(\\spad{lp},{}\\spad{q})} returns the same as \\axiom{removeRedundantFactors(cons(\\spad{q},{}\\spad{lp}))} assuming that \\axiom{removeRedundantFactors(\\spad{lp})} returns \\axiom{\\spad{lp}} up to replacing some polynomial \\axiom{\\spad{pj}} in \\axiom{\\spad{lp}} by some some polynomial \\axiom{\\spad{qj}} associated to \\axiom{\\spad{pj}}.") (((|List| |#4|) |#4| |#4|) "\\axiom{removeRedundantFactors(\\spad{p},{}\\spad{q})} returns the same as \\axiom{removeRedundantFactors([\\spad{p},{}\\spad{q}])}") (((|List| |#4|) (|List| |#4|)) "\\axiom{removeRedundantFactors(\\spad{lp})} returns \\axiom{\\spad{lq}} such that if \\axiom{\\spad{lp} = [\\spad{p1},{}...,{}\\spad{pn}]} and \\axiom{\\spad{lq} = [\\spad{q1},{}...,{}\\spad{qm}]} then the product \\axiom{p1*p2*...\\spad{*pn}} vanishes iff the product \\axiom{q1*q2*...\\spad{*qm}} vanishes,{} and the product of degrees of the \\axiom{\\spad{qi}} is not greater than the one of the \\axiom{\\spad{pj}},{} and no polynomial in \\axiom{\\spad{lq}} divides another polynomial in \\axiom{\\spad{lq}}. In particular,{} polynomials lying in the base ring \\axiom{\\spad{R}} are removed. Moreover,{} \\axiom{\\spad{lq}} is sorted \\spad{w}.\\spad{r}.\\spad{t} \\axiom{infRittWu?}. Furthermore,{} if \\spad{R} is \\spad{gcd}-domain,{} the polynomials in \\axiom{\\spad{lq}} are pairwise without common non trivial factor.")))
NIL
-((-12 (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-284)))) (|HasCategory| |#1| (QUOTE (-427))))
-(-907 K)
+((-12 (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-286)))) (|HasCategory| |#1| (QUOTE (-429))))
+(-909 K)
((|constructor| (NIL "PseudoLinearNormalForm provides a function for computing a block-companion form for pseudo-linear operators.")) (|companionBlocks| (((|List| (|Record| (|:| C (|Matrix| |#1|)) (|:| |g| (|Vector| |#1|)))) (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{companionBlocks(m,{} v)} returns \\spad{[[C_1,{} g_1],{}...,{}[C_k,{} g_k]]} such that each \\spad{C_i} is a companion block and \\spad{m = diagonal(C_1,{}...,{}C_k)}.")) (|changeBase| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Automorphism| |#1|) (|Mapping| |#1| |#1|)) "\\spad{changeBase(M,{} A,{} sig,{} der)}: computes the new matrix of a pseudo-linear transform given by the matrix \\spad{M} under the change of base A")) (|normalForm| (((|Record| (|:| R (|Matrix| |#1|)) (|:| A (|Matrix| |#1|)) (|:| |Ainv| (|Matrix| |#1|))) (|Matrix| |#1|) (|Automorphism| |#1|) (|Mapping| |#1| |#1|)) "\\spad{normalForm(M,{} sig,{} der)} returns \\spad{[R,{} A,{} A^{-1}]} such that the pseudo-linear operator whose matrix in the basis \\spad{y} is \\spad{M} had matrix \\spad{R} in the basis \\spad{z = A y}. \\spad{der} is a \\spad{sig}-derivation.")))
NIL
NIL
-(-908 |VarSet| E RC P)
+(-910 |VarSet| E RC P)
((|constructor| (NIL "This package computes square-free decomposition of multivariate polynomials over a coefficient ring which is an arbitrary \\spad{gcd} domain. The requirement on the coefficient domain guarantees that the \\spadfun{content} can be removed so that factors will be primitive as well as square-free. Over an infinite ring of finite characteristic,{}it may not be possible to guarantee that the factors are square-free.")) (|squareFree| (((|Factored| |#4|) |#4|) "\\spad{squareFree(p)} returns the square-free factorization of the polynomial \\spad{p}. Each factor has no repeated roots,{} and the factors are pairwise relatively prime.")))
NIL
NIL
-(-909 R)
+(-911 R)
((|constructor| (NIL "PointCategory is the category of points in space which may be plotted via the graphics facilities. Functions are provided for defining points and handling elements of points.")) (|extend| (($ $ (|List| |#1|)) "\\spad{extend(x,{}l,{}r)} \\undocumented")) (|cross| (($ $ $) "\\spad{cross(p,{}q)} computes the cross product of the two points \\spad{p} and \\spad{q}. Error if the \\spad{p} and \\spad{q} are not 3 dimensional")) (|convert| (($ (|List| |#1|)) "\\spad{convert(l)} takes a list of elements,{} \\spad{l},{} from the domain Ring and returns the form of point category.")) (|dimension| (((|PositiveInteger|) $) "\\spad{dimension(s)} returns the dimension of the point category \\spad{s}.")) (|point| (($ (|List| |#1|)) "\\spad{point(l)} returns a point category defined by a list \\spad{l} of elements from the domain \\spad{R}.")))
-((-4249 . T) (-4248 . T) (-2500 . T))
+((-4251 . T) (-4250 . T) (-2137 . T))
NIL
-(-910 R1 R2)
+(-912 R1 R2)
((|constructor| (NIL "This package \\undocumented")) (|map| (((|Point| |#2|) (|Mapping| |#2| |#1|) (|Point| |#1|)) "\\spad{map(f,{}p)} \\undocumented")))
NIL
NIL
-(-911 R)
+(-913 R)
((|constructor| (NIL "This package \\undocumented")) (|shade| ((|#1| (|Point| |#1|)) "\\spad{shade(pt)} returns the fourth element of the two dimensional point,{} \\spad{pt},{} although no assumptions are made with regards as to how the components of higher dimensional points are interpreted. This function is defined for the convenience of the user using specifically,{} shade to express a fourth dimension.")) (|hue| ((|#1| (|Point| |#1|)) "\\spad{hue(pt)} returns the third element of the two dimensional point,{} \\spad{pt},{} although no assumptions are made with regards as to how the components of higher dimensional points are interpreted. This function is defined for the convenience of the user using specifically,{} hue to express a third dimension.")) (|color| ((|#1| (|Point| |#1|)) "\\spad{color(pt)} returns the fourth element of the point,{} \\spad{pt},{} although no assumptions are made with regards as to how the components of higher dimensional points are interpreted. This function is defined for the convenience of the user using specifically,{} color to express a fourth dimension.")) (|phiCoord| ((|#1| (|Point| |#1|)) "\\spad{phiCoord(pt)} returns the third element of the point,{} \\spad{pt},{} although no assumptions are made as to the coordinate system being used. This function is defined for the convenience of the user dealing with a spherical coordinate system.")) (|thetaCoord| ((|#1| (|Point| |#1|)) "\\spad{thetaCoord(pt)} returns the second element of the point,{} \\spad{pt},{} although no assumptions are made as to the coordinate system being used. This function is defined for the convenience of the user dealing with a spherical or a cylindrical coordinate system.")) (|rCoord| ((|#1| (|Point| |#1|)) "\\spad{rCoord(pt)} returns the first element of the point,{} \\spad{pt},{} although no assumptions are made as to the coordinate system being used. This function is defined for the convenience of the user dealing with a spherical or a cylindrical coordinate system.")) (|zCoord| ((|#1| (|Point| |#1|)) "\\spad{zCoord(pt)} returns the third element of the point,{} \\spad{pt},{} although no assumptions are made as to the coordinate system being used. This function is defined for the convenience of the user dealing with a Cartesian or a cylindrical coordinate system.")) (|yCoord| ((|#1| (|Point| |#1|)) "\\spad{yCoord(pt)} returns the second element of the point,{} \\spad{pt},{} although no assumptions are made as to the coordinate system being used. This function is defined for the convenience of the user dealing with a Cartesian coordinate system.")) (|xCoord| ((|#1| (|Point| |#1|)) "\\spad{xCoord(pt)} returns the first element of the point,{} \\spad{pt},{} although no assumptions are made as to the coordinate system being used. This function is defined for the convenience of the user dealing with a Cartesian coordinate system.")))
NIL
NIL
-(-912 K)
+(-914 K)
((|constructor| (NIL "This is the description of any package which provides partial functions on a domain belonging to TranscendentalFunctionCategory.")) (|acschIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{acschIfCan(z)} returns acsch(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|asechIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{asechIfCan(z)} returns asech(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|acothIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{acothIfCan(z)} returns acoth(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|atanhIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{atanhIfCan(z)} returns atanh(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|acoshIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{acoshIfCan(z)} returns acosh(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|asinhIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{asinhIfCan(z)} returns asinh(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|cschIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{cschIfCan(z)} returns csch(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|sechIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{sechIfCan(z)} returns sech(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|cothIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{cothIfCan(z)} returns coth(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|tanhIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{tanhIfCan(z)} returns tanh(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|coshIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{coshIfCan(z)} returns cosh(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|sinhIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{sinhIfCan(z)} returns sinh(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|acscIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{acscIfCan(z)} returns acsc(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|asecIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{asecIfCan(z)} returns asec(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|acotIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{acotIfCan(z)} returns acot(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|atanIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{atanIfCan(z)} returns atan(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|acosIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{acosIfCan(z)} returns acos(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|asinIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{asinIfCan(z)} returns asin(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|cscIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{cscIfCan(z)} returns \\spad{csc}(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|secIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{secIfCan(z)} returns sec(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|cotIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{cotIfCan(z)} returns cot(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|tanIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{tanIfCan(z)} returns tan(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|cosIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{cosIfCan(z)} returns cos(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|sinIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{sinIfCan(z)} returns sin(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|logIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{logIfCan(z)} returns log(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|expIfCan| (((|Union| |#1| "failed") |#1|) "\\spad{expIfCan(z)} returns exp(\\spad{z}) if possible,{} and \"failed\" otherwise.")) (|nthRootIfCan| (((|Union| |#1| "failed") |#1| (|NonNegativeInteger|)) "\\spad{nthRootIfCan(z,{}n)} returns the \\spad{n}th root of \\spad{z} if possible,{} and \"failed\" otherwise.")))
NIL
NIL
-(-913 R E OV PPR)
+(-915 R E OV PPR)
((|constructor| (NIL "This package \\undocumented{}")) (|map| ((|#4| (|Mapping| |#4| (|Polynomial| |#1|)) |#4|) "\\spad{map(f,{}p)} \\undocumented{}")) (|pushup| ((|#4| |#4| (|List| |#3|)) "\\spad{pushup(p,{}lv)} \\undocumented{}") ((|#4| |#4| |#3|) "\\spad{pushup(p,{}v)} \\undocumented{}")) (|pushdown| ((|#4| |#4| (|List| |#3|)) "\\spad{pushdown(p,{}lv)} \\undocumented{}") ((|#4| |#4| |#3|) "\\spad{pushdown(p,{}v)} \\undocumented{}")) (|variable| (((|Union| $ "failed") (|Symbol|)) "\\spad{variable(s)} makes an element from symbol \\spad{s} or fails")) (|convert| (((|Symbol|) $) "\\spad{convert(x)} converts \\spad{x} to a symbol")))
NIL
NIL
-(-914 K R UP -3894)
+(-916 K R UP -3576)
((|constructor| (NIL "In this package \\spad{K} is a finite field,{} \\spad{R} is a ring of univariate polynomials over \\spad{K},{} and \\spad{F} is a monogenic algebra over \\spad{R}. We require that \\spad{F} is monogenic,{} \\spadignore{i.e.} that \\spad{F = K[x,{}y]/(f(x,{}y))},{} because the integral basis algorithm used will factor the polynomial \\spad{f(x,{}y)}. The package provides a function to compute the integral closure of \\spad{R} in the quotient field of \\spad{F} as well as a function to compute a \"local integral basis\" at a specific prime.")) (|reducedDiscriminant| ((|#2| |#3|) "\\spad{reducedDiscriminant(up)} \\undocumented")) (|localIntegralBasis| (((|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|))) |#2|) "\\spad{integralBasis(p)} returns a record \\spad{[basis,{}basisDen,{}basisInv] } containing information regarding the local integral closure of \\spad{R} at the prime \\spad{p} in the quotient field of the framed algebra \\spad{F}. \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,{}w2,{}...,{}wn}. If 'basis' is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the local integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of 'basis' contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix 'basisInv' contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if 'basisInv' is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")) (|integralBasis| (((|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|)))) "\\spad{integralBasis()} returns a record \\spad{[basis,{}basisDen,{}basisInv] } containing information regarding the integral closure of \\spad{R} in the quotient field of the framed algebra \\spad{F}. \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,{}w2,{}...,{}wn}. If 'basis' is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of 'basis' contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix 'basisInv' contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if 'basisInv' is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")))
NIL
NIL
-(-915 |vl| |nv|)
+(-917 |vl| |nv|)
((|constructor| (NIL "\\spadtype{QuasiAlgebraicSet2} adds a function \\spadfun{radicalSimplify} which uses \\spadtype{IdealDecompositionPackage} to simplify the representation of a quasi-algebraic set. A quasi-algebraic set is the intersection of a Zariski closed set,{} defined as the common zeros of a given list of polynomials (the defining polynomials for equations),{} and a principal Zariski open set,{} defined as the complement of the common zeros of a polynomial \\spad{f} (the defining polynomial for the inequation). Quasi-algebraic sets are implemented in the domain \\spadtype{QuasiAlgebraicSet},{} where two simplification routines are provided: \\spadfun{idealSimplify} and \\spadfun{simplify}. The function \\spadfun{radicalSimplify} is added for comparison study only. Because the domain \\spadtype{IdealDecompositionPackage} provides facilities for computing with radical ideals,{} it is necessary to restrict the ground ring to the domain \\spadtype{Fraction Integer},{} and the polynomial ring to be of type \\spadtype{DistributedMultivariatePolynomial}. The routine \\spadfun{radicalSimplify} uses these to compute groebner basis of radical ideals and is inefficient and restricted when compared to the two in \\spadtype{QuasiAlgebraicSet}.")) (|radicalSimplify| (((|QuasiAlgebraicSet| (|Fraction| (|Integer|)) (|OrderedVariableList| |#1|) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|)))) (|QuasiAlgebraicSet| (|Fraction| (|Integer|)) (|OrderedVariableList| |#1|) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|))))) "\\spad{radicalSimplify(s)} returns a different and presumably simpler representation of \\spad{s} with the defining polynomials for the equations forming a groebner basis,{} and the defining polynomial for the inequation reduced with respect to the basis,{} using using groebner basis of radical ideals")))
NIL
NIL
-(-916 R |Var| |Expon| |Dpoly|)
+(-918 R |Var| |Expon| |Dpoly|)
((|constructor| (NIL "\\spadtype{QuasiAlgebraicSet} constructs a domain representing quasi-algebraic sets,{} which is the intersection of a Zariski closed set,{} defined as the common zeros of a given list of polynomials (the defining polynomials for equations),{} and a principal Zariski open set,{} defined as the complement of the common zeros of a polynomial \\spad{f} (the defining polynomial for the inequation). This domain provides simplification of a user-given representation using groebner basis computations. There are two simplification routines: the first function \\spadfun{idealSimplify} uses groebner basis of ideals alone,{} while the second,{} \\spadfun{simplify} uses both groebner basis and factorization. The resulting defining equations \\spad{L} always form a groebner basis,{} and the resulting defining inequation \\spad{f} is always reduced. The function \\spadfun{simplify} may be applied several times if desired. A third simplification routine \\spadfun{radicalSimplify} is provided in \\spadtype{QuasiAlgebraicSet2} for comparison study only,{} as it is inefficient compared to the other two,{} as well as is restricted to only certain coefficient domains. For detail analysis and a comparison of the three methods,{} please consult the reference cited. \\blankline A polynomial function \\spad{q} defined on the quasi-algebraic set is equivalent to its reduced form with respect to \\spad{L}. While this may be obtained using the usual normal form algorithm,{} there is no canonical form for \\spad{q}. \\blankline The ordering in groebner basis computation is determined by the data type of the input polynomials. If it is possible we suggest to use refinements of total degree orderings.")) (|simplify| (($ $) "\\spad{simplify(s)} returns a different and presumably simpler representation of \\spad{s} with the defining polynomials for the equations forming a groebner basis,{} and the defining polynomial for the inequation reduced with respect to the basis,{} using a heuristic algorithm based on factoring.")) (|idealSimplify| (($ $) "\\spad{idealSimplify(s)} returns a different and presumably simpler representation of \\spad{s} with the defining polynomials for the equations forming a groebner basis,{} and the defining polynomial for the inequation reduced with respect to the basis,{} using Buchberger\\spad{'s} algorithm.")) (|definingInequation| ((|#4| $) "\\spad{definingInequation(s)} returns a single defining polynomial for the inequation,{} that is,{} the Zariski open part of \\spad{s}.")) (|definingEquations| (((|List| |#4|) $) "\\spad{definingEquations(s)} returns a list of defining polynomials for equations,{} that is,{} for the Zariski closed part of \\spad{s}.")) (|empty?| (((|Boolean|) $) "\\spad{empty?(s)} returns \\spad{true} if the quasialgebraic set \\spad{s} has no points,{} and \\spad{false} otherwise.")) (|setStatus| (($ $ (|Union| (|Boolean|) "failed")) "\\spad{setStatus(s,{}t)} returns the same representation for \\spad{s},{} but asserts the following: if \\spad{t} is \\spad{true},{} then \\spad{s} is empty,{} if \\spad{t} is \\spad{false},{} then \\spad{s} is non-empty,{} and if \\spad{t} = \"failed\",{} then no assertion is made (that is,{} \"don\\spad{'t} know\"). Note: for internal use only,{} with care.")) (|status| (((|Union| (|Boolean|) "failed") $) "\\spad{status(s)} returns \\spad{true} if the quasi-algebraic set is empty,{} \\spad{false} if it is not,{} and \"failed\" if not yet known")) (|quasiAlgebraicSet| (($ (|List| |#4|) |#4|) "\\spad{quasiAlgebraicSet(pl,{}q)} returns the quasi-algebraic set with defining equations \\spad{p} = 0 for \\spad{p} belonging to the list \\spad{pl},{} and defining inequation \\spad{q} \\spad{~=} 0.")) (|empty| (($) "\\spad{empty()} returns the empty quasi-algebraic set")))
NIL
-((-12 (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-284)))))
-(-917 R E V P TS)
+((-12 (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-286)))))
+(-919 R E V P TS)
((|constructor| (NIL "A package for removing redundant quasi-components and redundant branches when decomposing a variety by means of quasi-components of regular triangular sets. \\newline References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991} \\indented{1}{[2] \\spad{M}. MORENO MAZA \"Calculs de pgcd au-dessus des tours} \\indented{5}{d'extensions simples et resolution des systemes d'equations} \\indented{5}{algebriques\" These,{} Universite \\spad{P}.etM. Curie,{} Paris,{} 1997.} \\indented{1}{[3] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")) (|branchIfCan| (((|Union| (|Record| (|:| |eq| (|List| |#4|)) (|:| |tower| |#5|) (|:| |ineq| (|List| |#4|))) "failed") (|List| |#4|) |#5| (|List| |#4|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{branchIfCan(leq,{}\\spad{ts},{}lineq,{}\\spad{b1},{}\\spad{b2},{}\\spad{b3},{}\\spad{b4},{}\\spad{b5})} is an internal subroutine,{} exported only for developement.")) (|prepareDecompose| (((|List| (|Record| (|:| |eq| (|List| |#4|)) (|:| |tower| |#5|) (|:| |ineq| (|List| |#4|)))) (|List| |#4|) (|List| |#5|) (|Boolean|) (|Boolean|)) "\\axiom{prepareDecompose(\\spad{lp},{}\\spad{lts},{}\\spad{b1},{}\\spad{b2})} is an internal subroutine,{} exported only for developement.")) (|removeSuperfluousCases| (((|List| (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|))) (|List| (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|)))) "\\axiom{removeSuperfluousCases(llpwt)} is an internal subroutine,{} exported only for developement.")) (|subCase?| (((|Boolean|) (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|)) (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|))) "\\axiom{subCase?(lpwt1,{}lpwt2)} is an internal subroutine,{} exported only for developement.")) (|removeSuperfluousQuasiComponents| (((|List| |#5|) (|List| |#5|)) "\\axiom{removeSuperfluousQuasiComponents(\\spad{lts})} removes from \\axiom{\\spad{lts}} any \\spad{ts} such that \\axiom{subQuasiComponent?(\\spad{ts},{}us)} holds for another \\spad{us} in \\axiom{\\spad{lts}}.")) (|subQuasiComponent?| (((|Boolean|) |#5| (|List| |#5|)) "\\axiom{subQuasiComponent?(\\spad{ts},{}lus)} returns \\spad{true} iff \\axiom{subQuasiComponent?(\\spad{ts},{}us)} holds for one \\spad{us} in \\spad{lus}.") (((|Boolean|) |#5| |#5|) "\\axiom{subQuasiComponent?(\\spad{ts},{}us)} returns \\spad{true} iff \\axiomOpFrom{internalSubQuasiComponent?}{QuasiComponentPackage} returs \\spad{true}.")) (|internalSubQuasiComponent?| (((|Union| (|Boolean|) "failed") |#5| |#5|) "\\axiom{internalSubQuasiComponent?(\\spad{ts},{}us)} returns a boolean \\spad{b} value if the fact that the regular zero set of \\axiom{us} contains that of \\axiom{\\spad{ts}} can be decided (and in that case \\axiom{\\spad{b}} gives this inclusion) otherwise returns \\axiom{\"failed\"}.")) (|infRittWu?| (((|Boolean|) (|List| |#4|) (|List| |#4|)) "\\axiom{infRittWu?(\\spad{lp1},{}\\spad{lp2})} is an internal subroutine,{} exported only for developement.")) (|internalInfRittWu?| (((|Boolean|) (|List| |#4|) (|List| |#4|)) "\\axiom{internalInfRittWu?(\\spad{lp1},{}\\spad{lp2})} is an internal subroutine,{} exported only for developement.")) (|internalSubPolSet?| (((|Boolean|) (|List| |#4|) (|List| |#4|)) "\\axiom{internalSubPolSet?(\\spad{lp1},{}\\spad{lp2})} returns \\spad{true} iff \\axiom{\\spad{lp1}} is a sub-set of \\axiom{\\spad{lp2}} assuming that these lists are sorted increasingly \\spad{w}.\\spad{r}.\\spad{t}. \\axiomOpFrom{infRittWu?}{RecursivePolynomialCategory}.")) (|subPolSet?| (((|Boolean|) (|List| |#4|) (|List| |#4|)) "\\axiom{subPolSet?(\\spad{lp1},{}\\spad{lp2})} returns \\spad{true} iff \\axiom{\\spad{lp1}} is a sub-set of \\axiom{\\spad{lp2}}.")) (|subTriSet?| (((|Boolean|) |#5| |#5|) "\\axiom{subTriSet?(\\spad{ts},{}us)} returns \\spad{true} iff \\axiom{\\spad{ts}} is a sub-set of \\axiom{us}.")) (|moreAlgebraic?| (((|Boolean|) |#5| |#5|) "\\axiom{moreAlgebraic?(\\spad{ts},{}us)} returns \\spad{false} iff \\axiom{\\spad{ts}} and \\axiom{us} are both empty,{} or \\axiom{\\spad{ts}} has less elements than \\axiom{us},{} or some variable is algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{us} and is not \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ts}}.")) (|algebraicSort| (((|List| |#5|) (|List| |#5|)) "\\axiom{algebraicSort(\\spad{lts})} sorts \\axiom{\\spad{lts}} \\spad{w}.\\spad{r}.\\spad{t} \\axiomOpFrom{supDimElseRittWu?}{QuasiComponentPackage}.")) (|supDimElseRittWu?| (((|Boolean|) |#5| |#5|) "\\axiom{supDimElseRittWu(\\spad{ts},{}us)} returns \\spad{true} iff \\axiom{\\spad{ts}} has less elements than \\axiom{us} otherwise if \\axiom{\\spad{ts}} has higher rank than \\axiom{us} \\spad{w}.\\spad{r}.\\spad{t}. Riit and Wu ordering.")) (|stopTable!| (((|Void|)) "\\axiom{stopTableGcd!()} is an internal subroutine,{} exported only for developement.")) (|startTable!| (((|Void|) (|String|) (|String|) (|String|)) "\\axiom{startTableGcd!(\\spad{s1},{}\\spad{s2},{}\\spad{s3})} is an internal subroutine,{} exported only for developement.")))
NIL
NIL
-(-918)
+(-920)
((|constructor| (NIL "This domain implements simple database queries")) (|value| (((|String|) $) "\\spad{value(q)} returns the value (\\spadignore{i.e.} right hand side) of \\axiom{\\spad{q}}.")) (|variable| (((|Symbol|) $) "\\spad{variable(q)} returns the variable (\\spadignore{i.e.} left hand side) of \\axiom{\\spad{q}}.")) (|equation| (($ (|Symbol|) (|String|)) "\\spad{equation(s,{}\"a\")} creates a new equation.")))
NIL
NIL
-(-919 A B R S)
+(-921 A B R S)
((|constructor| (NIL "This package extends a function between integral domains to a mapping between their quotient fields.")) (|map| ((|#4| (|Mapping| |#2| |#1|) |#3|) "\\spad{map(func,{}frac)} applies the function \\spad{func} to the numerator and denominator of \\spad{frac}.")))
NIL
NIL
-(-920 A S)
+(-922 A S)
((|constructor| (NIL "QuotientField(\\spad{S}) is the category of fractions of an Integral Domain \\spad{S}.")) (|floor| ((|#2| $) "\\spad{floor(x)} returns the largest integral element below \\spad{x}.")) (|ceiling| ((|#2| $) "\\spad{ceiling(x)} returns the smallest integral element above \\spad{x}.")) (|random| (($) "\\spad{random()} returns a random fraction.")) (|fractionPart| (($ $) "\\spad{fractionPart(x)} returns the fractional part of \\spad{x}. \\spad{x} = wholePart(\\spad{x}) + fractionPart(\\spad{x})")) (|wholePart| ((|#2| $) "\\spad{wholePart(x)} returns the whole part of the fraction \\spad{x} \\spadignore{i.e.} the truncated quotient of the numerator by the denominator.")) (|denominator| (($ $) "\\spad{denominator(x)} is the denominator of the fraction \\spad{x} converted to \\%.")) (|numerator| (($ $) "\\spad{numerator(x)} is the numerator of the fraction \\spad{x} converted to \\%.")) (|denom| ((|#2| $) "\\spad{denom(x)} returns the denominator of the fraction \\spad{x}.")) (|numer| ((|#2| $) "\\spad{numer(x)} returns the numerator of the fraction \\spad{x}.")) (/ (($ |#2| |#2|) "\\spad{d1 / d2} returns the fraction \\spad{d1} divided by \\spad{d2}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-840))) (|HasCategory| |#2| (QUOTE (-508))) (|HasCategory| |#2| (QUOTE (-284))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (QUOTE (-949))) (|HasCategory| |#2| (QUOTE (-759))) (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#2| (QUOTE (-1063))))
-(-921 S)
+((|HasCategory| |#2| (QUOTE (-842))) (|HasCategory| |#2| (QUOTE (-510))) (|HasCategory| |#2| (QUOTE (-286))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-138))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (QUOTE (-951))) (|HasCategory| |#2| (QUOTE (-761))) (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-1065))))
+(-923 S)
((|constructor| (NIL "QuotientField(\\spad{S}) is the category of fractions of an Integral Domain \\spad{S}.")) (|floor| ((|#1| $) "\\spad{floor(x)} returns the largest integral element below \\spad{x}.")) (|ceiling| ((|#1| $) "\\spad{ceiling(x)} returns the smallest integral element above \\spad{x}.")) (|random| (($) "\\spad{random()} returns a random fraction.")) (|fractionPart| (($ $) "\\spad{fractionPart(x)} returns the fractional part of \\spad{x}. \\spad{x} = wholePart(\\spad{x}) + fractionPart(\\spad{x})")) (|wholePart| ((|#1| $) "\\spad{wholePart(x)} returns the whole part of the fraction \\spad{x} \\spadignore{i.e.} the truncated quotient of the numerator by the denominator.")) (|denominator| (($ $) "\\spad{denominator(x)} is the denominator of the fraction \\spad{x} converted to \\%.")) (|numerator| (($ $) "\\spad{numerator(x)} is the numerator of the fraction \\spad{x} converted to \\%.")) (|denom| ((|#1| $) "\\spad{denom(x)} returns the denominator of the fraction \\spad{x}.")) (|numer| ((|#1| $) "\\spad{numer(x)} returns the numerator of the fraction \\spad{x}.")) (/ (($ |#1| |#1|) "\\spad{d1 / d2} returns the fraction \\spad{d1} divided by \\spad{d2}.")))
-((-2500 . T) (-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-2137 . T) (-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-922 |n| K)
+(-924 |n| K)
((|constructor| (NIL "This domain provides modest support for quadratic forms.")) (|elt| ((|#2| $ (|DirectProduct| |#1| |#2|)) "\\spad{elt(qf,{}v)} evaluates the quadratic form \\spad{qf} on the vector \\spad{v},{} producing a scalar.")) (|matrix| (((|SquareMatrix| |#1| |#2|) $) "\\spad{matrix(qf)} creates a square matrix from the quadratic form \\spad{qf}.")) (|quadraticForm| (($ (|SquareMatrix| |#1| |#2|)) "\\spad{quadraticForm(m)} creates a quadratic form from a symmetric,{} square matrix \\spad{m}.")))
NIL
NIL
-(-923 S)
+(-925 S)
((|constructor| (NIL "A queue is a bag where the first item inserted is the first item extracted.")) (|back| ((|#1| $) "\\spad{back(q)} returns the element at the back of the queue. The queue \\spad{q} is unchanged by this operation. Error: if \\spad{q} is empty.")) (|front| ((|#1| $) "\\spad{front(q)} returns the element at the front of the queue. The queue \\spad{q} is unchanged by this operation. Error: if \\spad{q} is empty.")) (|length| (((|NonNegativeInteger|) $) "\\spad{length(q)} returns the number of elements in the queue. Note: \\axiom{length(\\spad{q}) = \\spad{#q}}.")) (|rotate!| (($ $) "\\spad{rotate! q} rotates queue \\spad{q} so that the element at the front of the queue goes to the back of the queue. Note: rotate! \\spad{q} is equivalent to enqueue!(dequeue!(\\spad{q})).")) (|dequeue!| ((|#1| $) "\\spad{dequeue! s} destructively extracts the first (top) element from queue \\spad{q}. The element previously second in the queue becomes the first element. Error: if \\spad{q} is empty.")) (|enqueue!| ((|#1| |#1| $) "\\spad{enqueue!(x,{}q)} inserts \\spad{x} into the queue \\spad{q} at the back end.")))
-((-4248 . T) (-4249 . T) (-2500 . T))
+((-4250 . T) (-4251 . T) (-2137 . T))
NIL
-(-924 S R)
+(-926 S R)
((|constructor| (NIL "\\spadtype{QuaternionCategory} describes the category of quaternions and implements functions that are not representation specific.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(q)} returns \\spad{q} as a rational number,{} or \"failed\" if this is not possible. Note: if \\spad{rational?(q)} is \\spad{true},{} the conversion can be done and the rational number will be returned.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(q)} tries to convert \\spad{q} into a rational number. Error: if this is not possible. If \\spad{rational?(q)} is \\spad{true},{} the conversion will be done and the rational number returned.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(q)} returns {\\it \\spad{true}} if all the imaginary parts of \\spad{q} are zero and the real part can be converted into a rational number,{} and {\\it \\spad{false}} otherwise.")) (|abs| ((|#2| $) "\\spad{abs(q)} computes the absolute value of quaternion \\spad{q} (sqrt of norm).")) (|real| ((|#2| $) "\\spad{real(q)} extracts the real part of quaternion \\spad{q}.")) (|quatern| (($ |#2| |#2| |#2| |#2|) "\\spad{quatern(r,{}i,{}j,{}k)} constructs a quaternion from scalars.")) (|norm| ((|#2| $) "\\spad{norm(q)} computes the norm of \\spad{q} (the sum of the squares of the components).")) (|imagK| ((|#2| $) "\\spad{imagK(q)} extracts the imaginary \\spad{k} part of quaternion \\spad{q}.")) (|imagJ| ((|#2| $) "\\spad{imagJ(q)} extracts the imaginary \\spad{j} part of quaternion \\spad{q}.")) (|imagI| ((|#2| $) "\\spad{imagI(q)} extracts the imaginary \\spad{i} part of quaternion \\spad{q}.")) (|conjugate| (($ $) "\\spad{conjugate(q)} negates the imaginary parts of quaternion \\spad{q}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-508))) (|HasCategory| |#2| (QUOTE (-982))) (|HasCategory| |#2| (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-267))))
-(-925 R)
+((|HasCategory| |#2| (QUOTE (-510))) (|HasCategory| |#2| (QUOTE (-984))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-138))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-269))))
+(-927 R)
((|constructor| (NIL "\\spadtype{QuaternionCategory} describes the category of quaternions and implements functions that are not representation specific.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(q)} returns \\spad{q} as a rational number,{} or \"failed\" if this is not possible. Note: if \\spad{rational?(q)} is \\spad{true},{} the conversion can be done and the rational number will be returned.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(q)} tries to convert \\spad{q} into a rational number. Error: if this is not possible. If \\spad{rational?(q)} is \\spad{true},{} the conversion will be done and the rational number returned.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(q)} returns {\\it \\spad{true}} if all the imaginary parts of \\spad{q} are zero and the real part can be converted into a rational number,{} and {\\it \\spad{false}} otherwise.")) (|abs| ((|#1| $) "\\spad{abs(q)} computes the absolute value of quaternion \\spad{q} (sqrt of norm).")) (|real| ((|#1| $) "\\spad{real(q)} extracts the real part of quaternion \\spad{q}.")) (|quatern| (($ |#1| |#1| |#1| |#1|) "\\spad{quatern(r,{}i,{}j,{}k)} constructs a quaternion from scalars.")) (|norm| ((|#1| $) "\\spad{norm(q)} computes the norm of \\spad{q} (the sum of the squares of the components).")) (|imagK| ((|#1| $) "\\spad{imagK(q)} extracts the imaginary \\spad{k} part of quaternion \\spad{q}.")) (|imagJ| ((|#1| $) "\\spad{imagJ(q)} extracts the imaginary \\spad{j} part of quaternion \\spad{q}.")) (|imagI| ((|#1| $) "\\spad{imagI(q)} extracts the imaginary \\spad{i} part of quaternion \\spad{q}.")) (|conjugate| (($ $) "\\spad{conjugate(q)} negates the imaginary parts of quaternion \\spad{q}.")))
-((-4241 |has| |#1| (-267)) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 |has| |#1| (-269)) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-926 QR R QS S)
+(-928 QR R QS S)
((|constructor| (NIL "\\spadtype{QuaternionCategoryFunctions2} implements functions between two quaternion domains. The function \\spadfun{map} is used by the system interpreter to coerce between quaternion types.")) (|map| ((|#3| (|Mapping| |#4| |#2|) |#1|) "\\spad{map(f,{}u)} maps \\spad{f} onto the component parts of the quaternion \\spad{u}.")))
NIL
NIL
-(-927 R)
+(-929 R)
((|constructor| (NIL "\\spadtype{Quaternion} implements quaternions over a \\indented{2}{commutative ring. The main constructor function is \\spadfun{quatern}} \\indented{2}{which takes 4 arguments: the real part,{} the \\spad{i} imaginary part,{} the \\spad{j}} \\indented{2}{imaginary part and the \\spad{k} imaginary part.}")))
-((-4241 |has| |#1| (-267)) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (QUOTE (-339))) (-3255 (|HasCategory| |#1| (QUOTE (-267))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (QUOTE (-267))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -484) (QUOTE (-1087)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -263) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-211))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-982))) (|HasCategory| |#1| (QUOTE (-508))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-339)))))
-(-928 S)
+((-4243 |has| |#1| (-269)) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (QUOTE (-341))) (-3321 (|HasCategory| |#1| (QUOTE (-269))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (QUOTE (-269))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -486) (QUOTE (-1089)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -265) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-213))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-984))) (|HasCategory| |#1| (QUOTE (-510))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-341)))))
+(-930 S)
((|constructor| (NIL "Linked List implementation of a Queue")) (|queue| (($ (|List| |#1|)) "\\spad{queue([x,{}y,{}...,{}z])} creates a queue with first (top) element \\spad{x},{} second element \\spad{y},{}...,{}and last (bottom) element \\spad{z}.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-929 S)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-931 S)
((|constructor| (NIL "The \\spad{RadicalCategory} is a model for the rational numbers.")) (** (($ $ (|Fraction| (|Integer|))) "\\spad{x ** y} is the rational exponentiation of \\spad{x} by the power \\spad{y}.")) (|nthRoot| (($ $ (|Integer|)) "\\spad{nthRoot(x,{}n)} returns the \\spad{n}th root of \\spad{x}.")) (|sqrt| (($ $) "\\spad{sqrt(x)} returns the square root of \\spad{x}.")))
NIL
NIL
-(-930)
+(-932)
((|constructor| (NIL "The \\spad{RadicalCategory} is a model for the rational numbers.")) (** (($ $ (|Fraction| (|Integer|))) "\\spad{x ** y} is the rational exponentiation of \\spad{x} by the power \\spad{y}.")) (|nthRoot| (($ $ (|Integer|)) "\\spad{nthRoot(x,{}n)} returns the \\spad{n}th root of \\spad{x}.")) (|sqrt| (($ $) "\\spad{sqrt(x)} returns the square root of \\spad{x}.")))
NIL
NIL
-(-931 -3894 UP UPUP |radicnd| |n|)
+(-933 -3576 UP UPUP |radicnd| |n|)
((|constructor| (NIL "Function field defined by y**n = \\spad{f}(\\spad{x}).")))
-((-4241 |has| (-383 |#2|) (-339)) (-4246 |has| (-383 |#2|) (-339)) (-4240 |has| (-383 |#2|) (-339)) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| (-383 |#2|) (QUOTE (-134))) (|HasCategory| (-383 |#2|) (QUOTE (-136))) (|HasCategory| (-383 |#2|) (QUOTE (-325))) (-3255 (|HasCategory| (-383 |#2|) (QUOTE (-339))) (|HasCategory| (-383 |#2|) (QUOTE (-325)))) (|HasCategory| (-383 |#2|) (QUOTE (-339))) (|HasCategory| (-383 |#2|) (QUOTE (-344))) (-3255 (-12 (|HasCategory| (-383 |#2|) (QUOTE (-211))) (|HasCategory| (-383 |#2|) (QUOTE (-339)))) (|HasCategory| (-383 |#2|) (QUOTE (-325)))) (-3255 (-12 (|HasCategory| (-383 |#2|) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| (-383 |#2|) (QUOTE (-339)))) (-12 (|HasCategory| (-383 |#2|) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| (-383 |#2|) (QUOTE (-325))))) (|HasCategory| (-383 |#2|) (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| (-383 |#2|) (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| (-383 |#2|) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-344))) (-3255 (|HasCategory| (-383 |#2|) (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| (-383 |#2|) (QUOTE (-339)))) (-12 (|HasCategory| (-383 |#2|) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| (-383 |#2|) (QUOTE (-339)))) (-12 (|HasCategory| (-383 |#2|) (QUOTE (-211))) (|HasCategory| (-383 |#2|) (QUOTE (-339)))))
-(-932 |bb|)
+((-4243 |has| (-385 |#2|) (-341)) (-4248 |has| (-385 |#2|) (-341)) (-4242 |has| (-385 |#2|) (-341)) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| (-385 |#2|) (QUOTE (-136))) (|HasCategory| (-385 |#2|) (QUOTE (-138))) (|HasCategory| (-385 |#2|) (QUOTE (-327))) (-3321 (|HasCategory| (-385 |#2|) (QUOTE (-341))) (|HasCategory| (-385 |#2|) (QUOTE (-327)))) (|HasCategory| (-385 |#2|) (QUOTE (-341))) (|HasCategory| (-385 |#2|) (QUOTE (-346))) (-3321 (-12 (|HasCategory| (-385 |#2|) (QUOTE (-213))) (|HasCategory| (-385 |#2|) (QUOTE (-341)))) (|HasCategory| (-385 |#2|) (QUOTE (-327)))) (-3321 (-12 (|HasCategory| (-385 |#2|) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| (-385 |#2|) (QUOTE (-341)))) (-12 (|HasCategory| (-385 |#2|) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| (-385 |#2|) (QUOTE (-327))))) (|HasCategory| (-385 |#2|) (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| (-385 |#2|) (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| (-385 |#2|) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-346))) (-3321 (|HasCategory| (-385 |#2|) (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| (-385 |#2|) (QUOTE (-341)))) (-12 (|HasCategory| (-385 |#2|) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| (-385 |#2|) (QUOTE (-341)))) (-12 (|HasCategory| (-385 |#2|) (QUOTE (-213))) (|HasCategory| (-385 |#2|) (QUOTE (-341)))))
+(-934 |bb|)
((|constructor| (NIL "This domain allows rational numbers to be presented as repeating decimal expansions or more generally as repeating expansions in any base.")) (|fractRadix| (($ (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{fractRadix(pre,{}cyc)} creates a fractional radix expansion from a list of prefix ragits and a list of cyclic ragits. For example,{} \\spad{fractRadix([1],{}[6])} will return \\spad{0.16666666...}.")) (|wholeRadix| (($ (|List| (|Integer|))) "\\spad{wholeRadix(l)} creates an integral radix expansion from a list of ragits. For example,{} \\spad{wholeRadix([1,{}3,{}4])} will return \\spad{134}.")) (|cycleRagits| (((|List| (|Integer|)) $) "\\spad{cycleRagits(rx)} returns the cyclic part of the ragits of the fractional part of a radix expansion. For example,{} if \\spad{x = 3/28 = 0.10 714285 714285 ...},{} then \\spad{cycleRagits(x) = [7,{}1,{}4,{}2,{}8,{}5]}.")) (|prefixRagits| (((|List| (|Integer|)) $) "\\spad{prefixRagits(rx)} returns the non-cyclic part of the ragits of the fractional part of a radix expansion. For example,{} if \\spad{x = 3/28 = 0.10 714285 714285 ...},{} then \\spad{prefixRagits(x)=[1,{}0]}.")) (|fractRagits| (((|Stream| (|Integer|)) $) "\\spad{fractRagits(rx)} returns the ragits of the fractional part of a radix expansion.")) (|wholeRagits| (((|List| (|Integer|)) $) "\\spad{wholeRagits(rx)} returns the ragits of the integer part of a radix expansion.")) (|fractionPart| (((|Fraction| (|Integer|)) $) "\\spad{fractionPart(rx)} returns the fractional part of a radix expansion.")) (|coerce| (((|Fraction| (|Integer|)) $) "\\spad{coerce(rx)} converts a radix expansion to a rational number.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| (-523) (QUOTE (-840))) (|HasCategory| (-523) (LIST (QUOTE -964) (QUOTE (-1087)))) (|HasCategory| (-523) (QUOTE (-134))) (|HasCategory| (-523) (QUOTE (-136))) (|HasCategory| (-523) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| (-523) (QUOTE (-949))) (|HasCategory| (-523) (QUOTE (-759))) (-3255 (|HasCategory| (-523) (QUOTE (-759))) (|HasCategory| (-523) (QUOTE (-786)))) (|HasCategory| (-523) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| (-523) (QUOTE (-1063))) (|HasCategory| (-523) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| (-523) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| (-523) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| (-523) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| (-523) (QUOTE (-211))) (|HasCategory| (-523) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| (-523) (LIST (QUOTE -484) (QUOTE (-1087)) (QUOTE (-523)))) (|HasCategory| (-523) (LIST (QUOTE -286) (QUOTE (-523)))) (|HasCategory| (-523) (LIST (QUOTE -263) (QUOTE (-523)) (QUOTE (-523)))) (|HasCategory| (-523) (QUOTE (-284))) (|HasCategory| (-523) (QUOTE (-508))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| (-523) (LIST (QUOTE -585) (QUOTE (-523)))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-523) (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-523) (QUOTE (-840)))) (|HasCategory| (-523) (QUOTE (-134)))))
-(-933)
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| (-525) (QUOTE (-842))) (|HasCategory| (-525) (LIST (QUOTE -966) (QUOTE (-1089)))) (|HasCategory| (-525) (QUOTE (-136))) (|HasCategory| (-525) (QUOTE (-138))) (|HasCategory| (-525) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| (-525) (QUOTE (-951))) (|HasCategory| (-525) (QUOTE (-761))) (-3321 (|HasCategory| (-525) (QUOTE (-761))) (|HasCategory| (-525) (QUOTE (-788)))) (|HasCategory| (-525) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| (-525) (QUOTE (-1065))) (|HasCategory| (-525) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| (-525) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| (-525) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| (-525) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| (-525) (QUOTE (-213))) (|HasCategory| (-525) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| (-525) (LIST (QUOTE -486) (QUOTE (-1089)) (QUOTE (-525)))) (|HasCategory| (-525) (LIST (QUOTE -288) (QUOTE (-525)))) (|HasCategory| (-525) (LIST (QUOTE -265) (QUOTE (-525)) (QUOTE (-525)))) (|HasCategory| (-525) (QUOTE (-286))) (|HasCategory| (-525) (QUOTE (-510))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| (-525) (LIST (QUOTE -587) (QUOTE (-525)))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-525) (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-525) (QUOTE (-842)))) (|HasCategory| (-525) (QUOTE (-136)))))
+(-935)
((|constructor| (NIL "This package provides tools for creating radix expansions.")) (|radix| (((|Any|) (|Fraction| (|Integer|)) (|Integer|)) "\\spad{radix(x,{}b)} converts \\spad{x} to a radix expansion in base \\spad{b}.")))
NIL
NIL
-(-934)
+(-936)
((|constructor| (NIL "Random number generators \\indented{2}{All random numbers used in the system should originate from} \\indented{2}{the same generator.\\space{2}This package is intended to be the source.}")) (|seed| (((|Integer|)) "\\spad{seed()} returns the current seed value.")) (|reseed| (((|Void|) (|Integer|)) "\\spad{reseed(n)} restarts the random number generator at \\spad{n}.")) (|size| (((|Integer|)) "\\spad{size()} is the base of the random number generator")) (|randnum| (((|Integer|) (|Integer|)) "\\spad{randnum(n)} is a random number between 0 and \\spad{n}.") (((|Integer|)) "\\spad{randnum()} is a random number between 0 and size().")))
NIL
NIL
-(-935 RP)
+(-937 RP)
((|factorSquareFree| (((|Factored| |#1|) |#1|) "\\spad{factorSquareFree(p)} factors an extended squareFree polynomial \\spad{p} over the rational numbers.")) (|factor| (((|Factored| |#1|) |#1|) "\\spad{factor(p)} factors an extended polynomial \\spad{p} over the rational numbers.")))
NIL
NIL
-(-936 S)
+(-938 S)
((|constructor| (NIL "rational number testing and retraction functions. Date Created: March 1990 Date Last Updated: 9 April 1991")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") |#1|) "\\spad{rationalIfCan(x)} returns \\spad{x} as a rational number,{} \"failed\" if \\spad{x} is not a rational number.")) (|rational?| (((|Boolean|) |#1|) "\\spad{rational?(x)} returns \\spad{true} if \\spad{x} is a rational number,{} \\spad{false} otherwise.")) (|rational| (((|Fraction| (|Integer|)) |#1|) "\\spad{rational(x)} returns \\spad{x} as a rational number; error if \\spad{x} is not a rational number.")))
NIL
NIL
-(-937 A S)
+(-939 A S)
((|constructor| (NIL "A recursive aggregate over a type \\spad{S} is a model for a a directed graph containing values of type \\spad{S}. Recursively,{} a recursive aggregate is a {\\em node} consisting of a \\spadfun{value} from \\spad{S} and 0 or more \\spadfun{children} which are recursive aggregates. A node with no children is called a \\spadfun{leaf} node. A recursive aggregate may be cyclic for which some operations as noted may go into an infinite loop.")) (|setvalue!| ((|#2| $ |#2|) "\\spad{setvalue!(u,{}x)} sets the value of node \\spad{u} to \\spad{x}.")) (|setelt| ((|#2| $ "value" |#2|) "\\spad{setelt(a,{}\"value\",{}x)} (also written \\axiom{a . value \\spad{:=} \\spad{x}}) is equivalent to \\axiom{setvalue!(a,{}\\spad{x})}")) (|setchildren!| (($ $ (|List| $)) "\\spad{setchildren!(u,{}v)} replaces the current children of node \\spad{u} with the members of \\spad{v} in left-to-right order.")) (|node?| (((|Boolean|) $ $) "\\spad{node?(u,{}v)} tests if node \\spad{u} is contained in node \\spad{v} (either as a child,{} a child of a child,{} etc.).")) (|child?| (((|Boolean|) $ $) "\\spad{child?(u,{}v)} tests if node \\spad{u} is a child of node \\spad{v}.")) (|distance| (((|Integer|) $ $) "\\spad{distance(u,{}v)} returns the path length (an integer) from node \\spad{u} to \\spad{v}.")) (|leaves| (((|List| |#2|) $) "\\spad{leaves(t)} returns the list of values in obtained by visiting the nodes of tree \\axiom{\\spad{t}} in left-to-right order.")) (|cyclic?| (((|Boolean|) $) "\\spad{cyclic?(u)} tests if \\spad{u} has a cycle.")) (|elt| ((|#2| $ "value") "\\spad{elt(u,{}\"value\")} (also written: \\axiom{a. value}) is equivalent to \\axiom{value(a)}.")) (|value| ((|#2| $) "\\spad{value(u)} returns the value of the node \\spad{u}.")) (|leaf?| (((|Boolean|) $) "\\spad{leaf?(u)} tests if \\spad{u} is a terminal node.")) (|nodes| (((|List| $) $) "\\spad{nodes(u)} returns a list of all of the nodes of aggregate \\spad{u}.")) (|children| (((|List| $) $) "\\spad{children(u)} returns a list of the children of aggregate \\spad{u}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4249)) (|HasCategory| |#2| (QUOTE (-1016))))
-(-938 S)
+((|HasAttribute| |#1| (QUOTE -4251)) (|HasCategory| |#2| (QUOTE (-1018))))
+(-940 S)
((|constructor| (NIL "A recursive aggregate over a type \\spad{S} is a model for a a directed graph containing values of type \\spad{S}. Recursively,{} a recursive aggregate is a {\\em node} consisting of a \\spadfun{value} from \\spad{S} and 0 or more \\spadfun{children} which are recursive aggregates. A node with no children is called a \\spadfun{leaf} node. A recursive aggregate may be cyclic for which some operations as noted may go into an infinite loop.")) (|setvalue!| ((|#1| $ |#1|) "\\spad{setvalue!(u,{}x)} sets the value of node \\spad{u} to \\spad{x}.")) (|setelt| ((|#1| $ "value" |#1|) "\\spad{setelt(a,{}\"value\",{}x)} (also written \\axiom{a . value \\spad{:=} \\spad{x}}) is equivalent to \\axiom{setvalue!(a,{}\\spad{x})}")) (|setchildren!| (($ $ (|List| $)) "\\spad{setchildren!(u,{}v)} replaces the current children of node \\spad{u} with the members of \\spad{v} in left-to-right order.")) (|node?| (((|Boolean|) $ $) "\\spad{node?(u,{}v)} tests if node \\spad{u} is contained in node \\spad{v} (either as a child,{} a child of a child,{} etc.).")) (|child?| (((|Boolean|) $ $) "\\spad{child?(u,{}v)} tests if node \\spad{u} is a child of node \\spad{v}.")) (|distance| (((|Integer|) $ $) "\\spad{distance(u,{}v)} returns the path length (an integer) from node \\spad{u} to \\spad{v}.")) (|leaves| (((|List| |#1|) $) "\\spad{leaves(t)} returns the list of values in obtained by visiting the nodes of tree \\axiom{\\spad{t}} in left-to-right order.")) (|cyclic?| (((|Boolean|) $) "\\spad{cyclic?(u)} tests if \\spad{u} has a cycle.")) (|elt| ((|#1| $ "value") "\\spad{elt(u,{}\"value\")} (also written: \\axiom{a. value}) is equivalent to \\axiom{value(a)}.")) (|value| ((|#1| $) "\\spad{value(u)} returns the value of the node \\spad{u}.")) (|leaf?| (((|Boolean|) $) "\\spad{leaf?(u)} tests if \\spad{u} is a terminal node.")) (|nodes| (((|List| $) $) "\\spad{nodes(u)} returns a list of all of the nodes of aggregate \\spad{u}.")) (|children| (((|List| $) $) "\\spad{children(u)} returns a list of the children of aggregate \\spad{u}.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-939 S)
+(-941 S)
((|constructor| (NIL "\\axiomType{RealClosedField} provides common acces functions for all real closed fields.")) (|approximate| (((|Fraction| (|Integer|)) $ $) "\\axiom{approximate(\\spad{n},{}\\spad{p})} gives an approximation of \\axiom{\\spad{n}} that has precision \\axiom{\\spad{p}}")) (|rename| (($ $ (|OutputForm|)) "\\axiom{rename(\\spad{x},{}name)} gives a new number that prints as name")) (|rename!| (($ $ (|OutputForm|)) "\\axiom{rename!(\\spad{x},{}name)} changes the way \\axiom{\\spad{x}} is printed")) (|sqrt| (($ (|Integer|)) "\\axiom{sqrt(\\spad{x})} is \\axiom{\\spad{x} \\spad{**} (1/2)}") (($ (|Fraction| (|Integer|))) "\\axiom{sqrt(\\spad{x})} is \\axiom{\\spad{x} \\spad{**} (1/2)}") (($ $) "\\axiom{sqrt(\\spad{x})} is \\axiom{\\spad{x} \\spad{**} (1/2)}") (($ $ (|NonNegativeInteger|)) "\\axiom{sqrt(\\spad{x},{}\\spad{n})} is \\axiom{\\spad{x} \\spad{**} (1/n)}")) (|allRootsOf| (((|List| $) (|Polynomial| (|Integer|))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|Polynomial| $)) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|SparseUnivariatePolynomial| (|Integer|))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|SparseUnivariatePolynomial| (|Fraction| (|Integer|)))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|SparseUnivariatePolynomial| $)) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely")) (|rootOf| (((|Union| $ "failed") (|SparseUnivariatePolynomial| $) (|PositiveInteger|)) "\\axiom{rootOf(pol,{}\\spad{n})} creates the \\spad{n}th root for the order of \\axiom{pol} and gives it unique name") (((|Union| $ "failed") (|SparseUnivariatePolynomial| $) (|PositiveInteger|) (|OutputForm|)) "\\axiom{rootOf(pol,{}\\spad{n},{}name)} creates the \\spad{n}th root for the order of \\axiom{pol} and names it \\axiom{name}")) (|mainValue| (((|Union| (|SparseUnivariatePolynomial| $) "failed") $) "\\axiom{mainValue(\\spad{x})} is the expression of \\axiom{\\spad{x}} in terms of \\axiom{SparseUnivariatePolynomial(\\$)}")) (|mainDefiningPolynomial| (((|Union| (|SparseUnivariatePolynomial| $) "failed") $) "\\axiom{mainDefiningPolynomial(\\spad{x})} is the defining polynomial for the main algebraic quantity of \\axiom{\\spad{x}}")) (|mainForm| (((|Union| (|OutputForm|) "failed") $) "\\axiom{mainForm(\\spad{x})} is the main algebraic quantity name of \\axiom{\\spad{x}}")))
NIL
NIL
-(-940)
+(-942)
((|constructor| (NIL "\\axiomType{RealClosedField} provides common acces functions for all real closed fields.")) (|approximate| (((|Fraction| (|Integer|)) $ $) "\\axiom{approximate(\\spad{n},{}\\spad{p})} gives an approximation of \\axiom{\\spad{n}} that has precision \\axiom{\\spad{p}}")) (|rename| (($ $ (|OutputForm|)) "\\axiom{rename(\\spad{x},{}name)} gives a new number that prints as name")) (|rename!| (($ $ (|OutputForm|)) "\\axiom{rename!(\\spad{x},{}name)} changes the way \\axiom{\\spad{x}} is printed")) (|sqrt| (($ (|Integer|)) "\\axiom{sqrt(\\spad{x})} is \\axiom{\\spad{x} \\spad{**} (1/2)}") (($ (|Fraction| (|Integer|))) "\\axiom{sqrt(\\spad{x})} is \\axiom{\\spad{x} \\spad{**} (1/2)}") (($ $) "\\axiom{sqrt(\\spad{x})} is \\axiom{\\spad{x} \\spad{**} (1/2)}") (($ $ (|NonNegativeInteger|)) "\\axiom{sqrt(\\spad{x},{}\\spad{n})} is \\axiom{\\spad{x} \\spad{**} (1/n)}")) (|allRootsOf| (((|List| $) (|Polynomial| (|Integer|))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|Polynomial| $)) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|SparseUnivariatePolynomial| (|Integer|))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|SparseUnivariatePolynomial| (|Fraction| (|Integer|)))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|SparseUnivariatePolynomial| $)) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely")) (|rootOf| (((|Union| $ "failed") (|SparseUnivariatePolynomial| $) (|PositiveInteger|)) "\\axiom{rootOf(pol,{}\\spad{n})} creates the \\spad{n}th root for the order of \\axiom{pol} and gives it unique name") (((|Union| $ "failed") (|SparseUnivariatePolynomial| $) (|PositiveInteger|) (|OutputForm|)) "\\axiom{rootOf(pol,{}\\spad{n},{}name)} creates the \\spad{n}th root for the order of \\axiom{pol} and names it \\axiom{name}")) (|mainValue| (((|Union| (|SparseUnivariatePolynomial| $) "failed") $) "\\axiom{mainValue(\\spad{x})} is the expression of \\axiom{\\spad{x}} in terms of \\axiom{SparseUnivariatePolynomial(\\$)}")) (|mainDefiningPolynomial| (((|Union| (|SparseUnivariatePolynomial| $) "failed") $) "\\axiom{mainDefiningPolynomial(\\spad{x})} is the defining polynomial for the main algebraic quantity of \\axiom{\\spad{x}}")) (|mainForm| (((|Union| (|OutputForm|) "failed") $) "\\axiom{mainForm(\\spad{x})} is the main algebraic quantity name of \\axiom{\\spad{x}}")))
-((-4241 . T) (-4246 . T) (-4240 . T) (-4243 . T) (-4242 . T) ((-4250 "*") . T) (-4245 . T))
+((-4243 . T) (-4248 . T) (-4242 . T) (-4245 . T) (-4244 . T) ((-4252 "*") . T) (-4247 . T))
NIL
-(-941 R -3894)
+(-943 R -3576)
((|constructor| (NIL "\\indented{1}{Risch differential equation,{} elementary case.} Author: Manuel Bronstein Date Created: 1 February 1988 Date Last Updated: 2 November 1995 Keywords: elementary,{} function,{} integration.")) (|rischDE| (((|Record| (|:| |ans| |#2|) (|:| |right| |#2|) (|:| |sol?| (|Boolean|))) (|Integer|) |#2| |#2| (|Symbol|) (|Mapping| (|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|List| |#2|)) (|Mapping| (|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) "\\spad{rischDE(n,{} f,{} g,{} x,{} lim,{} ext)} returns \\spad{[y,{} h,{} b]} such that \\spad{dy/dx + n df/dx y = h} and \\spad{b := h = g}. The equation \\spad{dy/dx + n df/dx y = g} has no solution if \\spad{h \\~~= g} (\\spad{y} is a partial solution in that case). Notes: \\spad{lim} is a limited integration function,{} and ext is an extended integration function.")))
NIL
NIL
-(-942 R -3894)
+(-944 R -3576)
((|constructor| (NIL "\\indented{1}{Risch differential equation,{} elementary case.} Author: Manuel Bronstein Date Created: 12 August 1992 Date Last Updated: 17 August 1992 Keywords: elementary,{} function,{} integration.")) (|rischDEsys| (((|Union| (|List| |#2|) "failed") (|Integer|) |#2| |#2| |#2| (|Symbol|) (|Mapping| (|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|List| |#2|)) (|Mapping| (|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) "\\spad{rischDEsys(n,{} f,{} g_1,{} g_2,{} x,{}lim,{}ext)} returns \\spad{y_1.y_2} such that \\spad{(dy1/dx,{}dy2/dx) + ((0,{} - n df/dx),{}(n df/dx,{}0)) (y1,{}y2) = (g1,{}g2)} if \\spad{y_1,{}y_2} exist,{} \"failed\" otherwise. \\spad{lim} is a limited integration function,{} \\spad{ext} is an extended integration function.")))
NIL
NIL
-(-943 -3894 UP)
+(-945 -3576 UP)
((|constructor| (NIL "\\indented{1}{Risch differential equation,{} transcendental case.} Author: Manuel Bronstein Date Created: Jan 1988 Date Last Updated: 2 November 1995")) (|polyRDE| (((|Union| (|:| |ans| (|Record| (|:| |ans| |#2|) (|:| |nosol| (|Boolean|)))) (|:| |eq| (|Record| (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (|Integer|)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (|Integer|) (|Mapping| |#2| |#2|)) "\\spad{polyRDE(a,{} B,{} C,{} n,{} D)} returns either: 1. \\spad{[Q,{} b]} such that \\spad{degree(Q) <= n} and \\indented{3}{\\spad{a Q'+ B Q = C} if \\spad{b = true},{} \\spad{Q} is a partial solution} \\indented{3}{otherwise.} 2. \\spad{[B1,{} C1,{} m,{} \\alpha,{} \\beta]} such that any polynomial solution \\indented{3}{of degree at most \\spad{n} of \\spad{A Q' + BQ = C} must be of the form} \\indented{3}{\\spad{Q = \\alpha H + \\beta} where \\spad{degree(H) <= m} and} \\indented{3}{\\spad{H} satisfies \\spad{H' + B1 H = C1}.} \\spad{D} is the derivation to use.")) (|baseRDE| (((|Record| (|:| |ans| (|Fraction| |#2|)) (|:| |nosol| (|Boolean|))) (|Fraction| |#2|) (|Fraction| |#2|)) "\\spad{baseRDE(f,{} g)} returns a \\spad{[y,{} b]} such that \\spad{y' + fy = g} if \\spad{b = true},{} \\spad{y} is a partial solution otherwise (no solution in that case). \\spad{D} is the derivation to use.")) (|monomRDE| (((|Union| (|Record| (|:| |a| |#2|) (|:| |b| (|Fraction| |#2|)) (|:| |c| (|Fraction| |#2|)) (|:| |t| |#2|)) "failed") (|Fraction| |#2|) (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{monomRDE(f,{}g,{}D)} returns \\spad{[A,{} B,{} C,{} T]} such that \\spad{y' + f y = g} has a solution if and only if \\spad{y = Q / T},{} where \\spad{Q} satisfies \\spad{A Q' + B Q = C} and has no normal pole. A and \\spad{T} are polynomials and \\spad{B} and \\spad{C} have no normal poles. \\spad{D} is the derivation to use.")))
NIL
NIL
-(-944 -3894 UP)
+(-946 -3576 UP)
((|constructor| (NIL "\\indented{1}{Risch differential equation system,{} transcendental case.} Author: Manuel Bronstein Date Created: 17 August 1992 Date Last Updated: 3 February 1994")) (|baseRDEsys| (((|Union| (|List| (|Fraction| |#2|)) "failed") (|Fraction| |#2|) (|Fraction| |#2|) (|Fraction| |#2|)) "\\spad{baseRDEsys(f,{} g1,{} g2)} returns fractions \\spad{y_1.y_2} such that \\spad{(y1',{} y2') + ((0,{} -f),{} (f,{} 0)) (y1,{}y2) = (g1,{}g2)} if \\spad{y_1,{}y_2} exist,{} \"failed\" otherwise.")) (|monomRDEsys| (((|Union| (|Record| (|:| |a| |#2|) (|:| |b| (|Fraction| |#2|)) (|:| |h| |#2|) (|:| |c1| (|Fraction| |#2|)) (|:| |c2| (|Fraction| |#2|)) (|:| |t| |#2|)) "failed") (|Fraction| |#2|) (|Fraction| |#2|) (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{monomRDEsys(f,{}g1,{}g2,{}D)} returns \\spad{[A,{} B,{} H,{} C1,{} C2,{} T]} such that \\spad{(y1',{} y2') + ((0,{} -f),{} (f,{} 0)) (y1,{}y2) = (g1,{}g2)} has a solution if and only if \\spad{y1 = Q1 / T,{} y2 = Q2 / T},{} where \\spad{B,{}C1,{}C2,{}Q1,{}Q2} have no normal poles and satisfy A \\spad{(Q1',{} Q2') + ((H,{} -B),{} (B,{} H)) (Q1,{}Q2) = (C1,{}C2)} \\spad{D} is the derivation to use.")))
NIL
NIL
-(-945 S)
+(-947 S)
((|constructor| (NIL "This package exports random distributions")) (|rdHack1| (((|Mapping| |#1|) (|Vector| |#1|) (|Vector| (|Integer|)) (|Integer|)) "\\spad{rdHack1(v,{}u,{}n)} \\undocumented")) (|weighted| (((|Mapping| |#1|) (|List| (|Record| (|:| |value| |#1|) (|:| |weight| (|Integer|))))) "\\spad{weighted(l)} \\undocumented")) (|uniform| (((|Mapping| |#1|) (|Set| |#1|)) "\\spad{uniform(s)} \\undocumented")))
NIL
NIL
-(-946 F1 UP UPUP R F2)
+(-948 F1 UP UPUP R F2)
((|constructor| (NIL "\\indented{1}{Finds the order of a divisor over a finite field} Author: Manuel Bronstein Date Created: 1988 Date Last Updated: 8 November 1994")) (|order| (((|NonNegativeInteger|) (|FiniteDivisor| |#1| |#2| |#3| |#4|) |#3| (|Mapping| |#5| |#1|)) "\\spad{order(f,{}u,{}g)} \\undocumented")))
NIL
NIL
-(-947 |Pol|)
+(-949 |Pol|)
((|constructor| (NIL "\\indented{2}{This package provides functions for finding the real zeros} of univariate polynomials over the integers to arbitrary user-specified precision. The results are returned as a list of isolating intervals which are expressed as records with \"left\" and \"right\" rational number components.")) (|midpoints| (((|List| (|Fraction| (|Integer|))) (|List| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|)))))) "\\spad{midpoints(isolist)} returns the list of midpoints for the list of intervals \\spad{isolist}.")) (|midpoint| (((|Fraction| (|Integer|)) (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|))))) "\\spad{midpoint(int)} returns the midpoint of the interval \\spad{int}.")) (|refine| (((|Union| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|)))) "failed") |#1| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|)))) (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|))))) "\\spad{refine(pol,{} int,{} range)} takes a univariate polynomial \\spad{pol} and and isolating interval \\spad{int} containing exactly one real root of \\spad{pol}; the operation returns an isolating interval which is contained within range,{} or \"failed\" if no such isolating interval exists.") (((|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|)))) |#1| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|)))) (|Fraction| (|Integer|))) "\\spad{refine(pol,{} int,{} eps)} refines the interval \\spad{int} containing exactly one root of the univariate polynomial \\spad{pol} to size less than the rational number eps.")) (|realZeros| (((|List| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|))))) |#1| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|)))) (|Fraction| (|Integer|))) "\\spad{realZeros(pol,{} int,{} eps)} returns a list of intervals of length less than the rational number eps for all the real roots of the polynomial \\spad{pol} which lie in the interval expressed by the record \\spad{int}.") (((|List| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|))))) |#1| (|Fraction| (|Integer|))) "\\spad{realZeros(pol,{} eps)} returns a list of intervals of length less than the rational number eps for all the real roots of the polynomial \\spad{pol}.") (((|List| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|))))) |#1| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|))))) "\\spad{realZeros(pol,{} range)} returns a list of isolating intervals for all the real zeros of the univariate polynomial \\spad{pol} which lie in the interval expressed by the record range.") (((|List| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|))))) |#1|) "\\spad{realZeros(pol)} returns a list of isolating intervals for all the real zeros of the univariate polynomial \\spad{pol}.")))
NIL
NIL
-(-948 |Pol|)
+(-950 |Pol|)
((|constructor| (NIL "\\indented{2}{This package provides functions for finding the real zeros} of univariate polynomials over the rational numbers to arbitrary user-specified precision. The results are returned as a list of isolating intervals,{} expressed as records with \"left\" and \"right\" rational number components.")) (|refine| (((|Union| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|)))) "failed") |#1| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|)))) (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|))))) "\\spad{refine(pol,{} int,{} range)} takes a univariate polynomial \\spad{pol} and and isolating interval \\spad{int} which must contain exactly one real root of \\spad{pol},{} and returns an isolating interval which is contained within range,{} or \"failed\" if no such isolating interval exists.") (((|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|)))) |#1| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|)))) (|Fraction| (|Integer|))) "\\spad{refine(pol,{} int,{} eps)} refines the interval \\spad{int} containing exactly one root of the univariate polynomial \\spad{pol} to size less than the rational number eps.")) (|realZeros| (((|List| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|))))) |#1| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|)))) (|Fraction| (|Integer|))) "\\spad{realZeros(pol,{} int,{} eps)} returns a list of intervals of length less than the rational number eps for all the real roots of the polynomial \\spad{pol} which lie in the interval expressed by the record \\spad{int}.") (((|List| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|))))) |#1| (|Fraction| (|Integer|))) "\\spad{realZeros(pol,{} eps)} returns a list of intervals of length less than the rational number eps for all the real roots of the polynomial \\spad{pol}.") (((|List| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|))))) |#1| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|))))) "\\spad{realZeros(pol,{} range)} returns a list of isolating intervals for all the real zeros of the univariate polynomial \\spad{pol} which lie in the interval expressed by the record range.") (((|List| (|Record| (|:| |left| (|Fraction| (|Integer|))) (|:| |right| (|Fraction| (|Integer|))))) |#1|) "\\spad{realZeros(pol)} returns a list of isolating intervals for all the real zeros of the univariate polynomial \\spad{pol}.")))
NIL
NIL
-(-949)
+(-951)
((|constructor| (NIL "The category of real numeric domains,{} \\spadignore{i.e.} convertible to floats.")))
NIL
NIL
-(-950)
+(-952)
((|constructor| (NIL "\\indented{1}{This package provides numerical solutions of systems of polynomial} equations for use in ACPLOT.")) (|realSolve| (((|List| (|List| (|Float|))) (|List| (|Polynomial| (|Integer|))) (|List| (|Symbol|)) (|Float|)) "\\spad{realSolve(lp,{}lv,{}eps)} = compute the list of the real solutions of the list \\spad{lp} of polynomials with integer coefficients with respect to the variables in \\spad{lv},{} with precision \\spad{eps}.")) (|solve| (((|List| (|Float|)) (|Polynomial| (|Integer|)) (|Float|)) "\\spad{solve(p,{}eps)} finds the real zeroes of a univariate integer polynomial \\spad{p} with precision \\spad{eps}.") (((|List| (|Float|)) (|Polynomial| (|Fraction| (|Integer|))) (|Float|)) "\\spad{solve(p,{}eps)} finds the real zeroes of a univariate rational polynomial \\spad{p} with precision \\spad{eps}.")))
NIL
NIL
-(-951 |TheField|)
+(-953 |TheField|)
((|constructor| (NIL "This domain implements the real closure of an ordered field.")) (|relativeApprox| (((|Fraction| (|Integer|)) $ $) "\\axiom{relativeApprox(\\spad{n},{}\\spad{p})} gives a relative approximation of \\axiom{\\spad{n}} that has precision \\axiom{\\spad{p}}")) (|mainCharacterization| (((|Union| (|RightOpenIntervalRootCharacterization| $ (|SparseUnivariatePolynomial| $)) "failed") $) "\\axiom{mainCharacterization(\\spad{x})} is the main algebraic quantity of \\axiom{\\spad{x}} (\\axiom{SEG})")) (|algebraicOf| (($ (|RightOpenIntervalRootCharacterization| $ (|SparseUnivariatePolynomial| $)) (|OutputForm|)) "\\axiom{algebraicOf(char)} is the external number")))
-((-4241 . T) (-4246 . T) (-4240 . T) (-4243 . T) (-4242 . T) ((-4250 "*") . T) (-4245 . T))
-((-3255 (|HasCategory| (-383 (-523)) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| (-383 (-523)) (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| (-383 (-523)) (LIST (QUOTE -964) (QUOTE (-523)))))
-(-952 -3894 L)
+((-4243 . T) (-4248 . T) (-4242 . T) (-4245 . T) (-4244 . T) ((-4252 "*") . T) (-4247 . T))
+((-3321 (|HasCategory| (-385 (-525)) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| (-385 (-525)) (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| (-385 (-525)) (LIST (QUOTE -966) (QUOTE (-525)))))
+(-954 -3576 L)
((|constructor| (NIL "\\spadtype{ReductionOfOrder} provides functions for reducing the order of linear ordinary differential equations once some solutions are known.")) (|ReduceOrder| (((|Record| (|:| |eq| |#2|) (|:| |op| (|List| |#1|))) |#2| (|List| |#1|)) "\\spad{ReduceOrder(op,{} [f1,{}...,{}fk])} returns \\spad{[op1,{}[g1,{}...,{}gk]]} such that for any solution \\spad{z} of \\spad{op1 z = 0},{} \\spad{y = gk \\int(g_{k-1} \\int(... \\int(g1 \\int z)...)} is a solution of \\spad{op y = 0}. Each \\spad{\\spad{fi}} must satisfy \\spad{op \\spad{fi} = 0}.") ((|#2| |#2| |#1|) "\\spad{ReduceOrder(op,{} s)} returns \\spad{op1} such that for any solution \\spad{z} of \\spad{op1 z = 0},{} \\spad{y = s \\int z} is a solution of \\spad{op y = 0}. \\spad{s} must satisfy \\spad{op s = 0}.")))
NIL
NIL
-(-953 S)
+(-955 S)
((|constructor| (NIL "\\indented{1}{\\spadtype{Reference} is for making a changeable instance} of something.")) (= (((|Boolean|) $ $) "\\spad{a=b} tests if \\spad{a} and \\spad{b} are equal.")) (|setref| ((|#1| $ |#1|) "\\spad{setref(n,{}m)} same as \\spad{setelt(n,{}m)}.")) (|deref| ((|#1| $) "\\spad{deref(n)} is equivalent to \\spad{elt(n)}.")) (|setelt| ((|#1| $ |#1|) "\\spad{setelt(n,{}m)} changes the value of the object \\spad{n} to \\spad{m}.")) (|elt| ((|#1| $) "\\spad{elt(n)} returns the object \\spad{n}.")) (|ref| (($ |#1|) "\\spad{ref(n)} creates a pointer (reference) to the object \\spad{n}.")))
NIL
-((|HasCategory| |#1| (QUOTE (-1016))))
-(-954 R E V P)
+((|HasCategory| |#1| (QUOTE (-1018))))
+(-956 R E V P)
((|constructor| (NIL "This domain provides an implementation of regular chains. Moreover,{} the operation \\axiomOpFrom{zeroSetSplit}{RegularTriangularSetCategory} is an implementation of a new algorithm for solving polynomial systems by means of regular chains.\\newline References : \\indented{1}{[1] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")) (|preprocess| (((|Record| (|:| |val| (|List| |#4|)) (|:| |towers| (|List| $))) (|List| |#4|) (|Boolean|) (|Boolean|)) "\\axiom{pre_process(\\spad{lp},{}\\spad{b1},{}\\spad{b2})} is an internal subroutine,{} exported only for developement.")) (|internalZeroSetSplit| (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{internalZeroSetSplit(\\spad{lp},{}\\spad{b1},{}\\spad{b2},{}\\spad{b3})} is an internal subroutine,{} exported only for developement.")) (|zeroSetSplit| (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{}\\spad{b1},{}\\spad{b2}.\\spad{b3},{}\\spad{b4})} is an internal subroutine,{} exported only for developement.") (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{}clos?,{}info?)} has the same specifications as \\axiomOpFrom{zeroSetSplit}{RegularTriangularSetCategory}. Moreover,{} if \\axiom{clos?} then solves in the sense of the Zariski closure else solves in the sense of the regular zeros. If \\axiom{info?} then do print messages during the computations.")) (|internalAugment| (((|List| $) |#4| $ (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{internalAugment(\\spad{p},{}\\spad{ts},{}\\spad{b1},{}\\spad{b2},{}\\spad{b3},{}\\spad{b4},{}\\spad{b5})} is an internal subroutine,{} exported only for developement.")))
-((-4249 . T) (-4248 . T))
-((-12 (|HasCategory| |#4| (QUOTE (-1016))) (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#4| (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#3| (QUOTE (-344))) (|HasCategory| |#4| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-955 R)
+((-4251 . T) (-4250 . T))
+((-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#3| (QUOTE (-346))) (|HasCategory| |#4| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-957 R)
((|constructor| (NIL "RepresentationPackage1 provides functions for representation theory for finite groups and algebras. The package creates permutation representations and uses tensor products and its symmetric and antisymmetric components to create new representations of larger degree from given ones. Note: instead of having parameters from \\spadtype{Permutation} this package allows list notation of permutations as well: \\spadignore{e.g.} \\spad{[1,{}4,{}3,{}2]} denotes permutes 2 and 4 and fixes 1 and 3.")) (|permutationRepresentation| (((|List| (|Matrix| (|Integer|))) (|List| (|List| (|Integer|)))) "\\spad{permutationRepresentation([pi1,{}...,{}pik],{}n)} returns the list of matrices {\\em [(deltai,{}pi1(i)),{}...,{}(deltai,{}pik(i))]} if the permutations {\\em pi1},{}...,{}{\\em pik} are in list notation and are permuting {\\em {1,{}2,{}...,{}n}}.") (((|List| (|Matrix| (|Integer|))) (|List| (|Permutation| (|Integer|))) (|Integer|)) "\\spad{permutationRepresentation([pi1,{}...,{}pik],{}n)} returns the list of matrices {\\em [(deltai,{}pi1(i)),{}...,{}(deltai,{}pik(i))]} (Kronecker delta) for the permutations {\\em pi1,{}...,{}pik} of {\\em {1,{}2,{}...,{}n}}.") (((|Matrix| (|Integer|)) (|List| (|Integer|))) "\\spad{permutationRepresentation(\\spad{pi},{}n)} returns the matrix {\\em (deltai,{}\\spad{pi}(i))} (Kronecker delta) if the permutation {\\em \\spad{pi}} is in list notation and permutes {\\em {1,{}2,{}...,{}n}}.") (((|Matrix| (|Integer|)) (|Permutation| (|Integer|)) (|Integer|)) "\\spad{permutationRepresentation(\\spad{pi},{}n)} returns the matrix {\\em (deltai,{}\\spad{pi}(i))} (Kronecker delta) for a permutation {\\em \\spad{pi}} of {\\em {1,{}2,{}...,{}n}}.")) (|tensorProduct| (((|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|))) "\\spad{tensorProduct([a1,{}...ak])} calculates the list of Kronecker products of each matrix {\\em \\spad{ai}} with itself for {1 \\spad{<=} \\spad{i} \\spad{<=} \\spad{k}}. Note: If the list of matrices corresponds to a group representation (repr. of generators) of one group,{} then these matrices correspond to the tensor product of the representation with itself.") (((|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{tensorProduct(a)} calculates the Kronecker product of the matrix {\\em a} with itself.") (((|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|))) "\\spad{tensorProduct([a1,{}...,{}ak],{}[b1,{}...,{}bk])} calculates the list of Kronecker products of the matrices {\\em \\spad{ai}} and {\\em \\spad{bi}} for {1 \\spad{<=} \\spad{i} \\spad{<=} \\spad{k}}. Note: If each list of matrices corresponds to a group representation (repr. of generators) of one group,{} then these matrices correspond to the tensor product of the two representations.") (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{tensorProduct(a,{}b)} calculates the Kronecker product of the matrices {\\em a} and \\spad{b}. Note: if each matrix corresponds to a group representation (repr. of generators) of one group,{} then these matrices correspond to the tensor product of the two representations.")) (|symmetricTensors| (((|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|)) (|PositiveInteger|)) "\\spad{symmetricTensors(la,{}n)} applies to each \\spad{m}-by-\\spad{m} square matrix in the list {\\em la} the irreducible,{} polynomial representation of the general linear group {\\em GLm} which corresponds to the partition {\\em (n,{}0,{}...,{}0)} of \\spad{n}. Error: if the matrices in {\\em la} are not square matrices. Note: this corresponds to the symmetrization of the representation with the trivial representation of the symmetric group {\\em Sn}. The carrier spaces of the representation are the symmetric tensors of the \\spad{n}-fold tensor product.") (((|Matrix| |#1|) (|Matrix| |#1|) (|PositiveInteger|)) "\\spad{symmetricTensors(a,{}n)} applies to the \\spad{m}-by-\\spad{m} square matrix {\\em a} the irreducible,{} polynomial representation of the general linear group {\\em GLm} which corresponds to the partition {\\em (n,{}0,{}...,{}0)} of \\spad{n}. Error: if {\\em a} is not a square matrix. Note: this corresponds to the symmetrization of the representation with the trivial representation of the symmetric group {\\em Sn}. The carrier spaces of the representation are the symmetric tensors of the \\spad{n}-fold tensor product.")) (|createGenericMatrix| (((|Matrix| (|Polynomial| |#1|)) (|NonNegativeInteger|)) "\\spad{createGenericMatrix(m)} creates a square matrix of dimension \\spad{k} whose entry at the \\spad{i}-th row and \\spad{j}-th column is the indeterminate {\\em x[i,{}j]} (double subscripted).")) (|antisymmetricTensors| (((|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|)) (|PositiveInteger|)) "\\spad{antisymmetricTensors(la,{}n)} applies to each \\spad{m}-by-\\spad{m} square matrix in the list {\\em la} the irreducible,{} polynomial representation of the general linear group {\\em GLm} which corresponds to the partition {\\em (1,{}1,{}...,{}1,{}0,{}0,{}...,{}0)} of \\spad{n}. Error: if \\spad{n} is greater than \\spad{m}. Note: this corresponds to the symmetrization of the representation with the sign representation of the symmetric group {\\em Sn}. The carrier spaces of the representation are the antisymmetric tensors of the \\spad{n}-fold tensor product.") (((|Matrix| |#1|) (|Matrix| |#1|) (|PositiveInteger|)) "\\spad{antisymmetricTensors(a,{}n)} applies to the square matrix {\\em a} the irreducible,{} polynomial representation of the general linear group {\\em GLm},{} where \\spad{m} is the number of rows of {\\em a},{} which corresponds to the partition {\\em (1,{}1,{}...,{}1,{}0,{}0,{}...,{}0)} of \\spad{n}. Error: if \\spad{n} is greater than \\spad{m}. Note: this corresponds to the symmetrization of the representation with the sign representation of the symmetric group {\\em Sn}. The carrier spaces of the representation are the antisymmetric tensors of the \\spad{n}-fold tensor product.")))
NIL
-((|HasAttribute| |#1| (QUOTE (-4250 "*"))))
-(-956 R)
+((|HasAttribute| |#1| (QUOTE (-4252 "*"))))
+(-958 R)
((|constructor| (NIL "RepresentationPackage2 provides functions for working with modular representations of finite groups and algebra. The routines in this package are created,{} using ideas of \\spad{R}. Parker,{} (the meat-Axe) to get smaller representations from bigger ones,{} \\spadignore{i.e.} finding sub- and factormodules,{} or to show,{} that such the representations are irreducible. Note: most functions are randomized functions of Las Vegas type \\spadignore{i.e.} every answer is correct,{} but with small probability the algorithm fails to get an answer.")) (|scanOneDimSubspaces| (((|Vector| |#1|) (|List| (|Vector| |#1|)) (|Integer|)) "\\spad{scanOneDimSubspaces(basis,{}n)} gives a canonical representative of the {\\em n}\\spad{-}th one-dimensional subspace of the vector space generated by the elements of {\\em basis},{} all from {\\em R**n}. The coefficients of the representative are of shape {\\em (0,{}...,{}0,{}1,{}*,{}...,{}*)},{} {\\em *} in \\spad{R}. If the size of \\spad{R} is \\spad{q},{} then there are {\\em (q**n-1)/(q-1)} of them. We first reduce \\spad{n} modulo this number,{} then find the largest \\spad{i} such that {\\em +/[q**i for i in 0..i-1] <= n}. Subtracting this sum of powers from \\spad{n} results in an \\spad{i}-digit number to \\spad{basis} \\spad{q}. This fills the positions of the stars.")) (|meatAxe| (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|)) (|PositiveInteger|)) "\\spad{meatAxe(aG,{} numberOfTries)} calls {\\em meatAxe(aG,{}true,{}numberOfTries,{}7)}. Notes: 7 covers the case of three-dimensional kernels over the field with 2 elements.") (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|)) (|Boolean|)) "\\spad{meatAxe(aG,{} randomElements)} calls {\\em meatAxe(aG,{}false,{}6,{}7)},{} only using Parker\\spad{'s} fingerprints,{} if {\\em randomElemnts} is \\spad{false}. If it is \\spad{true},{} it calls {\\em meatAxe(aG,{}true,{}25,{}7)},{} only using random elements. Note: the choice of 25 was rather arbitrary. Also,{} 7 covers the case of three-dimensional kernels over the field with 2 elements.") (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|))) "\\spad{meatAxe(aG)} calls {\\em meatAxe(aG,{}false,{}25,{}7)} returns a 2-list of representations as follows. All matrices of argument \\spad{aG} are assumed to be square and of equal size. Then \\spad{aG} generates a subalgebra,{} say \\spad{A},{} of the algebra of all square matrices of dimension \\spad{n}. {\\em V R} is an A-module in the usual way. meatAxe(\\spad{aG}) creates at most 25 random elements of the algebra,{} tests them for singularity. If singular,{} it tries at most 7 elements of its kernel to generate a proper submodule. If successful a list which contains first the list of the representations of the submodule,{} then a list of the representations of the factor module is returned. Otherwise,{} if we know that all the kernel is already scanned,{} Norton\\spad{'s} irreducibility test can be used either to prove irreducibility or to find the splitting. Notes: the first 6 tries use Parker\\spad{'s} fingerprints. Also,{} 7 covers the case of three-dimensional kernels over the field with 2 elements.") (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|)) (|Boolean|) (|Integer|) (|Integer|)) "\\spad{meatAxe(aG,{}randomElements,{}numberOfTries,{} maxTests)} returns a 2-list of representations as follows. All matrices of argument \\spad{aG} are assumed to be square and of equal size. Then \\spad{aG} generates a subalgebra,{} say \\spad{A},{} of the algebra of all square matrices of dimension \\spad{n}. {\\em V R} is an A-module in the usual way. meatAxe(\\spad{aG},{}\\spad{numberOfTries},{} maxTests) creates at most {\\em numberOfTries} random elements of the algebra,{} tests them for singularity. If singular,{} it tries at most {\\em maxTests} elements of its kernel to generate a proper submodule. If successful,{} a 2-list is returned: first,{} a list containing first the list of the representations of the submodule,{} then a list of the representations of the factor module. Otherwise,{} if we know that all the kernel is already scanned,{} Norton\\spad{'s} irreducibility test can be used either to prove irreducibility or to find the splitting. If {\\em randomElements} is {\\em false},{} the first 6 tries use Parker\\spad{'s} fingerprints.")) (|split| (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|)) (|Vector| (|Vector| |#1|))) "\\spad{split(aG,{}submodule)} uses a proper \\spad{submodule} of {\\em R**n} to create the representations of the \\spad{submodule} and of the factor module.") (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|)) (|Vector| |#1|)) "\\spad{split(aG,{} vector)} returns a subalgebra \\spad{A} of all square matrix of dimension \\spad{n} as a list of list of matrices,{} generated by the list of matrices \\spad{aG},{} where \\spad{n} denotes both the size of vector as well as the dimension of each of the square matrices. {\\em V R} is an A-module in the natural way. split(\\spad{aG},{} vector) then checks whether the cyclic submodule generated by {\\em vector} is a proper submodule of {\\em V R}. If successful,{} it returns a two-element list,{} which contains first the list of the representations of the submodule,{} then the list of the representations of the factor module. If the vector generates the whole module,{} a one-element list of the old representation is given. Note: a later version this should call the other split.")) (|isAbsolutelyIrreducible?| (((|Boolean|) (|List| (|Matrix| |#1|))) "\\spad{isAbsolutelyIrreducible?(aG)} calls {\\em isAbsolutelyIrreducible?(aG,{}25)}. Note: the choice of 25 was rather arbitrary.") (((|Boolean|) (|List| (|Matrix| |#1|)) (|Integer|)) "\\spad{isAbsolutelyIrreducible?(aG,{} numberOfTries)} uses Norton\\spad{'s} irreducibility test to check for absolute irreduciblity,{} assuming if a one-dimensional kernel is found. As no field extension changes create \"new\" elements in a one-dimensional space,{} the criterium stays \\spad{true} for every extension. The method looks for one-dimensionals only by creating random elements (no fingerprints) since a run of {\\em meatAxe} would have proved absolute irreducibility anyway.")) (|areEquivalent?| (((|Matrix| |#1|) (|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|)) (|Integer|)) "\\spad{areEquivalent?(aG0,{}aG1,{}numberOfTries)} calls {\\em areEquivalent?(aG0,{}aG1,{}true,{}25)}. Note: the choice of 25 was rather arbitrary.") (((|Matrix| |#1|) (|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|))) "\\spad{areEquivalent?(aG0,{}aG1)} calls {\\em areEquivalent?(aG0,{}aG1,{}true,{}25)}. Note: the choice of 25 was rather arbitrary.") (((|Matrix| |#1|) (|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|)) (|Boolean|) (|Integer|)) "\\spad{areEquivalent?(aG0,{}aG1,{}randomelements,{}numberOfTries)} tests whether the two lists of matrices,{} all assumed of same square shape,{} can be simultaneously conjugated by a non-singular matrix. If these matrices represent the same group generators,{} the representations are equivalent. The algorithm tries {\\em numberOfTries} times to create elements in the generated algebras in the same fashion. If their ranks differ,{} they are not equivalent. If an isomorphism is assumed,{} then the kernel of an element of the first algebra is mapped to the kernel of the corresponding element in the second algebra. Now consider the one-dimensional ones. If they generate the whole space (\\spadignore{e.g.} irreducibility !) we use {\\em standardBasisOfCyclicSubmodule} to create the only possible transition matrix. The method checks whether the matrix conjugates all corresponding matrices from {\\em aGi}. The way to choose the singular matrices is as in {\\em meatAxe}. If the two representations are equivalent,{} this routine returns the transformation matrix {\\em TM} with {\\em aG0.i * TM = TM * aG1.i} for all \\spad{i}. If the representations are not equivalent,{} a small 0-matrix is returned. Note: the case with different sets of group generators cannot be handled.")) (|standardBasisOfCyclicSubmodule| (((|Matrix| |#1|) (|List| (|Matrix| |#1|)) (|Vector| |#1|)) "\\spad{standardBasisOfCyclicSubmodule(lm,{}v)} returns a matrix as follows. It is assumed that the size \\spad{n} of the vector equals the number of rows and columns of the matrices. Then the matrices generate a subalgebra,{} say \\spad{A},{} of the algebra of all square matrices of dimension \\spad{n}. {\\em V R} is an \\spad{A}-module in the natural way. standardBasisOfCyclicSubmodule(\\spad{lm},{}\\spad{v}) calculates a matrix whose non-zero column vectors are the \\spad{R}-Basis of {\\em Av} achieved in the way as described in section 6 of \\spad{R}. A. Parker\\spad{'s} \"The Meat-Axe\". Note: in contrast to {\\em cyclicSubmodule},{} the result is not in echelon form.")) (|cyclicSubmodule| (((|Vector| (|Vector| |#1|)) (|List| (|Matrix| |#1|)) (|Vector| |#1|)) "\\spad{cyclicSubmodule(lm,{}v)} generates a basis as follows. It is assumed that the size \\spad{n} of the vector equals the number of rows and columns of the matrices. Then the matrices generate a subalgebra,{} say \\spad{A},{} of the algebra of all square matrices of dimension \\spad{n}. {\\em V R} is an \\spad{A}-module in the natural way. cyclicSubmodule(\\spad{lm},{}\\spad{v}) generates the \\spad{R}-Basis of {\\em Av} as described in section 6 of \\spad{R}. A. Parker\\spad{'s} \"The Meat-Axe\". Note: in contrast to the description in \"The Meat-Axe\" and to {\\em standardBasisOfCyclicSubmodule} the result is in echelon form.")) (|createRandomElement| (((|Matrix| |#1|) (|List| (|Matrix| |#1|)) (|Matrix| |#1|)) "\\spad{createRandomElement(aG,{}x)} creates a random element of the group algebra generated by {\\em aG}.")) (|completeEchelonBasis| (((|Matrix| |#1|) (|Vector| (|Vector| |#1|))) "\\spad{completeEchelonBasis(lv)} completes the basis {\\em lv} assumed to be in echelon form of a subspace of {\\em R**n} (\\spad{n} the length of all the vectors in {\\em lv}) with unit vectors to a basis of {\\em R**n}. It is assumed that the argument is not an empty vector and that it is not the basis of the 0-subspace. Note: the rows of the result correspond to the vectors of the basis.")))
NIL
-((-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-344)))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-284))))
-(-957 S)
+((-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-346)))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-286))))
+(-959 S)
((|constructor| (NIL "Implements multiplication by repeated addition")) (|double| ((|#1| (|PositiveInteger|) |#1|) "\\spad{double(i,{} r)} multiplies \\spad{r} by \\spad{i} using repeated doubling.")) (+ (($ $ $) "\\spad{x+y} returns the sum of \\spad{x} and \\spad{y}")))
NIL
NIL
-(-958)
+(-960)
((|constructor| (NIL "Package for the computation of eigenvalues and eigenvectors. This package works for matrices with coefficients which are rational functions over the integers. (see \\spadtype{Fraction Polynomial Integer}). The eigenvalues and eigenvectors are expressed in terms of radicals.")) (|orthonormalBasis| (((|List| (|Matrix| (|Expression| (|Integer|)))) (|Matrix| (|Fraction| (|Polynomial| (|Integer|))))) "\\spad{orthonormalBasis(m)} returns the orthogonal matrix \\spad{b} such that \\spad{b*m*(inverse b)} is diagonal. Error: if \\spad{m} is not a symmetric matrix.")) (|gramschmidt| (((|List| (|Matrix| (|Expression| (|Integer|)))) (|List| (|Matrix| (|Expression| (|Integer|))))) "\\spad{gramschmidt(lv)} converts the list of column vectors \\spad{lv} into a set of orthogonal column vectors of euclidean length 1 using the Gram-Schmidt algorithm.")) (|normalise| (((|Matrix| (|Expression| (|Integer|))) (|Matrix| (|Expression| (|Integer|)))) "\\spad{normalise(v)} returns the column vector \\spad{v} divided by its euclidean norm; when possible,{} the vector \\spad{v} is expressed in terms of radicals.")) (|eigenMatrix| (((|Union| (|Matrix| (|Expression| (|Integer|))) "failed") (|Matrix| (|Fraction| (|Polynomial| (|Integer|))))) "\\spad{eigenMatrix(m)} returns the matrix \\spad{b} such that \\spad{b*m*(inverse b)} is diagonal,{} or \"failed\" if no such \\spad{b} exists.")) (|radicalEigenvalues| (((|List| (|Expression| (|Integer|))) (|Matrix| (|Fraction| (|Polynomial| (|Integer|))))) "\\spad{radicalEigenvalues(m)} computes the eigenvalues of the matrix \\spad{m}; when possible,{} the eigenvalues are expressed in terms of radicals.")) (|radicalEigenvector| (((|List| (|Matrix| (|Expression| (|Integer|)))) (|Expression| (|Integer|)) (|Matrix| (|Fraction| (|Polynomial| (|Integer|))))) "\\spad{radicalEigenvector(c,{}m)} computes the eigenvector(\\spad{s}) of the matrix \\spad{m} corresponding to the eigenvalue \\spad{c}; when possible,{} values are expressed in terms of radicals.")) (|radicalEigenvectors| (((|List| (|Record| (|:| |radval| (|Expression| (|Integer|))) (|:| |radmult| (|Integer|)) (|:| |radvect| (|List| (|Matrix| (|Expression| (|Integer|))))))) (|Matrix| (|Fraction| (|Polynomial| (|Integer|))))) "\\spad{radicalEigenvectors(m)} computes the eigenvalues and the corresponding eigenvectors of the matrix \\spad{m}; when possible,{} values are expressed in terms of radicals.")))
NIL
NIL
-(-959 S)
+(-961 S)
((|constructor| (NIL "Implements exponentiation by repeated squaring")) (|expt| ((|#1| |#1| (|PositiveInteger|)) "\\spad{expt(r,{} i)} computes r**i by repeated squaring")) (* (($ $ $) "\\spad{x*y} returns the product of \\spad{x} and \\spad{y}")))
NIL
NIL
-(-960 S)
+(-962 S)
((|constructor| (NIL "This package provides coercions for the special types \\spadtype{Exit} and \\spadtype{Void}.")) (|coerce| ((|#1| (|Exit|)) "\\spad{coerce(e)} is never really evaluated. This coercion is used for formal type correctness when a function will not return directly to its caller.") (((|Void|) |#1|) "\\spad{coerce(s)} throws all information about \\spad{s} away. This coercion allows values of any type to appear in contexts where they will not be used. For example,{} it allows the resolution of different types in the \\spad{then} and \\spad{else} branches when an \\spad{if} is in a context where the resulting value is not used.")))
NIL
NIL
-(-961 -3894 |Expon| |VarSet| |FPol| |LFPol|)
+(-963 -3576 |Expon| |VarSet| |FPol| |LFPol|)
((|constructor| (NIL "ResidueRing is the quotient of a polynomial ring by an ideal. The ideal is given as a list of generators. The elements of the domain are equivalence classes expressed in terms of reduced elements")) (|lift| ((|#4| $) "\\spad{lift(x)} return the canonical representative of the equivalence class \\spad{x}")) (|coerce| (($ |#4|) "\\spad{coerce(f)} produces the equivalence class of \\spad{f} in the residue ring")) (|reduce| (($ |#4|) "\\spad{reduce(f)} produces the equivalence class of \\spad{f} in the residue ring")))
-(((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+(((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-962)
+(-964)
((|constructor| (NIL "A domain used to return the results from a call to the NAG Library. It prints as a list of names and types,{} though the user may choose to display values automatically if he or she wishes.")) (|showArrayValues| (((|Boolean|) (|Boolean|)) "\\spad{showArrayValues(true)} forces the values of array components to be \\indented{1}{displayed rather than just their types.}")) (|showScalarValues| (((|Boolean|) (|Boolean|)) "\\spad{showScalarValues(true)} forces the values of scalar components to be \\indented{1}{displayed rather than just their types.}")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (LIST (QUOTE -286) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2402) (QUOTE (-1087))) (LIST (QUOTE |:|) (QUOTE -2746) (QUOTE (-51))))))) (-3255 (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (QUOTE (-1016))) (|HasCategory| (-51) (QUOTE (-1016)))) (-3255 (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| (-51) (QUOTE (-1016))) (|HasCategory| (-51) (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (LIST (QUOTE -564) (QUOTE (-499)))) (-12 (|HasCategory| (-51) (QUOTE (-1016))) (|HasCategory| (-51) (LIST (QUOTE -286) (QUOTE (-51))))) (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (QUOTE (-1016))) (|HasCategory| (-1087) (QUOTE (-786))) (|HasCategory| (-51) (QUOTE (-1016))) (-3255 (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| (-51) (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| (-51) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-963 A S)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (LIST (QUOTE -288) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2019) (QUOTE (-1089))) (LIST (QUOTE |:|) (QUOTE -1221) (QUOTE (-51))))))) (-3321 (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (QUOTE (-1018))) (|HasCategory| (-51) (QUOTE (-1018)))) (-3321 (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| (-51) (QUOTE (-1018))) (|HasCategory| (-51) (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (LIST (QUOTE -566) (QUOTE (-501)))) (-12 (|HasCategory| (-51) (QUOTE (-1018))) (|HasCategory| (-51) (LIST (QUOTE -288) (QUOTE (-51))))) (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (QUOTE (-1018))) (|HasCategory| (-1089) (QUOTE (-788))) (|HasCategory| (-51) (QUOTE (-1018))) (-3321 (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| (-51) (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| (-51) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-965 A S)
((|constructor| (NIL "A is retractable to \\spad{B} means that some elementsif A can be converted into elements of \\spad{B} and any element of \\spad{B} can be converted into an element of A.")) (|retract| ((|#2| $) "\\spad{retract(a)} transforms a into an element of \\spad{S} if possible. Error: if a cannot be made into an element of \\spad{S}.")) (|retractIfCan| (((|Union| |#2| "failed") $) "\\spad{retractIfCan(a)} transforms a into an element of \\spad{S} if possible. Returns \"failed\" if a cannot be made into an element of \\spad{S}.")) (|coerce| (($ |#2|) "\\spad{coerce(a)} transforms a into an element of \\%.")))
NIL
NIL
-(-964 S)
+(-966 S)
((|constructor| (NIL "A is retractable to \\spad{B} means that some elementsif A can be converted into elements of \\spad{B} and any element of \\spad{B} can be converted into an element of A.")) (|retract| ((|#1| $) "\\spad{retract(a)} transforms a into an element of \\spad{S} if possible. Error: if a cannot be made into an element of \\spad{S}.")) (|retractIfCan| (((|Union| |#1| "failed") $) "\\spad{retractIfCan(a)} transforms a into an element of \\spad{S} if possible. Returns \"failed\" if a cannot be made into an element of \\spad{S}.")) (|coerce| (($ |#1|) "\\spad{coerce(a)} transforms a into an element of \\%.")))
NIL
NIL
-(-965 Q R)
+(-967 Q R)
((|constructor| (NIL "RetractSolvePackage is an interface to \\spadtype{SystemSolvePackage} that attempts to retract the coefficients of the equations before solving.")) (|solveRetract| (((|List| (|List| (|Equation| (|Fraction| (|Polynomial| |#2|))))) (|List| (|Polynomial| |#2|)) (|List| (|Symbol|))) "\\spad{solveRetract(lp,{}lv)} finds the solutions of the list \\spad{lp} of rational functions with respect to the list of symbols \\spad{lv}. The function tries to retract all the coefficients of the equations to \\spad{Q} before solving if possible.")))
NIL
NIL
-(-966)
+(-968)
((|t| (((|Mapping| (|Float|)) (|NonNegativeInteger|)) "\\spad{t(n)} \\undocumented")) (F (((|Mapping| (|Float|)) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{F(n,{}m)} \\undocumented")) (|Beta| (((|Mapping| (|Float|)) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{Beta(n,{}m)} \\undocumented")) (|chiSquare| (((|Mapping| (|Float|)) (|NonNegativeInteger|)) "\\spad{chiSquare(n)} \\undocumented")) (|exponential| (((|Mapping| (|Float|)) (|Float|)) "\\spad{exponential(f)} \\undocumented")) (|normal| (((|Mapping| (|Float|)) (|Float|) (|Float|)) "\\spad{normal(f,{}g)} \\undocumented")) (|uniform| (((|Mapping| (|Float|)) (|Float|) (|Float|)) "\\spad{uniform(f,{}g)} \\undocumented")) (|chiSquare1| (((|Float|) (|NonNegativeInteger|)) "\\spad{chiSquare1(n)} \\undocumented")) (|exponential1| (((|Float|)) "\\spad{exponential1()} \\undocumented")) (|normal01| (((|Float|)) "\\spad{normal01()} \\undocumented")) (|uniform01| (((|Float|)) "\\spad{uniform01()} \\undocumented")))
NIL
NIL
-(-967 UP)
+(-969 UP)
((|constructor| (NIL "Factorization of univariate polynomials with coefficients which are rational functions with integer coefficients.")) (|factor| (((|Factored| |#1|) |#1|) "\\spad{factor(p)} returns a prime factorisation of \\spad{p}.")))
NIL
NIL
-(-968 R)
+(-970 R)
((|constructor| (NIL "\\spadtype{RationalFunctionFactorizer} contains the factor function (called factorFraction) which factors fractions of polynomials by factoring the numerator and denominator. Since any non zero fraction is a unit the usual factor operation will just return the original fraction.")) (|factorFraction| (((|Fraction| (|Factored| (|Polynomial| |#1|))) (|Fraction| (|Polynomial| |#1|))) "\\spad{factorFraction(r)} factors the numerator and the denominator of the polynomial fraction \\spad{r}.")))
NIL
NIL
-(-969 R)
+(-971 R)
((|constructor| (NIL "Utilities that provide the same top-level manipulations on fractions than on polynomials.")) (|coerce| (((|Fraction| (|Polynomial| |#1|)) |#1|) "\\spad{coerce(r)} returns \\spad{r} viewed as a rational function over \\spad{R}.")) (|eval| (((|Fraction| (|Polynomial| |#1|)) (|Fraction| (|Polynomial| |#1|)) (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) "\\spad{eval(f,{} [v1 = g1,{}...,{}vn = gn])} returns \\spad{f} with each \\spad{vi} replaced by \\spad{gi} in parallel,{} \\spadignore{i.e.} \\spad{vi}\\spad{'s} appearing inside the \\spad{gi}\\spad{'s} are not replaced. Error: if any \\spad{vi} is not a symbol.") (((|Fraction| (|Polynomial| |#1|)) (|Fraction| (|Polynomial| |#1|)) (|Equation| (|Fraction| (|Polynomial| |#1|)))) "\\spad{eval(f,{} v = g)} returns \\spad{f} with \\spad{v} replaced by \\spad{g}. Error: if \\spad{v} is not a symbol.") (((|Fraction| (|Polynomial| |#1|)) (|Fraction| (|Polynomial| |#1|)) (|List| (|Symbol|)) (|List| (|Fraction| (|Polynomial| |#1|)))) "\\spad{eval(f,{} [v1,{}...,{}vn],{} [g1,{}...,{}gn])} returns \\spad{f} with each \\spad{vi} replaced by \\spad{gi} in parallel,{} \\spadignore{i.e.} \\spad{vi}\\spad{'s} appearing inside the \\spad{gi}\\spad{'s} are not replaced.") (((|Fraction| (|Polynomial| |#1|)) (|Fraction| (|Polynomial| |#1|)) (|Symbol|) (|Fraction| (|Polynomial| |#1|))) "\\spad{eval(f,{} v,{} g)} returns \\spad{f} with \\spad{v} replaced by \\spad{g}.")) (|multivariate| (((|Fraction| (|Polynomial| |#1|)) (|Fraction| (|SparseUnivariatePolynomial| (|Fraction| (|Polynomial| |#1|)))) (|Symbol|)) "\\spad{multivariate(f,{} v)} applies both the numerator and denominator of \\spad{f} to \\spad{v}.")) (|univariate| (((|Fraction| (|SparseUnivariatePolynomial| (|Fraction| (|Polynomial| |#1|)))) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{univariate(f,{} v)} returns \\spad{f} viewed as a univariate rational function in \\spad{v}.")) (|mainVariable| (((|Union| (|Symbol|) "failed") (|Fraction| (|Polynomial| |#1|))) "\\spad{mainVariable(f)} returns the highest variable appearing in the numerator or the denominator of \\spad{f},{} \"failed\" if \\spad{f} has no variables.")) (|variables| (((|List| (|Symbol|)) (|Fraction| (|Polynomial| |#1|))) "\\spad{variables(f)} returns the list of variables appearing in the numerator or the denominator of \\spad{f}.")))
NIL
NIL
-(-970 R |ls|)
+(-972 R |ls|)
((|constructor| (NIL "A domain for regular chains (\\spadignore{i.e.} regular triangular sets) over a \\spad{Gcd}-Domain and with a fix list of variables. This is just a front-end for the \\spadtype{RegularTriangularSet} domain constructor.")) (|zeroSetSplit| (((|List| $) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|Boolean|) (|Boolean|)) "\\spad{zeroSetSplit(lp,{}clos?,{}info?)} returns a list \\spad{lts} of regular chains such that the union of the closures of their regular zero sets equals the affine variety associated with \\spad{lp}. Moreover,{} if \\spad{clos?} is \\spad{false} then the union of the regular zero set of the \\spad{ts} (for \\spad{ts} in \\spad{lts}) equals this variety. If \\spad{info?} is \\spad{true} then some information is displayed during the computations. See \\axiomOpFrom{zeroSetSplit}{RegularTriangularSet}.")))
-((-4249 . T) (-4248 . T))
-((-12 (|HasCategory| (-719 |#1| (-796 |#2|)) (QUOTE (-1016))) (|HasCategory| (-719 |#1| (-796 |#2|)) (LIST (QUOTE -286) (LIST (QUOTE -719) (|devaluate| |#1|) (LIST (QUOTE -796) (|devaluate| |#2|)))))) (|HasCategory| (-719 |#1| (-796 |#2|)) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| (-719 |#1| (-796 |#2|)) (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| (-796 |#2|) (QUOTE (-344))) (|HasCategory| (-719 |#1| (-796 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-971)
+((-4251 . T) (-4250 . T))
+((-12 (|HasCategory| (-721 |#1| (-798 |#2|)) (QUOTE (-1018))) (|HasCategory| (-721 |#1| (-798 |#2|)) (LIST (QUOTE -288) (LIST (QUOTE -721) (|devaluate| |#1|) (LIST (QUOTE -798) (|devaluate| |#2|)))))) (|HasCategory| (-721 |#1| (-798 |#2|)) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| (-721 |#1| (-798 |#2|)) (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| (-798 |#2|) (QUOTE (-346))) (|HasCategory| (-721 |#1| (-798 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-973)
((|constructor| (NIL "This package exports integer distributions")) (|ridHack1| (((|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{ridHack1(i,{}j,{}k,{}l)} \\undocumented")) (|geometric| (((|Mapping| (|Integer|)) |RationalNumber|) "\\spad{geometric(f)} \\undocumented")) (|poisson| (((|Mapping| (|Integer|)) |RationalNumber|) "\\spad{poisson(f)} \\undocumented")) (|binomial| (((|Mapping| (|Integer|)) (|Integer|) |RationalNumber|) "\\spad{binomial(n,{}f)} \\undocumented")) (|uniform| (((|Mapping| (|Integer|)) (|Segment| (|Integer|))) "\\spad{uniform(s)} \\undocumented")))
NIL
NIL
-(-972 S)
+(-974 S)
((|constructor| (NIL "The category of rings with unity,{} always associative,{} but not necessarily commutative.")) (|unitsKnown| ((|attribute|) "recip truly yields reciprocal or \"failed\" if not a unit. Note: \\spad{recip(0) = \"failed\"}.")) (|coerce| (($ (|Integer|)) "\\spad{coerce(i)} converts the integer \\spad{i} to a member of the given domain.")) (|characteristic| (((|NonNegativeInteger|)) "\\spad{characteristic()} returns the characteristic of the ring this is the smallest positive integer \\spad{n} such that \\spad{n*x=0} for all \\spad{x} in the ring,{} or zero if no such \\spad{n} exists.")))
NIL
NIL
-(-973)
+(-975)
((|constructor| (NIL "The category of rings with unity,{} always associative,{} but not necessarily commutative.")) (|unitsKnown| ((|attribute|) "recip truly yields reciprocal or \"failed\" if not a unit. Note: \\spad{recip(0) = \"failed\"}.")) (|coerce| (($ (|Integer|)) "\\spad{coerce(i)} converts the integer \\spad{i} to a member of the given domain.")) (|characteristic| (((|NonNegativeInteger|)) "\\spad{characteristic()} returns the characteristic of the ring this is the smallest positive integer \\spad{n} such that \\spad{n*x=0} for all \\spad{x} in the ring,{} or zero if no such \\spad{n} exists.")))
-((-4245 . T))
+((-4247 . T))
NIL
-(-974 |xx| -3894)
+(-976 |xx| -3576)
((|constructor| (NIL "This package exports rational interpolation algorithms")))
NIL
NIL
-(-975 S |m| |n| R |Row| |Col|)
+(-977 S |m| |n| R |Row| |Col|)
((|constructor| (NIL "\\spadtype{RectangularMatrixCategory} is a category of matrices of fixed dimensions. The dimensions of the matrix will be parameters of the domain. Domains in this category will be \\spad{R}-modules and will be non-mutable.")) (|nullSpace| (((|List| |#6|) $) "\\spad{nullSpace(m)}+ returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) $) "\\spad{nullity(m)} returns the nullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) $) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|rowEchelon| (($ $) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")) (/ (($ $ |#4|) "\\spad{m/r} divides the elements of \\spad{m} by \\spad{r}. Error: if \\spad{r = 0}.")) (|exquo| (((|Union| $ "failed") $ |#4|) "\\spad{exquo(m,{}r)} computes the exact quotient of the elements of \\spad{m} by \\spad{r},{} returning \\axiom{\"failed\"} if this is not possible.")) (|map| (($ (|Mapping| |#4| |#4| |#4|) $ $) "\\spad{map(f,{}a,{}b)} returns \\spad{c},{} where \\spad{c} is such that \\spad{c(i,{}j) = f(a(i,{}j),{}b(i,{}j))} for all \\spad{i},{} \\spad{j}.") (($ (|Mapping| |#4| |#4|) $) "\\spad{map(f,{}a)} returns \\spad{b},{} where \\spad{b(i,{}j) = a(i,{}j)} for all \\spad{i},{} \\spad{j}.")) (|column| ((|#6| $ (|Integer|)) "\\spad{column(m,{}j)} returns the \\spad{j}th column of the matrix \\spad{m}. Error: if the index outside the proper range.")) (|row| ((|#5| $ (|Integer|)) "\\spad{row(m,{}i)} returns the \\spad{i}th row of the matrix \\spad{m}. Error: if the index is outside the proper range.")) (|qelt| ((|#4| $ (|Integer|) (|Integer|)) "\\spad{qelt(m,{}i,{}j)} returns the element in the \\spad{i}th row and \\spad{j}th column of the matrix \\spad{m}. Note: there is NO error check to determine if indices are in the proper ranges.")) (|elt| ((|#4| $ (|Integer|) (|Integer|) |#4|) "\\spad{elt(m,{}i,{}j,{}r)} returns the element in the \\spad{i}th row and \\spad{j}th column of the matrix \\spad{m},{} if \\spad{m} has an \\spad{i}th row and a \\spad{j}th column,{} and returns \\spad{r} otherwise.") ((|#4| $ (|Integer|) (|Integer|)) "\\spad{elt(m,{}i,{}j)} returns the element in the \\spad{i}th row and \\spad{j}th column of the matrix \\spad{m}. Error: if indices are outside the proper ranges.")) (|listOfLists| (((|List| (|List| |#4|)) $) "\\spad{listOfLists(m)} returns the rows of the matrix \\spad{m} as a list of lists.")) (|ncols| (((|NonNegativeInteger|) $) "\\spad{ncols(m)} returns the number of columns in the matrix \\spad{m}.")) (|nrows| (((|NonNegativeInteger|) $) "\\spad{nrows(m)} returns the number of rows in the matrix \\spad{m}.")) (|maxColIndex| (((|Integer|) $) "\\spad{maxColIndex(m)} returns the index of the 'last' column of the matrix \\spad{m}.")) (|minColIndex| (((|Integer|) $) "\\spad{minColIndex(m)} returns the index of the 'first' column of the matrix \\spad{m}.")) (|maxRowIndex| (((|Integer|) $) "\\spad{maxRowIndex(m)} returns the index of the 'last' row of the matrix \\spad{m}.")) (|minRowIndex| (((|Integer|) $) "\\spad{minRowIndex(m)} returns the index of the 'first' row of the matrix \\spad{m}.")) (|antisymmetric?| (((|Boolean|) $) "\\spad{antisymmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and antisymmetric (\\spadignore{i.e.} \\spad{m[i,{}j] = -m[j,{}i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|symmetric?| (((|Boolean|) $) "\\spad{symmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and symmetric (\\spadignore{i.e.} \\spad{m[i,{}j] = m[j,{}i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|diagonal?| (((|Boolean|) $) "\\spad{diagonal?(m)} returns \\spad{true} if the matrix \\spad{m} is square and diagonal (\\spadignore{i.e.} all entries of \\spad{m} not on the diagonal are zero) and \\spad{false} otherwise.")) (|square?| (((|Boolean|) $) "\\spad{square?(m)} returns \\spad{true} if \\spad{m} is a square matrix (\\spadignore{i.e.} if \\spad{m} has the same number of rows as columns) and \\spad{false} otherwise.")) (|matrix| (($ (|List| (|List| |#4|))) "\\spad{matrix(l)} converts the list of lists \\spad{l} to a matrix,{} where the list of lists is viewed as a list of the rows of the matrix.")) (|finiteAggregate| ((|attribute|) "matrices are finite")))
NIL
-((|HasCategory| |#4| (QUOTE (-284))) (|HasCategory| |#4| (QUOTE (-339))) (|HasCategory| |#4| (QUOTE (-515))) (|HasCategory| |#4| (QUOTE (-158))))
-(-976 |m| |n| R |Row| |Col|)
+((|HasCategory| |#4| (QUOTE (-286))) (|HasCategory| |#4| (QUOTE (-341))) (|HasCategory| |#4| (QUOTE (-517))) (|HasCategory| |#4| (QUOTE (-160))))
+(-978 |m| |n| R |Row| |Col|)
((|constructor| (NIL "\\spadtype{RectangularMatrixCategory} is a category of matrices of fixed dimensions. The dimensions of the matrix will be parameters of the domain. Domains in this category will be \\spad{R}-modules and will be non-mutable.")) (|nullSpace| (((|List| |#5|) $) "\\spad{nullSpace(m)}+ returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) $) "\\spad{nullity(m)} returns the nullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) $) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|rowEchelon| (($ $) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")) (/ (($ $ |#3|) "\\spad{m/r} divides the elements of \\spad{m} by \\spad{r}. Error: if \\spad{r = 0}.")) (|exquo| (((|Union| $ "failed") $ |#3|) "\\spad{exquo(m,{}r)} computes the exact quotient of the elements of \\spad{m} by \\spad{r},{} returning \\axiom{\"failed\"} if this is not possible.")) (|map| (($ (|Mapping| |#3| |#3| |#3|) $ $) "\\spad{map(f,{}a,{}b)} returns \\spad{c},{} where \\spad{c} is such that \\spad{c(i,{}j) = f(a(i,{}j),{}b(i,{}j))} for all \\spad{i},{} \\spad{j}.") (($ (|Mapping| |#3| |#3|) $) "\\spad{map(f,{}a)} returns \\spad{b},{} where \\spad{b(i,{}j) = a(i,{}j)} for all \\spad{i},{} \\spad{j}.")) (|column| ((|#5| $ (|Integer|)) "\\spad{column(m,{}j)} returns the \\spad{j}th column of the matrix \\spad{m}. Error: if the index outside the proper range.")) (|row| ((|#4| $ (|Integer|)) "\\spad{row(m,{}i)} returns the \\spad{i}th row of the matrix \\spad{m}. Error: if the index is outside the proper range.")) (|qelt| ((|#3| $ (|Integer|) (|Integer|)) "\\spad{qelt(m,{}i,{}j)} returns the element in the \\spad{i}th row and \\spad{j}th column of the matrix \\spad{m}. Note: there is NO error check to determine if indices are in the proper ranges.")) (|elt| ((|#3| $ (|Integer|) (|Integer|) |#3|) "\\spad{elt(m,{}i,{}j,{}r)} returns the element in the \\spad{i}th row and \\spad{j}th column of the matrix \\spad{m},{} if \\spad{m} has an \\spad{i}th row and a \\spad{j}th column,{} and returns \\spad{r} otherwise.") ((|#3| $ (|Integer|) (|Integer|)) "\\spad{elt(m,{}i,{}j)} returns the element in the \\spad{i}th row and \\spad{j}th column of the matrix \\spad{m}. Error: if indices are outside the proper ranges.")) (|listOfLists| (((|List| (|List| |#3|)) $) "\\spad{listOfLists(m)} returns the rows of the matrix \\spad{m} as a list of lists.")) (|ncols| (((|NonNegativeInteger|) $) "\\spad{ncols(m)} returns the number of columns in the matrix \\spad{m}.")) (|nrows| (((|NonNegativeInteger|) $) "\\spad{nrows(m)} returns the number of rows in the matrix \\spad{m}.")) (|maxColIndex| (((|Integer|) $) "\\spad{maxColIndex(m)} returns the index of the 'last' column of the matrix \\spad{m}.")) (|minColIndex| (((|Integer|) $) "\\spad{minColIndex(m)} returns the index of the 'first' column of the matrix \\spad{m}.")) (|maxRowIndex| (((|Integer|) $) "\\spad{maxRowIndex(m)} returns the index of the 'last' row of the matrix \\spad{m}.")) (|minRowIndex| (((|Integer|) $) "\\spad{minRowIndex(m)} returns the index of the 'first' row of the matrix \\spad{m}.")) (|antisymmetric?| (((|Boolean|) $) "\\spad{antisymmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and antisymmetric (\\spadignore{i.e.} \\spad{m[i,{}j] = -m[j,{}i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|symmetric?| (((|Boolean|) $) "\\spad{symmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and symmetric (\\spadignore{i.e.} \\spad{m[i,{}j] = m[j,{}i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|diagonal?| (((|Boolean|) $) "\\spad{diagonal?(m)} returns \\spad{true} if the matrix \\spad{m} is square and diagonal (\\spadignore{i.e.} all entries of \\spad{m} not on the diagonal are zero) and \\spad{false} otherwise.")) (|square?| (((|Boolean|) $) "\\spad{square?(m)} returns \\spad{true} if \\spad{m} is a square matrix (\\spadignore{i.e.} if \\spad{m} has the same number of rows as columns) and \\spad{false} otherwise.")) (|matrix| (($ (|List| (|List| |#3|))) "\\spad{matrix(l)} converts the list of lists \\spad{l} to a matrix,{} where the list of lists is viewed as a list of the rows of the matrix.")) (|finiteAggregate| ((|attribute|) "matrices are finite")))
-((-4248 . T) (-2500 . T) (-4243 . T) (-4242 . T))
+((-4250 . T) (-2137 . T) (-4245 . T) (-4244 . T))
NIL
-(-977 |m| |n| R)
+(-979 |m| |n| R)
((|constructor| (NIL "\\spadtype{RectangularMatrix} is a matrix domain where the number of rows and the number of columns are parameters of the domain.")) (|coerce| (((|Matrix| |#3|) $) "\\spad{coerce(m)} converts a matrix of type \\spadtype{RectangularMatrix} to a matrix of type \\spad{Matrix}.")) (|rectangularMatrix| (($ (|Matrix| |#3|)) "\\spad{rectangularMatrix(m)} converts a matrix of type \\spadtype{Matrix} to a matrix of type \\spad{RectangularMatrix}.")))
-((-4248 . T) (-4243 . T) (-4242 . T))
-((-3255 (-12 (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-339))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1016))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|))))) (|HasCategory| |#3| (LIST (QUOTE -564) (QUOTE (-499)))) (-3255 (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (QUOTE (-339)))) (|HasCategory| |#3| (QUOTE (-339))) (|HasCategory| |#3| (QUOTE (-1016))) (|HasCategory| |#3| (QUOTE (-284))) (|HasCategory| |#3| (QUOTE (-515))) (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (LIST (QUOTE -563) (QUOTE (-794)))) (-12 (|HasCategory| |#3| (QUOTE (-1016))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))))
-(-978 |m| |n| R1 |Row1| |Col1| M1 R2 |Row2| |Col2| M2)
+((-4250 . T) (-4245 . T) (-4244 . T))
+((-3321 (-12 (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-341))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|))))) (|HasCategory| |#3| (LIST (QUOTE -566) (QUOTE (-501)))) (-3321 (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (QUOTE (-341)))) (|HasCategory| |#3| (QUOTE (-341))) (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (QUOTE (-286))) (|HasCategory| |#3| (QUOTE (-517))) (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (LIST (QUOTE -565) (QUOTE (-796)))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))))
+(-980 |m| |n| R1 |Row1| |Col1| M1 R2 |Row2| |Col2| M2)
((|constructor| (NIL "\\spadtype{RectangularMatrixCategoryFunctions2} provides functions between two matrix domains. The functions provided are \\spadfun{map} and \\spadfun{reduce}.")) (|reduce| ((|#7| (|Mapping| |#7| |#3| |#7|) |#6| |#7|) "\\spad{reduce(f,{}m,{}r)} returns a matrix \\spad{n} where \\spad{n[i,{}j] = f(m[i,{}j],{}r)} for all indices spad{\\spad{i}} and \\spad{j}.")) (|map| ((|#10| (|Mapping| |#7| |#3|) |#6|) "\\spad{map(f,{}m)} applies the function \\spad{f} to the elements of the matrix \\spad{m}.")))
NIL
NIL
-(-979 R)
+(-981 R)
((|constructor| (NIL "The category of right modules over an \\spad{rng} (ring not necessarily with unit). This is an abelian group which supports right multiplation by elements of the \\spad{rng}. \\blankline")) (* (($ $ |#1|) "\\spad{x*r} returns the right multiplication of the module element \\spad{x} by the ring element \\spad{r}.")))
NIL
NIL
-(-980)
+(-982)
((|constructor| (NIL "The category of associative rings,{} not necessarily commutative,{} and not necessarily with a 1. This is a combination of an abelian group and a semigroup,{} with multiplication distributing over addition. \\blankline")))
NIL
NIL
-(-981 S)
+(-983 S)
((|constructor| (NIL "The real number system category is intended as a model for the real numbers. The real numbers form an ordered normed field. Note that we have purposely not included \\spadtype{DifferentialRing} or the elementary functions (see \\spadtype{TranscendentalFunctionCategory}) in the definition.")) (|abs| (($ $) "\\spad{abs x} returns the absolute value of \\spad{x}.")) (|round| (($ $) "\\spad{round x} computes the integer closest to \\spad{x}.")) (|truncate| (($ $) "\\spad{truncate x} returns the integer between \\spad{x} and 0 closest to \\spad{x}.")) (|fractionPart| (($ $) "\\spad{fractionPart x} returns the fractional part of \\spad{x}.")) (|wholePart| (((|Integer|) $) "\\spad{wholePart x} returns the integer part of \\spad{x}.")) (|floor| (($ $) "\\spad{floor x} returns the largest integer \\spad{<= x}.")) (|ceiling| (($ $) "\\spad{ceiling x} returns the small integer \\spad{>= x}.")) (|norm| (($ $) "\\spad{norm x} returns the same as absolute value.")))
NIL
NIL
-(-982)
+(-984)
((|constructor| (NIL "The real number system category is intended as a model for the real numbers. The real numbers form an ordered normed field. Note that we have purposely not included \\spadtype{DifferentialRing} or the elementary functions (see \\spadtype{TranscendentalFunctionCategory}) in the definition.")) (|abs| (($ $) "\\spad{abs x} returns the absolute value of \\spad{x}.")) (|round| (($ $) "\\spad{round x} computes the integer closest to \\spad{x}.")) (|truncate| (($ $) "\\spad{truncate x} returns the integer between \\spad{x} and 0 closest to \\spad{x}.")) (|fractionPart| (($ $) "\\spad{fractionPart x} returns the fractional part of \\spad{x}.")) (|wholePart| (((|Integer|) $) "\\spad{wholePart x} returns the integer part of \\spad{x}.")) (|floor| (($ $) "\\spad{floor x} returns the largest integer \\spad{<= x}.")) (|ceiling| (($ $) "\\spad{ceiling x} returns the small integer \\spad{>= x}.")) (|norm| (($ $) "\\spad{norm x} returns the same as absolute value.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-983 |TheField| |ThePolDom|)
+(-985 |TheField| |ThePolDom|)
((|constructor| (NIL "\\axiomType{RightOpenIntervalRootCharacterization} provides work with interval root coding.")) (|relativeApprox| ((|#1| |#2| $ |#1|) "\\axiom{relativeApprox(exp,{}\\spad{c},{}\\spad{p}) = a} is relatively close to exp as a polynomial in \\spad{c} ip to precision \\spad{p}")) (|mightHaveRoots| (((|Boolean|) |#2| $) "\\axiom{mightHaveRoots(\\spad{p},{}\\spad{r})} is \\spad{false} if \\axiom{\\spad{p}.\\spad{r}} is not 0")) (|refine| (($ $) "\\axiom{refine(rootChar)} shrinks isolating interval around \\axiom{rootChar}")) (|middle| ((|#1| $) "\\axiom{middle(rootChar)} is the middle of the isolating interval")) (|size| ((|#1| $) "The size of the isolating interval")) (|right| ((|#1| $) "\\axiom{right(rootChar)} is the right bound of the isolating interval")) (|left| ((|#1| $) "\\axiom{left(rootChar)} is the left bound of the isolating interval")))
NIL
NIL
-(-984)
+(-986)
((|constructor| (NIL "\\spadtype{RomanNumeral} provides functions for converting \\indented{1}{integers to roman numerals.}")) (|roman| (($ (|Integer|)) "\\spad{roman(n)} creates a roman numeral for \\spad{n}.") (($ (|Symbol|)) "\\spad{roman(n)} creates a roman numeral for symbol \\spad{n}.")) (|convert| (($ (|Symbol|)) "\\spad{convert(n)} creates a roman numeral for symbol \\spad{n}.")) (|noetherian| ((|attribute|) "ascending chain condition on ideals.")) (|canonicalsClosed| ((|attribute|) "two positives multiply to give positive.")) (|canonical| ((|attribute|) "mathematical equality is data structure equality.")))
-((-4236 . T) (-4240 . T) (-4235 . T) (-4246 . T) (-4247 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4238 . T) (-4242 . T) (-4237 . T) (-4248 . T) (-4249 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-985)
+(-987)
((|constructor| (NIL "\\axiomType{RoutinesTable} implements a database and associated tuning mechanisms for a set of known NAG routines")) (|recoverAfterFail| (((|Union| (|String|) "failed") $ (|String|) (|Integer|)) "\\spad{recoverAfterFail(routs,{}routineName,{}ifailValue)} acts on the instructions given by the ifail list")) (|showTheRoutinesTable| (($) "\\spad{showTheRoutinesTable()} returns the current table of NAG routines.")) (|deleteRoutine!| (($ $ (|Symbol|)) "\\spad{deleteRoutine!(R,{}s)} destructively deletes the given routine from the current database of NAG routines")) (|getExplanations| (((|List| (|String|)) $ (|String|)) "\\spad{getExplanations(R,{}s)} gets the explanations of the output parameters for the given NAG routine.")) (|getMeasure| (((|Float|) $ (|Symbol|)) "\\spad{getMeasure(R,{}s)} gets the current value of the maximum measure for the given NAG routine.")) (|changeMeasure| (($ $ (|Symbol|) (|Float|)) "\\spad{changeMeasure(R,{}s,{}newValue)} changes the maximum value for a measure of the given NAG routine.")) (|changeThreshhold| (($ $ (|Symbol|) (|Float|)) "\\spad{changeThreshhold(R,{}s,{}newValue)} changes the value below which,{} given a NAG routine generating a higher measure,{} the routines will make no attempt to generate a measure.")) (|selectMultiDimensionalRoutines| (($ $) "\\spad{selectMultiDimensionalRoutines(R)} chooses only those routines from the database which are designed for use with multi-dimensional expressions")) (|selectNonFiniteRoutines| (($ $) "\\spad{selectNonFiniteRoutines(R)} chooses only those routines from the database which are designed for use with non-finite expressions.")) (|selectSumOfSquaresRoutines| (($ $) "\\spad{selectSumOfSquaresRoutines(R)} chooses only those routines from the database which are designed for use with sums of squares")) (|selectFiniteRoutines| (($ $) "\\spad{selectFiniteRoutines(R)} chooses only those routines from the database which are designed for use with finite expressions")) (|selectODEIVPRoutines| (($ $) "\\spad{selectODEIVPRoutines(R)} chooses only those routines from the database which are for the solution of ODE\\spad{'s}")) (|selectPDERoutines| (($ $) "\\spad{selectPDERoutines(R)} chooses only those routines from the database which are for the solution of PDE\\spad{'s}")) (|selectOptimizationRoutines| (($ $) "\\spad{selectOptimizationRoutines(R)} chooses only those routines from the database which are for integration")) (|selectIntegrationRoutines| (($ $) "\\spad{selectIntegrationRoutines(R)} chooses only those routines from the database which are for integration")) (|routines| (($) "\\spad{routines()} initialises a database of known NAG routines")) (|concat| (($ $ $) "\\spad{concat(x,{}y)} merges two tables \\spad{x} and \\spad{y}")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (LIST (QUOTE -286) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2402) (QUOTE (-1087))) (LIST (QUOTE |:|) (QUOTE -2746) (QUOTE (-51))))))) (-3255 (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (QUOTE (-1016))) (|HasCategory| (-51) (QUOTE (-1016)))) (-3255 (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| (-51) (QUOTE (-1016))) (|HasCategory| (-51) (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (LIST (QUOTE -564) (QUOTE (-499)))) (-12 (|HasCategory| (-51) (QUOTE (-1016))) (|HasCategory| (-51) (LIST (QUOTE -286) (QUOTE (-51))))) (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (QUOTE (-1016))) (|HasCategory| (-1087) (QUOTE (-786))) (|HasCategory| (-51) (QUOTE (-1016))) (-3255 (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| (-51) (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| (-51) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-986 S R E V)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (LIST (QUOTE -288) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2019) (QUOTE (-1089))) (LIST (QUOTE |:|) (QUOTE -1221) (QUOTE (-51))))))) (-3321 (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (QUOTE (-1018))) (|HasCategory| (-51) (QUOTE (-1018)))) (-3321 (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| (-51) (QUOTE (-1018))) (|HasCategory| (-51) (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (LIST (QUOTE -566) (QUOTE (-501)))) (-12 (|HasCategory| (-51) (QUOTE (-1018))) (|HasCategory| (-51) (LIST (QUOTE -288) (QUOTE (-51))))) (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (QUOTE (-1018))) (|HasCategory| (-1089) (QUOTE (-788))) (|HasCategory| (-51) (QUOTE (-1018))) (-3321 (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| (-51) (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| (-51) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-988 S R E V)
((|constructor| (NIL "A category for general multi-variate polynomials with coefficients in a ring,{} variables in an ordered set,{} and exponents from an ordered abelian monoid,{} with a \\axiomOp{sup} operation. When not constant,{} such a polynomial is viewed as a univariate polynomial in its main variable \\spad{w}. \\spad{r}. \\spad{t}. to the total ordering on the elements in the ordered set,{} so that some operations usually defined for univariate polynomials make sense here.")) (|mainSquareFreePart| (($ $) "\\axiom{mainSquareFreePart(\\spad{p})} returns the square free part of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|mainPrimitivePart| (($ $) "\\axiom{mainPrimitivePart(\\spad{p})} returns the primitive part of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|mainContent| (($ $) "\\axiom{mainContent(\\spad{p})} returns the content of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|primitivePart!| (($ $) "\\axiom{primitivePart!(\\spad{p})} replaces \\axiom{\\spad{p}} by its primitive part.")) (|gcd| ((|#2| |#2| $) "\\axiom{\\spad{gcd}(\\spad{r},{}\\spad{p})} returns the \\spad{gcd} of \\axiom{\\spad{r}} and the content of \\axiom{\\spad{p}}.")) (|nextsubResultant2| (($ $ $ $ $) "\\axiom{nextsubResultant2(\\spad{p},{}\\spad{q},{}\\spad{z},{}\\spad{s})} is the multivariate version of the operation \\axiomOpFrom{next_sousResultant2}{PseudoRemainderSequence} from the \\axiomType{PseudoRemainderSequence} constructor.")) (|LazardQuotient2| (($ $ $ $ (|NonNegativeInteger|)) "\\axiom{LazardQuotient2(\\spad{p},{}a,{}\\spad{b},{}\\spad{n})} returns \\axiom{(a**(\\spad{n}-1) * \\spad{p}) exquo \\spad{b**}(\\spad{n}-1)} assuming that this quotient does not fail.")) (|LazardQuotient| (($ $ $ (|NonNegativeInteger|)) "\\axiom{LazardQuotient(a,{}\\spad{b},{}\\spad{n})} returns \\axiom{a**n exquo \\spad{b**}(\\spad{n}-1)} assuming that this quotient does not fail.")) (|lastSubResultant| (($ $ $) "\\axiom{lastSubResultant(a,{}\\spad{b})} returns the last non-zero subresultant of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}}.")) (|subResultantChain| (((|List| $) $ $) "\\axiom{subResultantChain(a,{}\\spad{b})},{} where \\axiom{a} and \\axiom{\\spad{b}} are not contant polynomials with the same main variable,{} returns the subresultant chain of \\axiom{a} and \\axiom{\\spad{b}}.")) (|resultant| (($ $ $) "\\axiom{resultant(a,{}\\spad{b})} computes the resultant of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}}.")) (|halfExtendedSubResultantGcd2| (((|Record| (|:| |gcd| $) (|:| |coef2| $)) $ $) "\\axiom{halfExtendedSubResultantGcd2(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}\\spad{cb}]} if \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{}\\spad{cb}]} otherwise produces an error.")) (|halfExtendedSubResultantGcd1| (((|Record| (|:| |gcd| $) (|:| |coef1| $)) $ $) "\\axiom{halfExtendedSubResultantGcd1(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca]} if \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{}\\spad{cb}]} otherwise produces an error.")) (|extendedSubResultantGcd| (((|Record| (|:| |gcd| $) (|:| |coef1| $) (|:| |coef2| $)) $ $) "\\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[ca,{}\\spad{cb},{}\\spad{r}]} such that \\axiom{\\spad{r}} is \\axiom{subResultantGcd(a,{}\\spad{b})} and we have \\axiom{ca * a + \\spad{cb} * \\spad{cb} = \\spad{r}} .")) (|subResultantGcd| (($ $ $) "\\axiom{subResultantGcd(a,{}\\spad{b})} computes a \\spad{gcd} of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}} with coefficients in the fraction field of the polynomial ring generated by their other variables over \\axiom{\\spad{R}}.")) (|exactQuotient!| (($ $ $) "\\axiom{exactQuotient!(a,{}\\spad{b})} replaces \\axiom{a} by \\axiom{exactQuotient(a,{}\\spad{b})}") (($ $ |#2|) "\\axiom{exactQuotient!(\\spad{p},{}\\spad{r})} replaces \\axiom{\\spad{p}} by \\axiom{exactQuotient(\\spad{p},{}\\spad{r})}.")) (|exactQuotient| (($ $ $) "\\axiom{exactQuotient(a,{}\\spad{b})} computes the exact quotient of \\axiom{a} by \\axiom{\\spad{b}},{} which is assumed to be a divisor of \\axiom{a}. No error is returned if this exact quotient fails!") (($ $ |#2|) "\\axiom{exactQuotient(\\spad{p},{}\\spad{r})} computes the exact quotient of \\axiom{\\spad{p}} by \\axiom{\\spad{r}},{} which is assumed to be a divisor of \\axiom{\\spad{p}}. No error is returned if this exact quotient fails!")) (|primPartElseUnitCanonical!| (($ $) "\\axiom{primPartElseUnitCanonical!(\\spad{p})} replaces \\axiom{\\spad{p}} by \\axiom{primPartElseUnitCanonical(\\spad{p})}.")) (|primPartElseUnitCanonical| (($ $) "\\axiom{primPartElseUnitCanonical(\\spad{p})} returns \\axiom{primitivePart(\\spad{p})} if \\axiom{\\spad{R}} is a \\spad{gcd}-domain,{} otherwise \\axiom{unitCanonical(\\spad{p})}.")) (|convert| (($ (|Polynomial| |#2|)) "\\axiom{convert(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}},{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}.") (($ (|Polynomial| (|Integer|))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}") (($ (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}.")) (|retract| (($ (|Polynomial| |#2|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| |#2|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| |#2|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.")) (|retractIfCan| (((|Union| $ "failed") (|Polynomial| |#2|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| |#2|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| |#2|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.")) (|initiallyReduce| (($ $ $) "\\axiom{initiallyReduce(a,{}\\spad{b})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{initiallyReduced?(\\spad{r},{}\\spad{b})} holds and there exists an integer \\axiom{\\spad{e}} such that \\axiom{init(\\spad{b})^e a - \\spad{r}} is zero modulo \\axiom{\\spad{b}}.")) (|headReduce| (($ $ $) "\\axiom{headReduce(a,{}\\spad{b})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{headReduced?(\\spad{r},{}\\spad{b})} holds and there exists an integer \\axiom{\\spad{e}} such that \\axiom{init(\\spad{b})^e a - \\spad{r}} is zero modulo \\axiom{\\spad{b}}.")) (|lazyResidueClass| (((|Record| (|:| |polnum| $) (|:| |polden| $) (|:| |power| (|NonNegativeInteger|))) $ $) "\\axiom{lazyResidueClass(a,{}\\spad{b})} returns \\axiom{[\\spad{p},{}\\spad{q},{}\\spad{n}]} where \\axiom{\\spad{p} / q**n} represents the residue class of \\axiom{a} modulo \\axiom{\\spad{b}} and \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and \\axiom{\\spad{q}} is \\axiom{init(\\spad{b})}.")) (|monicModulo| (($ $ $) "\\axiom{monicModulo(a,{}\\spad{b})} computes \\axiom{a mod \\spad{b}},{} if \\axiom{\\spad{b}} is monic as univariate polynomial in its main variable.")) (|pseudoDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\axiom{pseudoDivide(a,{}\\spad{b})} computes \\axiom{[pquo(a,{}\\spad{b}),{}prem(a,{}\\spad{b})]},{} both polynomials viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}},{} if \\axiom{\\spad{b}} is not a constant polynomial.")) (|lazyPseudoDivide| (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |quotient| $) (|:| |remainder| $)) $ $ |#4|) "\\axiom{lazyPseudoDivide(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b},{}\\spad{v})},{} \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b},{}\\spad{v})} and \\axiom{\\spad{q}} is the pseudo-quotient computed in this lazy pseudo-division.") (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]} such that \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}] = lazyPremWithDefault(a,{}\\spad{b})} and \\axiom{\\spad{q}} is the pseudo-quotient computed in this lazy pseudo-division.")) (|lazyPremWithDefault| (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |remainder| $)) $ $ |#4|) "\\axiom{lazyPremWithDefault(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b},{}\\spad{v})} and \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b},{}\\spad{v})}.") (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |remainder| $)) $ $) "\\axiom{lazyPremWithDefault(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b})} and \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b})}.")) (|lazyPquo| (($ $ $ |#4|) "\\axiom{lazyPquo(a,{}\\spad{b},{}\\spad{v})} returns the polynomial \\axiom{\\spad{q}} such that \\axiom{lazyPseudoDivide(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]}.") (($ $ $) "\\axiom{lazyPquo(a,{}\\spad{b})} returns the polynomial \\axiom{\\spad{q}} such that \\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]}.")) (|lazyPrem| (($ $ $ |#4|) "\\axiom{lazyPrem(a,{}\\spad{b},{}\\spad{v})} returns the polynomial \\axiom{\\spad{r}} reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} viewed as univariate polynomials in the variable \\axiom{\\spad{v}} such that \\axiom{\\spad{b}} divides \\axiom{init(\\spad{b})^e a - \\spad{r}} where \\axiom{\\spad{e}} is the number of steps of this pseudo-division.") (($ $ $) "\\axiom{lazyPrem(a,{}\\spad{b})} returns the polynomial \\axiom{\\spad{r}} reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and such that \\axiom{\\spad{b}} divides \\axiom{init(\\spad{b})^e a - \\spad{r}} where \\axiom{\\spad{e}} is the number of steps of this pseudo-division.")) (|pquo| (($ $ $ |#4|) "\\axiom{pquo(a,{}\\spad{b},{}\\spad{v})} computes the pseudo-quotient of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in \\axiom{\\spad{v}}.") (($ $ $) "\\axiom{pquo(a,{}\\spad{b})} computes the pseudo-quotient of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}}.")) (|prem| (($ $ $ |#4|) "\\axiom{prem(a,{}\\spad{b},{}\\spad{v})} computes the pseudo-remainder of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in \\axiom{\\spad{v}}.") (($ $ $) "\\axiom{prem(a,{}\\spad{b})} computes the pseudo-remainder of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}}.")) (|normalized?| (((|Boolean|) $ (|List| $)) "\\axiom{normalized?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{normalized?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{normalized?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{a} and its iterated initials have degree zero \\spad{w}.\\spad{r}.\\spad{t}. the main variable of \\axiom{\\spad{b}}")) (|initiallyReduced?| (((|Boolean|) $ (|List| $)) "\\axiom{initiallyReduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{initiallyReduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{initiallyReduced?(a,{}\\spad{b})} returns \\spad{false} iff there exists an iterated initial of \\axiom{a} which is not reduced \\spad{w}.\\spad{r}.\\spad{t} \\axiom{\\spad{b}}.")) (|headReduced?| (((|Boolean|) $ (|List| $)) "\\axiom{headReduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{headReduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{headReduced?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{degree(head(a),{}mvar(\\spad{b})) < mdeg(\\spad{b})}.")) (|reduced?| (((|Boolean|) $ (|List| $)) "\\axiom{reduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{reduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{reduced?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{degree(a,{}mvar(\\spad{b})) < mdeg(\\spad{b})}.")) (|supRittWu?| (((|Boolean|) $ $) "\\axiom{supRittWu?(a,{}\\spad{b})} returns \\spad{true} if \\axiom{a} is greater than \\axiom{\\spad{b}} \\spad{w}.\\spad{r}.\\spad{t}. the Ritt and Wu Wen Tsun ordering using the refinement of Lazard.")) (|infRittWu?| (((|Boolean|) $ $) "\\axiom{infRittWu?(a,{}\\spad{b})} returns \\spad{true} if \\axiom{a} is less than \\axiom{\\spad{b}} \\spad{w}.\\spad{r}.\\spad{t}. the Ritt and Wu Wen Tsun ordering using the refinement of Lazard.")) (|RittWuCompare| (((|Union| (|Boolean|) "failed") $ $) "\\axiom{RittWuCompare(a,{}\\spad{b})} returns \\axiom{\"failed\"} if \\axiom{a} and \\axiom{\\spad{b}} have same rank \\spad{w}.\\spad{r}.\\spad{t}. Ritt and Wu Wen Tsun ordering using the refinement of Lazard,{} otherwise returns \\axiom{infRittWu?(a,{}\\spad{b})}.")) (|mainMonomials| (((|List| $) $) "\\axiom{mainMonomials(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns [1],{} otherwise returns the list of the monomials of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mainCoefficients| (((|List| $) $) "\\axiom{mainCoefficients(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns [\\spad{p}],{} otherwise returns the list of the coefficients of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|leastMonomial| (($ $) "\\axiom{leastMonomial(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{1},{} otherwise,{} the monomial of \\axiom{\\spad{p}} with lowest degree,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mainMonomial| (($ $) "\\axiom{mainMonomial(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{1},{} otherwise,{} \\axiom{mvar(\\spad{p})} raised to the power \\axiom{mdeg(\\spad{p})}.")) (|quasiMonic?| (((|Boolean|) $) "\\axiom{quasiMonic?(\\spad{p})} returns \\spad{false} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns \\spad{true} iff the initial of \\axiom{\\spad{p}} lies in the base ring \\axiom{\\spad{R}}.")) (|monic?| (((|Boolean|) $) "\\axiom{monic?(\\spad{p})} returns \\spad{false} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns \\spad{true} iff \\axiom{\\spad{p}} is monic as a univariate polynomial in its main variable.")) (|reductum| (($ $ |#4|) "\\axiom{reductum(\\spad{p},{}\\spad{v})} returns the reductum of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in \\axiom{\\spad{v}}.")) (|leadingCoefficient| (($ $ |#4|) "\\axiom{leadingCoefficient(\\spad{p},{}\\spad{v})} returns the leading coefficient of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as A univariate polynomial in \\axiom{\\spad{v}}.")) (|deepestInitial| (($ $) "\\axiom{deepestInitial(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns the last term of \\axiom{iteratedInitials(\\spad{p})}.")) (|iteratedInitials| (((|List| $) $) "\\axiom{iteratedInitials(\\spad{p})} returns \\axiom{[]} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns the list of the iterated initials of \\axiom{\\spad{p}}.")) (|deepestTail| (($ $) "\\axiom{deepestTail(\\spad{p})} returns \\axiom{0} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns tail(\\spad{p}),{} if \\axiom{tail(\\spad{p})} belongs to \\axiom{\\spad{R}} or \\axiom{mvar(tail(\\spad{p})) < mvar(\\spad{p})},{} otherwise returns \\axiom{deepestTail(tail(\\spad{p}))}.")) (|tail| (($ $) "\\axiom{tail(\\spad{p})} returns its reductum,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|head| (($ $) "\\axiom{head(\\spad{p})} returns \\axiom{\\spad{p}} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its leading term (monomial in the AXIOM sense),{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|init| (($ $) "\\axiom{init(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its leading coefficient,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mdeg| (((|NonNegativeInteger|) $) "\\axiom{mdeg(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{0},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{0},{} otherwise,{} returns the degree of \\axiom{\\spad{p}} in its main variable.")) (|mvar| ((|#4| $) "\\axiom{mvar(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its main variable \\spad{w}. \\spad{r}. \\spad{t}. to the total ordering on the elements in \\axiom{\\spad{V}}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#2| (QUOTE (-508))) (|HasCategory| |#2| (LIST (QUOTE -37) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -921) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#4| (LIST (QUOTE -564) (QUOTE (-1087)))))
-(-987 R E V)
+((|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-510))) (|HasCategory| |#2| (LIST (QUOTE -37) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -923) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#4| (LIST (QUOTE -566) (QUOTE (-1089)))))
+(-989 R E V)
((|constructor| (NIL "A category for general multi-variate polynomials with coefficients in a ring,{} variables in an ordered set,{} and exponents from an ordered abelian monoid,{} with a \\axiomOp{sup} operation. When not constant,{} such a polynomial is viewed as a univariate polynomial in its main variable \\spad{w}. \\spad{r}. \\spad{t}. to the total ordering on the elements in the ordered set,{} so that some operations usually defined for univariate polynomials make sense here.")) (|mainSquareFreePart| (($ $) "\\axiom{mainSquareFreePart(\\spad{p})} returns the square free part of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|mainPrimitivePart| (($ $) "\\axiom{mainPrimitivePart(\\spad{p})} returns the primitive part of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|mainContent| (($ $) "\\axiom{mainContent(\\spad{p})} returns the content of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|primitivePart!| (($ $) "\\axiom{primitivePart!(\\spad{p})} replaces \\axiom{\\spad{p}} by its primitive part.")) (|gcd| ((|#1| |#1| $) "\\axiom{\\spad{gcd}(\\spad{r},{}\\spad{p})} returns the \\spad{gcd} of \\axiom{\\spad{r}} and the content of \\axiom{\\spad{p}}.")) (|nextsubResultant2| (($ $ $ $ $) "\\axiom{nextsubResultant2(\\spad{p},{}\\spad{q},{}\\spad{z},{}\\spad{s})} is the multivariate version of the operation \\axiomOpFrom{next_sousResultant2}{PseudoRemainderSequence} from the \\axiomType{PseudoRemainderSequence} constructor.")) (|LazardQuotient2| (($ $ $ $ (|NonNegativeInteger|)) "\\axiom{LazardQuotient2(\\spad{p},{}a,{}\\spad{b},{}\\spad{n})} returns \\axiom{(a**(\\spad{n}-1) * \\spad{p}) exquo \\spad{b**}(\\spad{n}-1)} assuming that this quotient does not fail.")) (|LazardQuotient| (($ $ $ (|NonNegativeInteger|)) "\\axiom{LazardQuotient(a,{}\\spad{b},{}\\spad{n})} returns \\axiom{a**n exquo \\spad{b**}(\\spad{n}-1)} assuming that this quotient does not fail.")) (|lastSubResultant| (($ $ $) "\\axiom{lastSubResultant(a,{}\\spad{b})} returns the last non-zero subresultant of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}}.")) (|subResultantChain| (((|List| $) $ $) "\\axiom{subResultantChain(a,{}\\spad{b})},{} where \\axiom{a} and \\axiom{\\spad{b}} are not contant polynomials with the same main variable,{} returns the subresultant chain of \\axiom{a} and \\axiom{\\spad{b}}.")) (|resultant| (($ $ $) "\\axiom{resultant(a,{}\\spad{b})} computes the resultant of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}}.")) (|halfExtendedSubResultantGcd2| (((|Record| (|:| |gcd| $) (|:| |coef2| $)) $ $) "\\axiom{halfExtendedSubResultantGcd2(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}\\spad{cb}]} if \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{}\\spad{cb}]} otherwise produces an error.")) (|halfExtendedSubResultantGcd1| (((|Record| (|:| |gcd| $) (|:| |coef1| $)) $ $) "\\axiom{halfExtendedSubResultantGcd1(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca]} if \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{}\\spad{cb}]} otherwise produces an error.")) (|extendedSubResultantGcd| (((|Record| (|:| |gcd| $) (|:| |coef1| $) (|:| |coef2| $)) $ $) "\\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[ca,{}\\spad{cb},{}\\spad{r}]} such that \\axiom{\\spad{r}} is \\axiom{subResultantGcd(a,{}\\spad{b})} and we have \\axiom{ca * a + \\spad{cb} * \\spad{cb} = \\spad{r}} .")) (|subResultantGcd| (($ $ $) "\\axiom{subResultantGcd(a,{}\\spad{b})} computes a \\spad{gcd} of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}} with coefficients in the fraction field of the polynomial ring generated by their other variables over \\axiom{\\spad{R}}.")) (|exactQuotient!| (($ $ $) "\\axiom{exactQuotient!(a,{}\\spad{b})} replaces \\axiom{a} by \\axiom{exactQuotient(a,{}\\spad{b})}") (($ $ |#1|) "\\axiom{exactQuotient!(\\spad{p},{}\\spad{r})} replaces \\axiom{\\spad{p}} by \\axiom{exactQuotient(\\spad{p},{}\\spad{r})}.")) (|exactQuotient| (($ $ $) "\\axiom{exactQuotient(a,{}\\spad{b})} computes the exact quotient of \\axiom{a} by \\axiom{\\spad{b}},{} which is assumed to be a divisor of \\axiom{a}. No error is returned if this exact quotient fails!") (($ $ |#1|) "\\axiom{exactQuotient(\\spad{p},{}\\spad{r})} computes the exact quotient of \\axiom{\\spad{p}} by \\axiom{\\spad{r}},{} which is assumed to be a divisor of \\axiom{\\spad{p}}. No error is returned if this exact quotient fails!")) (|primPartElseUnitCanonical!| (($ $) "\\axiom{primPartElseUnitCanonical!(\\spad{p})} replaces \\axiom{\\spad{p}} by \\axiom{primPartElseUnitCanonical(\\spad{p})}.")) (|primPartElseUnitCanonical| (($ $) "\\axiom{primPartElseUnitCanonical(\\spad{p})} returns \\axiom{primitivePart(\\spad{p})} if \\axiom{\\spad{R}} is a \\spad{gcd}-domain,{} otherwise \\axiom{unitCanonical(\\spad{p})}.")) (|convert| (($ (|Polynomial| |#1|)) "\\axiom{convert(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}},{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}.") (($ (|Polynomial| (|Integer|))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}") (($ (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}.")) (|retract| (($ (|Polynomial| |#1|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| |#1|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| |#1|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.")) (|retractIfCan| (((|Union| $ "failed") (|Polynomial| |#1|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| |#1|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| |#1|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.")) (|initiallyReduce| (($ $ $) "\\axiom{initiallyReduce(a,{}\\spad{b})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{initiallyReduced?(\\spad{r},{}\\spad{b})} holds and there exists an integer \\axiom{\\spad{e}} such that \\axiom{init(\\spad{b})^e a - \\spad{r}} is zero modulo \\axiom{\\spad{b}}.")) (|headReduce| (($ $ $) "\\axiom{headReduce(a,{}\\spad{b})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{headReduced?(\\spad{r},{}\\spad{b})} holds and there exists an integer \\axiom{\\spad{e}} such that \\axiom{init(\\spad{b})^e a - \\spad{r}} is zero modulo \\axiom{\\spad{b}}.")) (|lazyResidueClass| (((|Record| (|:| |polnum| $) (|:| |polden| $) (|:| |power| (|NonNegativeInteger|))) $ $) "\\axiom{lazyResidueClass(a,{}\\spad{b})} returns \\axiom{[\\spad{p},{}\\spad{q},{}\\spad{n}]} where \\axiom{\\spad{p} / q**n} represents the residue class of \\axiom{a} modulo \\axiom{\\spad{b}} and \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and \\axiom{\\spad{q}} is \\axiom{init(\\spad{b})}.")) (|monicModulo| (($ $ $) "\\axiom{monicModulo(a,{}\\spad{b})} computes \\axiom{a mod \\spad{b}},{} if \\axiom{\\spad{b}} is monic as univariate polynomial in its main variable.")) (|pseudoDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\axiom{pseudoDivide(a,{}\\spad{b})} computes \\axiom{[pquo(a,{}\\spad{b}),{}prem(a,{}\\spad{b})]},{} both polynomials viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}},{} if \\axiom{\\spad{b}} is not a constant polynomial.")) (|lazyPseudoDivide| (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |quotient| $) (|:| |remainder| $)) $ $ |#3|) "\\axiom{lazyPseudoDivide(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b},{}\\spad{v})},{} \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b},{}\\spad{v})} and \\axiom{\\spad{q}} is the pseudo-quotient computed in this lazy pseudo-division.") (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]} such that \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}] = lazyPremWithDefault(a,{}\\spad{b})} and \\axiom{\\spad{q}} is the pseudo-quotient computed in this lazy pseudo-division.")) (|lazyPremWithDefault| (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |remainder| $)) $ $ |#3|) "\\axiom{lazyPremWithDefault(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b},{}\\spad{v})} and \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b},{}\\spad{v})}.") (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |remainder| $)) $ $) "\\axiom{lazyPremWithDefault(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b})} and \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b})}.")) (|lazyPquo| (($ $ $ |#3|) "\\axiom{lazyPquo(a,{}\\spad{b},{}\\spad{v})} returns the polynomial \\axiom{\\spad{q}} such that \\axiom{lazyPseudoDivide(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]}.") (($ $ $) "\\axiom{lazyPquo(a,{}\\spad{b})} returns the polynomial \\axiom{\\spad{q}} such that \\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]}.")) (|lazyPrem| (($ $ $ |#3|) "\\axiom{lazyPrem(a,{}\\spad{b},{}\\spad{v})} returns the polynomial \\axiom{\\spad{r}} reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} viewed as univariate polynomials in the variable \\axiom{\\spad{v}} such that \\axiom{\\spad{b}} divides \\axiom{init(\\spad{b})^e a - \\spad{r}} where \\axiom{\\spad{e}} is the number of steps of this pseudo-division.") (($ $ $) "\\axiom{lazyPrem(a,{}\\spad{b})} returns the polynomial \\axiom{\\spad{r}} reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and such that \\axiom{\\spad{b}} divides \\axiom{init(\\spad{b})^e a - \\spad{r}} where \\axiom{\\spad{e}} is the number of steps of this pseudo-division.")) (|pquo| (($ $ $ |#3|) "\\axiom{pquo(a,{}\\spad{b},{}\\spad{v})} computes the pseudo-quotient of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in \\axiom{\\spad{v}}.") (($ $ $) "\\axiom{pquo(a,{}\\spad{b})} computes the pseudo-quotient of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}}.")) (|prem| (($ $ $ |#3|) "\\axiom{prem(a,{}\\spad{b},{}\\spad{v})} computes the pseudo-remainder of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in \\axiom{\\spad{v}}.") (($ $ $) "\\axiom{prem(a,{}\\spad{b})} computes the pseudo-remainder of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}}.")) (|normalized?| (((|Boolean|) $ (|List| $)) "\\axiom{normalized?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{normalized?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{normalized?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{a} and its iterated initials have degree zero \\spad{w}.\\spad{r}.\\spad{t}. the main variable of \\axiom{\\spad{b}}")) (|initiallyReduced?| (((|Boolean|) $ (|List| $)) "\\axiom{initiallyReduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{initiallyReduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{initiallyReduced?(a,{}\\spad{b})} returns \\spad{false} iff there exists an iterated initial of \\axiom{a} which is not reduced \\spad{w}.\\spad{r}.\\spad{t} \\axiom{\\spad{b}}.")) (|headReduced?| (((|Boolean|) $ (|List| $)) "\\axiom{headReduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{headReduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{headReduced?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{degree(head(a),{}mvar(\\spad{b})) < mdeg(\\spad{b})}.")) (|reduced?| (((|Boolean|) $ (|List| $)) "\\axiom{reduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{reduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{reduced?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{degree(a,{}mvar(\\spad{b})) < mdeg(\\spad{b})}.")) (|supRittWu?| (((|Boolean|) $ $) "\\axiom{supRittWu?(a,{}\\spad{b})} returns \\spad{true} if \\axiom{a} is greater than \\axiom{\\spad{b}} \\spad{w}.\\spad{r}.\\spad{t}. the Ritt and Wu Wen Tsun ordering using the refinement of Lazard.")) (|infRittWu?| (((|Boolean|) $ $) "\\axiom{infRittWu?(a,{}\\spad{b})} returns \\spad{true} if \\axiom{a} is less than \\axiom{\\spad{b}} \\spad{w}.\\spad{r}.\\spad{t}. the Ritt and Wu Wen Tsun ordering using the refinement of Lazard.")) (|RittWuCompare| (((|Union| (|Boolean|) "failed") $ $) "\\axiom{RittWuCompare(a,{}\\spad{b})} returns \\axiom{\"failed\"} if \\axiom{a} and \\axiom{\\spad{b}} have same rank \\spad{w}.\\spad{r}.\\spad{t}. Ritt and Wu Wen Tsun ordering using the refinement of Lazard,{} otherwise returns \\axiom{infRittWu?(a,{}\\spad{b})}.")) (|mainMonomials| (((|List| $) $) "\\axiom{mainMonomials(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns [1],{} otherwise returns the list of the monomials of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mainCoefficients| (((|List| $) $) "\\axiom{mainCoefficients(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns [\\spad{p}],{} otherwise returns the list of the coefficients of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|leastMonomial| (($ $) "\\axiom{leastMonomial(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{1},{} otherwise,{} the monomial of \\axiom{\\spad{p}} with lowest degree,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mainMonomial| (($ $) "\\axiom{mainMonomial(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{1},{} otherwise,{} \\axiom{mvar(\\spad{p})} raised to the power \\axiom{mdeg(\\spad{p})}.")) (|quasiMonic?| (((|Boolean|) $) "\\axiom{quasiMonic?(\\spad{p})} returns \\spad{false} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns \\spad{true} iff the initial of \\axiom{\\spad{p}} lies in the base ring \\axiom{\\spad{R}}.")) (|monic?| (((|Boolean|) $) "\\axiom{monic?(\\spad{p})} returns \\spad{false} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns \\spad{true} iff \\axiom{\\spad{p}} is monic as a univariate polynomial in its main variable.")) (|reductum| (($ $ |#3|) "\\axiom{reductum(\\spad{p},{}\\spad{v})} returns the reductum of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in \\axiom{\\spad{v}}.")) (|leadingCoefficient| (($ $ |#3|) "\\axiom{leadingCoefficient(\\spad{p},{}\\spad{v})} returns the leading coefficient of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as A univariate polynomial in \\axiom{\\spad{v}}.")) (|deepestInitial| (($ $) "\\axiom{deepestInitial(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns the last term of \\axiom{iteratedInitials(\\spad{p})}.")) (|iteratedInitials| (((|List| $) $) "\\axiom{iteratedInitials(\\spad{p})} returns \\axiom{[]} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns the list of the iterated initials of \\axiom{\\spad{p}}.")) (|deepestTail| (($ $) "\\axiom{deepestTail(\\spad{p})} returns \\axiom{0} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns tail(\\spad{p}),{} if \\axiom{tail(\\spad{p})} belongs to \\axiom{\\spad{R}} or \\axiom{mvar(tail(\\spad{p})) < mvar(\\spad{p})},{} otherwise returns \\axiom{deepestTail(tail(\\spad{p}))}.")) (|tail| (($ $) "\\axiom{tail(\\spad{p})} returns its reductum,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|head| (($ $) "\\axiom{head(\\spad{p})} returns \\axiom{\\spad{p}} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its leading term (monomial in the AXIOM sense),{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|init| (($ $) "\\axiom{init(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its leading coefficient,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mdeg| (((|NonNegativeInteger|) $) "\\axiom{mdeg(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{0},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{0},{} otherwise,{} returns the degree of \\axiom{\\spad{p}} in its main variable.")) (|mvar| ((|#3| $) "\\axiom{mvar(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its main variable \\spad{w}. \\spad{r}. \\spad{t}. to the total ordering on the elements in \\axiom{\\spad{V}}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
NIL
-(-988 S |TheField| |ThePols|)
+(-990 S |TheField| |ThePols|)
((|constructor| (NIL "\\axiomType{RealRootCharacterizationCategory} provides common acces functions for all real root codings.")) (|relativeApprox| ((|#2| |#3| $ |#2|) "\\axiom{approximate(term,{}root,{}prec)} gives an approximation of \\axiom{term} over \\axiom{root} with precision \\axiom{prec}")) (|approximate| ((|#2| |#3| $ |#2|) "\\axiom{approximate(term,{}root,{}prec)} gives an approximation of \\axiom{term} over \\axiom{root} with precision \\axiom{prec}")) (|rootOf| (((|Union| $ "failed") |#3| (|PositiveInteger|)) "\\axiom{rootOf(pol,{}\\spad{n})} gives the \\spad{n}th root for the order of the Real Closure")) (|allRootsOf| (((|List| $) |#3|) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} in the Real Closure,{} assumed in order.")) (|definingPolynomial| ((|#3| $) "\\axiom{definingPolynomial(aRoot)} gives a polynomial such that \\axiom{definingPolynomial(aRoot).aRoot = 0}")) (|recip| (((|Union| |#3| "failed") |#3| $) "\\axiom{recip(pol,{}aRoot)} tries to inverse \\axiom{pol} interpreted as \\axiom{aRoot}")) (|positive?| (((|Boolean|) |#3| $) "\\axiom{positive?(pol,{}aRoot)} answers if \\axiom{pol} interpreted as \\axiom{aRoot} is positive")) (|negative?| (((|Boolean|) |#3| $) "\\axiom{negative?(pol,{}aRoot)} answers if \\axiom{pol} interpreted as \\axiom{aRoot} is negative")) (|zero?| (((|Boolean|) |#3| $) "\\axiom{zero?(pol,{}aRoot)} answers if \\axiom{pol} interpreted as \\axiom{aRoot} is \\axiom{0}")) (|sign| (((|Integer|) |#3| $) "\\axiom{sign(pol,{}aRoot)} gives the sign of \\axiom{pol} interpreted as \\axiom{aRoot}")))
NIL
NIL
-(-989 |TheField| |ThePols|)
+(-991 |TheField| |ThePols|)
((|constructor| (NIL "\\axiomType{RealRootCharacterizationCategory} provides common acces functions for all real root codings.")) (|relativeApprox| ((|#1| |#2| $ |#1|) "\\axiom{approximate(term,{}root,{}prec)} gives an approximation of \\axiom{term} over \\axiom{root} with precision \\axiom{prec}")) (|approximate| ((|#1| |#2| $ |#1|) "\\axiom{approximate(term,{}root,{}prec)} gives an approximation of \\axiom{term} over \\axiom{root} with precision \\axiom{prec}")) (|rootOf| (((|Union| $ "failed") |#2| (|PositiveInteger|)) "\\axiom{rootOf(pol,{}\\spad{n})} gives the \\spad{n}th root for the order of the Real Closure")) (|allRootsOf| (((|List| $) |#2|) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} in the Real Closure,{} assumed in order.")) (|definingPolynomial| ((|#2| $) "\\axiom{definingPolynomial(aRoot)} gives a polynomial such that \\axiom{definingPolynomial(aRoot).aRoot = 0}")) (|recip| (((|Union| |#2| "failed") |#2| $) "\\axiom{recip(pol,{}aRoot)} tries to inverse \\axiom{pol} interpreted as \\axiom{aRoot}")) (|positive?| (((|Boolean|) |#2| $) "\\axiom{positive?(pol,{}aRoot)} answers if \\axiom{pol} interpreted as \\axiom{aRoot} is positive")) (|negative?| (((|Boolean|) |#2| $) "\\axiom{negative?(pol,{}aRoot)} answers if \\axiom{pol} interpreted as \\axiom{aRoot} is negative")) (|zero?| (((|Boolean|) |#2| $) "\\axiom{zero?(pol,{}aRoot)} answers if \\axiom{pol} interpreted as \\axiom{aRoot} is \\axiom{0}")) (|sign| (((|Integer|) |#2| $) "\\axiom{sign(pol,{}aRoot)} gives the sign of \\axiom{pol} interpreted as \\axiom{aRoot}")))
NIL
NIL
-(-990 R E V P TS)
+(-992 R E V P TS)
((|constructor| (NIL "A package providing a new algorithm for solving polynomial systems by means of regular chains. Two ways of solving are proposed: in the sense of Zariski closure (like in Kalkbrener\\spad{'s} algorithm) or in the sense of the regular zeros (like in Wu,{} Wang or Lazard methods). This algorithm is valid for nay type of regular set. It does not care about the way a polynomial is added in an regular set,{} or how two quasi-components are compared (by an inclusion-test),{} or how the invertibility test is made in the tower of simple extensions associated with a regular set. These operations are realized respectively by the domain \\spad{TS} and the packages \\axiomType{QCMPACK}(\\spad{R},{}\\spad{E},{}\\spad{V},{}\\spad{P},{}\\spad{TS}) and \\axiomType{RSETGCD}(\\spad{R},{}\\spad{E},{}\\spad{V},{}\\spad{P},{}\\spad{TS}). The same way it does not care about the way univariate polynomial \\spad{gcd} (with coefficients in the tower of simple extensions associated with a regular set) are computed. The only requirement is that these \\spad{gcd} need to have invertible initials (normalized or not). WARNING. There is no need for a user to call diectly any operation of this package since they can be accessed by the domain \\axiom{\\spad{TS}}. Thus,{} the operations of this package are not documented.\\newline References : \\indented{1}{[1] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")))
NIL
NIL
-(-991 S R E V P)
+(-993 S R E V P)
((|constructor| (NIL "The category of regular triangular sets,{} introduced under the name regular chains in [1] (and other papers). In [3] it is proved that regular triangular sets and towers of simple extensions of a field are equivalent notions. In the following definitions,{} all polynomials and ideals are taken from the polynomial ring \\spad{k[x1,{}...,{}xn]} where \\spad{k} is the fraction field of \\spad{R}. The triangular set \\spad{[t1,{}...,{}tm]} is regular iff for every \\spad{i} the initial of \\spad{ti+1} is invertible in the tower of simple extensions associated with \\spad{[t1,{}...,{}\\spad{ti}]}. A family \\spad{[T1,{}...,{}Ts]} of regular triangular sets is a split of Kalkbrener of a given ideal \\spad{I} iff the radical of \\spad{I} is equal to the intersection of the radical ideals generated by the saturated ideals of the \\spad{[T1,{}...,{}\\spad{Ti}]}. A family \\spad{[T1,{}...,{}Ts]} of regular triangular sets is a split of Kalkbrener of a given triangular set \\spad{T} iff it is a split of Kalkbrener of the saturated ideal of \\spad{T}. Let \\spad{K} be an algebraic closure of \\spad{k}. Assume that \\spad{V} is finite with cardinality \\spad{n} and let \\spad{A} be the affine space \\spad{K^n}. For a regular triangular set \\spad{T} let denote by \\spad{W(T)} the set of regular zeros of \\spad{T}. A family \\spad{[T1,{}...,{}Ts]} of regular triangular sets is a split of Lazard of a given subset \\spad{S} of \\spad{A} iff the union of the \\spad{W(\\spad{Ti})} contains \\spad{S} and is contained in the closure of \\spad{S} (\\spad{w}.\\spad{r}.\\spad{t}. Zariski topology). A family \\spad{[T1,{}...,{}Ts]} of regular triangular sets is a split of Lazard of a given triangular set \\spad{T} if it is a split of Lazard of \\spad{W(T)}. Note that if \\spad{[T1,{}...,{}Ts]} is a split of Lazard of \\spad{T} then it is also a split of Kalkbrener of \\spad{T}. The converse is \\spad{false}. This category provides operations related to both kinds of splits,{} the former being related to ideals decomposition whereas the latter deals with varieties decomposition. See the example illustrating the \\spadtype{RegularTriangularSet} constructor for more explanations about decompositions by means of regular triangular sets. \\newline References : \\indented{1}{[1] \\spad{M}. KALKBRENER \"Three contributions to elimination theory\"} \\indented{5}{\\spad{Phd} Thesis,{} University of Linz,{} Austria,{} 1991.} \\indented{1}{[2] \\spad{M}. KALKBRENER \"Algorithmic properties of polynomial rings\"} \\indented{5}{Journal of Symbol. Comp. 1998} \\indented{1}{[3] \\spad{P}. AUBRY,{} \\spad{D}. LAZARD and \\spad{M}. MORENO MAZA \"On the Theories} \\indented{5}{of Triangular Sets\" Journal of Symbol. Comp. (to appear)} \\indented{1}{[4] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")) (|zeroSetSplit| (((|List| $) (|List| |#5|) (|Boolean|)) "\\spad{zeroSetSplit(lp,{}clos?)} returns \\spad{lts} a split of Kalkbrener of the radical ideal associated with \\spad{lp}. If \\spad{clos?} is \\spad{false},{} it is also a decomposition of the variety associated with \\spad{lp} into the regular zero set of the \\spad{ts} in \\spad{lts} (or,{} in other words,{} a split of Lazard of this variety). See the example illustrating the \\spadtype{RegularTriangularSet} constructor for more explanations about decompositions by means of regular triangular sets.")) (|extend| (((|List| $) (|List| |#5|) (|List| $)) "\\spad{extend(lp,{}lts)} returns the same as \\spad{concat([extend(lp,{}ts) for ts in lts])|}") (((|List| $) (|List| |#5|) $) "\\spad{extend(lp,{}ts)} returns \\spad{ts} if \\spad{empty? lp} \\spad{extend(p,{}ts)} if \\spad{lp = [p]} else \\spad{extend(first lp,{} extend(rest lp,{} ts))}") (((|List| $) |#5| (|List| $)) "\\spad{extend(p,{}lts)} returns the same as \\spad{concat([extend(p,{}ts) for ts in lts])|}") (((|List| $) |#5| $) "\\spad{extend(p,{}ts)} assumes that \\spad{p} is a non-constant polynomial whose main variable is greater than any variable of \\spad{ts}. Then it returns a split of Kalkbrener of \\spad{ts+p}. This may not be \\spad{ts+p} itself,{} if for instance \\spad{ts+p} is not a regular triangular set.")) (|internalAugment| (($ (|List| |#5|) $) "\\spad{internalAugment(lp,{}ts)} returns \\spad{ts} if \\spad{lp} is empty otherwise returns \\spad{internalAugment(rest lp,{} internalAugment(first lp,{} ts))}") (($ |#5| $) "\\spad{internalAugment(p,{}ts)} assumes that \\spad{augment(p,{}ts)} returns a singleton and returns it.")) (|augment| (((|List| $) (|List| |#5|) (|List| $)) "\\spad{augment(lp,{}lts)} returns the same as \\spad{concat([augment(lp,{}ts) for ts in lts])}") (((|List| $) (|List| |#5|) $) "\\spad{augment(lp,{}ts)} returns \\spad{ts} if \\spad{empty? lp},{} \\spad{augment(p,{}ts)} if \\spad{lp = [p]},{} otherwise \\spad{augment(first lp,{} augment(rest lp,{} ts))}") (((|List| $) |#5| (|List| $)) "\\spad{augment(p,{}lts)} returns the same as \\spad{concat([augment(p,{}ts) for ts in lts])}") (((|List| $) |#5| $) "\\spad{augment(p,{}ts)} assumes that \\spad{p} is a non-constant polynomial whose main variable is greater than any variable of \\spad{ts}. This operation assumes also that if \\spad{p} is added to \\spad{ts} the resulting set,{} say \\spad{ts+p},{} is a regular triangular set. Then it returns a split of Kalkbrener of \\spad{ts+p}. This may not be \\spad{ts+p} itself,{} if for instance \\spad{ts+p} is required to be square-free.")) (|intersect| (((|List| $) |#5| (|List| $)) "\\spad{intersect(p,{}lts)} returns the same as \\spad{intersect([p],{}lts)}") (((|List| $) (|List| |#5|) (|List| $)) "\\spad{intersect(lp,{}lts)} returns the same as \\spad{concat([intersect(lp,{}ts) for ts in lts])|}") (((|List| $) (|List| |#5|) $) "\\spad{intersect(lp,{}ts)} returns \\spad{lts} a split of Lazard of the intersection of the affine variety associated with \\spad{lp} and the regular zero set of \\spad{ts}.") (((|List| $) |#5| $) "\\spad{intersect(p,{}ts)} returns the same as \\spad{intersect([p],{}ts)}")) (|squareFreePart| (((|List| (|Record| (|:| |val| |#5|) (|:| |tower| $))) |#5| $) "\\spad{squareFreePart(p,{}ts)} returns \\spad{lpwt} such that \\spad{lpwt.i.val} is a square-free polynomial \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower},{} this polynomial being associated with \\spad{p} modulo \\spad{lpwt.i.tower},{} for every \\spad{i}. Moreover,{} the list of the \\spad{lpwt.i.tower} is a split of Kalkbrener of \\spad{ts}. WARNING: This assumes that \\spad{p} is a non-constant polynomial such that if \\spad{p} is added to \\spad{ts},{} then the resulting set is a regular triangular set.")) (|lastSubResultant| (((|List| (|Record| (|:| |val| |#5|) (|:| |tower| $))) |#5| |#5| $) "\\spad{lastSubResultant(p1,{}p2,{}ts)} returns \\spad{lpwt} such that \\spad{lpwt.i.val} is a quasi-monic \\spad{gcd} of \\spad{p1} and \\spad{p2} \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower},{} for every \\spad{i},{} and such that the list of the \\spad{lpwt.i.tower} is a split of Kalkbrener of \\spad{ts}. Moreover,{} if \\spad{p1} and \\spad{p2} do not have a non-trivial \\spad{gcd} \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower} then \\spad{lpwt.i.val} is the resultant of these polynomials \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower}. This assumes that \\spad{p1} and \\spad{p2} have the same maim variable and that this variable is greater that any variable occurring in \\spad{ts}.")) (|lastSubResultantElseSplit| (((|Union| |#5| (|List| $)) |#5| |#5| $) "\\spad{lastSubResultantElseSplit(p1,{}p2,{}ts)} returns either \\spad{g} a quasi-monic \\spad{gcd} of \\spad{p1} and \\spad{p2} \\spad{w}.\\spad{r}.\\spad{t}. the \\spad{ts} or a split of Kalkbrener of \\spad{ts}. This assumes that \\spad{p1} and \\spad{p2} have the same maim variable and that this variable is greater that any variable occurring in \\spad{ts}.")) (|invertibleSet| (((|List| $) |#5| $) "\\spad{invertibleSet(p,{}ts)} returns a split of Kalkbrener of the quotient ideal of the ideal \\axiom{\\spad{I}} by \\spad{p} where \\spad{I} is the radical of saturated of \\spad{ts}.")) (|invertible?| (((|Boolean|) |#5| $) "\\spad{invertible?(p,{}ts)} returns \\spad{true} iff \\spad{p} is invertible in the tower associated with \\spad{ts}.") (((|List| (|Record| (|:| |val| (|Boolean|)) (|:| |tower| $))) |#5| $) "\\spad{invertible?(p,{}ts)} returns \\spad{lbwt} where \\spad{lbwt.i} is the result of \\spad{invertibleElseSplit?(p,{}lbwt.i.tower)} and the list of the \\spad{(lqrwt.i).tower} is a split of Kalkbrener of \\spad{ts}.")) (|invertibleElseSplit?| (((|Union| (|Boolean|) (|List| $)) |#5| $) "\\spad{invertibleElseSplit?(p,{}ts)} returns \\spad{true} (resp. \\spad{false}) if \\spad{p} is invertible in the tower associated with \\spad{ts} or returns a split of Kalkbrener of \\spad{ts}.")) (|purelyAlgebraicLeadingMonomial?| (((|Boolean|) |#5| $) "\\spad{purelyAlgebraicLeadingMonomial?(p,{}ts)} returns \\spad{true} iff the main variable of any non-constant iterarted initial of \\spad{p} is algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}.")) (|algebraicCoefficients?| (((|Boolean|) |#5| $) "\\spad{algebraicCoefficients?(p,{}ts)} returns \\spad{true} iff every variable of \\spad{p} which is not the main one of \\spad{p} is algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}.")) (|purelyTranscendental?| (((|Boolean|) |#5| $) "\\spad{purelyTranscendental?(p,{}ts)} returns \\spad{true} iff every variable of \\spad{p} is not algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}")) (|purelyAlgebraic?| (((|Boolean|) $) "\\spad{purelyAlgebraic?(ts)} returns \\spad{true} iff for every algebraic variable \\spad{v} of \\spad{ts} we have \\spad{algebraicCoefficients?(t_v,{}ts_v_-)} where \\spad{ts_v} is \\axiomOpFrom{select}{TriangularSetCategory}(\\spad{ts},{}\\spad{v}) and \\spad{ts_v_-} is \\axiomOpFrom{collectUnder}{TriangularSetCategory}(\\spad{ts},{}\\spad{v}).") (((|Boolean|) |#5| $) "\\spad{purelyAlgebraic?(p,{}ts)} returns \\spad{true} iff every variable of \\spad{p} is algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}.")))
NIL
NIL
-(-992 R E V P)
+(-994 R E V P)
((|constructor| (NIL "The category of regular triangular sets,{} introduced under the name regular chains in [1] (and other papers). In [3] it is proved that regular triangular sets and towers of simple extensions of a field are equivalent notions. In the following definitions,{} all polynomials and ideals are taken from the polynomial ring \\spad{k[x1,{}...,{}xn]} where \\spad{k} is the fraction field of \\spad{R}. The triangular set \\spad{[t1,{}...,{}tm]} is regular iff for every \\spad{i} the initial of \\spad{ti+1} is invertible in the tower of simple extensions associated with \\spad{[t1,{}...,{}\\spad{ti}]}. A family \\spad{[T1,{}...,{}Ts]} of regular triangular sets is a split of Kalkbrener of a given ideal \\spad{I} iff the radical of \\spad{I} is equal to the intersection of the radical ideals generated by the saturated ideals of the \\spad{[T1,{}...,{}\\spad{Ti}]}. A family \\spad{[T1,{}...,{}Ts]} of regular triangular sets is a split of Kalkbrener of a given triangular set \\spad{T} iff it is a split of Kalkbrener of the saturated ideal of \\spad{T}. Let \\spad{K} be an algebraic closure of \\spad{k}. Assume that \\spad{V} is finite with cardinality \\spad{n} and let \\spad{A} be the affine space \\spad{K^n}. For a regular triangular set \\spad{T} let denote by \\spad{W(T)} the set of regular zeros of \\spad{T}. A family \\spad{[T1,{}...,{}Ts]} of regular triangular sets is a split of Lazard of a given subset \\spad{S} of \\spad{A} iff the union of the \\spad{W(\\spad{Ti})} contains \\spad{S} and is contained in the closure of \\spad{S} (\\spad{w}.\\spad{r}.\\spad{t}. Zariski topology). A family \\spad{[T1,{}...,{}Ts]} of regular triangular sets is a split of Lazard of a given triangular set \\spad{T} if it is a split of Lazard of \\spad{W(T)}. Note that if \\spad{[T1,{}...,{}Ts]} is a split of Lazard of \\spad{T} then it is also a split of Kalkbrener of \\spad{T}. The converse is \\spad{false}. This category provides operations related to both kinds of splits,{} the former being related to ideals decomposition whereas the latter deals with varieties decomposition. See the example illustrating the \\spadtype{RegularTriangularSet} constructor for more explanations about decompositions by means of regular triangular sets. \\newline References : \\indented{1}{[1] \\spad{M}. KALKBRENER \"Three contributions to elimination theory\"} \\indented{5}{\\spad{Phd} Thesis,{} University of Linz,{} Austria,{} 1991.} \\indented{1}{[2] \\spad{M}. KALKBRENER \"Algorithmic properties of polynomial rings\"} \\indented{5}{Journal of Symbol. Comp. 1998} \\indented{1}{[3] \\spad{P}. AUBRY,{} \\spad{D}. LAZARD and \\spad{M}. MORENO MAZA \"On the Theories} \\indented{5}{of Triangular Sets\" Journal of Symbol. Comp. (to appear)} \\indented{1}{[4] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")) (|zeroSetSplit| (((|List| $) (|List| |#4|) (|Boolean|)) "\\spad{zeroSetSplit(lp,{}clos?)} returns \\spad{lts} a split of Kalkbrener of the radical ideal associated with \\spad{lp}. If \\spad{clos?} is \\spad{false},{} it is also a decomposition of the variety associated with \\spad{lp} into the regular zero set of the \\spad{ts} in \\spad{lts} (or,{} in other words,{} a split of Lazard of this variety). See the example illustrating the \\spadtype{RegularTriangularSet} constructor for more explanations about decompositions by means of regular triangular sets.")) (|extend| (((|List| $) (|List| |#4|) (|List| $)) "\\spad{extend(lp,{}lts)} returns the same as \\spad{concat([extend(lp,{}ts) for ts in lts])|}") (((|List| $) (|List| |#4|) $) "\\spad{extend(lp,{}ts)} returns \\spad{ts} if \\spad{empty? lp} \\spad{extend(p,{}ts)} if \\spad{lp = [p]} else \\spad{extend(first lp,{} extend(rest lp,{} ts))}") (((|List| $) |#4| (|List| $)) "\\spad{extend(p,{}lts)} returns the same as \\spad{concat([extend(p,{}ts) for ts in lts])|}") (((|List| $) |#4| $) "\\spad{extend(p,{}ts)} assumes that \\spad{p} is a non-constant polynomial whose main variable is greater than any variable of \\spad{ts}. Then it returns a split of Kalkbrener of \\spad{ts+p}. This may not be \\spad{ts+p} itself,{} if for instance \\spad{ts+p} is not a regular triangular set.")) (|internalAugment| (($ (|List| |#4|) $) "\\spad{internalAugment(lp,{}ts)} returns \\spad{ts} if \\spad{lp} is empty otherwise returns \\spad{internalAugment(rest lp,{} internalAugment(first lp,{} ts))}") (($ |#4| $) "\\spad{internalAugment(p,{}ts)} assumes that \\spad{augment(p,{}ts)} returns a singleton and returns it.")) (|augment| (((|List| $) (|List| |#4|) (|List| $)) "\\spad{augment(lp,{}lts)} returns the same as \\spad{concat([augment(lp,{}ts) for ts in lts])}") (((|List| $) (|List| |#4|) $) "\\spad{augment(lp,{}ts)} returns \\spad{ts} if \\spad{empty? lp},{} \\spad{augment(p,{}ts)} if \\spad{lp = [p]},{} otherwise \\spad{augment(first lp,{} augment(rest lp,{} ts))}") (((|List| $) |#4| (|List| $)) "\\spad{augment(p,{}lts)} returns the same as \\spad{concat([augment(p,{}ts) for ts in lts])}") (((|List| $) |#4| $) "\\spad{augment(p,{}ts)} assumes that \\spad{p} is a non-constant polynomial whose main variable is greater than any variable of \\spad{ts}. This operation assumes also that if \\spad{p} is added to \\spad{ts} the resulting set,{} say \\spad{ts+p},{} is a regular triangular set. Then it returns a split of Kalkbrener of \\spad{ts+p}. This may not be \\spad{ts+p} itself,{} if for instance \\spad{ts+p} is required to be square-free.")) (|intersect| (((|List| $) |#4| (|List| $)) "\\spad{intersect(p,{}lts)} returns the same as \\spad{intersect([p],{}lts)}") (((|List| $) (|List| |#4|) (|List| $)) "\\spad{intersect(lp,{}lts)} returns the same as \\spad{concat([intersect(lp,{}ts) for ts in lts])|}") (((|List| $) (|List| |#4|) $) "\\spad{intersect(lp,{}ts)} returns \\spad{lts} a split of Lazard of the intersection of the affine variety associated with \\spad{lp} and the regular zero set of \\spad{ts}.") (((|List| $) |#4| $) "\\spad{intersect(p,{}ts)} returns the same as \\spad{intersect([p],{}ts)}")) (|squareFreePart| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| $))) |#4| $) "\\spad{squareFreePart(p,{}ts)} returns \\spad{lpwt} such that \\spad{lpwt.i.val} is a square-free polynomial \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower},{} this polynomial being associated with \\spad{p} modulo \\spad{lpwt.i.tower},{} for every \\spad{i}. Moreover,{} the list of the \\spad{lpwt.i.tower} is a split of Kalkbrener of \\spad{ts}. WARNING: This assumes that \\spad{p} is a non-constant polynomial such that if \\spad{p} is added to \\spad{ts},{} then the resulting set is a regular triangular set.")) (|lastSubResultant| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| $))) |#4| |#4| $) "\\spad{lastSubResultant(p1,{}p2,{}ts)} returns \\spad{lpwt} such that \\spad{lpwt.i.val} is a quasi-monic \\spad{gcd} of \\spad{p1} and \\spad{p2} \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower},{} for every \\spad{i},{} and such that the list of the \\spad{lpwt.i.tower} is a split of Kalkbrener of \\spad{ts}. Moreover,{} if \\spad{p1} and \\spad{p2} do not have a non-trivial \\spad{gcd} \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower} then \\spad{lpwt.i.val} is the resultant of these polynomials \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower}. This assumes that \\spad{p1} and \\spad{p2} have the same maim variable and that this variable is greater that any variable occurring in \\spad{ts}.")) (|lastSubResultantElseSplit| (((|Union| |#4| (|List| $)) |#4| |#4| $) "\\spad{lastSubResultantElseSplit(p1,{}p2,{}ts)} returns either \\spad{g} a quasi-monic \\spad{gcd} of \\spad{p1} and \\spad{p2} \\spad{w}.\\spad{r}.\\spad{t}. the \\spad{ts} or a split of Kalkbrener of \\spad{ts}. This assumes that \\spad{p1} and \\spad{p2} have the same maim variable and that this variable is greater that any variable occurring in \\spad{ts}.")) (|invertibleSet| (((|List| $) |#4| $) "\\spad{invertibleSet(p,{}ts)} returns a split of Kalkbrener of the quotient ideal of the ideal \\axiom{\\spad{I}} by \\spad{p} where \\spad{I} is the radical of saturated of \\spad{ts}.")) (|invertible?| (((|Boolean|) |#4| $) "\\spad{invertible?(p,{}ts)} returns \\spad{true} iff \\spad{p} is invertible in the tower associated with \\spad{ts}.") (((|List| (|Record| (|:| |val| (|Boolean|)) (|:| |tower| $))) |#4| $) "\\spad{invertible?(p,{}ts)} returns \\spad{lbwt} where \\spad{lbwt.i} is the result of \\spad{invertibleElseSplit?(p,{}lbwt.i.tower)} and the list of the \\spad{(lqrwt.i).tower} is a split of Kalkbrener of \\spad{ts}.")) (|invertibleElseSplit?| (((|Union| (|Boolean|) (|List| $)) |#4| $) "\\spad{invertibleElseSplit?(p,{}ts)} returns \\spad{true} (resp. \\spad{false}) if \\spad{p} is invertible in the tower associated with \\spad{ts} or returns a split of Kalkbrener of \\spad{ts}.")) (|purelyAlgebraicLeadingMonomial?| (((|Boolean|) |#4| $) "\\spad{purelyAlgebraicLeadingMonomial?(p,{}ts)} returns \\spad{true} iff the main variable of any non-constant iterarted initial of \\spad{p} is algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}.")) (|algebraicCoefficients?| (((|Boolean|) |#4| $) "\\spad{algebraicCoefficients?(p,{}ts)} returns \\spad{true} iff every variable of \\spad{p} which is not the main one of \\spad{p} is algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}.")) (|purelyTranscendental?| (((|Boolean|) |#4| $) "\\spad{purelyTranscendental?(p,{}ts)} returns \\spad{true} iff every variable of \\spad{p} is not algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}")) (|purelyAlgebraic?| (((|Boolean|) $) "\\spad{purelyAlgebraic?(ts)} returns \\spad{true} iff for every algebraic variable \\spad{v} of \\spad{ts} we have \\spad{algebraicCoefficients?(t_v,{}ts_v_-)} where \\spad{ts_v} is \\axiomOpFrom{select}{TriangularSetCategory}(\\spad{ts},{}\\spad{v}) and \\spad{ts_v_-} is \\axiomOpFrom{collectUnder}{TriangularSetCategory}(\\spad{ts},{}\\spad{v}).") (((|Boolean|) |#4| $) "\\spad{purelyAlgebraic?(p,{}ts)} returns \\spad{true} iff every variable of \\spad{p} is algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}.")))
-((-4249 . T) (-4248 . T) (-2500 . T))
+((-4251 . T) (-4250 . T) (-2137 . T))
NIL
-(-993 R E V P TS)
+(-995 R E V P TS)
((|constructor| (NIL "An internal package for computing gcds and resultants of univariate polynomials with coefficients in a tower of simple extensions of a field.\\newline References : \\indented{1}{[1] \\spad{M}. MORENO MAZA and \\spad{R}. RIOBOO \"Computations of \\spad{gcd} over} \\indented{5}{algebraic towers of simple extensions\" In proceedings of AAECC11} \\indented{5}{Paris,{} 1995.} \\indented{1}{[2] \\spad{M}. MORENO MAZA \"Calculs de pgcd au-dessus des tours} \\indented{5}{d'extensions simples et resolution des systemes d'equations} \\indented{5}{algebriques\" These,{} Universite \\spad{P}.etM. Curie,{} Paris,{} 1997.} \\indented{1}{[3] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")) (|toseSquareFreePart| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) |#4| |#5|) "\\axiom{toseSquareFreePart(\\spad{p},{}\\spad{ts})} has the same specifications as \\axiomOpFrom{squareFreePart}{RegularTriangularSetCategory}.")) (|toseInvertibleSet| (((|List| |#5|) |#4| |#5|) "\\axiom{toseInvertibleSet(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} has the same specifications as \\axiomOpFrom{invertibleSet}{RegularTriangularSetCategory}.")) (|toseInvertible?| (((|List| (|Record| (|:| |val| (|Boolean|)) (|:| |tower| |#5|))) |#4| |#5|) "\\axiom{toseInvertible?(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} has the same specifications as \\axiomOpFrom{invertible?}{RegularTriangularSetCategory}.") (((|Boolean|) |#4| |#5|) "\\axiom{toseInvertible?(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} has the same specifications as \\axiomOpFrom{invertible?}{RegularTriangularSetCategory}.")) (|toseLastSubResultant| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) |#4| |#4| |#5|) "\\axiom{toseLastSubResultant(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} has the same specifications as \\axiomOpFrom{lastSubResultant}{RegularTriangularSetCategory}.")) (|integralLastSubResultant| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) |#4| |#4| |#5|) "\\axiom{integralLastSubResultant(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} is an internal subroutine,{} exported only for developement.")) (|internalLastSubResultant| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) (|List| (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|))) |#3| (|Boolean|)) "\\axiom{internalLastSubResultant(lpwt,{}\\spad{v},{}flag)} is an internal subroutine,{} exported only for developement.") (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) |#4| |#4| |#5| (|Boolean|) (|Boolean|)) "\\axiom{internalLastSubResultant(\\spad{p1},{}\\spad{p2},{}\\spad{ts},{}inv?,{}break?)} is an internal subroutine,{} exported only for developement.")) (|prepareSubResAlgo| (((|List| (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|))) |#4| |#4| |#5|) "\\axiom{prepareSubResAlgo(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} is an internal subroutine,{} exported only for developement.")) (|stopTableInvSet!| (((|Void|)) "\\axiom{stopTableInvSet!()} is an internal subroutine,{} exported only for developement.")) (|startTableInvSet!| (((|Void|) (|String|) (|String|) (|String|)) "\\axiom{startTableInvSet!(\\spad{s1},{}\\spad{s2},{}\\spad{s3})} is an internal subroutine,{} exported only for developement.")) (|stopTableGcd!| (((|Void|)) "\\axiom{stopTableGcd!()} is an internal subroutine,{} exported only for developement.")) (|startTableGcd!| (((|Void|) (|String|) (|String|) (|String|)) "\\axiom{startTableGcd!(\\spad{s1},{}\\spad{s2},{}\\spad{s3})} is an internal subroutine,{} exported only for developement.")))
NIL
NIL
-(-994 |f|)
+(-996 |f|)
((|constructor| (NIL "This domain implements named rules")) (|name| (((|Symbol|) $) "\\spad{name(x)} returns the symbol")))
NIL
NIL
-(-995 |Base| R -3894)
+(-997 |Base| R -3576)
((|constructor| (NIL "\\indented{1}{Rules for the pattern matcher} Author: Manuel Bronstein Date Created: 24 Oct 1988 Date Last Updated: 26 October 1993 Keywords: pattern,{} matching,{} rule.")) (|quotedOperators| (((|List| (|Symbol|)) $) "\\spad{quotedOperators(r)} returns the list of operators on the right hand side of \\spad{r} that are considered quoted,{} that is they are not evaluated during any rewrite,{} but just applied formally to their arguments.")) (|elt| ((|#3| $ |#3| (|PositiveInteger|)) "\\spad{elt(r,{}f,{}n)} or \\spad{r}(\\spad{f},{} \\spad{n}) applies the rule \\spad{r} to \\spad{f} at most \\spad{n} times.")) (|rhs| ((|#3| $) "\\spad{rhs(r)} returns the right hand side of the rule \\spad{r}.")) (|lhs| ((|#3| $) "\\spad{lhs(r)} returns the left hand side of the rule \\spad{r}.")) (|pattern| (((|Pattern| |#1|) $) "\\spad{pattern(r)} returns the pattern corresponding to the left hand side of the rule \\spad{r}.")) (|suchThat| (($ $ (|List| (|Symbol|)) (|Mapping| (|Boolean|) (|List| |#3|))) "\\spad{suchThat(r,{} [a1,{}...,{}an],{} f)} returns the rewrite rule \\spad{r} with the predicate \\spad{f(a1,{}...,{}an)} attached to it.")) (|rule| (($ |#3| |#3| (|List| (|Symbol|))) "\\spad{rule(f,{} g,{} [f1,{}...,{}fn])} creates the rewrite rule \\spad{f == eval(eval(g,{} g is f),{} [f1,{}...,{}fn])},{} that is a rule with left-hand side \\spad{f} and right-hand side \\spad{g}; The symbols \\spad{f1},{}...,{}\\spad{fn} are the operators that are considered quoted,{} that is they are not evaluated during any rewrite,{} but just applied formally to their arguments.") (($ |#3| |#3|) "\\spad{rule(f,{} g)} creates the rewrite rule: \\spad{f == eval(g,{} g is f)},{} with left-hand side \\spad{f} and right-hand side \\spad{g}.")))
NIL
NIL
-(-996 |Base| R -3894)
+(-998 |Base| R -3576)
((|constructor| (NIL "A ruleset is a set of pattern matching rules grouped together.")) (|elt| ((|#3| $ |#3| (|PositiveInteger|)) "\\spad{elt(r,{}f,{}n)} or \\spad{r}(\\spad{f},{} \\spad{n}) applies all the rules of \\spad{r} to \\spad{f} at most \\spad{n} times.")) (|rules| (((|List| (|RewriteRule| |#1| |#2| |#3|)) $) "\\spad{rules(r)} returns the rules contained in \\spad{r}.")) (|ruleset| (($ (|List| (|RewriteRule| |#1| |#2| |#3|))) "\\spad{ruleset([r1,{}...,{}rn])} creates the rule set \\spad{{r1,{}...,{}rn}}.")))
NIL
NIL
-(-997 R |ls|)
+(-999 R |ls|)
((|constructor| (NIL "\\indented{1}{A package for computing the rational univariate representation} \\indented{1}{of a zero-dimensional algebraic variety given by a regular} \\indented{1}{triangular set. This package is essentially an interface for the} \\spadtype{InternalRationalUnivariateRepresentationPackage} constructor. It is used in the \\spadtype{ZeroDimensionalSolvePackage} for solving polynomial systems with finitely many solutions.")) (|rur| (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|)) "\\spad{rur(lp,{}univ?,{}check?)} returns the same as \\spad{rur(lp,{}true)}. Moreover,{} if \\spad{check?} is \\spad{true} then the result is checked.") (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|))) "\\spad{rur(lp)} returns the same as \\spad{rur(lp,{}true)}") (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|)) (|Boolean|)) "\\spad{rur(lp,{}univ?)} returns a rational univariate representation of \\spad{lp}. This assumes that \\spad{lp} defines a regular triangular \\spad{ts} whose associated variety is zero-dimensional over \\spad{R}. \\spad{rur(lp,{}univ?)} returns a list of items \\spad{[u,{}lc]} where \\spad{u} is an irreducible univariate polynomial and each \\spad{c} in \\spad{lc} involves two variables: one from \\spad{ls},{} called the coordinate of \\spad{c},{} and an extra variable which represents any root of \\spad{u}. Every root of \\spad{u} leads to a tuple of values for the coordinates of \\spad{lc}. Moreover,{} a point \\spad{x} belongs to the variety associated with \\spad{lp} iff there exists an item \\spad{[u,{}lc]} in \\spad{rur(lp,{}univ?)} and a root \\spad{r} of \\spad{u} such that \\spad{x} is given by the tuple of values for the coordinates of \\spad{lc} evaluated at \\spad{r}. If \\spad{univ?} is \\spad{true} then each polynomial \\spad{c} will have a constant leading coefficient \\spad{w}.\\spad{r}.\\spad{t}. its coordinate. See the example which illustrates the \\spadtype{ZeroDimensionalSolvePackage} package constructor.")))
NIL
NIL
-(-998 UP SAE UPA)
+(-1000 UP SAE UPA)
((|constructor| (NIL "Factorization of univariate polynomials with coefficients in an algebraic extension of the rational numbers (\\spadtype{Fraction Integer}).")) (|factor| (((|Factored| |#3|) |#3|) "\\spad{factor(p)} returns a prime factorisation of \\spad{p}.")))
NIL
NIL
-(-999 R UP M)
+(-1001 R UP M)
((|constructor| (NIL "Domain which represents simple algebraic extensions of arbitrary rings. The first argument to the domain,{} \\spad{R},{} is the underlying ring,{} the second argument is a domain of univariate polynomials over \\spad{K},{} while the last argument specifies the defining minimal polynomial. The elements of the domain are canonically represented as polynomials of degree less than that of the minimal polynomial with coefficients in \\spad{R}. The second argument is both the type of the third argument and the underlying representation used by \\spadtype{SAE} itself.")))
-((-4241 |has| |#1| (-339)) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-325))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-325)))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-344))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-211))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (QUOTE (-325)))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087))))) (-12 (|HasCategory| |#1| (QUOTE (-325))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087))))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| |#1| (QUOTE (-211))) (|HasCategory| |#1| (QUOTE (-339)))))
-(-1000 UP SAE UPA)
+((-4243 |has| |#1| (-341)) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-327))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-327)))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-346))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-213))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (QUOTE (-327)))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089))))) (-12 (|HasCategory| |#1| (QUOTE (-327))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089))))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| |#1| (QUOTE (-213))) (|HasCategory| |#1| (QUOTE (-341)))))
+(-1002 UP SAE UPA)
((|constructor| (NIL "Factorization of univariate polynomials with coefficients in an algebraic extension of \\spadtype{Fraction Polynomial Integer}.")) (|factor| (((|Factored| |#3|) |#3|) "\\spad{factor(p)} returns a prime factorisation of \\spad{p}.")))
NIL
NIL
-(-1001)
+(-1003)
((|constructor| (NIL "This trivial domain lets us build Univariate Polynomials in an anonymous variable")))
NIL
NIL
-(-1002 S)
+(-1004 S)
((|constructor| (NIL "\\indented{1}{Cache of elements in a set} Author: Manuel Bronstein Date Created: 31 Oct 1988 Date Last Updated: 14 May 1991 \\indented{2}{A sorted cache of a cachable set \\spad{S} is a dynamic structure that} \\indented{2}{keeps the elements of \\spad{S} sorted and assigns an integer to each} \\indented{2}{element of \\spad{S} once it is in the cache. This way,{} equality and ordering} \\indented{2}{on \\spad{S} are tested directly on the integers associated with the elements} \\indented{2}{of \\spad{S},{} once they have been entered in the cache.}")) (|enterInCache| ((|#1| |#1| (|Mapping| (|Integer|) |#1| |#1|)) "\\spad{enterInCache(x,{} f)} enters \\spad{x} in the cache,{} calling \\spad{f(x,{} y)} to determine whether \\spad{x < y (f(x,{}y) < 0),{} x = y (f(x,{}y) = 0)},{} or \\spad{x > y (f(x,{}y) > 0)}. It returns \\spad{x} with an integer associated with it.") ((|#1| |#1| (|Mapping| (|Boolean|) |#1|)) "\\spad{enterInCache(x,{} f)} enters \\spad{x} in the cache,{} calling \\spad{f(y)} to determine whether \\spad{x} is equal to \\spad{y}. It returns \\spad{x} with an integer associated with it.")) (|cache| (((|List| |#1|)) "\\spad{cache()} returns the current cache as a list.")) (|clearCache| (((|Void|)) "\\spad{clearCache()} empties the cache.")))
NIL
NIL
-(-1003)
+(-1005)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: October 24,{} 2007 Date Last Modified: January 18,{} 2008. A `Scope' is a sequence of contours.")) (|currentCategoryFrame| (($) "\\spad{currentCategoryFrame()} returns the category frame currently in effect.")) (|currentScope| (($) "\\spad{currentScope()} returns the scope currently in effect")) (|pushNewContour| (($ (|Binding|) $) "\\spad{pushNewContour(b,{}s)} pushs a new contour with sole binding \\spad{`b'}.")) (|findBinding| (((|Union| (|Binding|) "failed") (|Symbol|) $) "\\spad{findBinding(n,{}s)} returns the first binding of \\spad{`n'} in \\spad{`s'}; otherwise `failed'.")) (|contours| (((|List| (|Contour|)) $) "\\spad{contours(s)} returns the list of contours in scope \\spad{s}.")) (|empty| (($) "\\spad{empty()} returns an empty scope.")))
NIL
NIL
-(-1004 R)
+(-1006 R)
((|constructor| (NIL "StructuralConstantsPackage provides functions creating structural constants from a multiplication tables or a basis of a matrix algebra and other useful functions in this context.")) (|coordinates| (((|Vector| |#1|) (|Matrix| |#1|) (|List| (|Matrix| |#1|))) "\\spad{coordinates(a,{}[v1,{}...,{}vn])} returns the coordinates of \\spad{a} with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}.")) (|structuralConstants| (((|Vector| (|Matrix| |#1|)) (|List| (|Matrix| |#1|))) "\\spad{structuralConstants(basis)} takes the \\spad{basis} of a matrix algebra,{} \\spadignore{e.g.} the result of \\spadfun{basisOfCentroid} and calculates the structural constants. Note,{} that the it is not checked,{} whether \\spad{basis} really is a \\spad{basis} of a matrix algebra.") (((|Vector| (|Matrix| (|Polynomial| |#1|))) (|List| (|Symbol|)) (|Matrix| (|Polynomial| |#1|))) "\\spad{structuralConstants(ls,{}mt)} determines the structural constants of an algebra with generators \\spad{ls} and multiplication table \\spad{mt},{} the entries of which must be given as linear polynomials in the indeterminates given by \\spad{ls}. The result is in particular useful \\indented{1}{as fourth argument for \\spadtype{AlgebraGivenByStructuralConstants}} \\indented{1}{and \\spadtype{GenericNonAssociativeAlgebra}.}") (((|Vector| (|Matrix| (|Fraction| (|Polynomial| |#1|)))) (|List| (|Symbol|)) (|Matrix| (|Fraction| (|Polynomial| |#1|)))) "\\spad{structuralConstants(ls,{}mt)} determines the structural constants of an algebra with generators \\spad{ls} and multiplication table \\spad{mt},{} the entries of which must be given as linear polynomials in the indeterminates given by \\spad{ls}. The result is in particular useful \\indented{1}{as fourth argument for \\spadtype{AlgebraGivenByStructuralConstants}} \\indented{1}{and \\spadtype{GenericNonAssociativeAlgebra}.}")))
NIL
NIL
-(-1005 R)
+(-1007 R)
((|constructor| (NIL "\\spadtype{SequentialDifferentialPolynomial} implements an ordinary differential polynomial ring in arbitrary number of differential indeterminates,{} with coefficients in a ring. The ranking on the differential indeterminate is sequential. \\blankline")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-840))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| (-1006 (-1087)) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasCategory| (-1006 (-1087)) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| (-1006 (-1087)) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355)))))) (-12 (|HasCategory| (-1006 (-1087)) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523)))))) (-12 (|HasCategory| (-1006 (-1087)) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499))))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-211))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-339))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasAttribute| |#1| (QUOTE -4246)) (|HasCategory| |#1| (QUOTE (-427))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-134)))))
-(-1006 S)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-842))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| (-1008 (-1089)) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasCategory| (-1008 (-1089)) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| (-1008 (-1089)) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357)))))) (-12 (|HasCategory| (-1008 (-1089)) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525)))))) (-12 (|HasCategory| (-1008 (-1089)) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501))))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-213))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-341))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasAttribute| |#1| (QUOTE -4248)) (|HasCategory| |#1| (QUOTE (-429))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-136)))))
+(-1008 S)
((|constructor| (NIL "\\spadtype{OrderlyDifferentialVariable} adds a commonly used sequential ranking to the set of derivatives of an ordered list of differential indeterminates. A sequential ranking is a ranking \\spadfun{<} of the derivatives with the property that for any derivative \\spad{v},{} there are only a finite number of derivatives \\spad{u} with \\spad{u} \\spadfun{<} \\spad{v}. This domain belongs to \\spadtype{DifferentialVariableCategory}. It defines \\spadfun{weight} to be just \\spadfun{order},{} and it defines a sequential ranking \\spadfun{<} on derivatives \\spad{u} by the lexicographic order on the pair (\\spadfun{variable}(\\spad{u}),{} \\spadfun{order}(\\spad{u})).")))
NIL
NIL
-(-1007 R S)
+(-1009 R S)
((|constructor| (NIL "This package provides operations for mapping functions onto segments.")) (|map| (((|List| |#2|) (|Mapping| |#2| |#1|) (|Segment| |#1|)) "\\spad{map(f,{}s)} expands the segment \\spad{s},{} applying \\spad{f} to each value. For example,{} if \\spad{s = l..h by k},{} then the list \\spad{[f(l),{} f(l+k),{}...,{} f(lN)]} is computed,{} where \\spad{lN <= h < lN+k}.") (((|Segment| |#2|) (|Mapping| |#2| |#1|) (|Segment| |#1|)) "\\spad{map(f,{}l..h)} returns a new segment \\spad{f(l)..f(h)}.")))
NIL
-((|HasCategory| |#1| (QUOTE (-784))))
-(-1008 R S)
+((|HasCategory| |#1| (QUOTE (-786))))
+(-1010 R S)
((|constructor| (NIL "This package provides operations for mapping functions onto \\spadtype{SegmentBinding}\\spad{s}.")) (|map| (((|SegmentBinding| |#2|) (|Mapping| |#2| |#1|) (|SegmentBinding| |#1|)) "\\spad{map(f,{}v=a..b)} returns the value given by \\spad{v=f(a)..f(b)}.")))
NIL
NIL
-(-1009 S)
+(-1011 S)
((|constructor| (NIL "This domain is used to provide the function argument syntax \\spad{v=a..b}. This is used,{} for example,{} by the top-level \\spadfun{draw} functions.")) (|segment| (((|Segment| |#1|) $) "\\spad{segment(segb)} returns the segment from the right hand side of the \\spadtype{SegmentBinding}. For example,{} if \\spad{segb} is \\spad{v=a..b},{} then \\spad{segment(segb)} returns \\spad{a..b}.")) (|variable| (((|Symbol|) $) "\\spad{variable(segb)} returns the variable from the left hand side of the \\spadtype{SegmentBinding}. For example,{} if \\spad{segb} is \\spad{v=a..b},{} then \\spad{variable(segb)} returns \\spad{v}.")) (|equation| (($ (|Symbol|) (|Segment| |#1|)) "\\spad{equation(v,{}a..b)} creates a segment binding value with variable \\spad{v} and segment \\spad{a..b}. Note that the interpreter parses \\spad{v=a..b} to this form.")))
NIL
-((|HasCategory| |#1| (QUOTE (-1016))))
-(-1010 S)
+((|HasCategory| |#1| (QUOTE (-1018))))
+(-1012 S)
((|constructor| (NIL "This category provides operations on ranges,{} or {\\em segments} as they are called.")) (|convert| (($ |#1|) "\\spad{convert(i)} creates the segment \\spad{i..i}.")) (|segment| (($ |#1| |#1|) "\\spad{segment(i,{}j)} is an alternate way to create the segment \\spad{i..j}.")) (|incr| (((|Integer|) $) "\\spad{incr(s)} returns \\spad{n},{} where \\spad{s} is a segment in which every \\spad{n}\\spad{-}th element is used. Note: \\spad{incr(l..h by n) = n}.")) (|high| ((|#1| $) "\\spad{high(s)} returns the second endpoint of \\spad{s}. Note: \\spad{high(l..h) = h}.")) (|low| ((|#1| $) "\\spad{low(s)} returns the first endpoint of \\spad{s}. Note: \\spad{low(l..h) = l}.")) (|hi| ((|#1| $) "\\spad{\\spad{hi}(s)} returns the second endpoint of \\spad{s}. Note: \\spad{\\spad{hi}(l..h) = h}.")) (|lo| ((|#1| $) "\\spad{lo(s)} returns the first endpoint of \\spad{s}. Note: \\spad{lo(l..h) = l}.")) (BY (($ $ (|Integer|)) "\\spad{s by n} creates a new segment in which only every \\spad{n}\\spad{-}th element is used.")) (SEGMENT (($ |#1| |#1|) "\\spad{l..h} creates a segment with \\spad{l} and \\spad{h} as the endpoints.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-1011 S)
+(-1013 S)
((|constructor| (NIL "This type is used to specify a range of values from type \\spad{S}.")))
NIL
-((|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1016))))
-(-1012 S L)
+((|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1018))))
+(-1014 S L)
((|constructor| (NIL "This category provides an interface for expanding segments to a stream of elements.")) (|map| ((|#2| (|Mapping| |#1| |#1|) $) "\\spad{map(f,{}l..h by k)} produces a value of type \\spad{L} by applying \\spad{f} to each of the succesive elements of the segment,{} that is,{} \\spad{[f(l),{} f(l+k),{} ...,{} f(lN)]},{} where \\spad{lN <= h < lN+k}.")) (|expand| ((|#2| $) "\\spad{expand(l..h by k)} creates value of type \\spad{L} with elements \\spad{l,{} l+k,{} ... lN} where \\spad{lN <= h < lN+k}. For example,{} \\spad{expand(1..5 by 2) = [1,{}3,{}5]}.") ((|#2| (|List| $)) "\\spad{expand(l)} creates a new value of type \\spad{L} in which each segment \\spad{l..h by k} is replaced with \\spad{l,{} l+k,{} ... lN},{} where \\spad{lN <= h < lN+k}. For example,{} \\spad{expand [1..4,{} 7..9] = [1,{}2,{}3,{}4,{}7,{}8,{}9]}.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-1013 A S)
+(-1015 A S)
((|constructor| (NIL "A set category lists a collection of set-theoretic operations useful for both finite sets and multisets. Note however that finite sets are distinct from multisets. Although the operations defined for set categories are common to both,{} the relationship between the two cannot be described by inclusion or inheritance.")) (|union| (($ |#2| $) "\\spad{union(x,{}u)} returns the set aggregate \\spad{u} with the element \\spad{x} added. If \\spad{u} already contains \\spad{x},{} \\axiom{union(\\spad{x},{}\\spad{u})} returns a copy of \\spad{u}.") (($ $ |#2|) "\\spad{union(u,{}x)} returns the set aggregate \\spad{u} with the element \\spad{x} added. If \\spad{u} already contains \\spad{x},{} \\axiom{union(\\spad{u},{}\\spad{x})} returns a copy of \\spad{u}.") (($ $ $) "\\spad{union(u,{}v)} returns the set aggregate of elements which are members of either set aggregate \\spad{u} or \\spad{v}.")) (|subset?| (((|Boolean|) $ $) "\\spad{subset?(u,{}v)} tests if \\spad{u} is a subset of \\spad{v}. Note: equivalent to \\axiom{reduce(and,{}{member?(\\spad{x},{}\\spad{v}) for \\spad{x} in \\spad{u}},{}\\spad{true},{}\\spad{false})}.")) (|symmetricDifference| (($ $ $) "\\spad{symmetricDifference(u,{}v)} returns the set aggregate of elements \\spad{x} which are members of set aggregate \\spad{u} or set aggregate \\spad{v} but not both. If \\spad{u} and \\spad{v} have no elements in common,{} \\axiom{symmetricDifference(\\spad{u},{}\\spad{v})} returns a copy of \\spad{u}. Note: \\axiom{symmetricDifference(\\spad{u},{}\\spad{v}) = union(difference(\\spad{u},{}\\spad{v}),{}difference(\\spad{v},{}\\spad{u}))}")) (|difference| (($ $ |#2|) "\\spad{difference(u,{}x)} returns the set aggregate \\spad{u} with element \\spad{x} removed. If \\spad{u} does not contain \\spad{x},{} a copy of \\spad{u} is returned. Note: \\axiom{difference(\\spad{s},{} \\spad{x}) = difference(\\spad{s},{} {\\spad{x}})}.") (($ $ $) "\\spad{difference(u,{}v)} returns the set aggregate \\spad{w} consisting of elements in set aggregate \\spad{u} but not in set aggregate \\spad{v}. If \\spad{u} and \\spad{v} have no elements in common,{} \\axiom{difference(\\spad{u},{}\\spad{v})} returns a copy of \\spad{u}. Note: equivalent to the notation (not currently supported) \\axiom{{\\spad{x} for \\spad{x} in \\spad{u} | not member?(\\spad{x},{}\\spad{v})}}.")) (|intersect| (($ $ $) "\\spad{intersect(u,{}v)} returns the set aggregate \\spad{w} consisting of elements common to both set aggregates \\spad{u} and \\spad{v}. Note: equivalent to the notation (not currently supported) {\\spad{x} for \\spad{x} in \\spad{u} | member?(\\spad{x},{}\\spad{v})}.")) (|set| (($ (|List| |#2|)) "\\spad{set([x,{}y,{}...,{}z])} creates a set aggregate containing items \\spad{x},{}\\spad{y},{}...,{}\\spad{z}.") (($) "\\spad{set()}\\$\\spad{D} creates an empty set aggregate of type \\spad{D}.")) (|brace| (($ (|List| |#2|)) "\\spad{brace([x,{}y,{}...,{}z])} creates a set aggregate containing items \\spad{x},{}\\spad{y},{}...,{}\\spad{z}. This form is considered obsolete. Use \\axiomFun{set} instead.") (($) "\\spad{brace()}\\$\\spad{D} (otherwise written {}\\$\\spad{D}) creates an empty set aggregate of type \\spad{D}. This form is considered obsolete. Use \\axiomFun{set} instead.")) (< (((|Boolean|) $ $) "\\spad{s < t} returns \\spad{true} if all elements of set aggregate \\spad{s} are also elements of set aggregate \\spad{t}.")))
NIL
NIL
-(-1014 S)
+(-1016 S)
((|constructor| (NIL "A set category lists a collection of set-theoretic operations useful for both finite sets and multisets. Note however that finite sets are distinct from multisets. Although the operations defined for set categories are common to both,{} the relationship between the two cannot be described by inclusion or inheritance.")) (|union| (($ |#1| $) "\\spad{union(x,{}u)} returns the set aggregate \\spad{u} with the element \\spad{x} added. If \\spad{u} already contains \\spad{x},{} \\axiom{union(\\spad{x},{}\\spad{u})} returns a copy of \\spad{u}.") (($ $ |#1|) "\\spad{union(u,{}x)} returns the set aggregate \\spad{u} with the element \\spad{x} added. If \\spad{u} already contains \\spad{x},{} \\axiom{union(\\spad{u},{}\\spad{x})} returns a copy of \\spad{u}.") (($ $ $) "\\spad{union(u,{}v)} returns the set aggregate of elements which are members of either set aggregate \\spad{u} or \\spad{v}.")) (|subset?| (((|Boolean|) $ $) "\\spad{subset?(u,{}v)} tests if \\spad{u} is a subset of \\spad{v}. Note: equivalent to \\axiom{reduce(and,{}{member?(\\spad{x},{}\\spad{v}) for \\spad{x} in \\spad{u}},{}\\spad{true},{}\\spad{false})}.")) (|symmetricDifference| (($ $ $) "\\spad{symmetricDifference(u,{}v)} returns the set aggregate of elements \\spad{x} which are members of set aggregate \\spad{u} or set aggregate \\spad{v} but not both. If \\spad{u} and \\spad{v} have no elements in common,{} \\axiom{symmetricDifference(\\spad{u},{}\\spad{v})} returns a copy of \\spad{u}. Note: \\axiom{symmetricDifference(\\spad{u},{}\\spad{v}) = union(difference(\\spad{u},{}\\spad{v}),{}difference(\\spad{v},{}\\spad{u}))}")) (|difference| (($ $ |#1|) "\\spad{difference(u,{}x)} returns the set aggregate \\spad{u} with element \\spad{x} removed. If \\spad{u} does not contain \\spad{x},{} a copy of \\spad{u} is returned. Note: \\axiom{difference(\\spad{s},{} \\spad{x}) = difference(\\spad{s},{} {\\spad{x}})}.") (($ $ $) "\\spad{difference(u,{}v)} returns the set aggregate \\spad{w} consisting of elements in set aggregate \\spad{u} but not in set aggregate \\spad{v}. If \\spad{u} and \\spad{v} have no elements in common,{} \\axiom{difference(\\spad{u},{}\\spad{v})} returns a copy of \\spad{u}. Note: equivalent to the notation (not currently supported) \\axiom{{\\spad{x} for \\spad{x} in \\spad{u} | not member?(\\spad{x},{}\\spad{v})}}.")) (|intersect| (($ $ $) "\\spad{intersect(u,{}v)} returns the set aggregate \\spad{w} consisting of elements common to both set aggregates \\spad{u} and \\spad{v}. Note: equivalent to the notation (not currently supported) {\\spad{x} for \\spad{x} in \\spad{u} | member?(\\spad{x},{}\\spad{v})}.")) (|set| (($ (|List| |#1|)) "\\spad{set([x,{}y,{}...,{}z])} creates a set aggregate containing items \\spad{x},{}\\spad{y},{}...,{}\\spad{z}.") (($) "\\spad{set()}\\$\\spad{D} creates an empty set aggregate of type \\spad{D}.")) (|brace| (($ (|List| |#1|)) "\\spad{brace([x,{}y,{}...,{}z])} creates a set aggregate containing items \\spad{x},{}\\spad{y},{}...,{}\\spad{z}. This form is considered obsolete. Use \\axiomFun{set} instead.") (($) "\\spad{brace()}\\$\\spad{D} (otherwise written {}\\$\\spad{D}) creates an empty set aggregate of type \\spad{D}. This form is considered obsolete. Use \\axiomFun{set} instead.")) (< (((|Boolean|) $ $) "\\spad{s < t} returns \\spad{true} if all elements of set aggregate \\spad{s} are also elements of set aggregate \\spad{t}.")))
-((-4238 . T) (-2500 . T))
+((-4240 . T) (-2137 . T))
NIL
-(-1015 S)
+(-1017 S)
((|constructor| (NIL "\\spadtype{SetCategory} is the basic category for describing a collection of elements with \\spadop{=} (equality) and \\spadfun{coerce} to output form. \\blankline Conditional Attributes: \\indented{3}{canonical\\tab{15}data structure equality is the same as \\spadop{=}}")) (|latex| (((|String|) $) "\\spad{latex(s)} returns a LaTeX-printable output representation of \\spad{s}.")) (|hash| (((|SingleInteger|) $) "\\spad{hash(s)} calculates a hash code for \\spad{s}.")))
NIL
NIL
-(-1016)
+(-1018)
((|constructor| (NIL "\\spadtype{SetCategory} is the basic category for describing a collection of elements with \\spadop{=} (equality) and \\spadfun{coerce} to output form. \\blankline Conditional Attributes: \\indented{3}{canonical\\tab{15}data structure equality is the same as \\spadop{=}}")) (|latex| (((|String|) $) "\\spad{latex(s)} returns a LaTeX-printable output representation of \\spad{s}.")) (|hash| (((|SingleInteger|) $) "\\spad{hash(s)} calculates a hash code for \\spad{s}.")))
NIL
NIL
-(-1017 |m| |n|)
+(-1019 |m| |n|)
((|constructor| (NIL "\\spadtype{SetOfMIntegersInOneToN} implements the subsets of \\spad{M} integers in the interval \\spad{[1..n]}")) (|delta| (((|NonNegativeInteger|) $ (|PositiveInteger|) (|PositiveInteger|)) "\\spad{delta(S,{}k,{}p)} returns the number of elements of \\spad{S} which are strictly between \\spad{p} and the \\spad{k^}{th} element of \\spad{S}.")) (|member?| (((|Boolean|) (|PositiveInteger|) $) "\\spad{member?(p,{} s)} returns \\spad{true} is \\spad{p} is in \\spad{s},{} \\spad{false} otherwise.")) (|enumerate| (((|Vector| $)) "\\spad{enumerate()} returns a vector of all the sets of \\spad{M} integers in \\spad{1..n}.")) (|setOfMinN| (($ (|List| (|PositiveInteger|))) "\\spad{setOfMinN([a_1,{}...,{}a_m])} returns the set {a_1,{}...,{}a_m}. Error if {a_1,{}...,{}a_m} is not a set of \\spad{M} integers in \\spad{1..n}.")) (|elements| (((|List| (|PositiveInteger|)) $) "\\spad{elements(S)} returns the list of the elements of \\spad{S} in increasing order.")) (|replaceKthElement| (((|Union| $ "failed") $ (|PositiveInteger|) (|PositiveInteger|)) "\\spad{replaceKthElement(S,{}k,{}p)} replaces the \\spad{k^}{th} element of \\spad{S} by \\spad{p},{} and returns \"failed\" if the result is not a set of \\spad{M} integers in \\spad{1..n} any more.")) (|incrementKthElement| (((|Union| $ "failed") $ (|PositiveInteger|)) "\\spad{incrementKthElement(S,{}k)} increments the \\spad{k^}{th} element of \\spad{S},{} and returns \"failed\" if the result is not a set of \\spad{M} integers in \\spad{1..n} any more.")))
NIL
NIL
-(-1018 S)
+(-1020 S)
((|constructor| (NIL "A set over a domain \\spad{D} models the usual mathematical notion of a finite set of elements from \\spad{D}. Sets are unordered collections of distinct elements (that is,{} order and duplication does not matter). The notation \\spad{set [a,{}b,{}c]} can be used to create a set and the usual operations such as union and intersection are available to form new sets. In our implementation,{} \\Language{} maintains the entries in sorted order. Specifically,{} the parts function returns the entries as a list in ascending order and the extract operation returns the maximum entry. Given two sets \\spad{s} and \\spad{t} where \\spad{\\#s = m} and \\spad{\\#t = n},{} the complexity of \\indented{2}{\\spad{s = t} is \\spad{O(min(n,{}m))}} \\indented{2}{\\spad{s < t} is \\spad{O(max(n,{}m))}} \\indented{2}{\\spad{union(s,{}t)},{} \\spad{intersect(s,{}t)},{} \\spad{minus(s,{}t)},{} \\spad{symmetricDifference(s,{}t)} is \\spad{O(max(n,{}m))}} \\indented{2}{\\spad{member(x,{}t)} is \\spad{O(n log n)}} \\indented{2}{\\spad{insert(x,{}t)} and \\spad{remove(x,{}t)} is \\spad{O(n)}}")))
-((-4248 . T) (-4238 . T) (-4249 . T))
-((-3255 (-12 (|HasCategory| |#1| (QUOTE (-344))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (QUOTE (-344))) (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-786))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-1019 |Str| |Sym| |Int| |Flt| |Expr|)
+((-4250 . T) (-4240 . T) (-4251 . T))
+((-3321 (-12 (|HasCategory| |#1| (QUOTE (-346))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (QUOTE (-346))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-788))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-1021 |Str| |Sym| |Int| |Flt| |Expr|)
((|constructor| (NIL "This category allows the manipulation of Lisp values while keeping the grunge fairly localized.")) (|elt| (($ $ (|List| (|Integer|))) "\\spad{elt((a1,{}...,{}an),{} [i1,{}...,{}im])} returns \\spad{(a_i1,{}...,{}a_im)}.") (($ $ (|Integer|)) "\\spad{elt((a1,{}...,{}an),{} i)} returns \\spad{\\spad{ai}}.")) (|#| (((|Integer|) $) "\\spad{\\#((a1,{}...,{}an))} returns \\spad{n}.")) (|cdr| (($ $) "\\spad{cdr((a1,{}...,{}an))} returns \\spad{(a2,{}...,{}an)}.")) (|car| (($ $) "\\spad{car((a1,{}...,{}an))} returns a1.")) (|convert| (($ |#5|) "\\spad{convert(x)} returns the Lisp atom \\spad{x}.") (($ |#4|) "\\spad{convert(x)} returns the Lisp atom \\spad{x}.") (($ |#3|) "\\spad{convert(x)} returns the Lisp atom \\spad{x}.") (($ |#2|) "\\spad{convert(x)} returns the Lisp atom \\spad{x}.") (($ |#1|) "\\spad{convert(x)} returns the Lisp atom \\spad{x}.") (($ (|List| $)) "\\spad{convert([a1,{}...,{}an])} returns the \\spad{S}-expression \\spad{(a1,{}...,{}an)}.")) (|expr| ((|#5| $) "\\spad{expr(s)} returns \\spad{s} as an element of Expr; Error: if \\spad{s} is not an atom that also belongs to Expr.")) (|float| ((|#4| $) "\\spad{float(s)} returns \\spad{s} as an element of \\spad{Flt}; Error: if \\spad{s} is not an atom that also belongs to \\spad{Flt}.")) (|integer| ((|#3| $) "\\spad{integer(s)} returns \\spad{s} as an element of Int. Error: if \\spad{s} is not an atom that also belongs to Int.")) (|symbol| ((|#2| $) "\\spad{symbol(s)} returns \\spad{s} as an element of \\spad{Sym}. Error: if \\spad{s} is not an atom that also belongs to \\spad{Sym}.")) (|string| ((|#1| $) "\\spad{string(s)} returns \\spad{s} as an element of \\spad{Str}. Error: if \\spad{s} is not an atom that also belongs to \\spad{Str}.")) (|destruct| (((|List| $) $) "\\spad{destruct((a1,{}...,{}an))} returns the list [a1,{}...,{}an].")) (|float?| (((|Boolean|) $) "\\spad{float?(s)} is \\spad{true} if \\spad{s} is an atom and belong to \\spad{Flt}.")) (|integer?| (((|Boolean|) $) "\\spad{integer?(s)} is \\spad{true} if \\spad{s} is an atom and belong to Int.")) (|symbol?| (((|Boolean|) $) "\\spad{symbol?(s)} is \\spad{true} if \\spad{s} is an atom and belong to \\spad{Sym}.")) (|string?| (((|Boolean|) $) "\\spad{string?(s)} is \\spad{true} if \\spad{s} is an atom and belong to \\spad{Str}.")) (|list?| (((|Boolean|) $) "\\spad{list?(s)} is \\spad{true} if \\spad{s} is a Lisp list,{} possibly ().")) (|pair?| (((|Boolean|) $) "\\spad{pair?(s)} is \\spad{true} if \\spad{s} has is a non-null Lisp list.")) (|atom?| (((|Boolean|) $) "\\spad{atom?(s)} is \\spad{true} if \\spad{s} is a Lisp atom.")) (|null?| (((|Boolean|) $) "\\spad{null?(s)} is \\spad{true} if \\spad{s} is the \\spad{S}-expression ().")) (|eq| (((|Boolean|) $ $) "\\spad{eq(s,{} t)} is \\spad{true} if EQ(\\spad{s},{}\\spad{t}) is \\spad{true} in Lisp.")))
NIL
NIL
-(-1020)
+(-1022)
((|constructor| (NIL "This domain allows the manipulation of the usual Lisp values.")))
NIL
NIL
-(-1021 |Str| |Sym| |Int| |Flt| |Expr|)
+(-1023 |Str| |Sym| |Int| |Flt| |Expr|)
((|constructor| (NIL "This domain allows the manipulation of Lisp values over arbitrary atomic types.")))
NIL
NIL
-(-1022 R FS)
+(-1024 R FS)
((|constructor| (NIL "\\axiomType{SimpleFortranProgram(\\spad{f},{}type)} provides a simple model of some FORTRAN subprograms,{} making it possible to coerce objects of various domains into a FORTRAN subprogram called \\axiom{\\spad{f}}. These can then be translated into legal FORTRAN code.")) (|fortran| (($ (|Symbol|) (|FortranScalarType|) |#2|) "\\spad{fortran(fname,{}ftype,{}body)} builds an object of type \\axiomType{FortranProgramCategory}. The three arguments specify the name,{} the type and the \\spad{body} of the program.")))
NIL
NIL
-(-1023 R E V P TS)
+(-1025 R E V P TS)
((|constructor| (NIL "\\indented{2}{A internal package for removing redundant quasi-components and redundant} \\indented{2}{branches when decomposing a variety by means of quasi-components} \\indented{2}{of regular triangular sets. \\newline} References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991} \\indented{5}{Tech. Report (PoSSo project)} \\indented{1}{[2] \\spad{M}. MORENO MAZA \"Calculs de pgcd au-dessus des tours} \\indented{5}{d'extensions simples et resolution des systemes d'equations} \\indented{5}{algebriques\" These,{} Universite \\spad{P}.etM. Curie,{} Paris,{} 1997.} \\indented{1}{[3] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")) (|branchIfCan| (((|Union| (|Record| (|:| |eq| (|List| |#4|)) (|:| |tower| |#5|) (|:| |ineq| (|List| |#4|))) "failed") (|List| |#4|) |#5| (|List| |#4|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{branchIfCan(leq,{}\\spad{ts},{}lineq,{}\\spad{b1},{}\\spad{b2},{}\\spad{b3},{}\\spad{b4},{}\\spad{b5})} is an internal subroutine,{} exported only for developement.")) (|prepareDecompose| (((|List| (|Record| (|:| |eq| (|List| |#4|)) (|:| |tower| |#5|) (|:| |ineq| (|List| |#4|)))) (|List| |#4|) (|List| |#5|) (|Boolean|) (|Boolean|)) "\\axiom{prepareDecompose(\\spad{lp},{}\\spad{lts},{}\\spad{b1},{}\\spad{b2})} is an internal subroutine,{} exported only for developement.")) (|removeSuperfluousCases| (((|List| (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|))) (|List| (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|)))) "\\axiom{removeSuperfluousCases(llpwt)} is an internal subroutine,{} exported only for developement.")) (|subCase?| (((|Boolean|) (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|)) (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|))) "\\axiom{subCase?(lpwt1,{}lpwt2)} is an internal subroutine,{} exported only for developement.")) (|removeSuperfluousQuasiComponents| (((|List| |#5|) (|List| |#5|)) "\\axiom{removeSuperfluousQuasiComponents(\\spad{lts})} removes from \\axiom{\\spad{lts}} any \\spad{ts} such that \\axiom{subQuasiComponent?(\\spad{ts},{}us)} holds for another \\spad{us} in \\axiom{\\spad{lts}}.")) (|subQuasiComponent?| (((|Boolean|) |#5| (|List| |#5|)) "\\axiom{subQuasiComponent?(\\spad{ts},{}lus)} returns \\spad{true} iff \\axiom{subQuasiComponent?(\\spad{ts},{}us)} holds for one \\spad{us} in \\spad{lus}.") (((|Boolean|) |#5| |#5|) "\\axiom{subQuasiComponent?(\\spad{ts},{}us)} returns \\spad{true} iff \\axiomOpFrom{internalSubQuasiComponent?(\\spad{ts},{}us)}{QuasiComponentPackage} returs \\spad{true}.")) (|internalSubQuasiComponent?| (((|Union| (|Boolean|) "failed") |#5| |#5|) "\\axiom{internalSubQuasiComponent?(\\spad{ts},{}us)} returns a boolean \\spad{b} value if the fact the regular zero set of \\axiom{us} contains that of \\axiom{\\spad{ts}} can be decided (and in that case \\axiom{\\spad{b}} gives this inclusion) otherwise returns \\axiom{\"failed\"}.")) (|infRittWu?| (((|Boolean|) (|List| |#4|) (|List| |#4|)) "\\axiom{infRittWu?(\\spad{lp1},{}\\spad{lp2})} is an internal subroutine,{} exported only for developement.")) (|internalInfRittWu?| (((|Boolean|) (|List| |#4|) (|List| |#4|)) "\\axiom{internalInfRittWu?(\\spad{lp1},{}\\spad{lp2})} is an internal subroutine,{} exported only for developement.")) (|internalSubPolSet?| (((|Boolean|) (|List| |#4|) (|List| |#4|)) "\\axiom{internalSubPolSet?(\\spad{lp1},{}\\spad{lp2})} returns \\spad{true} iff \\axiom{\\spad{lp1}} is a sub-set of \\axiom{\\spad{lp2}} assuming that these lists are sorted increasingly \\spad{w}.\\spad{r}.\\spad{t}. \\axiomOpFrom{infRittWu?}{RecursivePolynomialCategory}.")) (|subPolSet?| (((|Boolean|) (|List| |#4|) (|List| |#4|)) "\\axiom{subPolSet?(\\spad{lp1},{}\\spad{lp2})} returns \\spad{true} iff \\axiom{\\spad{lp1}} is a sub-set of \\axiom{\\spad{lp2}}.")) (|subTriSet?| (((|Boolean|) |#5| |#5|) "\\axiom{subTriSet?(\\spad{ts},{}us)} returns \\spad{true} iff \\axiom{\\spad{ts}} is a sub-set of \\axiom{us}.")) (|moreAlgebraic?| (((|Boolean|) |#5| |#5|) "\\axiom{moreAlgebraic?(\\spad{ts},{}us)} returns \\spad{false} iff \\axiom{\\spad{ts}} and \\axiom{us} are both empty,{} or \\axiom{\\spad{ts}} has less elements than \\axiom{us},{} or some variable is algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{us} and is not \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ts}}.")) (|algebraicSort| (((|List| |#5|) (|List| |#5|)) "\\axiom{algebraicSort(\\spad{lts})} sorts \\axiom{\\spad{lts}} \\spad{w}.\\spad{r}.\\spad{t} \\axiomOpFrom{supDimElseRittWu}{QuasiComponentPackage}.")) (|supDimElseRittWu?| (((|Boolean|) |#5| |#5|) "\\axiom{supDimElseRittWu(\\spad{ts},{}us)} returns \\spad{true} iff \\axiom{\\spad{ts}} has less elements than \\axiom{us} otherwise if \\axiom{\\spad{ts}} has higher rank than \\axiom{us} \\spad{w}.\\spad{r}.\\spad{t}. Riit and Wu ordering.")) (|stopTable!| (((|Void|)) "\\axiom{stopTableGcd!()} is an internal subroutine,{} exported only for developement.")) (|startTable!| (((|Void|) (|String|) (|String|) (|String|)) "\\axiom{startTableGcd!(\\spad{s1},{}\\spad{s2},{}\\spad{s3})} is an internal subroutine,{} exported only for developement.")))
NIL
NIL
-(-1024 R E V P TS)
+(-1026 R E V P TS)
((|constructor| (NIL "A internal package for computing gcds and resultants of univariate polynomials with coefficients in a tower of simple extensions of a field. There is no need to use directly this package since its main operations are available from \\spad{TS}. \\newline References : \\indented{1}{[1] \\spad{M}. MORENO MAZA and \\spad{R}. RIOBOO \"Computations of \\spad{gcd} over} \\indented{5}{algebraic towers of simple extensions\" In proceedings of AAECC11} \\indented{5}{Paris,{} 1995.} \\indented{1}{[2] \\spad{M}. MORENO MAZA \"Calculs de pgcd au-dessus des tours} \\indented{5}{d'extensions simples et resolution des systemes d'equations} \\indented{5}{algebriques\" These,{} Universite \\spad{P}.etM. Curie,{} Paris,{} 1997.} \\indented{1}{[3] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")))
NIL
NIL
-(-1025 R E V P)
+(-1027 R E V P)
((|constructor| (NIL "The category of square-free regular triangular sets. A regular triangular set \\spad{ts} is square-free if the \\spad{gcd} of any polynomial \\spad{p} in \\spad{ts} and \\spad{differentiate(p,{}mvar(p))} \\spad{w}.\\spad{r}.\\spad{t}. \\axiomOpFrom{collectUnder}{TriangularSetCategory}(\\spad{ts},{}\\axiomOpFrom{mvar}{RecursivePolynomialCategory}(\\spad{p})) has degree zero \\spad{w}.\\spad{r}.\\spad{t}. \\spad{mvar(p)}. Thus any square-free regular set defines a tower of square-free simple extensions.\\newline References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991} \\indented{1}{[2] \\spad{M}. KALKBRENER \"Algorithmic properties of polynomial rings\"} \\indented{5}{Habilitation Thesis,{} ETZH,{} Zurich,{} 1995.} \\indented{1}{[3] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")))
-((-4249 . T) (-4248 . T) (-2500 . T))
+((-4251 . T) (-4250 . T) (-2137 . T))
NIL
-(-1026)
+(-1028)
((|constructor| (NIL "SymmetricGroupCombinatoricFunctions contains combinatoric functions concerning symmetric groups and representation theory: list young tableaus,{} improper partitions,{} subsets bijection of Coleman.")) (|unrankImproperPartitions1| (((|List| (|Integer|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{unrankImproperPartitions1(n,{}m,{}k)} computes the {\\em k}\\spad{-}th improper partition of nonnegative \\spad{n} in at most \\spad{m} nonnegative parts ordered as follows: first,{} in reverse lexicographically according to their non-zero parts,{} then according to their positions (\\spadignore{i.e.} lexicographical order using {\\em subSet}: {\\em [3,{}0,{}0] < [0,{}3,{}0] < [0,{}0,{}3] < [2,{}1,{}0] < [2,{}0,{}1] < [0,{}2,{}1] < [1,{}2,{}0] < [1,{}0,{}2] < [0,{}1,{}2] < [1,{}1,{}1]}). Note: counting of subtrees is done by {\\em numberOfImproperPartitionsInternal}.")) (|unrankImproperPartitions0| (((|List| (|Integer|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{unrankImproperPartitions0(n,{}m,{}k)} computes the {\\em k}\\spad{-}th improper partition of nonnegative \\spad{n} in \\spad{m} nonnegative parts in reverse lexicographical order. Example: {\\em [0,{}0,{}3] < [0,{}1,{}2] < [0,{}2,{}1] < [0,{}3,{}0] < [1,{}0,{}2] < [1,{}1,{}1] < [1,{}2,{}0] < [2,{}0,{}1] < [2,{}1,{}0] < [3,{}0,{}0]}. Error: if \\spad{k} is negative or too big. Note: counting of subtrees is done by \\spadfunFrom{numberOfImproperPartitions}{SymmetricGroupCombinatoricFunctions}.")) (|subSet| (((|List| (|Integer|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{subSet(n,{}m,{}k)} calculates the {\\em k}\\spad{-}th {\\em m}-subset of the set {\\em 0,{}1,{}...,{}(n-1)} in the lexicographic order considered as a decreasing map from {\\em 0,{}...,{}(m-1)} into {\\em 0,{}...,{}(n-1)}. See \\spad{S}.\\spad{G}. Williamson: Theorem 1.60. Error: if not {\\em (0 <= m <= n and 0 < = k < (n choose m))}.")) (|numberOfImproperPartitions| (((|Integer|) (|Integer|) (|Integer|)) "\\spad{numberOfImproperPartitions(n,{}m)} computes the number of partitions of the nonnegative integer \\spad{n} in \\spad{m} nonnegative parts with regarding the order (improper partitions). Example: {\\em numberOfImproperPartitions (3,{}3)} is 10,{} since {\\em [0,{}0,{}3],{} [0,{}1,{}2],{} [0,{}2,{}1],{} [0,{}3,{}0],{} [1,{}0,{}2],{} [1,{}1,{}1],{} [1,{}2,{}0],{} [2,{}0,{}1],{} [2,{}1,{}0],{} [3,{}0,{}0]} are the possibilities. Note: this operation has a recursive implementation.")) (|nextPartition| (((|Vector| (|Integer|)) (|List| (|Integer|)) (|Vector| (|Integer|)) (|Integer|)) "\\spad{nextPartition(gamma,{}part,{}number)} generates the partition of {\\em number} which follows {\\em part} according to the right-to-left lexicographical order. The partition has the property that its components do not exceed the corresponding components of {\\em gamma}. the first partition is achieved by {\\em part=[]}. Also,{} {\\em []} indicates that {\\em part} is the last partition.") (((|Vector| (|Integer|)) (|Vector| (|Integer|)) (|Vector| (|Integer|)) (|Integer|)) "\\spad{nextPartition(gamma,{}part,{}number)} generates the partition of {\\em number} which follows {\\em part} according to the right-to-left lexicographical order. The partition has the property that its components do not exceed the corresponding components of {\\em gamma}. The first partition is achieved by {\\em part=[]}. Also,{} {\\em []} indicates that {\\em part} is the last partition.")) (|nextLatticePermutation| (((|List| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|)) (|Boolean|)) "\\spad{nextLatticePermutation(lambda,{}lattP,{}constructNotFirst)} generates the lattice permutation according to the proper partition {\\em lambda} succeeding the lattice permutation {\\em lattP} in lexicographical order as long as {\\em constructNotFirst} is \\spad{true}. If {\\em constructNotFirst} is \\spad{false},{} the first lattice permutation is returned. The result {\\em nil} indicates that {\\em lattP} has no successor.")) (|nextColeman| (((|Matrix| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|)) (|Matrix| (|Integer|))) "\\spad{nextColeman(alpha,{}beta,{}C)} generates the next Coleman matrix of column sums {\\em alpha} and row sums {\\em beta} according to the lexicographical order from bottom-to-top. The first Coleman matrix is achieved by {\\em C=new(1,{}1,{}0)}. Also,{} {\\em new(1,{}1,{}0)} indicates that \\spad{C} is the last Coleman matrix.")) (|makeYoungTableau| (((|Matrix| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{makeYoungTableau(lambda,{}gitter)} computes for a given lattice permutation {\\em gitter} and for an improper partition {\\em lambda} the corresponding standard tableau of shape {\\em lambda}. Notes: see {\\em listYoungTableaus}. The entries are from {\\em 0,{}...,{}n-1}.")) (|listYoungTableaus| (((|List| (|Matrix| (|Integer|))) (|List| (|Integer|))) "\\spad{listYoungTableaus(lambda)} where {\\em lambda} is a proper partition generates the list of all standard tableaus of shape {\\em lambda} by means of lattice permutations. The numbers of the lattice permutation are interpreted as column labels. Hence the contents of these lattice permutations are the conjugate of {\\em lambda}. Notes: the functions {\\em nextLatticePermutation} and {\\em makeYoungTableau} are used. The entries are from {\\em 0,{}...,{}n-1}.")) (|inverseColeman| (((|List| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|)) (|Matrix| (|Integer|))) "\\spad{inverseColeman(alpha,{}beta,{}C)}: there is a bijection from the set of matrices having nonnegative entries and row sums {\\em alpha},{} column sums {\\em beta} to the set of {\\em Salpha - Sbeta} double cosets of the symmetric group {\\em Sn}. ({\\em Salpha} is the Young subgroup corresponding to the improper partition {\\em alpha}). For such a matrix \\spad{C},{} inverseColeman(\\spad{alpha},{}\\spad{beta},{}\\spad{C}) calculates the lexicographical smallest {\\em \\spad{pi}} in the corresponding double coset. Note: the resulting permutation {\\em \\spad{pi}} of {\\em {1,{}2,{}...,{}n}} is given in list form. Notes: the inverse of this map is {\\em coleman}. For details,{} see James/Kerber.")) (|coleman| (((|Matrix| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{coleman(alpha,{}beta,{}\\spad{pi})}: there is a bijection from the set of matrices having nonnegative entries and row sums {\\em alpha},{} column sums {\\em beta} to the set of {\\em Salpha - Sbeta} double cosets of the symmetric group {\\em Sn}. ({\\em Salpha} is the Young subgroup corresponding to the improper partition {\\em alpha}). For a representing element {\\em \\spad{pi}} of such a double coset,{} coleman(\\spad{alpha},{}\\spad{beta},{}\\spad{pi}) generates the Coleman-matrix corresponding to {\\em alpha,{} beta,{} \\spad{pi}}. Note: The permutation {\\em \\spad{pi}} of {\\em {1,{}2,{}...,{}n}} has to be given in list form. Note: the inverse of this map is {\\em inverseColeman} (if {\\em \\spad{pi}} is the lexicographical smallest permutation in the coset). For details see James/Kerber.")))
NIL
NIL
-(-1027 S)
+(-1029 S)
((|constructor| (NIL "the class of all multiplicative semigroups,{} \\spadignore{i.e.} a set with an associative operation \\spadop{*}. \\blankline")) (^ (($ $ (|PositiveInteger|)) "\\spad{x^n} returns the repeated product of \\spad{x} \\spad{n} times,{} \\spadignore{i.e.} exponentiation.")) (** (($ $ (|PositiveInteger|)) "\\spad{x**n} returns the repeated product of \\spad{x} \\spad{n} times,{} \\spadignore{i.e.} exponentiation.")) (* (($ $ $) "\\spad{x*y} returns the product of \\spad{x} and \\spad{y}.")))
NIL
NIL
-(-1028)
+(-1030)
((|constructor| (NIL "the class of all multiplicative semigroups,{} \\spadignore{i.e.} a set with an associative operation \\spadop{*}. \\blankline")) (^ (($ $ (|PositiveInteger|)) "\\spad{x^n} returns the repeated product of \\spad{x} \\spad{n} times,{} \\spadignore{i.e.} exponentiation.")) (** (($ $ (|PositiveInteger|)) "\\spad{x**n} returns the repeated product of \\spad{x} \\spad{n} times,{} \\spadignore{i.e.} exponentiation.")) (* (($ $ $) "\\spad{x*y} returns the product of \\spad{x} and \\spad{y}.")))
NIL
NIL
-(-1029 |dimtot| |dim1| S)
+(-1031 |dimtot| |dim1| S)
((|constructor| (NIL "\\indented{2}{This type represents the finite direct or cartesian product of an} underlying ordered component type. The vectors are ordered as if they were split into two blocks. The dim1 parameter specifies the length of the first block. The ordering is lexicographic between the blocks but acts like \\spadtype{HomogeneousDirectProduct} within each block. This type is a suitable third argument for \\spadtype{GeneralDistributedMultivariatePolynomial}.")))
-((-4242 |has| |#3| (-973)) (-4243 |has| |#3| (-973)) (-4245 |has| |#3| (-6 -4245)) ((-4250 "*") |has| |#3| (-158)) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-339))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-344))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-784))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1016))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087)))))) (-3255 (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-1016)))) (-12 (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (QUOTE (-973)))) (-12 (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087))))) (-12 (|HasCategory| |#3| (QUOTE (-1016))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1016))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (|HasCategory| |#3| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#3| (QUOTE (-339))) (-3255 (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (QUOTE (-339))) (|HasCategory| |#3| (QUOTE (-973)))) (-3255 (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (QUOTE (-339)))) (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (QUOTE (-732))) (-3255 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (QUOTE (-784)))) (|HasCategory| |#3| (QUOTE (-784))) (|HasCategory| |#3| (QUOTE (-158))) (-3255 (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (QUOTE (-973)))) (|HasCategory| |#3| (QUOTE (-344))) (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087)))) (-3255 (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (QUOTE (-339))) (|HasCategory| |#3| (QUOTE (-344))) (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (QUOTE (-784))) (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (QUOTE (-1016)))) (-3255 (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (QUOTE (-339))) (|HasCategory| |#3| (QUOTE (-973)))) (-3255 (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (QUOTE (-339))) (|HasCategory| |#3| (QUOTE (-973)))) (-3255 (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (QUOTE (-339))) (|HasCategory| |#3| (QUOTE (-973)))) (-3255 (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (QUOTE (-973)))) (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-25)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-124)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-158)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-211)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-339)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-344)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-732)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-784)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-973)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-1016))))) (-3255 (-12 (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-158))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-339))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-344))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-732))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-784))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-1016))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523)))))) (|HasCategory| (-523) (QUOTE (-786))) (-12 (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#3| (QUOTE (-211))) (|HasCategory| |#3| (QUOTE (-973)))) (-12 (|HasCategory| |#3| (QUOTE (-973))) (|HasCategory| |#3| (LIST (QUOTE -831) (QUOTE (-1087))))) (|HasCategory| |#3| (QUOTE (-666))) (-12 (|HasCategory| |#3| (QUOTE (-1016))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523))))) (-3255 (|HasCategory| |#3| (QUOTE (-973))) (-12 (|HasCategory| |#3| (QUOTE (-1016))) (|HasCategory| |#3| (LIST (QUOTE -964) (QUOTE (-523)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#3| (QUOTE (-1016)))) (|HasAttribute| |#3| (QUOTE -4245)) (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (QUOTE (-25))) (-12 (|HasCategory| |#3| (QUOTE (-1016))) (|HasCategory| |#3| (LIST (QUOTE -286) (|devaluate| |#3|)))) (|HasCategory| |#3| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-1030 R |x|)
+((-4244 |has| |#3| (-975)) (-4245 |has| |#3| (-975)) (-4247 |has| |#3| (-6 -4247)) ((-4252 "*") |has| |#3| (-160)) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-126))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-341))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-346))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-734))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-786))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089)))))) (-3321 (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-1018)))) (-12 (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (QUOTE (-975)))) (-12 (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (|HasCategory| |#3| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#3| (QUOTE (-341))) (-3321 (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (QUOTE (-341))) (|HasCategory| |#3| (QUOTE (-975)))) (-3321 (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (QUOTE (-341)))) (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (QUOTE (-734))) (-3321 (|HasCategory| |#3| (QUOTE (-734))) (|HasCategory| |#3| (QUOTE (-786)))) (|HasCategory| |#3| (QUOTE (-786))) (|HasCategory| |#3| (QUOTE (-160))) (-3321 (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (QUOTE (-975)))) (|HasCategory| |#3| (QUOTE (-346))) (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089)))) (-3321 (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-126))) (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (QUOTE (-341))) (|HasCategory| |#3| (QUOTE (-346))) (|HasCategory| |#3| (QUOTE (-734))) (|HasCategory| |#3| (QUOTE (-786))) (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (QUOTE (-1018)))) (-3321 (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-126))) (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (QUOTE (-341))) (|HasCategory| |#3| (QUOTE (-975)))) (-3321 (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#3| (QUOTE (-126))) (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (QUOTE (-341))) (|HasCategory| |#3| (QUOTE (-975)))) (-3321 (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (QUOTE (-341))) (|HasCategory| |#3| (QUOTE (-975)))) (-3321 (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (QUOTE (-975)))) (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-25)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-126)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-160)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-213)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-341)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-346)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-734)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-786)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-975)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-1018))))) (-3321 (-12 (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-126))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-160))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-341))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-346))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-734))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-786))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525)))))) (|HasCategory| (-525) (QUOTE (-788))) (-12 (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#3| (QUOTE (-213))) (|HasCategory| |#3| (QUOTE (-975)))) (-12 (|HasCategory| |#3| (QUOTE (-975))) (|HasCategory| |#3| (LIST (QUOTE -833) (QUOTE (-1089))))) (|HasCategory| |#3| (QUOTE (-668))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525))))) (-3321 (|HasCategory| |#3| (QUOTE (-975))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -966) (QUOTE (-525)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#3| (QUOTE (-1018)))) (|HasAttribute| |#3| (QUOTE -4247)) (|HasCategory| |#3| (QUOTE (-126))) (|HasCategory| |#3| (QUOTE (-25))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -288) (|devaluate| |#3|)))) (|HasCategory| |#3| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-1032 R |x|)
((|constructor| (NIL "This package produces functions for counting etc. real roots of univariate polynomials in \\spad{x} over \\spad{R},{} which must be an OrderedIntegralDomain")) (|countRealRootsMultiple| (((|Integer|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{countRealRootsMultiple(p)} says how many real roots \\spad{p} has,{} counted with multiplicity")) (|SturmHabichtMultiple| (((|Integer|) (|UnivariatePolynomial| |#2| |#1|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{SturmHabichtMultiple(p1,{}p2)} computes \\spad{c_}{+}\\spad{-c_}{-} where \\spad{c_}{+} is the number of real roots of \\spad{p1} with p2>0 and \\spad{c_}{-} is the number of real roots of \\spad{p1} with p2<0. If p2=1 what you get is the number of real roots of \\spad{p1}.")) (|countRealRoots| (((|Integer|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{countRealRoots(p)} says how many real roots \\spad{p} has")) (|SturmHabicht| (((|Integer|) (|UnivariatePolynomial| |#2| |#1|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{SturmHabicht(p1,{}p2)} computes \\spad{c_}{+}\\spad{-c_}{-} where \\spad{c_}{+} is the number of real roots of \\spad{p1} with p2>0 and \\spad{c_}{-} is the number of real roots of \\spad{p1} with p2<0. If p2=1 what you get is the number of real roots of \\spad{p1}.")) (|SturmHabichtCoefficients| (((|List| |#1|) (|UnivariatePolynomial| |#2| |#1|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{SturmHabichtCoefficients(p1,{}p2)} computes the principal Sturm-Habicht coefficients of \\spad{p1} and \\spad{p2}")) (|SturmHabichtSequence| (((|List| (|UnivariatePolynomial| |#2| |#1|)) (|UnivariatePolynomial| |#2| |#1|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{SturmHabichtSequence(p1,{}p2)} computes the Sturm-Habicht sequence of \\spad{p1} and \\spad{p2}")) (|subresultantSequence| (((|List| (|UnivariatePolynomial| |#2| |#1|)) (|UnivariatePolynomial| |#2| |#1|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{subresultantSequence(p1,{}p2)} computes the (standard) subresultant sequence of \\spad{p1} and \\spad{p2}")))
NIL
-((|HasCategory| |#1| (QUOTE (-427))))
-(-1031 R -3894)
+((|HasCategory| |#1| (QUOTE (-429))))
+(-1033 R -3576)
((|constructor| (NIL "This package provides functions to determine the sign of an elementary function around a point or infinity.")) (|sign| (((|Union| (|Integer|) "failed") |#2| (|Symbol|) |#2| (|String|)) "\\spad{sign(f,{} x,{} a,{} s)} returns the sign of \\spad{f} as \\spad{x} nears \\spad{a} from below if \\spad{s} is \"left\",{} or above if \\spad{s} is \"right\".") (((|Union| (|Integer|) "failed") |#2| (|Symbol|) (|OrderedCompletion| |#2|)) "\\spad{sign(f,{} x,{} a)} returns the sign of \\spad{f} as \\spad{x} nears \\spad{a},{} from both sides if \\spad{a} is finite.") (((|Union| (|Integer|) "failed") |#2|) "\\spad{sign(f)} returns the sign of \\spad{f} if it is constant everywhere.")))
NIL
NIL
-(-1032 R)
+(-1034 R)
((|constructor| (NIL "Find the sign of a rational function around a point or infinity.")) (|sign| (((|Union| (|Integer|) "failed") (|Fraction| (|Polynomial| |#1|)) (|Symbol|) (|Fraction| (|Polynomial| |#1|)) (|String|)) "\\spad{sign(f,{} x,{} a,{} s)} returns the sign of \\spad{f} as \\spad{x} nears \\spad{a} from the left (below) if \\spad{s} is the string \\spad{\"left\"},{} or from the right (above) if \\spad{s} is the string \\spad{\"right\"}.") (((|Union| (|Integer|) "failed") (|Fraction| (|Polynomial| |#1|)) (|Symbol|) (|OrderedCompletion| (|Fraction| (|Polynomial| |#1|)))) "\\spad{sign(f,{} x,{} a)} returns the sign of \\spad{f} as \\spad{x} approaches \\spad{a},{} from both sides if \\spad{a} is finite.") (((|Union| (|Integer|) "failed") (|Fraction| (|Polynomial| |#1|))) "\\spad{sign f} returns the sign of \\spad{f} if it is constant everywhere.")))
NIL
NIL
-(-1033)
+(-1035)
((|constructor| (NIL "\\indented{1}{Package to allow simplify to be called on AlgebraicNumbers} by converting to EXPR(INT)")) (|simplify| (((|Expression| (|Integer|)) (|AlgebraicNumber|)) "\\spad{simplify(an)} applies simplifications to \\spad{an}")))
NIL
NIL
-(-1034)
+(-1036)
((|constructor| (NIL "SingleInteger is intended to support machine integer arithmetic.")) (|Or| (($ $ $) "\\spad{Or(n,{}m)} returns the bit-by-bit logical {\\em or} of the single integers \\spad{n} and \\spad{m}.")) (|And| (($ $ $) "\\spad{And(n,{}m)} returns the bit-by-bit logical {\\em and} of the single integers \\spad{n} and \\spad{m}.")) (|Not| (($ $) "\\spad{Not(n)} returns the bit-by-bit logical {\\em not} of the single integer \\spad{n}.")) (|xor| (($ $ $) "\\spad{xor(n,{}m)} returns the bit-by-bit logical {\\em xor} of the single integers \\spad{n} and \\spad{m}.")) (|\\/| (($ $ $) "\\spad{n} \\spad{\\/} \\spad{m} returns the bit-by-bit logical {\\em or} of the single integers \\spad{n} and \\spad{m}.")) (|/\\| (($ $ $) "\\spad{n} \\spad{/\\} \\spad{m} returns the bit-by-bit logical {\\em and} of the single integers \\spad{n} and \\spad{m}.")) (~ (($ $) "\\spad{~ n} returns the bit-by-bit logical {\\em not } of the single integer \\spad{n}.")) (|not| (($ $) "\\spad{not(n)} returns the bit-by-bit logical {\\em not} of the single integer \\spad{n}.")) (|min| (($) "\\spad{min()} returns the smallest single integer.")) (|max| (($) "\\spad{max()} returns the largest single integer.")) (|noetherian| ((|attribute|) "\\spad{noetherian} all ideals are finitely generated (in fact principal).")) (|canonicalsClosed| ((|attribute|) "\\spad{canonicalClosed} means two positives multiply to give positive.")) (|canonical| ((|attribute|) "\\spad{canonical} means that mathematical equality is implied by data structure equality.")))
-((-4236 . T) (-4240 . T) (-4235 . T) (-4246 . T) (-4247 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4238 . T) (-4242 . T) (-4237 . T) (-4248 . T) (-4249 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-1035 S)
+(-1037 S)
((|constructor| (NIL "A stack is a bag where the last item inserted is the first item extracted.")) (|depth| (((|NonNegativeInteger|) $) "\\spad{depth(s)} returns the number of elements of stack \\spad{s}. Note: \\axiom{depth(\\spad{s}) = \\spad{#s}}.")) (|top| ((|#1| $) "\\spad{top(s)} returns the top element \\spad{x} from \\spad{s}; \\spad{s} remains unchanged. Note: Use \\axiom{pop!(\\spad{s})} to obtain \\spad{x} and remove it from \\spad{s}.")) (|pop!| ((|#1| $) "\\spad{pop!(s)} returns the top element \\spad{x},{} destructively removing \\spad{x} from \\spad{s}. Note: Use \\axiom{top(\\spad{s})} to obtain \\spad{x} without removing it from \\spad{s}. Error: if \\spad{s} is empty.")) (|push!| ((|#1| |#1| $) "\\spad{push!(x,{}s)} pushes \\spad{x} onto stack \\spad{s},{} \\spadignore{i.e.} destructively changing \\spad{s} so as to have a new first (top) element \\spad{x}. Afterwards,{} pop!(\\spad{s}) produces \\spad{x} and pop!(\\spad{s}) produces the original \\spad{s}.")))
-((-4248 . T) (-4249 . T) (-2500 . T))
+((-4250 . T) (-4251 . T) (-2137 . T))
NIL
-(-1036 S |ndim| R |Row| |Col|)
+(-1038 S |ndim| R |Row| |Col|)
((|constructor| (NIL "\\spadtype{SquareMatrixCategory} is a general square matrix category which allows different representations and indexing schemes. Rows and columns may be extracted with rows returned as objects of type Row and colums returned as objects of type Col.")) (** (($ $ (|Integer|)) "\\spad{m**n} computes an integral power of the matrix \\spad{m}. Error: if the matrix is not invertible.")) (|inverse| (((|Union| $ "failed") $) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m},{} if that matrix is invertible and returns \"failed\" otherwise.")) (|minordet| ((|#3| $) "\\spad{minordet(m)} computes the determinant of the matrix \\spad{m} using minors.")) (|determinant| ((|#3| $) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}.")) (* ((|#4| |#4| $) "\\spad{r * x} is the product of the row vector \\spad{r} and the matrix \\spad{x}. Error: if the dimensions are incompatible.") ((|#5| $ |#5|) "\\spad{x * c} is the product of the matrix \\spad{x} and the column vector \\spad{c}. Error: if the dimensions are incompatible.")) (|diagonalProduct| ((|#3| $) "\\spad{diagonalProduct(m)} returns the product of the elements on the diagonal of the matrix \\spad{m}.")) (|trace| ((|#3| $) "\\spad{trace(m)} returns the trace of the matrix \\spad{m}. this is the sum of the elements on the diagonal of the matrix \\spad{m}.")) (|diagonal| ((|#4| $) "\\spad{diagonal(m)} returns a row consisting of the elements on the diagonal of the matrix \\spad{m}.")) (|diagonalMatrix| (($ (|List| |#3|)) "\\spad{diagonalMatrix(l)} returns a diagonal matrix with the elements of \\spad{l} on the diagonal.")) (|scalarMatrix| (($ |#3|) "\\spad{scalarMatrix(r)} returns an \\spad{n}-by-\\spad{n} matrix with \\spad{r}\\spad{'s} on the diagonal and zeroes elsewhere.")))
NIL
-((|HasCategory| |#3| (QUOTE (-339))) (|HasAttribute| |#3| (QUOTE (-4250 "*"))) (|HasCategory| |#3| (QUOTE (-158))))
-(-1037 |ndim| R |Row| |Col|)
+((|HasCategory| |#3| (QUOTE (-341))) (|HasAttribute| |#3| (QUOTE (-4252 "*"))) (|HasCategory| |#3| (QUOTE (-160))))
+(-1039 |ndim| R |Row| |Col|)
((|constructor| (NIL "\\spadtype{SquareMatrixCategory} is a general square matrix category which allows different representations and indexing schemes. Rows and columns may be extracted with rows returned as objects of type Row and colums returned as objects of type Col.")) (** (($ $ (|Integer|)) "\\spad{m**n} computes an integral power of the matrix \\spad{m}. Error: if the matrix is not invertible.")) (|inverse| (((|Union| $ "failed") $) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m},{} if that matrix is invertible and returns \"failed\" otherwise.")) (|minordet| ((|#2| $) "\\spad{minordet(m)} computes the determinant of the matrix \\spad{m} using minors.")) (|determinant| ((|#2| $) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}.")) (* ((|#3| |#3| $) "\\spad{r * x} is the product of the row vector \\spad{r} and the matrix \\spad{x}. Error: if the dimensions are incompatible.") ((|#4| $ |#4|) "\\spad{x * c} is the product of the matrix \\spad{x} and the column vector \\spad{c}. Error: if the dimensions are incompatible.")) (|diagonalProduct| ((|#2| $) "\\spad{diagonalProduct(m)} returns the product of the elements on the diagonal of the matrix \\spad{m}.")) (|trace| ((|#2| $) "\\spad{trace(m)} returns the trace of the matrix \\spad{m}. this is the sum of the elements on the diagonal of the matrix \\spad{m}.")) (|diagonal| ((|#3| $) "\\spad{diagonal(m)} returns a row consisting of the elements on the diagonal of the matrix \\spad{m}.")) (|diagonalMatrix| (($ (|List| |#2|)) "\\spad{diagonalMatrix(l)} returns a diagonal matrix with the elements of \\spad{l} on the diagonal.")) (|scalarMatrix| (($ |#2|) "\\spad{scalarMatrix(r)} returns an \\spad{n}-by-\\spad{n} matrix with \\spad{r}\\spad{'s} on the diagonal and zeroes elsewhere.")))
-((-2500 . T) (-4248 . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-2137 . T) (-4250 . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-1038 R |Row| |Col| M)
+(-1040 R |Row| |Col| M)
((|constructor| (NIL "\\spadtype{SmithNormalForm} is a package which provides some standard canonical forms for matrices.")) (|diophantineSystem| (((|Record| (|:| |particular| (|Union| |#3| "failed")) (|:| |basis| (|List| |#3|))) |#4| |#3|) "\\spad{diophantineSystem(A,{}B)} returns a particular integer solution and an integer basis of the equation \\spad{AX = B}.")) (|completeSmith| (((|Record| (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) "\\spad{completeSmith} returns a record that contains the Smith normal form \\spad{H} of the matrix and the left and right equivalence matrices \\spad{U} and \\spad{V} such that U*m*v = \\spad{H}")) (|smith| ((|#4| |#4|) "\\spad{smith(m)} returns the Smith Normal form of the matrix \\spad{m}.")) (|completeHermite| (((|Record| (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) "\\spad{completeHermite} returns a record that contains the Hermite normal form \\spad{H} of the matrix and the equivalence matrix \\spad{U} such that U*m = \\spad{H}")) (|hermite| ((|#4| |#4|) "\\spad{hermite(m)} returns the Hermite normal form of the matrix \\spad{m}.")))
NIL
NIL
-(-1039 R |VarSet|)
+(-1041 R |VarSet|)
((|constructor| (NIL "\\indented{2}{This type is the basic representation of sparse recursive multivariate} polynomials. It is parameterized by the coefficient ring and the variable set which may be infinite. The variable ordering is determined by the variable set parameter. The coefficient ring may be non-commutative,{} but the variables are assumed to commute.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-840))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499))))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-339))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasAttribute| |#1| (QUOTE -4246)) (|HasCategory| |#1| (QUOTE (-427))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-134)))))
-(-1040 |Coef| |Var| SMP)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-842))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501))))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-341))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasAttribute| |#1| (QUOTE -4248)) (|HasCategory| |#1| (QUOTE (-429))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-136)))))
+(-1042 |Coef| |Var| SMP)
((|constructor| (NIL "This domain provides multivariate Taylor series with variables from an arbitrary ordered set. A Taylor series is represented by a stream of polynomials from the polynomial domain \\spad{SMP}. The \\spad{n}th element of the stream is a form of degree \\spad{n}. SMTS is an internal domain.")) (|fintegrate| (($ (|Mapping| $) |#2| |#1|) "\\spad{fintegrate(f,{}v,{}c)} is the integral of \\spad{f()} with respect \\indented{1}{to \\spad{v} and having \\spad{c} as the constant of integration.} \\indented{1}{The evaluation of \\spad{f()} is delayed.}")) (|integrate| (($ $ |#2| |#1|) "\\spad{integrate(s,{}v,{}c)} is the integral of \\spad{s} with respect \\indented{1}{to \\spad{v} and having \\spad{c} as the constant of integration.}")) (|csubst| (((|Mapping| (|Stream| |#3|) |#3|) (|List| |#2|) (|List| (|Stream| |#3|))) "\\spad{csubst(a,{}b)} is for internal use only")) (* (($ |#3| $) "\\spad{smp*ts} multiplies a TaylorSeries by a monomial \\spad{SMP}.")) (|coerce| (($ |#3|) "\\spad{coerce(poly)} regroups the terms by total degree and forms a series.") (($ |#2|) "\\spad{coerce(var)} converts a variable to a Taylor series")) (|coefficient| ((|#3| $ (|NonNegativeInteger|)) "\\spad{coefficient(s,{} n)} gives the terms of total degree \\spad{n}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-134))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-339))))
-(-1041 R E V P)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-136))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-341))))
+(-1043 R E V P)
((|constructor| (NIL "The category of square-free and normalized triangular sets. Thus,{} up to the primitivity axiom of [1],{} these sets are Lazard triangular sets.\\newline References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991}")))
-((-4249 . T) (-4248 . T) (-2500 . T))
+((-4251 . T) (-4250 . T) (-2137 . T))
NIL
-(-1042 UP -3894)
+(-1044 UP -3576)
((|constructor| (NIL "This package factors the formulas out of the general solve code,{} allowing their recursive use over different domains. Care is taken to introduce few radicals so that radical extension domains can more easily simplify the results.")) (|aQuartic| ((|#2| |#2| |#2| |#2| |#2| |#2|) "\\spad{aQuartic(f,{}g,{}h,{}i,{}k)} \\undocumented")) (|aCubic| ((|#2| |#2| |#2| |#2| |#2|) "\\spad{aCubic(f,{}g,{}h,{}j)} \\undocumented")) (|aQuadratic| ((|#2| |#2| |#2| |#2|) "\\spad{aQuadratic(f,{}g,{}h)} \\undocumented")) (|aLinear| ((|#2| |#2| |#2|) "\\spad{aLinear(f,{}g)} \\undocumented")) (|quartic| (((|List| |#2|) |#2| |#2| |#2| |#2| |#2|) "\\spad{quartic(f,{}g,{}h,{}i,{}j)} \\undocumented") (((|List| |#2|) |#1|) "\\spad{quartic(u)} \\undocumented")) (|cubic| (((|List| |#2|) |#2| |#2| |#2| |#2|) "\\spad{cubic(f,{}g,{}h,{}i)} \\undocumented") (((|List| |#2|) |#1|) "\\spad{cubic(u)} \\undocumented")) (|quadratic| (((|List| |#2|) |#2| |#2| |#2|) "\\spad{quadratic(f,{}g,{}h)} \\undocumented") (((|List| |#2|) |#1|) "\\spad{quadratic(u)} \\undocumented")) (|linear| (((|List| |#2|) |#2| |#2|) "\\spad{linear(f,{}g)} \\undocumented") (((|List| |#2|) |#1|) "\\spad{linear(u)} \\undocumented")) (|mapSolve| (((|Record| (|:| |solns| (|List| |#2|)) (|:| |maps| (|List| (|Record| (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (|Mapping| |#2| |#2|)) "\\spad{mapSolve(u,{}f)} \\undocumented")) (|particularSolution| ((|#2| |#1|) "\\spad{particularSolution(u)} \\undocumented")) (|solve| (((|List| |#2|) |#1|) "\\spad{solve(u)} \\undocumented")))
NIL
NIL
-(-1043 R)
+(-1045 R)
((|constructor| (NIL "This package tries to find solutions expressed in terms of radicals for systems of equations of rational functions with coefficients in an integral domain \\spad{R}.")) (|contractSolve| (((|SuchThat| (|List| (|Expression| |#1|)) (|List| (|Equation| (|Expression| |#1|)))) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{contractSolve(rf,{}x)} finds the solutions expressed in terms of radicals of the equation \\spad{rf} = 0 with respect to the symbol \\spad{x},{} where \\spad{rf} is a rational function. The result contains new symbols for common subexpressions in order to reduce the size of the output.") (((|SuchThat| (|List| (|Expression| |#1|)) (|List| (|Equation| (|Expression| |#1|)))) (|Equation| (|Fraction| (|Polynomial| |#1|))) (|Symbol|)) "\\spad{contractSolve(eq,{}x)} finds the solutions expressed in terms of radicals of the equation of rational functions \\spad{eq} with respect to the symbol \\spad{x}. The result contains new symbols for common subexpressions in order to reduce the size of the output.")) (|radicalRoots| (((|List| (|List| (|Expression| |#1|))) (|List| (|Fraction| (|Polynomial| |#1|))) (|List| (|Symbol|))) "\\spad{radicalRoots(lrf,{}lvar)} finds the roots expressed in terms of radicals of the list of rational functions \\spad{lrf} with respect to the list of symbols \\spad{lvar}.") (((|List| (|Expression| |#1|)) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{radicalRoots(rf,{}x)} finds the roots expressed in terms of radicals of the rational function \\spad{rf} with respect to the symbol \\spad{x}.")) (|radicalSolve| (((|List| (|List| (|Equation| (|Expression| |#1|)))) (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) "\\spad{radicalSolve(leq)} finds the solutions expressed in terms of radicals of the system of equations of rational functions \\spad{leq} with respect to the unique symbol \\spad{x} appearing in \\spad{leq}.") (((|List| (|List| (|Equation| (|Expression| |#1|)))) (|List| (|Equation| (|Fraction| (|Polynomial| |#1|)))) (|List| (|Symbol|))) "\\spad{radicalSolve(leq,{}lvar)} finds the solutions expressed in terms of radicals of the system of equations of rational functions \\spad{leq} with respect to the list of symbols \\spad{lvar}.") (((|List| (|List| (|Equation| (|Expression| |#1|)))) (|List| (|Fraction| (|Polynomial| |#1|)))) "\\spad{radicalSolve(lrf)} finds the solutions expressed in terms of radicals of the system of equations \\spad{lrf} = 0,{} where \\spad{lrf} is a system of univariate rational functions.") (((|List| (|List| (|Equation| (|Expression| |#1|)))) (|List| (|Fraction| (|Polynomial| |#1|))) (|List| (|Symbol|))) "\\spad{radicalSolve(lrf,{}lvar)} finds the solutions expressed in terms of radicals of the system of equations \\spad{lrf} = 0 with respect to the list of symbols \\spad{lvar},{} where \\spad{lrf} is a list of rational functions.") (((|List| (|Equation| (|Expression| |#1|))) (|Equation| (|Fraction| (|Polynomial| |#1|)))) "\\spad{radicalSolve(eq)} finds the solutions expressed in terms of radicals of the equation of rational functions \\spad{eq} with respect to the unique symbol \\spad{x} appearing in \\spad{eq}.") (((|List| (|Equation| (|Expression| |#1|))) (|Equation| (|Fraction| (|Polynomial| |#1|))) (|Symbol|)) "\\spad{radicalSolve(eq,{}x)} finds the solutions expressed in terms of radicals of the equation of rational functions \\spad{eq} with respect to the symbol \\spad{x}.") (((|List| (|Equation| (|Expression| |#1|))) (|Fraction| (|Polynomial| |#1|))) "\\spad{radicalSolve(rf)} finds the solutions expressed in terms of radicals of the equation \\spad{rf} = 0,{} where \\spad{rf} is a univariate rational function.") (((|List| (|Equation| (|Expression| |#1|))) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{radicalSolve(rf,{}x)} finds the solutions expressed in terms of radicals of the equation \\spad{rf} = 0 with respect to the symbol \\spad{x},{} where \\spad{rf} is a rational function.")))
NIL
NIL
-(-1044 R)
+(-1046 R)
((|constructor| (NIL "This package finds the function func3 where func1 and func2 \\indented{1}{are given and\\space{2}func1 = func3(func2) .\\space{2}If there is no solution then} \\indented{1}{function func1 will be returned.} \\indented{1}{An example would be\\space{2}\\spad{func1:= 8*X**3+32*X**2-14*X ::EXPR INT} and} \\indented{1}{\\spad{func2:=2*X ::EXPR INT} convert them via univariate} \\indented{1}{to FRAC SUP EXPR INT and then the solution is \\spad{func3:=X**3+X**2-X}} \\indented{1}{of type FRAC SUP EXPR INT}")) (|unvectorise| (((|Fraction| (|SparseUnivariatePolynomial| (|Expression| |#1|))) (|Vector| (|Expression| |#1|)) (|Fraction| (|SparseUnivariatePolynomial| (|Expression| |#1|))) (|Integer|)) "\\spad{unvectorise(vect,{} var,{} n)} returns \\spad{vect(1) + vect(2)*var + ... + vect(n+1)*var**(n)} where \\spad{vect} is the vector of the coefficients of the polynomail ,{} \\spad{var} the new variable and \\spad{n} the degree.")) (|decomposeFunc| (((|Fraction| (|SparseUnivariatePolynomial| (|Expression| |#1|))) (|Fraction| (|SparseUnivariatePolynomial| (|Expression| |#1|))) (|Fraction| (|SparseUnivariatePolynomial| (|Expression| |#1|))) (|Fraction| (|SparseUnivariatePolynomial| (|Expression| |#1|)))) "\\spad{decomposeFunc(func1,{} func2,{} newvar)} returns a function func3 where \\spad{func1} = func3(\\spad{func2}) and expresses it in the new variable newvar. If there is no solution then \\spad{func1} will be returned.")))
NIL
NIL
-(-1045 R)
+(-1047 R)
((|constructor| (NIL "This package tries to find solutions of equations of type Expression(\\spad{R}). This means expressions involving transcendental,{} exponential,{} logarithmic and nthRoot functions. After trying to transform different kernels to one kernel by applying several rules,{} it calls zerosOf for the SparseUnivariatePolynomial in the remaining kernel. For example the expression \\spad{sin(x)*cos(x)-2} will be transformed to \\indented{3}{\\spad{-2 tan(x/2)**4 -2 tan(x/2)**3 -4 tan(x/2)**2 +2 tan(x/2) -2}} by using the function normalize and then to \\indented{3}{\\spad{-2 tan(x)**2 + tan(x) -2}} with help of subsTan. This function tries to express the given function in terms of \\spad{tan(x/2)} to express in terms of \\spad{tan(x)} . Other examples are the expressions \\spad{sqrt(x+1)+sqrt(x+7)+1} or \\indented{1}{\\spad{sqrt(sin(x))+1} .}")) (|solve| (((|List| (|List| (|Equation| (|Expression| |#1|)))) (|List| (|Equation| (|Expression| |#1|))) (|List| (|Symbol|))) "\\spad{solve(leqs,{} lvar)} returns a list of solutions to the list of equations \\spad{leqs} with respect to the list of symbols lvar.") (((|List| (|Equation| (|Expression| |#1|))) (|Expression| |#1|) (|Symbol|)) "\\spad{solve(expr,{}x)} finds the solutions of the equation \\spad{expr} = 0 with respect to the symbol \\spad{x} where \\spad{expr} is a function of type Expression(\\spad{R}).") (((|List| (|Equation| (|Expression| |#1|))) (|Equation| (|Expression| |#1|)) (|Symbol|)) "\\spad{solve(eq,{}x)} finds the solutions of the equation \\spad{eq} where \\spad{eq} is an equation of functions of type Expression(\\spad{R}) with respect to the symbol \\spad{x}.") (((|List| (|Equation| (|Expression| |#1|))) (|Equation| (|Expression| |#1|))) "\\spad{solve(eq)} finds the solutions of the equation \\spad{eq} where \\spad{eq} is an equation of functions of type Expression(\\spad{R}) with respect to the unique symbol \\spad{x} appearing in \\spad{eq}.") (((|List| (|Equation| (|Expression| |#1|))) (|Expression| |#1|)) "\\spad{solve(expr)} finds the solutions of the equation \\spad{expr} = 0 where \\spad{expr} is a function of type Expression(\\spad{R}) with respect to the unique symbol \\spad{x} appearing in eq.")))
NIL
NIL
-(-1046 S A)
+(-1048 S A)
((|constructor| (NIL "This package exports sorting algorithnms")) (|insertionSort!| ((|#2| |#2|) "\\spad{insertionSort! }\\undocumented") ((|#2| |#2| (|Mapping| (|Boolean|) |#1| |#1|)) "\\spad{insertionSort!(a,{}f)} \\undocumented")) (|bubbleSort!| ((|#2| |#2|) "\\spad{bubbleSort!(a)} \\undocumented") ((|#2| |#2| (|Mapping| (|Boolean|) |#1| |#1|)) "\\spad{bubbleSort!(a,{}f)} \\undocumented")))
NIL
-((|HasCategory| |#1| (QUOTE (-786))))
-(-1047 R)
+((|HasCategory| |#1| (QUOTE (-788))))
+(-1049 R)
((|constructor| (NIL "The domain ThreeSpace is used for creating three dimensional objects using functions for defining points,{} curves,{} polygons,{} constructs and the subspaces containing them.")))
NIL
NIL
-(-1048 R)
+(-1050 R)
((|constructor| (NIL "The category ThreeSpaceCategory is used for creating three dimensional objects using functions for defining points,{} curves,{} polygons,{} constructs and the subspaces containing them.")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(s)} returns the \\spadtype{ThreeSpace} \\spad{s} to Output format.")) (|subspace| (((|SubSpace| 3 |#1|) $) "\\spad{subspace(s)} returns the \\spadtype{SubSpace} which holds all the point information in the \\spadtype{ThreeSpace},{} \\spad{s}.")) (|check| (($ $) "\\spad{check(s)} returns lllpt,{} list of lists of lists of point information about the \\spadtype{ThreeSpace} \\spad{s}.")) (|objects| (((|Record| (|:| |points| (|NonNegativeInteger|)) (|:| |curves| (|NonNegativeInteger|)) (|:| |polygons| (|NonNegativeInteger|)) (|:| |constructs| (|NonNegativeInteger|))) $) "\\spad{objects(s)} returns the \\spadtype{ThreeSpace},{} \\spad{s},{} in the form of a 3D object record containing information on the number of points,{} curves,{} polygons and constructs comprising the \\spadtype{ThreeSpace}..")) (|lprop| (((|List| (|SubSpaceComponentProperty|)) $) "\\spad{lprop(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a list of subspace component properties,{} and if so,{} returns the list; An error is signaled otherwise.")) (|llprop| (((|List| (|List| (|SubSpaceComponentProperty|))) $) "\\spad{llprop(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a list of curves which are lists of the subspace component properties of the curves,{} and if so,{} returns the list of lists; An error is signaled otherwise.")) (|lllp| (((|List| (|List| (|List| (|Point| |#1|)))) $) "\\spad{lllp(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a list of components,{} which are lists of curves,{} which are lists of points,{} and if so,{} returns the list of lists of lists; An error is signaled otherwise.")) (|lllip| (((|List| (|List| (|List| (|NonNegativeInteger|)))) $) "\\spad{lllip(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a list of components,{} which are lists of curves,{} which are lists of indices to points,{} and if so,{} returns the list of lists of lists; An error is signaled otherwise.")) (|lp| (((|List| (|Point| |#1|)) $) "\\spad{lp(s)} returns the list of points component which the \\spadtype{ThreeSpace},{} \\spad{s},{} contains; these points are used by reference,{} \\spadignore{i.e.} the component holds indices referring to the points rather than the points themselves. This allows for sharing of the points.")) (|mesh?| (((|Boolean|) $) "\\spad{mesh?(s)} returns \\spad{true} if the \\spadtype{ThreeSpace} \\spad{s} is composed of one component,{} a mesh comprising a list of curves which are lists of points,{} or returns \\spad{false} if otherwise")) (|mesh| (((|List| (|List| (|Point| |#1|))) $) "\\spad{mesh(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a single surface component defined by a list curves which contain lists of points,{} and if so,{} returns the list of lists of points; An error is signaled otherwise.") (($ (|List| (|List| (|Point| |#1|))) (|Boolean|) (|Boolean|)) "\\spad{mesh([[p0],{}[p1],{}...,{}[pn]],{} close1,{} close2)} creates a surface defined over a list of curves,{} \\spad{p0} through \\spad{pn},{} which are lists of points; the booleans \\spad{close1} and close2 indicate how the surface is to be closed: \\spad{close1} set to \\spad{true} means that each individual list (a curve) is to be closed (that is,{} the last point of the list is to be connected to the first point); close2 set to \\spad{true} means that the boundary at one end of the surface is to be connected to the boundary at the other end (the boundaries are defined as the first list of points (curve) and the last list of points (curve)); the \\spadtype{ThreeSpace} containing this surface is returned.") (($ (|List| (|List| (|Point| |#1|)))) "\\spad{mesh([[p0],{}[p1],{}...,{}[pn]])} creates a surface defined by a list of curves which are lists,{} \\spad{p0} through \\spad{pn},{} of points,{} and returns a \\spadtype{ThreeSpace} whose component is the surface.") (($ $ (|List| (|List| (|List| |#1|))) (|Boolean|) (|Boolean|)) "\\spad{mesh(s,{}[ [[r10]...,{}[r1m]],{} [[r20]...,{}[r2m]],{}...,{} [[rn0]...,{}[rnm]] ],{} close1,{} close2)} adds a surface component to the \\spadtype{ThreeSpace} \\spad{s},{} which is defined over a rectangular domain of size \\spad{WxH} where \\spad{W} is the number of lists of points from the domain \\spad{PointDomain(R)} and \\spad{H} is the number of elements in each of those lists; the booleans \\spad{close1} and close2 indicate how the surface is to be closed: if \\spad{close1} is \\spad{true} this means that each individual list (a curve) is to be closed (\\spadignore{i.e.} the last point of the list is to be connected to the first point); if close2 is \\spad{true},{} this means that the boundary at one end of the surface is to be connected to the boundary at the other end (the boundaries are defined as the first list of points (curve) and the last list of points (curve)).") (($ $ (|List| (|List| (|Point| |#1|))) (|Boolean|) (|Boolean|)) "\\spad{mesh(s,{}[[p0],{}[p1],{}...,{}[pn]],{} close1,{} close2)} adds a surface component to the \\spadtype{ThreeSpace},{} which is defined over a list of curves,{} in which each of these curves is a list of points. The boolean arguments \\spad{close1} and close2 indicate how the surface is to be closed. Argument \\spad{close1} equal \\spad{true} means that each individual list (a curve) is to be closed,{} \\spadignore{i.e.} the last point of the list is to be connected to the first point. Argument close2 equal \\spad{true} means that the boundary at one end of the surface is to be connected to the boundary at the other end,{} \\spadignore{i.e.} the boundaries are defined as the first list of points (curve) and the last list of points (curve).") (($ $ (|List| (|List| (|List| |#1|))) (|List| (|SubSpaceComponentProperty|)) (|SubSpaceComponentProperty|)) "\\spad{mesh(s,{}[ [[r10]...,{}[r1m]],{} [[r20]...,{}[r2m]],{}...,{} [[rn0]...,{}[rnm]] ],{} [props],{} prop)} adds a surface component to the \\spadtype{ThreeSpace} \\spad{s},{} which is defined over a rectangular domain of size \\spad{WxH} where \\spad{W} is the number of lists of points from the domain \\spad{PointDomain(R)} and \\spad{H} is the number of elements in each of those lists; lprops is the list of the subspace component properties for each curve list,{} and prop is the subspace component property by which the points are defined.") (($ $ (|List| (|List| (|Point| |#1|))) (|List| (|SubSpaceComponentProperty|)) (|SubSpaceComponentProperty|)) "\\spad{mesh(s,{}[[p0],{}[p1],{}...,{}[pn]],{}[props],{}prop)} adds a surface component,{} defined over a list curves which contains lists of points,{} to the \\spadtype{ThreeSpace} \\spad{s}; props is a list which contains the subspace component properties for each surface parameter,{} and \\spad{prop} is the subspace component property by which the points are defined.")) (|polygon?| (((|Boolean|) $) "\\spad{polygon?(s)} returns \\spad{true} if the \\spadtype{ThreeSpace} \\spad{s} contains a single polygon component,{} or \\spad{false} otherwise.")) (|polygon| (((|List| (|Point| |#1|)) $) "\\spad{polygon(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a single polygon component defined by a list of points,{} and if so,{} returns the list of points; An error is signaled otherwise.") (($ (|List| (|Point| |#1|))) "\\spad{polygon([p0,{}p1,{}...,{}pn])} creates a polygon defined by a list of points,{} \\spad{p0} through \\spad{pn},{} and returns a \\spadtype{ThreeSpace} whose component is the polygon.") (($ $ (|List| (|List| |#1|))) "\\spad{polygon(s,{}[[r0],{}[r1],{}...,{}[rn]])} adds a polygon component defined by a list of points \\spad{r0} through \\spad{rn},{} which are lists of elements from the domain \\spad{PointDomain(m,{}R)} to the \\spadtype{ThreeSpace} \\spad{s},{} where \\spad{m} is the dimension of the points and \\spad{R} is the \\spadtype{Ring} over which the points are defined.") (($ $ (|List| (|Point| |#1|))) "\\spad{polygon(s,{}[p0,{}p1,{}...,{}pn])} adds a polygon component defined by a list of points,{} \\spad{p0} throught \\spad{pn},{} to the \\spadtype{ThreeSpace} \\spad{s}.")) (|closedCurve?| (((|Boolean|) $) "\\spad{closedCurve?(s)} returns \\spad{true} if the \\spadtype{ThreeSpace} \\spad{s} contains a single closed curve component,{} \\spadignore{i.e.} the first element of the curve is also the last element,{} or \\spad{false} otherwise.")) (|closedCurve| (((|List| (|Point| |#1|)) $) "\\spad{closedCurve(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a single closed curve component defined by a list of points in which the first point is also the last point,{} all of which are from the domain \\spad{PointDomain(m,{}R)} and if so,{} returns the list of points. An error is signaled otherwise.") (($ (|List| (|Point| |#1|))) "\\spad{closedCurve(lp)} sets a list of points defined by the first element of \\spad{lp} through the last element of \\spad{lp} and back to the first elelment again and returns a \\spadtype{ThreeSpace} whose component is the closed curve defined by \\spad{lp}.") (($ $ (|List| (|List| |#1|))) "\\spad{closedCurve(s,{}[[lr0],{}[lr1],{}...,{}[lrn],{}[lr0]])} adds a closed curve component defined by a list of points \\spad{lr0} through \\spad{lrn},{} which are lists of elements from the domain \\spad{PointDomain(m,{}R)},{} where \\spad{R} is the \\spadtype{Ring} over which the point elements are defined and \\spad{m} is the dimension of the points,{} in which the last element of the list of points contains a copy of the first element list,{} \\spad{lr0}. The closed curve is added to the \\spadtype{ThreeSpace},{} \\spad{s}.") (($ $ (|List| (|Point| |#1|))) "\\spad{closedCurve(s,{}[p0,{}p1,{}...,{}pn,{}p0])} adds a closed curve component which is a list of points defined by the first element \\spad{p0} through the last element \\spad{pn} and back to the first element \\spad{p0} again,{} to the \\spadtype{ThreeSpace} \\spad{s}.")) (|curve?| (((|Boolean|) $) "\\spad{curve?(s)} queries whether the \\spadtype{ThreeSpace},{} \\spad{s},{} is a curve,{} \\spadignore{i.e.} has one component,{} a list of list of points,{} and returns \\spad{true} if it is,{} or \\spad{false} otherwise.")) (|curve| (((|List| (|Point| |#1|)) $) "\\spad{curve(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a single curve defined by a list of points and if so,{} returns the curve,{} \\spadignore{i.e.} list of points. An error is signaled otherwise.") (($ (|List| (|Point| |#1|))) "\\spad{curve([p0,{}p1,{}p2,{}...,{}pn])} creates a space curve defined by the list of points \\spad{p0} through \\spad{pn},{} and returns the \\spadtype{ThreeSpace} whose component is the curve.") (($ $ (|List| (|List| |#1|))) "\\spad{curve(s,{}[[p0],{}[p1],{}...,{}[pn]])} adds a space curve which is a list of points \\spad{p0} through \\spad{pn} defined by lists of elements from the domain \\spad{PointDomain(m,{}R)},{} where \\spad{R} is the \\spadtype{Ring} over which the point elements are defined and \\spad{m} is the dimension of the points,{} to the \\spadtype{ThreeSpace} \\spad{s}.") (($ $ (|List| (|Point| |#1|))) "\\spad{curve(s,{}[p0,{}p1,{}...,{}pn])} adds a space curve component defined by a list of points \\spad{p0} through \\spad{pn},{} to the \\spadtype{ThreeSpace} \\spad{s}.")) (|point?| (((|Boolean|) $) "\\spad{point?(s)} queries whether the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a single component which is a point and returns the boolean result.")) (|point| (((|Point| |#1|) $) "\\spad{point(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of only a single point and if so,{} returns the point. An error is signaled otherwise.") (($ (|Point| |#1|)) "\\spad{point(p)} returns a \\spadtype{ThreeSpace} object which is composed of one component,{} the point \\spad{p}.") (($ $ (|NonNegativeInteger|)) "\\spad{point(s,{}i)} adds a point component which is placed into a component list of the \\spadtype{ThreeSpace},{} \\spad{s},{} at the index given by \\spad{i}.") (($ $ (|List| |#1|)) "\\spad{point(s,{}[x,{}y,{}z])} adds a point component defined by a list of elements which are from the \\spad{PointDomain(R)} to the \\spadtype{ThreeSpace},{} \\spad{s},{} where \\spad{R} is the \\spadtype{Ring} over which the point elements are defined.") (($ $ (|Point| |#1|)) "\\spad{point(s,{}p)} adds a point component defined by the point,{} \\spad{p},{} specified as a list from \\spad{List(R)},{} to the \\spadtype{ThreeSpace},{} \\spad{s},{} where \\spad{R} is the \\spadtype{Ring} over which the point is defined.")) (|modifyPointData| (($ $ (|NonNegativeInteger|) (|Point| |#1|)) "\\spad{modifyPointData(s,{}i,{}p)} changes the point at the indexed location \\spad{i} in the \\spadtype{ThreeSpace},{} \\spad{s},{} to that of point \\spad{p}. This is useful for making changes to a point which has been transformed.")) (|enterPointData| (((|NonNegativeInteger|) $ (|List| (|Point| |#1|))) "\\spad{enterPointData(s,{}[p0,{}p1,{}...,{}pn])} adds a list of points from \\spad{p0} through \\spad{pn} to the \\spadtype{ThreeSpace},{} \\spad{s},{} and returns the index,{} to the starting point of the list.")) (|copy| (($ $) "\\spad{copy(s)} returns a new \\spadtype{ThreeSpace} that is an exact copy of \\spad{s}.")) (|composites| (((|List| $) $) "\\spad{composites(s)} takes the \\spadtype{ThreeSpace} \\spad{s},{} and creates a list containing a unique \\spadtype{ThreeSpace} for each single composite of \\spad{s}. If \\spad{s} has no composites defined (composites need to be explicitly created),{} the list returned is empty. Note that not all the components need to be part of a composite.")) (|components| (((|List| $) $) "\\spad{components(s)} takes the \\spadtype{ThreeSpace} \\spad{s},{} and creates a list containing a unique \\spadtype{ThreeSpace} for each single component of \\spad{s}. If \\spad{s} has no components defined,{} the list returned is empty.")) (|composite| (($ (|List| $)) "\\spad{composite([s1,{}s2,{}...,{}sn])} will create a new \\spadtype{ThreeSpace} that is a union of all the components from each \\spadtype{ThreeSpace} in the parameter list,{} grouped as a composite.")) (|merge| (($ $ $) "\\spad{merge(s1,{}s2)} will create a new \\spadtype{ThreeSpace} that has the components of \\spad{s1} and \\spad{s2}; Groupings of components into composites are maintained.") (($ (|List| $)) "\\spad{merge([s1,{}s2,{}...,{}sn])} will create a new \\spadtype{ThreeSpace} that has the components of all the ones in the list; Groupings of components into composites are maintained.")) (|numberOfComposites| (((|NonNegativeInteger|) $) "\\spad{numberOfComposites(s)} returns the number of supercomponents,{} or composites,{} in the \\spadtype{ThreeSpace},{} \\spad{s}; Composites are arbitrary groupings of otherwise distinct and unrelated components; A \\spadtype{ThreeSpace} need not have any composites defined at all and,{} outside of the requirement that no component can belong to more than one composite at a time,{} the definition and interpretation of composites are unrestricted.")) (|numberOfComponents| (((|NonNegativeInteger|) $) "\\spad{numberOfComponents(s)} returns the number of distinct object components in the indicated \\spadtype{ThreeSpace},{} \\spad{s},{} such as points,{} curves,{} polygons,{} and constructs.")) (|create3Space| (($ (|SubSpace| 3 |#1|)) "\\spad{create3Space(s)} creates a \\spadtype{ThreeSpace} object containing objects pre-defined within some \\spadtype{SubSpace} \\spad{s}.") (($) "\\spad{create3Space()} creates a \\spadtype{ThreeSpace} object capable of holding point,{} curve,{} mesh components and any combination.")))
NIL
NIL
-(-1049)
+(-1051)
((|constructor| (NIL "\\indented{1}{This package provides a simple Spad algebra parser.} Related Constructors: Syntax. See Also: Syntax.")) (|parse| (((|List| (|Syntax|)) (|String|)) "\\spad{parse(f)} parses the source file \\spad{f} (supposedly containing Spad algebras) and returns a List Syntax. The filename \\spad{f} is supposed to have the proper extension. Note that this function has the side effect of executing any system command contained in the file \\spad{f},{} even if it might not be meaningful.")))
NIL
NIL
-(-1050)
+(-1052)
((|constructor| (NIL "SpecialOutputPackage allows FORTRAN,{} Tex and \\indented{2}{Script Formula Formatter output from programs.}")) (|outputAsTex| (((|Void|) (|List| (|OutputForm|))) "\\spad{outputAsTex(l)} sends (for each expression in the list \\spad{l}) output in Tex format to the destination as defined by \\spadsyscom{set output tex}.") (((|Void|) (|OutputForm|)) "\\spad{outputAsTex(o)} sends output \\spad{o} in Tex format to the destination defined by \\spadsyscom{set output tex}.")) (|outputAsScript| (((|Void|) (|List| (|OutputForm|))) "\\spad{outputAsScript(l)} sends (for each expression in the list \\spad{l}) output in Script Formula Formatter format to the destination defined. by \\spadsyscom{set output forumula}.") (((|Void|) (|OutputForm|)) "\\spad{outputAsScript(o)} sends output \\spad{o} in Script Formula Formatter format to the destination defined by \\spadsyscom{set output formula}.")) (|outputAsFortran| (((|Void|) (|List| (|OutputForm|))) "\\spad{outputAsFortran(l)} sends (for each expression in the list \\spad{l}) output in FORTRAN format to the destination defined by \\spadsyscom{set output fortran}.") (((|Void|) (|OutputForm|)) "\\spad{outputAsFortran(o)} sends output \\spad{o} in FORTRAN format.") (((|Void|) (|String|) (|OutputForm|)) "\\spad{outputAsFortran(v,{}o)} sends output \\spad{v} = \\spad{o} in FORTRAN format to the destination defined by \\spadsyscom{set output fortran}.")))
NIL
NIL
-(-1051)
+(-1053)
((|constructor| (NIL "Category for the other special functions.")) (|airyBi| (($ $) "\\spad{airyBi(x)} is the Airy function \\spad{\\spad{Bi}(x)}.")) (|airyAi| (($ $) "\\spad{airyAi(x)} is the Airy function \\spad{\\spad{Ai}(x)}.")) (|besselK| (($ $ $) "\\spad{besselK(v,{}z)} is the modified Bessel function of the second kind.")) (|besselI| (($ $ $) "\\spad{besselI(v,{}z)} is the modified Bessel function of the first kind.")) (|besselY| (($ $ $) "\\spad{besselY(v,{}z)} is the Bessel function of the second kind.")) (|besselJ| (($ $ $) "\\spad{besselJ(v,{}z)} is the Bessel function of the first kind.")) (|polygamma| (($ $ $) "\\spad{polygamma(k,{}x)} is the \\spad{k-th} derivative of \\spad{digamma(x)},{} (often written \\spad{psi(k,{}x)} in the literature).")) (|digamma| (($ $) "\\spad{digamma(x)} is the logarithmic derivative of \\spad{Gamma(x)} (often written \\spad{psi(x)} in the literature).")) (|Beta| (($ $ $) "\\spad{Beta(x,{}y)} is \\spad{Gamma(x) * Gamma(y)/Gamma(x+y)}.")) (|Gamma| (($ $ $) "\\spad{Gamma(a,{}x)} is the incomplete Gamma function.") (($ $) "\\spad{Gamma(x)} is the Euler Gamma function.")) (|abs| (($ $) "\\spad{abs(x)} returns the absolute value of \\spad{x}.")))
NIL
NIL
-(-1052 V C)
+(-1054 V C)
((|constructor| (NIL "This domain exports a modest implementation for the vertices of splitting trees. These vertices are called here splitting nodes. Every of these nodes store 3 informations. The first one is its value,{} that is the current expression to evaluate. The second one is its condition,{} that is the hypothesis under which the value has to be evaluated. The last one is its status,{} that is a boolean flag which is \\spad{true} iff the value is the result of its evaluation under its condition. Two splitting vertices are equal iff they have the sane values and the same conditions (so their status do not matter).")) (|subNode?| (((|Boolean|) $ $ (|Mapping| (|Boolean|) |#2| |#2|)) "\\axiom{subNode?(\\spad{n1},{}\\spad{n2},{}o2)} returns \\spad{true} iff \\axiom{value(\\spad{n1}) = value(\\spad{n2})} and \\axiom{o2(condition(\\spad{n1}),{}condition(\\spad{n2}))}")) (|infLex?| (((|Boolean|) $ $ (|Mapping| (|Boolean|) |#1| |#1|) (|Mapping| (|Boolean|) |#2| |#2|)) "\\axiom{infLex?(\\spad{n1},{}\\spad{n2},{}o1,{}o2)} returns \\spad{true} iff \\axiom{o1(value(\\spad{n1}),{}value(\\spad{n2}))} or \\axiom{value(\\spad{n1}) = value(\\spad{n2})} and \\axiom{o2(condition(\\spad{n1}),{}condition(\\spad{n2}))}.")) (|setEmpty!| (($ $) "\\axiom{setEmpty!(\\spad{n})} replaces \\spad{n} by \\axiom{empty()\\$\\%}.")) (|setStatus!| (($ $ (|Boolean|)) "\\axiom{setStatus!(\\spad{n},{}\\spad{b})} returns \\spad{n} whose status has been replaced by \\spad{b} if it is not empty,{} else an error is produced.")) (|setCondition!| (($ $ |#2|) "\\axiom{setCondition!(\\spad{n},{}\\spad{t})} returns \\spad{n} whose condition has been replaced by \\spad{t} if it is not empty,{} else an error is produced.")) (|setValue!| (($ $ |#1|) "\\axiom{setValue!(\\spad{n},{}\\spad{v})} returns \\spad{n} whose value has been replaced by \\spad{v} if it is not empty,{} else an error is produced.")) (|copy| (($ $) "\\axiom{copy(\\spad{n})} returns a copy of \\spad{n}.")) (|construct| (((|List| $) |#1| (|List| |#2|)) "\\axiom{construct(\\spad{v},{}\\spad{lt})} returns the same as \\axiom{[construct(\\spad{v},{}\\spad{t}) for \\spad{t} in \\spad{lt}]}") (((|List| $) (|List| (|Record| (|:| |val| |#1|) (|:| |tower| |#2|)))) "\\axiom{construct(\\spad{lvt})} returns the same as \\axiom{[construct(\\spad{vt}.val,{}\\spad{vt}.tower) for \\spad{vt} in \\spad{lvt}]}") (($ (|Record| (|:| |val| |#1|) (|:| |tower| |#2|))) "\\axiom{construct(\\spad{vt})} returns the same as \\axiom{construct(\\spad{vt}.val,{}\\spad{vt}.tower)}") (($ |#1| |#2|) "\\axiom{construct(\\spad{v},{}\\spad{t})} returns the same as \\axiom{construct(\\spad{v},{}\\spad{t},{}\\spad{false})}") (($ |#1| |#2| (|Boolean|)) "\\axiom{construct(\\spad{v},{}\\spad{t},{}\\spad{b})} returns the non-empty node with value \\spad{v},{} condition \\spad{t} and flag \\spad{b}")) (|status| (((|Boolean|) $) "\\axiom{status(\\spad{n})} returns the status of the node \\spad{n}.")) (|condition| ((|#2| $) "\\axiom{condition(\\spad{n})} returns the condition of the node \\spad{n}.")) (|value| ((|#1| $) "\\axiom{value(\\spad{n})} returns the value of the node \\spad{n}.")) (|empty?| (((|Boolean|) $) "\\axiom{empty?(\\spad{n})} returns \\spad{true} iff the node \\spad{n} is \\axiom{empty()\\$\\%}.")) (|empty| (($) "\\axiom{empty()} returns the same as \\axiom{[empty()\\$\\spad{V},{}empty()\\$\\spad{C},{}\\spad{false}]\\$\\%}")))
NIL
NIL
-(-1053 V C)
+(-1055 V C)
((|constructor| (NIL "This domain exports a modest implementation of splitting trees. Spliiting trees are needed when the evaluation of some quantity under some hypothesis requires to split the hypothesis into sub-cases. For instance by adding some new hypothesis on one hand and its negation on another hand. The computations are terminated is a splitting tree \\axiom{a} when \\axiom{status(value(a))} is \\axiom{\\spad{true}}. Thus,{} if for the splitting tree \\axiom{a} the flag \\axiom{status(value(a))} is \\axiom{\\spad{true}},{} then \\axiom{status(value(\\spad{d}))} is \\axiom{\\spad{true}} for any subtree \\axiom{\\spad{d}} of \\axiom{a}. This property of splitting trees is called the termination condition. If no vertex in a splitting tree \\axiom{a} is equal to another,{} \\axiom{a} is said to satisfy the no-duplicates condition. The splitting tree \\axiom{a} will satisfy this condition if nodes are added to \\axiom{a} by mean of \\axiom{splitNodeOf!} and if \\axiom{construct} is only used to create the root of \\axiom{a} with no children.")) (|splitNodeOf!| (($ $ $ (|List| (|SplittingNode| |#1| |#2|)) (|Mapping| (|Boolean|) |#2| |#2|)) "\\axiom{splitNodeOf!(\\spad{l},{}a,{}\\spad{ls},{}sub?)} returns \\axiom{a} where the children list of \\axiom{\\spad{l}} has been set to \\axiom{[[\\spad{s}]\\$\\% for \\spad{s} in \\spad{ls} | not subNodeOf?(\\spad{s},{}a,{}sub?)]}. Thus,{} if \\axiom{\\spad{l}} is not a node of \\axiom{a},{} this latter splitting tree is unchanged.") (($ $ $ (|List| (|SplittingNode| |#1| |#2|))) "\\axiom{splitNodeOf!(\\spad{l},{}a,{}\\spad{ls})} returns \\axiom{a} where the children list of \\axiom{\\spad{l}} has been set to \\axiom{[[\\spad{s}]\\$\\% for \\spad{s} in \\spad{ls} | not nodeOf?(\\spad{s},{}a)]}. Thus,{} if \\axiom{\\spad{l}} is not a node of \\axiom{a},{} this latter splitting tree is unchanged.")) (|remove!| (($ (|SplittingNode| |#1| |#2|) $) "\\axiom{remove!(\\spad{s},{}a)} replaces a by remove(\\spad{s},{}a)")) (|remove| (($ (|SplittingNode| |#1| |#2|) $) "\\axiom{remove(\\spad{s},{}a)} returns the splitting tree obtained from a by removing every sub-tree \\axiom{\\spad{b}} such that \\axiom{value(\\spad{b})} and \\axiom{\\spad{s}} have the same value,{} condition and status.")) (|subNodeOf?| (((|Boolean|) (|SplittingNode| |#1| |#2|) $ (|Mapping| (|Boolean|) |#2| |#2|)) "\\axiom{subNodeOf?(\\spad{s},{}a,{}sub?)} returns \\spad{true} iff for some node \\axiom{\\spad{n}} in \\axiom{a} we have \\axiom{\\spad{s} = \\spad{n}} or \\axiom{status(\\spad{n})} and \\axiom{subNode?(\\spad{s},{}\\spad{n},{}sub?)}.")) (|nodeOf?| (((|Boolean|) (|SplittingNode| |#1| |#2|) $) "\\axiom{nodeOf?(\\spad{s},{}a)} returns \\spad{true} iff some node of \\axiom{a} is equal to \\axiom{\\spad{s}}")) (|result| (((|List| (|Record| (|:| |val| |#1|) (|:| |tower| |#2|))) $) "\\axiom{result(a)} where \\axiom{\\spad{ls}} is the leaves list of \\axiom{a} returns \\axiom{[[value(\\spad{s}),{}condition(\\spad{s})]\\$\\spad{VT} for \\spad{s} in \\spad{ls}]} if the computations are terminated in \\axiom{a} else an error is produced.")) (|conditions| (((|List| |#2|) $) "\\axiom{conditions(a)} returns the list of the conditions of the leaves of a")) (|construct| (($ |#1| |#2| |#1| (|List| |#2|)) "\\axiom{construct(\\spad{v1},{}\\spad{t},{}\\spad{v2},{}\\spad{lt})} creates a splitting tree with value (\\spadignore{i.e.} root vertex) given by \\axiom{[\\spad{v},{}\\spad{t}]\\$\\spad{S}} and with children list given by \\axiom{[[[\\spad{v},{}\\spad{t}]\\$\\spad{S}]\\$\\% for \\spad{s} in \\spad{ls}]}.") (($ |#1| |#2| (|List| (|SplittingNode| |#1| |#2|))) "\\axiom{construct(\\spad{v},{}\\spad{t},{}\\spad{ls})} creates a splitting tree with value (\\spadignore{i.e.} root vertex) given by \\axiom{[\\spad{v},{}\\spad{t}]\\$\\spad{S}} and with children list given by \\axiom{[[\\spad{s}]\\$\\% for \\spad{s} in \\spad{ls}]}.") (($ |#1| |#2| (|List| $)) "\\axiom{construct(\\spad{v},{}\\spad{t},{}la)} creates a splitting tree with value (\\spadignore{i.e.} root vertex) given by \\axiom{[\\spad{v},{}\\spad{t}]\\$\\spad{S}} and with \\axiom{la} as children list.") (($ (|SplittingNode| |#1| |#2|)) "\\axiom{construct(\\spad{s})} creates a splitting tree with value (\\spadignore{i.e.} root vertex) given by \\axiom{\\spad{s}} and no children. Thus,{} if the status of \\axiom{\\spad{s}} is \\spad{false},{} \\axiom{[\\spad{s}]} represents the starting point of the evaluation \\axiom{value(\\spad{s})} under the hypothesis \\axiom{condition(\\spad{s})}.")) (|updateStatus!| (($ $) "\\axiom{updateStatus!(a)} returns a where the status of the vertices are updated to satisfy the \"termination condition\".")) (|extractSplittingLeaf| (((|Union| $ "failed") $) "\\axiom{extractSplittingLeaf(a)} returns the left most leaf (as a tree) whose status is \\spad{false} if any,{} else \"failed\" is returned.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| (-1052 |#1| |#2|) (LIST (QUOTE -286) (LIST (QUOTE -1052) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1052 |#1| |#2|) (QUOTE (-1016)))) (|HasCategory| (-1052 |#1| |#2|) (QUOTE (-1016))) (-3255 (|HasCategory| (-1052 |#1| |#2|) (LIST (QUOTE -563) (QUOTE (-794)))) (-12 (|HasCategory| (-1052 |#1| |#2|) (LIST (QUOTE -286) (LIST (QUOTE -1052) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1052 |#1| |#2|) (QUOTE (-1016))))) (|HasCategory| (-1052 |#1| |#2|) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-1054 |ndim| R)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| (-1054 |#1| |#2|) (LIST (QUOTE -288) (LIST (QUOTE -1054) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1054 |#1| |#2|) (QUOTE (-1018)))) (|HasCategory| (-1054 |#1| |#2|) (QUOTE (-1018))) (-3321 (|HasCategory| (-1054 |#1| |#2|) (LIST (QUOTE -565) (QUOTE (-796)))) (-12 (|HasCategory| (-1054 |#1| |#2|) (LIST (QUOTE -288) (LIST (QUOTE -1054) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1054 |#1| |#2|) (QUOTE (-1018))))) (|HasCategory| (-1054 |#1| |#2|) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-1056 |ndim| R)
((|constructor| (NIL "\\spadtype{SquareMatrix} is a matrix domain of square matrices,{} where the number of rows (= number of columns) is a parameter of the type.")) (|unitsKnown| ((|attribute|) "the invertible matrices are simply the matrices whose determinants are units in the Ring \\spad{R}.")) (|central| ((|attribute|) "the elements of the Ring \\spad{R},{} viewed as diagonal matrices,{} commute with all matrices and,{} indeed,{} are the only matrices which commute with all matrices.")) (|coerce| (((|Matrix| |#2|) $) "\\spad{coerce(m)} converts a matrix of type \\spadtype{SquareMatrix} to a matrix of type \\spadtype{Matrix}.")) (|squareMatrix| (($ (|Matrix| |#2|)) "\\spad{squareMatrix(m)} converts a matrix of type \\spadtype{Matrix} to a matrix of type \\spadtype{SquareMatrix}.")) (|transpose| (($ $) "\\spad{transpose(m)} returns the transpose of the matrix \\spad{m}.")))
-((-4245 . T) (-4237 |has| |#2| (-6 (-4250 "*"))) (-4248 . T) (-4242 . T) (-4243 . T))
-((|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-211))) (|HasAttribute| |#2| (QUOTE (-4250 "*"))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))) (-3255 (-12 (|HasCategory| |#2| (QUOTE (-211))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (QUOTE (-284))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (QUOTE (-339))) (-3255 (|HasAttribute| |#2| (QUOTE (-4250 "*"))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#2| (QUOTE (-211)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (QUOTE (-158))))
-(-1055 S)
+((-4247 . T) (-4239 |has| |#2| (-6 (-4252 "*"))) (-4250 . T) (-4244 . T) (-4245 . T))
+((|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-213))) (|HasAttribute| |#2| (QUOTE (-4252 "*"))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))) (-3321 (-12 (|HasCategory| |#2| (QUOTE (-213))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (QUOTE (-286))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-341))) (-3321 (|HasAttribute| |#2| (QUOTE (-4252 "*"))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#2| (QUOTE (-213)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (QUOTE (-160))))
+(-1057 S)
((|constructor| (NIL "A string aggregate is a category for strings,{} that is,{} one dimensional arrays of characters.")) (|elt| (($ $ $) "\\spad{elt(s,{}t)} returns the concatenation of \\spad{s} and \\spad{t}. It is provided to allow juxtaposition of strings to work as concatenation. For example,{} \\axiom{\"smoo\" \"shed\"} returns \\axiom{\"smooshed\"}.")) (|rightTrim| (($ $ (|CharacterClass|)) "\\spad{rightTrim(s,{}cc)} returns \\spad{s} with all trailing occurences of characters in \\spad{cc} deleted. For example,{} \\axiom{rightTrim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"(abc\"}.") (($ $ (|Character|)) "\\spad{rightTrim(s,{}c)} returns \\spad{s} with all trailing occurrences of \\spad{c} deleted. For example,{} \\axiom{rightTrim(\" abc \",{} char \" \")} returns \\axiom{\" abc\"}.")) (|leftTrim| (($ $ (|CharacterClass|)) "\\spad{leftTrim(s,{}cc)} returns \\spad{s} with all leading characters in \\spad{cc} deleted. For example,{} \\axiom{leftTrim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"abc)\"}.") (($ $ (|Character|)) "\\spad{leftTrim(s,{}c)} returns \\spad{s} with all leading characters \\spad{c} deleted. For example,{} \\axiom{leftTrim(\" abc \",{} char \" \")} returns \\axiom{\"abc \"}.")) (|trim| (($ $ (|CharacterClass|)) "\\spad{trim(s,{}cc)} returns \\spad{s} with all characters in \\spad{cc} deleted from right and left ends. For example,{} \\axiom{trim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"abc\"}.") (($ $ (|Character|)) "\\spad{trim(s,{}c)} returns \\spad{s} with all characters \\spad{c} deleted from right and left ends. For example,{} \\axiom{trim(\" abc \",{} char \" \")} returns \\axiom{\"abc\"}.")) (|split| (((|List| $) $ (|CharacterClass|)) "\\spad{split(s,{}cc)} returns a list of substrings delimited by characters in \\spad{cc}.") (((|List| $) $ (|Character|)) "\\spad{split(s,{}c)} returns a list of substrings delimited by character \\spad{c}.")) (|coerce| (($ (|Character|)) "\\spad{coerce(c)} returns \\spad{c} as a string \\spad{s} with the character \\spad{c}.")) (|position| (((|Integer|) (|CharacterClass|) $ (|Integer|)) "\\spad{position(cc,{}t,{}i)} returns the position \\axiom{\\spad{j} \\spad{>=} \\spad{i}} in \\spad{t} of the first character belonging to \\spad{cc}.") (((|Integer|) $ $ (|Integer|)) "\\spad{position(s,{}t,{}i)} returns the position \\spad{j} of the substring \\spad{s} in string \\spad{t},{} where \\axiom{\\spad{j} \\spad{>=} \\spad{i}} is required.")) (|replace| (($ $ (|UniversalSegment| (|Integer|)) $) "\\spad{replace(s,{}i..j,{}t)} replaces the substring \\axiom{\\spad{s}(\\spad{i}..\\spad{j})} of \\spad{s} by string \\spad{t}.")) (|match?| (((|Boolean|) $ $ (|Character|)) "\\spad{match?(s,{}t,{}c)} tests if \\spad{s} matches \\spad{t} except perhaps for multiple and consecutive occurrences of character \\spad{c}. Typically \\spad{c} is the blank character.")) (|match| (((|NonNegativeInteger|) $ $ (|Character|)) "\\spad{match(p,{}s,{}wc)} tests if pattern \\axiom{\\spad{p}} matches subject \\axiom{\\spad{s}} where \\axiom{\\spad{wc}} is a wild card character. If no match occurs,{} the index \\axiom{0} is returned; otheriwse,{} the value returned is the first index of the first character in the subject matching the subject (excluding that matched by an initial wild-card). For example,{} \\axiom{match(\"*to*\",{}\"yorktown\",{}\\spad{\"*\"})} returns \\axiom{5} indicating a successful match starting at index \\axiom{5} of \\axiom{\"yorktown\"}.")) (|substring?| (((|Boolean|) $ $ (|Integer|)) "\\spad{substring?(s,{}t,{}i)} tests if \\spad{s} is a substring of \\spad{t} beginning at index \\spad{i}. Note: \\axiom{substring?(\\spad{s},{}\\spad{t},{}0) = prefix?(\\spad{s},{}\\spad{t})}.")) (|suffix?| (((|Boolean|) $ $) "\\spad{suffix?(s,{}t)} tests if the string \\spad{s} is the final substring of \\spad{t}. Note: \\axiom{suffix?(\\spad{s},{}\\spad{t}) \\spad{==} reduce(and,{}[\\spad{s}.\\spad{i} = \\spad{t}.(\\spad{n} - \\spad{m} + \\spad{i}) for \\spad{i} in 0..maxIndex \\spad{s}])} where \\spad{m} and \\spad{n} denote the maxIndex of \\spad{s} and \\spad{t} respectively.")) (|prefix?| (((|Boolean|) $ $) "\\spad{prefix?(s,{}t)} tests if the string \\spad{s} is the initial substring of \\spad{t}. Note: \\axiom{prefix?(\\spad{s},{}\\spad{t}) \\spad{==} reduce(and,{}[\\spad{s}.\\spad{i} = \\spad{t}.\\spad{i} for \\spad{i} in 0..maxIndex \\spad{s}])}.")) (|upperCase!| (($ $) "\\spad{upperCase!(s)} destructively replaces the alphabetic characters in \\spad{s} by upper case characters.")) (|upperCase| (($ $) "\\spad{upperCase(s)} returns the string with all characters in upper case.")) (|lowerCase!| (($ $) "\\spad{lowerCase!(s)} destructively replaces the alphabetic characters in \\spad{s} by lower case.")) (|lowerCase| (($ $) "\\spad{lowerCase(s)} returns the string with all characters in lower case.")))
NIL
NIL
-(-1056)
+(-1058)
((|constructor| (NIL "A string aggregate is a category for strings,{} that is,{} one dimensional arrays of characters.")) (|elt| (($ $ $) "\\spad{elt(s,{}t)} returns the concatenation of \\spad{s} and \\spad{t}. It is provided to allow juxtaposition of strings to work as concatenation. For example,{} \\axiom{\"smoo\" \"shed\"} returns \\axiom{\"smooshed\"}.")) (|rightTrim| (($ $ (|CharacterClass|)) "\\spad{rightTrim(s,{}cc)} returns \\spad{s} with all trailing occurences of characters in \\spad{cc} deleted. For example,{} \\axiom{rightTrim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"(abc\"}.") (($ $ (|Character|)) "\\spad{rightTrim(s,{}c)} returns \\spad{s} with all trailing occurrences of \\spad{c} deleted. For example,{} \\axiom{rightTrim(\" abc \",{} char \" \")} returns \\axiom{\" abc\"}.")) (|leftTrim| (($ $ (|CharacterClass|)) "\\spad{leftTrim(s,{}cc)} returns \\spad{s} with all leading characters in \\spad{cc} deleted. For example,{} \\axiom{leftTrim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"abc)\"}.") (($ $ (|Character|)) "\\spad{leftTrim(s,{}c)} returns \\spad{s} with all leading characters \\spad{c} deleted. For example,{} \\axiom{leftTrim(\" abc \",{} char \" \")} returns \\axiom{\"abc \"}.")) (|trim| (($ $ (|CharacterClass|)) "\\spad{trim(s,{}cc)} returns \\spad{s} with all characters in \\spad{cc} deleted from right and left ends. For example,{} \\axiom{trim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"abc\"}.") (($ $ (|Character|)) "\\spad{trim(s,{}c)} returns \\spad{s} with all characters \\spad{c} deleted from right and left ends. For example,{} \\axiom{trim(\" abc \",{} char \" \")} returns \\axiom{\"abc\"}.")) (|split| (((|List| $) $ (|CharacterClass|)) "\\spad{split(s,{}cc)} returns a list of substrings delimited by characters in \\spad{cc}.") (((|List| $) $ (|Character|)) "\\spad{split(s,{}c)} returns a list of substrings delimited by character \\spad{c}.")) (|coerce| (($ (|Character|)) "\\spad{coerce(c)} returns \\spad{c} as a string \\spad{s} with the character \\spad{c}.")) (|position| (((|Integer|) (|CharacterClass|) $ (|Integer|)) "\\spad{position(cc,{}t,{}i)} returns the position \\axiom{\\spad{j} \\spad{>=} \\spad{i}} in \\spad{t} of the first character belonging to \\spad{cc}.") (((|Integer|) $ $ (|Integer|)) "\\spad{position(s,{}t,{}i)} returns the position \\spad{j} of the substring \\spad{s} in string \\spad{t},{} where \\axiom{\\spad{j} \\spad{>=} \\spad{i}} is required.")) (|replace| (($ $ (|UniversalSegment| (|Integer|)) $) "\\spad{replace(s,{}i..j,{}t)} replaces the substring \\axiom{\\spad{s}(\\spad{i}..\\spad{j})} of \\spad{s} by string \\spad{t}.")) (|match?| (((|Boolean|) $ $ (|Character|)) "\\spad{match?(s,{}t,{}c)} tests if \\spad{s} matches \\spad{t} except perhaps for multiple and consecutive occurrences of character \\spad{c}. Typically \\spad{c} is the blank character.")) (|match| (((|NonNegativeInteger|) $ $ (|Character|)) "\\spad{match(p,{}s,{}wc)} tests if pattern \\axiom{\\spad{p}} matches subject \\axiom{\\spad{s}} where \\axiom{\\spad{wc}} is a wild card character. If no match occurs,{} the index \\axiom{0} is returned; otheriwse,{} the value returned is the first index of the first character in the subject matching the subject (excluding that matched by an initial wild-card). For example,{} \\axiom{match(\"*to*\",{}\"yorktown\",{}\\spad{\"*\"})} returns \\axiom{5} indicating a successful match starting at index \\axiom{5} of \\axiom{\"yorktown\"}.")) (|substring?| (((|Boolean|) $ $ (|Integer|)) "\\spad{substring?(s,{}t,{}i)} tests if \\spad{s} is a substring of \\spad{t} beginning at index \\spad{i}. Note: \\axiom{substring?(\\spad{s},{}\\spad{t},{}0) = prefix?(\\spad{s},{}\\spad{t})}.")) (|suffix?| (((|Boolean|) $ $) "\\spad{suffix?(s,{}t)} tests if the string \\spad{s} is the final substring of \\spad{t}. Note: \\axiom{suffix?(\\spad{s},{}\\spad{t}) \\spad{==} reduce(and,{}[\\spad{s}.\\spad{i} = \\spad{t}.(\\spad{n} - \\spad{m} + \\spad{i}) for \\spad{i} in 0..maxIndex \\spad{s}])} where \\spad{m} and \\spad{n} denote the maxIndex of \\spad{s} and \\spad{t} respectively.")) (|prefix?| (((|Boolean|) $ $) "\\spad{prefix?(s,{}t)} tests if the string \\spad{s} is the initial substring of \\spad{t}. Note: \\axiom{prefix?(\\spad{s},{}\\spad{t}) \\spad{==} reduce(and,{}[\\spad{s}.\\spad{i} = \\spad{t}.\\spad{i} for \\spad{i} in 0..maxIndex \\spad{s}])}.")) (|upperCase!| (($ $) "\\spad{upperCase!(s)} destructively replaces the alphabetic characters in \\spad{s} by upper case characters.")) (|upperCase| (($ $) "\\spad{upperCase(s)} returns the string with all characters in upper case.")) (|lowerCase!| (($ $) "\\spad{lowerCase!(s)} destructively replaces the alphabetic characters in \\spad{s} by lower case.")) (|lowerCase| (($ $) "\\spad{lowerCase(s)} returns the string with all characters in lower case.")))
-((-4249 . T) (-4248 . T) (-2500 . T))
+((-4251 . T) (-4250 . T) (-2137 . T))
NIL
-(-1057 R E V P TS)
+(-1059 R E V P TS)
((|constructor| (NIL "A package providing a new algorithm for solving polynomial systems by means of regular chains. Two ways of solving are provided: in the sense of Zariski closure (like in Kalkbrener\\spad{'s} algorithm) or in the sense of the regular zeros (like in Wu,{} Wang or Lazard- Moreno methods). This algorithm is valid for nay type of regular set. It does not care about the way a polynomial is added in an regular set,{} or how two quasi-components are compared (by an inclusion-test),{} or how the invertibility test is made in the tower of simple extensions associated with a regular set. These operations are realized respectively by the domain \\spad{TS} and the packages \\spad{QCMPPK(R,{}E,{}V,{}P,{}TS)} and \\spad{RSETGCD(R,{}E,{}V,{}P,{}TS)}. The same way it does not care about the way univariate polynomial gcds (with coefficients in the tower of simple extensions associated with a regular set) are computed. The only requirement is that these gcds need to have invertible initials (normalized or not). WARNING. There is no need for a user to call diectly any operation of this package since they can be accessed by the domain \\axiomType{\\spad{TS}}. Thus,{} the operations of this package are not documented.\\newline References : \\indented{1}{[1] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")))
NIL
NIL
-(-1058 R E V P)
+(-1060 R E V P)
((|constructor| (NIL "This domain provides an implementation of square-free regular chains. Moreover,{} the operation \\axiomOpFrom{zeroSetSplit}{SquareFreeRegularTriangularSetCategory} is an implementation of a new algorithm for solving polynomial systems by means of regular chains.\\newline References : \\indented{1}{[1] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.} \\indented{2}{Version: 2}")) (|preprocess| (((|Record| (|:| |val| (|List| |#4|)) (|:| |towers| (|List| $))) (|List| |#4|) (|Boolean|) (|Boolean|)) "\\axiom{pre_process(\\spad{lp},{}\\spad{b1},{}\\spad{b2})} is an internal subroutine,{} exported only for developement.")) (|internalZeroSetSplit| (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{internalZeroSetSplit(\\spad{lp},{}\\spad{b1},{}\\spad{b2},{}\\spad{b3})} is an internal subroutine,{} exported only for developement.")) (|zeroSetSplit| (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{}\\spad{b1},{}\\spad{b2}.\\spad{b3},{}\\spad{b4})} is an internal subroutine,{} exported only for developement.") (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{}clos?,{}info?)} has the same specifications as \\axiomOpFrom{zeroSetSplit}{RegularTriangularSetCategory} from \\spadtype{RegularTriangularSetCategory} Moreover,{} if \\axiom{clos?} then solves in the sense of the Zariski closure else solves in the sense of the regular zeros. If \\axiom{info?} then do print messages during the computations.")) (|internalAugment| (((|List| $) |#4| $ (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{internalAugment(\\spad{p},{}\\spad{ts},{}\\spad{b1},{}\\spad{b2},{}\\spad{b3},{}\\spad{b4},{}\\spad{b5})} is an internal subroutine,{} exported only for developement.")))
-((-4249 . T) (-4248 . T))
-((-12 (|HasCategory| |#4| (QUOTE (-1016))) (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#4| (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#3| (QUOTE (-344))) (|HasCategory| |#4| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-1059 S)
+((-4251 . T) (-4250 . T))
+((-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#3| (QUOTE (-346))) (|HasCategory| |#4| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-1061 S)
((|constructor| (NIL "Linked List implementation of a Stack")) (|stack| (($ (|List| |#1|)) "\\spad{stack([x,{}y,{}...,{}z])} creates a stack with first (top) element \\spad{x},{} second element \\spad{y},{}...,{}and last element \\spad{z}.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-1060 A S)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-1062 A S)
((|constructor| (NIL "A stream aggregate is a linear aggregate which possibly has an infinite number of elements. A basic domain constructor which builds stream aggregates is \\spadtype{Stream}. From streams,{} a number of infinite structures such power series can be built. A stream aggregate may also be infinite since it may be cyclic. For example,{} see \\spadtype{DecimalExpansion}.")) (|possiblyInfinite?| (((|Boolean|) $) "\\spad{possiblyInfinite?(s)} tests if the stream \\spad{s} could possibly have an infinite number of elements. Note: for many datatypes,{} \\axiom{possiblyInfinite?(\\spad{s}) = not explictlyFinite?(\\spad{s})}.")) (|explicitlyFinite?| (((|Boolean|) $) "\\spad{explicitlyFinite?(s)} tests if the stream has a finite number of elements,{} and \\spad{false} otherwise. Note: for many datatypes,{} \\axiom{explicitlyFinite?(\\spad{s}) = not possiblyInfinite?(\\spad{s})}.")))
NIL
NIL
-(-1061 S)
+(-1063 S)
((|constructor| (NIL "A stream aggregate is a linear aggregate which possibly has an infinite number of elements. A basic domain constructor which builds stream aggregates is \\spadtype{Stream}. From streams,{} a number of infinite structures such power series can be built. A stream aggregate may also be infinite since it may be cyclic. For example,{} see \\spadtype{DecimalExpansion}.")) (|possiblyInfinite?| (((|Boolean|) $) "\\spad{possiblyInfinite?(s)} tests if the stream \\spad{s} could possibly have an infinite number of elements. Note: for many datatypes,{} \\axiom{possiblyInfinite?(\\spad{s}) = not explictlyFinite?(\\spad{s})}.")) (|explicitlyFinite?| (((|Boolean|) $) "\\spad{explicitlyFinite?(s)} tests if the stream has a finite number of elements,{} and \\spad{false} otherwise. Note: for many datatypes,{} \\axiom{explicitlyFinite?(\\spad{s}) = not possiblyInfinite?(\\spad{s})}.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-1062 |Key| |Ent| |dent|)
+(-1064 |Key| |Ent| |dent|)
((|constructor| (NIL "A sparse table has a default entry,{} which is returned if no other value has been explicitly stored for a key.")))
-((-4249 . T))
-((-12 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -286) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2402) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2746) (|devaluate| |#2|)))))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| |#2| (QUOTE (-1016)))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -564) (QUOTE (-499)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-786))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-1063)
+((-4251 . T))
+((-12 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -288) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2019) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1221) (|devaluate| |#2|)))))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1018)))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -566) (QUOTE (-501)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-788))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-1065)
((|constructor| (NIL "A class of objects which can be 'stepped through'. Repeated applications of \\spadfun{nextItem} is guaranteed never to return duplicate items and only return \"failed\" after exhausting all elements of the domain. This assumes that the sequence starts with \\spad{init()}. For infinite domains,{} repeated application of \\spadfun{nextItem} is not required to reach all possible domain elements starting from any initial element. \\blankline Conditional attributes: \\indented{2}{infinite\\tab{15}repeated \\spad{nextItem}\\spad{'s} are never \"failed\".}")) (|nextItem| (((|Union| $ "failed") $) "\\spad{nextItem(x)} returns the next item,{} or \"failed\" if domain is exhausted.")) (|init| (($) "\\spad{init()} chooses an initial object for stepping.")))
NIL
NIL
-(-1064 |Coef|)
+(-1066 |Coef|)
((|constructor| (NIL "This package computes infinite products of Taylor series over an integral domain of characteristic 0. Here Taylor series are represented by streams of Taylor coefficients.")) (|generalInfiniteProduct| (((|Stream| |#1|) (|Stream| |#1|) (|Integer|) (|Integer|)) "\\spad{generalInfiniteProduct(f(x),{}a,{}d)} computes \\spad{product(n=a,{}a+d,{}a+2*d,{}...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|oddInfiniteProduct| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{oddInfiniteProduct(f(x))} computes \\spad{product(n=1,{}3,{}5...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|evenInfiniteProduct| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{evenInfiniteProduct(f(x))} computes \\spad{product(n=2,{}4,{}6...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|infiniteProduct| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{infiniteProduct(f(x))} computes \\spad{product(n=1,{}2,{}3...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")))
NIL
NIL
-(-1065 S)
+(-1067 S)
((|constructor| (NIL "Functions defined on streams with entries in one set.")) (|concat| (((|Stream| |#1|) (|Stream| (|Stream| |#1|))) "\\spad{concat(u)} returns the left-to-right concatentation of the streams in \\spad{u}. Note: \\spad{concat(u) = reduce(concat,{}u)}.")))
NIL
NIL
-(-1066 A B)
+(-1068 A B)
((|constructor| (NIL "Functions defined on streams with entries in two sets.")) (|reduce| ((|#2| |#2| (|Mapping| |#2| |#1| |#2|) (|Stream| |#1|)) "\\spad{reduce(b,{}f,{}u)},{} where \\spad{u} is a finite stream \\spad{[x0,{}x1,{}...,{}xn]},{} returns the value \\spad{r(n)} computed as follows: \\spad{r0 = f(x0,{}b),{} r1 = f(x1,{}r0),{}...,{} r(n) = f(xn,{}r(n-1))}.")) (|scan| (((|Stream| |#2|) |#2| (|Mapping| |#2| |#1| |#2|) (|Stream| |#1|)) "\\spad{scan(b,{}h,{}[x0,{}x1,{}x2,{}...])} returns \\spad{[y0,{}y1,{}y2,{}...]},{} where \\spad{y0 = h(x0,{}b)},{} \\spad{y1 = h(x1,{}y0)},{}\\spad{...} \\spad{yn = h(xn,{}y(n-1))}.")) (|map| (((|Stream| |#2|) (|Mapping| |#2| |#1|) (|Stream| |#1|)) "\\spad{map(f,{}s)} returns a stream whose elements are the function \\spad{f} applied to the corresponding elements of \\spad{s}. Note: \\spad{map(f,{}[x0,{}x1,{}x2,{}...]) = [f(x0),{}f(x1),{}f(x2),{}..]}.")))
NIL
NIL
-(-1067 A B C)
+(-1069 A B C)
((|constructor| (NIL "Functions defined on streams with entries in three sets.")) (|map| (((|Stream| |#3|) (|Mapping| |#3| |#1| |#2|) (|Stream| |#1|) (|Stream| |#2|)) "\\spad{map(f,{}st1,{}st2)} returns the stream whose elements are the function \\spad{f} applied to the corresponding elements of \\spad{st1} and \\spad{st2}. Note: \\spad{map(f,{}[x0,{}x1,{}x2,{}..],{}[y0,{}y1,{}y2,{}..]) = [f(x0,{}y0),{}f(x1,{}y1),{}..]}.")))
NIL
NIL
-(-1068 S)
+(-1070 S)
((|constructor| (NIL "A stream is an implementation of an infinite sequence using a list of terms that have been computed and a function closure to compute additional terms when needed.")) (|filterUntil| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{filterUntil(p,{}s)} returns \\spad{[x0,{}x1,{}...,{}x(n)]} where \\spad{s = [x0,{}x1,{}x2,{}..]} and \\spad{n} is the smallest index such that \\spad{p(xn) = true}.")) (|filterWhile| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{filterWhile(p,{}s)} returns \\spad{[x0,{}x1,{}...,{}x(n-1)]} where \\spad{s = [x0,{}x1,{}x2,{}..]} and \\spad{n} is the smallest index such that \\spad{p(xn) = false}.")) (|generate| (($ (|Mapping| |#1| |#1|) |#1|) "\\spad{generate(f,{}x)} creates an infinite stream whose first element is \\spad{x} and whose \\spad{n}th element (\\spad{n > 1}) is \\spad{f} applied to the previous element. Note: \\spad{generate(f,{}x) = [x,{}f(x),{}f(f(x)),{}...]}.") (($ (|Mapping| |#1|)) "\\spad{generate(f)} creates an infinite stream all of whose elements are equal to \\spad{f()}. Note: \\spad{generate(f) = [f(),{}f(),{}f(),{}...]}.")) (|setrest!| (($ $ (|Integer|) $) "\\spad{setrest!(x,{}n,{}y)} sets rest(\\spad{x},{}\\spad{n}) to \\spad{y}. The function will expand cycles if necessary.")) (|showAll?| (((|Boolean|)) "\\spad{showAll?()} returns \\spad{true} if all computed entries of streams will be displayed.")) (|showAllElements| (((|OutputForm|) $) "\\spad{showAllElements(s)} creates an output form which displays all computed elements.")) (|output| (((|Void|) (|Integer|) $) "\\spad{output(n,{}st)} computes and displays the first \\spad{n} entries of \\spad{st}.")) (|cons| (($ |#1| $) "\\spad{cons(a,{}s)} returns a stream whose \\spad{first} is \\spad{a} and whose \\spad{rest} is \\spad{s}. Note: \\spad{cons(a,{}s) = concat(a,{}s)}.")) (|delay| (($ (|Mapping| $)) "\\spad{delay(f)} creates a stream with a lazy evaluation defined by function \\spad{f}. Caution: This function can only be called in compiled code.")) (|findCycle| (((|Record| (|:| |cycle?| (|Boolean|)) (|:| |prefix| (|NonNegativeInteger|)) (|:| |period| (|NonNegativeInteger|))) (|NonNegativeInteger|) $) "\\spad{findCycle(n,{}st)} determines if \\spad{st} is periodic within \\spad{n}.")) (|repeating?| (((|Boolean|) (|List| |#1|) $) "\\spad{repeating?(l,{}s)} returns \\spad{true} if a stream \\spad{s} is periodic with period \\spad{l},{} and \\spad{false} otherwise.")) (|repeating| (($ (|List| |#1|)) "\\spad{repeating(l)} is a repeating stream whose period is the list \\spad{l}.")) (|coerce| (($ (|List| |#1|)) "\\spad{coerce(l)} converts a list \\spad{l} to a stream.")) (|shallowlyMutable| ((|attribute|) "one may destructively alter a stream by assigning new values to its entries.")))
-((-4249 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-1069)
+((-4251 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-1071)
((|constructor| (NIL "A category for string-like objects")) (|string| (($ (|Integer|)) "\\spad{string(i)} returns the decimal representation of \\spad{i} in a string")))
-((-4249 . T) (-4248 . T) (-2500 . T))
+((-4251 . T) (-4250 . T) (-2137 . T))
NIL
-(-1070)
+(-1072)
NIL
-((-4249 . T) (-4248 . T))
-((-3255 (-12 (|HasCategory| (-133) (QUOTE (-786))) (|HasCategory| (-133) (LIST (QUOTE -286) (QUOTE (-133))))) (-12 (|HasCategory| (-133) (QUOTE (-1016))) (|HasCategory| (-133) (LIST (QUOTE -286) (QUOTE (-133)))))) (|HasCategory| (-133) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| (-133) (QUOTE (-786))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| (-133) (QUOTE (-1016))) (-12 (|HasCategory| (-133) (QUOTE (-1016))) (|HasCategory| (-133) (LIST (QUOTE -286) (QUOTE (-133))))) (|HasCategory| (-133) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-1071 |Entry|)
+((-4251 . T) (-4250 . T))
+((-3321 (-12 (|HasCategory| (-135) (QUOTE (-788))) (|HasCategory| (-135) (LIST (QUOTE -288) (QUOTE (-135))))) (-12 (|HasCategory| (-135) (QUOTE (-1018))) (|HasCategory| (-135) (LIST (QUOTE -288) (QUOTE (-135)))))) (|HasCategory| (-135) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| (-135) (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| (-135) (QUOTE (-1018))) (-12 (|HasCategory| (-135) (QUOTE (-1018))) (|HasCategory| (-135) (LIST (QUOTE -288) (QUOTE (-135))))) (|HasCategory| (-135) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-1073 |Entry|)
((|constructor| (NIL "This domain provides tables where the keys are strings. A specialized hash function for strings is used.")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (LIST (QUOTE -286) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2402) (QUOTE (-1070))) (LIST (QUOTE |:|) (QUOTE -2746) (|devaluate| |#1|)))))) (-3255 (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-1016)))) (-3255 (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (LIST (QUOTE -564) (QUOTE (-499)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (QUOTE (-1016))) (|HasCategory| (-1070) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-1072 A)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (LIST (QUOTE -288) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2019) (QUOTE (-1072))) (LIST (QUOTE |:|) (QUOTE -1221) (|devaluate| |#1|)))))) (-3321 (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-1018)))) (-3321 (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (LIST (QUOTE -566) (QUOTE (-501)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (QUOTE (-1018))) (|HasCategory| (-1072) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-1074 A)
((|constructor| (NIL "StreamTaylorSeriesOperations implements Taylor series arithmetic,{} where a Taylor series is represented by a stream of its coefficients.")) (|power| (((|Stream| |#1|) |#1| (|Stream| |#1|)) "\\spad{power(a,{}f)} returns the power series \\spad{f} raised to the power \\spad{a}.")) (|lazyGintegrate| (((|Stream| |#1|) (|Mapping| |#1| (|Integer|)) |#1| (|Mapping| (|Stream| |#1|))) "\\spad{lazyGintegrate(f,{}r,{}g)} is used for fixed point computations.")) (|mapdiv| (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{mapdiv([a0,{}a1,{}..],{}[b0,{}b1,{}..])} returns \\spad{[a0/b0,{}a1/b1,{}..]}.")) (|powern| (((|Stream| |#1|) (|Fraction| (|Integer|)) (|Stream| |#1|)) "\\spad{powern(r,{}f)} raises power series \\spad{f} to the power \\spad{r}.")) (|nlde| (((|Stream| |#1|) (|Stream| (|Stream| |#1|))) "\\spad{nlde(u)} solves a first order non-linear differential equation described by \\spad{u} of the form \\spad{[[b<0,{}0>,{}b<0,{}1>,{}...],{}[b<1,{}0>,{}b<1,{}1>,{}.],{}...]}. the differential equation has the form \\spad{y' = sum(i=0 to infinity,{}j=0 to infinity,{}b<i,{}j>*(x**i)*(y**j))}.")) (|lazyIntegrate| (((|Stream| |#1|) |#1| (|Mapping| (|Stream| |#1|))) "\\spad{lazyIntegrate(r,{}f)} is a local function used for fixed point computations.")) (|integrate| (((|Stream| |#1|) |#1| (|Stream| |#1|)) "\\spad{integrate(r,{}a)} returns the integral of the power series \\spad{a} with respect to the power series variableintegration where \\spad{r} denotes the constant of integration. Thus \\spad{integrate(a,{}[a0,{}a1,{}a2,{}...]) = [a,{}a0,{}a1/2,{}a2/3,{}...]}.")) (|invmultisect| (((|Stream| |#1|) (|Integer|) (|Integer|) (|Stream| |#1|)) "\\spad{invmultisect(a,{}b,{}st)} substitutes \\spad{x**((a+b)*n)} for \\spad{x**n} and multiplies by \\spad{x**b}.")) (|multisect| (((|Stream| |#1|) (|Integer|) (|Integer|) (|Stream| |#1|)) "\\spad{multisect(a,{}b,{}st)} selects the coefficients of \\spad{x**((a+b)*n+a)},{} and changes them to \\spad{x**n}.")) (|generalLambert| (((|Stream| |#1|) (|Stream| |#1|) (|Integer|) (|Integer|)) "\\spad{generalLambert(f(x),{}a,{}d)} returns \\spad{f(x**a) + f(x**(a + d)) + f(x**(a + 2 d)) + ...}. \\spad{f(x)} should have zero constant coefficient and \\spad{a} and \\spad{d} should be positive.")) (|evenlambert| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{evenlambert(st)} computes \\spad{f(x**2) + f(x**4) + f(x**6) + ...} if \\spad{st} is a stream representing \\spad{f(x)}. This function is used for computing infinite products. If \\spad{f(x)} is a power series with constant coefficient 1,{} then \\spad{prod(f(x**(2*n)),{}n=1..infinity) = exp(evenlambert(log(f(x))))}.")) (|oddlambert| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{oddlambert(st)} computes \\spad{f(x) + f(x**3) + f(x**5) + ...} if \\spad{st} is a stream representing \\spad{f(x)}. This function is used for computing infinite products. If \\spad{f}(\\spad{x}) is a power series with constant coefficient 1 then \\spad{prod(f(x**(2*n-1)),{}n=1..infinity) = exp(oddlambert(log(f(x))))}.")) (|lambert| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{lambert(st)} computes \\spad{f(x) + f(x**2) + f(x**3) + ...} if \\spad{st} is a stream representing \\spad{f(x)}. This function is used for computing infinite products. If \\spad{f(x)} is a power series with constant coefficient 1 then \\spad{prod(f(x**n),{}n = 1..infinity) = exp(lambert(log(f(x))))}.")) (|addiag| (((|Stream| |#1|) (|Stream| (|Stream| |#1|))) "\\spad{addiag(x)} performs diagonal addition of a stream of streams. if \\spad{x} = \\spad{[[a<0,{}0>,{}a<0,{}1>,{}..],{}[a<1,{}0>,{}a<1,{}1>,{}..],{}[a<2,{}0>,{}a<2,{}1>,{}..],{}..]} and \\spad{addiag(x) = [b<0,{}b<1>,{}...],{} then b<k> = sum(i+j=k,{}a<i,{}j>)}.")) (|revert| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{revert(a)} computes the inverse of a power series \\spad{a} with respect to composition. the series should have constant coefficient 0 and first order coefficient 1.")) (|lagrange| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{lagrange(g)} produces the power series for \\spad{f} where \\spad{f} is implicitly defined as \\spad{f(z) = z*g(f(z))}.")) (|compose| (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{compose(a,{}b)} composes the power series \\spad{a} with the power series \\spad{b}.")) (|eval| (((|Stream| |#1|) (|Stream| |#1|) |#1|) "\\spad{eval(a,{}r)} returns a stream of partial sums of the power series \\spad{a} evaluated at the power series variable equal to \\spad{r}.")) (|coerce| (((|Stream| |#1|) |#1|) "\\spad{coerce(r)} converts a ring element \\spad{r} to a stream with one element.")) (|gderiv| (((|Stream| |#1|) (|Mapping| |#1| (|Integer|)) (|Stream| |#1|)) "\\spad{gderiv(f,{}[a0,{}a1,{}a2,{}..])} returns \\spad{[f(0)*a0,{}f(1)*a1,{}f(2)*a2,{}..]}.")) (|deriv| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{deriv(a)} returns the derivative of the power series with respect to the power series variable. Thus \\spad{deriv([a0,{}a1,{}a2,{}...])} returns \\spad{[a1,{}2 a2,{}3 a3,{}...]}.")) (|mapmult| (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{mapmult([a0,{}a1,{}..],{}[b0,{}b1,{}..])} returns \\spad{[a0*b0,{}a1*b1,{}..]}.")) (|int| (((|Stream| |#1|) |#1|) "\\spad{int(r)} returns [\\spad{r},{}\\spad{r+1},{}\\spad{r+2},{}...],{} where \\spad{r} is a ring element.")) (|oddintegers| (((|Stream| (|Integer|)) (|Integer|)) "\\spad{oddintegers(n)} returns \\spad{[n,{}n+2,{}n+4,{}...]}.")) (|integers| (((|Stream| (|Integer|)) (|Integer|)) "\\spad{integers(n)} returns \\spad{[n,{}n+1,{}n+2,{}...]}.")) (|monom| (((|Stream| |#1|) |#1| (|Integer|)) "\\spad{monom(deg,{}coef)} is a monomial of degree \\spad{deg} with coefficient \\spad{coef}.")) (|recip| (((|Union| (|Stream| |#1|) "failed") (|Stream| |#1|)) "\\spad{recip(a)} returns the power series reciprocal of \\spad{a},{} or \"failed\" if not possible.")) (/ (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{a / b} returns the power series quotient of \\spad{a} by \\spad{b}. An error message is returned if \\spad{b} is not invertible. This function is used in fixed point computations.")) (|exquo| (((|Union| (|Stream| |#1|) "failed") (|Stream| |#1|) (|Stream| |#1|)) "\\spad{exquo(a,{}b)} returns the power series quotient of \\spad{a} by \\spad{b},{} if the quotient exists,{} and \"failed\" otherwise")) (* (((|Stream| |#1|) (|Stream| |#1|) |#1|) "\\spad{a * r} returns the power series scalar multiplication of \\spad{a} by \\spad{r:} \\spad{[a0,{}a1,{}...] * r = [a0 * r,{}a1 * r,{}...]}") (((|Stream| |#1|) |#1| (|Stream| |#1|)) "\\spad{r * a} returns the power series scalar multiplication of \\spad{r} by \\spad{a}: \\spad{r * [a0,{}a1,{}...] = [r * a0,{}r * a1,{}...]}") (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{a * b} returns the power series (Cauchy) product of \\spad{a} and \\spad{b:} \\spad{[a0,{}a1,{}...] * [b0,{}b1,{}...] = [c0,{}c1,{}...]} where \\spad{ck = sum(i + j = k,{}\\spad{ai} * bk)}.")) (- (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{- a} returns the power series negative of \\spad{a}: \\spad{- [a0,{}a1,{}...] = [- a0,{}- a1,{}...]}") (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{a - b} returns the power series difference of \\spad{a} and \\spad{b}: \\spad{[a0,{}a1,{}..] - [b0,{}b1,{}..] = [a0 - b0,{}a1 - b1,{}..]}")) (+ (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{a + b} returns the power series sum of \\spad{a} and \\spad{b}: \\spad{[a0,{}a1,{}..] + [b0,{}b1,{}..] = [a0 + b0,{}a1 + b1,{}..]}")))
NIL
-((|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))))
-(-1073 |Coef|)
+((|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))))
+(-1075 |Coef|)
((|constructor| (NIL "StreamTranscendentalFunctionsNonCommutative implements transcendental functions on Taylor series over a non-commutative ring,{} where a Taylor series is represented by a stream of its coefficients.")) (|acsch| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acsch(st)} computes the inverse hyperbolic cosecant of a power series \\spad{st}.")) (|asech| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asech(st)} computes the inverse hyperbolic secant of a power series \\spad{st}.")) (|acoth| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acoth(st)} computes the inverse hyperbolic cotangent of a power series \\spad{st}.")) (|atanh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{atanh(st)} computes the inverse hyperbolic tangent of a power series \\spad{st}.")) (|acosh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acosh(st)} computes the inverse hyperbolic cosine of a power series \\spad{st}.")) (|asinh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asinh(st)} computes the inverse hyperbolic sine of a power series \\spad{st}.")) (|csch| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{csch(st)} computes the hyperbolic cosecant of a power series \\spad{st}.")) (|sech| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sech(st)} computes the hyperbolic secant of a power series \\spad{st}.")) (|coth| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{coth(st)} computes the hyperbolic cotangent of a power series \\spad{st}.")) (|tanh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{tanh(st)} computes the hyperbolic tangent of a power series \\spad{st}.")) (|cosh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{cosh(st)} computes the hyperbolic cosine of a power series \\spad{st}.")) (|sinh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sinh(st)} computes the hyperbolic sine of a power series \\spad{st}.")) (|acsc| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acsc(st)} computes arccosecant of a power series \\spad{st}.")) (|asec| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asec(st)} computes arcsecant of a power series \\spad{st}.")) (|acot| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acot(st)} computes arccotangent of a power series \\spad{st}.")) (|atan| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{atan(st)} computes arctangent of a power series \\spad{st}.")) (|acos| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acos(st)} computes arccosine of a power series \\spad{st}.")) (|asin| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asin(st)} computes arcsine of a power series \\spad{st}.")) (|csc| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{csc(st)} computes cosecant of a power series \\spad{st}.")) (|sec| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sec(st)} computes secant of a power series \\spad{st}.")) (|cot| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{cot(st)} computes cotangent of a power series \\spad{st}.")) (|tan| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{tan(st)} computes tangent of a power series \\spad{st}.")) (|cos| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{cos(st)} computes cosine of a power series \\spad{st}.")) (|sin| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sin(st)} computes sine of a power series \\spad{st}.")) (** (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{st1 ** st2} computes the power of a power series \\spad{st1} by another power series \\spad{st2}.")) (|log| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{log(st)} computes the log of a power series.")) (|exp| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{exp(st)} computes the exponential of a power series \\spad{st}.")))
NIL
NIL
-(-1074 |Coef|)
+(-1076 |Coef|)
((|constructor| (NIL "StreamTranscendentalFunctions implements transcendental functions on Taylor series,{} where a Taylor series is represented by a stream of its coefficients.")) (|acsch| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acsch(st)} computes the inverse hyperbolic cosecant of a power series \\spad{st}.")) (|asech| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asech(st)} computes the inverse hyperbolic secant of a power series \\spad{st}.")) (|acoth| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acoth(st)} computes the inverse hyperbolic cotangent of a power series \\spad{st}.")) (|atanh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{atanh(st)} computes the inverse hyperbolic tangent of a power series \\spad{st}.")) (|acosh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acosh(st)} computes the inverse hyperbolic cosine of a power series \\spad{st}.")) (|asinh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asinh(st)} computes the inverse hyperbolic sine of a power series \\spad{st}.")) (|csch| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{csch(st)} computes the hyperbolic cosecant of a power series \\spad{st}.")) (|sech| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sech(st)} computes the hyperbolic secant of a power series \\spad{st}.")) (|coth| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{coth(st)} computes the hyperbolic cotangent of a power series \\spad{st}.")) (|tanh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{tanh(st)} computes the hyperbolic tangent of a power series \\spad{st}.")) (|cosh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{cosh(st)} computes the hyperbolic cosine of a power series \\spad{st}.")) (|sinh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sinh(st)} computes the hyperbolic sine of a power series \\spad{st}.")) (|sinhcosh| (((|Record| (|:| |sinh| (|Stream| |#1|)) (|:| |cosh| (|Stream| |#1|))) (|Stream| |#1|)) "\\spad{sinhcosh(st)} returns a record containing the hyperbolic sine and cosine of a power series \\spad{st}.")) (|acsc| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acsc(st)} computes arccosecant of a power series \\spad{st}.")) (|asec| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asec(st)} computes arcsecant of a power series \\spad{st}.")) (|acot| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acot(st)} computes arccotangent of a power series \\spad{st}.")) (|atan| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{atan(st)} computes arctangent of a power series \\spad{st}.")) (|acos| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acos(st)} computes arccosine of a power series \\spad{st}.")) (|asin| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asin(st)} computes arcsine of a power series \\spad{st}.")) (|csc| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{csc(st)} computes cosecant of a power series \\spad{st}.")) (|sec| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sec(st)} computes secant of a power series \\spad{st}.")) (|cot| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{cot(st)} computes cotangent of a power series \\spad{st}.")) (|tan| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{tan(st)} computes tangent of a power series \\spad{st}.")) (|cos| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{cos(st)} computes cosine of a power series \\spad{st}.")) (|sin| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sin(st)} computes sine of a power series \\spad{st}.")) (|sincos| (((|Record| (|:| |sin| (|Stream| |#1|)) (|:| |cos| (|Stream| |#1|))) (|Stream| |#1|)) "\\spad{sincos(st)} returns a record containing the sine and cosine of a power series \\spad{st}.")) (** (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{st1 ** st2} computes the power of a power series \\spad{st1} by another power series \\spad{st2}.")) (|log| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{log(st)} computes the log of a power series.")) (|exp| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{exp(st)} computes the exponential of a power series \\spad{st}.")))
NIL
NIL
-(-1075 R UP)
+(-1077 R UP)
((|constructor| (NIL "This package computes the subresultants of two polynomials which is needed for the `Lazard Rioboo' enhancement to Tragers integrations formula For efficiency reasons this has been rewritten to call Lionel Ducos package which is currently the best one. \\blankline")) (|primitivePart| ((|#2| |#2| |#1|) "\\spad{primitivePart(p,{} q)} reduces the coefficient of \\spad{p} modulo \\spad{q},{} takes the primitive part of the result,{} and ensures that the leading coefficient of that result is monic.")) (|subresultantVector| (((|PrimitiveArray| |#2|) |#2| |#2|) "\\spad{subresultantVector(p,{} q)} returns \\spad{[p0,{}...,{}pn]} where \\spad{pi} is the \\spad{i}-th subresultant of \\spad{p} and \\spad{q}. In particular,{} \\spad{p0 = resultant(p,{} q)}.")))
NIL
-((|HasCategory| |#1| (QUOTE (-284))))
-(-1076 |n| R)
+((|HasCategory| |#1| (QUOTE (-286))))
+(-1078 |n| R)
((|constructor| (NIL "This domain \\undocumented")) (|pointData| (((|List| (|Point| |#2|)) $) "\\spad{pointData(s)} returns the list of points from the point data field of the 3 dimensional subspace \\spad{s}.")) (|parent| (($ $) "\\spad{parent(s)} returns the subspace which is the parent of the indicated 3 dimensional subspace \\spad{s}. If \\spad{s} is the top level subspace an error message is returned.")) (|level| (((|NonNegativeInteger|) $) "\\spad{level(s)} returns a non negative integer which is the current level field of the indicated 3 dimensional subspace \\spad{s}.")) (|extractProperty| (((|SubSpaceComponentProperty|) $) "\\spad{extractProperty(s)} returns the property of domain \\spadtype{SubSpaceComponentProperty} of the indicated 3 dimensional subspace \\spad{s}.")) (|extractClosed| (((|Boolean|) $) "\\spad{extractClosed(s)} returns the \\spadtype{Boolean} value of the closed property for the indicated 3 dimensional subspace \\spad{s}. If the property is closed,{} \\spad{True} is returned,{} otherwise \\spad{False} is returned.")) (|extractIndex| (((|NonNegativeInteger|) $) "\\spad{extractIndex(s)} returns a non negative integer which is the current index of the 3 dimensional subspace \\spad{s}.")) (|extractPoint| (((|Point| |#2|) $) "\\spad{extractPoint(s)} returns the point which is given by the current index location into the point data field of the 3 dimensional subspace \\spad{s}.")) (|traverse| (($ $ (|List| (|NonNegativeInteger|))) "\\spad{traverse(s,{}\\spad{li})} follows the branch list of the 3 dimensional subspace,{} \\spad{s},{} along the path dictated by the list of non negative integers,{} \\spad{li},{} which points to the component which has been traversed to. The subspace,{} \\spad{s},{} is returned,{} where \\spad{s} is now the subspace pointed to by \\spad{li}.")) (|defineProperty| (($ $ (|List| (|NonNegativeInteger|)) (|SubSpaceComponentProperty|)) "\\spad{defineProperty(s,{}\\spad{li},{}p)} defines the component property in the 3 dimensional subspace,{} \\spad{s},{} to be that of \\spad{p},{} where \\spad{p} is of the domain \\spadtype{SubSpaceComponentProperty}. The list of non negative integers,{} \\spad{li},{} dictates the path to follow,{} or,{} to look at it another way,{} points to the component whose property is being defined. The subspace,{} \\spad{s},{} is returned with the component property definition.")) (|closeComponent| (($ $ (|List| (|NonNegativeInteger|)) (|Boolean|)) "\\spad{closeComponent(s,{}\\spad{li},{}b)} sets the property of the component in the 3 dimensional subspace,{} \\spad{s},{} to be closed if \\spad{b} is \\spad{true},{} or open if \\spad{b} is \\spad{false}. The list of non negative integers,{} \\spad{li},{} dictates the path to follow,{} or,{} to look at it another way,{} points to the component whose closed property is to be set. The subspace,{} \\spad{s},{} is returned with the component property modification.")) (|modifyPoint| (($ $ (|NonNegativeInteger|) (|Point| |#2|)) "\\spad{modifyPoint(s,{}ind,{}p)} modifies the point referenced by the index location,{} \\spad{ind},{} by replacing it with the point,{} \\spad{p} in the 3 dimensional subspace,{} \\spad{s}. An error message occurs if \\spad{s} is empty,{} otherwise the subspace \\spad{s} is returned with the point modification.") (($ $ (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{modifyPoint(s,{}\\spad{li},{}i)} replaces an existing point in the 3 dimensional subspace,{} \\spad{s},{} with the 4 dimensional point indicated by the index location,{} \\spad{i}. The list of non negative integers,{} \\spad{li},{} dictates the path to follow,{} or,{} to look at it another way,{} points to the component in which the existing point is to be modified. An error message occurs if \\spad{s} is empty,{} otherwise the subspace \\spad{s} is returned with the point modification.") (($ $ (|List| (|NonNegativeInteger|)) (|Point| |#2|)) "\\spad{modifyPoint(s,{}\\spad{li},{}p)} replaces an existing point in the 3 dimensional subspace,{} \\spad{s},{} with the 4 dimensional point,{} \\spad{p}. The list of non negative integers,{} \\spad{li},{} dictates the path to follow,{} or,{} to look at it another way,{} points to the component in which the existing point is to be modified. An error message occurs if \\spad{s} is empty,{} otherwise the subspace \\spad{s} is returned with the point modification.")) (|addPointLast| (($ $ $ (|Point| |#2|) (|NonNegativeInteger|)) "\\spad{addPointLast(s,{}s2,{}\\spad{li},{}p)} adds the 4 dimensional point,{} \\spad{p},{} to the 3 dimensional subspace,{} \\spad{s}. \\spad{s2} point to the end of the subspace \\spad{s}. \\spad{n} is the path in the \\spad{s2} component. The subspace \\spad{s} is returned with the additional point.")) (|addPoint2| (($ $ (|Point| |#2|)) "\\spad{addPoint2(s,{}p)} adds the 4 dimensional point,{} \\spad{p},{} to the 3 dimensional subspace,{} \\spad{s}. The subspace \\spad{s} is returned with the additional point.")) (|addPoint| (((|NonNegativeInteger|) $ (|Point| |#2|)) "\\spad{addPoint(s,{}p)} adds the point,{} \\spad{p},{} to the 3 dimensional subspace,{} \\spad{s},{} and returns the new total number of points in \\spad{s}.") (($ $ (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{addPoint(s,{}\\spad{li},{}i)} adds the 4 dimensional point indicated by the index location,{} \\spad{i},{} to the 3 dimensional subspace,{} \\spad{s}. The list of non negative integers,{} \\spad{li},{} dictates the path to follow,{} or,{} to look at it another way,{} points to the component in which the point is to be added. It\\spad{'s} length should range from 0 to \\spad{n - 1} where \\spad{n} is the dimension of the subspace. If the length is \\spad{n - 1},{} then a specific lowest level component is being referenced. If it is less than \\spad{n - 1},{} then some higher level component (0 indicates top level component) is being referenced and a component of that level with the desired point is created. The subspace \\spad{s} is returned with the additional point.") (($ $ (|List| (|NonNegativeInteger|)) (|Point| |#2|)) "\\spad{addPoint(s,{}\\spad{li},{}p)} adds the 4 dimensional point,{} \\spad{p},{} to the 3 dimensional subspace,{} \\spad{s}. The list of non negative integers,{} \\spad{li},{} dictates the path to follow,{} or,{} to look at it another way,{} points to the component in which the point is to be added. It\\spad{'s} length should range from 0 to \\spad{n - 1} where \\spad{n} is the dimension of the subspace. If the length is \\spad{n - 1},{} then a specific lowest level component is being referenced. If it is less than \\spad{n - 1},{} then some higher level component (0 indicates top level component) is being referenced and a component of that level with the desired point is created. The subspace \\spad{s} is returned with the additional point.")) (|separate| (((|List| $) $) "\\spad{separate(s)} makes each of the components of the \\spadtype{SubSpace},{} \\spad{s},{} into a list of separate and distinct subspaces and returns the list.")) (|merge| (($ (|List| $)) "\\spad{merge(ls)} a list of subspaces,{} \\spad{ls},{} into one subspace.") (($ $ $) "\\spad{merge(s1,{}s2)} the subspaces \\spad{s1} and \\spad{s2} into a single subspace.")) (|deepCopy| (($ $) "\\spad{deepCopy(x)} \\undocumented")) (|shallowCopy| (($ $) "\\spad{shallowCopy(x)} \\undocumented")) (|numberOfChildren| (((|NonNegativeInteger|) $) "\\spad{numberOfChildren(x)} \\undocumented")) (|children| (((|List| $) $) "\\spad{children(x)} \\undocumented")) (|child| (($ $ (|NonNegativeInteger|)) "\\spad{child(x,{}n)} \\undocumented")) (|birth| (($ $) "\\spad{birth(x)} \\undocumented")) (|subspace| (($) "\\spad{subspace()} \\undocumented")) (|new| (($) "\\spad{new()} \\undocumented")) (|internal?| (((|Boolean|) $) "\\spad{internal?(x)} \\undocumented")) (|root?| (((|Boolean|) $) "\\spad{root?(x)} \\undocumented")) (|leaf?| (((|Boolean|) $) "\\spad{leaf?(x)} \\undocumented")))
NIL
NIL
-(-1077 S1 S2)
+(-1079 S1 S2)
((|constructor| (NIL "This domain implements \"such that\" forms")) (|rhs| ((|#2| $) "\\spad{rhs(f)} returns the right side of \\spad{f}")) (|lhs| ((|#1| $) "\\spad{lhs(f)} returns the left side of \\spad{f}")) (|construct| (($ |#1| |#2|) "\\spad{construct(s,{}t)} makes a form \\spad{s:t}")))
NIL
NIL
-(-1078 |Coef| |var| |cen|)
+(-1080 |Coef| |var| |cen|)
((|constructor| (NIL "Sparse Laurent series in one variable \\indented{2}{\\spadtype{SparseUnivariateLaurentSeries} is a domain representing Laurent} \\indented{2}{series in one variable with coefficients in an arbitrary ring.\\space{2}The} \\indented{2}{parameters of the type specify the coefficient ring,{} the power series} \\indented{2}{variable,{} and the center of the power series expansion.\\space{2}For example,{}} \\indented{2}{\\spad{SparseUnivariateLaurentSeries(Integer,{}x,{}3)} represents Laurent} \\indented{2}{series in \\spad{(x - 3)} with integer coefficients.}")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),{}x)} returns the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a Laurent series.")))
-(((-4250 "*") -3255 (-2819 (|has| |#1| (-339)) (|has| (-1085 |#1| |#2| |#3|) (-759))) (|has| |#1| (-158)) (-2819 (|has| |#1| (-339)) (|has| (-1085 |#1| |#2| |#3|) (-840)))) (-4241 -3255 (-2819 (|has| |#1| (-339)) (|has| (-1085 |#1| |#2| |#3|) (-759))) (|has| |#1| (-515)) (-2819 (|has| |#1| (-339)) (|has| (-1085 |#1| |#2| |#3|) (-840)))) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) (-4242 . T) (-4243 . T) (-4245 . T))
-((-3255 (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-759))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-840))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-949))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-1063))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -263) (LIST (QUOTE -1085) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1085) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -286) (LIST (QUOTE -1085) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -484) (QUOTE (-1087)) (LIST (QUOTE -1085) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -964) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (-3255 (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (QUOTE (-134)))) (-3255 (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (QUOTE (-136)))) (-3255 (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-523)) (|devaluate| |#1|)))))) (-3255 (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-211))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-523)) (|devaluate| |#1|))))) (|HasCategory| (-523) (QUOTE (-1028))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-339))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-840))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -964) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-949))) (|HasCategory| |#1| (QUOTE (-339)))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-759))) (|HasCategory| |#1| (QUOTE (-339)))) (-3255 (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-759))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-339))))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-1063))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -263) (LIST (QUOTE -1085) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1085) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -286) (LIST (QUOTE -1085) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -484) (QUOTE (-1087)) (LIST (QUOTE -1085) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-523))))) (|HasSignature| |#1| (LIST (QUOTE -3976) (LIST (|devaluate| |#1|) (QUOTE (-1087)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-523))))) (-3255 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-889))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasSignature| |#1| (LIST (QUOTE -2669) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1087))))) (|HasSignature| |#1| (LIST (QUOTE -3716) (LIST (LIST (QUOTE -589) (QUOTE (-1087))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-508))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-840))) (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-134))) (-3255 (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-759))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-840))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (QUOTE (-515)))) (-3255 (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523)))))) (-3255 (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-759))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-840))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (QUOTE (-158)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-840))) (|HasCategory| |#1| (QUOTE (-339)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-840))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1085 |#1| |#2| |#3|) (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (QUOTE (-134)))))
-(-1079 R -3894)
+(((-4252 "*") -3321 (-1213 (|has| |#1| (-341)) (|has| (-1087 |#1| |#2| |#3|) (-761))) (|has| |#1| (-160)) (-1213 (|has| |#1| (-341)) (|has| (-1087 |#1| |#2| |#3|) (-842)))) (-4243 -3321 (-1213 (|has| |#1| (-341)) (|has| (-1087 |#1| |#2| |#3|) (-761))) (|has| |#1| (-517)) (-1213 (|has| |#1| (-341)) (|has| (-1087 |#1| |#2| |#3|) (-842)))) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) (-4244 . T) (-4245 . T) (-4247 . T))
+((-3321 (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-761))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-842))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-951))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-1065))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -265) (LIST (QUOTE -1087) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1087) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -288) (LIST (QUOTE -1087) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -486) (QUOTE (-1089)) (LIST (QUOTE -1087) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -966) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (-3321 (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (QUOTE (-136)))) (-3321 (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (QUOTE (-138)))) (-3321 (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-525)) (|devaluate| |#1|)))))) (-3321 (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-213))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-525)) (|devaluate| |#1|))))) (|HasCategory| (-525) (QUOTE (-1030))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-341))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-842))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -966) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-951))) (|HasCategory| |#1| (QUOTE (-341)))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-761))) (|HasCategory| |#1| (QUOTE (-341)))) (-3321 (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-761))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-341))))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-1065))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -265) (LIST (QUOTE -1087) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1087) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -288) (LIST (QUOTE -1087) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -486) (QUOTE (-1089)) (LIST (QUOTE -1087) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-525))))) (|HasSignature| |#1| (LIST (QUOTE -3022) (LIST (|devaluate| |#1|) (QUOTE (-1089)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-525))))) (-3321 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-891))) (|HasCategory| |#1| (QUOTE (-1111))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasSignature| |#1| (LIST (QUOTE -4141) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1089))))) (|HasSignature| |#1| (LIST (QUOTE -1507) (LIST (LIST (QUOTE -591) (QUOTE (-1089))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-510))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-842))) (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-136))) (-3321 (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-761))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-842))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (QUOTE (-517)))) (-3321 (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525)))))) (-3321 (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-761))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-842))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (QUOTE (-160)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-842))) (|HasCategory| |#1| (QUOTE (-341)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-842))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1087 |#1| |#2| |#3|) (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (QUOTE (-136)))))
+(-1081 R -3576)
((|constructor| (NIL "computes sums of top-level expressions.")) (|sum| ((|#2| |#2| (|SegmentBinding| |#2|)) "\\spad{sum(f(n),{} n = a..b)} returns \\spad{f}(a) + \\spad{f}(a+1) + ... + \\spad{f}(\\spad{b}).") ((|#2| |#2| (|Symbol|)) "\\spad{sum(a(n),{} n)} returns A(\\spad{n}) such that A(\\spad{n+1}) - A(\\spad{n}) = a(\\spad{n}).")))
NIL
NIL
-(-1080 R)
+(-1082 R)
((|constructor| (NIL "Computes sums of rational functions.")) (|sum| (((|Union| (|Fraction| (|Polynomial| |#1|)) (|Expression| |#1|)) (|Fraction| (|Polynomial| |#1|)) (|SegmentBinding| (|Fraction| (|Polynomial| |#1|)))) "\\spad{sum(f(n),{} n = a..b)} returns \\spad{f(a) + f(a+1) + ... f(b)}.") (((|Fraction| (|Polynomial| |#1|)) (|Polynomial| |#1|) (|SegmentBinding| (|Polynomial| |#1|))) "\\spad{sum(f(n),{} n = a..b)} returns \\spad{f(a) + f(a+1) + ... f(b)}.") (((|Union| (|Fraction| (|Polynomial| |#1|)) (|Expression| |#1|)) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{sum(a(n),{} n)} returns \\spad{A} which is the indefinite sum of \\spad{a} with respect to upward difference on \\spad{n},{} \\spadignore{i.e.} \\spad{A(n+1) - A(n) = a(n)}.") (((|Fraction| (|Polynomial| |#1|)) (|Polynomial| |#1|) (|Symbol|)) "\\spad{sum(a(n),{} n)} returns \\spad{A} which is the indefinite sum of \\spad{a} with respect to upward difference on \\spad{n},{} \\spadignore{i.e.} \\spad{A(n+1) - A(n) = a(n)}.")))
NIL
NIL
-(-1081 R S)
+(-1083 R S)
((|constructor| (NIL "This package lifts a mapping from coefficient rings \\spad{R} to \\spad{S} to a mapping from sparse univariate polynomial over \\spad{R} to a sparse univariate polynomial over \\spad{S}. Note that the mapping is assumed to send zero to zero,{} since it will only be applied to the non-zero coefficients of the polynomial.")) (|map| (((|SparseUnivariatePolynomial| |#2|) (|Mapping| |#2| |#1|) (|SparseUnivariatePolynomial| |#1|)) "\\spad{map(func,{} poly)} creates a new polynomial by applying \\spad{func} to every non-zero coefficient of the polynomial poly.")))
NIL
NIL
-(-1082 E OV R P)
+(-1084 E OV R P)
((|constructor| (NIL "\\indented{1}{SupFractionFactorize} contains the factor function for univariate polynomials over the quotient field of a ring \\spad{S} such that the package MultivariateFactorize works for \\spad{S}")) (|squareFree| (((|Factored| (|SparseUnivariatePolynomial| (|Fraction| |#4|))) (|SparseUnivariatePolynomial| (|Fraction| |#4|))) "\\spad{squareFree(p)} returns the square-free factorization of the univariate polynomial \\spad{p} with coefficients which are fractions of polynomials over \\spad{R}. Each factor has no repeated roots and the factors are pairwise relatively prime.")) (|factor| (((|Factored| (|SparseUnivariatePolynomial| (|Fraction| |#4|))) (|SparseUnivariatePolynomial| (|Fraction| |#4|))) "\\spad{factor(p)} factors the univariate polynomial \\spad{p} with coefficients which are fractions of polynomials over \\spad{R}.")))
NIL
NIL
-(-1083 R)
+(-1085 R)
((|constructor| (NIL "This domain represents univariate polynomials over arbitrary (not necessarily commutative) coefficient rings. The variable is unspecified so that the variable displays as \\spad{?} on output. If it is necessary to specify the variable name,{} use type \\spadtype{UnivariatePolynomial}. The representation is sparse in the sense that only non-zero terms are represented.")) (|fmecg| (($ $ (|NonNegativeInteger|) |#1| $) "\\spad{fmecg(p1,{}e,{}r,{}p2)} finds \\spad{X} : \\spad{p1} - \\spad{r} * X**e * \\spad{p2}")) (|outputForm| (((|OutputForm|) $ (|OutputForm|)) "\\spad{outputForm(p,{}var)} converts the SparseUnivariatePolynomial \\spad{p} to an output form (see \\spadtype{OutputForm}) printed as a polynomial in the output form variable.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4244 |has| |#1| (-339)) (-4246 |has| |#1| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-840))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355)))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523)))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499))))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-427))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-1063))) (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasCategory| |#1| (QUOTE (-211))) (|HasAttribute| |#1| (QUOTE -4246)) (|HasCategory| |#1| (QUOTE (-427))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-134)))))
-(-1084 |Coef| |var| |cen|)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4246 |has| |#1| (-341)) (-4248 |has| |#1| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-842))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357)))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525)))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501))))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-429))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-1065))) (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasCategory| |#1| (QUOTE (-213))) (|HasAttribute| |#1| (QUOTE -4248)) (|HasCategory| |#1| (QUOTE (-429))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-136)))))
+(-1086 |Coef| |var| |cen|)
((|constructor| (NIL "Sparse Puiseux series in one variable \\indented{2}{\\spadtype{SparseUnivariatePuiseuxSeries} is a domain representing Puiseux} \\indented{2}{series in one variable with coefficients in an arbitrary ring.\\space{2}The} \\indented{2}{parameters of the type specify the coefficient ring,{} the power series} \\indented{2}{variable,{} and the center of the power series expansion.\\space{2}For example,{}} \\indented{2}{\\spad{SparseUnivariatePuiseuxSeries(Integer,{}x,{}3)} represents Puiseux} \\indented{2}{series in \\spad{(x - 3)} with \\spadtype{Integer} coefficients.}")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),{}x)} returns the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a Puiseux series.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (-12 (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523))) (|devaluate| |#1|)))) (|HasCategory| (-383 (-523)) (QUOTE (-1028))) (|HasCategory| |#1| (QUOTE (-339))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasSignature| |#1| (LIST (QUOTE -3976) (LIST (|devaluate| |#1|) (QUOTE (-1087)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523)))))) (-3255 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-889))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasSignature| |#1| (LIST (QUOTE -2669) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1087))))) (|HasSignature| |#1| (LIST (QUOTE -3716) (LIST (LIST (QUOTE -589) (QUOTE (-1087))) (|devaluate| |#1|)))))))
-(-1085 |Coef| |var| |cen|)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (-12 (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525))) (|devaluate| |#1|)))) (|HasCategory| (-385 (-525)) (QUOTE (-1030))) (|HasCategory| |#1| (QUOTE (-341))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasSignature| |#1| (LIST (QUOTE -3022) (LIST (|devaluate| |#1|) (QUOTE (-1089)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525)))))) (-3321 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-891))) (|HasCategory| |#1| (QUOTE (-1111))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasSignature| |#1| (LIST (QUOTE -4141) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1089))))) (|HasSignature| |#1| (LIST (QUOTE -1507) (LIST (LIST (QUOTE -591) (QUOTE (-1089))) (|devaluate| |#1|)))))))
+(-1087 |Coef| |var| |cen|)
((|constructor| (NIL "Sparse Taylor series in one variable \\indented{2}{\\spadtype{SparseUnivariateTaylorSeries} is a domain representing Taylor} \\indented{2}{series in one variable with coefficients in an arbitrary ring.\\space{2}The} \\indented{2}{parameters of the type specify the coefficient ring,{} the power series} \\indented{2}{variable,{} and the center of the power series expansion.\\space{2}For example,{}} \\indented{2}{\\spadtype{SparseUnivariateTaylorSeries}(Integer,{}\\spad{x},{}3) represents Taylor} \\indented{2}{series in \\spad{(x - 3)} with \\spadtype{Integer} coefficients.}")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x),{}x)} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),{}x)} computes the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|univariatePolynomial| (((|UnivariatePolynomial| |#2| |#1|) $ (|NonNegativeInteger|)) "\\spad{univariatePolynomial(f,{}k)} returns a univariate polynomial \\indented{1}{consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.}")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a \\indented{1}{Taylor series.}") (($ (|UnivariatePolynomial| |#2| |#1|)) "\\spad{coerce(p)} converts a univariate polynomial \\spad{p} in the variable \\spad{var} to a univariate Taylor series in \\spad{var}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-515))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (-12 (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-710)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-710)) (|devaluate| |#1|)))) (|HasCategory| (-710) (QUOTE (-1028))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-710))))) (|HasSignature| |#1| (LIST (QUOTE -3976) (LIST (|devaluate| |#1|) (QUOTE (-1087)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-710))))) (|HasCategory| |#1| (QUOTE (-339))) (-3255 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-889))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasSignature| |#1| (LIST (QUOTE -2669) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1087))))) (|HasSignature| |#1| (LIST (QUOTE -3716) (LIST (LIST (QUOTE -589) (QUOTE (-1087))) (|devaluate| |#1|)))))))
-(-1086)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-517))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (-12 (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-712)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-712)) (|devaluate| |#1|)))) (|HasCategory| (-712) (QUOTE (-1030))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-712))))) (|HasSignature| |#1| (LIST (QUOTE -3022) (LIST (|devaluate| |#1|) (QUOTE (-1089)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-712))))) (|HasCategory| |#1| (QUOTE (-341))) (-3321 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-891))) (|HasCategory| |#1| (QUOTE (-1111))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasSignature| |#1| (LIST (QUOTE -4141) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1089))))) (|HasSignature| |#1| (LIST (QUOTE -1507) (LIST (LIST (QUOTE -591) (QUOTE (-1089))) (|devaluate| |#1|)))))))
+(-1088)
((|constructor| (NIL "This domain builds representations of boolean expressions for use with the \\axiomType{FortranCode} domain.")) (NOT (($ $) "\\spad{NOT(x)} returns the \\axiomType{Switch} expression representing \\spad{\\~~x}.") (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{NOT(x)} returns the \\axiomType{Switch} expression representing \\spad{\\~~x}.")) (AND (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{AND(x,{}y)} returns the \\axiomType{Switch} expression representing \\spad{x and y}.")) (EQ (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{EQ(x,{}y)} returns the \\axiomType{Switch} expression representing \\spad{x = y}.")) (OR (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{OR(x,{}y)} returns the \\axiomType{Switch} expression representing \\spad{x or y}.")) (GE (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{GE(x,{}y)} returns the \\axiomType{Switch} expression representing \\spad{x>=y}.")) (LE (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{LE(x,{}y)} returns the \\axiomType{Switch} expression representing \\spad{x<=y}.")) (GT (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{GT(x,{}y)} returns the \\axiomType{Switch} expression representing \\spad{x>y}.")) (LT (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{LT(x,{}y)} returns the \\axiomType{Switch} expression representing \\spad{x<y}.")) (|coerce| (($ (|Symbol|)) "\\spad{coerce(s)} \\undocumented{}")))
NIL
NIL
-(-1087)
+(-1089)
((|constructor| (NIL "Basic and scripted symbols.")) (|sample| (($) "\\spad{sample()} returns a sample of \\%")) (|list| (((|List| $) $) "\\spad{list(sy)} takes a scripted symbol and produces a list of the name followed by the scripts.")) (|string| (((|String|) $) "\\spad{string(s)} converts the symbol \\spad{s} to a string. Error: if the symbol is subscripted.")) (|elt| (($ $ (|List| (|OutputForm|))) "\\spad{elt(s,{}[a1,{}...,{}an])} or \\spad{s}([a1,{}...,{}an]) returns \\spad{s} subscripted by \\spad{[a1,{}...,{}an]}.")) (|argscript| (($ $ (|List| (|OutputForm|))) "\\spad{argscript(s,{} [a1,{}...,{}an])} returns \\spad{s} arg-scripted by \\spad{[a1,{}...,{}an]}.")) (|superscript| (($ $ (|List| (|OutputForm|))) "\\spad{superscript(s,{} [a1,{}...,{}an])} returns \\spad{s} superscripted by \\spad{[a1,{}...,{}an]}.")) (|subscript| (($ $ (|List| (|OutputForm|))) "\\spad{subscript(s,{} [a1,{}...,{}an])} returns \\spad{s} subscripted by \\spad{[a1,{}...,{}an]}.")) (|script| (($ $ (|Record| (|:| |sub| (|List| (|OutputForm|))) (|:| |sup| (|List| (|OutputForm|))) (|:| |presup| (|List| (|OutputForm|))) (|:| |presub| (|List| (|OutputForm|))) (|:| |args| (|List| (|OutputForm|))))) "\\spad{script(s,{} [a,{}b,{}c,{}d,{}e])} returns \\spad{s} with subscripts a,{} superscripts \\spad{b},{} pre-superscripts \\spad{c},{} pre-subscripts \\spad{d},{} and argument-scripts \\spad{e}.") (($ $ (|List| (|List| (|OutputForm|)))) "\\spad{script(s,{} [a,{}b,{}c,{}d,{}e])} returns \\spad{s} with subscripts a,{} superscripts \\spad{b},{} pre-superscripts \\spad{c},{} pre-subscripts \\spad{d},{} and argument-scripts \\spad{e}. Omitted components are taken to be empty. For example,{} \\spad{script(s,{} [a,{}b,{}c])} is equivalent to \\spad{script(s,{}[a,{}b,{}c,{}[],{}[]])}.")) (|scripts| (((|Record| (|:| |sub| (|List| (|OutputForm|))) (|:| |sup| (|List| (|OutputForm|))) (|:| |presup| (|List| (|OutputForm|))) (|:| |presub| (|List| (|OutputForm|))) (|:| |args| (|List| (|OutputForm|)))) $) "\\spad{scripts(s)} returns all the scripts of \\spad{s}.")) (|scripted?| (((|Boolean|) $) "\\spad{scripted?(s)} is \\spad{true} if \\spad{s} has been given any scripts.")) (|name| (($ $) "\\spad{name(s)} returns \\spad{s} without its scripts.")) (|coerce| (($ (|String|)) "\\spad{coerce(s)} converts the string \\spad{s} to a symbol.")) (|resetNew| (((|Void|)) "\\spad{resetNew()} resets the internals counters that new() and new(\\spad{s}) use to return distinct symbols every time.")) (|new| (($ $) "\\spad{new(s)} returns a new symbol whose name starts with \\%\\spad{s}.") (($) "\\spad{new()} returns a new symbol whose name starts with \\%.")))
NIL
NIL
-(-1088 R)
+(-1090 R)
((|constructor| (NIL "Computes all the symmetric functions in \\spad{n} variables.")) (|symFunc| (((|Vector| |#1|) |#1| (|PositiveInteger|)) "\\spad{symFunc(r,{} n)} returns the vector of the elementary symmetric functions in \\spad{[r,{}r,{}...,{}r]} \\spad{n} times.") (((|Vector| |#1|) (|List| |#1|)) "\\spad{symFunc([r1,{}...,{}rn])} returns the vector of the elementary symmetric functions in the \\spad{\\spad{ri}'s}: \\spad{[r1 + ... + rn,{} r1 r2 + ... + r(n-1) rn,{} ...,{} r1 r2 ... rn]}.")))
NIL
NIL
-(-1089 R)
+(-1091 R)
((|constructor| (NIL "This domain implements symmetric polynomial")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-6 -4246)) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-515))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-427))) (-12 (|HasCategory| (-900) (QUOTE (-124))) (|HasCategory| |#1| (QUOTE (-515)))) (-3255 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasAttribute| |#1| (QUOTE -4246)))
-(-1090)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-6 -4248)) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-517))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-429))) (-12 (|HasCategory| (-902) (QUOTE (-126))) (|HasCategory| |#1| (QUOTE (-517)))) (-3321 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasAttribute| |#1| (QUOTE -4248)))
+(-1092)
((|constructor| (NIL "Creates and manipulates one global symbol table for FORTRAN code generation,{} containing details of types,{} dimensions,{} and argument lists.")) (|symbolTableOf| (((|SymbolTable|) (|Symbol|) $) "\\spad{symbolTableOf(f,{}tab)} returns the symbol table of \\spad{f}")) (|argumentListOf| (((|List| (|Symbol|)) (|Symbol|) $) "\\spad{argumentListOf(f,{}tab)} returns the argument list of \\spad{f}")) (|returnTypeOf| (((|Union| (|:| |fst| (|FortranScalarType|)) (|:| |void| "void")) (|Symbol|) $) "\\spad{returnTypeOf(f,{}tab)} returns the type of the object returned by \\spad{f}")) (|empty| (($) "\\spad{empty()} creates a new,{} empty symbol table.")) (|printTypes| (((|Void|) (|Symbol|)) "\\spad{printTypes(tab)} produces FORTRAN type declarations from \\spad{tab},{} on the current FORTRAN output stream")) (|printHeader| (((|Void|)) "\\spad{printHeader()} produces the FORTRAN header for the current subprogram in the global symbol table on the current FORTRAN output stream.") (((|Void|) (|Symbol|)) "\\spad{printHeader(f)} produces the FORTRAN header for subprogram \\spad{f} in the global symbol table on the current FORTRAN output stream.") (((|Void|) (|Symbol|) $) "\\spad{printHeader(f,{}tab)} produces the FORTRAN header for subprogram \\spad{f} in symbol table \\spad{tab} on the current FORTRAN output stream.")) (|returnType!| (((|Void|) (|Union| (|:| |fst| (|FortranScalarType|)) (|:| |void| "void"))) "\\spad{returnType!(t)} declares that the return type of he current subprogram in the global symbol table is \\spad{t}.") (((|Void|) (|Symbol|) (|Union| (|:| |fst| (|FortranScalarType|)) (|:| |void| "void"))) "\\spad{returnType!(f,{}t)} declares that the return type of subprogram \\spad{f} in the global symbol table is \\spad{t}.") (((|Void|) (|Symbol|) (|Union| (|:| |fst| (|FortranScalarType|)) (|:| |void| "void")) $) "\\spad{returnType!(f,{}t,{}tab)} declares that the return type of subprogram \\spad{f} in symbol table \\spad{tab} is \\spad{t}.")) (|argumentList!| (((|Void|) (|List| (|Symbol|))) "\\spad{argumentList!(l)} declares that the argument list for the current subprogram in the global symbol table is \\spad{l}.") (((|Void|) (|Symbol|) (|List| (|Symbol|))) "\\spad{argumentList!(f,{}l)} declares that the argument list for subprogram \\spad{f} in the global symbol table is \\spad{l}.") (((|Void|) (|Symbol|) (|List| (|Symbol|)) $) "\\spad{argumentList!(f,{}l,{}tab)} declares that the argument list for subprogram \\spad{f} in symbol table \\spad{tab} is \\spad{l}.")) (|endSubProgram| (((|Symbol|)) "\\spad{endSubProgram()} asserts that we are no longer processing the current subprogram.")) (|currentSubProgram| (((|Symbol|)) "\\spad{currentSubProgram()} returns the name of the current subprogram being processed")) (|newSubProgram| (((|Void|) (|Symbol|)) "\\spad{newSubProgram(f)} asserts that from now on type declarations are part of subprogram \\spad{f}.")) (|declare!| (((|FortranType|) (|Symbol|) (|FortranType|) (|Symbol|)) "\\spad{declare!(u,{}t,{}asp)} declares the parameter \\spad{u} to have type \\spad{t} in \\spad{asp}.") (((|FortranType|) (|Symbol|) (|FortranType|)) "\\spad{declare!(u,{}t)} declares the parameter \\spad{u} to have type \\spad{t} in the current level of the symbol table.") (((|FortranType|) (|List| (|Symbol|)) (|FortranType|) (|Symbol|) $) "\\spad{declare!(u,{}t,{}asp,{}tab)} declares the parameters \\spad{u} of subprogram \\spad{asp} to have type \\spad{t} in symbol table \\spad{tab}.") (((|FortranType|) (|Symbol|) (|FortranType|) (|Symbol|) $) "\\spad{declare!(u,{}t,{}asp,{}tab)} declares the parameter \\spad{u} of subprogram \\spad{asp} to have type \\spad{t} in symbol table \\spad{tab}.")) (|clearTheSymbolTable| (((|Void|) (|Symbol|)) "\\spad{clearTheSymbolTable(x)} removes the symbol \\spad{x} from the table") (((|Void|)) "\\spad{clearTheSymbolTable()} clears the current symbol table.")) (|showTheSymbolTable| (($) "\\spad{showTheSymbolTable()} returns the current symbol table.")))
NIL
NIL
-(-1091)
+(-1093)
((|constructor| (NIL "Create and manipulate a symbol table for generated FORTRAN code")) (|symbolTable| (($ (|List| (|Record| (|:| |key| (|Symbol|)) (|:| |entry| (|FortranType|))))) "\\spad{symbolTable(l)} creates a symbol table from the elements of \\spad{l}.")) (|printTypes| (((|Void|) $) "\\spad{printTypes(tab)} produces FORTRAN type declarations from \\spad{tab},{} on the current FORTRAN output stream")) (|newTypeLists| (((|SExpression|) $) "\\spad{newTypeLists(x)} \\undocumented")) (|typeLists| (((|List| (|List| (|Union| (|:| |name| (|Symbol|)) (|:| |bounds| (|List| (|Union| (|:| S (|Symbol|)) (|:| P (|Polynomial| (|Integer|))))))))) $) "\\spad{typeLists(tab)} returns a list of lists of types of objects in \\spad{tab}")) (|externalList| (((|List| (|Symbol|)) $) "\\spad{externalList(tab)} returns a list of all the external symbols in \\spad{tab}")) (|typeList| (((|List| (|Union| (|:| |name| (|Symbol|)) (|:| |bounds| (|List| (|Union| (|:| S (|Symbol|)) (|:| P (|Polynomial| (|Integer|)))))))) (|FortranScalarType|) $) "\\spad{typeList(t,{}tab)} returns a list of all the objects of type \\spad{t} in \\spad{tab}")) (|parametersOf| (((|List| (|Symbol|)) $) "\\spad{parametersOf(tab)} returns a list of all the symbols declared in \\spad{tab}")) (|fortranTypeOf| (((|FortranType|) (|Symbol|) $) "\\spad{fortranTypeOf(u,{}tab)} returns the type of \\spad{u} in \\spad{tab}")) (|declare!| (((|FortranType|) (|Symbol|) (|FortranType|) $) "\\spad{declare!(u,{}t,{}tab)} creates a new entry in \\spad{tab},{} declaring \\spad{u} to be of type \\spad{t}") (((|FortranType|) (|List| (|Symbol|)) (|FortranType|) $) "\\spad{declare!(l,{}t,{}tab)} creates new entrys in \\spad{tab},{} declaring each of \\spad{l} to be of type \\spad{t}")) (|empty| (($) "\\spad{empty()} returns a new,{} empty symbol table")) (|coerce| (((|Table| (|Symbol|) (|FortranType|)) $) "\\spad{coerce(x)} returns a table view of \\spad{x}")))
NIL
NIL
-(-1092)
+(-1094)
((|constructor| (NIL "\\indented{1}{This domain provides a simple domain,{} general enough for} building complete representation of Spad programs as objects of a term algebra built from ground terms of type integers,{} foats,{} symbols,{} and strings. This domain differs from InputForm in that it represents any entity in a Spad program,{} not just expressions. Related Constructors: Boolean,{} Integer,{} Float,{} Symbol,{} String,{} SExpression. See Also: SExpression,{} SetCategory. The equality supported by this domain is structural.")) (|case| (((|Boolean|) $ (|[\|\|]| (|String|))) "\\spad{x case String} is \\spad{true} if \\spad{`x'} really is a String") (((|Boolean|) $ (|[\|\|]| (|Symbol|))) "\\spad{x case Symbol} is \\spad{true} if \\spad{`x'} really is a Symbol") (((|Boolean|) $ (|[\|\|]| (|DoubleFloat|))) "\\spad{x case DoubleFloat} is \\spad{true} if \\spad{`x'} really is a DoubleFloat") (((|Boolean|) $ (|[\|\|]| (|Integer|))) "\\spad{x case Integer} is \\spad{true} if \\spad{`x'} really is an Integer")) (|compound?| (((|Boolean|) $) "\\spad{compound? x} is \\spad{true} when \\spad{`x'} is not an atomic syntax.")) (|getOperands| (((|List| $) $) "\\spad{getOperands(x)} returns the list of operands to the operator in \\spad{`x'}.")) (|getOperator| (((|Union| (|Integer|) (|DoubleFloat|) (|Symbol|) (|String|) $) $) "\\spad{getOperator(x)} returns the operator,{} or tag,{} of the syntax \\spad{`x'}. The value returned is itself a syntax if \\spad{`x'} really is an application of a function symbol as opposed to being an atomic ground term.")) (|nil?| (((|Boolean|) $) "\\spad{nil?(s)} is \\spad{true} when \\spad{`s'} is a syntax for the constant nil.")) (|buildSyntax| (($ $ (|List| $)) "\\spad{buildSyntax(op,{} [a1,{} ...,{} an])} builds a syntax object for \\spad{op}(a1,{}...,{}an).") (($ (|Symbol|) (|List| $)) "\\spad{buildSyntax(op,{} [a1,{} ...,{} an])} builds a syntax object for \\spad{op}(a1,{}...,{}an).")) (|autoCoerce| (((|String|) $) "\\spad{autoCoerce(s)} forcibly extracts a string value from the syntax \\spad{`s'}; no check performed. To be called only at the discretion of the compiler.") (((|Symbol|) $) "\\spad{autoCoerce(s)} forcibly extracts a symbo from the Syntax domain \\spad{`s'}; no check performed. To be called only at at the discretion of the compiler.") (((|DoubleFloat|) $) "\\spad{autoCoerce(s)} forcibly extracts a float value from the syntax \\spad{`s'}; no check performed. To be called only at the discretion of the compiler") (((|Integer|) $) "\\spad{autoCoerce(s)} forcibly extracts an integer value from the syntax \\spad{`s'}; no check performed. To be called only at the discretion of the compiler.")) (|coerce| (((|String|) $) "\\spad{coerce(s)} extracts a string value from the syntax \\spad{`s'}.") (($ (|String|)) "\\spad{coerce(s)} injects the string value \\spad{`s'} into the syntax domain") (((|Symbol|) $) "\\spad{coerce(s)} extracts a symbol from the syntax \\spad{`s'}.") (($ (|Symbol|)) "\\spad{coerce(s)} injects the symbol \\spad{`s'} into the Syntax domain.") (((|DoubleFloat|) $) "\\spad{coerce(s)} extracts a float value from the syntax \\spad{`s'}.") (($ (|DoubleFloat|)) "\\spad{coerce(f)} injects the float value \\spad{`f'} into the Syntax domain") (((|Integer|) $) "\\spad{coerce(s)} extracts and integer value from the syntax \\spad{`s'}") (($ (|Integer|)) "\\spad{coerce(i)} injects the integer value `i' into the Syntax domain.")) (|convert| (($ (|SExpression|)) "\\spad{convert(s)} converts an \\spad{s}-expression to Syntax. Note,{} when \\spad{`s'} is not an atom,{} it is expected that it designates a proper list,{} \\spadignore{e.g.} a sequence of cons cells ending with nil.") (((|SExpression|) $) "\\spad{convert(s)} returns the \\spad{s}-expression representation of a syntax.")))
NIL
NIL
-(-1093 R)
+(-1095 R)
((|triangularSystems| (((|List| (|List| (|Polynomial| |#1|))) (|List| (|Fraction| (|Polynomial| |#1|))) (|List| (|Symbol|))) "\\spad{triangularSystems(lf,{}lv)} solves the system of equations defined by \\spad{lf} with respect to the list of symbols \\spad{lv}; the system of equations is obtaining by equating to zero the list of rational functions \\spad{lf}. The output is a list of solutions where each solution is expressed as a \"reduced\" triangular system of polynomials.")) (|solve| (((|List| (|Equation| (|Fraction| (|Polynomial| |#1|)))) (|Equation| (|Fraction| (|Polynomial| |#1|)))) "\\spad{solve(eq)} finds the solutions of the equation \\spad{eq} with respect to the unique variable appearing in \\spad{eq}.") (((|List| (|Equation| (|Fraction| (|Polynomial| |#1|)))) (|Fraction| (|Polynomial| |#1|))) "\\spad{solve(p)} finds the solution of a rational function \\spad{p} = 0 with respect to the unique variable appearing in \\spad{p}.") (((|List| (|Equation| (|Fraction| (|Polynomial| |#1|)))) (|Equation| (|Fraction| (|Polynomial| |#1|))) (|Symbol|)) "\\spad{solve(eq,{}v)} finds the solutions of the equation \\spad{eq} with respect to the variable \\spad{v}.") (((|List| (|Equation| (|Fraction| (|Polynomial| |#1|)))) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{solve(p,{}v)} solves the equation \\spad{p=0},{} where \\spad{p} is a rational function with respect to the variable \\spad{v}.") (((|List| (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) "\\spad{solve(le)} finds the solutions of the list \\spad{le} of equations of rational functions with respect to all symbols appearing in \\spad{le}.") (((|List| (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) (|List| (|Fraction| (|Polynomial| |#1|)))) "\\spad{solve(lp)} finds the solutions of the list \\spad{lp} of rational functions with respect to all symbols appearing in \\spad{lp}.") (((|List| (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) (|List| (|Equation| (|Fraction| (|Polynomial| |#1|)))) (|List| (|Symbol|))) "\\spad{solve(le,{}lv)} finds the solutions of the list \\spad{le} of equations of rational functions with respect to the list of symbols \\spad{lv}.") (((|List| (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) (|List| (|Fraction| (|Polynomial| |#1|))) (|List| (|Symbol|))) "\\spad{solve(lp,{}lv)} finds the solutions of the list \\spad{lp} of rational functions with respect to the list of symbols \\spad{lv}.")))
NIL
NIL
-(-1094)
+(-1096)
((|constructor| (NIL "The package \\spadtype{System} provides information about the runtime system and its characteristics.")) (|loadNativeModule| (((|Void|) (|String|)) "\\spad{loadNativeModule(path)} loads the native modile designated by \\spadvar{\\spad{path}}.")) (|nativeModuleExtension| (((|String|)) "\\spad{nativeModuleExtension()} returns a string representation of a filename extension for native modules.")) (|hostPlatform| (((|String|)) "\\spad{hostPlatform()} returns a string `triplet' description of the platform hosting the running OpenAxiom system.")) (|rootDirectory| (((|String|)) "\\spad{rootDirectory()} returns the pathname of the root directory for the running OpenAxiom system.")))
NIL
NIL
-(-1095 S)
+(-1097 S)
((|constructor| (NIL "TableauBumpers implements the Schenstead-Knuth correspondence between sequences and pairs of Young tableaux. The 2 Young tableaux are represented as a single tableau with pairs as components.")) (|mr| (((|Record| (|:| |f1| (|List| |#1|)) (|:| |f2| (|List| (|List| (|List| |#1|)))) (|:| |f3| (|List| (|List| |#1|))) (|:| |f4| (|List| (|List| (|List| |#1|))))) (|List| (|List| (|List| |#1|)))) "\\spad{mr(t)} is an auxiliary function which finds the position of the maximum element of a tableau \\spad{t} which is in the lowest row,{} producing a record of results")) (|maxrow| (((|Record| (|:| |f1| (|List| |#1|)) (|:| |f2| (|List| (|List| (|List| |#1|)))) (|:| |f3| (|List| (|List| |#1|))) (|:| |f4| (|List| (|List| (|List| |#1|))))) (|List| |#1|) (|List| (|List| (|List| |#1|))) (|List| (|List| |#1|)) (|List| (|List| (|List| |#1|))) (|List| (|List| (|List| |#1|))) (|List| (|List| (|List| |#1|)))) "\\spad{maxrow(a,{}b,{}c,{}d,{}e)} is an auxiliary function for \\spad{mr}")) (|inverse| (((|List| |#1|) (|List| |#1|)) "\\spad{inverse(ls)} forms the inverse of a sequence \\spad{ls}")) (|slex| (((|List| (|List| |#1|)) (|List| |#1|)) "\\spad{slex(ls)} sorts the argument sequence \\spad{ls},{} then zips (see \\spadfunFrom{map}{ListFunctions3}) the original argument sequence with the sorted result to a list of pairs")) (|lex| (((|List| (|List| |#1|)) (|List| (|List| |#1|))) "\\spad{lex(ls)} sorts a list of pairs to lexicographic order")) (|tab| (((|Tableau| (|List| |#1|)) (|List| |#1|)) "\\spad{tab(ls)} creates a tableau from \\spad{ls} by first creating a list of pairs using \\spadfunFrom{slex}{TableauBumpers},{} then creating a tableau using \\spadfunFrom{tab1}{TableauBumpers}.")) (|tab1| (((|List| (|List| (|List| |#1|))) (|List| (|List| |#1|))) "\\spad{tab1(lp)} creates a tableau from a list of pairs \\spad{lp}")) (|bat| (((|List| (|List| |#1|)) (|Tableau| (|List| |#1|))) "\\spad{bat(ls)} unbumps a tableau \\spad{ls}")) (|bat1| (((|List| (|List| |#1|)) (|List| (|List| (|List| |#1|)))) "\\spad{bat1(llp)} unbumps a tableau \\spad{llp}. Operation bat1 is the inverse of tab1.")) (|untab| (((|List| (|List| |#1|)) (|List| (|List| |#1|)) (|List| (|List| (|List| |#1|)))) "\\spad{untab(lp,{}llp)} is an auxiliary function which unbumps a tableau \\spad{llp},{} using \\spad{lp} to accumulate pairs")) (|bumptab1| (((|List| (|List| (|List| |#1|))) (|List| |#1|) (|List| (|List| (|List| |#1|)))) "\\spad{bumptab1(pr,{}t)} bumps a tableau \\spad{t} with a pair \\spad{pr} using comparison function \\spadfun{<},{} returning a new tableau")) (|bumptab| (((|List| (|List| (|List| |#1|))) (|Mapping| (|Boolean|) |#1| |#1|) (|List| |#1|) (|List| (|List| (|List| |#1|)))) "\\spad{bumptab(cf,{}pr,{}t)} bumps a tableau \\spad{t} with a pair \\spad{pr} using comparison function \\spad{cf},{} returning a new tableau")) (|bumprow| (((|Record| (|:| |fs| (|Boolean|)) (|:| |sd| (|List| |#1|)) (|:| |td| (|List| (|List| |#1|)))) (|Mapping| (|Boolean|) |#1| |#1|) (|List| |#1|) (|List| (|List| |#1|))) "\\spad{bumprow(cf,{}pr,{}r)} is an auxiliary function which bumps a row \\spad{r} with a pair \\spad{pr} using comparison function \\spad{cf},{} and returns a record")))
NIL
NIL
-(-1096 S)
+(-1098 S)
((|constructor| (NIL "\\indented{1}{The tableau domain is for printing Young tableaux,{} and} coercions to and from List List \\spad{S} where \\spad{S} is a set.")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(t)} converts a tableau \\spad{t} to an output form.")) (|listOfLists| (((|List| (|List| |#1|)) $) "\\spad{listOfLists t} converts a tableau \\spad{t} to a list of lists.")) (|tableau| (($ (|List| (|List| |#1|))) "\\spad{tableau(ll)} converts a list of lists \\spad{ll} to a tableau.")))
NIL
NIL
-(-1097 |Key| |Entry|)
+(-1099 |Key| |Entry|)
((|constructor| (NIL "This is the general purpose table type. The keys are hashed to look up the entries. This creates a \\spadtype{HashTable} if equal for the Key domain is consistent with Lisp EQUAL otherwise an \\spadtype{AssociationList}")))
-((-4248 . T) (-4249 . T))
-((-12 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -286) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2402) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2746) (|devaluate| |#2|)))))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| |#2| (QUOTE (-1016)))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -564) (QUOTE (-499)))) (-12 (|HasCategory| |#2| (QUOTE (-1016))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#2| (QUOTE (-1016))) (-3255 (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-794)))) (|HasCategory| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (LIST (QUOTE -563) (QUOTE (-794)))))
-(-1098 R)
+((-4250 . T) (-4251 . T))
+((-12 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -288) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2019) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1221) (|devaluate| |#2|)))))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1018)))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -566) (QUOTE (-501)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-1018))) (-3321 (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#2| (LIST (QUOTE -565) (QUOTE (-796)))) (|HasCategory| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (LIST (QUOTE -565) (QUOTE (-796)))))
+(-1100 R)
((|constructor| (NIL "Expands tangents of sums and scalar products.")) (|tanNa| ((|#1| |#1| (|Integer|)) "\\spad{tanNa(a,{} n)} returns \\spad{f(a)} such that if \\spad{a = tan(u)} then \\spad{f(a) = tan(n * u)}.")) (|tanAn| (((|SparseUnivariatePolynomial| |#1|) |#1| (|PositiveInteger|)) "\\spad{tanAn(a,{} n)} returns \\spad{P(x)} such that if \\spad{a = tan(u)} then \\spad{P(tan(u/n)) = 0}.")) (|tanSum| ((|#1| (|List| |#1|)) "\\spad{tanSum([a1,{}...,{}an])} returns \\spad{f(a1,{}...,{}an)} such that if \\spad{\\spad{ai} = tan(\\spad{ui})} then \\spad{f(a1,{}...,{}an) = tan(u1 + ... + un)}.")))
NIL
NIL
-(-1099 S |Key| |Entry|)
+(-1101 S |Key| |Entry|)
((|constructor| (NIL "A table aggregate is a model of a table,{} \\spadignore{i.e.} a discrete many-to-one mapping from keys to entries.")) (|map| (($ (|Mapping| |#3| |#3| |#3|) $ $) "\\spad{map(fn,{}t1,{}t2)} creates a new table \\spad{t} from given tables \\spad{t1} and \\spad{t2} with elements \\spad{fn}(\\spad{x},{}\\spad{y}) where \\spad{x} and \\spad{y} are corresponding elements from \\spad{t1} and \\spad{t2} respectively.")) (|table| (($ (|List| (|Record| (|:| |key| |#2|) (|:| |entry| |#3|)))) "\\spad{table([x,{}y,{}...,{}z])} creates a table consisting of entries \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}}.") (($) "\\spad{table()}\\$\\spad{T} creates an empty table of type \\spad{T}.")) (|setelt| ((|#3| $ |#2| |#3|) "\\spad{setelt(t,{}k,{}e)} (also written \\axiom{\\spad{t}.\\spad{k} \\spad{:=} \\spad{e}}) is equivalent to \\axiom{(insert([\\spad{k},{}\\spad{e}],{}\\spad{t}); \\spad{e})}.")))
NIL
NIL
-(-1100 |Key| |Entry|)
+(-1102 |Key| |Entry|)
((|constructor| (NIL "A table aggregate is a model of a table,{} \\spadignore{i.e.} a discrete many-to-one mapping from keys to entries.")) (|map| (($ (|Mapping| |#2| |#2| |#2|) $ $) "\\spad{map(fn,{}t1,{}t2)} creates a new table \\spad{t} from given tables \\spad{t1} and \\spad{t2} with elements \\spad{fn}(\\spad{x},{}\\spad{y}) where \\spad{x} and \\spad{y} are corresponding elements from \\spad{t1} and \\spad{t2} respectively.")) (|table| (($ (|List| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) "\\spad{table([x,{}y,{}...,{}z])} creates a table consisting of entries \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}}.") (($) "\\spad{table()}\\$\\spad{T} creates an empty table of type \\spad{T}.")) (|setelt| ((|#2| $ |#1| |#2|) "\\spad{setelt(t,{}k,{}e)} (also written \\axiom{\\spad{t}.\\spad{k} \\spad{:=} \\spad{e}}) is equivalent to \\axiom{(insert([\\spad{k},{}\\spad{e}],{}\\spad{t}); \\spad{e})}.")))
-((-4249 . T) (-2500 . T))
+((-4251 . T) (-2137 . T))
NIL
-(-1101 |Key| |Entry|)
+(-1103 |Key| |Entry|)
((|constructor| (NIL "\\axiom{TabulatedComputationPackage(Key ,{}Entry)} provides some modest support for dealing with operations with type \\axiom{Key \\spad{->} Entry}. The result of such operations can be stored and retrieved with this package by using a hash-table. The user does not need to worry about the management of this hash-table. However,{} onnly one hash-table is built by calling \\axiom{TabulatedComputationPackage(Key ,{}Entry)}.")) (|insert!| (((|Void|) |#1| |#2|) "\\axiom{insert!(\\spad{x},{}\\spad{y})} stores the item whose key is \\axiom{\\spad{x}} and whose entry is \\axiom{\\spad{y}}.")) (|extractIfCan| (((|Union| |#2| "failed") |#1|) "\\axiom{extractIfCan(\\spad{x})} searches the item whose key is \\axiom{\\spad{x}}.")) (|makingStats?| (((|Boolean|)) "\\axiom{makingStats?()} returns \\spad{true} iff the statisitics process is running.")) (|printingInfo?| (((|Boolean|)) "\\axiom{printingInfo?()} returns \\spad{true} iff messages are printed when manipulating items from the hash-table.")) (|usingTable?| (((|Boolean|)) "\\axiom{usingTable?()} returns \\spad{true} iff the hash-table is used")) (|clearTable!| (((|Void|)) "\\axiom{clearTable!()} clears the hash-table and assumes that it will no longer be used.")) (|printStats!| (((|Void|)) "\\axiom{printStats!()} prints the statistics.")) (|startStats!| (((|Void|) (|String|)) "\\axiom{startStats!(\\spad{x})} initializes the statisitics process and sets the comments to display when statistics are printed")) (|printInfo!| (((|Void|) (|String|) (|String|)) "\\axiom{printInfo!(\\spad{x},{}\\spad{y})} initializes the mesages to be printed when manipulating items from the hash-table. If a key is retrieved then \\axiom{\\spad{x}} is displayed. If an item is stored then \\axiom{\\spad{y}} is displayed.")) (|initTable!| (((|Void|)) "\\axiom{initTable!()} initializes the hash-table.")))
NIL
NIL
-(-1102)
+(-1104)
((|constructor| (NIL "This package provides functions for template manipulation")) (|stripCommentsAndBlanks| (((|String|) (|String|)) "\\spad{stripCommentsAndBlanks(s)} treats \\spad{s} as a piece of AXIOM input,{} and removes comments,{} and leading and trailing blanks.")) (|interpretString| (((|Any|) (|String|)) "\\spad{interpretString(s)} treats a string as a piece of AXIOM input,{} by parsing and interpreting it.")))
NIL
NIL
-(-1103 S)
+(-1105 S)
((|constructor| (NIL "\\spadtype{TexFormat1} provides a utility coercion for changing to TeX format anything that has a coercion to the standard output format.")) (|coerce| (((|TexFormat|) |#1|) "\\spad{coerce(s)} provides a direct coercion from a domain \\spad{S} to TeX format. This allows the user to skip the step of first manually coercing the object to standard output format before it is coerced to TeX format.")))
NIL
NIL
-(-1104)
+(-1106)
((|constructor| (NIL "\\spadtype{TexFormat} provides a coercion from \\spadtype{OutputForm} to \\TeX{} format. The particular dialect of \\TeX{} used is \\LaTeX{}. The basic object consists of three parts: a prologue,{} a tex part and an epilogue. The functions \\spadfun{prologue},{} \\spadfun{tex} and \\spadfun{epilogue} extract these parts,{} respectively. The main guts of the expression go into the tex part. The other parts can be set (\\spadfun{setPrologue!},{} \\spadfun{setEpilogue!}) so that contain the appropriate tags for printing. For example,{} the prologue and epilogue might simply contain \\spad{``}\\verb+\\spad{\\[}+\\spad{''} and \\spad{``}\\verb+\\spad{\\]}+\\spad{''},{} respectively,{} so that the TeX section will be printed in LaTeX display math mode.")) (|setPrologue!| (((|List| (|String|)) $ (|List| (|String|))) "\\spad{setPrologue!(t,{}strings)} sets the prologue section of a TeX form \\spad{t} to \\spad{strings}.")) (|setTex!| (((|List| (|String|)) $ (|List| (|String|))) "\\spad{setTex!(t,{}strings)} sets the TeX section of a TeX form \\spad{t} to \\spad{strings}.")) (|setEpilogue!| (((|List| (|String|)) $ (|List| (|String|))) "\\spad{setEpilogue!(t,{}strings)} sets the epilogue section of a TeX form \\spad{t} to \\spad{strings}.")) (|prologue| (((|List| (|String|)) $) "\\spad{prologue(t)} extracts the prologue section of a TeX form \\spad{t}.")) (|new| (($) "\\spad{new()} create a new,{} empty object. Use \\spadfun{setPrologue!},{} \\spadfun{setTex!} and \\spadfun{setEpilogue!} to set the various components of this object.")) (|tex| (((|List| (|String|)) $) "\\spad{tex(t)} extracts the TeX section of a TeX form \\spad{t}.")) (|epilogue| (((|List| (|String|)) $) "\\spad{epilogue(t)} extracts the epilogue section of a TeX form \\spad{t}.")) (|display| (((|Void|) $) "\\spad{display(t)} outputs the TeX formatted code \\spad{t} so that each line has length less than or equal to the value set by the system command \\spadsyscom{set output length}.") (((|Void|) $ (|Integer|)) "\\spad{display(t,{}width)} outputs the TeX formatted code \\spad{t} so that each line has length less than or equal to \\spadvar{\\spad{width}}.")) (|convert| (($ (|OutputForm|) (|Integer|) (|OutputForm|)) "\\spad{convert(o,{}step,{}type)} changes \\spad{o} in standard output format to TeX format and also adds the given \\spad{step} number and \\spad{type}. This is useful if you want to create equations with given numbers or have the equation numbers correspond to the interpreter \\spad{step} numbers.") (($ (|OutputForm|) (|Integer|)) "\\spad{convert(o,{}step)} changes \\spad{o} in standard output format to TeX format and also adds the given \\spad{step} number. This is useful if you want to create equations with given numbers or have the equation numbers correspond to the interpreter \\spad{step} numbers.")) (|coerce| (($ (|OutputForm|)) "\\spad{coerce(o)} changes \\spad{o} in the standard output format to TeX format.")))
NIL
NIL
-(-1105)
+(-1107)
((|constructor| (NIL "This domain provides an implementation of text files. Text is stored in these files using the native character set of the computer.")) (|endOfFile?| (((|Boolean|) $) "\\spad{endOfFile?(f)} tests whether the file \\spad{f} is positioned after the end of all text. If the file is open for output,{} then this test is always \\spad{true}.")) (|readIfCan!| (((|Union| (|String|) "failed") $) "\\spad{readIfCan!(f)} returns a string of the contents of a line from file \\spad{f},{} if possible. If \\spad{f} is not readable or if it is positioned at the end of file,{} then \\spad{\"failed\"} is returned.")) (|readLineIfCan!| (((|Union| (|String|) "failed") $) "\\spad{readLineIfCan!(f)} returns a string of the contents of a line from file \\spad{f},{} if possible. If \\spad{f} is not readable or if it is positioned at the end of file,{} then \\spad{\"failed\"} is returned.")) (|readLine!| (((|String|) $) "\\spad{readLine!(f)} returns a string of the contents of a line from the file \\spad{f}.")) (|writeLine!| (((|String|) $) "\\spad{writeLine!(f)} finishes the current line in the file \\spad{f}. An empty string is returned. The call \\spad{writeLine!(f)} is equivalent to \\spad{writeLine!(f,{}\"\")}.") (((|String|) $ (|String|)) "\\spad{writeLine!(f,{}s)} writes the contents of the string \\spad{s} and finishes the current line in the file \\spad{f}. The value of \\spad{s} is returned.")))
NIL
NIL
-(-1106 R)
+(-1108 R)
((|constructor| (NIL "Tools for the sign finding utilities.")) (|direction| (((|Integer|) (|String|)) "\\spad{direction(s)} \\undocumented")) (|nonQsign| (((|Union| (|Integer|) "failed") |#1|) "\\spad{nonQsign(r)} \\undocumented")) (|sign| (((|Union| (|Integer|) "failed") |#1|) "\\spad{sign(r)} \\undocumented")))
NIL
NIL
-(-1107)
+(-1109)
((|constructor| (NIL "This package exports a function for making a \\spadtype{ThreeSpace}")) (|createThreeSpace| (((|ThreeSpace| (|DoubleFloat|))) "\\spad{createThreeSpace()} creates a \\spadtype{ThreeSpace(DoubleFloat)} object capable of holding point,{} curve,{} mesh components and any combination.")))
NIL
NIL
-(-1108 S)
+(-1110 S)
((|constructor| (NIL "Category for the transcendental elementary functions.")) (|pi| (($) "\\spad{\\spad{pi}()} returns the constant \\spad{pi}.")))
NIL
NIL
-(-1109)
+(-1111)
((|constructor| (NIL "Category for the transcendental elementary functions.")) (|pi| (($) "\\spad{\\spad{pi}()} returns the constant \\spad{pi}.")))
NIL
NIL
-(-1110 S)
+(-1112 S)
((|constructor| (NIL "\\spadtype{Tree(S)} is a basic domains of tree structures. Each tree is either empty or else is a {\\it node} consisting of a value and a list of (sub)trees.")) (|cyclicParents| (((|List| $) $) "\\spad{cyclicParents(t)} returns a list of cycles that are parents of \\spad{t}.")) (|cyclicEqual?| (((|Boolean|) $ $) "\\spad{cyclicEqual?(t1,{} t2)} tests of two cyclic trees have the same structure.")) (|cyclicEntries| (((|List| $) $) "\\spad{cyclicEntries(t)} returns a list of top-level cycles in tree \\spad{t}.")) (|cyclicCopy| (($ $) "\\spad{cyclicCopy(l)} makes a copy of a (possibly) cyclic tree \\spad{l}.")) (|cyclic?| (((|Boolean|) $) "\\spad{cyclic?(t)} tests if \\spad{t} is a cyclic tree.")) (|tree| (($ |#1|) "\\spad{tree(nd)} creates a tree with value \\spad{nd},{} and no children") (($ (|List| |#1|)) "\\spad{tree(ls)} creates a tree from a list of elements of \\spad{s}.") (($ |#1| (|List| $)) "\\spad{tree(nd,{}ls)} creates a tree with value \\spad{nd},{} and children \\spad{ls}.")))
-((-4249 . T) (-4248 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1016))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-1111 S)
+((-4251 . T) (-4250 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1018))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-1113 S)
((|constructor| (NIL "Category for the trigonometric functions.")) (|tan| (($ $) "\\spad{tan(x)} returns the tangent of \\spad{x}.")) (|sin| (($ $) "\\spad{sin(x)} returns the sine of \\spad{x}.")) (|sec| (($ $) "\\spad{sec(x)} returns the secant of \\spad{x}.")) (|csc| (($ $) "\\spad{csc(x)} returns the cosecant of \\spad{x}.")) (|cot| (($ $) "\\spad{cot(x)} returns the cotangent of \\spad{x}.")) (|cos| (($ $) "\\spad{cos(x)} returns the cosine of \\spad{x}.")))
NIL
NIL
-(-1112)
+(-1114)
((|constructor| (NIL "Category for the trigonometric functions.")) (|tan| (($ $) "\\spad{tan(x)} returns the tangent of \\spad{x}.")) (|sin| (($ $) "\\spad{sin(x)} returns the sine of \\spad{x}.")) (|sec| (($ $) "\\spad{sec(x)} returns the secant of \\spad{x}.")) (|csc| (($ $) "\\spad{csc(x)} returns the cosecant of \\spad{x}.")) (|cot| (($ $) "\\spad{cot(x)} returns the cotangent of \\spad{x}.")) (|cos| (($ $) "\\spad{cos(x)} returns the cosine of \\spad{x}.")))
NIL
NIL
-(-1113 R -3894)
+(-1115 R -3576)
((|constructor| (NIL "\\spadtype{TrigonometricManipulations} provides transformations from trigonometric functions to complex exponentials and logarithms,{} and back.")) (|complexForm| (((|Complex| |#2|) |#2|) "\\spad{complexForm(f)} returns \\spad{[real f,{} imag f]}.")) (|real?| (((|Boolean|) |#2|) "\\spad{real?(f)} returns \\spad{true} if \\spad{f = real f}.")) (|imag| ((|#2| |#2|) "\\spad{imag(f)} returns the imaginary part of \\spad{f} where \\spad{f} is a complex function.")) (|real| ((|#2| |#2|) "\\spad{real(f)} returns the real part of \\spad{f} where \\spad{f} is a complex function.")) (|trigs| ((|#2| |#2|) "\\spad{trigs(f)} rewrites all the complex logs and exponentials appearing in \\spad{f} in terms of trigonometric functions.")) (|complexElementary| ((|#2| |#2| (|Symbol|)) "\\spad{complexElementary(f,{} x)} rewrites the kernels of \\spad{f} involving \\spad{x} in terms of the 2 fundamental complex transcendental elementary functions: \\spad{log,{} exp}.") ((|#2| |#2|) "\\spad{complexElementary(f)} rewrites \\spad{f} in terms of the 2 fundamental complex transcendental elementary functions: \\spad{log,{} exp}.")) (|complexNormalize| ((|#2| |#2| (|Symbol|)) "\\spad{complexNormalize(f,{} x)} rewrites \\spad{f} using the least possible number of complex independent kernels involving \\spad{x}.") ((|#2| |#2|) "\\spad{complexNormalize(f)} rewrites \\spad{f} using the least possible number of complex independent kernels.")))
NIL
NIL
-(-1114 R |Row| |Col| M)
+(-1116 R |Row| |Col| M)
((|constructor| (NIL "This package provides functions that compute \"fraction-free\" inverses of upper and lower triangular matrices over a integral domain. By \"fraction-free inverses\" we mean the following: given a matrix \\spad{B} with entries in \\spad{R} and an element \\spad{d} of \\spad{R} such that \\spad{d} * inv(\\spad{B}) also has entries in \\spad{R},{} we return \\spad{d} * inv(\\spad{B}). Thus,{} it is not necessary to pass to the quotient field in any of our computations.")) (|LowTriBddDenomInv| ((|#4| |#4| |#1|) "\\spad{LowTriBddDenomInv(B,{}d)} returns \\spad{M},{} where \\spad{B} is a non-singular lower triangular matrix and \\spad{d} is an element of \\spad{R} such that \\spad{M = d * inv(B)} has entries in \\spad{R}.")) (|UpTriBddDenomInv| ((|#4| |#4| |#1|) "\\spad{UpTriBddDenomInv(B,{}d)} returns \\spad{M},{} where \\spad{B} is a non-singular upper triangular matrix and \\spad{d} is an element of \\spad{R} such that \\spad{M = d * inv(B)} has entries in \\spad{R}.")))
NIL
NIL
-(-1115 R -3894)
+(-1117 R -3576)
((|constructor| (NIL "TranscendentalManipulations provides functions to simplify and expand expressions involving transcendental operators.")) (|expandTrigProducts| ((|#2| |#2|) "\\spad{expandTrigProducts(e)} replaces \\axiom{sin(\\spad{x})*sin(\\spad{y})} by \\spad{(cos(x-y)-cos(x+y))/2},{} \\axiom{cos(\\spad{x})*cos(\\spad{y})} by \\spad{(cos(x-y)+cos(x+y))/2},{} and \\axiom{sin(\\spad{x})*cos(\\spad{y})} by \\spad{(sin(x-y)+sin(x+y))/2}. Note that this operation uses the pattern matcher and so is relatively expensive. To avoid getting into an infinite loop the transformations are applied at most ten times.")) (|removeSinhSq| ((|#2| |#2|) "\\spad{removeSinhSq(f)} converts every \\spad{sinh(u)**2} appearing in \\spad{f} into \\spad{1 - cosh(x)**2},{} and also reduces higher powers of \\spad{sinh(u)} with that formula.")) (|removeCoshSq| ((|#2| |#2|) "\\spad{removeCoshSq(f)} converts every \\spad{cosh(u)**2} appearing in \\spad{f} into \\spad{1 - sinh(x)**2},{} and also reduces higher powers of \\spad{cosh(u)} with that formula.")) (|removeSinSq| ((|#2| |#2|) "\\spad{removeSinSq(f)} converts every \\spad{sin(u)**2} appearing in \\spad{f} into \\spad{1 - cos(x)**2},{} and also reduces higher powers of \\spad{sin(u)} with that formula.")) (|removeCosSq| ((|#2| |#2|) "\\spad{removeCosSq(f)} converts every \\spad{cos(u)**2} appearing in \\spad{f} into \\spad{1 - sin(x)**2},{} and also reduces higher powers of \\spad{cos(u)} with that formula.")) (|coth2tanh| ((|#2| |#2|) "\\spad{coth2tanh(f)} converts every \\spad{coth(u)} appearing in \\spad{f} into \\spad{1/tanh(u)}.")) (|cot2tan| ((|#2| |#2|) "\\spad{cot2tan(f)} converts every \\spad{cot(u)} appearing in \\spad{f} into \\spad{1/tan(u)}.")) (|tanh2coth| ((|#2| |#2|) "\\spad{tanh2coth(f)} converts every \\spad{tanh(u)} appearing in \\spad{f} into \\spad{1/coth(u)}.")) (|tan2cot| ((|#2| |#2|) "\\spad{tan2cot(f)} converts every \\spad{tan(u)} appearing in \\spad{f} into \\spad{1/cot(u)}.")) (|tanh2trigh| ((|#2| |#2|) "\\spad{tanh2trigh(f)} converts every \\spad{tanh(u)} appearing in \\spad{f} into \\spad{sinh(u)/cosh(u)}.")) (|tan2trig| ((|#2| |#2|) "\\spad{tan2trig(f)} converts every \\spad{tan(u)} appearing in \\spad{f} into \\spad{sin(u)/cos(u)}.")) (|sinh2csch| ((|#2| |#2|) "\\spad{sinh2csch(f)} converts every \\spad{sinh(u)} appearing in \\spad{f} into \\spad{1/csch(u)}.")) (|sin2csc| ((|#2| |#2|) "\\spad{sin2csc(f)} converts every \\spad{sin(u)} appearing in \\spad{f} into \\spad{1/csc(u)}.")) (|sech2cosh| ((|#2| |#2|) "\\spad{sech2cosh(f)} converts every \\spad{sech(u)} appearing in \\spad{f} into \\spad{1/cosh(u)}.")) (|sec2cos| ((|#2| |#2|) "\\spad{sec2cos(f)} converts every \\spad{sec(u)} appearing in \\spad{f} into \\spad{1/cos(u)}.")) (|csch2sinh| ((|#2| |#2|) "\\spad{csch2sinh(f)} converts every \\spad{csch(u)} appearing in \\spad{f} into \\spad{1/sinh(u)}.")) (|csc2sin| ((|#2| |#2|) "\\spad{csc2sin(f)} converts every \\spad{csc(u)} appearing in \\spad{f} into \\spad{1/sin(u)}.")) (|coth2trigh| ((|#2| |#2|) "\\spad{coth2trigh(f)} converts every \\spad{coth(u)} appearing in \\spad{f} into \\spad{cosh(u)/sinh(u)}.")) (|cot2trig| ((|#2| |#2|) "\\spad{cot2trig(f)} converts every \\spad{cot(u)} appearing in \\spad{f} into \\spad{cos(u)/sin(u)}.")) (|cosh2sech| ((|#2| |#2|) "\\spad{cosh2sech(f)} converts every \\spad{cosh(u)} appearing in \\spad{f} into \\spad{1/sech(u)}.")) (|cos2sec| ((|#2| |#2|) "\\spad{cos2sec(f)} converts every \\spad{cos(u)} appearing in \\spad{f} into \\spad{1/sec(u)}.")) (|expandLog| ((|#2| |#2|) "\\spad{expandLog(f)} converts every \\spad{log(a/b)} appearing in \\spad{f} into \\spad{log(a) - log(b)},{} and every \\spad{log(a*b)} into \\spad{log(a) + log(b)}..")) (|expandPower| ((|#2| |#2|) "\\spad{expandPower(f)} converts every power \\spad{(a/b)**c} appearing in \\spad{f} into \\spad{a**c * b**(-c)}.")) (|simplifyLog| ((|#2| |#2|) "\\spad{simplifyLog(f)} converts every \\spad{log(a) - log(b)} appearing in \\spad{f} into \\spad{log(a/b)},{} every \\spad{log(a) + log(b)} into \\spad{log(a*b)} and every \\spad{n*log(a)} into \\spad{log(a^n)}.")) (|simplifyExp| ((|#2| |#2|) "\\spad{simplifyExp(f)} converts every product \\spad{exp(a)*exp(b)} appearing in \\spad{f} into \\spad{exp(a+b)}.")) (|htrigs| ((|#2| |#2|) "\\spad{htrigs(f)} converts all the exponentials in \\spad{f} into hyperbolic sines and cosines.")) (|simplify| ((|#2| |#2|) "\\spad{simplify(f)} performs the following simplifications on \\spad{f:}\\begin{items} \\item 1. rewrites trigs and hyperbolic trigs in terms of \\spad{sin} ,{}\\spad{cos},{} \\spad{sinh},{} \\spad{cosh}. \\item 2. rewrites \\spad{sin**2} and \\spad{sinh**2} in terms of \\spad{cos} and \\spad{cosh},{} \\item 3. rewrites \\spad{exp(a)*exp(b)} as \\spad{exp(a+b)}. \\item 4. rewrites \\spad{(a**(1/n))**m * (a**(1/s))**t} as a single power of a single radical of \\spad{a}. \\end{items}")) (|expand| ((|#2| |#2|) "\\spad{expand(f)} performs the following expansions on \\spad{f:}\\begin{items} \\item 1. logs of products are expanded into sums of logs,{} \\item 2. trigonometric and hyperbolic trigonometric functions of sums are expanded into sums of products of trigonometric and hyperbolic trigonometric functions. \\item 3. formal powers of the form \\spad{(a/b)**c} are expanded into \\spad{a**c * b**(-c)}. \\end{items}")))
NIL
-((-12 (|HasCategory| |#1| (LIST (QUOTE -564) (LIST (QUOTE -823) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -817) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -817) (|devaluate| |#1|)))))
-(-1116 S R E V P)
+((-12 (|HasCategory| |#1| (LIST (QUOTE -566) (LIST (QUOTE -825) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -819) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -819) (|devaluate| |#1|)))))
+(-1118 S R E V P)
((|constructor| (NIL "The category of triangular sets of multivariate polynomials with coefficients in an integral domain. Let \\axiom{\\spad{R}} be an integral domain and \\axiom{\\spad{V}} a finite ordered set of variables,{} say \\axiom{\\spad{X1} < \\spad{X2} < ... < \\spad{Xn}}. A set \\axiom{\\spad{S}} of polynomials in \\axiom{\\spad{R}[\\spad{X1},{}\\spad{X2},{}...,{}\\spad{Xn}]} is triangular if no elements of \\axiom{\\spad{S}} lies in \\axiom{\\spad{R}},{} and if two distinct elements of \\axiom{\\spad{S}} have distinct main variables. Note that the empty set is a triangular set. A triangular set is not necessarily a (lexicographical) Groebner basis and the notion of reduction related to triangular sets is based on the recursive view of polynomials. We recall this notion here and refer to [1] for more details. A polynomial \\axiom{\\spad{P}} is reduced \\spad{w}.\\spad{r}.\\spad{t} a non-constant polynomial \\axiom{\\spad{Q}} if the degree of \\axiom{\\spad{P}} in the main variable of \\axiom{\\spad{Q}} is less than the main degree of \\axiom{\\spad{Q}}. A polynomial \\axiom{\\spad{P}} is reduced \\spad{w}.\\spad{r}.\\spad{t} a triangular set \\axiom{\\spad{T}} if it is reduced \\spad{w}.\\spad{r}.\\spad{t}. every polynomial of \\axiom{\\spad{T}}. \\newline References : \\indented{1}{[1] \\spad{P}. AUBRY,{} \\spad{D}. LAZARD and \\spad{M}. MORENO MAZA \"On the Theories} \\indented{5}{of Triangular Sets\" Journal of Symbol. Comp. (to appear)}")) (|coHeight| (((|NonNegativeInteger|) $) "\\axiom{coHeight(\\spad{ts})} returns \\axiom{size()\\spad{\\$}\\spad{V}} minus \\axiom{\\spad{\\#}\\spad{ts}}.")) (|extend| (($ $ |#5|) "\\axiom{extend(\\spad{ts},{}\\spad{p})} returns a triangular set which encodes the simple extension by \\axiom{\\spad{p}} of the extension of the base field defined by \\axiom{\\spad{ts}},{} according to the properties of triangular sets of the current category If the required properties do not hold an error is returned.")) (|extendIfCan| (((|Union| $ "failed") $ |#5|) "\\axiom{extendIfCan(\\spad{ts},{}\\spad{p})} returns a triangular set which encodes the simple extension by \\axiom{\\spad{p}} of the extension of the base field defined by \\axiom{\\spad{ts}},{} according to the properties of triangular sets of the current domain. If the required properties do not hold then \"failed\" is returned. This operation encodes in some sense the properties of the triangular sets of the current category. Is is used to implement the \\axiom{construct} operation to guarantee that every triangular set build from a list of polynomials has the required properties.")) (|select| (((|Union| |#5| "failed") $ |#4|) "\\axiom{select(\\spad{ts},{}\\spad{v})} returns the polynomial of \\axiom{\\spad{ts}} with \\axiom{\\spad{v}} as main variable,{} if any.")) (|algebraic?| (((|Boolean|) |#4| $) "\\axiom{algebraic?(\\spad{v},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{v}} is the main variable of some polynomial in \\axiom{\\spad{ts}}.")) (|algebraicVariables| (((|List| |#4|) $) "\\axiom{algebraicVariables(\\spad{ts})} returns the decreasingly sorted list of the main variables of the polynomials of \\axiom{\\spad{ts}}.")) (|rest| (((|Union| $ "failed") $) "\\axiom{rest(\\spad{ts})} returns the polynomials of \\axiom{\\spad{ts}} with smaller main variable than \\axiom{mvar(\\spad{ts})} if \\axiom{\\spad{ts}} is not empty,{} otherwise returns \"failed\"")) (|last| (((|Union| |#5| "failed") $) "\\axiom{last(\\spad{ts})} returns the polynomial of \\axiom{\\spad{ts}} with smallest main variable if \\axiom{\\spad{ts}} is not empty,{} otherwise returns \\axiom{\"failed\"}.")) (|first| (((|Union| |#5| "failed") $) "\\axiom{first(\\spad{ts})} returns the polynomial of \\axiom{\\spad{ts}} with greatest main variable if \\axiom{\\spad{ts}} is not empty,{} otherwise returns \\axiom{\"failed\"}.")) (|zeroSetSplitIntoTriangularSystems| (((|List| (|Record| (|:| |close| $) (|:| |open| (|List| |#5|)))) (|List| |#5|)) "\\axiom{zeroSetSplitIntoTriangularSystems(\\spad{lp})} returns a list of triangular systems \\axiom{[[\\spad{ts1},{}\\spad{qs1}],{}...,{}[\\spad{tsn},{}\\spad{qsn}]]} such that the zero set of \\axiom{\\spad{lp}} is the union of the closures of the \\axiom{W_i} where \\axiom{W_i} consists of the zeros of \\axiom{\\spad{ts}} which do not cancel any polynomial in \\axiom{qsi}.")) (|zeroSetSplit| (((|List| $) (|List| |#5|)) "\\axiom{zeroSetSplit(\\spad{lp})} returns a list \\axiom{\\spad{lts}} of triangular sets such that the zero set of \\axiom{\\spad{lp}} is the union of the closures of the regular zero sets of the members of \\axiom{\\spad{lts}}.")) (|reduceByQuasiMonic| ((|#5| |#5| $) "\\axiom{reduceByQuasiMonic(\\spad{p},{}\\spad{ts})} returns the same as \\axiom{remainder(\\spad{p},{}collectQuasiMonic(\\spad{ts})).polnum}.")) (|collectQuasiMonic| (($ $) "\\axiom{collectQuasiMonic(\\spad{ts})} returns the subset of \\axiom{\\spad{ts}} consisting of the polynomials with initial in \\axiom{\\spad{R}}.")) (|removeZero| ((|#5| |#5| $) "\\axiom{removeZero(\\spad{p},{}\\spad{ts})} returns \\axiom{0} if \\axiom{\\spad{p}} reduces to \\axiom{0} by pseudo-division \\spad{w}.\\spad{r}.\\spad{t} \\axiom{\\spad{ts}} otherwise returns a polynomial \\axiom{\\spad{q}} computed from \\axiom{\\spad{p}} by removing any coefficient in \\axiom{\\spad{p}} reducing to \\axiom{0}.")) (|initiallyReduce| ((|#5| |#5| $) "\\axiom{initiallyReduce(\\spad{p},{}\\spad{ts})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{initiallyReduced?(\\spad{r},{}\\spad{ts})} holds and there exists some product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}.")) (|headReduce| ((|#5| |#5| $) "\\axiom{headReduce(\\spad{p},{}\\spad{ts})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{headReduce?(\\spad{r},{}\\spad{ts})} holds and there exists some product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}.")) (|stronglyReduce| ((|#5| |#5| $) "\\axiom{stronglyReduce(\\spad{p},{}\\spad{ts})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{stronglyReduced?(\\spad{r},{}\\spad{ts})} holds and there exists some product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}.")) (|rewriteSetWithReduction| (((|List| |#5|) (|List| |#5|) $ (|Mapping| |#5| |#5| |#5|) (|Mapping| (|Boolean|) |#5| |#5|)) "\\axiom{rewriteSetWithReduction(\\spad{lp},{}\\spad{ts},{}redOp,{}redOp?)} returns a list \\axiom{\\spad{lq}} of polynomials such that \\axiom{[reduce(\\spad{p},{}\\spad{ts},{}redOp,{}redOp?) for \\spad{p} in \\spad{lp}]} and \\axiom{\\spad{lp}} have the same zeros inside the regular zero set of \\axiom{\\spad{ts}}. Moreover,{} for every polynomial \\axiom{\\spad{q}} in \\axiom{\\spad{lq}} and every polynomial \\axiom{\\spad{t}} in \\axiom{\\spad{ts}} \\axiom{redOp?(\\spad{q},{}\\spad{t})} holds and there exists a polynomial \\axiom{\\spad{p}} in the ideal generated by \\axiom{\\spad{lp}} and a product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}. The operation \\axiom{redOp} must satisfy the following conditions. For every \\axiom{\\spad{p}} and \\axiom{\\spad{q}} we have \\axiom{redOp?(redOp(\\spad{p},{}\\spad{q}),{}\\spad{q})} and there exists an integer \\axiom{\\spad{e}} and a polynomial \\axiom{\\spad{f}} such that \\axiom{init(\\spad{q})^e*p = \\spad{f*q} + redOp(\\spad{p},{}\\spad{q})}.")) (|reduce| ((|#5| |#5| $ (|Mapping| |#5| |#5| |#5|) (|Mapping| (|Boolean|) |#5| |#5|)) "\\axiom{reduce(\\spad{p},{}\\spad{ts},{}redOp,{}redOp?)} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{redOp?(\\spad{r},{}\\spad{p})} holds for every \\axiom{\\spad{p}} of \\axiom{\\spad{ts}} and there exists some product \\axiom{\\spad{h}} of the initials of the members of \\axiom{\\spad{ts}} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}. The operation \\axiom{redOp} must satisfy the following conditions. For every \\axiom{\\spad{p}} and \\axiom{\\spad{q}} we have \\axiom{redOp?(redOp(\\spad{p},{}\\spad{q}),{}\\spad{q})} and there exists an integer \\axiom{\\spad{e}} and a polynomial \\axiom{\\spad{f}} such that \\axiom{init(\\spad{q})^e*p = \\spad{f*q} + redOp(\\spad{p},{}\\spad{q})}.")) (|autoReduced?| (((|Boolean|) $ (|Mapping| (|Boolean|) |#5| (|List| |#5|))) "\\axiom{autoReduced?(\\spad{ts},{}redOp?)} returns \\spad{true} iff every element of \\axiom{\\spad{ts}} is reduced \\spad{w}.\\spad{r}.\\spad{t} to every other in the sense of \\axiom{redOp?}")) (|initiallyReduced?| (((|Boolean|) $) "\\spad{initiallyReduced?(ts)} returns \\spad{true} iff for every element \\axiom{\\spad{p}} of \\axiom{\\spad{ts}} \\axiom{\\spad{p}} and all its iterated initials are reduced \\spad{w}.\\spad{r}.\\spad{t}. to the other elements of \\axiom{\\spad{ts}} with the same main variable.") (((|Boolean|) |#5| $) "\\axiom{initiallyReduced?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{p}} and all its iterated initials are reduced \\spad{w}.\\spad{r}.\\spad{t}. to the elements of \\axiom{\\spad{ts}} with the same main variable.")) (|headReduced?| (((|Boolean|) $) "\\spad{headReduced?(ts)} returns \\spad{true} iff the head of every element of \\axiom{\\spad{ts}} is reduced \\spad{w}.\\spad{r}.\\spad{t} to any other element of \\axiom{\\spad{ts}}.") (((|Boolean|) |#5| $) "\\axiom{headReduced?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff the head of \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ts}}.")) (|stronglyReduced?| (((|Boolean|) $) "\\axiom{stronglyReduced?(\\spad{ts})} returns \\spad{true} iff every element of \\axiom{\\spad{ts}} is reduced \\spad{w}.\\spad{r}.\\spad{t} to any other element of \\axiom{\\spad{ts}}.") (((|Boolean|) |#5| $) "\\axiom{stronglyReduced?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ts}}.")) (|reduced?| (((|Boolean|) |#5| $ (|Mapping| (|Boolean|) |#5| |#5|)) "\\axiom{reduced?(\\spad{p},{}\\spad{ts},{}redOp?)} returns \\spad{true} iff \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. in the sense of the operation \\axiom{redOp?},{} that is if for every \\axiom{\\spad{t}} in \\axiom{\\spad{ts}} \\axiom{redOp?(\\spad{p},{}\\spad{t})} holds.")) (|normalized?| (((|Boolean|) $) "\\axiom{normalized?(\\spad{ts})} returns \\spad{true} iff for every axiom{\\spad{p}} in axiom{\\spad{ts}} we have \\axiom{normalized?(\\spad{p},{}us)} where \\axiom{us} is \\axiom{collectUnder(\\spad{ts},{}mvar(\\spad{p}))}.") (((|Boolean|) |#5| $) "\\axiom{normalized?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{p}} and all its iterated initials have degree zero \\spad{w}.\\spad{r}.\\spad{t}. the main variables of the polynomials of \\axiom{\\spad{ts}}")) (|quasiComponent| (((|Record| (|:| |close| (|List| |#5|)) (|:| |open| (|List| |#5|))) $) "\\axiom{quasiComponent(\\spad{ts})} returns \\axiom{[\\spad{lp},{}\\spad{lq}]} where \\axiom{\\spad{lp}} is the list of the members of \\axiom{\\spad{ts}} and \\axiom{\\spad{lq}}is \\axiom{initials(\\spad{ts})}.")) (|degree| (((|NonNegativeInteger|) $) "\\axiom{degree(\\spad{ts})} returns the product of main degrees of the members of \\axiom{\\spad{ts}}.")) (|initials| (((|List| |#5|) $) "\\axiom{initials(\\spad{ts})} returns the list of the non-constant initials of the members of \\axiom{\\spad{ts}}.")) (|basicSet| (((|Union| (|Record| (|:| |bas| $) (|:| |top| (|List| |#5|))) "failed") (|List| |#5|) (|Mapping| (|Boolean|) |#5|) (|Mapping| (|Boolean|) |#5| |#5|)) "\\axiom{basicSet(\\spad{ps},{}pred?,{}redOp?)} returns the same as \\axiom{basicSet(\\spad{qs},{}redOp?)} where \\axiom{\\spad{qs}} consists of the polynomials of \\axiom{\\spad{ps}} satisfying property \\axiom{pred?}.") (((|Union| (|Record| (|:| |bas| $) (|:| |top| (|List| |#5|))) "failed") (|List| |#5|) (|Mapping| (|Boolean|) |#5| |#5|)) "\\axiom{basicSet(\\spad{ps},{}redOp?)} returns \\axiom{[\\spad{bs},{}\\spad{ts}]} where \\axiom{concat(\\spad{bs},{}\\spad{ts})} is \\axiom{\\spad{ps}} and \\axiom{\\spad{bs}} is a basic set in Wu Wen Tsun sense of \\axiom{\\spad{ps}} \\spad{w}.\\spad{r}.\\spad{t} the reduction-test \\axiom{redOp?},{} if no non-zero constant polynomial lie in \\axiom{\\spad{ps}},{} otherwise \\axiom{\"failed\"} is returned.")) (|infRittWu?| (((|Boolean|) $ $) "\\axiom{infRittWu?(\\spad{ts1},{}\\spad{ts2})} returns \\spad{true} iff \\axiom{\\spad{ts2}} has higher rank than \\axiom{\\spad{ts1}} in Wu Wen Tsun sense.")))
NIL
-((|HasCategory| |#4| (QUOTE (-344))))
-(-1117 R E V P)
+((|HasCategory| |#4| (QUOTE (-346))))
+(-1119 R E V P)
((|constructor| (NIL "The category of triangular sets of multivariate polynomials with coefficients in an integral domain. Let \\axiom{\\spad{R}} be an integral domain and \\axiom{\\spad{V}} a finite ordered set of variables,{} say \\axiom{\\spad{X1} < \\spad{X2} < ... < \\spad{Xn}}. A set \\axiom{\\spad{S}} of polynomials in \\axiom{\\spad{R}[\\spad{X1},{}\\spad{X2},{}...,{}\\spad{Xn}]} is triangular if no elements of \\axiom{\\spad{S}} lies in \\axiom{\\spad{R}},{} and if two distinct elements of \\axiom{\\spad{S}} have distinct main variables. Note that the empty set is a triangular set. A triangular set is not necessarily a (lexicographical) Groebner basis and the notion of reduction related to triangular sets is based on the recursive view of polynomials. We recall this notion here and refer to [1] for more details. A polynomial \\axiom{\\spad{P}} is reduced \\spad{w}.\\spad{r}.\\spad{t} a non-constant polynomial \\axiom{\\spad{Q}} if the degree of \\axiom{\\spad{P}} in the main variable of \\axiom{\\spad{Q}} is less than the main degree of \\axiom{\\spad{Q}}. A polynomial \\axiom{\\spad{P}} is reduced \\spad{w}.\\spad{r}.\\spad{t} a triangular set \\axiom{\\spad{T}} if it is reduced \\spad{w}.\\spad{r}.\\spad{t}. every polynomial of \\axiom{\\spad{T}}. \\newline References : \\indented{1}{[1] \\spad{P}. AUBRY,{} \\spad{D}. LAZARD and \\spad{M}. MORENO MAZA \"On the Theories} \\indented{5}{of Triangular Sets\" Journal of Symbol. Comp. (to appear)}")) (|coHeight| (((|NonNegativeInteger|) $) "\\axiom{coHeight(\\spad{ts})} returns \\axiom{size()\\spad{\\$}\\spad{V}} minus \\axiom{\\spad{\\#}\\spad{ts}}.")) (|extend| (($ $ |#4|) "\\axiom{extend(\\spad{ts},{}\\spad{p})} returns a triangular set which encodes the simple extension by \\axiom{\\spad{p}} of the extension of the base field defined by \\axiom{\\spad{ts}},{} according to the properties of triangular sets of the current category If the required properties do not hold an error is returned.")) (|extendIfCan| (((|Union| $ "failed") $ |#4|) "\\axiom{extendIfCan(\\spad{ts},{}\\spad{p})} returns a triangular set which encodes the simple extension by \\axiom{\\spad{p}} of the extension of the base field defined by \\axiom{\\spad{ts}},{} according to the properties of triangular sets of the current domain. If the required properties do not hold then \"failed\" is returned. This operation encodes in some sense the properties of the triangular sets of the current category. Is is used to implement the \\axiom{construct} operation to guarantee that every triangular set build from a list of polynomials has the required properties.")) (|select| (((|Union| |#4| "failed") $ |#3|) "\\axiom{select(\\spad{ts},{}\\spad{v})} returns the polynomial of \\axiom{\\spad{ts}} with \\axiom{\\spad{v}} as main variable,{} if any.")) (|algebraic?| (((|Boolean|) |#3| $) "\\axiom{algebraic?(\\spad{v},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{v}} is the main variable of some polynomial in \\axiom{\\spad{ts}}.")) (|algebraicVariables| (((|List| |#3|) $) "\\axiom{algebraicVariables(\\spad{ts})} returns the decreasingly sorted list of the main variables of the polynomials of \\axiom{\\spad{ts}}.")) (|rest| (((|Union| $ "failed") $) "\\axiom{rest(\\spad{ts})} returns the polynomials of \\axiom{\\spad{ts}} with smaller main variable than \\axiom{mvar(\\spad{ts})} if \\axiom{\\spad{ts}} is not empty,{} otherwise returns \"failed\"")) (|last| (((|Union| |#4| "failed") $) "\\axiom{last(\\spad{ts})} returns the polynomial of \\axiom{\\spad{ts}} with smallest main variable if \\axiom{\\spad{ts}} is not empty,{} otherwise returns \\axiom{\"failed\"}.")) (|first| (((|Union| |#4| "failed") $) "\\axiom{first(\\spad{ts})} returns the polynomial of \\axiom{\\spad{ts}} with greatest main variable if \\axiom{\\spad{ts}} is not empty,{} otherwise returns \\axiom{\"failed\"}.")) (|zeroSetSplitIntoTriangularSystems| (((|List| (|Record| (|:| |close| $) (|:| |open| (|List| |#4|)))) (|List| |#4|)) "\\axiom{zeroSetSplitIntoTriangularSystems(\\spad{lp})} returns a list of triangular systems \\axiom{[[\\spad{ts1},{}\\spad{qs1}],{}...,{}[\\spad{tsn},{}\\spad{qsn}]]} such that the zero set of \\axiom{\\spad{lp}} is the union of the closures of the \\axiom{W_i} where \\axiom{W_i} consists of the zeros of \\axiom{\\spad{ts}} which do not cancel any polynomial in \\axiom{qsi}.")) (|zeroSetSplit| (((|List| $) (|List| |#4|)) "\\axiom{zeroSetSplit(\\spad{lp})} returns a list \\axiom{\\spad{lts}} of triangular sets such that the zero set of \\axiom{\\spad{lp}} is the union of the closures of the regular zero sets of the members of \\axiom{\\spad{lts}}.")) (|reduceByQuasiMonic| ((|#4| |#4| $) "\\axiom{reduceByQuasiMonic(\\spad{p},{}\\spad{ts})} returns the same as \\axiom{remainder(\\spad{p},{}collectQuasiMonic(\\spad{ts})).polnum}.")) (|collectQuasiMonic| (($ $) "\\axiom{collectQuasiMonic(\\spad{ts})} returns the subset of \\axiom{\\spad{ts}} consisting of the polynomials with initial in \\axiom{\\spad{R}}.")) (|removeZero| ((|#4| |#4| $) "\\axiom{removeZero(\\spad{p},{}\\spad{ts})} returns \\axiom{0} if \\axiom{\\spad{p}} reduces to \\axiom{0} by pseudo-division \\spad{w}.\\spad{r}.\\spad{t} \\axiom{\\spad{ts}} otherwise returns a polynomial \\axiom{\\spad{q}} computed from \\axiom{\\spad{p}} by removing any coefficient in \\axiom{\\spad{p}} reducing to \\axiom{0}.")) (|initiallyReduce| ((|#4| |#4| $) "\\axiom{initiallyReduce(\\spad{p},{}\\spad{ts})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{initiallyReduced?(\\spad{r},{}\\spad{ts})} holds and there exists some product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}.")) (|headReduce| ((|#4| |#4| $) "\\axiom{headReduce(\\spad{p},{}\\spad{ts})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{headReduce?(\\spad{r},{}\\spad{ts})} holds and there exists some product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}.")) (|stronglyReduce| ((|#4| |#4| $) "\\axiom{stronglyReduce(\\spad{p},{}\\spad{ts})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{stronglyReduced?(\\spad{r},{}\\spad{ts})} holds and there exists some product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}.")) (|rewriteSetWithReduction| (((|List| |#4|) (|List| |#4|) $ (|Mapping| |#4| |#4| |#4|) (|Mapping| (|Boolean|) |#4| |#4|)) "\\axiom{rewriteSetWithReduction(\\spad{lp},{}\\spad{ts},{}redOp,{}redOp?)} returns a list \\axiom{\\spad{lq}} of polynomials such that \\axiom{[reduce(\\spad{p},{}\\spad{ts},{}redOp,{}redOp?) for \\spad{p} in \\spad{lp}]} and \\axiom{\\spad{lp}} have the same zeros inside the regular zero set of \\axiom{\\spad{ts}}. Moreover,{} for every polynomial \\axiom{\\spad{q}} in \\axiom{\\spad{lq}} and every polynomial \\axiom{\\spad{t}} in \\axiom{\\spad{ts}} \\axiom{redOp?(\\spad{q},{}\\spad{t})} holds and there exists a polynomial \\axiom{\\spad{p}} in the ideal generated by \\axiom{\\spad{lp}} and a product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}. The operation \\axiom{redOp} must satisfy the following conditions. For every \\axiom{\\spad{p}} and \\axiom{\\spad{q}} we have \\axiom{redOp?(redOp(\\spad{p},{}\\spad{q}),{}\\spad{q})} and there exists an integer \\axiom{\\spad{e}} and a polynomial \\axiom{\\spad{f}} such that \\axiom{init(\\spad{q})^e*p = \\spad{f*q} + redOp(\\spad{p},{}\\spad{q})}.")) (|reduce| ((|#4| |#4| $ (|Mapping| |#4| |#4| |#4|) (|Mapping| (|Boolean|) |#4| |#4|)) "\\axiom{reduce(\\spad{p},{}\\spad{ts},{}redOp,{}redOp?)} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{redOp?(\\spad{r},{}\\spad{p})} holds for every \\axiom{\\spad{p}} of \\axiom{\\spad{ts}} and there exists some product \\axiom{\\spad{h}} of the initials of the members of \\axiom{\\spad{ts}} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}. The operation \\axiom{redOp} must satisfy the following conditions. For every \\axiom{\\spad{p}} and \\axiom{\\spad{q}} we have \\axiom{redOp?(redOp(\\spad{p},{}\\spad{q}),{}\\spad{q})} and there exists an integer \\axiom{\\spad{e}} and a polynomial \\axiom{\\spad{f}} such that \\axiom{init(\\spad{q})^e*p = \\spad{f*q} + redOp(\\spad{p},{}\\spad{q})}.")) (|autoReduced?| (((|Boolean|) $ (|Mapping| (|Boolean|) |#4| (|List| |#4|))) "\\axiom{autoReduced?(\\spad{ts},{}redOp?)} returns \\spad{true} iff every element of \\axiom{\\spad{ts}} is reduced \\spad{w}.\\spad{r}.\\spad{t} to every other in the sense of \\axiom{redOp?}")) (|initiallyReduced?| (((|Boolean|) $) "\\spad{initiallyReduced?(ts)} returns \\spad{true} iff for every element \\axiom{\\spad{p}} of \\axiom{\\spad{ts}} \\axiom{\\spad{p}} and all its iterated initials are reduced \\spad{w}.\\spad{r}.\\spad{t}. to the other elements of \\axiom{\\spad{ts}} with the same main variable.") (((|Boolean|) |#4| $) "\\axiom{initiallyReduced?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{p}} and all its iterated initials are reduced \\spad{w}.\\spad{r}.\\spad{t}. to the elements of \\axiom{\\spad{ts}} with the same main variable.")) (|headReduced?| (((|Boolean|) $) "\\spad{headReduced?(ts)} returns \\spad{true} iff the head of every element of \\axiom{\\spad{ts}} is reduced \\spad{w}.\\spad{r}.\\spad{t} to any other element of \\axiom{\\spad{ts}}.") (((|Boolean|) |#4| $) "\\axiom{headReduced?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff the head of \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ts}}.")) (|stronglyReduced?| (((|Boolean|) $) "\\axiom{stronglyReduced?(\\spad{ts})} returns \\spad{true} iff every element of \\axiom{\\spad{ts}} is reduced \\spad{w}.\\spad{r}.\\spad{t} to any other element of \\axiom{\\spad{ts}}.") (((|Boolean|) |#4| $) "\\axiom{stronglyReduced?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ts}}.")) (|reduced?| (((|Boolean|) |#4| $ (|Mapping| (|Boolean|) |#4| |#4|)) "\\axiom{reduced?(\\spad{p},{}\\spad{ts},{}redOp?)} returns \\spad{true} iff \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. in the sense of the operation \\axiom{redOp?},{} that is if for every \\axiom{\\spad{t}} in \\axiom{\\spad{ts}} \\axiom{redOp?(\\spad{p},{}\\spad{t})} holds.")) (|normalized?| (((|Boolean|) $) "\\axiom{normalized?(\\spad{ts})} returns \\spad{true} iff for every axiom{\\spad{p}} in axiom{\\spad{ts}} we have \\axiom{normalized?(\\spad{p},{}us)} where \\axiom{us} is \\axiom{collectUnder(\\spad{ts},{}mvar(\\spad{p}))}.") (((|Boolean|) |#4| $) "\\axiom{normalized?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{p}} and all its iterated initials have degree zero \\spad{w}.\\spad{r}.\\spad{t}. the main variables of the polynomials of \\axiom{\\spad{ts}}")) (|quasiComponent| (((|Record| (|:| |close| (|List| |#4|)) (|:| |open| (|List| |#4|))) $) "\\axiom{quasiComponent(\\spad{ts})} returns \\axiom{[\\spad{lp},{}\\spad{lq}]} where \\axiom{\\spad{lp}} is the list of the members of \\axiom{\\spad{ts}} and \\axiom{\\spad{lq}}is \\axiom{initials(\\spad{ts})}.")) (|degree| (((|NonNegativeInteger|) $) "\\axiom{degree(\\spad{ts})} returns the product of main degrees of the members of \\axiom{\\spad{ts}}.")) (|initials| (((|List| |#4|) $) "\\axiom{initials(\\spad{ts})} returns the list of the non-constant initials of the members of \\axiom{\\spad{ts}}.")) (|basicSet| (((|Union| (|Record| (|:| |bas| $) (|:| |top| (|List| |#4|))) "failed") (|List| |#4|) (|Mapping| (|Boolean|) |#4|) (|Mapping| (|Boolean|) |#4| |#4|)) "\\axiom{basicSet(\\spad{ps},{}pred?,{}redOp?)} returns the same as \\axiom{basicSet(\\spad{qs},{}redOp?)} where \\axiom{\\spad{qs}} consists of the polynomials of \\axiom{\\spad{ps}} satisfying property \\axiom{pred?}.") (((|Union| (|Record| (|:| |bas| $) (|:| |top| (|List| |#4|))) "failed") (|List| |#4|) (|Mapping| (|Boolean|) |#4| |#4|)) "\\axiom{basicSet(\\spad{ps},{}redOp?)} returns \\axiom{[\\spad{bs},{}\\spad{ts}]} where \\axiom{concat(\\spad{bs},{}\\spad{ts})} is \\axiom{\\spad{ps}} and \\axiom{\\spad{bs}} is a basic set in Wu Wen Tsun sense of \\axiom{\\spad{ps}} \\spad{w}.\\spad{r}.\\spad{t} the reduction-test \\axiom{redOp?},{} if no non-zero constant polynomial lie in \\axiom{\\spad{ps}},{} otherwise \\axiom{\"failed\"} is returned.")) (|infRittWu?| (((|Boolean|) $ $) "\\axiom{infRittWu?(\\spad{ts1},{}\\spad{ts2})} returns \\spad{true} iff \\axiom{\\spad{ts2}} has higher rank than \\axiom{\\spad{ts1}} in Wu Wen Tsun sense.")))
-((-4249 . T) (-4248 . T) (-2500 . T))
+((-4251 . T) (-4250 . T) (-2137 . T))
NIL
-(-1118 |Coef|)
+(-1120 |Coef|)
((|constructor| (NIL "\\spadtype{TaylorSeries} is a general multivariate Taylor series domain over the ring Coef and with variables of type Symbol.")) (|fintegrate| (($ (|Mapping| $) (|Symbol|) |#1|) "\\spad{fintegrate(f,{}v,{}c)} is the integral of \\spad{f()} with respect \\indented{1}{to \\spad{v} and having \\spad{c} as the constant of integration.} \\indented{1}{The evaluation of \\spad{f()} is delayed.}")) (|integrate| (($ $ (|Symbol|) |#1|) "\\spad{integrate(s,{}v,{}c)} is the integral of \\spad{s} with respect \\indented{1}{to \\spad{v} and having \\spad{c} as the constant of integration.}")) (|coerce| (($ (|Polynomial| |#1|)) "\\spad{coerce(s)} regroups terms of \\spad{s} by total degree \\indented{1}{and forms a series.}") (($ (|Symbol|)) "\\spad{coerce(s)} converts a variable to a Taylor series")) (|coefficient| (((|Polynomial| |#1|) $ (|NonNegativeInteger|)) "\\spad{coefficient(s,{} n)} gives the terms of total degree \\spad{n}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-134))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-339))))
-(-1119 |Curve|)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-136))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-341))))
+(-1121 |Curve|)
((|constructor| (NIL "\\indented{2}{Package for constructing tubes around 3-dimensional parametric curves.} Domain of tubes around 3-dimensional parametric curves.")) (|tube| (($ |#1| (|List| (|List| (|Point| (|DoubleFloat|)))) (|Boolean|)) "\\spad{tube(c,{}ll,{}b)} creates a tube of the domain \\spadtype{TubePlot} from a space curve \\spad{c} of the category \\spadtype{PlottableSpaceCurveCategory},{} a list of lists of points (loops) \\spad{ll} and a boolean \\spad{b} which if \\spad{true} indicates a closed tube,{} or if \\spad{false} an open tube.")) (|setClosed| (((|Boolean|) $ (|Boolean|)) "\\spad{setClosed(t,{}b)} declares the given tube plot \\spad{t} to be closed if \\spad{b} is \\spad{true},{} or if \\spad{b} is \\spad{false},{} \\spad{t} is set to be open.")) (|open?| (((|Boolean|) $) "\\spad{open?(t)} tests whether the given tube plot \\spad{t} is open.")) (|closed?| (((|Boolean|) $) "\\spad{closed?(t)} tests whether the given tube plot \\spad{t} is closed.")) (|listLoops| (((|List| (|List| (|Point| (|DoubleFloat|)))) $) "\\spad{listLoops(t)} returns the list of lists of points,{} or the 'loops',{} of the given tube plot \\spad{t}.")) (|getCurve| ((|#1| $) "\\spad{getCurve(t)} returns the \\spadtype{PlottableSpaceCurveCategory} representing the parametric curve of the given tube plot \\spad{t}.")))
NIL
NIL
-(-1120)
+(-1122)
((|constructor| (NIL "Tools for constructing tubes around 3-dimensional parametric curves.")) (|loopPoints| (((|List| (|Point| (|DoubleFloat|))) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|List| (|List| (|DoubleFloat|)))) "\\spad{loopPoints(p,{}n,{}b,{}r,{}lls)} creates and returns a list of points which form the loop with radius \\spad{r},{} around the center point indicated by the point \\spad{p},{} with the principal normal vector of the space curve at point \\spad{p} given by the point(vector) \\spad{n},{} and the binormal vector given by the point(vector) \\spad{b},{} and a list of lists,{} \\spad{lls},{} which is the \\spadfun{cosSinInfo} of the number of points defining the loop.")) (|cosSinInfo| (((|List| (|List| (|DoubleFloat|))) (|Integer|)) "\\spad{cosSinInfo(n)} returns the list of lists of values for \\spad{n},{} in the form: \\spad{[[cos(n - 1) a,{}sin(n - 1) a],{}...,{}[cos 2 a,{}sin 2 a],{}[cos a,{}sin a]]} where \\spad{a = 2 pi/n}. Note: \\spad{n} should be greater than 2.")) (|unitVector| (((|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) "\\spad{unitVector(p)} creates the unit vector of the point \\spad{p} and returns the result as a point. Note: \\spad{unitVector(p) = p/|p|}.")) (|cross| (((|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) "\\spad{cross(p,{}q)} computes the cross product of the two points \\spad{p} and \\spad{q} using only the first three coordinates,{} and keeping the color of the first point \\spad{p}. The result is returned as a point.")) (|dot| (((|DoubleFloat|) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) "\\spad{dot(p,{}q)} computes the dot product of the two points \\spad{p} and \\spad{q} using only the first three coordinates,{} and returns the resulting \\spadtype{DoubleFloat}.")) (- (((|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) "\\spad{p - q} computes and returns a point whose coordinates are the differences of the coordinates of two points \\spad{p} and \\spad{q},{} using the color,{} or fourth coordinate,{} of the first point \\spad{p} as the color also of the point \\spad{q}.")) (+ (((|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) "\\spad{p + q} computes and returns a point whose coordinates are the sums of the coordinates of the two points \\spad{p} and \\spad{q},{} using the color,{} or fourth coordinate,{} of the first point \\spad{p} as the color also of the point \\spad{q}.")) (* (((|Point| (|DoubleFloat|)) (|DoubleFloat|) (|Point| (|DoubleFloat|))) "\\spad{s * p} returns a point whose coordinates are the scalar multiple of the point \\spad{p} by the scalar \\spad{s},{} preserving the color,{} or fourth coordinate,{} of \\spad{p}.")) (|point| (((|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{point(x1,{}x2,{}x3,{}c)} creates and returns a point from the three specified coordinates \\spad{x1},{} \\spad{x2},{} \\spad{x3},{} and also a fourth coordinate,{} \\spad{c},{} which is generally used to specify the color of the point.")))
NIL
NIL
-(-1121 S)
+(-1123 S)
((|constructor| (NIL "\\indented{1}{This domain is used to interface with the interpreter\\spad{'s} notion} of comma-delimited sequences of values.")) (|length| (((|NonNegativeInteger|) $) "\\spad{length(x)} returns the number of elements in tuple \\spad{x}")) (|select| ((|#1| $ (|NonNegativeInteger|)) "\\spad{select(x,{}n)} returns the \\spad{n}-th element of tuple \\spad{x}. tuples are 0-based")) (|coerce| (($ (|PrimitiveArray| |#1|)) "\\spad{coerce(a)} makes a tuple from primitive array a")))
NIL
-((|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-1122 -3894)
+((|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-1124 -3576)
((|constructor| (NIL "A basic package for the factorization of bivariate polynomials over a finite field. The functions here represent the base step for the multivariate factorizer.")) (|twoFactor| (((|Factored| (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|))) (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|)) (|Integer|)) "\\spad{twoFactor(p,{}n)} returns the factorisation of polynomial \\spad{p},{} a sparse univariate polynomial (sup) over a sup over \\spad{F}. Also,{} \\spad{p} is assumed primitive and square-free and \\spad{n} is the degree of the inner variable of \\spad{p} (maximum of the degrees of the coefficients of \\spad{p}).")) (|generalSqFr| (((|Factored| (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|))) (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|))) "\\spad{generalSqFr(p)} returns the square-free factorisation of polynomial \\spad{p},{} a sparse univariate polynomial (sup) over a sup over \\spad{F}.")) (|generalTwoFactor| (((|Factored| (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|))) (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|))) "\\spad{generalTwoFactor(p)} returns the factorisation of polynomial \\spad{p},{} a sparse univariate polynomial (sup) over a sup over \\spad{F}.")))
NIL
NIL
-(-1123)
+(-1125)
((|constructor| (NIL "The fundamental Type.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-1124 S)
+(-1126 S)
((|constructor| (NIL "Provides functions to force a partial ordering on any set.")) (|more?| (((|Boolean|) |#1| |#1|) "\\spad{more?(a,{} b)} compares \\spad{a} and \\spad{b} in the partial ordering induced by setOrder,{} and uses the ordering on \\spad{S} if \\spad{a} and \\spad{b} are not comparable in the partial ordering.")) (|userOrdered?| (((|Boolean|)) "\\spad{userOrdered?()} tests if the partial ordering induced by \\spadfunFrom{setOrder}{UserDefinedPartialOrdering} is not empty.")) (|largest| ((|#1| (|List| |#1|)) "\\spad{largest l} returns the largest element of \\spad{l} where the partial ordering induced by setOrder is completed into a total one by the ordering on \\spad{S}.") ((|#1| (|List| |#1|) (|Mapping| (|Boolean|) |#1| |#1|)) "\\spad{largest(l,{} fn)} returns the largest element of \\spad{l} where the partial ordering induced by setOrder is completed into a total one by \\spad{fn}.")) (|less?| (((|Boolean|) |#1| |#1| (|Mapping| (|Boolean|) |#1| |#1|)) "\\spad{less?(a,{} b,{} fn)} compares \\spad{a} and \\spad{b} in the partial ordering induced by setOrder,{} and returns \\spad{fn(a,{} b)} if \\spad{a} and \\spad{b} are not comparable in that ordering.") (((|Union| (|Boolean|) "failed") |#1| |#1|) "\\spad{less?(a,{} b)} compares \\spad{a} and \\spad{b} in the partial ordering induced by setOrder.")) (|getOrder| (((|Record| (|:| |low| (|List| |#1|)) (|:| |high| (|List| |#1|)))) "\\spad{getOrder()} returns \\spad{[[b1,{}...,{}bm],{} [a1,{}...,{}an]]} such that the partial ordering on \\spad{S} was given by \\spad{setOrder([b1,{}...,{}bm],{}[a1,{}...,{}an])}.")) (|setOrder| (((|Void|) (|List| |#1|) (|List| |#1|)) "\\spad{setOrder([b1,{}...,{}bm],{} [a1,{}...,{}an])} defines a partial ordering on \\spad{S} given \\spad{by:} \\indented{3}{(1)\\space{2}\\spad{b1 < b2 < ... < bm < a1 < a2 < ... < an}.} \\indented{3}{(2)\\space{2}\\spad{bj < c < \\spad{ai}}\\space{2}for \\spad{c} not among the \\spad{ai}\\spad{'s} and \\spad{bj}\\spad{'s}.} \\indented{3}{(3)\\space{2}undefined on \\spad{(c,{}d)} if neither is among the \\spad{ai}\\spad{'s},{}\\spad{bj}\\spad{'s}.}") (((|Void|) (|List| |#1|)) "\\spad{setOrder([a1,{}...,{}an])} defines a partial ordering on \\spad{S} given \\spad{by:} \\indented{3}{(1)\\space{2}\\spad{a1 < a2 < ... < an}.} \\indented{3}{(2)\\space{2}\\spad{b < \\spad{ai}\\space{3}for i = 1..n} and \\spad{b} not among the \\spad{ai}\\spad{'s}.} \\indented{3}{(3)\\space{2}undefined on \\spad{(b,{} c)} if neither is among the \\spad{ai}\\spad{'s}.}")))
NIL
-((|HasCategory| |#1| (QUOTE (-786))))
-(-1125)
+((|HasCategory| |#1| (QUOTE (-788))))
+(-1127)
((|constructor| (NIL "This packages provides functions to allow the user to select the ordering on the variables and operators for displaying polynomials,{} fractions and expressions. The ordering affects the display only and not the computations.")) (|resetVariableOrder| (((|Void|)) "\\spad{resetVariableOrder()} cancels any previous use of setVariableOrder and returns to the default system ordering.")) (|getVariableOrder| (((|Record| (|:| |high| (|List| (|Symbol|))) (|:| |low| (|List| (|Symbol|))))) "\\spad{getVariableOrder()} returns \\spad{[[b1,{}...,{}bm],{} [a1,{}...,{}an]]} such that the ordering on the variables was given by \\spad{setVariableOrder([b1,{}...,{}bm],{} [a1,{}...,{}an])}.")) (|setVariableOrder| (((|Void|) (|List| (|Symbol|)) (|List| (|Symbol|))) "\\spad{setVariableOrder([b1,{}...,{}bm],{} [a1,{}...,{}an])} defines an ordering on the variables given by \\spad{b1 > b2 > ... > bm >} other variables \\spad{> a1 > a2 > ... > an}.") (((|Void|) (|List| (|Symbol|))) "\\spad{setVariableOrder([a1,{}...,{}an])} defines an ordering on the variables given by \\spad{a1 > a2 > ... > an > other variables}.")))
NIL
NIL
-(-1126 S)
+(-1128 S)
((|constructor| (NIL "A constructive unique factorization domain,{} \\spadignore{i.e.} where we can constructively factor members into a product of a finite number of irreducible elements.")) (|factor| (((|Factored| $) $) "\\spad{factor(x)} returns the factorization of \\spad{x} into irreducibles.")) (|squareFreePart| (($ $) "\\spad{squareFreePart(x)} returns a product of prime factors of \\spad{x} each taken with multiplicity one.")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(x)} returns the square-free factorization of \\spad{x} \\spadignore{i.e.} such that the factors are pairwise relatively prime and each has multiple prime factors.")) (|prime?| (((|Boolean|) $) "\\spad{prime?(x)} tests if \\spad{x} can never be written as the product of two non-units of the ring,{} \\spadignore{i.e.} \\spad{x} is an irreducible element.")))
NIL
NIL
-(-1127)
+(-1129)
((|constructor| (NIL "A constructive unique factorization domain,{} \\spadignore{i.e.} where we can constructively factor members into a product of a finite number of irreducible elements.")) (|factor| (((|Factored| $) $) "\\spad{factor(x)} returns the factorization of \\spad{x} into irreducibles.")) (|squareFreePart| (($ $) "\\spad{squareFreePart(x)} returns a product of prime factors of \\spad{x} each taken with multiplicity one.")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(x)} returns the square-free factorization of \\spad{x} \\spadignore{i.e.} such that the factors are pairwise relatively prime and each has multiple prime factors.")) (|prime?| (((|Boolean|) $) "\\spad{prime?(x)} tests if \\spad{x} can never be written as the product of two non-units of the ring,{} \\spadignore{i.e.} \\spad{x} is an irreducible element.")))
-((-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-1128 |Coef1| |Coef2| |var1| |var2| |cen1| |cen2|)
+(-1130 |Coef1| |Coef2| |var1| |var2| |cen1| |cen2|)
((|constructor| (NIL "Mapping package for univariate Laurent series \\indented{2}{This package allows one to apply a function to the coefficients of} \\indented{2}{a univariate Laurent series.}")) (|map| (((|UnivariateLaurentSeries| |#2| |#4| |#6|) (|Mapping| |#2| |#1|) (|UnivariateLaurentSeries| |#1| |#3| |#5|)) "\\spad{map(f,{}g(x))} applies the map \\spad{f} to the coefficients of the Laurent series \\spad{g(x)}.")))
NIL
NIL
-(-1129 |Coef|)
+(-1131 |Coef|)
((|constructor| (NIL "\\spadtype{UnivariateLaurentSeriesCategory} is the category of Laurent series in one variable.")) (|integrate| (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 1. We may integrate a series when we can divide coefficients by integers.")) (|rationalFunction| (((|Fraction| (|Polynomial| |#1|)) $ (|Integer|) (|Integer|)) "\\spad{rationalFunction(f,{}k1,{}k2)} returns a rational function consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (((|Fraction| (|Polynomial| |#1|)) $ (|Integer|)) "\\spad{rationalFunction(f,{}k)} returns a rational function consisting of the sum of all terms of \\spad{f} of degree \\spad{<=} \\spad{k}.")) (|multiplyCoefficients| (($ (|Mapping| |#1| (|Integer|)) $) "\\spad{multiplyCoefficients(f,{}sum(n = n0..infinity,{}a[n] * x**n)) = sum(n = 0..infinity,{}f(n) * a[n] * x**n)}. This function is used when Puiseux series are represented by a Laurent series and an exponent.")) (|series| (($ (|Stream| (|Record| (|:| |k| (|Integer|)) (|:| |c| |#1|)))) "\\spad{series(st)} creates a series from a stream of non-zero terms,{} where a term is an exponent-coefficient pair. The terms in the stream should be ordered by increasing order of exponents.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) (-4242 . T) (-4243 . T) (-4245 . T))
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-1130 S |Coef| UTS)
+(-1132 S |Coef| UTS)
((|constructor| (NIL "This is a category of univariate Laurent series constructed from univariate Taylor series. A Laurent series is represented by a pair \\spad{[n,{}f(x)]},{} where \\spad{n} is an arbitrary integer and \\spad{f(x)} is a Taylor series. This pair represents the Laurent series \\spad{x**n * f(x)}.")) (|taylorIfCan| (((|Union| |#3| "failed") $) "\\spad{taylorIfCan(f(x))} converts the Laurent series \\spad{f(x)} to a Taylor series,{} if possible. If this is not possible,{} \"failed\" is returned.")) (|taylor| ((|#3| $) "\\spad{taylor(f(x))} converts the Laurent series \\spad{f}(\\spad{x}) to a Taylor series,{} if possible. Error: if this is not possible.")) (|coerce| (($ |#3|) "\\spad{coerce(f(x))} converts the Taylor series \\spad{f(x)} to a Laurent series.")) (|removeZeroes| (($ (|Integer|) $) "\\spad{removeZeroes(n,{}f(x))} removes up to \\spad{n} leading zeroes from the Laurent series \\spad{f(x)}. A Laurent series is represented by (1) an exponent and (2) a Taylor series which may have leading zero coefficients. When the Taylor series has a leading zero coefficient,{} the 'leading zero' is removed from the Laurent series as follows: the series is rewritten by increasing the exponent by 1 and dividing the Taylor series by its variable.") (($ $) "\\spad{removeZeroes(f(x))} removes leading zeroes from the representation of the Laurent series \\spad{f(x)}. A Laurent series is represented by (1) an exponent and (2) a Taylor series which may have leading zero coefficients. When the Taylor series has a leading zero coefficient,{} the 'leading zero' is removed from the Laurent series as follows: the series is rewritten by increasing the exponent by 1 and dividing the Taylor series by its variable. Note: \\spad{removeZeroes(f)} removes all leading zeroes from \\spad{f}")) (|taylorRep| ((|#3| $) "\\spad{taylorRep(f(x))} returns \\spad{g(x)},{} where \\spad{f = x**n * g(x)} is represented by \\spad{[n,{}g(x)]}.")) (|degree| (((|Integer|) $) "\\spad{degree(f(x))} returns the degree of the lowest order term of \\spad{f(x)},{} which may have zero as a coefficient.")) (|laurent| (($ (|Integer|) |#3|) "\\spad{laurent(n,{}f(x))} returns \\spad{x**n * f(x)}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-339))))
-(-1131 |Coef| UTS)
+((|HasCategory| |#2| (QUOTE (-341))))
+(-1133 |Coef| UTS)
((|constructor| (NIL "This is a category of univariate Laurent series constructed from univariate Taylor series. A Laurent series is represented by a pair \\spad{[n,{}f(x)]},{} where \\spad{n} is an arbitrary integer and \\spad{f(x)} is a Taylor series. This pair represents the Laurent series \\spad{x**n * f(x)}.")) (|taylorIfCan| (((|Union| |#2| "failed") $) "\\spad{taylorIfCan(f(x))} converts the Laurent series \\spad{f(x)} to a Taylor series,{} if possible. If this is not possible,{} \"failed\" is returned.")) (|taylor| ((|#2| $) "\\spad{taylor(f(x))} converts the Laurent series \\spad{f}(\\spad{x}) to a Taylor series,{} if possible. Error: if this is not possible.")) (|coerce| (($ |#2|) "\\spad{coerce(f(x))} converts the Taylor series \\spad{f(x)} to a Laurent series.")) (|removeZeroes| (($ (|Integer|) $) "\\spad{removeZeroes(n,{}f(x))} removes up to \\spad{n} leading zeroes from the Laurent series \\spad{f(x)}. A Laurent series is represented by (1) an exponent and (2) a Taylor series which may have leading zero coefficients. When the Taylor series has a leading zero coefficient,{} the 'leading zero' is removed from the Laurent series as follows: the series is rewritten by increasing the exponent by 1 and dividing the Taylor series by its variable.") (($ $) "\\spad{removeZeroes(f(x))} removes leading zeroes from the representation of the Laurent series \\spad{f(x)}. A Laurent series is represented by (1) an exponent and (2) a Taylor series which may have leading zero coefficients. When the Taylor series has a leading zero coefficient,{} the 'leading zero' is removed from the Laurent series as follows: the series is rewritten by increasing the exponent by 1 and dividing the Taylor series by its variable. Note: \\spad{removeZeroes(f)} removes all leading zeroes from \\spad{f}")) (|taylorRep| ((|#2| $) "\\spad{taylorRep(f(x))} returns \\spad{g(x)},{} where \\spad{f = x**n * g(x)} is represented by \\spad{[n,{}g(x)]}.")) (|degree| (((|Integer|) $) "\\spad{degree(f(x))} returns the degree of the lowest order term of \\spad{f(x)},{} which may have zero as a coefficient.")) (|laurent| (($ (|Integer|) |#2|) "\\spad{laurent(n,{}f(x))} returns \\spad{x**n * f(x)}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) (-2500 |has| |#1| (-339)) (-4242 . T) (-4243 . T) (-4245 . T))
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) (-2137 |has| |#1| (-341)) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-1132 |Coef| UTS)
+(-1134 |Coef| UTS)
((|constructor| (NIL "This package enables one to construct a univariate Laurent series domain from a univariate Taylor series domain. Univariate Laurent series are represented by a pair \\spad{[n,{}f(x)]},{} where \\spad{n} is an arbitrary integer and \\spad{f(x)} is a Taylor series. This pair represents the Laurent series \\spad{x**n * f(x)}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) (-4242 . T) (-4243 . T) (-4245 . T))
-((-3255 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -263) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -484) (QUOTE (-1087)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-759)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-786)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-840)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-949)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-1063)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499))))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-1087)))))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (-3255 (|HasCategory| |#1| (QUOTE (-134))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-134))))) (-3255 (|HasCategory| |#1| (QUOTE (-136))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-136))))) (-3255 (-12 (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-523)) (|devaluate| |#1|))))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-211)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-523)) (|devaluate| |#1|))))) (|HasCategory| (-523) (QUOTE (-1028))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-339))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-840)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-1087))))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499))))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-949)))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-759)))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-759)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-786))))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523))))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-1063)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -263) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -484) (QUOTE (-1087)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523))))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523)))))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355)))))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-523))))) (|HasSignature| |#1| (LIST (QUOTE -3976) (LIST (|devaluate| |#1|) (QUOTE (-1087)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-523))))) (-3255 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-889))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasSignature| |#1| (LIST (QUOTE -2669) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1087))))) (|HasSignature| |#1| (LIST (QUOTE -3716) (LIST (LIST (QUOTE -589) (QUOTE (-1087))) (|devaluate| |#1|)))))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-786)))) (|HasCategory| |#2| (QUOTE (-840))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-508)))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-284)))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-134))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-840)))) (|HasCategory| |#1| (QUOTE (-134))) (-12 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-134))))))
-(-1133 |Coef| |var| |cen|)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) (-4244 . T) (-4245 . T) (-4247 . T))
+((-3321 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -265) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -486) (QUOTE (-1089)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-761)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-788)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-842)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-951)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-1065)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501))))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-1089)))))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (-3321 (|HasCategory| |#1| (QUOTE (-136))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-136))))) (-3321 (|HasCategory| |#1| (QUOTE (-138))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-138))))) (-3321 (-12 (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-525)) (|devaluate| |#1|))))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-213)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-525)) (|devaluate| |#1|))))) (|HasCategory| (-525) (QUOTE (-1030))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-341))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-842)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-1089))))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501))))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-951)))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-761)))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-761)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-788))))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-1065)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -265) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -288) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -486) (QUOTE (-1089)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525)))))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357)))))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-525))))) (|HasSignature| |#1| (LIST (QUOTE -3022) (LIST (|devaluate| |#1|) (QUOTE (-1089)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-525))))) (-3321 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-891))) (|HasCategory| |#1| (QUOTE (-1111))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasSignature| |#1| (LIST (QUOTE -4141) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1089))))) (|HasSignature| |#1| (LIST (QUOTE -1507) (LIST (LIST (QUOTE -591) (QUOTE (-1089))) (|devaluate| |#1|)))))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-788)))) (|HasCategory| |#2| (QUOTE (-842))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-510)))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-286)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-842)))) (|HasCategory| |#1| (QUOTE (-136))) (-12 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-136))))))
+(-1135 |Coef| |var| |cen|)
((|constructor| (NIL "Dense Laurent series in one variable \\indented{2}{\\spadtype{UnivariateLaurentSeries} is a domain representing Laurent} \\indented{2}{series in one variable with coefficients in an arbitrary ring.\\space{2}The} \\indented{2}{parameters of the type specify the coefficient ring,{} the power series} \\indented{2}{variable,{} and the center of the power series expansion.\\space{2}For example,{}} \\indented{2}{\\spad{UnivariateLaurentSeries(Integer,{}x,{}3)} represents Laurent series in} \\indented{2}{\\spad{(x - 3)} with integer coefficients.}")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),{}x)} returns the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a Laurent series.")))
-(((-4250 "*") -3255 (-2819 (|has| |#1| (-339)) (|has| (-1161 |#1| |#2| |#3|) (-759))) (|has| |#1| (-158)) (-2819 (|has| |#1| (-339)) (|has| (-1161 |#1| |#2| |#3|) (-840)))) (-4241 -3255 (-2819 (|has| |#1| (-339)) (|has| (-1161 |#1| |#2| |#3|) (-759))) (|has| |#1| (-515)) (-2819 (|has| |#1| (-339)) (|has| (-1161 |#1| |#2| |#3|) (-840)))) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) (-4242 . T) (-4243 . T) (-4245 . T))
-((-3255 (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-759))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-840))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-949))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-1063))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -263) (LIST (QUOTE -1161) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1161) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -286) (LIST (QUOTE -1161) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -484) (QUOTE (-1087)) (LIST (QUOTE -1161) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -964) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (-3255 (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (QUOTE (-134)))) (-3255 (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (QUOTE (-136)))) (-3255 (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-523)) (|devaluate| |#1|)))))) (-3255 (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-211))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-523)) (|devaluate| |#1|))))) (|HasCategory| (-523) (QUOTE (-1028))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-339))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-840))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -964) (QUOTE (-1087)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-949))) (|HasCategory| |#1| (QUOTE (-339)))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-759))) (|HasCategory| |#1| (QUOTE (-339)))) (-3255 (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-759))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-339))))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-1063))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -263) (LIST (QUOTE -1161) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1161) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -286) (LIST (QUOTE -1161) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -484) (QUOTE (-1087)) (LIST (QUOTE -1161) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-523))))) (|HasSignature| |#1| (LIST (QUOTE -3976) (LIST (|devaluate| |#1|) (QUOTE (-1087)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-523))))) (-3255 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-889))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasSignature| |#1| (LIST (QUOTE -2669) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1087))))) (|HasSignature| |#1| (LIST (QUOTE -3716) (LIST (LIST (QUOTE -589) (QUOTE (-1087))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-508))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-284))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-840))) (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-134))) (-3255 (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-759))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-840))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (QUOTE (-515)))) (-3255 (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523)))))) (-3255 (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-759))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-840))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (QUOTE (-158)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-840))) (|HasCategory| |#1| (QUOTE (-339)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-840))) (|HasCategory| |#1| (QUOTE (-339)))) (-12 (|HasCategory| (-1161 |#1| |#2| |#3|) (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-339)))) (|HasCategory| |#1| (QUOTE (-134)))))
-(-1134 ZP)
+(((-4252 "*") -3321 (-1213 (|has| |#1| (-341)) (|has| (-1163 |#1| |#2| |#3|) (-761))) (|has| |#1| (-160)) (-1213 (|has| |#1| (-341)) (|has| (-1163 |#1| |#2| |#3|) (-842)))) (-4243 -3321 (-1213 (|has| |#1| (-341)) (|has| (-1163 |#1| |#2| |#3|) (-761))) (|has| |#1| (-517)) (-1213 (|has| |#1| (-341)) (|has| (-1163 |#1| |#2| |#3|) (-842)))) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) (-4244 . T) (-4245 . T) (-4247 . T))
+((-3321 (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-761))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-842))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-951))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-1065))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -265) (LIST (QUOTE -1163) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1163) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -288) (LIST (QUOTE -1163) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -486) (QUOTE (-1089)) (LIST (QUOTE -1163) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -966) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (-3321 (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (QUOTE (-136)))) (-3321 (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-138))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (QUOTE (-138)))) (-3321 (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-525)) (|devaluate| |#1|)))))) (-3321 (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-213))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-525)) (|devaluate| |#1|))))) (|HasCategory| (-525) (QUOTE (-1030))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-341))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-842))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -966) (QUOTE (-1089)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-951))) (|HasCategory| |#1| (QUOTE (-341)))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-761))) (|HasCategory| |#1| (QUOTE (-341)))) (-3321 (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-761))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-341))))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-1065))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -265) (LIST (QUOTE -1163) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1163) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -288) (LIST (QUOTE -1163) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -486) (QUOTE (-1089)) (LIST (QUOTE -1163) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-525))))) (|HasSignature| |#1| (LIST (QUOTE -3022) (LIST (|devaluate| |#1|) (QUOTE (-1089)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-525))))) (-3321 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-891))) (|HasCategory| |#1| (QUOTE (-1111))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasSignature| |#1| (LIST (QUOTE -4141) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1089))))) (|HasSignature| |#1| (LIST (QUOTE -1507) (LIST (LIST (QUOTE -591) (QUOTE (-1089))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-510))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-286))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-842))) (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-136))) (-3321 (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-761))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-842))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (QUOTE (-517)))) (-3321 (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525)))))) (-3321 (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-761))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-842))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (QUOTE (-160)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-842))) (|HasCategory| |#1| (QUOTE (-341)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-842))) (|HasCategory| |#1| (QUOTE (-341)))) (-12 (|HasCategory| (-1163 |#1| |#2| |#3|) (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-341)))) (|HasCategory| |#1| (QUOTE (-136)))))
+(-1136 ZP)
((|constructor| (NIL "Package for the factorization of univariate polynomials with integer coefficients. The factorization is done by \"lifting\" (HENSEL) the factorization over a finite field.")) (|henselFact| (((|Record| (|:| |contp| (|Integer|)) (|:| |factors| (|List| (|Record| (|:| |irr| |#1|) (|:| |pow| (|Integer|)))))) |#1| (|Boolean|)) "\\spad{henselFact(m,{}flag)} returns the factorization of \\spad{m},{} FinalFact is a Record \\spad{s}.\\spad{t}. FinalFact.contp=content \\spad{m},{} FinalFact.factors=List of irreducible factors of \\spad{m} with exponent ,{} if \\spad{flag} =true the polynomial is assumed square free.")) (|factorSquareFree| (((|Factored| |#1|) |#1|) "\\spad{factorSquareFree(m)} returns the factorization of \\spad{m} square free polynomial")) (|factor| (((|Factored| |#1|) |#1|) "\\spad{factor(m)} returns the factorization of \\spad{m}")))
NIL
NIL
-(-1135 R S)
+(-1137 R S)
((|constructor| (NIL "This package provides operations for mapping functions onto segments.")) (|map| (((|Stream| |#2|) (|Mapping| |#2| |#1|) (|UniversalSegment| |#1|)) "\\spad{map(f,{}s)} expands the segment \\spad{s},{} applying \\spad{f} to each value.") (((|UniversalSegment| |#2|) (|Mapping| |#2| |#1|) (|UniversalSegment| |#1|)) "\\spad{map(f,{}seg)} returns the new segment obtained by applying \\spad{f} to the endpoints of \\spad{seg}.")))
NIL
-((|HasCategory| |#1| (QUOTE (-784))))
-(-1136 S)
+((|HasCategory| |#1| (QUOTE (-786))))
+(-1138 S)
((|constructor| (NIL "This domain provides segments which may be half open. That is,{} ranges of the form \\spad{a..} or \\spad{a..b}.")) (|hasHi| (((|Boolean|) $) "\\spad{hasHi(s)} tests whether the segment \\spad{s} has an upper bound.")) (|coerce| (($ (|Segment| |#1|)) "\\spad{coerce(x)} allows \\spadtype{Segment} values to be used as \\%.")) (|segment| (($ |#1|) "\\spad{segment(l)} is an alternate way to construct the segment \\spad{l..}.")) (SEGMENT (($ |#1|) "\\spad{l..} produces a half open segment,{} that is,{} one with no upper bound.")))
NIL
-((|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1016))))
-(-1137 |x| R |y| S)
+((|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1018))))
+(-1139 |x| R |y| S)
((|constructor| (NIL "This package lifts a mapping from coefficient rings \\spad{R} to \\spad{S} to a mapping from \\spadtype{UnivariatePolynomial}(\\spad{x},{}\\spad{R}) to \\spadtype{UnivariatePolynomial}(\\spad{y},{}\\spad{S}). Note that the mapping is assumed to send zero to zero,{} since it will only be applied to the non-zero coefficients of the polynomial.")) (|map| (((|UnivariatePolynomial| |#3| |#4|) (|Mapping| |#4| |#2|) (|UnivariatePolynomial| |#1| |#2|)) "\\spad{map(func,{} poly)} creates a new polynomial by applying \\spad{func} to every non-zero coefficient of the polynomial poly.")))
NIL
NIL
-(-1138 R Q UP)
+(-1140 R Q UP)
((|constructor| (NIL "UnivariatePolynomialCommonDenominator provides functions to compute the common denominator of the coefficients of univariate polynomials over the quotient field of a \\spad{gcd} domain.")) (|splitDenominator| (((|Record| (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) "\\spad{splitDenominator(q)} returns \\spad{[p,{} d]} such that \\spad{q = p/d} and \\spad{d} is a common denominator for the coefficients of \\spad{q}.")) (|clearDenominator| ((|#3| |#3|) "\\spad{clearDenominator(q)} returns \\spad{p} such that \\spad{q = p/d} where \\spad{d} is a common denominator for the coefficients of \\spad{q}.")) (|commonDenominator| ((|#1| |#3|) "\\spad{commonDenominator(q)} returns a common denominator \\spad{d} for the coefficients of \\spad{q}.")))
NIL
NIL
-(-1139 R UP)
+(-1141 R UP)
((|constructor| (NIL "UnivariatePolynomialDecompositionPackage implements functional decomposition of univariate polynomial with coefficients in an \\spad{IntegralDomain} of \\spad{CharacteristicZero}.")) (|monicCompleteDecompose| (((|List| |#2|) |#2|) "\\spad{monicCompleteDecompose(f)} returns a list of factors of \\spad{f} for the functional decomposition ([ \\spad{f1},{} ...,{} \\spad{fn} ] means \\spad{f} = \\spad{f1} \\spad{o} ... \\spad{o} \\spad{fn}).")) (|monicDecomposeIfCan| (((|Union| (|Record| (|:| |left| |#2|) (|:| |right| |#2|)) "failed") |#2|) "\\spad{monicDecomposeIfCan(f)} returns a functional decomposition of the monic polynomial \\spad{f} of \"failed\" if it has not found any.")) (|leftFactorIfCan| (((|Union| |#2| "failed") |#2| |#2|) "\\spad{leftFactorIfCan(f,{}h)} returns the left factor (\\spad{g} in \\spad{f} = \\spad{g} \\spad{o} \\spad{h}) of the functional decomposition of the polynomial \\spad{f} with given \\spad{h} or \\spad{\"failed\"} if \\spad{g} does not exist.")) (|rightFactorIfCan| (((|Union| |#2| "failed") |#2| (|NonNegativeInteger|) |#1|) "\\spad{rightFactorIfCan(f,{}d,{}c)} returns a candidate to be the right factor (\\spad{h} in \\spad{f} = \\spad{g} \\spad{o} \\spad{h}) of degree \\spad{d} with leading coefficient \\spad{c} of a functional decomposition of the polynomial \\spad{f} or \\spad{\"failed\"} if no such candidate.")) (|monicRightFactorIfCan| (((|Union| |#2| "failed") |#2| (|NonNegativeInteger|)) "\\spad{monicRightFactorIfCan(f,{}d)} returns a candidate to be the monic right factor (\\spad{h} in \\spad{f} = \\spad{g} \\spad{o} \\spad{h}) of degree \\spad{d} of a functional decomposition of the polynomial \\spad{f} or \\spad{\"failed\"} if no such candidate.")))
NIL
NIL
-(-1140 R UP)
+(-1142 R UP)
((|constructor| (NIL "UnivariatePolynomialDivisionPackage provides a division for non monic univarite polynomials with coefficients in an \\spad{IntegralDomain}.")) (|divideIfCan| (((|Union| (|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) "failed") |#2| |#2|) "\\spad{divideIfCan(f,{}g)} returns quotient and remainder of the division of \\spad{f} by \\spad{g} or \"failed\" if it has not succeeded.")))
NIL
NIL
-(-1141 R U)
+(-1143 R U)
((|constructor| (NIL "This package implements Karatsuba\\spad{'s} trick for multiplying (large) univariate polynomials. It could be improved with a version doing the work on place and also with a special case for squares. We've done this in Basicmath,{} but we believe that this out of the scope of AXIOM.")) (|karatsuba| ((|#2| |#2| |#2| (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{karatsuba(a,{}b,{}l,{}k)} returns \\spad{a*b} by applying Karatsuba\\spad{'s} trick provided that both \\spad{a} and \\spad{b} have at least \\spad{l} terms and \\spad{k > 0} holds and by calling \\spad{noKaratsuba} otherwise. The other multiplications are performed by recursive calls with the same third argument and \\spad{k-1} as fourth argument.")) (|karatsubaOnce| ((|#2| |#2| |#2|) "\\spad{karatsuba(a,{}b)} returns \\spad{a*b} by applying Karatsuba\\spad{'s} trick once. The other multiplications are performed by calling \\spad{*} from \\spad{U}.")) (|noKaratsuba| ((|#2| |#2| |#2|) "\\spad{noKaratsuba(a,{}b)} returns \\spad{a*b} without using Karatsuba\\spad{'s} trick at all.")))
NIL
NIL
-(-1142 |x| R)
+(-1144 |x| R)
((|constructor| (NIL "This domain represents univariate polynomials in some symbol over arbitrary (not necessarily commutative) coefficient rings. The representation is sparse in the sense that only non-zero terms are represented.")) (|fmecg| (($ $ (|NonNegativeInteger|) |#2| $) "\\spad{fmecg(p1,{}e,{}r,{}p2)} finds \\spad{X} : \\spad{p1} - \\spad{r} * X**e * \\spad{p2}")) (|coerce| (($ (|Variable| |#1|)) "\\spad{coerce(x)} converts the variable \\spad{x} to a univariate polynomial.")))
-(((-4250 "*") |has| |#2| (-158)) (-4241 |has| |#2| (-515)) (-4244 |has| |#2| (-339)) (-4246 |has| |#2| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#2| (QUOTE (-840))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-158))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-515)))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -817) (QUOTE (-355)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-355))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -817) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -817) (QUOTE (-523))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-355)))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -564) (LIST (QUOTE -823) (QUOTE (-523)))))) (-12 (|HasCategory| (-1001) (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#2| (LIST (QUOTE -564) (QUOTE (-499))))) (|HasCategory| |#2| (QUOTE (-786))) (|HasCategory| |#2| (LIST (QUOTE -585) (QUOTE (-523)))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-134))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (-3255 (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-840)))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-1063))) (|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (-3255 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasCategory| |#2| (QUOTE (-211))) (|HasAttribute| |#2| (QUOTE -4246)) (|HasCategory| |#2| (QUOTE (-427))) (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-840)))) (-3255 (-12 (|HasCategory| $ (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-840)))) (|HasCategory| |#2| (QUOTE (-134)))))
-(-1143 R PR S PS)
+(((-4252 "*") |has| |#2| (-160)) (-4243 |has| |#2| (-517)) (-4246 |has| |#2| (-341)) (-4248 |has| |#2| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#2| (QUOTE (-842))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-160))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-517)))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -819) (QUOTE (-357)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-357))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -819) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -819) (QUOTE (-525))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-357)))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -566) (LIST (QUOTE -825) (QUOTE (-525)))))) (-12 (|HasCategory| (-1003) (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#2| (LIST (QUOTE -566) (QUOTE (-501))))) (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -587) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-138))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (-3321 (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-842)))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-1065))) (|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (-3321 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasCategory| |#2| (QUOTE (-213))) (|HasAttribute| |#2| (QUOTE -4248)) (|HasCategory| |#2| (QUOTE (-429))) (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-842)))) (-3321 (-12 (|HasCategory| $ (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-842)))) (|HasCategory| |#2| (QUOTE (-136)))))
+(-1145 R PR S PS)
((|constructor| (NIL "Mapping from polynomials over \\spad{R} to polynomials over \\spad{S} given a map from \\spad{R} to \\spad{S} assumed to send zero to zero.")) (|map| ((|#4| (|Mapping| |#3| |#1|) |#2|) "\\spad{map(f,{} p)} takes a function \\spad{f} from \\spad{R} to \\spad{S},{} and applies it to each (non-zero) coefficient of a polynomial \\spad{p} over \\spad{R},{} getting a new polynomial over \\spad{S}. Note: since the map is not applied to zero elements,{} it may map zero to zero.")))
NIL
NIL
-(-1144 S R)
+(-1146 S R)
((|constructor| (NIL "The category of univariate polynomials over a ring \\spad{R}. No particular model is assumed - implementations can be either sparse or dense.")) (|integrate| (($ $) "\\spad{integrate(p)} integrates the univariate polynomial \\spad{p} with respect to its distinguished variable.")) (|additiveValuation| ((|attribute|) "euclideanSize(a*b) = euclideanSize(a) + euclideanSize(\\spad{b})")) (|separate| (((|Record| (|:| |primePart| $) (|:| |commonPart| $)) $ $) "\\spad{separate(p,{} q)} returns \\spad{[a,{} b]} such that polynomial \\spad{p = a b} and \\spad{a} is relatively prime to \\spad{q}.")) (|pseudoDivide| (((|Record| (|:| |coef| |#2|) (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{pseudoDivide(p,{}q)} returns \\spad{[c,{} q,{} r]},{} when \\spad{p' := p*lc(q)**(deg p - deg q + 1) = c * p} is pseudo right-divided by \\spad{q},{} \\spadignore{i.e.} \\spad{p' = s q + r}.")) (|pseudoQuotient| (($ $ $) "\\spad{pseudoQuotient(p,{}q)} returns \\spad{r},{} the quotient when \\spad{p' := p*lc(q)**(deg p - deg q + 1)} is pseudo right-divided by \\spad{q},{} \\spadignore{i.e.} \\spad{p' = s q + r}.")) (|composite| (((|Union| (|Fraction| $) "failed") (|Fraction| $) $) "\\spad{composite(f,{} q)} returns \\spad{h} if \\spad{f} = \\spad{h}(\\spad{q}),{} and \"failed\" is no such \\spad{h} exists.") (((|Union| $ "failed") $ $) "\\spad{composite(p,{} q)} returns \\spad{h} if \\spad{p = h(q)},{} and \"failed\" no such \\spad{h} exists.")) (|subResultantGcd| (($ $ $) "\\spad{subResultantGcd(p,{}q)} computes the \\spad{gcd} of the polynomials \\spad{p} and \\spad{q} using the SubResultant \\spad{GCD} algorithm.")) (|order| (((|NonNegativeInteger|) $ $) "\\spad{order(p,{} q)} returns the largest \\spad{n} such that \\spad{q**n} divides polynomial \\spad{p} \\spadignore{i.e.} the order of \\spad{p(x)} at \\spad{q(x)=0}.")) (|elt| ((|#2| (|Fraction| $) |#2|) "\\spad{elt(a,{}r)} evaluates the fraction of univariate polynomials \\spad{a} with the distinguished variable replaced by the constant \\spad{r}.") (((|Fraction| $) (|Fraction| $) (|Fraction| $)) "\\spad{elt(a,{}b)} evaluates the fraction of univariate polynomials \\spad{a} with the distinguished variable replaced by \\spad{b}.")) (|resultant| ((|#2| $ $) "\\spad{resultant(p,{}q)} returns the resultant of the polynomials \\spad{p} and \\spad{q}.")) (|discriminant| ((|#2| $) "\\spad{discriminant(p)} returns the discriminant of the polynomial \\spad{p}.")) (|differentiate| (($ $ (|Mapping| |#2| |#2|) $) "\\spad{differentiate(p,{} d,{} x')} extends the \\spad{R}-derivation \\spad{d} to an extension \\spad{D} in \\spad{R[x]} where \\spad{Dx} is given by \\spad{x'},{} and returns \\spad{Dp}.")) (|pseudoRemainder| (($ $ $) "\\spad{pseudoRemainder(p,{}q)} = \\spad{r},{} for polynomials \\spad{p} and \\spad{q},{} returns the remainder when \\spad{p' := p*lc(q)**(deg p - deg q + 1)} is pseudo right-divided by \\spad{q},{} \\spadignore{i.e.} \\spad{p' = s q + r}.")) (|shiftLeft| (($ $ (|NonNegativeInteger|)) "\\spad{shiftLeft(p,{}n)} returns \\spad{p * monomial(1,{}n)}")) (|shiftRight| (($ $ (|NonNegativeInteger|)) "\\spad{shiftRight(p,{}n)} returns \\spad{monicDivide(p,{}monomial(1,{}n)).quotient}")) (|karatsubaDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ (|NonNegativeInteger|)) "\\spad{karatsubaDivide(p,{}n)} returns the same as \\spad{monicDivide(p,{}monomial(1,{}n))}")) (|monicDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{monicDivide(p,{}q)} divide the polynomial \\spad{p} by the monic polynomial \\spad{q},{} returning the pair \\spad{[quotient,{} remainder]}. Error: if \\spad{q} isn\\spad{'t} monic.")) (|divideExponents| (((|Union| $ "failed") $ (|NonNegativeInteger|)) "\\spad{divideExponents(p,{}n)} returns a new polynomial resulting from dividing all exponents of the polynomial \\spad{p} by the non negative integer \\spad{n},{} or \"failed\" if some exponent is not exactly divisible by \\spad{n}.")) (|multiplyExponents| (($ $ (|NonNegativeInteger|)) "\\spad{multiplyExponents(p,{}n)} returns a new polynomial resulting from multiplying all exponents of the polynomial \\spad{p} by the non negative integer \\spad{n}.")) (|unmakeSUP| (($ (|SparseUnivariatePolynomial| |#2|)) "\\spad{unmakeSUP(sup)} converts \\spad{sup} of type \\spadtype{SparseUnivariatePolynomial(R)} to be a member of the given type. Note: converse of makeSUP.")) (|makeSUP| (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{makeSUP(p)} converts the polynomial \\spad{p} to be of type SparseUnivariatePolynomial over the same coefficients.")) (|vectorise| (((|Vector| |#2|) $ (|NonNegativeInteger|)) "\\spad{vectorise(p,{} n)} returns \\spad{[a0,{}...,{}a(n-1)]} where \\spad{p = a0 + a1*x + ... + a(n-1)*x**(n-1)} + higher order terms. The degree of polynomial \\spad{p} can be different from \\spad{n-1}.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-339))) (|HasCategory| |#2| (QUOTE (-427))) (|HasCategory| |#2| (QUOTE (-515))) (|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (QUOTE (-1063))))
-(-1145 R)
+((|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-341))) (|HasCategory| |#2| (QUOTE (-429))) (|HasCategory| |#2| (QUOTE (-517))) (|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (QUOTE (-1065))))
+(-1147 R)
((|constructor| (NIL "The category of univariate polynomials over a ring \\spad{R}. No particular model is assumed - implementations can be either sparse or dense.")) (|integrate| (($ $) "\\spad{integrate(p)} integrates the univariate polynomial \\spad{p} with respect to its distinguished variable.")) (|additiveValuation| ((|attribute|) "euclideanSize(a*b) = euclideanSize(a) + euclideanSize(\\spad{b})")) (|separate| (((|Record| (|:| |primePart| $) (|:| |commonPart| $)) $ $) "\\spad{separate(p,{} q)} returns \\spad{[a,{} b]} such that polynomial \\spad{p = a b} and \\spad{a} is relatively prime to \\spad{q}.")) (|pseudoDivide| (((|Record| (|:| |coef| |#1|) (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{pseudoDivide(p,{}q)} returns \\spad{[c,{} q,{} r]},{} when \\spad{p' := p*lc(q)**(deg p - deg q + 1) = c * p} is pseudo right-divided by \\spad{q},{} \\spadignore{i.e.} \\spad{p' = s q + r}.")) (|pseudoQuotient| (($ $ $) "\\spad{pseudoQuotient(p,{}q)} returns \\spad{r},{} the quotient when \\spad{p' := p*lc(q)**(deg p - deg q + 1)} is pseudo right-divided by \\spad{q},{} \\spadignore{i.e.} \\spad{p' = s q + r}.")) (|composite| (((|Union| (|Fraction| $) "failed") (|Fraction| $) $) "\\spad{composite(f,{} q)} returns \\spad{h} if \\spad{f} = \\spad{h}(\\spad{q}),{} and \"failed\" is no such \\spad{h} exists.") (((|Union| $ "failed") $ $) "\\spad{composite(p,{} q)} returns \\spad{h} if \\spad{p = h(q)},{} and \"failed\" no such \\spad{h} exists.")) (|subResultantGcd| (($ $ $) "\\spad{subResultantGcd(p,{}q)} computes the \\spad{gcd} of the polynomials \\spad{p} and \\spad{q} using the SubResultant \\spad{GCD} algorithm.")) (|order| (((|NonNegativeInteger|) $ $) "\\spad{order(p,{} q)} returns the largest \\spad{n} such that \\spad{q**n} divides polynomial \\spad{p} \\spadignore{i.e.} the order of \\spad{p(x)} at \\spad{q(x)=0}.")) (|elt| ((|#1| (|Fraction| $) |#1|) "\\spad{elt(a,{}r)} evaluates the fraction of univariate polynomials \\spad{a} with the distinguished variable replaced by the constant \\spad{r}.") (((|Fraction| $) (|Fraction| $) (|Fraction| $)) "\\spad{elt(a,{}b)} evaluates the fraction of univariate polynomials \\spad{a} with the distinguished variable replaced by \\spad{b}.")) (|resultant| ((|#1| $ $) "\\spad{resultant(p,{}q)} returns the resultant of the polynomials \\spad{p} and \\spad{q}.")) (|discriminant| ((|#1| $) "\\spad{discriminant(p)} returns the discriminant of the polynomial \\spad{p}.")) (|differentiate| (($ $ (|Mapping| |#1| |#1|) $) "\\spad{differentiate(p,{} d,{} x')} extends the \\spad{R}-derivation \\spad{d} to an extension \\spad{D} in \\spad{R[x]} where \\spad{Dx} is given by \\spad{x'},{} and returns \\spad{Dp}.")) (|pseudoRemainder| (($ $ $) "\\spad{pseudoRemainder(p,{}q)} = \\spad{r},{} for polynomials \\spad{p} and \\spad{q},{} returns the remainder when \\spad{p' := p*lc(q)**(deg p - deg q + 1)} is pseudo right-divided by \\spad{q},{} \\spadignore{i.e.} \\spad{p' = s q + r}.")) (|shiftLeft| (($ $ (|NonNegativeInteger|)) "\\spad{shiftLeft(p,{}n)} returns \\spad{p * monomial(1,{}n)}")) (|shiftRight| (($ $ (|NonNegativeInteger|)) "\\spad{shiftRight(p,{}n)} returns \\spad{monicDivide(p,{}monomial(1,{}n)).quotient}")) (|karatsubaDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ (|NonNegativeInteger|)) "\\spad{karatsubaDivide(p,{}n)} returns the same as \\spad{monicDivide(p,{}monomial(1,{}n))}")) (|monicDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{monicDivide(p,{}q)} divide the polynomial \\spad{p} by the monic polynomial \\spad{q},{} returning the pair \\spad{[quotient,{} remainder]}. Error: if \\spad{q} isn\\spad{'t} monic.")) (|divideExponents| (((|Union| $ "failed") $ (|NonNegativeInteger|)) "\\spad{divideExponents(p,{}n)} returns a new polynomial resulting from dividing all exponents of the polynomial \\spad{p} by the non negative integer \\spad{n},{} or \"failed\" if some exponent is not exactly divisible by \\spad{n}.")) (|multiplyExponents| (($ $ (|NonNegativeInteger|)) "\\spad{multiplyExponents(p,{}n)} returns a new polynomial resulting from multiplying all exponents of the polynomial \\spad{p} by the non negative integer \\spad{n}.")) (|unmakeSUP| (($ (|SparseUnivariatePolynomial| |#1|)) "\\spad{unmakeSUP(sup)} converts \\spad{sup} of type \\spadtype{SparseUnivariatePolynomial(R)} to be a member of the given type. Note: converse of makeSUP.")) (|makeSUP| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{makeSUP(p)} converts the polynomial \\spad{p} to be of type SparseUnivariatePolynomial over the same coefficients.")) (|vectorise| (((|Vector| |#1|) $ (|NonNegativeInteger|)) "\\spad{vectorise(p,{} n)} returns \\spad{[a0,{}...,{}a(n-1)]} where \\spad{p = a0 + a1*x + ... + a(n-1)*x**(n-1)} + higher order terms. The degree of polynomial \\spad{p} can be different from \\spad{n-1}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4244 |has| |#1| (-339)) (-4246 |has| |#1| (-6 -4246)) (-4243 . T) (-4242 . T) (-4245 . T))
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4246 |has| |#1| (-341)) (-4248 |has| |#1| (-6 -4248)) (-4245 . T) (-4244 . T) (-4247 . T))
NIL
-(-1146 S |Coef| |Expon|)
+(-1148 S |Coef| |Expon|)
((|constructor| (NIL "\\spadtype{UnivariatePowerSeriesCategory} is the most general univariate power series category with exponents in an ordered abelian monoid. Note: this category exports a substitution function if it is possible to multiply exponents. Note: this category exports a derivative operation if it is possible to multiply coefficients by exponents.")) (|eval| (((|Stream| |#2|) $ |#2|) "\\spad{eval(f,{}a)} evaluates a power series at a value in the ground ring by returning a stream of partial sums.")) (|extend| (($ $ |#3|) "\\spad{extend(f,{}n)} causes all terms of \\spad{f} of degree \\spad{<=} \\spad{n} to be computed.")) (|approximate| ((|#2| $ |#3|) "\\spad{approximate(f)} returns a truncated power series with the series variable viewed as an element of the coefficient domain.")) (|truncate| (($ $ |#3| |#3|) "\\spad{truncate(f,{}k1,{}k2)} returns a (finite) power series consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (($ $ |#3|) "\\spad{truncate(f,{}k)} returns a (finite) power series consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.")) (|order| ((|#3| $ |#3|) "\\spad{order(f,{}n) = min(m,{}n)},{} where \\spad{m} is the degree of the lowest order non-zero term in \\spad{f}.") ((|#3| $) "\\spad{order(f)} is the degree of the lowest order non-zero term in \\spad{f}. This will result in an infinite loop if \\spad{f} has no non-zero terms.")) (|multiplyExponents| (($ $ (|PositiveInteger|)) "\\spad{multiplyExponents(f,{}n)} multiplies all exponents of the power series \\spad{f} by the positive integer \\spad{n}.")) (|center| ((|#2| $) "\\spad{center(f)} returns the point about which the series \\spad{f} is expanded.")) (|variable| (((|Symbol|) $) "\\spad{variable(f)} returns the (unique) power series variable of the power series \\spad{f}.")) (|elt| ((|#2| $ |#3|) "\\spad{elt(f(x),{}r)} returns the coefficient of the term of degree \\spad{r} in \\spad{f(x)}. This is the same as the function \\spadfun{coefficient}.")) (|terms| (((|Stream| (|Record| (|:| |k| |#3|) (|:| |c| |#2|))) $) "\\spad{terms(f(x))} returns a stream of non-zero terms,{} where a a term is an exponent-coefficient pair. The terms in the stream are ordered by increasing order of exponents.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasSignature| |#2| (LIST (QUOTE *) (LIST (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#2|)))) (|HasCategory| |#3| (QUOTE (-1028))) (|HasSignature| |#2| (LIST (QUOTE **) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasSignature| |#2| (LIST (QUOTE -3976) (LIST (|devaluate| |#2|) (QUOTE (-1087))))))
-(-1147 |Coef| |Expon|)
+((|HasCategory| |#2| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasSignature| |#2| (LIST (QUOTE *) (LIST (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#2|)))) (|HasCategory| |#3| (QUOTE (-1030))) (|HasSignature| |#2| (LIST (QUOTE **) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasSignature| |#2| (LIST (QUOTE -3022) (LIST (|devaluate| |#2|) (QUOTE (-1089))))))
+(-1149 |Coef| |Expon|)
((|constructor| (NIL "\\spadtype{UnivariatePowerSeriesCategory} is the most general univariate power series category with exponents in an ordered abelian monoid. Note: this category exports a substitution function if it is possible to multiply exponents. Note: this category exports a derivative operation if it is possible to multiply coefficients by exponents.")) (|eval| (((|Stream| |#1|) $ |#1|) "\\spad{eval(f,{}a)} evaluates a power series at a value in the ground ring by returning a stream of partial sums.")) (|extend| (($ $ |#2|) "\\spad{extend(f,{}n)} causes all terms of \\spad{f} of degree \\spad{<=} \\spad{n} to be computed.")) (|approximate| ((|#1| $ |#2|) "\\spad{approximate(f)} returns a truncated power series with the series variable viewed as an element of the coefficient domain.")) (|truncate| (($ $ |#2| |#2|) "\\spad{truncate(f,{}k1,{}k2)} returns a (finite) power series consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (($ $ |#2|) "\\spad{truncate(f,{}k)} returns a (finite) power series consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.")) (|order| ((|#2| $ |#2|) "\\spad{order(f,{}n) = min(m,{}n)},{} where \\spad{m} is the degree of the lowest order non-zero term in \\spad{f}.") ((|#2| $) "\\spad{order(f)} is the degree of the lowest order non-zero term in \\spad{f}. This will result in an infinite loop if \\spad{f} has no non-zero terms.")) (|multiplyExponents| (($ $ (|PositiveInteger|)) "\\spad{multiplyExponents(f,{}n)} multiplies all exponents of the power series \\spad{f} by the positive integer \\spad{n}.")) (|center| ((|#1| $) "\\spad{center(f)} returns the point about which the series \\spad{f} is expanded.")) (|variable| (((|Symbol|) $) "\\spad{variable(f)} returns the (unique) power series variable of the power series \\spad{f}.")) (|elt| ((|#1| $ |#2|) "\\spad{elt(f(x),{}r)} returns the coefficient of the term of degree \\spad{r} in \\spad{f(x)}. This is the same as the function \\spadfun{coefficient}.")) (|terms| (((|Stream| (|Record| (|:| |k| |#2|) (|:| |c| |#1|))) $) "\\spad{terms(f(x))} returns a stream of non-zero terms,{} where a a term is an exponent-coefficient pair. The terms in the stream are ordered by increasing order of exponents.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4242 . T) (-4243 . T) (-4245 . T))
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-1148 RC P)
+(-1150 RC P)
((|constructor| (NIL "This package provides for square-free decomposition of univariate polynomials over arbitrary rings,{} \\spadignore{i.e.} a partial factorization such that each factor is a product of irreducibles with multiplicity one and the factors are pairwise relatively prime. If the ring has characteristic zero,{} the result is guaranteed to satisfy this condition. If the ring is an infinite ring of finite characteristic,{} then it may not be possible to decide when polynomials contain factors which are \\spad{p}th powers. In this case,{} the flag associated with that polynomial is set to \"nil\" (meaning that that polynomials are not guaranteed to be square-free).")) (|BumInSepFFE| (((|Record| (|:| |flg| (|Union| "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (|Integer|))) (|Record| (|:| |flg| (|Union| "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (|Integer|)))) "\\spad{BumInSepFFE(f)} is a local function,{} exported only because it has multiple conditional definitions.")) (|squareFreePart| ((|#2| |#2|) "\\spad{squareFreePart(p)} returns a polynomial which has the same irreducible factors as the univariate polynomial \\spad{p},{} but each factor has multiplicity one.")) (|squareFree| (((|Factored| |#2|) |#2|) "\\spad{squareFree(p)} computes the square-free factorization of the univariate polynomial \\spad{p}. Each factor has no repeated roots,{} and the factors are pairwise relatively prime.")) (|gcd| (($ $ $) "\\spad{gcd(p,{}q)} computes the greatest-common-divisor of \\spad{p} and \\spad{q}.")))
NIL
NIL
-(-1149 |Coef1| |Coef2| |var1| |var2| |cen1| |cen2|)
+(-1151 |Coef1| |Coef2| |var1| |var2| |cen1| |cen2|)
((|constructor| (NIL "Mapping package for univariate Puiseux series. This package allows one to apply a function to the coefficients of a univariate Puiseux series.")) (|map| (((|UnivariatePuiseuxSeries| |#2| |#4| |#6|) (|Mapping| |#2| |#1|) (|UnivariatePuiseuxSeries| |#1| |#3| |#5|)) "\\spad{map(f,{}g(x))} applies the map \\spad{f} to the coefficients of the Puiseux series \\spad{g(x)}.")))
NIL
NIL
-(-1150 |Coef|)
+(-1152 |Coef|)
((|constructor| (NIL "\\spadtype{UnivariatePuiseuxSeriesCategory} is the category of Puiseux series in one variable.")) (|integrate| (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}var)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{var}.") (($ $) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 1. We may integrate a series when we can divide coefficients by rational numbers.")) (|multiplyExponents| (($ $ (|Fraction| (|Integer|))) "\\spad{multiplyExponents(f,{}r)} multiplies all exponents of the power series \\spad{f} by the positive rational number \\spad{r}.")) (|series| (($ (|NonNegativeInteger|) (|Stream| (|Record| (|:| |k| (|Fraction| (|Integer|))) (|:| |c| |#1|)))) "\\spad{series(n,{}st)} creates a series from a common denomiator and a stream of non-zero terms,{} where a term is an exponent-coefficient pair. The terms in the stream should be ordered by increasing order of exponents and \\spad{n} should be a common denominator for the exponents in the stream of terms.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) (-4242 . T) (-4243 . T) (-4245 . T))
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-1151 S |Coef| ULS)
+(-1153 S |Coef| ULS)
((|constructor| (NIL "This is a category of univariate Puiseux series constructed from univariate Laurent series. A Puiseux series is represented by a pair \\spad{[r,{}f(x)]},{} where \\spad{r} is a positive rational number and \\spad{f(x)} is a Laurent series. This pair represents the Puiseux series \\spad{f(x^r)}.")) (|laurentIfCan| (((|Union| |#3| "failed") $) "\\spad{laurentIfCan(f(x))} converts the Puiseux series \\spad{f(x)} to a Laurent series if possible. If this is not possible,{} \"failed\" is returned.")) (|laurent| ((|#3| $) "\\spad{laurent(f(x))} converts the Puiseux series \\spad{f(x)} to a Laurent series if possible. Error: if this is not possible.")) (|coerce| (($ |#3|) "\\spad{coerce(f(x))} converts the Laurent series \\spad{f(x)} to a Puiseux series.")) (|degree| (((|Fraction| (|Integer|)) $) "\\spad{degree(f(x))} returns the degree of the leading term of the Puiseux series \\spad{f(x)},{} which may have zero as a coefficient.")) (|laurentRep| ((|#3| $) "\\spad{laurentRep(f(x))} returns \\spad{g(x)} where the Puiseux series \\spad{f(x) = g(x^r)} is represented by \\spad{[r,{}g(x)]}.")) (|rationalPower| (((|Fraction| (|Integer|)) $) "\\spad{rationalPower(f(x))} returns \\spad{r} where the Puiseux series \\spad{f(x) = g(x^r)}.")) (|puiseux| (($ (|Fraction| (|Integer|)) |#3|) "\\spad{puiseux(r,{}f(x))} returns \\spad{f(x^r)}.")))
NIL
NIL
-(-1152 |Coef| ULS)
+(-1154 |Coef| ULS)
((|constructor| (NIL "This is a category of univariate Puiseux series constructed from univariate Laurent series. A Puiseux series is represented by a pair \\spad{[r,{}f(x)]},{} where \\spad{r} is a positive rational number and \\spad{f(x)} is a Laurent series. This pair represents the Puiseux series \\spad{f(x^r)}.")) (|laurentIfCan| (((|Union| |#2| "failed") $) "\\spad{laurentIfCan(f(x))} converts the Puiseux series \\spad{f(x)} to a Laurent series if possible. If this is not possible,{} \"failed\" is returned.")) (|laurent| ((|#2| $) "\\spad{laurent(f(x))} converts the Puiseux series \\spad{f(x)} to a Laurent series if possible. Error: if this is not possible.")) (|coerce| (($ |#2|) "\\spad{coerce(f(x))} converts the Laurent series \\spad{f(x)} to a Puiseux series.")) (|degree| (((|Fraction| (|Integer|)) $) "\\spad{degree(f(x))} returns the degree of the leading term of the Puiseux series \\spad{f(x)},{} which may have zero as a coefficient.")) (|laurentRep| ((|#2| $) "\\spad{laurentRep(f(x))} returns \\spad{g(x)} where the Puiseux series \\spad{f(x) = g(x^r)} is represented by \\spad{[r,{}g(x)]}.")) (|rationalPower| (((|Fraction| (|Integer|)) $) "\\spad{rationalPower(f(x))} returns \\spad{r} where the Puiseux series \\spad{f(x) = g(x^r)}.")) (|puiseux| (($ (|Fraction| (|Integer|)) |#2|) "\\spad{puiseux(r,{}f(x))} returns \\spad{f(x^r)}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) (-4242 . T) (-4243 . T) (-4245 . T))
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-1153 |Coef| ULS)
+(-1155 |Coef| ULS)
((|constructor| (NIL "This package enables one to construct a univariate Puiseux series domain from a univariate Laurent series domain. Univariate Puiseux series are represented by a pair \\spad{[r,{}f(x)]},{} where \\spad{r} is a positive rational number and \\spad{f(x)} is a Laurent series. This pair represents the Puiseux series \\spad{f(x^r)}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (-12 (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523))) (|devaluate| |#1|)))) (|HasCategory| (-383 (-523)) (QUOTE (-1028))) (|HasCategory| |#1| (QUOTE (-339))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasSignature| |#1| (LIST (QUOTE -3976) (LIST (|devaluate| |#1|) (QUOTE (-1087)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523)))))) (-3255 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-889))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasSignature| |#1| (LIST (QUOTE -2669) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1087))))) (|HasSignature| |#1| (LIST (QUOTE -3716) (LIST (LIST (QUOTE -589) (QUOTE (-1087))) (|devaluate| |#1|)))))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))))
-(-1154 |Coef| |var| |cen|)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (-12 (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525))) (|devaluate| |#1|)))) (|HasCategory| (-385 (-525)) (QUOTE (-1030))) (|HasCategory| |#1| (QUOTE (-341))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasSignature| |#1| (LIST (QUOTE -3022) (LIST (|devaluate| |#1|) (QUOTE (-1089)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525)))))) (-3321 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-891))) (|HasCategory| |#1| (QUOTE (-1111))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasSignature| |#1| (LIST (QUOTE -4141) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1089))))) (|HasSignature| |#1| (LIST (QUOTE -1507) (LIST (LIST (QUOTE -591) (QUOTE (-1089))) (|devaluate| |#1|)))))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))))
+(-1156 |Coef| |var| |cen|)
((|constructor| (NIL "Dense Puiseux series in one variable \\indented{2}{\\spadtype{UnivariatePuiseuxSeries} is a domain representing Puiseux} \\indented{2}{series in one variable with coefficients in an arbitrary ring.\\space{2}The} \\indented{2}{parameters of the type specify the coefficient ring,{} the power series} \\indented{2}{variable,{} and the center of the power series expansion.\\space{2}For example,{}} \\indented{2}{\\spad{UnivariatePuiseuxSeries(Integer,{}x,{}3)} represents Puiseux series in} \\indented{2}{\\spad{(x - 3)} with \\spadtype{Integer} coefficients.}")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),{}x)} returns the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a Puiseux series.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4246 |has| |#1| (-339)) (-4240 |has| |#1| (-339)) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#1| (QUOTE (-158))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (-12 (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523))) (|devaluate| |#1|)))) (|HasCategory| (-383 (-523)) (QUOTE (-1028))) (|HasCategory| |#1| (QUOTE (-339))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (-3255 (|HasCategory| |#1| (QUOTE (-339))) (|HasCategory| |#1| (QUOTE (-515)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasSignature| |#1| (LIST (QUOTE -3976) (LIST (|devaluate| |#1|) (QUOTE (-1087)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -383) (QUOTE (-523)))))) (-3255 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-889))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasSignature| |#1| (LIST (QUOTE -2669) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1087))))) (|HasSignature| |#1| (LIST (QUOTE -3716) (LIST (LIST (QUOTE -589) (QUOTE (-1087))) (|devaluate| |#1|)))))))
-(-1155 R FE |var| |cen|)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4248 |has| |#1| (-341)) (-4242 |has| |#1| (-341)) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#1| (QUOTE (-160))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (-12 (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525))) (|devaluate| |#1|)))) (|HasCategory| (-385 (-525)) (QUOTE (-1030))) (|HasCategory| |#1| (QUOTE (-341))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (-3321 (|HasCategory| |#1| (QUOTE (-341))) (|HasCategory| |#1| (QUOTE (-517)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasSignature| |#1| (LIST (QUOTE -3022) (LIST (|devaluate| |#1|) (QUOTE (-1089)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -385) (QUOTE (-525)))))) (-3321 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-891))) (|HasCategory| |#1| (QUOTE (-1111))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasSignature| |#1| (LIST (QUOTE -4141) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1089))))) (|HasSignature| |#1| (LIST (QUOTE -1507) (LIST (LIST (QUOTE -591) (QUOTE (-1089))) (|devaluate| |#1|)))))))
+(-1157 R FE |var| |cen|)
((|constructor| (NIL "UnivariatePuiseuxSeriesWithExponentialSingularity is a domain used to represent functions with essential singularities. Objects in this domain are sums,{} where each term in the sum is a univariate Puiseux series times the exponential of a univariate Puiseux series. Thus,{} the elements of this domain are sums of expressions of the form \\spad{g(x) * exp(f(x))},{} where \\spad{g}(\\spad{x}) is a univariate Puiseux series and \\spad{f}(\\spad{x}) is a univariate Puiseux series with no terms of non-negative degree.")) (|dominantTerm| (((|Union| (|Record| (|:| |%term| (|Record| (|:| |%coef| (|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) (|:| |%expon| (|ExponentialOfUnivariatePuiseuxSeries| |#2| |#3| |#4|)) (|:| |%expTerms| (|List| (|Record| (|:| |k| (|Fraction| (|Integer|))) (|:| |c| |#2|)))))) (|:| |%type| (|String|))) "failed") $) "\\spad{dominantTerm(f(var))} returns the term that dominates the limiting behavior of \\spad{f(var)} as \\spad{var -> cen+} together with a \\spadtype{String} which briefly describes that behavior. The value of the \\spadtype{String} will be \\spad{\"zero\"} (resp. \\spad{\"infinity\"}) if the term tends to zero (resp. infinity) exponentially and will \\spad{\"series\"} if the term is a Puiseux series.")) (|limitPlus| (((|Union| (|OrderedCompletion| |#2|) "failed") $) "\\spad{limitPlus(f(var))} returns \\spad{limit(var -> cen+,{}f(var))}.")))
-(((-4250 "*") |has| (-1154 |#2| |#3| |#4|) (-158)) (-4241 |has| (-1154 |#2| |#3| |#4|) (-515)) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| (-1154 |#2| |#3| |#4|) (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| (-1154 |#2| |#3| |#4|) (QUOTE (-134))) (|HasCategory| (-1154 |#2| |#3| |#4|) (QUOTE (-136))) (|HasCategory| (-1154 |#2| |#3| |#4|) (QUOTE (-158))) (|HasCategory| (-1154 |#2| |#3| |#4|) (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| (-1154 |#2| |#3| |#4|) (LIST (QUOTE -964) (QUOTE (-523)))) (|HasCategory| (-1154 |#2| |#3| |#4|) (QUOTE (-339))) (|HasCategory| (-1154 |#2| |#3| |#4|) (QUOTE (-427))) (-3255 (|HasCategory| (-1154 |#2| |#3| |#4|) (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| (-1154 |#2| |#3| |#4|) (LIST (QUOTE -964) (LIST (QUOTE -383) (QUOTE (-523)))))) (|HasCategory| (-1154 |#2| |#3| |#4|) (QUOTE (-515))))
-(-1156 A S)
+(((-4252 "*") |has| (-1156 |#2| |#3| |#4|) (-160)) (-4243 |has| (-1156 |#2| |#3| |#4|) (-517)) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| (-1156 |#2| |#3| |#4|) (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| (-1156 |#2| |#3| |#4|) (QUOTE (-136))) (|HasCategory| (-1156 |#2| |#3| |#4|) (QUOTE (-138))) (|HasCategory| (-1156 |#2| |#3| |#4|) (QUOTE (-160))) (|HasCategory| (-1156 |#2| |#3| |#4|) (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| (-1156 |#2| |#3| |#4|) (LIST (QUOTE -966) (QUOTE (-525)))) (|HasCategory| (-1156 |#2| |#3| |#4|) (QUOTE (-341))) (|HasCategory| (-1156 |#2| |#3| |#4|) (QUOTE (-429))) (-3321 (|HasCategory| (-1156 |#2| |#3| |#4|) (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| (-1156 |#2| |#3| |#4|) (LIST (QUOTE -966) (LIST (QUOTE -385) (QUOTE (-525)))))) (|HasCategory| (-1156 |#2| |#3| |#4|) (QUOTE (-517))))
+(-1158 A S)
((|constructor| (NIL "A unary-recursive aggregate is a one where nodes may have either 0 or 1 children. This aggregate models,{} though not precisely,{} a linked list possibly with a single cycle. A node with one children models a non-empty list,{} with the \\spadfun{value} of the list designating the head,{} or \\spadfun{first},{} of the list,{} and the child designating the tail,{} or \\spadfun{rest},{} of the list. A node with no child then designates the empty list. Since these aggregates are recursive aggregates,{} they may be cyclic.")) (|split!| (($ $ (|Integer|)) "\\spad{split!(u,{}n)} splits \\spad{u} into two aggregates: \\axiom{\\spad{v} = rest(\\spad{u},{}\\spad{n})} and \\axiom{\\spad{w} = first(\\spad{u},{}\\spad{n})},{} returning \\axiom{\\spad{v}}. Note: afterwards \\axiom{rest(\\spad{u},{}\\spad{n})} returns \\axiom{empty()}.")) (|setlast!| ((|#2| $ |#2|) "\\spad{setlast!(u,{}x)} destructively changes the last element of \\spad{u} to \\spad{x}.")) (|setrest!| (($ $ $) "\\spad{setrest!(u,{}v)} destructively changes the rest of \\spad{u} to \\spad{v}.")) (|setelt| ((|#2| $ "last" |#2|) "\\spad{setelt(u,{}\"last\",{}x)} (also written: \\axiom{\\spad{u}.last \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setlast!(\\spad{u},{}\\spad{v})}.") (($ $ "rest" $) "\\spad{setelt(u,{}\"rest\",{}v)} (also written: \\axiom{\\spad{u}.rest \\spad{:=} \\spad{v}}) is equivalent to \\axiom{setrest!(\\spad{u},{}\\spad{v})}.") ((|#2| $ "first" |#2|) "\\spad{setelt(u,{}\"first\",{}x)} (also written: \\axiom{\\spad{u}.first \\spad{:=} \\spad{x}}) is equivalent to \\axiom{setfirst!(\\spad{u},{}\\spad{x})}.")) (|setfirst!| ((|#2| $ |#2|) "\\spad{setfirst!(u,{}x)} destructively changes the first element of a to \\spad{x}.")) (|cycleSplit!| (($ $) "\\spad{cycleSplit!(u)} splits the aggregate by dropping off the cycle. The value returned is the cycle entry,{} or nil if none exists. For example,{} if \\axiom{\\spad{w} = concat(\\spad{u},{}\\spad{v})} is the cyclic list where \\spad{v} is the head of the cycle,{} \\axiom{cycleSplit!(\\spad{w})} will drop \\spad{v} off \\spad{w} thus destructively changing \\spad{w} to \\spad{u},{} and returning \\spad{v}.")) (|concat!| (($ $ |#2|) "\\spad{concat!(u,{}x)} destructively adds element \\spad{x} to the end of \\spad{u}. Note: \\axiom{concat!(a,{}\\spad{x}) = setlast!(a,{}[\\spad{x}])}.") (($ $ $) "\\spad{concat!(u,{}v)} destructively concatenates \\spad{v} to the end of \\spad{u}. Note: \\axiom{concat!(\\spad{u},{}\\spad{v}) = setlast_!(\\spad{u},{}\\spad{v})}.")) (|cycleTail| (($ $) "\\spad{cycleTail(u)} returns the last node in the cycle,{} or empty if none exists.")) (|cycleLength| (((|NonNegativeInteger|) $) "\\spad{cycleLength(u)} returns the length of a top-level cycle contained in aggregate \\spad{u},{} or 0 is \\spad{u} has no such cycle.")) (|cycleEntry| (($ $) "\\spad{cycleEntry(u)} returns the head of a top-level cycle contained in aggregate \\spad{u},{} or \\axiom{empty()} if none exists.")) (|third| ((|#2| $) "\\spad{third(u)} returns the third element of \\spad{u}. Note: \\axiom{third(\\spad{u}) = first(rest(rest(\\spad{u})))}.")) (|second| ((|#2| $) "\\spad{second(u)} returns the second element of \\spad{u}. Note: \\axiom{second(\\spad{u}) = first(rest(\\spad{u}))}.")) (|tail| (($ $) "\\spad{tail(u)} returns the last node of \\spad{u}. Note: if \\spad{u} is \\axiom{shallowlyMutable},{} \\axiom{setrest(tail(\\spad{u}),{}\\spad{v}) = concat(\\spad{u},{}\\spad{v})}.")) (|last| (($ $ (|NonNegativeInteger|)) "\\spad{last(u,{}n)} returns a copy of the last \\spad{n} (\\axiom{\\spad{n} \\spad{>=} 0}) nodes of \\spad{u}. Note: \\axiom{last(\\spad{u},{}\\spad{n})} is a list of \\spad{n} elements.") ((|#2| $) "\\spad{last(u)} resturn the last element of \\spad{u}. Note: for lists,{} \\axiom{last(\\spad{u}) = \\spad{u} . (maxIndex \\spad{u}) = \\spad{u} . (\\# \\spad{u} - 1)}.")) (|rest| (($ $ (|NonNegativeInteger|)) "\\spad{rest(u,{}n)} returns the \\axiom{\\spad{n}}th (\\spad{n} \\spad{>=} 0) node of \\spad{u}. Note: \\axiom{rest(\\spad{u},{}0) = \\spad{u}}.") (($ $) "\\spad{rest(u)} returns an aggregate consisting of all but the first element of \\spad{u} (equivalently,{} the next node of \\spad{u}).")) (|elt| ((|#2| $ "last") "\\spad{elt(u,{}\"last\")} (also written: \\axiom{\\spad{u} . last}) is equivalent to last \\spad{u}.") (($ $ "rest") "\\spad{elt(\\%,{}\"rest\")} (also written: \\axiom{\\spad{u}.rest}) is equivalent to \\axiom{rest \\spad{u}}.") ((|#2| $ "first") "\\spad{elt(u,{}\"first\")} (also written: \\axiom{\\spad{u} . first}) is equivalent to first \\spad{u}.")) (|first| (($ $ (|NonNegativeInteger|)) "\\spad{first(u,{}n)} returns a copy of the first \\spad{n} (\\axiom{\\spad{n} \\spad{>=} 0}) elements of \\spad{u}.") ((|#2| $) "\\spad{first(u)} returns the first element of \\spad{u} (equivalently,{} the value at the current node).")) (|concat| (($ |#2| $) "\\spad{concat(x,{}u)} returns aggregate consisting of \\spad{x} followed by the elements of \\spad{u}. Note: if \\axiom{\\spad{v} = concat(\\spad{x},{}\\spad{u})} then \\axiom{\\spad{x} = first \\spad{v}} and \\axiom{\\spad{u} = rest \\spad{v}}.") (($ $ $) "\\spad{concat(u,{}v)} returns an aggregate \\spad{w} consisting of the elements of \\spad{u} followed by the elements of \\spad{v}. Note: \\axiom{\\spad{v} = rest(\\spad{w},{}\\#a)}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4249)))
-(-1157 S)
+((|HasAttribute| |#1| (QUOTE -4251)))
+(-1159 S)
((|constructor| (NIL "A unary-recursive aggregate is a one where nodes may have either 0 or 1 children. This aggregate models,{} though not precisely,{} a linked list possibly with a single cycle. A node with one children models a non-empty list,{} with the \\spadfun{value} of the list designating the head,{} or \\spadfun{first},{} of the list,{} and the child designating the tail,{} or \\spadfun{rest},{} of the list. A node with no child then designates the empty list. Since these aggregates are recursive aggregates,{} they may be cyclic.")) (|split!| (($ $ (|Integer|)) "\\spad{split!(u,{}n)} splits \\spad{u} into two aggregates: \\axiom{\\spad{v} = rest(\\spad{u},{}\\spad{n})} and \\axiom{\\spad{w} = first(\\spad{u},{}\\spad{n})},{} returning \\axiom{\\spad{v}}. Note: afterwards \\axiom{rest(\\spad{u},{}\\spad{n})} returns \\axiom{empty()}.")) (|setlast!| ((|#1| $ |#1|) "\\spad{setlast!(u,{}x)} destructively changes the last element of \\spad{u} to \\spad{x}.")) (|setrest!| (($ $ $) "\\spad{setrest!(u,{}v)} destructively changes the rest of \\spad{u} to \\spad{v}.")) (|setelt| ((|#1| $ "last" |#1|) "\\spad{setelt(u,{}\"last\",{}x)} (also written: \\axiom{\\spad{u}.last \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setlast!(\\spad{u},{}\\spad{v})}.") (($ $ "rest" $) "\\spad{setelt(u,{}\"rest\",{}v)} (also written: \\axiom{\\spad{u}.rest \\spad{:=} \\spad{v}}) is equivalent to \\axiom{setrest!(\\spad{u},{}\\spad{v})}.") ((|#1| $ "first" |#1|) "\\spad{setelt(u,{}\"first\",{}x)} (also written: \\axiom{\\spad{u}.first \\spad{:=} \\spad{x}}) is equivalent to \\axiom{setfirst!(\\spad{u},{}\\spad{x})}.")) (|setfirst!| ((|#1| $ |#1|) "\\spad{setfirst!(u,{}x)} destructively changes the first element of a to \\spad{x}.")) (|cycleSplit!| (($ $) "\\spad{cycleSplit!(u)} splits the aggregate by dropping off the cycle. The value returned is the cycle entry,{} or nil if none exists. For example,{} if \\axiom{\\spad{w} = concat(\\spad{u},{}\\spad{v})} is the cyclic list where \\spad{v} is the head of the cycle,{} \\axiom{cycleSplit!(\\spad{w})} will drop \\spad{v} off \\spad{w} thus destructively changing \\spad{w} to \\spad{u},{} and returning \\spad{v}.")) (|concat!| (($ $ |#1|) "\\spad{concat!(u,{}x)} destructively adds element \\spad{x} to the end of \\spad{u}. Note: \\axiom{concat!(a,{}\\spad{x}) = setlast!(a,{}[\\spad{x}])}.") (($ $ $) "\\spad{concat!(u,{}v)} destructively concatenates \\spad{v} to the end of \\spad{u}. Note: \\axiom{concat!(\\spad{u},{}\\spad{v}) = setlast_!(\\spad{u},{}\\spad{v})}.")) (|cycleTail| (($ $) "\\spad{cycleTail(u)} returns the last node in the cycle,{} or empty if none exists.")) (|cycleLength| (((|NonNegativeInteger|) $) "\\spad{cycleLength(u)} returns the length of a top-level cycle contained in aggregate \\spad{u},{} or 0 is \\spad{u} has no such cycle.")) (|cycleEntry| (($ $) "\\spad{cycleEntry(u)} returns the head of a top-level cycle contained in aggregate \\spad{u},{} or \\axiom{empty()} if none exists.")) (|third| ((|#1| $) "\\spad{third(u)} returns the third element of \\spad{u}. Note: \\axiom{third(\\spad{u}) = first(rest(rest(\\spad{u})))}.")) (|second| ((|#1| $) "\\spad{second(u)} returns the second element of \\spad{u}. Note: \\axiom{second(\\spad{u}) = first(rest(\\spad{u}))}.")) (|tail| (($ $) "\\spad{tail(u)} returns the last node of \\spad{u}. Note: if \\spad{u} is \\axiom{shallowlyMutable},{} \\axiom{setrest(tail(\\spad{u}),{}\\spad{v}) = concat(\\spad{u},{}\\spad{v})}.")) (|last| (($ $ (|NonNegativeInteger|)) "\\spad{last(u,{}n)} returns a copy of the last \\spad{n} (\\axiom{\\spad{n} \\spad{>=} 0}) nodes of \\spad{u}. Note: \\axiom{last(\\spad{u},{}\\spad{n})} is a list of \\spad{n} elements.") ((|#1| $) "\\spad{last(u)} resturn the last element of \\spad{u}. Note: for lists,{} \\axiom{last(\\spad{u}) = \\spad{u} . (maxIndex \\spad{u}) = \\spad{u} . (\\# \\spad{u} - 1)}.")) (|rest| (($ $ (|NonNegativeInteger|)) "\\spad{rest(u,{}n)} returns the \\axiom{\\spad{n}}th (\\spad{n} \\spad{>=} 0) node of \\spad{u}. Note: \\axiom{rest(\\spad{u},{}0) = \\spad{u}}.") (($ $) "\\spad{rest(u)} returns an aggregate consisting of all but the first element of \\spad{u} (equivalently,{} the next node of \\spad{u}).")) (|elt| ((|#1| $ "last") "\\spad{elt(u,{}\"last\")} (also written: \\axiom{\\spad{u} . last}) is equivalent to last \\spad{u}.") (($ $ "rest") "\\spad{elt(\\%,{}\"rest\")} (also written: \\axiom{\\spad{u}.rest}) is equivalent to \\axiom{rest \\spad{u}}.") ((|#1| $ "first") "\\spad{elt(u,{}\"first\")} (also written: \\axiom{\\spad{u} . first}) is equivalent to first \\spad{u}.")) (|first| (($ $ (|NonNegativeInteger|)) "\\spad{first(u,{}n)} returns a copy of the first \\spad{n} (\\axiom{\\spad{n} \\spad{>=} 0}) elements of \\spad{u}.") ((|#1| $) "\\spad{first(u)} returns the first element of \\spad{u} (equivalently,{} the value at the current node).")) (|concat| (($ |#1| $) "\\spad{concat(x,{}u)} returns aggregate consisting of \\spad{x} followed by the elements of \\spad{u}. Note: if \\axiom{\\spad{v} = concat(\\spad{x},{}\\spad{u})} then \\axiom{\\spad{x} = first \\spad{v}} and \\axiom{\\spad{u} = rest \\spad{v}}.") (($ $ $) "\\spad{concat(u,{}v)} returns an aggregate \\spad{w} consisting of the elements of \\spad{u} followed by the elements of \\spad{v}. Note: \\axiom{\\spad{v} = rest(\\spad{w},{}\\#a)}.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-1158 |Coef1| |Coef2| UTS1 UTS2)
+(-1160 |Coef1| |Coef2| UTS1 UTS2)
((|constructor| (NIL "Mapping package for univariate Taylor series. \\indented{2}{This package allows one to apply a function to the coefficients of} \\indented{2}{a univariate Taylor series.}")) (|map| ((|#4| (|Mapping| |#2| |#1|) |#3|) "\\spad{map(f,{}g(x))} applies the map \\spad{f} to the coefficients of \\indented{1}{the Taylor series \\spad{g(x)}.}")))
NIL
NIL
-(-1159 S |Coef|)
+(-1161 S |Coef|)
((|constructor| (NIL "\\spadtype{UnivariateTaylorSeriesCategory} is the category of Taylor series in one variable.")) (|integrate| (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (** (($ $ |#2|) "\\spad{f(x) ** a} computes a power of a power series. When the coefficient ring is a field,{} we may raise a series to an exponent from the coefficient ring provided that the constant coefficient of the series is 1.")) (|polynomial| (((|Polynomial| |#2|) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{polynomial(f,{}k1,{}k2)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (((|Polynomial| |#2|) $ (|NonNegativeInteger|)) "\\spad{polynomial(f,{}k)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.")) (|multiplyCoefficients| (($ (|Mapping| |#2| (|Integer|)) $) "\\spad{multiplyCoefficients(f,{}sum(n = 0..infinity,{}a[n] * x**n))} returns \\spad{sum(n = 0..infinity,{}f(n) * a[n] * x**n)}. This function is used when Laurent series are represented by a Taylor series and an order.")) (|quoByVar| (($ $) "\\spad{quoByVar(a0 + a1 x + a2 x**2 + ...)} returns \\spad{a1 + a2 x + a3 x**2 + ...} Thus,{} this function substracts the constant term and divides by the series variable. This function is used when Laurent series are represented by a Taylor series and an order.")) (|coefficients| (((|Stream| |#2|) $) "\\spad{coefficients(a0 + a1 x + a2 x**2 + ...)} returns a stream of coefficients: \\spad{[a0,{}a1,{}a2,{}...]}. The entries of the stream may be zero.")) (|series| (($ (|Stream| |#2|)) "\\spad{series([a0,{}a1,{}a2,{}...])} is the Taylor series \\spad{a0 + a1 x + a2 x**2 + ...}.") (($ (|Stream| (|Record| (|:| |k| (|NonNegativeInteger|)) (|:| |c| |#2|)))) "\\spad{series(st)} creates a series from a stream of non-zero terms,{} where a term is an exponent-coefficient pair. The terms in the stream should be ordered by increasing order of exponents.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -29) (QUOTE (-523)))) (|HasCategory| |#2| (QUOTE (-889))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasSignature| |#2| (LIST (QUOTE -3716) (LIST (LIST (QUOTE -589) (QUOTE (-1087))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -2669) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (QUOTE (-1087))))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#2| (QUOTE (-339))))
-(-1160 |Coef|)
+((|HasCategory| |#2| (LIST (QUOTE -29) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-891))) (|HasCategory| |#2| (QUOTE (-1111))) (|HasSignature| |#2| (LIST (QUOTE -1507) (LIST (LIST (QUOTE -591) (QUOTE (-1089))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -4141) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (QUOTE (-1089))))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-341))))
+(-1162 |Coef|)
((|constructor| (NIL "\\spadtype{UnivariateTaylorSeriesCategory} is the category of Taylor series in one variable.")) (|integrate| (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (** (($ $ |#1|) "\\spad{f(x) ** a} computes a power of a power series. When the coefficient ring is a field,{} we may raise a series to an exponent from the coefficient ring provided that the constant coefficient of the series is 1.")) (|polynomial| (((|Polynomial| |#1|) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{polynomial(f,{}k1,{}k2)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (((|Polynomial| |#1|) $ (|NonNegativeInteger|)) "\\spad{polynomial(f,{}k)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.")) (|multiplyCoefficients| (($ (|Mapping| |#1| (|Integer|)) $) "\\spad{multiplyCoefficients(f,{}sum(n = 0..infinity,{}a[n] * x**n))} returns \\spad{sum(n = 0..infinity,{}f(n) * a[n] * x**n)}. This function is used when Laurent series are represented by a Taylor series and an order.")) (|quoByVar| (($ $) "\\spad{quoByVar(a0 + a1 x + a2 x**2 + ...)} returns \\spad{a1 + a2 x + a3 x**2 + ...} Thus,{} this function substracts the constant term and divides by the series variable. This function is used when Laurent series are represented by a Taylor series and an order.")) (|coefficients| (((|Stream| |#1|) $) "\\spad{coefficients(a0 + a1 x + a2 x**2 + ...)} returns a stream of coefficients: \\spad{[a0,{}a1,{}a2,{}...]}. The entries of the stream may be zero.")) (|series| (($ (|Stream| |#1|)) "\\spad{series([a0,{}a1,{}a2,{}...])} is the Taylor series \\spad{a0 + a1 x + a2 x**2 + ...}.") (($ (|Stream| (|Record| (|:| |k| (|NonNegativeInteger|)) (|:| |c| |#1|)))) "\\spad{series(st)} creates a series from a stream of non-zero terms,{} where a term is an exponent-coefficient pair. The terms in the stream should be ordered by increasing order of exponents.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4242 . T) (-4243 . T) (-4245 . T))
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-1161 |Coef| |var| |cen|)
+(-1163 |Coef| |var| |cen|)
((|constructor| (NIL "Dense Taylor series in one variable \\spadtype{UnivariateTaylorSeries} is a domain representing Taylor series in one variable with coefficients in an arbitrary ring. The parameters of the type specify the coefficient ring,{} the power series variable,{} and the center of the power series expansion. For example,{} \\spadtype{UnivariateTaylorSeries}(Integer,{}\\spad{x},{}3) represents Taylor series in \\spad{(x - 3)} with \\spadtype{Integer} coefficients.")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x),{}x)} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|invmultisect| (($ (|Integer|) (|Integer|) $) "\\spad{invmultisect(a,{}b,{}f(x))} substitutes \\spad{x^((a+b)*n)} \\indented{1}{for \\spad{x^n} and multiples by \\spad{x^b}.}")) (|multisect| (($ (|Integer|) (|Integer|) $) "\\spad{multisect(a,{}b,{}f(x))} selects the coefficients of \\indented{1}{\\spad{x^((a+b)*n+a)},{} and changes this monomial to \\spad{x^n}.}")) (|revert| (($ $) "\\spad{revert(f(x))} returns a Taylor series \\spad{g(x)} such that \\spad{f(g(x)) = g(f(x)) = x}. Series \\spad{f(x)} should have constant coefficient 0 and 1st order coefficient 1.")) (|generalLambert| (($ $ (|Integer|) (|Integer|)) "\\spad{generalLambert(f(x),{}a,{}d)} returns \\spad{f(x^a) + f(x^(a + d)) + \\indented{1}{f(x^(a + 2 d)) + ... }. \\spad{f(x)} should have zero constant} \\indented{1}{coefficient and \\spad{a} and \\spad{d} should be positive.}")) (|evenlambert| (($ $) "\\spad{evenlambert(f(x))} returns \\spad{f(x^2) + f(x^4) + f(x^6) + ...}. \\indented{1}{\\spad{f(x)} should have a zero constant coefficient.} \\indented{1}{This function is used for computing infinite products.} \\indented{1}{If \\spad{f(x)} is a Taylor series with constant term 1,{} then} \\indented{1}{\\spad{product(n=1..infinity,{}f(x^(2*n))) = exp(log(evenlambert(f(x))))}.}")) (|oddlambert| (($ $) "\\spad{oddlambert(f(x))} returns \\spad{f(x) + f(x^3) + f(x^5) + ...}. \\indented{1}{\\spad{f(x)} should have a zero constant coefficient.} \\indented{1}{This function is used for computing infinite products.} \\indented{1}{If \\spad{f(x)} is a Taylor series with constant term 1,{} then} \\indented{1}{\\spad{product(n=1..infinity,{}f(x^(2*n-1)))=exp(log(oddlambert(f(x))))}.}")) (|lambert| (($ $) "\\spad{lambert(f(x))} returns \\spad{f(x) + f(x^2) + f(x^3) + ...}. \\indented{1}{This function is used for computing infinite products.} \\indented{1}{\\spad{f(x)} should have zero constant coefficient.} \\indented{1}{If \\spad{f(x)} is a Taylor series with constant term 1,{} then} \\indented{1}{\\spad{product(n = 1..infinity,{}f(x^n)) = exp(log(lambert(f(x))))}.}")) (|lagrange| (($ $) "\\spad{lagrange(g(x))} produces the Taylor series for \\spad{f(x)} \\indented{1}{where \\spad{f(x)} is implicitly defined as \\spad{f(x) = x*g(f(x))}.}")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),{}x)} computes the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|univariatePolynomial| (((|UnivariatePolynomial| |#2| |#1|) $ (|NonNegativeInteger|)) "\\spad{univariatePolynomial(f,{}k)} returns a univariate polynomial \\indented{1}{consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.}")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a \\indented{1}{Taylor series.}") (($ (|UnivariatePolynomial| |#2| |#1|)) "\\spad{coerce(p)} converts a univariate polynomial \\spad{p} in the variable \\spad{var} to a univariate Taylor series in \\spad{var}.")))
-(((-4250 "*") |has| |#1| (-158)) (-4241 |has| |#1| (-515)) (-4242 . T) (-4243 . T) (-4245 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasCategory| |#1| (QUOTE (-515))) (-3255 (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-515)))) (|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-134))) (|HasCategory| |#1| (QUOTE (-136))) (-12 (|HasCategory| |#1| (LIST (QUOTE -831) (QUOTE (-1087)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-710)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-710)) (|devaluate| |#1|)))) (|HasCategory| (-710) (QUOTE (-1028))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-710))))) (|HasSignature| |#1| (LIST (QUOTE -3976) (LIST (|devaluate| |#1|) (QUOTE (-1087)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-710))))) (|HasCategory| |#1| (QUOTE (-339))) (-3255 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-523)))) (|HasCategory| |#1| (QUOTE (-889))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasSignature| |#1| (LIST (QUOTE -2669) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1087))))) (|HasSignature| |#1| (LIST (QUOTE -3716) (LIST (LIST (QUOTE -589) (QUOTE (-1087))) (|devaluate| |#1|)))))))
-(-1162 |Coef| UTS)
+(((-4252 "*") |has| |#1| (-160)) (-4243 |has| |#1| (-517)) (-4244 . T) (-4245 . T) (-4247 . T))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-517))) (-3321 (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-517)))) (|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-136))) (|HasCategory| |#1| (QUOTE (-138))) (-12 (|HasCategory| |#1| (LIST (QUOTE -833) (QUOTE (-1089)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-712)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-712)) (|devaluate| |#1|)))) (|HasCategory| (-712) (QUOTE (-1030))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-712))))) (|HasSignature| |#1| (LIST (QUOTE -3022) (LIST (|devaluate| |#1|) (QUOTE (-1089)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-712))))) (|HasCategory| |#1| (QUOTE (-341))) (-3321 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-891))) (|HasCategory| |#1| (QUOTE (-1111))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasSignature| |#1| (LIST (QUOTE -4141) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1089))))) (|HasSignature| |#1| (LIST (QUOTE -1507) (LIST (LIST (QUOTE -591) (QUOTE (-1089))) (|devaluate| |#1|)))))))
+(-1164 |Coef| UTS)
((|constructor| (NIL "\\indented{1}{This package provides Taylor series solutions to regular} linear or non-linear ordinary differential equations of arbitrary order.")) (|mpsode| (((|List| |#2|) (|List| |#1|) (|List| (|Mapping| |#2| (|List| |#2|)))) "\\spad{mpsode(r,{}f)} solves the system of differential equations \\spad{dy[i]/dx =f[i] [x,{}y[1],{}y[2],{}...,{}y[n]]},{} \\spad{y[i](a) = r[i]} for \\spad{i} in 1..\\spad{n}.")) (|ode| ((|#2| (|Mapping| |#2| (|List| |#2|)) (|List| |#1|)) "\\spad{ode(f,{}cl)} is the solution to \\spad{y<n>=f(y,{}y',{}..,{}y<n-1>)} such that \\spad{y<i>(a) = cl.i} for \\spad{i} in 1..\\spad{n}.")) (|ode2| ((|#2| (|Mapping| |#2| |#2| |#2|) |#1| |#1|) "\\spad{ode2(f,{}c0,{}c1)} is the solution to \\spad{y'' = f(y,{}y')} such that \\spad{y(a) = c0} and \\spad{y'(a) = c1}.")) (|ode1| ((|#2| (|Mapping| |#2| |#2|) |#1|) "\\spad{ode1(f,{}c)} is the solution to \\spad{y' = f(y)} such that \\spad{y(a) = c}.")) (|fixedPointExquo| ((|#2| |#2| |#2|) "\\spad{fixedPointExquo(f,{}g)} computes the exact quotient of \\spad{f} and \\spad{g} using a fixed point computation.")) (|stFuncN| (((|Mapping| (|Stream| |#1|) (|List| (|Stream| |#1|))) (|Mapping| |#2| (|List| |#2|))) "\\spad{stFuncN(f)} is a local function xported due to compiler problem. This function is of no interest to the top-level user.")) (|stFunc2| (((|Mapping| (|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) (|Mapping| |#2| |#2| |#2|)) "\\spad{stFunc2(f)} is a local function exported due to compiler problem. This function is of no interest to the top-level user.")) (|stFunc1| (((|Mapping| (|Stream| |#1|) (|Stream| |#1|)) (|Mapping| |#2| |#2|)) "\\spad{stFunc1(f)} is a local function exported due to compiler problem. This function is of no interest to the top-level user.")))
NIL
NIL
-(-1163 -3894 UP L UTS)
+(-1165 -3576 UP L UTS)
((|constructor| (NIL "\\spad{RUTSodetools} provides tools to interface with the series \\indented{1}{ODE solver when presented with linear ODEs.}")) (RF2UTS ((|#4| (|Fraction| |#2|)) "\\spad{RF2UTS(f)} converts \\spad{f} to a Taylor series.")) (LODO2FUN (((|Mapping| |#4| (|List| |#4|)) |#3|) "\\spad{LODO2FUN(op)} returns the function to pass to the series ODE solver in order to solve \\spad{op y = 0}.")) (UTS2UP ((|#2| |#4| (|NonNegativeInteger|)) "\\spad{UTS2UP(s,{} n)} converts the first \\spad{n} terms of \\spad{s} to a univariate polynomial.")) (UP2UTS ((|#4| |#2|) "\\spad{UP2UTS(p)} converts \\spad{p} to a Taylor series.")))
NIL
-((|HasCategory| |#1| (QUOTE (-515))))
-(-1164)
+((|HasCategory| |#1| (QUOTE (-517))))
+(-1166)
((|constructor| (NIL "The category of domains that act like unions. UnionType,{} like Type or Category,{} acts mostly as a take that communicates `union-like' intended semantics to the compiler. A domain \\spad{D} that satifies UnionType should provide definitions for `case' operators,{} with corresponding `autoCoerce' operators.")))
-((-2500 . T))
+((-2137 . T))
NIL
-(-1165 |sym|)
+(-1167 |sym|)
((|constructor| (NIL "This domain implements variables")) (|variable| (((|Symbol|)) "\\spad{variable()} returns the symbol")) (|coerce| (((|Symbol|) $) "\\spad{coerce(x)} returns the symbol")))
NIL
NIL
-(-1166 S R)
+(-1168 S R)
((|constructor| (NIL "\\spadtype{VectorCategory} represents the type of vector like objects,{} \\spadignore{i.e.} finite sequences indexed by some finite segment of the integers. The operations available on vectors depend on the structure of the underlying components. Many operations from the component domain are defined for vectors componentwise. It can by assumed that extraction or updating components can be done in constant time.")) (|magnitude| ((|#2| $) "\\spad{magnitude(v)} computes the sqrt(dot(\\spad{v},{}\\spad{v})),{} \\spadignore{i.e.} the length")) (|length| ((|#2| $) "\\spad{length(v)} computes the sqrt(dot(\\spad{v},{}\\spad{v})),{} \\spadignore{i.e.} the magnitude")) (|cross| (($ $ $) "vectorProduct(\\spad{u},{}\\spad{v}) constructs the cross product of \\spad{u} and \\spad{v}. Error: if \\spad{u} and \\spad{v} are not of length 3.")) (|outerProduct| (((|Matrix| |#2|) $ $) "\\spad{outerProduct(u,{}v)} constructs the matrix whose (\\spad{i},{}\\spad{j})\\spad{'}th element is \\spad{u}(\\spad{i})\\spad{*v}(\\spad{j}).")) (|dot| ((|#2| $ $) "\\spad{dot(x,{}y)} computes the inner product of the two vectors \\spad{x} and \\spad{y}. Error: if \\spad{x} and \\spad{y} are not of the same length.")) (* (($ $ |#2|) "\\spad{y * r} multiplies each component of the vector \\spad{y} by the element \\spad{r}.") (($ |#2| $) "\\spad{r * y} multiplies the element \\spad{r} times each component of the vector \\spad{y}.") (($ (|Integer|) $) "\\spad{n * y} multiplies each component of the vector \\spad{y} by the integer \\spad{n}.")) (- (($ $ $) "\\spad{x - y} returns the component-wise difference of the vectors \\spad{x} and \\spad{y}. Error: if \\spad{x} and \\spad{y} are not of the same length.") (($ $) "\\spad{-x} negates all components of the vector \\spad{x}.")) (|zero| (($ (|NonNegativeInteger|)) "\\spad{zero(n)} creates a zero vector of length \\spad{n}.")) (+ (($ $ $) "\\spad{x + y} returns the component-wise sum of the vectors \\spad{x} and \\spad{y}. Error: if \\spad{x} and \\spad{y} are not of the same length.")))
NIL
-((|HasCategory| |#2| (QUOTE (-930))) (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (QUOTE (-666))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-25))))
-(-1167 R)
+((|HasCategory| |#2| (QUOTE (-932))) (|HasCategory| |#2| (QUOTE (-975))) (|HasCategory| |#2| (QUOTE (-668))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-25))))
+(-1169 R)
((|constructor| (NIL "\\spadtype{VectorCategory} represents the type of vector like objects,{} \\spadignore{i.e.} finite sequences indexed by some finite segment of the integers. The operations available on vectors depend on the structure of the underlying components. Many operations from the component domain are defined for vectors componentwise. It can by assumed that extraction or updating components can be done in constant time.")) (|magnitude| ((|#1| $) "\\spad{magnitude(v)} computes the sqrt(dot(\\spad{v},{}\\spad{v})),{} \\spadignore{i.e.} the length")) (|length| ((|#1| $) "\\spad{length(v)} computes the sqrt(dot(\\spad{v},{}\\spad{v})),{} \\spadignore{i.e.} the magnitude")) (|cross| (($ $ $) "vectorProduct(\\spad{u},{}\\spad{v}) constructs the cross product of \\spad{u} and \\spad{v}. Error: if \\spad{u} and \\spad{v} are not of length 3.")) (|outerProduct| (((|Matrix| |#1|) $ $) "\\spad{outerProduct(u,{}v)} constructs the matrix whose (\\spad{i},{}\\spad{j})\\spad{'}th element is \\spad{u}(\\spad{i})\\spad{*v}(\\spad{j}).")) (|dot| ((|#1| $ $) "\\spad{dot(x,{}y)} computes the inner product of the two vectors \\spad{x} and \\spad{y}. Error: if \\spad{x} and \\spad{y} are not of the same length.")) (* (($ $ |#1|) "\\spad{y * r} multiplies each component of the vector \\spad{y} by the element \\spad{r}.") (($ |#1| $) "\\spad{r * y} multiplies the element \\spad{r} times each component of the vector \\spad{y}.") (($ (|Integer|) $) "\\spad{n * y} multiplies each component of the vector \\spad{y} by the integer \\spad{n}.")) (- (($ $ $) "\\spad{x - y} returns the component-wise difference of the vectors \\spad{x} and \\spad{y}. Error: if \\spad{x} and \\spad{y} are not of the same length.") (($ $) "\\spad{-x} negates all components of the vector \\spad{x}.")) (|zero| (($ (|NonNegativeInteger|)) "\\spad{zero(n)} creates a zero vector of length \\spad{n}.")) (+ (($ $ $) "\\spad{x + y} returns the component-wise sum of the vectors \\spad{x} and \\spad{y}. Error: if \\spad{x} and \\spad{y} are not of the same length.")))
-((-4249 . T) (-4248 . T) (-2500 . T))
+((-4251 . T) (-4250 . T) (-2137 . T))
NIL
-(-1168 A B)
+(-1170 A B)
((|constructor| (NIL "\\indented{2}{This package provides operations which all take as arguments} vectors of elements of some type \\spad{A} and functions from \\spad{A} to another of type \\spad{B}. The operations all iterate over their vector argument and either return a value of type \\spad{B} or a vector over \\spad{B}.")) (|map| (((|Union| (|Vector| |#2|) "failed") (|Mapping| (|Union| |#2| "failed") |#1|) (|Vector| |#1|)) "\\spad{map(f,{} v)} applies the function \\spad{f} to every element of the vector \\spad{v} producing a new vector containing the values or \\spad{\"failed\"}.") (((|Vector| |#2|) (|Mapping| |#2| |#1|) (|Vector| |#1|)) "\\spad{map(f,{} v)} applies the function \\spad{f} to every element of the vector \\spad{v} producing a new vector containing the values.")) (|reduce| ((|#2| (|Mapping| |#2| |#1| |#2|) (|Vector| |#1|) |#2|) "\\spad{reduce(func,{}vec,{}ident)} combines the elements in \\spad{vec} using the binary function \\spad{func}. Argument \\spad{ident} is returned if \\spad{vec} is empty.")) (|scan| (((|Vector| |#2|) (|Mapping| |#2| |#1| |#2|) (|Vector| |#1|) |#2|) "\\spad{scan(func,{}vec,{}ident)} creates a new vector whose elements are the result of applying reduce to the binary function \\spad{func},{} increasing initial subsequences of the vector \\spad{vec},{} and the element \\spad{ident}.")))
NIL
NIL
-(-1169 R)
+(-1171 R)
((|constructor| (NIL "This type represents vector like objects with varying lengths and indexed by a finite segment of integers starting at 1.")) (|vector| (($ (|List| |#1|)) "\\spad{vector(l)} converts the list \\spad{l} to a vector.")))
-((-4249 . T) (-4248 . T))
-((-3255 (-12 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|))))) (-3255 (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794))))) (|HasCategory| |#1| (LIST (QUOTE -564) (QUOTE (-499)))) (-3255 (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016)))) (|HasCategory| |#1| (QUOTE (-786))) (|HasCategory| (-523) (QUOTE (-786))) (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-666))) (|HasCategory| |#1| (QUOTE (-973))) (-12 (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-973)))) (-12 (|HasCategory| |#1| (QUOTE (-1016))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-1170)
+((-4251 . T) (-4250 . T))
+((-3321 (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|))))) (-3321 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796))))) (|HasCategory| |#1| (LIST (QUOTE -566) (QUOTE (-501)))) (-3321 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018)))) (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| (-525) (QUOTE (-788))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-668))) (|HasCategory| |#1| (QUOTE (-975))) (-12 (|HasCategory| |#1| (QUOTE (-932))) (|HasCategory| |#1| (QUOTE (-975)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -288) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-1172)
((|constructor| (NIL "TwoDimensionalViewport creates viewports to display graphs.")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(v)} returns the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport} as output of the domain \\spadtype{OutputForm}.")) (|key| (((|Integer|) $) "\\spad{key(v)} returns the process ID number of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport}.")) (|reset| (((|Void|) $) "\\spad{reset(v)} sets the current state of the graph characteristics of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} back to their initial settings.")) (|write| (((|String|) $ (|String|) (|List| (|String|))) "\\spad{write(v,{}s,{}lf)} takes the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data files for \\spad{v} and the optional file types indicated by the list \\spad{lf}.") (((|String|) $ (|String|) (|String|)) "\\spad{write(v,{}s,{}f)} takes the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data files for \\spad{v} and an optional file type \\spad{f}.") (((|String|) $ (|String|)) "\\spad{write(v,{}s)} takes the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data files for \\spad{v}.")) (|resize| (((|Void|) $ (|PositiveInteger|) (|PositiveInteger|)) "\\spad{resize(v,{}w,{}h)} displays the two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} with a width of \\spad{w} and a height of \\spad{h},{} keeping the upper left-hand corner position unchanged.")) (|update| (((|Void|) $ (|GraphImage|) (|PositiveInteger|)) "\\spad{update(v,{}gr,{}n)} drops the graph \\spad{gr} in slot \\spad{n} of viewport \\spad{v}. The graph \\spad{gr} must have been transmitted already and acquired an integer key.")) (|move| (((|Void|) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{move(v,{}x,{}y)} displays the two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} with the upper left-hand corner of the viewport window at the screen coordinate position \\spad{x},{} \\spad{y}.")) (|show| (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{show(v,{}n,{}s)} displays the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the graph if \\spad{s} is \"off\".")) (|translate| (((|Void|) $ (|PositiveInteger|) (|Float|) (|Float|)) "\\spad{translate(v,{}n,{}dx,{}dy)} displays the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} translated by \\spad{dx} in the \\spad{x}-coordinate direction from the center of the viewport,{} and by \\spad{dy} in the \\spad{y}-coordinate direction from the center. Setting \\spad{dx} and \\spad{dy} to \\spad{0} places the center of the graph at the center of the viewport.")) (|scale| (((|Void|) $ (|PositiveInteger|) (|Float|) (|Float|)) "\\spad{scale(v,{}n,{}sx,{}sy)} displays the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} scaled by the factor \\spad{sx} in the \\spad{x}-coordinate direction and by the factor \\spad{sy} in the \\spad{y}-coordinate direction.")) (|dimensions| (((|Void|) $ (|NonNegativeInteger|) (|NonNegativeInteger|) (|PositiveInteger|) (|PositiveInteger|)) "\\spad{dimensions(v,{}x,{}y,{}width,{}height)} sets the position of the upper left-hand corner of the two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} to the window coordinate \\spad{x},{} \\spad{y},{} and sets the dimensions of the window to that of \\spad{width},{} \\spad{height}. The new dimensions are not displayed until the function \\spadfun{makeViewport2D} is executed again for \\spad{v}.")) (|close| (((|Void|) $) "\\spad{close(v)} closes the viewport window of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} and terminates the corresponding process ID.")) (|controlPanel| (((|Void|) $ (|String|)) "\\spad{controlPanel(v,{}s)} displays the control panel of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or hides the control panel if \\spad{s} is \"off\".")) (|connect| (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{connect(v,{}n,{}s)} displays the lines connecting the graph points in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the lines if \\spad{s} is \"off\".")) (|region| (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{region(v,{}n,{}s)} displays the bounding box of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the bounding box if \\spad{s} is \"off\".")) (|points| (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{points(v,{}n,{}s)} displays the points of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the points if \\spad{s} is \"off\".")) (|units| (((|Void|) $ (|PositiveInteger|) (|Palette|)) "\\spad{units(v,{}n,{}c)} displays the units of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} with the units color set to the given palette color \\spad{c}.") (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{units(v,{}n,{}s)} displays the units of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the units if \\spad{s} is \"off\".")) (|axes| (((|Void|) $ (|PositiveInteger|) (|Palette|)) "\\spad{axes(v,{}n,{}c)} displays the axes of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} with the axes color set to the given palette color \\spad{c}.") (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{axes(v,{}n,{}s)} displays the axes of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the axes if \\spad{s} is \"off\".")) (|getGraph| (((|GraphImage|) $ (|PositiveInteger|)) "\\spad{getGraph(v,{}n)} returns the graph which is of the domain \\spadtype{GraphImage} which is located in graph field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of the domain \\spadtype{TwoDimensionalViewport}.")) (|putGraph| (((|Void|) $ (|GraphImage|) (|PositiveInteger|)) "\\spad{putGraph(v,{}\\spad{gi},{}n)} sets the graph field indicated by \\spad{n},{} of the indicated two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} to be the graph,{} \\spad{\\spad{gi}} of domain \\spadtype{GraphImage}. The contents of viewport,{} \\spad{v},{} will contain \\spad{\\spad{gi}} when the function \\spadfun{makeViewport2D} is called to create the an updated viewport \\spad{v}.")) (|title| (((|Void|) $ (|String|)) "\\spad{title(v,{}s)} changes the title which is shown in the two-dimensional viewport window,{} \\spad{v} of domain \\spadtype{TwoDimensionalViewport}.")) (|graphs| (((|Vector| (|Union| (|GraphImage|) "undefined")) $) "\\spad{graphs(v)} returns a vector,{} or list,{} which is a union of all the graphs,{} of the domain \\spadtype{GraphImage},{} which are allocated for the two-dimensional viewport,{} \\spad{v},{} of domain \\spadtype{TwoDimensionalViewport}. Those graphs which have no data are labeled \"undefined\",{} otherwise their contents are shown.")) (|graphStates| (((|Vector| (|Record| (|:| |scaleX| (|DoubleFloat|)) (|:| |scaleY| (|DoubleFloat|)) (|:| |deltaX| (|DoubleFloat|)) (|:| |deltaY| (|DoubleFloat|)) (|:| |points| (|Integer|)) (|:| |connect| (|Integer|)) (|:| |spline| (|Integer|)) (|:| |axes| (|Integer|)) (|:| |axesColor| (|Palette|)) (|:| |units| (|Integer|)) (|:| |unitsColor| (|Palette|)) (|:| |showing| (|Integer|)))) $) "\\spad{graphStates(v)} returns and shows a listing of a record containing the current state of the characteristics of each of the ten graph records in the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport}.")) (|graphState| (((|Void|) $ (|PositiveInteger|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Palette|) (|Integer|) (|Palette|) (|Integer|)) "\\spad{graphState(v,{}num,{}sX,{}sY,{}dX,{}dY,{}pts,{}lns,{}box,{}axes,{}axesC,{}un,{}unC,{}cP)} sets the state of the characteristics for the graph indicated by \\spad{num} in the given two-dimensional viewport \\spad{v},{} of domain \\spadtype{TwoDimensionalViewport},{} to the values given as parameters. The scaling of the graph in the \\spad{x} and \\spad{y} component directions is set to be \\spad{sX} and \\spad{sY}; the window translation in the \\spad{x} and \\spad{y} component directions is set to be \\spad{dX} and \\spad{dY}; The graph points,{} lines,{} bounding \\spad{box},{} \\spad{axes},{} or units will be shown in the viewport if their given parameters \\spad{pts},{} \\spad{lns},{} \\spad{box},{} \\spad{axes} or \\spad{un} are set to be \\spad{1},{} but will not be shown if they are set to \\spad{0}. The color of the \\spad{axes} and the color of the units are indicated by the palette colors \\spad{axesC} and \\spad{unC} respectively. To display the control panel when the viewport window is displayed,{} set \\spad{cP} to \\spad{1},{} otherwise set it to \\spad{0}.")) (|options| (($ $ (|List| (|DrawOption|))) "\\spad{options(v,{}lopt)} takes the given two-dimensional viewport,{} \\spad{v},{} of the domain \\spadtype{TwoDimensionalViewport} and returns \\spad{v} with it\\spad{'s} draw options modified to be those which are indicated in the given list,{} \\spad{lopt} of domain \\spadtype{DrawOption}.") (((|List| (|DrawOption|)) $) "\\spad{options(v)} takes the given two-dimensional viewport,{} \\spad{v},{} of the domain \\spadtype{TwoDimensionalViewport} and returns a list containing the draw options from the domain \\spadtype{DrawOption} for \\spad{v}.")) (|makeViewport2D| (($ (|GraphImage|) (|List| (|DrawOption|))) "\\spad{makeViewport2D(\\spad{gi},{}lopt)} creates and displays a viewport window of the domain \\spadtype{TwoDimensionalViewport} whose graph field is assigned to be the given graph,{} \\spad{\\spad{gi}},{} of domain \\spadtype{GraphImage},{} and whose options field is set to be the list of options,{} \\spad{lopt} of domain \\spadtype{DrawOption}.") (($ $) "\\spad{makeViewport2D(v)} takes the given two-dimensional viewport,{} \\spad{v},{} of the domain \\spadtype{TwoDimensionalViewport} and displays a viewport window on the screen which contains the contents of \\spad{v}.")) (|viewport2D| (($) "\\spad{viewport2D()} returns an undefined two-dimensional viewport of the domain \\spadtype{TwoDimensionalViewport} whose contents are empty.")) (|getPickedPoints| (((|List| (|Point| (|DoubleFloat|))) $) "\\spad{getPickedPoints(x)} returns a list of small floats for the points the user interactively picked on the viewport for full integration into the system,{} some design issues need to be addressed: \\spadignore{e.g.} how to go through the GraphImage interface,{} how to default to graphs,{} etc.")))
NIL
NIL
-(-1171)
+(-1173)
((|key| (((|Integer|) $) "\\spad{key(v)} returns the process ID number of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|close| (((|Void|) $) "\\spad{close(v)} closes the viewport window of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} and terminates the corresponding process ID.")) (|write| (((|String|) $ (|String|) (|List| (|String|))) "\\spad{write(v,{}s,{}lf)} takes the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data file for \\spad{v} and the optional file types indicated by the list \\spad{lf}.") (((|String|) $ (|String|) (|String|)) "\\spad{write(v,{}s,{}f)} takes the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data file for \\spad{v} and an optional file type \\spad{f}.") (((|String|) $ (|String|)) "\\spad{write(v,{}s)} takes the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data file for \\spad{v}.")) (|colorDef| (((|Void|) $ (|Color|) (|Color|)) "\\spad{colorDef(v,{}c1,{}c2)} sets the range of colors along the colormap so that the lower end of the colormap is defined by \\spad{c1} and the top end of the colormap is defined by \\spad{c2},{} for the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|reset| (((|Void|) $) "\\spad{reset(v)} sets the current state of the graph characteristics of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} back to their initial settings.")) (|intensity| (((|Void|) $ (|Float|)) "\\spad{intensity(v,{}i)} sets the intensity of the light source to \\spad{i},{} for the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|lighting| (((|Void|) $ (|Float|) (|Float|) (|Float|)) "\\spad{lighting(v,{}x,{}y,{}z)} sets the position of the light source to the coordinates \\spad{x},{} \\spad{y},{} and \\spad{z} and displays the graph for the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|clipSurface| (((|Void|) $ (|String|)) "\\spad{clipSurface(v,{}s)} displays the graph with the specified clipping region removed if \\spad{s} is \"on\",{} or displays the graph without clipping implemented if \\spad{s} is \"off\",{} for the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|showClipRegion| (((|Void|) $ (|String|)) "\\spad{showClipRegion(v,{}s)} displays the clipping region of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the region if \\spad{s} is \"off\".")) (|showRegion| (((|Void|) $ (|String|)) "\\spad{showRegion(v,{}s)} displays the bounding box of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the box if \\spad{s} is \"off\".")) (|hitherPlane| (((|Void|) $ (|Float|)) "\\spad{hitherPlane(v,{}h)} sets the hither clipping plane of the graph to \\spad{h},{} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.")) (|eyeDistance| (((|Void|) $ (|Float|)) "\\spad{eyeDistance(v,{}d)} sets the distance of the observer from the center of the graph to \\spad{d},{} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.")) (|perspective| (((|Void|) $ (|String|)) "\\spad{perspective(v,{}s)} displays the graph in perspective if \\spad{s} is \"on\",{} or does not display perspective if \\spad{s} is \"off\" for the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|translate| (((|Void|) $ (|Float|) (|Float|)) "\\spad{translate(v,{}dx,{}dy)} sets the horizontal viewport offset to \\spad{dx} and the vertical viewport offset to \\spad{dy},{} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.")) (|zoom| (((|Void|) $ (|Float|) (|Float|) (|Float|)) "\\spad{zoom(v,{}sx,{}sy,{}sz)} sets the graph scaling factors for the \\spad{x}-coordinate axis to \\spad{sx},{} the \\spad{y}-coordinate axis to \\spad{sy} and the \\spad{z}-coordinate axis to \\spad{sz} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.") (((|Void|) $ (|Float|)) "\\spad{zoom(v,{}s)} sets the graph scaling factor to \\spad{s},{} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.")) (|rotate| (((|Void|) $ (|Integer|) (|Integer|)) "\\spad{rotate(v,{}th,{}phi)} rotates the graph to the longitudinal view angle \\spad{th} degrees and the latitudinal view angle \\spad{phi} degrees for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}. The new rotation position is not displayed until the function \\spadfun{makeViewport3D} is executed again for \\spad{v}.") (((|Void|) $ (|Float|) (|Float|)) "\\spad{rotate(v,{}th,{}phi)} rotates the graph to the longitudinal view angle \\spad{th} radians and the latitudinal view angle \\spad{phi} radians for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.")) (|drawStyle| (((|Void|) $ (|String|)) "\\spad{drawStyle(v,{}s)} displays the surface for the given three-dimensional viewport \\spad{v} which is of domain \\spadtype{ThreeDimensionalViewport} in the style of drawing indicated by \\spad{s}. If \\spad{s} is not a valid drawing style the style is wireframe by default. Possible styles are \\spad{\"shade\"},{} \\spad{\"solid\"} or \\spad{\"opaque\"},{} \\spad{\"smooth\"},{} and \\spad{\"wireMesh\"}.")) (|outlineRender| (((|Void|) $ (|String|)) "\\spad{outlineRender(v,{}s)} displays the polygon outline showing either triangularized surface or a quadrilateral surface outline depending on the whether the \\spadfun{diagonals} function has been set,{} for the given three-dimensional viewport \\spad{v} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the polygon outline if \\spad{s} is \"off\".")) (|diagonals| (((|Void|) $ (|String|)) "\\spad{diagonals(v,{}s)} displays the diagonals of the polygon outline showing a triangularized surface instead of a quadrilateral surface outline,{} for the given three-dimensional viewport \\spad{v} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the diagonals if \\spad{s} is \"off\".")) (|axes| (((|Void|) $ (|String|)) "\\spad{axes(v,{}s)} displays the axes of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the axes if \\spad{s} is \"off\".")) (|controlPanel| (((|Void|) $ (|String|)) "\\spad{controlPanel(v,{}s)} displays the control panel of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or hides the control panel if \\spad{s} is \"off\".")) (|viewpoint| (((|Void|) $ (|Float|) (|Float|) (|Float|)) "\\spad{viewpoint(v,{}rotx,{}roty,{}rotz)} sets the rotation about the \\spad{x}-axis to be \\spad{rotx} radians,{} sets the rotation about the \\spad{y}-axis to be \\spad{roty} radians,{} and sets the rotation about the \\spad{z}-axis to be \\spad{rotz} radians,{} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport} and displays \\spad{v} with the new view position.") (((|Void|) $ (|Float|) (|Float|)) "\\spad{viewpoint(v,{}th,{}phi)} sets the longitudinal view angle to \\spad{th} radians and the latitudinal view angle to \\spad{phi} radians for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}. The new viewpoint position is not displayed until the function \\spadfun{makeViewport3D} is executed again for \\spad{v}.") (((|Void|) $ (|Integer|) (|Integer|) (|Float|) (|Float|) (|Float|)) "\\spad{viewpoint(v,{}th,{}phi,{}s,{}dx,{}dy)} sets the longitudinal view angle to \\spad{th} degrees,{} the latitudinal view angle to \\spad{phi} degrees,{} the scale factor to \\spad{s},{} the horizontal viewport offset to \\spad{dx},{} and the vertical viewport offset to \\spad{dy} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}. The new viewpoint position is not displayed until the function \\spadfun{makeViewport3D} is executed again for \\spad{v}.") (((|Void|) $ (|Record| (|:| |theta| (|DoubleFloat|)) (|:| |phi| (|DoubleFloat|)) (|:| |scale| (|DoubleFloat|)) (|:| |scaleX| (|DoubleFloat|)) (|:| |scaleY| (|DoubleFloat|)) (|:| |scaleZ| (|DoubleFloat|)) (|:| |deltaX| (|DoubleFloat|)) (|:| |deltaY| (|DoubleFloat|)))) "\\spad{viewpoint(v,{}viewpt)} sets the viewpoint for the viewport. The viewport record consists of the latitudal and longitudal angles,{} the zoom factor,{} the \\spad{X},{} \\spad{Y},{} and \\spad{Z} scales,{} and the \\spad{X} and \\spad{Y} displacements.") (((|Record| (|:| |theta| (|DoubleFloat|)) (|:| |phi| (|DoubleFloat|)) (|:| |scale| (|DoubleFloat|)) (|:| |scaleX| (|DoubleFloat|)) (|:| |scaleY| (|DoubleFloat|)) (|:| |scaleZ| (|DoubleFloat|)) (|:| |deltaX| (|DoubleFloat|)) (|:| |deltaY| (|DoubleFloat|))) $) "\\spad{viewpoint(v)} returns the current viewpoint setting of the given viewport,{} \\spad{v}. This function is useful in the situation where the user has created a viewport,{} proceeded to interact with it via the control panel and desires to save the values of the viewpoint as the default settings for another viewport to be created using the system.") (((|Void|) $ (|Float|) (|Float|) (|Float|) (|Float|) (|Float|)) "\\spad{viewpoint(v,{}th,{}phi,{}s,{}dx,{}dy)} sets the longitudinal view angle to \\spad{th} radians,{} the latitudinal view angle to \\spad{phi} radians,{} the scale factor to \\spad{s},{} the horizontal viewport offset to \\spad{dx},{} and the vertical viewport offset to \\spad{dy} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}. The new viewpoint position is not displayed until the function \\spadfun{makeViewport3D} is executed again for \\spad{v}.")) (|dimensions| (((|Void|) $ (|NonNegativeInteger|) (|NonNegativeInteger|) (|PositiveInteger|) (|PositiveInteger|)) "\\spad{dimensions(v,{}x,{}y,{}width,{}height)} sets the position of the upper left-hand corner of the three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} to the window coordinate \\spad{x},{} \\spad{y},{} and sets the dimensions of the window to that of \\spad{width},{} \\spad{height}. The new dimensions are not displayed until the function \\spadfun{makeViewport3D} is executed again for \\spad{v}.")) (|title| (((|Void|) $ (|String|)) "\\spad{title(v,{}s)} changes the title which is shown in the three-dimensional viewport window,{} \\spad{v} of domain \\spadtype{ThreeDimensionalViewport}.")) (|resize| (((|Void|) $ (|PositiveInteger|) (|PositiveInteger|)) "\\spad{resize(v,{}w,{}h)} displays the three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} with a width of \\spad{w} and a height of \\spad{h},{} keeping the upper left-hand corner position unchanged.")) (|move| (((|Void|) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{move(v,{}x,{}y)} displays the three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} with the upper left-hand corner of the viewport window at the screen coordinate position \\spad{x},{} \\spad{y}.")) (|options| (($ $ (|List| (|DrawOption|))) "\\spad{options(v,{}lopt)} takes the viewport,{} \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport} and sets the draw options being used by \\spad{v} to those indicated in the list,{} \\spad{lopt},{} which is a list of options from the domain \\spad{DrawOption}.") (((|List| (|DrawOption|)) $) "\\spad{options(v)} takes the viewport,{} \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport} and returns a list of all the draw options from the domain \\spad{DrawOption} which are being used by \\spad{v}.")) (|modifyPointData| (((|Void|) $ (|NonNegativeInteger|) (|Point| (|DoubleFloat|))) "\\spad{modifyPointData(v,{}ind,{}pt)} takes the viewport,{} \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport},{} and places the data point,{} \\spad{pt} into the list of points database of \\spad{v} at the index location given by \\spad{ind}.")) (|subspace| (($ $ (|ThreeSpace| (|DoubleFloat|))) "\\spad{subspace(v,{}sp)} places the contents of the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport},{} in the subspace \\spad{sp},{} which is of the domain \\spad{ThreeSpace}.") (((|ThreeSpace| (|DoubleFloat|)) $) "\\spad{subspace(v)} returns the contents of the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport},{} as a subspace of the domain \\spad{ThreeSpace}.")) (|makeViewport3D| (($ (|ThreeSpace| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{makeViewport3D(sp,{}lopt)} takes the given space,{} \\spad{sp} which is of the domain \\spadtype{ThreeSpace} and displays a viewport window on the screen which contains the contents of \\spad{sp},{} and whose draw options are indicated by the list \\spad{lopt},{} which is a list of options from the domain \\spad{DrawOption}.") (($ (|ThreeSpace| (|DoubleFloat|)) (|String|)) "\\spad{makeViewport3D(sp,{}s)} takes the given space,{} \\spad{sp} which is of the domain \\spadtype{ThreeSpace} and displays a viewport window on the screen which contains the contents of \\spad{sp},{} and whose title is given by \\spad{s}.") (($ $) "\\spad{makeViewport3D(v)} takes the given three-dimensional viewport,{} \\spad{v},{} of the domain \\spadtype{ThreeDimensionalViewport} and displays a viewport window on the screen which contains the contents of \\spad{v}.")) (|viewport3D| (($) "\\spad{viewport3D()} returns an undefined three-dimensional viewport of the domain \\spadtype{ThreeDimensionalViewport} whose contents are empty.")) (|viewDeltaYDefault| (((|Float|) (|Float|)) "\\spad{viewDeltaYDefault(dy)} sets the current default vertical offset from the center of the viewport window to be \\spad{dy} and returns \\spad{dy}.") (((|Float|)) "\\spad{viewDeltaYDefault()} returns the current default vertical offset from the center of the viewport window.")) (|viewDeltaXDefault| (((|Float|) (|Float|)) "\\spad{viewDeltaXDefault(dx)} sets the current default horizontal offset from the center of the viewport window to be \\spad{dx} and returns \\spad{dx}.") (((|Float|)) "\\spad{viewDeltaXDefault()} returns the current default horizontal offset from the center of the viewport window.")) (|viewZoomDefault| (((|Float|) (|Float|)) "\\spad{viewZoomDefault(s)} sets the current default graph scaling value to \\spad{s} and returns \\spad{s}.") (((|Float|)) "\\spad{viewZoomDefault()} returns the current default graph scaling value.")) (|viewPhiDefault| (((|Float|) (|Float|)) "\\spad{viewPhiDefault(p)} sets the current default latitudinal view angle in radians to the value \\spad{p} and returns \\spad{p}.") (((|Float|)) "\\spad{viewPhiDefault()} returns the current default latitudinal view angle in radians.")) (|viewThetaDefault| (((|Float|) (|Float|)) "\\spad{viewThetaDefault(t)} sets the current default longitudinal view angle in radians to the value \\spad{t} and returns \\spad{t}.") (((|Float|)) "\\spad{viewThetaDefault()} returns the current default longitudinal view angle in radians.")))
NIL
NIL
-(-1172)
+(-1174)
((|constructor| (NIL "ViewportDefaultsPackage describes default and user definable values for graphics")) (|tubeRadiusDefault| (((|DoubleFloat|)) "\\spad{tubeRadiusDefault()} returns the radius used for a 3D tube plot.") (((|DoubleFloat|) (|Float|)) "\\spad{tubeRadiusDefault(r)} sets the default radius for a 3D tube plot to \\spad{r}.")) (|tubePointsDefault| (((|PositiveInteger|)) "\\spad{tubePointsDefault()} returns the number of points to be used when creating the circle to be used in creating a 3D tube plot.") (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{tubePointsDefault(i)} sets the number of points to use when creating the circle to be used in creating a 3D tube plot to \\spad{i}.")) (|var2StepsDefault| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{var2StepsDefault(i)} sets the number of steps to take when creating a 3D mesh in the direction of the first defined free variable to \\spad{i} (a free variable is considered defined when its range is specified (\\spadignore{e.g.} \\spad{x=0}..10)).") (((|PositiveInteger|)) "\\spad{var2StepsDefault()} is the current setting for the number of steps to take when creating a 3D mesh in the direction of the first defined free variable (a free variable is considered defined when its range is specified (\\spadignore{e.g.} \\spad{x=0}..10)).")) (|var1StepsDefault| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{var1StepsDefault(i)} sets the number of steps to take when creating a 3D mesh in the direction of the first defined free variable to \\spad{i} (a free variable is considered defined when its range is specified (\\spadignore{e.g.} \\spad{x=0}..10)).") (((|PositiveInteger|)) "\\spad{var1StepsDefault()} is the current setting for the number of steps to take when creating a 3D mesh in the direction of the first defined free variable (a free variable is considered defined when its range is specified (\\spadignore{e.g.} \\spad{x=0}..10)).")) (|viewWriteAvailable| (((|List| (|String|))) "\\spad{viewWriteAvailable()} returns a list of available methods for writing,{} such as BITMAP,{} POSTSCRIPT,{} etc.")) (|viewWriteDefault| (((|List| (|String|)) (|List| (|String|))) "\\spad{viewWriteDefault(l)} sets the default list of things to write in a viewport data file to the strings in \\spad{l}; a viewAlone file is always genereated.") (((|List| (|String|))) "\\spad{viewWriteDefault()} returns the list of things to write in a viewport data file; a viewAlone file is always generated.")) (|viewDefaults| (((|Void|)) "\\spad{viewDefaults()} resets all the default graphics settings.")) (|viewSizeDefault| (((|List| (|PositiveInteger|)) (|List| (|PositiveInteger|))) "\\spad{viewSizeDefault([w,{}h])} sets the default viewport width to \\spad{w} and height to \\spad{h}.") (((|List| (|PositiveInteger|))) "\\spad{viewSizeDefault()} returns the default viewport width and height.")) (|viewPosDefault| (((|List| (|NonNegativeInteger|)) (|List| (|NonNegativeInteger|))) "\\spad{viewPosDefault([x,{}y])} sets the default \\spad{X} and \\spad{Y} position of a viewport window unless overriden explicityly,{} newly created viewports will have th \\spad{X} and \\spad{Y} coordinates \\spad{x},{} \\spad{y}.") (((|List| (|NonNegativeInteger|))) "\\spad{viewPosDefault()} returns the default \\spad{X} and \\spad{Y} position of a viewport window unless overriden explicityly,{} newly created viewports will have this \\spad{X} and \\spad{Y} coordinate.")) (|pointSizeDefault| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{pointSizeDefault(i)} sets the default size of the points in a 2D viewport to \\spad{i}.") (((|PositiveInteger|)) "\\spad{pointSizeDefault()} returns the default size of the points in a 2D viewport.")) (|unitsColorDefault| (((|Palette|) (|Palette|)) "\\spad{unitsColorDefault(p)} sets the default color of the unit ticks in a 2D viewport to the palette \\spad{p}.") (((|Palette|)) "\\spad{unitsColorDefault()} returns the default color of the unit ticks in a 2D viewport.")) (|axesColorDefault| (((|Palette|) (|Palette|)) "\\spad{axesColorDefault(p)} sets the default color of the axes in a 2D viewport to the palette \\spad{p}.") (((|Palette|)) "\\spad{axesColorDefault()} returns the default color of the axes in a 2D viewport.")) (|lineColorDefault| (((|Palette|) (|Palette|)) "\\spad{lineColorDefault(p)} sets the default color of lines connecting points in a 2D viewport to the palette \\spad{p}.") (((|Palette|)) "\\spad{lineColorDefault()} returns the default color of lines connecting points in a 2D viewport.")) (|pointColorDefault| (((|Palette|) (|Palette|)) "\\spad{pointColorDefault(p)} sets the default color of points in a 2D viewport to the palette \\spad{p}.") (((|Palette|)) "\\spad{pointColorDefault()} returns the default color of points in a 2D viewport.")))
NIL
NIL
-(-1173)
+(-1175)
((|constructor| (NIL "ViewportPackage provides functions for creating GraphImages and TwoDimensionalViewports from lists of lists of points.")) (|coerce| (((|TwoDimensionalViewport|) (|GraphImage|)) "\\spad{coerce(\\spad{gi})} converts the indicated \\spadtype{GraphImage},{} \\spad{gi},{} into the \\spadtype{TwoDimensionalViewport} form.")) (|drawCurves| (((|TwoDimensionalViewport|) (|List| (|List| (|Point| (|DoubleFloat|)))) (|List| (|DrawOption|))) "\\spad{drawCurves([[p0],{}[p1],{}...,{}[pn]],{}[options])} creates a \\spadtype{TwoDimensionalViewport} from the list of lists of points,{} \\spad{p0} throught \\spad{pn},{} using the options specified in the list \\spad{options}.") (((|TwoDimensionalViewport|) (|List| (|List| (|Point| (|DoubleFloat|)))) (|Palette|) (|Palette|) (|PositiveInteger|) (|List| (|DrawOption|))) "\\spad{drawCurves([[p0],{}[p1],{}...,{}[pn]],{}ptColor,{}lineColor,{}ptSize,{}[options])} creates a \\spadtype{TwoDimensionalViewport} from the list of lists of points,{} \\spad{p0} throught \\spad{pn},{} using the options specified in the list \\spad{options}. The point color is specified by \\spad{ptColor},{} the line color is specified by \\spad{lineColor},{} and the point size is specified by \\spad{ptSize}.")) (|graphCurves| (((|GraphImage|) (|List| (|List| (|Point| (|DoubleFloat|)))) (|List| (|DrawOption|))) "\\spad{graphCurves([[p0],{}[p1],{}...,{}[pn]],{}[options])} creates a \\spadtype{GraphImage} from the list of lists of points,{} \\spad{p0} throught \\spad{pn},{} using the options specified in the list \\spad{options}.") (((|GraphImage|) (|List| (|List| (|Point| (|DoubleFloat|))))) "\\spad{graphCurves([[p0],{}[p1],{}...,{}[pn]])} creates a \\spadtype{GraphImage} from the list of lists of points indicated by \\spad{p0} through \\spad{pn}.") (((|GraphImage|) (|List| (|List| (|Point| (|DoubleFloat|)))) (|Palette|) (|Palette|) (|PositiveInteger|) (|List| (|DrawOption|))) "\\spad{graphCurves([[p0],{}[p1],{}...,{}[pn]],{}ptColor,{}lineColor,{}ptSize,{}[options])} creates a \\spadtype{GraphImage} from the list of lists of points,{} \\spad{p0} throught \\spad{pn},{} using the options specified in the list \\spad{options}. The graph point color is specified by \\spad{ptColor},{} the graph line color is specified by \\spad{lineColor},{} and the size of the points is specified by \\spad{ptSize}.")))
NIL
NIL
-(-1174)
+(-1176)
((|constructor| (NIL "This type is used when no value is needed,{} \\spadignore{e.g.} in the \\spad{then} part of a one armed \\spad{if}. All values can be coerced to type Void. Once a value has been coerced to Void,{} it cannot be recovered.")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(v)} coerces void object to outputForm.")) (|void| (($) "\\spad{void()} produces a void object.")))
NIL
NIL
-(-1175 A S)
+(-1177 A S)
((|constructor| (NIL "Vector Spaces (not necessarily finite dimensional) over a field.")) (|dimension| (((|CardinalNumber|)) "\\spad{dimension()} returns the dimensionality of the vector space.")) (/ (($ $ |#2|) "\\spad{x/y} divides the vector \\spad{x} by the scalar \\spad{y}.")))
NIL
NIL
-(-1176 S)
+(-1178 S)
((|constructor| (NIL "Vector Spaces (not necessarily finite dimensional) over a field.")) (|dimension| (((|CardinalNumber|)) "\\spad{dimension()} returns the dimensionality of the vector space.")) (/ (($ $ |#1|) "\\spad{x/y} divides the vector \\spad{x} by the scalar \\spad{y}.")))
-((-4243 . T) (-4242 . T))
+((-4245 . T) (-4244 . T))
NIL
-(-1177 R)
+(-1179 R)
((|constructor| (NIL "This package implements the Weierstrass preparation theorem \\spad{f} or multivariate power series. weierstrass(\\spad{v},{}\\spad{p}) where \\spad{v} is a variable,{} and \\spad{p} is a TaylorSeries(\\spad{R}) in which the terms of lowest degree \\spad{s} must include c*v**s where \\spad{c} is a constant,{}\\spad{s>0},{} is a list of TaylorSeries coefficients A[\\spad{i}] of the equivalent polynomial A = A[0] + A[1]\\spad{*v} + A[2]*v**2 + ... + A[\\spad{s}-1]*v**(\\spad{s}-1) + v**s such that p=A*B ,{} \\spad{B} being a TaylorSeries of minimum degree 0")) (|qqq| (((|Mapping| (|Stream| (|TaylorSeries| |#1|)) (|Stream| (|TaylorSeries| |#1|))) (|NonNegativeInteger|) (|TaylorSeries| |#1|) (|Stream| (|TaylorSeries| |#1|))) "\\spad{qqq(n,{}s,{}st)} is used internally.")) (|weierstrass| (((|List| (|TaylorSeries| |#1|)) (|Symbol|) (|TaylorSeries| |#1|)) "\\spad{weierstrass(v,{}ts)} where \\spad{v} is a variable and \\spad{ts} is \\indented{1}{a TaylorSeries,{} impements the Weierstrass Preparation} \\indented{1}{Theorem. The result is a list of TaylorSeries that} \\indented{1}{are the coefficients of the equivalent series.}")) (|clikeUniv| (((|Mapping| (|SparseUnivariatePolynomial| (|Polynomial| |#1|)) (|Polynomial| |#1|)) (|Symbol|)) "\\spad{clikeUniv(v)} is used internally.")) (|sts2stst| (((|Stream| (|Stream| (|Polynomial| |#1|))) (|Symbol|) (|Stream| (|Polynomial| |#1|))) "\\spad{sts2stst(v,{}s)} is used internally.")) (|cfirst| (((|Mapping| (|Stream| (|Polynomial| |#1|)) (|Stream| (|Polynomial| |#1|))) (|NonNegativeInteger|)) "\\spad{cfirst n} is used internally.")) (|crest| (((|Mapping| (|Stream| (|Polynomial| |#1|)) (|Stream| (|Polynomial| |#1|))) (|NonNegativeInteger|)) "\\spad{crest n} is used internally.")))
NIL
NIL
-(-1178 K R UP -3894)
+(-1180 K R UP -3576)
((|constructor| (NIL "In this package \\spad{K} is a finite field,{} \\spad{R} is a ring of univariate polynomials over \\spad{K},{} and \\spad{F} is a framed algebra over \\spad{R}. The package provides a function to compute the integral closure of \\spad{R} in the quotient field of \\spad{F} as well as a function to compute a \"local integral basis\" at a specific prime.")) (|localIntegralBasis| (((|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|))) |#2|) "\\spad{integralBasis(p)} returns a record \\spad{[basis,{}basisDen,{}basisInv]} containing information regarding the local integral closure of \\spad{R} at the prime \\spad{p} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,{}w2,{}...,{}wn}. If \\spad{basis} is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the local integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if \\spad{basisInv} is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")) (|integralBasis| (((|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|)))) "\\spad{integralBasis()} returns a record \\spad{[basis,{}basisDen,{}basisInv]} containing information regarding the integral closure of \\spad{R} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,{}w2,{}...,{}wn}. If \\spad{basis} is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if \\spad{basisInv} is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")))
NIL
NIL
-(-1179 R |VarSet| E P |vl| |wl| |wtlevel|)
+(-1181 R |VarSet| E P |vl| |wl| |wtlevel|)
((|constructor| (NIL "This domain represents truncated weighted polynomials over a general (not necessarily commutative) polynomial type. The variables must be specified,{} as must the weights. The representation is sparse in the sense that only non-zero terms are represented.")) (|changeWeightLevel| (((|Void|) (|NonNegativeInteger|)) "\\spad{changeWeightLevel(n)} changes the weight level to the new value given: \\spad{NB:} previously calculated terms are not affected")) (/ (((|Union| $ "failed") $ $) "\\spad{x/y} division (only works if minimum weight of divisor is zero,{} and if \\spad{R} is a Field)")) (|coerce| (($ |#4|) "\\spad{coerce(p)} coerces \\spad{p} into Weighted form,{} applying weights and ignoring terms") ((|#4| $) "convert back into a \\spad{\"P\"},{} ignoring weights")))
-((-4243 |has| |#1| (-158)) (-4242 |has| |#1| (-158)) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))))
-(-1180 R E V P)
+((-4245 |has| |#1| (-160)) (-4244 |has| |#1| (-160)) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))))
+(-1182 R E V P)
((|constructor| (NIL "A domain constructor of the category \\axiomType{GeneralTriangularSet}. The only requirement for a list of polynomials to be a member of such a domain is the following: no polynomial is constant and two distinct polynomials have distinct main variables. Such a triangular set may not be auto-reduced or consistent. The \\axiomOpFrom{construct}{WuWenTsunTriangularSet} operation does not check the previous requirement. Triangular sets are stored as sorted lists \\spad{w}.\\spad{r}.\\spad{t}. the main variables of their members. Furthermore,{} this domain exports operations dealing with the characteristic set method of Wu Wen Tsun and some optimizations mainly proposed by Dong Ming Wang.\\newline References : \\indented{1}{[1] \\spad{W}. \\spad{T}. WU \"A Zero Structure Theorem for polynomial equations solving\"} \\indented{6}{\\spad{MM} Research Preprints,{} 1987.} \\indented{1}{[2] \\spad{D}. \\spad{M}. WANG \"An implementation of the characteristic set method in Maple\"} \\indented{6}{Proc. DISCO'92. Bath,{} England.}")) (|characteristicSerie| (((|List| $) (|List| |#4|)) "\\axiom{characteristicSerie(\\spad{ps})} returns the same as \\axiom{characteristicSerie(\\spad{ps},{}initiallyReduced?,{}initiallyReduce)}.") (((|List| $) (|List| |#4|) (|Mapping| (|Boolean|) |#4| |#4|) (|Mapping| |#4| |#4| |#4|)) "\\axiom{characteristicSerie(\\spad{ps},{}redOp?,{}redOp)} returns a list \\axiom{\\spad{lts}} of triangular sets such that the zero set of \\axiom{\\spad{ps}} is the union of the regular zero sets of the members of \\axiom{\\spad{lts}}. This is made by the Ritt and Wu Wen Tsun process applying the operation \\axiom{characteristicSet(\\spad{ps},{}redOp?,{}redOp)} to compute characteristic sets in Wu Wen Tsun sense.")) (|characteristicSet| (((|Union| $ "failed") (|List| |#4|)) "\\axiom{characteristicSet(\\spad{ps})} returns the same as \\axiom{characteristicSet(\\spad{ps},{}initiallyReduced?,{}initiallyReduce)}.") (((|Union| $ "failed") (|List| |#4|) (|Mapping| (|Boolean|) |#4| |#4|) (|Mapping| |#4| |#4| |#4|)) "\\axiom{characteristicSet(\\spad{ps},{}redOp?,{}redOp)} returns a non-contradictory characteristic set of \\axiom{\\spad{ps}} in Wu Wen Tsun sense \\spad{w}.\\spad{r}.\\spad{t} the reduction-test \\axiom{redOp?} (using \\axiom{redOp} to reduce polynomials \\spad{w}.\\spad{r}.\\spad{t} a \\axiom{redOp?} basic set),{} if no non-zero constant polynomial appear during those reductions,{} else \\axiom{\"failed\"} is returned. The operations \\axiom{redOp} and \\axiom{redOp?} must satisfy the following conditions: \\axiom{redOp?(redOp(\\spad{p},{}\\spad{q}),{}\\spad{q})} holds for every polynomials \\axiom{\\spad{p},{}\\spad{q}} and there exists an integer \\axiom{\\spad{e}} and a polynomial \\axiom{\\spad{f}} such that we have \\axiom{init(\\spad{q})^e*p = \\spad{f*q} + redOp(\\spad{p},{}\\spad{q})}.")) (|medialSet| (((|Union| $ "failed") (|List| |#4|)) "\\axiom{medial(\\spad{ps})} returns the same as \\axiom{medialSet(\\spad{ps},{}initiallyReduced?,{}initiallyReduce)}.") (((|Union| $ "failed") (|List| |#4|) (|Mapping| (|Boolean|) |#4| |#4|) (|Mapping| |#4| |#4| |#4|)) "\\axiom{medialSet(\\spad{ps},{}redOp?,{}redOp)} returns \\axiom{\\spad{bs}} a basic set (in Wu Wen Tsun sense \\spad{w}.\\spad{r}.\\spad{t} the reduction-test \\axiom{redOp?}) of some set generating the same ideal as \\axiom{\\spad{ps}} (with rank not higher than any basic set of \\axiom{\\spad{ps}}),{} if no non-zero constant polynomials appear during the computatioms,{} else \\axiom{\"failed\"} is returned. In the former case,{} \\axiom{\\spad{bs}} has to be understood as a candidate for being a characteristic set of \\axiom{\\spad{ps}}. In the original algorithm,{} \\axiom{\\spad{bs}} is simply a basic set of \\axiom{\\spad{ps}}.")))
-((-4249 . T) (-4248 . T))
-((-12 (|HasCategory| |#4| (QUOTE (-1016))) (|HasCategory| |#4| (LIST (QUOTE -286) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -564) (QUOTE (-499)))) (|HasCategory| |#4| (QUOTE (-1016))) (|HasCategory| |#1| (QUOTE (-515))) (|HasCategory| |#3| (QUOTE (-344))) (|HasCategory| |#4| (LIST (QUOTE -563) (QUOTE (-794)))))
-(-1181 R)
+((-4251 . T) (-4250 . T))
+((-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -288) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -566) (QUOTE (-501)))) (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-517))) (|HasCategory| |#3| (QUOTE (-346))) (|HasCategory| |#4| (LIST (QUOTE -565) (QUOTE (-796)))))
+(-1183 R)
((|constructor| (NIL "This is the category of algebras over non-commutative rings. It is used by constructors of non-commutative algebras such as: \\indented{4}{\\spadtype{XPolynomialRing}.} \\indented{4}{\\spadtype{XFreeAlgebra}} Author: Michel Petitot (petitot@lifl.\\spad{fr})")) (|coerce| (($ |#1|) "\\spad{coerce(r)} equals \\spad{r*1}.")))
-((-4242 . T) (-4243 . T) (-4245 . T))
+((-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-1182 |vl| R)
+(-1184 |vl| R)
((|constructor| (NIL "\\indented{2}{This type supports distributed multivariate polynomials} whose variables do not commute. The coefficient ring may be non-commutative too. However,{} coefficients and variables commute.")))
-((-4245 . T) (-4241 |has| |#2| (-6 -4241)) (-4243 . T) (-4242 . T))
-((|HasCategory| |#2| (QUOTE (-158))) (|HasAttribute| |#2| (QUOTE -4241)))
-(-1183 R |VarSet| XPOLY)
+((-4247 . T) (-4243 |has| |#2| (-6 -4243)) (-4245 . T) (-4244 . T))
+((|HasCategory| |#2| (QUOTE (-160))) (|HasAttribute| |#2| (QUOTE -4243)))
+(-1185 R |VarSet| XPOLY)
((|constructor| (NIL "This package provides computations of logarithms and exponentials for polynomials in non-commutative variables. \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr}).")) (|Hausdorff| ((|#3| |#3| |#3| (|NonNegativeInteger|)) "\\axiom{Hausdorff(a,{}\\spad{b},{}\\spad{n})} returns log(exp(a)*exp(\\spad{b})) truncated at order \\axiom{\\spad{n}}.")) (|log| ((|#3| |#3| (|NonNegativeInteger|)) "\\axiom{log(\\spad{p},{} \\spad{n})} returns the logarithm of \\axiom{\\spad{p}} truncated at order \\axiom{\\spad{n}}.")) (|exp| ((|#3| |#3| (|NonNegativeInteger|)) "\\axiom{exp(\\spad{p},{} \\spad{n})} returns the exponential of \\axiom{\\spad{p}} truncated at order \\axiom{\\spad{n}}.")))
NIL
NIL
-(-1184 |vl| R)
+(-1186 |vl| R)
((|constructor| (NIL "This category specifies opeations for polynomials and formal series with non-commutative variables.")) (|varList| (((|List| |#1|) $) "\\spad{varList(x)} returns the list of variables which appear in \\spad{x}.")) (|map| (($ (|Mapping| |#2| |#2|) $) "\\spad{map(fn,{}x)} returns \\spad{Sum(fn(r_i) w_i)} if \\spad{x} writes \\spad{Sum(r_i w_i)}.")) (|sh| (($ $ (|NonNegativeInteger|)) "\\spad{sh(x,{}n)} returns the shuffle power of \\spad{x} to the \\spad{n}.") (($ $ $) "\\spad{sh(x,{}y)} returns the shuffle-product of \\spad{x} by \\spad{y}. This multiplication is associative and commutative.")) (|quasiRegular| (($ $) "\\spad{quasiRegular(x)} return \\spad{x} minus its constant term.")) (|quasiRegular?| (((|Boolean|) $) "\\spad{quasiRegular?(x)} return \\spad{true} if \\spad{constant(x)} is zero.")) (|constant| ((|#2| $) "\\spad{constant(x)} returns the constant term of \\spad{x}.")) (|constant?| (((|Boolean|) $) "\\spad{constant?(x)} returns \\spad{true} if \\spad{x} is constant.")) (|coerce| (($ |#1|) "\\spad{coerce(v)} returns \\spad{v}.")) (|mirror| (($ $) "\\spad{mirror(x)} returns \\spad{Sum(r_i mirror(w_i))} if \\spad{x} writes \\spad{Sum(r_i w_i)}.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(x)} returns \\spad{true} if \\spad{x} is a monomial")) (|monom| (($ (|OrderedFreeMonoid| |#1|) |#2|) "\\spad{monom(w,{}r)} returns the product of the word \\spad{w} by the coefficient \\spad{r}.")) (|rquo| (($ $ $) "\\spad{rquo(x,{}y)} returns the right simplification of \\spad{x} by \\spad{y}.") (($ $ (|OrderedFreeMonoid| |#1|)) "\\spad{rquo(x,{}w)} returns the right simplification of \\spad{x} by \\spad{w}.") (($ $ |#1|) "\\spad{rquo(x,{}v)} returns the right simplification of \\spad{x} by the variable \\spad{v}.")) (|lquo| (($ $ $) "\\spad{lquo(x,{}y)} returns the left simplification of \\spad{x} by \\spad{y}.") (($ $ (|OrderedFreeMonoid| |#1|)) "\\spad{lquo(x,{}w)} returns the left simplification of \\spad{x} by the word \\spad{w}.") (($ $ |#1|) "\\spad{lquo(x,{}v)} returns the left simplification of \\spad{x} by the variable \\spad{v}.")) (|coef| ((|#2| $ $) "\\spad{coef(x,{}y)} returns scalar product of \\spad{x} by \\spad{y},{} the set of words being regarded as an orthogonal basis.") ((|#2| $ (|OrderedFreeMonoid| |#1|)) "\\spad{coef(x,{}w)} returns the coefficient of the word \\spad{w} in \\spad{x}.")) (|mindegTerm| (((|Record| (|:| |k| (|OrderedFreeMonoid| |#1|)) (|:| |c| |#2|)) $) "\\spad{mindegTerm(x)} returns the term whose word is \\spad{mindeg(x)}.")) (|mindeg| (((|OrderedFreeMonoid| |#1|) $) "\\spad{mindeg(x)} returns the little word which appears in \\spad{x}. Error if \\spad{x=0}.")) (* (($ $ |#2|) "\\spad{x * r} returns the product of \\spad{x} by \\spad{r}. Usefull if \\spad{R} is a non-commutative Ring.") (($ |#1| $) "\\spad{v * x} returns the product of a variable \\spad{x} by \\spad{x}.")))
-((-4241 |has| |#2| (-6 -4241)) (-4243 . T) (-4242 . T) (-4245 . T))
+((-4243 |has| |#2| (-6 -4243)) (-4245 . T) (-4244 . T) (-4247 . T))
NIL
-(-1185 S -3894)
+(-1187 S -3576)
((|constructor| (NIL "ExtensionField {\\em F} is the category of fields which extend the field \\spad{F}")) (|Frobenius| (($ $ (|NonNegativeInteger|)) "\\spad{Frobenius(a,{}s)} returns \\spad{a**(q**s)} where \\spad{q} is the size()\\$\\spad{F}.") (($ $) "\\spad{Frobenius(a)} returns \\spad{a ** q} where \\spad{q} is the \\spad{size()\\$F}.")) (|transcendenceDegree| (((|NonNegativeInteger|)) "\\spad{transcendenceDegree()} returns the transcendence degree of the field extension,{} 0 if the extension is algebraic.")) (|extensionDegree| (((|OnePointCompletion| (|PositiveInteger|))) "\\spad{extensionDegree()} returns the degree of the field extension if the extension is algebraic,{} and \\spad{infinity} if it is not.")) (|degree| (((|OnePointCompletion| (|PositiveInteger|)) $) "\\spad{degree(a)} returns the degree of minimal polynomial of an element \\spad{a} if \\spad{a} is algebraic with respect to the ground field \\spad{F},{} and \\spad{infinity} otherwise.")) (|inGroundField?| (((|Boolean|) $) "\\spad{inGroundField?(a)} tests whether an element \\spad{a} is already in the ground field \\spad{F}.")) (|transcendent?| (((|Boolean|) $) "\\spad{transcendent?(a)} tests whether an element \\spad{a} is transcendent with respect to the ground field \\spad{F}.")) (|algebraic?| (((|Boolean|) $) "\\spad{algebraic?(a)} tests whether an element \\spad{a} is algebraic with respect to the ground field \\spad{F}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-344))) (|HasCategory| |#2| (QUOTE (-134))) (|HasCategory| |#2| (QUOTE (-136))))
-(-1186 -3894)
+((|HasCategory| |#2| (QUOTE (-346))) (|HasCategory| |#2| (QUOTE (-136))) (|HasCategory| |#2| (QUOTE (-138))))
+(-1188 -3576)
((|constructor| (NIL "ExtensionField {\\em F} is the category of fields which extend the field \\spad{F}")) (|Frobenius| (($ $ (|NonNegativeInteger|)) "\\spad{Frobenius(a,{}s)} returns \\spad{a**(q**s)} where \\spad{q} is the size()\\$\\spad{F}.") (($ $) "\\spad{Frobenius(a)} returns \\spad{a ** q} where \\spad{q} is the \\spad{size()\\$F}.")) (|transcendenceDegree| (((|NonNegativeInteger|)) "\\spad{transcendenceDegree()} returns the transcendence degree of the field extension,{} 0 if the extension is algebraic.")) (|extensionDegree| (((|OnePointCompletion| (|PositiveInteger|))) "\\spad{extensionDegree()} returns the degree of the field extension if the extension is algebraic,{} and \\spad{infinity} if it is not.")) (|degree| (((|OnePointCompletion| (|PositiveInteger|)) $) "\\spad{degree(a)} returns the degree of minimal polynomial of an element \\spad{a} if \\spad{a} is algebraic with respect to the ground field \\spad{F},{} and \\spad{infinity} otherwise.")) (|inGroundField?| (((|Boolean|) $) "\\spad{inGroundField?(a)} tests whether an element \\spad{a} is already in the ground field \\spad{F}.")) (|transcendent?| (((|Boolean|) $) "\\spad{transcendent?(a)} tests whether an element \\spad{a} is transcendent with respect to the ground field \\spad{F}.")) (|algebraic?| (((|Boolean|) $) "\\spad{algebraic?(a)} tests whether an element \\spad{a} is algebraic with respect to the ground field \\spad{F}.")))
-((-4240 . T) (-4246 . T) (-4241 . T) ((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+((-4242 . T) (-4248 . T) (-4243 . T) ((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
-(-1187 |VarSet| R)
+(-1189 |VarSet| R)
((|constructor| (NIL "This domain constructor implements polynomials in non-commutative variables written in the Poincare-Birkhoff-Witt basis from the Lyndon basis. These polynomials can be used to compute Baker-Campbell-Hausdorff relations. \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr}).")) (|log| (($ $ (|NonNegativeInteger|)) "\\axiom{log(\\spad{p},{}\\spad{n})} returns the logarithm of \\axiom{\\spad{p}} (truncated up to order \\axiom{\\spad{n}}).")) (|exp| (($ $ (|NonNegativeInteger|)) "\\axiom{exp(\\spad{p},{}\\spad{n})} returns the exponential of \\axiom{\\spad{p}} (truncated up to order \\axiom{\\spad{n}}).")) (|product| (($ $ $ (|NonNegativeInteger|)) "\\axiom{product(a,{}\\spad{b},{}\\spad{n})} returns \\axiom{a*b} (truncated up to order \\axiom{\\spad{n}}).")) (|LiePolyIfCan| (((|Union| (|LiePolynomial| |#1| |#2|) "failed") $) "\\axiom{LiePolyIfCan(\\spad{p})} return \\axiom{\\spad{p}} if \\axiom{\\spad{p}} is a Lie polynomial.")) (|coerce| (((|XRecursivePolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{p})} returns \\axiom{\\spad{p}} as a recursive polynomial.") (((|XDistributedPolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{p})} returns \\axiom{\\spad{p}} as a distributed polynomial.") (($ (|LiePolynomial| |#1| |#2|)) "\\axiom{coerce(\\spad{p})} returns \\axiom{\\spad{p}}.")))
-((-4241 |has| |#2| (-6 -4241)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#2| (QUOTE (-158))) (|HasCategory| |#2| (LIST (QUOTE -657) (LIST (QUOTE -383) (QUOTE (-523))))) (|HasAttribute| |#2| (QUOTE -4241)))
-(-1188 |vl| R)
+((-4243 |has| |#2| (-6 -4243)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#2| (QUOTE (-160))) (|HasCategory| |#2| (LIST (QUOTE -659) (LIST (QUOTE -385) (QUOTE (-525))))) (|HasAttribute| |#2| (QUOTE -4243)))
+(-1190 |vl| R)
((|constructor| (NIL "The Category of polynomial rings with non-commutative variables. The coefficient ring may be non-commutative too. However coefficients commute with vaiables.")) (|trunc| (($ $ (|NonNegativeInteger|)) "\\spad{trunc(p,{}n)} returns the polynomial \\spad{p} truncated at order \\spad{n}.")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(p)} returns the degree of \\spad{p}. \\indented{1}{Note that the degree of a word is its length.}")) (|maxdeg| (((|OrderedFreeMonoid| |#1|) $) "\\spad{maxdeg(p)} returns the greatest leading word in the support of \\spad{p}.")))
-((-4241 |has| |#2| (-6 -4241)) (-4243 . T) (-4242 . T) (-4245 . T))
+((-4243 |has| |#2| (-6 -4243)) (-4245 . T) (-4244 . T) (-4247 . T))
NIL
-(-1189 R)
+(-1191 R)
((|constructor| (NIL "\\indented{2}{This type supports multivariate polynomials} whose set of variables is \\spadtype{Symbol}. The representation is recursive. The coefficient ring may be non-commutative and the variables do not commute. However,{} coefficients and variables commute.")))
-((-4241 |has| |#1| (-6 -4241)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#1| (QUOTE (-158))) (|HasAttribute| |#1| (QUOTE -4241)))
-(-1190 R E)
+((-4243 |has| |#1| (-6 -4243)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#1| (QUOTE (-160))) (|HasAttribute| |#1| (QUOTE -4243)))
+(-1192 R E)
((|constructor| (NIL "This domain represents generalized polynomials with coefficients (from a not necessarily commutative ring),{} and words belonging to an arbitrary \\spadtype{OrderedMonoid}. This type is used,{} for instance,{} by the \\spadtype{XDistributedPolynomial} domain constructor where the Monoid is free.")) (|canonicalUnitNormal| ((|attribute|) "canonicalUnitNormal guarantees that the function unitCanonical returns the same representative for all associates of any particular element.")) (/ (($ $ |#1|) "\\spad{p/r} returns \\spad{p*(1/r)}.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(fn,{}x)} returns \\spad{Sum(fn(r_i) w_i)} if \\spad{x} writes \\spad{Sum(r_i w_i)}.")) (|quasiRegular| (($ $) "\\spad{quasiRegular(x)} return \\spad{x} minus its constant term.")) (|quasiRegular?| (((|Boolean|) $) "\\spad{quasiRegular?(x)} return \\spad{true} if \\spad{constant(p)} is zero.")) (|constant| ((|#1| $) "\\spad{constant(p)} return the constant term of \\spad{p}.")) (|constant?| (((|Boolean|) $) "\\spad{constant?(p)} tests whether the polynomial \\spad{p} belongs to the coefficient ring.")) (|coef| ((|#1| $ |#2|) "\\spad{coef(p,{}e)} extracts the coefficient of the monomial \\spad{e}. Returns zero if \\spad{e} is not present.")) (|reductum| (($ $) "\\spad{reductum(p)} returns \\spad{p} minus its leading term. An error is produced if \\spad{p} is zero.")) (|mindeg| ((|#2| $) "\\spad{mindeg(p)} returns the smallest word occurring in the polynomial \\spad{p} with a non-zero coefficient. An error is produced if \\spad{p} is zero.")) (|maxdeg| ((|#2| $) "\\spad{maxdeg(p)} returns the greatest word occurring in the polynomial \\spad{p} with a non-zero coefficient. An error is produced if \\spad{p} is zero.")) (|coerce| (($ |#2|) "\\spad{coerce(e)} returns \\spad{1*e}")) (|#| (((|NonNegativeInteger|) $) "\\spad{\\# p} returns the number of terms in \\spad{p}.")) (* (($ $ |#1|) "\\spad{p*r} returns the product of \\spad{p} by \\spad{r}.")))
-((-4245 . T) (-4246 |has| |#1| (-6 -4246)) (-4241 |has| |#1| (-6 -4241)) (-4243 . T) (-4242 . T))
-((|HasCategory| |#1| (QUOTE (-158))) (|HasCategory| |#1| (QUOTE (-339))) (|HasAttribute| |#1| (QUOTE -4245)) (|HasAttribute| |#1| (QUOTE -4246)) (|HasAttribute| |#1| (QUOTE -4241)))
-(-1191 |VarSet| R)
+((-4247 . T) (-4248 |has| |#1| (-6 -4248)) (-4243 |has| |#1| (-6 -4243)) (-4245 . T) (-4244 . T))
+((|HasCategory| |#1| (QUOTE (-160))) (|HasCategory| |#1| (QUOTE (-341))) (|HasAttribute| |#1| (QUOTE -4247)) (|HasAttribute| |#1| (QUOTE -4248)) (|HasAttribute| |#1| (QUOTE -4243)))
+(-1193 |VarSet| R)
((|constructor| (NIL "\\indented{2}{This type supports multivariate polynomials} whose variables do not commute. The representation is recursive. The coefficient ring may be non-commutative. Coefficients and variables commute.")) (|RemainderList| (((|List| (|Record| (|:| |k| |#1|) (|:| |c| $))) $) "\\spad{RemainderList(p)} returns the regular part of \\spad{p} as a list of terms.")) (|unexpand| (($ (|XDistributedPolynomial| |#1| |#2|)) "\\spad{unexpand(p)} returns \\spad{p} in recursive form.")) (|expand| (((|XDistributedPolynomial| |#1| |#2|) $) "\\spad{expand(p)} returns \\spad{p} in distributed form.")))
-((-4241 |has| |#2| (-6 -4241)) (-4243 . T) (-4242 . T) (-4245 . T))
-((|HasCategory| |#2| (QUOTE (-158))) (|HasAttribute| |#2| (QUOTE -4241)))
-(-1192 A)
+((-4243 |has| |#2| (-6 -4243)) (-4245 . T) (-4244 . T) (-4247 . T))
+((|HasCategory| |#2| (QUOTE (-160))) (|HasAttribute| |#2| (QUOTE -4243)))
+(-1194 A)
((|constructor| (NIL "This package implements fixed-point computations on streams.")) (Y (((|List| (|Stream| |#1|)) (|Mapping| (|List| (|Stream| |#1|)) (|List| (|Stream| |#1|))) (|Integer|)) "\\spad{Y(g,{}n)} computes a fixed point of the function \\spad{g},{} where \\spad{g} takes a list of \\spad{n} streams and returns a list of \\spad{n} streams.") (((|Stream| |#1|) (|Mapping| (|Stream| |#1|) (|Stream| |#1|))) "\\spad{Y(f)} computes a fixed point of the function \\spad{f}.")))
NIL
NIL
-(-1193 R |ls| |ls2|)
+(-1195 R |ls| |ls2|)
((|constructor| (NIL "A package for computing symbolically the complex and real roots of zero-dimensional algebraic systems over the integer or rational numbers. Complex roots are given by means of univariate representations of irreducible regular chains. Real roots are given by means of tuples of coordinates lying in the \\spadtype{RealClosure} of the coefficient ring. This constructor takes three arguments. The first one \\spad{R} is the coefficient ring. The second one \\spad{ls} is the list of variables involved in the systems to solve. The third one must be \\spad{concat(ls,{}s)} where \\spad{s} is an additional symbol used for the univariate representations. WARNING: The third argument is not checked. All operations are based on triangular decompositions. The default is to compute these decompositions directly from the input system by using the \\spadtype{RegularChain} domain constructor. The lexTriangular algorithm can also be used for computing these decompositions (see the \\spadtype{LexTriangularPackage} package constructor). For that purpose,{} the operations \\axiomOpFrom{univariateSolve}{ZeroDimensionalSolvePackage},{} \\axiomOpFrom{realSolve}{ZeroDimensionalSolvePackage} and \\axiomOpFrom{positiveSolve}{ZeroDimensionalSolvePackage} admit an optional argument. \\newline Author: Marc Moreno Maza.")) (|convert| (((|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#3|))) (|SquareFreeRegularTriangularSet| |#1| (|IndexedExponents| (|OrderedVariableList| |#3|)) (|OrderedVariableList| |#3|) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#3|)))) "\\spad{convert(st)} returns the members of \\spad{st}.") (((|SparseUnivariatePolynomial| (|RealClosure| (|Fraction| |#1|))) (|SparseUnivariatePolynomial| |#1|)) "\\spad{convert(u)} converts \\spad{u}.") (((|Polynomial| (|RealClosure| (|Fraction| |#1|))) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#3|))) "\\spad{convert(q)} converts \\spad{q}.") (((|Polynomial| (|RealClosure| (|Fraction| |#1|))) (|Polynomial| |#1|)) "\\spad{convert(p)} converts \\spad{p}.") (((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#3|)) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) "\\spad{convert(q)} converts \\spad{q}.")) (|squareFree| (((|List| (|SquareFreeRegularTriangularSet| |#1| (|IndexedExponents| (|OrderedVariableList| |#3|)) (|OrderedVariableList| |#3|) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#3|)))) (|RegularChain| |#1| |#2|)) "\\spad{squareFree(ts)} returns the square-free factorization of \\spad{ts}. Moreover,{} each factor is a Lazard triangular set and the decomposition is a Kalkbrener split of \\spad{ts},{} which is enough here for the matter of solving zero-dimensional algebraic systems. WARNING: \\spad{ts} is not checked to be zero-dimensional.")) (|positiveSolve| (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|))) "\\spad{positiveSolve(lp)} returns the same as \\spad{positiveSolve(lp,{}false,{}false)}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|)) (|Boolean|)) "\\spad{positiveSolve(lp)} returns the same as \\spad{positiveSolve(lp,{}info?,{}false)}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|)) "\\spad{positiveSolve(lp,{}info?,{}lextri?)} returns the set of the points in the variety associated with \\spad{lp} whose coordinates are (real) strictly positive. Moreover,{} if \\spad{info?} is \\spad{true} then some information is displayed during decomposition into regular chains. If \\spad{lextri?} is \\spad{true} then the lexTriangular algorithm is called from the \\spadtype{LexTriangularPackage} constructor (see \\axiomOpFrom{zeroSetSplit}{LexTriangularPackage}(\\spad{lp},{}\\spad{false})). Otherwise,{} the triangular decomposition is computed directly from the input system by using the \\axiomOpFrom{zeroSetSplit}{RegularChain} from \\spadtype{RegularChain}. WARNING: For each set of coordinates given by \\spad{positiveSolve(lp,{}info?,{}lextri?)} the ordering of the indeterminates is reversed \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ls}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|RegularChain| |#1| |#2|)) "\\spad{positiveSolve(ts)} returns the points of the regular set of \\spad{ts} with (real) strictly positive coordinates.")) (|realSolve| (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|))) "\\spad{realSolve(lp)} returns the same as \\spad{realSolve(ts,{}false,{}false,{}false)}") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|)) (|Boolean|)) "\\spad{realSolve(ts,{}info?)} returns the same as \\spad{realSolve(ts,{}info?,{}false,{}false)}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|)) "\\spad{realSolve(ts,{}info?,{}check?)} returns the same as \\spad{realSolve(ts,{}info?,{}check?,{}false)}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|) (|Boolean|)) "\\spad{realSolve(ts,{}info?,{}check?,{}lextri?)} returns the set of the points in the variety associated with \\spad{lp} whose coordinates are all real. Moreover,{} if \\spad{info?} is \\spad{true} then some information is displayed during decomposition into regular chains. If \\spad{check?} is \\spad{true} then the result is checked. If \\spad{lextri?} is \\spad{true} then the lexTriangular algorithm is called from the \\spadtype{LexTriangularPackage} constructor (see \\axiomOpFrom{zeroSetSplit}{LexTriangularPackage}(\\spad{lp},{}\\spad{false})). Otherwise,{} the triangular decomposition is computed directly from the input system by using the \\axiomOpFrom{zeroSetSplit}{RegularChain} from \\spadtype{RegularChain}. WARNING: For each set of coordinates given by \\spad{realSolve(ts,{}info?,{}check?,{}lextri?)} the ordering of the indeterminates is reversed \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ls}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|RegularChain| |#1| |#2|)) "\\spad{realSolve(ts)} returns the set of the points in the regular zero set of \\spad{ts} whose coordinates are all real. WARNING: For each set of coordinates given by \\spad{realSolve(ts)} the ordering of the indeterminates is reversed \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ls}.")) (|univariateSolve| (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|))) "\\spad{univariateSolve(lp)} returns the same as \\spad{univariateSolve(lp,{}false,{}false,{}false)}.") (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|)) (|Boolean|)) "\\spad{univariateSolve(lp,{}info?)} returns the same as \\spad{univariateSolve(lp,{}info?,{}false,{}false)}.") (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|)) "\\spad{univariateSolve(lp,{}info?,{}check?)} returns the same as \\spad{univariateSolve(lp,{}info?,{}check?,{}false)}.") (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|) (|Boolean|)) "\\spad{univariateSolve(lp,{}info?,{}check?,{}lextri?)} returns a univariate representation of the variety associated with \\spad{lp}. Moreover,{} if \\spad{info?} is \\spad{true} then some information is displayed during the decomposition into regular chains. If \\spad{check?} is \\spad{true} then the result is checked. See \\axiomOpFrom{rur}{RationalUnivariateRepresentationPackage}(\\spad{lp},{}\\spad{true}). If \\spad{lextri?} is \\spad{true} then the lexTriangular algorithm is called from the \\spadtype{LexTriangularPackage} constructor (see \\axiomOpFrom{zeroSetSplit}{LexTriangularPackage}(\\spad{lp},{}\\spad{false})). Otherwise,{} the triangular decomposition is computed directly from the input system by using the \\axiomOpFrom{zeroSetSplit}{RegularChain} from \\spadtype{RegularChain}.") (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|RegularChain| |#1| |#2|)) "\\spad{univariateSolve(ts)} returns a univariate representation of \\spad{ts}. See \\axiomOpFrom{rur}{RationalUnivariateRepresentationPackage}(\\spad{lp},{}\\spad{true}).")) (|triangSolve| (((|List| (|RegularChain| |#1| |#2|)) (|List| (|Polynomial| |#1|))) "\\spad{triangSolve(lp)} returns the same as \\spad{triangSolve(lp,{}false,{}false)}") (((|List| (|RegularChain| |#1| |#2|)) (|List| (|Polynomial| |#1|)) (|Boolean|)) "\\spad{triangSolve(lp,{}info?)} returns the same as \\spad{triangSolve(lp,{}false)}") (((|List| (|RegularChain| |#1| |#2|)) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|)) "\\spad{triangSolve(lp,{}info?,{}lextri?)} decomposes the variety associated with \\axiom{\\spad{lp}} into regular chains. Thus a point belongs to this variety iff it is a regular zero of a regular set in in the output. Note that \\axiom{\\spad{lp}} needs to generate a zero-dimensional ideal. If \\axiom{\\spad{lp}} is not zero-dimensional then the result is only a decomposition of its zero-set in the sense of the closure (\\spad{w}.\\spad{r}.\\spad{t}. Zarisky topology). Moreover,{} if \\spad{info?} is \\spad{true} then some information is displayed during the computations. See \\axiomOpFrom{zeroSetSplit}{RegularTriangularSetCategory}(\\spad{lp},{}\\spad{true},{}\\spad{info?}). If \\spad{lextri?} is \\spad{true} then the lexTriangular algorithm is called from the \\spadtype{LexTriangularPackage} constructor (see \\axiomOpFrom{zeroSetSplit}{LexTriangularPackage}(\\spad{lp},{}\\spad{false})). Otherwise,{} the triangular decomposition is computed directly from the input system by using the \\axiomOpFrom{zeroSetSplit}{RegularChain} from \\spadtype{RegularChain}.")))
NIL
NIL
-(-1194 R)
+(-1196 R)
((|constructor| (NIL "Test for linear dependence over the integers.")) (|solveLinearlyOverQ| (((|Union| (|Vector| (|Fraction| (|Integer|))) "failed") (|Vector| |#1|) |#1|) "\\spad{solveLinearlyOverQ([v1,{}...,{}vn],{} u)} returns \\spad{[c1,{}...,{}cn]} such that \\spad{c1*v1 + ... + cn*vn = u},{} \"failed\" if no such rational numbers \\spad{ci}\\spad{'s} exist.")) (|linearDependenceOverZ| (((|Union| (|Vector| (|Integer|)) "failed") (|Vector| |#1|)) "\\spad{linearlyDependenceOverZ([v1,{}...,{}vn])} returns \\spad{[c1,{}...,{}cn]} if \\spad{c1*v1 + ... + cn*vn = 0} and not all the \\spad{ci}\\spad{'s} are 0,{} \"failed\" if the \\spad{vi}\\spad{'s} are linearly independent over the integers.")) (|linearlyDependentOverZ?| (((|Boolean|) (|Vector| |#1|)) "\\spad{linearlyDependentOverZ?([v1,{}...,{}vn])} returns \\spad{true} if the \\spad{vi}\\spad{'s} are linearly dependent over the integers,{} \\spad{false} otherwise.")))
NIL
NIL
-(-1195 |p|)
+(-1197 |p|)
((|constructor| (NIL "IntegerMod(\\spad{n}) creates the ring of integers reduced modulo the integer \\spad{n}.")))
-(((-4250 "*") . T) (-4242 . T) (-4243 . T) (-4245 . T))
+(((-4252 "*") . T) (-4244 . T) (-4245 . T) (-4247 . T))
NIL
NIL
NIL
@@ -4728,4 +4736,4 @@ NIL
NIL
NIL
NIL
-((-3 NIL 2236542 2236547 2236552 2236557) (-2 NIL 2236522 2236527 2236532 2236537) (-1 NIL 2236502 2236507 2236512 2236517) (0 NIL 2236482 2236487 2236492 2236497) (-1195 "ZMOD.spad" 2236291 2236304 2236420 2236477) (-1194 "ZLINDEP.spad" 2235335 2235346 2236281 2236286) (-1193 "ZDSOLVE.spad" 2225184 2225206 2235325 2235330) (-1192 "YSTREAM.spad" 2224677 2224688 2225174 2225179) (-1191 "XRPOLY.spad" 2223897 2223917 2224533 2224602) (-1190 "XPR.spad" 2221626 2221639 2223615 2223714) (-1189 "XPOLY.spad" 2221181 2221192 2221482 2221551) (-1188 "XPOLYC.spad" 2220498 2220514 2221107 2221176) (-1187 "XPBWPOLY.spad" 2218935 2218955 2220278 2220347) (-1186 "XF.spad" 2217396 2217411 2218837 2218930) (-1185 "XF.spad" 2215837 2215854 2217280 2217285) (-1184 "XFALG.spad" 2212861 2212877 2215763 2215832) (-1183 "XEXPPKG.spad" 2212112 2212138 2212851 2212856) (-1182 "XDPOLY.spad" 2211726 2211742 2211968 2212037) (-1181 "XALG.spad" 2211324 2211335 2211682 2211721) (-1180 "WUTSET.spad" 2207163 2207180 2210970 2210997) (-1179 "WP.spad" 2206177 2206221 2207021 2207088) (-1178 "WFFINTBS.spad" 2203740 2203762 2206167 2206172) (-1177 "WEIER.spad" 2201954 2201965 2203730 2203735) (-1176 "VSPACE.spad" 2201627 2201638 2201922 2201949) (-1175 "VSPACE.spad" 2201320 2201333 2201617 2201622) (-1174 "VOID.spad" 2200910 2200919 2201310 2201315) (-1173 "VIEW.spad" 2198532 2198541 2200900 2200905) (-1172 "VIEWDEF.spad" 2193729 2193738 2198522 2198527) (-1171 "VIEW3D.spad" 2177564 2177573 2193719 2193724) (-1170 "VIEW2D.spad" 2165301 2165310 2177554 2177559) (-1169 "VECTOR.spad" 2163978 2163989 2164229 2164256) (-1168 "VECTOR2.spad" 2162605 2162618 2163968 2163973) (-1167 "VECTCAT.spad" 2160493 2160504 2162561 2162600) (-1166 "VECTCAT.spad" 2158202 2158215 2160272 2160277) (-1165 "VARIABLE.spad" 2157982 2157997 2158192 2158197) (-1164 "UTYPE.spad" 2157616 2157625 2157962 2157977) (-1163 "UTSODETL.spad" 2156909 2156933 2157572 2157577) (-1162 "UTSODE.spad" 2155097 2155117 2156899 2156904) (-1161 "UTS.spad" 2149886 2149914 2153564 2153661) (-1160 "UTSCAT.spad" 2147337 2147353 2149784 2149881) (-1159 "UTSCAT.spad" 2144432 2144450 2146881 2146886) (-1158 "UTS2.spad" 2144025 2144060 2144422 2144427) (-1157 "URAGG.spad" 2138647 2138658 2144005 2144020) (-1156 "URAGG.spad" 2133243 2133256 2138603 2138608) (-1155 "UPXSSING.spad" 2130889 2130915 2132327 2132460) (-1154 "UPXS.spad" 2127916 2127944 2129021 2129170) (-1153 "UPXSCONS.spad" 2125673 2125693 2126048 2126197) (-1152 "UPXSCCA.spad" 2124131 2124151 2125519 2125668) (-1151 "UPXSCCA.spad" 2122731 2122753 2124121 2124126) (-1150 "UPXSCAT.spad" 2121312 2121328 2122577 2122726) (-1149 "UPXS2.spad" 2120853 2120906 2121302 2121307) (-1148 "UPSQFREE.spad" 2119265 2119279 2120843 2120848) (-1147 "UPSCAT.spad" 2116858 2116882 2119163 2119260) (-1146 "UPSCAT.spad" 2114157 2114183 2116464 2116469) (-1145 "UPOLYC.spad" 2109135 2109146 2113999 2114152) (-1144 "UPOLYC.spad" 2104005 2104018 2108871 2108876) (-1143 "UPOLYC2.spad" 2103474 2103493 2103995 2104000) (-1142 "UP.spad" 2100519 2100534 2101027 2101180) (-1141 "UPMP.spad" 2099409 2099422 2100509 2100514) (-1140 "UPDIVP.spad" 2098972 2098986 2099399 2099404) (-1139 "UPDECOMP.spad" 2097209 2097223 2098962 2098967) (-1138 "UPCDEN.spad" 2096416 2096432 2097199 2097204) (-1137 "UP2.spad" 2095778 2095799 2096406 2096411) (-1136 "UNISEG.spad" 2095131 2095142 2095697 2095702) (-1135 "UNISEG2.spad" 2094624 2094637 2095087 2095092) (-1134 "UNIFACT.spad" 2093725 2093737 2094614 2094619) (-1133 "ULS.spad" 2084284 2084312 2085377 2085806) (-1132 "ULSCONS.spad" 2078327 2078347 2078699 2078848) (-1131 "ULSCCAT.spad" 2075924 2075944 2078147 2078322) (-1130 "ULSCCAT.spad" 2073655 2073677 2075880 2075885) (-1129 "ULSCAT.spad" 2071871 2071887 2073501 2073650) (-1128 "ULS2.spad" 2071383 2071436 2071861 2071866) (-1127 "UFD.spad" 2070448 2070457 2071309 2071378) (-1126 "UFD.spad" 2069575 2069586 2070438 2070443) (-1125 "UDVO.spad" 2068422 2068431 2069565 2069570) (-1124 "UDPO.spad" 2065849 2065860 2068378 2068383) (-1123 "TYPE.spad" 2065771 2065780 2065829 2065844) (-1122 "TWOFACT.spad" 2064421 2064436 2065761 2065766) (-1121 "TUPLE.spad" 2063807 2063818 2064320 2064325) (-1120 "TUBETOOL.spad" 2060644 2060653 2063797 2063802) (-1119 "TUBE.spad" 2059285 2059302 2060634 2060639) (-1118 "TS.spad" 2057874 2057890 2058850 2058947) (-1117 "TSETCAT.spad" 2044989 2045006 2057830 2057869) (-1116 "TSETCAT.spad" 2032102 2032121 2044945 2044950) (-1115 "TRMANIP.spad" 2026468 2026485 2031808 2031813) (-1114 "TRIMAT.spad" 2025427 2025452 2026458 2026463) (-1113 "TRIGMNIP.spad" 2023944 2023961 2025417 2025422) (-1112 "TRIGCAT.spad" 2023456 2023465 2023934 2023939) (-1111 "TRIGCAT.spad" 2022966 2022977 2023446 2023451) (-1110 "TREE.spad" 2021537 2021548 2022573 2022600) (-1109 "TRANFUN.spad" 2021368 2021377 2021527 2021532) (-1108 "TRANFUN.spad" 2021197 2021208 2021358 2021363) (-1107 "TOPSP.spad" 2020871 2020880 2021187 2021192) (-1106 "TOOLSIGN.spad" 2020534 2020545 2020861 2020866) (-1105 "TEXTFILE.spad" 2019091 2019100 2020524 2020529) (-1104 "TEX.spad" 2016108 2016117 2019081 2019086) (-1103 "TEX1.spad" 2015664 2015675 2016098 2016103) (-1102 "TEMUTL.spad" 2015219 2015228 2015654 2015659) (-1101 "TBCMPPK.spad" 2013312 2013335 2015209 2015214) (-1100 "TBAGG.spad" 2012336 2012359 2013280 2013307) (-1099 "TBAGG.spad" 2011380 2011405 2012326 2012331) (-1098 "TANEXP.spad" 2010756 2010767 2011370 2011375) (-1097 "TABLE.spad" 2009167 2009190 2009437 2009464) (-1096 "TABLEAU.spad" 2008648 2008659 2009157 2009162) (-1095 "TABLBUMP.spad" 2005431 2005442 2008638 2008643) (-1094 "SYSTEM.spad" 2004705 2004714 2005421 2005426) (-1093 "SYSSOLP.spad" 2002178 2002189 2004695 2004700) (-1092 "SYNTAX.spad" 1998370 1998379 2002168 2002173) (-1091 "SYMTAB.spad" 1996426 1996435 1998360 1998365) (-1090 "SYMS.spad" 1992411 1992420 1996416 1996421) (-1089 "SYMPOLY.spad" 1991421 1991432 1991503 1991630) (-1088 "SYMFUNC.spad" 1990896 1990907 1991411 1991416) (-1087 "SYMBOL.spad" 1988232 1988241 1990886 1990891) (-1086 "SWITCH.spad" 1984989 1984998 1988222 1988227) (-1085 "SUTS.spad" 1981888 1981916 1983456 1983553) (-1084 "SUPXS.spad" 1978902 1978930 1980020 1980169) (-1083 "SUP.spad" 1975674 1975685 1976455 1976608) (-1082 "SUPFRACF.spad" 1974779 1974797 1975664 1975669) (-1081 "SUP2.spad" 1974169 1974182 1974769 1974774) (-1080 "SUMRF.spad" 1973135 1973146 1974159 1974164) (-1079 "SUMFS.spad" 1972768 1972785 1973125 1973130) (-1078 "SULS.spad" 1963314 1963342 1964420 1964849) (-1077 "SUCH.spad" 1962994 1963009 1963304 1963309) (-1076 "SUBSPACE.spad" 1955001 1955016 1962984 1962989) (-1075 "SUBRESP.spad" 1954161 1954175 1954957 1954962) (-1074 "STTF.spad" 1950260 1950276 1954151 1954156) (-1073 "STTFNC.spad" 1946728 1946744 1950250 1950255) (-1072 "STTAYLOR.spad" 1939126 1939137 1946609 1946614) (-1071 "STRTBL.spad" 1937631 1937648 1937780 1937807) (-1070 "STRING.spad" 1937040 1937049 1937054 1937081) (-1069 "STRICAT.spad" 1936816 1936825 1936996 1937035) (-1068 "STREAM.spad" 1933584 1933595 1936341 1936356) (-1067 "STREAM3.spad" 1933129 1933144 1933574 1933579) (-1066 "STREAM2.spad" 1932197 1932210 1933119 1933124) (-1065 "STREAM1.spad" 1931901 1931912 1932187 1932192) (-1064 "STINPROD.spad" 1930807 1930823 1931891 1931896) (-1063 "STEP.spad" 1930008 1930017 1930797 1930802) (-1062 "STBL.spad" 1928534 1928562 1928701 1928716) (-1061 "STAGG.spad" 1927599 1927610 1928514 1928529) (-1060 "STAGG.spad" 1926672 1926685 1927589 1927594) (-1059 "STACK.spad" 1926023 1926034 1926279 1926306) (-1058 "SREGSET.spad" 1923727 1923744 1925669 1925696) (-1057 "SRDCMPK.spad" 1922272 1922292 1923717 1923722) (-1056 "SRAGG.spad" 1917357 1917366 1922228 1922267) (-1055 "SRAGG.spad" 1912474 1912485 1917347 1917352) (-1054 "SQMATRIX.spad" 1910100 1910118 1911008 1911095) (-1053 "SPLTREE.spad" 1904652 1904665 1909536 1909563) (-1052 "SPLNODE.spad" 1901240 1901253 1904642 1904647) (-1051 "SPFCAT.spad" 1900017 1900026 1901230 1901235) (-1050 "SPECOUT.spad" 1898567 1898576 1900007 1900012) (-1049 "spad-parser.spad" 1898032 1898041 1898557 1898562) (-1048 "SPACEC.spad" 1882045 1882056 1898022 1898027) (-1047 "SPACE3.spad" 1881821 1881832 1882035 1882040) (-1046 "SORTPAK.spad" 1881366 1881379 1881777 1881782) (-1045 "SOLVETRA.spad" 1879123 1879134 1881356 1881361) (-1044 "SOLVESER.spad" 1877643 1877654 1879113 1879118) (-1043 "SOLVERAD.spad" 1873653 1873664 1877633 1877638) (-1042 "SOLVEFOR.spad" 1872073 1872091 1873643 1873648) (-1041 "SNTSCAT.spad" 1871661 1871678 1872029 1872068) (-1040 "SMTS.spad" 1869921 1869947 1871226 1871323) (-1039 "SMP.spad" 1867363 1867383 1867753 1867880) (-1038 "SMITH.spad" 1866206 1866231 1867353 1867358) (-1037 "SMATCAT.spad" 1864304 1864334 1866138 1866201) (-1036 "SMATCAT.spad" 1862346 1862378 1864182 1864187) (-1035 "SKAGG.spad" 1861295 1861306 1862302 1862341) (-1034 "SINT.spad" 1859603 1859612 1861161 1861290) (-1033 "SIMPAN.spad" 1859331 1859340 1859593 1859598) (-1032 "SIGNRF.spad" 1858439 1858450 1859321 1859326) (-1031 "SIGNEF.spad" 1857708 1857725 1858429 1858434) (-1030 "SHP.spad" 1855626 1855641 1857664 1857669) (-1029 "SHDP.spad" 1847016 1847043 1847525 1847654) (-1028 "SGROUP.spad" 1846482 1846491 1847006 1847011) (-1027 "SGROUP.spad" 1845946 1845957 1846472 1846477) (-1026 "SGCF.spad" 1838827 1838836 1845936 1845941) (-1025 "SFRTCAT.spad" 1837743 1837760 1838783 1838822) (-1024 "SFRGCD.spad" 1836806 1836826 1837733 1837738) (-1023 "SFQCMPK.spad" 1831443 1831463 1836796 1836801) (-1022 "SFORT.spad" 1830878 1830892 1831433 1831438) (-1021 "SEXOF.spad" 1830721 1830761 1830868 1830873) (-1020 "SEX.spad" 1830613 1830622 1830711 1830716) (-1019 "SEXCAT.spad" 1827717 1827757 1830603 1830608) (-1018 "SET.spad" 1826017 1826028 1827138 1827177) (-1017 "SETMN.spad" 1824451 1824468 1826007 1826012) (-1016 "SETCAT.spad" 1823936 1823945 1824441 1824446) (-1015 "SETCAT.spad" 1823419 1823430 1823926 1823931) (-1014 "SETAGG.spad" 1819942 1819953 1823387 1823414) (-1013 "SETAGG.spad" 1816485 1816498 1819932 1819937) (-1012 "SEGXCAT.spad" 1815597 1815610 1816465 1816480) (-1011 "SEG.spad" 1815410 1815421 1815516 1815521) (-1010 "SEGCAT.spad" 1814229 1814240 1815390 1815405) (-1009 "SEGBIND.spad" 1813301 1813312 1814184 1814189) (-1008 "SEGBIND2.spad" 1812997 1813010 1813291 1813296) (-1007 "SEG2.spad" 1812422 1812435 1812953 1812958) (-1006 "SDVAR.spad" 1811698 1811709 1812412 1812417) (-1005 "SDPOL.spad" 1809091 1809102 1809382 1809509) (-1004 "SCPKG.spad" 1807170 1807181 1809081 1809086) (-1003 "SCOPE.spad" 1806315 1806324 1807160 1807165) (-1002 "SCACHE.spad" 1804997 1805008 1806305 1806310) (-1001 "SAOS.spad" 1804869 1804878 1804987 1804992) (-1000 "SAERFFC.spad" 1804582 1804602 1804859 1804864) (-999 "SAE.spad" 1802761 1802776 1803371 1803506) (-998 "SAEFACT.spad" 1802463 1802482 1802751 1802756) (-997 "RURPK.spad" 1800105 1800120 1802453 1802458) (-996 "RULESET.spad" 1799547 1799570 1800095 1800100) (-995 "RULE.spad" 1797752 1797775 1799537 1799542) (-994 "RULECOLD.spad" 1797605 1797617 1797742 1797747) (-993 "RSETGCD.spad" 1793984 1794003 1797595 1797600) (-992 "RSETCAT.spad" 1783757 1783773 1793940 1793979) (-991 "RSETCAT.spad" 1773562 1773580 1783747 1783752) (-990 "RSDCMPK.spad" 1772015 1772034 1773552 1773557) (-989 "RRCC.spad" 1770400 1770429 1772005 1772010) (-988 "RRCC.spad" 1768783 1768814 1770390 1770395) (-987 "RPOLCAT.spad" 1748144 1748158 1768651 1768778) (-986 "RPOLCAT.spad" 1727220 1727236 1747729 1747734) (-985 "ROUTINE.spad" 1723084 1723092 1725867 1725894) (-984 "ROMAN.spad" 1722317 1722325 1722950 1723079) (-983 "ROIRC.spad" 1721398 1721429 1722307 1722312) (-982 "RNS.spad" 1720302 1720310 1721300 1721393) (-981 "RNS.spad" 1719292 1719302 1720292 1720297) (-980 "RNG.spad" 1719028 1719036 1719282 1719287) (-979 "RMODULE.spad" 1718667 1718677 1719018 1719023) (-978 "RMCAT2.spad" 1718076 1718132 1718657 1718662) (-977 "RMATRIX.spad" 1716756 1716774 1717243 1717282) (-976 "RMATCAT.spad" 1712278 1712308 1716700 1716751) (-975 "RMATCAT.spad" 1707702 1707734 1712126 1712131) (-974 "RINTERP.spad" 1707591 1707610 1707692 1707697) (-973 "RING.spad" 1706949 1706957 1707571 1707586) (-972 "RING.spad" 1706315 1706325 1706939 1706944) (-971 "RIDIST.spad" 1705700 1705708 1706305 1706310) (-970 "RGCHAIN.spad" 1704280 1704295 1705185 1705212) (-969 "RF.spad" 1701895 1701905 1704270 1704275) (-968 "RFFACTOR.spad" 1701358 1701368 1701885 1701890) (-967 "RFFACT.spad" 1701094 1701105 1701348 1701353) (-966 "RFDIST.spad" 1700083 1700091 1701084 1701089) (-965 "RETSOL.spad" 1699501 1699513 1700073 1700078) (-964 "RETRACT.spad" 1698851 1698861 1699491 1699496) (-963 "RETRACT.spad" 1698199 1698211 1698841 1698846) (-962 "RESULT.spad" 1696260 1696268 1696846 1696873) (-961 "RESRING.spad" 1695608 1695654 1696198 1696255) (-960 "RESLATC.spad" 1694933 1694943 1695598 1695603) (-959 "REPSQ.spad" 1694663 1694673 1694923 1694928) (-958 "REP.spad" 1692216 1692224 1694653 1694658) (-957 "REPDB.spad" 1691922 1691932 1692206 1692211) (-956 "REP2.spad" 1681495 1681505 1691764 1691769) (-955 "REP1.spad" 1675486 1675496 1681445 1681450) (-954 "REGSET.spad" 1673284 1673300 1675132 1675159) (-953 "REF.spad" 1672614 1672624 1673239 1673244) (-952 "REDORDER.spad" 1671791 1671807 1672604 1672609) (-951 "RECLOS.spad" 1670581 1670600 1671284 1671377) (-950 "REALSOLV.spad" 1669714 1669722 1670571 1670576) (-949 "REAL.spad" 1669587 1669595 1669704 1669709) (-948 "REAL0Q.spad" 1666870 1666884 1669577 1669582) (-947 "REAL0.spad" 1663699 1663713 1666860 1666865) (-946 "RDIV.spad" 1663351 1663375 1663689 1663694) (-945 "RDIST.spad" 1662915 1662925 1663341 1663346) (-944 "RDETRS.spad" 1661712 1661729 1662905 1662910) (-943 "RDETR.spad" 1659820 1659837 1661702 1661707) (-942 "RDEEFS.spad" 1658894 1658910 1659810 1659815) (-941 "RDEEF.spad" 1657891 1657907 1658884 1658889) (-940 "RCFIELD.spad" 1655075 1655083 1657793 1657886) (-939 "RCFIELD.spad" 1652345 1652355 1655065 1655070) (-938 "RCAGG.spad" 1650248 1650258 1652325 1652340) (-937 "RCAGG.spad" 1648088 1648100 1650167 1650172) (-936 "RATRET.spad" 1647449 1647459 1648078 1648083) (-935 "RATFACT.spad" 1647142 1647153 1647439 1647444) (-934 "RANDSRC.spad" 1646462 1646470 1647132 1647137) (-933 "RADUTIL.spad" 1646217 1646225 1646452 1646457) (-932 "RADIX.spad" 1643010 1643023 1644687 1644780) (-931 "RADFF.spad" 1641427 1641463 1641545 1641701) (-930 "RADCAT.spad" 1641021 1641029 1641417 1641422) (-929 "RADCAT.spad" 1640613 1640623 1641011 1641016) (-928 "QUEUE.spad" 1639956 1639966 1640220 1640247) (-927 "QUAT.spad" 1638542 1638552 1638884 1638949) (-926 "QUATCT2.spad" 1638161 1638179 1638532 1638537) (-925 "QUATCAT.spad" 1636326 1636336 1638091 1638156) (-924 "QUATCAT.spad" 1634243 1634255 1636010 1636015) (-923 "QUAGG.spad" 1633057 1633067 1634199 1634238) (-922 "QFORM.spad" 1632520 1632534 1633047 1633052) (-921 "QFCAT.spad" 1631211 1631221 1632410 1632515) (-920 "QFCAT.spad" 1629508 1629520 1630709 1630714) (-919 "QFCAT2.spad" 1629199 1629215 1629498 1629503) (-918 "QEQUAT.spad" 1628756 1628764 1629189 1629194) (-917 "QCMPACK.spad" 1623503 1623522 1628746 1628751) (-916 "QALGSET.spad" 1619578 1619610 1623417 1623422) (-915 "QALGSET2.spad" 1617574 1617592 1619568 1619573) (-914 "PWFFINTB.spad" 1614884 1614905 1617564 1617569) (-913 "PUSHVAR.spad" 1614213 1614232 1614874 1614879) (-912 "PTRANFN.spad" 1610339 1610349 1614203 1614208) (-911 "PTPACK.spad" 1607427 1607437 1610329 1610334) (-910 "PTFUNC2.spad" 1607248 1607262 1607417 1607422) (-909 "PTCAT.spad" 1606330 1606340 1607204 1607243) (-908 "PSQFR.spad" 1605637 1605661 1606320 1606325) (-907 "PSEUDLIN.spad" 1604495 1604505 1605627 1605632) (-906 "PSETPK.spad" 1589928 1589944 1604373 1604378) (-905 "PSETCAT.spad" 1583836 1583859 1589896 1589923) (-904 "PSETCAT.spad" 1577730 1577755 1583792 1583797) (-903 "PSCURVE.spad" 1576713 1576721 1577720 1577725) (-902 "PSCAT.spad" 1575480 1575509 1576611 1576708) (-901 "PSCAT.spad" 1574337 1574368 1575470 1575475) (-900 "PRTITION.spad" 1573180 1573188 1574327 1574332) (-899 "PRS.spad" 1562742 1562759 1573136 1573141) (-898 "PRQAGG.spad" 1562161 1562171 1562698 1562737) (-897 "PROPLOG.spad" 1561564 1561572 1562151 1562156) (-896 "PROPFRML.spad" 1559429 1559440 1561500 1561505) (-895 "PROPERTY.spad" 1558923 1558931 1559419 1559424) (-894 "PRODUCT.spad" 1556603 1556615 1556889 1556944) (-893 "PR.spad" 1554992 1555004 1555697 1555824) (-892 "PRINT.spad" 1554744 1554752 1554982 1554987) (-891 "PRIMES.spad" 1552995 1553005 1554734 1554739) (-890 "PRIMELT.spad" 1550976 1550990 1552985 1552990) (-889 "PRIMCAT.spad" 1550599 1550607 1550966 1550971) (-888 "PRIMARR.spad" 1549604 1549614 1549782 1549809) (-887 "PRIMARR2.spad" 1548327 1548339 1549594 1549599) (-886 "PREASSOC.spad" 1547699 1547711 1548317 1548322) (-885 "PPCURVE.spad" 1546836 1546844 1547689 1547694) (-884 "POLYROOT.spad" 1545608 1545630 1546792 1546797) (-883 "POLY.spad" 1542908 1542918 1543425 1543552) (-882 "POLYLIFT.spad" 1542169 1542192 1542898 1542903) (-881 "POLYCATQ.spad" 1540271 1540293 1542159 1542164) (-880 "POLYCAT.spad" 1533677 1533698 1540139 1540266) (-879 "POLYCAT.spad" 1526385 1526408 1532849 1532854) (-878 "POLY2UP.spad" 1525833 1525847 1526375 1526380) (-877 "POLY2.spad" 1525428 1525440 1525823 1525828) (-876 "POLUTIL.spad" 1524369 1524398 1525384 1525389) (-875 "POLTOPOL.spad" 1523117 1523132 1524359 1524364) (-874 "POINT.spad" 1521958 1521968 1522045 1522072) (-873 "PNTHEORY.spad" 1518624 1518632 1521948 1521953) (-872 "PMTOOLS.spad" 1517381 1517395 1518614 1518619) (-871 "PMSYM.spad" 1516926 1516936 1517371 1517376) (-870 "PMQFCAT.spad" 1516513 1516527 1516916 1516921) (-869 "PMPRED.spad" 1515982 1515996 1516503 1516508) (-868 "PMPREDFS.spad" 1515426 1515448 1515972 1515977) (-867 "PMPLCAT.spad" 1514496 1514514 1515358 1515363) (-866 "PMLSAGG.spad" 1514077 1514091 1514486 1514491) (-865 "PMKERNEL.spad" 1513644 1513656 1514067 1514072) (-864 "PMINS.spad" 1513220 1513230 1513634 1513639) (-863 "PMFS.spad" 1512793 1512811 1513210 1513215) (-862 "PMDOWN.spad" 1512079 1512093 1512783 1512788) (-861 "PMASS.spad" 1511091 1511099 1512069 1512074) (-860 "PMASSFS.spad" 1510060 1510076 1511081 1511086) (-859 "PLOTTOOL.spad" 1509840 1509848 1510050 1510055) (-858 "PLOT.spad" 1504671 1504679 1509830 1509835) (-857 "PLOT3D.spad" 1501091 1501099 1504661 1504666) (-856 "PLOT1.spad" 1500232 1500242 1501081 1501086) (-855 "PLEQN.spad" 1487448 1487475 1500222 1500227) (-854 "PINTERP.spad" 1487064 1487083 1487438 1487443) (-853 "PINTERPA.spad" 1486846 1486862 1487054 1487059) (-852 "PI.spad" 1486453 1486461 1486820 1486841) (-851 "PID.spad" 1485409 1485417 1486379 1486448) (-850 "PICOERCE.spad" 1485066 1485076 1485399 1485404) (-849 "PGROEB.spad" 1483663 1483677 1485056 1485061) (-848 "PGE.spad" 1474916 1474924 1483653 1483658) (-847 "PGCD.spad" 1473798 1473815 1474906 1474911) (-846 "PFRPAC.spad" 1472941 1472951 1473788 1473793) (-845 "PFR.spad" 1469598 1469608 1472843 1472936) (-844 "PFOTOOLS.spad" 1468856 1468872 1469588 1469593) (-843 "PFOQ.spad" 1468226 1468244 1468846 1468851) (-842 "PFO.spad" 1467645 1467672 1468216 1468221) (-841 "PF.spad" 1467219 1467231 1467450 1467543) (-840 "PFECAT.spad" 1464885 1464893 1467145 1467214) (-839 "PFECAT.spad" 1462579 1462589 1464841 1464846) (-838 "PFBRU.spad" 1460449 1460461 1462569 1462574) (-837 "PFBR.spad" 1457987 1458010 1460439 1460444) (-836 "PERM.spad" 1453668 1453678 1457817 1457832) (-835 "PERMGRP.spad" 1448404 1448414 1453658 1453663) (-834 "PERMCAT.spad" 1446956 1446966 1448384 1448399) (-833 "PERMAN.spad" 1445488 1445502 1446946 1446951) (-832 "PENDTREE.spad" 1444761 1444771 1445117 1445122) (-831 "PDRING.spad" 1443252 1443262 1444741 1444756) (-830 "PDRING.spad" 1441751 1441763 1443242 1443247) (-829 "PDEPROB.spad" 1440708 1440716 1441741 1441746) (-828 "PDEPACK.spad" 1434710 1434718 1440698 1440703) (-827 "PDECOMP.spad" 1434172 1434189 1434700 1434705) (-826 "PDECAT.spad" 1432526 1432534 1434162 1434167) (-825 "PCOMP.spad" 1432377 1432390 1432516 1432521) (-824 "PBWLB.spad" 1430959 1430976 1432367 1432372) (-823 "PATTERN.spad" 1425390 1425400 1430949 1430954) (-822 "PATTERN2.spad" 1425126 1425138 1425380 1425385) (-821 "PATTERN1.spad" 1423428 1423444 1425116 1425121) (-820 "PATRES.spad" 1420975 1420987 1423418 1423423) (-819 "PATRES2.spad" 1420637 1420651 1420965 1420970) (-818 "PATMATCH.spad" 1418799 1418830 1420350 1420355) (-817 "PATMAB.spad" 1418224 1418234 1418789 1418794) (-816 "PATLRES.spad" 1417308 1417322 1418214 1418219) (-815 "PATAB.spad" 1417072 1417082 1417298 1417303) (-814 "PARTPERM.spad" 1414434 1414442 1417062 1417067) (-813 "PARSURF.spad" 1413862 1413890 1414424 1414429) (-812 "PARSU2.spad" 1413657 1413673 1413852 1413857) (-811 "script-parser.spad" 1413177 1413185 1413647 1413652) (-810 "PARSCURV.spad" 1412605 1412633 1413167 1413172) (-809 "PARSC2.spad" 1412394 1412410 1412595 1412600) (-808 "PARPCURV.spad" 1411852 1411880 1412384 1412389) (-807 "PARPC2.spad" 1411641 1411657 1411842 1411847) (-806 "PAN2EXPR.spad" 1411053 1411061 1411631 1411636) (-805 "PALETTE.spad" 1410023 1410031 1411043 1411048) (-804 "PAIR.spad" 1409006 1409019 1409611 1409616) (-803 "PADICRC.spad" 1406339 1406357 1407514 1407607) (-802 "PADICRAT.spad" 1404357 1404369 1404578 1404671) (-801 "PADIC.spad" 1404052 1404064 1404283 1404352) (-800 "PADICCT.spad" 1402593 1402605 1403978 1404047) (-799 "PADEPAC.spad" 1401272 1401291 1402583 1402588) (-798 "PADE.spad" 1400012 1400028 1401262 1401267) (-797 "OWP.spad" 1398996 1399026 1399870 1399937) (-796 "OVAR.spad" 1398777 1398800 1398986 1398991) (-795 "OUT.spad" 1397861 1397869 1398767 1398772) (-794 "OUTFORM.spad" 1387275 1387283 1397851 1397856) (-793 "OSI.spad" 1386750 1386758 1387265 1387270) (-792 "ORTHPOL.spad" 1385211 1385221 1386667 1386672) (-791 "OREUP.spad" 1384571 1384599 1384893 1384932) (-790 "ORESUP.spad" 1383872 1383896 1384253 1384292) (-789 "OREPCTO.spad" 1381691 1381703 1383792 1383797) (-788 "OREPCAT.spad" 1375748 1375758 1381647 1381686) (-787 "OREPCAT.spad" 1369695 1369707 1375596 1375601) (-786 "ORDSET.spad" 1368861 1368869 1369685 1369690) (-785 "ORDSET.spad" 1368025 1368035 1368851 1368856) (-784 "ORDRING.spad" 1367415 1367423 1368005 1368020) (-783 "ORDRING.spad" 1366813 1366823 1367405 1367410) (-782 "ORDMON.spad" 1366668 1366676 1366803 1366808) (-781 "ORDFUNS.spad" 1365794 1365810 1366658 1366663) (-780 "ORDFIN.spad" 1365728 1365736 1365784 1365789) (-779 "ORDCOMP.spad" 1364196 1364206 1365278 1365307) (-778 "ORDCOMP2.spad" 1363481 1363493 1364186 1364191) (-777 "OPTPROB.spad" 1362061 1362069 1363471 1363476) (-776 "OPTPACK.spad" 1354446 1354454 1362051 1362056) (-775 "OPTCAT.spad" 1352121 1352129 1354436 1354441) (-774 "OPQUERY.spad" 1351670 1351678 1352111 1352116) (-773 "OP.spad" 1351412 1351422 1351492 1351559) (-772 "ONECOMP.spad" 1350160 1350170 1350962 1350991) (-771 "ONECOMP2.spad" 1349578 1349590 1350150 1350155) (-770 "OMSERVER.spad" 1348580 1348588 1349568 1349573) (-769 "OMSAGG.spad" 1348356 1348366 1348524 1348575) (-768 "OMPKG.spad" 1346968 1346976 1348346 1348351) (-767 "OM.spad" 1345933 1345941 1346958 1346963) (-766 "OMLO.spad" 1345358 1345370 1345819 1345858) (-765 "OMEXPR.spad" 1345192 1345202 1345348 1345353) (-764 "OMERR.spad" 1344735 1344743 1345182 1345187) (-763 "OMERRK.spad" 1343769 1343777 1344725 1344730) (-762 "OMENC.spad" 1343113 1343121 1343759 1343764) (-761 "OMDEV.spad" 1337402 1337410 1343103 1343108) (-760 "OMCONN.spad" 1336811 1336819 1337392 1337397) (-759 "OINTDOM.spad" 1336574 1336582 1336737 1336806) (-758 "OFMONOID.spad" 1332761 1332771 1336564 1336569) (-757 "ODVAR.spad" 1332022 1332032 1332751 1332756) (-756 "ODR.spad" 1331470 1331496 1331834 1331983) (-755 "ODPOL.spad" 1328819 1328829 1329159 1329286) (-754 "ODP.spad" 1320345 1320365 1320718 1320847) (-753 "ODETOOLS.spad" 1318928 1318947 1320335 1320340) (-752 "ODESYS.spad" 1316578 1316595 1318918 1318923) (-751 "ODERTRIC.spad" 1312519 1312536 1316535 1316540) (-750 "ODERED.spad" 1311906 1311930 1312509 1312514) (-749 "ODERAT.spad" 1309457 1309474 1311896 1311901) (-748 "ODEPRRIC.spad" 1306348 1306370 1309447 1309452) (-747 "ODEPROB.spad" 1305547 1305555 1306338 1306343) (-746 "ODEPRIM.spad" 1302821 1302843 1305537 1305542) (-745 "ODEPAL.spad" 1302197 1302221 1302811 1302816) (-744 "ODEPACK.spad" 1288799 1288807 1302187 1302192) (-743 "ODEINT.spad" 1288230 1288246 1288789 1288794) (-742 "ODEIFTBL.spad" 1285625 1285633 1288220 1288225) (-741 "ODEEF.spad" 1280992 1281008 1285615 1285620) (-740 "ODECONST.spad" 1280511 1280529 1280982 1280987) (-739 "ODECAT.spad" 1279107 1279115 1280501 1280506) (-738 "OCT.spad" 1277254 1277264 1277970 1278009) (-737 "OCTCT2.spad" 1276898 1276919 1277244 1277249) (-736 "OC.spad" 1274672 1274682 1276854 1276893) (-735 "OC.spad" 1272172 1272184 1274356 1274361) (-734 "OCAMON.spad" 1272020 1272028 1272162 1272167) (-733 "OASGP.spad" 1271835 1271843 1272010 1272015) (-732 "OAMONS.spad" 1271355 1271363 1271825 1271830) (-731 "OAMON.spad" 1271216 1271224 1271345 1271350) (-730 "OAGROUP.spad" 1271078 1271086 1271206 1271211) (-729 "NUMTUBE.spad" 1270665 1270681 1271068 1271073) (-728 "NUMQUAD.spad" 1258527 1258535 1270655 1270660) (-727 "NUMODE.spad" 1249663 1249671 1258517 1258522) (-726 "NUMINT.spad" 1247221 1247229 1249653 1249658) (-725 "NUMFMT.spad" 1246061 1246069 1247211 1247216) (-724 "NUMERIC.spad" 1238134 1238144 1245867 1245872) (-723 "NTSCAT.spad" 1236624 1236640 1238090 1238129) (-722 "NTPOLFN.spad" 1236169 1236179 1236541 1236546) (-721 "NSUP.spad" 1229182 1229192 1233722 1233875) (-720 "NSUP2.spad" 1228574 1228586 1229172 1229177) (-719 "NSMP.spad" 1224773 1224792 1225081 1225208) (-718 "NREP.spad" 1223145 1223159 1224763 1224768) (-717 "NPCOEF.spad" 1222391 1222411 1223135 1223140) (-716 "NORMRETR.spad" 1221989 1222028 1222381 1222386) (-715 "NORMPK.spad" 1219891 1219910 1221979 1221984) (-714 "NORMMA.spad" 1219579 1219605 1219881 1219886) (-713 "NONE.spad" 1219320 1219328 1219569 1219574) (-712 "NONE1.spad" 1218996 1219006 1219310 1219315) (-711 "NODE1.spad" 1218465 1218481 1218986 1218991) (-710 "NNI.spad" 1217352 1217360 1218439 1218460) (-709 "NLINSOL.spad" 1215974 1215984 1217342 1217347) (-708 "NIPROB.spad" 1214457 1214465 1215964 1215969) (-707 "NFINTBAS.spad" 1211917 1211934 1214447 1214452) (-706 "NCODIV.spad" 1210115 1210131 1211907 1211912) (-705 "NCNTFRAC.spad" 1209757 1209771 1210105 1210110) (-704 "NCEP.spad" 1207917 1207931 1209747 1209752) (-703 "NASRING.spad" 1207513 1207521 1207907 1207912) (-702 "NASRING.spad" 1207107 1207117 1207503 1207508) (-701 "NARNG.spad" 1206451 1206459 1207097 1207102) (-700 "NARNG.spad" 1205793 1205803 1206441 1206446) (-699 "NAGSP.spad" 1204866 1204874 1205783 1205788) (-698 "NAGS.spad" 1194391 1194399 1204856 1204861) (-697 "NAGF07.spad" 1192784 1192792 1194381 1194386) (-696 "NAGF04.spad" 1187016 1187024 1192774 1192779) (-695 "NAGF02.spad" 1180825 1180833 1187006 1187011) (-694 "NAGF01.spad" 1176428 1176436 1180815 1180820) (-693 "NAGE04.spad" 1169888 1169896 1176418 1176423) (-692 "NAGE02.spad" 1160230 1160238 1169878 1169883) (-691 "NAGE01.spad" 1156114 1156122 1160220 1160225) (-690 "NAGD03.spad" 1154034 1154042 1156104 1156109) (-689 "NAGD02.spad" 1146565 1146573 1154024 1154029) (-688 "NAGD01.spad" 1140678 1140686 1146555 1146560) (-687 "NAGC06.spad" 1136465 1136473 1140668 1140673) (-686 "NAGC05.spad" 1134934 1134942 1136455 1136460) (-685 "NAGC02.spad" 1134189 1134197 1134924 1134929) (-684 "NAALG.spad" 1133724 1133734 1134157 1134184) (-683 "NAALG.spad" 1133279 1133291 1133714 1133719) (-682 "MULTSQFR.spad" 1130237 1130254 1133269 1133274) (-681 "MULTFACT.spad" 1129620 1129637 1130227 1130232) (-680 "MTSCAT.spad" 1127654 1127675 1129518 1129615) (-679 "MTHING.spad" 1127311 1127321 1127644 1127649) (-678 "MSYSCMD.spad" 1126745 1126753 1127301 1127306) (-677 "MSET.spad" 1124687 1124697 1126451 1126490) (-676 "MSETAGG.spad" 1124520 1124530 1124643 1124682) (-675 "MRING.spad" 1121491 1121503 1124228 1124295) (-674 "MRF2.spad" 1121059 1121073 1121481 1121486) (-673 "MRATFAC.spad" 1120605 1120622 1121049 1121054) (-672 "MPRFF.spad" 1118635 1118654 1120595 1120600) (-671 "MPOLY.spad" 1116073 1116088 1116432 1116559) (-670 "MPCPF.spad" 1115337 1115356 1116063 1116068) (-669 "MPC3.spad" 1115152 1115192 1115327 1115332) (-668 "MPC2.spad" 1114794 1114827 1115142 1115147) (-667 "MONOTOOL.spad" 1113129 1113146 1114784 1114789) (-666 "MONOID.spad" 1112303 1112311 1113119 1113124) (-665 "MONOID.spad" 1111475 1111485 1112293 1112298) (-664 "MONOGEN.spad" 1110221 1110234 1111335 1111470) (-663 "MONOGEN.spad" 1108989 1109004 1110105 1110110) (-662 "MONADWU.spad" 1107003 1107011 1108979 1108984) (-661 "MONADWU.spad" 1105015 1105025 1106993 1106998) (-660 "MONAD.spad" 1104159 1104167 1105005 1105010) (-659 "MONAD.spad" 1103301 1103311 1104149 1104154) (-658 "MOEBIUS.spad" 1101987 1102001 1103281 1103296) (-657 "MODULE.spad" 1101857 1101867 1101955 1101982) (-656 "MODULE.spad" 1101747 1101759 1101847 1101852) (-655 "MODRING.spad" 1101078 1101117 1101727 1101742) (-654 "MODOP.spad" 1099737 1099749 1100900 1100967) (-653 "MODMONOM.spad" 1099269 1099287 1099727 1099732) (-652 "MODMON.spad" 1095974 1095990 1096750 1096903) (-651 "MODFIELD.spad" 1095332 1095371 1095876 1095969) (-650 "MMLFORM.spad" 1094192 1094200 1095322 1095327) (-649 "MMAP.spad" 1093932 1093966 1094182 1094187) (-648 "MLO.spad" 1092359 1092369 1093888 1093927) (-647 "MLIFT.spad" 1090931 1090948 1092349 1092354) (-646 "MKUCFUNC.spad" 1090464 1090482 1090921 1090926) (-645 "MKRECORD.spad" 1090066 1090079 1090454 1090459) (-644 "MKFUNC.spad" 1089447 1089457 1090056 1090061) (-643 "MKFLCFN.spad" 1088403 1088413 1089437 1089442) (-642 "MKCHSET.spad" 1088179 1088189 1088393 1088398) (-641 "MKBCFUNC.spad" 1087664 1087682 1088169 1088174) (-640 "MINT.spad" 1087103 1087111 1087566 1087659) (-639 "MHROWRED.spad" 1085604 1085614 1087093 1087098) (-638 "MFLOAT.spad" 1084049 1084057 1085494 1085599) (-637 "MFINFACT.spad" 1083449 1083471 1084039 1084044) (-636 "MESH.spad" 1081181 1081189 1083439 1083444) (-635 "MDDFACT.spad" 1079374 1079384 1081171 1081176) (-634 "MDAGG.spad" 1078649 1078659 1079342 1079369) (-633 "MCMPLX.spad" 1074629 1074637 1075243 1075444) (-632 "MCDEN.spad" 1073837 1073849 1074619 1074624) (-631 "MCALCFN.spad" 1070939 1070965 1073827 1073832) (-630 "MATSTOR.spad" 1068215 1068225 1070929 1070934) (-629 "MATRIX.spad" 1066919 1066929 1067403 1067430) (-628 "MATLIN.spad" 1064245 1064269 1066803 1066808) (-627 "MATCAT.spad" 1055818 1055840 1064201 1064240) (-626 "MATCAT.spad" 1047275 1047299 1055660 1055665) (-625 "MATCAT2.spad" 1046543 1046591 1047265 1047270) (-624 "MAPPKG3.spad" 1045442 1045456 1046533 1046538) (-623 "MAPPKG2.spad" 1044776 1044788 1045432 1045437) (-622 "MAPPKG1.spad" 1043594 1043604 1044766 1044771) (-621 "MAPHACK3.spad" 1043402 1043416 1043584 1043589) (-620 "MAPHACK2.spad" 1043167 1043179 1043392 1043397) (-619 "MAPHACK1.spad" 1042797 1042807 1043157 1043162) (-618 "MAGMA.spad" 1040587 1040604 1042787 1042792) (-617 "M3D.spad" 1038285 1038295 1039967 1039972) (-616 "LZSTAGG.spad" 1035503 1035513 1038265 1038280) (-615 "LZSTAGG.spad" 1032729 1032741 1035493 1035498) (-614 "LWORD.spad" 1029434 1029451 1032719 1032724) (-613 "LSQM.spad" 1027662 1027676 1028060 1028111) (-612 "LSPP.spad" 1027195 1027212 1027652 1027657) (-611 "LSMP.spad" 1026035 1026063 1027185 1027190) (-610 "LSMP1.spad" 1023839 1023853 1026025 1026030) (-609 "LSAGG.spad" 1023496 1023506 1023795 1023834) (-608 "LSAGG.spad" 1023185 1023197 1023486 1023491) (-607 "LPOLY.spad" 1022139 1022158 1023041 1023110) (-606 "LPEFRAC.spad" 1021396 1021406 1022129 1022134) (-605 "LO.spad" 1020797 1020811 1021330 1021357) (-604 "LOGIC.spad" 1020399 1020407 1020787 1020792) (-603 "LOGIC.spad" 1019999 1020009 1020389 1020394) (-602 "LODOOPS.spad" 1018917 1018929 1019989 1019994) (-601 "LODO.spad" 1018303 1018319 1018599 1018638) (-600 "LODOF.spad" 1017347 1017364 1018260 1018265) (-599 "LODOCAT.spad" 1016005 1016015 1017303 1017342) (-598 "LODOCAT.spad" 1014661 1014673 1015961 1015966) (-597 "LODO2.spad" 1013936 1013948 1014343 1014382) (-596 "LODO1.spad" 1013338 1013348 1013618 1013657) (-595 "LODEEF.spad" 1012110 1012128 1013328 1013333) (-594 "LNAGG.spad" 1007902 1007912 1012090 1012105) (-593 "LNAGG.spad" 1003668 1003680 1007858 1007863) (-592 "LMOPS.spad" 1000404 1000421 1003658 1003663) (-591 "LMODULE.spad" 1000046 1000056 1000394 1000399) (-590 "LMDICT.spad" 999329 999339 999597 999624) (-589 "LIST.spad" 997047 997057 998476 998503) (-588 "LIST3.spad" 996338 996352 997037 997042) (-587 "LIST2.spad" 994978 994990 996328 996333) (-586 "LIST2MAP.spad" 991855 991867 994968 994973) (-585 "LINEXP.spad" 991287 991297 991835 991850) (-584 "LINDEP.spad" 990064 990076 991199 991204) (-583 "LIMITRF.spad" 987978 987988 990054 990059) (-582 "LIMITPS.spad" 986861 986874 987968 987973) (-581 "LIE.spad" 984875 984887 986151 986296) (-580 "LIECAT.spad" 984351 984361 984801 984870) (-579 "LIECAT.spad" 983855 983867 984307 984312) (-578 "LIB.spad" 981903 981911 982514 982529) (-577 "LGROBP.spad" 979256 979275 981893 981898) (-576 "LF.spad" 978175 978191 979246 979251) (-575 "LFCAT.spad" 977194 977202 978165 978170) (-574 "LEXTRIPK.spad" 972697 972712 977184 977189) (-573 "LEXP.spad" 970700 970727 972677 972692) (-572 "LEADCDET.spad" 969084 969101 970690 970695) (-571 "LAZM3PK.spad" 967788 967810 969074 969079) (-570 "LAUPOL.spad" 966479 966492 967383 967452) (-569 "LAPLACE.spad" 966052 966068 966469 966474) (-568 "LA.spad" 965492 965506 965974 966013) (-567 "LALG.spad" 965268 965278 965472 965487) (-566 "LALG.spad" 965052 965064 965258 965263) (-565 "KOVACIC.spad" 963765 963782 965042 965047) (-564 "KONVERT.spad" 963487 963497 963755 963760) (-563 "KOERCE.spad" 963224 963234 963477 963482) (-562 "KERNEL.spad" 961759 961769 963008 963013) (-561 "KERNEL2.spad" 961462 961474 961749 961754) (-560 "KDAGG.spad" 960553 960575 961430 961457) (-559 "KDAGG.spad" 959664 959688 960543 960548) (-558 "KAFILE.spad" 958627 958643 958862 958889) (-557 "JORDAN.spad" 956454 956466 957917 958062) (-556 "IXAGG.spad" 954567 954591 956434 956449) (-555 "IXAGG.spad" 952545 952571 954414 954419) (-554 "IVECTOR.spad" 951318 951333 951473 951500) (-553 "ITUPLE.spad" 950463 950473 951308 951313) (-552 "ITRIGMNP.spad" 949274 949293 950453 950458) (-551 "ITFUN3.spad" 948768 948782 949264 949269) (-550 "ITFUN2.spad" 948498 948510 948758 948763) (-549 "ITAYLOR.spad" 946290 946305 948334 948459) (-548 "ISUPS.spad" 938701 938716 945264 945361) (-547 "ISUMP.spad" 938198 938214 938691 938696) (-546 "ISTRING.spad" 937201 937214 937367 937394) (-545 "IRURPK.spad" 935914 935933 937191 937196) (-544 "IRSN.spad" 933874 933882 935904 935909) (-543 "IRRF2F.spad" 932349 932359 933830 933835) (-542 "IRREDFFX.spad" 931950 931961 932339 932344) (-541 "IROOT.spad" 930281 930291 931940 931945) (-540 "IR.spad" 928071 928085 930137 930164) (-539 "IR2.spad" 927091 927107 928061 928066) (-538 "IR2F.spad" 926291 926307 927081 927086) (-537 "IPRNTPK.spad" 926051 926059 926281 926286) (-536 "IPF.spad" 925616 925628 925856 925949) (-535 "IPADIC.spad" 925377 925403 925542 925611) (-534 "INVLAPLA.spad" 925022 925038 925367 925372) (-533 "INTTR.spad" 918268 918285 925012 925017) (-532 "INTTOOLS.spad" 915980 915996 917843 917848) (-531 "INTSLPE.spad" 915286 915294 915970 915975) (-530 "INTRVL.spad" 914852 914862 915200 915281) (-529 "INTRF.spad" 913216 913230 914842 914847) (-528 "INTRET.spad" 912648 912658 913206 913211) (-527 "INTRAT.spad" 911323 911340 912638 912643) (-526 "INTPM.spad" 909686 909702 910966 910971) (-525 "INTPAF.spad" 907454 907472 909618 909623) (-524 "INTPACK.spad" 897764 897772 907444 907449) (-523 "INT.spad" 897125 897133 897618 897759) (-522 "INTHERTR.spad" 896391 896408 897115 897120) (-521 "INTHERAL.spad" 896057 896081 896381 896386) (-520 "INTHEORY.spad" 892470 892478 896047 896052) (-519 "INTG0.spad" 885933 885951 892402 892407) (-518 "INTFTBL.spad" 879962 879970 885923 885928) (-517 "INTFACT.spad" 879021 879031 879952 879957) (-516 "INTEF.spad" 877336 877352 879011 879016) (-515 "INTDOM.spad" 875951 875959 877262 877331) (-514 "INTDOM.spad" 874628 874638 875941 875946) (-513 "INTCAT.spad" 872881 872891 874542 874623) (-512 "INTBIT.spad" 872384 872392 872871 872876) (-511 "INTALG.spad" 871566 871593 872374 872379) (-510 "INTAF.spad" 871058 871074 871556 871561) (-509 "INTABL.spad" 869576 869607 869739 869766) (-508 "INS.spad" 866972 866980 869478 869571) (-507 "INS.spad" 864454 864464 866962 866967) (-506 "INPSIGN.spad" 863888 863901 864444 864449) (-505 "INPRODPF.spad" 862954 862973 863878 863883) (-504 "INPRODFF.spad" 862012 862036 862944 862949) (-503 "INNMFACT.spad" 860983 861000 862002 862007) (-502 "INMODGCD.spad" 860467 860497 860973 860978) (-501 "INFSP.spad" 858752 858774 860457 860462) (-500 "INFPROD0.spad" 857802 857821 858742 858747) (-499 "INFORM.spad" 855070 855078 857792 857797) (-498 "INFORM1.spad" 854695 854705 855060 855065) (-497 "INFINITY.spad" 854247 854255 854685 854690) (-496 "INEP.spad" 852779 852801 854237 854242) (-495 "INDE.spad" 852685 852702 852769 852774) (-494 "INCRMAPS.spad" 852106 852116 852675 852680) (-493 "INBFF.spad" 847876 847887 852096 852101) (-492 "IMATRIX.spad" 846821 846847 847333 847360) (-491 "IMATQF.spad" 845915 845959 846777 846782) (-490 "IMATLIN.spad" 844520 844544 845871 845876) (-489 "ILIST.spad" 843176 843191 843703 843730) (-488 "IIARRAY2.spad" 842564 842602 842783 842810) (-487 "IFF.spad" 841974 841990 842245 842338) (-486 "IFARRAY.spad" 839461 839476 841157 841184) (-485 "IFAMON.spad" 839323 839340 839417 839422) (-484 "IEVALAB.spad" 838712 838724 839313 839318) (-483 "IEVALAB.spad" 838099 838113 838702 838707) (-482 "IDPO.spad" 837897 837909 838089 838094) (-481 "IDPOAMS.spad" 837653 837665 837887 837892) (-480 "IDPOAM.spad" 837373 837385 837643 837648) (-479 "IDPC.spad" 836307 836319 837363 837368) (-478 "IDPAM.spad" 836052 836064 836297 836302) (-477 "IDPAG.spad" 835799 835811 836042 836047) (-476 "IDECOMP.spad" 833036 833054 835789 835794) (-475 "IDEAL.spad" 827959 827998 832971 832976) (-474 "ICDEN.spad" 827110 827126 827949 827954) (-473 "ICARD.spad" 826299 826307 827100 827105) (-472 "IBPTOOLS.spad" 824892 824909 826289 826294) (-471 "IBITS.spad" 824091 824104 824528 824555) (-470 "IBATOOL.spad" 820966 820985 824081 824086) (-469 "IBACHIN.spad" 819453 819468 820956 820961) (-468 "IARRAY2.spad" 818441 818467 819060 819087) (-467 "IARRAY1.spad" 817486 817501 817624 817651) (-466 "IAN.spad" 815701 815709 817304 817397) (-465 "IALGFACT.spad" 815302 815335 815691 815696) (-464 "HYPCAT.spad" 814726 814734 815292 815297) (-463 "HYPCAT.spad" 814148 814158 814716 814721) (-462 "HOAGG.spad" 811406 811416 814128 814143) (-461 "HOAGG.spad" 808449 808461 811173 811178) (-460 "HEXADEC.spad" 806321 806329 806919 807012) (-459 "HEUGCD.spad" 805336 805347 806311 806316) (-458 "HELLFDIV.spad" 804926 804950 805326 805331) (-457 "HEAP.spad" 804318 804328 804533 804560) (-456 "HDP.spad" 795840 795856 796217 796346) (-455 "HDMP.spad" 793019 793034 793637 793764) (-454 "HB.spad" 791256 791264 793009 793014) (-453 "HASHTBL.spad" 789726 789757 789937 789964) (-452 "HACKPI.spad" 789209 789217 789628 789721) (-451 "GTSET.spad" 788148 788164 788855 788882) (-450 "GSTBL.spad" 786667 786702 786841 786856) (-449 "GSERIES.spad" 783834 783861 784799 784948) (-448 "GROUP.spad" 783008 783016 783814 783829) (-447 "GROUP.spad" 782190 782200 782998 783003) (-446 "GROEBSOL.spad" 780678 780699 782180 782185) (-445 "GRMOD.spad" 779249 779261 780668 780673) (-444 "GRMOD.spad" 777818 777832 779239 779244) (-443 "GRIMAGE.spad" 770423 770431 777808 777813) (-442 "GRDEF.spad" 768802 768810 770413 770418) (-441 "GRAY.spad" 767261 767269 768792 768797) (-440 "GRALG.spad" 766308 766320 767251 767256) (-439 "GRALG.spad" 765353 765367 766298 766303) (-438 "GPOLSET.spad" 764807 764830 765035 765062) (-437 "GOSPER.spad" 764072 764090 764797 764802) (-436 "GMODPOL.spad" 763210 763237 764040 764067) (-435 "GHENSEL.spad" 762279 762293 763200 763205) (-434 "GENUPS.spad" 758380 758393 762269 762274) (-433 "GENUFACT.spad" 757957 757967 758370 758375) (-432 "GENPGCD.spad" 757541 757558 757947 757952) (-431 "GENMFACT.spad" 756993 757012 757531 757536) (-430 "GENEEZ.spad" 754932 754945 756983 756988) (-429 "GDMP.spad" 751953 751970 752729 752856) (-428 "GCNAALG.spad" 745848 745875 751747 751814) (-427 "GCDDOM.spad" 745020 745028 745774 745843) (-426 "GCDDOM.spad" 744254 744264 745010 745015) (-425 "GB.spad" 741772 741810 744210 744215) (-424 "GBINTERN.spad" 737792 737830 741762 741767) (-423 "GBF.spad" 733549 733587 737782 737787) (-422 "GBEUCLID.spad" 731423 731461 733539 733544) (-421 "GAUSSFAC.spad" 730720 730728 731413 731418) (-420 "GALUTIL.spad" 729042 729052 730676 730681) (-419 "GALPOLYU.spad" 727488 727501 729032 729037) (-418 "GALFACTU.spad" 725653 725672 727478 727483) (-417 "GALFACT.spad" 715786 715797 725643 725648) (-416 "FVFUN.spad" 712799 712807 715766 715781) (-415 "FVC.spad" 711841 711849 712779 712794) (-414 "FUNCTION.spad" 711690 711702 711831 711836) (-413 "FT.spad" 709902 709910 711680 711685) (-412 "FTEM.spad" 709065 709073 709892 709897) (-411 "FSUPFACT.spad" 707966 707985 709002 709007) (-410 "FST.spad" 706052 706060 707956 707961) (-409 "FSRED.spad" 705530 705546 706042 706047) (-408 "FSPRMELT.spad" 704354 704370 705487 705492) (-407 "FSPECF.spad" 702431 702447 704344 704349) (-406 "FS.spad" 696482 696492 702195 702426) (-405 "FS.spad" 690324 690336 696039 696044) (-404 "FSINT.spad" 689982 689998 690314 690319) (-403 "FSERIES.spad" 689169 689181 689802 689901) (-402 "FSCINT.spad" 688482 688498 689159 689164) (-401 "FSAGG.spad" 687587 687597 688426 688477) (-400 "FSAGG.spad" 686666 686678 687507 687512) (-399 "FSAGG2.spad" 685365 685381 686656 686661) (-398 "FS2UPS.spad" 679754 679788 685355 685360) (-397 "FS2.spad" 679399 679415 679744 679749) (-396 "FS2EXPXP.spad" 678522 678545 679389 679394) (-395 "FRUTIL.spad" 677464 677474 678512 678517) (-394 "FR.spad" 671161 671171 676491 676560) (-393 "FRNAALG.spad" 666248 666258 671103 671156) (-392 "FRNAALG.spad" 661347 661359 666204 666209) (-391 "FRNAAF2.spad" 660801 660819 661337 661342) (-390 "FRMOD.spad" 660196 660226 660733 660738) (-389 "FRIDEAL.spad" 659391 659412 660176 660191) (-388 "FRIDEAL2.spad" 658993 659025 659381 659386) (-387 "FRETRCT.spad" 658504 658514 658983 658988) (-386 "FRETRCT.spad" 657883 657895 658364 658369) (-385 "FRAMALG.spad" 656211 656224 657839 657878) (-384 "FRAMALG.spad" 654571 654586 656201 656206) (-383 "FRAC.spad" 651674 651684 652077 652250) (-382 "FRAC2.spad" 651277 651289 651664 651669) (-381 "FR2.spad" 650611 650623 651267 651272) (-380 "FPS.spad" 647420 647428 650501 650606) (-379 "FPS.spad" 644257 644267 647340 647345) (-378 "FPC.spad" 643299 643307 644159 644252) (-377 "FPC.spad" 642427 642437 643289 643294) (-376 "FPATMAB.spad" 642179 642189 642407 642422) (-375 "FPARFRAC.spad" 640652 640669 642169 642174) (-374 "FORTRAN.spad" 639158 639201 640642 640647) (-373 "FORT.spad" 638087 638095 639148 639153) (-372 "FORTFN.spad" 635247 635255 638067 638082) (-371 "FORTCAT.spad" 634921 634929 635227 635242) (-370 "FORMULA.spad" 632259 632267 634911 634916) (-369 "FORMULA1.spad" 631738 631748 632249 632254) (-368 "FORDER.spad" 631429 631453 631728 631733) (-367 "FOP.spad" 630630 630638 631419 631424) (-366 "FNLA.spad" 630054 630076 630598 630625) (-365 "FNCAT.spad" 628382 628390 630044 630049) (-364 "FNAME.spad" 628274 628282 628372 628377) (-363 "FMTC.spad" 628072 628080 628200 628269) (-362 "FMONOID.spad" 625127 625137 628028 628033) (-361 "FM.spad" 624822 624834 625061 625088) (-360 "FMFUN.spad" 621842 621850 624802 624817) (-359 "FMC.spad" 620884 620892 621822 621837) (-358 "FMCAT.spad" 618538 618556 620852 620879) (-357 "FM1.spad" 617895 617907 618472 618499) (-356 "FLOATRP.spad" 615616 615630 617885 617890) (-355 "FLOAT.spad" 608780 608788 615482 615611) (-354 "FLOATCP.spad" 606197 606211 608770 608775) (-353 "FLINEXP.spad" 605909 605919 606177 606192) (-352 "FLINEXP.spad" 605575 605587 605845 605850) (-351 "FLASORT.spad" 604895 604907 605565 605570) (-350 "FLALG.spad" 602541 602560 604821 604890) (-349 "FLAGG.spad" 599547 599557 602509 602536) (-348 "FLAGG.spad" 596466 596478 599430 599435) (-347 "FLAGG2.spad" 595147 595163 596456 596461) (-346 "FINRALG.spad" 593176 593189 595103 595142) (-345 "FINRALG.spad" 591131 591146 593060 593065) (-344 "FINITE.spad" 590283 590291 591121 591126) (-343 "FINAALG.spad" 579264 579274 590225 590278) (-342 "FINAALG.spad" 568257 568269 579220 579225) (-341 "FILE.spad" 567840 567850 568247 568252) (-340 "FILECAT.spad" 566358 566375 567830 567835) (-339 "FIELD.spad" 565764 565772 566260 566353) (-338 "FIELD.spad" 565256 565266 565754 565759) (-337 "FGROUP.spad" 563865 563875 565236 565251) (-336 "FGLMICPK.spad" 562652 562667 563855 563860) (-335 "FFX.spad" 562027 562042 562368 562461) (-334 "FFSLPE.spad" 561516 561537 562017 562022) (-333 "FFPOLY.spad" 552768 552779 561506 561511) (-332 "FFPOLY2.spad" 551828 551845 552758 552763) (-331 "FFP.spad" 551225 551245 551544 551637) (-330 "FF.spad" 550673 550689 550906 550999) (-329 "FFNBX.spad" 549185 549205 550389 550482) (-328 "FFNBP.spad" 547698 547715 548901 548994) (-327 "FFNB.spad" 546163 546184 547379 547472) (-326 "FFINTBAS.spad" 543577 543596 546153 546158) (-325 "FFIELDC.spad" 541152 541160 543479 543572) (-324 "FFIELDC.spad" 538813 538823 541142 541147) (-323 "FFHOM.spad" 537561 537578 538803 538808) (-322 "FFF.spad" 534996 535007 537551 537556) (-321 "FFCGX.spad" 533843 533863 534712 534805) (-320 "FFCGP.spad" 532732 532752 533559 533652) (-319 "FFCG.spad" 531524 531545 532413 532506) (-318 "FFCAT.spad" 524425 524447 531363 531519) (-317 "FFCAT.spad" 517405 517429 524345 524350) (-316 "FFCAT2.spad" 517150 517190 517395 517400) (-315 "FEXPR.spad" 508863 508909 516910 516949) (-314 "FEVALAB.spad" 508569 508579 508853 508858) (-313 "FEVALAB.spad" 508060 508072 508346 508351) (-312 "FDIV.spad" 507502 507526 508050 508055) (-311 "FDIVCAT.spad" 505544 505568 507492 507497) (-310 "FDIVCAT.spad" 503584 503610 505534 505539) (-309 "FDIV2.spad" 503238 503278 503574 503579) (-308 "FCPAK1.spad" 501791 501799 503228 503233) (-307 "FCOMP.spad" 501170 501180 501781 501786) (-306 "FC.spad" 490995 491003 501160 501165) (-305 "FAXF.spad" 483930 483944 490897 490990) (-304 "FAXF.spad" 476917 476933 483886 483891) (-303 "FARRAY.spad" 475063 475073 476100 476127) (-302 "FAMR.spad" 473183 473195 474961 475058) (-301 "FAMR.spad" 471287 471301 473067 473072) (-300 "FAMONOID.spad" 470937 470947 471241 471246) (-299 "FAMONC.spad" 469159 469171 470927 470932) (-298 "FAGROUP.spad" 468765 468775 469055 469082) (-297 "FACUTIL.spad" 466961 466978 468755 468760) (-296 "FACTFUNC.spad" 466137 466147 466951 466956) (-295 "EXPUPXS.spad" 462970 462993 464269 464418) (-294 "EXPRTUBE.spad" 460198 460206 462960 462965) (-293 "EXPRODE.spad" 457070 457086 460188 460193) (-292 "EXPR.spad" 452372 452382 453086 453489) (-291 "EXPR2UPS.spad" 448464 448477 452362 452367) (-290 "EXPR2.spad" 448167 448179 448454 448459) (-289 "EXPEXPAN.spad" 445108 445133 445742 445835) (-288 "EXIT.spad" 444779 444787 445098 445103) (-287 "EVALCYC.spad" 444237 444251 444769 444774) (-286 "EVALAB.spad" 443801 443811 444227 444232) (-285 "EVALAB.spad" 443363 443375 443791 443796) (-284 "EUCDOM.spad" 440905 440913 443289 443358) (-283 "EUCDOM.spad" 438509 438519 440895 440900) (-282 "ESTOOLS.spad" 430349 430357 438499 438504) (-281 "ESTOOLS2.spad" 429950 429964 430339 430344) (-280 "ESTOOLS1.spad" 429635 429646 429940 429945) (-279 "ES.spad" 422182 422190 429625 429630) (-278 "ES.spad" 414637 414647 422082 422087) (-277 "ESCONT.spad" 411410 411418 414627 414632) (-276 "ESCONT1.spad" 411159 411171 411400 411405) (-275 "ES2.spad" 410654 410670 411149 411154) (-274 "ES1.spad" 410220 410236 410644 410649) (-273 "ERROR.spad" 407541 407549 410210 410215) (-272 "EQTBL.spad" 406013 406035 406222 406249) (-271 "EQ.spad" 400897 400907 403696 403805) (-270 "EQ2.spad" 400613 400625 400887 400892) (-269 "EP.spad" 396927 396937 400603 400608) (-268 "ENV.spad" 395629 395637 396917 396922) (-267 "ENTIRER.spad" 395297 395305 395573 395624) (-266 "EMR.spad" 394498 394539 395223 395292) (-265 "ELTAGG.spad" 392738 392757 394488 394493) (-264 "ELTAGG.spad" 390942 390963 392694 392699) (-263 "ELTAB.spad" 390389 390407 390932 390937) (-262 "ELFUTS.spad" 389768 389787 390379 390384) (-261 "ELEMFUN.spad" 389457 389465 389758 389763) (-260 "ELEMFUN.spad" 389144 389154 389447 389452) (-259 "ELAGG.spad" 387075 387085 389112 389139) (-258 "ELAGG.spad" 384955 384967 386994 386999) (-257 "ELABEXPR.spad" 383886 383894 384945 384950) (-256 "EFUPXS.spad" 380662 380692 383842 383847) (-255 "EFULS.spad" 377498 377521 380618 380623) (-254 "EFSTRUC.spad" 375453 375469 377488 377493) (-253 "EF.spad" 370219 370235 375443 375448) (-252 "EAB.spad" 368495 368503 370209 370214) (-251 "E04UCFA.spad" 368031 368039 368485 368490) (-250 "E04NAFA.spad" 367608 367616 368021 368026) (-249 "E04MBFA.spad" 367188 367196 367598 367603) (-248 "E04JAFA.spad" 366724 366732 367178 367183) (-247 "E04GCFA.spad" 366260 366268 366714 366719) (-246 "E04FDFA.spad" 365796 365804 366250 366255) (-245 "E04DGFA.spad" 365332 365340 365786 365791) (-244 "E04AGNT.spad" 361174 361182 365322 365327) (-243 "DVARCAT.spad" 357859 357869 361164 361169) (-242 "DVARCAT.spad" 354542 354554 357849 357854) (-241 "DSMP.spad" 351976 351990 352281 352408) (-240 "DROPT.spad" 345921 345929 351966 351971) (-239 "DROPT1.spad" 345584 345594 345911 345916) (-238 "DROPT0.spad" 340411 340419 345574 345579) (-237 "DRAWPT.spad" 338566 338574 340401 340406) (-236 "DRAW.spad" 331166 331179 338556 338561) (-235 "DRAWHACK.spad" 330474 330484 331156 331161) (-234 "DRAWCX.spad" 327916 327924 330464 330469) (-233 "DRAWCURV.spad" 327453 327468 327906 327911) (-232 "DRAWCFUN.spad" 316625 316633 327443 327448) (-231 "DQAGG.spad" 314781 314791 316581 316620) (-230 "DPOLCAT.spad" 310122 310138 314649 314776) (-229 "DPOLCAT.spad" 305549 305567 310078 310083) (-228 "DPMO.spad" 299536 299552 299674 299970) (-227 "DPMM.spad" 293536 293554 293661 293957) (-226 "DOMAIN.spad" 292807 292815 293526 293531) (-225 "DMP.spad" 290032 290047 290604 290731) (-224 "DLP.spad" 289380 289390 290022 290027) (-223 "DLIST.spad" 287792 287802 288563 288590) (-222 "DLAGG.spad" 286193 286203 287772 287787) (-221 "DIVRING.spad" 285640 285648 286137 286188) (-220 "DIVRING.spad" 285131 285141 285630 285635) (-219 "DISPLAY.spad" 283311 283319 285121 285126) (-218 "DIRPROD.spad" 274570 274586 275210 275339) (-217 "DIRPROD2.spad" 273378 273396 274560 274565) (-216 "DIRPCAT.spad" 272310 272326 273232 273373) (-215 "DIRPCAT.spad" 270982 271000 271906 271911) (-214 "DIOSP.spad" 269807 269815 270972 270977) (-213 "DIOPS.spad" 268779 268789 269775 269802) (-212 "DIOPS.spad" 267737 267749 268735 268740) (-211 "DIFRING.spad" 267029 267037 267717 267732) (-210 "DIFRING.spad" 266329 266339 267019 267024) (-209 "DIFEXT.spad" 265488 265498 266309 266324) (-208 "DIFEXT.spad" 264564 264576 265387 265392) (-207 "DIAGG.spad" 264182 264192 264532 264559) (-206 "DIAGG.spad" 263820 263832 264172 264177) (-205 "DHMATRIX.spad" 262124 262134 263277 263304) (-204 "DFSFUN.spad" 255532 255540 262114 262119) (-203 "DFLOAT.spad" 252055 252063 255422 255527) (-202 "DFINTTLS.spad" 250264 250280 252045 252050) (-201 "DERHAM.spad" 248174 248206 250244 250259) (-200 "DEQUEUE.spad" 247492 247502 247781 247808) (-199 "DEGRED.spad" 247107 247121 247482 247487) (-198 "DEFINTRF.spad" 244632 244642 247097 247102) (-197 "DEFINTEF.spad" 243128 243144 244622 244627) (-196 "DECIMAL.spad" 241012 241020 241598 241691) (-195 "DDFACT.spad" 238811 238828 241002 241007) (-194 "DBLRESP.spad" 238409 238433 238801 238806) (-193 "DBASE.spad" 236981 236991 238399 238404) (-192 "D03FAFA.spad" 236809 236817 236971 236976) (-191 "D03EEFA.spad" 236629 236637 236799 236804) (-190 "D03AGNT.spad" 235709 235717 236619 236624) (-189 "D02EJFA.spad" 235171 235179 235699 235704) (-188 "D02CJFA.spad" 234649 234657 235161 235166) (-187 "D02BHFA.spad" 234139 234147 234639 234644) (-186 "D02BBFA.spad" 233629 233637 234129 234134) (-185 "D02AGNT.spad" 228433 228441 233619 233624) (-184 "D01WGTS.spad" 226752 226760 228423 228428) (-183 "D01TRNS.spad" 226729 226737 226742 226747) (-182 "D01GBFA.spad" 226251 226259 226719 226724) (-181 "D01FCFA.spad" 225773 225781 226241 226246) (-180 "D01ASFA.spad" 225241 225249 225763 225768) (-179 "D01AQFA.spad" 224687 224695 225231 225236) (-178 "D01APFA.spad" 224111 224119 224677 224682) (-177 "D01ANFA.spad" 223605 223613 224101 224106) (-176 "D01AMFA.spad" 223115 223123 223595 223600) (-175 "D01ALFA.spad" 222655 222663 223105 223110) (-174 "D01AKFA.spad" 222181 222189 222645 222650) (-173 "D01AJFA.spad" 221704 221712 222171 222176) (-172 "D01AGNT.spad" 217763 217771 221694 221699) (-171 "CYCLOTOM.spad" 217269 217277 217753 217758) (-170 "CYCLES.spad" 214101 214109 217259 217264) (-169 "CVMP.spad" 213518 213528 214091 214096) (-168 "CTRIGMNP.spad" 212008 212024 213508 213513) (-167 "CTORCALL.spad" 211596 211604 211998 212003) (-166 "CSTTOOLS.spad" 210839 210852 211586 211591) (-165 "CRFP.spad" 204543 204556 210829 210834) (-164 "CRAPACK.spad" 203586 203596 204533 204538) (-163 "CPMATCH.spad" 203086 203101 203511 203516) (-162 "CPIMA.spad" 202791 202810 203076 203081) (-161 "COORDSYS.spad" 197684 197694 202781 202786) (-160 "CONTOUR.spad" 197086 197094 197674 197679) (-159 "CONTFRAC.spad" 192698 192708 196988 197081) (-158 "COMRING.spad" 192372 192380 192636 192693) (-157 "COMPPROP.spad" 191886 191894 192362 192367) (-156 "COMPLPAT.spad" 191653 191668 191876 191881) (-155 "COMPLEX.spad" 185686 185696 185930 186191) (-154 "COMPLEX2.spad" 185399 185411 185676 185681) (-153 "COMPFACT.spad" 185001 185015 185389 185394) (-152 "COMPCAT.spad" 183057 183067 184723 184996) (-151 "COMPCAT.spad" 180820 180832 182488 182493) (-150 "COMMUPC.spad" 180566 180584 180810 180815) (-149 "COMMONOP.spad" 180099 180107 180556 180561) (-148 "COMM.spad" 179908 179916 180089 180094) (-147 "COMBOPC.spad" 178813 178821 179898 179903) (-146 "COMBINAT.spad" 177558 177568 178803 178808) (-145 "COMBF.spad" 174926 174942 177548 177553) (-144 "COLOR.spad" 173763 173771 174916 174921) (-143 "CMPLXRT.spad" 173472 173489 173753 173758) (-142 "CLIP.spad" 169564 169572 173462 173467) (-141 "CLIF.spad" 168203 168219 169520 169559) (-140 "CLAGG.spad" 164678 164688 168183 168198) (-139 "CLAGG.spad" 161034 161046 164541 164546) (-138 "CINTSLPE.spad" 160359 160372 161024 161029) (-137 "CHVAR.spad" 158437 158459 160349 160354) (-136 "CHARZ.spad" 158352 158360 158417 158432) (-135 "CHARPOL.spad" 157860 157870 158342 158347) (-134 "CHARNZ.spad" 157613 157621 157840 157855) (-133 "CHAR.spad" 155481 155489 157603 157608) (-132 "CFCAT.spad" 154797 154805 155471 155476) (-131 "CDEN.spad" 153955 153969 154787 154792) (-130 "CCLASS.spad" 152104 152112 153366 153405) (-129 "CATEGORY.spad" 151883 151891 152094 152099) (-128 "CARTEN.spad" 146986 147010 151873 151878) (-127 "CARTEN2.spad" 146372 146399 146976 146981) (-126 "CARD.spad" 143661 143669 146346 146367) (-125 "CACHSET.spad" 143283 143291 143651 143656) (-124 "CABMON.spad" 142836 142844 143273 143278) (-123 "BTREE.spad" 141905 141915 142443 142470) (-122 "BTOURN.spad" 140908 140918 141512 141539) (-121 "BTCAT.spad" 140284 140294 140864 140903) (-120 "BTCAT.spad" 139692 139704 140274 140279) (-119 "BTAGG.spad" 138708 138716 139648 139687) (-118 "BTAGG.spad" 137756 137766 138698 138703) (-117 "BSTREE.spad" 136491 136501 137363 137390) (-116 "BRILL.spad" 134686 134697 136481 136486) (-115 "BRAGG.spad" 133600 133610 134666 134681) (-114 "BRAGG.spad" 132488 132500 133556 133561) (-113 "BPADICRT.spad" 130472 130484 130727 130820) (-112 "BPADIC.spad" 130136 130148 130398 130467) (-111 "BOUNDZRO.spad" 129792 129809 130126 130131) (-110 "BOP.spad" 125256 125264 129782 129787) (-109 "BOP1.spad" 122642 122652 125212 125217) (-108 "BOOLEAN.spad" 121895 121903 122632 122637) (-107 "BMODULE.spad" 121607 121619 121863 121890) (-106 "BITS.spad" 121026 121034 121243 121270) (-105 "BINFILE.spad" 120369 120377 121016 121021) (-104 "BINDING.spad" 119788 119796 120359 120364) (-103 "BINARY.spad" 117681 117689 118258 118351) (-102 "BGAGG.spad" 116866 116876 117649 117676) (-101 "BGAGG.spad" 116071 116083 116856 116861) (-100 "BFUNCT.spad" 115635 115643 116051 116066) (-99 "BEZOUT.spad" 114770 114796 115585 115590) (-98 "BBTREE.spad" 111590 111599 114377 114404) (-97 "BASTYPE.spad" 111263 111270 111580 111585) (-96 "BASTYPE.spad" 110934 110943 111253 111258) (-95 "BALFACT.spad" 110374 110386 110924 110929) (-94 "AUTOMOR.spad" 109821 109830 110354 110369) (-93 "ATTREG.spad" 106540 106547 109573 109816) (-92 "ATTRBUT.spad" 102563 102570 106520 106535) (-91 "ATRIG.spad" 102033 102040 102553 102558) (-90 "ATRIG.spad" 101501 101510 102023 102028) (-89 "ASTACK.spad" 100834 100843 101108 101135) (-88 "ASSOCEQ.spad" 99634 99645 100790 100795) (-87 "ASP9.spad" 98715 98728 99624 99629) (-86 "ASP8.spad" 97758 97771 98705 98710) (-85 "ASP80.spad" 97080 97093 97748 97753) (-84 "ASP7.spad" 96240 96253 97070 97075) (-83 "ASP78.spad" 95691 95704 96230 96235) (-82 "ASP77.spad" 95060 95073 95681 95686) (-81 "ASP74.spad" 94152 94165 95050 95055) (-80 "ASP73.spad" 93423 93436 94142 94147) (-79 "ASP6.spad" 92055 92068 93413 93418) (-78 "ASP55.spad" 90564 90577 92045 92050) (-77 "ASP50.spad" 88381 88394 90554 90559) (-76 "ASP4.spad" 87676 87689 88371 88376) (-75 "ASP49.spad" 86675 86688 87666 87671) (-74 "ASP42.spad" 85082 85121 86665 86670) (-73 "ASP41.spad" 83661 83700 85072 85077) (-72 "ASP35.spad" 82649 82662 83651 83656) (-71 "ASP34.spad" 81950 81963 82639 82644) (-70 "ASP33.spad" 81510 81523 81940 81945) (-69 "ASP31.spad" 80650 80663 81500 81505) (-68 "ASP30.spad" 79542 79555 80640 80645) (-67 "ASP29.spad" 79008 79021 79532 79537) (-66 "ASP28.spad" 70281 70294 78998 79003) (-65 "ASP27.spad" 69178 69191 70271 70276) (-64 "ASP24.spad" 68265 68278 69168 69173) (-63 "ASP20.spad" 67481 67494 68255 68260) (-62 "ASP1.spad" 66862 66875 67471 67476) (-61 "ASP19.spad" 61548 61561 66852 66857) (-60 "ASP12.spad" 60962 60975 61538 61543) (-59 "ASP10.spad" 60233 60246 60952 60957) (-58 "ARRAY2.spad" 59593 59602 59840 59867) (-57 "ARRAY1.spad" 58428 58437 58776 58803) (-56 "ARRAY12.spad" 57097 57108 58418 58423) (-55 "ARR2CAT.spad" 52747 52768 57053 57092) (-54 "ARR2CAT.spad" 48429 48452 52737 52742) (-53 "APPRULE.spad" 47673 47695 48419 48424) (-52 "APPLYORE.spad" 47288 47301 47663 47668) (-51 "ANY.spad" 45630 45637 47278 47283) (-50 "ANY1.spad" 44701 44710 45620 45625) (-49 "ANTISYM.spad" 43140 43156 44681 44696) (-48 "ANON.spad" 42837 42844 43130 43135) (-47 "AN.spad" 41140 41147 42655 42748) (-46 "AMR.spad" 39319 39330 41038 41135) (-45 "AMR.spad" 37335 37348 39056 39061) (-44 "ALIST.spad" 34747 34768 35097 35124) (-43 "ALGSC.spad" 33870 33896 34619 34672) (-42 "ALGPKG.spad" 29579 29590 33826 33831) (-41 "ALGMFACT.spad" 28768 28782 29569 29574) (-40 "ALGMANIP.spad" 26189 26204 28566 28571) (-39 "ALGFF.spad" 24507 24534 24724 24880) (-38 "ALGFACT.spad" 23628 23638 24497 24502) (-37 "ALGEBRA.spad" 23359 23368 23584 23623) (-36 "ALGEBRA.spad" 23122 23133 23349 23354) (-35 "ALAGG.spad" 22620 22641 23078 23117) (-34 "AHYP.spad" 22001 22008 22610 22615) (-33 "AGG.spad" 20300 20307 21981 21996) (-32 "AGG.spad" 18573 18582 20256 20261) (-31 "AF.spad" 16999 17014 18509 18514) (-30 "ACPLOT.spad" 15570 15577 16989 16994) (-29 "ACFS.spad" 13309 13318 15460 15565) (-28 "ACFS.spad" 11146 11157 13299 13304) (-27 "ACF.spad" 7748 7755 11048 11141) (-26 "ACF.spad" 4436 4445 7738 7743) (-25 "ABELSG.spad" 3977 3984 4426 4431) (-24 "ABELSG.spad" 3516 3525 3967 3972) (-23 "ABELMON.spad" 3059 3066 3506 3511) (-22 "ABELMON.spad" 2600 2609 3049 3054) (-21 "ABELGRP.spad" 2172 2179 2590 2595) (-20 "ABELGRP.spad" 1742 1751 2162 2167) (-19 "A1AGG.spad" 870 879 1698 1737) (-18 "A1AGG.spad" 30 41 860 865)) \ No newline at end of file
+((-3 NIL 2237757 2237762 2237767 2237772) (-2 NIL 2237737 2237742 2237747 2237752) (-1 NIL 2237717 2237722 2237727 2237732) (0 NIL 2237697 2237702 2237707 2237712) (-1197 "ZMOD.spad" 2237506 2237519 2237635 2237692) (-1196 "ZLINDEP.spad" 2236550 2236561 2237496 2237501) (-1195 "ZDSOLVE.spad" 2226399 2226421 2236540 2236545) (-1194 "YSTREAM.spad" 2225892 2225903 2226389 2226394) (-1193 "XRPOLY.spad" 2225112 2225132 2225748 2225817) (-1192 "XPR.spad" 2222841 2222854 2224830 2224929) (-1191 "XPOLY.spad" 2222396 2222407 2222697 2222766) (-1190 "XPOLYC.spad" 2221713 2221729 2222322 2222391) (-1189 "XPBWPOLY.spad" 2220150 2220170 2221493 2221562) (-1188 "XF.spad" 2218611 2218626 2220052 2220145) (-1187 "XF.spad" 2217052 2217069 2218495 2218500) (-1186 "XFALG.spad" 2214076 2214092 2216978 2217047) (-1185 "XEXPPKG.spad" 2213327 2213353 2214066 2214071) (-1184 "XDPOLY.spad" 2212941 2212957 2213183 2213252) (-1183 "XALG.spad" 2212539 2212550 2212897 2212936) (-1182 "WUTSET.spad" 2208378 2208395 2212185 2212212) (-1181 "WP.spad" 2207392 2207436 2208236 2208303) (-1180 "WFFINTBS.spad" 2204955 2204977 2207382 2207387) (-1179 "WEIER.spad" 2203169 2203180 2204945 2204950) (-1178 "VSPACE.spad" 2202842 2202853 2203137 2203164) (-1177 "VSPACE.spad" 2202535 2202548 2202832 2202837) (-1176 "VOID.spad" 2202125 2202134 2202525 2202530) (-1175 "VIEW.spad" 2199747 2199756 2202115 2202120) (-1174 "VIEWDEF.spad" 2194944 2194953 2199737 2199742) (-1173 "VIEW3D.spad" 2178779 2178788 2194934 2194939) (-1172 "VIEW2D.spad" 2166516 2166525 2178769 2178774) (-1171 "VECTOR.spad" 2165193 2165204 2165444 2165471) (-1170 "VECTOR2.spad" 2163820 2163833 2165183 2165188) (-1169 "VECTCAT.spad" 2161708 2161719 2163776 2163815) (-1168 "VECTCAT.spad" 2159417 2159430 2161487 2161492) (-1167 "VARIABLE.spad" 2159197 2159212 2159407 2159412) (-1166 "UTYPE.spad" 2158831 2158840 2159177 2159192) (-1165 "UTSODETL.spad" 2158124 2158148 2158787 2158792) (-1164 "UTSODE.spad" 2156312 2156332 2158114 2158119) (-1163 "UTS.spad" 2151101 2151129 2154779 2154876) (-1162 "UTSCAT.spad" 2148552 2148568 2150999 2151096) (-1161 "UTSCAT.spad" 2145647 2145665 2148096 2148101) (-1160 "UTS2.spad" 2145240 2145275 2145637 2145642) (-1159 "URAGG.spad" 2139862 2139873 2145220 2145235) (-1158 "URAGG.spad" 2134458 2134471 2139818 2139823) (-1157 "UPXSSING.spad" 2132104 2132130 2133542 2133675) (-1156 "UPXS.spad" 2129131 2129159 2130236 2130385) (-1155 "UPXSCONS.spad" 2126888 2126908 2127263 2127412) (-1154 "UPXSCCA.spad" 2125346 2125366 2126734 2126883) (-1153 "UPXSCCA.spad" 2123946 2123968 2125336 2125341) (-1152 "UPXSCAT.spad" 2122527 2122543 2123792 2123941) (-1151 "UPXS2.spad" 2122068 2122121 2122517 2122522) (-1150 "UPSQFREE.spad" 2120480 2120494 2122058 2122063) (-1149 "UPSCAT.spad" 2118073 2118097 2120378 2120475) (-1148 "UPSCAT.spad" 2115372 2115398 2117679 2117684) (-1147 "UPOLYC.spad" 2110350 2110361 2115214 2115367) (-1146 "UPOLYC.spad" 2105220 2105233 2110086 2110091) (-1145 "UPOLYC2.spad" 2104689 2104708 2105210 2105215) (-1144 "UP.spad" 2101734 2101749 2102242 2102395) (-1143 "UPMP.spad" 2100624 2100637 2101724 2101729) (-1142 "UPDIVP.spad" 2100187 2100201 2100614 2100619) (-1141 "UPDECOMP.spad" 2098424 2098438 2100177 2100182) (-1140 "UPCDEN.spad" 2097631 2097647 2098414 2098419) (-1139 "UP2.spad" 2096993 2097014 2097621 2097626) (-1138 "UNISEG.spad" 2096346 2096357 2096912 2096917) (-1137 "UNISEG2.spad" 2095839 2095852 2096302 2096307) (-1136 "UNIFACT.spad" 2094940 2094952 2095829 2095834) (-1135 "ULS.spad" 2085499 2085527 2086592 2087021) (-1134 "ULSCONS.spad" 2079542 2079562 2079914 2080063) (-1133 "ULSCCAT.spad" 2077139 2077159 2079362 2079537) (-1132 "ULSCCAT.spad" 2074870 2074892 2077095 2077100) (-1131 "ULSCAT.spad" 2073086 2073102 2074716 2074865) (-1130 "ULS2.spad" 2072598 2072651 2073076 2073081) (-1129 "UFD.spad" 2071663 2071672 2072524 2072593) (-1128 "UFD.spad" 2070790 2070801 2071653 2071658) (-1127 "UDVO.spad" 2069637 2069646 2070780 2070785) (-1126 "UDPO.spad" 2067064 2067075 2069593 2069598) (-1125 "TYPE.spad" 2066986 2066995 2067044 2067059) (-1124 "TWOFACT.spad" 2065636 2065651 2066976 2066981) (-1123 "TUPLE.spad" 2065022 2065033 2065535 2065540) (-1122 "TUBETOOL.spad" 2061859 2061868 2065012 2065017) (-1121 "TUBE.spad" 2060500 2060517 2061849 2061854) (-1120 "TS.spad" 2059089 2059105 2060065 2060162) (-1119 "TSETCAT.spad" 2046204 2046221 2059045 2059084) (-1118 "TSETCAT.spad" 2033317 2033336 2046160 2046165) (-1117 "TRMANIP.spad" 2027683 2027700 2033023 2033028) (-1116 "TRIMAT.spad" 2026642 2026667 2027673 2027678) (-1115 "TRIGMNIP.spad" 2025159 2025176 2026632 2026637) (-1114 "TRIGCAT.spad" 2024671 2024680 2025149 2025154) (-1113 "TRIGCAT.spad" 2024181 2024192 2024661 2024666) (-1112 "TREE.spad" 2022752 2022763 2023788 2023815) (-1111 "TRANFUN.spad" 2022583 2022592 2022742 2022747) (-1110 "TRANFUN.spad" 2022412 2022423 2022573 2022578) (-1109 "TOPSP.spad" 2022086 2022095 2022402 2022407) (-1108 "TOOLSIGN.spad" 2021749 2021760 2022076 2022081) (-1107 "TEXTFILE.spad" 2020306 2020315 2021739 2021744) (-1106 "TEX.spad" 2017323 2017332 2020296 2020301) (-1105 "TEX1.spad" 2016879 2016890 2017313 2017318) (-1104 "TEMUTL.spad" 2016434 2016443 2016869 2016874) (-1103 "TBCMPPK.spad" 2014527 2014550 2016424 2016429) (-1102 "TBAGG.spad" 2013551 2013574 2014495 2014522) (-1101 "TBAGG.spad" 2012595 2012620 2013541 2013546) (-1100 "TANEXP.spad" 2011971 2011982 2012585 2012590) (-1099 "TABLE.spad" 2010382 2010405 2010652 2010679) (-1098 "TABLEAU.spad" 2009863 2009874 2010372 2010377) (-1097 "TABLBUMP.spad" 2006646 2006657 2009853 2009858) (-1096 "SYSTEM.spad" 2005920 2005929 2006636 2006641) (-1095 "SYSSOLP.spad" 2003393 2003404 2005910 2005915) (-1094 "SYNTAX.spad" 1999585 1999594 2003383 2003388) (-1093 "SYMTAB.spad" 1997641 1997650 1999575 1999580) (-1092 "SYMS.spad" 1993626 1993635 1997631 1997636) (-1091 "SYMPOLY.spad" 1992636 1992647 1992718 1992845) (-1090 "SYMFUNC.spad" 1992111 1992122 1992626 1992631) (-1089 "SYMBOL.spad" 1989447 1989456 1992101 1992106) (-1088 "SWITCH.spad" 1986204 1986213 1989437 1989442) (-1087 "SUTS.spad" 1983103 1983131 1984671 1984768) (-1086 "SUPXS.spad" 1980117 1980145 1981235 1981384) (-1085 "SUP.spad" 1976889 1976900 1977670 1977823) (-1084 "SUPFRACF.spad" 1975994 1976012 1976879 1976884) (-1083 "SUP2.spad" 1975384 1975397 1975984 1975989) (-1082 "SUMRF.spad" 1974350 1974361 1975374 1975379) (-1081 "SUMFS.spad" 1973983 1974000 1974340 1974345) (-1080 "SULS.spad" 1964529 1964557 1965635 1966064) (-1079 "SUCH.spad" 1964209 1964224 1964519 1964524) (-1078 "SUBSPACE.spad" 1956216 1956231 1964199 1964204) (-1077 "SUBRESP.spad" 1955376 1955390 1956172 1956177) (-1076 "STTF.spad" 1951475 1951491 1955366 1955371) (-1075 "STTFNC.spad" 1947943 1947959 1951465 1951470) (-1074 "STTAYLOR.spad" 1940341 1940352 1947824 1947829) (-1073 "STRTBL.spad" 1938846 1938863 1938995 1939022) (-1072 "STRING.spad" 1938255 1938264 1938269 1938296) (-1071 "STRICAT.spad" 1938031 1938040 1938211 1938250) (-1070 "STREAM.spad" 1934799 1934810 1937556 1937571) (-1069 "STREAM3.spad" 1934344 1934359 1934789 1934794) (-1068 "STREAM2.spad" 1933412 1933425 1934334 1934339) (-1067 "STREAM1.spad" 1933116 1933127 1933402 1933407) (-1066 "STINPROD.spad" 1932022 1932038 1933106 1933111) (-1065 "STEP.spad" 1931223 1931232 1932012 1932017) (-1064 "STBL.spad" 1929749 1929777 1929916 1929931) (-1063 "STAGG.spad" 1928814 1928825 1929729 1929744) (-1062 "STAGG.spad" 1927887 1927900 1928804 1928809) (-1061 "STACK.spad" 1927238 1927249 1927494 1927521) (-1060 "SREGSET.spad" 1924942 1924959 1926884 1926911) (-1059 "SRDCMPK.spad" 1923487 1923507 1924932 1924937) (-1058 "SRAGG.spad" 1918572 1918581 1923443 1923482) (-1057 "SRAGG.spad" 1913689 1913700 1918562 1918567) (-1056 "SQMATRIX.spad" 1911315 1911333 1912223 1912310) (-1055 "SPLTREE.spad" 1905867 1905880 1910751 1910778) (-1054 "SPLNODE.spad" 1902455 1902468 1905857 1905862) (-1053 "SPFCAT.spad" 1901232 1901241 1902445 1902450) (-1052 "SPECOUT.spad" 1899782 1899791 1901222 1901227) (-1051 "spad-parser.spad" 1899247 1899256 1899772 1899777) (-1050 "SPACEC.spad" 1883260 1883271 1899237 1899242) (-1049 "SPACE3.spad" 1883036 1883047 1883250 1883255) (-1048 "SORTPAK.spad" 1882581 1882594 1882992 1882997) (-1047 "SOLVETRA.spad" 1880338 1880349 1882571 1882576) (-1046 "SOLVESER.spad" 1878858 1878869 1880328 1880333) (-1045 "SOLVERAD.spad" 1874868 1874879 1878848 1878853) (-1044 "SOLVEFOR.spad" 1873288 1873306 1874858 1874863) (-1043 "SNTSCAT.spad" 1872876 1872893 1873244 1873283) (-1042 "SMTS.spad" 1871136 1871162 1872441 1872538) (-1041 "SMP.spad" 1868578 1868598 1868968 1869095) (-1040 "SMITH.spad" 1867421 1867446 1868568 1868573) (-1039 "SMATCAT.spad" 1865519 1865549 1867353 1867416) (-1038 "SMATCAT.spad" 1863561 1863593 1865397 1865402) (-1037 "SKAGG.spad" 1862510 1862521 1863517 1863556) (-1036 "SINT.spad" 1860818 1860827 1862376 1862505) (-1035 "SIMPAN.spad" 1860546 1860555 1860808 1860813) (-1034 "SIGNRF.spad" 1859654 1859665 1860536 1860541) (-1033 "SIGNEF.spad" 1858923 1858940 1859644 1859649) (-1032 "SHP.spad" 1856841 1856856 1858879 1858884) (-1031 "SHDP.spad" 1848231 1848258 1848740 1848869) (-1030 "SGROUP.spad" 1847697 1847706 1848221 1848226) (-1029 "SGROUP.spad" 1847161 1847172 1847687 1847692) (-1028 "SGCF.spad" 1840042 1840051 1847151 1847156) (-1027 "SFRTCAT.spad" 1838958 1838975 1839998 1840037) (-1026 "SFRGCD.spad" 1838021 1838041 1838948 1838953) (-1025 "SFQCMPK.spad" 1832658 1832678 1838011 1838016) (-1024 "SFORT.spad" 1832093 1832107 1832648 1832653) (-1023 "SEXOF.spad" 1831936 1831976 1832083 1832088) (-1022 "SEX.spad" 1831828 1831837 1831926 1831931) (-1021 "SEXCAT.spad" 1828932 1828972 1831818 1831823) (-1020 "SET.spad" 1827232 1827243 1828353 1828392) (-1019 "SETMN.spad" 1825666 1825683 1827222 1827227) (-1018 "SETCAT.spad" 1825151 1825160 1825656 1825661) (-1017 "SETCAT.spad" 1824634 1824645 1825141 1825146) (-1016 "SETAGG.spad" 1821157 1821168 1824602 1824629) (-1015 "SETAGG.spad" 1817700 1817713 1821147 1821152) (-1014 "SEGXCAT.spad" 1816812 1816825 1817680 1817695) (-1013 "SEG.spad" 1816625 1816636 1816731 1816736) (-1012 "SEGCAT.spad" 1815444 1815455 1816605 1816620) (-1011 "SEGBIND.spad" 1814516 1814527 1815399 1815404) (-1010 "SEGBIND2.spad" 1814212 1814225 1814506 1814511) (-1009 "SEG2.spad" 1813637 1813650 1814168 1814173) (-1008 "SDVAR.spad" 1812913 1812924 1813627 1813632) (-1007 "SDPOL.spad" 1810306 1810317 1810597 1810724) (-1006 "SCPKG.spad" 1808385 1808396 1810296 1810301) (-1005 "SCOPE.spad" 1807530 1807539 1808375 1808380) (-1004 "SCACHE.spad" 1806212 1806223 1807520 1807525) (-1003 "SAOS.spad" 1806084 1806093 1806202 1806207) (-1002 "SAERFFC.spad" 1805797 1805817 1806074 1806079) (-1001 "SAE.spad" 1803975 1803991 1804586 1804721) (-1000 "SAEFACT.spad" 1803676 1803696 1803965 1803970) (-999 "RURPK.spad" 1801318 1801333 1803666 1803671) (-998 "RULESET.spad" 1800760 1800783 1801308 1801313) (-997 "RULE.spad" 1798965 1798988 1800750 1800755) (-996 "RULECOLD.spad" 1798818 1798830 1798955 1798960) (-995 "RSETGCD.spad" 1795197 1795216 1798808 1798813) (-994 "RSETCAT.spad" 1784970 1784986 1795153 1795192) (-993 "RSETCAT.spad" 1774775 1774793 1784960 1784965) (-992 "RSDCMPK.spad" 1773228 1773247 1774765 1774770) (-991 "RRCC.spad" 1771613 1771642 1773218 1773223) (-990 "RRCC.spad" 1769996 1770027 1771603 1771608) (-989 "RPOLCAT.spad" 1749357 1749371 1769864 1769991) (-988 "RPOLCAT.spad" 1728433 1728449 1748942 1748947) (-987 "ROUTINE.spad" 1724297 1724305 1727080 1727107) (-986 "ROMAN.spad" 1723530 1723538 1724163 1724292) (-985 "ROIRC.spad" 1722611 1722642 1723520 1723525) (-984 "RNS.spad" 1721515 1721523 1722513 1722606) (-983 "RNS.spad" 1720505 1720515 1721505 1721510) (-982 "RNG.spad" 1720241 1720249 1720495 1720500) (-981 "RMODULE.spad" 1719880 1719890 1720231 1720236) (-980 "RMCAT2.spad" 1719289 1719345 1719870 1719875) (-979 "RMATRIX.spad" 1717969 1717987 1718456 1718495) (-978 "RMATCAT.spad" 1713491 1713521 1717913 1717964) (-977 "RMATCAT.spad" 1708915 1708947 1713339 1713344) (-976 "RINTERP.spad" 1708804 1708823 1708905 1708910) (-975 "RING.spad" 1708162 1708170 1708784 1708799) (-974 "RING.spad" 1707528 1707538 1708152 1708157) (-973 "RIDIST.spad" 1706913 1706921 1707518 1707523) (-972 "RGCHAIN.spad" 1705493 1705508 1706398 1706425) (-971 "RF.spad" 1703108 1703118 1705483 1705488) (-970 "RFFACTOR.spad" 1702571 1702581 1703098 1703103) (-969 "RFFACT.spad" 1702307 1702318 1702561 1702566) (-968 "RFDIST.spad" 1701296 1701304 1702297 1702302) (-967 "RETSOL.spad" 1700714 1700726 1701286 1701291) (-966 "RETRACT.spad" 1700064 1700074 1700704 1700709) (-965 "RETRACT.spad" 1699412 1699424 1700054 1700059) (-964 "RESULT.spad" 1697473 1697481 1698059 1698086) (-963 "RESRING.spad" 1696821 1696867 1697411 1697468) (-962 "RESLATC.spad" 1696146 1696156 1696811 1696816) (-961 "REPSQ.spad" 1695876 1695886 1696136 1696141) (-960 "REP.spad" 1693429 1693437 1695866 1695871) (-959 "REPDB.spad" 1693135 1693145 1693419 1693424) (-958 "REP2.spad" 1682708 1682718 1692977 1692982) (-957 "REP1.spad" 1676699 1676709 1682658 1682663) (-956 "REGSET.spad" 1674497 1674513 1676345 1676372) (-955 "REF.spad" 1673827 1673837 1674452 1674457) (-954 "REDORDER.spad" 1673004 1673020 1673817 1673822) (-953 "RECLOS.spad" 1671794 1671813 1672497 1672590) (-952 "REALSOLV.spad" 1670927 1670935 1671784 1671789) (-951 "REAL.spad" 1670800 1670808 1670917 1670922) (-950 "REAL0Q.spad" 1668083 1668097 1670790 1670795) (-949 "REAL0.spad" 1664912 1664926 1668073 1668078) (-948 "RDIV.spad" 1664564 1664588 1664902 1664907) (-947 "RDIST.spad" 1664128 1664138 1664554 1664559) (-946 "RDETRS.spad" 1662925 1662942 1664118 1664123) (-945 "RDETR.spad" 1661033 1661050 1662915 1662920) (-944 "RDEEFS.spad" 1660107 1660123 1661023 1661028) (-943 "RDEEF.spad" 1659104 1659120 1660097 1660102) (-942 "RCFIELD.spad" 1656288 1656296 1659006 1659099) (-941 "RCFIELD.spad" 1653558 1653568 1656278 1656283) (-940 "RCAGG.spad" 1651461 1651471 1653538 1653553) (-939 "RCAGG.spad" 1649301 1649313 1651380 1651385) (-938 "RATRET.spad" 1648662 1648672 1649291 1649296) (-937 "RATFACT.spad" 1648355 1648366 1648652 1648657) (-936 "RANDSRC.spad" 1647675 1647683 1648345 1648350) (-935 "RADUTIL.spad" 1647430 1647438 1647665 1647670) (-934 "RADIX.spad" 1644223 1644236 1645900 1645993) (-933 "RADFF.spad" 1642640 1642676 1642758 1642914) (-932 "RADCAT.spad" 1642234 1642242 1642630 1642635) (-931 "RADCAT.spad" 1641826 1641836 1642224 1642229) (-930 "QUEUE.spad" 1641169 1641179 1641433 1641460) (-929 "QUAT.spad" 1639755 1639765 1640097 1640162) (-928 "QUATCT2.spad" 1639374 1639392 1639745 1639750) (-927 "QUATCAT.spad" 1637539 1637549 1639304 1639369) (-926 "QUATCAT.spad" 1635456 1635468 1637223 1637228) (-925 "QUAGG.spad" 1634270 1634280 1635412 1635451) (-924 "QFORM.spad" 1633733 1633747 1634260 1634265) (-923 "QFCAT.spad" 1632424 1632434 1633623 1633728) (-922 "QFCAT.spad" 1630721 1630733 1631922 1631927) (-921 "QFCAT2.spad" 1630412 1630428 1630711 1630716) (-920 "QEQUAT.spad" 1629969 1629977 1630402 1630407) (-919 "QCMPACK.spad" 1624716 1624735 1629959 1629964) (-918 "QALGSET.spad" 1620791 1620823 1624630 1624635) (-917 "QALGSET2.spad" 1618787 1618805 1620781 1620786) (-916 "PWFFINTB.spad" 1616097 1616118 1618777 1618782) (-915 "PUSHVAR.spad" 1615426 1615445 1616087 1616092) (-914 "PTRANFN.spad" 1611552 1611562 1615416 1615421) (-913 "PTPACK.spad" 1608640 1608650 1611542 1611547) (-912 "PTFUNC2.spad" 1608461 1608475 1608630 1608635) (-911 "PTCAT.spad" 1607543 1607553 1608417 1608456) (-910 "PSQFR.spad" 1606850 1606874 1607533 1607538) (-909 "PSEUDLIN.spad" 1605708 1605718 1606840 1606845) (-908 "PSETPK.spad" 1591141 1591157 1605586 1605591) (-907 "PSETCAT.spad" 1585049 1585072 1591109 1591136) (-906 "PSETCAT.spad" 1578943 1578968 1585005 1585010) (-905 "PSCURVE.spad" 1577926 1577934 1578933 1578938) (-904 "PSCAT.spad" 1576693 1576722 1577824 1577921) (-903 "PSCAT.spad" 1575550 1575581 1576683 1576688) (-902 "PRTITION.spad" 1574393 1574401 1575540 1575545) (-901 "PRS.spad" 1563955 1563972 1574349 1574354) (-900 "PRQAGG.spad" 1563374 1563384 1563911 1563950) (-899 "PROPLOG.spad" 1562777 1562785 1563364 1563369) (-898 "PROPFRML.spad" 1560642 1560653 1562713 1562718) (-897 "PROPERTY.spad" 1560136 1560144 1560632 1560637) (-896 "PRODUCT.spad" 1557816 1557828 1558102 1558157) (-895 "PR.spad" 1556205 1556217 1556910 1557037) (-894 "PRINT.spad" 1555957 1555965 1556195 1556200) (-893 "PRIMES.spad" 1554208 1554218 1555947 1555952) (-892 "PRIMELT.spad" 1552189 1552203 1554198 1554203) (-891 "PRIMCAT.spad" 1551812 1551820 1552179 1552184) (-890 "PRIMARR.spad" 1550817 1550827 1550995 1551022) (-889 "PRIMARR2.spad" 1549540 1549552 1550807 1550812) (-888 "PREASSOC.spad" 1548912 1548924 1549530 1549535) (-887 "PPCURVE.spad" 1548049 1548057 1548902 1548907) (-886 "POLYROOT.spad" 1546821 1546843 1548005 1548010) (-885 "POLY.spad" 1544121 1544131 1544638 1544765) (-884 "POLYLIFT.spad" 1543382 1543405 1544111 1544116) (-883 "POLYCATQ.spad" 1541484 1541506 1543372 1543377) (-882 "POLYCAT.spad" 1534890 1534911 1541352 1541479) (-881 "POLYCAT.spad" 1527598 1527621 1534062 1534067) (-880 "POLY2UP.spad" 1527046 1527060 1527588 1527593) (-879 "POLY2.spad" 1526641 1526653 1527036 1527041) (-878 "POLUTIL.spad" 1525582 1525611 1526597 1526602) (-877 "POLTOPOL.spad" 1524330 1524345 1525572 1525577) (-876 "POINT.spad" 1523171 1523181 1523258 1523285) (-875 "PNTHEORY.spad" 1519837 1519845 1523161 1523166) (-874 "PMTOOLS.spad" 1518594 1518608 1519827 1519832) (-873 "PMSYM.spad" 1518139 1518149 1518584 1518589) (-872 "PMQFCAT.spad" 1517726 1517740 1518129 1518134) (-871 "PMPRED.spad" 1517195 1517209 1517716 1517721) (-870 "PMPREDFS.spad" 1516639 1516661 1517185 1517190) (-869 "PMPLCAT.spad" 1515709 1515727 1516571 1516576) (-868 "PMLSAGG.spad" 1515290 1515304 1515699 1515704) (-867 "PMKERNEL.spad" 1514857 1514869 1515280 1515285) (-866 "PMINS.spad" 1514433 1514443 1514847 1514852) (-865 "PMFS.spad" 1514006 1514024 1514423 1514428) (-864 "PMDOWN.spad" 1513292 1513306 1513996 1514001) (-863 "PMASS.spad" 1512304 1512312 1513282 1513287) (-862 "PMASSFS.spad" 1511273 1511289 1512294 1512299) (-861 "PLOTTOOL.spad" 1511053 1511061 1511263 1511268) (-860 "PLOT.spad" 1505884 1505892 1511043 1511048) (-859 "PLOT3D.spad" 1502304 1502312 1505874 1505879) (-858 "PLOT1.spad" 1501445 1501455 1502294 1502299) (-857 "PLEQN.spad" 1488661 1488688 1501435 1501440) (-856 "PINTERP.spad" 1488277 1488296 1488651 1488656) (-855 "PINTERPA.spad" 1488059 1488075 1488267 1488272) (-854 "PI.spad" 1487666 1487674 1488033 1488054) (-853 "PID.spad" 1486622 1486630 1487592 1487661) (-852 "PICOERCE.spad" 1486279 1486289 1486612 1486617) (-851 "PGROEB.spad" 1484876 1484890 1486269 1486274) (-850 "PGE.spad" 1476129 1476137 1484866 1484871) (-849 "PGCD.spad" 1475011 1475028 1476119 1476124) (-848 "PFRPAC.spad" 1474154 1474164 1475001 1475006) (-847 "PFR.spad" 1470811 1470821 1474056 1474149) (-846 "PFOTOOLS.spad" 1470069 1470085 1470801 1470806) (-845 "PFOQ.spad" 1469439 1469457 1470059 1470064) (-844 "PFO.spad" 1468858 1468885 1469429 1469434) (-843 "PF.spad" 1468432 1468444 1468663 1468756) (-842 "PFECAT.spad" 1466098 1466106 1468358 1468427) (-841 "PFECAT.spad" 1463792 1463802 1466054 1466059) (-840 "PFBRU.spad" 1461662 1461674 1463782 1463787) (-839 "PFBR.spad" 1459200 1459223 1461652 1461657) (-838 "PERM.spad" 1454881 1454891 1459030 1459045) (-837 "PERMGRP.spad" 1449617 1449627 1454871 1454876) (-836 "PERMCAT.spad" 1448169 1448179 1449597 1449612) (-835 "PERMAN.spad" 1446701 1446715 1448159 1448164) (-834 "PENDTREE.spad" 1445974 1445984 1446330 1446335) (-833 "PDRING.spad" 1444465 1444475 1445954 1445969) (-832 "PDRING.spad" 1442964 1442976 1444455 1444460) (-831 "PDEPROB.spad" 1441921 1441929 1442954 1442959) (-830 "PDEPACK.spad" 1435923 1435931 1441911 1441916) (-829 "PDECOMP.spad" 1435385 1435402 1435913 1435918) (-828 "PDECAT.spad" 1433739 1433747 1435375 1435380) (-827 "PCOMP.spad" 1433590 1433603 1433729 1433734) (-826 "PBWLB.spad" 1432172 1432189 1433580 1433585) (-825 "PATTERN.spad" 1426603 1426613 1432162 1432167) (-824 "PATTERN2.spad" 1426339 1426351 1426593 1426598) (-823 "PATTERN1.spad" 1424641 1424657 1426329 1426334) (-822 "PATRES.spad" 1422188 1422200 1424631 1424636) (-821 "PATRES2.spad" 1421850 1421864 1422178 1422183) (-820 "PATMATCH.spad" 1420012 1420043 1421563 1421568) (-819 "PATMAB.spad" 1419437 1419447 1420002 1420007) (-818 "PATLRES.spad" 1418521 1418535 1419427 1419432) (-817 "PATAB.spad" 1418285 1418295 1418511 1418516) (-816 "PARTPERM.spad" 1415647 1415655 1418275 1418280) (-815 "PARSURF.spad" 1415075 1415103 1415637 1415642) (-814 "PARSU2.spad" 1414870 1414886 1415065 1415070) (-813 "script-parser.spad" 1414390 1414398 1414860 1414865) (-812 "PARSCURV.spad" 1413818 1413846 1414380 1414385) (-811 "PARSC2.spad" 1413607 1413623 1413808 1413813) (-810 "PARPCURV.spad" 1413065 1413093 1413597 1413602) (-809 "PARPC2.spad" 1412854 1412870 1413055 1413060) (-808 "PAN2EXPR.spad" 1412266 1412274 1412844 1412849) (-807 "PALETTE.spad" 1411236 1411244 1412256 1412261) (-806 "PAIR.spad" 1410219 1410232 1410824 1410829) (-805 "PADICRC.spad" 1407552 1407570 1408727 1408820) (-804 "PADICRAT.spad" 1405570 1405582 1405791 1405884) (-803 "PADIC.spad" 1405265 1405277 1405496 1405565) (-802 "PADICCT.spad" 1403806 1403818 1405191 1405260) (-801 "PADEPAC.spad" 1402485 1402504 1403796 1403801) (-800 "PADE.spad" 1401225 1401241 1402475 1402480) (-799 "OWP.spad" 1400209 1400239 1401083 1401150) (-798 "OVAR.spad" 1399990 1400013 1400199 1400204) (-797 "OUT.spad" 1399074 1399082 1399980 1399985) (-796 "OUTFORM.spad" 1388488 1388496 1399064 1399069) (-795 "OSI.spad" 1387963 1387971 1388478 1388483) (-794 "ORTHPOL.spad" 1386424 1386434 1387880 1387885) (-793 "OREUP.spad" 1385784 1385812 1386106 1386145) (-792 "ORESUP.spad" 1385085 1385109 1385466 1385505) (-791 "OREPCTO.spad" 1382904 1382916 1385005 1385010) (-790 "OREPCAT.spad" 1376961 1376971 1382860 1382899) (-789 "OREPCAT.spad" 1370908 1370920 1376809 1376814) (-788 "ORDSET.spad" 1370074 1370082 1370898 1370903) (-787 "ORDSET.spad" 1369238 1369248 1370064 1370069) (-786 "ORDRING.spad" 1368628 1368636 1369218 1369233) (-785 "ORDRING.spad" 1368026 1368036 1368618 1368623) (-784 "ORDMON.spad" 1367881 1367889 1368016 1368021) (-783 "ORDFUNS.spad" 1367007 1367023 1367871 1367876) (-782 "ORDFIN.spad" 1366941 1366949 1366997 1367002) (-781 "ORDCOMP.spad" 1365409 1365419 1366491 1366520) (-780 "ORDCOMP2.spad" 1364694 1364706 1365399 1365404) (-779 "OPTPROB.spad" 1363274 1363282 1364684 1364689) (-778 "OPTPACK.spad" 1355659 1355667 1363264 1363269) (-777 "OPTCAT.spad" 1353334 1353342 1355649 1355654) (-776 "OPQUERY.spad" 1352883 1352891 1353324 1353329) (-775 "OP.spad" 1352625 1352635 1352705 1352772) (-774 "ONECOMP.spad" 1351373 1351383 1352175 1352204) (-773 "ONECOMP2.spad" 1350791 1350803 1351363 1351368) (-772 "OMSERVER.spad" 1349793 1349801 1350781 1350786) (-771 "OMSAGG.spad" 1349569 1349579 1349737 1349788) (-770 "OMPKG.spad" 1348181 1348189 1349559 1349564) (-769 "OM.spad" 1347146 1347154 1348171 1348176) (-768 "OMLO.spad" 1346571 1346583 1347032 1347071) (-767 "OMEXPR.spad" 1346405 1346415 1346561 1346566) (-766 "OMERR.spad" 1345948 1345956 1346395 1346400) (-765 "OMERRK.spad" 1344982 1344990 1345938 1345943) (-764 "OMENC.spad" 1344326 1344334 1344972 1344977) (-763 "OMDEV.spad" 1338615 1338623 1344316 1344321) (-762 "OMCONN.spad" 1338024 1338032 1338605 1338610) (-761 "OINTDOM.spad" 1337787 1337795 1337950 1338019) (-760 "OFMONOID.spad" 1333974 1333984 1337777 1337782) (-759 "ODVAR.spad" 1333235 1333245 1333964 1333969) (-758 "ODR.spad" 1332683 1332709 1333047 1333196) (-757 "ODPOL.spad" 1330032 1330042 1330372 1330499) (-756 "ODP.spad" 1321558 1321578 1321931 1322060) (-755 "ODETOOLS.spad" 1320141 1320160 1321548 1321553) (-754 "ODESYS.spad" 1317791 1317808 1320131 1320136) (-753 "ODERTRIC.spad" 1313732 1313749 1317748 1317753) (-752 "ODERED.spad" 1313119 1313143 1313722 1313727) (-751 "ODERAT.spad" 1310670 1310687 1313109 1313114) (-750 "ODEPRRIC.spad" 1307561 1307583 1310660 1310665) (-749 "ODEPROB.spad" 1306760 1306768 1307551 1307556) (-748 "ODEPRIM.spad" 1304034 1304056 1306750 1306755) (-747 "ODEPAL.spad" 1303410 1303434 1304024 1304029) (-746 "ODEPACK.spad" 1290012 1290020 1303400 1303405) (-745 "ODEINT.spad" 1289443 1289459 1290002 1290007) (-744 "ODEIFTBL.spad" 1286838 1286846 1289433 1289438) (-743 "ODEEF.spad" 1282205 1282221 1286828 1286833) (-742 "ODECONST.spad" 1281724 1281742 1282195 1282200) (-741 "ODECAT.spad" 1280320 1280328 1281714 1281719) (-740 "OCT.spad" 1278467 1278477 1279183 1279222) (-739 "OCTCT2.spad" 1278111 1278132 1278457 1278462) (-738 "OC.spad" 1275885 1275895 1278067 1278106) (-737 "OC.spad" 1273385 1273397 1275569 1275574) (-736 "OCAMON.spad" 1273233 1273241 1273375 1273380) (-735 "OASGP.spad" 1273048 1273056 1273223 1273228) (-734 "OAMONS.spad" 1272568 1272576 1273038 1273043) (-733 "OAMON.spad" 1272429 1272437 1272558 1272563) (-732 "OAGROUP.spad" 1272291 1272299 1272419 1272424) (-731 "NUMTUBE.spad" 1271878 1271894 1272281 1272286) (-730 "NUMQUAD.spad" 1259740 1259748 1271868 1271873) (-729 "NUMODE.spad" 1250876 1250884 1259730 1259735) (-728 "NUMINT.spad" 1248434 1248442 1250866 1250871) (-727 "NUMFMT.spad" 1247274 1247282 1248424 1248429) (-726 "NUMERIC.spad" 1239347 1239357 1247080 1247085) (-725 "NTSCAT.spad" 1237837 1237853 1239303 1239342) (-724 "NTPOLFN.spad" 1237382 1237392 1237754 1237759) (-723 "NSUP.spad" 1230395 1230405 1234935 1235088) (-722 "NSUP2.spad" 1229787 1229799 1230385 1230390) (-721 "NSMP.spad" 1225986 1226005 1226294 1226421) (-720 "NREP.spad" 1224358 1224372 1225976 1225981) (-719 "NPCOEF.spad" 1223604 1223624 1224348 1224353) (-718 "NORMRETR.spad" 1223202 1223241 1223594 1223599) (-717 "NORMPK.spad" 1221104 1221123 1223192 1223197) (-716 "NORMMA.spad" 1220792 1220818 1221094 1221099) (-715 "NONE.spad" 1220533 1220541 1220782 1220787) (-714 "NONE1.spad" 1220209 1220219 1220523 1220528) (-713 "NODE1.spad" 1219678 1219694 1220199 1220204) (-712 "NNI.spad" 1218565 1218573 1219652 1219673) (-711 "NLINSOL.spad" 1217187 1217197 1218555 1218560) (-710 "NIPROB.spad" 1215670 1215678 1217177 1217182) (-709 "NFINTBAS.spad" 1213130 1213147 1215660 1215665) (-708 "NCODIV.spad" 1211328 1211344 1213120 1213125) (-707 "NCNTFRAC.spad" 1210970 1210984 1211318 1211323) (-706 "NCEP.spad" 1209130 1209144 1210960 1210965) (-705 "NASRING.spad" 1208726 1208734 1209120 1209125) (-704 "NASRING.spad" 1208320 1208330 1208716 1208721) (-703 "NARNG.spad" 1207664 1207672 1208310 1208315) (-702 "NARNG.spad" 1207006 1207016 1207654 1207659) (-701 "NAGSP.spad" 1206079 1206087 1206996 1207001) (-700 "NAGS.spad" 1195604 1195612 1206069 1206074) (-699 "NAGF07.spad" 1193997 1194005 1195594 1195599) (-698 "NAGF04.spad" 1188229 1188237 1193987 1193992) (-697 "NAGF02.spad" 1182038 1182046 1188219 1188224) (-696 "NAGF01.spad" 1177641 1177649 1182028 1182033) (-695 "NAGE04.spad" 1171101 1171109 1177631 1177636) (-694 "NAGE02.spad" 1161443 1161451 1171091 1171096) (-693 "NAGE01.spad" 1157327 1157335 1161433 1161438) (-692 "NAGD03.spad" 1155247 1155255 1157317 1157322) (-691 "NAGD02.spad" 1147778 1147786 1155237 1155242) (-690 "NAGD01.spad" 1141891 1141899 1147768 1147773) (-689 "NAGC06.spad" 1137678 1137686 1141881 1141886) (-688 "NAGC05.spad" 1136147 1136155 1137668 1137673) (-687 "NAGC02.spad" 1135402 1135410 1136137 1136142) (-686 "NAALG.spad" 1134937 1134947 1135370 1135397) (-685 "NAALG.spad" 1134492 1134504 1134927 1134932) (-684 "MULTSQFR.spad" 1131450 1131467 1134482 1134487) (-683 "MULTFACT.spad" 1130833 1130850 1131440 1131445) (-682 "MTSCAT.spad" 1128867 1128888 1130731 1130828) (-681 "MTHING.spad" 1128524 1128534 1128857 1128862) (-680 "MSYSCMD.spad" 1127958 1127966 1128514 1128519) (-679 "MSET.spad" 1125900 1125910 1127664 1127703) (-678 "MSETAGG.spad" 1125733 1125743 1125856 1125895) (-677 "MRING.spad" 1122704 1122716 1125441 1125508) (-676 "MRF2.spad" 1122272 1122286 1122694 1122699) (-675 "MRATFAC.spad" 1121818 1121835 1122262 1122267) (-674 "MPRFF.spad" 1119848 1119867 1121808 1121813) (-673 "MPOLY.spad" 1117286 1117301 1117645 1117772) (-672 "MPCPF.spad" 1116550 1116569 1117276 1117281) (-671 "MPC3.spad" 1116365 1116405 1116540 1116545) (-670 "MPC2.spad" 1116007 1116040 1116355 1116360) (-669 "MONOTOOL.spad" 1114342 1114359 1115997 1116002) (-668 "MONOID.spad" 1113516 1113524 1114332 1114337) (-667 "MONOID.spad" 1112688 1112698 1113506 1113511) (-666 "MONOGEN.spad" 1111434 1111447 1112548 1112683) (-665 "MONOGEN.spad" 1110202 1110217 1111318 1111323) (-664 "MONADWU.spad" 1108216 1108224 1110192 1110197) (-663 "MONADWU.spad" 1106228 1106238 1108206 1108211) (-662 "MONAD.spad" 1105372 1105380 1106218 1106223) (-661 "MONAD.spad" 1104514 1104524 1105362 1105367) (-660 "MOEBIUS.spad" 1103200 1103214 1104494 1104509) (-659 "MODULE.spad" 1103070 1103080 1103168 1103195) (-658 "MODULE.spad" 1102960 1102972 1103060 1103065) (-657 "MODRING.spad" 1102291 1102330 1102940 1102955) (-656 "MODOP.spad" 1100950 1100962 1102113 1102180) (-655 "MODMONOM.spad" 1100482 1100500 1100940 1100945) (-654 "MODMON.spad" 1097187 1097203 1097963 1098116) (-653 "MODFIELD.spad" 1096545 1096584 1097089 1097182) (-652 "MMLFORM.spad" 1095405 1095413 1096535 1096540) (-651 "MMAP.spad" 1095145 1095179 1095395 1095400) (-650 "MLO.spad" 1093572 1093582 1095101 1095140) (-649 "MLIFT.spad" 1092144 1092161 1093562 1093567) (-648 "MKUCFUNC.spad" 1091677 1091695 1092134 1092139) (-647 "MKRECORD.spad" 1091279 1091292 1091667 1091672) (-646 "MKFUNC.spad" 1090660 1090670 1091269 1091274) (-645 "MKFLCFN.spad" 1089616 1089626 1090650 1090655) (-644 "MKCHSET.spad" 1089392 1089402 1089606 1089611) (-643 "MKBCFUNC.spad" 1088877 1088895 1089382 1089387) (-642 "MINT.spad" 1088316 1088324 1088779 1088872) (-641 "MHROWRED.spad" 1086817 1086827 1088306 1088311) (-640 "MFLOAT.spad" 1085262 1085270 1086707 1086812) (-639 "MFINFACT.spad" 1084662 1084684 1085252 1085257) (-638 "MESH.spad" 1082394 1082402 1084652 1084657) (-637 "MDDFACT.spad" 1080587 1080597 1082384 1082389) (-636 "MDAGG.spad" 1079862 1079872 1080555 1080582) (-635 "MCMPLX.spad" 1075842 1075850 1076456 1076657) (-634 "MCDEN.spad" 1075050 1075062 1075832 1075837) (-633 "MCALCFN.spad" 1072152 1072178 1075040 1075045) (-632 "MATSTOR.spad" 1069428 1069438 1072142 1072147) (-631 "MATRIX.spad" 1068132 1068142 1068616 1068643) (-630 "MATLIN.spad" 1065458 1065482 1068016 1068021) (-629 "MATCAT.spad" 1057031 1057053 1065414 1065453) (-628 "MATCAT.spad" 1048488 1048512 1056873 1056878) (-627 "MATCAT2.spad" 1047756 1047804 1048478 1048483) (-626 "MAPPKG3.spad" 1046655 1046669 1047746 1047751) (-625 "MAPPKG2.spad" 1045989 1046001 1046645 1046650) (-624 "MAPPKG1.spad" 1044807 1044817 1045979 1045984) (-623 "MAPHACK3.spad" 1044615 1044629 1044797 1044802) (-622 "MAPHACK2.spad" 1044380 1044392 1044605 1044610) (-621 "MAPHACK1.spad" 1044010 1044020 1044370 1044375) (-620 "MAGMA.spad" 1041800 1041817 1044000 1044005) (-619 "M3D.spad" 1039498 1039508 1041180 1041185) (-618 "LZSTAGG.spad" 1036716 1036726 1039478 1039493) (-617 "LZSTAGG.spad" 1033942 1033954 1036706 1036711) (-616 "LWORD.spad" 1030647 1030664 1033932 1033937) (-615 "LSQM.spad" 1028875 1028889 1029273 1029324) (-614 "LSPP.spad" 1028408 1028425 1028865 1028870) (-613 "LSMP.spad" 1027248 1027276 1028398 1028403) (-612 "LSMP1.spad" 1025052 1025066 1027238 1027243) (-611 "LSAGG.spad" 1024709 1024719 1025008 1025047) (-610 "LSAGG.spad" 1024398 1024410 1024699 1024704) (-609 "LPOLY.spad" 1023352 1023371 1024254 1024323) (-608 "LPEFRAC.spad" 1022609 1022619 1023342 1023347) (-607 "LO.spad" 1022010 1022024 1022543 1022570) (-606 "LOGIC.spad" 1021612 1021620 1022000 1022005) (-605 "LOGIC.spad" 1021212 1021222 1021602 1021607) (-604 "LODOOPS.spad" 1020130 1020142 1021202 1021207) (-603 "LODO.spad" 1019516 1019532 1019812 1019851) (-602 "LODOF.spad" 1018560 1018577 1019473 1019478) (-601 "LODOCAT.spad" 1017218 1017228 1018516 1018555) (-600 "LODOCAT.spad" 1015874 1015886 1017174 1017179) (-599 "LODO2.spad" 1015149 1015161 1015556 1015595) (-598 "LODO1.spad" 1014551 1014561 1014831 1014870) (-597 "LODEEF.spad" 1013323 1013341 1014541 1014546) (-596 "LNAGG.spad" 1009115 1009125 1013303 1013318) (-595 "LNAGG.spad" 1004881 1004893 1009071 1009076) (-594 "LMOPS.spad" 1001617 1001634 1004871 1004876) (-593 "LMODULE.spad" 1001259 1001269 1001607 1001612) (-592 "LMDICT.spad" 1000542 1000552 1000810 1000837) (-591 "LIST.spad" 998260 998270 999689 999716) (-590 "LIST3.spad" 997551 997565 998250 998255) (-589 "LIST2.spad" 996191 996203 997541 997546) (-588 "LIST2MAP.spad" 993068 993080 996181 996186) (-587 "LINEXP.spad" 992500 992510 993048 993063) (-586 "LINDEP.spad" 991277 991289 992412 992417) (-585 "LIMITRF.spad" 989191 989201 991267 991272) (-584 "LIMITPS.spad" 988074 988087 989181 989186) (-583 "LIE.spad" 986088 986100 987364 987509) (-582 "LIECAT.spad" 985564 985574 986014 986083) (-581 "LIECAT.spad" 985068 985080 985520 985525) (-580 "LIB.spad" 983116 983124 983727 983742) (-579 "LGROBP.spad" 980469 980488 983106 983111) (-578 "LF.spad" 979388 979404 980459 980464) (-577 "LFCAT.spad" 978407 978415 979378 979383) (-576 "LEXTRIPK.spad" 973910 973925 978397 978402) (-575 "LEXP.spad" 971913 971940 973890 973905) (-574 "LEADCDET.spad" 970297 970314 971903 971908) (-573 "LAZM3PK.spad" 969001 969023 970287 970292) (-572 "LAUPOL.spad" 967692 967705 968596 968665) (-571 "LAPLACE.spad" 967265 967281 967682 967687) (-570 "LA.spad" 966705 966719 967187 967226) (-569 "LALG.spad" 966481 966491 966685 966700) (-568 "LALG.spad" 966265 966277 966471 966476) (-567 "KOVACIC.spad" 964978 964995 966255 966260) (-566 "KONVERT.spad" 964700 964710 964968 964973) (-565 "KOERCE.spad" 964437 964447 964690 964695) (-564 "KERNEL.spad" 962972 962982 964221 964226) (-563 "KERNEL2.spad" 962675 962687 962962 962967) (-562 "KDAGG.spad" 961766 961788 962643 962670) (-561 "KDAGG.spad" 960877 960901 961756 961761) (-560 "KAFILE.spad" 959840 959856 960075 960102) (-559 "JORDAN.spad" 957667 957679 959130 959275) (-558 "IXAGG.spad" 955780 955804 957647 957662) (-557 "IXAGG.spad" 953758 953784 955627 955632) (-556 "IVECTOR.spad" 952531 952546 952686 952713) (-555 "ITUPLE.spad" 951676 951686 952521 952526) (-554 "ITRIGMNP.spad" 950487 950506 951666 951671) (-553 "ITFUN3.spad" 949981 949995 950477 950482) (-552 "ITFUN2.spad" 949711 949723 949971 949976) (-551 "ITAYLOR.spad" 947503 947518 949547 949672) (-550 "ISUPS.spad" 939914 939929 946477 946574) (-549 "ISUMP.spad" 939411 939427 939904 939909) (-548 "ISTRING.spad" 938414 938427 938580 938607) (-547 "IRURPK.spad" 937127 937146 938404 938409) (-546 "IRSN.spad" 935087 935095 937117 937122) (-545 "IRRF2F.spad" 933562 933572 935043 935048) (-544 "IRREDFFX.spad" 933163 933174 933552 933557) (-543 "IROOT.spad" 931494 931504 933153 933158) (-542 "IR.spad" 929284 929298 931350 931377) (-541 "IR2.spad" 928304 928320 929274 929279) (-540 "IR2F.spad" 927504 927520 928294 928299) (-539 "IPRNTPK.spad" 927264 927272 927494 927499) (-538 "IPF.spad" 926829 926841 927069 927162) (-537 "IPADIC.spad" 926590 926616 926755 926824) (-536 "INVLAPLA.spad" 926235 926251 926580 926585) (-535 "INTTR.spad" 919481 919498 926225 926230) (-534 "INTTOOLS.spad" 917193 917209 919056 919061) (-533 "INTSLPE.spad" 916499 916507 917183 917188) (-532 "INTRVL.spad" 916065 916075 916413 916494) (-531 "INTRF.spad" 914429 914443 916055 916060) (-530 "INTRET.spad" 913861 913871 914419 914424) (-529 "INTRAT.spad" 912536 912553 913851 913856) (-528 "INTPM.spad" 910899 910915 912179 912184) (-527 "INTPAF.spad" 908667 908685 910831 910836) (-526 "INTPACK.spad" 898977 898985 908657 908662) (-525 "INT.spad" 898338 898346 898831 898972) (-524 "INTHERTR.spad" 897604 897621 898328 898333) (-523 "INTHERAL.spad" 897270 897294 897594 897599) (-522 "INTHEORY.spad" 893683 893691 897260 897265) (-521 "INTG0.spad" 887146 887164 893615 893620) (-520 "INTFTBL.spad" 881175 881183 887136 887141) (-519 "INTFACT.spad" 880234 880244 881165 881170) (-518 "INTEF.spad" 878549 878565 880224 880229) (-517 "INTDOM.spad" 877164 877172 878475 878544) (-516 "INTDOM.spad" 875841 875851 877154 877159) (-515 "INTCAT.spad" 874094 874104 875755 875836) (-514 "INTBIT.spad" 873597 873605 874084 874089) (-513 "INTALG.spad" 872779 872806 873587 873592) (-512 "INTAF.spad" 872271 872287 872769 872774) (-511 "INTABL.spad" 870789 870820 870952 870979) (-510 "INS.spad" 868185 868193 870691 870784) (-509 "INS.spad" 865667 865677 868175 868180) (-508 "INPSIGN.spad" 865101 865114 865657 865662) (-507 "INPRODPF.spad" 864167 864186 865091 865096) (-506 "INPRODFF.spad" 863225 863249 864157 864162) (-505 "INNMFACT.spad" 862196 862213 863215 863220) (-504 "INMODGCD.spad" 861680 861710 862186 862191) (-503 "INFSP.spad" 859965 859987 861670 861675) (-502 "INFPROD0.spad" 859015 859034 859955 859960) (-501 "INFORM.spad" 856283 856291 859005 859010) (-500 "INFORM1.spad" 855908 855918 856273 856278) (-499 "INFINITY.spad" 855460 855468 855898 855903) (-498 "INEP.spad" 853992 854014 855450 855455) (-497 "INDE.spad" 853898 853915 853982 853987) (-496 "INCRMAPS.spad" 853319 853329 853888 853893) (-495 "INBFF.spad" 849089 849100 853309 853314) (-494 "IMATRIX.spad" 848034 848060 848546 848573) (-493 "IMATQF.spad" 847128 847172 847990 847995) (-492 "IMATLIN.spad" 845733 845757 847084 847089) (-491 "ILIST.spad" 844389 844404 844916 844943) (-490 "IIARRAY2.spad" 843777 843815 843996 844023) (-489 "IFF.spad" 843187 843203 843458 843551) (-488 "IFARRAY.spad" 840674 840689 842370 842397) (-487 "IFAMON.spad" 840536 840553 840630 840635) (-486 "IEVALAB.spad" 839925 839937 840526 840531) (-485 "IEVALAB.spad" 839312 839326 839915 839920) (-484 "IDPO.spad" 839110 839122 839302 839307) (-483 "IDPOAMS.spad" 838866 838878 839100 839105) (-482 "IDPOAM.spad" 838586 838598 838856 838861) (-481 "IDPC.spad" 837520 837532 838576 838581) (-480 "IDPAM.spad" 837265 837277 837510 837515) (-479 "IDPAG.spad" 837012 837024 837255 837260) (-478 "IDECOMP.spad" 834249 834267 837002 837007) (-477 "IDEAL.spad" 829172 829211 834184 834189) (-476 "ICDEN.spad" 828323 828339 829162 829167) (-475 "ICARD.spad" 827512 827520 828313 828318) (-474 "IBPTOOLS.spad" 826105 826122 827502 827507) (-473 "IBITS.spad" 825304 825317 825741 825768) (-472 "IBATOOL.spad" 822179 822198 825294 825299) (-471 "IBACHIN.spad" 820666 820681 822169 822174) (-470 "IARRAY2.spad" 819654 819680 820273 820300) (-469 "IARRAY1.spad" 818699 818714 818837 818864) (-468 "IAN.spad" 816914 816922 818517 818610) (-467 "IALGFACT.spad" 816515 816548 816904 816909) (-466 "HYPCAT.spad" 815939 815947 816505 816510) (-465 "HYPCAT.spad" 815361 815371 815929 815934) (-464 "HOAGG.spad" 812619 812629 815341 815356) (-463 "HOAGG.spad" 809662 809674 812386 812391) (-462 "HEXADEC.spad" 807534 807542 808132 808225) (-461 "HEUGCD.spad" 806549 806560 807524 807529) (-460 "HELLFDIV.spad" 806139 806163 806539 806544) (-459 "HEAP.spad" 805531 805541 805746 805773) (-458 "HDP.spad" 797053 797069 797430 797559) (-457 "HDMP.spad" 794232 794247 794850 794977) (-456 "HB.spad" 792469 792477 794222 794227) (-455 "HASHTBL.spad" 790939 790970 791150 791177) (-454 "HACKPI.spad" 790422 790430 790841 790934) (-453 "GTSET.spad" 789361 789377 790068 790095) (-452 "GSTBL.spad" 787880 787915 788054 788069) (-451 "GSERIES.spad" 785047 785074 786012 786161) (-450 "GROUP.spad" 784221 784229 785027 785042) (-449 "GROUP.spad" 783403 783413 784211 784216) (-448 "GROEBSOL.spad" 781891 781912 783393 783398) (-447 "GRMOD.spad" 780462 780474 781881 781886) (-446 "GRMOD.spad" 779031 779045 780452 780457) (-445 "GRIMAGE.spad" 771636 771644 779021 779026) (-444 "GRDEF.spad" 770015 770023 771626 771631) (-443 "GRAY.spad" 768474 768482 770005 770010) (-442 "GRALG.spad" 767521 767533 768464 768469) (-441 "GRALG.spad" 766566 766580 767511 767516) (-440 "GPOLSET.spad" 766020 766043 766248 766275) (-439 "GOSPER.spad" 765285 765303 766010 766015) (-438 "GMODPOL.spad" 764423 764450 765253 765280) (-437 "GHENSEL.spad" 763492 763506 764413 764418) (-436 "GENUPS.spad" 759593 759606 763482 763487) (-435 "GENUFACT.spad" 759170 759180 759583 759588) (-434 "GENPGCD.spad" 758754 758771 759160 759165) (-433 "GENMFACT.spad" 758206 758225 758744 758749) (-432 "GENEEZ.spad" 756145 756158 758196 758201) (-431 "GDMP.spad" 753166 753183 753942 754069) (-430 "GCNAALG.spad" 747061 747088 752960 753027) (-429 "GCDDOM.spad" 746233 746241 746987 747056) (-428 "GCDDOM.spad" 745467 745477 746223 746228) (-427 "GB.spad" 742985 743023 745423 745428) (-426 "GBINTERN.spad" 739005 739043 742975 742980) (-425 "GBF.spad" 734762 734800 738995 739000) (-424 "GBEUCLID.spad" 732636 732674 734752 734757) (-423 "GAUSSFAC.spad" 731933 731941 732626 732631) (-422 "GALUTIL.spad" 730255 730265 731889 731894) (-421 "GALPOLYU.spad" 728701 728714 730245 730250) (-420 "GALFACTU.spad" 726866 726885 728691 728696) (-419 "GALFACT.spad" 716999 717010 726856 726861) (-418 "FVFUN.spad" 714012 714020 716979 716994) (-417 "FVC.spad" 713054 713062 713992 714007) (-416 "FUNCTION.spad" 712903 712915 713044 713049) (-415 "FT.spad" 711115 711123 712893 712898) (-414 "FTEM.spad" 710278 710286 711105 711110) (-413 "FSUPFACT.spad" 709179 709198 710215 710220) (-412 "FST.spad" 707265 707273 709169 709174) (-411 "FSRED.spad" 706743 706759 707255 707260) (-410 "FSPRMELT.spad" 705567 705583 706700 706705) (-409 "FSPECF.spad" 703644 703660 705557 705562) (-408 "FS.spad" 697695 697705 703408 703639) (-407 "FS.spad" 691537 691549 697252 697257) (-406 "FSINT.spad" 691195 691211 691527 691532) (-405 "FSERIES.spad" 690382 690394 691015 691114) (-404 "FSCINT.spad" 689695 689711 690372 690377) (-403 "FSAGG.spad" 688800 688810 689639 689690) (-402 "FSAGG.spad" 687879 687891 688720 688725) (-401 "FSAGG2.spad" 686578 686594 687869 687874) (-400 "FS2UPS.spad" 680967 681001 686568 686573) (-399 "FS2.spad" 680612 680628 680957 680962) (-398 "FS2EXPXP.spad" 679735 679758 680602 680607) (-397 "FRUTIL.spad" 678677 678687 679725 679730) (-396 "FR.spad" 672374 672384 677704 677773) (-395 "FRNAALG.spad" 667461 667471 672316 672369) (-394 "FRNAALG.spad" 662560 662572 667417 667422) (-393 "FRNAAF2.spad" 662014 662032 662550 662555) (-392 "FRMOD.spad" 661409 661439 661946 661951) (-391 "FRIDEAL.spad" 660604 660625 661389 661404) (-390 "FRIDEAL2.spad" 660206 660238 660594 660599) (-389 "FRETRCT.spad" 659717 659727 660196 660201) (-388 "FRETRCT.spad" 659096 659108 659577 659582) (-387 "FRAMALG.spad" 657424 657437 659052 659091) (-386 "FRAMALG.spad" 655784 655799 657414 657419) (-385 "FRAC.spad" 652887 652897 653290 653463) (-384 "FRAC2.spad" 652490 652502 652877 652882) (-383 "FR2.spad" 651824 651836 652480 652485) (-382 "FPS.spad" 648633 648641 651714 651819) (-381 "FPS.spad" 645470 645480 648553 648558) (-380 "FPC.spad" 644512 644520 645372 645465) (-379 "FPC.spad" 643640 643650 644502 644507) (-378 "FPATMAB.spad" 643392 643402 643620 643635) (-377 "FPARFRAC.spad" 641865 641882 643382 643387) (-376 "FORTRAN.spad" 640371 640414 641855 641860) (-375 "FORT.spad" 639300 639308 640361 640366) (-374 "FORTFN.spad" 636460 636468 639280 639295) (-373 "FORTCAT.spad" 636134 636142 636440 636455) (-372 "FORMULA.spad" 633472 633480 636124 636129) (-371 "FORMULA1.spad" 632951 632961 633462 633467) (-370 "FORDER.spad" 632642 632666 632941 632946) (-369 "FOP.spad" 631843 631851 632632 632637) (-368 "FNLA.spad" 631267 631289 631811 631838) (-367 "FNCAT.spad" 629595 629603 631257 631262) (-366 "FNAME.spad" 629487 629495 629585 629590) (-365 "FMTC.spad" 629285 629293 629413 629482) (-364 "FMONOID.spad" 626340 626350 629241 629246) (-363 "FM.spad" 626035 626047 626274 626301) (-362 "FMFUN.spad" 623055 623063 626015 626030) (-361 "FMC.spad" 622097 622105 623035 623050) (-360 "FMCAT.spad" 619751 619769 622065 622092) (-359 "FM1.spad" 619108 619120 619685 619712) (-358 "FLOATRP.spad" 616829 616843 619098 619103) (-357 "FLOAT.spad" 609993 610001 616695 616824) (-356 "FLOATCP.spad" 607410 607424 609983 609988) (-355 "FLINEXP.spad" 607122 607132 607390 607405) (-354 "FLINEXP.spad" 606788 606800 607058 607063) (-353 "FLASORT.spad" 606108 606120 606778 606783) (-352 "FLALG.spad" 603754 603773 606034 606103) (-351 "FLAGG.spad" 600760 600770 603722 603749) (-350 "FLAGG.spad" 597679 597691 600643 600648) (-349 "FLAGG2.spad" 596360 596376 597669 597674) (-348 "FINRALG.spad" 594389 594402 596316 596355) (-347 "FINRALG.spad" 592344 592359 594273 594278) (-346 "FINITE.spad" 591496 591504 592334 592339) (-345 "FINAALG.spad" 580477 580487 591438 591491) (-344 "FINAALG.spad" 569470 569482 580433 580438) (-343 "FILE.spad" 569053 569063 569460 569465) (-342 "FILECAT.spad" 567571 567588 569043 569048) (-341 "FIELD.spad" 566977 566985 567473 567566) (-340 "FIELD.spad" 566469 566479 566967 566972) (-339 "FGROUP.spad" 565078 565088 566449 566464) (-338 "FGLMICPK.spad" 563865 563880 565068 565073) (-337 "FFX.spad" 563240 563255 563581 563674) (-336 "FFSLPE.spad" 562729 562750 563230 563235) (-335 "FFPOLY.spad" 553981 553992 562719 562724) (-334 "FFPOLY2.spad" 553041 553058 553971 553976) (-333 "FFP.spad" 552438 552458 552757 552850) (-332 "FF.spad" 551886 551902 552119 552212) (-331 "FFNBX.spad" 550398 550418 551602 551695) (-330 "FFNBP.spad" 548911 548928 550114 550207) (-329 "FFNB.spad" 547376 547397 548592 548685) (-328 "FFINTBAS.spad" 544790 544809 547366 547371) (-327 "FFIELDC.spad" 542365 542373 544692 544785) (-326 "FFIELDC.spad" 540026 540036 542355 542360) (-325 "FFHOM.spad" 538774 538791 540016 540021) (-324 "FFF.spad" 536209 536220 538764 538769) (-323 "FFCGX.spad" 535056 535076 535925 536018) (-322 "FFCGP.spad" 533945 533965 534772 534865) (-321 "FFCG.spad" 532737 532758 533626 533719) (-320 "FFCAT.spad" 525638 525660 532576 532732) (-319 "FFCAT.spad" 518618 518642 525558 525563) (-318 "FFCAT2.spad" 518363 518403 518608 518613) (-317 "FEXPR.spad" 510076 510122 518123 518162) (-316 "FEVALAB.spad" 509782 509792 510066 510071) (-315 "FEVALAB.spad" 509273 509285 509559 509564) (-314 "FDIV.spad" 508715 508739 509263 509268) (-313 "FDIVCAT.spad" 506757 506781 508705 508710) (-312 "FDIVCAT.spad" 504797 504823 506747 506752) (-311 "FDIV2.spad" 504451 504491 504787 504792) (-310 "FCPAK1.spad" 503004 503012 504441 504446) (-309 "FCOMP.spad" 502383 502393 502994 502999) (-308 "FC.spad" 492208 492216 502373 502378) (-307 "FAXF.spad" 485143 485157 492110 492203) (-306 "FAXF.spad" 478130 478146 485099 485104) (-305 "FARRAY.spad" 476276 476286 477313 477340) (-304 "FAMR.spad" 474396 474408 476174 476271) (-303 "FAMR.spad" 472500 472514 474280 474285) (-302 "FAMONOID.spad" 472150 472160 472454 472459) (-301 "FAMONC.spad" 470372 470384 472140 472145) (-300 "FAGROUP.spad" 469978 469988 470268 470295) (-299 "FACUTIL.spad" 468174 468191 469968 469973) (-298 "FACTFUNC.spad" 467350 467360 468164 468169) (-297 "EXPUPXS.spad" 464183 464206 465482 465631) (-296 "EXPRTUBE.spad" 461411 461419 464173 464178) (-295 "EXPRODE.spad" 458283 458299 461401 461406) (-294 "EXPR.spad" 453585 453595 454299 454702) (-293 "EXPR2UPS.spad" 449677 449690 453575 453580) (-292 "EXPR2.spad" 449380 449392 449667 449672) (-291 "EXPEXPAN.spad" 446321 446346 446955 447048) (-290 "EXIT.spad" 445992 446000 446311 446316) (-289 "EVALCYC.spad" 445450 445464 445982 445987) (-288 "EVALAB.spad" 445014 445024 445440 445445) (-287 "EVALAB.spad" 444576 444588 445004 445009) (-286 "EUCDOM.spad" 442118 442126 444502 444571) (-285 "EUCDOM.spad" 439722 439732 442108 442113) (-284 "ESTOOLS.spad" 431562 431570 439712 439717) (-283 "ESTOOLS2.spad" 431163 431177 431552 431557) (-282 "ESTOOLS1.spad" 430848 430859 431153 431158) (-281 "ES.spad" 423395 423403 430838 430843) (-280 "ES.spad" 415850 415860 423295 423300) (-279 "ESCONT.spad" 412623 412631 415840 415845) (-278 "ESCONT1.spad" 412372 412384 412613 412618) (-277 "ES2.spad" 411867 411883 412362 412367) (-276 "ES1.spad" 411433 411449 411857 411862) (-275 "ERROR.spad" 408754 408762 411423 411428) (-274 "EQTBL.spad" 407226 407248 407435 407462) (-273 "EQ.spad" 402110 402120 404909 405018) (-272 "EQ2.spad" 401826 401838 402100 402105) (-271 "EP.spad" 398140 398150 401816 401821) (-270 "ENV.spad" 396842 396850 398130 398135) (-269 "ENTIRER.spad" 396510 396518 396786 396837) (-268 "EMR.spad" 395711 395752 396436 396505) (-267 "ELTAGG.spad" 393951 393970 395701 395706) (-266 "ELTAGG.spad" 392155 392176 393907 393912) (-265 "ELTAB.spad" 391602 391620 392145 392150) (-264 "ELFUTS.spad" 390981 391000 391592 391597) (-263 "ELEMFUN.spad" 390670 390678 390971 390976) (-262 "ELEMFUN.spad" 390357 390367 390660 390665) (-261 "ELAGG.spad" 388288 388298 390325 390352) (-260 "ELAGG.spad" 386168 386180 388207 388212) (-259 "ELABEXPR.spad" 385099 385107 386158 386163) (-258 "EFUPXS.spad" 381875 381905 385055 385060) (-257 "EFULS.spad" 378711 378734 381831 381836) (-256 "EFSTRUC.spad" 376666 376682 378701 378706) (-255 "EF.spad" 371432 371448 376656 376661) (-254 "EAB.spad" 369708 369716 371422 371427) (-253 "E04UCFA.spad" 369244 369252 369698 369703) (-252 "E04NAFA.spad" 368821 368829 369234 369239) (-251 "E04MBFA.spad" 368401 368409 368811 368816) (-250 "E04JAFA.spad" 367937 367945 368391 368396) (-249 "E04GCFA.spad" 367473 367481 367927 367932) (-248 "E04FDFA.spad" 367009 367017 367463 367468) (-247 "E04DGFA.spad" 366545 366553 366999 367004) (-246 "E04AGNT.spad" 362387 362395 366535 366540) (-245 "DVARCAT.spad" 359072 359082 362377 362382) (-244 "DVARCAT.spad" 355755 355767 359062 359067) (-243 "DSMP.spad" 353189 353203 353494 353621) (-242 "DROPT.spad" 347134 347142 353179 353184) (-241 "DROPT1.spad" 346797 346807 347124 347129) (-240 "DROPT0.spad" 341624 341632 346787 346792) (-239 "DRAWPT.spad" 339779 339787 341614 341619) (-238 "DRAW.spad" 332379 332392 339769 339774) (-237 "DRAWHACK.spad" 331687 331697 332369 332374) (-236 "DRAWCX.spad" 329129 329137 331677 331682) (-235 "DRAWCURV.spad" 328666 328681 329119 329124) (-234 "DRAWCFUN.spad" 317838 317846 328656 328661) (-233 "DQAGG.spad" 315994 316004 317794 317833) (-232 "DPOLCAT.spad" 311335 311351 315862 315989) (-231 "DPOLCAT.spad" 306762 306780 311291 311296) (-230 "DPMO.spad" 300749 300765 300887 301183) (-229 "DPMM.spad" 294749 294767 294874 295170) (-228 "DOMAIN.spad" 294020 294028 294739 294744) (-227 "DMP.spad" 291245 291260 291817 291944) (-226 "DLP.spad" 290593 290603 291235 291240) (-225 "DLIST.spad" 289005 289015 289776 289803) (-224 "DLAGG.spad" 287406 287416 288985 289000) (-223 "DIVRING.spad" 286853 286861 287350 287401) (-222 "DIVRING.spad" 286344 286354 286843 286848) (-221 "DISPLAY.spad" 284524 284532 286334 286339) (-220 "DIRPROD.spad" 275783 275799 276423 276552) (-219 "DIRPROD2.spad" 274591 274609 275773 275778) (-218 "DIRPCAT.spad" 273523 273539 274445 274586) (-217 "DIRPCAT.spad" 272195 272213 273119 273124) (-216 "DIOSP.spad" 271020 271028 272185 272190) (-215 "DIOPS.spad" 269992 270002 270988 271015) (-214 "DIOPS.spad" 268950 268962 269948 269953) (-213 "DIFRING.spad" 268242 268250 268930 268945) (-212 "DIFRING.spad" 267542 267552 268232 268237) (-211 "DIFEXT.spad" 266701 266711 267522 267537) (-210 "DIFEXT.spad" 265777 265789 266600 266605) (-209 "DIAGG.spad" 265395 265405 265745 265772) (-208 "DIAGG.spad" 265033 265045 265385 265390) (-207 "DHMATRIX.spad" 263337 263347 264490 264517) (-206 "DFSFUN.spad" 256745 256753 263327 263332) (-205 "DFLOAT.spad" 253268 253276 256635 256740) (-204 "DFINTTLS.spad" 251477 251493 253258 253263) (-203 "DERHAM.spad" 249387 249419 251457 251472) (-202 "DEQUEUE.spad" 248705 248715 248994 249021) (-201 "DEGRED.spad" 248320 248334 248695 248700) (-200 "DEFINTRF.spad" 245845 245855 248310 248315) (-199 "DEFINTEF.spad" 244341 244357 245835 245840) (-198 "DECIMAL.spad" 242225 242233 242811 242904) (-197 "DDFACT.spad" 240024 240041 242215 242220) (-196 "DBLRESP.spad" 239622 239646 240014 240019) (-195 "DBASE.spad" 238194 238204 239612 239617) (-194 "D03FAFA.spad" 238022 238030 238184 238189) (-193 "D03EEFA.spad" 237842 237850 238012 238017) (-192 "D03AGNT.spad" 236922 236930 237832 237837) (-191 "D02EJFA.spad" 236384 236392 236912 236917) (-190 "D02CJFA.spad" 235862 235870 236374 236379) (-189 "D02BHFA.spad" 235352 235360 235852 235857) (-188 "D02BBFA.spad" 234842 234850 235342 235347) (-187 "D02AGNT.spad" 229646 229654 234832 234837) (-186 "D01WGTS.spad" 227965 227973 229636 229641) (-185 "D01TRNS.spad" 227942 227950 227955 227960) (-184 "D01GBFA.spad" 227464 227472 227932 227937) (-183 "D01FCFA.spad" 226986 226994 227454 227459) (-182 "D01ASFA.spad" 226454 226462 226976 226981) (-181 "D01AQFA.spad" 225900 225908 226444 226449) (-180 "D01APFA.spad" 225324 225332 225890 225895) (-179 "D01ANFA.spad" 224818 224826 225314 225319) (-178 "D01AMFA.spad" 224328 224336 224808 224813) (-177 "D01ALFA.spad" 223868 223876 224318 224323) (-176 "D01AKFA.spad" 223394 223402 223858 223863) (-175 "D01AJFA.spad" 222917 222925 223384 223389) (-174 "D01AGNT.spad" 218976 218984 222907 222912) (-173 "CYCLOTOM.spad" 218482 218490 218966 218971) (-172 "CYCLES.spad" 215314 215322 218472 218477) (-171 "CVMP.spad" 214731 214741 215304 215309) (-170 "CTRIGMNP.spad" 213221 213237 214721 214726) (-169 "CTORCALL.spad" 212809 212817 213211 213216) (-168 "CSTTOOLS.spad" 212052 212065 212799 212804) (-167 "CRFP.spad" 205756 205769 212042 212047) (-166 "CRAPACK.spad" 204799 204809 205746 205751) (-165 "CPMATCH.spad" 204299 204314 204724 204729) (-164 "CPIMA.spad" 204004 204023 204289 204294) (-163 "COORDSYS.spad" 198897 198907 203994 203999) (-162 "CONTOUR.spad" 198299 198307 198887 198892) (-161 "CONTFRAC.spad" 193911 193921 198201 198294) (-160 "COMRING.spad" 193585 193593 193849 193906) (-159 "COMPPROP.spad" 193099 193107 193575 193580) (-158 "COMPLPAT.spad" 192866 192881 193089 193094) (-157 "COMPLEX.spad" 186899 186909 187143 187404) (-156 "COMPLEX2.spad" 186612 186624 186889 186894) (-155 "COMPFACT.spad" 186214 186228 186602 186607) (-154 "COMPCAT.spad" 184270 184280 185936 186209) (-153 "COMPCAT.spad" 182033 182045 183701 183706) (-152 "COMMUPC.spad" 181779 181797 182023 182028) (-151 "COMMONOP.spad" 181312 181320 181769 181774) (-150 "COMM.spad" 181121 181129 181302 181307) (-149 "COMBOPC.spad" 180026 180034 181111 181116) (-148 "COMBINAT.spad" 178771 178781 180016 180021) (-147 "COMBF.spad" 176139 176155 178761 178766) (-146 "COLOR.spad" 174976 174984 176129 176134) (-145 "CMPLXRT.spad" 174685 174702 174966 174971) (-144 "CLIP.spad" 170777 170785 174675 174680) (-143 "CLIF.spad" 169416 169432 170733 170772) (-142 "CLAGG.spad" 165891 165901 169396 169411) (-141 "CLAGG.spad" 162247 162259 165754 165759) (-140 "CINTSLPE.spad" 161572 161585 162237 162242) (-139 "CHVAR.spad" 159650 159672 161562 161567) (-138 "CHARZ.spad" 159565 159573 159630 159645) (-137 "CHARPOL.spad" 159073 159083 159555 159560) (-136 "CHARNZ.spad" 158826 158834 159053 159068) (-135 "CHAR.spad" 156694 156702 158816 158821) (-134 "CFCAT.spad" 156010 156018 156684 156689) (-133 "CDEN.spad" 155168 155182 156000 156005) (-132 "CCLASS.spad" 153317 153325 154579 154618) (-131 "CATEGORY.spad" 153096 153104 153307 153312) (-130 "CARTEN.spad" 148199 148223 153086 153091) (-129 "CARTEN2.spad" 147585 147612 148189 148194) (-128 "CARD.spad" 144874 144882 147559 147580) (-127 "CACHSET.spad" 144496 144504 144864 144869) (-126 "CABMON.spad" 144049 144057 144486 144491) (-125 "BYTE.spad" 143761 143769 144039 144044) (-124 "BYTEARY.spad" 142836 142844 142930 142957) (-123 "BTREE.spad" 141905 141915 142443 142470) (-122 "BTOURN.spad" 140908 140918 141512 141539) (-121 "BTCAT.spad" 140284 140294 140864 140903) (-120 "BTCAT.spad" 139692 139704 140274 140279) (-119 "BTAGG.spad" 138708 138716 139648 139687) (-118 "BTAGG.spad" 137756 137766 138698 138703) (-117 "BSTREE.spad" 136491 136501 137363 137390) (-116 "BRILL.spad" 134686 134697 136481 136486) (-115 "BRAGG.spad" 133600 133610 134666 134681) (-114 "BRAGG.spad" 132488 132500 133556 133561) (-113 "BPADICRT.spad" 130472 130484 130727 130820) (-112 "BPADIC.spad" 130136 130148 130398 130467) (-111 "BOUNDZRO.spad" 129792 129809 130126 130131) (-110 "BOP.spad" 125256 125264 129782 129787) (-109 "BOP1.spad" 122642 122652 125212 125217) (-108 "BOOLEAN.spad" 121895 121903 122632 122637) (-107 "BMODULE.spad" 121607 121619 121863 121890) (-106 "BITS.spad" 121026 121034 121243 121270) (-105 "BINFILE.spad" 120369 120377 121016 121021) (-104 "BINDING.spad" 119788 119796 120359 120364) (-103 "BINARY.spad" 117681 117689 118258 118351) (-102 "BGAGG.spad" 116866 116876 117649 117676) (-101 "BGAGG.spad" 116071 116083 116856 116861) (-100 "BFUNCT.spad" 115635 115643 116051 116066) (-99 "BEZOUT.spad" 114770 114796 115585 115590) (-98 "BBTREE.spad" 111590 111599 114377 114404) (-97 "BASTYPE.spad" 111263 111270 111580 111585) (-96 "BASTYPE.spad" 110934 110943 111253 111258) (-95 "BALFACT.spad" 110374 110386 110924 110929) (-94 "AUTOMOR.spad" 109821 109830 110354 110369) (-93 "ATTREG.spad" 106540 106547 109573 109816) (-92 "ATTRBUT.spad" 102563 102570 106520 106535) (-91 "ATRIG.spad" 102033 102040 102553 102558) (-90 "ATRIG.spad" 101501 101510 102023 102028) (-89 "ASTACK.spad" 100834 100843 101108 101135) (-88 "ASSOCEQ.spad" 99634 99645 100790 100795) (-87 "ASP9.spad" 98715 98728 99624 99629) (-86 "ASP8.spad" 97758 97771 98705 98710) (-85 "ASP80.spad" 97080 97093 97748 97753) (-84 "ASP7.spad" 96240 96253 97070 97075) (-83 "ASP78.spad" 95691 95704 96230 96235) (-82 "ASP77.spad" 95060 95073 95681 95686) (-81 "ASP74.spad" 94152 94165 95050 95055) (-80 "ASP73.spad" 93423 93436 94142 94147) (-79 "ASP6.spad" 92055 92068 93413 93418) (-78 "ASP55.spad" 90564 90577 92045 92050) (-77 "ASP50.spad" 88381 88394 90554 90559) (-76 "ASP4.spad" 87676 87689 88371 88376) (-75 "ASP49.spad" 86675 86688 87666 87671) (-74 "ASP42.spad" 85082 85121 86665 86670) (-73 "ASP41.spad" 83661 83700 85072 85077) (-72 "ASP35.spad" 82649 82662 83651 83656) (-71 "ASP34.spad" 81950 81963 82639 82644) (-70 "ASP33.spad" 81510 81523 81940 81945) (-69 "ASP31.spad" 80650 80663 81500 81505) (-68 "ASP30.spad" 79542 79555 80640 80645) (-67 "ASP29.spad" 79008 79021 79532 79537) (-66 "ASP28.spad" 70281 70294 78998 79003) (-65 "ASP27.spad" 69178 69191 70271 70276) (-64 "ASP24.spad" 68265 68278 69168 69173) (-63 "ASP20.spad" 67481 67494 68255 68260) (-62 "ASP1.spad" 66862 66875 67471 67476) (-61 "ASP19.spad" 61548 61561 66852 66857) (-60 "ASP12.spad" 60962 60975 61538 61543) (-59 "ASP10.spad" 60233 60246 60952 60957) (-58 "ARRAY2.spad" 59593 59602 59840 59867) (-57 "ARRAY1.spad" 58428 58437 58776 58803) (-56 "ARRAY12.spad" 57097 57108 58418 58423) (-55 "ARR2CAT.spad" 52747 52768 57053 57092) (-54 "ARR2CAT.spad" 48429 48452 52737 52742) (-53 "APPRULE.spad" 47673 47695 48419 48424) (-52 "APPLYORE.spad" 47288 47301 47663 47668) (-51 "ANY.spad" 45630 45637 47278 47283) (-50 "ANY1.spad" 44701 44710 45620 45625) (-49 "ANTISYM.spad" 43140 43156 44681 44696) (-48 "ANON.spad" 42837 42844 43130 43135) (-47 "AN.spad" 41140 41147 42655 42748) (-46 "AMR.spad" 39319 39330 41038 41135) (-45 "AMR.spad" 37335 37348 39056 39061) (-44 "ALIST.spad" 34747 34768 35097 35124) (-43 "ALGSC.spad" 33870 33896 34619 34672) (-42 "ALGPKG.spad" 29579 29590 33826 33831) (-41 "ALGMFACT.spad" 28768 28782 29569 29574) (-40 "ALGMANIP.spad" 26189 26204 28566 28571) (-39 "ALGFF.spad" 24507 24534 24724 24880) (-38 "ALGFACT.spad" 23628 23638 24497 24502) (-37 "ALGEBRA.spad" 23359 23368 23584 23623) (-36 "ALGEBRA.spad" 23122 23133 23349 23354) (-35 "ALAGG.spad" 22620 22641 23078 23117) (-34 "AHYP.spad" 22001 22008 22610 22615) (-33 "AGG.spad" 20300 20307 21981 21996) (-32 "AGG.spad" 18573 18582 20256 20261) (-31 "AF.spad" 16999 17014 18509 18514) (-30 "ACPLOT.spad" 15570 15577 16989 16994) (-29 "ACFS.spad" 13309 13318 15460 15565) (-28 "ACFS.spad" 11146 11157 13299 13304) (-27 "ACF.spad" 7748 7755 11048 11141) (-26 "ACF.spad" 4436 4445 7738 7743) (-25 "ABELSG.spad" 3977 3984 4426 4431) (-24 "ABELSG.spad" 3516 3525 3967 3972) (-23 "ABELMON.spad" 3059 3066 3506 3511) (-22 "ABELMON.spad" 2600 2609 3049 3054) (-21 "ABELGRP.spad" 2172 2179 2590 2595) (-20 "ABELGRP.spad" 1742 1751 2162 2167) (-19 "A1AGG.spad" 870 879 1698 1737) (-18 "A1AGG.spad" 30 41 860 865)) \ No newline at end of file
diff --git a/src/share/algebra/category.daase b/src/share/algebra/category.daase
index 2bd895b7..6c515db3 100644
--- a/src/share/algebra/category.daase
+++ b/src/share/algebra/category.daase
@@ -1,3211 +1,3221 @@
-(142548 . 3417125214)
-(((|#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((#0=(-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) #0#) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))))
+(142764 . 3417777702)
+(((|#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((#0=(-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) #0#) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))))
(((|#2| |#2|) . T))
-((((-523)) . T))
-((($ $) -3255 (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))) ((|#2| |#2|) . T) ((#0=(-383 (-523)) #0#) |has| |#2| (-37 (-383 (-523)))))
+((((-525)) . T))
+((($ $) -3321 (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))) ((|#2| |#2|) . T) ((#0=(-385 (-525)) #0#) |has| |#2| (-37 (-385 (-525)))))
((($) . T))
(((|#1|) . T))
-((($) . T) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
+((($) . T) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
(((|#2|) . T))
-((($) -3255 (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))) ((|#2|) . T) (((-383 (-523))) |has| |#2| (-37 (-383 (-523)))))
-(|has| |#1| (-840))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((($) . T) (((-383 (-523))) . T))
+((($) -3321 (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))) ((|#2|) . T) (((-385 (-525))) |has| |#2| (-37 (-385 (-525)))))
+(|has| |#1| (-842))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((($) . T) (((-385 (-525))) . T))
((($) . T))
((($) . T))
(((|#2| |#2|) . T))
-((((-133)) . T))
-((((-499)) . T) (((-1070)) . T) (((-203)) . T) (((-355)) . T) (((-823 (-355))) . T))
-(((|#1|) . T))
-((((-203)) . T) (((-794)) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1|) . T))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-784)))
-((($ $) . T) ((#0=(-383 (-523)) #0#) -3255 (|has| |#1| (-339)) (|has| |#1| (-325))) ((|#1| |#1|) . T))
-(-3255 (|has| |#1| (-759)) (|has| |#1| (-786)))
-((((-383 (-523))) |has| |#1| (-964 (-383 (-523)))) (((-523)) |has| |#1| (-964 (-523))) ((|#1|) . T))
-((((-794)) . T))
-((((-794)) . T))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-(|has| |#1| (-784))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
+((((-135)) . T))
+((((-501)) . T) (((-1072)) . T) (((-205)) . T) (((-357)) . T) (((-825 (-357))) . T))
+(((|#1|) . T))
+((((-205)) . T) (((-796)) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1|) . T))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-786)))
+((($ $) . T) ((#0=(-385 (-525)) #0#) -3321 (|has| |#1| (-341)) (|has| |#1| (-327))) ((|#1| |#1|) . T))
+(-3321 (|has| |#1| (-761)) (|has| |#1| (-788)))
+((((-385 (-525))) |has| |#1| (-966 (-385 (-525)))) (((-525)) |has| |#1| (-966 (-525))) ((|#1|) . T))
+((((-796)) . T))
+((((-796)) . T))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+(|has| |#1| (-786))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
(((|#1| |#2| |#3|) . T))
(((|#4|) . T))
-((($) . T) (((-383 (-523))) -3255 (|has| |#1| (-339)) (|has| |#1| (-325))) ((|#1|) . T))
-((((-794)) . T))
-((((-794)) |has| |#1| (-1016)))
+((($) . T) (((-385 (-525))) -3321 (|has| |#1| (-341)) (|has| |#1| (-327))) ((|#1|) . T))
+((((-796)) . T))
+((((-796)) |has| |#1| (-1018)))
(((|#1|) . T) ((|#2|) . T))
-(((|#1|) . T) (((-523)) |has| |#1| (-964 (-523))) (((-383 (-523))) |has| |#1| (-964 (-383 (-523)))))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840)))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(((|#2| (-456 (-1271 |#1|) (-710))) . T))
-(((|#1| (-495 (-1087))) . T))
-(((#0=(-801 |#1|) #0#) . T) ((#1=(-383 (-523)) #1#) . T) (($ $) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-(|has| |#4| (-344))
-(|has| |#3| (-344))
-(((|#1|) . T))
-((((-801 |#1|)) . T) (((-383 (-523))) . T) (($) . T))
+(((|#1|) . T) (((-525)) |has| |#1| (-966 (-525))) (((-385 (-525))) |has| |#1| (-966 (-385 (-525)))))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842)))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(((|#2| (-458 (-4045 |#1|) (-712))) . T))
+(((|#1| (-497 (-1089))) . T))
+(((#0=(-803 |#1|) #0#) . T) ((#1=(-385 (-525)) #1#) . T) (($ $) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+(|has| |#4| (-346))
+(|has| |#3| (-346))
+(((|#1|) . T))
+((((-803 |#1|)) . T) (((-385 (-525))) . T) (($) . T))
(((|#1| |#2|) . T))
((($) . T))
-(|has| |#1| (-134))
(|has| |#1| (-136))
-(|has| |#1| (-515))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-((($) . T))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-786)) (|has| |#1| (-1016))))
-((((-499)) |has| |#1| (-564 (-499))))
-((($) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) . T))
-((($) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-794)) . T))
-((((-794)) . T))
-((((-383 (-523))) . T) (($) . T))
-((((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (((-1161 |#1| |#2| |#3|)) |has| |#1| (-339)) (($) . T) ((|#1|) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-(((|#1|) . T))
-(((|#1|) . T) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) . T))
-(((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) (($) . T))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
+(|has| |#1| (-138))
+(|has| |#1| (-517))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+((($) . T))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-788)) (|has| |#1| (-1018))))
+((((-501)) |has| |#1| (-566 (-501))))
+((($) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) . T))
+((($) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-796)) . T))
+((((-796)) . T))
+((((-385 (-525))) . T) (($) . T))
+((((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (((-1163 |#1| |#2| |#3|)) |has| |#1| (-341)) (($) . T) ((|#1|) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+(((|#1|) . T))
+(((|#1|) . T) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) . T))
+(((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) (($) . T))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
(((|#1| |#2|) . T))
-((((-794)) . T))
+((((-796)) . T))
(((|#1|) . T))
-(((#0=(-383 (-523)) #0#) |has| |#2| (-37 (-383 (-523)))) ((|#2| |#2|) . T) (($ $) -3255 (|has| |#2| (-158)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
+(((#0=(-385 (-525)) #0#) |has| |#2| (-37 (-385 (-525)))) ((|#2| |#2|) . T) (($ $) -3321 (|has| |#2| (-160)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
(((|#1|) . T))
-((((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) |has| |#2| (-158)) (($) -3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
-((($) -3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-(((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))) ((|#1| |#1|) . T) (($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))))
+((((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) |has| |#2| (-160)) (($) -3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
+((($) -3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+(((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))) ((|#1| |#1|) . T) (($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))))
((($ $) . T))
(((|#2|) . T))
-((((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) . T) (($) -3255 (|has| |#2| (-158)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
-((((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) . T) (($) -3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))))
+((((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) . T) (($) -3321 (|has| |#2| (-160)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
+((((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) . T) (($) -3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))))
((($) . T))
-(|has| |#1| (-344))
+(|has| |#1| (-346))
(((|#1|) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-794)) . T))
-((((-794)) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-796)) . T))
+((((-796)) . T))
(((|#1| |#2|) . T))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-831 (-1087))) (|has| |#1| (-973)))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-831 (-1087))) (|has| |#1| (-973)))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-833 (-1089))) (|has| |#1| (-975)))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-833 (-1089))) (|has| |#1| (-975)))
(((|#1| |#1|) . T))
-(|has| |#1| (-515))
-(((|#2| |#2|) -12 (|has| |#1| (-339)) (|has| |#2| (-286 |#2|))) (((-1087) |#2|) -12 (|has| |#1| (-339)) (|has| |#2| (-484 (-1087) |#2|))))
-((((-383 |#2|)) . T) (((-383 (-523))) . T) (($) . T))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-784)))
-((($ $) . T) ((#0=(-383 (-523)) #0#) . T))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515)))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-(|has| |#1| (-1016))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-(|has| |#1| (-1016))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-(|has| |#1| (-784))
-((($) . T) (((-383 (-523))) . T))
-(((|#1|) . T))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-325)))
-(-3255 (|has| |#4| (-732)) (|has| |#4| (-784)))
-(-3255 (|has| |#4| (-732)) (|has| |#4| (-784)))
-(-3255 (|has| |#3| (-732)) (|has| |#3| (-784)))
-(-3255 (|has| |#3| (-732)) (|has| |#3| (-784)))
+(|has| |#1| (-517))
+(((|#2| |#2|) -12 (|has| |#1| (-341)) (|has| |#2| (-288 |#2|))) (((-1089) |#2|) -12 (|has| |#1| (-341)) (|has| |#2| (-486 (-1089) |#2|))))
+((((-385 |#2|)) . T) (((-385 (-525))) . T) (($) . T))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-786)))
+((($ $) . T) ((#0=(-385 (-525)) #0#) . T))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517)))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+(|has| |#1| (-1018))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+(|has| |#1| (-1018))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+(|has| |#1| (-786))
+((($) . T) (((-385 (-525))) . T))
+(((|#1|) . T))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-327)))
+(-3321 (|has| |#4| (-734)) (|has| |#4| (-786)))
+(-3321 (|has| |#4| (-734)) (|has| |#4| (-786)))
+(-3321 (|has| |#3| (-734)) (|has| |#3| (-786)))
+(-3321 (|has| |#3| (-734)) (|has| |#3| (-786)))
(((|#1| |#2|) . T))
(((|#1| |#2|) . T))
-(|has| |#1| (-1016))
-(|has| |#1| (-1016))
-(((|#1| (-1087) (-1006 (-1087)) (-495 (-1006 (-1087)))) . T))
-((((-523) |#1|) . T))
-((((-523)) . T))
-((((-523)) . T))
-((((-841 |#1|)) . T))
-(((|#1| (-495 |#2|)) . T))
-((((-523)) . T))
-((((-523)) . T))
-(((|#1|) . T))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-(((|#1| (-710)) . T))
-(|has| |#2| (-732))
-(-3255 (|has| |#2| (-732)) (|has| |#2| (-784)))
-(|has| |#2| (-784))
+(|has| |#1| (-1018))
+(|has| |#1| (-1018))
+(((|#1| (-1089) (-1008 (-1089)) (-497 (-1008 (-1089)))) . T))
+((((-525) |#1|) . T))
+((((-525)) . T))
+((((-525)) . T))
+((((-843 |#1|)) . T))
+(((|#1| (-497 |#2|)) . T))
+((((-525)) . T))
+((((-525)) . T))
+(((|#1|) . T))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+(((|#1| (-712)) . T))
+(|has| |#2| (-734))
+(-3321 (|has| |#2| (-734)) (|has| |#2| (-786)))
+(|has| |#2| (-786))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1| |#2|) . T))
-((((-1070) |#1|) . T))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
+((((-1072) |#1|) . T))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
(((|#1|) . T))
-(((|#3| (-710)) . T))
+(((|#3| (-712)) . T))
+(|has| |#1| (-138))
(|has| |#1| (-136))
-(|has| |#1| (-134))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515)))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515)))
-(|has| |#1| (-1016))
-((((-383 (-523))) . T) (((-523)) . T))
-((((-1087) |#2|) |has| |#2| (-484 (-1087) |#2|)) ((|#2| |#2|) |has| |#2| (-286 |#2|)))
-((((-383 (-523))) . T) (((-523)) . T))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517)))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517)))
+(|has| |#1| (-1018))
+((((-385 (-525))) . T) (((-525)) . T))
+((((-1089) |#2|) |has| |#2| (-486 (-1089) |#2|)) ((|#2| |#2|) |has| |#2| (-288 |#2|)))
+((((-385 (-525))) . T) (((-525)) . T))
(((|#1|) . T) (($) . T))
-((((-523)) . T))
-((((-523)) . T))
-((($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) ((|#1|) |has| |#1| (-158)))
-((((-523)) . T))
-((((-523)) . T))
-(((#0=(-638) (-1083 #0#)) . T))
-((((-383 (-523))) . T) (($) . T))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-((((-523) |#1|) . T))
-((($) . T) (((-523)) . T) (((-383 (-523))) . T))
-(((|#1|) . T))
-(|has| |#2| (-339))
+((((-525)) . T))
+((((-525)) . T))
+((($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) ((|#1|) |has| |#1| (-160)))
+((((-525)) . T))
+((((-525)) . T))
+(((#0=(-640) (-1085 #0#)) . T))
+((((-385 (-525))) . T) (($) . T))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+((((-525) |#1|) . T))
+((($) . T) (((-525)) . T) (((-385 (-525))) . T))
+(((|#1|) . T))
+(|has| |#2| (-341))
(((|#1|) . T))
(((|#1| |#2|) . T))
-((((-794)) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-1070) |#1|) . T))
+((((-796)) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-1072) |#1|) . T))
(((|#3| |#3|) . T))
-((((-794)) . T))
-((((-794)) . T))
+((((-796)) . T))
+((((-796)) . T))
(((|#1| |#1|) . T))
-(((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))) ((|#1| |#1|) . T) (($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))))
-((($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1| |#1|) . T) ((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))))
-(((|#1|) . T))
-((((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) . T) (($) -3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))))
-((($) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((($) -3255 (|has| |#2| (-158)) (|has| |#2| (-784)) (|has| |#2| (-973))) ((|#2|) -3255 (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-973))))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-523) |#1|) . T))
-((((-794)) . T))
-((((-155 (-203))) |has| |#1| (-949)) (((-155 (-355))) |has| |#1| (-949)) (((-499)) |has| |#1| (-564 (-499))) (((-1083 |#1|)) . T) (((-823 (-523))) |has| |#1| (-564 (-823 (-523)))) (((-823 (-355))) |has| |#1| (-564 (-823 (-355)))))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1|) . T))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-784)))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-784)))
-((((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))) ((|#2|) |has| |#1| (-339)) ((|#1|) |has| |#1| (-158)))
-(((|#1|) |has| |#1| (-158)) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))))
-(|has| |#1| (-339))
-(-12 (|has| |#4| (-211)) (|has| |#4| (-973)))
-(-12 (|has| |#3| (-211)) (|has| |#3| (-973)))
-(-3255 (|has| |#4| (-158)) (|has| |#4| (-784)) (|has| |#4| (-973)))
-(-3255 (|has| |#3| (-158)) (|has| |#3| (-784)) (|has| |#3| (-973)))
-((((-794)) . T))
-(((|#1|) . T))
-((((-383 (-523))) |has| |#1| (-964 (-383 (-523)))) (((-523)) |has| |#1| (-964 (-523))) ((|#1|) . T))
-(((|#1|) . T) (((-523)) |has| |#1| (-585 (-523))))
-(((|#2|) . T) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-(((|#1|) . T) (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) . T))
-(|has| |#1| (-515))
-(|has| |#1| (-515))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-(((|#1|) . T))
-(|has| |#1| (-515))
-(|has| |#1| (-515))
-(|has| |#1| (-515))
-((((-638)) . T))
-(((|#1|) . T))
-(-12 (|has| |#1| (-930)) (|has| |#1| (-1109)))
-(((|#2|) . T) (($) . T) (((-383 (-523))) . T))
-(-12 (|has| |#1| (-1016)) (|has| |#2| (-1016)))
-((($) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) . T))
-((((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (((-1085 |#1| |#2| |#3|)) |has| |#1| (-339)) (($) . T) ((|#1|) . T))
-(((|#1|) . T) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) . T))
-(((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) (($) . T))
-(((|#4| |#4|) -3255 (|has| |#4| (-158)) (|has| |#4| (-339)) (|has| |#4| (-973))) (($ $) |has| |#4| (-158)))
-(((|#3| |#3|) -3255 (|has| |#3| (-158)) (|has| |#3| (-339)) (|has| |#3| (-973))) (($ $) |has| |#3| (-158)))
-(((|#1|) . T))
-(((|#2|) . T))
-((((-499)) |has| |#2| (-564 (-499))) (((-823 (-355))) |has| |#2| (-564 (-823 (-355)))) (((-823 (-523))) |has| |#2| (-564 (-823 (-523)))))
-((((-794)) . T))
+(((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))) ((|#1| |#1|) . T) (($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))))
+((($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1| |#1|) . T) ((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))))
+(((|#1|) . T))
+((((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) . T) (($) -3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))))
+((($) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((($) -3321 (|has| |#2| (-160)) (|has| |#2| (-786)) (|has| |#2| (-975))) ((|#2|) -3321 (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-975))))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-525) |#1|) . T))
+((((-157 (-205))) |has| |#1| (-951)) (((-157 (-357))) |has| |#1| (-951)) (((-501)) |has| |#1| (-566 (-501))) (((-1085 |#1|)) . T) (((-825 (-525))) |has| |#1| (-566 (-825 (-525)))) (((-825 (-357))) |has| |#1| (-566 (-825 (-357)))))
+((((-796)) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1|) . T))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-786)))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-786)))
+((((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))) ((|#2|) |has| |#1| (-341)) ((|#1|) |has| |#1| (-160)))
+(((|#1|) |has| |#1| (-160)) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))))
+(|has| |#1| (-341))
+(-12 (|has| |#4| (-213)) (|has| |#4| (-975)))
+(-12 (|has| |#3| (-213)) (|has| |#3| (-975)))
+(-3321 (|has| |#4| (-160)) (|has| |#4| (-786)) (|has| |#4| (-975)))
+(-3321 (|has| |#3| (-160)) (|has| |#3| (-786)) (|has| |#3| (-975)))
+((((-796)) . T))
+(((|#1|) . T))
+((((-385 (-525))) |has| |#1| (-966 (-385 (-525)))) (((-525)) |has| |#1| (-966 (-525))) ((|#1|) . T))
+(((|#1|) . T) (((-525)) |has| |#1| (-587 (-525))))
+(((|#2|) . T) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+(((|#1|) . T) (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) . T))
+(|has| |#1| (-517))
+(|has| |#1| (-517))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+(((|#1|) . T))
+(|has| |#1| (-517))
+(|has| |#1| (-517))
+(|has| |#1| (-517))
+((((-640)) . T))
+(((|#1|) . T))
+(-12 (|has| |#1| (-932)) (|has| |#1| (-1111)))
+(((|#2|) . T) (($) . T) (((-385 (-525))) . T))
+(-12 (|has| |#1| (-1018)) (|has| |#2| (-1018)))
+((($) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) . T))
+((((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (((-1087 |#1| |#2| |#3|)) |has| |#1| (-341)) (($) . T) ((|#1|) . T))
+(((|#1|) . T) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) . T))
+(((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) (($) . T))
+(((|#3| |#3|) -3321 (|has| |#3| (-160)) (|has| |#3| (-341)) (|has| |#3| (-975))) (($ $) |has| |#3| (-160)))
+(((|#4| |#4|) -3321 (|has| |#4| (-160)) (|has| |#4| (-341)) (|has| |#4| (-975))) (($ $) |has| |#4| (-160)))
+(((|#1|) . T))
+(((|#2|) . T))
+((((-501)) |has| |#2| (-566 (-501))) (((-825 (-357))) |has| |#2| (-566 (-825 (-357)))) (((-825 (-525))) |has| |#2| (-566 (-825 (-525)))))
+((((-796)) . T))
(((|#1| |#2| |#3| |#4|) . T))
-((((-794)) . T))
-((((-499)) |has| |#1| (-564 (-499))) (((-823 (-355))) |has| |#1| (-564 (-823 (-355)))) (((-823 (-523))) |has| |#1| (-564 (-823 (-523)))))
-((((-794)) . T))
-(((|#4|) -3255 (|has| |#4| (-158)) (|has| |#4| (-339)) (|has| |#4| (-973))) (($) |has| |#4| (-158)))
-(((|#3|) -3255 (|has| |#3| (-158)) (|has| |#3| (-339)) (|has| |#3| (-973))) (($) |has| |#3| (-158)))
-((((-794)) . T))
-((((-499)) . T) (((-523)) . T) (((-823 (-523))) . T) (((-355)) . T) (((-203)) . T))
-(((|#1|) . T) (((-523)) |has| |#1| (-964 (-523))) (((-383 (-523))) |has| |#1| (-964 (-383 (-523)))))
-((($) . T) (((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) . T))
-((((-383 $) (-383 $)) |has| |#2| (-515)) (($ $) . T) ((|#2| |#2|) . T))
-((((-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) . T))
-(((|#1|) . T))
-(|has| |#2| (-840))
-((((-1070) (-51)) . T))
-((((-523)) |has| #0=(-383 |#2|) (-585 (-523))) ((#0#) . T))
-((((-499)) . T) (((-203)) . T) (((-355)) . T) (((-823 (-355))) . T))
-((((-794)) . T))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-831 (-1087))) (|has| |#1| (-973)))
-(((|#1|) |has| |#1| (-158)))
-(((|#1| $) |has| |#1| (-263 |#1| |#1|)))
-((((-794)) . T))
-((((-794)) . T))
-((((-383 (-523))) . T) (($) . T))
-((((-383 (-523))) . T) (($) . T))
-((((-794)) . T))
-(|has| |#1| (-786))
-(|has| |#1| (-1016))
-(((|#1|) . T))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-786)) (|has| |#1| (-1016))))
-((((-499)) |has| |#1| (-564 (-499))))
-((((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) |has| |#2| (-158)) (($) -3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
-((($) -3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((($) -3255 (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(|has| |#1| (-211))
-((($) -3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(((|#1| (-495 (-757 (-1087)))) . T))
-(((|#1| (-900)) . T))
-(((#0=(-801 |#1|) $) |has| #0# (-263 #0# #0#)))
-((((-523) |#4|) . T))
-((((-523) |#3|) . T))
+((((-796)) . T))
+((((-501)) |has| |#1| (-566 (-501))) (((-825 (-357))) |has| |#1| (-566 (-825 (-357)))) (((-825 (-525))) |has| |#1| (-566 (-825 (-525)))))
+((((-796)) . T))
+(((|#3|) -3321 (|has| |#3| (-160)) (|has| |#3| (-341)) (|has| |#3| (-975))) (($) |has| |#3| (-160)))
+(((|#4|) -3321 (|has| |#4| (-160)) (|has| |#4| (-341)) (|has| |#4| (-975))) (($) |has| |#4| (-160)))
+((((-796)) . T))
+((((-501)) . T) (((-525)) . T) (((-825 (-525))) . T) (((-357)) . T) (((-205)) . T))
+(((|#1|) . T) (((-525)) |has| |#1| (-966 (-525))) (((-385 (-525))) |has| |#1| (-966 (-385 (-525)))))
+((($) . T) (((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) . T))
+((((-385 $) (-385 $)) |has| |#2| (-517)) (($ $) . T) ((|#2| |#2|) . T))
+((((-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) . T))
+(((|#1|) . T))
+(|has| |#2| (-842))
+((((-1072) (-51)) . T))
+((((-525)) |has| #0=(-385 |#2|) (-587 (-525))) ((#0#) . T))
+((((-501)) . T) (((-205)) . T) (((-357)) . T) (((-825 (-357))) . T))
+((((-796)) . T))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-833 (-1089))) (|has| |#1| (-975)))
+(((|#1|) |has| |#1| (-160)))
+(((|#1| $) |has| |#1| (-265 |#1| |#1|)))
+((((-796)) . T))
+((((-796)) . T))
+((((-385 (-525))) . T) (($) . T))
+((((-385 (-525))) . T) (($) . T))
+((((-796)) . T))
+(|has| |#1| (-788))
+(|has| |#1| (-1018))
+(((|#1|) . T))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-788)) (|has| |#1| (-1018))))
+((((-501)) |has| |#1| (-566 (-501))))
+((((-125)) . T))
+((((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) |has| |#2| (-160)) (($) -3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
+((((-125)) . T))
+((($) -3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((($) -3321 (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(|has| |#1| (-213))
+((($) -3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(((|#1| (-497 (-759 (-1089)))) . T))
+(((|#1| (-902)) . T))
+(((#0=(-803 |#1|) $) |has| #0# (-265 #0# #0#)))
+((((-525) |#4|) . T))
+((((-525) |#3|) . T))
(((|#1|) . T))
(((|#2| |#2|) . T))
-(|has| |#1| (-1063))
-((((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) . T))
-(|has| (-1155 |#1| |#2| |#3| |#4|) (-134))
-(|has| (-1155 |#1| |#2| |#3| |#4|) (-136))
-(|has| |#1| (-134))
+(|has| |#1| (-1065))
+((((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) . T))
+(|has| (-1157 |#1| |#2| |#3| |#4|) (-136))
+(|has| (-1157 |#1| |#2| |#3| |#4|) (-138))
(|has| |#1| (-136))
-(((|#1|) |has| |#1| (-158)))
-((((-1087)) -12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973))))
+(|has| |#1| (-138))
+(((|#1|) |has| |#1| (-160)))
+((((-1089)) -12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975))))
(((|#2|) . T))
-(|has| |#1| (-1016))
-((((-1070) |#1|) . T))
+(|has| |#1| (-1018))
+((((-1072) |#1|) . T))
(((|#1|) . T))
-(((|#2|) . T) (((-523)) |has| |#2| (-585 (-523))))
-(|has| |#2| (-344))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
+(((|#2|) . T) (((-525)) |has| |#2| (-587 (-525))))
+(|has| |#2| (-346))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
((($) . T) ((|#1|) . T))
-(((|#2|) |has| |#2| (-973)))
-((((-794)) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((#0=(-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) #0#) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))))
+(((|#2|) |has| |#2| (-975)))
+((((-796)) . T))
+(((|#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((#0=(-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) #0#) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))))
(((|#1|) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((#0=(-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) #0#) |has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))))
-((((-523) |#1|) . T))
-((((-794)) . T))
-((((-499)) -12 (|has| |#1| (-564 (-499))) (|has| |#2| (-564 (-499)))) (((-823 (-355))) -12 (|has| |#1| (-564 (-823 (-355)))) (|has| |#2| (-564 (-823 (-355))))) (((-823 (-523))) -12 (|has| |#1| (-564 (-823 (-523)))) (|has| |#2| (-564 (-823 (-523))))))
-((((-794)) . T))
-((((-794)) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((#0=(-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) #0#) |has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))))
+((((-525) |#1|) . T))
+((((-796)) . T))
+((((-501)) -12 (|has| |#1| (-566 (-501))) (|has| |#2| (-566 (-501)))) (((-825 (-357))) -12 (|has| |#1| (-566 (-825 (-357)))) (|has| |#2| (-566 (-825 (-357))))) (((-825 (-525))) -12 (|has| |#1| (-566 (-825 (-525)))) (|has| |#2| (-566 (-825 (-525))))))
+((((-796)) . T))
+((((-796)) . T))
((($) . T))
-((($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1| |#1|) . T) ((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))))
+((($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1| |#1|) . T) ((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))))
((($) . T))
((($) . T))
((($) . T))
-((($) -3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((((-794)) . T))
-((((-794)) . T))
-(|has| (-1154 |#2| |#3| |#4|) (-136))
-(|has| (-1154 |#2| |#3| |#4|) (-134))
-(((|#2|) |has| |#2| (-1016)) (((-523)) -12 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016))) (((-383 (-523))) -12 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016))))
+((($) -3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((((-796)) . T))
+((((-796)) . T))
+(|has| (-1156 |#2| |#3| |#4|) (-138))
+(|has| (-1156 |#2| |#3| |#4|) (-136))
+(((|#2|) |has| |#2| (-1018)) (((-525)) -12 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018))) (((-385 (-525))) -12 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018))))
(((|#1|) . T))
-(|has| |#1| (-1016))
-((((-794)) . T))
+(|has| |#1| (-1018))
+((((-796)) . T))
(((|#1|) . T))
(((|#1|) . T))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-831 (-1087))) (|has| |#1| (-973)))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-833 (-1089))) (|has| |#1| (-975)))
(((|#1|) . T))
-((((-523) |#1|) . T))
-(((|#2|) |has| |#2| (-158)))
-(((|#1|) |has| |#1| (-158)))
+((((-525) |#1|) . T))
+(((|#2|) |has| |#2| (-160)))
+(((|#1|) |has| |#1| (-160)))
(((|#1|) . T))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-784)))
-((((-794)) |has| |#1| (-1016)))
-(-3255 (|has| |#1| (-448)) (|has| |#1| (-666)) (|has| |#1| (-831 (-1087))) (|has| |#1| (-973)) (|has| |#1| (-1028)))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-325)))
-((((-841 |#1|)) . T))
-((((-383 |#2|) |#3|) . T))
-(|has| |#1| (-15 * (|#1| (-523) |#1|)))
-((((-383 (-523))) . T) (($) . T))
-(|has| |#1| (-786))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-786)))
+((((-796)) |has| |#1| (-1018)))
+(-3321 (|has| |#1| (-450)) (|has| |#1| (-668)) (|has| |#1| (-833 (-1089))) (|has| |#1| (-975)) (|has| |#1| (-1030)))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-327)))
+((((-843 |#1|)) . T))
+((((-385 |#2|) |#3|) . T))
+(|has| |#1| (-15 * (|#1| (-525) |#1|)))
+((((-385 (-525))) . T) (($) . T))
+(|has| |#1| (-788))
(((|#1|) . T) (($) . T))
-((((-383 (-523))) . T) (($) . T))
-((((-794)) . T))
-(((|#1|) . T))
-((((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) |has| |#1| (-158)) (($) |has| |#1| (-515)))
-(|has| |#1| (-339))
-(-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))
-(|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))
-(|has| |#1| (-339))
-((((-523)) . T))
-(|has| |#1| (-15 * (|#1| (-710) |#1|)))
-((((-1054 |#2| (-383 (-883 |#1|)))) . T) (((-383 (-883 |#1|))) . T))
-((($) . T))
-(((|#1|) |has| |#1| (-158)) (($) . T))
-(((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) (($) . T))
-(((|#1|) . T))
-((((-523) |#1|) . T))
-(((|#2|) . T))
-(-3255 (|has| |#2| (-339)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840)))
-(-3255 (|has| |#2| (-732)) (|has| |#2| (-784)))
-(-3255 (|has| |#2| (-732)) (|has| |#2| (-784)))
-(((|#1|) . T))
-((((-1087)) -12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973))))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(-12 (|has| |#1| (-339)) (|has| |#2| (-759)))
-(-3255 (|has| |#1| (-284)) (|has| |#1| (-339)) (|has| |#1| (-325)) (|has| |#1| (-515)))
-(((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))) ((|#1| |#1|) . T) (($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-515))))
-((($ $) |has| |#1| (-515)))
-(((#0=(-638) (-1083 #0#)) . T))
-((((-794)) . T))
-((((-794)) . T) (((-1169 |#4|)) . T))
-((((-794)) . T) (((-1169 |#3|)) . T))
-((((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) . T) (($) -3255 (|has| |#1| (-158)) (|has| |#1| (-515))))
-((($) |has| |#1| (-515)))
-((((-794)) . T))
-((($) . T))
-((($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) ((#0=(-383 (-523)) #0#) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) ((#1=(-1161 |#1| |#2| |#3|) #1#) |has| |#1| (-339)) ((|#1| |#1|) . T))
-(((|#1| |#1|) . T) (($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) ((#0=(-383 (-523)) #0#) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))))
-((($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-515))) ((|#1| |#1|) . T) ((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))))
-((($) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (((-1161 |#1| |#2| |#3|)) |has| |#1| (-339)) ((|#1|) . T))
-(((|#1|) . T) (($) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))))
-(((|#3|) |has| |#3| (-973)))
-((($) -3255 (|has| |#1| (-158)) (|has| |#1| (-515))) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(|has| |#1| (-1016))
-(((|#2| (-758 |#1|)) . T))
-(((|#1|) . T))
-(|has| |#1| (-339))
-((((-383 $) (-383 $)) |has| |#1| (-515)) (($ $) . T) ((|#1| |#1|) . T))
-(((#0=(-1001) |#2|) . T) ((#0# $) . T) (($ $) . T))
-((((-841 |#1|)) . T))
-((((-133)) . T))
-((((-133)) . T))
-(((|#3|) |has| |#3| (-1016)) (((-523)) -12 (|has| |#3| (-964 (-523))) (|has| |#3| (-1016))) (((-383 (-523))) -12 (|has| |#3| (-964 (-383 (-523)))) (|has| |#3| (-1016))))
-((((-794)) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-(((|#1|) . T))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-786)) (|has| |#1| (-1016))))
-((((-499)) |has| |#1| (-564 (-499))))
-((((-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) . T))
-(|has| |#1| (-339))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-784)))
-((((-1087) |#1|) |has| |#1| (-484 (-1087) |#1|)) ((|#1| |#1|) |has| |#1| (-286 |#1|)))
-(|has| |#2| (-759))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-784))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-((((-794)) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-499)) |has| |#1| (-564 (-499))))
+((((-385 (-525))) . T) (($) . T))
+((((-796)) . T))
+(((|#1|) . T))
+((((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) |has| |#1| (-160)) (($) |has| |#1| (-517)))
+(|has| |#1| (-341))
+(-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))
+(|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))
+(|has| |#1| (-341))
+((((-525)) . T))
+(|has| |#1| (-15 * (|#1| (-712) |#1|)))
+((((-1056 |#2| (-385 (-885 |#1|)))) . T) (((-385 (-885 |#1|))) . T))
+((($) . T))
+(((|#1|) |has| |#1| (-160)) (($) . T))
+(((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) (($) . T))
+(((|#1|) . T))
+((((-525) |#1|) . T))
+(((|#2|) . T))
+(-3321 (|has| |#2| (-341)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842)))
+(-3321 (|has| |#2| (-734)) (|has| |#2| (-786)))
+(-3321 (|has| |#2| (-734)) (|has| |#2| (-786)))
+(((|#1|) . T))
+((((-1089)) -12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975))))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(-12 (|has| |#1| (-341)) (|has| |#2| (-761)))
+(-3321 (|has| |#1| (-286)) (|has| |#1| (-341)) (|has| |#1| (-327)) (|has| |#1| (-517)))
+(((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))) ((|#1| |#1|) . T) (($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-517))))
+((($ $) |has| |#1| (-517)))
+(((#0=(-640) (-1085 #0#)) . T))
+((((-796)) . T))
+((((-796)) . T) (((-1171 |#4|)) . T))
+((((-796)) . T) (((-1171 |#3|)) . T))
+((((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) . T) (($) -3321 (|has| |#1| (-160)) (|has| |#1| (-517))))
+((($) |has| |#1| (-517)))
+((((-796)) . T))
+((($) . T))
+((($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) ((#0=(-385 (-525)) #0#) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) ((#1=(-1163 |#1| |#2| |#3|) #1#) |has| |#1| (-341)) ((|#1| |#1|) . T))
+(((|#1| |#1|) . T) (($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) ((#0=(-385 (-525)) #0#) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))))
+((($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-517))) ((|#1| |#1|) . T) ((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))))
+((($) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (((-1163 |#1| |#2| |#3|)) |has| |#1| (-341)) ((|#1|) . T))
+(((|#1|) . T) (($) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))))
+(((|#3|) |has| |#3| (-975)))
+((($) -3321 (|has| |#1| (-160)) (|has| |#1| (-517))) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(|has| |#1| (-1018))
+(((|#2| (-760 |#1|)) . T))
+(((|#1|) . T))
+(|has| |#1| (-341))
+((((-385 $) (-385 $)) |has| |#1| (-517)) (($ $) . T) ((|#1| |#1|) . T))
+(((#0=(-1003) |#2|) . T) ((#0# $) . T) (($ $) . T))
+((((-843 |#1|)) . T))
+((((-135)) . T))
+((((-135)) . T))
+(((|#3|) |has| |#3| (-1018)) (((-525)) -12 (|has| |#3| (-966 (-525))) (|has| |#3| (-1018))) (((-385 (-525))) -12 (|has| |#3| (-966 (-385 (-525)))) (|has| |#3| (-1018))))
+((((-796)) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+(((|#1|) . T))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-788)) (|has| |#1| (-1018))))
+((((-501)) |has| |#1| (-566 (-501))))
+((((-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) . T))
+(|has| |#1| (-341))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-786)))
+((((-1089) |#1|) |has| |#1| (-486 (-1089) |#1|)) ((|#1| |#1|) |has| |#1| (-288 |#1|)))
+(|has| |#2| (-761))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-786))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+((((-796)) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-501)) |has| |#1| (-566 (-501))))
(((|#1| |#2|) . T))
-((((-1087)) -12 (|has| |#1| (-339)) (|has| |#1| (-831 (-1087)))))
-((((-1070) |#1|) . T))
-(((|#1| |#2| |#3| (-495 |#3|)) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-(|has| |#1| (-344))
-(|has| |#1| (-344))
-(|has| |#1| (-344))
-((((-794)) . T))
-(((|#1|) . T))
-(-3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840)))
-(|has| |#1| (-344))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-((((-523)) . T))
-((((-523)) . T))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840)))
-((((-794)) . T))
-((((-794)) . T))
-(-12 (|has| |#2| (-211)) (|has| |#2| (-973)))
-((((-1087) #0=(-801 |#1|)) |has| #0# (-484 (-1087) #0#)) ((#0# #0#) |has| #0# (-286 #0#)))
-(((|#1|) . T))
-((((-523) |#4|) . T))
-((((-523) |#3|) . T))
-(((|#1|) . T) (((-523)) |has| |#1| (-585 (-523))))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-((((-1155 |#1| |#2| |#3| |#4|)) . T))
-((((-383 (-523))) . T) (((-523)) . T))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
+((((-1089)) -12 (|has| |#1| (-341)) (|has| |#1| (-833 (-1089)))))
+((((-1072) |#1|) . T))
+(((|#1| |#2| |#3| (-497 |#3|)) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+(|has| |#1| (-346))
+(|has| |#1| (-346))
+(|has| |#1| (-346))
+((((-796)) . T))
+(((|#1|) . T))
+(-3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842)))
+(|has| |#1| (-346))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+((((-525)) . T))
+((((-525)) . T))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842)))
+((((-796)) . T))
+((((-796)) . T))
+(-12 (|has| |#2| (-213)) (|has| |#2| (-975)))
+((((-1089) #0=(-803 |#1|)) |has| #0# (-486 (-1089) #0#)) ((#0# #0#) |has| #0# (-288 #0#)))
+(((|#1|) . T))
+((((-525) |#4|) . T))
+((((-525) |#3|) . T))
+(((|#1|) . T) (((-525)) |has| |#1| (-587 (-525))))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+((((-1157 |#1| |#2| |#3| |#4|)) . T))
+((((-385 (-525))) . T) (((-525)) . T))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
(((|#1| |#1|) . T))
(((|#1|) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1|) . T))
-(((|#1|) . T))
-((($) . T) (((-523)) . T) (((-383 (-523))) . T))
-((((-523)) . T))
-((((-523)) . T))
-((($) . T) (((-523)) . T) (((-383 (-523))) . T))
-(((|#1| |#1|) . T) (($ $) . T) ((#0=(-383 (-523)) #0#) . T))
-(((|#1|) . T))
-(((|#1|) . T))
-(((|#1|) . T))
-(((#0=(-523) #0#) . T) ((#1=(-383 (-523)) #1#) . T) (($ $) . T))
-(((|#1|) . T) (((-523)) |has| |#1| (-964 (-523))) (((-383 (-523))) |has| |#1| (-964 (-383 (-523)))))
-(((|#1|) . T) (($) . T) (((-383 (-523))) . T))
-(((|#1|) |has| |#1| (-515)))
-((((-523) |#4|) . T))
-((((-523) |#3|) . T))
-((((-794)) . T))
-((((-523)) . T) (((-383 (-523))) . T) (($) . T))
-((((-794)) . T))
-((((-523) |#1|) . T))
-(((|#1|) . T))
-((($ $) . T) ((#0=(-796 |#1|) $) . T) ((#0# |#2|) . T))
-((($) . T))
-((($ $) . T) ((#0=(-1087) $) . T) ((#0# |#1|) . T))
-(((|#2|) |has| |#2| (-158)))
-((($) -3255 (|has| |#2| (-339)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))) ((|#2|) |has| |#2| (-158)) (((-383 (-523))) |has| |#2| (-37 (-383 (-523)))))
-(((|#2| |#2|) -3255 (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-973))) (($ $) |has| |#2| (-158)))
-((((-133)) . T))
-(((|#1|) . T))
-(-12 (|has| |#1| (-344)) (|has| |#2| (-344)))
-((((-794)) . T))
-(((|#2|) -3255 (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-973))) (($) |has| |#2| (-158)))
-(((|#1|) . T))
-((((-794)) . T))
-(|has| |#1| (-1016))
-(|has| $ (-136))
-((((-523) |#1|) . T))
-((($) -3255 (|has| |#1| (-284)) (|has| |#1| (-339)) (|has| |#1| (-325)) (|has| |#1| (-515))) (((-383 (-523))) -3255 (|has| |#1| (-339)) (|has| |#1| (-325))) ((|#1|) . T))
-((((-1087)) -12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087)))))
-(|has| |#1| (-339))
-(-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))
-(|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))
-(|has| |#1| (-339))
-(|has| |#1| (-15 * (|#1| (-710) |#1|)))
-(((|#1|) . T))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-((((-794)) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840)))
-(((|#2| (-495 (-796 |#1|))) . T))
-((((-794)) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1|) . T))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-((((-536 |#1|)) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1|) . T))
+(((|#1|) . T))
+((($) . T) (((-525)) . T) (((-385 (-525))) . T))
+((((-525)) . T))
+((((-525)) . T))
+((($) . T) (((-525)) . T) (((-385 (-525))) . T))
+(((|#1| |#1|) . T) (($ $) . T) ((#0=(-385 (-525)) #0#) . T))
+(((|#1|) . T))
+(((|#1|) . T))
+(((|#1|) . T))
+(((#0=(-525) #0#) . T) ((#1=(-385 (-525)) #1#) . T) (($ $) . T))
+(((|#1|) . T) (((-525)) |has| |#1| (-966 (-525))) (((-385 (-525))) |has| |#1| (-966 (-385 (-525)))))
+(((|#1|) . T) (($) . T) (((-385 (-525))) . T))
+(((|#1|) |has| |#1| (-517)))
+((((-525) |#4|) . T))
+((((-525) |#3|) . T))
+((((-796)) . T))
+((((-525)) . T) (((-385 (-525))) . T) (($) . T))
+((((-796)) . T))
+((((-525) |#1|) . T))
+(((|#1|) . T))
+((($ $) . T) ((#0=(-798 |#1|) $) . T) ((#0# |#2|) . T))
+((($) . T))
+((($ $) . T) ((#0=(-1089) $) . T) ((#0# |#1|) . T))
+(((|#2|) |has| |#2| (-160)))
+((($) -3321 (|has| |#2| (-341)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))) ((|#2|) |has| |#2| (-160)) (((-385 (-525))) |has| |#2| (-37 (-385 (-525)))))
+(((|#2| |#2|) -3321 (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-975))) (($ $) |has| |#2| (-160)))
+((((-135)) . T))
+(((|#1|) . T))
+(-12 (|has| |#1| (-346)) (|has| |#2| (-346)))
+((((-796)) . T))
+(((|#2|) -3321 (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-975))) (($) |has| |#2| (-160)))
+(((|#1|) . T))
+((((-796)) . T))
+(|has| |#1| (-1018))
+(|has| $ (-138))
+((((-525) |#1|) . T))
+((($) -3321 (|has| |#1| (-286)) (|has| |#1| (-341)) (|has| |#1| (-327)) (|has| |#1| (-517))) (((-385 (-525))) -3321 (|has| |#1| (-341)) (|has| |#1| (-327))) ((|#1|) . T))
+((((-1089)) -12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089)))))
+(|has| |#1| (-341))
+(-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))
+(|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))
+(|has| |#1| (-341))
+(|has| |#1| (-15 * (|#1| (-712) |#1|)))
+(((|#1|) . T))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+((((-796)) . T))
+((((-525) (-125)) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842)))
+(((|#2| (-497 (-798 |#1|))) . T))
+((((-796)) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1|) . T))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+((((-538 |#1|)) . T))
((($) . T))
(((|#1|) . T) (($) . T))
-((((-523)) |has| |#1| (-585 (-523))) ((|#1|) . T))
+((((-525)) |has| |#1| (-587 (-525))) ((|#1|) . T))
(((|#4|) . T))
(((|#3|) . T))
-((((-801 |#1|)) . T) (($) . T) (((-383 (-523))) . T))
-((((-1087)) -12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973))))
-(((|#1|) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-523) |#2|) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
+((((-803 |#1|)) . T) (($) . T) (((-385 (-525))) . T))
+((((-1089)) -12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975))))
+(((|#1|) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-525) |#2|) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
(((|#1| |#2| |#3| |#4| |#5|) . T))
-(((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))) ((|#1| |#1|) . T) (($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-515))))
-((($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) ((#0=(-383 (-523)) #0#) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) ((#1=(-1085 |#1| |#2| |#3|) #1#) |has| |#1| (-339)) ((|#1| |#1|) . T))
-(((|#1| |#1|) . T) (($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) ((#0=(-383 (-523)) #0#) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))))
-((($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-515))) ((|#1| |#1|) . T) ((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))))
-(((|#2|) |has| |#2| (-973)))
-(|has| |#1| (-1016))
-((((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) . T) (($) -3255 (|has| |#1| (-158)) (|has| |#1| (-515))))
-((($) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (((-1085 |#1| |#2| |#3|)) |has| |#1| (-339)) ((|#1|) . T))
-(((|#1|) . T) (($) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))))
-((($) -3255 (|has| |#1| (-158)) (|has| |#1| (-515))) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(((|#1|) |has| |#1| (-158)) (($) . T))
-(((|#1|) . T))
-(((#0=(-383 (-523)) #0#) |has| |#2| (-37 (-383 (-523)))) ((|#2| |#2|) . T) (($ $) -3255 (|has| |#2| (-158)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
-((((-794)) . T))
-((((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) |has| |#2| (-158)) (($) -3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
+(((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))) ((|#1| |#1|) . T) (($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-517))))
+((($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) ((#0=(-385 (-525)) #0#) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) ((#1=(-1087 |#1| |#2| |#3|) #1#) |has| |#1| (-341)) ((|#1| |#1|) . T))
+(((|#1| |#1|) . T) (($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) ((#0=(-385 (-525)) #0#) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))))
+((($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-517))) ((|#1| |#1|) . T) ((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))))
+(((|#2|) |has| |#2| (-975)))
+(|has| |#1| (-1018))
+((((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) . T) (($) -3321 (|has| |#1| (-160)) (|has| |#1| (-517))))
+((($) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (((-1087 |#1| |#2| |#3|)) |has| |#1| (-341)) ((|#1|) . T))
+(((|#1|) . T) (($) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))))
+((($) -3321 (|has| |#1| (-160)) (|has| |#1| (-517))) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(((|#1|) |has| |#1| (-160)) (($) . T))
+(((|#1|) . T))
+(((#0=(-385 (-525)) #0#) |has| |#2| (-37 (-385 (-525)))) ((|#2| |#2|) . T) (($ $) -3321 (|has| |#2| (-160)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
+((((-796)) . T))
+((((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) |has| |#2| (-160)) (($) -3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
((($ $) . T) ((|#2| $) . T) ((|#2| |#1|) . T))
-((((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) |has| |#1| (-158)) (($) -3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))))
-(((#0=(-1001) |#1|) . T) ((#0# $) . T) (($ $) . T))
-((((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) . T) (($) -3255 (|has| |#2| (-158)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
-((($) . T))
-(((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) (($) . T))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-(((|#2|) |has| |#1| (-339)))
-(((|#1|) . T))
-(((|#2|) |has| |#2| (-1016)) (((-523)) -12 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016))) (((-383 (-523))) -12 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016))))
-((((-523) |#1|) . T))
-((((-794)) . T))
-((((-383 |#2|) |#3|) . T))
-(((|#1| (-383 (-523))) . T))
-((((-383 (-523))) . T) (($) . T))
-((((-383 (-523))) . T) (($) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-134))
+((((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) |has| |#1| (-160)) (($) -3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))))
+(((#0=(-1003) |#1|) . T) ((#0# $) . T) (($ $) . T))
+((((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) . T) (($) -3321 (|has| |#2| (-160)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
+((($) . T))
+(((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) (($) . T))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+(((|#2|) |has| |#1| (-341)))
+(((|#1|) . T))
+(((|#2|) |has| |#2| (-1018)) (((-525)) -12 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018))) (((-385 (-525))) -12 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018))))
+((((-525) |#1|) . T))
+((((-796)) . T))
+((((-385 |#2|) |#3|) . T))
+(((|#1| (-385 (-525))) . T))
+((((-385 (-525))) . T) (($) . T))
+((((-385 (-525))) . T) (($) . T))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
(|has| |#1| (-136))
-((((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) |has| |#2| (-158)) (($) -3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
-((($) -3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((((-383 (-523))) . T) (($) . T))
-((((-383 (-523))) . T) (($) . T))
-((((-383 (-523))) . T) (($) . T))
-(((|#2| |#3| (-796 |#1|)) . T))
-((((-1087)) |has| |#2| (-831 (-1087))))
-(((|#1|) . T))
-(((|#1| (-495 |#2|) |#2|) . T))
-(((|#1| (-710) (-1001)) . T))
-((((-383 (-523))) |has| |#2| (-339)) (($) . T))
-(((|#1| (-495 (-1006 (-1087))) (-1006 (-1087))) . T))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(((|#1|) . T))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-(|has| |#2| (-732))
-(-3255 (|has| |#2| (-732)) (|has| |#2| (-784)))
-(|has| |#1| (-344))
-(|has| |#1| (-344))
-(|has| |#1| (-344))
-(|has| |#2| (-784))
-((((-824 |#1|)) . T) (((-758 |#1|)) . T))
-((((-758 (-1087))) . T))
-(((|#1|) . T))
-(((|#2|) . T))
-(((|#2|) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-589 (-523))) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-499)) . T) (((-823 (-523))) . T) (((-355)) . T) (((-203)) . T))
-(|has| |#1| (-211))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
+(|has| |#1| (-138))
+((((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) |has| |#2| (-160)) (($) -3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
+((($) -3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((((-385 (-525))) . T) (($) . T))
+((((-385 (-525))) . T) (($) . T))
+((((-385 (-525))) . T) (($) . T))
+(((|#2| |#3| (-798 |#1|)) . T))
+((((-1089)) |has| |#2| (-833 (-1089))))
+(((|#1|) . T))
+(((|#1| (-497 |#2|) |#2|) . T))
+(((|#1| (-712) (-1003)) . T))
+((((-385 (-525))) |has| |#2| (-341)) (($) . T))
+(((|#1| (-497 (-1008 (-1089))) (-1008 (-1089))) . T))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(((|#1|) . T))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+(|has| |#2| (-734))
+(-3321 (|has| |#2| (-734)) (|has| |#2| (-786)))
+(|has| |#1| (-346))
+(|has| |#1| (-346))
+(|has| |#1| (-346))
+(|has| |#2| (-786))
+((((-826 |#1|)) . T) (((-760 |#1|)) . T))
+((((-760 (-1089))) . T))
+(((|#1|) . T))
+(((|#2|) . T))
+(((|#2|) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-591 (-525))) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-501)) . T) (((-825 (-525))) . T) (((-357)) . T) (((-205)) . T))
+(|has| |#1| (-213))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
((($ $) . T))
(((|#1| |#1|) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-1161 |#1| |#2| |#3|) $) -12 (|has| (-1161 |#1| |#2| |#3|) (-263 (-1161 |#1| |#2| |#3|) (-1161 |#1| |#2| |#3|))) (|has| |#1| (-339))) (($ $) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-1163 |#1| |#2| |#3|) $) -12 (|has| (-1163 |#1| |#2| |#3|) (-265 (-1163 |#1| |#2| |#3|) (-1163 |#1| |#2| |#3|))) (|has| |#1| (-341))) (($ $) . T))
((($ $) . T))
((($ $) . T))
(((|#1|) . T))
-((((-1052 |#1| |#2|)) |has| (-1052 |#1| |#2|) (-286 (-1052 |#1| |#2|))))
-(((|#4| |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))
-(((|#2|) . T) (((-523)) |has| |#2| (-964 (-523))) (((-383 (-523))) |has| |#2| (-964 (-383 (-523)))))
-(((|#3| |#3|) -12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016))))
-(((|#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))))
+((((-1054 |#1| |#2|)) |has| (-1054 |#1| |#2|) (-288 (-1054 |#1| |#2|))))
+(((|#4| |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))
+(((|#2|) . T) (((-525)) |has| |#2| (-966 (-525))) (((-385 (-525))) |has| |#2| (-966 (-385 (-525)))))
+(((|#3| |#3|) -12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018))))
+(((|#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))))
(((|#1|) . T))
(((|#1| |#2|) . T))
((($) . T))
((($) . T))
(((|#2|) . T))
(((|#3|) . T))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-(((|#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))))
-(((|#2|) . T))
-((((-794)) -3255 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-563 (-794))) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-344)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)) (|has| |#2| (-1016))) (((-1169 |#2|)) . T))
-(((|#1|) |has| |#1| (-158)))
-((((-523)) . T))
-((((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) |has| |#1| (-158)) (($) -3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))))
-((($) -3255 (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((((-523) (-133)) . T))
-((($) -3255 (|has| |#2| (-158)) (|has| |#2| (-784)) (|has| |#2| (-973))) ((|#2|) -3255 (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-973))))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-134)) (|has| |#1| (-136)) (|has| |#1| (-158)) (|has| |#1| (-515)) (|has| |#1| (-973)))
-(((|#1|) . T))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-134)) (|has| |#1| (-136)) (|has| |#1| (-158)) (|has| |#1| (-515)) (|has| |#1| (-973)))
-(((|#2|) |has| |#1| (-339)))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+(((|#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))))
+(((|#2|) . T))
+((((-796)) -3321 (|has| |#2| (-25)) (|has| |#2| (-126)) (|has| |#2| (-565 (-796))) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-346)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)) (|has| |#2| (-1018))) (((-1171 |#2|)) . T))
+(((|#1|) |has| |#1| (-160)))
+((((-525)) . T))
+((((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) |has| |#1| (-160)) (($) -3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))))
+((($) -3321 (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((((-525) (-135)) . T))
+((($) -3321 (|has| |#2| (-160)) (|has| |#2| (-786)) (|has| |#2| (-975))) ((|#2|) -3321 (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-975))))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-136)) (|has| |#1| (-138)) (|has| |#1| (-160)) (|has| |#1| (-517)) (|has| |#1| (-975)))
+(((|#1|) . T))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-136)) (|has| |#1| (-138)) (|has| |#1| (-160)) (|has| |#1| (-517)) (|has| |#1| (-975)))
+(((|#2|) |has| |#1| (-341)))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
(((|#1| |#1|) . T) (($ $) . T))
-((($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) ((|#1|) |has| |#1| (-158)))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1| (-495 #0=(-1087)) #0#) . T))
+((($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) ((|#1|) |has| |#1| (-160)))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1| (-497 #0=(-1089)) #0#) . T))
(((|#1|) . T) (($) . T))
-(|has| |#4| (-158))
-(|has| |#3| (-158))
-(((#0=(-383 (-883 |#1|)) #0#) . T))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-(|has| |#1| (-1016))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-(|has| |#1| (-1016))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-786)) (|has| |#1| (-1016))))
-((((-499)) |has| |#1| (-564 (-499))))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-(((|#1| |#1|) |has| |#1| (-158)))
-((($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-515))) ((|#1| |#1|) . T) ((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1|) . T))
-((((-383 (-883 |#1|))) . T))
-(((|#1|) |has| |#1| (-158)))
-((($) -3255 (|has| |#1| (-158)) (|has| |#1| (-515))) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-((((-794)) . T))
-((((-1155 |#1| |#2| |#3| |#4|)) . T))
-(((|#1|) |has| |#1| (-973)) (((-523)) -12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))))
+(|has| |#4| (-160))
+(|has| |#3| (-160))
+(((#0=(-385 (-885 |#1|)) #0#) . T))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+(|has| |#1| (-1018))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+(|has| |#1| (-1018))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-788)) (|has| |#1| (-1018))))
+((((-501)) |has| |#1| (-566 (-501))))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+(((|#1| |#1|) |has| |#1| (-160)))
+((($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-517))) ((|#1| |#1|) . T) ((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1|) . T))
+((((-385 (-885 |#1|))) . T))
+((((-525) (-125)) . T))
+(((|#1|) |has| |#1| (-160)))
+((((-125)) . T))
+((($) -3321 (|has| |#1| (-160)) (|has| |#1| (-517))) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+((((-796)) . T))
+((((-1157 |#1| |#2| |#3| |#4|)) . T))
+(((|#1|) |has| |#1| (-975)) (((-525)) -12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))))
(((|#1| |#2|) . T))
-(-3255 (|has| |#3| (-158)) (|has| |#3| (-784)) (|has| |#3| (-973)))
-(|has| |#3| (-732))
-(-3255 (|has| |#3| (-732)) (|has| |#3| (-784)))
-(|has| |#3| (-784))
-((((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))) ((|#2|) |has| |#1| (-339)) ((|#1|) |has| |#1| (-158)))
-(((|#1|) |has| |#1| (-158)) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))))
-(((|#2|) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-(((|#1| (-1068 |#1|)) |has| |#1| (-784)))
-((((-523) |#2|) . T))
-(|has| |#1| (-1016))
-(((|#1|) . T))
-(-12 (|has| |#1| (-339)) (|has| |#2| (-1063)))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(|has| |#1| (-1016))
-(((|#2|) . T))
-((((-499)) |has| |#2| (-564 (-499))) (((-823 (-355))) |has| |#2| (-564 (-823 (-355)))) (((-823 (-523))) |has| |#2| (-564 (-823 (-523)))))
-(((|#4|) -3255 (|has| |#4| (-158)) (|has| |#4| (-339))))
-(((|#3|) -3255 (|has| |#3| (-158)) (|has| |#3| (-339))))
-((((-794)) . T))
-(((|#1|) . T))
-(-3255 (|has| |#2| (-427)) (|has| |#2| (-840)))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-840)))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-840)))
-((($ $) . T) ((#0=(-1087) $) |has| |#1| (-211)) ((#0# |#1|) |has| |#1| (-211)) ((#1=(-757 (-1087)) |#1|) . T) ((#1# $) . T))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-840)))
-((((-523) |#2|) . T))
-((((-794)) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((($) -3255 (|has| |#3| (-158)) (|has| |#3| (-784)) (|has| |#3| (-973))) ((|#3|) -3255 (|has| |#3| (-158)) (|has| |#3| (-339)) (|has| |#3| (-973))))
-((((-523) |#1|) . T))
-(|has| (-383 |#2|) (-136))
-(|has| (-383 |#2|) (-134))
-(((|#2|) -12 (|has| |#1| (-339)) (|has| |#2| (-286 |#2|))))
-(|has| |#1| (-37 (-383 (-523))))
-(((|#1|) . T))
-(((|#2|) . T) (($) . T) (((-383 (-523))) . T))
-((((-794)) . T))
-(|has| |#1| (-515))
-(|has| |#1| (-515))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-794)) . T))
-((((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) . T))
-(|has| |#1| (-37 (-383 (-523))))
-((((-364) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#2| (-1063))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-(((|#1|) . T))
-((((-364) (-1070)) . T))
-(|has| |#1| (-515))
+(-3321 (|has| |#3| (-160)) (|has| |#3| (-786)) (|has| |#3| (-975)))
+(|has| |#3| (-734))
+(-3321 (|has| |#3| (-734)) (|has| |#3| (-786)))
+(|has| |#3| (-786))
+((((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))) ((|#2|) |has| |#1| (-341)) ((|#1|) |has| |#1| (-160)))
+(((|#1|) |has| |#1| (-160)) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))))
+(((|#2|) . T))
+((((-525) (-125)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-525) |#2|) . T))
+(((|#1| (-1070 |#1|)) |has| |#1| (-786)))
+(|has| |#1| (-1018))
+(((|#1|) . T))
+(-12 (|has| |#1| (-341)) (|has| |#2| (-1065)))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(|has| |#1| (-1018))
+(((|#2|) . T))
+((((-501)) |has| |#2| (-566 (-501))) (((-825 (-357))) |has| |#2| (-566 (-825 (-357)))) (((-825 (-525))) |has| |#2| (-566 (-825 (-525)))))
+(((|#4|) -3321 (|has| |#4| (-160)) (|has| |#4| (-341))))
+(((|#3|) -3321 (|has| |#3| (-160)) (|has| |#3| (-341))))
+((((-796)) . T))
+(((|#1|) . T))
+(-3321 (|has| |#2| (-429)) (|has| |#2| (-842)))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-842)))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-842)))
+((($ $) . T) ((#0=(-1089) $) |has| |#1| (-213)) ((#0# |#1|) |has| |#1| (-213)) ((#1=(-759 (-1089)) |#1|) . T) ((#1# $) . T))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-842)))
+((((-525) |#2|) . T))
+((((-796)) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((($) -3321 (|has| |#3| (-160)) (|has| |#3| (-786)) (|has| |#3| (-975))) ((|#3|) -3321 (|has| |#3| (-160)) (|has| |#3| (-341)) (|has| |#3| (-975))))
+((((-525) |#1|) . T))
+(|has| (-385 |#2|) (-138))
+(|has| (-385 |#2|) (-136))
+(((|#2|) -12 (|has| |#1| (-341)) (|has| |#2| (-288 |#2|))))
+(|has| |#1| (-37 (-385 (-525))))
+(((|#1|) . T))
+(((|#2|) . T) (($) . T) (((-385 (-525))) . T))
+((((-796)) . T))
+(|has| |#1| (-517))
+(|has| |#1| (-517))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-796)) . T))
+((((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) . T))
+(|has| |#1| (-37 (-385 (-525))))
+((((-366) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) . T))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#2| (-1065))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+(((|#1|) . T))
+((((-366) (-1072)) . T))
+(|has| |#1| (-517))
((((-112 |#1|)) . T))
-((((-523) |#1|) . T))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(((|#2|) . T))
-((((-794)) . T))
-((((-758 |#1|)) . T))
-(((|#2|) |has| |#2| (-158)))
-((((-1087) (-51)) . T))
-(((|#1|) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-515))
-(((|#1|) |has| |#1| (-158)))
-((((-794)) . T))
-((((-499)) |has| |#1| (-564 (-499))))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-(((|#2|) |has| |#2| (-286 |#2|)))
-(((#0=(-523) #0#) . T) ((#1=(-383 (-523)) #1#) . T) (($ $) . T))
-(((|#1|) . T))
-(((|#1| (-1083 |#1|)) . T))
-(|has| $ (-136))
-(((|#2|) . T))
-(((#0=(-523) #0#) . T) ((#1=(-383 (-523)) #1#) . T) (($ $) . T))
-((($) . T) (((-523)) . T) (((-383 (-523))) . T))
-(|has| |#2| (-344))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-((((-523)) . T) (((-383 (-523))) . T) (($) . T))
+((((-125)) . T))
+((((-525) |#1|) . T))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(((|#2|) . T))
+((((-796)) . T))
+((((-760 |#1|)) . T))
+(((|#2|) |has| |#2| (-160)))
+((((-1089) (-51)) . T))
+(((|#1|) . T))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-517))
+(((|#1|) |has| |#1| (-160)))
+((((-796)) . T))
+((((-501)) |has| |#1| (-566 (-501))))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+(((|#2|) |has| |#2| (-288 |#2|)))
+(((#0=(-525) #0#) . T) ((#1=(-385 (-525)) #1#) . T) (($ $) . T))
+(((|#1|) . T))
+(((|#1| (-1085 |#1|)) . T))
+(|has| $ (-138))
+(((|#2|) . T))
+(((#0=(-525) #0#) . T) ((#1=(-385 (-525)) #1#) . T) (($ $) . T))
+((($) . T) (((-525)) . T) (((-385 (-525))) . T))
+(|has| |#2| (-346))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+((((-525)) . T) (((-385 (-525))) . T) (($) . T))
(((|#1| |#2|) . T))
(((|#1| |#2|) . T))
-((((-523)) . T) (((-383 (-523))) . T) (($) . T))
-((((-1085 |#1| |#2| |#3|) $) -12 (|has| (-1085 |#1| |#2| |#3|) (-263 (-1085 |#1| |#2| |#3|) (-1085 |#1| |#2| |#3|))) (|has| |#1| (-339))) (($ $) . T))
-((((-794)) . T))
-((((-794)) . T))
-((($) . T) (((-383 (-523))) -3255 (|has| |#1| (-339)) (|has| |#1| (-325))) ((|#1|) . T))
-((((-499)) |has| |#1| (-564 (-499))))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
+((((-525)) . T) (((-385 (-525))) . T) (($) . T))
+((((-1087 |#1| |#2| |#3|) $) -12 (|has| (-1087 |#1| |#2| |#3|) (-265 (-1087 |#1| |#2| |#3|) (-1087 |#1| |#2| |#3|))) (|has| |#1| (-341))) (($ $) . T))
+((((-796)) . T))
+((((-796)) . T))
+((($) . T) (((-385 (-525))) -3321 (|has| |#1| (-341)) (|has| |#1| (-327))) ((|#1|) . T))
+((((-501)) |has| |#1| (-566 (-501))))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
((($ $) . T))
((($ $) . T))
-((((-794)) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((#0=(-1161 |#1| |#2| |#3|) #0#) -12 (|has| (-1161 |#1| |#2| |#3|) (-286 (-1161 |#1| |#2| |#3|))) (|has| |#1| (-339))) (((-1087) #0#) -12 (|has| (-1161 |#1| |#2| |#3|) (-484 (-1087) (-1161 |#1| |#2| |#3|))) (|has| |#1| (-339))))
-(-12 (|has| |#1| (-1016)) (|has| |#2| (-1016)))
+((((-796)) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((#0=(-1163 |#1| |#2| |#3|) #0#) -12 (|has| (-1163 |#1| |#2| |#3|) (-288 (-1163 |#1| |#2| |#3|))) (|has| |#1| (-341))) (((-1089) #0#) -12 (|has| (-1163 |#1| |#2| |#3|) (-486 (-1089) (-1163 |#1| |#2| |#3|))) (|has| |#1| (-341))))
+(-12 (|has| |#1| (-1018)) (|has| |#2| (-1018)))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-((($) -3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((((-383 (-523))) . T) (((-523)) . T))
-((((-523) (-133)) . T))
-((((-133)) . T))
+((($) -3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((((-385 (-525))) . T) (((-525)) . T))
+((((-525) (-135)) . T))
+((((-135)) . T))
(((|#1|) . T))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-134)) (|has| |#1| (-136)) (|has| |#1| (-158)) (|has| |#1| (-515)) (|has| |#1| (-973)))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-136)) (|has| |#1| (-138)) (|has| |#1| (-160)) (|has| |#1| (-517)) (|has| |#1| (-975)))
((((-108)) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
((((-108)) . T))
(((|#1|) . T))
-((((-499)) |has| |#1| (-564 (-499))) (((-203)) . #0=(|has| |#1| (-949))) (((-355)) . #0#))
-((((-794)) . T))
-(|has| |#1| (-759))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(|has| |#1| (-786))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-515)))
-(|has| |#1| (-515))
-(|has| |#1| (-840))
-(((|#1|) . T))
-(|has| |#1| (-1016))
-((((-794)) . T))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515)))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515)))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-515)))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-(((|#1| (-1169 |#1|) (-1169 |#1|)) . T))
-((((-523) (-133)) . T))
-((($) . T))
-(-3255 (|has| |#4| (-158)) (|has| |#4| (-784)) (|has| |#4| (-973)))
-(-3255 (|has| |#3| (-158)) (|has| |#3| (-784)) (|has| |#3| (-973)))
-((((-794)) . T))
-(|has| |#1| (-1016))
-(((|#1| (-900)) . T))
+((((-501)) |has| |#1| (-566 (-501))) (((-205)) . #0=(|has| |#1| (-951))) (((-357)) . #0#))
+((((-796)) . T))
+(|has| |#1| (-761))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(|has| |#1| (-788))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-517)))
+(|has| |#1| (-517))
+(|has| |#1| (-842))
+(((|#1|) . T))
+(|has| |#1| (-1018))
+((((-796)) . T))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517)))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517)))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-517)))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+(((|#1| (-1171 |#1|) (-1171 |#1|)) . T))
+((((-525) (-135)) . T))
+((($) . T))
+(-3321 (|has| |#4| (-160)) (|has| |#4| (-786)) (|has| |#4| (-975)))
+(-3321 (|has| |#3| (-160)) (|has| |#3| (-786)) (|has| |#3| (-975)))
+((((-796)) . T))
+(|has| |#1| (-1018))
+(((|#1| (-902)) . T))
(((|#1| |#1|) . T))
((($) . T))
-(-3255 (|has| |#2| (-732)) (|has| |#2| (-784)))
-(-3255 (|has| |#2| (-732)) (|has| |#2| (-784)))
-(-12 (|has| |#1| (-448)) (|has| |#2| (-448)))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-(-3255 (-12 (|has| |#1| (-448)) (|has| |#2| (-448))) (-12 (|has| |#1| (-666)) (|has| |#2| (-666))))
+(-3321 (|has| |#2| (-734)) (|has| |#2| (-786)))
+(-3321 (|has| |#2| (-734)) (|has| |#2| (-786)))
+(-12 (|has| |#1| (-450)) (|has| |#2| (-450)))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+(-3321 (-12 (|has| |#1| (-450)) (|has| |#2| (-450))) (-12 (|has| |#1| (-668)) (|has| |#2| (-668))))
(((|#1|) . T))
-(|has| |#2| (-732))
-(-3255 (|has| |#2| (-732)) (|has| |#2| (-784)))
+(|has| |#2| (-734))
+(-3321 (|has| |#2| (-734)) (|has| |#2| (-786)))
(((|#1| |#2|) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(|has| |#2| (-784))
-(-12 (|has| |#1| (-732)) (|has| |#2| (-732)))
-(-12 (|has| |#1| (-732)) (|has| |#2| (-732)))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(|has| |#2| (-786))
+(-12 (|has| |#1| (-734)) (|has| |#2| (-734)))
+(-12 (|has| |#1| (-734)) (|has| |#2| (-734)))
(((|#1| |#2|) . T))
-(((|#2|) |has| |#2| (-158)))
-(((|#1|) |has| |#1| (-158)))
-((((-794)) . T))
-(|has| |#1| (-325))
-(((|#1|) . T))
-(((|#1|) . T))
-(((|#1|) . T))
-((((-383 (-523))) . T) (($) . T))
-((($) . T) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) ((|#1|) . T))
-(|has| |#1| (-767))
-((((-383 (-523))) |has| |#1| (-964 (-383 (-523)))) (((-523)) |has| |#1| (-964 (-523))) ((|#1|) . T))
-(|has| |#1| (-1016))
-(((|#1| $) |has| |#1| (-263 |#1| |#1|)))
-((((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) |has| |#1| (-158)) (($) |has| |#1| (-515)))
-((($) |has| |#1| (-515)))
-(((|#4|) |has| |#4| (-1016)))
-(((|#3|) |has| |#3| (-1016)))
-(|has| |#3| (-344))
-(((|#1|) . T) (((-794)) . T))
-((((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))) (((-1161 |#1| |#2| |#3|)) |has| |#1| (-339)) ((|#1|) |has| |#1| (-158)))
-(((|#1|) |has| |#1| (-158)) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))))
-((((-794)) . T))
-((($) |has| |#1| (-515)) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(((|#2|) . T))
-(((|#1| |#1|) |has| |#1| (-158)))
+(((|#2|) |has| |#2| (-160)))
+(((|#1|) |has| |#1| (-160)))
+((((-796)) . T))
+(|has| |#1| (-327))
+(((|#1|) . T))
+(((|#1|) . T))
+(((|#1|) . T))
+((((-385 (-525))) . T) (($) . T))
+((($) . T) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) ((|#1|) . T))
+(|has| |#1| (-769))
+((((-385 (-525))) |has| |#1| (-966 (-385 (-525)))) (((-525)) |has| |#1| (-966 (-525))) ((|#1|) . T))
+(|has| |#1| (-1018))
+(((|#1| $) |has| |#1| (-265 |#1| |#1|)))
+((((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) |has| |#1| (-160)) (($) |has| |#1| (-517)))
+((($) |has| |#1| (-517)))
+(((|#4|) |has| |#4| (-1018)))
+(((|#3|) |has| |#3| (-1018)))
+(|has| |#3| (-346))
+(((|#1|) . T) (((-796)) . T))
+((((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))) (((-1163 |#1| |#2| |#3|)) |has| |#1| (-341)) ((|#1|) |has| |#1| (-160)))
+(((|#1|) |has| |#1| (-160)) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))))
+((((-796)) . T))
+((($) |has| |#1| (-517)) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(((|#2|) . T))
+(((|#1| |#1|) |has| |#1| (-160)))
(((|#1| |#2|) . T))
-(|has| |#2| (-339))
-(((|#1|) . T))
-(((|#1|) |has| |#1| (-158)))
-((((-383 (-523))) . T) (((-523)) . T))
-((($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-515))) ((|#1| |#1|) . T) ((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))))
-((($) -3255 (|has| |#1| (-158)) (|has| |#1| (-515))) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(((|#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))
-((((-133)) . T))
-(((|#1|) . T))
-((((-133)) . T))
-((($) -3255 (|has| |#2| (-158)) (|has| |#2| (-784)) (|has| |#2| (-973))) ((|#2|) -3255 (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-973))))
-((((-133)) . T))
+(|has| |#2| (-341))
+(((|#1|) . T))
+(((|#1|) |has| |#1| (-160)))
+((((-385 (-525))) . T) (((-525)) . T))
+((($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-517))) ((|#1| |#1|) . T) ((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))))
+((($) -3321 (|has| |#1| (-160)) (|has| |#1| (-517))) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(((|#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))
+((((-135)) . T))
+(((|#1|) . T))
+((((-135)) . T))
+((($) -3321 (|has| |#2| (-160)) (|has| |#2| (-786)) (|has| |#2| (-975))) ((|#2|) -3321 (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-975))))
+((((-135)) . T))
(((|#1| |#2| |#3|) . T))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-134)) (|has| |#1| (-136)) (|has| |#1| (-158)) (|has| |#1| (-515)) (|has| |#1| (-973)))
-(|has| $ (-136))
-(|has| $ (-136))
-(|has| |#1| (-1016))
-((((-794)) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-136)) (|has| |#1| (-158)) (|has| |#1| (-448)) (|has| |#1| (-515)) (|has| |#1| (-973)) (|has| |#1| (-1028)))
-((($ $) |has| |#1| (-263 $ $)) ((|#1| $) |has| |#1| (-263 |#1| |#1|)))
-(((|#1| (-383 (-523))) . T))
-(((|#1|) . T))
-((((-1087)) . T))
-(|has| |#1| (-515))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-(|has| |#1| (-515))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-((((-794)) . T))
-(|has| |#2| (-134))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-136)) (|has| |#1| (-138)) (|has| |#1| (-160)) (|has| |#1| (-517)) (|has| |#1| (-975)))
+(|has| $ (-138))
+(|has| $ (-138))
+(|has| |#1| (-1018))
+((((-796)) . T))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-138)) (|has| |#1| (-160)) (|has| |#1| (-450)) (|has| |#1| (-517)) (|has| |#1| (-975)) (|has| |#1| (-1030)))
+((($ $) |has| |#1| (-265 $ $)) ((|#1| $) |has| |#1| (-265 |#1| |#1|)))
+(((|#1| (-385 (-525))) . T))
+(((|#1|) . T))
+((((-1089)) . T))
+(|has| |#1| (-517))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+(|has| |#1| (-517))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+((((-796)) . T))
(|has| |#2| (-136))
+(|has| |#2| (-138))
(((|#2|) . T) (($) . T))
+(|has| |#1| (-138))
(|has| |#1| (-136))
-(|has| |#1| (-134))
-(|has| |#4| (-784))
-(((|#2| (-218 (-1271 |#1|) (-710)) (-796 |#1|)) . T))
-(|has| |#3| (-784))
-(((|#1| (-495 |#3|) |#3|) . T))
+(|has| |#4| (-786))
+(((|#2| (-220 (-4045 |#1|) (-712)) (-798 |#1|)) . T))
+(|has| |#3| (-786))
+(((|#1| (-497 |#3|) |#3|) . T))
+(|has| |#1| (-138))
(|has| |#1| (-136))
-(|has| |#1| (-134))
-(((#0=(-383 (-523)) #0#) |has| |#2| (-339)) (($ $) . T))
-((((-801 |#1|)) . T))
+(((#0=(-385 (-525)) #0#) |has| |#2| (-341)) (($ $) . T))
+((((-803 |#1|)) . T))
+(|has| |#1| (-138))
+(|has| |#1| (-346))
+(|has| |#1| (-346))
+(|has| |#1| (-346))
(|has| |#1| (-136))
-(|has| |#1| (-344))
-(|has| |#1| (-344))
-(|has| |#1| (-344))
-(|has| |#1| (-134))
-((((-383 (-523))) |has| |#2| (-339)) (($) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(-3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840)))
-(-3255 (|has| |#1| (-325)) (|has| |#1| (-344)))
-((((-1054 |#2| |#1|)) . T) ((|#1|) . T))
-(|has| |#2| (-158))
+((((-385 (-525))) |has| |#2| (-341)) (($) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(-3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842)))
+(-3321 (|has| |#1| (-327)) (|has| |#1| (-346)))
+((((-1056 |#2| |#1|)) . T) ((|#1|) . T))
+(|has| |#2| (-160))
(((|#1| |#2|) . T))
-(-12 (|has| |#2| (-211)) (|has| |#2| (-973)))
-(((|#2|) . T) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-(-3255 (|has| |#3| (-732)) (|has| |#3| (-784)))
-(-3255 (|has| |#3| (-732)) (|has| |#3| (-784)))
-((((-794)) . T))
+(-12 (|has| |#2| (-213)) (|has| |#2| (-975)))
+(((|#2|) . T) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+(-3321 (|has| |#3| (-734)) (|has| |#3| (-786)))
+(-3321 (|has| |#3| (-734)) (|has| |#3| (-786)))
+((((-796)) . T))
(((|#1|) . T))
(((|#2|) . T) (($) . T))
(((|#1|) . T) (($) . T))
-((((-638)) . T))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-(|has| |#1| (-515))
+((((-640)) . T))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+(|has| |#1| (-517))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-((((-1087) (-51)) . T))
-((((-794)) . T))
-((((-499)) . T) (((-823 (-523))) . T) (((-355)) . T) (((-203)) . T))
+((((-1089) (-51)) . T))
+((((-796)) . T))
+((((-501)) . T) (((-825 (-525))) . T) (((-357)) . T) (((-205)) . T))
(((|#1|) . T))
-((((-794)) . T))
-((((-499)) . T) (((-823 (-523))) . T) (((-355)) . T) (((-203)) . T))
-(((|#1| (-523)) . T))
-((((-794)) . T))
-((((-794)) . T))
+((((-796)) . T))
+((((-501)) . T) (((-825 (-525))) . T) (((-357)) . T) (((-205)) . T))
+(((|#1| (-525)) . T))
+((((-796)) . T))
+((((-796)) . T))
(((|#1| |#2|) . T))
(((|#1|) . T))
-(((|#1| (-383 (-523))) . T))
-(((|#3|) . T) (((-562 $)) . T))
+(((|#1| (-385 (-525))) . T))
+(((|#3|) . T) (((-564 $)) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
(((|#1|) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
((($ $) . T) ((|#2| $) . T))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-(((#0=(-1085 |#1| |#2| |#3|) #0#) -12 (|has| (-1085 |#1| |#2| |#3|) (-286 (-1085 |#1| |#2| |#3|))) (|has| |#1| (-339))) (((-1087) #0#) -12 (|has| (-1085 |#1| |#2| |#3|) (-484 (-1087) (-1085 |#1| |#2| |#3|))) (|has| |#1| (-339))))
-((((-523)) . T) (($) . T) (((-383 (-523))) . T))
-((((-794)) . T))
-((((-794)) . T))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+(((#0=(-1087 |#1| |#2| |#3|) #0#) -12 (|has| (-1087 |#1| |#2| |#3|) (-288 (-1087 |#1| |#2| |#3|))) (|has| |#1| (-341))) (((-1089) #0#) -12 (|has| (-1087 |#1| |#2| |#3|) (-486 (-1089) (-1087 |#1| |#2| |#3|))) (|has| |#1| (-341))))
+((((-525)) . T) (($) . T) (((-385 (-525))) . T))
+((((-796)) . T))
+((((-796)) . T))
(((|#1| |#1|) . T))
-(((|#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) |has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))))
-((((-794)) . T))
+(((|#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) |has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))))
+((((-796)) . T))
(((|#1|) . T))
(((|#3| |#3|) . T))
(((|#1|) . T))
((($) . T) ((|#2|) . T))
-((((-1087) (-51)) . T))
+((((-1089) (-51)) . T))
(((|#3|) . T))
-((($ $) . T) ((#0=(-796 |#1|) $) . T) ((#0# |#2|) . T))
-(|has| |#1| (-767))
-(|has| |#1| (-1016))
-(((|#2| |#2|) -3255 (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-973))) (($ $) |has| |#2| (-158)))
-(((|#2|) -3255 (|has| |#2| (-158)) (|has| |#2| (-339))))
-((((-523) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T) ((|#1| |#2|) . T))
-(((|#2|) -3255 (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-973))) (($) |has| |#2| (-158)))
-((((-710)) . T))
-((((-523)) . T))
-(|has| |#1| (-515))
-((((-794)) . T))
-(((|#1| (-383 (-523)) (-1001)) . T))
-(|has| |#1| (-134))
-(((|#1|) . T))
-(|has| |#1| (-515))
-((((-523)) . T))
+((($ $) . T) ((#0=(-798 |#1|) $) . T) ((#0# |#2|) . T))
+(|has| |#1| (-769))
+(|has| |#1| (-1018))
+(((|#2| |#2|) -3321 (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-975))) (($ $) |has| |#2| (-160)))
+(((|#2|) -3321 (|has| |#2| (-160)) (|has| |#2| (-341))))
+((((-525) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T) ((|#1| |#2|) . T))
+(((|#2|) -3321 (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-975))) (($) |has| |#2| (-160)))
+((((-712)) . T))
+((((-525)) . T))
+(|has| |#1| (-517))
+((((-796)) . T))
+(((|#1| (-385 (-525)) (-1003)) . T))
+(|has| |#1| (-136))
+(((|#1|) . T))
+(|has| |#1| (-517))
+((((-525)) . T))
((((-112 |#1|)) . T))
(((|#1|) . T))
-(|has| |#1| (-136))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-515)))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515)))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515)))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-515)))
-((((-823 (-523))) . T) (((-823 (-355))) . T) (((-499)) . T) (((-1087)) . T))
-((((-794)) . T))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-((($) . T))
-((((-794)) . T))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840)))
-(((|#2|) |has| |#2| (-158)))
-((($) -3255 (|has| |#2| (-339)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))) ((|#2|) |has| |#2| (-158)) (((-383 (-523))) |has| |#2| (-37 (-383 (-523)))))
-((((-801 |#1|)) . T))
-(-3255 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-344)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)) (|has| |#2| (-1016)))
-(-12 (|has| |#3| (-211)) (|has| |#3| (-973)))
-(|has| |#2| (-1063))
-(((#0=(-51)) . T) (((-2 (|:| -2402 (-1087)) (|:| -2746 #0#))) . T))
+(|has| |#1| (-138))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-517)))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517)))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517)))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-517)))
+((((-825 (-525))) . T) (((-825 (-357))) . T) (((-501)) . T) (((-1089)) . T))
+((((-796)) . T))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+((($) . T))
+((((-796)) . T))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842)))
+(((|#2|) |has| |#2| (-160)))
+((($) -3321 (|has| |#2| (-341)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))) ((|#2|) |has| |#2| (-160)) (((-385 (-525))) |has| |#2| (-37 (-385 (-525)))))
+((((-803 |#1|)) . T))
+(-3321 (|has| |#2| (-25)) (|has| |#2| (-126)) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-346)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)) (|has| |#2| (-1018)))
+(-12 (|has| |#3| (-213)) (|has| |#3| (-975)))
+(|has| |#2| (-1065))
+(((#0=(-51)) . T) (((-2 (|:| -2019 (-1089)) (|:| -1221 #0#))) . T))
(((|#1| |#2|) . T))
-(-3255 (|has| |#3| (-158)) (|has| |#3| (-784)) (|has| |#3| (-973)))
-(((|#1| (-523) (-1001)) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1| (-383 (-523)) (-1001)) . T))
-((($) -3255 (|has| |#1| (-284)) (|has| |#1| (-339)) (|has| |#1| (-325)) (|has| |#1| (-515))) (((-383 (-523))) -3255 (|has| |#1| (-339)) (|has| |#1| (-325))) ((|#1|) . T))
-((((-523) |#2|) . T))
+(-3321 (|has| |#3| (-160)) (|has| |#3| (-786)) (|has| |#3| (-975)))
+(((|#1| (-525) (-1003)) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1| (-385 (-525)) (-1003)) . T))
+((($) -3321 (|has| |#1| (-286)) (|has| |#1| (-341)) (|has| |#1| (-327)) (|has| |#1| (-517))) (((-385 (-525))) -3321 (|has| |#1| (-341)) (|has| |#1| (-327))) ((|#1|) . T))
+((((-525) |#2|) . T))
(((|#1| |#2|) . T))
(((|#1| |#2|) . T))
-(|has| |#2| (-344))
-(-12 (|has| |#1| (-344)) (|has| |#2| (-344)))
-((((-794)) . T))
-((((-1087) |#1|) |has| |#1| (-484 (-1087) |#1|)) ((|#1| |#1|) |has| |#1| (-286 |#1|)))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))
-(((|#1|) . T))
-((((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) |has| |#1| (-158)) (($) |has| |#1| (-515)))
-((((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))) (((-1085 |#1| |#2| |#3|)) |has| |#1| (-339)) ((|#1|) |has| |#1| (-158)))
-(((|#1|) |has| |#1| (-158)) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))))
-((($) |has| |#1| (-515)) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((((-794)) . T))
-(|has| |#1| (-325))
-(((|#1|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((#0=(-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) #0#) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))))
-(|has| |#1| (-515))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-794)) . T))
+(|has| |#2| (-346))
+(-12 (|has| |#1| (-346)) (|has| |#2| (-346)))
+((((-796)) . T))
+((((-1089) |#1|) |has| |#1| (-486 (-1089) |#1|)) ((|#1| |#1|) |has| |#1| (-288 |#1|)))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))
+(((|#1|) . T))
+((((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) |has| |#1| (-160)) (($) |has| |#1| (-517)))
+((((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))) (((-1087 |#1| |#2| |#3|)) |has| |#1| (-341)) ((|#1|) |has| |#1| (-160)))
+(((|#1|) |has| |#1| (-160)) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))))
+((($) |has| |#1| (-517)) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((((-796)) . T))
+(|has| |#1| (-327))
+(((|#1|) . T))
+(((|#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((#0=(-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) #0#) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))))
+(|has| |#1| (-517))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-796)) . T))
(((|#1| |#2|) . T))
-(-3255 (|has| |#2| (-427)) (|has| |#2| (-840)))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-840)))
-((((-383 (-523))) . T) (((-523)) . T))
-((((-523)) . T))
-((((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) |has| |#2| (-158)) (($) -3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
-((($) . T))
-((((-794)) . T))
-(((|#1|) . T))
-((((-801 |#1|)) . T) (($) . T) (((-383 (-523))) . T))
-((((-794)) . T))
-(((|#3| |#3|) -3255 (|has| |#3| (-158)) (|has| |#3| (-339)) (|has| |#3| (-973))) (($ $) |has| |#3| (-158)))
-(|has| |#1| (-949))
-((((-794)) . T))
-(((|#3|) -3255 (|has| |#3| (-158)) (|has| |#3| (-339)) (|has| |#3| (-973))) (($) |has| |#3| (-158)))
-((((-523) (-108)) . T))
-(((|#1|) |has| |#1| (-286 |#1|)))
-(|has| |#1| (-344))
-(|has| |#1| (-344))
-(|has| |#1| (-344))
-((((-1087) $) |has| |#1| (-484 (-1087) $)) (($ $) |has| |#1| (-286 $)) ((|#1| |#1|) |has| |#1| (-286 |#1|)) (((-1087) |#1|) |has| |#1| (-484 (-1087) |#1|)))
-((((-1087)) |has| |#1| (-831 (-1087))))
-(-3255 (-12 (|has| |#1| (-211)) (|has| |#1| (-339))) (|has| |#1| (-325)))
-((((-364) (-1034)) . T))
+(-3321 (|has| |#2| (-429)) (|has| |#2| (-842)))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-842)))
+((((-385 (-525))) . T) (((-525)) . T))
+((((-525)) . T))
+((((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) |has| |#2| (-160)) (($) -3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
+((($) . T))
+((((-796)) . T))
+(((|#1|) . T))
+((((-803 |#1|)) . T) (($) . T) (((-385 (-525))) . T))
+((((-796)) . T))
+(((|#3| |#3|) -3321 (|has| |#3| (-160)) (|has| |#3| (-341)) (|has| |#3| (-975))) (($ $) |has| |#3| (-160)))
+(|has| |#1| (-951))
+((((-796)) . T))
+(((|#3|) -3321 (|has| |#3| (-160)) (|has| |#3| (-341)) (|has| |#3| (-975))) (($) |has| |#3| (-160)))
+((((-525) (-108)) . T))
+(((|#1|) |has| |#1| (-288 |#1|)))
+(|has| |#1| (-346))
+(|has| |#1| (-346))
+(|has| |#1| (-346))
+((((-1089) $) |has| |#1| (-486 (-1089) $)) (($ $) |has| |#1| (-288 $)) ((|#1| |#1|) |has| |#1| (-288 |#1|)) (((-1089) |#1|) |has| |#1| (-486 (-1089) |#1|)))
+((((-1089)) |has| |#1| (-833 (-1089))))
+(-3321 (-12 (|has| |#1| (-213)) (|has| |#1| (-341))) (|has| |#1| (-327)))
+((((-366) (-1036)) . T))
(((|#1| |#4|) . T))
(((|#1| |#3|) . T))
-((((-364) |#1|) . T))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-325)))
-(|has| |#1| (-1016))
-((((-794)) . T))
-((((-794)) . T))
-((((-841 |#1|)) . T))
-((((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) |has| |#2| (-158)) (($) -3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
-((((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) |has| |#1| (-158)) (($) -3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))))
+((((-366) |#1|) . T))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-327)))
+(|has| |#1| (-1018))
+((((-796)) . T))
+((((-796)) . T))
+((((-843 |#1|)) . T))
+((((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) |has| |#2| (-160)) (($) -3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
+((((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) |has| |#1| (-160)) (($) -3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))))
(((|#1| |#2|) . T))
((($) . T))
(((|#1| |#1|) . T))
-(((#0=(-801 |#1|)) |has| #0# (-286 #0#)))
+(((#0=(-803 |#1|)) |has| #0# (-288 #0#)))
(((|#1| |#2|) . T))
-(-3255 (|has| |#2| (-732)) (|has| |#2| (-784)))
-(-3255 (|has| |#2| (-732)) (|has| |#2| (-784)))
-(-12 (|has| |#1| (-732)) (|has| |#2| (-732)))
+(-3321 (|has| |#2| (-734)) (|has| |#2| (-786)))
+(-3321 (|has| |#2| (-734)) (|has| |#2| (-786)))
+(-12 (|has| |#1| (-734)) (|has| |#2| (-734)))
(((|#1|) . T))
-(-12 (|has| |#1| (-732)) (|has| |#2| (-732)))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-784)) (|has| |#2| (-973)))
+(-12 (|has| |#1| (-734)) (|has| |#2| (-734)))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-786)) (|has| |#2| (-975)))
(((|#2|) . T) (($) . T))
-(((|#2|) . T) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-(|has| |#1| (-1109))
-(((#0=(-523) #0#) . T) ((#1=(-383 (-523)) #1#) . T) (($ $) . T))
-((((-383 (-523))) . T) (($) . T))
-(((|#4|) |has| |#4| (-973)))
-(((|#3|) |has| |#3| (-973)))
-(((|#1| |#1|) . T) (($ $) . T) ((#0=(-383 (-523)) #0#) . T))
-(((|#1| |#1|) . T) (($ $) . T) ((#0=(-383 (-523)) #0#) . T))
-(((|#1| |#1|) . T) (($ $) . T) ((#0=(-383 (-523)) #0#) . T))
-(|has| |#1| (-339))
-((((-523)) . T) (((-383 (-523))) . T) (($) . T))
-((($ $) . T) ((#0=(-383 (-523)) #0#) -3255 (|has| |#1| (-339)) (|has| |#1| (-325))) ((|#1| |#1|) . T))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
-(((|#1|) . T) (($) . T) (((-383 (-523))) . T))
-((((-794)) . T))
-((((-794)) . T))
-(((|#1|) . T) (($) . T) (((-383 (-523))) . T))
-(((|#1|) . T) (($) . T) (((-383 (-523))) . T))
-(((|#1|) . T))
-(((|#1|) . T))
-((((-523) |#3|) . T))
-((((-794)) . T))
-((((-499)) |has| |#3| (-564 (-499))))
-((((-629 |#3|)) . T) (((-794)) . T))
+(((|#2|) . T) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+(|has| |#1| (-1111))
+(((#0=(-525) #0#) . T) ((#1=(-385 (-525)) #1#) . T) (($ $) . T))
+((((-385 (-525))) . T) (($) . T))
+(((|#4|) |has| |#4| (-975)))
+(((|#3|) |has| |#3| (-975)))
+(((|#1| |#1|) . T) (($ $) . T) ((#0=(-385 (-525)) #0#) . T))
+(((|#1| |#1|) . T) (($ $) . T) ((#0=(-385 (-525)) #0#) . T))
+(((|#1| |#1|) . T) (($ $) . T) ((#0=(-385 (-525)) #0#) . T))
+(|has| |#1| (-341))
+((((-525)) . T) (((-385 (-525))) . T) (($) . T))
+((($ $) . T) ((#0=(-385 (-525)) #0#) -3321 (|has| |#1| (-341)) (|has| |#1| (-327))) ((|#1| |#1|) . T))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
+(((|#1|) . T) (($) . T) (((-385 (-525))) . T))
+((((-796)) . T))
+((((-796)) . T))
+(((|#1|) . T) (($) . T) (((-385 (-525))) . T))
+(((|#1|) . T) (($) . T) (((-385 (-525))) . T))
+(((|#1|) . T))
+(((|#1|) . T))
+((((-525) |#3|) . T))
+((((-796)) . T))
+((((-501)) |has| |#3| (-566 (-501))))
+((((-631 |#3|)) . T) (((-796)) . T))
(((|#1| |#2|) . T))
-(|has| |#1| (-784))
-(|has| |#1| (-784))
-((($) . T) (((-383 (-523))) -3255 (|has| |#1| (-339)) (|has| |#1| (-325))) ((|#1|) . T))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-515)))
-(((#0=(-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) #0#) |has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))))
-((($) . T))
-(|has| |#2| (-786))
-((($) . T))
-(((|#2|) |has| |#2| (-1016)))
-((((-794)) -3255 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-563 (-794))) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-344)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)) (|has| |#2| (-1016))) (((-1169 |#2|)) . T))
(|has| |#1| (-786))
(|has| |#1| (-786))
-((((-1070) (-51)) . T))
+((($) . T) (((-385 (-525))) -3321 (|has| |#1| (-341)) (|has| |#1| (-327))) ((|#1|) . T))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-517)))
+(((#0=(-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) #0#) |has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))))
+((($) . T))
+(|has| |#2| (-788))
+((($) . T))
+(((|#2|) |has| |#2| (-1018)))
+((((-796)) -3321 (|has| |#2| (-25)) (|has| |#2| (-126)) (|has| |#2| (-565 (-796))) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-346)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)) (|has| |#2| (-1018))) (((-1171 |#2|)) . T))
+(|has| |#1| (-788))
+(|has| |#1| (-788))
+((((-1072) (-51)) . T))
+(|has| |#1| (-788))
+((((-796)) . T))
+((((-525)) |has| #0=(-385 |#2|) (-587 (-525))) ((#0#) . T))
+((((-525) (-135)) . T))
+((((-525) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T) ((|#1| |#2|) . T))
+((((-385 (-525))) . T) (($) . T))
+(((|#1|) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-796)) . T))
+((((-843 |#1|)) . T))
+(|has| |#1| (-341))
+(|has| |#1| (-341))
+(|has| |#1| (-341))
+(|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))
+(|has| |#1| (-786))
+(|has| |#1| (-341))
(|has| |#1| (-786))
-((((-794)) . T))
-((((-523)) |has| #0=(-383 |#2|) (-585 (-523))) ((#0#) . T))
-((((-523) (-133)) . T))
-((((-523) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T) ((|#1| |#2|) . T))
-((((-383 (-523))) . T) (($) . T))
-(((|#1|) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-794)) . T))
-((((-841 |#1|)) . T))
-(|has| |#1| (-339))
-(|has| |#1| (-339))
-(|has| |#1| (-339))
-(|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))
-(|has| |#1| (-784))
-(|has| |#1| (-339))
-(|has| |#1| (-784))
(((|#1|) . T) (($) . T))
-(|has| |#1| (-784))
-((((-1087)) |has| |#1| (-831 (-1087))))
-(((|#1| (-1087)) . T))
-(((|#1| (-1169 |#1|) (-1169 |#1|)) . T))
+(|has| |#1| (-786))
+((((-1089)) |has| |#1| (-833 (-1089))))
+(((|#1| (-1089)) . T))
+(((|#1| (-1171 |#1|) (-1171 |#1|)) . T))
(((|#1| |#2|) . T))
((($ $) . T))
-(|has| |#1| (-1016))
-(((|#1| (-1087) (-757 (-1087)) (-495 (-757 (-1087)))) . T))
-((((-383 (-883 |#1|))) . T))
-((((-499)) . T))
-((((-794)) . T))
+(|has| |#1| (-1018))
+(((|#1| (-1089) (-759 (-1089)) (-497 (-759 (-1089)))) . T))
+((((-385 (-885 |#1|))) . T))
+((((-501)) . T))
+((((-796)) . T))
((($) . T))
(((|#2|) . T) (($) . T))
-(((|#1|) |has| |#1| (-158)))
-((((-523) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T) ((|#1| |#2|) . T))
+(((|#1|) |has| |#1| (-160)))
+((((-525) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T) ((|#1| |#2|) . T))
(((|#1|) . T))
-((($) |has| |#1| (-515)) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
+((($) |has| |#1| (-517)) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
(((|#3|) . T))
-(((|#1|) |has| |#1| (-158)))
-((((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) |has| |#1| (-158)) (($) -3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))))
-((($) -3255 (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(((|#1|) . T))
-(((|#1|) . T))
-((((-499)) |has| |#1| (-564 (-499))) (((-823 (-355))) |has| |#1| (-564 (-823 (-355)))) (((-823 (-523))) |has| |#1| (-564 (-823 (-523)))))
-((((-794)) . T))
-(((|#2|) . T) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-(|has| |#2| (-784))
-(-12 (|has| |#2| (-211)) (|has| |#2| (-973)))
-(|has| |#1| (-515))
-(|has| |#1| (-1063))
-((((-1070) |#1|) . T))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-(((#0=(-383 (-523)) #0#) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) ((|#1| |#1|) . T))
-((((-383 (-523))) |has| |#1| (-964 (-523))) (((-523)) |has| |#1| (-964 (-523))) (((-1087)) |has| |#1| (-964 (-1087))) ((|#1|) . T))
-((((-523) |#2|) . T))
-((((-383 (-523))) |has| |#1| (-964 (-383 (-523)))) (((-523)) |has| |#1| (-964 (-523))) ((|#1|) . T))
-((((-523)) |has| |#1| (-817 (-523))) (((-355)) |has| |#1| (-817 (-355))))
-((((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) ((|#1|) . T))
-(((|#1|) . T))
-((((-589 |#4|)) . T) (((-794)) . T))
-((((-499)) |has| |#4| (-564 (-499))))
-((((-499)) |has| |#4| (-564 (-499))))
-((((-794)) . T) (((-589 |#4|)) . T))
-((($) |has| |#1| (-784)))
-(((|#1|) . T))
-((((-589 |#4|)) . T) (((-794)) . T))
-((((-499)) |has| |#4| (-564 (-499))))
-(((|#1|) . T))
-(((|#2|) . T))
-((((-1087)) |has| (-383 |#2|) (-831 (-1087))))
-(((|#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((#0=(-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) #0#) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))))
-((($) . T))
-((($) . T))
-(((|#2|) . T))
-((((-794)) -3255 (|has| |#3| (-25)) (|has| |#3| (-124)) (|has| |#3| (-563 (-794))) (|has| |#3| (-158)) (|has| |#3| (-339)) (|has| |#3| (-344)) (|has| |#3| (-732)) (|has| |#3| (-784)) (|has| |#3| (-973)) (|has| |#3| (-1016))) (((-1169 |#3|)) . T))
-((((-523) |#2|) . T))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-(((|#2| |#2|) -3255 (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-973))) (($ $) |has| |#2| (-158)))
-((((-794)) . T))
-((((-794)) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T) ((|#2|) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-1070) (-1087) (-523) (-203) (-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-((((-794)) . T))
-((((-523) (-108)) . T))
-(((|#1|) . T))
-((((-794)) . T))
+(((|#1|) |has| |#1| (-160)))
+((((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) |has| |#1| (-160)) (($) -3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))))
+((($) -3321 (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(((|#1|) . T))
+(((|#1|) . T))
+((((-501)) |has| |#1| (-566 (-501))) (((-825 (-357))) |has| |#1| (-566 (-825 (-357)))) (((-825 (-525))) |has| |#1| (-566 (-825 (-525)))))
+((((-796)) . T))
+(((|#2|) . T) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+(|has| |#2| (-786))
+(-12 (|has| |#2| (-213)) (|has| |#2| (-975)))
+(|has| |#1| (-517))
+(|has| |#1| (-1065))
+((((-1072) |#1|) . T))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+(((#0=(-385 (-525)) #0#) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) ((|#1| |#1|) . T))
+((((-385 (-525))) |has| |#1| (-966 (-525))) (((-525)) |has| |#1| (-966 (-525))) (((-1089)) |has| |#1| (-966 (-1089))) ((|#1|) . T))
+((((-525) |#2|) . T))
+((((-385 (-525))) |has| |#1| (-966 (-385 (-525)))) (((-525)) |has| |#1| (-966 (-525))) ((|#1|) . T))
+((((-525)) |has| |#1| (-819 (-525))) (((-357)) |has| |#1| (-819 (-357))))
+((((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) ((|#1|) . T))
+(((|#1|) . T))
+((((-591 |#4|)) . T) (((-796)) . T))
+((((-501)) |has| |#4| (-566 (-501))))
+((((-501)) |has| |#4| (-566 (-501))))
+((((-796)) . T) (((-591 |#4|)) . T))
+((($) |has| |#1| (-786)))
+(((|#1|) . T))
+((((-591 |#4|)) . T) (((-796)) . T))
+((((-501)) |has| |#4| (-566 (-501))))
+(((|#1|) . T))
+(((|#2|) . T))
+((((-1089)) |has| (-385 |#2|) (-833 (-1089))))
+(((|#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((#0=(-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) #0#) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))))
+((($) . T))
+((($) . T))
+(((|#2|) . T))
+((((-796)) -3321 (|has| |#3| (-25)) (|has| |#3| (-126)) (|has| |#3| (-565 (-796))) (|has| |#3| (-160)) (|has| |#3| (-341)) (|has| |#3| (-346)) (|has| |#3| (-734)) (|has| |#3| (-786)) (|has| |#3| (-975)) (|has| |#3| (-1018))) (((-1171 |#3|)) . T))
+((((-525) |#2|) . T))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+(((|#2| |#2|) -3321 (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-975))) (($ $) |has| |#2| (-160)))
+((((-796)) . T))
+((((-796)) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T) ((|#2|) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-1072) (-1089) (-525) (-205) (-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+((((-796)) . T))
+((((-525) (-108)) . T))
+(((|#1|) . T))
+((((-796)) . T))
((((-108)) . T))
((((-108)) . T))
-((((-794)) . T))
-((((-794)) . T))
+((((-796)) . T))
+((((-796)) . T))
((((-108)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-((((-794)) . T))
-((((-499)) |has| |#1| (-564 (-499))))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
-(((|#2|) -3255 (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-973))) (($) |has| |#2| (-158)))
-(|has| $ (-136))
-((((-383 |#2|)) . T))
-((((-383 (-523))) |has| #0=(-383 |#2|) (-964 (-383 (-523)))) (((-523)) |has| #0# (-964 (-523))) ((#0#) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+((((-796)) . T))
+((((-501)) |has| |#1| (-566 (-501))))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
+(((|#2|) -3321 (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-975))) (($) |has| |#2| (-160)))
+(|has| $ (-138))
+((((-385 |#2|)) . T))
+((((-385 (-525))) |has| #0=(-385 |#2|) (-966 (-385 (-525)))) (((-525)) |has| #0# (-966 (-525))) ((#0#) . T))
(((|#2| |#2|) . T))
-(((|#4|) |has| |#4| (-158)))
-(|has| |#2| (-134))
+(((|#4|) |has| |#4| (-160)))
(|has| |#2| (-136))
-(((|#3|) |has| |#3| (-158)))
-(|has| |#1| (-136))
-(|has| |#1| (-134))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))
-(|has| |#1| (-136))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))
-(|has| |#1| (-136))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))
+(|has| |#2| (-138))
+(((|#3|) |has| |#3| (-160)))
+(|has| |#1| (-138))
(|has| |#1| (-136))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))
+(|has| |#1| (-138))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))
+(|has| |#1| (-138))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))
+(|has| |#1| (-138))
(((|#1|) . T))
(((|#2|) . T))
-(|has| |#2| (-211))
-((((-1087) (-51)) . T))
-((((-794)) . T))
+(|has| |#2| (-213))
+((((-1089) (-51)) . T))
+((((-796)) . T))
(((|#1| |#1|) . T))
-((((-1087)) |has| |#2| (-831 (-1087))))
-((((-523) (-108)) . T))
-(|has| |#1| (-515))
+((((-1089)) |has| |#2| (-833 (-1089))))
+((((-525) (-108)) . T))
+(|has| |#1| (-517))
(((|#2|) . T))
(((|#2|) . T))
(((|#1|) . T))
(((|#2| |#2|) . T))
(((|#1| |#1|) . T))
(((|#1|) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
(((|#3|) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(((|#1|) . T))
-((((-794)) . T))
-((((-499)) . T) (((-823 (-523))) . T) (((-355)) . T) (((-203)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-927 |#1|)) . T) ((|#1|) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-383 (-523))) . T) (((-383 |#1|)) . T) ((|#1|) . T) (($) . T))
-(((|#1| (-1083 |#1|)) . T))
-((((-523)) . T) (($) . T) (((-383 (-523))) . T))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(((|#1|) . T))
+((((-796)) . T))
+((((-501)) . T) (((-825 (-525))) . T) (((-357)) . T) (((-205)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-929 |#1|)) . T) ((|#1|) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-385 (-525))) . T) (((-385 |#1|)) . T) ((|#1|) . T) (($) . T))
+(((|#1| (-1085 |#1|)) . T))
+((((-525)) . T) (($) . T) (((-385 (-525))) . T))
(((|#3|) . T) (($) . T))
-(|has| |#1| (-786))
+(|has| |#1| (-788))
(((|#2|) . T))
-((((-523)) . T) (($) . T) (((-383 (-523))) . T))
-((((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) . T))
-((((-523) |#2|) . T))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
+((((-525)) . T) (($) . T) (((-385 (-525))) . T))
+((((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) . T))
+((((-525) |#2|) . T))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
(((|#2|) . T))
-((((-523) |#3|) . T))
+((((-525) |#3|) . T))
(((|#2|) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-((((-1161 |#1| |#2| |#3|)) |has| |#1| (-339)))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-((((-794)) . T))
-(|has| |#1| (-1016))
-(((|#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))
-(((|#3|) -12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+((((-1163 |#1| |#2| |#3|)) |has| |#1| (-341)))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+((((-796)) . T))
+(|has| |#1| (-1018))
+(((|#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))
+(((|#3|) -12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018))))
(((|#2|) . T))
(((|#1|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((#0=(-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) #0#) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((#0=(-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) #0#) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))))
(((|#2| |#2|) . T))
-(|has| |#2| (-339))
-(((|#2|) . T) (((-523)) |has| |#2| (-964 (-523))) (((-383 (-523))) |has| |#2| (-964 (-383 (-523)))))
-(((|#2|) . T))
-((((-1070) (-51)) . T))
-(((|#2|) |has| |#2| (-158)))
-((((-523) |#3|) . T))
-((((-523) (-133)) . T))
-((((-133)) . T))
-((((-794)) . T))
+(|has| |#2| (-341))
+(((|#2|) . T) (((-525)) |has| |#2| (-966 (-525))) (((-385 (-525))) |has| |#2| (-966 (-385 (-525)))))
+(((|#2|) . T))
+((((-1072) (-51)) . T))
+(((|#2|) |has| |#2| (-160)))
+((((-525) |#3|) . T))
+((((-525) (-135)) . T))
+((((-135)) . T))
+((((-796)) . T))
((((-108)) . T))
-(|has| |#1| (-136))
+(|has| |#1| (-138))
(((|#1|) . T))
-(|has| |#1| (-134))
+(|has| |#1| (-136))
((($) . T))
-(|has| |#1| (-515))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
+(|has| |#1| (-517))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
((($) . T))
(((|#1|) . T))
-(((|#2|) . T) (((-523)) |has| |#2| (-585 (-523))))
-((((-794)) . T))
-((((-523)) |has| |#1| (-585 (-523))) ((|#1|) . T))
-((((-523)) |has| |#1| (-585 (-523))) ((|#1|) . T))
-((((-523)) |has| |#1| (-585 (-523))) ((|#1|) . T))
-((((-1070) (-51)) . T))
+(((|#2|) . T) (((-525)) |has| |#2| (-587 (-525))))
+((((-796)) . T))
+((((-525)) |has| |#1| (-587 (-525))) ((|#1|) . T))
+((((-525)) |has| |#1| (-587 (-525))) ((|#1|) . T))
+((((-525)) |has| |#1| (-587 (-525))) ((|#1|) . T))
+((((-1072) (-51)) . T))
(((|#1|) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
(((|#1| |#2|) . T))
-((((-523) (-133)) . T))
-(((#0=(-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) #0#) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))
-((($) -3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(|has| |#1| (-786))
-(((|#2| (-710) (-1001)) . T))
+((((-525) (-135)) . T))
+(((#0=(-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) #0#) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))
+((($) -3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(|has| |#1| (-788))
+(((|#2| (-712) (-1003)) . T))
(((|#1| |#2|) . T))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-515)))
-(|has| |#1| (-730))
-(((|#1|) |has| |#1| (-158)))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-517)))
+(|has| |#1| (-732))
+(((|#1|) |has| |#1| (-160)))
(((|#4|) . T))
(((|#4|) . T))
(((|#1| |#2|) . T))
-(-3255 (|has| |#1| (-136)) (-12 (|has| |#1| (-339)) (|has| |#2| (-136))))
-(-3255 (|has| |#1| (-134)) (-12 (|has| |#1| (-339)) (|has| |#2| (-134))))
+(-3321 (|has| |#1| (-138)) (-12 (|has| |#1| (-341)) (|has| |#2| (-138))))
+(-3321 (|has| |#1| (-136)) (-12 (|has| |#1| (-341)) (|has| |#2| (-136))))
(((|#4|) . T))
-(|has| |#1| (-134))
-((((-1070) |#1|) . T))
(|has| |#1| (-136))
+((((-1072) |#1|) . T))
+(|has| |#1| (-138))
(((|#1|) . T))
-((((-523)) . T))
-((((-794)) . T))
+((((-525)) . T))
+((((-796)) . T))
(((|#1| |#2|) . T))
-((((-794)) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
+((((-796)) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
(((|#3|) . T))
-((((-1161 |#1| |#2| |#3|)) |has| |#1| (-339)))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-(((|#1|) . T))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))) (((-888 |#1|)) . T))
-(|has| |#1| (-784))
-(|has| |#1| (-784))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(|has| |#2| (-339))
-(((|#1|) |has| |#1| (-158)))
-(((|#2|) |has| |#2| (-973)))
-((((-1070) |#1|) . T))
-(((|#3| |#3|) -12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016))))
-(((|#2| (-824 |#1|)) . T))
-((($) . T))
-((((-364) (-1070)) . T))
-((($) |has| |#1| (-515)) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((((-794)) -3255 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-563 (-794))) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-344)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)) (|has| |#2| (-1016))) (((-1169 |#2|)) . T))
-(((#0=(-51)) . T) (((-2 (|:| -2402 (-1070)) (|:| -2746 #0#))) . T))
-(((|#1|) . T))
-((((-794)) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))
-((((-133)) . T))
-(|has| |#2| (-134))
+((((-1163 |#1| |#2| |#3|)) |has| |#1| (-341)))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+(((|#1|) . T))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))) (((-890 |#1|)) . T))
+(|has| |#1| (-786))
+(|has| |#1| (-786))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(|has| |#2| (-341))
+(((|#1|) |has| |#1| (-160)))
+(((|#2|) |has| |#2| (-975)))
+((((-1072) |#1|) . T))
+(((|#3| |#3|) -12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018))))
+(((|#2| (-826 |#1|)) . T))
+((($) . T))
+((((-366) (-1072)) . T))
+((($) |has| |#1| (-517)) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((((-796)) -3321 (|has| |#2| (-25)) (|has| |#2| (-126)) (|has| |#2| (-565 (-796))) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-346)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)) (|has| |#2| (-1018))) (((-1171 |#2|)) . T))
+(((#0=(-51)) . T) (((-2 (|:| -2019 (-1072)) (|:| -1221 #0#))) . T))
+(((|#1|) . T))
+((((-796)) . T))
+(((|#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))
+((((-135)) . T))
(|has| |#2| (-136))
-(|has| |#1| (-448))
-(-3255 (|has| |#1| (-448)) (|has| |#1| (-666)) (|has| |#1| (-831 (-1087))) (|has| |#1| (-973)))
-(|has| |#1| (-339))
-((((-794)) . T))
-(|has| |#1| (-37 (-383 (-523))))
-((((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) |has| |#1| (-158)) (($) |has| |#1| (-515)))
-((($) |has| |#1| (-515)))
-(|has| |#1| (-784))
-(|has| |#1| (-784))
-((((-794)) . T))
-((((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))) (((-1161 |#1| |#2| |#3|)) |has| |#1| (-339)) ((|#1|) |has| |#1| (-158)))
-(((|#1|) |has| |#1| (-158)) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))))
-((($) |has| |#1| (-515)) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
+(|has| |#2| (-138))
+(|has| |#1| (-450))
+(-3321 (|has| |#1| (-450)) (|has| |#1| (-668)) (|has| |#1| (-833 (-1089))) (|has| |#1| (-975)))
+(|has| |#1| (-341))
+((((-796)) . T))
+(|has| |#1| (-37 (-385 (-525))))
+((((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) |has| |#1| (-160)) (($) |has| |#1| (-517)))
+((($) |has| |#1| (-517)))
+(|has| |#1| (-786))
+(|has| |#1| (-786))
+((((-796)) . T))
+((((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))) (((-1163 |#1| |#2| |#3|)) |has| |#1| (-341)) ((|#1|) |has| |#1| (-160)))
+(((|#1|) |has| |#1| (-160)) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))))
+((($) |has| |#1| (-517)) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
(((|#1| |#2|) . T))
-((((-1087)) |has| |#1| (-831 (-1087))))
-((((-841 |#1|)) . T) (((-383 (-523))) . T) (($) . T))
-((((-794)) . T))
-((((-794)) . T))
-(|has| |#1| (-1016))
-(((|#2| (-456 (-1271 |#1|) (-710)) (-796 |#1|)) . T))
-((((-383 (-523))) . #0=(|has| |#2| (-339))) (($) . #0#))
-(((|#1| (-495 (-1087)) (-1087)) . T))
-(((|#1|) . T))
-(((|#1|) . T))
-((((-794)) . T))
-((((-794)) . T))
+((((-1089)) |has| |#1| (-833 (-1089))))
+((((-843 |#1|)) . T) (((-385 (-525))) . T) (($) . T))
+((((-796)) . T))
+((((-796)) . T))
+(|has| |#1| (-1018))
+(((|#2| (-458 (-4045 |#1|) (-712)) (-798 |#1|)) . T))
+((((-385 (-525))) . #0=(|has| |#2| (-341))) (($) . #0#))
+(((|#1| (-497 (-1089)) (-1089)) . T))
+(((|#1|) . T))
+(((|#1|) . T))
+((((-796)) . T))
+((((-796)) . T))
(((|#3|) . T))
(((|#3|) . T))
(((|#1|) . T))
(((|#1| |#1|) . T))
(((|#1|) . T))
-(|has| |#2| (-158))
+(|has| |#2| (-160))
(((|#2| |#2|) . T))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1|) . T))
-(|has| |#1| (-134))
(|has| |#1| (-136))
+(|has| |#1| (-138))
(((|#1|) . T))
(((|#2|) . T))
-(((|#1|) . T) (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) . T))
-((((-1085 |#1| |#2| |#3|)) |has| |#1| (-339)))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-1087) (-51)) . T))
+(((|#1|) . T) (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) . T))
+((((-1087 |#1| |#2| |#3|)) |has| |#1| (-341)))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-1089) (-51)) . T))
((($ $) . T))
-(((|#1| (-523)) . T))
-((((-841 |#1|)) . T))
-(((|#1|) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-973))) (($) -3255 (|has| |#1| (-831 (-1087))) (|has| |#1| (-973))))
-(((|#1|) . T) (((-523)) |has| |#1| (-964 (-523))) (((-383 (-523))) |has| |#1| (-964 (-383 (-523)))))
+(((|#1| (-525)) . T))
+((((-843 |#1|)) . T))
+(((|#1|) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-975))) (($) -3321 (|has| |#1| (-833 (-1089))) (|has| |#1| (-975))))
+(((|#1|) . T) (((-525)) |has| |#1| (-966 (-525))) (((-385 (-525))) |has| |#1| (-966 (-385 (-525)))))
+(|has| |#1| (-788))
+(|has| |#1| (-788))
+((((-525) |#2|) . T))
+((((-525)) . T))
+((((-1163 |#1| |#2| |#3|)) -12 (|has| (-1163 |#1| |#2| |#3|) (-288 (-1163 |#1| |#2| |#3|))) (|has| |#1| (-341))))
+(|has| |#1| (-788))
+((((-631 |#2|)) . T) (((-796)) . T))
+(((|#1| |#2|) . T))
+((((-385 (-885 |#1|))) . T))
+(((|#4| |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))
+(((|#4| |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))
+(((|#1|) |has| |#1| (-160)))
+(((|#4| |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))
+(((|#3|) -3321 (|has| |#3| (-160)) (|has| |#3| (-341))))
+(|has| |#2| (-788))
+(|has| |#1| (-788))
+(-3321 (|has| |#2| (-341)) (|has| |#2| (-429)) (|has| |#2| (-842)))
+((($ $) . T) ((#0=(-385 (-525)) #0#) . T))
+((((-525) |#2|) . T))
+(((|#2|) -3321 (|has| |#2| (-160)) (|has| |#2| (-341))))
+(|has| |#1| (-327))
+(((|#3| |#3|) -12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018))))
+((($) . T) (((-385 (-525))) . T))
+((((-525) (-108)) . T))
+(|has| |#1| (-761))
+(|has| |#1| (-761))
+(((|#1|) . T))
+(-3321 (|has| |#1| (-286)) (|has| |#1| (-341)) (|has| |#1| (-327)))
(|has| |#1| (-786))
(|has| |#1| (-786))
-((((-523) |#2|) . T))
-((((-523)) . T))
-((((-1161 |#1| |#2| |#3|)) -12 (|has| (-1161 |#1| |#2| |#3|) (-286 (-1161 |#1| |#2| |#3|))) (|has| |#1| (-339))))
(|has| |#1| (-786))
-((((-629 |#2|)) . T) (((-794)) . T))
-(((|#1| |#2|) . T))
-((((-383 (-883 |#1|))) . T))
-(((|#4| |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))
-(((|#4| |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))
-(((|#1|) |has| |#1| (-158)))
-(((|#4| |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))
-(((|#3|) -3255 (|has| |#3| (-158)) (|has| |#3| (-339))))
-(|has| |#2| (-786))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+(|has| |#1| (-37 (-385 (-525))))
+((((-525)) . T) (($) . T) (((-385 (-525))) . T))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-327)))
+(|has| |#1| (-37 (-385 (-525))))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-1089)) |has| |#1| (-833 (-1089))) (((-1003)) . T))
+(((|#1|) . T))
(|has| |#1| (-786))
-(-3255 (|has| |#2| (-339)) (|has| |#2| (-427)) (|has| |#2| (-840)))
-((($ $) . T) ((#0=(-383 (-523)) #0#) . T))
-((((-523) |#2|) . T))
-(((|#2|) -3255 (|has| |#2| (-158)) (|has| |#2| (-339))))
-(|has| |#1| (-325))
-(((|#3| |#3|) -12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016))))
-((($) . T) (((-383 (-523))) . T))
-((((-523) (-108)) . T))
-(|has| |#1| (-759))
-(|has| |#1| (-759))
-(((|#1|) . T))
-(-3255 (|has| |#1| (-284)) (|has| |#1| (-339)) (|has| |#1| (-325)))
-(|has| |#1| (-784))
-(|has| |#1| (-784))
-(|has| |#1| (-784))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-(|has| |#1| (-37 (-383 (-523))))
-((((-523)) . T) (($) . T) (((-383 (-523))) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-325)))
-(|has| |#1| (-37 (-383 (-523))))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-1087)) |has| |#1| (-831 (-1087))) (((-1001)) . T))
-(((|#1|) . T))
-(|has| |#1| (-784))
-(((#0=(-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) #0#) |has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))))))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(|has| |#1| (-1016))
+(((#0=(-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) #0#) |has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))))))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(|has| |#1| (-1018))
(((|#1|) . T))
(((|#2| |#2|) . T))
(((|#1|) . T))
-(((|#1| |#2| |#3| (-218 |#2| |#3|) (-218 |#1| |#3|)) . T))
+(((|#1| |#2| |#3| (-220 |#2| |#3|) (-220 |#1| |#3|)) . T))
(((|#1|) . T))
(((|#3| |#3|) . T))
(((|#2|) . T))
(((|#1|) . T))
-(((|#1| (-495 |#2|) |#2|) . T))
-((((-794)) . T))
-(((|#1| (-710) (-1001)) . T))
+(((|#1| (-497 |#2|) |#2|) . T))
+((((-796)) . T))
+((((-712)) . T) (((-796)) . T))
+(((|#1| (-712) (-1003)) . T))
(((|#3|) . T))
(((|#1|) . T))
-((((-133)) . T))
-(((|#2|) |has| |#2| (-158)))
-(-3255 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-344)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)) (|has| |#2| (-1016)))
+((((-135)) . T))
+(((|#2|) |has| |#2| (-160)))
+(-3321 (|has| |#2| (-25)) (|has| |#2| (-126)) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-346)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)) (|has| |#2| (-1018)))
(((|#1|) . T))
-(|has| |#1| (-134))
(|has| |#1| (-136))
-(|has| |#3| (-158))
-(((|#4|) |has| |#4| (-339)))
-(((|#3|) |has| |#3| (-339)))
+(|has| |#1| (-138))
+(|has| |#3| (-160))
+(((|#4|) |has| |#4| (-341)))
+(((|#3|) |has| |#3| (-341)))
(((|#1|) . T))
-(((|#2|) |has| |#1| (-339)))
-((((-794)) . T))
+(((|#2|) |has| |#1| (-341)))
+((((-796)) . T))
(((|#2|) . T))
-(((|#1| (-1083 |#1|)) . T))
-((((-1001)) . T) ((|#1|) . T) (((-523)) |has| |#1| (-964 (-523))) (((-383 (-523))) |has| |#1| (-964 (-383 (-523)))))
-((($) . T) ((|#1|) . T) (((-383 (-523))) . T))
+(((|#1| (-1085 |#1|)) . T))
+((((-1003)) . T) ((|#1|) . T) (((-525)) |has| |#1| (-966 (-525))) (((-385 (-525))) |has| |#1| (-966 (-385 (-525)))))
+((($) . T) ((|#1|) . T) (((-385 (-525))) . T))
(((|#2|) . T))
-((((-1085 |#1| |#2| |#3|)) |has| |#1| (-339)))
-((($) |has| |#1| (-784)))
-(|has| |#1| (-840))
-((((-794)) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
+((((-1087 |#1| |#2| |#3|)) |has| |#1| (-341)))
+((($) |has| |#1| (-786)))
+(|has| |#1| (-842))
+((((-796)) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
(((|#1|) . T))
(((|#1| |#2|) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((#0=(-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) #0#) |has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))))
-(-3255 (|has| |#2| (-427)) (|has| |#2| (-840)))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-840)))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((#0=(-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) #0#) |has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))))
+(-3321 (|has| |#2| (-429)) (|has| |#2| (-842)))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-842)))
(((|#1|) . T) (($) . T))
-(((|#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))
+(((|#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))
(((|#1| |#2|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-(((|#3|) -3255 (|has| |#3| (-158)) (|has| |#3| (-339))))
-(|has| |#1| (-786))
-(|has| |#1| (-515))
-((((-536 |#1|)) . T))
+(((|#3|) -3321 (|has| |#3| (-160)) (|has| |#3| (-341))))
+(|has| |#1| (-788))
+(|has| |#1| (-517))
+((((-538 |#1|)) . T))
((($) . T))
(((|#2|) . T))
-(-3255 (-12 (|has| |#1| (-339)) (|has| |#2| (-759))) (-12 (|has| |#1| (-339)) (|has| |#2| (-786))))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-((((-841 |#1|)) . T))
-(((|#1| (-467 |#1| |#3|) (-467 |#1| |#2|)) . T))
+(-3321 (-12 (|has| |#1| (-341)) (|has| |#2| (-761))) (-12 (|has| |#1| (-341)) (|has| |#2| (-788))))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+((((-843 |#1|)) . T))
+(((|#1| (-469 |#1| |#3|) (-469 |#1| |#2|)) . T))
(((|#1| |#4| |#5|) . T))
-(((|#1| (-710)) . T))
-((((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) |has| |#1| (-158)) (($) |has| |#1| (-515)))
-((((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))) (((-1085 |#1| |#2| |#3|)) |has| |#1| (-339)) ((|#1|) |has| |#1| (-158)))
-(((|#1|) |has| |#1| (-158)) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))))
-((($) |has| |#1| (-515)) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((((-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) . T))
-((((-383 |#2|)) . T) (((-383 (-523))) . T) (($) . T))
-((((-614 |#1|)) . T))
+(((|#1| (-712)) . T))
+((((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) |has| |#1| (-160)) (($) |has| |#1| (-517)))
+((((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))) (((-1087 |#1| |#2| |#3|)) |has| |#1| (-341)) ((|#1|) |has| |#1| (-160)))
+(((|#1|) |has| |#1| (-160)) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))))
+((($) |has| |#1| (-517)) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((((-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) . T))
+((((-385 |#2|)) . T) (((-385 (-525))) . T) (($) . T))
+((((-616 |#1|)) . T))
(((|#1| |#2| |#3| |#4|) . T))
-((((-499)) . T))
-((((-794)) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-794)) . T))
-((((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) |has| |#2| (-158)) (($) -3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-(((|#2|) . T))
-(-3255 (|has| |#3| (-25)) (|has| |#3| (-124)) (|has| |#3| (-158)) (|has| |#3| (-339)) (|has| |#3| (-344)) (|has| |#3| (-732)) (|has| |#3| (-784)) (|has| |#3| (-973)) (|has| |#3| (-1016)))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-((((-383 (-523))) |has| |#1| (-964 (-383 (-523)))) (((-523)) |has| |#1| (-964 (-523))) ((|#1|) . T))
-(|has| |#1| (-1109))
-(|has| |#1| (-1109))
-(-3255 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-344)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)) (|has| |#2| (-1016)))
-(|has| |#1| (-1109))
-(|has| |#1| (-1109))
+((((-501)) . T))
+((((-796)) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-796)) . T))
+((((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) |has| |#2| (-160)) (($) -3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+(((|#2|) . T))
+(-3321 (|has| |#3| (-25)) (|has| |#3| (-126)) (|has| |#3| (-160)) (|has| |#3| (-341)) (|has| |#3| (-346)) (|has| |#3| (-734)) (|has| |#3| (-786)) (|has| |#3| (-975)) (|has| |#3| (-1018)))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+((((-385 (-525))) |has| |#1| (-966 (-385 (-525)))) (((-525)) |has| |#1| (-966 (-525))) ((|#1|) . T))
+(|has| |#1| (-1111))
+(|has| |#1| (-1111))
+(-3321 (|has| |#2| (-25)) (|has| |#2| (-126)) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-346)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)) (|has| |#2| (-1018)))
+(|has| |#1| (-1111))
+(|has| |#1| (-1111))
(((|#3| |#3|) . T))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-((($ $) . T) ((#0=(-383 (-523)) #0#) . T) ((#1=(-383 |#1|) #1#) . T) ((|#1| |#1|) . T))
-((((-523)) . T) (($) . T) (((-383 (-523))) . T))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+((($ $) . T) ((#0=(-385 (-525)) #0#) . T) ((#1=(-385 |#1|) #1#) . T) ((|#1| |#1|) . T))
+((((-525)) . T) (($) . T) (((-385 (-525))) . T))
(((|#3|) . T))
-((($) . T) (((-383 (-523))) . T) (((-383 |#1|)) . T) ((|#1|) . T))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-((((-1070) (-51)) . T))
-(|has| |#1| (-1016))
-(-3255 (|has| |#2| (-759)) (|has| |#2| (-786)))
-(((|#1|) . T))
-((($) -3255 (|has| |#1| (-339)) (|has| |#1| (-325))) (((-383 (-523))) -3255 (|has| |#1| (-339)) (|has| |#1| (-325))) ((|#1|) . T))
-(((|#1|) |has| |#1| (-158)) (($) . T))
-((($) . T))
-((((-1085 |#1| |#2| |#3|)) -12 (|has| (-1085 |#1| |#2| |#3|) (-286 (-1085 |#1| |#2| |#3|))) (|has| |#1| (-339))))
-((((-794)) . T))
-(-3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840)))
-((($) . T))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-794)) . T))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-840)))
-(|has| |#2| (-840))
-(|has| |#1| (-339))
-(((|#2|) |has| |#2| (-1016)))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
+((($) . T) (((-385 (-525))) . T) (((-385 |#1|)) . T) ((|#1|) . T))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+((((-1072) (-51)) . T))
+(|has| |#1| (-1018))
+(-3321 (|has| |#2| (-761)) (|has| |#2| (-788)))
+(((|#1|) . T))
+((($) -3321 (|has| |#1| (-341)) (|has| |#1| (-327))) (((-385 (-525))) -3321 (|has| |#1| (-341)) (|has| |#1| (-327))) ((|#1|) . T))
+(((|#1|) |has| |#1| (-160)) (($) . T))
+((($) . T))
+((((-1087 |#1| |#2| |#3|)) -12 (|has| (-1087 |#1| |#2| |#3|) (-288 (-1087 |#1| |#2| |#3|))) (|has| |#1| (-341))))
+((((-796)) . T))
+(-3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842)))
+((($) . T))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-796)) . T))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-842)))
+(|has| |#2| (-842))
+(|has| |#1| (-341))
+(((|#2|) |has| |#2| (-1018)))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
((($) . T) ((|#2|) . T))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-840)))
-(|has| |#1| (-840))
-(|has| |#1| (-840))
-((((-499)) . T) (((-383 (-1083 (-523)))) . T) (((-203)) . T) (((-355)) . T))
-((((-355)) . T) (((-203)) . T) (((-794)) . T))
-(|has| |#1| (-840))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-(((|#1|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-842)))
+(|has| |#1| (-842))
+(|has| |#1| (-842))
+((((-501)) . T) (((-385 (-1085 (-525)))) . T) (((-205)) . T) (((-357)) . T))
+((((-357)) . T) (((-205)) . T) (((-796)) . T))
+(|has| |#1| (-842))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+(((|#1|) . T))
+(((|#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))
((($ $) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
((($ $) . T))
-((((-523) (-108)) . T))
+((((-525) (-108)) . T))
((($) . T))
(((|#1|) . T))
-((((-523)) . T))
+((((-525)) . T))
((((-108)) . T))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515)))
-(|has| |#1| (-37 (-383 (-523))))
-(((|#1| (-523)) . T))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517)))
+(|has| |#1| (-37 (-385 (-525))))
+(((|#1| (-525)) . T))
((($) . T))
-(((|#2|) . T) (((-523)) |has| |#2| (-585 (-523))))
-((((-523)) |has| |#1| (-585 (-523))) ((|#1|) . T))
+(((|#2|) . T) (((-525)) |has| |#2| (-587 (-525))))
+((((-525)) |has| |#1| (-587 (-525))) ((|#1|) . T))
(((|#1|) . T))
-((((-523)) . T))
+((((-525)) . T))
(((|#1| |#2|) . T))
-((((-1087)) |has| |#1| (-973)))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
+((((-1089)) |has| |#1| (-975)))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
(((|#1|) . T))
-((((-794)) . T))
-(((|#1| (-523)) . T))
-(((|#1| (-1161 |#1| |#2| |#3|)) . T))
+((((-796)) . T))
+(((|#1| (-525)) . T))
+(((|#1| (-1163 |#1| |#2| |#3|)) . T))
(((|#1|) . T))
-(((|#1| (-383 (-523))) . T))
-(((|#1| (-1133 |#1| |#2| |#3|)) . T))
-(((|#1| (-710)) . T))
+(((|#1| (-385 (-525))) . T))
+(((|#1| (-1135 |#1| |#2| |#3|)) . T))
+(((|#1| (-712)) . T))
(((|#1|) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-794)) . T))
-(|has| |#1| (-1016))
-((((-1070) |#1|) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-796)) . T))
+(|has| |#1| (-1018))
+((((-1072) |#1|) . T))
((($) . T))
+(|has| |#2| (-138))
(|has| |#2| (-136))
-(|has| |#2| (-134))
-(((|#1| (-495 (-757 (-1087))) (-757 (-1087))) . T))
-((((-794)) . T))
-((((-1155 |#1| |#2| |#3| |#4|)) . T))
-((((-1155 |#1| |#2| |#3| |#4|)) . T))
-(((|#1|) |has| |#1| (-973)))
-((((-523) (-108)) . T))
-((((-794)) |has| |#1| (-1016)))
-(|has| |#2| (-158))
-((((-523)) . T))
-(|has| |#2| (-784))
-(((|#1|) . T))
-((((-523)) . T))
-((((-794)) . T))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-325)))
-((((-794)) . T))
-(|has| |#1| (-136))
+(((|#1| (-497 (-759 (-1089))) (-759 (-1089))) . T))
+((((-796)) . T))
+((((-1157 |#1| |#2| |#3| |#4|)) . T))
+((((-1157 |#1| |#2| |#3| |#4|)) . T))
+(((|#1|) |has| |#1| (-975)))
+((((-525) (-108)) . T))
+((((-796)) |has| |#1| (-1018)))
+(|has| |#2| (-160))
+((((-525)) . T))
+(|has| |#2| (-786))
+(((|#1|) . T))
+((((-525)) . T))
+((((-796)) . T))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-327)))
+(|has| |#1| (-138))
+((((-796)) . T))
(((|#3|) . T))
-(-3255 (|has| |#3| (-158)) (|has| |#3| (-784)) (|has| |#3| (-973)))
-((((-794)) . T))
-((((-1154 |#2| |#3| |#4|)) . T) (((-1155 |#1| |#2| |#3| |#4|)) . T))
-((((-794)) . T))
-((((-47)) -12 (|has| |#1| (-515)) (|has| |#1| (-964 (-523)))) (((-562 $)) . T) ((|#1|) . T) (((-523)) |has| |#1| (-964 (-523))) (((-383 (-523))) -3255 (-12 (|has| |#1| (-515)) (|has| |#1| (-964 (-523)))) (|has| |#1| (-964 (-383 (-523))))) (((-383 (-883 |#1|))) |has| |#1| (-515)) (((-883 |#1|)) |has| |#1| (-973)) (((-1087)) . T))
+(-3321 (|has| |#3| (-160)) (|has| |#3| (-786)) (|has| |#3| (-975)))
+((((-796)) . T))
+((((-1156 |#2| |#3| |#4|)) . T) (((-1157 |#1| |#2| |#3| |#4|)) . T))
+((((-796)) . T))
+((((-47)) -12 (|has| |#1| (-517)) (|has| |#1| (-966 (-525)))) (((-564 $)) . T) ((|#1|) . T) (((-525)) |has| |#1| (-966 (-525))) (((-385 (-525))) -3321 (-12 (|has| |#1| (-517)) (|has| |#1| (-966 (-525)))) (|has| |#1| (-966 (-385 (-525))))) (((-385 (-885 |#1|))) |has| |#1| (-517)) (((-885 |#1|)) |has| |#1| (-975)) (((-1089)) . T))
(((|#1|) . T) (($) . T))
-(((|#1| (-710)) . T))
-((($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) ((|#1|) |has| |#1| (-158)))
-(((|#1|) |has| |#1| (-286 |#1|)))
-((((-1155 |#1| |#2| |#3| |#4|)) . T))
-((((-523)) |has| |#1| (-817 (-523))) (((-355)) |has| |#1| (-817 (-355))))
-(((|#1|) . T))
-(|has| |#1| (-515))
-(((|#1|) . T))
-((((-794)) . T))
-(((|#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))))
-(((|#1|) |has| |#1| (-158)))
-((($) |has| |#1| (-515)) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))
-(((|#1|) . T))
-(((|#3|) |has| |#3| (-1016)))
-(((|#2|) -3255 (|has| |#2| (-158)) (|has| |#2| (-339))))
-((((-1154 |#2| |#3| |#4|)) . T))
+(((|#1| (-712)) . T))
+((($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) ((|#1|) |has| |#1| (-160)))
+(((|#1|) |has| |#1| (-288 |#1|)))
+((((-1157 |#1| |#2| |#3| |#4|)) . T))
+((((-525)) |has| |#1| (-819 (-525))) (((-357)) |has| |#1| (-819 (-357))))
+(((|#1|) . T))
+(|has| |#1| (-517))
+(((|#1|) . T))
+((((-796)) . T))
+(((|#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))))
+(((|#1|) |has| |#1| (-160)))
+((($) |has| |#1| (-517)) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))
+(((|#1|) . T))
+(((|#3|) |has| |#3| (-1018)))
+(((|#2|) -3321 (|has| |#2| (-160)) (|has| |#2| (-341))))
+((((-1156 |#2| |#3| |#4|)) . T))
((((-108)) . T))
-(|has| |#1| (-759))
-(|has| |#1| (-759))
-(((|#1| (-523) (-1001)) . T))
-((($) |has| |#1| (-286 $)) ((|#1|) |has| |#1| (-286 |#1|)))
-(|has| |#1| (-784))
-(|has| |#1| (-784))
-(((|#1| (-523) (-1001)) . T))
-(-3255 (|has| |#1| (-831 (-1087))) (|has| |#1| (-973)))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-(((|#1| (-383 (-523)) (-1001)) . T))
-(((|#1| (-710) (-1001)) . T))
+(|has| |#1| (-761))
+(|has| |#1| (-761))
+(((|#1| (-525) (-1003)) . T))
+((($) |has| |#1| (-288 $)) ((|#1|) |has| |#1| (-288 |#1|)))
(|has| |#1| (-786))
-(((#0=(-841 |#1|) #0#) . T) (($ $) . T) ((#1=(-383 (-523)) #1#) . T))
-(|has| |#2| (-134))
+(|has| |#1| (-786))
+(((|#1| (-525) (-1003)) . T))
+(-3321 (|has| |#1| (-833 (-1089))) (|has| |#1| (-975)))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+(((|#1| (-385 (-525)) (-1003)) . T))
+(((|#1| (-712) (-1003)) . T))
+(|has| |#1| (-788))
+(((#0=(-843 |#1|) #0#) . T) (($ $) . T) ((#1=(-385 (-525)) #1#) . T))
(|has| |#2| (-136))
+(|has| |#2| (-138))
(((|#2|) . T))
-(|has| |#1| (-134))
(|has| |#1| (-136))
-(|has| |#1| (-1016))
-((((-841 |#1|)) . T) (($) . T) (((-383 (-523))) . T))
-(|has| |#1| (-1016))
-(((|#1|) . T))
-(|has| |#1| (-1016))
-((((-523)) -12 (|has| |#1| (-339)) (|has| |#2| (-585 (-523)))) ((|#2|) |has| |#1| (-339)))
-(-3255 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-344)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)) (|has| |#2| (-1016)))
-(((|#2|) |has| |#2| (-158)))
-(((|#1|) |has| |#1| (-158)))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) . T))
-((((-794)) . T))
-(|has| |#3| (-784))
-((((-794)) . T))
-((((-1154 |#2| |#3| |#4|) (-295 |#2| |#3| |#4|)) . T))
-((((-794)) . T))
-(((|#1| |#1|) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-973))))
-(((|#1|) . T))
-((((-523)) . T))
-((((-523)) . T))
-(((|#1|) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-973))))
-(((|#2|) |has| |#2| (-339)))
-((($) . T) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-339)))
+(|has| |#1| (-138))
+(|has| |#1| (-1018))
+((((-843 |#1|)) . T) (($) . T) (((-385 (-525))) . T))
+(|has| |#1| (-1018))
+(((|#1|) . T))
+(|has| |#1| (-1018))
+((((-525)) -12 (|has| |#1| (-341)) (|has| |#2| (-587 (-525)))) ((|#2|) |has| |#1| (-341)))
+(-3321 (|has| |#2| (-25)) (|has| |#2| (-126)) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-346)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)) (|has| |#2| (-1018)))
+(((|#2|) |has| |#2| (-160)))
+(((|#1|) |has| |#1| (-160)))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) . T))
+((((-796)) . T))
+(|has| |#3| (-786))
+((((-796)) . T))
+((((-1156 |#2| |#3| |#4|) (-297 |#2| |#3| |#4|)) . T))
+((((-796)) . T))
+(((|#1| |#1|) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-975))))
+(((|#1|) . T))
+((((-525)) . T))
+((((-525)) . T))
+(((|#1|) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-975))))
+(((|#2|) |has| |#2| (-341)))
+((($) . T) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-341)))
+(|has| |#1| (-788))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+(((|#2|) . T))
+((((-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) |has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-842)))
+(((|#2|) . T) (((-525)) |has| |#2| (-587 (-525))))
+((((-796)) . T))
+((((-796)) . T))
+((((-501)) . T) (((-525)) . T) (((-825 (-525))) . T) (((-357)) . T) (((-205)) . T))
+((((-796)) . T))
+(|has| |#1| (-37 (-385 (-525))))
+((((-525)) . T) (($) . T) (((-385 (-525))) . T))
+((((-525)) . T) (($) . T) (((-385 (-525))) . T))
+(|has| |#1| (-213))
+(((|#1|) . T))
+(((|#1| (-525)) . T))
(|has| |#1| (-786))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-(((|#2|) . T))
-((((-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) |has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-840)))
-(((|#2|) . T) (((-523)) |has| |#2| (-585 (-523))))
-((((-794)) . T))
-((((-794)) . T))
-((((-499)) . T) (((-523)) . T) (((-823 (-523))) . T) (((-355)) . T) (((-203)) . T))
-((((-794)) . T))
-(|has| |#1| (-37 (-383 (-523))))
-((((-523)) . T) (($) . T) (((-383 (-523))) . T))
-((((-523)) . T) (($) . T) (((-383 (-523))) . T))
-(|has| |#1| (-211))
-(((|#1|) . T))
-(((|#1| (-523)) . T))
-(|has| |#1| (-784))
-(((|#1| (-1085 |#1| |#2| |#3|)) . T))
+(((|#1| (-1087 |#1| |#2| |#3|)) . T))
(((|#1| |#1|) . T))
(((|#1| |#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-(((|#1| (-383 (-523))) . T))
-(((|#1| (-1078 |#1| |#2| |#3|)) . T))
-(((|#1| (-710)) . T))
+(((|#1| (-385 (-525))) . T))
+(((|#1| (-1080 |#1| |#2| |#3|)) . T))
+(((|#1| (-712)) . T))
(((|#1|) . T))
-(((|#1| |#1| |#2| (-218 |#1| |#2|) (-218 |#1| |#2|)) . T))
+(((|#1| |#1| |#2| (-220 |#1| |#2|) (-220 |#1| |#2|)) . T))
(((|#1|) . T))
(((|#1|) . T))
-(|has| |#1| (-134))
(|has| |#1| (-136))
+(|has| |#1| (-138))
+(|has| |#1| (-138))
(|has| |#1| (-136))
-(|has| |#1| (-134))
(((|#1| |#2|) . T))
-((((-133)) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(((|#1|) . T))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-(((|#1| |#1|) . T) ((#0=(-383 (-523)) #0#) . T) (($ $) . T))
-((((-794)) . T))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-((($) . T) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
-(|has| |#1| (-339))
-(|has| |#1| (-339))
-(|has| (-383 |#2|) (-211))
-(|has| |#1| (-840))
-(((|#2|) |has| |#2| (-973)))
-(((|#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))))
-(|has| |#1| (-339))
-(((|#1|) |has| |#1| (-158)))
+((((-125)) . T))
+((((-135)) . T))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(((|#1|) . T))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+(((|#1| |#1|) . T) ((#0=(-385 (-525)) #0#) . T) (($ $) . T))
+((((-796)) . T))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+((($) . T) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
+(|has| |#1| (-341))
+(|has| |#1| (-341))
+(|has| (-385 |#2|) (-213))
+(|has| |#1| (-842))
+(((|#2|) |has| |#2| (-975)))
+(((|#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))))
+(|has| |#1| (-341))
+(((|#1|) |has| |#1| (-160)))
(((|#1| |#1|) . T))
-((((-801 |#1|)) . T))
-((((-794)) . T))
+((((-803 |#1|)) . T))
+((((-796)) . T))
(((|#1|) . T))
-(((|#2|) |has| |#2| (-1016)))
-(|has| |#2| (-786))
+(((|#2|) |has| |#2| (-1018)))
+(|has| |#2| (-788))
(((|#1|) . T))
-((((-383 (-523))) . T) (((-523)) . T) (((-562 $)) . T))
+((((-385 (-525))) . T) (((-525)) . T) (((-564 $)) . T))
(((|#1|) . T))
-((((-794)) . T))
+((((-796)) . T))
((($) . T))
-(|has| |#1| (-786))
-((((-794)) . T))
-(((|#1| (-495 |#2|) |#2|) . T))
-(((|#1| (-523) (-1001)) . T))
-((((-841 |#1|)) . T))
-((((-794)) . T))
+(|has| |#1| (-788))
+((((-796)) . T))
+(((|#1| (-497 |#2|) |#2|) . T))
+(((|#1| (-525) (-1003)) . T))
+((((-843 |#1|)) . T))
+((((-796)) . T))
(((|#1| |#2|) . T))
(((|#1|) . T))
-(((|#1| (-383 (-523)) (-1001)) . T))
-(((|#1| (-710) (-1001)) . T))
-(((#0=(-383 |#2|) #0#) . T) ((#1=(-383 (-523)) #1#) . T) (($ $) . T))
-(((|#1|) . T) (((-523)) -3255 (|has| (-383 (-523)) (-964 (-523))) (|has| |#1| (-964 (-523)))) (((-383 (-523))) . T))
-(((|#1| (-554 |#1| |#3|) (-554 |#1| |#2|)) . T))
-(((|#1|) |has| |#1| (-158)))
+(((|#1| (-385 (-525)) (-1003)) . T))
+(((|#1| (-712) (-1003)) . T))
+(((#0=(-385 |#2|) #0#) . T) ((#1=(-385 (-525)) #1#) . T) (($ $) . T))
+(((|#1|) . T) (((-525)) -3321 (|has| (-385 (-525)) (-966 (-525))) (|has| |#1| (-966 (-525)))) (((-385 (-525))) . T))
+(((|#1| (-556 |#1| |#3|) (-556 |#1| |#2|)) . T))
+(((|#1|) |has| |#1| (-160)))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-((((-383 |#2|)) . T) (((-383 (-523))) . T) (($) . T))
-(|has| |#2| (-211))
-(((|#2| (-495 (-796 |#1|)) (-796 |#1|)) . T))
-((((-794)) . T))
-((($) |has| |#1| (-515)) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((((-794)) . T))
+((((-385 |#2|)) . T) (((-385 (-525))) . T) (($) . T))
+(|has| |#2| (-213))
+(((|#2| (-497 (-798 |#1|)) (-798 |#1|)) . T))
+((((-796)) . T))
+((($) |has| |#1| (-517)) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((((-796)) . T))
(((|#1| |#3|) . T))
-((((-794)) . T))
-(((|#1|) |has| |#1| (-158)))
-((((-638)) . T))
-((((-638)) . T))
-(((|#2|) |has| |#2| (-158)))
-(|has| |#2| (-784))
-((((-108)) |has| |#1| (-1016)) (((-794)) -3255 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-448)) (|has| |#1| (-666)) (|has| |#1| (-831 (-1087))) (|has| |#1| (-973)) (|has| |#1| (-1028)) (|has| |#1| (-1016))))
+((((-796)) . T))
+(((|#1|) |has| |#1| (-160)))
+((((-640)) . T))
+((((-640)) . T))
+(((|#2|) |has| |#2| (-160)))
+(|has| |#2| (-786))
+((((-108)) |has| |#1| (-1018)) (((-796)) -3321 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-450)) (|has| |#1| (-668)) (|has| |#1| (-833 (-1089))) (|has| |#1| (-975)) (|has| |#1| (-1030)) (|has| |#1| (-1018))))
(((|#1|) . T) (($) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) . T))
-((((-794)) . T))
-((((-523) |#1|) . T))
-((((-638)) . T) (((-383 (-523))) . T) (((-523)) . T))
-(((|#1| |#1|) |has| |#1| (-158)))
-(((|#2|) . T))
-(((|#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))))
-((((-355)) . T))
-((((-638)) . T))
-((((-383 (-523))) . #0=(|has| |#2| (-339))) (($) . #0#))
-(((|#1|) |has| |#1| (-158)))
-((((-383 (-883 |#1|))) . T))
+((((-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) . T))
+((((-796)) . T))
+((((-525) |#1|) . T))
+((((-640)) . T) (((-385 (-525))) . T) (((-525)) . T))
+(((|#1| |#1|) |has| |#1| (-160)))
+(((|#2|) . T))
+(((|#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))))
+((((-357)) . T))
+((((-640)) . T))
+((((-385 (-525))) . #0=(|has| |#2| (-341))) (($) . #0#))
+(((|#1|) |has| |#1| (-160)))
+((((-385 (-885 |#1|))) . T))
(((|#2| |#2|) . T))
-(-3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840)))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(((|#2|) . T))
-(|has| |#2| (-786))
-(((|#3|) |has| |#3| (-973)))
-(|has| |#2| (-840))
-(|has| |#1| (-840))
-(|has| |#1| (-339))
-(|has| |#1| (-786))
-((((-1087)) |has| |#2| (-831 (-1087))))
-((((-794)) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-383 (-523))) . T) (($) . T))
-(|has| |#1| (-448))
-(|has| |#1| (-344))
-(|has| |#1| (-344))
-(|has| |#1| (-344))
-(|has| |#1| (-339))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-136)) (|has| |#1| (-158)) (|has| |#1| (-448)) (|has| |#1| (-515)) (|has| |#1| (-973)) (|has| |#1| (-1028)))
-(|has| |#1| (-37 (-383 (-523))))
+(-3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842)))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(((|#2|) . T))
+(|has| |#2| (-788))
+(((|#3|) |has| |#3| (-975)))
+(|has| |#2| (-842))
+(|has| |#1| (-842))
+(|has| |#1| (-341))
+(|has| |#1| (-788))
+((((-1089)) |has| |#2| (-833 (-1089))))
+((((-796)) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-385 (-525))) . T) (($) . T))
+(|has| |#1| (-450))
+(|has| |#1| (-346))
+(|has| |#1| (-346))
+(|has| |#1| (-346))
+(|has| |#1| (-341))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-138)) (|has| |#1| (-160)) (|has| |#1| (-450)) (|has| |#1| (-517)) (|has| |#1| (-975)) (|has| |#1| (-1030)))
+(|has| |#1| (-37 (-385 (-525))))
((((-112 |#1|)) . T))
((((-112 |#1|)) . T))
-(|has| |#1| (-325))
-((((-133)) . T))
-(|has| |#1| (-37 (-383 (-523))))
-((($) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(((|#2|) . T) (((-794)) . T))
-(((|#2|) . T) (((-794)) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-786))
-((((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) . T))
+(|has| |#1| (-327))
+((((-135)) . T))
+(|has| |#1| (-37 (-385 (-525))))
+((($) . T))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(((|#2|) . T) (((-796)) . T))
+(((|#2|) . T) (((-796)) . T))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-788))
+((((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) . T))
(((|#1| |#2|) . T))
+(|has| |#1| (-138))
(|has| |#1| (-136))
-(|has| |#1| (-134))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) ((|#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) ((|#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))
(((|#2|) . T))
(((|#3|) . T))
((((-112 |#1|)) . T))
-(|has| |#1| (-344))
-(|has| |#1| (-786))
-(((|#2|) . T) (((-383 (-523))) |has| |#1| (-964 (-383 (-523)))) (((-523)) |has| |#1| (-964 (-523))) ((|#1|) . T))
+(|has| |#1| (-346))
+(|has| |#1| (-788))
+(((|#2|) . T) (((-385 (-525))) |has| |#1| (-966 (-385 (-525)))) (((-525)) |has| |#1| (-966 (-525))) ((|#1|) . T))
((((-112 |#1|)) . T))
-(((|#2|) |has| |#2| (-158)))
-(((|#1|) . T))
-((((-523)) . T))
-(|has| |#1| (-339))
-(|has| |#1| (-339))
-((((-794)) . T))
-((((-794)) . T))
-((((-499)) |has| |#1| (-564 (-499))) (((-823 (-523))) |has| |#1| (-564 (-823 (-523)))) (((-823 (-355))) |has| |#1| (-564 (-823 (-355)))) (((-355)) . #0=(|has| |#1| (-949))) (((-203)) . #0#))
-(((|#1|) |has| |#1| (-339)))
-((((-794)) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((($ $) . T) (((-562 $) $) . T))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-((($) . T) (((-1155 |#1| |#2| |#3| |#4|)) . T) (((-383 (-523))) . T))
-((($) -3255 (|has| |#1| (-134)) (|has| |#1| (-136)) (|has| |#1| (-158)) (|has| |#1| (-515)) (|has| |#1| (-973))) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-515)))
-(|has| |#1| (-339))
-(|has| |#1| (-339))
-(|has| |#1| (-339))
-((((-355)) . T) (((-523)) . T) (((-383 (-523))) . T))
-((((-589 (-719 |#1| (-796 |#2|)))) . T) (((-794)) . T))
-((((-499)) |has| (-719 |#1| (-796 |#2|)) (-564 (-499))))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-355)) . T))
-(((|#3|) -12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016))))
-((((-794)) . T))
-(-3255 (|has| |#2| (-427)) (|has| |#2| (-840)))
-(((|#1|) . T))
-(|has| |#1| (-786))
-(|has| |#1| (-786))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
-((((-499)) |has| |#1| (-564 (-499))))
-(((|#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))
-(|has| |#1| (-1016))
-((((-794)) . T))
-((((-383 (-523))) . T) (((-523)) . T) (((-562 $)) . T))
-(|has| |#1| (-134))
+(((|#2|) |has| |#2| (-160)))
+(((|#1|) . T))
+((((-525)) . T))
+(|has| |#1| (-341))
+(|has| |#1| (-341))
+((((-796)) . T))
+((((-796)) . T))
+((((-501)) |has| |#1| (-566 (-501))) (((-825 (-525))) |has| |#1| (-566 (-825 (-525)))) (((-825 (-357))) |has| |#1| (-566 (-825 (-357)))) (((-357)) . #0=(|has| |#1| (-951))) (((-205)) . #0#))
+(((|#1|) |has| |#1| (-341)))
+((((-796)) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((($ $) . T) (((-564 $) $) . T))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+((($) . T) (((-1157 |#1| |#2| |#3| |#4|)) . T) (((-385 (-525))) . T))
+((($) -3321 (|has| |#1| (-136)) (|has| |#1| (-138)) (|has| |#1| (-160)) (|has| |#1| (-517)) (|has| |#1| (-975))) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-517)))
+(|has| |#1| (-341))
+(|has| |#1| (-341))
+(|has| |#1| (-341))
+((((-357)) . T) (((-525)) . T) (((-385 (-525))) . T))
+((((-591 (-721 |#1| (-798 |#2|)))) . T) (((-796)) . T))
+((((-501)) |has| (-721 |#1| (-798 |#2|)) (-566 (-501))))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-357)) . T))
+(((|#3|) -12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018))))
+((((-796)) . T))
+(-3321 (|has| |#2| (-429)) (|has| |#2| (-842)))
+(((|#1|) . T))
+(|has| |#1| (-788))
+(|has| |#1| (-788))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
+((((-501)) |has| |#1| (-566 (-501))))
+(((|#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))
+(|has| |#1| (-1018))
+((((-796)) . T))
+((((-385 (-525))) . T) (((-525)) . T) (((-564 $)) . T))
(|has| |#1| (-136))
-((((-523)) . T))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-(((#0=(-1154 |#2| |#3| |#4|)) . T) (((-383 (-523))) |has| #0# (-37 (-383 (-523)))) (($) . T))
-((((-523)) . T))
-(|has| |#1| (-339))
-(-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-136)) (|has| |#1| (-339))) (|has| |#1| (-136)))
-(-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-134)) (|has| |#1| (-339))) (|has| |#1| (-134)))
-(|has| |#1| (-339))
-(|has| |#1| (-134))
+(|has| |#1| (-138))
+((((-525)) . T))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+(((#0=(-1156 |#2| |#3| |#4|)) . T) (((-385 (-525))) |has| #0# (-37 (-385 (-525)))) (($) . T))
+((((-525)) . T))
+(|has| |#1| (-341))
+(-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-138)) (|has| |#1| (-341))) (|has| |#1| (-138)))
+(-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-136)) (|has| |#1| (-341))) (|has| |#1| (-136)))
+(|has| |#1| (-341))
(|has| |#1| (-136))
+(|has| |#1| (-138))
+(|has| |#1| (-138))
(|has| |#1| (-136))
-(|has| |#1| (-134))
-(|has| |#1| (-211))
-(|has| |#1| (-339))
+(|has| |#1| (-213))
+(|has| |#1| (-341))
(((|#3|) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-523)) |has| |#2| (-585 (-523))) ((|#2|) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-525)) |has| |#2| (-587 (-525))) ((|#2|) . T))
(((|#2|) . T))
-(|has| |#1| (-1016))
+(|has| |#1| (-1018))
(((|#1| |#2|) . T))
-(((|#1|) . T) (((-523)) |has| |#1| (-585 (-523))))
-(((|#3|) |has| |#3| (-158)))
-(-3255 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-344)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)) (|has| |#2| (-1016)))
-((((-523)) . T))
-(((|#1| $) |has| |#1| (-263 |#1| |#1|)))
-((((-383 (-523))) . T) (($) . T) (((-383 |#1|)) . T) ((|#1|) . T))
-((((-794)) . T))
+(((|#1|) . T) (((-525)) |has| |#1| (-587 (-525))))
+(((|#3|) |has| |#3| (-160)))
+(-3321 (|has| |#2| (-25)) (|has| |#2| (-126)) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-346)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)) (|has| |#2| (-1018)))
+((((-525)) . T))
+(((|#1| $) |has| |#1| (-265 |#1| |#1|)))
+((((-385 (-525))) . T) (($) . T) (((-385 |#1|)) . T) ((|#1|) . T))
+((((-796)) . T))
(((|#3|) . T))
-(((|#1| |#1|) . T) (($ $) -3255 (|has| |#1| (-267)) (|has| |#1| (-339))) ((#0=(-383 (-523)) #0#) |has| |#1| (-339)))
-((((-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) . T))
-((($) . T))
-((((-523) |#1|) . T))
-((((-1087)) |has| (-383 |#2|) (-831 (-1087))))
-(((|#1|) . T) (($) -3255 (|has| |#1| (-267)) (|has| |#1| (-339))) (((-383 (-523))) |has| |#1| (-339)))
-((((-499)) |has| |#2| (-564 (-499))))
-((((-629 |#2|)) . T) (((-794)) . T))
-(((|#1|) . T))
-(((|#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))
-(((|#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))
-((((-801 |#1|)) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(-3255 (|has| |#4| (-732)) (|has| |#4| (-784)))
-(-3255 (|has| |#3| (-732)) (|has| |#3| (-784)))
-((((-794)) . T))
-((((-794)) . T))
-(((|#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))
-(((|#2|) |has| |#2| (-973)))
-(((|#1|) . T))
-((((-383 |#2|)) . T))
-(((|#1|) . T))
-(((|#3|) -12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016))))
-((((-523) |#1|) . T))
-(((|#1|) . T))
-((($) . T))
-((((-523)) . T) (($) . T) (((-383 (-523))) . T))
-((((-383 (-523))) . T) (($) . T))
-((((-383 (-523))) . T) (($) . T))
-((((-383 (-523))) . T) (($) . T))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-1127)))
-((($) . T))
-((((-383 (-523))) |has| #0=(-383 |#2|) (-964 (-383 (-523)))) (((-523)) |has| #0# (-964 (-523))) ((#0#) . T))
-(((|#2|) . T) (((-523)) |has| |#2| (-585 (-523))))
-(((|#1| (-710)) . T))
+(((|#1| |#1|) . T) (($ $) -3321 (|has| |#1| (-269)) (|has| |#1| (-341))) ((#0=(-385 (-525)) #0#) |has| |#1| (-341)))
+((((-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) . T))
+((($) . T))
+((((-525) |#1|) . T))
+((((-1089)) |has| (-385 |#2|) (-833 (-1089))))
+(((|#1|) . T) (($) -3321 (|has| |#1| (-269)) (|has| |#1| (-341))) (((-385 (-525))) |has| |#1| (-341)))
+((((-501)) |has| |#2| (-566 (-501))))
+((((-631 |#2|)) . T) (((-796)) . T))
+(((|#1|) . T))
+(((|#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))
+(((|#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))
+((((-803 |#1|)) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(-3321 (|has| |#4| (-734)) (|has| |#4| (-786)))
+(-3321 (|has| |#3| (-734)) (|has| |#3| (-786)))
+((((-796)) . T))
+((((-796)) . T))
+(((|#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))
+(((|#2|) |has| |#2| (-975)))
+(((|#1|) . T))
+((((-385 |#2|)) . T))
+(((|#1|) . T))
+(((|#3|) -12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018))))
+((((-525) |#1|) . T))
+(((|#1|) . T))
+((($) . T))
+((((-525)) . T) (($) . T) (((-385 (-525))) . T))
+((((-385 (-525))) . T) (($) . T))
+((((-385 (-525))) . T) (($) . T))
+((((-385 (-525))) . T) (($) . T))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-1129)))
+((($) . T))
+((((-385 (-525))) |has| #0=(-385 |#2|) (-966 (-385 (-525)))) (((-525)) |has| #0# (-966 (-525))) ((#0#) . T))
+(((|#2|) . T) (((-525)) |has| |#2| (-587 (-525))))
+(((|#1| (-712)) . T))
+(|has| |#1| (-788))
+(((|#1|) . T) (((-525)) |has| |#1| (-587 (-525))))
+((($) -3321 (|has| |#1| (-341)) (|has| |#1| (-327))) (((-385 (-525))) -3321 (|has| |#1| (-341)) (|has| |#1| (-327))) ((|#1|) . T))
+((((-525)) . T))
+(|has| |#1| (-37 (-385 (-525))))
+((((-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) |has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))))))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
(|has| |#1| (-786))
-(((|#1|) . T) (((-523)) |has| |#1| (-585 (-523))))
-((($) -3255 (|has| |#1| (-339)) (|has| |#1| (-325))) (((-383 (-523))) -3255 (|has| |#1| (-339)) (|has| |#1| (-325))) ((|#1|) . T))
-((((-523)) . T))
-(|has| |#1| (-37 (-383 (-523))))
-((((-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) |has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))))))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(|has| |#1| (-784))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-344))
-(|has| |#1| (-344))
-(|has| |#1| (-344))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-325))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-346))
+(|has| |#1| (-346))
+(|has| |#1| (-346))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-327))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
(((|#1| |#2|) . T))
-((((-133)) . T))
-((((-719 |#1| (-796 |#2|))) . T))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
-(|has| |#1| (-1109))
-(((|#1|) . T))
-(-3255 (|has| |#3| (-25)) (|has| |#3| (-124)) (|has| |#3| (-158)) (|has| |#3| (-339)) (|has| |#3| (-344)) (|has| |#3| (-732)) (|has| |#3| (-784)) (|has| |#3| (-973)) (|has| |#3| (-1016)))
-((((-1087) |#1|) |has| |#1| (-484 (-1087) |#1|)))
-(((|#2|) . T))
-((($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1| |#1|) . T) ((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))))
-((($) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((((-841 |#1|)) . T))
-((($) . T))
-((((-383 (-883 |#1|))) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-499)) |has| |#4| (-564 (-499))))
-((((-794)) . T) (((-589 |#4|)) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-(((|#1|) . T))
-(|has| |#1| (-784))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) |has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))))
-(|has| |#1| (-1016))
-(|has| |#1| (-339))
+((((-135)) . T))
+((((-721 |#1| (-798 |#2|))) . T))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
+(|has| |#1| (-1111))
+(((|#1|) . T))
+(-3321 (|has| |#3| (-25)) (|has| |#3| (-126)) (|has| |#3| (-160)) (|has| |#3| (-341)) (|has| |#3| (-346)) (|has| |#3| (-734)) (|has| |#3| (-786)) (|has| |#3| (-975)) (|has| |#3| (-1018)))
+((((-1089) |#1|) |has| |#1| (-486 (-1089) |#1|)))
+(((|#2|) . T))
+((($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1| |#1|) . T) ((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))))
+((($) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((((-843 |#1|)) . T))
+((($) . T))
+((((-385 (-885 |#1|))) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-501)) |has| |#4| (-566 (-501))))
+((((-796)) . T) (((-591 |#4|)) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+(((|#1|) . T))
(|has| |#1| (-786))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) |has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))))
+(|has| |#1| (-1018))
+(|has| |#1| (-341))
+(|has| |#1| (-788))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-((($) . T) (((-383 (-523))) . T))
-((($) -3255 (|has| |#1| (-339)) (|has| |#1| (-515))) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) ((|#1|) |has| |#1| (-158)))
-(|has| |#1| (-134))
+((($) . T) (((-385 (-525))) . T))
+((($) -3321 (|has| |#1| (-341)) (|has| |#1| (-517))) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) ((|#1|) |has| |#1| (-160)))
(|has| |#1| (-136))
-(-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-136)) (|has| |#1| (-339))) (|has| |#1| (-136)))
-(-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-134)) (|has| |#1| (-339))) (|has| |#1| (-134)))
-(|has| |#1| (-134))
+(|has| |#1| (-138))
+(-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-138)) (|has| |#1| (-341))) (|has| |#1| (-138)))
+(-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-136)) (|has| |#1| (-341))) (|has| |#1| (-136)))
(|has| |#1| (-136))
+(|has| |#1| (-138))
+(|has| |#1| (-138))
(|has| |#1| (-136))
-(|has| |#1| (-134))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
-((((-1161 |#1| |#2| |#3|)) |has| |#1| (-339)))
-(|has| |#1| (-784))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
+((((-1163 |#1| |#2| |#3|)) |has| |#1| (-341)))
+(|has| |#1| (-786))
(((|#1| |#2|) . T))
-(((|#1|) . T) (((-523)) |has| |#1| (-585 (-523))))
-((((-523)) |has| |#1| (-585 (-523))) ((|#1|) . T))
-((((-841 |#1|)) . T) (((-383 (-523))) . T) (($) . T))
-(|has| |#1| (-1016))
-(((|#1|) . T) (($) . T) (((-383 (-523))) . T) (((-523)) . T))
-(|has| |#2| (-134))
+(((|#1|) . T) (((-525)) |has| |#1| (-587 (-525))))
+((((-525)) |has| |#1| (-587 (-525))) ((|#1|) . T))
+((((-843 |#1|)) . T) (((-385 (-525))) . T) (($) . T))
+(|has| |#1| (-1018))
+(((|#1|) . T) (($) . T) (((-385 (-525))) . T) (((-525)) . T))
(|has| |#2| (-136))
-((((-841 |#1|)) . T) (((-383 (-523))) . T) (($) . T))
-(|has| |#1| (-1016))
-(((|#2|) |has| |#2| (-158)))
+(|has| |#2| (-138))
+((((-843 |#1|)) . T) (((-385 (-525))) . T) (($) . T))
+(|has| |#1| (-1018))
+(((|#2|) |has| |#2| (-160)))
(((|#2|) . T))
(((|#1| |#1|) . T))
-(((|#3|) |has| |#3| (-339)))
-((((-383 |#2|)) . T))
-((((-794)) . T))
-(((|#1|) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-499)) |has| |#1| (-564 (-499))))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-1087) |#1|) |has| |#1| (-484 (-1087) |#1|)) ((|#1| |#1|) |has| |#1| (-286 |#1|)))
-(((|#1|) -3255 (|has| |#1| (-158)) (|has| |#1| (-339))))
-((((-292 |#1|)) . T))
-(((|#2|) |has| |#2| (-339)))
-(((|#2|) . T))
-((((-383 (-523))) . T) (((-638)) . T) (($) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((#0=(-719 |#1| (-796 |#2|)) #0#) |has| (-719 |#1| (-796 |#2|)) (-286 (-719 |#1| (-796 |#2|)))))
-((((-796 |#1|)) . T))
-(((|#2|) |has| |#2| (-158)))
-(((|#1|) |has| |#1| (-158)))
-(((|#2|) . T))
-((((-1087)) |has| |#1| (-831 (-1087))) (((-1001)) . T))
-((((-1087)) |has| |#1| (-831 (-1087))) (((-1006 (-1087))) . T))
-(((|#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(|has| |#1| (-37 (-383 (-523))))
-(((|#4|) |has| |#4| (-973)) (((-523)) -12 (|has| |#4| (-585 (-523))) (|has| |#4| (-973))))
-(((|#3|) |has| |#3| (-973)) (((-523)) -12 (|has| |#3| (-585 (-523))) (|has| |#3| (-973))))
-(|has| |#1| (-134))
+(((|#3|) |has| |#3| (-341)))
+((((-385 |#2|)) . T))
+((((-796)) . T))
+(((|#1|) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-501)) |has| |#1| (-566 (-501))))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-1089) |#1|) |has| |#1| (-486 (-1089) |#1|)) ((|#1| |#1|) |has| |#1| (-288 |#1|)))
+(((|#1|) -3321 (|has| |#1| (-160)) (|has| |#1| (-341))))
+((((-294 |#1|)) . T))
+(((|#2|) |has| |#2| (-341)))
+(((|#2|) . T))
+((((-385 (-525))) . T) (((-640)) . T) (($) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((#0=(-721 |#1| (-798 |#2|)) #0#) |has| (-721 |#1| (-798 |#2|)) (-288 (-721 |#1| (-798 |#2|)))))
+((((-798 |#1|)) . T))
+(((|#2|) |has| |#2| (-160)))
+(((|#1|) |has| |#1| (-160)))
+(((|#2|) . T))
+((((-1089)) |has| |#1| (-833 (-1089))) (((-1003)) . T))
+((((-1089)) |has| |#1| (-833 (-1089))) (((-1008 (-1089))) . T))
+(((|#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(|has| |#1| (-37 (-385 (-525))))
+(((|#3|) |has| |#3| (-975)) (((-525)) -12 (|has| |#3| (-587 (-525))) (|has| |#3| (-975))))
+(((|#4|) |has| |#4| (-975)) (((-525)) -12 (|has| |#4| (-587 (-525))) (|has| |#4| (-975))))
(|has| |#1| (-136))
+(|has| |#1| (-138))
((($ $) . T))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-448)) (|has| |#1| (-666)) (|has| |#1| (-831 (-1087))) (|has| |#1| (-973)) (|has| |#1| (-1028)) (|has| |#1| (-1016)))
-(|has| |#1| (-515))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-450)) (|has| |#1| (-668)) (|has| |#1| (-833 (-1089))) (|has| |#1| (-975)) (|has| |#1| (-1030)) (|has| |#1| (-1018)))
+(|has| |#1| (-517))
(((|#2|) . T))
-((((-523)) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
+((((-525)) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
(((|#1|) . T))
(((|#1|) . T))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-136)) (|has| |#1| (-158)) (|has| |#1| (-515)) (|has| |#1| (-973)))
-((((-536 |#1|)) . T))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-138)) (|has| |#1| (-160)) (|has| |#1| (-517)) (|has| |#1| (-975)))
+((((-538 |#1|)) . T))
((($) . T))
(((|#1| (-57 |#1|) (-57 |#1|)) . T))
(((|#1|) . T))
((($) . T))
(((|#1|) . T))
-((((-794)) . T))
-(((|#2|) |has| |#2| (-6 (-4250 "*"))))
+((((-796)) . T))
+(((|#2|) |has| |#2| (-6 (-4252 "*"))))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-((((-383 (-523))) |has| |#2| (-964 (-383 (-523)))) (((-523)) |has| |#2| (-964 (-523))) ((|#2|) . T) (((-796 |#1|)) . T))
-((($) . T) (((-112 |#1|)) . T) (((-383 (-523))) . T))
-((((-1039 |#1| |#2|)) . T) ((|#2|) . T) ((|#1|) . T) (((-523)) |has| |#1| (-964 (-523))) (((-383 (-523))) |has| |#1| (-964 (-383 (-523)))))
-((((-1083 |#1|)) . T) (((-1001)) . T) ((|#1|) . T) (((-523)) |has| |#1| (-964 (-523))) (((-383 (-523))) |has| |#1| (-964 (-383 (-523)))))
-((((-1039 |#1| (-1087))) . T) (((-1006 (-1087))) . T) ((|#1|) . T) (((-523)) |has| |#1| (-964 (-523))) (((-383 (-523))) |has| |#1| (-964 (-383 (-523)))) (((-1087)) . T))
-(|has| |#1| (-1016))
+((((-385 (-525))) |has| |#2| (-966 (-385 (-525)))) (((-525)) |has| |#2| (-966 (-525))) ((|#2|) . T) (((-798 |#1|)) . T))
+((($) . T) (((-112 |#1|)) . T) (((-385 (-525))) . T))
+((((-1041 |#1| |#2|)) . T) ((|#2|) . T) ((|#1|) . T) (((-525)) |has| |#1| (-966 (-525))) (((-385 (-525))) |has| |#1| (-966 (-385 (-525)))))
+((((-1085 |#1|)) . T) (((-1003)) . T) ((|#1|) . T) (((-525)) |has| |#1| (-966 (-525))) (((-385 (-525))) |has| |#1| (-966 (-385 (-525)))))
+((((-1041 |#1| (-1089))) . T) (((-1008 (-1089))) . T) ((|#1|) . T) (((-525)) |has| |#1| (-966 (-525))) (((-385 (-525))) |has| |#1| (-966 (-385 (-525)))) (((-1089)) . T))
+(|has| |#1| (-1018))
((($) . T))
-(|has| |#1| (-1016))
-((((-523)) -12 (|has| |#1| (-817 (-523))) (|has| |#2| (-817 (-523)))) (((-355)) -12 (|has| |#1| (-817 (-355))) (|has| |#2| (-817 (-355)))))
+(|has| |#1| (-1018))
+((((-525)) -12 (|has| |#1| (-819 (-525))) (|has| |#2| (-819 (-525)))) (((-357)) -12 (|has| |#1| (-819 (-357))) (|has| |#2| (-819 (-357)))))
(((|#1| |#2|) . T))
-((((-1087) |#1|) . T))
+((((-1089) |#1|) . T))
(((|#4|) . T))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-325)))
-((((-1087) (-51)) . T))
-((((-1154 |#2| |#3| |#4|) (-295 |#2| |#3| |#4|)) . T))
-((((-383 (-523))) |has| |#1| (-964 (-383 (-523)))) (((-523)) |has| |#1| (-964 (-523))) ((|#1|) . T))
-((((-794)) . T))
-(-3255 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-344)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)) (|has| |#2| (-1016)))
-(((#0=(-1155 |#1| |#2| |#3| |#4|) #0#) . T) ((#1=(-383 (-523)) #1#) . T) (($ $) . T))
-(((|#1| |#1|) |has| |#1| (-158)) ((#0=(-383 (-523)) #0#) |has| |#1| (-515)) (($ $) |has| |#1| (-515)))
-(((|#1|) . T) (($) . T) (((-383 (-523))) . T))
-(((|#1| $) |has| |#1| (-263 |#1| |#1|)))
-((((-1155 |#1| |#2| |#3| |#4|)) . T) (((-383 (-523))) . T) (($) . T))
-(((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-515)) (($) |has| |#1| (-515)))
-(|has| |#1| (-339))
-(|has| |#1| (-134))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-327)))
+((((-1089) (-51)) . T))
+((((-1156 |#2| |#3| |#4|) (-297 |#2| |#3| |#4|)) . T))
+((((-385 (-525))) |has| |#1| (-966 (-385 (-525)))) (((-525)) |has| |#1| (-966 (-525))) ((|#1|) . T))
+((((-796)) . T))
+(-3321 (|has| |#2| (-25)) (|has| |#2| (-126)) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-346)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)) (|has| |#2| (-1018)))
+(((#0=(-1157 |#1| |#2| |#3| |#4|) #0#) . T) ((#1=(-385 (-525)) #1#) . T) (($ $) . T))
+(((|#1| |#1|) |has| |#1| (-160)) ((#0=(-385 (-525)) #0#) |has| |#1| (-517)) (($ $) |has| |#1| (-517)))
+(((|#1|) . T) (($) . T) (((-385 (-525))) . T))
+(((|#1| $) |has| |#1| (-265 |#1| |#1|)))
+((((-1157 |#1| |#2| |#3| |#4|)) . T) (((-385 (-525))) . T) (($) . T))
+(((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-517)) (($) |has| |#1| (-517)))
+(|has| |#1| (-341))
(|has| |#1| (-136))
+(|has| |#1| (-138))
+(|has| |#1| (-138))
(|has| |#1| (-136))
-(|has| |#1| (-134))
-((((-383 (-523))) . T) (($) . T))
-(((|#3|) |has| |#3| (-339)))
-(((|#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))
-((((-1087)) . T))
+((((-385 (-525))) . T) (($) . T))
+(((|#3|) |has| |#3| (-341)))
+(((|#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))
+((((-1089)) . T))
(((|#1|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))
+(((|#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))
(((|#2| |#3|) . T))
-(-3255 (|has| |#2| (-339)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840)))
-(((|#1| (-495 |#2|)) . T))
-(((|#1| (-710)) . T))
-(((|#1| (-495 (-1006 (-1087)))) . T))
-(((|#1|) |has| |#1| (-158)))
-(((|#1|) . T))
-(|has| |#2| (-840))
-(-3255 (|has| |#2| (-732)) (|has| |#2| (-784)))
-((((-794)) . T))
-((($ $) . T) ((#0=(-1154 |#2| |#3| |#4|) #0#) . T) ((#1=(-383 (-523)) #1#) |has| #0# (-37 (-383 (-523)))))
-((((-841 |#1|)) . T))
-(-12 (|has| |#1| (-339)) (|has| |#2| (-759)))
-((($) . T) (((-383 (-523))) . T))
-((($) . T))
-((($) . T))
-(|has| |#1| (-339))
-(-3255 (|has| |#1| (-284)) (|has| |#1| (-339)) (|has| |#1| (-325)) (|has| |#1| (-515)))
-(|has| |#1| (-339))
-((($) . T) ((#0=(-1154 |#2| |#3| |#4|)) . T) (((-383 (-523))) |has| #0# (-37 (-383 (-523)))))
+(-3321 (|has| |#2| (-341)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842)))
+(((|#1| (-497 |#2|)) . T))
+(((|#1| (-712)) . T))
+(((|#1| (-497 (-1008 (-1089)))) . T))
+(((|#1|) |has| |#1| (-160)))
+(((|#1|) . T))
+(|has| |#2| (-842))
+(-3321 (|has| |#2| (-734)) (|has| |#2| (-786)))
+((((-796)) . T))
+((($ $) . T) ((#0=(-1156 |#2| |#3| |#4|) #0#) . T) ((#1=(-385 (-525)) #1#) |has| #0# (-37 (-385 (-525)))))
+((((-843 |#1|)) . T))
+(-12 (|has| |#1| (-341)) (|has| |#2| (-761)))
+((($) . T) (((-385 (-525))) . T))
+((($) . T))
+((($) . T))
+(|has| |#1| (-341))
+(-3321 (|has| |#1| (-286)) (|has| |#1| (-341)) (|has| |#1| (-327)) (|has| |#1| (-517)))
+(|has| |#1| (-341))
+((($) . T) ((#0=(-1156 |#2| |#3| |#4|)) . T) (((-385 (-525))) |has| #0# (-37 (-385 (-525)))))
(((|#1| |#2|) . T))
-((((-1085 |#1| |#2| |#3|)) |has| |#1| (-339)))
-(-3255 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-339)) (|has| |#1| (-325)))
-(-3255 (|has| |#1| (-831 (-1087))) (|has| |#1| (-973)))
-((((-523)) |has| |#1| (-585 (-523))) ((|#1|) . T))
+((((-1087 |#1| |#2| |#3|)) |has| |#1| (-341)))
+(-3321 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-341)) (|has| |#1| (-327)))
+(-3321 (|has| |#1| (-833 (-1089))) (|has| |#1| (-975)))
+((((-525)) |has| |#1| (-587 (-525))) ((|#1|) . T))
(((|#1| |#2|) . T))
-((((-794)) . T))
-((((-794)) . T))
+((((-796)) . T))
+((((-796)) . T))
((((-108)) . T))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1| |#2| |#3| |#4|) . T))
-((((-383 |#2|)) . T) (((-383 (-523))) . T) (($) . T))
+((((-385 |#2|)) . T) (((-385 (-525))) . T) (($) . T))
(((|#1| |#2| |#3| |#4|) . T))
-(((|#1| (-495 (-796 |#2|)) (-796 |#2|) (-719 |#1| (-796 |#2|))) . T))
-(|has| |#2| (-339))
-(|has| |#1| (-786))
+(((|#1| (-497 (-798 |#2|)) (-798 |#2|) (-721 |#1| (-798 |#2|))) . T))
+(|has| |#2| (-341))
+(|has| |#1| (-788))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-((((-794)) . T))
-(|has| |#1| (-1016))
+((((-796)) . T))
+(|has| |#1| (-1018))
(((|#4|) . T))
(((|#4|) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-383 $) (-383 $)) |has| |#1| (-515)) (($ $) . T) ((|#1| |#1|) . T))
-(|has| |#2| (-759))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-385 $) (-385 $)) |has| |#1| (-517)) (($ $) . T) ((|#1| |#1|) . T))
+(|has| |#2| (-761))
(((|#4|) . T))
((($) . T))
((($ $) . T))
((($) . T))
-((((-794)) . T))
-(((|#1| (-495 (-1087))) . T))
-(((|#1|) |has| |#1| (-158)))
-((((-794)) . T))
-(((|#4| |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))
-(((|#2|) -3255 (|has| |#2| (-6 (-4250 "*"))) (|has| |#2| (-158))))
-(-3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840)))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(|has| |#2| (-786))
-(|has| |#2| (-840))
-(|has| |#1| (-840))
-(((|#2|) |has| |#2| (-158)))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-1161 |#1| |#2| |#3|)) |has| |#1| (-339)))
-((((-794)) . T))
-((((-794)) . T))
-((((-499)) . T) (((-523)) . T) (((-823 (-523))) . T) (((-355)) . T) (((-203)) . T))
+((((-796)) . T))
+(((|#1| (-497 (-1089))) . T))
+(((|#1|) |has| |#1| (-160)))
+((((-796)) . T))
+(((|#4| |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))
+(((|#2|) -3321 (|has| |#2| (-6 (-4252 "*"))) (|has| |#2| (-160))))
+(-3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842)))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(|has| |#2| (-788))
+(|has| |#2| (-842))
+(|has| |#1| (-842))
+(((|#2|) |has| |#2| (-160)))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-1163 |#1| |#2| |#3|)) |has| |#1| (-341)))
+((((-796)) . T))
+((((-796)) . T))
+((((-501)) . T) (((-525)) . T) (((-825 (-525))) . T) (((-357)) . T) (((-205)) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) . T))
(((|#1|) . T))
-((((-794)) . T))
+((((-796)) . T))
(((|#1| |#2|) . T))
-(((|#1| (-383 (-523))) . T))
+(((|#1| (-385 (-525))) . T))
(((|#1|) . T))
-(-3255 (|has| |#1| (-267)) (|has| |#1| (-339)))
-((((-133)) . T))
-((((-383 |#2|)) . T) (((-383 (-523))) . T) (($) . T))
-(|has| |#1| (-784))
-((((-794)) . T))
-((((-794)) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1| |#1| |#2| (-218 |#1| |#2|) (-218 |#1| |#2|)) . T))
+(-3321 (|has| |#1| (-269)) (|has| |#1| (-341)))
+((((-135)) . T))
+((((-385 |#2|)) . T) (((-385 (-525))) . T) (($) . T))
+(|has| |#1| (-786))
+((((-796)) . T))
+((((-796)) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1| |#1| |#2| (-220 |#1| |#2|) (-220 |#1| |#2|)) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1| |#2|) . T))
-((((-383 (-523))) . T) (($) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
+((((-385 (-525))) . T) (($) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
(((|#2| |#2|) . T) ((|#1| |#1|) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-499)) |has| |#1| (-564 (-499))) (((-823 (-523))) |has| |#1| (-564 (-823 (-523)))) (((-823 (-355))) |has| |#1| (-564 (-823 (-355)))))
-((((-1087) (-51)) . T))
-(((|#2|) . T))
-(((|#1|) . T))
-(((|#1|) . T))
-((((-589 (-133))) . T) (((-1070)) . T))
-((((-794)) . T))
-((((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) . T))
-((((-1087) |#1|) |has| |#1| (-484 (-1087) |#1|)) ((|#1| |#1|) |has| |#1| (-286 |#1|)))
+((((-796)) . T))
+((((-796)) . T))
+((((-501)) |has| |#1| (-566 (-501))) (((-825 (-525))) |has| |#1| (-566 (-825 (-525)))) (((-825 (-357))) |has| |#1| (-566 (-825 (-357)))))
+((((-1089) (-51)) . T))
+(((|#2|) . T))
+(((|#1|) . T))
+(((|#1|) . T))
+((((-591 (-135))) . T) (((-1072)) . T))
+((((-796)) . T))
+((((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) . T))
+((((-1089) |#1|) |has| |#1| (-486 (-1089) |#1|)) ((|#1| |#1|) |has| |#1| (-288 |#1|)))
+(|has| |#1| (-788))
+((((-796)) . T))
+((((-501)) |has| |#1| (-566 (-501))))
+((((-796)) . T))
+(((|#2|) |has| |#2| (-341)))
+((((-796)) . T))
+((((-501)) |has| |#4| (-566 (-501))))
+((((-796)) . T) (((-591 |#4|)) . T))
+(((|#2|) . T))
+((((-843 |#1|)) . T) (((-385 (-525))) . T) (($) . T))
+(-3321 (|has| |#4| (-160)) (|has| |#4| (-786)) (|has| |#4| (-975)))
+(-3321 (|has| |#3| (-160)) (|has| |#3| (-786)) (|has| |#3| (-975)))
+((((-1089) (-51)) . T))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(((|#1|) . T))
+(((|#1|) . T))
+(((|#1|) . T))
+(-3321 (|has| |#2| (-25)) (|has| |#2| (-126)) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+(|has| |#1| (-842))
+(|has| |#1| (-842))
+(((|#2|) . T))
+(((|#1|) . T))
+((((-796)) . T))
+((((-525)) . T))
+(((#0=(-385 (-525)) #0#) . T) (($ $) . T))
+((((-385 (-525))) . T) (($) . T))
+(((|#1| (-385 (-525)) (-1003)) . T))
+(|has| |#1| (-1018))
+(|has| |#1| (-517))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(|has| |#1| (-761))
+(((#0=(-843 |#1|) #0#) . T) (($ $) . T) ((#1=(-385 (-525)) #1#) . T))
+((((-385 |#2|)) . T))
(|has| |#1| (-786))
-((((-794)) . T))
-((((-499)) |has| |#1| (-564 (-499))))
-((((-794)) . T))
-(((|#2|) |has| |#2| (-339)))
-((((-794)) . T))
-((((-499)) |has| |#4| (-564 (-499))))
-((((-794)) . T) (((-589 |#4|)) . T))
-(((|#2|) . T))
-((((-841 |#1|)) . T) (((-383 (-523))) . T) (($) . T))
-(-3255 (|has| |#4| (-158)) (|has| |#4| (-784)) (|has| |#4| (-973)))
-(-3255 (|has| |#3| (-158)) (|has| |#3| (-784)) (|has| |#3| (-973)))
-((((-1087) (-51)) . T))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(((|#1|) . T))
-(((|#1|) . T))
-(((|#1|) . T))
-(-3255 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-(|has| |#1| (-840))
-(|has| |#1| (-840))
-(((|#2|) . T))
-(((|#1|) . T))
-((((-794)) . T))
-((((-523)) . T))
-(((#0=(-383 (-523)) #0#) . T) (($ $) . T))
-((((-383 (-523))) . T) (($) . T))
-(((|#1| (-383 (-523)) (-1001)) . T))
-(|has| |#1| (-1016))
-(|has| |#1| (-515))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(|has| |#1| (-759))
-(((#0=(-841 |#1|) #0#) . T) (($ $) . T) ((#1=(-383 (-523)) #1#) . T))
-((((-383 |#2|)) . T))
-(|has| |#1| (-784))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
-(((|#1| |#1|) . T) ((#0=(-383 (-523)) #0#) . T) ((#1=(-523) #1#) . T) (($ $) . T))
-((((-841 |#1|)) . T) (($) . T) (((-383 (-523))) . T))
-(((|#2|) |has| |#2| (-973)) (((-523)) -12 (|has| |#2| (-585 (-523))) (|has| |#2| (-973))))
-(((|#1|) . T) (((-383 (-523))) . T) (((-523)) . T) (($) . T))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
+(((|#1| |#1|) . T) ((#0=(-385 (-525)) #0#) . T) ((#1=(-525) #1#) . T) (($ $) . T))
+((((-843 |#1|)) . T) (($) . T) (((-385 (-525))) . T))
+(((|#2|) |has| |#2| (-975)) (((-525)) -12 (|has| |#2| (-587 (-525))) (|has| |#2| (-975))))
+(((|#1|) . T) (((-385 (-525))) . T) (((-525)) . T) (($) . T))
(((|#1| |#2| |#3| |#4|) . T))
+(|has| |#1| (-138))
(|has| |#1| (-136))
-(|has| |#1| (-134))
-(((|#2|) . T))
-((((-794)) . T))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))
-((((-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) . T))
-(((#0=(-51)) . T) (((-2 (|:| -2402 (-1087)) (|:| -2746 #0#))) . T))
-(|has| |#1| (-325))
-((((-523)) . T))
-((((-794)) . T))
-(((#0=(-1155 |#1| |#2| |#3| |#4|) $) |has| #0# (-263 #0# #0#)))
-(|has| |#1| (-339))
-(((#0=(-1001) |#1|) . T) ((#0# $) . T) (($ $) . T))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-325)))
-(((#0=(-383 (-523)) #0#) . T) ((#1=(-638) #1#) . T) (($ $) . T))
-((((-292 |#1|)) . T) (($) . T))
-(((|#1|) . T) (((-383 (-523))) |has| |#1| (-339)))
-(|has| |#1| (-1016))
-(((|#1|) . T))
-(((|#1|) -3255 (|has| |#2| (-343 |#1|)) (|has| |#2| (-393 |#1|))))
-(((|#1|) -3255 (|has| |#2| (-343 |#1|)) (|has| |#2| (-393 |#1|))))
-(((|#2|) . T))
-((((-383 (-523))) . T) (((-638)) . T) (($) . T))
+(((|#2|) . T))
+((((-796)) . T))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))
+((((-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) . T))
+(((#0=(-51)) . T) (((-2 (|:| -2019 (-1089)) (|:| -1221 #0#))) . T))
+(|has| |#1| (-327))
+((((-525)) . T))
+((((-796)) . T))
+(((#0=(-1157 |#1| |#2| |#3| |#4|) $) |has| #0# (-265 #0# #0#)))
+(|has| |#1| (-341))
+(((#0=(-1003) |#1|) . T) ((#0# $) . T) (($ $) . T))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-327)))
+(((#0=(-385 (-525)) #0#) . T) ((#1=(-640) #1#) . T) (($ $) . T))
+((((-294 |#1|)) . T) (($) . T))
+(((|#1|) . T) (((-385 (-525))) |has| |#1| (-341)))
+(|has| |#1| (-1018))
+(((|#1|) . T))
+(((|#1|) -3321 (|has| |#2| (-345 |#1|)) (|has| |#2| (-395 |#1|))))
+(((|#1|) -3321 (|has| |#2| (-345 |#1|)) (|has| |#2| (-395 |#1|))))
+(((|#2|) . T))
+((((-385 (-525))) . T) (((-640)) . T) (($) . T))
(((|#3| |#3|) . T))
-(|has| |#2| (-211))
-((((-796 |#1|)) . T))
-((((-1087)) |has| |#1| (-831 (-1087))) ((|#3|) . T))
-(-12 (|has| |#1| (-339)) (|has| |#2| (-949)))
-((((-1085 |#1| |#2| |#3|)) |has| |#1| (-339)))
-((((-794)) . T))
-(|has| |#1| (-339))
-(|has| |#1| (-339))
-((((-383 (-523))) . T) (($) . T) (((-383 |#1|)) . T) ((|#1|) . T))
-((((-523)) . T))
-(|has| |#1| (-1016))
+(|has| |#2| (-213))
+((((-798 |#1|)) . T))
+((((-1089)) |has| |#1| (-833 (-1089))) ((|#3|) . T))
+(-12 (|has| |#1| (-341)) (|has| |#2| (-951)))
+((((-1087 |#1| |#2| |#3|)) |has| |#1| (-341)))
+((((-796)) . T))
+(|has| |#1| (-341))
+(|has| |#1| (-341))
+((((-385 (-525))) . T) (($) . T) (((-385 |#1|)) . T) ((|#1|) . T))
+((((-525)) . T))
+(|has| |#1| (-1018))
(((|#3|) . T))
(((|#2|) . T))
(((|#1|) . T))
-((((-523)) . T))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(((|#2|) . T) (((-523)) |has| |#2| (-585 (-523))))
+((((-525)) . T))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(((|#2|) . T) (((-525)) |has| |#2| (-587 (-525))))
(((|#1| |#2|) . T))
((($) . T))
-((((-536 |#1|)) . T) (((-383 (-523))) . T) (($) . T))
-((($) . T) (((-383 (-523))) . T))
+((((-538 |#1|)) . T) (((-385 (-525))) . T) (($) . T))
+((($) . T) (((-385 (-525))) . T))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1|) . T) (($) . T))
-(((|#1| (-1169 |#1|) (-1169 |#1|)) . T))
+(((|#1| (-1171 |#1|) (-1171 |#1|)) . T))
(((|#1| |#2| |#3| |#4|) . T))
-((((-794)) . T))
-((((-794)) . T))
-(((#0=(-112 |#1|) #0#) . T) ((#1=(-383 (-523)) #1#) . T) (($ $) . T))
-((((-383 (-523))) |has| |#2| (-964 (-383 (-523)))) (((-523)) |has| |#2| (-964 (-523))) ((|#2|) . T) (((-796 |#1|)) . T))
-((((-1039 |#1| |#2|)) . T) ((|#3|) . T) ((|#1|) . T) (((-523)) |has| |#1| (-964 (-523))) (((-383 (-523))) |has| |#1| (-964 (-383 (-523)))) ((|#2|) . T))
+((((-796)) . T))
+((((-796)) . T))
+(((#0=(-112 |#1|) #0#) . T) ((#1=(-385 (-525)) #1#) . T) (($ $) . T))
+((((-385 (-525))) |has| |#2| (-966 (-385 (-525)))) (((-525)) |has| |#2| (-966 (-525))) ((|#2|) . T) (((-798 |#1|)) . T))
+((((-1041 |#1| |#2|)) . T) ((|#3|) . T) ((|#1|) . T) (((-525)) |has| |#1| (-966 (-525))) (((-385 (-525))) |has| |#1| (-966 (-385 (-525)))) ((|#2|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
((($ $) . T))
-((((-614 |#1|)) . T))
-((($) . T) (((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) . T))
-((((-112 |#1|)) . T) (((-383 (-523))) . T) (($) . T))
-((((-523)) -12 (|has| |#1| (-817 (-523))) (|has| |#3| (-817 (-523)))) (((-355)) -12 (|has| |#1| (-817 (-355))) (|has| |#3| (-817 (-355)))))
+((((-616 |#1|)) . T))
+((($) . T) (((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) . T))
+((((-112 |#1|)) . T) (((-385 (-525))) . T) (($) . T))
+((((-525)) -12 (|has| |#1| (-819 (-525))) (|has| |#3| (-819 (-525)))) (((-357)) -12 (|has| |#1| (-819 (-357))) (|has| |#3| (-819 (-357)))))
(((|#2|) . T) ((|#6|) . T))
-(((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) (($) . T))
-((((-133)) . T))
+(((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) (($) . T))
+((((-135)) . T))
((($) . T))
-((($) . T) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((($) . T) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
+((($) . T) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((($) . T) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
(((|#1|) . T))
-(|has| |#2| (-840))
-(|has| |#1| (-840))
-(|has| |#1| (-840))
+(|has| |#2| (-842))
+(|has| |#1| (-842))
+(|has| |#1| (-842))
(((|#4|) . T))
-(|has| |#2| (-949))
+(|has| |#2| (-951))
((($) . T))
-(|has| |#1| (-840))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
+(|has| |#1| (-842))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
((($) . T))
(((|#2|) . T))
(((|#1|) . T))
(((|#1|) . T) (($) . T))
((($) . T))
-(|has| |#1| (-339))
-((((-841 |#1|)) . T))
-((($) -3255 (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((($ $) . T) ((#0=(-383 (-523)) #0#) . T))
-(-3255 (|has| |#1| (-344)) (|has| |#1| (-786)))
-(((|#1|) . T))
-((((-794)) . T))
-((((-1087)) -12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087)))))
-((((-383 |#2|) |#3|) . T))
-((($) . T) (((-383 (-523))) . T))
-((((-710) |#1|) . T))
-(((|#2| (-218 (-1271 |#1|) (-710))) . T))
-(((|#1| (-495 |#3|)) . T))
-((((-383 (-523))) . T))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-((((-794)) . T))
-(((#0=(-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) #0#) |has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))))
-(|has| |#1| (-840))
-(|has| |#2| (-339))
-(-3255 (|has| |#2| (-124)) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-((((-155 (-355))) . T) (((-203)) . T) (((-355)) . T))
-((((-794)) . T))
-(((|#1|) . T))
-((((-355)) . T) (((-523)) . T))
-(((#0=(-383 (-523)) #0#) . T) (($ $) . T))
+(|has| |#1| (-341))
+((((-843 |#1|)) . T))
+((($) -3321 (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((($ $) . T) ((#0=(-385 (-525)) #0#) . T))
+(-3321 (|has| |#1| (-346)) (|has| |#1| (-788)))
+(((|#1|) . T))
+((((-796)) . T))
+((((-1089)) -12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089)))))
+((((-385 |#2|) |#3|) . T))
+((($) . T) (((-385 (-525))) . T))
+((((-712) |#1|) . T))
+(((|#2| (-220 (-4045 |#1|) (-712))) . T))
+(((|#1| (-497 |#3|)) . T))
+((((-385 (-525))) . T))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+((((-796)) . T))
+(((#0=(-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) #0#) |has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))))
+(|has| |#1| (-842))
+(|has| |#2| (-341))
+(-3321 (|has| |#2| (-126)) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+((((-157 (-357))) . T) (((-205)) . T) (((-357)) . T))
+((((-796)) . T))
+(((|#1|) . T))
+((((-357)) . T) (((-525)) . T))
+(((#0=(-385 (-525)) #0#) . T) (($ $) . T))
((($ $) . T))
((($ $) . T))
(((|#1| |#1|) . T))
-((((-794)) . T))
-(|has| |#1| (-515))
-((((-383 (-523))) . T) (($) . T))
-((($) . T))
-((($) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(-3255 (|has| |#1| (-284)) (|has| |#1| (-339)) (|has| |#1| (-325)))
-(|has| |#1| (-37 (-383 (-523))))
-(-12 (|has| |#1| (-508)) (|has| |#1| (-767)))
-((((-794)) . T))
-((((-1087)) -3255 (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))) (-12 (|has| |#1| (-339)) (|has| |#2| (-831 (-1087))))))
-(|has| |#1| (-339))
-((((-1087)) -12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087)))))
-(|has| |#1| (-339))
-((((-383 (-523))) . T) (($) . T))
-((($) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) . T))
-((((-523) |#1|) . T))
-(((|#1|) . T))
-(((|#2|) |has| |#1| (-339)))
-(((|#2|) |has| |#1| (-339)))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-(((|#1|) . T))
-(((|#1|) |has| |#1| (-158)))
-(((|#1|) . T))
-(((|#2|) . T) (((-1087)) -12 (|has| |#1| (-339)) (|has| |#2| (-964 (-1087)))) (((-523)) -12 (|has| |#1| (-339)) (|has| |#2| (-964 (-523)))) (((-383 (-523))) -12 (|has| |#1| (-339)) (|has| |#2| (-964 (-523)))))
-(((|#2|) . T))
-((((-1087) #0=(-1155 |#1| |#2| |#3| |#4|)) |has| #0# (-484 (-1087) #0#)) ((#0# #0#) |has| #0# (-286 #0#)))
-((((-562 $) $) . T) (($ $) . T))
-((((-155 (-203))) . T) (((-155 (-355))) . T) (((-1083 (-638))) . T) (((-823 (-355))) . T))
-((((-794)) . T))
-(|has| |#1| (-515))
-(|has| |#1| (-515))
-(|has| (-383 |#2|) (-211))
-(((|#1| (-383 (-523))) . T))
+((((-796)) . T))
+(|has| |#1| (-517))
+((((-385 (-525))) . T) (($) . T))
+((($) . T))
+((($) . T))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(-3321 (|has| |#1| (-286)) (|has| |#1| (-341)) (|has| |#1| (-327)))
+(|has| |#1| (-37 (-385 (-525))))
+(-12 (|has| |#1| (-510)) (|has| |#1| (-769)))
+((((-796)) . T))
+((((-1089)) -3321 (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))) (-12 (|has| |#1| (-341)) (|has| |#2| (-833 (-1089))))))
+(|has| |#1| (-341))
+((((-1089)) -12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089)))))
+(|has| |#1| (-341))
+((((-385 (-525))) . T) (($) . T))
+((($) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) . T))
+((((-525) |#1|) . T))
+(((|#1|) . T))
+(((|#2|) |has| |#1| (-341)))
+(((|#2|) |has| |#1| (-341)))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+(((|#1|) . T))
+(((|#1|) |has| |#1| (-160)))
+(((|#1|) . T))
+(((|#2|) . T) (((-1089)) -12 (|has| |#1| (-341)) (|has| |#2| (-966 (-1089)))) (((-525)) -12 (|has| |#1| (-341)) (|has| |#2| (-966 (-525)))) (((-385 (-525))) -12 (|has| |#1| (-341)) (|has| |#2| (-966 (-525)))))
+(((|#2|) . T))
+((((-1089) #0=(-1157 |#1| |#2| |#3| |#4|)) |has| #0# (-486 (-1089) #0#)) ((#0# #0#) |has| #0# (-288 #0#)))
+((((-564 $) $) . T) (($ $) . T))
+((((-157 (-205))) . T) (((-157 (-357))) . T) (((-1085 (-640))) . T) (((-825 (-357))) . T))
+((((-796)) . T))
+(|has| |#1| (-517))
+(|has| |#1| (-517))
+(|has| (-385 |#2|) (-213))
+(((|#1| (-385 (-525))) . T))
((($ $) . T))
-((((-1087)) |has| |#2| (-831 (-1087))))
-((($) . T))
-((((-794)) . T))
-((((-383 (-523))) . T) (($) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#2|) |has| |#1| (-339)))
-((((-355)) -12 (|has| |#1| (-339)) (|has| |#2| (-817 (-355)))) (((-523)) -12 (|has| |#1| (-339)) (|has| |#2| (-817 (-523)))))
-(|has| |#1| (-339))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-(|has| |#1| (-339))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-(|has| |#1| (-339))
-(|has| |#1| (-515))
-(((|#4| |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))
+((((-1089)) |has| |#2| (-833 (-1089))))
+((($) . T))
+((((-796)) . T))
+((((-385 (-525))) . T) (($) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#2|) |has| |#1| (-341)))
+((((-357)) -12 (|has| |#1| (-341)) (|has| |#2| (-819 (-357)))) (((-525)) -12 (|has| |#1| (-341)) (|has| |#2| (-819 (-525)))))
+(|has| |#1| (-341))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+(|has| |#1| (-341))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+(|has| |#1| (-341))
+(|has| |#1| (-517))
+(((|#4| |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))
(((|#3|) . T))
(((|#1|) . T))
-(-3255 (|has| |#2| (-124)) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)))
+(-3321 (|has| |#2| (-126)) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)))
(((|#2|) . T))
(((|#2|) . T))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-(|has| |#1| (-37 (-383 (-523))))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+(|has| |#1| (-37 (-385 (-525))))
(((|#1| |#2|) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))
-(|has| |#1| (-136))
-((((-1070) |#1|) . T))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))
-(|has| |#1| (-136))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))
-(|has| |#1| (-136))
-((((-536 |#1|)) . T))
-((($) . T))
-((((-383 |#2|)) . T))
-(|has| |#1| (-515))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-325)))
-(|has| |#1| (-136))
-((((-794)) . T))
-((($) . T))
-((((-383 (-523))) |has| |#2| (-964 (-523))) (((-523)) |has| |#2| (-964 (-523))) (((-1087)) |has| |#2| (-964 (-1087))) ((|#2|) . T))
-(((#0=(-383 |#2|) #0#) . T) ((#1=(-383 (-523)) #1#) . T) (($ $) . T))
-((((-1052 |#1| |#2|)) . T))
-(((|#1| (-523)) . T))
-(((|#1| (-383 (-523))) . T))
-((((-523)) |has| |#2| (-817 (-523))) (((-355)) |has| |#2| (-817 (-355))))
-(((|#2|) . T))
-((((-383 |#2|)) . T) (((-383 (-523))) . T) (($) . T))
+(|has| |#1| (-37 (-385 (-525))))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))
+(|has| |#1| (-138))
+((((-1072) |#1|) . T))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))
+(|has| |#1| (-138))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))
+(|has| |#1| (-138))
+((((-538 |#1|)) . T))
+((($) . T))
+((((-385 |#2|)) . T))
+(|has| |#1| (-517))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-327)))
+(|has| |#1| (-138))
+((((-796)) . T))
+((($) . T))
+((((-385 (-525))) |has| |#2| (-966 (-525))) (((-525)) |has| |#2| (-966 (-525))) (((-1089)) |has| |#2| (-966 (-1089))) ((|#2|) . T))
+(((#0=(-385 |#2|) #0#) . T) ((#1=(-385 (-525)) #1#) . T) (($ $) . T))
+((((-1054 |#1| |#2|)) . T))
+(((|#1| (-525)) . T))
+(((|#1| (-385 (-525))) . T))
+((((-525)) |has| |#2| (-819 (-525))) (((-357)) |has| |#2| (-819 (-357))))
+(((|#2|) . T))
+((((-385 |#2|)) . T) (((-385 (-525))) . T) (($) . T))
((((-108)) . T))
-(((|#1| |#2| (-218 |#1| |#2|) (-218 |#1| |#2|)) . T))
-(((|#2|) . T))
-((((-794)) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-1087) (-51)) . T))
-((((-383 |#2|)) . T))
-((((-794)) . T))
-(((|#1|) . T))
-(|has| |#1| (-1016))
-(|has| |#1| (-730))
-(|has| |#1| (-730))
-((((-499)) |has| |#1| (-564 (-499))))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-786)) (|has| |#1| (-1016))))
+(((|#1| |#2| (-220 |#1| |#2|) (-220 |#1| |#2|)) . T))
+(((|#2|) . T))
+((((-796)) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-1089) (-51)) . T))
+((((-385 |#2|)) . T))
+((((-796)) . T))
+(((|#1|) . T))
+(|has| |#1| (-1018))
+(|has| |#1| (-732))
+(|has| |#1| (-732))
+((((-501)) |has| |#1| (-566 (-501))))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-788)) (|has| |#1| (-1018))))
((((-110)) . T) ((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-((((-203)) . T) (((-355)) . T) (((-823 (-355))) . T))
-((((-794)) . T))
-((((-1155 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-383 (-523))) . T))
-(((|#1|) |has| |#1| (-158)) (($) |has| |#1| (-515)) (((-383 (-523))) |has| |#1| (-515)))
-((((-794)) . T))
-((((-794)) . T))
+((((-205)) . T) (((-357)) . T) (((-825 (-357))) . T))
+((((-796)) . T))
+((((-1157 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-385 (-525))) . T))
+(((|#1|) |has| |#1| (-160)) (($) |has| |#1| (-517)) (((-385 (-525))) |has| |#1| (-517)))
+((((-796)) . T))
+((((-796)) . T))
(((|#2|) . T))
-((((-794)) . T))
-(((#0=(-841 |#1|) #0#) . T) (($ $) . T) ((#1=(-383 (-523)) #1#) . T))
+((((-796)) . T))
+(((#0=(-843 |#1|) #0#) . T) (($ $) . T) ((#1=(-385 (-525)) #1#) . T))
(((|#1|) . T))
(((|#1|) . T))
-((((-841 |#1|)) . T) (($) . T) (((-383 (-523))) . T))
-(|has| |#1| (-339))
+((((-843 |#1|)) . T) (($) . T) (((-385 (-525))) . T))
+(|has| |#1| (-341))
(((|#2|) . T))
-((((-523)) . T))
-((((-794)) . T))
-((((-523)) . T))
-(-3255 (|has| |#2| (-732)) (|has| |#2| (-784)))
-((((-155 (-355))) . T) (((-203)) . T) (((-355)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-1070)) . T) (((-499)) . T) (((-523)) . T) (((-823 (-523))) . T) (((-355)) . T) (((-203)) . T))
-((((-794)) . T))
+((((-525)) . T))
+((((-796)) . T))
+((((-525)) . T))
+(-3321 (|has| |#2| (-734)) (|has| |#2| (-786)))
+((((-157 (-357))) . T) (((-205)) . T) (((-357)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-1072)) . T) (((-501)) . T) (((-525)) . T) (((-825 (-525))) . T) (((-357)) . T) (((-205)) . T))
+((((-796)) . T))
+(|has| |#1| (-138))
(|has| |#1| (-136))
-(|has| |#1| (-134))
-((($) . T) ((#0=(-1154 |#2| |#3| |#4|)) |has| #0# (-158)) (((-383 (-523))) |has| #0# (-37 (-383 (-523)))))
-(((|#1|) . T) (($) . T) (((-383 (-523))) . T))
-(|has| |#1| (-339))
-(|has| |#1| (-339))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-448)) (|has| |#1| (-666)) (|has| |#1| (-831 (-1087))) (|has| |#1| (-973)) (|has| |#1| (-1028)) (|has| |#1| (-1016)))
-(|has| |#1| (-1063))
-((((-523) |#1|) . T))
-(((|#1|) . T))
-(((#0=(-112 |#1|) $) |has| #0# (-263 #0# #0#)))
-(((|#1|) |has| |#1| (-158)))
+((($) . T) ((#0=(-1156 |#2| |#3| |#4|)) |has| #0# (-160)) (((-385 (-525))) |has| #0# (-37 (-385 (-525)))))
+(((|#1|) . T) (($) . T) (((-385 (-525))) . T))
+(|has| |#1| (-341))
+(|has| |#1| (-341))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-450)) (|has| |#1| (-668)) (|has| |#1| (-833 (-1089))) (|has| |#1| (-975)) (|has| |#1| (-1030)) (|has| |#1| (-1018)))
+(|has| |#1| (-1065))
+((((-525) |#1|) . T))
+(((|#1|) . T))
+(((#0=(-112 |#1|) $) |has| #0# (-265 #0# #0#)))
+(((|#1|) |has| |#1| (-160)))
(((|#1|) . T))
((((-110)) . T) ((|#1|) . T))
-((((-794)) . T))
+((((-796)) . T))
(((|#1| |#2|) . T))
-((((-1087) |#1|) . T))
-(((|#1|) |has| |#1| (-286 |#1|)))
-((((-523) |#1|) . T))
+((((-1089) |#1|) . T))
+(((|#1|) |has| |#1| (-288 |#1|)))
+((((-525) |#1|) . T))
(((|#1|) . T))
-((((-523)) . T) (((-383 (-523))) . T))
+((((-525)) . T) (((-385 (-525))) . T))
(((|#1|) . T))
-(|has| |#1| (-515))
-((((-383 |#2|)) . T) (((-383 (-523))) . T) (($) . T))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-((((-355)) . T))
+(|has| |#1| (-517))
+((((-385 |#2|)) . T) (((-385 (-525))) . T) (($) . T))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+((((-357)) . T))
(((|#1|) . T))
(((|#1|) . T))
-(|has| |#1| (-339))
-(|has| |#1| (-339))
-(|has| |#1| (-515))
-(|has| |#1| (-1016))
-((((-719 |#1| (-796 |#2|))) |has| (-719 |#1| (-796 |#2|)) (-286 (-719 |#1| (-796 |#2|)))))
-(-3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840)))
+(|has| |#1| (-341))
+(|has| |#1| (-341))
+(|has| |#1| (-517))
+(|has| |#1| (-1018))
+((((-721 |#1| (-798 |#2|))) |has| (-721 |#1| (-798 |#2|)) (-288 (-721 |#1| (-798 |#2|)))))
+(-3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842)))
(((|#1|) . T))
(((|#2| |#3|) . T))
-(|has| |#2| (-840))
+(|has| |#2| (-842))
(((|#1|) . T))
-(((|#1| (-495 |#2|)) . T))
-(((|#1| (-710)) . T))
-(|has| |#1| (-211))
-(((|#1| (-495 (-1006 (-1087)))) . T))
-(|has| |#2| (-339))
-((((-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) . T))
+(((|#1| (-497 |#2|)) . T))
+(((|#1| (-712)) . T))
+(|has| |#1| (-213))
+(((|#1| (-497 (-1008 (-1089)))) . T))
+(|has| |#2| (-341))
+((((-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) . T))
(((|#1|) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-794)) . T))
-((((-794)) . T))
-(-3255 (|has| |#3| (-732)) (|has| |#3| (-784)))
-((((-794)) . T))
-((((-794)) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-796)) . T))
+((((-796)) . T))
+(-3321 (|has| |#3| (-734)) (|has| |#3| (-786)))
+((((-796)) . T))
+((((-796)) . T))
(((|#1|) . T))
-((($ $) . T) (((-562 $) $) . T))
+((($ $) . T) (((-564 $) $) . T))
(((|#1|) . T))
-((((-523)) . T))
+((((-525)) . T))
(((|#3|) . T))
-((((-794)) . T))
-(-3255 (|has| |#1| (-284)) (|has| |#1| (-339)) (|has| |#1| (-325)))
-(-3255 (|has| |#1| (-134)) (|has| |#1| (-136)) (|has| |#1| (-158)) (|has| |#1| (-515)) (|has| |#1| (-973)))
-(((#0=(-536 |#1|) #0#) . T) (($ $) . T) ((#1=(-383 (-523)) #1#) . T))
-((($ $) . T) ((#0=(-383 (-523)) #0#) . T))
-(((|#1|) |has| |#1| (-158)))
-(((|#1| (-1169 |#1|) (-1169 |#1|)) . T))
-((((-536 |#1|)) . T) (($) . T) (((-383 (-523))) . T))
-((($) . T) (((-383 (-523))) . T))
-((($) . T) (((-383 (-523))) . T))
-(((|#2|) |has| |#2| (-6 (-4250 "*"))))
-(((|#1|) . T))
-(((|#1|) . T))
-((((-794)) |has| |#1| (-563 (-794))))
-((((-271 |#3|)) . T))
-(((#0=(-383 (-523)) #0#) |has| |#2| (-37 (-383 (-523)))) ((|#2| |#2|) . T) (($ $) -3255 (|has| |#2| (-158)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
+((((-796)) . T))
+(-3321 (|has| |#1| (-286)) (|has| |#1| (-341)) (|has| |#1| (-327)))
+(-3321 (|has| |#1| (-136)) (|has| |#1| (-138)) (|has| |#1| (-160)) (|has| |#1| (-517)) (|has| |#1| (-975)))
+(((#0=(-538 |#1|) #0#) . T) (($ $) . T) ((#1=(-385 (-525)) #1#) . T))
+((($ $) . T) ((#0=(-385 (-525)) #0#) . T))
+(((|#1|) |has| |#1| (-160)))
+(((|#1| (-1171 |#1|) (-1171 |#1|)) . T))
+((((-538 |#1|)) . T) (($) . T) (((-385 (-525))) . T))
+((($) . T) (((-385 (-525))) . T))
+((($) . T) (((-385 (-525))) . T))
+(((|#2|) |has| |#2| (-6 (-4252 "*"))))
+(((|#1|) . T))
+(((|#1|) . T))
+((((-796)) |has| |#1| (-565 (-796))))
+((((-273 |#3|)) . T))
+(((#0=(-385 (-525)) #0#) |has| |#2| (-37 (-385 (-525)))) ((|#2| |#2|) . T) (($ $) -3321 (|has| |#2| (-160)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
(((|#2| |#2|) . T) ((|#6| |#6|) . T))
(((|#1|) . T))
-((($) . T) (((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) . T))
-((($) . T) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-(((|#1|) . T) (((-383 (-523))) . T) (($) . T))
-((($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1| |#1|) . T) ((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))))
-((($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1| |#1|) . T) ((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))))
+((($) . T) (((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) . T))
+((($) . T) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+(((|#1|) . T) (((-385 (-525))) . T) (($) . T))
+((($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1| |#1|) . T) ((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))))
+((($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1| |#1|) . T) ((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))))
(((|#2|) . T))
-((((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) . T) (($) -3255 (|has| |#2| (-158)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
+((((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) . T) (($) -3321 (|has| |#2| (-160)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
(((|#2|) . T) ((|#6|) . T))
-((($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1| |#1|) . T) ((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))))
-((((-794)) . T))
-((($) -3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((($) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(|has| |#2| (-840))
-(|has| |#1| (-840))
-((($) -3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
+((($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1| |#1|) . T) ((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))))
+((((-796)) . T))
+((($) -3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((($) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(|has| |#2| (-842))
+(|has| |#1| (-842))
+((($) -3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
(((|#1|) . T))
-((((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) . T))
+((((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1| |#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-(|has| |#1| (-1016))
-(((|#1|) . T))
-((((-1087)) . T) ((|#1|) . T))
-((((-794)) . T))
-((((-794)) . T))
-(((|#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))
-(((#0=(-383 (-523)) #0#) . T))
-((((-383 (-523))) . T))
-(-3255 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-(((|#1|) . T))
-(((|#1|) . T))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-((((-499)) . T))
-((((-794)) . T))
-((((-1087)) |has| |#2| (-831 (-1087))) (((-1001)) . T))
-((((-1154 |#2| |#3| |#4|)) . T))
-((((-841 |#1|)) . T))
-((($) . T) (((-383 (-523))) . T))
-(-12 (|has| |#1| (-339)) (|has| |#2| (-759)))
-(-12 (|has| |#1| (-339)) (|has| |#2| (-759)))
-(|has| |#1| (-1127))
-(((|#2|) . T))
-((($ $) . T) ((#0=(-383 (-523)) #0#) . T))
-((((-1087)) |has| |#1| (-831 (-1087))))
-((((-841 |#1|)) . T) (((-383 (-523))) . T) (($) . T))
-((($) . T) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) ((|#1|) . T))
-(((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))) ((|#1| |#1|) . T) (($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-515))))
-((($) . T) (((-383 (-523))) . T))
-(((|#1|) . T) (((-383 (-523))) . T) (((-523)) . T) (($) . T))
-(((|#2|) |has| |#2| (-973)) (((-523)) -12 (|has| |#2| (-585 (-523))) (|has| |#2| (-973))))
-((((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) . T) (($) -3255 (|has| |#1| (-158)) (|has| |#1| (-515))))
-(|has| |#1| (-515))
-(((|#1|) |has| |#1| (-339)))
-((((-523)) . T))
-(|has| |#1| (-730))
-(|has| |#1| (-730))
-((((-1087) #0=(-112 |#1|)) |has| #0# (-484 (-1087) #0#)) ((#0# #0#) |has| #0# (-286 #0#)))
-(((|#2|) . T) (((-523)) |has| |#2| (-964 (-523))) (((-383 (-523))) |has| |#2| (-964 (-383 (-523)))))
-((((-1001)) . T) ((|#2|) . T) (((-523)) |has| |#2| (-964 (-523))) (((-383 (-523))) |has| |#2| (-964 (-383 (-523)))))
-(((|#1|) . T))
-(((|#1|) . T))
-(((|#1|) . T))
-((((-523) (-710)) . T) ((|#3| (-710)) . T))
+(|has| |#1| (-1018))
+(((|#1|) . T))
+((((-1089)) . T) ((|#1|) . T))
+((((-796)) . T))
+((((-796)) . T))
+(((|#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))
+(((#0=(-385 (-525)) #0#) . T))
+((((-385 (-525))) . T))
+(-3321 (|has| |#2| (-25)) (|has| |#2| (-126)) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+(((|#1|) . T))
+(((|#1|) . T))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+((((-501)) . T))
+((((-796)) . T))
+((((-1089)) |has| |#2| (-833 (-1089))) (((-1003)) . T))
+((((-1156 |#2| |#3| |#4|)) . T))
+((((-843 |#1|)) . T))
+((($) . T) (((-385 (-525))) . T))
+(-12 (|has| |#1| (-341)) (|has| |#2| (-761)))
+(-12 (|has| |#1| (-341)) (|has| |#2| (-761)))
+(|has| |#1| (-1129))
+(((|#2|) . T))
+((($ $) . T) ((#0=(-385 (-525)) #0#) . T))
+((((-1089)) |has| |#1| (-833 (-1089))))
+((((-843 |#1|)) . T) (((-385 (-525))) . T) (($) . T))
+((($) . T) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) ((|#1|) . T))
+(((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))) ((|#1| |#1|) . T) (($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-517))))
+((($) . T) (((-385 (-525))) . T))
+(((|#1|) . T) (((-385 (-525))) . T) (((-525)) . T) (($) . T))
+(((|#2|) |has| |#2| (-975)) (((-525)) -12 (|has| |#2| (-587 (-525))) (|has| |#2| (-975))))
+((((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) . T) (($) -3321 (|has| |#1| (-160)) (|has| |#1| (-517))))
+(|has| |#1| (-517))
+(((|#1|) |has| |#1| (-341)))
+((((-525)) . T))
+(|has| |#1| (-732))
+(|has| |#1| (-732))
+((((-1089) #0=(-112 |#1|)) |has| #0# (-486 (-1089) #0#)) ((#0# #0#) |has| #0# (-288 #0#)))
+(((|#2|) . T) (((-525)) |has| |#2| (-966 (-525))) (((-385 (-525))) |has| |#2| (-966 (-385 (-525)))))
+((((-1003)) . T) ((|#2|) . T) (((-525)) |has| |#2| (-966 (-525))) (((-385 (-525))) |has| |#2| (-966 (-385 (-525)))))
+(((|#1|) . T))
+(((|#1|) . T))
+(((|#1|) . T))
+((((-525) (-712)) . T) ((|#3| (-712)) . T))
(((|#1|) . T))
(((|#1| |#2|) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-794)) . T))
-(|has| |#2| (-759))
-(|has| |#2| (-759))
-((((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) ((|#2|) |has| |#1| (-339)) (($) . T) ((|#1|) . T))
-(((|#1|) . T) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1|) . T) (((-523)) |has| |#1| (-964 (-523))) (((-383 (-523))) |has| |#1| (-964 (-383 (-523)))))
-((((-523)) |has| |#1| (-817 (-523))) (((-355)) |has| |#1| (-817 (-355))))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-796)) . T))
+(|has| |#2| (-761))
+(|has| |#2| (-761))
+((((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) ((|#2|) |has| |#1| (-341)) (($) . T) ((|#1|) . T))
+(((|#1|) . T) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1|) . T) (((-525)) |has| |#1| (-966 (-525))) (((-385 (-525))) |has| |#1| (-966 (-385 (-525)))))
+((((-525)) |has| |#1| (-819 (-525))) (((-357)) |has| |#1| (-819 (-357))))
(((|#1|) . T))
-((((-801 |#1|)) . T))
-((((-801 |#1|)) . T))
-(-12 (|has| |#1| (-339)) (|has| |#2| (-840)))
-((((-383 (-523))) . T) (((-638)) . T) (($) . T))
-(|has| |#1| (-339))
-(|has| |#1| (-339))
+((((-803 |#1|)) . T))
+((((-803 |#1|)) . T))
+(-12 (|has| |#1| (-341)) (|has| |#2| (-842)))
+((((-385 (-525))) . T) (((-640)) . T) (($) . T))
+(|has| |#1| (-341))
+(|has| |#1| (-341))
(((|#1|) . T))
(((|#1|) . T))
-(((|#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))
-(|has| |#1| (-339))
+(((|#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))
+(|has| |#1| (-341))
(((|#2|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-((((-796 |#1|)) . T))
+((((-798 |#1|)) . T))
(((|#1|) . T))
(((|#1|) . T))
-(((|#2| (-710)) . T))
-((((-1087)) . T))
-((((-801 |#1|)) . T))
-(-3255 (|has| |#3| (-25)) (|has| |#3| (-124)) (|has| |#3| (-158)) (|has| |#3| (-339)) (|has| |#3| (-732)) (|has| |#3| (-784)) (|has| |#3| (-973)))
-(-3255 (|has| |#3| (-158)) (|has| |#3| (-339)) (|has| |#3| (-784)) (|has| |#3| (-973)))
-((((-794)) . T))
+(((|#2| (-712)) . T))
+((((-1089)) . T))
+((((-803 |#1|)) . T))
+(-3321 (|has| |#3| (-25)) (|has| |#3| (-126)) (|has| |#3| (-160)) (|has| |#3| (-341)) (|has| |#3| (-734)) (|has| |#3| (-786)) (|has| |#3| (-975)))
+(-3321 (|has| |#3| (-160)) (|has| |#3| (-341)) (|has| |#3| (-786)) (|has| |#3| (-975)))
+((((-796)) . T))
(((|#1|) . T))
-(-3255 (|has| |#2| (-732)) (|has| |#2| (-784)))
-(-3255 (-12 (|has| |#1| (-732)) (|has| |#2| (-732))) (-12 (|has| |#1| (-786)) (|has| |#2| (-786))))
-((((-801 |#1|)) . T))
+(-3321 (|has| |#2| (-734)) (|has| |#2| (-786)))
+(-3321 (-12 (|has| |#1| (-734)) (|has| |#2| (-734))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788))))
+((((-803 |#1|)) . T))
(((|#1|) . T))
-(|has| |#1| (-344))
-(|has| |#1| (-344))
-(|has| |#1| (-344))
-((($ $) . T) (((-562 $) $) . T))
+(|has| |#1| (-346))
+(|has| |#1| (-346))
+(|has| |#1| (-346))
+((($ $) . T) (((-564 $) $) . T))
((($) . T))
-((((-794)) . T))
-((((-523)) . T))
+((((-796)) . T))
+((((-525)) . T))
(((|#2|) . T))
-((((-794)) . T))
-(((|#1|) . T) (((-383 (-523))) |has| |#1| (-339)))
-((((-794)) . T))
+((((-796)) . T))
+(((|#1|) . T) (((-385 (-525))) |has| |#1| (-341)))
+((((-796)) . T))
(((|#1|) . T))
-((((-794)) . T))
-((($) . T) ((|#2|) . T) (((-383 (-523))) . T))
-(|has| |#1| (-1016))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
+((((-796)) . T))
+((($) . T) ((|#2|) . T) (((-385 (-525))) . T))
+(|has| |#1| (-1018))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-((((-794)) . T))
-(|has| |#2| (-840))
-((((-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) . T))
-((((-499)) |has| |#2| (-564 (-499))) (((-823 (-355))) |has| |#2| (-564 (-823 (-355)))) (((-823 (-523))) |has| |#2| (-564 (-823 (-523)))))
-((((-794)) . T))
-((((-794)) . T))
-(((|#3|) |has| |#3| (-973)) (((-523)) -12 (|has| |#3| (-585 (-523))) (|has| |#3| (-973))))
-((((-1039 |#1| |#2|)) . T) (((-883 |#1|)) |has| |#2| (-564 (-1087))) (((-794)) . T))
-((((-883 |#1|)) |has| |#2| (-564 (-1087))) (((-1070)) -12 (|has| |#1| (-964 (-523))) (|has| |#2| (-564 (-1087)))) (((-823 (-523))) -12 (|has| |#1| (-564 (-823 (-523)))) (|has| |#2| (-564 (-823 (-523))))) (((-823 (-355))) -12 (|has| |#1| (-564 (-823 (-355)))) (|has| |#2| (-564 (-823 (-355))))) (((-499)) -12 (|has| |#1| (-564 (-499))) (|has| |#2| (-564 (-499)))))
-((((-1083 |#1|)) . T) (((-794)) . T))
-((((-794)) . T))
-((((-383 (-523))) |has| |#2| (-964 (-383 (-523)))) (((-523)) |has| |#2| (-964 (-523))) ((|#2|) . T) (((-796 |#1|)) . T))
-((((-112 |#1|)) . T) (($) . T) (((-383 (-523))) . T))
-((((-383 (-523))) |has| |#1| (-964 (-383 (-523)))) (((-523)) |has| |#1| (-964 (-523))) ((|#1|) . T) (((-1087)) . T))
-((((-794)) . T))
-((((-523)) . T))
+((((-796)) . T))
+(|has| |#2| (-842))
+((((-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) . T))
+((((-501)) |has| |#2| (-566 (-501))) (((-825 (-357))) |has| |#2| (-566 (-825 (-357)))) (((-825 (-525))) |has| |#2| (-566 (-825 (-525)))))
+((((-796)) . T))
+((((-796)) . T))
+(((|#3|) |has| |#3| (-975)) (((-525)) -12 (|has| |#3| (-587 (-525))) (|has| |#3| (-975))))
+((((-1041 |#1| |#2|)) . T) (((-885 |#1|)) |has| |#2| (-566 (-1089))) (((-796)) . T))
+((((-885 |#1|)) |has| |#2| (-566 (-1089))) (((-1072)) -12 (|has| |#1| (-966 (-525))) (|has| |#2| (-566 (-1089)))) (((-825 (-525))) -12 (|has| |#1| (-566 (-825 (-525)))) (|has| |#2| (-566 (-825 (-525))))) (((-825 (-357))) -12 (|has| |#1| (-566 (-825 (-357)))) (|has| |#2| (-566 (-825 (-357))))) (((-501)) -12 (|has| |#1| (-566 (-501))) (|has| |#2| (-566 (-501)))))
+((((-1085 |#1|)) . T) (((-796)) . T))
+((((-796)) . T))
+((((-385 (-525))) |has| |#2| (-966 (-385 (-525)))) (((-525)) |has| |#2| (-966 (-525))) ((|#2|) . T) (((-798 |#1|)) . T))
+((((-112 |#1|)) . T) (($) . T) (((-385 (-525))) . T))
+((((-385 (-525))) |has| |#1| (-966 (-385 (-525)))) (((-525)) |has| |#1| (-966 (-525))) ((|#1|) . T) (((-1089)) . T))
+((((-796)) . T))
+((((-525)) . T))
((($) . T))
-((((-355)) |has| |#1| (-817 (-355))) (((-523)) |has| |#1| (-817 (-523))))
-((((-523)) . T))
+((((-357)) |has| |#1| (-819 (-357))) (((-525)) |has| |#1| (-819 (-525))))
+((((-525)) . T))
(((|#1|) . T))
-((((-794)) . T))
+((((-796)) . T))
(((|#1|) . T))
-((((-794)) . T))
-(((|#1|) |has| |#1| (-158)) (($) . T))
-((((-523)) . T) (((-383 (-523))) . T))
-(((|#1|) |has| |#1| (-286 |#1|)))
-((((-794)) . T))
-((((-355)) . T))
+((((-796)) . T))
+(((|#1|) |has| |#1| (-160)) (($) . T))
+((((-525)) . T) (((-385 (-525))) . T))
+(((|#1|) |has| |#1| (-288 |#1|)))
+((((-796)) . T))
+((((-357)) . T))
(((|#1|) . T))
(((|#1|) . T))
-((((-794)) . T))
-((((-383 (-523))) . T) (($) . T))
-((((-383 |#2|) |#3|) . T))
+((((-796)) . T))
+((((-385 (-525))) . T) (($) . T))
+((((-385 |#2|) |#3|) . T))
(((|#1|) . T))
-(|has| |#1| (-1016))
-(((|#2| (-456 (-1271 |#1|) (-710))) . T))
-((((-523) |#1|) . T))
+(|has| |#1| (-1018))
+(((|#2| (-458 (-4045 |#1|) (-712))) . T))
+((((-525) |#1|) . T))
(((|#2| |#2|) . T))
-(((|#1| (-495 (-1087))) . T))
-(-3255 (|has| |#2| (-124)) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-((((-523)) . T))
+(((|#1| (-497 (-1089))) . T))
+(-3321 (|has| |#2| (-126)) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+((((-525)) . T))
(((|#2|) . T))
(((|#2|) . T))
-((((-1087)) |has| |#1| (-831 (-1087))) (((-1001)) . T))
-(((|#1|) . T) (((-523)) |has| |#1| (-585 (-523))))
-(|has| |#1| (-515))
-((($) . T) (((-383 (-523))) . T))
+((((-1089)) |has| |#1| (-833 (-1089))) (((-1003)) . T))
+(((|#1|) . T) (((-525)) |has| |#1| (-587 (-525))))
+(|has| |#1| (-517))
+((($) . T) (((-385 (-525))) . T))
((($) . T))
((($) . T))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
(((|#1|) . T))
-((($) -3255 (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((((-794)) . T))
-((((-133)) . T))
-(((|#1|) . T) (((-383 (-523))) . T))
+((($) -3321 (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((((-796)) . T))
+((((-135)) . T))
+(((|#1|) . T) (((-385 (-525))) . T))
(((|#1|) . T))
(((|#1|) . T))
-((((-794)) . T))
+((((-796)) . T))
(((|#1|) . T))
-(|has| |#1| (-1063))
-(((|#1| (-495 (-796 |#2|)) (-796 |#2|) (-719 |#1| (-796 |#2|))) . T))
+(|has| |#1| (-1065))
+(((|#1| (-497 (-798 |#2|)) (-798 |#2|) (-721 |#1| (-798 |#2|))) . T))
(((|#1|) . T))
-((((-383 $) (-383 $)) |has| |#1| (-515)) (($ $) . T) ((|#1| |#1|) . T))
-(((|#1|) . T) (((-523)) |has| |#1| (-964 (-523))) (((-383 (-523))) |has| |#1| (-964 (-383 (-523)))))
-((((-794)) . T))
-((((-383 (-523))) |has| |#1| (-964 (-383 (-523)))) (((-523)) |has| |#1| (-964 (-523))) ((|#1|) . T) ((|#2|) . T))
-((((-1001)) . T) ((|#1|) . T) (((-523)) |has| |#1| (-964 (-523))) (((-383 (-523))) |has| |#1| (-964 (-383 (-523)))))
-((((-355)) -12 (|has| |#1| (-817 (-355))) (|has| |#2| (-817 (-355)))) (((-523)) -12 (|has| |#1| (-817 (-523))) (|has| |#2| (-817 (-523)))))
-((((-1155 |#1| |#2| |#3| |#4|)) . T))
-((((-523) |#1|) . T))
+((((-385 $) (-385 $)) |has| |#1| (-517)) (($ $) . T) ((|#1| |#1|) . T))
+(((|#1|) . T) (((-525)) |has| |#1| (-966 (-525))) (((-385 (-525))) |has| |#1| (-966 (-385 (-525)))))
+((((-796)) . T))
+((((-385 (-525))) |has| |#1| (-966 (-385 (-525)))) (((-525)) |has| |#1| (-966 (-525))) ((|#1|) . T) ((|#2|) . T))
+((((-1003)) . T) ((|#1|) . T) (((-525)) |has| |#1| (-966 (-525))) (((-385 (-525))) |has| |#1| (-966 (-385 (-525)))))
+((((-357)) -12 (|has| |#1| (-819 (-357))) (|has| |#2| (-819 (-357)))) (((-525)) -12 (|has| |#1| (-819 (-525))) (|has| |#2| (-819 (-525)))))
+((((-1157 |#1| |#2| |#3| |#4|)) . T))
+((((-525) |#1|) . T))
(((|#1| |#1|) . T))
((($) . T) ((|#2|) . T))
-(((|#1|) |has| |#1| (-158)) (($) . T))
-((($) . T))
-((((-638)) . T))
-((((-719 |#1| (-796 |#2|))) . T))
-((($) . T))
-((((-383 (-523))) . T) (($) . T))
-(|has| |#1| (-1016))
-(|has| |#1| (-1016))
-(|has| |#2| (-339))
-(|has| |#1| (-339))
-(|has| |#1| (-339))
-(|has| |#1| (-37 (-383 (-523))))
-((((-523)) . T))
-((((-1087)) -12 (|has| |#4| (-831 (-1087))) (|has| |#4| (-973))))
-((((-1087)) -12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973))))
-(((|#1|) . T))
-(|has| |#1| (-211))
-(((|#1| (-495 |#3|)) . T))
-(|has| |#1| (-344))
-(((|#2| (-218 (-1271 |#1|) (-710))) . T))
-(|has| |#1| (-344))
-(|has| |#1| (-344))
+(((|#1|) |has| |#1| (-160)) (($) . T))
+((($) . T))
+((((-640)) . T))
+((((-721 |#1| (-798 |#2|))) . T))
+((($) . T))
+((((-385 (-525))) . T) (($) . T))
+(|has| |#1| (-1018))
+(|has| |#1| (-1018))
+(|has| |#2| (-341))
+(|has| |#1| (-341))
+(|has| |#1| (-341))
+(|has| |#1| (-37 (-385 (-525))))
+((((-525)) . T))
+((((-1089)) -12 (|has| |#4| (-833 (-1089))) (|has| |#4| (-975))))
+((((-1089)) -12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975))))
+(((|#1|) . T))
+(|has| |#1| (-213))
+(((|#1| (-497 |#3|)) . T))
+(|has| |#1| (-346))
+(((|#2| (-220 (-4045 |#1|) (-712))) . T))
+(|has| |#1| (-346))
+(|has| |#1| (-346))
(((|#1|) . T) (($) . T))
-(((|#1| (-495 |#2|)) . T))
-(-3255 (|has| |#2| (-124)) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-(((|#1| (-710)) . T))
-(|has| |#1| (-515))
-(-3255 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-784)) (|has| |#2| (-973)))
+(((|#1| (-497 |#2|)) . T))
+(-3321 (|has| |#2| (-126)) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+(((|#1| (-712)) . T))
+(|has| |#1| (-517))
+(-3321 (|has| |#2| (-25)) (|has| |#2| (-126)) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-786)) (|has| |#2| (-975)))
(-12 (|has| |#1| (-21)) (|has| |#2| (-21)))
-((((-794)) . T))
-(-3255 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732))))
-(-3255 (|has| |#3| (-124)) (|has| |#3| (-158)) (|has| |#3| (-339)) (|has| |#3| (-732)) (|has| |#3| (-784)) (|has| |#3| (-973)))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-(((|#1|) |has| |#1| (-158)))
-(((|#4|) |has| |#4| (-973)))
-(((|#3|) |has| |#3| (-973)))
-(-12 (|has| |#1| (-339)) (|has| |#2| (-759)))
-(-12 (|has| |#1| (-339)) (|has| |#2| (-759)))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-786)) (|has| |#1| (-1016))))
-((((-499)) |has| |#1| (-564 (-499))))
-((((-383 |#2|)) . T) (((-383 (-523))) . T) (($) . T))
-((($ $) . T) ((#0=(-383 (-523)) #0#) . T))
-((((-794)) . T))
-((($) . T) (((-383 (-523))) . T))
-(((|#1|) . T))
-(((|#4|) |has| |#4| (-1016)) (((-523)) -12 (|has| |#4| (-964 (-523))) (|has| |#4| (-1016))) (((-383 (-523))) -12 (|has| |#4| (-964 (-383 (-523)))) (|has| |#4| (-1016))))
-(((|#3|) |has| |#3| (-1016)) (((-523)) -12 (|has| |#3| (-964 (-523))) (|has| |#3| (-1016))) (((-383 (-523))) -12 (|has| |#3| (-964 (-383 (-523)))) (|has| |#3| (-1016))))
-(|has| |#2| (-339))
-(((|#2|) |has| |#2| (-973)) (((-523)) -12 (|has| |#2| (-585 (-523))) (|has| |#2| (-973))))
-(((|#1|) . T))
-(|has| |#2| (-339))
-(((#0=(-383 (-523)) #0#) |has| |#2| (-37 (-383 (-523)))) ((|#2| |#2|) . T) (($ $) -3255 (|has| |#2| (-158)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
-((($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1| |#1|) . T) ((#0=(-383 (-523)) #0#) |has| |#1| (-37 (-383 (-523)))))
-(((|#1| |#1|) . T) (($ $) . T) ((#0=(-383 (-523)) #0#) . T))
-(((|#1| |#1|) . T) (($ $) . T) ((#0=(-383 (-523)) #0#) . T))
-(((|#1| |#1|) . T) (($ $) . T) ((#0=(-383 (-523)) #0#) . T))
+((((-796)) . T))
+(-3321 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-126)) (|has| |#2| (-126))) (-12 (|has| |#1| (-734)) (|has| |#2| (-734))))
+(-3321 (|has| |#3| (-126)) (|has| |#3| (-160)) (|has| |#3| (-341)) (|has| |#3| (-734)) (|has| |#3| (-786)) (|has| |#3| (-975)))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+(((|#1|) |has| |#1| (-160)))
+(((|#4|) |has| |#4| (-975)))
+(((|#3|) |has| |#3| (-975)))
+(-12 (|has| |#1| (-341)) (|has| |#2| (-761)))
+(-12 (|has| |#1| (-341)) (|has| |#2| (-761)))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-788)) (|has| |#1| (-1018))))
+((((-501)) |has| |#1| (-566 (-501))))
+((((-385 |#2|)) . T) (((-385 (-525))) . T) (($) . T))
+((($ $) . T) ((#0=(-385 (-525)) #0#) . T))
+((((-796)) . T))
+((($) . T) (((-385 (-525))) . T))
+(((|#1|) . T))
+(((|#4|) |has| |#4| (-1018)) (((-525)) -12 (|has| |#4| (-966 (-525))) (|has| |#4| (-1018))) (((-385 (-525))) -12 (|has| |#4| (-966 (-385 (-525)))) (|has| |#4| (-1018))))
+(((|#3|) |has| |#3| (-1018)) (((-525)) -12 (|has| |#3| (-966 (-525))) (|has| |#3| (-1018))) (((-385 (-525))) -12 (|has| |#3| (-966 (-385 (-525)))) (|has| |#3| (-1018))))
+(|has| |#2| (-341))
+(((|#2|) |has| |#2| (-975)) (((-525)) -12 (|has| |#2| (-587 (-525))) (|has| |#2| (-975))))
+(((|#1|) . T))
+(|has| |#2| (-341))
+(((#0=(-385 (-525)) #0#) |has| |#2| (-37 (-385 (-525)))) ((|#2| |#2|) . T) (($ $) -3321 (|has| |#2| (-160)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
+((($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1| |#1|) . T) ((#0=(-385 (-525)) #0#) |has| |#1| (-37 (-385 (-525)))))
+(((|#1| |#1|) . T) (($ $) . T) ((#0=(-385 (-525)) #0#) . T))
+(((|#1| |#1|) . T) (($ $) . T) ((#0=(-385 (-525)) #0#) . T))
+(((|#1| |#1|) . T) (($ $) . T) ((#0=(-385 (-525)) #0#) . T))
(((|#2| |#2|) . T))
-((((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) . T) (($) -3255 (|has| |#2| (-158)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
-((($) -3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(((|#1|) . T) (($) . T) (((-383 (-523))) . T))
-(((|#1|) . T) (($) . T) (((-383 (-523))) . T))
-(((|#1|) . T) (($) . T) (((-383 (-523))) . T))
-(((|#2|) . T))
-((($) . T))
-((((-794)) |has| |#1| (-1016)))
-((((-1155 |#1| |#2| |#3| |#4|)) . T))
-(((|#1|) . T))
-(((|#1|) . T))
-(|has| |#2| (-759))
-(|has| |#2| (-759))
-(|has| |#1| (-339))
-(|has| |#1| (-339))
-(|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))
-(|has| |#1| (-339))
-(((|#1|) |has| |#2| (-393 |#1|)))
-(((|#1|) |has| |#2| (-393 |#1|)))
-((((-841 |#1|)) . T) (((-383 (-523))) . T) (($) . T))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-786)) (|has| |#1| (-1016))))
-((((-499)) |has| |#1| (-564 (-499))))
-((((-794)) . T))
-((((-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) |has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))))
-(-3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840)))
-((((-523) |#1|) . T))
-((((-523) |#1|) . T))
-((((-523) |#1|) . T))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-((((-523) |#1|) . T))
-(((|#1|) . T))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-((((-1087)) |has| |#1| (-831 (-1087))) (((-757 (-1087))) . T))
-(-3255 (|has| |#3| (-124)) (|has| |#3| (-158)) (|has| |#3| (-339)) (|has| |#3| (-732)) (|has| |#3| (-784)) (|has| |#3| (-973)))
-((((-758 |#1|)) . T))
+((((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) . T) (($) -3321 (|has| |#2| (-160)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
+((($) -3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(((|#1|) . T) (($) . T) (((-385 (-525))) . T))
+(((|#1|) . T) (($) . T) (((-385 (-525))) . T))
+(((|#1|) . T) (($) . T) (((-385 (-525))) . T))
+(((|#2|) . T))
+((($) . T))
+((((-796)) |has| |#1| (-1018)))
+((((-1157 |#1| |#2| |#3| |#4|)) . T))
+(((|#1|) . T))
+(((|#1|) . T))
+(|has| |#2| (-761))
+(|has| |#2| (-761))
+(|has| |#1| (-341))
+(|has| |#1| (-341))
+(|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))
+(|has| |#1| (-341))
+(((|#1|) |has| |#2| (-395 |#1|)))
+(((|#1|) |has| |#2| (-395 |#1|)))
+((((-843 |#1|)) . T) (((-385 (-525))) . T) (($) . T))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-788)) (|has| |#1| (-1018))))
+((((-501)) |has| |#1| (-566 (-501))))
+((((-796)) . T))
+((((-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) |has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))))
+(-3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842)))
+((((-525) |#1|) . T))
+((((-525) |#1|) . T))
+((((-525) |#1|) . T))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+((((-525) |#1|) . T))
+(((|#1|) . T))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+((((-1089)) |has| |#1| (-833 (-1089))) (((-759 (-1089))) . T))
+(-3321 (|has| |#3| (-126)) (|has| |#3| (-160)) (|has| |#3| (-341)) (|has| |#3| (-734)) (|has| |#3| (-786)) (|has| |#3| (-975)))
+((((-760 |#1|)) . T))
(((|#1| |#2|) . T))
-((((-794)) . T))
-(-3255 (|has| |#3| (-158)) (|has| |#3| (-784)) (|has| |#3| (-973)))
+((((-796)) . T))
+(-3321 (|has| |#3| (-160)) (|has| |#3| (-786)) (|has| |#3| (-975)))
(((|#1| |#2|) . T))
-(|has| |#1| (-37 (-383 (-523))))
-((((-794)) . T))
-((((-1155 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-383 (-523))) . T))
-(((|#1|) |has| |#1| (-158)) (($) |has| |#1| (-515)) (((-383 (-523))) |has| |#1| (-515)))
-(((|#2|) . T) (((-523)) |has| |#2| (-585 (-523))))
-(|has| |#1| (-339))
-(-3255 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (-12 (|has| |#1| (-339)) (|has| |#2| (-211))))
-(|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))
-(|has| |#1| (-339))
-(((|#1|) . T))
-(((#0=(-383 (-523)) #0#) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) ((|#1| |#1|) . T))
-((((-523) |#1|) . T))
-((((-292 |#1|)) . T))
-(((#0=(-638) (-1083 #0#)) . T))
-((((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) (($) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) ((|#1|) . T))
+(|has| |#1| (-37 (-385 (-525))))
+((((-796)) . T))
+((((-1157 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-385 (-525))) . T))
+(((|#1|) |has| |#1| (-160)) (($) |has| |#1| (-517)) (((-385 (-525))) |has| |#1| (-517)))
+(((|#2|) . T) (((-525)) |has| |#2| (-587 (-525))))
+(|has| |#1| (-341))
+(-3321 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (-12 (|has| |#1| (-341)) (|has| |#2| (-213))))
+(|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))
+(|has| |#1| (-341))
+(((|#1|) . T))
+(((#0=(-385 (-525)) #0#) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) ((|#1| |#1|) . T))
+((((-525) |#1|) . T))
+((((-294 |#1|)) . T))
+(((#0=(-640) (-1085 #0#)) . T))
+((((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) (($) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) ((|#1|) . T))
(((|#1| |#2| |#3| |#4|) . T))
-(|has| |#1| (-784))
-((($ $) . T) ((#0=(-796 |#1|) $) . T) ((#0# |#2|) . T))
-((((-1039 |#1| (-1087))) . T) (((-757 (-1087))) . T) ((|#1|) . T) (((-523)) |has| |#1| (-964 (-523))) (((-383 (-523))) |has| |#1| (-964 (-383 (-523)))) (((-1087)) . T))
+(|has| |#1| (-786))
+((($ $) . T) ((#0=(-798 |#1|) $) . T) ((#0# |#2|) . T))
+((((-1041 |#1| (-1089))) . T) (((-759 (-1089))) . T) ((|#1|) . T) (((-525)) |has| |#1| (-966 (-525))) (((-385 (-525))) |has| |#1| (-966 (-385 (-525)))) (((-1089)) . T))
((($) . T))
(((|#2| |#1|) . T) ((|#2| $) . T) (($ $) . T))
-(((#0=(-1001) |#1|) . T) ((#0# $) . T) (($ $) . T))
-((($ $) . T) ((#0=(-1087) $) |has| |#1| (-211)) ((#0# |#1|) |has| |#1| (-211)) ((#1=(-1006 (-1087)) |#1|) . T) ((#1# $) . T))
+(((#0=(-1003) |#1|) . T) ((#0# $) . T) (($ $) . T))
+((($ $) . T) ((#0=(-1089) $) |has| |#1| (-213)) ((#0# |#1|) |has| |#1| (-213)) ((#1=(-1008 (-1089)) |#1|) . T) ((#1# $) . T))
((($) . T) ((|#2|) . T))
-((($) . T) ((|#2|) . T) (((-383 (-523))) |has| |#2| (-37 (-383 (-523)))))
-(|has| |#2| (-840))
-((($) . T) ((#0=(-1154 |#2| |#3| |#4|)) |has| #0# (-158)) (((-383 (-523))) |has| #0# (-37 (-383 (-523)))))
-((((-523) |#1|) . T))
-(((#0=(-1155 |#1| |#2| |#3| |#4|)) |has| #0# (-286 #0#)))
-((($) . T))
-(((|#1|) . T))
-((($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) ((#0=(-383 (-523)) #0#) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) ((|#2| |#2|) |has| |#1| (-339)) ((|#1| |#1|) . T))
-(((|#1| |#1|) . T) (($ $) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) ((#0=(-383 (-523)) #0#) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))))
-(|has| |#2| (-211))
-(|has| $ (-136))
-((((-794)) . T))
-((($) . T) (((-383 (-523))) -3255 (|has| |#1| (-339)) (|has| |#1| (-325))) ((|#1|) . T))
-((((-794)) . T))
-(|has| |#1| (-784))
-((((-1087)) -12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))
-((((-383 |#2|) |#3|) . T))
-(((|#1|) . T))
-((((-794)) . T))
-(((|#2| (-614 |#1|)) . T))
-(-12 (|has| |#1| (-284)) (|has| |#1| (-840)))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
+((($) . T) ((|#2|) . T) (((-385 (-525))) |has| |#2| (-37 (-385 (-525)))))
+(|has| |#2| (-842))
+((($) . T) ((#0=(-1156 |#2| |#3| |#4|)) |has| #0# (-160)) (((-385 (-525))) |has| #0# (-37 (-385 (-525)))))
+((((-525) |#1|) . T))
+(((#0=(-1157 |#1| |#2| |#3| |#4|)) |has| #0# (-288 #0#)))
+((($) . T))
+(((|#1|) . T))
+((($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) ((#0=(-385 (-525)) #0#) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) ((|#2| |#2|) |has| |#1| (-341)) ((|#1| |#1|) . T))
+(((|#1| |#1|) . T) (($ $) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) ((#0=(-385 (-525)) #0#) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))))
+(|has| |#2| (-213))
+(|has| $ (-138))
+((((-796)) . T))
+((($) . T) (((-385 (-525))) -3321 (|has| |#1| (-341)) (|has| |#1| (-327))) ((|#1|) . T))
+((((-796)) . T))
+(|has| |#1| (-786))
+((((-1089)) -12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))
+((((-385 |#2|) |#3|) . T))
+(((|#1|) . T))
+((((-796)) . T))
+(((|#2| (-616 |#1|)) . T))
+(-12 (|has| |#1| (-286)) (|has| |#1| (-842)))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
(((|#4|) . T))
-(|has| |#1| (-515))
-((($) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))) ((|#2|) |has| |#1| (-339)) ((|#1|) . T))
-((((-1087)) -3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))))
-(((|#1|) . T) (($) -3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-515))) (((-383 (-523))) -3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-339))))
-((((-1087)) -12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087)))))
-((((-1087)) -12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087)))))
-(((|#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))
-((((-523) |#1|) . T))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840)))
-(((|#1|) . T))
-(((|#1| (-495 (-757 (-1087)))) . T))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(((|#1|) . T))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-(((|#1|) . T))
-(-3255 (|has| |#2| (-124)) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-(-3255 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732))))
-((((-1161 |#1| |#2| |#3|)) |has| |#1| (-339)))
-((($) . T) (((-801 |#1|)) . T) (((-383 (-523))) . T))
-((((-1161 |#1| |#2| |#3|)) |has| |#1| (-339)))
-(|has| |#1| (-515))
-(((|#1|) . T))
-(((|#1|) . T))
-(((|#1|) . T))
-((((-383 |#2|)) . T))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-325)))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-786)) (|has| |#1| (-1016))))
-((((-499)) |has| |#1| (-564 (-499))))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-786)) (|has| |#1| (-1016))))
-((((-499)) |has| |#1| (-564 (-499))))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-786)) (|has| |#1| (-1016))))
-((((-499)) |has| |#1| (-564 (-499))))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
-(((|#1|) . T))
-(((|#2| |#2|) . T) ((#0=(-383 (-523)) #0#) . T) (($ $) . T))
-((((-523)) . T))
-((((-794)) . T))
-(((|#2|) . T) (((-383 (-523))) . T) (($) . T))
-((((-536 |#1|)) . T) (((-383 (-523))) . T) (($) . T))
-((((-794)) . T))
-((((-383 (-523))) . T) (($) . T))
-((((-523) |#1|) . T))
-((((-794)) . T))
-((($ $) . T) (((-1087) $) . T))
-((((-1161 |#1| |#2| |#3|)) . T))
-((((-1161 |#1| |#2| |#3|)) . T) (((-1133 |#1| |#2| |#3|)) . T))
-(((|#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1| (-495 (-796 |#2|)) (-796 |#2|) (-719 |#1| (-796 |#2|))) . T))
-((((-499)) |has| |#2| (-564 (-499))) (((-823 (-355))) |has| |#2| (-564 (-823 (-355)))) (((-823 (-523))) |has| |#2| (-564 (-823 (-523)))))
-((((-794)) . T))
-((((-794)) . T))
-((((-823 (-523))) -12 (|has| |#1| (-564 (-823 (-523)))) (|has| |#3| (-564 (-823 (-523))))) (((-823 (-355))) -12 (|has| |#1| (-564 (-823 (-355)))) (|has| |#3| (-564 (-823 (-355))))) (((-499)) -12 (|has| |#1| (-564 (-499))) (|has| |#3| (-564 (-499)))))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-(((|#1| |#2| (-218 |#1| |#2|) (-218 |#1| |#2|)) . T))
-((((-794)) . T))
-((((-1161 |#1| |#2| |#3|)) |has| |#1| (-339)))
-((((-1087)) . T) (((-794)) . T))
-(|has| |#1| (-339))
-((((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) |has| |#2| (-158)) (($) -3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840))))
+(|has| |#1| (-517))
+((($) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))) ((|#2|) |has| |#1| (-341)) ((|#1|) . T))
+((((-1089)) -3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))))
+(((|#1|) . T) (($) -3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-517))) (((-385 (-525))) -3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-341))))
+((((-1089)) -12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089)))))
+((((-1089)) -12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089)))))
+(((|#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))
+((((-525) |#1|) . T))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842)))
+(((|#1|) . T))
+(((|#1| (-497 (-759 (-1089)))) . T))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(((|#1|) . T))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+(((|#1|) . T))
+(-3321 (|has| |#2| (-126)) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+(-3321 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-126)) (|has| |#2| (-126))) (-12 (|has| |#1| (-734)) (|has| |#2| (-734))))
+((((-1163 |#1| |#2| |#3|)) |has| |#1| (-341)))
+((($) . T) (((-803 |#1|)) . T) (((-385 (-525))) . T))
+((((-1163 |#1| |#2| |#3|)) |has| |#1| (-341)))
+(|has| |#1| (-517))
+(((|#1|) . T))
+(((|#1|) . T))
+(((|#1|) . T))
+((((-385 |#2|)) . T))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-327)))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-788)) (|has| |#1| (-1018))))
+((((-501)) |has| |#1| (-566 (-501))))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-788)) (|has| |#1| (-1018))))
+((((-501)) |has| |#1| (-566 (-501))))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-788)) (|has| |#1| (-1018))))
+((((-501)) |has| |#1| (-566 (-501))))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
+(((|#1|) . T))
+(((|#2| |#2|) . T) ((#0=(-385 (-525)) #0#) . T) (($ $) . T))
+((((-525)) . T))
+((((-796)) . T))
+(((|#2|) . T) (((-385 (-525))) . T) (($) . T))
+((((-538 |#1|)) . T) (((-385 (-525))) . T) (($) . T))
+((((-796)) . T))
+((((-385 (-525))) . T) (($) . T))
+((((-525) |#1|) . T))
+((((-796)) . T))
+((($ $) . T) (((-1089) $) . T))
+((((-1163 |#1| |#2| |#3|)) . T))
+((((-1163 |#1| |#2| |#3|)) . T) (((-1135 |#1| |#2| |#3|)) . T))
+(((|#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1| (-497 (-798 |#2|)) (-798 |#2|) (-721 |#1| (-798 |#2|))) . T))
+((((-501)) |has| |#2| (-566 (-501))) (((-825 (-357))) |has| |#2| (-566 (-825 (-357)))) (((-825 (-525))) |has| |#2| (-566 (-825 (-525)))))
+((((-796)) . T))
+((((-796)) . T))
+((((-825 (-525))) -12 (|has| |#1| (-566 (-825 (-525)))) (|has| |#3| (-566 (-825 (-525))))) (((-825 (-357))) -12 (|has| |#1| (-566 (-825 (-357)))) (|has| |#3| (-566 (-825 (-357))))) (((-501)) -12 (|has| |#1| (-566 (-501))) (|has| |#3| (-566 (-501)))))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+(((|#1| |#2| (-220 |#1| |#2|) (-220 |#1| |#2|)) . T))
+((((-796)) . T))
+((((-1163 |#1| |#2| |#3|)) |has| |#1| (-341)))
+((((-1089)) . T) (((-796)) . T))
+(|has| |#1| (-341))
+((((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) |has| |#2| (-160)) (($) -3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842))))
(((|#2|) . T) ((|#6|) . T))
-((($) . T) (((-383 (-523))) |has| |#2| (-37 (-383 (-523)))) ((|#2|) . T))
-((($) -3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((($) -3255 (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-((((-1020)) . T))
-((((-794)) . T))
-((($) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) . T))
-((($) . T))
-((($) -3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840))) ((|#1|) |has| |#1| (-158)) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(|has| |#2| (-840))
-(|has| |#1| (-840))
-(((|#1|) . T))
-(((|#1|) . T))
-(((|#1| |#1|) |has| |#1| (-158)))
-((((-638)) . T))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
-(((|#1|) |has| |#1| (-158)))
-(((|#1|) |has| |#1| (-158)))
-((((-383 (-523))) . T) (($) . T))
-(((|#1| (-523)) . T))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-325)))
-(|has| |#1| (-339))
-(|has| |#1| (-339))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-325)))
-(-3255 (|has| |#1| (-158)) (|has| |#1| (-515)))
-(((|#1| (-523)) . T))
-(((|#1| (-383 (-523))) . T))
-(((|#1| (-710)) . T))
-((((-383 (-523))) . T))
-(((|#1| (-495 |#2|) |#2|) . T))
-((((-523) |#1|) . T))
-((((-523) |#1|) . T))
-(|has| |#1| (-1016))
-((((-523) |#1|) . T))
-(((|#1|) . T))
-(((|#1|) . T))
-((((-823 (-355))) . T) (((-823 (-523))) . T) (((-1087)) . T) (((-499)) . T))
-(((|#1|) . T))
-((((-794)) . T))
-(-3255 (|has| |#2| (-124)) (|has| |#2| (-158)) (|has| |#2| (-339)) (|has| |#2| (-732)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-(-3255 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732))))
-((((-523)) . T))
-((((-523)) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
+((($) . T) (((-385 (-525))) |has| |#2| (-37 (-385 (-525)))) ((|#2|) . T))
+((($) -3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((((-1022)) . T))
+((((-796)) . T))
+((($) -3321 (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+((($) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) . T))
+((($) . T))
+((($) -3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842))) ((|#1|) |has| |#1| (-160)) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(|has| |#2| (-842))
+(|has| |#1| (-842))
+(((|#1|) . T))
+(((|#1|) . T))
+(((|#1| |#1|) |has| |#1| (-160)))
+((((-640)) . T))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
+(((|#1|) |has| |#1| (-160)))
+(((|#1|) |has| |#1| (-160)))
+((((-385 (-525))) . T) (($) . T))
+(((|#1| (-525)) . T))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-327)))
+(|has| |#1| (-341))
+(|has| |#1| (-341))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-327)))
+(-3321 (|has| |#1| (-160)) (|has| |#1| (-517)))
+(((|#1| (-525)) . T))
+(((|#1| (-385 (-525))) . T))
+(((|#1| (-712)) . T))
+((((-385 (-525))) . T))
+(((|#1| (-497 |#2|) |#2|) . T))
+((((-525) |#1|) . T))
+((((-525) |#1|) . T))
+(|has| |#1| (-1018))
+((((-525) |#1|) . T))
+(((|#1|) . T))
+(((|#1|) . T))
+((((-825 (-357))) . T) (((-825 (-525))) . T) (((-1089)) . T) (((-501)) . T))
+(((|#1|) . T))
+((((-796)) . T))
+(-3321 (|has| |#2| (-126)) (|has| |#2| (-160)) (|has| |#2| (-341)) (|has| |#2| (-734)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+(-3321 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-126)) (|has| |#2| (-126))) (-12 (|has| |#1| (-734)) (|has| |#2| (-734))))
+((((-525)) . T))
+((((-525)) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
(((|#1| |#2|) . T))
(((|#1|) . T))
-(-3255 (|has| |#2| (-158)) (|has| |#2| (-784)) (|has| |#2| (-973)))
-((((-1087)) -12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973))))
-(-3255 (-12 (|has| |#1| (-448)) (|has| |#2| (-448))) (-12 (|has| |#1| (-666)) (|has| |#2| (-666))))
-(|has| |#1| (-134))
+(-3321 (|has| |#2| (-160)) (|has| |#2| (-786)) (|has| |#2| (-975)))
+((((-1089)) -12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975))))
+(-3321 (-12 (|has| |#1| (-450)) (|has| |#2| (-450))) (-12 (|has| |#1| (-668)) (|has| |#2| (-668))))
(|has| |#1| (-136))
-(|has| |#1| (-339))
+(|has| |#1| (-138))
+(|has| |#1| (-341))
(((|#1| |#2|) . T))
(((|#1| |#2|) . T))
-(|has| |#1| (-211))
-((((-794)) . T))
-(((|#1| (-710) (-1001)) . T))
-((((-523) |#1|) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-523) |#1|) . T))
-((((-523) |#1|) . T))
+(|has| |#1| (-213))
+((((-796)) . T))
+(((|#1| (-712) (-1003)) . T))
+((((-525) |#1|) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-525) |#1|) . T))
+((((-525) |#1|) . T))
((((-112 |#1|)) . T))
-((((-383 (-523))) . T) (((-523)) . T))
-(((|#2|) |has| |#2| (-973)))
-((((-383 (-523))) . T) (($) . T))
-(((|#2|) . T))
-((((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) |has| |#1| (-158)) (($) |has| |#1| (-515)))
-((((-523)) . T))
-((((-523)) . T))
-((((-1070) (-1087) (-523) (-203) (-794)) . T))
+((((-385 (-525))) . T) (((-525)) . T))
+(((|#2|) |has| |#2| (-975)))
+((((-385 (-525))) . T) (($) . T))
+(((|#2|) . T))
+((((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) |has| |#1| (-160)) (($) |has| |#1| (-517)))
+((((-525)) . T))
+((((-525)) . T))
+((((-1072) (-1089) (-525) (-205) (-796)) . T))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1| |#2|) . T))
-(-3255 (|has| |#1| (-325)) (|has| |#1| (-344)))
+(-3321 (|has| |#1| (-327)) (|has| |#1| (-346)))
(((|#1| |#2|) . T))
((($) . T) ((|#1|) . T))
-((((-794)) . T))
-((($) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((|#1|) . T))
-((($) . T) ((|#1|) . T) (((-383 (-523))) |has| |#1| (-37 (-383 (-523)))))
-(((|#2|) |has| |#2| (-1016)) (((-523)) -12 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016))) (((-383 (-523))) -12 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016))))
-((((-499)) |has| |#1| (-564 (-499))))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-786)) (|has| |#1| (-1016))))
-((($) . T) (((-383 (-523))) . T))
-(|has| |#1| (-840))
-(|has| |#1| (-840))
-((((-203)) -12 (|has| |#1| (-339)) (|has| |#2| (-949))) (((-355)) -12 (|has| |#1| (-339)) (|has| |#2| (-949))) (((-823 (-355))) -12 (|has| |#1| (-339)) (|has| |#2| (-564 (-823 (-355))))) (((-823 (-523))) -12 (|has| |#1| (-339)) (|has| |#2| (-564 (-823 (-523))))) (((-499)) -12 (|has| |#1| (-339)) (|has| |#2| (-564 (-499)))))
-((((-794)) . T))
-((((-794)) . T))
+((((-796)) . T))
+((($) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((|#1|) . T))
+((($) . T) ((|#1|) . T) (((-385 (-525))) |has| |#1| (-37 (-385 (-525)))))
+(((|#2|) |has| |#2| (-1018)) (((-525)) -12 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018))) (((-385 (-525))) -12 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018))))
+((((-501)) |has| |#1| (-566 (-501))))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-788)) (|has| |#1| (-1018))))
+((($) . T) (((-385 (-525))) . T))
+(|has| |#1| (-842))
+(|has| |#1| (-842))
+((((-205)) -12 (|has| |#1| (-341)) (|has| |#2| (-951))) (((-357)) -12 (|has| |#1| (-341)) (|has| |#2| (-951))) (((-825 (-357))) -12 (|has| |#1| (-341)) (|has| |#2| (-566 (-825 (-357))))) (((-825 (-525))) -12 (|has| |#1| (-341)) (|has| |#2| (-566 (-825 (-525))))) (((-501)) -12 (|has| |#1| (-341)) (|has| |#2| (-566 (-501)))))
+((((-796)) . T))
+((((-796)) . T))
(((|#2| |#2|) . T))
-(((|#1| |#1|) |has| |#1| (-158)))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-515)))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-784)))
-(((|#2|) . T))
-(-3255 (|has| |#1| (-21)) (|has| |#1| (-784)))
-(((|#1|) |has| |#1| (-158)))
-(((|#1|) . T))
-(((|#1|) . T))
-((((-794)) -3255 (-12 (|has| |#1| (-563 (-794))) (|has| |#2| (-563 (-794)))) (-12 (|has| |#1| (-1016)) (|has| |#2| (-1016)))))
-((((-383 |#2|) |#3|) . T))
-((((-383 (-523))) . T) (($) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-339))
-((($ $) . T) ((#0=(-383 (-523)) #0#) . T))
-(|has| (-383 |#2|) (-136))
-(|has| (-383 |#2|) (-134))
-((((-638)) . T))
-(((|#1|) . T) (((-383 (-523))) . T) (((-523)) . T) (($) . T))
-(((#0=(-523) #0#) . T))
-((($) . T) (((-383 (-523))) . T))
-(-3255 (|has| |#4| (-158)) (|has| |#4| (-784)) (|has| |#4| (-973)))
-(-3255 (|has| |#3| (-158)) (|has| |#3| (-784)) (|has| |#3| (-973)))
-(|has| |#4| (-732))
-(-3255 (|has| |#4| (-732)) (|has| |#4| (-784)))
-(|has| |#4| (-784))
-(|has| |#3| (-732))
-(-3255 (|has| |#3| (-732)) (|has| |#3| (-784)))
-(|has| |#3| (-784))
-((((-523)) . T))
-(((|#2|) . T))
-((((-1087)) -3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))))
-((((-1087)) -12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087)))))
-((((-1087)) -12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087)))))
+(((|#1| |#1|) |has| |#1| (-160)))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-517)))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-786)))
+(((|#2|) . T))
+(-3321 (|has| |#1| (-21)) (|has| |#1| (-786)))
+(((|#1|) |has| |#1| (-160)))
+(((|#1|) . T))
+(((|#1|) . T))
+((((-796)) -3321 (-12 (|has| |#1| (-565 (-796))) (|has| |#2| (-565 (-796)))) (-12 (|has| |#1| (-1018)) (|has| |#2| (-1018)))))
+((((-385 |#2|) |#3|) . T))
+((((-385 (-525))) . T) (($) . T))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-341))
+((($ $) . T) ((#0=(-385 (-525)) #0#) . T))
+(|has| (-385 |#2|) (-138))
+(|has| (-385 |#2|) (-136))
+((((-640)) . T))
+(((|#1|) . T) (((-385 (-525))) . T) (((-525)) . T) (($) . T))
+(((#0=(-525) #0#) . T))
+((($) . T) (((-385 (-525))) . T))
+(-3321 (|has| |#4| (-160)) (|has| |#4| (-786)) (|has| |#4| (-975)))
+(-3321 (|has| |#3| (-160)) (|has| |#3| (-786)) (|has| |#3| (-975)))
+(|has| |#4| (-734))
+(-3321 (|has| |#4| (-734)) (|has| |#4| (-786)))
+(|has| |#4| (-786))
+(|has| |#3| (-734))
+(-3321 (|has| |#3| (-734)) (|has| |#3| (-786)))
+(|has| |#3| (-786))
+((((-525)) . T))
+(((|#2|) . T))
+((((-1089)) -3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))))
+((((-1089)) -12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089)))))
+((((-1089)) -12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089)))))
(((|#1| |#1|) . T) (($ $) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T) (($) . T))
(((|#1|) . T))
-((((-796 |#1|)) . T))
-((((-1085 |#1| |#2| |#3|)) |has| |#1| (-339)))
-((((-1085 |#1| |#2| |#3|)) |has| |#1| (-339)))
-((((-1052 |#1| |#2|)) . T))
-(((|#2|) . T) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) . T))
-((($) . T))
-(|has| |#1| (-949))
-(((|#2|) . T) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-((((-794)) . T))
-((((-499)) |has| |#2| (-564 (-499))) (((-823 (-523))) |has| |#2| (-564 (-823 (-523)))) (((-823 (-355))) |has| |#2| (-564 (-823 (-355)))) (((-355)) . #0=(|has| |#2| (-949))) (((-203)) . #0#))
-((((-1087) (-51)) . T))
-(|has| |#1| (-37 (-383 (-523))))
-(|has| |#1| (-37 (-383 (-523))))
+((((-798 |#1|)) . T))
+((((-1087 |#1| |#2| |#3|)) |has| |#1| (-341)))
+((((-1087 |#1| |#2| |#3|)) |has| |#1| (-341)))
+((((-1054 |#1| |#2|)) . T))
+(((|#2|) . T) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) . T))
+((($) . T))
+(|has| |#1| (-951))
+(((|#2|) . T) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+((((-796)) . T))
+((((-501)) |has| |#2| (-566 (-501))) (((-825 (-525))) |has| |#2| (-566 (-825 (-525)))) (((-825 (-357))) |has| |#2| (-566 (-825 (-357)))) (((-357)) . #0=(|has| |#2| (-951))) (((-205)) . #0#))
+((((-1089) (-51)) . T))
+(|has| |#1| (-37 (-385 (-525))))
+(|has| |#1| (-37 (-385 (-525))))
(((|#2|) . T))
((($ $) . T))
-((((-383 (-523))) . T) (((-638)) . T) (($) . T))
-((((-1085 |#1| |#2| |#3|)) . T))
-((((-1085 |#1| |#2| |#3|)) . T) (((-1078 |#1| |#2| |#3|)) . T))
-((((-794)) . T))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
-((((-523) |#1|) . T))
-((((-1085 |#1| |#2| |#3|)) |has| |#1| (-339)))
+((((-385 (-525))) . T) (((-640)) . T) (($) . T))
+((((-1087 |#1| |#2| |#3|)) . T))
+((((-1087 |#1| |#2| |#3|)) . T) (((-1080 |#1| |#2| |#3|)) . T))
+((((-796)) . T))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
+((((-525) |#1|) . T))
+((((-1087 |#1| |#2| |#3|)) |has| |#1| (-341)))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1|) . T))
(((|#2|) . T))
-(|has| |#2| (-339))
-(((|#3|) . T) ((|#2|) . T) (($) -3255 (|has| |#4| (-158)) (|has| |#4| (-784)) (|has| |#4| (-973))) ((|#4|) -3255 (|has| |#4| (-158)) (|has| |#4| (-339)) (|has| |#4| (-973))))
-(((|#2|) . T) (($) -3255 (|has| |#3| (-158)) (|has| |#3| (-784)) (|has| |#3| (-973))) ((|#3|) -3255 (|has| |#3| (-158)) (|has| |#3| (-339)) (|has| |#3| (-973))))
+(|has| |#2| (-341))
+(((|#3|) . T) ((|#2|) . T) (($) -3321 (|has| |#4| (-160)) (|has| |#4| (-786)) (|has| |#4| (-975))) ((|#4|) -3321 (|has| |#4| (-160)) (|has| |#4| (-341)) (|has| |#4| (-975))))
+(((|#2|) . T) (($) -3321 (|has| |#3| (-160)) (|has| |#3| (-786)) (|has| |#3| (-975))) ((|#3|) -3321 (|has| |#3| (-160)) (|has| |#3| (-341)) (|has| |#3| (-975))))
(((|#1|) . T))
(((|#1|) . T))
-(|has| |#1| (-339))
+(|has| |#1| (-341))
((((-112 |#1|)) . T))
(((|#1|) . T))
(((|#1|) . T))
-((((-383 (-523))) |has| |#2| (-964 (-383 (-523)))) (((-523)) |has| |#2| (-964 (-523))) ((|#2|) . T) (((-796 |#1|)) . T))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
+((((-385 (-525))) |has| |#2| (-966 (-385 (-525)))) (((-525)) |has| |#2| (-966 (-525))) ((|#2|) . T) (((-798 |#1|)) . T))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
(((|#1|) . T))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
-((((-523) |#1|) . T))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
+((((-525) |#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-(((|#2| $) -12 (|has| |#1| (-339)) (|has| |#2| (-263 |#2| |#2|))) (($ $) . T))
+(((|#2| $) -12 (|has| |#1| (-341)) (|has| |#2| (-265 |#2| |#2|))) (($ $) . T))
((($ $) . T))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-427)) (|has| |#1| (-840)))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
-((((-794)) . T))
-((((-794)) . T))
-((((-794)) . T))
-(((|#1| (-495 |#2|)) . T))
-((((-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) . T))
-(((|#1| (-523)) . T))
-(((|#1| (-383 (-523))) . T))
-(((|#1| (-710)) . T))
-((((-112 |#1|)) . T) (($) . T) (((-383 (-523))) . T))
-(-3255 (|has| |#2| (-427)) (|has| |#2| (-515)) (|has| |#2| (-840)))
-(-3255 (|has| |#1| (-427)) (|has| |#1| (-515)) (|has| |#1| (-840)))
-((($) . T))
-(((|#2| (-495 (-796 |#1|))) . T))
-((((-523) |#1|) . T))
-(((|#2|) . T))
-(((|#2| (-710)) . T))
-((((-794)) -3255 (|has| |#1| (-563 (-794))) (|has| |#1| (-1016))))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-429)) (|has| |#1| (-842)))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
+((((-796)) . T))
+((((-796)) . T))
+((((-796)) . T))
+(((|#1| (-497 |#2|)) . T))
+((((-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) . T))
+(((|#1| (-525)) . T))
+(((|#1| (-385 (-525))) . T))
+(((|#1| (-712)) . T))
+((((-112 |#1|)) . T) (($) . T) (((-385 (-525))) . T))
+(-3321 (|has| |#2| (-429)) (|has| |#2| (-517)) (|has| |#2| (-842)))
+(-3321 (|has| |#1| (-429)) (|has| |#1| (-517)) (|has| |#1| (-842)))
+((($) . T))
+(((|#2| (-497 (-798 |#1|))) . T))
+((((-525) |#1|) . T))
+(((|#2|) . T))
+(((|#2| (-712)) . T))
+((((-796)) -3321 (|has| |#1| (-565 (-796))) (|has| |#1| (-1018))))
(((|#1|) . T))
(((|#1| |#2|) . T))
-((((-1070) |#1|) . T))
-((((-383 |#2|)) . T))
-((((-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T))
-(|has| |#1| (-515))
-(|has| |#1| (-515))
+((((-1072) |#1|) . T))
+((((-385 |#2|)) . T))
+((((-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T))
+(|has| |#1| (-517))
+(|has| |#1| (-517))
((($) . T) ((|#2|) . T))
(((|#1|) . T))
(((|#1| |#2|) . T))
-(((|#2| $) |has| |#2| (-263 |#2| |#2|)))
-(((|#1| (-589 |#1|)) |has| |#1| (-784)))
-(-3255 (|has| |#1| (-211)) (|has| |#1| (-325)))
-(-3255 (|has| |#1| (-339)) (|has| |#1| (-325)))
-(|has| |#1| (-1016))
-(((|#1|) . T))
-((((-383 (-523))) . T) (($) . T))
-((((-927 |#1|)) . T) ((|#1|) . T) (((-523)) -3255 (|has| (-927 |#1|) (-964 (-523))) (|has| |#1| (-964 (-523)))) (((-383 (-523))) -3255 (|has| (-927 |#1|) (-964 (-383 (-523)))) (|has| |#1| (-964 (-383 (-523))))))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-((((-1087)) |has| |#1| (-831 (-1087))))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))
-(((|#1| (-554 |#1| |#3|) (-554 |#1| |#2|)) . T))
+(((|#2| $) |has| |#2| (-265 |#2| |#2|)))
+(((|#1| (-591 |#1|)) |has| |#1| (-786)))
+(-3321 (|has| |#1| (-213)) (|has| |#1| (-327)))
+(-3321 (|has| |#1| (-341)) (|has| |#1| (-327)))
+(|has| |#1| (-1018))
+(((|#1|) . T))
+((((-385 (-525))) . T) (($) . T))
+((((-929 |#1|)) . T) ((|#1|) . T) (((-525)) -3321 (|has| (-929 |#1|) (-966 (-525))) (|has| |#1| (-966 (-525)))) (((-385 (-525))) -3321 (|has| (-929 |#1|) (-966 (-385 (-525)))) (|has| |#1| (-966 (-385 (-525))))))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+((((-1089)) |has| |#1| (-833 (-1089))))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))
+(((|#1| (-556 |#1| |#3|) (-556 |#1| |#2|)) . T))
(((|#1|) . T))
(((|#1| |#2| |#3| |#4|) . T))
-(((#0=(-1052 |#1| |#2|) #0#) |has| (-1052 |#1| |#2|) (-286 (-1052 |#1| |#2|))))
-(((|#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((#0=(-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) #0#) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))))
-(((#0=(-112 |#1|)) |has| #0# (-286 #0#)))
-(-3255 (|has| |#1| (-786)) (|has| |#1| (-1016)))
+(((#0=(-1054 |#1| |#2|) #0#) |has| (-1054 |#1| |#2|) (-288 (-1054 |#1| |#2|))))
+(((|#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((#0=(-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) #0#) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))))
+(((#0=(-112 |#1|)) |has| #0# (-288 #0#)))
+(-3321 (|has| |#1| (-788)) (|has| |#1| (-1018)))
((($ $) . T))
-((($ $) . T) ((#0=(-796 |#1|) $) . T) ((#0# |#2|) . T))
-((($ $) . T) ((|#2| $) |has| |#1| (-211)) ((|#2| |#1|) |has| |#1| (-211)) ((|#3| |#1|) . T) ((|#3| $) . T))
-(((-605 . -1016) T) ((-241 . -484) 142439) ((-225 . -484) 142382) ((-530 . -107) 142367) ((-495 . -23) T) ((-223 . -1016) 142317) ((-113 . -286) 142274) ((-453 . -484) 142066) ((-633 . -97) T) ((-1053 . -484) 141985) ((-366 . -124) T) ((-1180 . -905) 141954) ((-554 . -462) 141938) ((-568 . -124) T) ((-758 . -782) T) ((-492 . -55) 141888) ((-57 . -484) 141821) ((-488 . -484) 141754) ((-394 . -831) 141713) ((-155 . -973) T) ((-486 . -484) 141646) ((-468 . -484) 141579) ((-467 . -484) 141512) ((-738 . -964) 141299) ((-638 . -37) 141264) ((-319 . -325) T) ((-1011 . -1010) 141248) ((-1011 . -1016) 141226) ((-155 . -221) 141177) ((-155 . -211) 141128) ((-1011 . -1012) 141086) ((-803 . -263) 141044) ((-203 . -734) T) ((-203 . -731) T) ((-633 . -261) NIL) ((-1062 . -1100) 141023) ((-383 . -921) 141007) ((-640 . -21) T) ((-640 . -25) T) ((-1182 . -591) 140981) ((-292 . -147) 140960) ((-292 . -132) 140939) ((-1062 . -102) 140889) ((-126 . -25) T) ((-39 . -209) 140866) ((-112 . -21) T) ((-112 . -25) T) ((-558 . -265) 140842) ((-450 . -265) 140821) ((-1142 . -973) T) ((-791 . -973) T) ((-738 . -314) 140805) ((-113 . -1063) NIL) ((-89 . -563) 140737) ((-452 . -124) T) ((-546 . -1123) T) ((-1142 . -302) 140714) ((-530 . -973) T) ((-1142 . -211) T) ((-605 . -657) 140698) ((-888 . -265) 140675) ((-58 . -33) T) ((-984 . -734) T) ((-984 . -731) T) ((-755 . -666) T) ((-671 . -46) 140640) ((-570 . -37) 140627) ((-331 . -267) T) ((-328 . -267) T) ((-320 . -267) T) ((-241 . -267) 140558) ((-225 . -267) 140489) ((-951 . -97) T) ((-389 . -666) T) ((-113 . -37) 140434) ((-389 . -448) T) ((-330 . -97) T) ((-1118 . -980) T) ((-651 . -980) T) ((-1085 . -46) 140411) ((-1084 . -46) 140381) ((-1078 . -46) 140358) ((-962 . -140) 140304) ((-841 . -267) T) ((-1040 . -46) 140276) ((-633 . -286) NIL) ((-485 . -563) 140258) ((-480 . -563) 140240) ((-478 . -563) 140222) ((-303 . -1016) 140172) ((-652 . -427) 140103) ((-47 . -97) T) ((-1153 . -263) 140088) ((-1132 . -263) 140008) ((-589 . -609) 139992) ((-589 . -594) 139976) ((-315 . -21) T) ((-315 . -25) T) ((-39 . -325) NIL) ((-159 . -21) T) ((-159 . -25) T) ((-589 . -349) 139960) ((-554 . -263) 139937) ((-364 . -97) T) ((-1034 . -132) T) ((-122 . -563) 139869) ((-805 . -1016) T) ((-601 . -387) 139853) ((-654 . -563) 139835) ((-148 . -563) 139817) ((-144 . -563) 139799) ((-1182 . -666) T) ((-1018 . -33) T) ((-802 . -734) NIL) ((-802 . -731) NIL) ((-793 . -786) T) ((-671 . -817) NIL) ((-1191 . -124) T) ((-357 . -124) T) ((-835 . -97) T) ((-671 . -964) 139677) ((-495 . -124) T) ((-1005 . -387) 139661) ((-928 . -462) 139645) ((-113 . -376) 139622) ((-1078 . -1123) 139601) ((-721 . -387) 139585) ((-719 . -387) 139569) ((-874 . -33) T) ((-633 . -1063) NIL) ((-228 . -591) 139406) ((-227 . -591) 139230) ((-756 . -851) 139209) ((-429 . -387) 139193) ((-554 . -19) 139177) ((-1058 . -1117) 139146) ((-1078 . -817) NIL) ((-1078 . -815) 139098) ((-554 . -556) 139075) ((-1110 . -563) 139007) ((-1086 . -563) 138989) ((-60 . -371) T) ((-1084 . -964) 138924) ((-1078 . -964) 138890) ((-633 . -37) 138840) ((-449 . -263) 138825) ((-671 . -353) 138809) ((-601 . -980) T) ((-1153 . -930) 138775) ((-1132 . -930) 138741) ((-985 . -1100) 138716) ((-803 . -564) 138524) ((-803 . -563) 138506) ((-1097 . -462) 138443) ((-394 . -949) 138422) ((-47 . -286) 138409) ((-985 . -102) 138355) ((-453 . -462) 138292) ((-489 . -1123) T) ((-1053 . -462) 138263) ((-1078 . -314) 138215) ((-1078 . -353) 138167) ((-413 . -97) T) ((-1005 . -980) T) ((-228 . -33) T) ((-227 . -33) T) ((-721 . -980) T) ((-719 . -980) T) ((-671 . -831) 138144) ((-429 . -980) T) ((-57 . -462) 138128) ((-961 . -979) 138102) ((-488 . -462) 138086) ((-486 . -462) 138070) ((-468 . -462) 138054) ((-467 . -462) 138038) ((-223 . -484) 137971) ((-961 . -107) 137938) ((-1085 . -831) 137851) ((-613 . -1028) T) ((-1084 . -831) 137757) ((-1078 . -831) 137590) ((-1040 . -831) 137574) ((-330 . -1063) T) ((-298 . -979) 137556) ((-228 . -730) 137535) ((-228 . -733) 137486) ((-228 . -732) 137465) ((-227 . -730) 137444) ((-227 . -733) 137395) ((-227 . -732) 137374) ((-49 . -980) T) ((-228 . -666) 137305) ((-227 . -666) 137236) ((-1118 . -1016) T) ((-613 . -23) T) ((-536 . -980) T) ((-487 . -980) T) ((-355 . -979) 137201) ((-298 . -107) 137176) ((-71 . -359) T) ((-71 . -371) T) ((-951 . -37) 137113) ((-633 . -376) 137095) ((-94 . -97) T) ((-651 . -1016) T) ((-931 . -134) 137067) ((-931 . -136) 137039) ((-355 . -107) 136995) ((-295 . -1127) 136974) ((-449 . -930) 136940) ((-330 . -37) 136905) ((-39 . -346) 136877) ((-804 . -563) 136749) ((-123 . -121) 136733) ((-117 . -121) 136717) ((-773 . -979) 136687) ((-772 . -21) 136639) ((-766 . -979) 136623) ((-772 . -25) 136575) ((-295 . -515) 136526) ((-523 . -767) T) ((-218 . -1123) T) ((-773 . -107) 136491) ((-766 . -107) 136470) ((-1153 . -563) 136452) ((-1132 . -563) 136434) ((-1132 . -564) 136107) ((-1083 . -840) 136086) ((-1039 . -840) 136065) ((-47 . -37) 136030) ((-1189 . -1028) T) ((-554 . -563) 135942) ((-554 . -564) 135903) ((-1187 . -1028) T) ((-218 . -964) 135732) ((-1083 . -591) 135657) ((-1039 . -591) 135582) ((-658 . -563) 135564) ((-790 . -591) 135538) ((-1189 . -23) T) ((-1187 . -23) T) ((-961 . -973) T) ((-1097 . -263) 135517) ((-155 . -344) 135468) ((-932 . -1123) T) ((-43 . -23) T) ((-453 . -263) 135447) ((-540 . -1016) T) ((-1058 . -1025) 135416) ((-1020 . -1019) 135368) ((-366 . -21) T) ((-366 . -25) T) ((-141 . -1028) T) ((-1195 . -97) T) ((-932 . -815) 135350) ((-932 . -817) 135332) ((-1118 . -657) 135229) ((-570 . -209) 135213) ((-568 . -21) T) ((-266 . -515) T) ((-568 . -25) T) ((-1104 . -1016) T) ((-651 . -657) 135178) ((-218 . -353) 135148) ((-932 . -964) 135108) ((-355 . -973) T) ((-201 . -980) T) ((-113 . -209) 135085) ((-57 . -263) 135062) ((-141 . -23) T) ((-486 . -263) 135039) ((-303 . -484) 134972) ((-467 . -263) 134949) ((-355 . -221) T) ((-355 . -211) T) ((-773 . -973) T) ((-766 . -973) T) ((-652 . -880) 134918) ((-640 . -786) T) ((-449 . -563) 134900) ((-766 . -211) 134879) ((-126 . -786) T) ((-601 . -1016) T) ((-1097 . -556) 134858) ((-509 . -1100) 134837) ((-312 . -1016) T) ((-295 . -339) 134816) ((-383 . -136) 134795) ((-383 . -134) 134774) ((-894 . -1028) 134673) ((-218 . -831) 134606) ((-754 . -1028) 134537) ((-597 . -788) 134521) ((-453 . -556) 134500) ((-509 . -102) 134450) ((-932 . -353) 134432) ((-932 . -314) 134414) ((-92 . -1016) T) ((-894 . -23) 134225) ((-452 . -21) T) ((-452 . -25) T) ((-754 . -23) 134096) ((-1087 . -563) 134078) ((-57 . -19) 134062) ((-1087 . -564) 133984) ((-1083 . -666) T) ((-1039 . -666) T) ((-486 . -19) 133968) ((-467 . -19) 133952) ((-57 . -556) 133929) ((-1005 . -1016) T) ((-832 . -97) 133907) ((-790 . -666) T) ((-721 . -1016) T) ((-486 . -556) 133884) ((-467 . -556) 133861) ((-719 . -1016) T) ((-719 . -987) 133828) ((-436 . -1016) T) ((-429 . -1016) T) ((-540 . -657) 133803) ((-592 . -1016) T) ((-932 . -831) NIL) ((-1161 . -46) 133780) ((-573 . -1028) T) ((-613 . -124) T) ((-1155 . -97) T) ((-1154 . -46) 133750) ((-1133 . -46) 133727) ((-1118 . -158) 133678) ((-999 . -1127) 133629) ((-252 . -1016) T) ((-83 . -416) T) ((-83 . -371) T) ((-1084 . -284) 133608) ((-1078 . -284) 133587) ((-49 . -1016) T) ((-999 . -515) 133538) ((-651 . -158) T) ((-548 . -46) 133515) ((-203 . -591) 133480) ((-536 . -1016) T) ((-487 . -1016) T) ((-335 . -1127) T) ((-329 . -1127) T) ((-321 . -1127) T) ((-460 . -759) T) ((-460 . -851) T) ((-295 . -1028) T) ((-103 . -1127) T) ((-315 . -786) T) ((-196 . -851) T) ((-196 . -759) T) ((-654 . -979) 133450) ((-335 . -515) T) ((-329 . -515) T) ((-321 . -515) T) ((-103 . -515) T) ((-601 . -657) 133420) ((-1078 . -949) NIL) ((-295 . -23) T) ((-65 . -1123) T) ((-928 . -563) 133352) ((-633 . -209) 133334) ((-654 . -107) 133299) ((-589 . -33) T) ((-223 . -462) 133283) ((-1018 . -1014) 133267) ((-157 . -1016) T) ((-883 . -840) 133246) ((-455 . -840) 133225) ((-1191 . -21) T) ((-1191 . -25) T) ((-1189 . -124) T) ((-1187 . -124) T) ((-1005 . -657) 133074) ((-984 . -591) 133061) ((-883 . -591) 132986) ((-499 . -563) 132968) ((-499 . -564) 132949) ((-721 . -657) 132778) ((-719 . -657) 132627) ((-1180 . -97) T) ((-996 . -97) T) ((-357 . -25) T) ((-357 . -21) T) ((-455 . -591) 132552) ((-436 . -657) 132523) ((-429 . -657) 132372) ((-916 . -97) T) ((-677 . -97) T) ((-495 . -25) T) ((-1133 . -1123) 132351) ((-1165 . -563) 132317) ((-1133 . -817) NIL) ((-1133 . -815) 132269) ((-130 . -97) T) ((-43 . -124) T) ((-1097 . -564) NIL) ((-1097 . -563) 132251) ((-1054 . -1037) 132196) ((-319 . -980) T) ((-607 . -563) 132178) ((-266 . -1028) T) ((-331 . -563) 132160) ((-328 . -563) 132142) ((-320 . -563) 132124) ((-241 . -564) 131872) ((-241 . -563) 131854) ((-225 . -563) 131836) ((-225 . -564) 131697) ((-970 . -1117) 131626) ((-832 . -286) 131564) ((-1195 . -1063) T) ((-1154 . -964) 131499) ((-1133 . -964) 131465) ((-1118 . -484) 131432) ((-1053 . -563) 131414) ((-758 . -666) T) ((-554 . -265) 131391) ((-536 . -657) 131356) ((-453 . -564) NIL) ((-453 . -563) 131338) ((-487 . -657) 131283) ((-292 . -97) T) ((-289 . -97) T) ((-266 . -23) T) ((-141 . -124) T) ((-362 . -666) T) ((-803 . -979) 131235) ((-841 . -563) 131217) ((-841 . -564) 131199) ((-803 . -107) 131137) ((-128 . -97) T) ((-110 . -97) T) ((-652 . -1145) 131121) ((-654 . -973) T) ((-633 . -325) NIL) ((-488 . -563) 131053) ((-355 . -734) T) ((-201 . -1016) T) ((-355 . -731) T) ((-203 . -733) T) ((-203 . -730) T) ((-57 . -564) 131014) ((-57 . -563) 130926) ((-203 . -666) T) ((-486 . -564) 130887) ((-486 . -563) 130799) ((-468 . -563) 130731) ((-467 . -564) 130692) ((-467 . -563) 130604) ((-999 . -339) 130555) ((-39 . -387) 130532) ((-75 . -1123) T) ((-802 . -840) NIL) ((-335 . -305) 130516) ((-335 . -339) T) ((-329 . -305) 130500) ((-329 . -339) T) ((-321 . -305) 130484) ((-321 . -339) T) ((-292 . -261) 130463) ((-103 . -339) T) ((-68 . -1123) T) ((-1133 . -314) 130415) ((-802 . -591) 130360) ((-1133 . -353) 130312) ((-894 . -124) 130167) ((-754 . -124) 130038) ((-888 . -594) 130022) ((-1005 . -158) 129933) ((-888 . -349) 129917) ((-984 . -733) T) ((-984 . -730) T) ((-721 . -158) 129808) ((-719 . -158) 129719) ((-755 . -46) 129681) ((-984 . -666) T) ((-303 . -462) 129665) ((-883 . -666) T) ((-429 . -158) 129576) ((-223 . -263) 129553) ((-455 . -666) T) ((-1180 . -286) 129491) ((-1161 . -831) 129404) ((-1154 . -831) 129310) ((-1153 . -979) 129145) ((-1133 . -831) 128978) ((-1132 . -979) 128786) ((-1118 . -267) 128765) ((-1058 . -140) 128749) ((-994 . -97) T) ((-858 . -885) T) ((-73 . -1123) T) ((-677 . -286) 128687) ((-155 . -840) 128640) ((-607 . -358) 128612) ((-30 . -885) T) ((-1 . -563) 128594) ((-1034 . -97) T) ((-999 . -23) T) ((-49 . -567) 128578) ((-999 . -1028) T) ((-931 . -385) 128550) ((-548 . -831) 128463) ((-414 . -97) T) ((-130 . -286) NIL) ((-803 . -973) T) ((-772 . -786) 128442) ((-79 . -1123) T) ((-651 . -267) T) ((-39 . -980) T) ((-536 . -158) T) ((-487 . -158) T) ((-481 . -563) 128424) ((-155 . -591) 128334) ((-477 . -563) 128316) ((-327 . -136) 128298) ((-327 . -134) T) ((-335 . -1028) T) ((-329 . -1028) T) ((-321 . -1028) T) ((-932 . -284) T) ((-845 . -284) T) ((-803 . -221) T) ((-103 . -1028) T) ((-803 . -211) 128277) ((-1153 . -107) 128098) ((-1132 . -107) 127887) ((-223 . -1157) 127871) ((-523 . -784) T) ((-335 . -23) T) ((-330 . -325) T) ((-292 . -286) 127858) ((-289 . -286) 127799) ((-329 . -23) T) ((-295 . -124) T) ((-321 . -23) T) ((-932 . -949) T) ((-103 . -23) T) ((-223 . -556) 127776) ((-1155 . -37) 127668) ((-1142 . -840) 127647) ((-108 . -1016) T) ((-962 . -97) T) ((-1142 . -591) 127572) ((-802 . -733) NIL) ((-791 . -591) 127546) ((-802 . -730) NIL) ((-755 . -817) NIL) ((-802 . -666) T) ((-1005 . -484) 127419) ((-721 . -484) 127366) ((-719 . -484) 127318) ((-530 . -591) 127305) ((-755 . -964) 127135) ((-429 . -484) 127078) ((-364 . -365) T) ((-58 . -1123) T) ((-568 . -786) 127057) ((-471 . -604) T) ((-1058 . -905) 127026) ((-931 . -427) T) ((-638 . -784) T) ((-480 . -731) T) ((-449 . -979) 126861) ((-319 . -1016) T) ((-289 . -1063) NIL) ((-266 . -124) T) ((-370 . -1016) T) ((-633 . -346) 126828) ((-801 . -980) T) ((-201 . -567) 126805) ((-303 . -263) 126782) ((-449 . -107) 126603) ((-1153 . -973) T) ((-1132 . -973) T) ((-755 . -353) 126587) ((-155 . -666) T) ((-597 . -97) T) ((-1153 . -221) 126566) ((-1153 . -211) 126518) ((-1132 . -211) 126423) ((-1132 . -221) 126402) ((-931 . -378) NIL) ((-613 . -585) 126350) ((-292 . -37) 126260) ((-289 . -37) 126189) ((-67 . -563) 126171) ((-295 . -464) 126137) ((-1097 . -265) 126116) ((-1029 . -1028) 126047) ((-81 . -1123) T) ((-59 . -563) 126029) ((-453 . -265) 126008) ((-1182 . -964) 125985) ((-1076 . -1016) T) ((-1029 . -23) 125856) ((-755 . -831) 125792) ((-1142 . -666) T) ((-1018 . -1123) T) ((-1005 . -267) 125723) ((-824 . -97) T) ((-721 . -267) 125634) ((-303 . -19) 125618) ((-57 . -265) 125595) ((-719 . -267) 125526) ((-791 . -666) T) ((-113 . -784) NIL) ((-486 . -265) 125503) ((-303 . -556) 125480) ((-467 . -265) 125457) ((-429 . -267) 125388) ((-962 . -286) 125239) ((-530 . -666) T) ((-605 . -563) 125221) ((-223 . -564) 125182) ((-223 . -563) 125094) ((-1059 . -33) T) ((-874 . -1123) T) ((-319 . -657) 125039) ((-613 . -25) T) ((-613 . -21) T) ((-449 . -973) T) ((-581 . -393) 125004) ((-557 . -393) 124969) ((-1034 . -1063) T) ((-536 . -267) T) ((-487 . -267) T) ((-1154 . -284) 124948) ((-449 . -211) 124900) ((-449 . -221) 124879) ((-1133 . -284) 124858) ((-999 . -124) T) ((-803 . -734) 124837) ((-133 . -97) T) ((-39 . -1016) T) ((-803 . -731) 124816) ((-589 . -938) 124800) ((-535 . -980) T) ((-523 . -980) T) ((-466 . -980) T) ((-383 . -427) T) ((-335 . -124) T) ((-292 . -376) 124784) ((-289 . -376) 124745) ((-329 . -124) T) ((-321 . -124) T) ((-1133 . -949) NIL) ((-1092 . -1016) T) ((-1011 . -563) 124712) ((-103 . -124) T) ((-1034 . -37) 124699) ((-852 . -1016) T) ((-710 . -1016) T) ((-614 . -1016) T) ((-640 . -136) T) ((-112 . -136) T) ((-1189 . -21) T) ((-1189 . -25) T) ((-1187 . -21) T) ((-1187 . -25) T) ((-607 . -979) 124683) ((-495 . -786) T) ((-471 . -786) T) ((-331 . -979) 124635) ((-328 . -979) 124587) ((-320 . -979) 124539) ((-228 . -1123) T) ((-227 . -1123) T) ((-241 . -979) 124382) ((-225 . -979) 124225) ((-607 . -107) 124204) ((-331 . -107) 124142) ((-328 . -107) 124080) ((-320 . -107) 124018) ((-241 . -107) 123847) ((-225 . -107) 123676) ((-756 . -1127) 123655) ((-570 . -387) 123639) ((-43 . -21) T) ((-43 . -25) T) ((-754 . -585) 123547) ((-756 . -515) 123526) ((-228 . -964) 123355) ((-227 . -964) 123184) ((-122 . -115) 123168) ((-841 . -979) 123133) ((-638 . -980) T) ((-652 . -97) T) ((-319 . -158) T) ((-141 . -21) T) ((-141 . -25) T) ((-86 . -563) 123115) ((-841 . -107) 123071) ((-39 . -657) 123016) ((-801 . -1016) T) ((-303 . -564) 122977) ((-303 . -563) 122889) ((-1132 . -731) 122842) ((-1132 . -734) 122795) ((-228 . -353) 122765) ((-227 . -353) 122735) ((-597 . -37) 122705) ((-558 . -33) T) ((-456 . -1028) 122636) ((-450 . -33) T) ((-1029 . -124) 122507) ((-894 . -25) 122318) ((-805 . -563) 122300) ((-894 . -21) 122255) ((-754 . -21) 122166) ((-754 . -25) 122018) ((-570 . -980) T) ((-1089 . -515) 121997) ((-1083 . -46) 121974) ((-331 . -973) T) ((-328 . -973) T) ((-456 . -23) 121845) ((-320 . -973) T) ((-241 . -973) T) ((-225 . -973) T) ((-1039 . -46) 121817) ((-113 . -980) T) ((-961 . -591) 121791) ((-888 . -33) T) ((-331 . -211) 121770) ((-331 . -221) T) ((-328 . -211) 121749) ((-225 . -302) 121706) ((-328 . -221) T) ((-320 . -211) 121685) ((-320 . -221) T) ((-241 . -302) 121657) ((-241 . -211) 121636) ((-1068 . -140) 121620) ((-228 . -831) 121553) ((-227 . -831) 121486) ((-1001 . -786) T) ((-1136 . -1123) T) ((-390 . -1028) T) ((-977 . -23) T) ((-841 . -973) T) ((-298 . -591) 121468) ((-951 . -784) T) ((-1118 . -930) 121434) ((-1084 . -851) 121413) ((-1078 . -851) 121392) ((-841 . -221) T) ((-756 . -339) 121371) ((-361 . -23) T) ((-123 . -1016) 121349) ((-117 . -1016) 121327) ((-841 . -211) T) ((-1078 . -759) NIL) ((-355 . -591) 121292) ((-801 . -657) 121279) ((-970 . -140) 121244) ((-39 . -158) T) ((-633 . -387) 121226) ((-652 . -286) 121213) ((-773 . -591) 121173) ((-766 . -591) 121147) ((-295 . -25) T) ((-295 . -21) T) ((-601 . -263) 121126) ((-535 . -1016) T) ((-523 . -1016) T) ((-466 . -1016) T) ((-223 . -265) 121103) ((-289 . -209) 121064) ((-1083 . -817) NIL) ((-1039 . -817) 120923) ((-1083 . -964) 120805) ((-1039 . -964) 120690) ((-167 . -563) 120672) ((-790 . -964) 120570) ((-721 . -263) 120497) ((-756 . -1028) T) ((-961 . -666) T) ((-554 . -594) 120481) ((-970 . -905) 120410) ((-927 . -97) T) ((-756 . -23) T) ((-652 . -1063) 120388) ((-633 . -980) T) ((-554 . -349) 120372) ((-327 . -427) T) ((-319 . -267) T) ((-1170 . -1016) T) ((-375 . -97) T) ((-266 . -21) T) ((-266 . -25) T) ((-337 . -666) T) ((-650 . -1016) T) ((-638 . -1016) T) ((-337 . -448) T) ((-1118 . -563) 120354) ((-1083 . -353) 120338) ((-1039 . -353) 120322) ((-951 . -387) 120284) ((-130 . -207) 120266) ((-355 . -733) T) ((-355 . -730) T) ((-801 . -158) T) ((-355 . -666) T) ((-651 . -563) 120248) ((-652 . -37) 120077) ((-1169 . -1167) 120061) ((-327 . -378) T) ((-1169 . -1016) 120011) ((-535 . -657) 119998) ((-523 . -657) 119985) ((-466 . -657) 119950) ((-292 . -575) 119929) ((-773 . -666) T) ((-766 . -666) T) ((-589 . -1123) T) ((-999 . -585) 119877) ((-1083 . -831) 119820) ((-1039 . -831) 119804) ((-605 . -979) 119788) ((-103 . -585) 119770) ((-456 . -124) 119641) ((-1089 . -1028) T) ((-883 . -46) 119610) ((-570 . -1016) T) ((-605 . -107) 119589) ((-303 . -265) 119566) ((-455 . -46) 119523) ((-1089 . -23) T) ((-113 . -1016) T) ((-98 . -97) 119501) ((-1179 . -1028) T) ((-977 . -124) T) ((-951 . -980) T) ((-758 . -964) 119485) ((-931 . -664) 119457) ((-1179 . -23) T) ((-638 . -657) 119422) ((-540 . -563) 119404) ((-362 . -964) 119388) ((-330 . -980) T) ((-361 . -124) T) ((-300 . -964) 119372) ((-203 . -817) 119354) ((-932 . -851) T) ((-89 . -33) T) ((-932 . -759) T) ((-845 . -851) T) ((-460 . -1127) T) ((-1104 . -563) 119336) ((-1021 . -1016) T) ((-196 . -1127) T) ((-927 . -286) 119301) ((-203 . -964) 119261) ((-39 . -267) T) ((-999 . -21) T) ((-999 . -25) T) ((-1034 . -767) T) ((-460 . -515) T) ((-335 . -25) T) ((-196 . -515) T) ((-335 . -21) T) ((-329 . -25) T) ((-329 . -21) T) ((-654 . -591) 119221) ((-321 . -25) T) ((-321 . -21) T) ((-103 . -25) T) ((-103 . -21) T) ((-47 . -980) T) ((-535 . -158) T) ((-523 . -158) T) ((-466 . -158) T) ((-601 . -563) 119203) ((-677 . -676) 119187) ((-312 . -563) 119169) ((-66 . -359) T) ((-66 . -371) T) ((-1018 . -102) 119153) ((-984 . -817) 119135) ((-883 . -817) 119060) ((-596 . -1028) T) ((-570 . -657) 119047) ((-455 . -817) NIL) ((-1058 . -97) T) ((-984 . -964) 119029) ((-92 . -563) 119011) ((-452 . -136) T) ((-883 . -964) 118893) ((-113 . -657) 118838) ((-596 . -23) T) ((-455 . -964) 118716) ((-1005 . -564) NIL) ((-1005 . -563) 118698) ((-721 . -564) NIL) ((-721 . -563) 118659) ((-719 . -564) 118294) ((-719 . -563) 118208) ((-1029 . -585) 118116) ((-436 . -563) 118098) ((-429 . -563) 118080) ((-429 . -564) 117941) ((-962 . -207) 117887) ((-122 . -33) T) ((-756 . -124) T) ((-803 . -840) 117866) ((-592 . -563) 117848) ((-331 . -1186) 117832) ((-328 . -1186) 117816) ((-320 . -1186) 117800) ((-123 . -484) 117733) ((-117 . -484) 117666) ((-481 . -731) T) ((-481 . -734) T) ((-480 . -733) T) ((-98 . -286) 117604) ((-200 . -97) 117582) ((-633 . -1016) T) ((-638 . -158) T) ((-803 . -591) 117534) ((-63 . -360) T) ((-252 . -563) 117516) ((-63 . -371) T) ((-883 . -353) 117500) ((-801 . -267) T) ((-49 . -563) 117482) ((-927 . -37) 117430) ((-536 . -563) 117412) ((-455 . -353) 117396) ((-536 . -564) 117378) ((-487 . -563) 117360) ((-841 . -1186) 117347) ((-802 . -1123) T) ((-640 . -427) T) ((-466 . -484) 117313) ((-460 . -339) T) ((-331 . -344) 117292) ((-328 . -344) 117271) ((-320 . -344) 117250) ((-196 . -339) T) ((-654 . -666) T) ((-112 . -427) T) ((-1190 . -1181) 117234) ((-802 . -815) 117211) ((-802 . -817) NIL) ((-894 . -786) 117110) ((-754 . -786) 117061) ((-597 . -599) 117045) ((-1110 . -33) T) ((-157 . -563) 117027) ((-1029 . -21) 116938) ((-1029 . -25) 116790) ((-802 . -964) 116767) ((-883 . -831) 116748) ((-1142 . -46) 116725) ((-841 . -344) T) ((-57 . -594) 116709) ((-486 . -594) 116693) ((-455 . -831) 116670) ((-69 . -416) T) ((-69 . -371) T) ((-467 . -594) 116654) ((-57 . -349) 116638) ((-570 . -158) T) ((-486 . -349) 116622) ((-467 . -349) 116606) ((-766 . -648) 116590) ((-1083 . -284) 116569) ((-1089 . -124) T) ((-113 . -158) T) ((-1058 . -286) 116507) ((-155 . -1123) T) ((-581 . -684) 116491) ((-557 . -684) 116475) ((-1179 . -124) T) ((-1154 . -851) 116454) ((-1133 . -851) 116433) ((-1133 . -759) NIL) ((-633 . -657) 116383) ((-1132 . -840) 116336) ((-951 . -1016) T) ((-802 . -353) 116313) ((-802 . -314) 116290) ((-836 . -1028) T) ((-155 . -815) 116274) ((-155 . -817) 116199) ((-460 . -1028) T) ((-330 . -1016) T) ((-196 . -1028) T) ((-74 . -416) T) ((-74 . -371) T) ((-155 . -964) 116097) ((-295 . -786) T) ((-1169 . -484) 116030) ((-1153 . -591) 115927) ((-1132 . -591) 115797) ((-803 . -733) 115776) ((-803 . -730) 115755) ((-803 . -666) T) ((-460 . -23) T) ((-201 . -563) 115737) ((-159 . -427) T) ((-200 . -286) 115675) ((-84 . -416) T) ((-84 . -371) T) ((-196 . -23) T) ((-1191 . -1184) 115654) ((-535 . -267) T) ((-523 . -267) T) ((-618 . -964) 115638) ((-466 . -267) T) ((-128 . -445) 115593) ((-47 . -1016) T) ((-652 . -209) 115577) ((-802 . -831) NIL) ((-1142 . -817) NIL) ((-820 . -97) T) ((-816 . -97) T) ((-364 . -1016) T) ((-155 . -353) 115561) ((-155 . -314) 115545) ((-1142 . -964) 115427) ((-791 . -964) 115325) ((-1054 . -97) T) ((-596 . -124) T) ((-113 . -484) 115233) ((-605 . -731) 115212) ((-605 . -734) 115191) ((-530 . -964) 115173) ((-271 . -1176) 115143) ((-797 . -97) T) ((-893 . -515) 115122) ((-1118 . -979) 115005) ((-456 . -585) 114913) ((-835 . -1016) T) ((-951 . -657) 114850) ((-651 . -979) 114815) ((-554 . -33) T) ((-1059 . -1123) T) ((-1118 . -107) 114684) ((-449 . -591) 114581) ((-330 . -657) 114526) ((-155 . -831) 114485) ((-638 . -267) T) ((-633 . -158) T) ((-651 . -107) 114441) ((-1195 . -980) T) ((-1142 . -353) 114425) ((-394 . -1127) 114403) ((-289 . -784) NIL) ((-394 . -515) T) ((-203 . -284) T) ((-1132 . -730) 114356) ((-1132 . -733) 114309) ((-1153 . -666) T) ((-1132 . -666) T) ((-47 . -657) 114274) ((-203 . -949) T) ((-327 . -1176) 114251) ((-1155 . -387) 114217) ((-658 . -666) T) ((-1142 . -831) 114160) ((-108 . -563) 114142) ((-108 . -564) 114124) ((-658 . -448) T) ((-456 . -21) 114035) ((-123 . -462) 114019) ((-117 . -462) 114003) ((-456 . -25) 113855) ((-570 . -267) T) ((-540 . -979) 113830) ((-413 . -1016) T) ((-984 . -284) T) ((-113 . -267) T) ((-1020 . -97) T) ((-931 . -97) T) ((-540 . -107) 113798) ((-1054 . -286) 113736) ((-1118 . -973) T) ((-984 . -949) T) ((-64 . -1123) T) ((-977 . -25) T) ((-977 . -21) T) ((-651 . -973) T) ((-361 . -21) T) ((-361 . -25) T) ((-633 . -484) NIL) ((-951 . -158) T) ((-651 . -221) T) ((-984 . -508) T) ((-473 . -97) T) ((-330 . -158) T) ((-319 . -563) 113718) ((-370 . -563) 113700) ((-449 . -666) T) ((-1034 . -784) T) ((-823 . -964) 113668) ((-103 . -786) T) ((-601 . -979) 113652) ((-460 . -124) T) ((-1155 . -980) T) ((-196 . -124) T) ((-1068 . -97) 113630) ((-94 . -1016) T) ((-223 . -609) 113614) ((-223 . -594) 113598) ((-601 . -107) 113577) ((-292 . -387) 113561) ((-223 . -349) 113545) ((-1071 . -213) 113492) ((-927 . -209) 113476) ((-72 . -1123) T) ((-47 . -158) T) ((-640 . -363) T) ((-640 . -132) T) ((-1190 . -97) T) ((-1005 . -979) 113319) ((-241 . -840) 113298) ((-225 . -840) 113277) ((-721 . -979) 113100) ((-719 . -979) 112943) ((-558 . -1123) T) ((-1076 . -563) 112925) ((-1005 . -107) 112754) ((-970 . -97) T) ((-450 . -1123) T) ((-436 . -979) 112725) ((-429 . -979) 112568) ((-607 . -591) 112552) ((-802 . -284) T) ((-721 . -107) 112361) ((-719 . -107) 112190) ((-331 . -591) 112142) ((-328 . -591) 112094) ((-320 . -591) 112046) ((-241 . -591) 111971) ((-225 . -591) 111896) ((-1070 . -786) T) ((-1006 . -964) 111880) ((-436 . -107) 111841) ((-429 . -107) 111670) ((-995 . -964) 111647) ((-928 . -33) T) ((-896 . -563) 111608) ((-888 . -1123) T) ((-122 . -938) 111592) ((-893 . -1028) T) ((-802 . -949) NIL) ((-675 . -1028) T) ((-655 . -1028) T) ((-1169 . -462) 111576) ((-1054 . -37) 111536) ((-893 . -23) T) ((-779 . -97) T) ((-756 . -21) T) ((-756 . -25) T) ((-675 . -23) T) ((-655 . -23) T) ((-106 . -604) T) ((-841 . -591) 111501) ((-536 . -979) 111466) ((-487 . -979) 111411) ((-205 . -55) 111369) ((-428 . -23) T) ((-383 . -97) T) ((-240 . -97) T) ((-633 . -267) T) ((-797 . -37) 111339) ((-536 . -107) 111295) ((-487 . -107) 111224) ((-394 . -1028) T) ((-292 . -980) 111115) ((-289 . -980) T) ((-601 . -973) T) ((-1195 . -1016) T) ((-155 . -284) 111046) ((-394 . -23) T) ((-39 . -563) 111028) ((-39 . -564) 111012) ((-103 . -921) 110994) ((-112 . -800) 110978) ((-47 . -484) 110944) ((-1110 . -938) 110928) ((-1092 . -563) 110910) ((-1097 . -33) T) ((-852 . -563) 110892) ((-1029 . -786) 110843) ((-710 . -563) 110825) ((-614 . -563) 110807) ((-1068 . -286) 110745) ((-453 . -33) T) ((-1009 . -1123) T) ((-452 . -427) T) ((-1005 . -973) T) ((-1053 . -33) T) ((-721 . -973) T) ((-719 . -973) T) ((-590 . -213) 110729) ((-578 . -213) 110675) ((-1142 . -284) 110654) ((-1005 . -302) 110615) ((-429 . -973) T) ((-1089 . -21) T) ((-1005 . -211) 110594) ((-721 . -302) 110571) ((-721 . -211) T) ((-719 . -302) 110543) ((-303 . -594) 110527) ((-671 . -1127) 110506) ((-1089 . -25) T) ((-57 . -33) T) ((-488 . -33) T) ((-486 . -33) T) ((-429 . -302) 110485) ((-303 . -349) 110469) ((-468 . -33) T) ((-467 . -33) T) ((-931 . -1063) NIL) ((-581 . -97) T) ((-557 . -97) T) ((-671 . -515) 110400) ((-331 . -666) T) ((-328 . -666) T) ((-320 . -666) T) ((-241 . -666) T) ((-225 . -666) T) ((-970 . -286) 110308) ((-832 . -1016) 110286) ((-49 . -973) T) ((-1179 . -21) T) ((-1179 . -25) T) ((-1085 . -515) 110265) ((-1084 . -1127) 110244) ((-536 . -973) T) ((-487 . -973) T) ((-1078 . -1127) 110223) ((-337 . -964) 110207) ((-298 . -964) 110191) ((-951 . -267) T) ((-355 . -817) 110173) ((-1084 . -515) 110124) ((-1078 . -515) 110075) ((-931 . -37) 110020) ((-738 . -1028) T) ((-841 . -666) T) ((-536 . -221) T) ((-536 . -211) T) ((-487 . -211) T) ((-487 . -221) T) ((-1040 . -515) 109999) ((-330 . -267) T) ((-590 . -634) 109983) ((-355 . -964) 109943) ((-1034 . -980) T) ((-98 . -121) 109927) ((-738 . -23) T) ((-1169 . -263) 109904) ((-383 . -286) 109869) ((-1189 . -1184) 109845) ((-1187 . -1184) 109824) ((-1155 . -1016) T) ((-801 . -563) 109806) ((-773 . -964) 109775) ((-183 . -726) T) ((-182 . -726) T) ((-181 . -726) T) ((-180 . -726) T) ((-179 . -726) T) ((-178 . -726) T) ((-177 . -726) T) ((-176 . -726) T) ((-175 . -726) T) ((-174 . -726) T) ((-466 . -930) T) ((-251 . -775) T) ((-250 . -775) T) ((-249 . -775) T) ((-248 . -775) T) ((-47 . -267) T) ((-247 . -775) T) ((-246 . -775) T) ((-245 . -775) T) ((-173 . -726) T) ((-562 . -786) T) ((-597 . -387) 109759) ((-106 . -786) T) ((-596 . -21) T) ((-596 . -25) T) ((-1190 . -37) 109729) ((-113 . -263) 109680) ((-1169 . -19) 109664) ((-1169 . -556) 109641) ((-1180 . -1016) T) ((-996 . -1016) T) ((-916 . -1016) T) ((-893 . -124) T) ((-677 . -1016) T) ((-675 . -124) T) ((-655 . -124) T) ((-481 . -732) T) ((-383 . -1063) 109619) ((-428 . -124) T) ((-481 . -733) T) ((-201 . -973) T) ((-271 . -97) 109402) ((-130 . -1016) T) ((-638 . -930) T) ((-89 . -1123) T) ((-123 . -563) 109334) ((-117 . -563) 109266) ((-1195 . -158) T) ((-1084 . -339) 109245) ((-1078 . -339) 109224) ((-292 . -1016) T) ((-394 . -124) T) ((-289 . -1016) T) ((-383 . -37) 109176) ((-1047 . -97) T) ((-1155 . -657) 109068) ((-597 . -980) T) ((-295 . -134) 109047) ((-295 . -136) 109026) ((-128 . -1016) T) ((-110 . -1016) T) ((-793 . -97) T) ((-535 . -563) 109008) ((-523 . -564) 108907) ((-523 . -563) 108889) ((-466 . -563) 108871) ((-466 . -564) 108816) ((-458 . -23) T) ((-456 . -786) 108767) ((-460 . -585) 108749) ((-895 . -563) 108731) ((-196 . -585) 108713) ((-203 . -380) T) ((-605 . -591) 108697) ((-1083 . -851) 108676) ((-671 . -1028) T) ((-327 . -97) T) ((-757 . -786) T) ((-671 . -23) T) ((-319 . -979) 108621) ((-1070 . -1069) T) ((-1059 . -102) 108605) ((-1085 . -1028) T) ((-1084 . -1028) T) ((-485 . -964) 108589) ((-1078 . -1028) T) ((-1040 . -1028) T) ((-319 . -107) 108518) ((-932 . -1127) T) ((-122 . -1123) T) ((-845 . -1127) T) ((-633 . -263) NIL) ((-1170 . -563) 108500) ((-1085 . -23) T) ((-1084 . -23) T) ((-1078 . -23) T) ((-932 . -515) T) ((-1054 . -209) 108484) ((-845 . -515) T) ((-1040 . -23) T) ((-226 . -563) 108466) ((-994 . -1016) T) ((-738 . -124) T) ((-650 . -563) 108448) ((-292 . -657) 108358) ((-289 . -657) 108287) ((-638 . -563) 108269) ((-638 . -564) 108214) ((-383 . -376) 108198) ((-414 . -1016) T) ((-460 . -25) T) ((-460 . -21) T) ((-1034 . -1016) T) ((-196 . -25) T) ((-196 . -21) T) ((-652 . -387) 108182) ((-654 . -964) 108151) ((-1169 . -563) 108063) ((-1169 . -564) 108024) ((-1155 . -158) T) ((-223 . -33) T) ((-857 . -903) T) ((-1110 . -1123) T) ((-605 . -730) 108003) ((-605 . -733) 107982) ((-374 . -371) T) ((-492 . -97) 107960) ((-962 . -1016) T) ((-200 . -923) 107944) ((-475 . -97) T) ((-570 . -563) 107926) ((-44 . -786) NIL) ((-570 . -564) 107903) ((-962 . -560) 107878) ((-832 . -484) 107811) ((-319 . -973) T) ((-113 . -564) NIL) ((-113 . -563) 107793) ((-803 . -1123) T) ((-613 . -393) 107777) ((-613 . -1037) 107722) ((-471 . -140) 107704) ((-319 . -211) T) ((-319 . -221) T) ((-39 . -979) 107649) ((-803 . -815) 107633) ((-803 . -817) 107558) ((-652 . -980) T) ((-633 . -930) NIL) ((-3 . |UnionCategory|) T) ((-1153 . -46) 107528) ((-1132 . -46) 107505) ((-1053 . -938) 107476) ((-203 . -851) T) ((-39 . -107) 107405) ((-803 . -964) 107272) ((-1034 . -657) 107259) ((-1021 . -563) 107241) ((-999 . -136) 107220) ((-999 . -134) 107171) ((-932 . -339) T) ((-295 . -1112) 107137) ((-355 . -284) T) ((-295 . -1109) 107103) ((-292 . -158) 107082) ((-289 . -158) T) ((-931 . -209) 107059) ((-845 . -339) T) ((-536 . -1186) 107046) ((-487 . -1186) 107023) ((-335 . -136) 107002) ((-335 . -134) 106953) ((-329 . -136) 106932) ((-329 . -134) 106883) ((-558 . -1100) 106859) ((-321 . -136) 106838) ((-321 . -134) 106789) ((-295 . -34) 106755) ((-450 . -1100) 106734) ((0 . |EnumerationCategory|) T) ((-295 . -91) 106700) ((-355 . -949) T) ((-103 . -136) T) ((-103 . -134) NIL) ((-44 . -213) 106650) ((-597 . -1016) T) ((-558 . -102) 106597) ((-458 . -124) T) ((-450 . -102) 106547) ((-218 . -1028) 106478) ((-803 . -353) 106462) ((-803 . -314) 106446) ((-218 . -23) 106317) ((-984 . -851) T) ((-984 . -759) T) ((-536 . -344) T) ((-487 . -344) T) ((-327 . -1063) T) ((-303 . -33) T) ((-43 . -393) 106301) ((-804 . -1123) T) ((-366 . -684) 106285) ((-1180 . -484) 106218) ((-671 . -124) T) ((-1161 . -515) 106197) ((-1154 . -1127) 106176) ((-1154 . -515) 106127) ((-677 . -484) 106060) ((-1133 . -1127) 106039) ((-1133 . -515) 105990) ((-824 . -1016) T) ((-133 . -780) T) ((-1132 . -1123) 105969) ((-1132 . -817) 105842) ((-1132 . -815) 105812) ((-492 . -286) 105750) ((-1085 . -124) T) ((-130 . -484) NIL) ((-1084 . -124) T) ((-1078 . -124) T) ((-1040 . -124) T) ((-951 . -930) T) ((-327 . -37) 105715) ((-932 . -1028) T) ((-845 . -1028) T) ((-80 . -563) 105697) ((-39 . -973) T) ((-801 . -979) 105684) ((-932 . -23) T) ((-803 . -831) 105643) ((-640 . -97) T) ((-931 . -325) NIL) ((-554 . -1123) T) ((-900 . -23) T) ((-845 . -23) T) ((-801 . -107) 105628) ((-403 . -1028) T) ((-449 . -46) 105598) ((-126 . -97) T) ((-39 . -211) 105570) ((-39 . -221) T) ((-112 . -97) T) ((-549 . -515) 105549) ((-548 . -515) 105528) ((-633 . -563) 105510) ((-633 . -564) 105418) ((-292 . -484) 105384) ((-289 . -484) 105276) ((-1153 . -964) 105260) ((-1132 . -964) 105049) ((-927 . -387) 105033) ((-403 . -23) T) ((-1034 . -158) T) ((-1155 . -267) T) ((-597 . -657) 105003) ((-133 . -1016) T) ((-47 . -930) T) ((-383 . -209) 104987) ((-272 . -213) 104937) ((-802 . -851) T) ((-802 . -759) NIL) ((-796 . -786) T) ((-1132 . -314) 104907) ((-1132 . -353) 104877) ((-200 . -1035) 104861) ((-1169 . -265) 104838) ((-1118 . -591) 104763) ((-893 . -21) T) ((-893 . -25) T) ((-675 . -21) T) ((-675 . -25) T) ((-655 . -21) T) ((-655 . -25) T) ((-651 . -591) 104728) ((-428 . -21) T) ((-428 . -25) T) ((-315 . -97) T) ((-159 . -97) T) ((-927 . -980) T) ((-801 . -973) T) ((-713 . -97) T) ((-1154 . -339) 104707) ((-1153 . -831) 104613) ((-1133 . -339) 104592) ((-1132 . -831) 104443) ((-951 . -563) 104425) ((-383 . -767) 104378) ((-1085 . -464) 104344) ((-155 . -851) 104275) ((-1084 . -464) 104241) ((-1078 . -464) 104207) ((-652 . -1016) T) ((-1040 . -464) 104173) ((-535 . -979) 104160) ((-523 . -979) 104147) ((-466 . -979) 104112) ((-292 . -267) 104091) ((-289 . -267) T) ((-330 . -563) 104073) ((-394 . -25) T) ((-394 . -21) T) ((-94 . -263) 104052) ((-535 . -107) 104037) ((-523 . -107) 104022) ((-466 . -107) 103978) ((-1087 . -817) 103945) ((-832 . -462) 103929) ((-47 . -563) 103911) ((-47 . -564) 103856) ((-218 . -124) 103727) ((-1142 . -851) 103706) ((-755 . -1127) 103685) ((-962 . -484) 103529) ((-364 . -563) 103511) ((-755 . -515) 103442) ((-540 . -591) 103417) ((-241 . -46) 103389) ((-225 . -46) 103346) ((-495 . -479) 103323) ((-928 . -1123) T) ((-638 . -979) 103288) ((-1161 . -1028) T) ((-1154 . -1028) T) ((-1133 . -1028) T) ((-931 . -346) 103260) ((-108 . -344) T) ((-449 . -831) 103166) ((-1161 . -23) T) ((-1154 . -23) T) ((-835 . -563) 103148) ((-89 . -102) 103132) ((-1118 . -666) T) ((-836 . -786) 103083) ((-640 . -1063) T) ((-638 . -107) 103039) ((-1133 . -23) T) ((-549 . -1028) T) ((-548 . -1028) T) ((-652 . -657) 102868) ((-651 . -666) T) ((-1034 . -267) T) ((-932 . -124) T) ((-460 . -786) T) ((-900 . -124) T) ((-845 . -124) T) ((-738 . -25) T) ((-196 . -786) T) ((-535 . -973) T) ((-523 . -973) T) ((-738 . -21) T) ((-466 . -973) T) ((-549 . -23) T) ((-319 . -1186) 102845) ((-295 . -427) 102824) ((-315 . -286) 102811) ((-548 . -23) T) ((-403 . -124) T) ((-601 . -591) 102785) ((-223 . -938) 102769) ((-803 . -284) T) ((-1191 . -1181) 102753) ((-640 . -37) 102740) ((-523 . -211) T) ((-466 . -221) T) ((-466 . -211) T) ((-710 . -731) T) ((-710 . -734) T) ((-1062 . -213) 102690) ((-1005 . -840) 102669) ((-112 . -37) 102656) ((-189 . -739) T) ((-188 . -739) T) ((-187 . -739) T) ((-186 . -739) T) ((-803 . -949) 102635) ((-1180 . -462) 102619) ((-721 . -840) 102598) ((-719 . -840) 102577) ((-1097 . -1123) T) ((-429 . -840) 102556) ((-677 . -462) 102540) ((-1005 . -591) 102465) ((-721 . -591) 102390) ((-570 . -979) 102377) ((-453 . -1123) T) ((-319 . -344) T) ((-130 . -462) 102359) ((-719 . -591) 102284) ((-1053 . -1123) T) ((-436 . -591) 102255) ((-241 . -817) 102114) ((-225 . -817) NIL) ((-113 . -979) 102059) ((-429 . -591) 101984) ((-607 . -964) 101961) ((-570 . -107) 101946) ((-331 . -964) 101930) ((-328 . -964) 101914) ((-320 . -964) 101898) ((-241 . -964) 101744) ((-225 . -964) 101622) ((-113 . -107) 101551) ((-57 . -1123) T) ((-488 . -1123) T) ((-486 . -1123) T) ((-468 . -1123) T) ((-467 . -1123) T) ((-413 . -563) 101533) ((-410 . -563) 101515) ((-3 . -97) T) ((-954 . -1117) 101484) ((-772 . -97) T) ((-629 . -55) 101442) ((-638 . -973) T) ((-49 . -591) 101416) ((-266 . -427) T) ((-451 . -1117) 101385) ((0 . -97) T) ((-536 . -591) 101350) ((-487 . -591) 101295) ((-48 . -97) T) ((-841 . -964) 101282) ((-638 . -221) T) ((-999 . -385) 101261) ((-671 . -585) 101209) ((-927 . -1016) T) ((-652 . -158) 101100) ((-460 . -921) 101082) ((-241 . -353) 101066) ((-225 . -353) 101050) ((-375 . -1016) T) ((-315 . -37) 101034) ((-953 . -97) 101012) ((-196 . -921) 100994) ((-159 . -37) 100926) ((-1153 . -284) 100905) ((-1132 . -284) 100884) ((-601 . -666) T) ((-94 . -563) 100866) ((-1078 . -585) 100818) ((-458 . -25) T) ((-458 . -21) T) ((-1132 . -949) 100771) ((-570 . -973) T) ((-355 . -380) T) ((-366 . -97) T) ((-241 . -831) 100717) ((-225 . -831) 100694) ((-113 . -973) T) ((-755 . -1028) T) ((-1005 . -666) T) ((-570 . -211) 100673) ((-568 . -97) T) ((-721 . -666) T) ((-719 . -666) T) ((-389 . -1028) T) ((-113 . -221) T) ((-39 . -344) NIL) ((-113 . -211) NIL) ((-429 . -666) T) ((-755 . -23) T) ((-671 . -25) T) ((-671 . -21) T) ((-642 . -786) T) ((-996 . -263) 100652) ((-76 . -372) T) ((-76 . -371) T) ((-633 . -979) 100602) ((-1161 . -124) T) ((-1154 . -124) T) ((-1133 . -124) T) ((-1054 . -387) 100586) ((-581 . -343) 100518) ((-557 . -343) 100450) ((-1068 . -1061) 100434) ((-98 . -1016) 100412) ((-1085 . -25) T) ((-1085 . -21) T) ((-1084 . -21) T) ((-927 . -657) 100360) ((-201 . -591) 100327) ((-633 . -107) 100261) ((-49 . -666) T) ((-1084 . -25) T) ((-327 . -325) T) ((-1078 . -21) T) ((-999 . -427) 100212) ((-1078 . -25) T) ((-652 . -484) 100159) ((-536 . -666) T) ((-487 . -666) T) ((-1040 . -21) T) ((-1040 . -25) T) ((-549 . -124) T) ((-548 . -124) T) ((-335 . -427) T) ((-329 . -427) T) ((-321 . -427) T) ((-449 . -284) 100138) ((-289 . -263) 100073) ((-103 . -427) T) ((-77 . -416) T) ((-77 . -371) T) ((-452 . -97) T) ((-1195 . -563) 100055) ((-1195 . -564) 100037) ((-999 . -378) 100016) ((-962 . -462) 99947) ((-523 . -734) T) ((-523 . -731) T) ((-985 . -213) 99893) ((-335 . -378) 99844) ((-329 . -378) 99795) ((-321 . -378) 99746) ((-1182 . -1028) T) ((-1182 . -23) T) ((-1171 . -97) T) ((-160 . -563) 99728) ((-1054 . -980) T) ((-613 . -684) 99712) ((-1089 . -134) 99691) ((-1089 . -136) 99670) ((-1058 . -1016) T) ((-1058 . -992) 99639) ((-67 . -1123) T) ((-951 . -979) 99576) ((-797 . -980) T) ((-218 . -585) 99484) ((-633 . -973) T) ((-330 . -979) 99429) ((-59 . -1123) T) ((-951 . -107) 99345) ((-832 . -563) 99277) ((-633 . -221) T) ((-633 . -211) NIL) ((-779 . -784) 99256) ((-638 . -734) T) ((-638 . -731) T) ((-931 . -387) 99233) ((-330 . -107) 99162) ((-355 . -851) T) ((-383 . -784) 99141) ((-652 . -267) 99052) ((-201 . -666) T) ((-1161 . -464) 99018) ((-1154 . -464) 98984) ((-1133 . -464) 98950) ((-292 . -930) 98929) ((-200 . -1016) 98907) ((-295 . -902) 98869) ((-100 . -97) T) ((-47 . -979) 98834) ((-1191 . -97) T) ((-357 . -97) T) ((-47 . -107) 98790) ((-932 . -585) 98772) ((-1155 . -563) 98754) ((-495 . -97) T) ((-471 . -97) T) ((-1047 . -1048) 98738) ((-141 . -1176) 98722) ((-223 . -1123) T) ((-1083 . -1127) 98701) ((-1039 . -1127) 98680) ((-218 . -21) 98591) ((-218 . -25) 98443) ((-123 . -115) 98427) ((-117 . -115) 98411) ((-43 . -684) 98395) ((-1083 . -515) 98306) ((-1039 . -515) 98237) ((-962 . -263) 98212) ((-755 . -124) T) ((-113 . -734) NIL) ((-113 . -731) NIL) ((-331 . -284) T) ((-328 . -284) T) ((-320 . -284) T) ((-1011 . -1123) T) ((-228 . -1028) 98143) ((-227 . -1028) 98074) ((-951 . -973) T) ((-931 . -980) T) ((-319 . -591) 98019) ((-568 . -37) 98003) ((-1180 . -563) 97965) ((-1180 . -564) 97926) ((-996 . -563) 97908) ((-951 . -221) T) ((-330 . -973) T) ((-754 . -1176) 97878) ((-228 . -23) T) ((-227 . -23) T) ((-916 . -563) 97860) ((-677 . -564) 97821) ((-677 . -563) 97803) ((-738 . -786) 97782) ((-927 . -484) 97694) ((-330 . -211) T) ((-330 . -221) T) ((-1071 . -140) 97641) ((-932 . -25) T) ((-130 . -563) 97623) ((-130 . -564) 97582) ((-841 . -284) T) ((-932 . -21) T) ((-900 . -25) T) ((-845 . -21) T) ((-845 . -25) T) ((-403 . -21) T) ((-403 . -25) T) ((-779 . -387) 97566) ((-47 . -973) T) ((-1189 . -1181) 97550) ((-1187 . -1181) 97534) ((-962 . -556) 97509) ((-292 . -564) 97370) ((-292 . -563) 97352) ((-289 . -564) NIL) ((-289 . -563) 97334) ((-47 . -221) T) ((-47 . -211) T) ((-597 . -263) 97295) ((-509 . -213) 97245) ((-128 . -563) 97227) ((-110 . -563) 97209) ((-452 . -37) 97174) ((-1191 . -1188) 97153) ((-1182 . -124) T) ((-1190 . -980) T) ((-1001 . -97) T) ((-86 . -1123) T) ((-471 . -286) NIL) ((-928 . -102) 97137) ((-820 . -1016) T) ((-816 . -1016) T) ((-1169 . -594) 97121) ((-1169 . -349) 97105) ((-303 . -1123) T) ((-546 . -786) T) ((-1054 . -1016) T) ((-1054 . -976) 97045) ((-98 . -484) 96978) ((-858 . -563) 96960) ((-319 . -666) T) ((-30 . -563) 96942) ((-797 . -1016) T) ((-779 . -980) 96921) ((-39 . -591) 96866) ((-203 . -1127) T) ((-383 . -980) T) ((-1070 . -140) 96848) ((-927 . -267) 96799) ((-203 . -515) T) ((-295 . -1150) 96783) ((-295 . -1147) 96753) ((-1097 . -1100) 96732) ((-994 . -563) 96714) ((-590 . -140) 96698) ((-578 . -140) 96644) ((-1097 . -102) 96594) ((-453 . -1100) 96573) ((-460 . -136) T) ((-460 . -134) NIL) ((-1034 . -564) 96488) ((-414 . -563) 96470) ((-196 . -136) T) ((-196 . -134) NIL) ((-1034 . -563) 96452) ((-51 . -97) T) ((-1133 . -585) 96404) ((-453 . -102) 96354) ((-922 . -23) T) ((-1191 . -37) 96324) ((-1083 . -1028) T) ((-1039 . -1028) T) ((-984 . -1127) T) ((-790 . -1028) T) ((-883 . -1127) 96303) ((-455 . -1127) 96282) ((-671 . -786) 96261) ((-984 . -515) T) ((-883 . -515) 96192) ((-1083 . -23) T) ((-1039 . -23) T) ((-790 . -23) T) ((-455 . -515) 96123) ((-1054 . -657) 96055) ((-1058 . -484) 95988) ((-962 . -564) NIL) ((-962 . -563) 95970) ((-797 . -657) 95940) ((-1118 . -46) 95909) ((-228 . -124) T) ((-227 . -124) T) ((-1020 . -1016) T) ((-931 . -1016) T) ((-60 . -563) 95891) ((-1078 . -786) NIL) ((-951 . -731) T) ((-951 . -734) T) ((-1195 . -979) 95878) ((-1195 . -107) 95863) ((-801 . -591) 95850) ((-1161 . -25) T) ((-1161 . -21) T) ((-1154 . -21) T) ((-1154 . -25) T) ((-1133 . -21) T) ((-1133 . -25) T) ((-954 . -140) 95834) ((-803 . -759) 95813) ((-803 . -851) T) ((-652 . -263) 95740) ((-549 . -21) T) ((-549 . -25) T) ((-548 . -21) T) ((-39 . -666) T) ((-200 . -484) 95673) ((-548 . -25) T) ((-451 . -140) 95657) ((-438 . -140) 95641) ((-852 . -666) T) ((-710 . -732) T) ((-710 . -733) T) ((-473 . -1016) T) ((-710 . -666) T) ((-203 . -339) T) ((-1068 . -1016) 95619) ((-802 . -1127) T) ((-597 . -563) 95601) ((-802 . -515) T) ((-633 . -344) NIL) ((-335 . -1176) 95585) ((-613 . -97) T) ((-329 . -1176) 95569) ((-321 . -1176) 95553) ((-1190 . -1016) T) ((-489 . -786) 95532) ((-756 . -427) 95511) ((-970 . -1016) T) ((-970 . -992) 95440) ((-954 . -905) 95409) ((-758 . -1028) T) ((-931 . -657) 95354) ((-362 . -1028) T) ((-451 . -905) 95323) ((-438 . -905) 95292) ((-106 . -140) 95274) ((-71 . -563) 95256) ((-824 . -563) 95238) ((-999 . -664) 95217) ((-1195 . -973) T) ((-755 . -585) 95165) ((-271 . -980) 95108) ((-155 . -1127) 95013) ((-203 . -1028) T) ((-300 . -23) T) ((-1078 . -921) 94965) ((-779 . -1016) T) ((-1040 . -680) 94944) ((-1155 . -979) 94849) ((-1153 . -851) 94828) ((-801 . -666) T) ((-155 . -515) 94739) ((-1132 . -851) 94718) ((-535 . -591) 94705) ((-383 . -1016) T) ((-523 . -591) 94692) ((-240 . -1016) T) ((-466 . -591) 94657) ((-203 . -23) T) ((-1132 . -759) 94610) ((-1189 . -97) T) ((-330 . -1186) 94587) ((-1187 . -97) T) ((-1155 . -107) 94479) ((-133 . -563) 94461) ((-922 . -124) T) ((-43 . -97) T) ((-218 . -786) 94412) ((-1142 . -1127) 94391) ((-98 . -462) 94375) ((-1190 . -657) 94345) ((-1005 . -46) 94306) ((-984 . -1028) T) ((-883 . -1028) T) ((-123 . -33) T) ((-117 . -33) T) ((-721 . -46) 94283) ((-719 . -46) 94255) ((-1142 . -515) 94166) ((-330 . -344) T) ((-455 . -1028) T) ((-1083 . -124) T) ((-1039 . -124) T) ((-429 . -46) 94145) ((-802 . -339) T) ((-790 . -124) T) ((-141 . -97) T) ((-984 . -23) T) ((-883 . -23) T) ((-530 . -515) T) ((-755 . -25) T) ((-755 . -21) T) ((-1054 . -484) 94078) ((-540 . -964) 94062) ((-455 . -23) T) ((-327 . -980) T) ((-1118 . -831) 94043) ((-613 . -286) 93981) ((-1029 . -1176) 93951) ((-638 . -591) 93916) ((-931 . -158) T) ((-893 . -134) 93895) ((-581 . -1016) T) ((-557 . -1016) T) ((-893 . -136) 93874) ((-932 . -786) T) ((-675 . -136) 93853) ((-675 . -134) 93832) ((-900 . -786) T) ((-449 . -851) 93811) ((-292 . -979) 93721) ((-289 . -979) 93650) ((-927 . -263) 93608) ((-383 . -657) 93560) ((-640 . -784) T) ((-1155 . -973) T) ((-292 . -107) 93456) ((-289 . -107) 93369) ((-894 . -97) T) ((-754 . -97) 93180) ((-652 . -564) NIL) ((-652 . -563) 93162) ((-601 . -964) 93060) ((-1155 . -302) 93004) ((-962 . -265) 92979) ((-535 . -666) T) ((-523 . -733) T) ((-155 . -339) 92930) ((-523 . -730) T) ((-523 . -666) T) ((-466 . -666) T) ((-1058 . -462) 92914) ((-1005 . -817) NIL) ((-802 . -1028) T) ((-113 . -840) NIL) ((-1189 . -1188) 92890) ((-1187 . -1188) 92869) ((-721 . -817) NIL) ((-719 . -817) 92728) ((-1182 . -25) T) ((-1182 . -21) T) ((-1121 . -97) 92706) ((-1022 . -371) T) ((-570 . -591) 92693) ((-429 . -817) NIL) ((-617 . -97) 92671) ((-1005 . -964) 92500) ((-802 . -23) T) ((-721 . -964) 92361) ((-719 . -964) 92220) ((-113 . -591) 92165) ((-429 . -964) 92043) ((-592 . -964) 92027) ((-573 . -97) T) ((-200 . -462) 92011) ((-1169 . -33) T) ((-581 . -657) 91995) ((-557 . -657) 91979) ((-613 . -37) 91939) ((-295 . -97) T) ((-83 . -563) 91921) ((-49 . -964) 91905) ((-1034 . -979) 91892) ((-1005 . -353) 91876) ((-58 . -55) 91838) ((-638 . -733) T) ((-638 . -730) T) ((-536 . -964) 91825) ((-487 . -964) 91802) ((-638 . -666) T) ((-292 . -973) 91693) ((-300 . -124) T) ((-289 . -973) T) ((-155 . -1028) T) ((-721 . -353) 91677) ((-719 . -353) 91661) ((-44 . -140) 91611) ((-932 . -921) 91593) ((-429 . -353) 91577) ((-383 . -158) T) ((-292 . -221) 91556) ((-289 . -221) T) ((-289 . -211) NIL) ((-271 . -1016) 91339) ((-203 . -124) T) ((-1034 . -107) 91324) ((-155 . -23) T) ((-738 . -136) 91303) ((-738 . -134) 91282) ((-228 . -585) 91190) ((-227 . -585) 91098) ((-295 . -261) 91064) ((-1068 . -484) 90997) ((-1047 . -1016) T) ((-203 . -982) T) ((-754 . -286) 90935) ((-1005 . -831) 90870) ((-721 . -831) 90813) ((-719 . -831) 90797) ((-1189 . -37) 90767) ((-1187 . -37) 90737) ((-1142 . -1028) T) ((-791 . -1028) T) ((-429 . -831) 90714) ((-793 . -1016) T) ((-1142 . -23) T) ((-530 . -1028) T) ((-791 . -23) T) ((-570 . -666) T) ((-331 . -851) T) ((-328 . -851) T) ((-266 . -97) T) ((-320 . -851) T) ((-984 . -124) T) ((-883 . -124) T) ((-113 . -733) NIL) ((-113 . -730) NIL) ((-113 . -666) T) ((-633 . -840) NIL) ((-970 . -484) 90615) ((-455 . -124) T) ((-530 . -23) T) ((-617 . -286) 90553) ((-581 . -701) T) ((-557 . -701) T) ((-1133 . -786) NIL) ((-931 . -267) T) ((-228 . -21) T) ((-633 . -591) 90503) ((-327 . -1016) T) ((-228 . -25) T) ((-227 . -21) T) ((-227 . -25) T) ((-141 . -37) 90487) ((-2 . -97) T) ((-841 . -851) T) ((-456 . -1176) 90457) ((-201 . -964) 90434) ((-1034 . -973) T) ((-651 . -284) T) ((-271 . -657) 90376) ((-640 . -980) T) ((-460 . -427) T) ((-383 . -484) 90288) ((-196 . -427) T) ((-1034 . -211) T) ((-272 . -140) 90238) ((-927 . -564) 90199) ((-927 . -563) 90181) ((-918 . -563) 90163) ((-112 . -980) T) ((-597 . -979) 90147) ((-203 . -464) T) ((-375 . -563) 90129) ((-375 . -564) 90106) ((-977 . -1176) 90076) ((-597 . -107) 90055) ((-1054 . -462) 90039) ((-754 . -37) 90009) ((-61 . -416) T) ((-61 . -371) T) ((-1071 . -97) T) ((-802 . -124) T) ((-457 . -97) 89987) ((-1195 . -344) T) ((-999 . -97) T) ((-983 . -97) T) ((-327 . -657) 89932) ((-671 . -136) 89911) ((-671 . -134) 89890) ((-951 . -591) 89827) ((-492 . -1016) 89805) ((-335 . -97) T) ((-329 . -97) T) ((-321 . -97) T) ((-103 . -97) T) ((-475 . -1016) T) ((-330 . -591) 89750) ((-1083 . -585) 89698) ((-1039 . -585) 89646) ((-361 . -479) 89625) ((-772 . -784) 89604) ((-355 . -1127) T) ((-633 . -666) T) ((-315 . -980) T) ((-1133 . -921) 89556) ((-159 . -980) T) ((-98 . -563) 89488) ((-1085 . -134) 89467) ((-1085 . -136) 89446) ((-355 . -515) T) ((-1084 . -136) 89425) ((-1084 . -134) 89404) ((-1078 . -134) 89311) ((-383 . -267) T) ((-1078 . -136) 89218) ((-1040 . -136) 89197) ((-1040 . -134) 89176) ((-295 . -37) 89017) ((-155 . -124) T) ((-289 . -734) NIL) ((-289 . -731) NIL) ((-597 . -973) T) ((-47 . -591) 88982) ((-922 . -21) T) ((-123 . -938) 88966) ((-117 . -938) 88950) ((-922 . -25) T) ((-832 . -115) 88934) ((-1070 . -97) T) ((-755 . -786) 88913) ((-1142 . -124) T) ((-1083 . -25) T) ((-1083 . -21) T) ((-791 . -124) T) ((-1039 . -25) T) ((-1039 . -21) T) ((-790 . -25) T) ((-790 . -21) T) ((-721 . -284) 88892) ((-590 . -97) 88870) ((-578 . -97) T) ((-1071 . -286) 88665) ((-530 . -124) T) ((-568 . -784) 88644) ((-1068 . -462) 88628) ((-1062 . -140) 88578) ((-1058 . -563) 88540) ((-1058 . -564) 88501) ((-951 . -730) T) ((-951 . -733) T) ((-951 . -666) T) ((-457 . -286) 88439) ((-428 . -393) 88409) ((-327 . -158) T) ((-266 . -37) 88396) ((-251 . -97) T) ((-250 . -97) T) ((-249 . -97) T) ((-248 . -97) T) ((-247 . -97) T) ((-246 . -97) T) ((-245 . -97) T) ((-319 . -964) 88373) ((-192 . -97) T) ((-191 . -97) T) ((-189 . -97) T) ((-188 . -97) T) ((-187 . -97) T) ((-186 . -97) T) ((-183 . -97) T) ((-182 . -97) T) ((-652 . -979) 88196) ((-181 . -97) T) ((-180 . -97) T) ((-179 . -97) T) ((-178 . -97) T) ((-177 . -97) T) ((-176 . -97) T) ((-175 . -97) T) ((-174 . -97) T) ((-173 . -97) T) ((-330 . -666) T) ((-652 . -107) 88005) ((-613 . -209) 87989) ((-536 . -284) T) ((-487 . -284) T) ((-271 . -484) 87938) ((-103 . -286) NIL) ((-70 . -371) T) ((-1029 . -97) 87749) ((-772 . -387) 87733) ((-1034 . -734) T) ((-1034 . -731) T) ((-640 . -1016) T) ((-355 . -339) T) ((-155 . -464) 87711) ((-200 . -563) 87643) ((-126 . -1016) T) ((-112 . -1016) T) ((-47 . -666) T) ((-970 . -462) 87608) ((-130 . -401) 87590) ((-130 . -344) T) ((-954 . -97) T) ((-482 . -479) 87569) ((-451 . -97) T) ((-438 . -97) T) ((-961 . -1028) T) ((-1085 . -34) 87535) ((-1085 . -91) 87501) ((-1085 . -1112) 87467) ((-1085 . -1109) 87433) ((-1070 . -286) NIL) ((-87 . -372) T) ((-87 . -371) T) ((-999 . -1063) 87412) ((-1084 . -1109) 87378) ((-1084 . -1112) 87344) ((-961 . -23) T) ((-1084 . -91) 87310) ((-530 . -464) T) ((-1084 . -34) 87276) ((-1078 . -1109) 87242) ((-1078 . -1112) 87208) ((-1078 . -91) 87174) ((-337 . -1028) T) ((-335 . -1063) 87153) ((-329 . -1063) 87132) ((-321 . -1063) 87111) ((-1078 . -34) 87077) ((-1040 . -34) 87043) ((-1040 . -91) 87009) ((-103 . -1063) T) ((-1040 . -1112) 86975) ((-772 . -980) 86954) ((-590 . -286) 86892) ((-578 . -286) 86743) ((-1040 . -1109) 86709) ((-652 . -973) T) ((-984 . -585) 86691) ((-999 . -37) 86559) ((-883 . -585) 86507) ((-932 . -136) T) ((-932 . -134) NIL) ((-355 . -1028) T) ((-300 . -25) T) ((-298 . -23) T) ((-874 . -786) 86486) ((-652 . -302) 86463) ((-455 . -585) 86411) ((-39 . -964) 86301) ((-640 . -657) 86288) ((-652 . -211) T) ((-315 . -1016) T) ((-159 . -1016) T) ((-307 . -786) T) ((-394 . -427) 86238) ((-355 . -23) T) ((-335 . -37) 86203) ((-329 . -37) 86168) ((-321 . -37) 86133) ((-78 . -416) T) ((-78 . -371) T) ((-203 . -25) T) ((-203 . -21) T) ((-773 . -1028) T) ((-103 . -37) 86083) ((-766 . -1028) T) ((-713 . -1016) T) ((-112 . -657) 86070) ((-614 . -964) 86054) ((-562 . -97) T) ((-773 . -23) T) ((-766 . -23) T) ((-1068 . -263) 86031) ((-1029 . -286) 85969) ((-1018 . -213) 85953) ((-62 . -372) T) ((-62 . -371) T) ((-106 . -97) T) ((-39 . -353) 85930) ((-596 . -788) 85914) ((-984 . -21) T) ((-984 . -25) T) ((-754 . -209) 85884) ((-883 . -25) T) ((-883 . -21) T) ((-568 . -980) T) ((-455 . -25) T) ((-455 . -21) T) ((-954 . -286) 85822) ((-820 . -563) 85804) ((-816 . -563) 85786) ((-228 . -786) 85737) ((-227 . -786) 85688) ((-492 . -484) 85621) ((-802 . -585) 85598) ((-451 . -286) 85536) ((-438 . -286) 85474) ((-327 . -267) T) ((-1068 . -1157) 85458) ((-1054 . -563) 85420) ((-1054 . -564) 85381) ((-1052 . -97) T) ((-927 . -979) 85277) ((-39 . -831) 85229) ((-1068 . -556) 85206) ((-1195 . -591) 85193) ((-985 . -140) 85139) ((-803 . -1127) T) ((-927 . -107) 85021) ((-315 . -657) 85005) ((-797 . -563) 84987) ((-159 . -657) 84919) ((-383 . -263) 84877) ((-803 . -515) T) ((-103 . -376) 84859) ((-82 . -360) T) ((-82 . -371) T) ((-640 . -158) T) ((-94 . -666) T) ((-456 . -97) 84670) ((-94 . -448) T) ((-112 . -158) T) ((-1029 . -37) 84640) ((-155 . -585) 84588) ((-977 . -97) T) ((-802 . -25) T) ((-754 . -216) 84567) ((-802 . -21) T) ((-757 . -97) T) ((-390 . -97) T) ((-361 . -97) T) ((-106 . -286) NIL) ((-205 . -97) 84545) ((-123 . -1123) T) ((-117 . -1123) T) ((-961 . -124) T) ((-613 . -343) 84529) ((-927 . -973) T) ((-1142 . -585) 84477) ((-1020 . -563) 84459) ((-931 . -563) 84441) ((-485 . -23) T) ((-480 . -23) T) ((-319 . -284) T) ((-478 . -23) T) ((-298 . -124) T) ((-3 . -1016) T) ((-931 . -564) 84425) ((-927 . -221) 84404) ((-927 . -211) 84383) ((-1195 . -666) T) ((-1161 . -134) 84362) ((-772 . -1016) T) ((-1161 . -136) 84341) ((-1154 . -136) 84320) ((-1154 . -134) 84299) ((-1153 . -1127) 84278) ((-1133 . -134) 84185) ((-1133 . -136) 84092) ((-1132 . -1127) 84071) ((-355 . -124) T) ((-523 . -817) 84053) ((0 . -1016) T) ((-159 . -158) T) ((-155 . -21) T) ((-155 . -25) T) ((-48 . -1016) T) ((-1155 . -591) 83958) ((-1153 . -515) 83909) ((-654 . -1028) T) ((-1132 . -515) 83860) ((-523 . -964) 83842) ((-548 . -136) 83821) ((-548 . -134) 83800) ((-466 . -964) 83743) ((-85 . -360) T) ((-85 . -371) T) ((-803 . -339) T) ((-773 . -124) T) ((-766 . -124) T) ((-654 . -23) T) ((-473 . -563) 83725) ((-1191 . -980) T) ((-355 . -982) T) ((-953 . -1016) 83703) ((-832 . -33) T) ((-456 . -286) 83641) ((-1068 . -564) 83602) ((-1068 . -563) 83534) ((-1083 . -786) 83513) ((-44 . -97) T) ((-1039 . -786) 83492) ((-756 . -97) T) ((-1142 . -25) T) ((-1142 . -21) T) ((-791 . -25) T) ((-43 . -343) 83476) ((-791 . -21) T) ((-671 . -427) 83427) ((-1190 . -563) 83409) ((-530 . -25) T) ((-530 . -21) T) ((-366 . -1016) T) ((-977 . -286) 83347) ((-568 . -1016) T) ((-638 . -817) 83329) ((-1169 . -1123) T) ((-205 . -286) 83267) ((-133 . -344) T) ((-970 . -564) 83209) ((-970 . -563) 83152) ((-289 . -840) NIL) ((-638 . -964) 83097) ((-651 . -851) T) ((-449 . -1127) 83076) ((-1084 . -427) 83055) ((-1078 . -427) 83034) ((-306 . -97) T) ((-803 . -1028) T) ((-292 . -591) 82856) ((-289 . -591) 82785) ((-449 . -515) 82736) ((-315 . -484) 82702) ((-509 . -140) 82652) ((-39 . -284) T) ((-779 . -563) 82634) ((-640 . -267) T) ((-803 . -23) T) ((-355 . -464) T) ((-999 . -209) 82604) ((-482 . -97) T) ((-383 . -564) 82412) ((-383 . -563) 82394) ((-240 . -563) 82376) ((-112 . -267) T) ((-1155 . -666) T) ((-1153 . -339) 82355) ((-1132 . -339) 82334) ((-1180 . -33) T) ((-113 . -1123) T) ((-103 . -209) 82316) ((-1089 . -97) T) ((-452 . -1016) T) ((-492 . -462) 82300) ((-677 . -33) T) ((-456 . -37) 82270) ((-130 . -33) T) ((-113 . -815) 82247) ((-113 . -817) NIL) ((-570 . -964) 82132) ((-589 . -786) 82111) ((-1179 . -97) T) ((-272 . -97) T) ((-652 . -344) 82090) ((-113 . -964) 82067) ((-366 . -657) 82051) ((-568 . -657) 82035) ((-44 . -286) 81839) ((-755 . -134) 81818) ((-755 . -136) 81797) ((-1190 . -358) 81776) ((-758 . -786) T) ((-1171 . -1016) T) ((-1071 . -207) 81723) ((-362 . -786) 81702) ((-1161 . -1112) 81668) ((-1161 . -1109) 81634) ((-1154 . -1109) 81600) ((-485 . -124) T) ((-1154 . -1112) 81566) ((-1133 . -1109) 81532) ((-1133 . -1112) 81498) ((-1161 . -34) 81464) ((-1161 . -91) 81430) ((-581 . -563) 81399) ((-557 . -563) 81368) ((-203 . -786) T) ((-1154 . -91) 81334) ((-1154 . -34) 81300) ((-1153 . -1028) T) ((-1034 . -591) 81287) ((-1133 . -91) 81253) ((-1132 . -1028) T) ((-546 . -140) 81235) ((-999 . -325) 81214) ((-113 . -353) 81191) ((-113 . -314) 81168) ((-159 . -267) T) ((-1133 . -34) 81134) ((-801 . -284) T) ((-289 . -733) NIL) ((-289 . -730) NIL) ((-292 . -666) 80984) ((-289 . -666) T) ((-449 . -339) 80963) ((-335 . -325) 80942) ((-329 . -325) 80921) ((-321 . -325) 80900) ((-292 . -448) 80879) ((-1153 . -23) T) ((-1132 . -23) T) ((-658 . -1028) T) ((-654 . -124) T) ((-596 . -97) T) ((-452 . -657) 80844) ((-44 . -259) 80794) ((-100 . -1016) T) ((-66 . -563) 80776) ((-796 . -97) T) ((-570 . -831) 80735) ((-1191 . -1016) T) ((-357 . -1016) T) ((-80 . -1123) T) ((-984 . -786) T) ((-883 . -786) 80714) ((-113 . -831) NIL) ((-721 . -851) 80693) ((-653 . -786) T) ((-495 . -1016) T) ((-471 . -1016) T) ((-331 . -1127) T) ((-328 . -1127) T) ((-320 . -1127) T) ((-241 . -1127) 80672) ((-225 . -1127) 80651) ((-1029 . -209) 80621) ((-455 . -786) 80600) ((-1054 . -979) 80584) ((-366 . -701) T) ((-1070 . -767) T) ((-633 . -1123) T) ((-331 . -515) T) ((-328 . -515) T) ((-320 . -515) T) ((-241 . -515) 80515) ((-225 . -515) 80446) ((-1054 . -107) 80425) ((-428 . -684) 80395) ((-797 . -979) 80365) ((-756 . -37) 80307) ((-633 . -815) 80289) ((-633 . -817) 80271) ((-272 . -286) 80075) ((-841 . -1127) T) ((-613 . -387) 80059) ((-797 . -107) 80024) ((-633 . -964) 79969) ((-932 . -427) T) ((-841 . -515) T) ((-536 . -851) T) ((-449 . -1028) T) ((-487 . -851) T) ((-1068 . -265) 79946) ((-845 . -427) T) ((-63 . -563) 79928) ((-578 . -207) 79874) ((-449 . -23) T) ((-1034 . -733) T) ((-803 . -124) T) ((-1034 . -730) T) ((-1182 . -1184) 79853) ((-1034 . -666) T) ((-597 . -591) 79827) ((-271 . -563) 79569) ((-962 . -33) T) ((-754 . -784) 79548) ((-535 . -284) T) ((-523 . -284) T) ((-466 . -284) T) ((-1191 . -657) 79518) ((-633 . -353) 79500) ((-633 . -314) 79482) ((-452 . -158) T) ((-357 . -657) 79452) ((-802 . -786) NIL) ((-523 . -949) T) ((-466 . -949) T) ((-1047 . -563) 79434) ((-1029 . -216) 79413) ((-193 . -97) T) ((-1062 . -97) T) ((-69 . -563) 79395) ((-1054 . -973) T) ((-1089 . -37) 79292) ((-793 . -563) 79274) ((-523 . -508) T) ((-613 . -980) T) ((-671 . -880) 79227) ((-1054 . -211) 79206) ((-1001 . -1016) T) ((-961 . -25) T) ((-961 . -21) T) ((-931 . -979) 79151) ((-836 . -97) T) ((-797 . -973) T) ((-633 . -831) NIL) ((-331 . -305) 79135) ((-331 . -339) T) ((-328 . -305) 79119) ((-328 . -339) T) ((-320 . -305) 79103) ((-320 . -339) T) ((-460 . -97) T) ((-1179 . -37) 79073) ((-492 . -627) 79023) ((-196 . -97) T) ((-951 . -964) 78905) ((-931 . -107) 78834) ((-1085 . -902) 78803) ((-1084 . -902) 78765) ((-489 . -140) 78749) ((-999 . -346) 78728) ((-327 . -563) 78710) ((-298 . -21) T) ((-330 . -964) 78687) ((-298 . -25) T) ((-1078 . -902) 78656) ((-1040 . -902) 78623) ((-74 . -563) 78605) ((-638 . -284) T) ((-155 . -786) 78584) ((-841 . -339) T) ((-355 . -25) T) ((-355 . -21) T) ((-841 . -305) 78571) ((-84 . -563) 78553) ((-638 . -949) T) ((-618 . -786) T) ((-1153 . -124) T) ((-1132 . -124) T) ((-832 . -938) 78537) ((-773 . -21) T) ((-47 . -964) 78480) ((-773 . -25) T) ((-766 . -25) T) ((-766 . -21) T) ((-1189 . -980) T) ((-1187 . -980) T) ((-597 . -666) T) ((-1190 . -979) 78464) ((-1142 . -786) 78443) ((-754 . -387) 78412) ((-98 . -115) 78396) ((-51 . -1016) T) ((-857 . -563) 78378) ((-802 . -921) 78355) ((-762 . -97) T) ((-1190 . -107) 78334) ((-596 . -37) 78304) ((-530 . -786) T) ((-331 . -1028) T) ((-328 . -1028) T) ((-320 . -1028) T) ((-241 . -1028) T) ((-225 . -1028) T) ((-570 . -284) 78283) ((-1062 . -286) 78087) ((-607 . -23) T) ((-456 . -209) 78057) ((-141 . -980) T) ((-331 . -23) T) ((-328 . -23) T) ((-320 . -23) T) ((-113 . -284) T) ((-241 . -23) T) ((-225 . -23) T) ((-931 . -973) T) ((-652 . -840) 78036) ((-931 . -211) 78008) ((-931 . -221) T) ((-113 . -949) NIL) ((-841 . -1028) T) ((-1154 . -427) 77987) ((-1133 . -427) 77966) ((-492 . -563) 77898) ((-652 . -591) 77823) ((-383 . -979) 77775) ((-475 . -563) 77757) ((-841 . -23) T) ((-460 . -286) NIL) ((-449 . -124) T) ((-196 . -286) NIL) ((-383 . -107) 77695) ((-754 . -980) 77626) ((-677 . -1014) 77610) ((-1153 . -464) 77576) ((-1132 . -464) 77542) ((-130 . -1014) 77524) ((-452 . -267) T) ((-1190 . -973) T) ((-985 . -97) T) ((-471 . -484) NIL) ((-642 . -97) T) ((-456 . -216) 77503) ((-1083 . -134) 77482) ((-1083 . -136) 77461) ((-1039 . -136) 77440) ((-1039 . -134) 77419) ((-581 . -979) 77403) ((-557 . -979) 77387) ((-613 . -1016) T) ((-613 . -976) 77327) ((-1085 . -1160) 77311) ((-1085 . -1147) 77288) ((-460 . -1063) T) ((-1084 . -1152) 77249) ((-1084 . -1147) 77219) ((-1084 . -1150) 77203) ((-196 . -1063) T) ((-319 . -851) T) ((-757 . -243) 77187) ((-581 . -107) 77166) ((-557 . -107) 77145) ((-1078 . -1131) 77106) ((-779 . -973) 77085) ((-1078 . -1147) 77062) ((-485 . -25) T) ((-466 . -279) T) ((-481 . -23) T) ((-480 . -25) T) ((-478 . -25) T) ((-477 . -23) T) ((-1078 . -1129) 77046) ((-383 . -973) T) ((-295 . -980) T) ((-633 . -284) T) ((-103 . -784) T) ((-383 . -221) T) ((-383 . -211) 77025) ((-652 . -666) T) ((-460 . -37) 76975) ((-196 . -37) 76925) ((-449 . -464) 76891) ((-1070 . -1056) T) ((-1017 . -97) T) ((-640 . -563) 76873) ((-640 . -564) 76788) ((-654 . -21) T) ((-654 . -25) T) ((-126 . -563) 76770) ((-112 . -563) 76752) ((-144 . -25) T) ((-1189 . -1016) T) ((-803 . -585) 76700) ((-1187 . -1016) T) ((-893 . -97) T) ((-675 . -97) T) ((-655 . -97) T) ((-428 . -97) T) ((-755 . -427) 76651) ((-43 . -1016) T) ((-1006 . -786) T) ((-607 . -124) T) ((-985 . -286) 76502) ((-613 . -657) 76486) ((-266 . -980) T) ((-331 . -124) T) ((-328 . -124) T) ((-320 . -124) T) ((-241 . -124) T) ((-225 . -124) T) ((-394 . -97) T) ((-141 . -1016) T) ((-44 . -207) 76436) ((-888 . -786) 76415) ((-927 . -591) 76353) ((-218 . -1176) 76323) ((-951 . -284) T) ((-271 . -979) 76245) ((-841 . -124) T) ((-39 . -851) T) ((-460 . -376) 76227) ((-330 . -284) T) ((-196 . -376) 76209) ((-999 . -387) 76193) ((-271 . -107) 76110) ((-803 . -25) T) ((-803 . -21) T) ((-315 . -563) 76092) ((-1155 . -46) 76036) ((-203 . -136) T) ((-159 . -563) 76018) ((-1029 . -784) 75997) ((-713 . -563) 75979) ((-558 . -213) 75926) ((-450 . -213) 75876) ((-1189 . -657) 75846) ((-47 . -284) T) ((-1187 . -657) 75816) ((-894 . -1016) T) ((-754 . -1016) 75627) ((-288 . -97) T) ((-832 . -1123) T) ((-47 . -949) T) ((-1132 . -585) 75535) ((-629 . -97) 75513) ((-43 . -657) 75497) ((-509 . -97) T) ((-65 . -359) T) ((-65 . -371) T) ((-605 . -23) T) ((-613 . -701) T) ((-1121 . -1016) 75475) ((-327 . -979) 75420) ((-617 . -1016) 75398) ((-984 . -136) T) ((-883 . -136) 75377) ((-883 . -134) 75356) ((-738 . -97) T) ((-141 . -657) 75340) ((-455 . -136) 75319) ((-455 . -134) 75298) ((-327 . -107) 75227) ((-999 . -980) T) ((-298 . -786) 75206) ((-1161 . -902) 75175) ((-573 . -1016) T) ((-1154 . -902) 75137) ((-481 . -124) T) ((-477 . -124) T) ((-272 . -207) 75087) ((-335 . -980) T) ((-329 . -980) T) ((-321 . -980) T) ((-271 . -973) 75030) ((-1133 . -902) 74999) ((-355 . -786) T) ((-103 . -980) T) ((-927 . -666) T) ((-801 . -851) T) ((-779 . -734) 74978) ((-779 . -731) 74957) ((-394 . -286) 74896) ((-443 . -97) T) ((-548 . -902) 74865) ((-295 . -1016) T) ((-383 . -734) 74844) ((-383 . -731) 74823) ((-471 . -462) 74805) ((-1155 . -964) 74771) ((-1153 . -21) T) ((-1153 . -25) T) ((-1132 . -21) T) ((-1132 . -25) T) ((-754 . -657) 74713) ((-638 . -380) T) ((-1180 . -1123) T) ((-1029 . -387) 74682) ((-931 . -344) NIL) ((-98 . -33) T) ((-677 . -1123) T) ((-43 . -701) T) ((-546 . -97) T) ((-75 . -372) T) ((-75 . -371) T) ((-596 . -599) 74666) ((-130 . -1123) T) ((-802 . -136) T) ((-802 . -134) NIL) ((-327 . -973) T) ((-68 . -359) T) ((-68 . -371) T) ((-1077 . -97) T) ((-613 . -484) 74599) ((-629 . -286) 74537) ((-893 . -37) 74434) ((-675 . -37) 74404) ((-509 . -286) 74208) ((-292 . -1123) T) ((-327 . -211) T) ((-327 . -221) T) ((-289 . -1123) T) ((-266 . -1016) T) ((-1091 . -563) 74190) ((-651 . -1127) T) ((-1068 . -594) 74174) ((-1118 . -515) 74153) ((-651 . -515) T) ((-292 . -815) 74137) ((-292 . -817) 74062) ((-289 . -815) 74023) ((-289 . -817) NIL) ((-738 . -286) 73988) ((-295 . -657) 73829) ((-300 . -299) 73806) ((-458 . -97) T) ((-449 . -25) T) ((-449 . -21) T) ((-394 . -37) 73780) ((-292 . -964) 73448) ((-203 . -1109) T) ((-203 . -1112) T) ((-3 . -563) 73430) ((-289 . -964) 73360) ((-2 . -1016) T) ((-2 . |RecordCategory|) T) ((-772 . -563) 73342) ((-1029 . -980) 73273) ((-535 . -851) T) ((-523 . -759) T) ((-523 . -851) T) ((-466 . -851) T) ((-128 . -964) 73257) ((-203 . -91) T) ((-155 . -136) 73236) ((-73 . -416) T) ((0 . -563) 73218) ((-73 . -371) T) ((-155 . -134) 73169) ((-203 . -34) T) ((-48 . -563) 73151) ((-452 . -980) T) ((-460 . -209) 73133) ((-457 . -898) 73117) ((-456 . -784) 73096) ((-196 . -209) 73078) ((-79 . -416) T) ((-79 . -371) T) ((-1058 . -33) T) ((-754 . -158) 73057) ((-671 . -97) T) ((-953 . -563) 73024) ((-471 . -263) 72999) ((-292 . -353) 72969) ((-289 . -353) 72930) ((-289 . -314) 72891) ((-1003 . -563) 72873) ((-755 . -880) 72820) ((-605 . -124) T) ((-1142 . -134) 72799) ((-1142 . -136) 72778) ((-1085 . -97) T) ((-1084 . -97) T) ((-1078 . -97) T) ((-1071 . -1016) T) ((-1040 . -97) T) ((-200 . -33) T) ((-266 . -657) 72765) ((-1071 . -560) 72741) ((-546 . -286) NIL) ((-457 . -1016) 72719) ((-366 . -563) 72701) ((-480 . -786) T) ((-1062 . -207) 72651) ((-1161 . -1160) 72635) ((-1161 . -1147) 72612) ((-1154 . -1152) 72573) ((-1154 . -1147) 72543) ((-1154 . -1150) 72527) ((-1133 . -1131) 72488) ((-1133 . -1147) 72465) ((-568 . -563) 72447) ((-1133 . -1129) 72431) ((-638 . -851) T) ((-1085 . -261) 72397) ((-1084 . -261) 72363) ((-1078 . -261) 72329) ((-999 . -1016) T) ((-983 . -1016) T) ((-47 . -279) T) ((-292 . -831) 72296) ((-289 . -831) NIL) ((-983 . -989) 72275) ((-1034 . -817) 72257) ((-738 . -37) 72241) ((-241 . -585) 72189) ((-225 . -585) 72137) ((-640 . -979) 72124) ((-548 . -1147) 72101) ((-1040 . -261) 72067) ((-295 . -158) 71998) ((-335 . -1016) T) ((-329 . -1016) T) ((-321 . -1016) T) ((-471 . -19) 71980) ((-1034 . -964) 71962) ((-1018 . -140) 71946) ((-103 . -1016) T) ((-112 . -979) 71933) ((-651 . -339) T) ((-471 . -556) 71908) ((-640 . -107) 71893) ((-412 . -97) T) ((-44 . -1061) 71843) ((-112 . -107) 71828) ((-581 . -660) T) ((-557 . -660) T) ((-754 . -484) 71761) ((-962 . -1123) T) ((-874 . -140) 71745) ((-489 . -97) 71695) ((-1005 . -1127) 71674) ((-452 . -563) 71626) ((-452 . -564) 71548) ((-60 . -1123) T) ((-721 . -1127) 71527) ((-719 . -1127) 71506) ((-1083 . -427) 71437) ((-1070 . -1016) T) ((-1054 . -591) 71411) ((-1005 . -515) 71342) ((-456 . -387) 71311) ((-570 . -851) 71290) ((-429 . -1127) 71269) ((-1039 . -427) 71220) ((-374 . -563) 71202) ((-617 . -484) 71135) ((-721 . -515) 71046) ((-719 . -515) 70977) ((-671 . -286) 70964) ((-607 . -25) T) ((-607 . -21) T) ((-429 . -515) 70895) ((-113 . -851) T) ((-113 . -759) NIL) ((-331 . -25) T) ((-331 . -21) T) ((-328 . -25) T) ((-328 . -21) T) ((-320 . -25) T) ((-320 . -21) T) ((-241 . -25) T) ((-241 . -21) T) ((-81 . -360) T) ((-81 . -371) T) ((-225 . -25) T) ((-225 . -21) T) ((-1171 . -563) 70877) ((-1118 . -1028) T) ((-1118 . -23) T) ((-1078 . -286) 70762) ((-1040 . -286) 70749) ((-797 . -591) 70709) ((-999 . -657) 70577) ((-874 . -909) 70561) ((-266 . -158) T) ((-841 . -21) T) ((-841 . -25) T) ((-803 . -786) 70512) ((-651 . -1028) T) ((-651 . -23) T) ((-590 . -1016) 70490) ((-578 . -560) 70465) ((-578 . -1016) T) ((-536 . -1127) T) ((-487 . -1127) T) ((-536 . -515) T) ((-487 . -515) T) ((-335 . -657) 70417) ((-329 . -657) 70369) ((-159 . -979) 70301) ((-315 . -979) 70285) ((-103 . -657) 70235) ((-159 . -107) 70146) ((-321 . -657) 70098) ((-315 . -107) 70077) ((-251 . -1016) T) ((-250 . -1016) T) ((-249 . -1016) T) ((-248 . -1016) T) ((-640 . -973) T) ((-247 . -1016) T) ((-246 . -1016) T) ((-245 . -1016) T) ((-192 . -1016) T) ((-191 . -1016) T) ((-189 . -1016) T) ((-155 . -1112) 70055) ((-155 . -1109) 70033) ((-188 . -1016) T) ((-187 . -1016) T) ((-112 . -973) T) ((-186 . -1016) T) ((-183 . -1016) T) ((-640 . -211) T) ((-182 . -1016) T) ((-181 . -1016) T) ((-180 . -1016) T) ((-179 . -1016) T) ((-178 . -1016) T) ((-177 . -1016) T) ((-176 . -1016) T) ((-175 . -1016) T) ((-174 . -1016) T) ((-173 . -1016) T) ((-218 . -97) 69844) ((-155 . -34) 69822) ((-155 . -91) 69800) ((-597 . -964) 69698) ((-456 . -980) 69629) ((-1029 . -1016) 69440) ((-1054 . -33) T) ((-613 . -462) 69424) ((-71 . -1123) T) ((-100 . -563) 69406) ((-1191 . -563) 69388) ((-357 . -563) 69370) ((-530 . -1112) T) ((-530 . -1109) T) ((-671 . -37) 69219) ((-495 . -563) 69201) ((-489 . -286) 69139) ((-471 . -563) 69121) ((-471 . -564) 69103) ((-1078 . -1063) NIL) ((-954 . -992) 69072) ((-954 . -1016) T) ((-932 . -97) T) ((-900 . -97) T) ((-845 . -97) T) ((-824 . -964) 69049) ((-1054 . -666) T) ((-931 . -591) 68994) ((-451 . -1016) T) ((-438 . -1016) T) ((-540 . -23) T) ((-530 . -34) T) ((-530 . -91) T) ((-403 . -97) T) ((-985 . -207) 68940) ((-1085 . -37) 68837) ((-797 . -666) T) ((-633 . -851) T) ((-481 . -25) T) ((-477 . -21) T) ((-477 . -25) T) ((-1084 . -37) 68678) ((-315 . -973) T) ((-1078 . -37) 68474) ((-999 . -158) T) ((-159 . -973) T) ((-1040 . -37) 68371) ((-652 . -46) 68348) ((-335 . -158) T) ((-329 . -158) T) ((-488 . -55) 68322) ((-468 . -55) 68272) ((-327 . -1186) 68249) ((-203 . -427) T) ((-295 . -267) 68200) ((-321 . -158) T) ((-159 . -221) T) ((-1132 . -786) 68099) ((-103 . -158) T) ((-803 . -921) 68083) ((-601 . -1028) T) ((-536 . -339) T) ((-536 . -305) 68070) ((-487 . -305) 68047) ((-487 . -339) T) ((-292 . -284) 68026) ((-289 . -284) T) ((-554 . -786) 68005) ((-1029 . -657) 67947) ((-489 . -259) 67931) ((-601 . -23) T) ((-394 . -209) 67915) ((-289 . -949) NIL) ((-312 . -23) T) ((-98 . -938) 67899) ((-44 . -35) 67878) ((-562 . -1016) T) ((-327 . -344) T) ((-466 . -27) T) ((-218 . -286) 67816) ((-1005 . -1028) T) ((-1190 . -591) 67790) ((-721 . -1028) T) ((-719 . -1028) T) ((-429 . -1028) T) ((-984 . -427) T) ((-883 . -427) 67741) ((-106 . -1016) T) ((-1005 . -23) T) ((-756 . -980) T) ((-721 . -23) T) ((-719 . -23) T) ((-455 . -427) 67692) ((-1071 . -484) 67475) ((-357 . -358) 67454) ((-1089 . -387) 67438) ((-436 . -23) T) ((-429 . -23) T) ((-457 . -484) 67371) ((-266 . -267) T) ((-1001 . -563) 67353) ((-383 . -840) 67332) ((-49 . -1028) T) ((-951 . -851) T) ((-931 . -666) T) ((-652 . -817) NIL) ((-536 . -1028) T) ((-487 . -1028) T) ((-779 . -591) 67305) ((-1118 . -124) T) ((-1078 . -376) 67257) ((-932 . -286) NIL) ((-754 . -462) 67241) ((-330 . -851) T) ((-1068 . -33) T) ((-383 . -591) 67193) ((-49 . -23) T) ((-651 . -124) T) ((-652 . -964) 67075) ((-536 . -23) T) ((-103 . -484) NIL) ((-487 . -23) T) ((-155 . -385) 67046) ((-1052 . -1016) T) ((-1182 . -1181) 67030) ((-640 . -734) T) ((-640 . -731) T) ((-1034 . -284) T) ((-355 . -136) T) ((-257 . -563) 67012) ((-1132 . -921) 66982) ((-47 . -851) T) ((-617 . -462) 66966) ((-228 . -1176) 66936) ((-227 . -1176) 66906) ((-1087 . -786) T) ((-1029 . -158) 66885) ((-1034 . -949) T) ((-970 . -33) T) ((-773 . -136) 66864) ((-773 . -134) 66843) ((-677 . -102) 66827) ((-562 . -125) T) ((-456 . -1016) 66638) ((-1089 . -980) T) ((-802 . -427) T) ((-83 . -1123) T) ((-218 . -37) 66608) ((-130 . -102) 66590) ((-652 . -353) 66574) ((-1034 . -508) T) ((-366 . -979) 66558) ((-1190 . -666) T) ((-1083 . -880) 66527) ((-51 . -563) 66509) ((-1039 . -880) 66476) ((-596 . -387) 66460) ((-1179 . -980) T) ((-568 . -979) 66444) ((-605 . -25) T) ((-605 . -21) T) ((-1070 . -484) NIL) ((-1161 . -97) T) ((-1154 . -97) T) ((-366 . -107) 66423) ((-200 . -231) 66407) ((-1133 . -97) T) ((-977 . -1016) T) ((-932 . -1063) T) ((-977 . -976) 66347) ((-757 . -1016) T) ((-319 . -1127) T) ((-581 . -591) 66331) ((-568 . -107) 66310) ((-557 . -591) 66294) ((-549 . -97) T) ((-540 . -124) T) ((-548 . -97) T) ((-390 . -1016) T) ((-361 . -1016) T) ((-205 . -1016) 66272) ((-590 . -484) 66205) ((-578 . -484) 66049) ((-772 . -973) 66028) ((-589 . -140) 66012) ((-319 . -515) T) ((-652 . -831) 65955) ((-509 . -207) 65905) ((-1161 . -261) 65871) ((-999 . -267) 65822) ((-460 . -784) T) ((-201 . -1028) T) ((-1154 . -261) 65788) ((-1133 . -261) 65754) ((-932 . -37) 65704) ((-196 . -784) T) ((-1118 . -464) 65670) ((-845 . -37) 65622) ((-779 . -733) 65601) ((-779 . -730) 65580) ((-779 . -666) 65559) ((-335 . -267) T) ((-329 . -267) T) ((-321 . -267) T) ((-155 . -427) 65490) ((-403 . -37) 65474) ((-103 . -267) T) ((-201 . -23) T) ((-383 . -733) 65453) ((-383 . -730) 65432) ((-383 . -666) T) ((-471 . -265) 65407) ((-452 . -979) 65372) ((-601 . -124) T) ((-1029 . -484) 65305) ((-312 . -124) T) ((-155 . -378) 65284) ((-456 . -657) 65226) ((-754 . -263) 65203) ((-452 . -107) 65159) ((-596 . -980) T) ((-1142 . -427) 65090) ((-1005 . -124) T) ((-241 . -786) 65069) ((-225 . -786) 65048) ((-721 . -124) T) ((-719 . -124) T) ((-530 . -427) T) ((-977 . -657) 64990) ((-568 . -973) T) ((-954 . -484) 64923) ((-436 . -124) T) ((-429 . -124) T) ((-44 . -1016) T) ((-361 . -657) 64893) ((-756 . -1016) T) ((-451 . -484) 64826) ((-438 . -484) 64759) ((-428 . -343) 64729) ((-44 . -560) 64708) ((-292 . -279) T) ((-613 . -563) 64670) ((-57 . -786) 64649) ((-1133 . -286) 64534) ((-932 . -376) 64516) ((-754 . -556) 64493) ((-486 . -786) 64472) ((-467 . -786) 64451) ((-39 . -1127) T) ((-927 . -964) 64349) ((-49 . -124) T) ((-536 . -124) T) ((-487 . -124) T) ((-271 . -591) 64211) ((-319 . -305) 64188) ((-319 . -339) T) ((-298 . -299) 64165) ((-295 . -263) 64150) ((-39 . -515) T) ((-355 . -1109) T) ((-355 . -1112) T) ((-962 . -1100) 64125) ((-1097 . -213) 64075) ((-1078 . -209) 64027) ((-306 . -1016) T) ((-355 . -91) T) ((-355 . -34) T) ((-962 . -102) 63973) ((-452 . -973) T) ((-453 . -213) 63923) ((-1071 . -462) 63857) ((-1191 . -979) 63841) ((-357 . -979) 63825) ((-452 . -221) T) ((-755 . -97) T) ((-654 . -136) 63804) ((-654 . -134) 63783) ((-457 . -462) 63767) ((-458 . -311) 63736) ((-1191 . -107) 63715) ((-482 . -1016) T) ((-456 . -158) 63694) ((-927 . -353) 63678) ((-389 . -97) T) ((-357 . -107) 63657) ((-927 . -314) 63641) ((-256 . -912) 63625) ((-255 . -912) 63609) ((-1189 . -563) 63591) ((-1187 . -563) 63573) ((-106 . -484) NIL) ((-1083 . -1145) 63557) ((-790 . -788) 63541) ((-1089 . -1016) T) ((-98 . -1123) T) ((-883 . -880) 63502) ((-756 . -657) 63444) ((-1133 . -1063) NIL) ((-455 . -880) 63389) ((-984 . -132) T) ((-58 . -97) 63367) ((-43 . -563) 63349) ((-76 . -563) 63331) ((-327 . -591) 63276) ((-1179 . -1016) T) ((-481 . -786) T) ((-319 . -1028) T) ((-272 . -1016) T) ((-927 . -831) 63235) ((-272 . -560) 63214) ((-1161 . -37) 63111) ((-1154 . -37) 62952) ((-460 . -980) T) ((-1133 . -37) 62748) ((-196 . -980) T) ((-319 . -23) T) ((-141 . -563) 62730) ((-772 . -734) 62709) ((-772 . -731) 62688) ((-549 . -37) 62661) ((-548 . -37) 62558) ((-801 . -515) T) ((-201 . -124) T) ((-295 . -930) 62524) ((-77 . -563) 62506) ((-652 . -284) 62485) ((-271 . -666) 62388) ((-763 . -97) T) ((-796 . -780) T) ((-271 . -448) 62367) ((-1182 . -97) T) ((-39 . -339) T) ((-803 . -136) 62346) ((-803 . -134) 62325) ((-1070 . -462) 62307) ((-1191 . -973) T) ((-456 . -484) 62240) ((-1058 . -1123) T) ((-894 . -563) 62222) ((-590 . -462) 62206) ((-578 . -462) 62137) ((-754 . -563) 61889) ((-47 . -27) T) ((-1089 . -657) 61786) ((-596 . -1016) T) ((-412 . -340) 61760) ((-1018 . -97) T) ((-755 . -286) 61747) ((-796 . -1016) T) ((-1187 . -358) 61719) ((-977 . -484) 61652) ((-1071 . -263) 61628) ((-218 . -209) 61598) ((-1179 . -657) 61568) ((-756 . -158) 61547) ((-205 . -484) 61480) ((-568 . -734) 61459) ((-568 . -731) 61438) ((-1121 . -563) 61350) ((-200 . -1123) T) ((-617 . -563) 61282) ((-1068 . -938) 61266) ((-327 . -666) T) ((-874 . -97) 61216) ((-1133 . -376) 61168) ((-1029 . -462) 61152) ((-58 . -286) 61090) ((-307 . -97) T) ((-1118 . -21) T) ((-1118 . -25) T) ((-39 . -1028) T) ((-651 . -21) T) ((-573 . -563) 61072) ((-485 . -299) 61051) ((-651 . -25) T) ((-103 . -263) NIL) ((-852 . -1028) T) ((-39 . -23) T) ((-710 . -1028) T) ((-523 . -1127) T) ((-466 . -1127) T) ((-295 . -563) 61033) ((-932 . -209) 61015) ((-155 . -152) 60999) ((-535 . -515) T) ((-523 . -515) T) ((-466 . -515) T) ((-710 . -23) T) ((-1153 . -136) 60978) ((-1071 . -556) 60954) ((-1153 . -134) 60933) ((-954 . -462) 60917) ((-1132 . -134) 60842) ((-1132 . -136) 60767) ((-1182 . -1188) 60746) ((-451 . -462) 60730) ((-438 . -462) 60714) ((-492 . -33) T) ((-596 . -657) 60684) ((-108 . -897) T) ((-605 . -786) 60663) ((-1089 . -158) 60614) ((-341 . -97) T) ((-218 . -216) 60593) ((-228 . -97) T) ((-227 . -97) T) ((-1142 . -880) 60562) ((-105 . -97) T) ((-223 . -786) 60541) ((-755 . -37) 60390) ((-44 . -484) 60182) ((-1070 . -263) 60157) ((-193 . -1016) T) ((-1062 . -1016) T) ((-1062 . -560) 60136) ((-540 . -25) T) ((-540 . -21) T) ((-1018 . -286) 60074) ((-893 . -387) 60058) ((-638 . -1127) T) ((-578 . -263) 60033) ((-1005 . -585) 59981) ((-721 . -585) 59929) ((-719 . -585) 59877) ((-319 . -124) T) ((-266 . -563) 59859) ((-638 . -515) T) ((-836 . -1016) T) ((-801 . -1028) T) ((-429 . -585) 59807) ((-836 . -834) 59791) ((-355 . -427) T) ((-460 . -1016) T) ((-640 . -591) 59778) ((-874 . -286) 59716) ((-196 . -1016) T) ((-292 . -851) 59695) ((-289 . -851) T) ((-289 . -759) NIL) ((-366 . -660) T) ((-801 . -23) T) ((-112 . -591) 59682) ((-449 . -134) 59661) ((-394 . -387) 59645) ((-449 . -136) 59624) ((-106 . -462) 59606) ((-2 . -563) 59588) ((-1070 . -19) 59570) ((-1070 . -556) 59545) ((-601 . -21) T) ((-601 . -25) T) ((-546 . -1056) T) ((-1029 . -263) 59522) ((-312 . -25) T) ((-312 . -21) T) ((-466 . -339) T) ((-1182 . -37) 59492) ((-1054 . -1123) T) ((-578 . -556) 59467) ((-1005 . -25) T) ((-1005 . -21) T) ((-495 . -731) T) ((-495 . -734) T) ((-113 . -1127) T) ((-893 . -980) T) ((-570 . -515) T) ((-675 . -980) T) ((-655 . -980) T) ((-721 . -25) T) ((-721 . -21) T) ((-719 . -21) T) ((-719 . -25) T) ((-613 . -979) 59451) ((-436 . -25) T) ((-113 . -515) T) ((-436 . -21) T) ((-429 . -25) T) ((-429 . -21) T) ((-1054 . -964) 59349) ((-756 . -267) 59328) ((-762 . -1016) T) ((-896 . -897) T) ((-613 . -107) 59307) ((-272 . -484) 59099) ((-1189 . -979) 59083) ((-1187 . -979) 59067) ((-228 . -286) 59005) ((-227 . -286) 58943) ((-1136 . -97) 58921) ((-1071 . -564) NIL) ((-1071 . -563) 58903) ((-1153 . -1109) 58869) ((-1153 . -1112) 58835) ((-1133 . -209) 58787) ((-1132 . -1109) 58753) ((-1132 . -1112) 58719) ((-1054 . -353) 58703) ((-1034 . -759) T) ((-1034 . -851) T) ((-1029 . -556) 58680) ((-999 . -564) 58664) ((-457 . -563) 58596) ((-754 . -265) 58573) ((-558 . -140) 58520) ((-394 . -980) T) ((-460 . -657) 58470) ((-456 . -462) 58454) ((-303 . -786) 58433) ((-315 . -591) 58407) ((-49 . -21) T) ((-49 . -25) T) ((-196 . -657) 58357) ((-155 . -664) 58328) ((-159 . -591) 58260) ((-536 . -21) T) ((-536 . -25) T) ((-487 . -25) T) ((-487 . -21) T) ((-450 . -140) 58210) ((-999 . -563) 58192) ((-983 . -563) 58174) ((-922 . -97) T) ((-794 . -97) T) ((-738 . -387) 58138) ((-39 . -124) T) ((-638 . -339) T) ((-192 . -826) T) ((-640 . -733) T) ((-640 . -730) T) ((-535 . -1028) T) ((-523 . -1028) T) ((-466 . -1028) T) ((-640 . -666) T) ((-335 . -563) 58120) ((-329 . -563) 58102) ((-321 . -563) 58084) ((-64 . -372) T) ((-64 . -371) T) ((-103 . -564) 58014) ((-103 . -563) 57996) ((-191 . -826) T) ((-888 . -140) 57980) ((-1153 . -91) 57946) ((-710 . -124) T) ((-126 . -666) T) ((-112 . -666) T) ((-1153 . -34) 57912) ((-977 . -462) 57896) ((-535 . -23) T) ((-523 . -23) T) ((-466 . -23) T) ((-1132 . -91) 57862) ((-1132 . -34) 57828) ((-1083 . -97) T) ((-1039 . -97) T) ((-790 . -97) T) ((-205 . -462) 57812) ((-1189 . -107) 57791) ((-1187 . -107) 57770) ((-43 . -979) 57754) ((-1142 . -1145) 57738) ((-791 . -788) 57722) ((-1089 . -267) 57701) ((-106 . -263) 57676) ((-1054 . -831) 57635) ((-43 . -107) 57614) ((-613 . -973) T) ((-1092 . -1164) T) ((-1070 . -564) NIL) ((-1070 . -563) 57596) ((-985 . -560) 57571) ((-985 . -1016) T) ((-72 . -416) T) ((-72 . -371) T) ((-613 . -211) 57550) ((-141 . -979) 57534) ((-530 . -513) 57518) ((-331 . -136) 57497) ((-331 . -134) 57448) ((-328 . -136) 57427) ((-642 . -1016) T) ((-328 . -134) 57378) ((-320 . -136) 57357) ((-320 . -134) 57308) ((-241 . -134) 57287) ((-241 . -136) 57266) ((-228 . -37) 57236) ((-225 . -136) 57215) ((-113 . -339) T) ((-225 . -134) 57194) ((-227 . -37) 57164) ((-141 . -107) 57143) ((-931 . -964) 57033) ((-1078 . -784) NIL) ((-633 . -1127) T) ((-738 . -980) T) ((-638 . -1028) T) ((-1189 . -973) T) ((-1187 . -973) T) ((-1068 . -1123) T) ((-931 . -353) 57010) ((-841 . -134) T) ((-841 . -136) 56992) ((-801 . -124) T) ((-754 . -979) 56890) ((-633 . -515) T) ((-638 . -23) T) ((-590 . -563) 56822) ((-590 . -564) 56783) ((-578 . -564) NIL) ((-578 . -563) 56765) ((-460 . -158) T) ((-201 . -21) T) ((-196 . -158) T) ((-201 . -25) T) ((-449 . -1112) 56731) ((-449 . -1109) 56697) ((-251 . -563) 56679) ((-250 . -563) 56661) ((-249 . -563) 56643) ((-248 . -563) 56625) ((-247 . -563) 56607) ((-471 . -594) 56589) ((-246 . -563) 56571) ((-315 . -666) T) ((-245 . -563) 56553) ((-106 . -19) 56535) ((-159 . -666) T) ((-471 . -349) 56517) ((-192 . -563) 56499) ((-489 . -1061) 56483) ((-471 . -119) T) ((-106 . -556) 56458) ((-191 . -563) 56440) ((-449 . -34) 56406) ((-449 . -91) 56372) ((-189 . -563) 56354) ((-188 . -563) 56336) ((-187 . -563) 56318) ((-186 . -563) 56300) ((-183 . -563) 56282) ((-182 . -563) 56264) ((-181 . -563) 56246) ((-180 . -563) 56228) ((-179 . -563) 56210) ((-178 . -563) 56192) ((-177 . -563) 56174) ((-499 . -1019) 56126) ((-176 . -563) 56108) ((-175 . -563) 56090) ((-44 . -462) 56027) ((-174 . -563) 56009) ((-173 . -563) 55991) ((-754 . -107) 55882) ((-589 . -97) 55832) ((-456 . -263) 55809) ((-1029 . -563) 55561) ((-1017 . -1016) T) ((-970 . -1123) T) ((-570 . -1028) T) ((-1190 . -964) 55545) ((-1083 . -286) 55532) ((-1039 . -286) 55519) ((-113 . -1028) T) ((-758 . -97) T) ((-570 . -23) T) ((-1062 . -484) 55311) ((-362 . -97) T) ((-300 . -97) T) ((-931 . -831) 55263) ((-893 . -1016) T) ((-141 . -973) T) ((-113 . -23) T) ((-671 . -387) 55247) ((-675 . -1016) T) ((-655 . -1016) T) ((-642 . -125) T) ((-428 . -1016) T) ((-292 . -406) 55231) ((-383 . -1123) T) ((-954 . -564) 55192) ((-951 . -1127) T) ((-203 . -97) T) ((-954 . -563) 55154) ((-755 . -209) 55138) ((-951 . -515) T) ((-772 . -591) 55111) ((-330 . -1127) T) ((-451 . -563) 55073) ((-451 . -564) 55034) ((-438 . -564) 54995) ((-438 . -563) 54957) ((-383 . -815) 54941) ((-295 . -979) 54776) ((-383 . -817) 54701) ((-779 . -964) 54599) ((-460 . -484) NIL) ((-456 . -556) 54576) ((-330 . -515) T) ((-196 . -484) NIL) ((-803 . -427) T) ((-394 . -1016) T) ((-383 . -964) 54443) ((-295 . -107) 54264) ((-633 . -339) T) ((-203 . -261) T) ((-47 . -1127) T) ((-754 . -973) 54195) ((-535 . -124) T) ((-523 . -124) T) ((-466 . -124) T) ((-47 . -515) T) ((-1071 . -265) 54171) ((-1083 . -1063) 54149) ((-292 . -27) 54128) ((-984 . -97) T) ((-754 . -211) 54081) ((-218 . -784) 54060) ((-883 . -97) T) ((-653 . -97) T) ((-272 . -462) 53997) ((-455 . -97) T) ((-671 . -980) T) ((-562 . -563) 53979) ((-562 . -564) 53840) ((-383 . -353) 53824) ((-383 . -314) 53808) ((-1083 . -37) 53637) ((-1039 . -37) 53486) ((-790 . -37) 53456) ((-366 . -591) 53440) ((-589 . -286) 53378) ((-893 . -657) 53275) ((-200 . -102) 53259) ((-44 . -263) 53184) ((-675 . -657) 53154) ((-568 . -591) 53128) ((-288 . -1016) T) ((-266 . -979) 53115) ((-106 . -563) 53097) ((-106 . -564) 53079) ((-428 . -657) 53049) ((-755 . -230) 52988) ((-629 . -1016) 52966) ((-509 . -1016) T) ((-1085 . -980) T) ((-1084 . -980) T) ((-266 . -107) 52951) ((-1078 . -980) T) ((-1040 . -980) T) ((-509 . -560) 52930) ((-932 . -784) T) ((-205 . -627) 52888) ((-633 . -1028) T) ((-1118 . -680) 52864) ((-295 . -973) T) ((-319 . -25) T) ((-319 . -21) T) ((-383 . -831) 52823) ((-66 . -1123) T) ((-772 . -733) 52802) ((-394 . -657) 52776) ((-738 . -1016) T) ((-772 . -730) 52755) ((-638 . -124) T) ((-652 . -851) 52734) ((-633 . -23) T) ((-460 . -267) T) ((-772 . -666) 52713) ((-295 . -211) 52665) ((-295 . -221) 52644) ((-196 . -267) T) ((-951 . -339) T) ((-1153 . -427) 52623) ((-1132 . -427) 52602) ((-330 . -305) 52579) ((-330 . -339) T) ((-1052 . -563) 52561) ((-44 . -1157) 52511) ((-802 . -97) T) ((-589 . -259) 52495) ((-638 . -982) T) ((-452 . -591) 52460) ((-443 . -1016) T) ((-44 . -556) 52385) ((-1070 . -265) 52360) ((-39 . -585) 52299) ((-47 . -339) T) ((-1022 . -563) 52281) ((-1005 . -786) 52260) ((-578 . -265) 52235) ((-721 . -786) 52214) ((-719 . -786) 52193) ((-456 . -563) 51945) ((-218 . -387) 51914) ((-883 . -286) 51901) ((-429 . -786) 51880) ((-63 . -1123) T) ((-570 . -124) T) ((-455 . -286) 51867) ((-985 . -484) 51711) ((-266 . -973) T) ((-113 . -124) T) ((-428 . -701) T) ((-893 . -158) 51662) ((-999 . -979) 51572) ((-568 . -733) 51551) ((-546 . -1016) T) ((-568 . -730) 51530) ((-568 . -666) T) ((-272 . -263) 51509) ((-271 . -1123) T) ((-977 . -563) 51471) ((-977 . -564) 51432) ((-951 . -1028) T) ((-155 . -97) T) ((-252 . -786) T) ((-1077 . -1016) T) ((-757 . -563) 51414) ((-1029 . -265) 51391) ((-1018 . -207) 51375) ((-931 . -284) T) ((-738 . -657) 51359) ((-335 . -979) 51311) ((-330 . -1028) T) ((-329 . -979) 51263) ((-390 . -563) 51245) ((-361 . -563) 51227) ((-321 . -979) 51179) ((-205 . -563) 51111) ((-999 . -107) 51007) ((-951 . -23) T) ((-103 . -979) 50957) ((-829 . -97) T) ((-777 . -97) T) ((-747 . -97) T) ((-708 . -97) T) ((-618 . -97) T) ((-449 . -427) 50936) ((-394 . -158) T) ((-335 . -107) 50874) ((-329 . -107) 50812) ((-321 . -107) 50750) ((-228 . -209) 50720) ((-227 . -209) 50690) ((-330 . -23) T) ((-69 . -1123) T) ((-203 . -37) 50655) ((-103 . -107) 50589) ((-39 . -25) T) ((-39 . -21) T) ((-613 . -660) T) ((-155 . -261) 50567) ((-47 . -1028) T) ((-852 . -25) T) ((-710 . -25) T) ((-1062 . -462) 50504) ((-458 . -1016) T) ((-1191 . -591) 50478) ((-1142 . -97) T) ((-791 . -97) T) ((-218 . -980) 50409) ((-984 . -1063) T) ((-894 . -731) 50362) ((-357 . -591) 50346) ((-47 . -23) T) ((-894 . -734) 50299) ((-754 . -734) 50250) ((-754 . -731) 50201) ((-272 . -556) 50180) ((-452 . -666) T) ((-530 . -97) T) ((-802 . -286) 50137) ((-596 . -263) 50116) ((-108 . -604) T) ((-74 . -1123) T) ((-984 . -37) 50103) ((-607 . -350) 50082) ((-883 . -37) 49931) ((-671 . -1016) T) ((-455 . -37) 49780) ((-84 . -1123) T) ((-530 . -261) T) ((-1133 . -784) NIL) ((-1085 . -1016) T) ((-1084 . -1016) T) ((-1078 . -1016) T) ((-327 . -964) 49757) ((-999 . -973) T) ((-932 . -980) T) ((-44 . -563) 49739) ((-44 . -564) NIL) ((-845 . -980) T) ((-756 . -563) 49721) ((-1059 . -97) 49699) ((-999 . -221) 49650) ((-403 . -980) T) ((-335 . -973) T) ((-329 . -973) T) ((-341 . -340) 49627) ((-321 . -973) T) ((-228 . -216) 49606) ((-227 . -216) 49585) ((-105 . -340) 49559) ((-999 . -211) 49484) ((-1040 . -1016) T) ((-271 . -831) 49443) ((-103 . -973) T) ((-633 . -124) T) ((-394 . -484) 49285) ((-335 . -211) 49264) ((-335 . -221) T) ((-43 . -660) T) ((-329 . -211) 49243) ((-329 . -221) T) ((-321 . -211) 49222) ((-321 . -221) T) ((-155 . -286) 49187) ((-103 . -221) T) ((-103 . -211) T) ((-295 . -731) T) ((-801 . -21) T) ((-801 . -25) T) ((-383 . -284) T) ((-471 . -33) T) ((-106 . -265) 49162) ((-1029 . -979) 49060) ((-802 . -1063) NIL) ((-306 . -563) 49042) ((-383 . -949) 49021) ((-1029 . -107) 48912) ((-412 . -1016) T) ((-1191 . -666) T) ((-61 . -563) 48894) ((-802 . -37) 48839) ((-492 . -1123) T) ((-554 . -140) 48823) ((-482 . -563) 48805) ((-1142 . -286) 48792) ((-671 . -657) 48641) ((-495 . -732) T) ((-495 . -733) T) ((-523 . -585) 48623) ((-466 . -585) 48583) ((-331 . -427) T) ((-328 . -427) T) ((-320 . -427) T) ((-241 . -427) 48534) ((-489 . -1016) 48484) ((-225 . -427) 48435) ((-1062 . -263) 48414) ((-1089 . -563) 48396) ((-629 . -484) 48329) ((-893 . -267) 48308) ((-509 . -484) 48100) ((-1083 . -209) 48084) ((-155 . -1063) 48063) ((-1179 . -563) 48045) ((-1085 . -657) 47942) ((-1084 . -657) 47783) ((-823 . -97) T) ((-1078 . -657) 47579) ((-1040 . -657) 47476) ((-1068 . -616) 47460) ((-331 . -378) 47411) ((-328 . -378) 47362) ((-320 . -378) 47313) ((-951 . -124) T) ((-738 . -484) 47225) ((-272 . -564) NIL) ((-272 . -563) 47207) ((-841 . -427) T) ((-894 . -344) 47160) ((-754 . -344) 47139) ((-480 . -479) 47118) ((-478 . -479) 47097) ((-460 . -263) NIL) ((-456 . -265) 47074) ((-394 . -267) T) ((-330 . -124) T) ((-196 . -263) NIL) ((-633 . -464) NIL) ((-94 . -1028) T) ((-155 . -37) 46902) ((-1153 . -902) 46864) ((-1059 . -286) 46802) ((-1132 . -902) 46771) ((-841 . -378) T) ((-1029 . -973) 46702) ((-1155 . -515) T) ((-1062 . -556) 46681) ((-108 . -786) T) ((-985 . -462) 46612) ((-535 . -21) T) ((-535 . -25) T) ((-523 . -21) T) ((-523 . -25) T) ((-466 . -25) T) ((-466 . -21) T) ((-1142 . -1063) 46590) ((-1029 . -211) 46543) ((-47 . -124) T) ((-1105 . -97) T) ((-218 . -1016) 46354) ((-802 . -376) 46331) ((-1006 . -97) T) ((-995 . -97) T) ((-558 . -97) T) ((-450 . -97) T) ((-1142 . -37) 46160) ((-791 . -37) 46130) ((-671 . -158) 46041) ((-596 . -563) 46023) ((-530 . -37) 46010) ((-888 . -97) 45960) ((-796 . -563) 45942) ((-796 . -564) 45864) ((-546 . -484) NIL) ((-1161 . -980) T) ((-1154 . -980) T) ((-1133 . -980) T) ((-549 . -980) T) ((-548 . -980) T) ((-1195 . -1028) T) ((-1085 . -158) 45815) ((-1084 . -158) 45746) ((-1078 . -158) 45677) ((-1040 . -158) 45628) ((-932 . -1016) T) ((-900 . -1016) T) ((-845 . -1016) T) ((-1118 . -136) 45607) ((-738 . -736) 45591) ((-638 . -25) T) ((-638 . -21) T) ((-113 . -585) 45568) ((-640 . -817) 45550) ((-403 . -1016) T) ((-292 . -1127) 45529) ((-289 . -1127) T) ((-155 . -376) 45513) ((-1118 . -134) 45492) ((-449 . -902) 45454) ((-70 . -563) 45436) ((-103 . -734) T) ((-103 . -731) T) ((-292 . -515) 45415) ((-640 . -964) 45397) ((-289 . -515) T) ((-1195 . -23) T) ((-126 . -964) 45379) ((-456 . -979) 45277) ((-44 . -265) 45202) ((-218 . -657) 45144) ((-456 . -107) 45035) ((-1009 . -97) 45013) ((-961 . -97) T) ((-589 . -767) 44992) ((-671 . -484) 44935) ((-977 . -979) 44919) ((-570 . -21) T) ((-570 . -25) T) ((-985 . -263) 44894) ((-337 . -97) T) ((-298 . -97) T) ((-613 . -591) 44868) ((-361 . -979) 44852) ((-977 . -107) 44831) ((-755 . -387) 44815) ((-113 . -25) T) ((-87 . -563) 44797) ((-113 . -21) T) ((-558 . -286) 44592) ((-450 . -286) 44396) ((-1062 . -564) NIL) ((-361 . -107) 44375) ((-355 . -97) T) ((-193 . -563) 44357) ((-1062 . -563) 44339) ((-932 . -657) 44289) ((-1078 . -484) 44058) ((-845 . -657) 44010) ((-1040 . -484) 43980) ((-327 . -284) T) ((-1097 . -140) 43930) ((-888 . -286) 43868) ((-773 . -97) T) ((-403 . -657) 43852) ((-203 . -767) T) ((-766 . -97) T) ((-764 . -97) T) ((-453 . -140) 43802) ((-1153 . -1152) 43781) ((-1034 . -1127) T) ((-315 . -964) 43748) ((-1153 . -1147) 43718) ((-1153 . -1150) 43702) ((-1132 . -1131) 43681) ((-78 . -563) 43663) ((-836 . -563) 43645) ((-1132 . -1147) 43622) ((-1034 . -515) T) ((-852 . -786) T) ((-460 . -564) 43552) ((-460 . -563) 43534) ((-710 . -786) T) ((-355 . -261) T) ((-614 . -786) T) ((-1132 . -1129) 43518) ((-1155 . -1028) T) ((-196 . -564) 43448) ((-196 . -563) 43430) ((-985 . -556) 43405) ((-57 . -140) 43389) ((-486 . -140) 43373) ((-467 . -140) 43357) ((-335 . -1186) 43341) ((-329 . -1186) 43325) ((-321 . -1186) 43309) ((-292 . -339) 43288) ((-289 . -339) T) ((-456 . -973) 43219) ((-633 . -585) 43201) ((-1189 . -591) 43175) ((-1187 . -591) 43149) ((-1155 . -23) T) ((-629 . -462) 43133) ((-62 . -563) 43115) ((-1029 . -734) 43066) ((-1029 . -731) 43017) ((-509 . -462) 42954) ((-613 . -33) T) ((-456 . -211) 42907) ((-272 . -265) 42886) ((-218 . -158) 42865) ((-755 . -980) T) ((-43 . -591) 42823) ((-999 . -344) 42774) ((-671 . -267) 42705) ((-489 . -484) 42638) ((-756 . -979) 42589) ((-1005 . -134) 42568) ((-335 . -344) 42547) ((-329 . -344) 42526) ((-321 . -344) 42505) ((-1005 . -136) 42484) ((-802 . -209) 42461) ((-756 . -107) 42403) ((-721 . -134) 42382) ((-721 . -136) 42361) ((-241 . -880) 42328) ((-228 . -784) 42307) ((-225 . -880) 42252) ((-227 . -784) 42231) ((-719 . -134) 42210) ((-719 . -136) 42189) ((-141 . -591) 42163) ((-429 . -136) 42142) ((-429 . -134) 42121) ((-613 . -666) T) ((-762 . -563) 42103) ((-1161 . -1016) T) ((-1154 . -1016) T) ((-1133 . -1016) T) ((-1118 . -1112) 42069) ((-1118 . -1109) 42035) ((-1085 . -267) 42014) ((-1084 . -267) 41965) ((-1078 . -267) 41916) ((-1040 . -267) 41895) ((-315 . -831) 41876) ((-932 . -158) T) ((-845 . -158) T) ((-549 . -1016) T) ((-548 . -1016) T) ((-633 . -21) T) ((-633 . -25) T) ((-449 . -1150) 41860) ((-449 . -1147) 41830) ((-394 . -263) 41758) ((-292 . -1028) 41608) ((-289 . -1028) T) ((-1118 . -34) 41574) ((-1118 . -91) 41540) ((-82 . -563) 41522) ((-89 . -97) 41500) ((-1195 . -124) T) ((-536 . -134) T) ((-536 . -136) 41482) ((-487 . -136) 41464) ((-487 . -134) T) ((-292 . -23) 41317) ((-39 . -318) 41291) ((-289 . -23) T) ((-1070 . -594) 41273) ((-754 . -591) 41123) ((-1182 . -980) T) ((-1070 . -349) 41105) ((-155 . -209) 41089) ((-546 . -462) 41071) ((-218 . -484) 41004) ((-1189 . -666) T) ((-1187 . -666) T) ((-1089 . -979) 40887) ((-1089 . -107) 40756) ((-756 . -973) T) ((-485 . -97) T) ((-47 . -585) 40716) ((-480 . -97) T) ((-478 . -97) T) ((-1179 . -979) 40686) ((-961 . -37) 40670) ((-756 . -211) T) ((-756 . -221) 40649) ((-509 . -263) 40628) ((-1179 . -107) 40593) ((-1142 . -209) 40577) ((-1161 . -657) 40474) ((-985 . -564) NIL) ((-985 . -563) 40456) ((-1154 . -657) 40297) ((-1133 . -657) 40093) ((-931 . -851) T) ((-642 . -563) 40062) ((-141 . -666) T) ((-1029 . -344) 40041) ((-932 . -484) NIL) ((-228 . -387) 40010) ((-227 . -387) 39979) ((-951 . -25) T) ((-951 . -21) T) ((-549 . -657) 39952) ((-548 . -657) 39849) ((-738 . -263) 39807) ((-122 . -97) 39785) ((-772 . -964) 39683) ((-155 . -767) 39662) ((-295 . -591) 39559) ((-754 . -33) T) ((-654 . -97) T) ((-1034 . -1028) T) ((-953 . -1123) T) ((-355 . -37) 39524) ((-330 . -25) T) ((-330 . -21) T) ((-148 . -97) T) ((-144 . -97) T) ((-331 . -1176) 39508) ((-328 . -1176) 39492) ((-320 . -1176) 39476) ((-155 . -325) 39455) ((-523 . -786) T) ((-466 . -786) T) ((-1034 . -23) T) ((-85 . -563) 39437) ((-640 . -284) T) ((-773 . -37) 39407) ((-766 . -37) 39377) ((-1155 . -124) T) ((-1062 . -265) 39356) ((-894 . -732) 39309) ((-894 . -733) 39262) ((-754 . -730) 39241) ((-112 . -284) T) ((-89 . -286) 39179) ((-617 . -33) T) ((-509 . -556) 39158) ((-47 . -25) T) ((-47 . -21) T) ((-754 . -733) 39109) ((-754 . -732) 39088) ((-640 . -949) T) ((-596 . -979) 39072) ((-894 . -666) 38971) ((-754 . -666) 38902) ((-894 . -448) 38855) ((-456 . -734) 38806) ((-456 . -731) 38757) ((-841 . -1176) 38744) ((-1089 . -973) T) ((-596 . -107) 38723) ((-1089 . -302) 38700) ((-1110 . -97) 38678) ((-1017 . -563) 38660) ((-640 . -508) T) ((-755 . -1016) T) ((-1179 . -973) T) ((-389 . -1016) T) ((-228 . -980) 38591) ((-227 . -980) 38522) ((-266 . -591) 38509) ((-546 . -263) 38484) ((-629 . -627) 38442) ((-893 . -563) 38424) ((-803 . -97) T) ((-675 . -563) 38406) ((-655 . -563) 38388) ((-1161 . -158) 38339) ((-1154 . -158) 38270) ((-1133 . -158) 38201) ((-638 . -786) T) ((-932 . -267) T) ((-428 . -563) 38183) ((-573 . -666) T) ((-58 . -1016) 38161) ((-223 . -140) 38145) ((-845 . -267) T) ((-951 . -940) T) ((-573 . -448) T) ((-652 . -1127) 38124) ((-549 . -158) 38103) ((-548 . -158) 38054) ((-1169 . -786) 38033) ((-652 . -515) 37944) ((-383 . -851) T) ((-383 . -759) 37923) ((-295 . -733) T) ((-295 . -666) T) ((-394 . -563) 37905) ((-394 . -564) 37813) ((-589 . -1061) 37797) ((-106 . -594) 37779) ((-122 . -286) 37717) ((-106 . -349) 37699) ((-159 . -284) T) ((-374 . -1123) T) ((-292 . -124) 37571) ((-289 . -124) T) ((-67 . -371) T) ((-106 . -119) T) ((-489 . -462) 37555) ((-597 . -1028) T) ((-546 . -19) 37537) ((-59 . -416) T) ((-59 . -371) T) ((-763 . -1016) T) ((-546 . -556) 37512) ((-452 . -964) 37472) ((-596 . -973) T) ((-597 . -23) T) ((-1182 . -1016) T) ((-755 . -657) 37321) ((-113 . -786) NIL) ((-1083 . -387) 37305) ((-1039 . -387) 37289) ((-790 . -387) 37273) ((-804 . -97) 37224) ((-1153 . -97) T) ((-1133 . -484) 36993) ((-1110 . -286) 36931) ((-288 . -563) 36913) ((-1132 . -97) T) ((-1018 . -1016) T) ((-1085 . -263) 36898) ((-1084 . -263) 36883) ((-266 . -666) T) ((-103 . -840) NIL) ((-629 . -563) 36815) ((-629 . -564) 36776) ((-999 . -591) 36686) ((-553 . -563) 36668) ((-509 . -564) NIL) ((-509 . -563) 36650) ((-1078 . -263) 36498) ((-460 . -979) 36448) ((-651 . -427) T) ((-481 . -479) 36427) ((-477 . -479) 36406) ((-196 . -979) 36356) ((-335 . -591) 36308) ((-329 . -591) 36260) ((-203 . -784) T) ((-321 . -591) 36212) ((-554 . -97) 36162) ((-456 . -344) 36141) ((-103 . -591) 36091) ((-460 . -107) 36025) ((-218 . -462) 36009) ((-319 . -136) 35991) ((-319 . -134) T) ((-155 . -346) 35962) ((-874 . -1167) 35946) ((-196 . -107) 35880) ((-803 . -286) 35845) ((-874 . -1016) 35795) ((-738 . -564) 35756) ((-738 . -563) 35738) ((-658 . -97) T) ((-307 . -1016) T) ((-1034 . -124) T) ((-654 . -37) 35708) ((-292 . -464) 35687) ((-471 . -1123) T) ((-1153 . -261) 35653) ((-1132 . -261) 35619) ((-303 . -140) 35603) ((-985 . -265) 35578) ((-1182 . -657) 35548) ((-1071 . -33) T) ((-1191 . -964) 35525) ((-443 . -563) 35507) ((-457 . -33) T) ((-357 . -964) 35491) ((-1083 . -980) T) ((-1039 . -980) T) ((-790 . -980) T) ((-984 . -784) T) ((-755 . -158) 35402) ((-489 . -263) 35379) ((-113 . -921) 35356) ((-1161 . -267) 35335) ((-1105 . -340) 35309) ((-1006 . -243) 35293) ((-449 . -97) T) ((-341 . -1016) T) ((-228 . -1016) T) ((-227 . -1016) T) ((-1154 . -267) 35244) ((-105 . -1016) T) ((-1133 . -267) 35195) ((-803 . -1063) 35173) ((-1085 . -930) 35139) ((-558 . -340) 35079) ((-1084 . -930) 35045) ((-558 . -207) 34992) ((-546 . -563) 34974) ((-546 . -564) NIL) ((-633 . -786) T) ((-450 . -207) 34924) ((-460 . -973) T) ((-1078 . -930) 34890) ((-86 . -415) T) ((-86 . -371) T) ((-196 . -973) T) ((-1040 . -930) 34856) ((-999 . -666) T) ((-652 . -1028) T) ((-549 . -267) 34835) ((-548 . -267) 34814) ((-460 . -221) T) ((-460 . -211) T) ((-196 . -221) T) ((-196 . -211) T) ((-1077 . -563) 34796) ((-803 . -37) 34748) ((-335 . -666) T) ((-329 . -666) T) ((-321 . -666) T) ((-103 . -733) T) ((-103 . -730) T) ((-489 . -1157) 34732) ((-103 . -666) T) ((-652 . -23) T) ((-1195 . -25) T) ((-449 . -261) 34698) ((-1195 . -21) T) ((-1132 . -286) 34637) ((-1087 . -97) T) ((-39 . -134) 34609) ((-39 . -136) 34581) ((-489 . -556) 34558) ((-1029 . -591) 34408) ((-554 . -286) 34346) ((-44 . -594) 34296) ((-44 . -609) 34246) ((-44 . -349) 34196) ((-1070 . -33) T) ((-802 . -784) NIL) ((-597 . -124) T) ((-458 . -563) 34178) ((-218 . -263) 34155) ((-590 . -33) T) ((-578 . -33) T) ((-1005 . -427) 34106) ((-755 . -484) 33980) ((-721 . -427) 33911) ((-719 . -427) 33862) ((-429 . -427) 33813) ((-883 . -387) 33797) ((-671 . -563) 33779) ((-228 . -657) 33721) ((-227 . -657) 33663) ((-671 . -564) 33524) ((-455 . -387) 33508) ((-315 . -279) T) ((-327 . -851) T) ((-928 . -97) 33486) ((-951 . -786) T) ((-58 . -484) 33419) ((-1132 . -1063) 33371) ((-932 . -263) NIL) ((-203 . -980) T) ((-355 . -767) T) ((-1029 . -33) T) ((-536 . -427) T) ((-487 . -427) T) ((-1136 . -1010) 33355) ((-1136 . -1016) 33333) ((-218 . -556) 33310) ((-1136 . -1012) 33267) ((-1085 . -563) 33249) ((-1084 . -563) 33231) ((-1078 . -563) 33213) ((-1078 . -564) NIL) ((-1040 . -563) 33195) ((-803 . -376) 33179) ((-499 . -97) T) ((-1153 . -37) 33020) ((-1132 . -37) 32834) ((-801 . -136) T) ((-536 . -378) T) ((-47 . -786) T) ((-487 . -378) T) ((-1155 . -21) T) ((-1155 . -25) T) ((-1029 . -730) 32813) ((-1029 . -733) 32764) ((-1029 . -732) 32743) ((-922 . -1016) T) ((-954 . -33) T) ((-794 . -1016) T) ((-1165 . -97) T) ((-1029 . -666) 32674) ((-607 . -97) T) ((-509 . -265) 32653) ((-1097 . -97) T) ((-451 . -33) T) ((-438 . -33) T) ((-331 . -97) T) ((-328 . -97) T) ((-320 . -97) T) ((-241 . -97) T) ((-225 . -97) T) ((-452 . -284) T) ((-984 . -980) T) ((-883 . -980) T) ((-292 . -585) 32561) ((-289 . -585) 32522) ((-455 . -980) T) ((-453 . -97) T) ((-412 . -563) 32504) ((-1083 . -1016) T) ((-1039 . -1016) T) ((-790 . -1016) T) ((-1053 . -97) T) ((-755 . -267) 32435) ((-893 . -979) 32318) ((-452 . -949) T) ((-675 . -979) 32288) ((-428 . -979) 32258) ((-1059 . -1035) 32242) ((-1018 . -484) 32175) ((-893 . -107) 32044) ((-841 . -97) T) ((-675 . -107) 32009) ((-57 . -97) 31959) ((-489 . -564) 31920) ((-489 . -563) 31832) ((-488 . -97) 31810) ((-486 . -97) 31760) ((-468 . -97) 31738) ((-467 . -97) 31688) ((-428 . -107) 31651) ((-228 . -158) 31630) ((-227 . -158) 31609) ((-394 . -979) 31583) ((-1118 . -902) 31545) ((-927 . -1028) T) ((-874 . -484) 31478) ((-460 . -734) T) ((-449 . -37) 31319) ((-394 . -107) 31286) ((-460 . -731) T) ((-928 . -286) 31224) ((-196 . -734) T) ((-196 . -731) T) ((-927 . -23) T) ((-652 . -124) T) ((-1132 . -376) 31194) ((-292 . -25) 31047) ((-155 . -387) 31031) ((-292 . -21) 30903) ((-289 . -25) T) ((-289 . -21) T) ((-796 . -344) T) ((-106 . -33) T) ((-456 . -591) 30753) ((-802 . -980) T) ((-546 . -265) 30728) ((-535 . -136) T) ((-523 . -136) T) ((-466 . -136) T) ((-1083 . -657) 30557) ((-1039 . -657) 30406) ((-1034 . -585) 30388) ((-790 . -657) 30358) ((-613 . -1123) T) ((-1 . -97) T) ((-218 . -563) 30110) ((-1142 . -387) 30094) ((-1097 . -286) 29898) ((-893 . -973) T) ((-675 . -973) T) ((-655 . -973) T) ((-589 . -1016) 29848) ((-977 . -591) 29832) ((-791 . -387) 29816) ((-481 . -97) T) ((-477 . -97) T) ((-225 . -286) 29803) ((-241 . -286) 29790) ((-893 . -302) 29769) ((-361 . -591) 29753) ((-453 . -286) 29557) ((-228 . -484) 29490) ((-613 . -964) 29388) ((-227 . -484) 29321) ((-1053 . -286) 29247) ((-758 . -1016) T) ((-738 . -979) 29231) ((-1161 . -263) 29216) ((-1154 . -263) 29201) ((-1133 . -263) 29049) ((-362 . -1016) T) ((-300 . -1016) T) ((-394 . -973) T) ((-155 . -980) T) ((-57 . -286) 28987) ((-738 . -107) 28966) ((-548 . -263) 28951) ((-488 . -286) 28889) ((-486 . -286) 28827) ((-468 . -286) 28765) ((-467 . -286) 28703) ((-394 . -211) 28682) ((-456 . -33) T) ((-932 . -564) 28612) ((-203 . -1016) T) ((-932 . -563) 28594) ((-900 . -563) 28576) ((-900 . -564) 28551) ((-845 . -563) 28533) ((-638 . -136) T) ((-640 . -851) T) ((-640 . -759) T) ((-403 . -563) 28515) ((-1034 . -21) T) ((-1034 . -25) T) ((-613 . -353) 28499) ((-112 . -851) T) ((-803 . -209) 28483) ((-76 . -1123) T) ((-122 . -121) 28467) ((-977 . -33) T) ((-1189 . -964) 28441) ((-1187 . -964) 28398) ((-1142 . -980) T) ((-791 . -980) T) ((-456 . -730) 28377) ((-331 . -1063) 28356) ((-328 . -1063) 28335) ((-320 . -1063) 28314) ((-456 . -733) 28265) ((-456 . -732) 28244) ((-205 . -33) T) ((-456 . -666) 28175) ((-58 . -462) 28159) ((-530 . -980) T) ((-1083 . -158) 28050) ((-1039 . -158) 27961) ((-984 . -1016) T) ((-1005 . -880) 27906) ((-883 . -1016) T) ((-756 . -591) 27857) ((-721 . -880) 27826) ((-653 . -1016) T) ((-719 . -880) 27793) ((-486 . -259) 27777) ((-613 . -831) 27736) ((-455 . -1016) T) ((-429 . -880) 27703) ((-77 . -1123) T) ((-331 . -37) 27668) ((-328 . -37) 27633) ((-320 . -37) 27598) ((-241 . -37) 27447) ((-225 . -37) 27296) ((-841 . -1063) T) ((-570 . -136) 27275) ((-570 . -134) 27254) ((-113 . -136) T) ((-113 . -134) NIL) ((-390 . -666) T) ((-738 . -973) T) ((-319 . -427) T) ((-1161 . -930) 27220) ((-1154 . -930) 27186) ((-1133 . -930) 27152) ((-841 . -37) 27117) ((-203 . -657) 27082) ((-295 . -46) 27052) ((-39 . -385) 27024) ((-129 . -563) 27006) ((-927 . -124) T) ((-754 . -1123) T) ((-159 . -851) T) ((-319 . -378) T) ((-489 . -265) 26983) ((-44 . -33) T) ((-754 . -964) 26812) ((-605 . -97) T) ((-597 . -21) T) ((-597 . -25) T) ((-1018 . -462) 26796) ((-1132 . -209) 26766) ((-617 . -1123) T) ((-223 . -97) 26716) ((-802 . -1016) T) ((-1089 . -591) 26641) ((-984 . -657) 26628) ((-671 . -979) 26471) ((-1083 . -484) 26418) ((-883 . -657) 26267) ((-1039 . -484) 26219) ((-455 . -657) 26068) ((-65 . -563) 26050) ((-671 . -107) 25879) ((-874 . -462) 25863) ((-1179 . -591) 25823) ((-756 . -666) T) ((-1085 . -979) 25706) ((-1084 . -979) 25541) ((-1078 . -979) 25331) ((-1040 . -979) 25214) ((-931 . -1127) T) ((-1011 . -97) 25192) ((-754 . -353) 25162) ((-931 . -515) T) ((-1085 . -107) 25031) ((-1084 . -107) 24852) ((-1078 . -107) 24621) ((-1040 . -107) 24490) ((-1021 . -1019) 24454) ((-355 . -784) T) ((-1161 . -563) 24436) ((-1154 . -563) 24418) ((-1133 . -563) 24400) ((-1133 . -564) NIL) ((-218 . -265) 24377) ((-39 . -427) T) ((-203 . -158) T) ((-155 . -1016) T) ((-633 . -136) T) ((-633 . -134) NIL) ((-549 . -563) 24359) ((-548 . -563) 24341) ((-829 . -1016) T) ((-777 . -1016) T) ((-747 . -1016) T) ((-708 . -1016) T) ((-601 . -788) 24325) ((-618 . -1016) T) ((-754 . -831) 24258) ((-39 . -378) NIL) ((-1034 . -604) T) ((-802 . -657) 24203) ((-228 . -462) 24187) ((-227 . -462) 24171) ((-652 . -585) 24119) ((-596 . -591) 24093) ((-272 . -33) T) ((-671 . -973) T) ((-536 . -1176) 24080) ((-487 . -1176) 24057) ((-1142 . -1016) T) ((-1083 . -267) 23968) ((-1039 . -267) 23899) ((-984 . -158) T) ((-791 . -1016) T) ((-883 . -158) 23810) ((-721 . -1145) 23794) ((-589 . -484) 23727) ((-75 . -563) 23709) ((-671 . -302) 23674) ((-1089 . -666) T) ((-530 . -1016) T) ((-455 . -158) 23585) ((-223 . -286) 23523) ((-1054 . -1028) T) ((-68 . -563) 23505) ((-1179 . -666) T) ((-1085 . -973) T) ((-1084 . -973) T) ((-303 . -97) 23455) ((-1078 . -973) T) ((-1054 . -23) T) ((-1040 . -973) T) ((-89 . -1035) 23439) ((-797 . -1028) T) ((-1085 . -211) 23398) ((-1084 . -221) 23377) ((-1084 . -211) 23329) ((-1078 . -211) 23216) ((-1078 . -221) 23195) ((-295 . -831) 23101) ((-797 . -23) T) ((-155 . -657) 22929) ((-383 . -1127) T) ((-1017 . -344) T) ((-951 . -136) T) ((-931 . -339) T) ((-801 . -427) T) ((-874 . -263) 22906) ((-292 . -786) T) ((-289 . -786) NIL) ((-805 . -97) T) ((-652 . -25) T) ((-383 . -515) T) ((-652 . -21) T) ((-330 . -136) 22888) ((-330 . -134) T) ((-1059 . -1016) 22866) ((-428 . -660) T) ((-73 . -563) 22848) ((-110 . -786) T) ((-223 . -259) 22832) ((-218 . -979) 22730) ((-79 . -563) 22712) ((-675 . -344) 22665) ((-1087 . -767) T) ((-677 . -213) 22649) ((-1071 . -1123) T) ((-130 . -213) 22631) ((-218 . -107) 22522) ((-1142 . -657) 22351) ((-47 . -136) T) ((-802 . -158) T) ((-791 . -657) 22321) ((-457 . -1123) T) ((-883 . -484) 22268) ((-596 . -666) T) ((-530 . -657) 22255) ((-961 . -980) T) ((-455 . -484) 22198) ((-874 . -19) 22182) ((-874 . -556) 22159) ((-755 . -564) NIL) ((-755 . -563) 22141) ((-932 . -979) 22091) ((-389 . -563) 22073) ((-228 . -263) 22050) ((-227 . -263) 22027) ((-460 . -840) NIL) ((-292 . -29) 21997) ((-103 . -1123) T) ((-931 . -1028) T) ((-196 . -840) NIL) ((-845 . -979) 21949) ((-999 . -964) 21847) ((-932 . -107) 21781) ((-241 . -209) 21765) ((-677 . -634) 21749) ((-403 . -979) 21733) ((-355 . -980) T) ((-931 . -23) T) ((-845 . -107) 21671) ((-633 . -1112) NIL) ((-460 . -591) 21621) ((-103 . -815) 21603) ((-103 . -817) 21585) ((-633 . -1109) NIL) ((-196 . -591) 21535) ((-335 . -964) 21519) ((-329 . -964) 21503) ((-303 . -286) 21441) ((-321 . -964) 21425) ((-203 . -267) T) ((-403 . -107) 21404) ((-58 . -563) 21336) ((-155 . -158) T) ((-1034 . -786) T) ((-103 . -964) 21296) ((-823 . -1016) T) ((-773 . -980) T) ((-766 . -980) T) ((-633 . -34) NIL) ((-633 . -91) NIL) ((-289 . -921) 21257) ((-535 . -427) T) ((-523 . -427) T) ((-466 . -427) T) ((-383 . -339) T) ((-218 . -973) 21188) ((-1062 . -33) T) ((-452 . -851) T) ((-927 . -585) 21136) ((-228 . -556) 21113) ((-227 . -556) 21090) ((-999 . -353) 21074) ((-802 . -484) 20982) ((-218 . -211) 20935) ((-1070 . -1123) T) ((-763 . -563) 20917) ((-1190 . -1028) T) ((-1182 . -563) 20899) ((-1142 . -158) 20790) ((-103 . -353) 20772) ((-103 . -314) 20754) ((-984 . -267) T) ((-883 . -267) 20685) ((-738 . -344) 20664) ((-590 . -1123) T) ((-578 . -1123) T) ((-455 . -267) 20595) ((-530 . -158) T) ((-303 . -259) 20579) ((-1190 . -23) T) ((-1118 . -97) T) ((-1105 . -1016) T) ((-1006 . -1016) T) ((-995 . -1016) T) ((-81 . -563) 20561) ((-651 . -97) T) ((-331 . -325) 20540) ((-558 . -1016) T) ((-328 . -325) 20519) ((-320 . -325) 20498) ((-450 . -1016) T) ((-1097 . -207) 20448) ((-241 . -230) 20410) ((-1054 . -124) T) ((-558 . -560) 20386) ((-999 . -831) 20319) ((-932 . -973) T) ((-845 . -973) T) ((-450 . -560) 20298) ((-1078 . -731) NIL) ((-1078 . -734) NIL) ((-1018 . -564) 20259) ((-453 . -207) 20209) ((-1018 . -563) 20191) ((-932 . -221) T) ((-932 . -211) T) ((-403 . -973) T) ((-888 . -1016) 20141) ((-845 . -221) T) ((-797 . -124) T) ((-638 . -427) T) ((-779 . -1028) 20120) ((-103 . -831) NIL) ((-1118 . -261) 20086) ((-803 . -784) 20065) ((-1029 . -1123) T) ((-836 . -666) T) ((-155 . -484) 19977) ((-927 . -25) T) ((-836 . -448) T) ((-383 . -1028) T) ((-460 . -733) T) ((-460 . -730) T) ((-841 . -325) T) ((-460 . -666) T) ((-196 . -733) T) ((-196 . -730) T) ((-927 . -21) T) ((-196 . -666) T) ((-779 . -23) 19929) ((-295 . -284) 19908) ((-962 . -213) 19854) ((-383 . -23) T) ((-874 . -564) 19815) ((-874 . -563) 19727) ((-589 . -462) 19711) ((-44 . -938) 19661) ((-307 . -563) 19643) ((-1029 . -964) 19472) ((-546 . -594) 19454) ((-546 . -349) 19436) ((-319 . -1176) 19413) ((-954 . -1123) T) ((-802 . -267) T) ((-1142 . -484) 19360) ((-451 . -1123) T) ((-438 . -1123) T) ((-540 . -97) T) ((-1083 . -263) 19287) ((-570 . -427) 19266) ((-928 . -923) 19250) ((-1182 . -358) 19222) ((-113 . -427) T) ((-1104 . -97) T) ((-1009 . -1016) 19200) ((-961 . -1016) T) ((-824 . -786) T) ((-327 . -1127) T) ((-1161 . -979) 19083) ((-1029 . -353) 19053) ((-1154 . -979) 18888) ((-1133 . -979) 18678) ((-1161 . -107) 18547) ((-1154 . -107) 18368) ((-1133 . -107) 18137) ((-1118 . -286) 18124) ((-327 . -515) T) ((-341 . -563) 18106) ((-266 . -284) T) ((-549 . -979) 18079) ((-548 . -979) 17962) ((-337 . -1016) T) ((-298 . -1016) T) ((-228 . -563) 17923) ((-227 . -563) 17884) ((-931 . -124) T) ((-105 . -563) 17866) ((-581 . -23) T) ((-633 . -385) 17833) ((-557 . -23) T) ((-601 . -97) T) ((-549 . -107) 17804) ((-548 . -107) 17673) ((-355 . -1016) T) ((-312 . -97) T) ((-155 . -267) 17584) ((-1132 . -784) 17537) ((-654 . -980) T) ((-1059 . -484) 17470) ((-1029 . -831) 17403) ((-773 . -1016) T) ((-766 . -1016) T) ((-764 . -1016) T) ((-92 . -97) T) ((-133 . -786) T) ((-562 . -815) 17387) ((-106 . -1123) T) ((-1005 . -97) T) ((-985 . -33) T) ((-721 . -97) T) ((-719 . -97) T) ((-436 . -97) T) ((-429 . -97) T) ((-218 . -734) 17338) ((-218 . -731) 17289) ((-592 . -97) T) ((-1142 . -267) 17200) ((-607 . -580) 17184) ((-589 . -263) 17161) ((-961 . -657) 17145) ((-530 . -267) T) ((-893 . -591) 17070) ((-1190 . -124) T) ((-675 . -591) 17030) ((-655 . -591) 17017) ((-252 . -97) T) ((-428 . -591) 16947) ((-49 . -97) T) ((-536 . -97) T) ((-487 . -97) T) ((-1161 . -973) T) ((-1154 . -973) T) ((-1133 . -973) T) ((-1161 . -211) 16906) ((-298 . -657) 16888) ((-1154 . -221) 16867) ((-1154 . -211) 16819) ((-1133 . -211) 16706) ((-1133 . -221) 16685) ((-1118 . -37) 16582) ((-932 . -734) T) ((-549 . -973) T) ((-548 . -973) T) ((-932 . -731) T) ((-900 . -734) T) ((-900 . -731) T) ((-803 . -980) T) ((-801 . -800) 16566) ((-104 . -563) 16548) ((-633 . -427) T) ((-355 . -657) 16513) ((-394 . -591) 16487) ((-652 . -786) 16466) ((-651 . -37) 16431) ((-548 . -211) 16390) ((-39 . -664) 16362) ((-327 . -305) 16339) ((-327 . -339) T) ((-999 . -284) 16290) ((-271 . -1028) 16172) ((-1022 . -1123) T) ((-157 . -97) T) ((-1136 . -563) 16139) ((-779 . -124) 16091) ((-589 . -1157) 16075) ((-773 . -657) 16045) ((-766 . -657) 16015) ((-456 . -1123) T) ((-335 . -284) T) ((-329 . -284) T) ((-321 . -284) T) ((-589 . -556) 15992) ((-383 . -124) T) ((-489 . -609) 15976) ((-103 . -284) T) ((-271 . -23) 15860) ((-489 . -594) 15844) ((-633 . -378) NIL) ((-489 . -349) 15828) ((-268 . -563) 15810) ((-89 . -1016) 15788) ((-103 . -949) T) ((-523 . -132) T) ((-1169 . -140) 15772) ((-456 . -964) 15601) ((-1155 . -134) 15562) ((-1155 . -136) 15523) ((-977 . -1123) T) ((-922 . -563) 15505) ((-794 . -563) 15487) ((-755 . -979) 15330) ((-1005 . -286) 15317) ((-205 . -1123) T) ((-721 . -286) 15304) ((-719 . -286) 15291) ((-755 . -107) 15120) ((-429 . -286) 15107) ((-1083 . -564) NIL) ((-1083 . -563) 15089) ((-1039 . -563) 15071) ((-1039 . -564) 14819) ((-961 . -158) T) ((-790 . -563) 14801) ((-874 . -265) 14778) ((-558 . -484) 14561) ((-757 . -964) 14545) ((-450 . -484) 14337) ((-893 . -666) T) ((-675 . -666) T) ((-655 . -666) T) ((-327 . -1028) T) ((-1090 . -563) 14319) ((-201 . -97) T) ((-456 . -353) 14289) ((-485 . -1016) T) ((-480 . -1016) T) ((-478 . -1016) T) ((-738 . -591) 14263) ((-951 . -427) T) ((-888 . -484) 14196) ((-327 . -23) T) ((-581 . -124) T) ((-557 . -124) T) ((-330 . -427) T) ((-218 . -344) 14175) ((-355 . -158) T) ((-1153 . -980) T) ((-1132 . -980) T) ((-203 . -930) T) ((-638 . -363) T) ((-394 . -666) T) ((-640 . -1127) T) ((-1054 . -585) 14123) ((-535 . -800) 14107) ((-1071 . -1100) 14083) ((-640 . -515) T) ((-122 . -1016) 14061) ((-1182 . -979) 14045) ((-654 . -1016) T) ((-456 . -831) 13978) ((-601 . -37) 13948) ((-330 . -378) T) ((-292 . -136) 13927) ((-292 . -134) 13906) ((-112 . -515) T) ((-289 . -136) 13862) ((-289 . -134) 13818) ((-47 . -427) T) ((-148 . -1016) T) ((-144 . -1016) T) ((-1071 . -102) 13765) ((-721 . -1063) 13743) ((-629 . -33) T) ((-1182 . -107) 13722) ((-509 . -33) T) ((-457 . -102) 13706) ((-228 . -265) 13683) ((-227 . -265) 13660) ((-802 . -263) 13611) ((-44 . -1123) T) ((-755 . -973) T) ((-1089 . -46) 13588) ((-755 . -302) 13550) ((-1005 . -37) 13399) ((-755 . -211) 13378) ((-721 . -37) 13207) ((-719 . -37) 13056) ((-429 . -37) 12905) ((-589 . -564) 12866) ((-589 . -563) 12778) ((-536 . -1063) T) ((-487 . -1063) T) ((-1059 . -462) 12762) ((-1110 . -1016) 12740) ((-1054 . -25) T) ((-1054 . -21) T) ((-449 . -980) T) ((-1133 . -731) NIL) ((-1133 . -734) NIL) ((-927 . -786) 12719) ((-758 . -563) 12701) ((-797 . -21) T) ((-797 . -25) T) ((-738 . -666) T) ((-159 . -1127) T) ((-536 . -37) 12666) ((-487 . -37) 12631) ((-362 . -563) 12613) ((-300 . -563) 12595) ((-155 . -263) 12553) ((-61 . -1123) T) ((-108 . -97) T) ((-803 . -1016) T) ((-159 . -515) T) ((-654 . -657) 12523) ((-271 . -124) 12407) ((-203 . -563) 12389) ((-203 . -564) 12319) ((-931 . -585) 12258) ((-1182 . -973) T) ((-1034 . -136) T) ((-578 . -1100) 12233) ((-671 . -840) 12212) ((-546 . -33) T) ((-590 . -102) 12196) ((-578 . -102) 12142) ((-1142 . -263) 12069) ((-671 . -591) 11994) ((-272 . -1123) T) ((-1089 . -964) 11892) ((-1078 . -840) NIL) ((-984 . -564) 11807) ((-984 . -563) 11789) ((-319 . -97) T) ((-228 . -979) 11687) ((-227 . -979) 11585) ((-370 . -97) T) ((-883 . -563) 11567) ((-883 . -564) 11428) ((-653 . -563) 11410) ((-1180 . -1117) 11379) ((-455 . -563) 11361) ((-455 . -564) 11222) ((-225 . -387) 11206) ((-241 . -387) 11190) ((-228 . -107) 11081) ((-227 . -107) 10972) ((-1085 . -591) 10897) ((-1084 . -591) 10794) ((-1078 . -591) 10646) ((-1040 . -591) 10571) ((-327 . -124) T) ((-80 . -416) T) ((-80 . -371) T) ((-931 . -25) T) ((-931 . -21) T) ((-804 . -1016) 10522) ((-803 . -657) 10474) ((-355 . -267) T) ((-155 . -930) 10426) ((-633 . -363) T) ((-927 . -925) 10410) ((-640 . -1028) T) ((-633 . -152) 10392) ((-1153 . -1016) T) ((-1132 . -1016) T) ((-292 . -1109) 10371) ((-292 . -1112) 10350) ((-1076 . -97) T) ((-292 . -889) 10329) ((-126 . -1028) T) ((-112 . -1028) T) ((-554 . -1167) 10313) ((-640 . -23) T) ((-554 . -1016) 10263) ((-89 . -484) 10196) ((-159 . -339) T) ((-292 . -91) 10175) ((-292 . -34) 10154) ((-558 . -462) 10088) ((-126 . -23) T) ((-112 . -23) T) ((-658 . -1016) T) ((-450 . -462) 10025) ((-383 . -585) 9973) ((-596 . -964) 9871) ((-888 . -462) 9855) ((-331 . -980) T) ((-328 . -980) T) ((-320 . -980) T) ((-241 . -980) T) ((-225 . -980) T) ((-802 . -564) NIL) ((-802 . -563) 9837) ((-1190 . -21) T) ((-530 . -930) T) ((-671 . -666) T) ((-1190 . -25) T) ((-228 . -973) 9768) ((-227 . -973) 9699) ((-70 . -1123) T) ((-228 . -211) 9652) ((-227 . -211) 9605) ((-39 . -97) T) ((-841 . -980) T) ((-1092 . -97) T) ((-1085 . -666) T) ((-1084 . -666) T) ((-1078 . -666) T) ((-1078 . -730) NIL) ((-1078 . -733) NIL) ((-852 . -97) T) ((-1040 . -666) T) ((-710 . -97) T) ((-614 . -97) T) ((-449 . -1016) T) ((-315 . -1028) T) ((-159 . -1028) T) ((-295 . -851) 9584) ((-1153 . -657) 9425) ((-803 . -158) T) ((-1132 . -657) 9239) ((-779 . -21) 9191) ((-779 . -25) 9143) ((-223 . -1061) 9127) ((-122 . -484) 9060) ((-383 . -25) T) ((-383 . -21) T) ((-315 . -23) T) ((-155 . -564) 8828) ((-155 . -563) 8810) ((-159 . -23) T) ((-589 . -265) 8787) ((-489 . -33) T) ((-829 . -563) 8769) ((-87 . -1123) T) ((-777 . -563) 8751) ((-747 . -563) 8733) ((-708 . -563) 8715) ((-618 . -563) 8697) ((-218 . -591) 8547) ((-1087 . -1016) T) ((-1083 . -979) 8370) ((-1062 . -1123) T) ((-1039 . -979) 8213) ((-790 . -979) 8197) ((-1083 . -107) 8006) ((-1039 . -107) 7835) ((-790 . -107) 7814) ((-1142 . -564) NIL) ((-1142 . -563) 7796) ((-319 . -1063) T) ((-791 . -563) 7778) ((-995 . -263) 7757) ((-78 . -1123) T) ((-932 . -840) NIL) ((-558 . -263) 7733) ((-1110 . -484) 7666) ((-460 . -1123) T) ((-530 . -563) 7648) ((-450 . -263) 7627) ((-196 . -1123) T) ((-1005 . -209) 7611) ((-266 . -851) T) ((-756 . -284) 7590) ((-801 . -97) T) ((-721 . -209) 7574) ((-932 . -591) 7524) ((-888 . -263) 7501) ((-845 . -591) 7453) ((-581 . -21) T) ((-581 . -25) T) ((-557 . -21) T) ((-319 . -37) 7418) ((-633 . -664) 7385) ((-460 . -815) 7367) ((-460 . -817) 7349) ((-449 . -657) 7190) ((-196 . -815) 7172) ((-62 . -1123) T) ((-196 . -817) 7154) ((-557 . -25) T) ((-403 . -591) 7128) ((-460 . -964) 7088) ((-803 . -484) 7000) ((-196 . -964) 6960) ((-218 . -33) T) ((-928 . -1016) 6938) ((-1153 . -158) 6869) ((-1132 . -158) 6800) ((-652 . -134) 6779) ((-652 . -136) 6758) ((-640 . -124) T) ((-128 . -440) 6735) ((-601 . -599) 6719) ((-1059 . -563) 6651) ((-112 . -124) T) ((-452 . -1127) T) ((-558 . -556) 6627) ((-450 . -556) 6606) ((-312 . -311) 6575) ((-499 . -1016) T) ((-452 . -515) T) ((-1083 . -973) T) ((-1039 . -973) T) ((-790 . -973) T) ((-218 . -730) 6554) ((-218 . -733) 6505) ((-218 . -732) 6484) ((-1083 . -302) 6461) ((-218 . -666) 6392) ((-888 . -19) 6376) ((-460 . -353) 6358) ((-460 . -314) 6340) ((-1039 . -302) 6312) ((-330 . -1176) 6289) ((-196 . -353) 6271) ((-196 . -314) 6253) ((-888 . -556) 6230) ((-1083 . -211) T) ((-607 . -1016) T) ((-1165 . -1016) T) ((-1097 . -1016) T) ((-1005 . -230) 6167) ((-331 . -1016) T) ((-328 . -1016) T) ((-320 . -1016) T) ((-241 . -1016) T) ((-225 . -1016) T) ((-82 . -1123) T) ((-123 . -97) 6145) ((-117 . -97) 6123) ((-1097 . -560) 6102) ((-453 . -1016) T) ((-1053 . -1016) T) ((-453 . -560) 6081) ((-228 . -734) 6032) ((-228 . -731) 5983) ((-227 . -734) 5934) ((-39 . -1063) NIL) ((-227 . -731) 5885) ((-999 . -851) 5836) ((-932 . -733) T) ((-932 . -730) T) ((-932 . -666) T) ((-900 . -733) T) ((-845 . -666) T) ((-89 . -462) 5820) ((-460 . -831) NIL) ((-841 . -1016) T) ((-203 . -979) 5785) ((-803 . -267) T) ((-196 . -831) NIL) ((-772 . -1028) 5764) ((-57 . -1016) 5714) ((-488 . -1016) 5692) ((-486 . -1016) 5642) ((-468 . -1016) 5620) ((-467 . -1016) 5570) ((-535 . -97) T) ((-523 . -97) T) ((-466 . -97) T) ((-449 . -158) 5501) ((-335 . -851) T) ((-329 . -851) T) ((-321 . -851) T) ((-203 . -107) 5457) ((-772 . -23) 5409) ((-403 . -666) T) ((-103 . -851) T) ((-39 . -37) 5354) ((-103 . -759) T) ((-536 . -325) T) ((-487 . -325) T) ((-1132 . -484) 5214) ((-292 . -427) 5193) ((-289 . -427) T) ((-773 . -263) 5172) ((-315 . -124) T) ((-159 . -124) T) ((-271 . -25) 5037) ((-271 . -21) 4921) ((-44 . -1100) 4900) ((-64 . -563) 4882) ((-823 . -563) 4864) ((-554 . -484) 4797) ((-44 . -102) 4747) ((-1018 . -401) 4731) ((-1018 . -344) 4710) ((-985 . -1123) T) ((-984 . -979) 4697) ((-883 . -979) 4540) ((-455 . -979) 4383) ((-607 . -657) 4367) ((-984 . -107) 4352) ((-883 . -107) 4181) ((-452 . -339) T) ((-331 . -657) 4133) ((-328 . -657) 4085) ((-320 . -657) 4037) ((-241 . -657) 3886) ((-225 . -657) 3735) ((-874 . -594) 3719) ((-455 . -107) 3548) ((-1170 . -97) T) ((-874 . -349) 3532) ((-1133 . -840) NIL) ((-72 . -563) 3514) ((-893 . -46) 3493) ((-568 . -1028) T) ((-1 . -1016) T) ((-650 . -97) T) ((-638 . -97) T) ((-1169 . -97) 3443) ((-1161 . -591) 3368) ((-1154 . -591) 3265) ((-122 . -462) 3249) ((-1105 . -563) 3231) ((-1006 . -563) 3213) ((-366 . -23) T) ((-995 . -563) 3195) ((-85 . -1123) T) ((-1133 . -591) 3047) ((-841 . -657) 3012) ((-568 . -23) T) ((-558 . -563) 2994) ((-558 . -564) NIL) ((-450 . -564) NIL) ((-450 . -563) 2976) ((-481 . -1016) T) ((-477 . -1016) T) ((-327 . -25) T) ((-327 . -21) T) ((-123 . -286) 2914) ((-117 . -286) 2852) ((-549 . -591) 2839) ((-203 . -973) T) ((-548 . -591) 2764) ((-355 . -930) T) ((-203 . -221) T) ((-203 . -211) T) ((-888 . -564) 2725) ((-888 . -563) 2637) ((-801 . -37) 2624) ((-1153 . -267) 2575) ((-1132 . -267) 2526) ((-1034 . -427) T) ((-473 . -786) T) ((-292 . -1051) 2505) ((-927 . -136) 2484) ((-927 . -134) 2463) ((-466 . -286) 2450) ((-272 . -1100) 2429) ((-452 . -1028) T) ((-802 . -979) 2374) ((-570 . -97) T) ((-1110 . -462) 2358) ((-228 . -344) 2337) ((-227 . -344) 2316) ((-272 . -102) 2266) ((-984 . -973) T) ((-113 . -97) T) ((-883 . -973) T) ((-802 . -107) 2195) ((-452 . -23) T) ((-455 . -973) T) ((-984 . -211) T) ((-883 . -302) 2164) ((-455 . -302) 2121) ((-331 . -158) T) ((-328 . -158) T) ((-320 . -158) T) ((-241 . -158) 2032) ((-225 . -158) 1943) ((-893 . -964) 1841) ((-675 . -964) 1812) ((-1021 . -97) T) ((-1009 . -563) 1779) ((-961 . -563) 1761) ((-1161 . -666) T) ((-1154 . -666) T) ((-1133 . -730) NIL) ((-155 . -979) 1671) ((-1133 . -733) NIL) ((-841 . -158) T) ((-1133 . -666) T) ((-1180 . -140) 1655) ((-931 . -318) 1629) ((-928 . -484) 1562) ((-779 . -786) 1541) ((-523 . -1063) T) ((-449 . -267) 1492) ((-549 . -666) T) ((-337 . -563) 1474) ((-298 . -563) 1456) ((-394 . -964) 1354) ((-548 . -666) T) ((-383 . -786) 1305) ((-155 . -107) 1201) ((-772 . -124) 1153) ((-677 . -140) 1137) ((-1169 . -286) 1075) ((-460 . -284) T) ((-355 . -563) 1042) ((-489 . -938) 1026) ((-355 . -564) 940) ((-196 . -284) T) ((-130 . -140) 922) ((-654 . -263) 901) ((-460 . -949) T) ((-535 . -37) 888) ((-523 . -37) 875) ((-466 . -37) 840) ((-196 . -949) T) ((-802 . -973) T) ((-773 . -563) 822) ((-766 . -563) 804) ((-764 . -563) 786) ((-755 . -840) 765) ((-1191 . -1028) T) ((-1142 . -979) 588) ((-791 . -979) 572) ((-802 . -221) T) ((-802 . -211) NIL) ((-629 . -1123) T) ((-1191 . -23) T) ((-755 . -591) 497) ((-509 . -1123) T) ((-394 . -314) 481) ((-530 . -979) 468) ((-1142 . -107) 277) ((-640 . -585) 259) ((-791 . -107) 238) ((-357 . -23) T) ((-1097 . -484) 30)) \ No newline at end of file
+((($ $) . T) ((#0=(-798 |#1|) $) . T) ((#0# |#2|) . T))
+((($ $) . T) ((|#2| $) |has| |#1| (-213)) ((|#2| |#1|) |has| |#1| (-213)) ((|#3| |#1|) . T) ((|#3| $) . T))
+(((-607 . -1018) T) ((-243 . -486) 142655) ((-227 . -486) 142598) ((-532 . -107) 142583) ((-497 . -23) T) ((-225 . -1018) 142533) ((-113 . -288) 142490) ((-455 . -486) 142282) ((-635 . -97) T) ((-1055 . -486) 142201) ((-368 . -126) T) ((-1182 . -907) 142170) ((-556 . -464) 142154) ((-570 . -126) T) ((-760 . -784) T) ((-494 . -55) 142104) ((-57 . -486) 142037) ((-490 . -486) 141970) ((-396 . -833) 141929) ((-157 . -975) T) ((-488 . -486) 141862) ((-470 . -486) 141795) ((-469 . -486) 141728) ((-740 . -966) 141515) ((-640 . -37) 141480) ((-321 . -327) T) ((-1013 . -1012) 141464) ((-1013 . -1018) 141442) ((-157 . -223) 141393) ((-157 . -213) 141344) ((-1013 . -1014) 141302) ((-805 . -265) 141260) ((-205 . -736) T) ((-205 . -733) T) ((-635 . -263) NIL) ((-1064 . -1102) 141239) ((-385 . -923) 141223) ((-642 . -21) T) ((-642 . -25) T) ((-1184 . -593) 141197) ((-294 . -149) 141176) ((-294 . -134) 141155) ((-1064 . -102) 141105) ((-128 . -25) T) ((-39 . -211) 141082) ((-112 . -21) T) ((-112 . -25) T) ((-560 . -267) 141058) ((-452 . -267) 141037) ((-1144 . -975) T) ((-793 . -975) T) ((-740 . -316) 141021) ((-113 . -1065) NIL) ((-89 . -565) 140953) ((-454 . -126) T) ((-548 . -1125) T) ((-1144 . -304) 140930) ((-532 . -975) T) ((-1144 . -213) T) ((-607 . -659) 140914) ((-890 . -267) 140891) ((-58 . -33) T) ((-986 . -736) T) ((-986 . -733) T) ((-757 . -668) T) ((-673 . -46) 140856) ((-572 . -37) 140843) ((-333 . -269) T) ((-330 . -269) T) ((-322 . -269) T) ((-243 . -269) 140774) ((-227 . -269) 140705) ((-953 . -97) T) ((-391 . -668) T) ((-113 . -37) 140650) ((-391 . -450) T) ((-332 . -97) T) ((-1120 . -982) T) ((-653 . -982) T) ((-1087 . -46) 140627) ((-1086 . -46) 140597) ((-1080 . -46) 140574) ((-964 . -142) 140520) ((-843 . -269) T) ((-1042 . -46) 140492) ((-635 . -288) NIL) ((-487 . -565) 140474) ((-482 . -565) 140456) ((-480 . -565) 140438) ((-305 . -1018) 140388) ((-654 . -429) 140319) ((-47 . -97) T) ((-1155 . -265) 140304) ((-1134 . -265) 140224) ((-591 . -611) 140208) ((-591 . -596) 140192) ((-317 . -21) T) ((-317 . -25) T) ((-39 . -327) NIL) ((-161 . -21) T) ((-161 . -25) T) ((-591 . -351) 140176) ((-556 . -265) 140153) ((-366 . -97) T) ((-1036 . -134) T) ((-122 . -565) 140085) ((-807 . -1018) T) ((-603 . -389) 140069) ((-656 . -565) 140051) ((-150 . -565) 140033) ((-146 . -565) 140015) ((-1184 . -668) T) ((-1020 . -33) T) ((-804 . -736) NIL) ((-804 . -733) NIL) ((-795 . -788) T) ((-673 . -819) NIL) ((-1193 . -126) T) ((-359 . -126) T) ((-837 . -97) T) ((-673 . -966) 139893) ((-497 . -126) T) ((-1007 . -389) 139877) ((-930 . -464) 139861) ((-113 . -378) 139838) ((-1080 . -1125) 139817) ((-723 . -389) 139801) ((-721 . -389) 139785) ((-876 . -33) T) ((-635 . -1065) NIL) ((-230 . -593) 139622) ((-229 . -593) 139446) ((-758 . -853) 139425) ((-431 . -389) 139409) ((-556 . -19) 139393) ((-1060 . -1119) 139362) ((-1080 . -819) NIL) ((-1080 . -817) 139314) ((-556 . -558) 139291) ((-1112 . -565) 139223) ((-1088 . -565) 139205) ((-60 . -373) T) ((-1086 . -966) 139140) ((-1080 . -966) 139106) ((-635 . -37) 139056) ((-451 . -265) 139041) ((-673 . -355) 139025) ((-603 . -982) T) ((-1155 . -932) 138991) ((-1134 . -932) 138957) ((-987 . -1102) 138932) ((-805 . -566) 138740) ((-805 . -565) 138722) ((-1099 . -464) 138659) ((-396 . -951) 138638) ((-47 . -288) 138625) ((-987 . -102) 138571) ((-455 . -464) 138508) ((-491 . -1125) T) ((-1055 . -464) 138479) ((-1080 . -316) 138431) ((-1080 . -355) 138383) ((-415 . -97) T) ((-1007 . -982) T) ((-230 . -33) T) ((-229 . -33) T) ((-723 . -982) T) ((-721 . -982) T) ((-673 . -833) 138360) ((-431 . -982) T) ((-57 . -464) 138344) ((-963 . -981) 138318) ((-490 . -464) 138302) ((-488 . -464) 138286) ((-470 . -464) 138270) ((-469 . -464) 138254) ((-225 . -486) 138187) ((-963 . -107) 138154) ((-1087 . -833) 138067) ((-615 . -1030) T) ((-1086 . -833) 137973) ((-1080 . -833) 137806) ((-1042 . -833) 137790) ((-332 . -1065) T) ((-300 . -981) 137772) ((-230 . -732) 137751) ((-230 . -735) 137702) ((-230 . -734) 137681) ((-229 . -732) 137660) ((-229 . -735) 137611) ((-229 . -734) 137590) ((-49 . -982) T) ((-230 . -668) 137521) ((-229 . -668) 137452) ((-1120 . -1018) T) ((-615 . -23) T) ((-538 . -982) T) ((-489 . -982) T) ((-357 . -981) 137417) ((-300 . -107) 137392) ((-71 . -361) T) ((-71 . -373) T) ((-953 . -37) 137329) ((-635 . -378) 137311) ((-94 . -97) T) ((-653 . -1018) T) ((-933 . -136) 137283) ((-933 . -138) 137255) ((-357 . -107) 137211) ((-297 . -1129) 137190) ((-451 . -932) 137156) ((-332 . -37) 137121) ((-39 . -348) 137093) ((-806 . -565) 136965) ((-123 . -121) 136949) ((-117 . -121) 136933) ((-775 . -981) 136903) ((-774 . -21) 136855) ((-768 . -981) 136839) ((-774 . -25) 136791) ((-297 . -517) 136742) ((-525 . -769) T) ((-220 . -1125) T) ((-775 . -107) 136707) ((-768 . -107) 136686) ((-1155 . -565) 136668) ((-1134 . -565) 136650) ((-1134 . -566) 136323) ((-1085 . -842) 136302) ((-1041 . -842) 136281) ((-47 . -37) 136246) ((-1191 . -1030) T) ((-556 . -565) 136158) ((-556 . -566) 136119) ((-1189 . -1030) T) ((-220 . -966) 135948) ((-1085 . -593) 135873) ((-1041 . -593) 135798) ((-660 . -565) 135780) ((-792 . -593) 135754) ((-1191 . -23) T) ((-1189 . -23) T) ((-963 . -975) T) ((-1099 . -265) 135733) ((-157 . -346) 135684) ((-934 . -1125) T) ((-43 . -23) T) ((-455 . -265) 135663) ((-542 . -1018) T) ((-1060 . -1027) 135632) ((-1022 . -1021) 135584) ((-124 . -1125) T) ((-368 . -21) T) ((-368 . -25) T) ((-143 . -1030) T) ((-1197 . -97) T) ((-934 . -817) 135566) ((-934 . -819) 135548) ((-1120 . -659) 135445) ((-572 . -211) 135429) ((-570 . -21) T) ((-268 . -517) T) ((-570 . -25) T) ((-1106 . -1018) T) ((-653 . -659) 135394) ((-220 . -355) 135364) ((-934 . -966) 135324) ((-357 . -975) T) ((-203 . -982) T) ((-113 . -211) 135301) ((-57 . -265) 135278) ((-143 . -23) T) ((-488 . -265) 135255) ((-305 . -486) 135188) ((-469 . -265) 135165) ((-357 . -223) T) ((-357 . -213) T) ((-775 . -975) T) ((-768 . -975) T) ((-654 . -882) 135134) ((-642 . -788) T) ((-451 . -565) 135116) ((-768 . -213) 135095) ((-128 . -788) T) ((-603 . -1018) T) ((-1099 . -558) 135074) ((-511 . -1102) 135053) ((-314 . -1018) T) ((-297 . -341) 135032) ((-385 . -138) 135011) ((-385 . -136) 134990) ((-896 . -1030) 134889) ((-220 . -833) 134822) ((-756 . -1030) 134753) ((-599 . -790) 134737) ((-455 . -558) 134716) ((-511 . -102) 134666) ((-934 . -355) 134648) ((-934 . -316) 134630) ((-92 . -1018) T) ((-896 . -23) 134441) ((-454 . -21) T) ((-454 . -25) T) ((-756 . -23) 134312) ((-1089 . -565) 134294) ((-57 . -19) 134278) ((-1089 . -566) 134200) ((-1085 . -668) T) ((-1041 . -668) T) ((-488 . -19) 134184) ((-469 . -19) 134168) ((-57 . -558) 134145) ((-1007 . -1018) T) ((-834 . -97) 134123) ((-792 . -668) T) ((-723 . -1018) T) ((-488 . -558) 134100) ((-469 . -558) 134077) ((-721 . -1018) T) ((-721 . -989) 134044) ((-438 . -1018) T) ((-431 . -1018) T) ((-542 . -659) 134019) ((-594 . -1018) T) ((-934 . -833) NIL) ((-1163 . -46) 133996) ((-575 . -1030) T) ((-615 . -126) T) ((-1157 . -97) T) ((-1156 . -46) 133966) ((-1135 . -46) 133943) ((-1120 . -160) 133894) ((-1001 . -1129) 133845) ((-254 . -1018) T) ((-83 . -418) T) ((-83 . -373) T) ((-1086 . -286) 133824) ((-1080 . -286) 133803) ((-49 . -1018) T) ((-1001 . -517) 133754) ((-653 . -160) T) ((-550 . -46) 133731) ((-205 . -593) 133696) ((-538 . -1018) T) ((-489 . -1018) T) ((-337 . -1129) T) ((-331 . -1129) T) ((-323 . -1129) T) ((-462 . -761) T) ((-462 . -853) T) ((-297 . -1030) T) ((-103 . -1129) T) ((-317 . -788) T) ((-198 . -853) T) ((-198 . -761) T) ((-656 . -981) 133666) ((-337 . -517) T) ((-331 . -517) T) ((-323 . -517) T) ((-103 . -517) T) ((-603 . -659) 133636) ((-1080 . -951) NIL) ((-297 . -23) T) ((-65 . -1125) T) ((-930 . -565) 133568) ((-635 . -211) 133550) ((-656 . -107) 133515) ((-591 . -33) T) ((-225 . -464) 133499) ((-1020 . -1016) 133483) ((-159 . -1018) T) ((-885 . -842) 133462) ((-457 . -842) 133441) ((-1193 . -21) T) ((-1193 . -25) T) ((-1191 . -126) T) ((-1189 . -126) T) ((-1007 . -659) 133290) ((-986 . -593) 133277) ((-885 . -593) 133202) ((-723 . -659) 133031) ((-501 . -565) 133013) ((-501 . -566) 132994) ((-721 . -659) 132843) ((-1182 . -97) T) ((-998 . -97) T) ((-359 . -25) T) ((-359 . -21) T) ((-457 . -593) 132768) ((-438 . -659) 132739) ((-431 . -659) 132588) ((-918 . -97) T) ((-679 . -97) T) ((-497 . -25) T) ((-1135 . -1125) 132567) ((-1167 . -565) 132533) ((-1135 . -819) NIL) ((-1135 . -817) 132485) ((-132 . -97) T) ((-43 . -126) T) ((-1099 . -566) NIL) ((-1099 . -565) 132467) ((-1056 . -1039) 132412) ((-321 . -982) T) ((-609 . -565) 132394) ((-268 . -1030) T) ((-333 . -565) 132376) ((-330 . -565) 132358) ((-322 . -565) 132340) ((-243 . -566) 132088) ((-243 . -565) 132070) ((-227 . -565) 132052) ((-227 . -566) 131913) ((-972 . -1119) 131842) ((-834 . -288) 131780) ((-1197 . -1065) T) ((-1156 . -966) 131715) ((-1135 . -966) 131681) ((-1120 . -486) 131648) ((-1055 . -565) 131630) ((-760 . -668) T) ((-556 . -267) 131607) ((-538 . -659) 131572) ((-455 . -566) NIL) ((-455 . -565) 131554) ((-489 . -659) 131499) ((-294 . -97) T) ((-291 . -97) T) ((-268 . -23) T) ((-143 . -126) T) ((-364 . -668) T) ((-805 . -981) 131451) ((-843 . -565) 131433) ((-843 . -566) 131415) ((-805 . -107) 131353) ((-130 . -97) T) ((-110 . -97) T) ((-654 . -1147) 131337) ((-656 . -975) T) ((-635 . -327) NIL) ((-490 . -565) 131269) ((-357 . -736) T) ((-203 . -1018) T) ((-357 . -733) T) ((-205 . -735) T) ((-205 . -732) T) ((-57 . -566) 131230) ((-57 . -565) 131142) ((-205 . -668) T) ((-488 . -566) 131103) ((-488 . -565) 131015) ((-470 . -565) 130947) ((-469 . -566) 130908) ((-469 . -565) 130820) ((-1001 . -341) 130771) ((-39 . -389) 130748) ((-75 . -1125) T) ((-804 . -842) NIL) ((-337 . -307) 130732) ((-337 . -341) T) ((-331 . -307) 130716) ((-331 . -341) T) ((-323 . -307) 130700) ((-323 . -341) T) ((-294 . -263) 130679) ((-103 . -341) T) ((-68 . -1125) T) ((-1135 . -316) 130631) ((-804 . -593) 130576) ((-1135 . -355) 130528) ((-896 . -126) 130383) ((-756 . -126) 130254) ((-890 . -596) 130238) ((-1007 . -160) 130149) ((-890 . -351) 130133) ((-986 . -735) T) ((-986 . -732) T) ((-723 . -160) 130024) ((-721 . -160) 129935) ((-757 . -46) 129897) ((-986 . -668) T) ((-305 . -464) 129881) ((-885 . -668) T) ((-431 . -160) 129792) ((-225 . -265) 129769) ((-457 . -668) T) ((-1182 . -288) 129707) ((-1163 . -833) 129620) ((-1156 . -833) 129526) ((-1155 . -981) 129361) ((-1135 . -833) 129194) ((-1134 . -981) 129002) ((-1120 . -269) 128981) ((-1060 . -142) 128965) ((-996 . -97) T) ((-860 . -887) T) ((-73 . -1125) T) ((-679 . -288) 128903) ((-157 . -842) 128856) ((-609 . -360) 128828) ((-30 . -887) T) ((-1 . -565) 128810) ((-1036 . -97) T) ((-1001 . -23) T) ((-49 . -569) 128794) ((-1001 . -1030) T) ((-933 . -387) 128766) ((-550 . -833) 128679) ((-416 . -97) T) ((-132 . -288) NIL) ((-805 . -975) T) ((-774 . -788) 128658) ((-79 . -1125) T) ((-653 . -269) T) ((-39 . -982) T) ((-538 . -160) T) ((-489 . -160) T) ((-483 . -565) 128640) ((-157 . -593) 128550) ((-479 . -565) 128532) ((-329 . -138) 128514) ((-329 . -136) T) ((-337 . -1030) T) ((-331 . -1030) T) ((-323 . -1030) T) ((-934 . -286) T) ((-847 . -286) T) ((-805 . -223) T) ((-103 . -1030) T) ((-805 . -213) 128493) ((-1155 . -107) 128314) ((-1134 . -107) 128103) ((-225 . -1159) 128087) ((-525 . -786) T) ((-337 . -23) T) ((-332 . -327) T) ((-294 . -288) 128074) ((-291 . -288) 128015) ((-331 . -23) T) ((-297 . -126) T) ((-323 . -23) T) ((-934 . -951) T) ((-103 . -23) T) ((-225 . -558) 127992) ((-1157 . -37) 127884) ((-1144 . -842) 127863) ((-108 . -1018) T) ((-964 . -97) T) ((-1144 . -593) 127788) ((-804 . -735) NIL) ((-793 . -593) 127762) ((-804 . -732) NIL) ((-757 . -819) NIL) ((-804 . -668) T) ((-1007 . -486) 127635) ((-723 . -486) 127582) ((-721 . -486) 127534) ((-532 . -593) 127521) ((-757 . -966) 127351) ((-431 . -486) 127294) ((-366 . -367) T) ((-58 . -1125) T) ((-570 . -788) 127273) ((-473 . -606) T) ((-1060 . -907) 127242) ((-933 . -429) T) ((-640 . -786) T) ((-482 . -733) T) ((-451 . -981) 127077) ((-321 . -1018) T) ((-291 . -1065) NIL) ((-268 . -126) T) ((-372 . -1018) T) ((-635 . -348) 127044) ((-803 . -982) T) ((-203 . -569) 127021) ((-305 . -265) 126998) ((-451 . -107) 126819) ((-1155 . -975) T) ((-1134 . -975) T) ((-757 . -355) 126803) ((-157 . -668) T) ((-599 . -97) T) ((-1155 . -223) 126782) ((-1155 . -213) 126734) ((-1134 . -213) 126639) ((-1134 . -223) 126618) ((-933 . -380) NIL) ((-615 . -587) 126566) ((-294 . -37) 126476) ((-291 . -37) 126405) ((-67 . -565) 126387) ((-297 . -466) 126353) ((-1099 . -267) 126332) ((-1031 . -1030) 126263) ((-81 . -1125) T) ((-59 . -565) 126245) ((-455 . -267) 126224) ((-1184 . -966) 126201) ((-1078 . -1018) T) ((-1031 . -23) 126072) ((-757 . -833) 126008) ((-1144 . -668) T) ((-1020 . -1125) T) ((-1007 . -269) 125939) ((-826 . -97) T) ((-723 . -269) 125850) ((-305 . -19) 125834) ((-57 . -267) 125811) ((-721 . -269) 125742) ((-793 . -668) T) ((-113 . -786) NIL) ((-488 . -267) 125719) ((-305 . -558) 125696) ((-469 . -267) 125673) ((-431 . -269) 125604) ((-964 . -288) 125455) ((-532 . -668) T) ((-607 . -565) 125437) ((-225 . -566) 125398) ((-225 . -565) 125310) ((-1061 . -33) T) ((-876 . -1125) T) ((-321 . -659) 125255) ((-615 . -25) T) ((-615 . -21) T) ((-451 . -975) T) ((-583 . -395) 125220) ((-559 . -395) 125185) ((-1036 . -1065) T) ((-538 . -269) T) ((-489 . -269) T) ((-1156 . -286) 125164) ((-451 . -213) 125116) ((-451 . -223) 125095) ((-1135 . -286) 125074) ((-1001 . -126) T) ((-805 . -736) 125053) ((-135 . -97) T) ((-39 . -1018) T) ((-805 . -733) 125032) ((-591 . -940) 125016) ((-537 . -982) T) ((-525 . -982) T) ((-468 . -982) T) ((-385 . -429) T) ((-337 . -126) T) ((-294 . -378) 125000) ((-291 . -378) 124961) ((-331 . -126) T) ((-323 . -126) T) ((-1135 . -951) NIL) ((-1094 . -1018) T) ((-1013 . -565) 124928) ((-103 . -126) T) ((-1036 . -37) 124915) ((-854 . -1018) T) ((-712 . -1018) T) ((-616 . -1018) T) ((-642 . -138) T) ((-112 . -138) T) ((-1191 . -21) T) ((-1191 . -25) T) ((-1189 . -21) T) ((-1189 . -25) T) ((-609 . -981) 124899) ((-497 . -788) T) ((-473 . -788) T) ((-333 . -981) 124851) ((-330 . -981) 124803) ((-322 . -981) 124755) ((-230 . -1125) T) ((-229 . -1125) T) ((-243 . -981) 124598) ((-227 . -981) 124441) ((-609 . -107) 124420) ((-333 . -107) 124358) ((-330 . -107) 124296) ((-322 . -107) 124234) ((-243 . -107) 124063) ((-227 . -107) 123892) ((-758 . -1129) 123871) ((-572 . -389) 123855) ((-43 . -21) T) ((-43 . -25) T) ((-756 . -587) 123763) ((-758 . -517) 123742) ((-230 . -966) 123571) ((-229 . -966) 123400) ((-122 . -115) 123384) ((-843 . -981) 123349) ((-640 . -982) T) ((-654 . -97) T) ((-321 . -160) T) ((-143 . -21) T) ((-143 . -25) T) ((-86 . -565) 123331) ((-843 . -107) 123287) ((-39 . -659) 123232) ((-803 . -1018) T) ((-305 . -566) 123193) ((-305 . -565) 123105) ((-1134 . -733) 123058) ((-1134 . -736) 123011) ((-230 . -355) 122981) ((-229 . -355) 122951) ((-599 . -37) 122921) ((-560 . -33) T) ((-458 . -1030) 122852) ((-452 . -33) T) ((-1031 . -126) 122723) ((-896 . -25) 122534) ((-807 . -565) 122516) ((-896 . -21) 122471) ((-756 . -21) 122382) ((-756 . -25) 122234) ((-572 . -982) T) ((-1091 . -517) 122213) ((-1085 . -46) 122190) ((-333 . -975) T) ((-330 . -975) T) ((-458 . -23) 122061) ((-322 . -975) T) ((-227 . -975) T) ((-243 . -975) T) ((-1041 . -46) 122033) ((-113 . -982) T) ((-963 . -593) 122007) ((-890 . -33) T) ((-333 . -213) 121986) ((-333 . -223) T) ((-330 . -213) 121965) ((-330 . -223) T) ((-227 . -304) 121922) ((-322 . -213) 121901) ((-322 . -223) T) ((-243 . -304) 121873) ((-243 . -213) 121852) ((-1070 . -142) 121836) ((-230 . -833) 121769) ((-229 . -833) 121702) ((-1003 . -788) T) ((-1138 . -1125) T) ((-392 . -1030) T) ((-979 . -23) T) ((-843 . -975) T) ((-300 . -593) 121684) ((-953 . -786) T) ((-1120 . -932) 121650) ((-1086 . -853) 121629) ((-1080 . -853) 121608) ((-843 . -223) T) ((-758 . -341) 121587) ((-363 . -23) T) ((-123 . -1018) 121565) ((-117 . -1018) 121543) ((-843 . -213) T) ((-1080 . -761) NIL) ((-357 . -593) 121508) ((-803 . -659) 121495) ((-972 . -142) 121460) ((-39 . -160) T) ((-635 . -389) 121442) ((-654 . -288) 121429) ((-775 . -593) 121389) ((-768 . -593) 121363) ((-297 . -25) T) ((-297 . -21) T) ((-603 . -265) 121342) ((-537 . -1018) T) ((-525 . -1018) T) ((-468 . -1018) T) ((-225 . -267) 121319) ((-291 . -211) 121280) ((-1085 . -819) NIL) ((-1041 . -819) 121139) ((-125 . -788) T) ((-1085 . -966) 121021) ((-1041 . -966) 120906) ((-169 . -565) 120888) ((-792 . -966) 120786) ((-723 . -265) 120713) ((-758 . -1030) T) ((-963 . -668) T) ((-556 . -596) 120697) ((-972 . -907) 120626) ((-929 . -97) T) ((-758 . -23) T) ((-654 . -1065) 120604) ((-635 . -982) T) ((-556 . -351) 120588) ((-329 . -429) T) ((-321 . -269) T) ((-1172 . -1018) T) ((-377 . -97) T) ((-268 . -21) T) ((-268 . -25) T) ((-339 . -668) T) ((-652 . -1018) T) ((-640 . -1018) T) ((-339 . -450) T) ((-1120 . -565) 120570) ((-1085 . -355) 120554) ((-1041 . -355) 120538) ((-953 . -389) 120500) ((-132 . -209) 120482) ((-357 . -735) T) ((-357 . -732) T) ((-803 . -160) T) ((-357 . -668) T) ((-653 . -565) 120464) ((-654 . -37) 120293) ((-1171 . -1169) 120277) ((-329 . -380) T) ((-1171 . -1018) 120227) ((-537 . -659) 120214) ((-525 . -659) 120201) ((-468 . -659) 120166) ((-294 . -577) 120145) ((-775 . -668) T) ((-768 . -668) T) ((-591 . -1125) T) ((-1001 . -587) 120093) ((-1085 . -833) 120036) ((-1041 . -833) 120020) ((-607 . -981) 120004) ((-103 . -587) 119986) ((-458 . -126) 119857) ((-1091 . -1030) T) ((-885 . -46) 119826) ((-572 . -1018) T) ((-607 . -107) 119805) ((-305 . -267) 119782) ((-457 . -46) 119739) ((-1091 . -23) T) ((-113 . -1018) T) ((-98 . -97) 119717) ((-1181 . -1030) T) ((-979 . -126) T) ((-953 . -982) T) ((-760 . -966) 119701) ((-933 . -666) 119673) ((-1181 . -23) T) ((-640 . -659) 119638) ((-542 . -565) 119620) ((-364 . -966) 119604) ((-332 . -982) T) ((-363 . -126) T) ((-302 . -966) 119588) ((-205 . -819) 119570) ((-934 . -853) T) ((-89 . -33) T) ((-934 . -761) T) ((-847 . -853) T) ((-462 . -1129) T) ((-1106 . -565) 119552) ((-1023 . -1018) T) ((-198 . -1129) T) ((-929 . -288) 119517) ((-205 . -966) 119477) ((-39 . -269) T) ((-1001 . -21) T) ((-1001 . -25) T) ((-1036 . -769) T) ((-462 . -517) T) ((-337 . -25) T) ((-198 . -517) T) ((-337 . -21) T) ((-331 . -25) T) ((-331 . -21) T) ((-656 . -593) 119437) ((-323 . -25) T) ((-323 . -21) T) ((-103 . -25) T) ((-103 . -21) T) ((-47 . -982) T) ((-537 . -160) T) ((-525 . -160) T) ((-468 . -160) T) ((-603 . -565) 119419) ((-679 . -678) 119403) ((-314 . -565) 119385) ((-66 . -361) T) ((-66 . -373) T) ((-1020 . -102) 119369) ((-986 . -819) 119351) ((-885 . -819) 119276) ((-598 . -1030) T) ((-572 . -659) 119263) ((-457 . -819) NIL) ((-1060 . -97) T) ((-986 . -966) 119245) ((-92 . -565) 119227) ((-454 . -138) T) ((-885 . -966) 119109) ((-113 . -659) 119054) ((-598 . -23) T) ((-457 . -966) 118932) ((-1007 . -566) NIL) ((-1007 . -565) 118914) ((-723 . -566) NIL) ((-723 . -565) 118875) ((-721 . -566) 118510) ((-721 . -565) 118424) ((-1031 . -587) 118332) ((-438 . -565) 118314) ((-431 . -565) 118296) ((-431 . -566) 118157) ((-964 . -209) 118103) ((-122 . -33) T) ((-758 . -126) T) ((-805 . -842) 118082) ((-594 . -565) 118064) ((-333 . -1188) 118048) ((-330 . -1188) 118032) ((-322 . -1188) 118016) ((-123 . -486) 117949) ((-117 . -486) 117882) ((-483 . -733) T) ((-483 . -736) T) ((-482 . -735) T) ((-98 . -288) 117820) ((-202 . -97) 117798) ((-635 . -1018) T) ((-640 . -160) T) ((-805 . -593) 117750) ((-63 . -362) T) ((-254 . -565) 117732) ((-63 . -373) T) ((-885 . -355) 117716) ((-803 . -269) T) ((-49 . -565) 117698) ((-929 . -37) 117646) ((-538 . -565) 117628) ((-457 . -355) 117612) ((-538 . -566) 117594) ((-489 . -565) 117576) ((-843 . -1188) 117563) ((-804 . -1125) T) ((-642 . -429) T) ((-468 . -486) 117529) ((-462 . -341) T) ((-333 . -346) 117508) ((-330 . -346) 117487) ((-322 . -346) 117466) ((-198 . -341) T) ((-656 . -668) T) ((-112 . -429) T) ((-1192 . -1183) 117450) ((-804 . -817) 117427) ((-804 . -819) NIL) ((-896 . -788) 117326) ((-756 . -788) 117277) ((-599 . -601) 117261) ((-1112 . -33) T) ((-159 . -565) 117243) ((-1031 . -21) 117154) ((-1031 . -25) 117006) ((-804 . -966) 116983) ((-885 . -833) 116964) ((-1144 . -46) 116941) ((-843 . -346) T) ((-57 . -596) 116925) ((-488 . -596) 116909) ((-457 . -833) 116886) ((-69 . -418) T) ((-69 . -373) T) ((-469 . -596) 116870) ((-57 . -351) 116854) ((-572 . -160) T) ((-488 . -351) 116838) ((-469 . -351) 116822) ((-768 . -650) 116806) ((-1085 . -286) 116785) ((-1091 . -126) T) ((-113 . -160) T) ((-1060 . -288) 116723) ((-157 . -1125) T) ((-583 . -686) 116707) ((-559 . -686) 116691) ((-1181 . -126) T) ((-1156 . -853) 116670) ((-1135 . -853) 116649) ((-1135 . -761) NIL) ((-635 . -659) 116599) ((-1134 . -842) 116552) ((-953 . -1018) T) ((-804 . -355) 116529) ((-804 . -316) 116506) ((-838 . -1030) T) ((-157 . -817) 116490) ((-157 . -819) 116415) ((-462 . -1030) T) ((-332 . -1018) T) ((-198 . -1030) T) ((-74 . -418) T) ((-74 . -373) T) ((-157 . -966) 116313) ((-297 . -788) T) ((-1171 . -486) 116246) ((-1155 . -593) 116143) ((-1134 . -593) 116013) ((-805 . -735) 115992) ((-805 . -732) 115971) ((-805 . -668) T) ((-462 . -23) T) ((-203 . -565) 115953) ((-161 . -429) T) ((-202 . -288) 115891) ((-84 . -418) T) ((-84 . -373) T) ((-198 . -23) T) ((-1193 . -1186) 115870) ((-537 . -269) T) ((-525 . -269) T) ((-620 . -966) 115854) ((-468 . -269) T) ((-130 . -447) 115809) ((-47 . -1018) T) ((-654 . -211) 115793) ((-804 . -833) NIL) ((-1144 . -819) NIL) ((-822 . -97) T) ((-818 . -97) T) ((-366 . -1018) T) ((-157 . -355) 115777) ((-157 . -316) 115761) ((-1144 . -966) 115643) ((-793 . -966) 115541) ((-1056 . -97) T) ((-598 . -126) T) ((-113 . -486) 115449) ((-607 . -733) 115428) ((-607 . -736) 115407) ((-532 . -966) 115389) ((-273 . -1178) 115359) ((-799 . -97) T) ((-895 . -517) 115338) ((-1120 . -981) 115221) ((-458 . -587) 115129) ((-837 . -1018) T) ((-953 . -659) 115066) ((-653 . -981) 115031) ((-556 . -33) T) ((-1061 . -1125) T) ((-1120 . -107) 114900) ((-451 . -593) 114797) ((-332 . -659) 114742) ((-157 . -833) 114701) ((-640 . -269) T) ((-635 . -160) T) ((-653 . -107) 114657) ((-1197 . -982) T) ((-1144 . -355) 114641) ((-396 . -1129) 114619) ((-291 . -786) NIL) ((-396 . -517) T) ((-205 . -286) T) ((-1134 . -732) 114572) ((-1134 . -735) 114525) ((-1155 . -668) T) ((-1134 . -668) T) ((-47 . -659) 114490) ((-205 . -951) T) ((-329 . -1178) 114467) ((-1157 . -389) 114433) ((-660 . -668) T) ((-1144 . -833) 114376) ((-108 . -565) 114358) ((-108 . -566) 114340) ((-660 . -450) T) ((-458 . -21) 114251) ((-123 . -464) 114235) ((-117 . -464) 114219) ((-458 . -25) 114071) ((-572 . -269) T) ((-542 . -981) 114046) ((-415 . -1018) T) ((-986 . -286) T) ((-113 . -269) T) ((-1022 . -97) T) ((-933 . -97) T) ((-542 . -107) 114014) ((-1056 . -288) 113952) ((-1120 . -975) T) ((-986 . -951) T) ((-64 . -1125) T) ((-979 . -25) T) ((-979 . -21) T) ((-653 . -975) T) ((-363 . -21) T) ((-363 . -25) T) ((-635 . -486) NIL) ((-953 . -160) T) ((-653 . -223) T) ((-986 . -510) T) ((-475 . -97) T) ((-332 . -160) T) ((-321 . -565) 113934) ((-372 . -565) 113916) ((-451 . -668) T) ((-1036 . -786) T) ((-825 . -966) 113884) ((-103 . -788) T) ((-603 . -981) 113868) ((-462 . -126) T) ((-1157 . -982) T) ((-198 . -126) T) ((-1070 . -97) 113846) ((-94 . -1018) T) ((-225 . -611) 113830) ((-225 . -596) 113814) ((-603 . -107) 113793) ((-294 . -389) 113777) ((-225 . -351) 113761) ((-1073 . -215) 113708) ((-929 . -211) 113692) ((-72 . -1125) T) ((-47 . -160) T) ((-642 . -365) T) ((-642 . -134) T) ((-1192 . -97) T) ((-1007 . -981) 113535) ((-243 . -842) 113514) ((-227 . -842) 113493) ((-723 . -981) 113316) ((-721 . -981) 113159) ((-560 . -1125) T) ((-1078 . -565) 113141) ((-1007 . -107) 112970) ((-972 . -97) T) ((-452 . -1125) T) ((-438 . -981) 112941) ((-431 . -981) 112784) ((-609 . -593) 112768) ((-804 . -286) T) ((-723 . -107) 112577) ((-721 . -107) 112406) ((-333 . -593) 112358) ((-330 . -593) 112310) ((-322 . -593) 112262) ((-243 . -593) 112187) ((-227 . -593) 112112) ((-1072 . -788) T) ((-1008 . -966) 112096) ((-438 . -107) 112057) ((-431 . -107) 111886) ((-997 . -966) 111863) ((-930 . -33) T) ((-898 . -565) 111824) ((-890 . -1125) T) ((-122 . -940) 111808) ((-895 . -1030) T) ((-804 . -951) NIL) ((-677 . -1030) T) ((-657 . -1030) T) ((-1171 . -464) 111792) ((-1056 . -37) 111752) ((-895 . -23) T) ((-781 . -97) T) ((-758 . -21) T) ((-758 . -25) T) ((-677 . -23) T) ((-657 . -23) T) ((-106 . -606) T) ((-843 . -593) 111717) ((-538 . -981) 111682) ((-489 . -981) 111627) ((-207 . -55) 111585) ((-430 . -23) T) ((-385 . -97) T) ((-242 . -97) T) ((-635 . -269) T) ((-799 . -37) 111555) ((-538 . -107) 111511) ((-489 . -107) 111440) ((-396 . -1030) T) ((-294 . -982) 111331) ((-291 . -982) T) ((-603 . -975) T) ((-1197 . -1018) T) ((-157 . -286) 111262) ((-396 . -23) T) ((-39 . -565) 111244) ((-39 . -566) 111228) ((-103 . -923) 111210) ((-112 . -802) 111194) ((-47 . -486) 111160) ((-1112 . -940) 111144) ((-1094 . -565) 111126) ((-1099 . -33) T) ((-854 . -565) 111108) ((-1031 . -788) 111059) ((-712 . -565) 111041) ((-616 . -565) 111023) ((-1070 . -288) 110961) ((-455 . -33) T) ((-1011 . -1125) T) ((-454 . -429) T) ((-1007 . -975) T) ((-1055 . -33) T) ((-723 . -975) T) ((-721 . -975) T) ((-592 . -215) 110945) ((-580 . -215) 110891) ((-1144 . -286) 110870) ((-1007 . -304) 110831) ((-431 . -975) T) ((-1091 . -21) T) ((-1007 . -213) 110810) ((-723 . -304) 110787) ((-723 . -213) T) ((-721 . -304) 110759) ((-305 . -596) 110743) ((-673 . -1129) 110722) ((-1091 . -25) T) ((-57 . -33) T) ((-490 . -33) T) ((-488 . -33) T) ((-431 . -304) 110701) ((-305 . -351) 110685) ((-470 . -33) T) ((-469 . -33) T) ((-933 . -1065) NIL) ((-583 . -97) T) ((-559 . -97) T) ((-673 . -517) 110616) ((-333 . -668) T) ((-330 . -668) T) ((-322 . -668) T) ((-243 . -668) T) ((-227 . -668) T) ((-972 . -288) 110524) ((-834 . -1018) 110502) ((-49 . -975) T) ((-1181 . -21) T) ((-1181 . -25) T) ((-1087 . -517) 110481) ((-1086 . -1129) 110460) ((-538 . -975) T) ((-489 . -975) T) ((-1080 . -1129) 110439) ((-339 . -966) 110423) ((-300 . -966) 110407) ((-953 . -269) T) ((-357 . -819) 110389) ((-1086 . -517) 110340) ((-1080 . -517) 110291) ((-933 . -37) 110236) ((-740 . -1030) T) ((-843 . -668) T) ((-538 . -223) T) ((-538 . -213) T) ((-489 . -213) T) ((-489 . -223) T) ((-1042 . -517) 110215) ((-332 . -269) T) ((-592 . -636) 110199) ((-357 . -966) 110159) ((-1036 . -982) T) ((-98 . -121) 110143) ((-740 . -23) T) ((-1171 . -265) 110120) ((-385 . -288) 110085) ((-1191 . -1186) 110061) ((-1189 . -1186) 110040) ((-1157 . -1018) T) ((-803 . -565) 110022) ((-775 . -966) 109991) ((-185 . -728) T) ((-184 . -728) T) ((-183 . -728) T) ((-182 . -728) T) ((-181 . -728) T) ((-180 . -728) T) ((-179 . -728) T) ((-178 . -728) T) ((-177 . -728) T) ((-176 . -728) T) ((-468 . -932) T) ((-253 . -777) T) ((-252 . -777) T) ((-251 . -777) T) ((-250 . -777) T) ((-47 . -269) T) ((-249 . -777) T) ((-248 . -777) T) ((-247 . -777) T) ((-175 . -728) T) ((-564 . -788) T) ((-599 . -389) 109975) ((-106 . -788) T) ((-598 . -21) T) ((-598 . -25) T) ((-1192 . -37) 109945) ((-113 . -265) 109896) ((-1171 . -19) 109880) ((-1171 . -558) 109857) ((-1182 . -1018) T) ((-998 . -1018) T) ((-918 . -1018) T) ((-895 . -126) T) ((-679 . -1018) T) ((-677 . -126) T) ((-657 . -126) T) ((-483 . -734) T) ((-385 . -1065) 109835) ((-430 . -126) T) ((-483 . -735) T) ((-203 . -975) T) ((-273 . -97) 109618) ((-132 . -1018) T) ((-640 . -932) T) ((-89 . -1125) T) ((-123 . -565) 109550) ((-117 . -565) 109482) ((-1197 . -160) T) ((-1086 . -341) 109461) ((-1080 . -341) 109440) ((-294 . -1018) T) ((-396 . -126) T) ((-291 . -1018) T) ((-385 . -37) 109392) ((-1049 . -97) T) ((-1157 . -659) 109284) ((-599 . -982) T) ((-297 . -136) 109263) ((-297 . -138) 109242) ((-130 . -1018) T) ((-110 . -1018) T) ((-795 . -97) T) ((-537 . -565) 109224) ((-525 . -566) 109123) ((-525 . -565) 109105) ((-468 . -565) 109087) ((-468 . -566) 109032) ((-460 . -23) T) ((-458 . -788) 108983) ((-462 . -587) 108965) ((-897 . -565) 108947) ((-198 . -587) 108929) ((-205 . -382) T) ((-607 . -593) 108913) ((-1085 . -853) 108892) ((-673 . -1030) T) ((-329 . -97) T) ((-759 . -788) T) ((-673 . -23) T) ((-321 . -981) 108837) ((-1072 . -1071) T) ((-1061 . -102) 108821) ((-1087 . -1030) T) ((-1086 . -1030) T) ((-487 . -966) 108805) ((-1080 . -1030) T) ((-1042 . -1030) T) ((-321 . -107) 108734) ((-934 . -1129) T) ((-122 . -1125) T) ((-847 . -1129) T) ((-635 . -265) NIL) ((-1172 . -565) 108716) ((-1087 . -23) T) ((-1086 . -23) T) ((-1080 . -23) T) ((-934 . -517) T) ((-1056 . -211) 108700) ((-847 . -517) T) ((-1042 . -23) T) ((-228 . -565) 108682) ((-996 . -1018) T) ((-740 . -126) T) ((-652 . -565) 108664) ((-294 . -659) 108574) ((-291 . -659) 108503) ((-640 . -565) 108485) ((-640 . -566) 108430) ((-385 . -378) 108414) ((-416 . -1018) T) ((-462 . -25) T) ((-462 . -21) T) ((-1036 . -1018) T) ((-198 . -25) T) ((-198 . -21) T) ((-654 . -389) 108398) ((-656 . -966) 108367) ((-1171 . -565) 108279) ((-1171 . -566) 108240) ((-1157 . -160) T) ((-225 . -33) T) ((-859 . -905) T) ((-1112 . -1125) T) ((-607 . -732) 108219) ((-607 . -735) 108198) ((-376 . -373) T) ((-494 . -97) 108176) ((-964 . -1018) T) ((-202 . -925) 108160) ((-477 . -97) T) ((-572 . -565) 108142) ((-44 . -788) NIL) ((-572 . -566) 108119) ((-964 . -562) 108094) ((-834 . -486) 108027) ((-321 . -975) T) ((-113 . -566) NIL) ((-113 . -565) 108009) ((-805 . -1125) T) ((-615 . -395) 107993) ((-615 . -1039) 107938) ((-473 . -142) 107920) ((-321 . -213) T) ((-321 . -223) T) ((-39 . -981) 107865) ((-805 . -817) 107849) ((-805 . -819) 107774) ((-654 . -982) T) ((-635 . -932) NIL) ((-3 . |UnionCategory|) T) ((-1155 . -46) 107744) ((-1134 . -46) 107721) ((-1055 . -940) 107692) ((-205 . -853) T) ((-39 . -107) 107621) ((-805 . -966) 107488) ((-1036 . -659) 107475) ((-1023 . -565) 107457) ((-1001 . -138) 107436) ((-1001 . -136) 107387) ((-934 . -341) T) ((-297 . -1114) 107353) ((-357 . -286) T) ((-297 . -1111) 107319) ((-294 . -160) 107298) ((-291 . -160) T) ((-933 . -211) 107275) ((-847 . -341) T) ((-538 . -1188) 107262) ((-489 . -1188) 107239) ((-337 . -138) 107218) ((-337 . -136) 107169) ((-331 . -138) 107148) ((-331 . -136) 107099) ((-560 . -1102) 107075) ((-323 . -138) 107054) ((-323 . -136) 107005) ((-297 . -34) 106971) ((-452 . -1102) 106950) ((0 . |EnumerationCategory|) T) ((-297 . -91) 106916) ((-357 . -951) T) ((-103 . -138) T) ((-103 . -136) NIL) ((-44 . -215) 106866) ((-599 . -1018) T) ((-560 . -102) 106813) ((-460 . -126) T) ((-452 . -102) 106763) ((-220 . -1030) 106694) ((-805 . -355) 106678) ((-805 . -316) 106662) ((-220 . -23) 106533) ((-986 . -853) T) ((-986 . -761) T) ((-538 . -346) T) ((-489 . -346) T) ((-329 . -1065) T) ((-305 . -33) T) ((-43 . -395) 106517) ((-806 . -1125) T) ((-368 . -686) 106501) ((-1182 . -486) 106434) ((-673 . -126) T) ((-1163 . -517) 106413) ((-1156 . -1129) 106392) ((-1156 . -517) 106343) ((-679 . -486) 106276) ((-1135 . -1129) 106255) ((-1135 . -517) 106206) ((-826 . -1018) T) ((-135 . -782) T) ((-1134 . -1125) 106185) ((-1134 . -819) 106058) ((-1134 . -817) 106028) ((-494 . -288) 105966) ((-1087 . -126) T) ((-132 . -486) NIL) ((-1086 . -126) T) ((-1080 . -126) T) ((-1042 . -126) T) ((-953 . -932) T) ((-329 . -37) 105931) ((-934 . -1030) T) ((-847 . -1030) T) ((-80 . -565) 105913) ((-39 . -975) T) ((-803 . -981) 105900) ((-934 . -23) T) ((-805 . -833) 105859) ((-642 . -97) T) ((-933 . -327) NIL) ((-556 . -1125) T) ((-902 . -23) T) ((-847 . -23) T) ((-803 . -107) 105844) ((-405 . -1030) T) ((-451 . -46) 105814) ((-128 . -97) T) ((-39 . -213) 105786) ((-39 . -223) T) ((-112 . -97) T) ((-551 . -517) 105765) ((-550 . -517) 105744) ((-635 . -565) 105726) ((-635 . -566) 105634) ((-294 . -486) 105600) ((-291 . -486) 105492) ((-1155 . -966) 105476) ((-1134 . -966) 105265) ((-929 . -389) 105249) ((-405 . -23) T) ((-1036 . -160) T) ((-1157 . -269) T) ((-599 . -659) 105219) ((-135 . -1018) T) ((-47 . -932) T) ((-385 . -211) 105203) ((-274 . -215) 105153) ((-804 . -853) T) ((-804 . -761) NIL) ((-798 . -788) T) ((-1134 . -316) 105123) ((-1134 . -355) 105093) ((-202 . -1037) 105077) ((-1171 . -267) 105054) ((-1120 . -593) 104979) ((-895 . -21) T) ((-895 . -25) T) ((-677 . -21) T) ((-677 . -25) T) ((-657 . -21) T) ((-657 . -25) T) ((-653 . -593) 104944) ((-430 . -21) T) ((-430 . -25) T) ((-317 . -97) T) ((-161 . -97) T) ((-929 . -982) T) ((-803 . -975) T) ((-715 . -97) T) ((-1156 . -341) 104923) ((-1155 . -833) 104829) ((-1135 . -341) 104808) ((-1134 . -833) 104659) ((-953 . -565) 104641) ((-385 . -769) 104594) ((-1087 . -466) 104560) ((-157 . -853) 104491) ((-1086 . -466) 104457) ((-1080 . -466) 104423) ((-654 . -1018) T) ((-1042 . -466) 104389) ((-537 . -981) 104376) ((-525 . -981) 104363) ((-468 . -981) 104328) ((-294 . -269) 104307) ((-291 . -269) T) ((-332 . -565) 104289) ((-396 . -25) T) ((-396 . -21) T) ((-94 . -265) 104268) ((-537 . -107) 104253) ((-525 . -107) 104238) ((-468 . -107) 104194) ((-1089 . -819) 104161) ((-834 . -464) 104145) ((-47 . -565) 104127) ((-47 . -566) 104072) ((-220 . -126) 103943) ((-1144 . -853) 103922) ((-757 . -1129) 103901) ((-964 . -486) 103745) ((-366 . -565) 103727) ((-757 . -517) 103658) ((-542 . -593) 103633) ((-243 . -46) 103605) ((-227 . -46) 103562) ((-497 . -481) 103539) ((-930 . -1125) T) ((-640 . -981) 103504) ((-1163 . -1030) T) ((-1156 . -1030) T) ((-1135 . -1030) T) ((-933 . -348) 103476) ((-108 . -346) T) ((-451 . -833) 103382) ((-1163 . -23) T) ((-1156 . -23) T) ((-837 . -565) 103364) ((-89 . -102) 103348) ((-1120 . -668) T) ((-838 . -788) 103299) ((-642 . -1065) T) ((-640 . -107) 103255) ((-1135 . -23) T) ((-551 . -1030) T) ((-550 . -1030) T) ((-654 . -659) 103084) ((-653 . -668) T) ((-1036 . -269) T) ((-934 . -126) T) ((-462 . -788) T) ((-902 . -126) T) ((-847 . -126) T) ((-740 . -25) T) ((-198 . -788) T) ((-740 . -21) T) ((-537 . -975) T) ((-525 . -975) T) ((-468 . -975) T) ((-551 . -23) T) ((-321 . -1188) 103061) ((-297 . -429) 103040) ((-317 . -288) 103027) ((-550 . -23) T) ((-405 . -126) T) ((-603 . -593) 103001) ((-225 . -940) 102985) ((-805 . -286) T) ((-1193 . -1183) 102969) ((-642 . -37) 102956) ((-525 . -213) T) ((-468 . -223) T) ((-468 . -213) T) ((-712 . -733) T) ((-712 . -736) T) ((-1064 . -215) 102906) ((-1007 . -842) 102885) ((-112 . -37) 102872) ((-191 . -741) T) ((-190 . -741) T) ((-189 . -741) T) ((-188 . -741) T) ((-805 . -951) 102851) ((-1182 . -464) 102835) ((-723 . -842) 102814) ((-721 . -842) 102793) ((-1099 . -1125) T) ((-431 . -842) 102772) ((-679 . -464) 102756) ((-1007 . -593) 102681) ((-723 . -593) 102606) ((-572 . -981) 102593) ((-455 . -1125) T) ((-321 . -346) T) ((-132 . -464) 102575) ((-721 . -593) 102500) ((-1055 . -1125) T) ((-438 . -593) 102471) ((-243 . -819) 102330) ((-227 . -819) NIL) ((-113 . -981) 102275) ((-431 . -593) 102200) ((-609 . -966) 102177) ((-572 . -107) 102162) ((-333 . -966) 102146) ((-330 . -966) 102130) ((-322 . -966) 102114) ((-243 . -966) 101960) ((-227 . -966) 101838) ((-113 . -107) 101767) ((-57 . -1125) T) ((-490 . -1125) T) ((-488 . -1125) T) ((-470 . -1125) T) ((-469 . -1125) T) ((-415 . -565) 101749) ((-412 . -565) 101731) ((-3 . -97) T) ((-956 . -1119) 101700) ((-774 . -97) T) ((-631 . -55) 101658) ((-640 . -975) T) ((-49 . -593) 101632) ((-268 . -429) T) ((-453 . -1119) 101601) ((0 . -97) T) ((-538 . -593) 101566) ((-489 . -593) 101511) ((-48 . -97) T) ((-843 . -966) 101498) ((-640 . -223) T) ((-1001 . -387) 101477) ((-673 . -587) 101425) ((-929 . -1018) T) ((-654 . -160) 101316) ((-462 . -923) 101298) ((-243 . -355) 101282) ((-227 . -355) 101266) ((-377 . -1018) T) ((-317 . -37) 101250) ((-955 . -97) 101228) ((-198 . -923) 101210) ((-161 . -37) 101142) ((-1155 . -286) 101121) ((-1134 . -286) 101100) ((-603 . -668) T) ((-94 . -565) 101082) ((-1080 . -587) 101034) ((-460 . -25) T) ((-460 . -21) T) ((-1134 . -951) 100987) ((-572 . -975) T) ((-357 . -382) T) ((-368 . -97) T) ((-243 . -833) 100933) ((-227 . -833) 100910) ((-113 . -975) T) ((-757 . -1030) T) ((-1007 . -668) T) ((-572 . -213) 100889) ((-570 . -97) T) ((-723 . -668) T) ((-721 . -668) T) ((-391 . -1030) T) ((-113 . -223) T) ((-39 . -346) NIL) ((-113 . -213) NIL) ((-431 . -668) T) ((-757 . -23) T) ((-673 . -25) T) ((-673 . -21) T) ((-644 . -788) T) ((-998 . -265) 100868) ((-76 . -374) T) ((-76 . -373) T) ((-635 . -981) 100818) ((-1163 . -126) T) ((-1156 . -126) T) ((-1135 . -126) T) ((-1056 . -389) 100802) ((-583 . -345) 100734) ((-559 . -345) 100666) ((-1070 . -1063) 100650) ((-98 . -1018) 100628) ((-1087 . -25) T) ((-1087 . -21) T) ((-1086 . -21) T) ((-929 . -659) 100576) ((-203 . -593) 100543) ((-635 . -107) 100477) ((-49 . -668) T) ((-1086 . -25) T) ((-329 . -327) T) ((-1080 . -21) T) ((-1001 . -429) 100428) ((-1080 . -25) T) ((-654 . -486) 100375) ((-538 . -668) T) ((-489 . -668) T) ((-1042 . -21) T) ((-1042 . -25) T) ((-551 . -126) T) ((-550 . -126) T) ((-337 . -429) T) ((-331 . -429) T) ((-323 . -429) T) ((-451 . -286) 100354) ((-291 . -265) 100289) ((-103 . -429) T) ((-77 . -418) T) ((-77 . -373) T) ((-454 . -97) T) ((-1197 . -565) 100271) ((-1197 . -566) 100253) ((-1001 . -380) 100232) ((-964 . -464) 100163) ((-525 . -736) T) ((-525 . -733) T) ((-987 . -215) 100109) ((-337 . -380) 100060) ((-331 . -380) 100011) ((-323 . -380) 99962) ((-1184 . -1030) T) ((-1184 . -23) T) ((-1173 . -97) T) ((-162 . -565) 99944) ((-1056 . -982) T) ((-615 . -686) 99928) ((-1091 . -136) 99907) ((-1091 . -138) 99886) ((-1060 . -1018) T) ((-1060 . -994) 99855) ((-67 . -1125) T) ((-953 . -981) 99792) ((-799 . -982) T) ((-220 . -587) 99700) ((-635 . -975) T) ((-332 . -981) 99645) ((-59 . -1125) T) ((-953 . -107) 99561) ((-834 . -565) 99493) ((-635 . -223) T) ((-635 . -213) NIL) ((-781 . -786) 99472) ((-640 . -736) T) ((-640 . -733) T) ((-933 . -389) 99449) ((-332 . -107) 99378) ((-357 . -853) T) ((-385 . -786) 99357) ((-654 . -269) 99268) ((-203 . -668) T) ((-1163 . -466) 99234) ((-1156 . -466) 99200) ((-1135 . -466) 99166) ((-294 . -932) 99145) ((-202 . -1018) 99123) ((-297 . -904) 99085) ((-100 . -97) T) ((-47 . -981) 99050) ((-1193 . -97) T) ((-359 . -97) T) ((-47 . -107) 99006) ((-934 . -587) 98988) ((-1157 . -565) 98970) ((-497 . -97) T) ((-473 . -97) T) ((-1049 . -1050) 98954) ((-143 . -1178) 98938) ((-225 . -1125) T) ((-1085 . -1129) 98917) ((-1041 . -1129) 98896) ((-220 . -21) 98807) ((-220 . -25) 98659) ((-123 . -115) 98643) ((-117 . -115) 98627) ((-43 . -686) 98611) ((-1085 . -517) 98522) ((-1041 . -517) 98453) ((-964 . -265) 98428) ((-757 . -126) T) ((-113 . -736) NIL) ((-113 . -733) NIL) ((-333 . -286) T) ((-330 . -286) T) ((-322 . -286) T) ((-1013 . -1125) T) ((-230 . -1030) 98359) ((-229 . -1030) 98290) ((-953 . -975) T) ((-933 . -982) T) ((-321 . -593) 98235) ((-570 . -37) 98219) ((-1182 . -565) 98181) ((-1182 . -566) 98142) ((-998 . -565) 98124) ((-953 . -223) T) ((-332 . -975) T) ((-756 . -1178) 98094) ((-230 . -23) T) ((-229 . -23) T) ((-918 . -565) 98076) ((-679 . -566) 98037) ((-679 . -565) 98019) ((-740 . -788) 97998) ((-929 . -486) 97910) ((-332 . -213) T) ((-332 . -223) T) ((-1073 . -142) 97857) ((-934 . -25) T) ((-132 . -565) 97839) ((-132 . -566) 97798) ((-843 . -286) T) ((-934 . -21) T) ((-902 . -25) T) ((-847 . -21) T) ((-847 . -25) T) ((-405 . -21) T) ((-405 . -25) T) ((-781 . -389) 97782) ((-47 . -975) T) ((-1191 . -1183) 97766) ((-1189 . -1183) 97750) ((-964 . -558) 97725) ((-294 . -566) 97586) ((-294 . -565) 97568) ((-291 . -566) NIL) ((-291 . -565) 97550) ((-47 . -223) T) ((-47 . -213) T) ((-599 . -265) 97511) ((-511 . -215) 97461) ((-130 . -565) 97443) ((-110 . -565) 97425) ((-454 . -37) 97390) ((-1193 . -1190) 97369) ((-1184 . -126) T) ((-1192 . -982) T) ((-1003 . -97) T) ((-86 . -1125) T) ((-473 . -288) NIL) ((-930 . -102) 97353) ((-822 . -1018) T) ((-818 . -1018) T) ((-1171 . -596) 97337) ((-1171 . -351) 97321) ((-305 . -1125) T) ((-548 . -788) T) ((-1056 . -1018) T) ((-1056 . -978) 97261) ((-98 . -486) 97194) ((-860 . -565) 97176) ((-321 . -668) T) ((-30 . -565) 97158) ((-799 . -1018) T) ((-781 . -982) 97137) ((-39 . -593) 97082) ((-205 . -1129) T) ((-385 . -982) T) ((-1072 . -142) 97064) ((-929 . -269) 97015) ((-205 . -517) T) ((-297 . -1152) 96999) ((-297 . -1149) 96969) ((-1099 . -1102) 96948) ((-996 . -565) 96930) ((-592 . -142) 96914) ((-580 . -142) 96860) ((-1099 . -102) 96810) ((-455 . -1102) 96789) ((-462 . -138) T) ((-462 . -136) NIL) ((-1036 . -566) 96704) ((-416 . -565) 96686) ((-198 . -138) T) ((-198 . -136) NIL) ((-1036 . -565) 96668) ((-125 . -97) T) ((-51 . -97) T) ((-1135 . -587) 96620) ((-455 . -102) 96570) ((-924 . -23) T) ((-1193 . -37) 96540) ((-1085 . -1030) T) ((-1041 . -1030) T) ((-986 . -1129) T) ((-792 . -1030) T) ((-885 . -1129) 96519) ((-457 . -1129) 96498) ((-673 . -788) 96477) ((-986 . -517) T) ((-885 . -517) 96408) ((-1085 . -23) T) ((-1041 . -23) T) ((-792 . -23) T) ((-457 . -517) 96339) ((-1056 . -659) 96271) ((-1060 . -486) 96204) ((-964 . -566) NIL) ((-964 . -565) 96186) ((-799 . -659) 96156) ((-1120 . -46) 96125) ((-229 . -126) T) ((-230 . -126) T) ((-1022 . -1018) T) ((-933 . -1018) T) ((-60 . -565) 96107) ((-1080 . -788) NIL) ((-953 . -733) T) ((-953 . -736) T) ((-1197 . -981) 96094) ((-1197 . -107) 96079) ((-803 . -593) 96066) ((-1163 . -25) T) ((-1163 . -21) T) ((-1156 . -21) T) ((-1156 . -25) T) ((-1135 . -21) T) ((-1135 . -25) T) ((-956 . -142) 96050) ((-805 . -761) 96029) ((-805 . -853) T) ((-654 . -265) 95956) ((-551 . -21) T) ((-551 . -25) T) ((-550 . -21) T) ((-39 . -668) T) ((-202 . -486) 95889) ((-550 . -25) T) ((-453 . -142) 95873) ((-440 . -142) 95857) ((-854 . -668) T) ((-712 . -734) T) ((-712 . -735) T) ((-475 . -1018) T) ((-712 . -668) T) ((-205 . -341) T) ((-1070 . -1018) 95835) ((-804 . -1129) T) ((-599 . -565) 95817) ((-804 . -517) T) ((-635 . -346) NIL) ((-337 . -1178) 95801) ((-615 . -97) T) ((-331 . -1178) 95785) ((-323 . -1178) 95769) ((-1192 . -1018) T) ((-491 . -788) 95748) ((-758 . -429) 95727) ((-972 . -1018) T) ((-972 . -994) 95656) ((-956 . -907) 95625) ((-760 . -1030) T) ((-933 . -659) 95570) ((-364 . -1030) T) ((-453 . -907) 95539) ((-440 . -907) 95508) ((-106 . -142) 95490) ((-71 . -565) 95472) ((-826 . -565) 95454) ((-1001 . -666) 95433) ((-1197 . -975) T) ((-757 . -587) 95381) ((-273 . -982) 95324) ((-157 . -1129) 95229) ((-205 . -1030) T) ((-302 . -23) T) ((-1080 . -923) 95181) ((-781 . -1018) T) ((-1042 . -682) 95160) ((-1157 . -981) 95065) ((-1155 . -853) 95044) ((-803 . -668) T) ((-157 . -517) 94955) ((-1134 . -853) 94934) ((-537 . -593) 94921) ((-385 . -1018) T) ((-525 . -593) 94908) ((-242 . -1018) T) ((-468 . -593) 94873) ((-205 . -23) T) ((-1134 . -761) 94826) ((-1191 . -97) T) ((-332 . -1188) 94803) ((-1189 . -97) T) ((-1157 . -107) 94695) ((-135 . -565) 94677) ((-924 . -126) T) ((-43 . -97) T) ((-220 . -788) 94628) ((-1144 . -1129) 94607) ((-98 . -464) 94591) ((-1192 . -659) 94561) ((-1007 . -46) 94522) ((-986 . -1030) T) ((-885 . -1030) T) ((-123 . -33) T) ((-117 . -33) T) ((-723 . -46) 94499) ((-721 . -46) 94471) ((-1144 . -517) 94382) ((-332 . -346) T) ((-457 . -1030) T) ((-1085 . -126) T) ((-1041 . -126) T) ((-431 . -46) 94361) ((-804 . -341) T) ((-792 . -126) T) ((-143 . -97) T) ((-986 . -23) T) ((-885 . -23) T) ((-532 . -517) T) ((-757 . -25) T) ((-757 . -21) T) ((-1056 . -486) 94294) ((-542 . -966) 94278) ((-457 . -23) T) ((-329 . -982) T) ((-1120 . -833) 94259) ((-615 . -288) 94197) ((-1031 . -1178) 94167) ((-640 . -593) 94132) ((-933 . -160) T) ((-895 . -136) 94111) ((-583 . -1018) T) ((-559 . -1018) T) ((-895 . -138) 94090) ((-934 . -788) T) ((-677 . -138) 94069) ((-677 . -136) 94048) ((-902 . -788) T) ((-451 . -853) 94027) ((-294 . -981) 93937) ((-291 . -981) 93866) ((-929 . -265) 93824) ((-385 . -659) 93776) ((-124 . -788) T) ((-642 . -786) T) ((-1157 . -975) T) ((-294 . -107) 93672) ((-291 . -107) 93585) ((-896 . -97) T) ((-756 . -97) 93396) ((-654 . -566) NIL) ((-654 . -565) 93378) ((-603 . -966) 93276) ((-1157 . -304) 93220) ((-964 . -267) 93195) ((-537 . -668) T) ((-525 . -735) T) ((-157 . -341) 93146) ((-525 . -732) T) ((-525 . -668) T) ((-468 . -668) T) ((-1060 . -464) 93130) ((-1007 . -819) NIL) ((-804 . -1030) T) ((-113 . -842) NIL) ((-1191 . -1190) 93106) ((-1189 . -1190) 93085) ((-723 . -819) NIL) ((-721 . -819) 92944) ((-1184 . -25) T) ((-1184 . -21) T) ((-1123 . -97) 92922) ((-1024 . -373) T) ((-572 . -593) 92909) ((-431 . -819) NIL) ((-619 . -97) 92887) ((-1007 . -966) 92716) ((-804 . -23) T) ((-723 . -966) 92577) ((-721 . -966) 92436) ((-113 . -593) 92381) ((-431 . -966) 92259) ((-594 . -966) 92243) ((-575 . -97) T) ((-202 . -464) 92227) ((-1171 . -33) T) ((-583 . -659) 92211) ((-559 . -659) 92195) ((-615 . -37) 92155) ((-297 . -97) T) ((-83 . -565) 92137) ((-49 . -966) 92121) ((-1036 . -981) 92108) ((-1007 . -355) 92092) ((-58 . -55) 92054) ((-640 . -735) T) ((-640 . -732) T) ((-538 . -966) 92041) ((-489 . -966) 92018) ((-640 . -668) T) ((-294 . -975) 91909) ((-302 . -126) T) ((-291 . -975) T) ((-157 . -1030) T) ((-723 . -355) 91893) ((-721 . -355) 91877) ((-44 . -142) 91827) ((-934 . -923) 91809) ((-431 . -355) 91793) ((-385 . -160) T) ((-294 . -223) 91772) ((-291 . -223) T) ((-291 . -213) NIL) ((-273 . -1018) 91555) ((-205 . -126) T) ((-1036 . -107) 91540) ((-157 . -23) T) ((-740 . -138) 91519) ((-740 . -136) 91498) ((-229 . -587) 91406) ((-230 . -587) 91314) ((-297 . -263) 91280) ((-1070 . -486) 91213) ((-1049 . -1018) T) ((-205 . -984) T) ((-756 . -288) 91151) ((-1007 . -833) 91086) ((-723 . -833) 91029) ((-721 . -833) 91013) ((-1191 . -37) 90983) ((-1189 . -37) 90953) ((-1144 . -1030) T) ((-793 . -1030) T) ((-431 . -833) 90930) ((-795 . -1018) T) ((-1144 . -23) T) ((-532 . -1030) T) ((-793 . -23) T) ((-572 . -668) T) ((-333 . -853) T) ((-330 . -853) T) ((-268 . -97) T) ((-322 . -853) T) ((-986 . -126) T) ((-885 . -126) T) ((-113 . -735) NIL) ((-113 . -732) NIL) ((-113 . -668) T) ((-635 . -842) NIL) ((-972 . -486) 90831) ((-457 . -126) T) ((-532 . -23) T) ((-619 . -288) 90769) ((-583 . -703) T) ((-559 . -703) T) ((-1135 . -788) NIL) ((-933 . -269) T) ((-230 . -21) T) ((-635 . -593) 90719) ((-329 . -1018) T) ((-230 . -25) T) ((-229 . -21) T) ((-229 . -25) T) ((-143 . -37) 90703) ((-2 . -97) T) ((-843 . -853) T) ((-458 . -1178) 90673) ((-203 . -966) 90650) ((-1036 . -975) T) ((-653 . -286) T) ((-273 . -659) 90592) ((-642 . -982) T) ((-462 . -429) T) ((-385 . -486) 90504) ((-198 . -429) T) ((-1036 . -213) T) ((-274 . -142) 90454) ((-929 . -566) 90415) ((-929 . -565) 90397) ((-920 . -565) 90379) ((-112 . -982) T) ((-599 . -981) 90363) ((-205 . -466) T) ((-377 . -565) 90345) ((-377 . -566) 90322) ((-979 . -1178) 90292) ((-599 . -107) 90271) ((-1056 . -464) 90255) ((-756 . -37) 90225) ((-61 . -418) T) ((-61 . -373) T) ((-1073 . -97) T) ((-804 . -126) T) ((-459 . -97) 90203) ((-1197 . -346) T) ((-1001 . -97) T) ((-985 . -97) T) ((-329 . -659) 90148) ((-673 . -138) 90127) ((-673 . -136) 90106) ((-953 . -593) 90043) ((-494 . -1018) 90021) ((-337 . -97) T) ((-331 . -97) T) ((-323 . -97) T) ((-103 . -97) T) ((-477 . -1018) T) ((-332 . -593) 89966) ((-1085 . -587) 89914) ((-1041 . -587) 89862) ((-363 . -481) 89841) ((-774 . -786) 89820) ((-357 . -1129) T) ((-635 . -668) T) ((-317 . -982) T) ((-1135 . -923) 89772) ((-161 . -982) T) ((-98 . -565) 89704) ((-1087 . -136) 89683) ((-1087 . -138) 89662) ((-357 . -517) T) ((-1086 . -138) 89641) ((-1086 . -136) 89620) ((-1080 . -136) 89527) ((-385 . -269) T) ((-1080 . -138) 89434) ((-1042 . -138) 89413) ((-1042 . -136) 89392) ((-297 . -37) 89233) ((-157 . -126) T) ((-291 . -736) NIL) ((-291 . -733) NIL) ((-599 . -975) T) ((-47 . -593) 89198) ((-924 . -21) T) ((-123 . -940) 89182) ((-117 . -940) 89166) ((-924 . -25) T) ((-834 . -115) 89150) ((-1072 . -97) T) ((-757 . -788) 89129) ((-1144 . -126) T) ((-1085 . -25) T) ((-1085 . -21) T) ((-793 . -126) T) ((-1041 . -25) T) ((-1041 . -21) T) ((-792 . -25) T) ((-792 . -21) T) ((-723 . -286) 89108) ((-592 . -97) 89086) ((-580 . -97) T) ((-1073 . -288) 88881) ((-532 . -126) T) ((-570 . -786) 88860) ((-1070 . -464) 88844) ((-1064 . -142) 88794) ((-1060 . -565) 88756) ((-1060 . -566) 88717) ((-953 . -732) T) ((-953 . -735) T) ((-953 . -668) T) ((-459 . -288) 88655) ((-430 . -395) 88625) ((-329 . -160) T) ((-268 . -37) 88612) ((-253 . -97) T) ((-252 . -97) T) ((-251 . -97) T) ((-250 . -97) T) ((-249 . -97) T) ((-248 . -97) T) ((-247 . -97) T) ((-321 . -966) 88589) ((-194 . -97) T) ((-193 . -97) T) ((-191 . -97) T) ((-190 . -97) T) ((-189 . -97) T) ((-188 . -97) T) ((-185 . -97) T) ((-184 . -97) T) ((-654 . -981) 88412) ((-183 . -97) T) ((-182 . -97) T) ((-181 . -97) T) ((-180 . -97) T) ((-179 . -97) T) ((-178 . -97) T) ((-177 . -97) T) ((-176 . -97) T) ((-175 . -97) T) ((-332 . -668) T) ((-654 . -107) 88221) ((-615 . -211) 88205) ((-538 . -286) T) ((-489 . -286) T) ((-273 . -486) 88154) ((-103 . -288) NIL) ((-70 . -373) T) ((-1031 . -97) 87965) ((-774 . -389) 87949) ((-1036 . -736) T) ((-1036 . -733) T) ((-642 . -1018) T) ((-357 . -341) T) ((-157 . -466) 87927) ((-202 . -565) 87859) ((-128 . -1018) T) ((-112 . -1018) T) ((-47 . -668) T) ((-972 . -464) 87824) ((-132 . -403) 87806) ((-132 . -346) T) ((-956 . -97) T) ((-484 . -481) 87785) ((-453 . -97) T) ((-440 . -97) T) ((-963 . -1030) T) ((-1087 . -34) 87751) ((-1087 . -91) 87717) ((-1087 . -1114) 87683) ((-1087 . -1111) 87649) ((-1072 . -288) NIL) ((-87 . -374) T) ((-87 . -373) T) ((-1001 . -1065) 87628) ((-1086 . -1111) 87594) ((-1086 . -1114) 87560) ((-963 . -23) T) ((-1086 . -91) 87526) ((-532 . -466) T) ((-1086 . -34) 87492) ((-1080 . -1111) 87458) ((-1080 . -1114) 87424) ((-1080 . -91) 87390) ((-339 . -1030) T) ((-337 . -1065) 87369) ((-331 . -1065) 87348) ((-323 . -1065) 87327) ((-1080 . -34) 87293) ((-1042 . -34) 87259) ((-1042 . -91) 87225) ((-103 . -1065) T) ((-1042 . -1114) 87191) ((-774 . -982) 87170) ((-592 . -288) 87108) ((-580 . -288) 86959) ((-1042 . -1111) 86925) ((-654 . -975) T) ((-986 . -587) 86907) ((-1001 . -37) 86775) ((-885 . -587) 86723) ((-934 . -138) T) ((-934 . -136) NIL) ((-357 . -1030) T) ((-302 . -25) T) ((-300 . -23) T) ((-876 . -788) 86702) ((-654 . -304) 86679) ((-457 . -587) 86627) ((-39 . -966) 86517) ((-642 . -659) 86504) ((-654 . -213) T) ((-317 . -1018) T) ((-161 . -1018) T) ((-309 . -788) T) ((-396 . -429) 86454) ((-357 . -23) T) ((-337 . -37) 86419) ((-331 . -37) 86384) ((-323 . -37) 86349) ((-78 . -418) T) ((-78 . -373) T) ((-205 . -25) T) ((-205 . -21) T) ((-775 . -1030) T) ((-103 . -37) 86299) ((-768 . -1030) T) ((-715 . -1018) T) ((-112 . -659) 86286) ((-616 . -966) 86270) ((-564 . -97) T) ((-775 . -23) T) ((-768 . -23) T) ((-1070 . -265) 86247) ((-1031 . -288) 86185) ((-1020 . -215) 86169) ((-62 . -374) T) ((-62 . -373) T) ((-106 . -97) T) ((-39 . -355) 86146) ((-598 . -790) 86130) ((-986 . -21) T) ((-986 . -25) T) ((-756 . -211) 86100) ((-885 . -25) T) ((-885 . -21) T) ((-570 . -982) T) ((-457 . -25) T) ((-457 . -21) T) ((-956 . -288) 86038) ((-822 . -565) 86020) ((-818 . -565) 86002) ((-230 . -788) 85953) ((-229 . -788) 85904) ((-494 . -486) 85837) ((-804 . -587) 85814) ((-453 . -288) 85752) ((-440 . -288) 85690) ((-329 . -269) T) ((-1070 . -1159) 85674) ((-1056 . -565) 85636) ((-1056 . -566) 85597) ((-1054 . -97) T) ((-929 . -981) 85493) ((-39 . -833) 85445) ((-1070 . -558) 85422) ((-1197 . -593) 85409) ((-987 . -142) 85355) ((-805 . -1129) T) ((-929 . -107) 85237) ((-317 . -659) 85221) ((-799 . -565) 85203) ((-161 . -659) 85135) ((-385 . -265) 85093) ((-805 . -517) T) ((-103 . -378) 85075) ((-82 . -362) T) ((-82 . -373) T) ((-642 . -160) T) ((-94 . -668) T) ((-458 . -97) 84886) ((-94 . -450) T) ((-112 . -160) T) ((-1031 . -37) 84856) ((-157 . -587) 84804) ((-979 . -97) T) ((-804 . -25) T) ((-756 . -218) 84783) ((-804 . -21) T) ((-759 . -97) T) ((-392 . -97) T) ((-363 . -97) T) ((-106 . -288) NIL) ((-207 . -97) 84761) ((-123 . -1125) T) ((-117 . -1125) T) ((-963 . -126) T) ((-615 . -345) 84745) ((-929 . -975) T) ((-1144 . -587) 84693) ((-1022 . -565) 84675) ((-933 . -565) 84657) ((-487 . -23) T) ((-482 . -23) T) ((-321 . -286) T) ((-480 . -23) T) ((-300 . -126) T) ((-3 . -1018) T) ((-933 . -566) 84641) ((-929 . -223) 84620) ((-929 . -213) 84599) ((-1197 . -668) T) ((-1163 . -136) 84578) ((-774 . -1018) T) ((-1163 . -138) 84557) ((-1156 . -138) 84536) ((-1156 . -136) 84515) ((-1155 . -1129) 84494) ((-1135 . -136) 84401) ((-1135 . -138) 84308) ((-1134 . -1129) 84287) ((-357 . -126) T) ((-525 . -819) 84269) ((0 . -1018) T) ((-161 . -160) T) ((-157 . -21) T) ((-157 . -25) T) ((-48 . -1018) T) ((-1157 . -593) 84174) ((-1155 . -517) 84125) ((-656 . -1030) T) ((-1134 . -517) 84076) ((-525 . -966) 84058) ((-550 . -138) 84037) ((-550 . -136) 84016) ((-468 . -966) 83959) ((-85 . -362) T) ((-85 . -373) T) ((-805 . -341) T) ((-775 . -126) T) ((-768 . -126) T) ((-656 . -23) T) ((-475 . -565) 83941) ((-1193 . -982) T) ((-357 . -984) T) ((-955 . -1018) 83919) ((-834 . -33) T) ((-458 . -288) 83857) ((-1070 . -566) 83818) ((-1070 . -565) 83750) ((-1085 . -788) 83729) ((-44 . -97) T) ((-1041 . -788) 83708) ((-758 . -97) T) ((-1144 . -25) T) ((-1144 . -21) T) ((-793 . -25) T) ((-43 . -345) 83692) ((-793 . -21) T) ((-673 . -429) 83643) ((-1192 . -565) 83625) ((-532 . -25) T) ((-532 . -21) T) ((-368 . -1018) T) ((-979 . -288) 83563) ((-570 . -1018) T) ((-640 . -819) 83545) ((-1171 . -1125) T) ((-207 . -288) 83483) ((-135 . -346) T) ((-972 . -566) 83425) ((-972 . -565) 83368) ((-291 . -842) NIL) ((-640 . -966) 83313) ((-653 . -853) T) ((-451 . -1129) 83292) ((-1086 . -429) 83271) ((-1080 . -429) 83250) ((-308 . -97) T) ((-805 . -1030) T) ((-294 . -593) 83072) ((-291 . -593) 83001) ((-451 . -517) 82952) ((-317 . -486) 82918) ((-511 . -142) 82868) ((-39 . -286) T) ((-781 . -565) 82850) ((-642 . -269) T) ((-805 . -23) T) ((-357 . -466) T) ((-1001 . -211) 82820) ((-484 . -97) T) ((-385 . -566) 82628) ((-385 . -565) 82610) ((-242 . -565) 82592) ((-112 . -269) T) ((-1157 . -668) T) ((-1155 . -341) 82571) ((-1134 . -341) 82550) ((-1182 . -33) T) ((-113 . -1125) T) ((-103 . -211) 82532) ((-1091 . -97) T) ((-454 . -1018) T) ((-494 . -464) 82516) ((-679 . -33) T) ((-458 . -37) 82486) ((-132 . -33) T) ((-113 . -817) 82463) ((-113 . -819) NIL) ((-572 . -966) 82348) ((-591 . -788) 82327) ((-1181 . -97) T) ((-274 . -97) T) ((-654 . -346) 82306) ((-113 . -966) 82283) ((-368 . -659) 82267) ((-570 . -659) 82251) ((-44 . -288) 82055) ((-757 . -136) 82034) ((-757 . -138) 82013) ((-1192 . -360) 81992) ((-760 . -788) T) ((-1173 . -1018) T) ((-1073 . -209) 81939) ((-364 . -788) 81918) ((-1163 . -1114) 81884) ((-1163 . -1111) 81850) ((-1156 . -1111) 81816) ((-487 . -126) T) ((-1156 . -1114) 81782) ((-1135 . -1111) 81748) ((-1135 . -1114) 81714) ((-1163 . -34) 81680) ((-1163 . -91) 81646) ((-583 . -565) 81615) ((-559 . -565) 81584) ((-205 . -788) T) ((-1156 . -91) 81550) ((-1156 . -34) 81516) ((-1155 . -1030) T) ((-1036 . -593) 81503) ((-1135 . -91) 81469) ((-1134 . -1030) T) ((-548 . -142) 81451) ((-1001 . -327) 81430) ((-113 . -355) 81407) ((-113 . -316) 81384) ((-161 . -269) T) ((-1135 . -34) 81350) ((-803 . -286) T) ((-291 . -735) NIL) ((-291 . -732) NIL) ((-294 . -668) 81200) ((-291 . -668) T) ((-451 . -341) 81179) ((-337 . -327) 81158) ((-331 . -327) 81137) ((-323 . -327) 81116) ((-294 . -450) 81095) ((-1155 . -23) T) ((-1134 . -23) T) ((-660 . -1030) T) ((-656 . -126) T) ((-598 . -97) T) ((-454 . -659) 81060) ((-44 . -261) 81010) ((-100 . -1018) T) ((-66 . -565) 80992) ((-798 . -97) T) ((-572 . -833) 80951) ((-1193 . -1018) T) ((-359 . -1018) T) ((-80 . -1125) T) ((-986 . -788) T) ((-885 . -788) 80930) ((-113 . -833) NIL) ((-723 . -853) 80909) ((-655 . -788) T) ((-497 . -1018) T) ((-473 . -1018) T) ((-333 . -1129) T) ((-330 . -1129) T) ((-322 . -1129) T) ((-243 . -1129) 80888) ((-227 . -1129) 80867) ((-1031 . -211) 80837) ((-457 . -788) 80816) ((-1056 . -981) 80800) ((-368 . -703) T) ((-1072 . -769) T) ((-635 . -1125) T) ((-333 . -517) T) ((-330 . -517) T) ((-322 . -517) T) ((-243 . -517) 80731) ((-227 . -517) 80662) ((-1056 . -107) 80641) ((-430 . -686) 80611) ((-799 . -981) 80581) ((-758 . -37) 80523) ((-635 . -817) 80505) ((-635 . -819) 80487) ((-274 . -288) 80291) ((-843 . -1129) T) ((-615 . -389) 80275) ((-799 . -107) 80240) ((-635 . -966) 80185) ((-934 . -429) T) ((-843 . -517) T) ((-538 . -853) T) ((-451 . -1030) T) ((-489 . -853) T) ((-1070 . -267) 80162) ((-847 . -429) T) ((-63 . -565) 80144) ((-580 . -209) 80090) ((-451 . -23) T) ((-1036 . -735) T) ((-805 . -126) T) ((-1036 . -732) T) ((-1184 . -1186) 80069) ((-1036 . -668) T) ((-599 . -593) 80043) ((-273 . -565) 79785) ((-964 . -33) T) ((-756 . -786) 79764) ((-537 . -286) T) ((-525 . -286) T) ((-468 . -286) T) ((-1193 . -659) 79734) ((-635 . -355) 79716) ((-635 . -316) 79698) ((-454 . -160) T) ((-359 . -659) 79668) ((-804 . -788) NIL) ((-525 . -951) T) ((-468 . -951) T) ((-1049 . -565) 79650) ((-1031 . -218) 79629) ((-195 . -97) T) ((-1064 . -97) T) ((-69 . -565) 79611) ((-1056 . -975) T) ((-1091 . -37) 79508) ((-795 . -565) 79490) ((-525 . -510) T) ((-615 . -982) T) ((-673 . -882) 79443) ((-1056 . -213) 79422) ((-1003 . -1018) T) ((-963 . -25) T) ((-963 . -21) T) ((-933 . -981) 79367) ((-838 . -97) T) ((-799 . -975) T) ((-635 . -833) NIL) ((-333 . -307) 79351) ((-333 . -341) T) ((-330 . -307) 79335) ((-330 . -341) T) ((-322 . -307) 79319) ((-322 . -341) T) ((-462 . -97) T) ((-1181 . -37) 79289) ((-494 . -629) 79239) ((-198 . -97) T) ((-953 . -966) 79121) ((-933 . -107) 79050) ((-1087 . -904) 79019) ((-1086 . -904) 78981) ((-491 . -142) 78965) ((-1001 . -348) 78944) ((-329 . -565) 78926) ((-300 . -21) T) ((-332 . -966) 78903) ((-300 . -25) T) ((-1080 . -904) 78872) ((-1042 . -904) 78839) ((-74 . -565) 78821) ((-640 . -286) T) ((-157 . -788) 78800) ((-843 . -341) T) ((-357 . -25) T) ((-357 . -21) T) ((-843 . -307) 78787) ((-84 . -565) 78769) ((-640 . -951) T) ((-620 . -788) T) ((-1155 . -126) T) ((-1134 . -126) T) ((-834 . -940) 78753) ((-775 . -21) T) ((-47 . -966) 78696) ((-775 . -25) T) ((-768 . -25) T) ((-768 . -21) T) ((-1191 . -982) T) ((-1189 . -982) T) ((-599 . -668) T) ((-1192 . -981) 78680) ((-1144 . -788) 78659) ((-756 . -389) 78628) ((-98 . -115) 78612) ((-125 . -1018) T) ((-51 . -1018) T) ((-859 . -565) 78594) ((-804 . -923) 78571) ((-764 . -97) T) ((-1192 . -107) 78550) ((-598 . -37) 78520) ((-532 . -788) T) ((-333 . -1030) T) ((-330 . -1030) T) ((-322 . -1030) T) ((-243 . -1030) T) ((-227 . -1030) T) ((-572 . -286) 78499) ((-1064 . -288) 78303) ((-609 . -23) T) ((-458 . -211) 78273) ((-143 . -982) T) ((-333 . -23) T) ((-330 . -23) T) ((-322 . -23) T) ((-113 . -286) T) ((-243 . -23) T) ((-227 . -23) T) ((-933 . -975) T) ((-654 . -842) 78252) ((-933 . -213) 78224) ((-933 . -223) T) ((-113 . -951) NIL) ((-843 . -1030) T) ((-1156 . -429) 78203) ((-1135 . -429) 78182) ((-494 . -565) 78114) ((-654 . -593) 78039) ((-385 . -981) 77991) ((-477 . -565) 77973) ((-843 . -23) T) ((-462 . -288) NIL) ((-451 . -126) T) ((-198 . -288) NIL) ((-385 . -107) 77911) ((-756 . -982) 77842) ((-679 . -1016) 77826) ((-1155 . -466) 77792) ((-1134 . -466) 77758) ((-454 . -269) T) ((-132 . -1016) 77740) ((-124 . -142) 77722) ((-1192 . -975) T) ((-987 . -97) T) ((-473 . -486) NIL) ((-644 . -97) T) ((-458 . -218) 77701) ((-1085 . -136) 77680) ((-1085 . -138) 77659) ((-1041 . -138) 77638) ((-1041 . -136) 77617) ((-583 . -981) 77601) ((-559 . -981) 77585) ((-615 . -1018) T) ((-615 . -978) 77525) ((-1087 . -1162) 77509) ((-1087 . -1149) 77486) ((-462 . -1065) T) ((-1086 . -1154) 77447) ((-1086 . -1149) 77417) ((-1086 . -1152) 77401) ((-198 . -1065) T) ((-321 . -853) T) ((-759 . -245) 77385) ((-583 . -107) 77364) ((-559 . -107) 77343) ((-1080 . -1133) 77304) ((-781 . -975) 77283) ((-1080 . -1149) 77260) ((-487 . -25) T) ((-468 . -281) T) ((-483 . -23) T) ((-482 . -25) T) ((-480 . -25) T) ((-479 . -23) T) ((-1080 . -1131) 77244) ((-385 . -975) T) ((-297 . -982) T) ((-635 . -286) T) ((-103 . -786) T) ((-385 . -223) T) ((-385 . -213) 77223) ((-654 . -668) T) ((-462 . -37) 77173) ((-198 . -37) 77123) ((-451 . -466) 77089) ((-1072 . -1058) T) ((-1019 . -97) T) ((-642 . -565) 77071) ((-642 . -566) 76986) ((-656 . -21) T) ((-656 . -25) T) ((-128 . -565) 76968) ((-112 . -565) 76950) ((-146 . -25) T) ((-1191 . -1018) T) ((-805 . -587) 76898) ((-1189 . -1018) T) ((-895 . -97) T) ((-677 . -97) T) ((-657 . -97) T) ((-430 . -97) T) ((-757 . -429) 76849) ((-43 . -1018) T) ((-1008 . -788) T) ((-609 . -126) T) ((-987 . -288) 76700) ((-615 . -659) 76684) ((-268 . -982) T) ((-333 . -126) T) ((-330 . -126) T) ((-322 . -126) T) ((-243 . -126) T) ((-227 . -126) T) ((-396 . -97) T) ((-143 . -1018) T) ((-44 . -209) 76634) ((-890 . -788) 76613) ((-929 . -593) 76551) ((-220 . -1178) 76521) ((-953 . -286) T) ((-273 . -981) 76443) ((-843 . -126) T) ((-39 . -853) T) ((-462 . -378) 76425) ((-332 . -286) T) ((-198 . -378) 76407) ((-1001 . -389) 76391) ((-273 . -107) 76308) ((-805 . -25) T) ((-805 . -21) T) ((-317 . -565) 76290) ((-1157 . -46) 76234) ((-205 . -138) T) ((-161 . -565) 76216) ((-1031 . -786) 76195) ((-715 . -565) 76177) ((-560 . -215) 76124) ((-452 . -215) 76074) ((-1191 . -659) 76044) ((-47 . -286) T) ((-1189 . -659) 76014) ((-896 . -1018) T) ((-756 . -1018) 75825) ((-290 . -97) T) ((-834 . -1125) T) ((-47 . -951) T) ((-1134 . -587) 75733) ((-631 . -97) 75711) ((-43 . -659) 75695) ((-511 . -97) T) ((-65 . -361) T) ((-65 . -373) T) ((-607 . -23) T) ((-615 . -703) T) ((-1123 . -1018) 75673) ((-329 . -981) 75618) ((-619 . -1018) 75596) ((-986 . -138) T) ((-885 . -138) 75575) ((-885 . -136) 75554) ((-740 . -97) T) ((-143 . -659) 75538) ((-457 . -138) 75517) ((-457 . -136) 75496) ((-329 . -107) 75425) ((-1001 . -982) T) ((-300 . -788) 75404) ((-1163 . -904) 75373) ((-575 . -1018) T) ((-1156 . -904) 75335) ((-483 . -126) T) ((-479 . -126) T) ((-274 . -209) 75285) ((-337 . -982) T) ((-331 . -982) T) ((-323 . -982) T) ((-273 . -975) 75228) ((-1135 . -904) 75197) ((-357 . -788) T) ((-103 . -982) T) ((-929 . -668) T) ((-803 . -853) T) ((-781 . -736) 75176) ((-781 . -733) 75155) ((-396 . -288) 75094) ((-445 . -97) T) ((-550 . -904) 75063) ((-297 . -1018) T) ((-385 . -736) 75042) ((-385 . -733) 75021) ((-473 . -464) 75003) ((-1157 . -966) 74969) ((-1155 . -21) T) ((-1155 . -25) T) ((-1134 . -21) T) ((-1134 . -25) T) ((-756 . -659) 74911) ((-640 . -382) T) ((-1182 . -1125) T) ((-1031 . -389) 74880) ((-933 . -346) NIL) ((-98 . -33) T) ((-679 . -1125) T) ((-43 . -703) T) ((-548 . -97) T) ((-75 . -374) T) ((-75 . -373) T) ((-598 . -601) 74864) ((-132 . -1125) T) ((-804 . -138) T) ((-804 . -136) NIL) ((-329 . -975) T) ((-68 . -361) T) ((-68 . -373) T) ((-1079 . -97) T) ((-615 . -486) 74797) ((-631 . -288) 74735) ((-895 . -37) 74632) ((-677 . -37) 74602) ((-511 . -288) 74406) ((-294 . -1125) T) ((-329 . -213) T) ((-329 . -223) T) ((-291 . -1125) T) ((-268 . -1018) T) ((-1093 . -565) 74388) ((-653 . -1129) T) ((-1070 . -596) 74372) ((-1120 . -517) 74351) ((-653 . -517) T) ((-294 . -817) 74335) ((-294 . -819) 74260) ((-291 . -817) 74221) ((-291 . -819) NIL) ((-740 . -288) 74186) ((-297 . -659) 74027) ((-302 . -301) 74004) ((-460 . -97) T) ((-451 . -25) T) ((-451 . -21) T) ((-396 . -37) 73978) ((-294 . -966) 73646) ((-205 . -1111) T) ((-205 . -1114) T) ((-3 . -565) 73628) ((-291 . -966) 73558) ((-2 . -1018) T) ((-2 . |RecordCategory|) T) ((-774 . -565) 73540) ((-1031 . -982) 73471) ((-537 . -853) T) ((-525 . -761) T) ((-525 . -853) T) ((-468 . -853) T) ((-130 . -966) 73455) ((-205 . -91) T) ((-73 . -418) T) ((-73 . -373) T) ((0 . -565) 73437) ((-157 . -138) 73416) ((-157 . -136) 73367) ((-205 . -34) T) ((-48 . -565) 73349) ((-454 . -982) T) ((-462 . -211) 73331) ((-459 . -900) 73315) ((-458 . -786) 73294) ((-198 . -211) 73276) ((-79 . -418) T) ((-79 . -373) T) ((-1060 . -33) T) ((-756 . -160) 73255) ((-673 . -97) T) ((-955 . -565) 73222) ((-473 . -265) 73197) ((-294 . -355) 73167) ((-291 . -355) 73128) ((-291 . -316) 73089) ((-1005 . -565) 73071) ((-757 . -882) 73018) ((-607 . -126) T) ((-1144 . -136) 72997) ((-1144 . -138) 72976) ((-1087 . -97) T) ((-1086 . -97) T) ((-1080 . -97) T) ((-1073 . -1018) T) ((-1042 . -97) T) ((-202 . -33) T) ((-268 . -659) 72963) ((-1073 . -562) 72939) ((-548 . -288) NIL) ((-459 . -1018) 72917) ((-368 . -565) 72899) ((-482 . -788) T) ((-1064 . -209) 72849) ((-1163 . -1162) 72833) ((-1163 . -1149) 72810) ((-1156 . -1154) 72771) ((-1156 . -1149) 72741) ((-1156 . -1152) 72725) ((-1135 . -1133) 72686) ((-1135 . -1149) 72663) ((-570 . -565) 72645) ((-1135 . -1131) 72629) ((-640 . -853) T) ((-1087 . -263) 72595) ((-1086 . -263) 72561) ((-1080 . -263) 72527) ((-1001 . -1018) T) ((-985 . -1018) T) ((-47 . -281) T) ((-294 . -833) 72494) ((-291 . -833) NIL) ((-985 . -991) 72473) ((-1036 . -819) 72455) ((-740 . -37) 72439) ((-243 . -587) 72387) ((-227 . -587) 72335) ((-642 . -981) 72322) ((-550 . -1149) 72299) ((-1042 . -263) 72265) ((-297 . -160) 72196) ((-337 . -1018) T) ((-331 . -1018) T) ((-323 . -1018) T) ((-473 . -19) 72178) ((-1036 . -966) 72160) ((-1020 . -142) 72144) ((-103 . -1018) T) ((-112 . -981) 72131) ((-653 . -341) T) ((-473 . -558) 72106) ((-642 . -107) 72091) ((-414 . -97) T) ((-44 . -1063) 72041) ((-112 . -107) 72026) ((-583 . -662) T) ((-559 . -662) T) ((-756 . -486) 71959) ((-964 . -1125) T) ((-876 . -142) 71943) ((-491 . -97) 71893) ((-1007 . -1129) 71872) ((-454 . -565) 71824) ((-454 . -566) 71746) ((-60 . -1125) T) ((-723 . -1129) 71725) ((-721 . -1129) 71704) ((-1085 . -429) 71635) ((-1072 . -1018) T) ((-1056 . -593) 71609) ((-1007 . -517) 71540) ((-458 . -389) 71509) ((-572 . -853) 71488) ((-431 . -1129) 71467) ((-1041 . -429) 71418) ((-376 . -565) 71400) ((-619 . -486) 71333) ((-723 . -517) 71244) ((-721 . -517) 71175) ((-673 . -288) 71162) ((-609 . -25) T) ((-609 . -21) T) ((-431 . -517) 71093) ((-113 . -853) T) ((-113 . -761) NIL) ((-333 . -25) T) ((-333 . -21) T) ((-330 . -25) T) ((-330 . -21) T) ((-322 . -25) T) ((-322 . -21) T) ((-243 . -25) T) ((-243 . -21) T) ((-81 . -362) T) ((-81 . -373) T) ((-227 . -25) T) ((-227 . -21) T) ((-1173 . -565) 71075) ((-1120 . -1030) T) ((-1120 . -23) T) ((-1080 . -288) 70960) ((-1042 . -288) 70947) ((-799 . -593) 70907) ((-1001 . -659) 70775) ((-876 . -911) 70759) ((-268 . -160) T) ((-843 . -21) T) ((-843 . -25) T) ((-805 . -788) 70710) ((-653 . -1030) T) ((-653 . -23) T) ((-592 . -1018) 70688) ((-580 . -562) 70663) ((-580 . -1018) T) ((-538 . -1129) T) ((-489 . -1129) T) ((-538 . -517) T) ((-489 . -517) T) ((-337 . -659) 70615) ((-331 . -659) 70567) ((-161 . -981) 70499) ((-317 . -981) 70483) ((-103 . -659) 70433) ((-161 . -107) 70344) ((-323 . -659) 70296) ((-317 . -107) 70275) ((-253 . -1018) T) ((-252 . -1018) T) ((-251 . -1018) T) ((-250 . -1018) T) ((-642 . -975) T) ((-249 . -1018) T) ((-248 . -1018) T) ((-247 . -1018) T) ((-194 . -1018) T) ((-193 . -1018) T) ((-191 . -1018) T) ((-157 . -1114) 70253) ((-157 . -1111) 70231) ((-190 . -1018) T) ((-189 . -1018) T) ((-112 . -975) T) ((-188 . -1018) T) ((-185 . -1018) T) ((-642 . -213) T) ((-184 . -1018) T) ((-183 . -1018) T) ((-182 . -1018) T) ((-181 . -1018) T) ((-180 . -1018) T) ((-179 . -1018) T) ((-178 . -1018) T) ((-177 . -1018) T) ((-176 . -1018) T) ((-175 . -1018) T) ((-220 . -97) 70042) ((-157 . -34) 70020) ((-157 . -91) 69998) ((-599 . -966) 69896) ((-458 . -982) 69827) ((-1031 . -1018) 69638) ((-1056 . -33) T) ((-615 . -464) 69622) ((-71 . -1125) T) ((-100 . -565) 69604) ((-1193 . -565) 69586) ((-359 . -565) 69568) ((-532 . -1114) T) ((-532 . -1111) T) ((-673 . -37) 69417) ((-497 . -565) 69399) ((-491 . -288) 69337) ((-473 . -565) 69319) ((-473 . -566) 69301) ((-1080 . -1065) NIL) ((-956 . -994) 69270) ((-956 . -1018) T) ((-934 . -97) T) ((-902 . -97) T) ((-847 . -97) T) ((-826 . -966) 69247) ((-1056 . -668) T) ((-933 . -593) 69192) ((-453 . -1018) T) ((-440 . -1018) T) ((-542 . -23) T) ((-532 . -34) T) ((-532 . -91) T) ((-405 . -97) T) ((-987 . -209) 69138) ((-124 . -97) T) ((-1087 . -37) 69035) ((-799 . -668) T) ((-635 . -853) T) ((-483 . -25) T) ((-479 . -21) T) ((-479 . -25) T) ((-1086 . -37) 68876) ((-317 . -975) T) ((-1080 . -37) 68672) ((-1001 . -160) T) ((-161 . -975) T) ((-1042 . -37) 68569) ((-654 . -46) 68546) ((-337 . -160) T) ((-331 . -160) T) ((-490 . -55) 68520) ((-470 . -55) 68470) ((-329 . -1188) 68447) ((-205 . -429) T) ((-297 . -269) 68398) ((-323 . -160) T) ((-161 . -223) T) ((-1134 . -788) 68297) ((-103 . -160) T) ((-805 . -923) 68281) ((-603 . -1030) T) ((-538 . -341) T) ((-538 . -307) 68268) ((-489 . -307) 68245) ((-489 . -341) T) ((-294 . -286) 68224) ((-291 . -286) T) ((-556 . -788) 68203) ((-1031 . -659) 68145) ((-491 . -261) 68129) ((-603 . -23) T) ((-396 . -211) 68113) ((-291 . -951) NIL) ((-314 . -23) T) ((-98 . -940) 68097) ((-44 . -35) 68076) ((-564 . -1018) T) ((-329 . -346) T) ((-468 . -27) T) ((-220 . -288) 68014) ((-1007 . -1030) T) ((-1192 . -593) 67988) ((-723 . -1030) T) ((-721 . -1030) T) ((-431 . -1030) T) ((-986 . -429) T) ((-885 . -429) 67939) ((-106 . -1018) T) ((-1007 . -23) T) ((-758 . -982) T) ((-723 . -23) T) ((-721 . -23) T) ((-457 . -429) 67890) ((-1073 . -486) 67673) ((-359 . -360) 67652) ((-1091 . -389) 67636) ((-438 . -23) T) ((-431 . -23) T) ((-459 . -486) 67569) ((-268 . -269) T) ((-1003 . -565) 67551) ((-385 . -842) 67530) ((-49 . -1030) T) ((-953 . -853) T) ((-933 . -668) T) ((-654 . -819) NIL) ((-538 . -1030) T) ((-489 . -1030) T) ((-781 . -593) 67503) ((-1120 . -126) T) ((-1080 . -378) 67455) ((-934 . -288) NIL) ((-756 . -464) 67439) ((-332 . -853) T) ((-1070 . -33) T) ((-385 . -593) 67391) ((-49 . -23) T) ((-653 . -126) T) ((-654 . -966) 67273) ((-538 . -23) T) ((-103 . -486) NIL) ((-489 . -23) T) ((-157 . -387) 67244) ((-124 . -288) NIL) ((-1054 . -1018) T) ((-1184 . -1183) 67228) ((-642 . -736) T) ((-642 . -733) T) ((-1036 . -286) T) ((-357 . -138) T) ((-259 . -565) 67210) ((-1134 . -923) 67180) ((-47 . -853) T) ((-619 . -464) 67164) ((-230 . -1178) 67134) ((-229 . -1178) 67104) ((-1089 . -788) T) ((-1031 . -160) 67083) ((-1036 . -951) T) ((-972 . -33) T) ((-775 . -138) 67062) ((-775 . -136) 67041) ((-679 . -102) 67025) ((-564 . -127) T) ((-458 . -1018) 66836) ((-1091 . -982) T) ((-804 . -429) T) ((-83 . -1125) T) ((-220 . -37) 66806) ((-132 . -102) 66788) ((-654 . -355) 66772) ((-1036 . -510) T) ((-368 . -981) 66756) ((-1192 . -668) T) ((-1085 . -882) 66725) ((-125 . -565) 66692) ((-51 . -565) 66674) ((-1041 . -882) 66641) ((-598 . -389) 66625) ((-1181 . -982) T) ((-570 . -981) 66609) ((-607 . -25) T) ((-607 . -21) T) ((-1072 . -486) NIL) ((-1163 . -97) T) ((-1156 . -97) T) ((-368 . -107) 66588) ((-202 . -233) 66572) ((-1135 . -97) T) ((-979 . -1018) T) ((-934 . -1065) T) ((-979 . -978) 66512) ((-759 . -1018) T) ((-321 . -1129) T) ((-583 . -593) 66496) ((-570 . -107) 66475) ((-559 . -593) 66459) ((-551 . -97) T) ((-542 . -126) T) ((-550 . -97) T) ((-392 . -1018) T) ((-363 . -1018) T) ((-207 . -1018) 66437) ((-592 . -486) 66370) ((-580 . -486) 66214) ((-774 . -975) 66193) ((-591 . -142) 66177) ((-321 . -517) T) ((-654 . -833) 66120) ((-511 . -209) 66070) ((-1163 . -263) 66036) ((-1001 . -269) 65987) ((-462 . -786) T) ((-203 . -1030) T) ((-1156 . -263) 65953) ((-1135 . -263) 65919) ((-934 . -37) 65869) ((-198 . -786) T) ((-1120 . -466) 65835) ((-847 . -37) 65787) ((-781 . -735) 65766) ((-781 . -732) 65745) ((-781 . -668) 65724) ((-337 . -269) T) ((-331 . -269) T) ((-323 . -269) T) ((-157 . -429) 65655) ((-405 . -37) 65639) ((-103 . -269) T) ((-203 . -23) T) ((-385 . -735) 65618) ((-385 . -732) 65597) ((-385 . -668) T) ((-473 . -267) 65572) ((-454 . -981) 65537) ((-603 . -126) T) ((-1031 . -486) 65470) ((-314 . -126) T) ((-157 . -380) 65449) ((-458 . -659) 65391) ((-756 . -265) 65368) ((-454 . -107) 65324) ((-598 . -982) T) ((-1144 . -429) 65255) ((-1007 . -126) T) ((-243 . -788) 65234) ((-227 . -788) 65213) ((-723 . -126) T) ((-721 . -126) T) ((-532 . -429) T) ((-979 . -659) 65155) ((-570 . -975) T) ((-956 . -486) 65088) ((-438 . -126) T) ((-431 . -126) T) ((-44 . -1018) T) ((-363 . -659) 65058) ((-758 . -1018) T) ((-453 . -486) 64991) ((-440 . -486) 64924) ((-430 . -345) 64894) ((-44 . -562) 64873) ((-294 . -281) T) ((-615 . -565) 64835) ((-57 . -788) 64814) ((-1135 . -288) 64699) ((-934 . -378) 64681) ((-756 . -558) 64658) ((-488 . -788) 64637) ((-469 . -788) 64616) ((-39 . -1129) T) ((-929 . -966) 64514) ((-49 . -126) T) ((-538 . -126) T) ((-489 . -126) T) ((-273 . -593) 64376) ((-321 . -307) 64353) ((-321 . -341) T) ((-300 . -301) 64330) ((-297 . -265) 64315) ((-39 . -517) T) ((-357 . -1111) T) ((-357 . -1114) T) ((-964 . -1102) 64290) ((-1099 . -215) 64240) ((-1080 . -211) 64192) ((-308 . -1018) T) ((-357 . -91) T) ((-357 . -34) T) ((-964 . -102) 64138) ((-454 . -975) T) ((-455 . -215) 64088) ((-1073 . -464) 64022) ((-1193 . -981) 64006) ((-359 . -981) 63990) ((-454 . -223) T) ((-757 . -97) T) ((-656 . -138) 63969) ((-656 . -136) 63948) ((-459 . -464) 63932) ((-460 . -313) 63901) ((-1193 . -107) 63880) ((-484 . -1018) T) ((-458 . -160) 63859) ((-929 . -355) 63843) ((-391 . -97) T) ((-359 . -107) 63822) ((-929 . -316) 63806) ((-258 . -914) 63790) ((-257 . -914) 63774) ((-1191 . -565) 63756) ((-1189 . -565) 63738) ((-106 . -486) NIL) ((-1085 . -1147) 63722) ((-792 . -790) 63706) ((-1091 . -1018) T) ((-98 . -1125) T) ((-885 . -882) 63667) ((-758 . -659) 63609) ((-1135 . -1065) NIL) ((-457 . -882) 63554) ((-986 . -134) T) ((-58 . -97) 63532) ((-43 . -565) 63514) ((-76 . -565) 63496) ((-329 . -593) 63441) ((-1181 . -1018) T) ((-483 . -788) T) ((-321 . -1030) T) ((-274 . -1018) T) ((-929 . -833) 63400) ((-274 . -562) 63379) ((-1163 . -37) 63276) ((-1156 . -37) 63117) ((-462 . -982) T) ((-1135 . -37) 62913) ((-198 . -982) T) ((-321 . -23) T) ((-143 . -565) 62895) ((-774 . -736) 62874) ((-774 . -733) 62853) ((-551 . -37) 62826) ((-550 . -37) 62723) ((-803 . -517) T) ((-203 . -126) T) ((-297 . -932) 62689) ((-77 . -565) 62671) ((-654 . -286) 62650) ((-273 . -668) 62553) ((-765 . -97) T) ((-798 . -782) T) ((-273 . -450) 62532) ((-1184 . -97) T) ((-39 . -341) T) ((-805 . -138) 62511) ((-805 . -136) 62490) ((-1072 . -464) 62472) ((-1193 . -975) T) ((-458 . -486) 62405) ((-1060 . -1125) T) ((-896 . -565) 62387) ((-592 . -464) 62371) ((-580 . -464) 62302) ((-756 . -565) 62054) ((-47 . -27) T) ((-1091 . -659) 61951) ((-598 . -1018) T) ((-414 . -342) 61925) ((-1020 . -97) T) ((-757 . -288) 61912) ((-798 . -1018) T) ((-1189 . -360) 61884) ((-979 . -486) 61817) ((-1073 . -265) 61793) ((-220 . -211) 61763) ((-1181 . -659) 61733) ((-758 . -160) 61712) ((-207 . -486) 61645) ((-570 . -736) 61624) ((-570 . -733) 61603) ((-1123 . -565) 61515) ((-202 . -1125) T) ((-619 . -565) 61447) ((-1070 . -940) 61431) ((-329 . -668) T) ((-876 . -97) 61381) ((-1135 . -378) 61333) ((-1031 . -464) 61317) ((-58 . -288) 61255) ((-309 . -97) T) ((-1120 . -21) T) ((-1120 . -25) T) ((-39 . -1030) T) ((-653 . -21) T) ((-575 . -565) 61237) ((-487 . -301) 61216) ((-653 . -25) T) ((-103 . -265) NIL) ((-854 . -1030) T) ((-39 . -23) T) ((-712 . -1030) T) ((-525 . -1129) T) ((-468 . -1129) T) ((-297 . -565) 61198) ((-934 . -211) 61180) ((-157 . -154) 61164) ((-537 . -517) T) ((-525 . -517) T) ((-468 . -517) T) ((-712 . -23) T) ((-1155 . -138) 61143) ((-1073 . -558) 61119) ((-1155 . -136) 61098) ((-956 . -464) 61082) ((-1134 . -136) 61007) ((-1134 . -138) 60932) ((-1184 . -1190) 60911) ((-453 . -464) 60895) ((-440 . -464) 60879) ((-494 . -33) T) ((-598 . -659) 60849) ((-108 . -899) T) ((-607 . -788) 60828) ((-1091 . -160) 60779) ((-343 . -97) T) ((-220 . -218) 60758) ((-230 . -97) T) ((-229 . -97) T) ((-1144 . -882) 60727) ((-105 . -97) T) ((-225 . -788) 60706) ((-757 . -37) 60555) ((-44 . -486) 60347) ((-1072 . -265) 60322) ((-195 . -1018) T) ((-1064 . -1018) T) ((-1064 . -562) 60301) ((-542 . -25) T) ((-542 . -21) T) ((-1020 . -288) 60239) ((-895 . -389) 60223) ((-640 . -1129) T) ((-580 . -265) 60198) ((-1007 . -587) 60146) ((-723 . -587) 60094) ((-721 . -587) 60042) ((-321 . -126) T) ((-268 . -565) 60024) ((-640 . -517) T) ((-838 . -1018) T) ((-803 . -1030) T) ((-431 . -587) 59972) ((-838 . -836) 59956) ((-357 . -429) T) ((-462 . -1018) T) ((-642 . -593) 59943) ((-876 . -288) 59881) ((-198 . -1018) T) ((-294 . -853) 59860) ((-291 . -853) T) ((-291 . -761) NIL) ((-368 . -662) T) ((-803 . -23) T) ((-112 . -593) 59847) ((-451 . -136) 59826) ((-396 . -389) 59810) ((-451 . -138) 59789) ((-106 . -464) 59771) ((-2 . -565) 59753) ((-1072 . -19) 59735) ((-1072 . -558) 59710) ((-603 . -21) T) ((-603 . -25) T) ((-548 . -1058) T) ((-1031 . -265) 59687) ((-314 . -25) T) ((-314 . -21) T) ((-468 . -341) T) ((-1184 . -37) 59657) ((-1056 . -1125) T) ((-580 . -558) 59632) ((-1007 . -25) T) ((-1007 . -21) T) ((-497 . -733) T) ((-497 . -736) T) ((-113 . -1129) T) ((-895 . -982) T) ((-572 . -517) T) ((-677 . -982) T) ((-657 . -982) T) ((-723 . -25) T) ((-723 . -21) T) ((-721 . -21) T) ((-721 . -25) T) ((-615 . -981) 59616) ((-438 . -25) T) ((-113 . -517) T) ((-438 . -21) T) ((-431 . -25) T) ((-431 . -21) T) ((-1056 . -966) 59514) ((-758 . -269) 59493) ((-764 . -1018) T) ((-898 . -899) T) ((-615 . -107) 59472) ((-274 . -486) 59264) ((-1191 . -981) 59248) ((-1189 . -981) 59232) ((-230 . -288) 59170) ((-229 . -288) 59108) ((-1138 . -97) 59086) ((-1073 . -566) NIL) ((-1073 . -565) 59068) ((-1155 . -1111) 59034) ((-1155 . -1114) 59000) ((-1135 . -211) 58952) ((-1134 . -1111) 58918) ((-1134 . -1114) 58884) ((-1056 . -355) 58868) ((-1036 . -761) T) ((-1036 . -853) T) ((-1031 . -558) 58845) ((-1001 . -566) 58829) ((-459 . -565) 58761) ((-756 . -267) 58738) ((-560 . -142) 58685) ((-396 . -982) T) ((-462 . -659) 58635) ((-458 . -464) 58619) ((-305 . -788) 58598) ((-317 . -593) 58572) ((-49 . -21) T) ((-49 . -25) T) ((-198 . -659) 58522) ((-157 . -666) 58493) ((-161 . -593) 58425) ((-538 . -21) T) ((-538 . -25) T) ((-489 . -25) T) ((-489 . -21) T) ((-452 . -142) 58375) ((-1001 . -565) 58357) ((-985 . -565) 58339) ((-924 . -97) T) ((-796 . -97) T) ((-740 . -389) 58303) ((-39 . -126) T) ((-640 . -341) T) ((-194 . -828) T) ((-642 . -735) T) ((-642 . -732) T) ((-537 . -1030) T) ((-525 . -1030) T) ((-468 . -1030) T) ((-642 . -668) T) ((-337 . -565) 58285) ((-331 . -565) 58267) ((-323 . -565) 58249) ((-64 . -374) T) ((-64 . -373) T) ((-103 . -566) 58179) ((-103 . -565) 58161) ((-193 . -828) T) ((-890 . -142) 58145) ((-1155 . -91) 58111) ((-712 . -126) T) ((-128 . -668) T) ((-112 . -668) T) ((-1155 . -34) 58077) ((-979 . -464) 58061) ((-537 . -23) T) ((-525 . -23) T) ((-468 . -23) T) ((-1134 . -91) 58027) ((-1134 . -34) 57993) ((-1085 . -97) T) ((-1041 . -97) T) ((-792 . -97) T) ((-207 . -464) 57977) ((-1191 . -107) 57956) ((-1189 . -107) 57935) ((-43 . -981) 57919) ((-1144 . -1147) 57903) ((-793 . -790) 57887) ((-1091 . -269) 57866) ((-106 . -265) 57841) ((-1056 . -833) 57800) ((-43 . -107) 57779) ((-615 . -975) T) ((-1094 . -1166) T) ((-1072 . -566) NIL) ((-1072 . -565) 57761) ((-987 . -562) 57736) ((-987 . -1018) T) ((-72 . -418) T) ((-72 . -373) T) ((-615 . -213) 57715) ((-143 . -981) 57699) ((-532 . -515) 57683) ((-333 . -138) 57662) ((-333 . -136) 57613) ((-330 . -138) 57592) ((-644 . -1018) T) ((-330 . -136) 57543) ((-322 . -138) 57522) ((-322 . -136) 57473) ((-243 . -136) 57452) ((-243 . -138) 57431) ((-230 . -37) 57401) ((-227 . -138) 57380) ((-113 . -341) T) ((-227 . -136) 57359) ((-229 . -37) 57329) ((-143 . -107) 57308) ((-933 . -966) 57198) ((-1080 . -786) NIL) ((-635 . -1129) T) ((-740 . -982) T) ((-640 . -1030) T) ((-1191 . -975) T) ((-1189 . -975) T) ((-1070 . -1125) T) ((-933 . -355) 57175) ((-843 . -136) T) ((-843 . -138) 57157) ((-803 . -126) T) ((-756 . -981) 57055) ((-635 . -517) T) ((-640 . -23) T) ((-592 . -565) 56987) ((-592 . -566) 56948) ((-580 . -566) NIL) ((-580 . -565) 56930) ((-462 . -160) T) ((-203 . -21) T) ((-198 . -160) T) ((-203 . -25) T) ((-451 . -1114) 56896) ((-451 . -1111) 56862) ((-253 . -565) 56844) ((-252 . -565) 56826) ((-251 . -565) 56808) ((-250 . -565) 56790) ((-249 . -565) 56772) ((-473 . -596) 56754) ((-248 . -565) 56736) ((-317 . -668) T) ((-247 . -565) 56718) ((-106 . -19) 56700) ((-161 . -668) T) ((-473 . -351) 56682) ((-194 . -565) 56664) ((-491 . -1063) 56648) ((-473 . -119) T) ((-106 . -558) 56623) ((-193 . -565) 56605) ((-451 . -34) 56571) ((-451 . -91) 56537) ((-191 . -565) 56519) ((-190 . -565) 56501) ((-189 . -565) 56483) ((-188 . -565) 56465) ((-185 . -565) 56447) ((-184 . -565) 56429) ((-183 . -565) 56411) ((-182 . -565) 56393) ((-181 . -565) 56375) ((-180 . -565) 56357) ((-179 . -565) 56339) ((-501 . -1021) 56291) ((-178 . -565) 56273) ((-177 . -565) 56255) ((-44 . -464) 56192) ((-176 . -565) 56174) ((-175 . -565) 56156) ((-756 . -107) 56047) ((-591 . -97) 55997) ((-458 . -265) 55974) ((-1031 . -565) 55726) ((-1019 . -1018) T) ((-972 . -1125) T) ((-572 . -1030) T) ((-1192 . -966) 55710) ((-1085 . -288) 55697) ((-1041 . -288) 55684) ((-113 . -1030) T) ((-760 . -97) T) ((-572 . -23) T) ((-1064 . -486) 55476) ((-364 . -97) T) ((-302 . -97) T) ((-933 . -833) 55428) ((-895 . -1018) T) ((-143 . -975) T) ((-113 . -23) T) ((-673 . -389) 55412) ((-677 . -1018) T) ((-657 . -1018) T) ((-644 . -127) T) ((-430 . -1018) T) ((-294 . -408) 55396) ((-385 . -1125) T) ((-956 . -566) 55357) ((-953 . -1129) T) ((-205 . -97) T) ((-956 . -565) 55319) ((-757 . -211) 55303) ((-953 . -517) T) ((-774 . -593) 55276) ((-332 . -1129) T) ((-453 . -565) 55238) ((-453 . -566) 55199) ((-440 . -566) 55160) ((-440 . -565) 55122) ((-385 . -817) 55106) ((-297 . -981) 54941) ((-385 . -819) 54866) ((-781 . -966) 54764) ((-462 . -486) NIL) ((-458 . -558) 54741) ((-332 . -517) T) ((-198 . -486) NIL) ((-805 . -429) T) ((-396 . -1018) T) ((-385 . -966) 54608) ((-297 . -107) 54429) ((-635 . -341) T) ((-205 . -263) T) ((-47 . -1129) T) ((-756 . -975) 54360) ((-537 . -126) T) ((-525 . -126) T) ((-468 . -126) T) ((-47 . -517) T) ((-1073 . -267) 54336) ((-1085 . -1065) 54314) ((-294 . -27) 54293) ((-986 . -97) T) ((-756 . -213) 54246) ((-220 . -786) 54225) ((-885 . -97) T) ((-655 . -97) T) ((-274 . -464) 54162) ((-457 . -97) T) ((-673 . -982) T) ((-564 . -565) 54144) ((-564 . -566) 54005) ((-385 . -355) 53989) ((-385 . -316) 53973) ((-1085 . -37) 53802) ((-1041 . -37) 53651) ((-792 . -37) 53621) ((-368 . -593) 53605) ((-591 . -288) 53543) ((-895 . -659) 53440) ((-202 . -102) 53424) ((-44 . -265) 53349) ((-677 . -659) 53319) ((-570 . -593) 53293) ((-290 . -1018) T) ((-268 . -981) 53280) ((-106 . -565) 53262) ((-106 . -566) 53244) ((-430 . -659) 53214) ((-757 . -232) 53153) ((-631 . -1018) 53131) ((-511 . -1018) T) ((-1087 . -982) T) ((-1086 . -982) T) ((-268 . -107) 53116) ((-1080 . -982) T) ((-1042 . -982) T) ((-511 . -562) 53095) ((-934 . -786) T) ((-207 . -629) 53053) ((-635 . -1030) T) ((-1120 . -682) 53029) ((-297 . -975) T) ((-321 . -25) T) ((-321 . -21) T) ((-385 . -833) 52988) ((-66 . -1125) T) ((-774 . -735) 52967) ((-396 . -659) 52941) ((-740 . -1018) T) ((-774 . -732) 52920) ((-640 . -126) T) ((-654 . -853) 52899) ((-635 . -23) T) ((-462 . -269) T) ((-774 . -668) 52878) ((-297 . -213) 52830) ((-297 . -223) 52809) ((-198 . -269) T) ((-953 . -341) T) ((-1155 . -429) 52788) ((-1134 . -429) 52767) ((-332 . -307) 52744) ((-332 . -341) T) ((-1054 . -565) 52726) ((-44 . -1159) 52676) ((-804 . -97) T) ((-591 . -261) 52660) ((-640 . -984) T) ((-454 . -593) 52625) ((-445 . -1018) T) ((-44 . -558) 52550) ((-1072 . -267) 52525) ((-39 . -587) 52464) ((-47 . -341) T) ((-1024 . -565) 52446) ((-1007 . -788) 52425) ((-580 . -267) 52400) ((-723 . -788) 52379) ((-721 . -788) 52358) ((-458 . -565) 52110) ((-220 . -389) 52079) ((-885 . -288) 52066) ((-431 . -788) 52045) ((-63 . -1125) T) ((-572 . -126) T) ((-457 . -288) 52032) ((-987 . -486) 51876) ((-268 . -975) T) ((-113 . -126) T) ((-430 . -703) T) ((-895 . -160) 51827) ((-1001 . -981) 51737) ((-570 . -735) 51716) ((-548 . -1018) T) ((-570 . -732) 51695) ((-570 . -668) T) ((-274 . -265) 51674) ((-273 . -1125) T) ((-979 . -565) 51636) ((-979 . -566) 51597) ((-953 . -1030) T) ((-157 . -97) T) ((-254 . -788) T) ((-1079 . -1018) T) ((-759 . -565) 51579) ((-1031 . -267) 51556) ((-1020 . -209) 51540) ((-933 . -286) T) ((-740 . -659) 51524) ((-337 . -981) 51476) ((-332 . -1030) T) ((-331 . -981) 51428) ((-392 . -565) 51410) ((-363 . -565) 51392) ((-323 . -981) 51344) ((-207 . -565) 51276) ((-1001 . -107) 51172) ((-953 . -23) T) ((-103 . -981) 51122) ((-831 . -97) T) ((-779 . -97) T) ((-749 . -97) T) ((-710 . -97) T) ((-620 . -97) T) ((-451 . -429) 51101) ((-396 . -160) T) ((-337 . -107) 51039) ((-331 . -107) 50977) ((-323 . -107) 50915) ((-230 . -211) 50885) ((-229 . -211) 50855) ((-332 . -23) T) ((-69 . -1125) T) ((-205 . -37) 50820) ((-103 . -107) 50754) ((-39 . -25) T) ((-39 . -21) T) ((-615 . -662) T) ((-157 . -263) 50732) ((-47 . -1030) T) ((-854 . -25) T) ((-712 . -25) T) ((-1064 . -464) 50669) ((-460 . -1018) T) ((-1193 . -593) 50643) ((-1144 . -97) T) ((-793 . -97) T) ((-220 . -982) 50574) ((-986 . -1065) T) ((-896 . -733) 50527) ((-359 . -593) 50511) ((-47 . -23) T) ((-896 . -736) 50464) ((-756 . -736) 50415) ((-756 . -733) 50366) ((-274 . -558) 50345) ((-454 . -668) T) ((-532 . -97) T) ((-804 . -288) 50302) ((-598 . -265) 50281) ((-108 . -606) T) ((-74 . -1125) T) ((-986 . -37) 50268) ((-609 . -352) 50247) ((-885 . -37) 50096) ((-673 . -1018) T) ((-457 . -37) 49945) ((-84 . -1125) T) ((-532 . -263) T) ((-1135 . -786) NIL) ((-1087 . -1018) T) ((-1086 . -1018) T) ((-1080 . -1018) T) ((-329 . -966) 49922) ((-1001 . -975) T) ((-934 . -982) T) ((-44 . -565) 49904) ((-44 . -566) NIL) ((-847 . -982) T) ((-758 . -565) 49886) ((-1061 . -97) 49864) ((-1001 . -223) 49815) ((-405 . -982) T) ((-337 . -975) T) ((-331 . -975) T) ((-343 . -342) 49792) ((-323 . -975) T) ((-230 . -218) 49771) ((-229 . -218) 49750) ((-105 . -342) 49724) ((-1001 . -213) 49649) ((-1042 . -1018) T) ((-273 . -833) 49608) ((-103 . -975) T) ((-635 . -126) T) ((-396 . -486) 49450) ((-337 . -213) 49429) ((-337 . -223) T) ((-43 . -662) T) ((-331 . -213) 49408) ((-331 . -223) T) ((-323 . -213) 49387) ((-323 . -223) T) ((-157 . -288) 49352) ((-103 . -223) T) ((-103 . -213) T) ((-297 . -733) T) ((-803 . -21) T) ((-803 . -25) T) ((-385 . -286) T) ((-473 . -33) T) ((-106 . -267) 49327) ((-1031 . -981) 49225) ((-804 . -1065) NIL) ((-308 . -565) 49207) ((-385 . -951) 49186) ((-1031 . -107) 49077) ((-414 . -1018) T) ((-1193 . -668) T) ((-61 . -565) 49059) ((-804 . -37) 49004) ((-494 . -1125) T) ((-556 . -142) 48988) ((-484 . -565) 48970) ((-1144 . -288) 48957) ((-673 . -659) 48806) ((-497 . -734) T) ((-497 . -735) T) ((-525 . -587) 48788) ((-468 . -587) 48748) ((-333 . -429) T) ((-330 . -429) T) ((-322 . -429) T) ((-243 . -429) 48699) ((-491 . -1018) 48649) ((-227 . -429) 48600) ((-1064 . -265) 48579) ((-1091 . -565) 48561) ((-631 . -486) 48494) ((-895 . -269) 48473) ((-511 . -486) 48265) ((-1085 . -211) 48249) ((-157 . -1065) 48228) ((-1181 . -565) 48210) ((-1087 . -659) 48107) ((-1086 . -659) 47948) ((-825 . -97) T) ((-1080 . -659) 47744) ((-1042 . -659) 47641) ((-1070 . -618) 47625) ((-333 . -380) 47576) ((-330 . -380) 47527) ((-322 . -380) 47478) ((-953 . -126) T) ((-740 . -486) 47390) ((-274 . -566) NIL) ((-274 . -565) 47372) ((-843 . -429) T) ((-896 . -346) 47325) ((-756 . -346) 47304) ((-482 . -481) 47283) ((-480 . -481) 47262) ((-462 . -265) NIL) ((-458 . -267) 47239) ((-396 . -269) T) ((-332 . -126) T) ((-198 . -265) NIL) ((-635 . -466) NIL) ((-94 . -1030) T) ((-157 . -37) 47067) ((-1155 . -904) 47029) ((-1061 . -288) 46967) ((-1134 . -904) 46936) ((-843 . -380) T) ((-1031 . -975) 46867) ((-1157 . -517) T) ((-1064 . -558) 46846) ((-108 . -788) T) ((-987 . -464) 46777) ((-537 . -21) T) ((-537 . -25) T) ((-525 . -21) T) ((-525 . -25) T) ((-468 . -25) T) ((-468 . -21) T) ((-1144 . -1065) 46755) ((-1031 . -213) 46708) ((-47 . -126) T) ((-1107 . -97) T) ((-220 . -1018) 46519) ((-804 . -378) 46496) ((-1008 . -97) T) ((-997 . -97) T) ((-560 . -97) T) ((-452 . -97) T) ((-1144 . -37) 46325) ((-793 . -37) 46295) ((-673 . -160) 46206) ((-598 . -565) 46188) ((-532 . -37) 46175) ((-890 . -97) 46125) ((-798 . -565) 46107) ((-798 . -566) 46029) ((-548 . -486) NIL) ((-1163 . -982) T) ((-1156 . -982) T) ((-1135 . -982) T) ((-551 . -982) T) ((-550 . -982) T) ((-1197 . -1030) T) ((-1087 . -160) 45980) ((-1086 . -160) 45911) ((-1080 . -160) 45842) ((-1042 . -160) 45793) ((-934 . -1018) T) ((-902 . -1018) T) ((-847 . -1018) T) ((-1120 . -138) 45772) ((-740 . -738) 45756) ((-640 . -25) T) ((-640 . -21) T) ((-113 . -587) 45733) ((-642 . -819) 45715) ((-405 . -1018) T) ((-294 . -1129) 45694) ((-291 . -1129) T) ((-157 . -378) 45678) ((-1120 . -136) 45657) ((-451 . -904) 45619) ((-124 . -1018) T) ((-70 . -565) 45601) ((-103 . -736) T) ((-103 . -733) T) ((-294 . -517) 45580) ((-642 . -966) 45562) ((-291 . -517) T) ((-1197 . -23) T) ((-128 . -966) 45544) ((-458 . -981) 45442) ((-44 . -267) 45367) ((-220 . -659) 45309) ((-458 . -107) 45200) ((-1011 . -97) 45178) ((-963 . -97) T) ((-591 . -769) 45157) ((-673 . -486) 45100) ((-979 . -981) 45084) ((-572 . -21) T) ((-572 . -25) T) ((-987 . -265) 45059) ((-339 . -97) T) ((-300 . -97) T) ((-615 . -593) 45033) ((-363 . -981) 45017) ((-979 . -107) 44996) ((-757 . -389) 44980) ((-113 . -25) T) ((-87 . -565) 44962) ((-113 . -21) T) ((-560 . -288) 44757) ((-452 . -288) 44561) ((-1064 . -566) NIL) ((-363 . -107) 44540) ((-357 . -97) T) ((-195 . -565) 44522) ((-1064 . -565) 44504) ((-934 . -659) 44454) ((-1080 . -486) 44223) ((-847 . -659) 44175) ((-1042 . -486) 44145) ((-329 . -286) T) ((-1099 . -142) 44095) ((-890 . -288) 44033) ((-775 . -97) T) ((-405 . -659) 44017) ((-205 . -769) T) ((-768 . -97) T) ((-766 . -97) T) ((-455 . -142) 43967) ((-1155 . -1154) 43946) ((-1036 . -1129) T) ((-317 . -966) 43913) ((-1155 . -1149) 43883) ((-1155 . -1152) 43867) ((-1134 . -1133) 43846) ((-78 . -565) 43828) ((-838 . -565) 43810) ((-1134 . -1149) 43787) ((-1036 . -517) T) ((-854 . -788) T) ((-462 . -566) 43717) ((-462 . -565) 43699) ((-712 . -788) T) ((-357 . -263) T) ((-616 . -788) T) ((-1134 . -1131) 43683) ((-1157 . -1030) T) ((-198 . -566) 43613) ((-198 . -565) 43595) ((-987 . -558) 43570) ((-57 . -142) 43554) ((-488 . -142) 43538) ((-469 . -142) 43522) ((-337 . -1188) 43506) ((-331 . -1188) 43490) ((-323 . -1188) 43474) ((-294 . -341) 43453) ((-291 . -341) T) ((-458 . -975) 43384) ((-635 . -587) 43366) ((-1191 . -593) 43340) ((-1189 . -593) 43314) ((-1157 . -23) T) ((-631 . -464) 43298) ((-62 . -565) 43280) ((-1031 . -736) 43231) ((-1031 . -733) 43182) ((-511 . -464) 43119) ((-615 . -33) T) ((-458 . -213) 43072) ((-274 . -267) 43051) ((-220 . -160) 43030) ((-757 . -982) T) ((-43 . -593) 42988) ((-1001 . -346) 42939) ((-673 . -269) 42870) ((-491 . -486) 42803) ((-758 . -981) 42754) ((-1007 . -136) 42733) ((-337 . -346) 42712) ((-331 . -346) 42691) ((-323 . -346) 42670) ((-1007 . -138) 42649) ((-804 . -211) 42626) ((-758 . -107) 42568) ((-723 . -136) 42547) ((-723 . -138) 42526) ((-243 . -882) 42493) ((-230 . -786) 42472) ((-227 . -882) 42417) ((-229 . -786) 42396) ((-721 . -136) 42375) ((-721 . -138) 42354) ((-143 . -593) 42328) ((-431 . -138) 42307) ((-431 . -136) 42286) ((-615 . -668) T) ((-764 . -565) 42268) ((-1163 . -1018) T) ((-1156 . -1018) T) ((-1135 . -1018) T) ((-1120 . -1114) 42234) ((-1120 . -1111) 42200) ((-1087 . -269) 42179) ((-1086 . -269) 42130) ((-1080 . -269) 42081) ((-1042 . -269) 42060) ((-317 . -833) 42041) ((-934 . -160) T) ((-847 . -160) T) ((-551 . -1018) T) ((-550 . -1018) T) ((-635 . -21) T) ((-635 . -25) T) ((-451 . -1152) 42025) ((-451 . -1149) 41995) ((-396 . -265) 41923) ((-294 . -1030) 41773) ((-291 . -1030) T) ((-1120 . -34) 41739) ((-1120 . -91) 41705) ((-82 . -565) 41687) ((-89 . -97) 41665) ((-1197 . -126) T) ((-538 . -136) T) ((-538 . -138) 41647) ((-489 . -138) 41629) ((-489 . -136) T) ((-294 . -23) 41482) ((-39 . -320) 41456) ((-291 . -23) T) ((-1072 . -596) 41438) ((-756 . -593) 41288) ((-1184 . -982) T) ((-1072 . -351) 41270) ((-157 . -211) 41254) ((-548 . -464) 41236) ((-220 . -486) 41169) ((-1191 . -668) T) ((-1189 . -668) T) ((-1091 . -981) 41052) ((-1091 . -107) 40921) ((-758 . -975) T) ((-487 . -97) T) ((-47 . -587) 40881) ((-482 . -97) T) ((-480 . -97) T) ((-1181 . -981) 40851) ((-963 . -37) 40835) ((-758 . -213) T) ((-758 . -223) 40814) ((-511 . -265) 40793) ((-1181 . -107) 40758) ((-1144 . -211) 40742) ((-1163 . -659) 40639) ((-987 . -566) NIL) ((-987 . -565) 40621) ((-1156 . -659) 40462) ((-1135 . -659) 40258) ((-933 . -853) T) ((-644 . -565) 40227) ((-143 . -668) T) ((-1031 . -346) 40206) ((-934 . -486) NIL) ((-230 . -389) 40175) ((-229 . -389) 40144) ((-953 . -25) T) ((-953 . -21) T) ((-551 . -659) 40117) ((-550 . -659) 40014) ((-740 . -265) 39972) ((-122 . -97) 39950) ((-774 . -966) 39848) ((-157 . -769) 39827) ((-297 . -593) 39724) ((-756 . -33) T) ((-656 . -97) T) ((-1036 . -1030) T) ((-124 . -486) NIL) ((-955 . -1125) T) ((-357 . -37) 39689) ((-332 . -25) T) ((-332 . -21) T) ((-150 . -97) T) ((-146 . -97) T) ((-333 . -1178) 39673) ((-330 . -1178) 39657) ((-322 . -1178) 39641) ((-157 . -327) 39620) ((-525 . -788) T) ((-468 . -788) T) ((-1036 . -23) T) ((-85 . -565) 39602) ((-642 . -286) T) ((-775 . -37) 39572) ((-768 . -37) 39542) ((-1157 . -126) T) ((-1064 . -267) 39521) ((-896 . -734) 39474) ((-896 . -735) 39427) ((-756 . -732) 39406) ((-112 . -286) T) ((-89 . -288) 39344) ((-619 . -33) T) ((-511 . -558) 39323) ((-47 . -25) T) ((-47 . -21) T) ((-756 . -735) 39274) ((-756 . -734) 39253) ((-642 . -951) T) ((-598 . -981) 39237) ((-896 . -668) 39136) ((-756 . -668) 39067) ((-896 . -450) 39020) ((-458 . -736) 38971) ((-458 . -733) 38922) ((-843 . -1178) 38909) ((-1091 . -975) T) ((-598 . -107) 38888) ((-1091 . -304) 38865) ((-1112 . -97) 38843) ((-1019 . -565) 38825) ((-642 . -510) T) ((-757 . -1018) T) ((-1181 . -975) T) ((-391 . -1018) T) ((-230 . -982) 38756) ((-229 . -982) 38687) ((-268 . -593) 38674) ((-548 . -265) 38649) ((-631 . -629) 38607) ((-895 . -565) 38589) ((-805 . -97) T) ((-677 . -565) 38571) ((-657 . -565) 38553) ((-1163 . -160) 38504) ((-1156 . -160) 38435) ((-1135 . -160) 38366) ((-640 . -788) T) ((-934 . -269) T) ((-430 . -565) 38348) ((-575 . -668) T) ((-58 . -1018) 38326) ((-225 . -142) 38310) ((-847 . -269) T) ((-953 . -942) T) ((-575 . -450) T) ((-654 . -1129) 38289) ((-551 . -160) 38268) ((-550 . -160) 38219) ((-1171 . -788) 38198) ((-654 . -517) 38109) ((-385 . -853) T) ((-385 . -761) 38088) ((-297 . -735) T) ((-297 . -668) T) ((-396 . -565) 38070) ((-396 . -566) 37978) ((-591 . -1063) 37962) ((-106 . -596) 37944) ((-122 . -288) 37882) ((-106 . -351) 37864) ((-161 . -286) T) ((-376 . -1125) T) ((-294 . -126) 37736) ((-291 . -126) T) ((-67 . -373) T) ((-106 . -119) T) ((-491 . -464) 37720) ((-599 . -1030) T) ((-548 . -19) 37702) ((-59 . -418) T) ((-59 . -373) T) ((-765 . -1018) T) ((-548 . -558) 37677) ((-454 . -966) 37637) ((-598 . -975) T) ((-599 . -23) T) ((-1184 . -1018) T) ((-757 . -659) 37486) ((-113 . -788) NIL) ((-1085 . -389) 37470) ((-1041 . -389) 37454) ((-792 . -389) 37438) ((-806 . -97) 37389) ((-1155 . -97) T) ((-1135 . -486) 37158) ((-1112 . -288) 37096) ((-290 . -565) 37078) ((-1134 . -97) T) ((-1020 . -1018) T) ((-1087 . -265) 37063) ((-1086 . -265) 37048) ((-268 . -668) T) ((-103 . -842) NIL) ((-631 . -565) 36980) ((-631 . -566) 36941) ((-1001 . -593) 36851) ((-555 . -565) 36833) ((-511 . -566) NIL) ((-511 . -565) 36815) ((-1080 . -265) 36663) ((-462 . -981) 36613) ((-653 . -429) T) ((-483 . -481) 36592) ((-479 . -481) 36571) ((-198 . -981) 36521) ((-337 . -593) 36473) ((-331 . -593) 36425) ((-205 . -786) T) ((-323 . -593) 36377) ((-556 . -97) 36327) ((-458 . -346) 36306) ((-103 . -593) 36256) ((-462 . -107) 36190) ((-220 . -464) 36174) ((-321 . -138) 36156) ((-321 . -136) T) ((-157 . -348) 36127) ((-876 . -1169) 36111) ((-198 . -107) 36045) ((-805 . -288) 36010) ((-876 . -1018) 35960) ((-740 . -566) 35921) ((-740 . -565) 35903) ((-660 . -97) T) ((-309 . -1018) T) ((-1036 . -126) T) ((-656 . -37) 35873) ((-294 . -466) 35852) ((-473 . -1125) T) ((-1155 . -263) 35818) ((-1134 . -263) 35784) ((-305 . -142) 35768) ((-987 . -267) 35743) ((-1184 . -659) 35713) ((-1073 . -33) T) ((-1193 . -966) 35690) ((-445 . -565) 35672) ((-459 . -33) T) ((-359 . -966) 35656) ((-1085 . -982) T) ((-1041 . -982) T) ((-792 . -982) T) ((-986 . -786) T) ((-757 . -160) 35567) ((-491 . -265) 35544) ((-124 . -464) 35526) ((-113 . -923) 35503) ((-1163 . -269) 35482) ((-1107 . -342) 35456) ((-1008 . -245) 35440) ((-451 . -97) T) ((-343 . -1018) T) ((-230 . -1018) T) ((-229 . -1018) T) ((-1156 . -269) 35391) ((-105 . -1018) T) ((-1135 . -269) 35342) ((-805 . -1065) 35320) ((-1087 . -932) 35286) ((-560 . -342) 35226) ((-1086 . -932) 35192) ((-560 . -209) 35139) ((-548 . -565) 35121) ((-548 . -566) NIL) ((-635 . -788) T) ((-452 . -209) 35071) ((-462 . -975) T) ((-1080 . -932) 35037) ((-86 . -417) T) ((-86 . -373) T) ((-198 . -975) T) ((-1042 . -932) 35003) ((-1001 . -668) T) ((-654 . -1030) T) ((-551 . -269) 34982) ((-550 . -269) 34961) ((-462 . -223) T) ((-462 . -213) T) ((-198 . -223) T) ((-198 . -213) T) ((-1079 . -565) 34943) ((-805 . -37) 34895) ((-337 . -668) T) ((-331 . -668) T) ((-323 . -668) T) ((-103 . -735) T) ((-103 . -732) T) ((-491 . -1159) 34879) ((-103 . -668) T) ((-654 . -23) T) ((-1197 . -25) T) ((-451 . -263) 34845) ((-1197 . -21) T) ((-1134 . -288) 34784) ((-1089 . -97) T) ((-39 . -136) 34756) ((-39 . -138) 34728) ((-491 . -558) 34705) ((-1031 . -593) 34555) ((-556 . -288) 34493) ((-44 . -596) 34443) ((-44 . -611) 34393) ((-44 . -351) 34343) ((-1072 . -33) T) ((-804 . -786) NIL) ((-599 . -126) T) ((-460 . -565) 34325) ((-220 . -265) 34302) ((-592 . -33) T) ((-580 . -33) T) ((-1007 . -429) 34253) ((-757 . -486) 34127) ((-723 . -429) 34058) ((-721 . -429) 34009) ((-431 . -429) 33960) ((-885 . -389) 33944) ((-673 . -565) 33926) ((-230 . -659) 33868) ((-229 . -659) 33810) ((-673 . -566) 33671) ((-457 . -389) 33655) ((-317 . -281) T) ((-329 . -853) T) ((-930 . -97) 33633) ((-953 . -788) T) ((-58 . -486) 33566) ((-1134 . -1065) 33518) ((-934 . -265) NIL) ((-205 . -982) T) ((-357 . -769) T) ((-1031 . -33) T) ((-1138 . -1012) 33502) ((-538 . -429) T) ((-489 . -429) T) ((-1138 . -1018) 33480) ((-1138 . -1014) 33437) ((-220 . -558) 33414) ((-1087 . -565) 33396) ((-1086 . -565) 33378) ((-1080 . -565) 33360) ((-1080 . -566) NIL) ((-1042 . -565) 33342) ((-124 . -265) 33317) ((-805 . -378) 33301) ((-501 . -97) T) ((-1155 . -37) 33142) ((-1134 . -37) 32956) ((-803 . -138) T) ((-538 . -380) T) ((-47 . -788) T) ((-489 . -380) T) ((-1157 . -21) T) ((-1157 . -25) T) ((-1031 . -732) 32935) ((-1031 . -735) 32886) ((-1031 . -734) 32865) ((-924 . -1018) T) ((-956 . -33) T) ((-796 . -1018) T) ((-1167 . -97) T) ((-1031 . -668) 32796) ((-609 . -97) T) ((-511 . -267) 32775) ((-1099 . -97) T) ((-453 . -33) T) ((-440 . -33) T) ((-333 . -97) T) ((-330 . -97) T) ((-322 . -97) T) ((-243 . -97) T) ((-227 . -97) T) ((-454 . -286) T) ((-986 . -982) T) ((-885 . -982) T) ((-294 . -587) 32683) ((-291 . -587) 32644) ((-457 . -982) T) ((-455 . -97) T) ((-414 . -565) 32626) ((-1085 . -1018) T) ((-1041 . -1018) T) ((-792 . -1018) T) ((-1055 . -97) T) ((-757 . -269) 32557) ((-895 . -981) 32440) ((-454 . -951) T) ((-124 . -19) 32422) ((-677 . -981) 32392) ((-124 . -558) 32367) ((-430 . -981) 32337) ((-1061 . -1037) 32321) ((-1020 . -486) 32254) ((-895 . -107) 32123) ((-843 . -97) T) ((-677 . -107) 32088) ((-57 . -97) 32038) ((-491 . -566) 31999) ((-491 . -565) 31911) ((-490 . -97) 31889) ((-488 . -97) 31839) ((-470 . -97) 31817) ((-469 . -97) 31767) ((-430 . -107) 31730) ((-230 . -160) 31709) ((-229 . -160) 31688) ((-396 . -981) 31662) ((-1120 . -904) 31624) ((-929 . -1030) T) ((-876 . -486) 31557) ((-462 . -736) T) ((-451 . -37) 31398) ((-396 . -107) 31365) ((-462 . -733) T) ((-930 . -288) 31303) ((-198 . -736) T) ((-198 . -733) T) ((-929 . -23) T) ((-654 . -126) T) ((-1134 . -378) 31273) ((-294 . -25) 31126) ((-157 . -389) 31110) ((-294 . -21) 30982) ((-291 . -25) T) ((-291 . -21) T) ((-798 . -346) T) ((-106 . -33) T) ((-458 . -593) 30832) ((-804 . -982) T) ((-548 . -267) 30807) ((-537 . -138) T) ((-525 . -138) T) ((-468 . -138) T) ((-1085 . -659) 30636) ((-1041 . -659) 30485) ((-1036 . -587) 30467) ((-792 . -659) 30437) ((-615 . -1125) T) ((-1 . -97) T) ((-220 . -565) 30189) ((-1144 . -389) 30173) ((-1099 . -288) 29977) ((-895 . -975) T) ((-677 . -975) T) ((-657 . -975) T) ((-591 . -1018) 29927) ((-979 . -593) 29911) ((-793 . -389) 29895) ((-483 . -97) T) ((-479 . -97) T) ((-227 . -288) 29882) ((-243 . -288) 29869) ((-895 . -304) 29848) ((-363 . -593) 29832) ((-455 . -288) 29636) ((-230 . -486) 29569) ((-615 . -966) 29467) ((-229 . -486) 29400) ((-1055 . -288) 29326) ((-760 . -1018) T) ((-740 . -981) 29310) ((-1163 . -265) 29295) ((-1156 . -265) 29280) ((-1135 . -265) 29128) ((-364 . -1018) T) ((-302 . -1018) T) ((-396 . -975) T) ((-157 . -982) T) ((-57 . -288) 29066) ((-740 . -107) 29045) ((-550 . -265) 29030) ((-490 . -288) 28968) ((-488 . -288) 28906) ((-470 . -288) 28844) ((-469 . -288) 28782) ((-396 . -213) 28761) ((-458 . -33) T) ((-934 . -566) 28691) ((-205 . -1018) T) ((-934 . -565) 28673) ((-902 . -565) 28655) ((-902 . -566) 28630) ((-847 . -565) 28612) ((-640 . -138) T) ((-642 . -853) T) ((-642 . -761) T) ((-405 . -565) 28594) ((-1036 . -21) T) ((-124 . -566) NIL) ((-124 . -565) 28576) ((-1036 . -25) T) ((-615 . -355) 28560) ((-112 . -853) T) ((-805 . -211) 28544) ((-76 . -1125) T) ((-122 . -121) 28528) ((-979 . -33) T) ((-1191 . -966) 28502) ((-1189 . -966) 28459) ((-1144 . -982) T) ((-793 . -982) T) ((-458 . -732) 28438) ((-333 . -1065) 28417) ((-330 . -1065) 28396) ((-322 . -1065) 28375) ((-458 . -735) 28326) ((-458 . -734) 28305) ((-207 . -33) T) ((-458 . -668) 28236) ((-58 . -464) 28220) ((-532 . -982) T) ((-1085 . -160) 28111) ((-1041 . -160) 28022) ((-986 . -1018) T) ((-1007 . -882) 27967) ((-885 . -1018) T) ((-758 . -593) 27918) ((-723 . -882) 27887) ((-655 . -1018) T) ((-721 . -882) 27854) ((-488 . -261) 27838) ((-615 . -833) 27797) ((-457 . -1018) T) ((-431 . -882) 27764) ((-77 . -1125) T) ((-333 . -37) 27729) ((-330 . -37) 27694) ((-322 . -37) 27659) ((-243 . -37) 27508) ((-227 . -37) 27357) ((-843 . -1065) T) ((-572 . -138) 27336) ((-572 . -136) 27315) ((-113 . -138) T) ((-113 . -136) NIL) ((-392 . -668) T) ((-740 . -975) T) ((-321 . -429) T) ((-1163 . -932) 27281) ((-1156 . -932) 27247) ((-1135 . -932) 27213) ((-843 . -37) 27178) ((-205 . -659) 27143) ((-297 . -46) 27113) ((-39 . -387) 27085) ((-131 . -565) 27067) ((-929 . -126) T) ((-756 . -1125) T) ((-161 . -853) T) ((-321 . -380) T) ((-491 . -267) 27044) ((-44 . -33) T) ((-756 . -966) 26873) ((-607 . -97) T) ((-599 . -21) T) ((-599 . -25) T) ((-1020 . -464) 26857) ((-1134 . -211) 26827) ((-619 . -1125) T) ((-225 . -97) 26777) ((-804 . -1018) T) ((-1091 . -593) 26702) ((-986 . -659) 26689) ((-673 . -981) 26532) ((-1085 . -486) 26479) ((-885 . -659) 26328) ((-1041 . -486) 26280) ((-457 . -659) 26129) ((-65 . -565) 26111) ((-673 . -107) 25940) ((-876 . -464) 25924) ((-1181 . -593) 25884) ((-758 . -668) T) ((-1087 . -981) 25767) ((-1086 . -981) 25602) ((-1080 . -981) 25392) ((-1042 . -981) 25275) ((-933 . -1129) T) ((-1013 . -97) 25253) ((-756 . -355) 25223) ((-933 . -517) T) ((-1087 . -107) 25092) ((-1086 . -107) 24913) ((-1080 . -107) 24682) ((-1042 . -107) 24551) ((-1023 . -1021) 24515) ((-357 . -786) T) ((-1163 . -565) 24497) ((-1156 . -565) 24479) ((-1135 . -565) 24461) ((-1135 . -566) NIL) ((-220 . -267) 24438) ((-39 . -429) T) ((-205 . -160) T) ((-157 . -1018) T) ((-635 . -138) T) ((-635 . -136) NIL) ((-551 . -565) 24420) ((-550 . -565) 24402) ((-831 . -1018) T) ((-779 . -1018) T) ((-749 . -1018) T) ((-710 . -1018) T) ((-603 . -790) 24386) ((-620 . -1018) T) ((-756 . -833) 24319) ((-39 . -380) NIL) ((-1036 . -606) T) ((-804 . -659) 24264) ((-230 . -464) 24248) ((-229 . -464) 24232) ((-654 . -587) 24180) ((-598 . -593) 24154) ((-274 . -33) T) ((-673 . -975) T) ((-538 . -1178) 24141) ((-489 . -1178) 24118) ((-1144 . -1018) T) ((-1085 . -269) 24029) ((-1041 . -269) 23960) ((-986 . -160) T) ((-793 . -1018) T) ((-885 . -160) 23871) ((-723 . -1147) 23855) ((-591 . -486) 23788) ((-75 . -565) 23770) ((-673 . -304) 23735) ((-1091 . -668) T) ((-532 . -1018) T) ((-457 . -160) 23646) ((-225 . -288) 23584) ((-124 . -267) 23559) ((-1056 . -1030) T) ((-68 . -565) 23541) ((-1181 . -668) T) ((-1087 . -975) T) ((-1086 . -975) T) ((-305 . -97) 23491) ((-1080 . -975) T) ((-1056 . -23) T) ((-1042 . -975) T) ((-89 . -1037) 23475) ((-799 . -1030) T) ((-1087 . -213) 23434) ((-1086 . -223) 23413) ((-1086 . -213) 23365) ((-1080 . -213) 23252) ((-1080 . -223) 23231) ((-297 . -833) 23137) ((-799 . -23) T) ((-157 . -659) 22965) ((-385 . -1129) T) ((-1019 . -346) T) ((-953 . -138) T) ((-933 . -341) T) ((-803 . -429) T) ((-876 . -265) 22942) ((-294 . -788) T) ((-291 . -788) NIL) ((-807 . -97) T) ((-654 . -25) T) ((-385 . -517) T) ((-654 . -21) T) ((-332 . -138) 22924) ((-332 . -136) T) ((-1061 . -1018) 22902) ((-430 . -662) T) ((-73 . -565) 22884) ((-110 . -788) T) ((-225 . -261) 22868) ((-220 . -981) 22766) ((-79 . -565) 22748) ((-677 . -346) 22701) ((-1089 . -769) T) ((-679 . -215) 22685) ((-1073 . -1125) T) ((-132 . -215) 22667) ((-220 . -107) 22558) ((-1144 . -659) 22387) ((-47 . -138) T) ((-804 . -160) T) ((-793 . -659) 22357) ((-459 . -1125) T) ((-885 . -486) 22304) ((-598 . -668) T) ((-532 . -659) 22291) ((-963 . -982) T) ((-457 . -486) 22234) ((-876 . -19) 22218) ((-876 . -558) 22195) ((-757 . -566) NIL) ((-757 . -565) 22177) ((-934 . -981) 22127) ((-391 . -565) 22109) ((-230 . -265) 22086) ((-229 . -265) 22063) ((-462 . -842) NIL) ((-294 . -29) 22033) ((-103 . -1125) T) ((-933 . -1030) T) ((-198 . -842) NIL) ((-847 . -981) 21985) ((-1001 . -966) 21883) ((-934 . -107) 21817) ((-243 . -211) 21801) ((-679 . -636) 21785) ((-405 . -981) 21769) ((-357 . -982) T) ((-933 . -23) T) ((-847 . -107) 21707) ((-635 . -1114) NIL) ((-462 . -593) 21657) ((-103 . -817) 21639) ((-103 . -819) 21621) ((-635 . -1111) NIL) ((-198 . -593) 21571) ((-337 . -966) 21555) ((-331 . -966) 21539) ((-305 . -288) 21477) ((-323 . -966) 21461) ((-205 . -269) T) ((-405 . -107) 21440) ((-58 . -565) 21372) ((-157 . -160) T) ((-1036 . -788) T) ((-103 . -966) 21332) ((-825 . -1018) T) ((-775 . -982) T) ((-768 . -982) T) ((-635 . -34) NIL) ((-635 . -91) NIL) ((-291 . -923) 21293) ((-537 . -429) T) ((-525 . -429) T) ((-468 . -429) T) ((-385 . -341) T) ((-220 . -975) 21224) ((-1064 . -33) T) ((-454 . -853) T) ((-929 . -587) 21172) ((-230 . -558) 21149) ((-229 . -558) 21126) ((-1001 . -355) 21110) ((-804 . -486) 21018) ((-220 . -213) 20971) ((-1072 . -1125) T) ((-765 . -565) 20953) ((-1192 . -1030) T) ((-1184 . -565) 20935) ((-1144 . -160) 20826) ((-103 . -355) 20808) ((-103 . -316) 20790) ((-986 . -269) T) ((-885 . -269) 20721) ((-740 . -346) 20700) ((-592 . -1125) T) ((-580 . -1125) T) ((-457 . -269) 20631) ((-532 . -160) T) ((-305 . -261) 20615) ((-1192 . -23) T) ((-1120 . -97) T) ((-1107 . -1018) T) ((-1008 . -1018) T) ((-997 . -1018) T) ((-81 . -565) 20597) ((-653 . -97) T) ((-333 . -327) 20576) ((-560 . -1018) T) ((-330 . -327) 20555) ((-322 . -327) 20534) ((-452 . -1018) T) ((-1099 . -209) 20484) ((-243 . -232) 20446) ((-1056 . -126) T) ((-560 . -562) 20422) ((-1001 . -833) 20355) ((-934 . -975) T) ((-847 . -975) T) ((-452 . -562) 20334) ((-1080 . -733) NIL) ((-1080 . -736) NIL) ((-1020 . -566) 20295) ((-455 . -209) 20245) ((-1020 . -565) 20227) ((-934 . -223) T) ((-934 . -213) T) ((-405 . -975) T) ((-890 . -1018) 20177) ((-847 . -223) T) ((-799 . -126) T) ((-640 . -429) T) ((-781 . -1030) 20156) ((-103 . -833) NIL) ((-1120 . -263) 20122) ((-805 . -786) 20101) ((-1031 . -1125) T) ((-838 . -668) T) ((-157 . -486) 20013) ((-929 . -25) T) ((-838 . -450) T) ((-385 . -1030) T) ((-462 . -735) T) ((-462 . -732) T) ((-843 . -327) T) ((-462 . -668) T) ((-198 . -735) T) ((-198 . -732) T) ((-929 . -21) T) ((-198 . -668) T) ((-781 . -23) 19965) ((-297 . -286) 19944) ((-964 . -215) 19890) ((-385 . -23) T) ((-876 . -566) 19851) ((-876 . -565) 19763) ((-591 . -464) 19747) ((-44 . -940) 19697) ((-309 . -565) 19679) ((-1031 . -966) 19508) ((-548 . -596) 19490) ((-548 . -351) 19472) ((-321 . -1178) 19449) ((-956 . -1125) T) ((-804 . -269) T) ((-1144 . -486) 19396) ((-453 . -1125) T) ((-440 . -1125) T) ((-542 . -97) T) ((-1085 . -265) 19323) ((-572 . -429) 19302) ((-930 . -925) 19286) ((-1184 . -360) 19258) ((-113 . -429) T) ((-1106 . -97) T) ((-1011 . -1018) 19236) ((-963 . -1018) T) ((-826 . -788) T) ((-329 . -1129) T) ((-1163 . -981) 19119) ((-1031 . -355) 19089) ((-1156 . -981) 18924) ((-1135 . -981) 18714) ((-1163 . -107) 18583) ((-1156 . -107) 18404) ((-1135 . -107) 18173) ((-1120 . -288) 18160) ((-329 . -517) T) ((-343 . -565) 18142) ((-268 . -286) T) ((-551 . -981) 18115) ((-550 . -981) 17998) ((-339 . -1018) T) ((-300 . -1018) T) ((-230 . -565) 17959) ((-229 . -565) 17920) ((-933 . -126) T) ((-105 . -565) 17902) ((-583 . -23) T) ((-635 . -387) 17869) ((-559 . -23) T) ((-603 . -97) T) ((-551 . -107) 17840) ((-550 . -107) 17709) ((-357 . -1018) T) ((-314 . -97) T) ((-157 . -269) 17620) ((-1134 . -786) 17573) ((-656 . -982) T) ((-1061 . -486) 17506) ((-1031 . -833) 17439) ((-775 . -1018) T) ((-768 . -1018) T) ((-766 . -1018) T) ((-92 . -97) T) ((-135 . -788) T) ((-564 . -817) 17423) ((-106 . -1125) T) ((-1007 . -97) T) ((-987 . -33) T) ((-723 . -97) T) ((-721 . -97) T) ((-438 . -97) T) ((-431 . -97) T) ((-220 . -736) 17374) ((-220 . -733) 17325) ((-594 . -97) T) ((-1144 . -269) 17236) ((-609 . -582) 17220) ((-591 . -265) 17197) ((-963 . -659) 17181) ((-532 . -269) T) ((-895 . -593) 17106) ((-1192 . -126) T) ((-677 . -593) 17066) ((-657 . -593) 17053) ((-254 . -97) T) ((-430 . -593) 16983) ((-49 . -97) T) ((-538 . -97) T) ((-489 . -97) T) ((-1163 . -975) T) ((-1156 . -975) T) ((-1135 . -975) T) ((-1163 . -213) 16942) ((-300 . -659) 16924) ((-1156 . -223) 16903) ((-1156 . -213) 16855) ((-1135 . -213) 16742) ((-1135 . -223) 16721) ((-1120 . -37) 16618) ((-934 . -736) T) ((-551 . -975) T) ((-550 . -975) T) ((-934 . -733) T) ((-902 . -736) T) ((-902 . -733) T) ((-805 . -982) T) ((-803 . -802) 16602) ((-104 . -565) 16584) ((-635 . -429) T) ((-357 . -659) 16549) ((-396 . -593) 16523) ((-654 . -788) 16502) ((-653 . -37) 16467) ((-550 . -213) 16426) ((-39 . -666) 16398) ((-329 . -307) 16375) ((-329 . -341) T) ((-1001 . -286) 16326) ((-273 . -1030) 16208) ((-1024 . -1125) T) ((-159 . -97) T) ((-1138 . -565) 16175) ((-781 . -126) 16127) ((-591 . -1159) 16111) ((-775 . -659) 16081) ((-768 . -659) 16051) ((-458 . -1125) T) ((-337 . -286) T) ((-331 . -286) T) ((-323 . -286) T) ((-591 . -558) 16028) ((-385 . -126) T) ((-491 . -611) 16012) ((-103 . -286) T) ((-273 . -23) 15896) ((-491 . -596) 15880) ((-635 . -380) NIL) ((-491 . -351) 15864) ((-270 . -565) 15846) ((-89 . -1018) 15824) ((-103 . -951) T) ((-525 . -134) T) ((-1171 . -142) 15808) ((-458 . -966) 15637) ((-1157 . -136) 15598) ((-1157 . -138) 15559) ((-979 . -1125) T) ((-924 . -565) 15541) ((-796 . -565) 15523) ((-757 . -981) 15366) ((-1007 . -288) 15353) ((-207 . -1125) T) ((-723 . -288) 15340) ((-721 . -288) 15327) ((-757 . -107) 15156) ((-431 . -288) 15143) ((-1085 . -566) NIL) ((-1085 . -565) 15125) ((-1041 . -565) 15107) ((-1041 . -566) 14855) ((-963 . -160) T) ((-792 . -565) 14837) ((-876 . -267) 14814) ((-560 . -486) 14597) ((-759 . -966) 14581) ((-452 . -486) 14373) ((-895 . -668) T) ((-677 . -668) T) ((-657 . -668) T) ((-329 . -1030) T) ((-1092 . -565) 14355) ((-203 . -97) T) ((-458 . -355) 14325) ((-487 . -1018) T) ((-482 . -1018) T) ((-480 . -1018) T) ((-740 . -593) 14299) ((-953 . -429) T) ((-890 . -486) 14232) ((-329 . -23) T) ((-583 . -126) T) ((-559 . -126) T) ((-332 . -429) T) ((-220 . -346) 14211) ((-357 . -160) T) ((-1155 . -982) T) ((-1134 . -982) T) ((-205 . -932) T) ((-640 . -365) T) ((-396 . -668) T) ((-642 . -1129) T) ((-1056 . -587) 14159) ((-537 . -802) 14143) ((-1073 . -1102) 14119) ((-642 . -517) T) ((-122 . -1018) 14097) ((-1184 . -981) 14081) ((-656 . -1018) T) ((-458 . -833) 14014) ((-603 . -37) 13984) ((-332 . -380) T) ((-294 . -138) 13963) ((-294 . -136) 13942) ((-112 . -517) T) ((-291 . -138) 13898) ((-291 . -136) 13854) ((-47 . -429) T) ((-150 . -1018) T) ((-146 . -1018) T) ((-1073 . -102) 13801) ((-723 . -1065) 13779) ((-631 . -33) T) ((-1184 . -107) 13758) ((-511 . -33) T) ((-459 . -102) 13742) ((-230 . -267) 13719) ((-229 . -267) 13696) ((-804 . -265) 13647) ((-44 . -1125) T) ((-757 . -975) T) ((-1091 . -46) 13624) ((-757 . -304) 13586) ((-1007 . -37) 13435) ((-757 . -213) 13414) ((-723 . -37) 13243) ((-721 . -37) 13092) ((-124 . -596) 13074) ((-431 . -37) 12923) ((-124 . -351) 12905) ((-591 . -566) 12866) ((-591 . -565) 12778) ((-538 . -1065) T) ((-489 . -1065) T) ((-1061 . -464) 12762) ((-1112 . -1018) 12740) ((-1056 . -25) T) ((-1056 . -21) T) ((-451 . -982) T) ((-1135 . -733) NIL) ((-1135 . -736) NIL) ((-929 . -788) 12719) ((-760 . -565) 12701) ((-799 . -21) T) ((-799 . -25) T) ((-740 . -668) T) ((-161 . -1129) T) ((-538 . -37) 12666) ((-489 . -37) 12631) ((-364 . -565) 12613) ((-302 . -565) 12595) ((-157 . -265) 12553) ((-61 . -1125) T) ((-108 . -97) T) ((-805 . -1018) T) ((-161 . -517) T) ((-656 . -659) 12523) ((-273 . -126) 12407) ((-205 . -565) 12389) ((-205 . -566) 12319) ((-933 . -587) 12258) ((-1184 . -975) T) ((-1036 . -138) T) ((-580 . -1102) 12233) ((-673 . -842) 12212) ((-548 . -33) T) ((-592 . -102) 12196) ((-580 . -102) 12142) ((-1144 . -265) 12069) ((-673 . -593) 11994) ((-274 . -1125) T) ((-1091 . -966) 11892) ((-1080 . -842) NIL) ((-986 . -566) 11807) ((-986 . -565) 11789) ((-321 . -97) T) ((-229 . -981) 11687) ((-230 . -981) 11585) ((-372 . -97) T) ((-885 . -565) 11567) ((-885 . -566) 11428) ((-655 . -565) 11410) ((-1182 . -1119) 11379) ((-457 . -565) 11361) ((-457 . -566) 11222) ((-227 . -389) 11206) ((-243 . -389) 11190) ((-229 . -107) 11081) ((-230 . -107) 10972) ((-1087 . -593) 10897) ((-1086 . -593) 10794) ((-1080 . -593) 10646) ((-1042 . -593) 10571) ((-329 . -126) T) ((-80 . -418) T) ((-80 . -373) T) ((-933 . -25) T) ((-933 . -21) T) ((-806 . -1018) 10522) ((-805 . -659) 10474) ((-357 . -269) T) ((-157 . -932) 10426) ((-635 . -365) T) ((-929 . -927) 10410) ((-642 . -1030) T) ((-635 . -154) 10392) ((-1155 . -1018) T) ((-1134 . -1018) T) ((-294 . -1111) 10371) ((-294 . -1114) 10350) ((-1078 . -97) T) ((-294 . -891) 10329) ((-128 . -1030) T) ((-112 . -1030) T) ((-556 . -1169) 10313) ((-642 . -23) T) ((-556 . -1018) 10263) ((-89 . -486) 10196) ((-161 . -341) T) ((-294 . -91) 10175) ((-294 . -34) 10154) ((-560 . -464) 10088) ((-128 . -23) T) ((-112 . -23) T) ((-660 . -1018) T) ((-452 . -464) 10025) ((-385 . -587) 9973) ((-598 . -966) 9871) ((-890 . -464) 9855) ((-333 . -982) T) ((-330 . -982) T) ((-322 . -982) T) ((-243 . -982) T) ((-227 . -982) T) ((-804 . -566) NIL) ((-804 . -565) 9837) ((-1192 . -21) T) ((-532 . -932) T) ((-673 . -668) T) ((-1192 . -25) T) ((-230 . -975) 9768) ((-229 . -975) 9699) ((-70 . -1125) T) ((-230 . -213) 9652) ((-229 . -213) 9605) ((-39 . -97) T) ((-843 . -982) T) ((-1094 . -97) T) ((-1087 . -668) T) ((-1086 . -668) T) ((-1080 . -668) T) ((-1080 . -732) NIL) ((-1080 . -735) NIL) ((-854 . -97) T) ((-1042 . -668) T) ((-712 . -97) T) ((-616 . -97) T) ((-451 . -1018) T) ((-317 . -1030) T) ((-161 . -1030) T) ((-297 . -853) 9584) ((-1155 . -659) 9425) ((-805 . -160) T) ((-1134 . -659) 9239) ((-781 . -21) 9191) ((-781 . -25) 9143) ((-225 . -1063) 9127) ((-122 . -486) 9060) ((-385 . -25) T) ((-385 . -21) T) ((-317 . -23) T) ((-157 . -565) 9042) ((-157 . -566) 8810) ((-161 . -23) T) ((-591 . -267) 8787) ((-491 . -33) T) ((-831 . -565) 8769) ((-87 . -1125) T) ((-779 . -565) 8751) ((-749 . -565) 8733) ((-710 . -565) 8715) ((-620 . -565) 8697) ((-220 . -593) 8547) ((-1089 . -1018) T) ((-1085 . -981) 8370) ((-1064 . -1125) T) ((-1041 . -981) 8213) ((-792 . -981) 8197) ((-1085 . -107) 8006) ((-1041 . -107) 7835) ((-792 . -107) 7814) ((-1144 . -566) NIL) ((-1144 . -565) 7796) ((-321 . -1065) T) ((-793 . -565) 7778) ((-997 . -265) 7757) ((-78 . -1125) T) ((-934 . -842) NIL) ((-560 . -265) 7733) ((-1112 . -486) 7666) ((-462 . -1125) T) ((-532 . -565) 7648) ((-452 . -265) 7627) ((-198 . -1125) T) ((-1007 . -211) 7611) ((-268 . -853) T) ((-758 . -286) 7590) ((-803 . -97) T) ((-723 . -211) 7574) ((-934 . -593) 7524) ((-890 . -265) 7501) ((-847 . -593) 7453) ((-583 . -21) T) ((-583 . -25) T) ((-559 . -21) T) ((-321 . -37) 7418) ((-635 . -666) 7385) ((-462 . -817) 7367) ((-462 . -819) 7349) ((-451 . -659) 7190) ((-198 . -817) 7172) ((-62 . -1125) T) ((-198 . -819) 7154) ((-559 . -25) T) ((-405 . -593) 7128) ((-462 . -966) 7088) ((-805 . -486) 7000) ((-198 . -966) 6960) ((-220 . -33) T) ((-930 . -1018) 6938) ((-1155 . -160) 6869) ((-1134 . -160) 6800) ((-654 . -136) 6779) ((-654 . -138) 6758) ((-642 . -126) T) ((-130 . -442) 6735) ((-603 . -601) 6719) ((-1061 . -565) 6651) ((-112 . -126) T) ((-454 . -1129) T) ((-560 . -558) 6627) ((-452 . -558) 6606) ((-314 . -313) 6575) ((-501 . -1018) T) ((-454 . -517) T) ((-1085 . -975) T) ((-1041 . -975) T) ((-792 . -975) T) ((-220 . -732) 6554) ((-220 . -735) 6505) ((-220 . -734) 6484) ((-1085 . -304) 6461) ((-220 . -668) 6392) ((-890 . -19) 6376) ((-462 . -355) 6358) ((-462 . -316) 6340) ((-1041 . -304) 6312) ((-332 . -1178) 6289) ((-198 . -355) 6271) ((-198 . -316) 6253) ((-890 . -558) 6230) ((-1085 . -213) T) ((-609 . -1018) T) ((-1167 . -1018) T) ((-1099 . -1018) T) ((-1007 . -232) 6167) ((-333 . -1018) T) ((-330 . -1018) T) ((-322 . -1018) T) ((-243 . -1018) T) ((-227 . -1018) T) ((-82 . -1125) T) ((-123 . -97) 6145) ((-117 . -97) 6123) ((-124 . -33) T) ((-1099 . -562) 6102) ((-455 . -1018) T) ((-1055 . -1018) T) ((-455 . -562) 6081) ((-230 . -736) 6032) ((-230 . -733) 5983) ((-229 . -736) 5934) ((-39 . -1065) NIL) ((-229 . -733) 5885) ((-1001 . -853) 5836) ((-934 . -735) T) ((-934 . -732) T) ((-934 . -668) T) ((-902 . -735) T) ((-847 . -668) T) ((-89 . -464) 5820) ((-462 . -833) NIL) ((-843 . -1018) T) ((-205 . -981) 5785) ((-805 . -269) T) ((-198 . -833) NIL) ((-774 . -1030) 5764) ((-57 . -1018) 5714) ((-490 . -1018) 5692) ((-488 . -1018) 5642) ((-470 . -1018) 5620) ((-469 . -1018) 5570) ((-537 . -97) T) ((-525 . -97) T) ((-468 . -97) T) ((-451 . -160) 5501) ((-337 . -853) T) ((-331 . -853) T) ((-323 . -853) T) ((-205 . -107) 5457) ((-774 . -23) 5409) ((-405 . -668) T) ((-103 . -853) T) ((-39 . -37) 5354) ((-103 . -761) T) ((-538 . -327) T) ((-489 . -327) T) ((-1134 . -486) 5214) ((-294 . -429) 5193) ((-291 . -429) T) ((-775 . -265) 5172) ((-317 . -126) T) ((-161 . -126) T) ((-273 . -25) 5037) ((-273 . -21) 4921) ((-44 . -1102) 4900) ((-64 . -565) 4882) ((-825 . -565) 4864) ((-556 . -486) 4797) ((-44 . -102) 4747) ((-1020 . -403) 4731) ((-1020 . -346) 4710) ((-987 . -1125) T) ((-986 . -981) 4697) ((-885 . -981) 4540) ((-457 . -981) 4383) ((-609 . -659) 4367) ((-986 . -107) 4352) ((-885 . -107) 4181) ((-454 . -341) T) ((-333 . -659) 4133) ((-330 . -659) 4085) ((-322 . -659) 4037) ((-243 . -659) 3886) ((-227 . -659) 3735) ((-876 . -596) 3719) ((-457 . -107) 3548) ((-1172 . -97) T) ((-876 . -351) 3532) ((-1135 . -842) NIL) ((-72 . -565) 3514) ((-895 . -46) 3493) ((-570 . -1030) T) ((-1 . -1018) T) ((-652 . -97) T) ((-640 . -97) T) ((-1171 . -97) 3443) ((-1163 . -593) 3368) ((-1156 . -593) 3265) ((-122 . -464) 3249) ((-1107 . -565) 3231) ((-1008 . -565) 3213) ((-368 . -23) T) ((-997 . -565) 3195) ((-85 . -1125) T) ((-1135 . -593) 3047) ((-843 . -659) 3012) ((-570 . -23) T) ((-560 . -565) 2994) ((-560 . -566) NIL) ((-452 . -566) NIL) ((-452 . -565) 2976) ((-483 . -1018) T) ((-479 . -1018) T) ((-329 . -25) T) ((-329 . -21) T) ((-123 . -288) 2914) ((-117 . -288) 2852) ((-551 . -593) 2839) ((-205 . -975) T) ((-550 . -593) 2764) ((-357 . -932) T) ((-205 . -223) T) ((-205 . -213) T) ((-890 . -566) 2725) ((-890 . -565) 2637) ((-803 . -37) 2624) ((-1155 . -269) 2575) ((-1134 . -269) 2526) ((-1036 . -429) T) ((-475 . -788) T) ((-294 . -1053) 2505) ((-929 . -138) 2484) ((-929 . -136) 2463) ((-468 . -288) 2450) ((-274 . -1102) 2429) ((-454 . -1030) T) ((-804 . -981) 2374) ((-572 . -97) T) ((-1112 . -464) 2358) ((-230 . -346) 2337) ((-229 . -346) 2316) ((-274 . -102) 2266) ((-986 . -975) T) ((-113 . -97) T) ((-885 . -975) T) ((-804 . -107) 2195) ((-454 . -23) T) ((-457 . -975) T) ((-986 . -213) T) ((-885 . -304) 2164) ((-457 . -304) 2121) ((-333 . -160) T) ((-330 . -160) T) ((-322 . -160) T) ((-243 . -160) 2032) ((-227 . -160) 1943) ((-895 . -966) 1841) ((-677 . -966) 1812) ((-1023 . -97) T) ((-1011 . -565) 1779) ((-963 . -565) 1761) ((-1163 . -668) T) ((-1156 . -668) T) ((-1135 . -732) NIL) ((-157 . -981) 1671) ((-1135 . -735) NIL) ((-843 . -160) T) ((-1135 . -668) T) ((-1182 . -142) 1655) ((-933 . -320) 1629) ((-930 . -486) 1562) ((-781 . -788) 1541) ((-525 . -1065) T) ((-451 . -269) 1492) ((-551 . -668) T) ((-339 . -565) 1474) ((-300 . -565) 1456) ((-396 . -966) 1354) ((-550 . -668) T) ((-385 . -788) 1305) ((-157 . -107) 1201) ((-774 . -126) 1153) ((-679 . -142) 1137) ((-1171 . -288) 1075) ((-462 . -286) T) ((-357 . -565) 1042) ((-491 . -940) 1026) ((-357 . -566) 940) ((-198 . -286) T) ((-132 . -142) 922) ((-656 . -265) 901) ((-462 . -951) T) ((-537 . -37) 888) ((-525 . -37) 875) ((-468 . -37) 840) ((-198 . -951) T) ((-804 . -975) T) ((-775 . -565) 822) ((-768 . -565) 804) ((-766 . -565) 786) ((-757 . -842) 765) ((-1193 . -1030) T) ((-1144 . -981) 588) ((-793 . -981) 572) ((-804 . -223) T) ((-804 . -213) NIL) ((-631 . -1125) T) ((-1193 . -23) T) ((-757 . -593) 497) ((-511 . -1125) T) ((-396 . -316) 481) ((-532 . -981) 468) ((-1144 . -107) 277) ((-642 . -587) 259) ((-793 . -107) 238) ((-359 . -23) T) ((-1099 . -486) 30)) \ No newline at end of file
diff --git a/src/share/algebra/compress.daase b/src/share/algebra/compress.daase
index 18141eb1..d18ff84e 100644
--- a/src/share/algebra/compress.daase
+++ b/src/share/algebra/compress.daase
@@ -1,6 +1,6 @@
-(30 . 3417125207)
-(4251 |Enumeration| |Mapping| |Record| |Union| |ofCategory| |isDomain|
+(30 . 3417777695)
+(4253 |Enumeration| |Mapping| |Record| |Union| |ofCategory| |isDomain|
ATTRIBUTE |package| |domain| |category| CATEGORY |nobranch| AND |Join|
|ofType| SIGNATURE "failed" "algebra" |OneDimensionalArrayAggregate&|
|OneDimensionalArrayAggregate| |AbelianGroup&| |AbelianGroup|
@@ -33,9 +33,9 @@
|BinaryRecursiveAggregate&| |BinaryRecursiveAggregate|
|BrillhartTests| |BinarySearchTree| |BitAggregate&| |BitAggregate|
|BinaryTreeCategory&| |BinaryTreeCategory| |BinaryTournament|
- |BinaryTree| |CancellationAbelianMonoid| |CachableSet|
- |CardinalNumber| |CartesianTensorFunctions2| |CartesianTensor|
- |Category| |CharacterClass| |CommonDenominator|
+ |BinaryTree| |ByteArray| |Byte| |CancellationAbelianMonoid|
+ |CachableSet| |CardinalNumber| |CartesianTensorFunctions2|
+ |CartesianTensor| |Category| |CharacterClass| |CommonDenominator|
|CombinatorialFunctionCategory| |Character| |CharacteristicNonZero|
|CharacteristicPolynomialPackage| |CharacteristicZero|
|ChangeOfVariable| |ComplexIntegerSolveLinearPolynomialEquation|
@@ -460,652 +460,649 @@
|XPolynomialRing| |XRecursivePolynomial|
|ParadoxicalCombinatorsForStreams| |ZeroDimensionalSolvePackage|
|IntegerLinearDependence| |IntegerMod| |Enumeration| |Mapping|
- |Record| |Union| |primitive?| |d02ejf| |coordinate| |cSinh|
- |withPredicates| |setRow!| |bivariateSLPEBR| |duplicates| |quadratic?|
- |inverseIntegralMatrixAtInfinity|
- |solveLinearPolynomialEquationByFractions| |leadingBasisTerm| |jacobi|
- |iidsum| |overbar| |bipolar| |beauzamyBound| |fglmIfCan|
- |evaluateInverse| |minColIndex| |totalDifferential| |match?| |notelem|
- |primintegrate| |mkAnswer| |OMcloseConn| |c05adf| |divide| |cond|
- |bivariate?| |palgint0| |hclf| |linear?| |normDeriv2| |coefficient|
- |mathieu22| |d01aqf| |width| |f04atf| |indiceSubResultantEuclidean|
- |separateDegrees| |real?| |leftDiscriminant| |s17ahf|
- |numberOfComponents| |bag| |curve| |univariatePolynomial|
- |leastMonomial| |resultantReduit| |floor| |exprHasLogarithmicWeights|
- |generate| |largest| |scale| |weight| |satisfy?| |tanIfCan| |rootsOf|
- |logGamma| |ricDsolve| |module| |df2mf| |selectODEIVPRoutines|
- |resetBadValues| |mesh| |incrementBy| |OMopenFile| |OMencodingXML|
- |sortConstraints| |abelianGroup| |#| |lyndonIfCan| |determinant|
- |zeroDim?| |optional| |expand| |checkRur| |besselI| |jordanAlgebra?|
- |discriminantEuclidean| |sin2csc| |leadingIdeal| |factor1|
- |filterWhile| |degreePartition| |weighted| |LiePolyIfCan| |vectorise|
- |nextItem| |leftQuotient| |filterUntil| |leftCharacteristicPolynomial|
- |binary| |fortranTypeOf| |setnext!|
- |dimensionOfIrreducibleRepresentation| |biRank| |choosemon| |select|
- |f04asf| |power| |readIfCan!| |logical?| |varList| |primlimintfrac|
- |groebSolve| |paraboloidal| |conjugate| |loopPoints| |rational?|
- |factorList| |denomRicDE| |algDsolve| |delete!| |nthRootIfCan|
- |simplifyExp| |makeGraphImage| |collectUnder| |nextsubResultant2|
- |exp1| |mathieu12| |extract!| |super| |nthRoot| |vark| |forLoop|
- |screenResolution| |rationalApproximation| |rule| |prime?|
- |factorsOfDegree| |coerceL| |SturmHabicht| |f04adf| |graphImage|
- |laplacian| |secIfCan| |categoryFrame| |functionIsFracPolynomial?|
- |bfKeys| |iisec| |makeRecord| |dimensionsOf| |more?| |reduction|
- |testDim| |factorset| |member?| |eval| |contains?| |s18def|
- |patternMatchTimes| |monicDivide| |cAsec| |sinhIfCan| |scaleRoots|
- |plot| RF2UTS |upDateBranches| |controlPanel| |extend|
- |setScreenResolution3D| |associative?| |hconcat| |pseudoRemainder|
- |removeSinSq| |tubeRadius| |extractIndex| |createNormalPoly|
- |scalarMatrix| |expIfCan| |string?| |ran| |approxNthRoot|
- |FormatArabic| |getOperator| |pair| |nodes| |factorFraction| |split|
- |e01saf| |Hausdorff| |nextSubsetGray| |d02raf| |acosIfCan| |e01bef|
- |supDimElseRittWu?| |c06fuf| |repeating| |Aleph| |relerror|
- |minRowIndex| |leftMinimalPolynomial| |readable?| |alphanumeric?|
- |checkForZero| |randomR| |factorSquareFree| |lazyIntegrate|
- |interpretString| |null| |normalizeAtInfinity| |doublyTransitive?|
- |leftExtendedGcd| |s21bdf| |viewDeltaYDefault| |append| |plus|
- |setStatus!| |entry?| |parent| |squareFreeLexTriangular| |firstDenom|
- |createGenericMatrix| |case| |tanSum| |setFormula!| |cSin|
- |primeFrobenius| |fTable| |brillhartIrreducible?|
- |internalSubQuasiComponent?| |curveColorPalette| |iiacosh| |t|
- |numberOfChildren| |rectangularMatrix| |Zero| |OMUnknownSymbol?|
- |zeroMatrix| |nil?| |cCoth| |f01brf| |e02bbf| |charClass|
- |branchIfCan| |realEigenvalues| |generalInfiniteProduct| |tanh2trigh|
- |One| |stoseInvertible?reg| |linkToFortran| |unparse| |OMsupportsCD?|
- |printingInfo?| |invertibleElseSplit?| |assign| |leftMult|
- |setAdaptive3D| |leastAffineMultiple| |divideExponents|
- |internalZeroSetSplit| |OMgetEndError| |infRittWu?| |fortranInteger|
- |se2rfi| |d01alf| |genericRightTrace| |times| |findBinding| |credPol|
- |element?| |measure2Result| |contours| |iroot| |jordanAdmissible?|
- |associatedEquations| |binarySearchTree| |hex| |message|
- |hasPredicate?| |c05pbf| |rootSplit| |e02def| |binomial| |directSum|
- |OMputVariable| |cTan| |coerceS| |d02cjf| |increment| |refine|
- |rightFactorIfCan| |realElementary| |c06gbf| |s14abf| |degree|
- |rdregime| |makeSUP| |factorOfDegree| |solveLinear| |denomLODE|
- |numerators| |anticoord| |ramifiedAtInfinity?| |fortranLogical|
- |linearMatrix| |listLoops| |subMatrix| |order| |atom?| |elt|
- |linearlyDependent?| |recur| |any?| |quoByVar| |nonLinearPart|
- |strongGenerators| |getVariableOrder| |weierstrass| |monom|
- |laurentIfCan| |OMputBVar| |OMgetAttr| |antisymmetricTensors|
- |ceiling| |rename| |createPrimitiveNormalPoly| |leftAlternative?|
- |over| |schema| |name| |lighting| |ScanRoman| |pointData| |presuper|
- |rightExactQuotient| |chainSubResultants| |packageCall|
- |selectFiniteRoutines| |iiabs| |char| |bitTruth| |pascalTriangle|
- |child| |palgextint| |OMgetAtp| |cLog| |basisOfRightNucloid|
- |setScreenResolution| |quadraticForm| |expandLog| |yCoord| |shiftLeft|
- |permutationRepresentation| |iiacsc| |numberOfPrimitivePoly|
- |character?| |prod| |setClosed| |indicialEquations| |edf2ef| |common|
- |createThreeSpace| |nodeOf?| |realSolve| |mapDown!| |cAsinh|
- |cosh2sech| |reify| |rowEchelon| |mapCoef| |rightUnits| |operator|
- |float| |zeroSquareMatrix| |removeSquaresIfCan|
- |ScanFloatIgnoreSpaces| |singRicDE| |graphState| |makeSeries|
- |closed?| |linearAssociatedOrder| |iflist2Result| |f07fef| |deriv|
- |f02abf| |hasTopPredicate?| |pseudoDivide| |nthr| |times!| |sdf2lst|
- |splitNodeOf!| |OMgetApp| |orbits| |scan| |orbit| |setButtonValue|
- |listRepresentation| |reopen!| |multisect| |cCsch| |lowerCase!|
- |f02adf| |setProperties| |cardinality| |jacobiIdentity?| |Is|
- |exptMod| |rational| |drawComplexVectorField| |f02aff| |f02ajf|
- |makeYoungTableau| |deleteRoutine!| |characteristicPolynomial|
- |noKaratsuba| |fortranLiteralLine| |integers| |imagJ| |augment| |keys|
- |perspective| |s15aef| |getBadValues| |triangularSystems| |myDegree|
- |nextSublist| |roughUnitIdeal?| |iitanh| |operation| |concat!|
- |OMputString| |Lazard| |intersect| |karatsuba| |curve?| |OMgetFloat|
- |position!| |ode1| |numberOfDivisors| |stFunc1|
- |unrankImproperPartitions1| |tab| |cAsin| |algebraicSort|
- |getOperands| |useNagFunctions| |coefficients| |sample| |palgint|
- |printCode| |primintfldpoly| |fillPascalTriangle| |companionBlocks|
- |partialNumerators| |makeVariable| |asechIfCan| |minGbasis| |rspace|
- |belong?| |null?| |makeCos| |addMatchRestricted| |meshFun2Var|
- |minset| |setleft!| |cAcsch| |transpose| |pointPlot|
- |internalSubPolSet?| |stoseLastSubResultant| |clearTheSymbolTable|
- |palglimint0| |lagrange| |swap!| |d03eef| |vconcat| |predicates|
- |partialFraction| |dequeue!| GE |mightHaveRoots| |iibinom| |iisqrt3|
- |sayLength| |ldf2vmf| |e02ahf| |psolve| |acoshIfCan| |cycleElt|
- |lexGroebner| |curveColor| |makeSin| |setStatus| GT |associatedSystem|
- |lflimitedint| |initializeGroupForWordProblem| |singular?|
- |toseInvertibleSet| |Si| |lazyPseudoRemainder| |invmod| |sparsityIF|
- |viewpoint| |ptFunc| |characteristic| |linearPart| LE
- |eisensteinIrreducible?| |partitions| |differentialVariables|
- |extension| |delay| |exprToXXP| |cross| |trigs2explogs|
- |resetAttributeButtons| |elementary| |traceMatrix| |s20acf|
- |matrixGcd| LT |ddFact| |uncouplingMatrices| |droot|
- |derivationCoordinates| |wordsForStrongGenerators| |outputSpacing|
- |useSingleFactorBound?| |palgLODE0| |ravel| |alphabetic?|
- |getProperties| |nextLatticePermutation| |ratDenom| |initiallyReduce|
- |quotientByP| |lp| |deref| |Frobenius| |trace2PowMod| |coleman|
- |s19acf| |showTheIFTable| |basisOfCommutingElements| |cotIfCan|
- |reshape| |sts2stst| |createIrreduciblePoly| |c06fpf| |var1Steps|
- |fortran| |factorSFBRlcUnit| |submod| |eq| |resultantEuclidean| |ord|
- |sizePascalTriangle| |approximants| |semiResultantReduitEuclidean|
- |updatF| |integralLastSubResultant| |OMlistCDs| |truncate| |s17dlf|
- |aspFilename| |quasiMonic?| |saturate| |iter| |evenInfiniteProduct|
- |factorial| |getMultiplicationTable| |pointLists| |realEigenvectors|
- |symmetricDifference| |goodPoint| |safetyMargin| |leastPower|
- |dictionary| |rightDiscriminant| |sup| |diagonals| |constDsolve|
- |ListOfTerms| |integral| |basisOfCentroid| |iiasech| |unravel|
- |dihedral| |cn| |chiSquare| |setCondition!| |e02aef| |eulerE|
- |leftGcd| |sncndn| |euclideanNormalForm| |doubleResultant| |imagE|
- |complexLimit| |bracket| |nthFlag| |particularSolution|
- |explicitEntries?| |minPoints| |minIndex| |htrigs|
- |clearFortranOutputStack| |boundOfCauchy| |OMgetString| |coefChoose|
- |simplify| |minimize| |infinite?| |decimal| |monomialIntegrate|
- |expintegrate| |update| |outputArgs| |selectSumOfSquaresRoutines|
- |changeMeasure| |clearCache| |s15adf| |lift| |rischNormalize| |list?|
- |setClipValue| |cyclicEntries| |mapUp!| |s21bbf| |csch2sinh|
- |aQuadratic| |createMultiplicationTable| |ScanFloatIgnoreSpacesIfCan|
- |createNormalPrimitivePoly| |gradient| |representationType| |reduce|
- |hasHi| |parabolicCylindrical| |close!| |e02agf| |dark| |divideIfCan|
- |subTriSet?| |bipolarCylindrical| |optpair| |whileLoop|
- |commaSeparate| |associatorDependence| |function| |prime|
- |inverseIntegralMatrix| |d01akf| |exp| |s19adf| |legendreP| |polCase|
- |sqfree| |critT| |computePowers| |e04gcf| |cyclicEqual?|
- |GospersMethod| |xCoord| |arguments| |oddintegers| |moduleSum|
- |perfectSqrt| |term?| |selectPolynomials| |semiResultantEuclideannaif|
- |trim| |hasoln| |stopMusserTrials| |tracePowMod| |remove!| |leftTrace|
- |OMputAtp| |powmod| |cAcosh| |e04fdf| |isQuotient| |leftNorm|
- |critMonD1| |quatern| |dot| |horizConcat| |s21bcf| |lexTriangular|
- |monicRightFactorIfCan| |minPol| |OMconnOutDevice| |maximumExponent|
- UP2UTS |factorGroebnerBasis| |monomRDEsys| |gcdcofactprim|
- |baseRDEsys| |composites| |factorSquareFreePolynomial| |position|
- |unit| |showRegion| |fixedPoint| |addBadValue| |certainlySubVariety?|
- |OMputFloat| |schwerpunkt| |rationalPoint?| |transform| |dmp2rfi|
- |iteratedInitials| |fixPredicate| |doubleFloatFormat| |clearTable!|
- |cExp| |adjoint| |innerEigenvectors| |script| |updatD|
- |rightScalarTimes!| |algint| |headRemainder| |radicalRoots|
- |meshPar1Var| |henselFact| |f02agf| |alternating| |cAcot| |pushdown|
- |pack!| |OMputEndApp| |OMputEndError| |overlabel|
- |getSyntaxFormsFromFile| |write!| |minus!| |subHeight| |unitVector|
- |integralAtInfinity?| |extractBottom!| |plenaryPower| |retractable?|
- |lazyPremWithDefault| |csubst| |tube| |stop| |s18dcf| |height| D
- |f04qaf| |getExplanations| |groebnerFactorize| |intPatternMatch|
- |conditionsForIdempotents| |mainVariable| |quickSort| |s17aff|
- |antiCommutator| |roughBasicSet| |tex| |oblateSpheroidal| |generic|
- |setfirst!| |generalPosition| |plus!| |clearTheIFTable| |points|
- |yCoordinates| |makeop| |arrayStack| |setEmpty!| |numberOfHues|
- |bandedJacobian| |chineseRemainder| |decomposeFunc| |rightRank|
- |fortranDouble| |symbol?| |isPlus| |symbolTable| |newReduc|
- |halfExtendedResultant1| FG2F |wordInGenerators| |identification|
- |systemCommand| |d01asf| |constant| |ReduceOrder| |string|
- |cyclicSubmodule| |root?| |matrixConcat3D| |squareFreeFactors|
- |numberOfIrreduciblePoly| |linearDependenceOverZ| |double?|
- |principalIdeal| |applyRules| |balancedFactorisation|
- |functionIsContinuousAtEndPoints| |retract| |solid?| |expt| |getGraph|
- |brace| |doubleRank| |pushFortranOutputStack| |ranges|
- |primitivePart!| |multMonom| |internalDecompose| |pile| |crushedSet|
- |integralMatrixAtInfinity| |LyndonWordsList| |trivialIdeal?| |lcm|
- |f02wef| |logIfCan| |rationalFunction| |quadratic| |binding|
- |popFortranOutputStack| |OMgetEndBVar| |characteristicSerie|
- |component| |leadingSupport| |collect| |lprop| |next|
- |increasePrecision| |scalarTypeOf| |erf| |hermiteH| |expandPower|
- |normal| |column| |generalTwoFactor| |outputAsFortran| |sign|
- |eyeDistance| |rootOfIrreduciblePoly| |printInfo!| |setProperty!|
- |selectNonFiniteRoutines| |discreteLog| |mindeg| |edf2df|
- |symmetricPower| |equiv| |divisor| |LyndonCoordinates|
- |genericRightMinimalPolynomial| |f02aaf| |derivative| |newTypeLists|
- |error| |parametersOf| |universe| |fortranReal| |gcd|
- |expressIdealMember| |value| |outlineRender| |lllip| |comment| |log|
- |coord| |f02fjf| |presub| |stFuncN| |pomopo!| |cCosh| |insertMatch|
- |expintfldpoly| |compdegd| |e04mbf| |union| |assert| |asinIfCan|
- |hessian| |basisOfCenter| |symFunc| |cartesian| |digits|
- |removeRedundantFactors| |minordet| |mix| |false| |iprint| |cAtan|
- |lifting1| |taylorRep| |separant| |interpret| |cRationalPower|
- |nullary| |trueEqual| |tubePointsDefault| |reorder| |hasSolution?|
- |primitiveElement| |eigenvalues| |extractSplittingLeaf| |FormatRoman|
- |viewport3D| |maxRowIndex| |stopTableGcd!| |Nul| |squareFree|
- |numFunEvals3D| |getConstant| |square?| |f02bbf| |OMlistSymbols|
- |padicFraction| |leaves| |powerSum| |c06ecf| |unmakeSUP| |e01daf|
- |setValue!| |factorSquareFreeByRecursion| |rightMinimalPolynomial|
- |prologue| |rowEchLocal| |rarrow| |getMeasure|
- |constantToUnaryFunction| |atrapezoidal| |odd?| |sh| |midpoint|
- |limitedint| |newLine| |OMencodingUnknown| |limitedIntegrate|
- |maxIndex| |critpOrder| |sincos| |leftRemainder| |returnTypeOf|
- |leftLcm| |acschIfCan| |minimumDegree| |endSubProgram| |inc| |middle|
- |palgRDE0| |npcoef| |components| |iiatanh| |diagonalMatrix|
- |fullDisplay| |rk4| |stoseSquareFreePart| |headReduced?| |lyndon?|
- |e02bef| |complexZeros| |addPointLast| |updateStatus!| |e02akf|
- |univariatePolynomials| |computeBasis| |nonSingularModel| |directory|
- |linearAssociatedExp| |numer| |leftPower| |euler| |rootOf| |asimpson|
- |iiacos| |symmetricProduct| |denom| |mainCoefficients| |stirling1|
- |returns| |gbasis| |wordInStrongGenerators| |rst| |commutative?|
- |green| |integralDerivationMatrix| |powers| |call| |s17acf| |equiv?|
- |printHeader| |top!| |atanhIfCan| |pi| |OMputEndObject| |numericIfCan|
- F2FG |hdmpToDmp| |addiag| |f04faf| |infinity|
- |rightCharacteristicPolynomial| |extractClosed| |resetVariableOrder|
- |cyclic| |lyndon| |wholeRagits| |datalist| |reducedSystem| |true|
- |makeFR| |exQuo| |f02akf| |diff| |result| |resultant|
- |resultantReduitEuclidean| |d01ajf| |primitivePart| |read!|
- |mainKernel| |leftTraceMatrix| |kernel| |internalLastSubResultant|
- |redPol| |constantRight| |d02bhf| |harmonic| |lambert| |draw|
- |leftRegularRepresentation| |connect| |listConjugateBases| |getStream|
- |nonQsign| |push!| |remove| |xn| |createNormalElement|
- |binaryFunction| |janko2| |callForm?| |generic?| |cycleTail| |lhs|
- |showAllElements| |critM| |supRittWu?| |iisin| |virtualDegree|
- |countRealRootsMultiple| |slash| |last| |rhs| |crest| |iiasec|
- |weakBiRank| |OMunhandledSymbol| |perfectNthRoot| |froot| |assoc|
- |integerBound| |makeSketch| |makeObject| |getIdentifier|
- |stiffnessAndStabilityFactor| |qPot| |rank| |pureLex|
- |genericRightTraceForm| |finiteBound| |sin?| |content|
- |tryFunctionalDecomposition?| |lexico| |listOfMonoms| |polygon|
- |f02xef| |imagk| |SturmHabichtMultiple| |coef| |bombieriNorm|
- |minimalPolynomial| |d01anf| |structuralConstants|
- |primPartElseUnitCanonical| |gramschmidt| |size?| |compBound|
- |triangulate| |indicialEquation| |setFieldInfo| |prefixRagits|
- |pToDmp| |cos2sec| |index?| |unitNormalize|
- |removeRedundantFactorsInPols| |noLinearFactor?| |pole?| |addPoint|
- |jacobian| |pair?| |leader| |evenlambert| |rombergo| |charthRoot|
- |rootRadius| |trapezoidalo| |scopes|
- |removeIrreducibleRedundantFactors| |commutator| |optimize|
- |insertTop!| |lists| |minrank| |zeroSetSplit| |ridHack1|
- |mapUnivariateIfCan| |idealiser| |createPrimitiveElement| |upperCase?|
- |externalList| |meatAxe| |squareFreePolynomial| |restorePrecision|
- |clearTheFTable| |safeCeiling| |id| |subNodeOf?| |createPrimitivePoly|
- |conditionP| |plusInfinity| |elements| |generalLambert| |ratDsolve|
- |iiacot| |reduceBasisAtInfinity|
- |solveLinearPolynomialEquationByRecursion| |tValues| |minusInfinity|
- |nextsousResultant2| |relationsIdeal| |f01ref| |meshPar2Var| |table|
- |rewriteIdealWithRemainder| |primeFactor| |specialTrigs|
- |outputFloating| |semiSubResultantGcdEuclidean1| |rightRemainder|
- |headReduce| |new| |inspect| |KrullNumber| |sinh2csch|
- |unitsColorDefault| |scanOneDimSubspaces| |variable|
- |tubeRadiusDefault| |evaluate| |f01mcf| |rightRegularRepresentation|
- |getZechTable| |tubePlot| |sort!| |e01sbf| |oneDimensionalArray|
- |numerator| |rCoord| |interReduce| |OMconnectTCP| |iisinh|
- |var1StepsDefault| |nthExponent| |infix| |sylvesterMatrix| |mat|
- |removeCosSq| |flexible?| |algSplitSimple| |spherical|
- |oddInfiniteProduct| |simpson| |stoseInvertible?| |type| |elColumn2!|
- |fortranCompilerName| |expextendedint| |moduloP| |monicRightDivide|
- |light| |zero?| |palgRDE| |fibonacci| |eq?| |pushNewContour|
- |bubbleSort!| |tower| |diagonal?| |polyPart| |degreeSubResultant|
- |printInfo| |explogs2trigs| |numericalOptimization|
- |integralCoordinates| |key| |body| |distribute| |decrease| |ruleset|
- |normalized?| |fill!| |Ei| |rk4a| |coordinates| |options| |octon|
- |stripCommentsAndBlanks| |lfextendedint| |multiset|
- |radicalEigenvalues| |adaptive| |reducedContinuedFraction|
- |simpleBounds?| |bindings| |purelyTranscendental?| |outputFixed|
- |bivariatePolynomials| |e01sff| |ellipticCylindrical| |filename|
- |left| |OMgetVariable| |suchThat| |polygamma| |OMputAttr|
- |raisePolynomial| |sturmSequence| |hash| |indiceSubResultant|
- |eulerPhi| |right| |rightRecip| |halfExtendedSubResultantGcd1|
- |enterInCache| |setEpilogue!| |shanksDiscLogAlgorithm| |geometric|
- |not?| |nextPartition| |definingInequation| |zero| |elRow1!|
- |nextIrreduciblePoly| |deepestInitial| |count| |eigenMatrix|
- |acothIfCan| |parse| |exactQuotient!| |roughBase?| |cosSinInfo|
- |basicSet| |characteristicSet| |pointColorPalette| |eigenvectors|
- |And| |children| |inrootof| |exprToUPS| |routines| |compound?| |exquo|
- |condition| |mirror| |Or| |mkIntegral| |OMgetBVar| |lquo| |gcdcofact|
- |div| |obj| |complement| |Not| |OMputSymbol| |c06frf| |patternMatch|
- |subscript| |normalForm| |quo| |df2ef| |cache| |sizeMultiplication|
- |dmpToHdmp| |solveLinearlyOverQ| |radix| |cSec| |f01qef| |BasicMethod|
- |qfactor| |extractProperty| |currentCategoryFrame| |central?| |nil|
- |rem| |currentEnv| |primPartElseUnitCanonical!| |interpolate|
- |OMgetInteger| |dmpToP| |rightTrace| |inf| |failed| |smith| **
- |algebraicDecompose| |OMputBind| |chiSquare1| |LyndonBasis| |/\\|
- |showTheFTable| |inRadical?| |cTanh| |lazyGintegrate| |search|
- |isobaric?| |approximate| |rischDEsys| |digit?| |\\/|
- |possiblyInfinite?| |reindex| |viewThetaDefault| |subResultantChain|
- |complex| |solveid| EQ |nullity| |setlast!| |vedf2vef|
- |completeHermite| |OMserve| |c02agf| |c06eaf| |build|
- |repeatUntilLoop| |removeDuplicates!| |showFortranOutputStack|
- |regularRepresentation| |pdct| |torsionIfCan| |rubiksGroup|
- |padicallyExpand| |dilog| |e04dgf| |s17agf| |leftFactorIfCan| |iicsch|
- |orthonormalBasis| |eigenvector| |index| |imagK| |parameters|
- |createRandomElement| |rightLcm| |irreducibleFactors| |diag|
- |subResultantsChain| |groebgen| |rightDivide| |atoms| |s18aff|
- |defineProperty| |innerint| |stoseInvertibleSetreg| |e01bgf| ^
- |domainOf| |not| |hypergeometric0F1| |stiffnessAndStabilityOfODEIF|
- |rroot| |swap| |copyInto!| |magnitude| |block| |d01fcf|
- |removeRoughlyRedundantFactorsInPol| |reducedForm| |numberOfFactors|
- |constantCoefficientRicDE| |sin| |rightTrim| |d03edf| |tanAn|
- |constant?| |numberOfFractionalTerms| |extendIfCan| |seriesSolve|
- |laguerreL| |traverse| |cos| |leftTrim| |iilog| |userOrdered?| |cCsc|
- |contract| |setTex!| |genericLeftDiscriminant| |HenselLift| |subset?|
- |tan| |tubePoints| |totolex| |bat| |d01gaf| |sinIfCan| |f02aef|
- |coerceImages| |nthCoef| |cot| |infieldIntegrate| |rowEchelonLocal|
- |cosIfCan| |alphabetic| |shrinkable| |omError| |symmetric?|
- |contractSolve| |leadingIndex| |monic?| |currentSubProgram| |sec|
- |variationOfParameters| |dominantTerm| |elliptic| |probablyZeroDim?|
- |removeRedundantFactorsInContents| |high| |rotatez| |imagI|
- |fprindINFO| |blankSeparate| |idealiserMatrix| |csc| |innerSolve1|
- |normalizeIfCan| |max| |mergeFactors| |curryLeft| |cAcoth|
- |viewSizeDefault| |outputMeasure| |sechIfCan| |palgextint0| |li|
- |const| |multinomial| |asin| |binomThmExpt| |drawToScale|
- |identityMatrix| |leadingExponent| |find| |hermite| |completeHensel|
- |c02aff| |makeUnit| |symbolTableOf| |complex?| |acos|
- |complexEigenvectors| |integrate| |composite| |readLineIfCan!|
- |maxrank| |expenseOfEvaluation| |flexibleArray| |commutativeEquality|
- |is?| |primextendedint| |baseRDE| |changeVar| |atan| |solid|
- |normal01| |unvectorise| |aLinear| |fortranCharacter| |OMputEndBind|
- |internalInfRittWu?| |ignore?| |bernoulliB| |rangeIsFinite|
- |prevPrime| |rk4qc| |singularAtInfinity?| |mvar| |isMult| |mapdiv|
- |firstSubsetGray| |chvar| |var2Steps| |intChoose| |gcdPolynomial|
- |flagFactor| |perfectSquare?| |knownInfBasis| |mpsode| |uniform01|
- |imagj| |monomRDE| |s17def| |countRealRoots| |constantKernel|
- |monicCompleteDecompose| |adaptive3D?| |expint| |complexRoots| |tanNa|
- |rightRankPolynomial| |infLex?| |mapUnivariate| |every?| |imagi|
- |insertRoot!| |subresultantSequence| |leftOne| |d01apf| GF2FG
- |semiDiscriminantEuclidean| |mulmod| |squareFreePrim| |doubleComplex?|
- |point?| |lfinfieldint| |normalizedAssociate| |label|
- |setTopPredicate| |terms| |getCurve| |monomials| |findCycle| |s19aaf|
- |direction| |pdf2ef| |limit| |inHallBasis?| |dimensions| |entry|
- |selectIntegrationRoutines| |squareTop| |messagePrint| |denominators|
- |UnVectorise| |screenResolution3D| |clipWithRanges| |key?| |tanQ|
- |mainPrimitivePart| |polarCoordinates| |zeroDimensional?| |isOp|
- |polygon?| |genericLeftTrace| |linSolve|
- |semiDegreeSubResultantEuclidean| |front| |norm| |UP2ifCan|
- |optional?| |fullPartialFraction| |move| |fortranDoubleComplex|
- |branchPoint?| |physicalLength!| |airyAi| |external?|
- |semicolonSeparate| |d02kef| |shellSort|
- |zeroSetSplitIntoTriangularSystems| |topFortranOutputStack|
- |lastSubResultantEuclidean| |comparison| |exprex| |laguerre|
- |printTypes| |concat| |pmComplexintegrate| |s19abf| |finiteBasis|
- |mainMonomials| |tryFunctionalDecomposition| |antisymmetric?|
- |startStats!| |title| |tableForDiscreteLogarithm| |internalAugment|
- |distdfact| |listBranches| |ipow| |test| |ode2| |cycleEntry| |hcrf|
- |univariatePolynomialsGcds| |bottom!| |factorAndSplit| |or|
- |normalizedDivide| |rules| |semiIndiceSubResultantEuclidean| |f2st|
- |fortranLiteral| |OMencodingSGML| |localReal?| |iExquo|
- |zeroDimPrimary?| |bandedHessian| |f02bjf| |invertibleSet| |and|
- |OMconnInDevice| |triangular?| |clipParametric| |row| |shallowExpand|
- |coercePreimagesImages| |complexIntegrate| |halfExtendedResultant2|
- |padecf| |rootProduct| |iiacoth| |prefix| |cyclicCopy|
- |multiEuclideanTree| |cup| |d01amf| |pointSizeDefault| |cyclic?|
- |copies| |iiexp| |redmat| |genericRightNorm| |normalElement|
- |complexExpand| |normalDeriv| |nextPrimitiveNormalPoly| |appendPoint|
- |morphism| |commonDenominator| |stack| |bsolve|
- |unrankImproperPartitions0| |printStats!| |cyclePartition| |tableau|
- |useSingleFactorBound| |operators| |f04mcf| |deepCopy| |leadingTerm|
- |rightNorm| |option| |totalDegree| |mainVariable?| |randnum|
- |sumOfSquares| |asecIfCan| |startTableGcd!| |pop!| |edf2efi|
- |maxPoints| |linGenPos| |palgintegrate| |printStatement| |unary?|
- |maxrow| |convergents| |conjugates| |precision| |subscriptedVariables|
- |selectOrPolynomials| |escape| |BumInSepFFE| |nsqfree| |cCot|
- |semiResultantEuclidean2| |makeprod| |setOfMinN| |isList| |upperCase|
- |OMread| |shiftRight| |bezoutMatrix| |overlap| |stFunc2| |localAbs|
- |dn| |quasiRegular| |retractIfCan| |addPoint2| |basisOfMiddleNucleus|
- |expPot| |pmintegrate| |extractPoint| |rightOne| |fractionFreeGauss!|
- |testModulus| |resultantnaif| |mainDefiningPolynomial| |indices|
- |distFact| |primlimitedint| |normInvertible?| |reverseLex|
- |modifyPoint| |dflist| |patternVariable| |cubic| |s17aef|
- |trailingCoefficient| |setelt!| |e01bhf| |basis| |c05nbf| |c06ekf|
- |replace| |LowTriBddDenomInv| |roughSubIdeal?| |cyclicParents|
- |radicalEigenvector| |mathieu24| |hyperelliptic| |makeEq| |elem?|
- |primes| |lazyResidueClass| |radicalSolve|
- |generalizedContinuumHypothesisAssumed?| |root| |back|
- |compactFraction| |e02ddf| |gcdprim| |consnewpol| |showScalarValues|
- |varselect| |mainSquareFreePart| |argument| |setOrder| |listexp|
- |multiplyCoefficients| |tRange| |rename!| |identitySquareMatrix|
- |bits| |power!| |totalfract| |UpTriBddDenomInv| |iidprod| |iiGamma|
- |exponential| |toseInvertible?| |preprocess| |setColumn!|
- |genericRightDiscriminant| |iomode| |rightPower| |reflect| |fi2df|
- |algebraicVariables| |s17adf| |mr| |zeroVector| |difference|
- |equality| |leftRankPolynomial| |debug|
- |stoseInternalLastSubResultant| |gethi| |splitSquarefree| |space|
- |distance| |reducedQPowers| |semiSubResultantGcdEuclidean2| |simpsono|
- |besselY| |neglist| |kmax| |setImagSteps| |curryRight| |aromberg|
- |LyndonWordsList1| |startTable!| |or?| |linearPolynomials| |heapSort|
- |product| |s14baf| |f07aef| |subtractIfCan| |enterPointData|
- |unitNormal| |qelt| |romberg| |purelyAlgebraic?| |e02dcf| |wreath|
- |low| |returnType!| |qinterval| |clipBoolean| |lifting| |dec|
- |algebraicOf| |modulus| |map| |orOperands| |toseSquareFreePart|
- |internal?| |nthFactor| |nthFractionalTerm| |rewriteSetWithReduction|
- |monomialIntPoly| |e02dff| |pushdterm| |s13aaf| |color| |xRange|
- |Vectorise| LODO2FUN |any| |twoFactor| |plotPolar| |rightZero| |Gamma|
- |brillhartTrials| |properties| |e01baf| |outputAsTex| |getMatch|
- |yRange| |matrixDimensions| |medialSet| |toseLastSubResultant|
- |nullary?| |iFTable| |maxdeg| |puiseux| |lllp| |translate| |rightMult|
- |argumentList!| |mainCharacterization| |zRange| |complementaryBasis|
- |create| |members| |equivOperands| |reduceByQuasiMonic|
- |multiplyExponents| |poisson| |createZechTable|
- |subResultantGcdEuclidean| |map!| |region| |basisOfLeftNucleus|
- |shufflein| |changeNameToObjf| |processTemplate| |symmetricSquare|
- |compiledFunction| |inv| |complexElementary| |qsetelt!| |prindINFO|
- |writeLine!| |completeSmith| |convert| |matrix| |polyred| |cot2trig|
- |rootKerSimp| |fracPart| |s13acf| |ground?| |e02bdf| |unexpand|
- |euclideanSize| |maxint| |univcase| |youngGroup| |powerAssociative?|
- |diagonalProduct| |subPolSet?| |newSubProgram| |ground|
- |var2StepsDefault| |putColorInfo| |OMopenString| |OMreceive|
- |minPoints3D| |removeCoshSq| |linearAssociatedLog| |stronglyReduced?|
- |po| |currentScope| |fortranComplex| |leadingMonomial|
- |isAbsolutelyIrreducible?| |iCompose| |whatInfinity| |float?|
- |fixedPointExquo| |removeZeroes| |setRealSteps| |style| |reset|
- |split!| |e04jaf| |leadingCoefficient| |intcompBasis|
- |prepareSubResAlgo| |exteriorDifferential| |merge| |rur| |graeffe|
- |pushuconst| |primitiveMonomials| |slex| |pattern| |getOrder|
- |removeRoughlyRedundantFactorsInContents| |btwFact| |parts| |tan2trig|
- |acsch| |numberOfOperations| |complexNumericIfCan| |clikeUniv| |rk4f|
- |conical| |prepareDecompose| |reductum| |remainder| |integerIfCan|
- |edf2fi| |lazyPrem| |mainContent| |bumptab1| |e04naf| |exists?|
- |mkcomm| |swapRows!| |quasiAlgebraicSet| |irreducible?| |OMputObject|
- |axes| |divergence| |setMaxPoints3D| |prinb| |permanent|
- |quasiComponent| |iiperm| |empty?| |void| |c06gcf| |f02awf| |kovacic|
- |rquo| |viewPhiDefault| |mapSolve| |checkPrecision| |nextNormalPoly|
- |addMatch| |divisors| |bat1| |OMUnknownCD?| |showClipRegion| |ratPoly|
- |partialDenominators| |selectOptimizationRoutines| |e02baf| |f04maf|
- |rightQuotient| |entries| |s17dhf| |showTypeInOutput|
- |prolateSpheroidal| |insertBottom!| |mainValue| |hitherPlane|
- |coth2tanh| |sqfrFactor| |calcRanges| |push| |point| |mdeg|
- |atanIfCan| |besselJ| |inverseColeman| |OMsetEncoding|
- |rationalPoints| |limitPlus| |toroidal| |outputForm|
- |integralBasisAtInfinity| |normFactors|
- |semiLastSubResultantEuclidean| |polynomialZeros| |implies?|
- |shiftRoots| |twist| |problemPoints| |subspace| |explicitlyFinite?|
- |dioSolve| |lastSubResultant| |untab| |lowerCase?| |linear| |makeCrit|
- |coHeight| |alternatingGroup| |series| |stoseInvertibleSet|
- |getDatabase| |unit?| |parametric?| |deepestTail| |length| |print|
- |normalise| |write| |cothIfCan| |s13adf| |viewWriteAvailable|
- |OMmakeConn| |makeViewport3D| |failed?| |scripts| |removeSinhSq|
- |polynomial| |quasiMonicPolynomials| |create3Space| |save| NOT
- |primaryDecomp| |modularGcd| |rightGcd| |c06gqf| |dihedralGroup|
- |logpart| |colorDef| |normalDenom| |removeSuperfluousCases| OR
- |linearlyDependentOverZ?| |signAround| |acscIfCan| |d01gbf| ~=
- |torsion?| |exponent| |extendedEuclidean| |continuedFraction|
- |stoseInvertible?sqfreg| AND |linearDependence| |min| |pow|
- |symmetricGroup| |simplifyLog| |arg1| |d02gbf| |computeInt|
- |leftFactor| |ocf2ocdf| |mkPrim| |areEquivalent?| |basisOfLeftNucloid|
- |backOldPos| |c06ebf| |equation| |arg2| |polyRDE| |s17dcf| |factors|
- |replaceKthElement| |numberOfMonomials| |lfunc| |leftScalarTimes!|
- |monicModulo| |extendedIntegrate| |exactQuotient| |realRoots|
- |recoverAfterFail| |setLabelValue| |selectAndPolynomials|
- |validExponential| |generateIrredPoly| |explicitlyEmpty?|
- |perfectNthPower?| |conditions| |mapmult| |birth| |complexForm|
- |ODESolve| |clipPointsDefault| |multiple?| |drawStyle| |mainForm|
- |e02gaf| |match| |e01bff| |subNode?| |s17ajf| |reducedDiscriminant|
- |f07adf| |iiasin| |sPol| |selectsecond| |lazyPquo| |represents|
- |getPickedPoints| |stopTable!| |merge!| |declare| |karatsubaOnce|
- |maxColIndex| |localIntegralBasis| |OMgetError| |multiEuclidean|
- |mapExpon| |symmetricRemainder| |insert| |cPower| |setProperties!|
- |output| |polyRicDE| |node?| |separate| |groebner?| |OMwrite|
- |tablePow| |s01eaf| |setAttributeButtonStep| |top| |numberOfVariables|
- |addmod| |finite?| |removeSuperfluousQuasiComponents| |s18adf|
- |endOfFile?| |continue| |mapBivariate| |cAcsc| |sylvesterSequence|
- |critMTonD1| * |measure| |number?| |trapezoidal| |op| |compose| |Beta|
- |setvalue!| |cot2tan| |inconsistent?| |complexNormalize| |e02daf|
- |splitConstant| |acotIfCan| |isPower| |cschIfCan| |hMonic| |leftRank|
- |PollardSmallFactor| |associator| |setMinPoints3D| |debug3D|
- |setMinPoints| |ef2edf| ~ |extendedint| |fractRadix|
- |stoseIntegralLastSubResultant| |idealSimplify| |gderiv|
- |bezoutDiscriminant| |positiveRemainder| |lSpaceBasis| |leaf?|
- |nullSpace| |hexDigit?| |surface| |roman| |lintgcd| |singularitiesOf|
- |coth2trigh| |definingPolynomial| |sort| |iicsc| |rotatex| |initials|
- |duplicates?| |supersub| |cAsech| |outputGeneral| |vspace|
- |drawCurves| |numeric| |substring?| |viewDeltaXDefault|
- |axesColorDefault| |delta| |bumptab| |iiasinh| |binaryTree|
- |mindegTerm| |csc2sin| |exprToGenUPS| |rotatey| |property| |hexDigit|
- |safeFloor| |gcdPrimitive| |explimitedint| |constructorName|
- |factorsOfCyclicGroupSize| |quotient| |s20adf| |OMParseError?|
- |internalIntegrate| |antiAssociative?|
- |selectMultiDimensionalRoutines| |coshIfCan| |suffix?|
- |stopTableInvSet!| |lazyEvaluate| |open| |upperCase!| |cycle|
- |autoReduced?| |cfirst| |collectQuasiMonic| |subQuasiComponent?|
- |rootPoly| |asinhIfCan| |dom| |elliptic?|
- |rewriteIdealWithHeadRemainder| |e02ajf| |minimumExponent| |pquo|
- |combineFeatureCompatibility| |branchPointAtInfinity?|
- |HermiteIntegrate| |lazy?| |prefix?| |units| |quasiRegular?| |random|
- |principal?| |f04axf| |argumentListOf| |lazyPseudoQuotient|
- |OMgetEndBind| |lazyVariations| |OMputEndAtp| |SFunction|
- |deleteProperty!| |resetNew| |zeroOf| |implies| |wholeRadix|
- |rangePascalTriangle| |complexEigenvalues| |setref| |OMencodingBinary|
- UTS2UP |elRow2!| |corrPoly| |one?| |expr| |singleFactorBound| |xor|
- |qroot| |range| |OMreadStr| |showAll?| |pr2dmp| |revert| |polar|
- |OMgetBind| |mathieu11| |complexSolve| |lambda| |sech2cosh| |powern|
- |numericalIntegration| |integer?| |OMbindTCP| |radicalOfLeftTraceForm|
- |log2| |complexNumeric| |bit?| |airyBi| |possiblyNewVariety?|
- |setchildren!| |badNum| |permutationGroup| |numFunEvals| |graphStates|
- |someBasis| |code| |pToHdmp| |showArrayValues| |rootDirectory|
- |iiacsch| |iicot| |setPrologue!| |f02axf| |listOfLists|
- |groebnerIdeal| |iicos| |rightExtendedGcd| |kernels| |squareMatrix|
- |infix?| |quotedOperators| |e| |hdmpToP| |changeName| |prem|
- |objectOf| |cCos| |solveInField| |generalizedEigenvector|
- |splitDenominator| |nextNormalPrimitivePoly| |univariate| |mask|
- |positiveSolve| |viewDefaults| |highCommonTerms| |arity| |setrest!|
- |pseudoQuotient| |tail| |viewWriteDefault| |stoseInvertibleSetsqfreg|
- |s17akf| |in?| |algebraicCoefficients?| |radPoly| |prinshINFO|
- |bezoutResultant| |midpoints| |besselK| |socf2socdf| |makeMulti|
- |simplifyPower| |noncommutativeJordanAlgebra?| |graphs| |imaginary|
- |shift| |showTheSymbolTable| |tab1| |exponents| |viewZoomDefault|
- |insertionSort!| |nlde| |irreducibleFactor| |factor| |nor| |leftUnit|
- |opeval| |ldf2lst| |hue| |OMputError| |quoted?| |df2fi| |quartic|
- |queue| |sqrt| |monicLeftDivide| |setMaxPoints| |closedCurve?| |node|
- |cyclotomicDecomposition| |flatten| |cSech| |cycleRagits|
- |buildSyntax| |vertConcat| |critBonD| |lfintegrate| |real| |yellow|
- |changeThreshhold| |countable?| |say| |tensorProduct| |Lazard2|
- |sec2cos| |reduced?| |chebyshevT| |formula| |physicalLength|
- |numberOfComputedEntries| |imag| |moebius| |head| |ParCond|
- |basisOfRightNucleus| |generalizedContinuumHypothesisAssumed|
- |optAttributes| |invmultisect| |completeEchelonBasis|
- |basisOfLeftAnnihilator| |identity| |directProduct| |d02gaf| |f01rdf|
- |decreasePrecision| |Ci| |readLine!| |select!| |superHeight| |rotate!|
- |f07fdf| |f2df| |acot| |OMReadError?| |SturmHabichtCoefficients|
- |diophantineSystem| |closeComponent| |extractTop!| |compile|
- |exponential1| |rationalPower| |zoom| |makeTerm| |badValues|
- |destruct| |asec| |nativeModuleExtension| |cycleLength| |ScanArabic|
- |generators| |c06gsf| |leftZero| |modularFactor| |OMputEndAttr|
- |option?| |setPoly| |nrows| |acsc| |balancedBinaryTree| |llprop| |cap|
- |numberOfImproperPartitions| |createLowComplexityTable|
- |goodnessOfFit| |fmecg| |constantLeft| |computeCycleLength|
- |OMsupportsSymbol?| |ncols| |sinh| |pushucoef| |extractIfCan|
- |palgLODE| |accuracyIF| |deepExpand| |bright| |OMsend| |outerProduct|
- |mainMonomial| |loadNativeModule| |radicalEigenvectors| |enumerate|
- |laplace| |cosh| |sizeLess?| |roughEqualIdeals?| |f04mbf| |PDESolve|
- |superscript| |blue| |s18aef| |toScale| |f01bsf| |mathieu23|
- |monomial| |tanh| |iifact| |computeCycleEntry| |OMgetObject| |ratpart|
- |makeFloatFunction| |notOperand| |positive?| |rootBound|
- |setsubMatrix!| |fractRagits| |multivariate| |coth| |mergeDifference|
- |lazyPseudoDivide| |round| |regime| |subResultantGcd|
- |degreeSubResultantEuclidean| |inverse| |ksec| |variables| |sech|
- |extensionDegree| |isExpt| |decompose| |groebner| |genericPosition|
- |divisorCascade| |dequeue| |delete| |lastSubResultantElseSplit|
- |ramified?| |expandTrigProducts| |solveRetract| |csch| |pointColor|
- |symmetricTensors| |lfextlimint| |tanintegrate| |predicate|
- |indicialEquationAtInfinity| |stirling2| |subresultantVector|
- |irreducibleRepresentation| |halfExtendedSubResultantGcd2|
- |musserTrials| |interval| |asinh| |double| |list| |aQuartic|
- |extendedSubResultantGcd| |alphanumeric| |complete| |e02zaf|
- |chebyshevU| |cyclotomicFactorization| |sub| |skewSFunction| |car|
- |acosh| |showIntensityFunctions| |denominator| |integral?|
- |zeroDimPrime?| |initiallyReduced?| |separateFactors| |squareFreePart|
- |pol| |dim| |iiatan| |e01sef| |atanh| |infieldint| |cdr| |seed|
- |phiCoord| |palginfieldint| |setProperty| |even?| |constantOperator|
- |partition| |getProperty| |setDifference| |acoth| |taylor|
- |extendedResultant| |hostPlatform| |selectPDERoutines| |palglimint|
- |OMgetSymbol| |cylindrical| |changeWeightLevel|
- |setLegalFortranSourceExtensions| |leftRecip| |freeOf?|
- |createMultiplicationMatrix| |asech| |laurent| |setIntersection|
- |adaptive?| |recolor| |startTableInvSet!| |nary?| |goto|
- |numberOfNormalPoly| |pushup| |frst| |comp| |setUnion| |errorInfo|
- |variable?| |swapColumns!| |karatsubaDivide| |rootNormalize|
- |exprHasWeightCosWXorSinWX| |pade| |e02adf| |quote| |overset?|
- |f01qdf| |apply| |isTimes| |cAcos| |att2Result|
- |genericLeftMinimalPolynomial| BY |nilFactor| |cycles| |rootPower|
- |and?| |getRef| |multiple| |declare!| |constantOpIfCan| |nthExpon|
- |putGraph| |charpol| |subst| |integralBasis| |completeEval|
- |graphCurves| |dAndcExp| |d01bbf| |applyQuote| |latex| |associates?|
- |size| |enqueue!| |getButtonValue| |legendre| |log10|
- |coerceListOfPairs| |modifyPointData| |heap| |OMputEndBVar| |open?|
- |nand| |symbol| |univariate?| |monicDecomposeIfCan| |f04jgf|
- |andOperands| |moreAlgebraic?| SEGMENT |getCode| |insert!| |iisqrt2|
- |integralMatrix| |postfix| |divideIfCan!| |transcendent?|
- |lieAdmissible?| |rightUnit| |cyclicGroup| |SturmHabichtSequence|
- |factorials| |e02bcf| |infinityNorm| |movedPoints| |usingTable?|
- |lieAlgebra?| |integer| |first| |removeZero| |f01qcf| |center|
- |sequences| |totalLex| |tanh2coth| |figureUnits|
- |firstUncouplingMatrix| |d02bbf| |listYoungTableaus|
- |lazyIrreducibleFactors| |rest| |curry| |LazardQuotient2| F
- |quadraticNorm| |bernoulli| |nextPrimitivePoly| |critB| |objects|
- |qqq| |laurentRep| |frobenius| |sum| |leftExactQuotient| |substitute|
- |firstNumer| |bitCoef| |solveLinearPolynomialEquation|
- |semiResultantEuclidean1| |resultantEuclideannaif| |solve| |base|
- |setright!| |s18acf| |partialQuotients| |bitLength| |removeDuplicates|
- |useEisensteinCriterion?| |fortranLinkerArgs| |basisOfNucleus| |ode|
- |close| |leadingCoefficientRicDE| |permutations|
- |exprHasAlgebraicWeight| |getGoodPrime| |mapExponents| |nextColeman|
- |lepol| |f04arf| |antiCommutative?| |setAdaptive| |inR?|
- |fractionPart| |oddlambert| |increase| |redpps| |relativeApprox|
- |splitLinear| |viewPosDefault| |totalGroebner| |display|
- |unprotectedRemoveRedundantFactors| |trunc| |s17dgf| |reseed|
- |constantIfCan| |lowerPolynomial| |binaryTournament| |unitCanonical|
- |fintegrate| |iicosh| |rightAlternative?| |dfRange| |e04ucf|
- |intensity| |standardBasisOfCyclicSubmodule| |exponentialOrder|
- |digamma| |LagrangeInterpolation| |sn| |second| |scripted?|
- |wholePart| |localUnquote| |moebiusMu| |epilogue| |generalSqFr|
- |ParCondList| |d03faf| |typeLists| |third| |realZeros| |has?|
- |segment| |coerce| |definingEquations| |ffactor| |taylorQuoByVar|
- |nextPrime| |rowEch| |rdHack1| |subCase?| |abs| |construct|
- |leftDivide| |systemSizeIF| |term| |input| |fixedPoints| |hspace|
- |clearDenominator| |OMgetEndApp| |uniform| |iipow| |sturmVariationsOf|
- |ref| |library| |RittWuCompare| |pastel| |alternative?| |OMputApp|
- |fixedDivisor| |child?| |makeViewport2D| |lex| |genericLeftNorm|
- |createLowComplexityNormalBasis| |errorKind| |bumprow|
- |generalizedInverse| |dimension| |coerceP| |vector| |previous|
- |minPoly| |lowerCase| |makeResult| |cons| |RemainderList|
- |prinpolINFO| |cyclotomic| |innerSolve| |differentiate| |setPosition|
- |OMgetEndAtp| |B1solve| Y |f01maf| |algintegrate| |rationalIfCan|
- |approxSqrt| |set| |factorPolynomial| |paren| |reduceLODE| = |weights|
- |seriesToOutputForm| |univariateSolve| |unaryFunction| |less?|
- |topPredicate| |s14aaf| |modTree| |solve1|
- |removeRoughlyRedundantFactorsInPols| |initTable!| |setleaves!|
- |negative?| |startPolynomial| < |discriminant| |changeBase| |empty|
- |outputList| |allRootsOf| |clipSurface| |subSet| |monomial?| >
- |impliesOperands| |shade| |check| |iitan| |LiePoly| |rightTraceMatrix|
- |mantissa| |repeating?| <= |closedCurve| |setprevious!| |anfactor|
- |invertIfCan| |aCubic| |lookup| |normal?| >= |algebraic?|
- |permutation| |e04ycf| |reverse| |trigs| |fortranCarriageReturn|
- |primextintfrac| |pointColorDefault| |integralRepresents| |diagonal|
- |int| |zerosOf| |reverse!| |tan2cot| |genericLeftTraceForm|
- |bringDown| |genus| |linears| |thetaCoord| |summation|
- |incrementKthElement| |mainVariables| |setelt| |generator| +
- |wrregime| |init| |doubleDisc|
- |rewriteSetByReducingWithParticularGenerators| |sinhcosh| |show|
- |repSq| |leftUnits| |ptree| |cscIfCan| |box| - |digit|
- |rightFactorCandidate| |showTheRoutinesTable| |mapGen| |depth| |zag|
- |c06fqf| |OMgetEndAttr| |copy| / |basisOfRightAnnihilator| |parabolic|
- |typeList| |tree| |tanhIfCan| |trace| |resize| |radical| |mesh?|
- |collectUpper| |pdf2df| |colorFunction| |factorByRecursion|
- |expenseOfEvaluationIF| |ideal| |setVariableOrder| |LazardQuotient|
- |autoCoerce| |reciprocalPolynomial| |shallowCopy| |taylorIfCan|
- |cAtanh| |mapMatrixIfCan| |internalIntegrate0| |functionIsOscillatory|
- |homogeneous?| |absolutelyIrreducible?| |OMputInteger|
- |transcendenceDegree| |sumSquares| |radicalSimplify| |pleskenSplit|
- |symbolIfCan| |sorted?| |rotate| |df2st| |showSummary| |selectfirst|
- |redPo| |stronglyReduce| |modularGcdPrimitive| |s21baf|
- |numberOfComposites| |kroneckerDelta| |iisech|
- |purelyAlgebraicLeadingMonomial?| |conjug| |lo|
- |stosePrepareSubResAlgo| |shuffle| |lineColorDefault|
- |euclideanGroebner| |showAttributes| |removeConstantTerm|
- |rewriteIdealWithQuasiMonicGenerators| |transcendentalDecompose|
- |initial| |incr| |zCoord| |randomLC| |f01rcf| |OMgetType| |status|
- |OMreadFile| |OMclose| |infiniteProduct| |leviCivitaSymbol| |hi|
- |generalizedEigenvectors| |outputAsScript| |rischDE| |viewport2D|
- |cycleSplit!| |red| |useEisensteinCriterion| |rootSimp|
- |setErrorBound| |inGroundField?| |copy!| |writable?| |normalize|
- |wronskianMatrix| |drawComplex| |makingStats?| |intermediateResultsIF|
- |recip| |maxPoints3D| |sumOfKthPowerDivisors|
- |getMultiplicationMatrix| |setPredicates| |inverseLaplace| |level|
- |iicoth| |sumOfDivisors| |bfEntry| |OMgetEndObject| |clip| |An|
- |argscript| |triangSolve| |invertible?| |getlo| |numberOfCycles| |nil|
- |infinite| |arbitraryExponent| |approximate| |complex|
- |shallowMutable| |canonical| |noetherian| |central|
- |partiallyOrderedSet| |arbitraryPrecision| |canonicalsClosed|
- |noZeroDivisors| |rightUnitary| |leftUnitary| |additiveValuation|
- |unitsKnown| |canonicalUnitNormal| |multiplicativeValuation|
- |finiteAggregate| |shallowlyMutable| |commutative|) \ No newline at end of file
+ |Record| |Union| |semiDegreeSubResultantEuclidean| |leaf?|
+ |fixedPoint| |rationalPoints| |declare| |imagk| |numericIfCan| |or|
+ |removeSinSq| |top| |droot| |and| |continue| |OMlistSymbols| |e|
+ |RittWuCompare| |clip| |taylorRep| |f02agf| |entry|
+ |permutationRepresentation| |lift| |leadingBasisTerm|
+ |useEisensteinCriterion| |singularitiesOf| |reduce| |jacobian|
+ |addBadValue| |move| |setPosition| |SturmHabichtMultiple|
+ |semiLastSubResultantEuclidean| |numeric| |arguments| |padicFraction|
+ |tubeRadius| |radical| |extractClosed| |test| |alternating|
+ |tanintegrate| |numericalOptimization| |derivationCoordinates|
+ |function| |constant?| |id| |An| |s14abf| |laguerre| |retractIfCan|
+ |pastel| |real?| |jacobi| |bipolarCylindrical| |bumptab| |separant|
+ |cSech| |prefix| |table| |pair?| |mkcomm| |colorFunction| |iiacsc|
+ |mainSquareFreePart| |df2mf| |fortranComplex| |new| |OMgetEndAtp|
+ |exprHasWeightCosWXorSinWX| |loopPoints| |rootSimp| |LyndonWordsList|
+ |supDimElseRittWu?| |push!| |powerSum| |read!| |transpose| |property|
+ |certainlySubVariety?| |complexNumeric| |allRootsOf|
+ |quasiMonicPolynomials| |sts2stst| |argscript| |tubePoints| |redpps|
+ |bombieriNorm| |moduloP| |symmetric?| |squareFreePart| |iidsum|
+ |fracPart| |alternatingGroup| |saturate| |enqueue!| |extractIndex|
+ |kernels| |fortranDoubleComplex| |df2st| |decreasePrecision|
+ |evenlambert| |physicalLength| |indicialEquationAtInfinity|
+ |extractTop!| |slex| |alternative?| |leftRankPolynomial| |cot|
+ |coth2trigh| |removeSquaresIfCan| |univariate| |signAround| |B1solve|
+ |exponential| |degree| |eq| |zCoord| |wordsForStrongGenerators|
+ |complexNumericIfCan| |sec| |constantOpIfCan| |sn| |scalarTypeOf|
+ |c06ecf| |depth| |iter| |factorByRecursion| |midpoint| |besselI|
+ |cRationalPower| |adaptive?| |csc| |createIrreduciblePoly|
+ |symmetricPower| |infLex?| |iiasinh| |triangSolve| |optpair| |map|
+ |showTheFTable| |imagI| |reducedContinuedFraction| |setErrorBound|
+ |polynomialZeros| |asin| |c06fuf| |factor|
+ |internalSubQuasiComponent?| |overbar| |integralCoordinates|
+ |rational?| |setImagSteps| |orbits| |numberOfPrimitivePoly| |lcm|
+ |pol| |acos| |resetVariableOrder| |internalIntegrate| |sqrt|
+ |diagonals| |rombergo| |swapRows!| |pointPlot| |subCase?| |stFunc1|
+ |leftDiscriminant| |OMputFloat| |isAbsolutelyIrreducible?| |atan|
+ |invertibleElseSplit?| |real| |endSubProgram| |clearCache| |f01maf|
+ |relativeApprox| |printTypes| |getButtonValue| |lazyPremWithDefault|
+ |updateStatus!| |minimalPolynomial| |selectfirst|
+ |numberOfFractionalTerms| |acot| |imag| |cycleEntry| |vedf2vef|
+ |upperCase?| |unmakeSUP| |stirling2| |pade| |rootPoly| |printInfo|
+ |directProduct| |s17agf| |createNormalPoly| |argument| |gcd| |asec|
+ |kovacic| |ScanFloatIgnoreSpaces| |objectOf| |expenseOfEvaluationIF|
+ |mainKernel| |invertible?| |jordanAlgebra?| |convert| |exp|
+ |uniform01| |outputSpacing| |in?| |cycleRagits| |union| |acsc| SEGMENT
+ |iitanh| |scripted?| |localAbs| |any| |false| |bipolar| |totolex|
+ |s13acf| |sturmSequence| |localIntegralBasis| |iiatan|
+ |primlimitedint| |OMputApp| |trivialIdeal?| |sinh| |string| |xn|
+ |destruct| |Is| |lp| |charthRoot| |rdregime| |stoseInvertibleSet|
+ |genericRightTrace| |evenInfiniteProduct| |s15aef| |nullary|
+ |clipSurface| |selectODEIVPRoutines| |repeating| |roughBasicSet|
+ |algintegrate| |whileLoop| |numberOfComputedEntries| |zeroDimPrimary?|
+ |setStatus!| |decomposeFunc| |character?| |monicRightDivide|
+ |iCompose| |contractSolve| |iiacot| |e01daf| |factorList|
+ |toseInvertible?| |monomialIntegrate| |getOrder| |inspect|
+ |schwerpunkt| |branchPoint?| |c06fpf| |create3Space| |mapUnivariate|
+ |getlo| |splitLinear| |hermiteH| |selectOptimizationRoutines|
+ |changeWeightLevel| |setTopPredicate| |inGroundField?| |redPo|
+ |definingPolynomial| |Ci| |monomial| |s01eaf| |rootRadius| |error|
+ |distribute| |randomLC| |internalSubPolSet?| |fprindINFO| |log|
+ |compose| |d01anf| |recolor| |singRicDE| |multivariate|
+ |stoseInternalLastSubResultant| |curveColorPalette| |binaryTree|
+ |beauzamyBound| |assert| |limitedint| |e02bdf| |curryRight| |csch|
+ |stoseInvertible?reg| |scalarMatrix| |simpleBounds?| |clikeUniv|
+ |variables| |wholePart| |constDsolve| |inRadical?| |rationalIfCan|
+ |pmComplexintegrate| |subresultantVector| |exponential1| |asinh|
+ |imagE| |useSingleFactorBound?| |cyclic| |Aleph| |equiv| |middle|
+ |e02adf| |numberOfCycles| |acscIfCan| |makeSUP| |scan| |acosh|
+ |e02akf| |fixedDivisor| |s17ahf| |var1Steps| |antiAssociative?|
+ |completeHermite| |fglmIfCan| |systemCommand| |ideal|
+ |quasiAlgebraicSet| |unrankImproperPartitions1| |abs|
+ |leftFactorIfCan| |trueEqual| |keys| |implies?| |e01sef| |assign| |dn|
+ |trapezoidalo| |leftTraceMatrix| |commaSeparate| |expintegrate|
+ |csubst| |normInvertible?| |prod| |extendIfCan| |hcrf| |whatInfinity|
+ |cCos| |approxSqrt| |bandedHessian| |moebius| |denomRicDE|
+ |externalList| |atanh| |algebraicCoefficients?| |rationalPoint?|
+ |nthExpon| |buildSyntax| |stronglyReduce| |taylor| |next| |exptMod|
+ |normal| |root?| |imagj| |getDatabase| |stoseLastSubResultant|
+ |indiceSubResultant| |acoth| |getBadValues| |copy!| |laurent|
+ |setOrder| |graphState| |rquo| |oblateSpheroidal| |scopes|
+ |OMgetError| |bat| |viewPosDefault| |findBinding| |asech| |rightRank|
+ |structuralConstants| |localUnquote| |f02wef| |gethi| |puiseux|
+ |reduceBasisAtInfinity| |symbol| |evaluateInverse| |factorOfDegree|
+ |preprocess| |factorial| |asinhIfCan| |KrullNumber| |expIfCan|
+ |subSet| |createNormalElement| |cAcot| |setAttributeButtonStep|
+ |option?| |matrixConcat3D| |irreducibleRepresentation| |expandPower|
+ |entry?| |e02baf| |Beta| |palgLODE0| |relerror| |light| |leadingIndex|
+ |inv| |every?| |integer| |decrease| |factorPolynomial| |romberg|
+ |unexpand| |setLegalFortranSourceExtensions| |legendre| |terms|
+ |child?| |iicsc| |ground?| |primaryDecomp| |infieldint| |iiacosh|
+ |iiacoth| |minColIndex| |associatorDependence| |s19abf| |d01gbf|
+ |removeRoughlyRedundantFactorsInContents| |linkToFortran|
+ |tubePointsDefault| |ground| |physicalLength!| |resetBadValues|
+ |factorSFBRlcUnit| |ListOfTerms| |newLine|
+ |removeIrreducibleRedundantFactors| |eigenMatrix| |setVariableOrder|
+ |mindegTerm| |aromberg| |length| |complexLimit|
+ |unrankImproperPartitions0| |setClosed| |leadingMonomial| |rk4f|
+ |float?| |readLine!| |palgRDE0| |irreducible?| |f01rcf| |paren|
+ |argumentListOf| |algDsolve| |discriminantEuclidean| |scripts|
+ |univariatePolynomials| |writable?| |modularGcdPrimitive| |totalLex|
+ |startTableInvSet!| |leadingCoefficient| |concat!| |OMserve|
+ |ocf2ocdf| |center| |squareFreeFactors| |cons| |quote|
+ |clearTheSymbolTable| |cTanh| |blankSeparate| |iicsch| |bindings|
+ |transform| |seriesSolve| |makeSeries| |s13aaf| |primitiveMonomials|
+ |solveInField| |totalDifferential| |binomThmExpt| |inc|
+ |totalGroebner| |internalLastSubResultant| |leftDivide|
+ |rationalPower| |radPoly| |divisor| |primPartElseUnitCanonical|
+ |moebiusMu| |lyndon| |is?| |reductum| |quasiRegular| |euclideanSize|
+ |numberOfIrreduciblePoly| |log2| |unit?| |setPoly| |orbit| |tab|
+ |sech| |reverseLex| |string?| |shiftRoots| |leftMult|
+ |selectAndPolynomials| |pushdown| |rational| |elliptic?| |reset|
+ |solveLinear| |reduceLODE| |d01gaf| |purelyAlgebraic?| |tube|
+ |currentCategoryFrame| |triangularSystems| |alphabetic?| |submod|
+ |numer| |numberOfComponents| |enumerate| |univariatePolynomialsGcds|
+ |generic| |setColumn!| |credPol| |rst| |acothIfCan|
+ |halfExtendedSubResultantGcd2| |meatAxe| |weierstrass| |fortranDouble|
+ |normal?| |makeViewport2D| |vertConcat| |denom| |minRowIndex|
+ |selectMultiDimensionalRoutines|
+ |solveLinearPolynomialEquationByRecursion| |multiEuclidean| |notelem|
+ |lazyPseudoQuotient| |LazardQuotient| |head| |f02bjf| |pop!|
+ |sinh2csch| |reorder| |range| |listexp| |seed| |putGraph| |imagi|
+ |presub| |weights| |finiteBasis| |f04maf| |cyclicCopy| |prime|
+ |monomRDE| |leftExactQuotient| |setvalue!| |OMputSymbol|
+ |indicialEquations| |logIfCan| |pi| |fixedPointExquo| |viewPhiDefault|
+ |escape| |numberOfVariables| |balancedBinaryTree| |delete!|
+ |linearDependenceOverZ| |getMultiplicationTable| |column| |outputArgs|
+ |semiResultantEuclideannaif| |getCurve| |select!| |normalize|
+ |infinity| |zero?| |s21baf| |printStats!| |numberOfChildren|
+ |ScanRoman| |curveColor| |commutative?| |drawToScale| |palglimint0|
+ |normalized?| |coerceListOfPairs| |parent| |bracket| |rotatex|
+ |modularGcd| |tanh2coth| |closed?| |integral| |rootDirectory|
+ |singularAtInfinity?| |mkPrim| |primintegrate|
+ |unprotectedRemoveRedundantFactors| |csc2sin| |btwFact|
+ |idealiserMatrix| |computeBasis| |validExponential| |airyAi| |pack!|
+ |binaryFunction| |critMonD1| |npcoef| |double?| |musserTrials| |cAsin|
+ |e02dcf| |OMputObject| |leftRecip| |s17ajf| |orthonormalBasis| |nary?|
+ |primextendedint| |kernel| |mesh| |epilogue| |c02agf|
+ |fortranLinkerArgs| |seriesToOutputForm| |LyndonWordsList1| |maxint|
+ |exactQuotient!| |overset?| |OMgetType| |SturmHabicht| |prinshINFO|
+ |conical| |draw| |leftMinimalPolynomial| |laplace| |monic?|
+ |weakBiRank| |generalizedEigenvector| |multiEuclideanTree| |redPol|
+ |makeFloatFunction| |denomLODE| |OMencodingUnknown| |sin2csc|
+ |modifyPoint| |bag| |splitSquarefree| |color| |resultantEuclidean|
+ |testDim| |addPoint2| |reciprocalPolynomial| |torsion?| |OMgetEndBind|
+ |parametric?| |lazyGintegrate| |iFTable| |myDegree|
+ |drawComplexVectorField| |algebraic?| |wholeRagits| |OMputString|
+ |phiCoord| |result| |viewpoint| |inverseIntegralMatrix|
+ |integralMatrix| |genus| |sinIfCan| |f02axf| |zoom| |symbol?|
+ |derivative| |twist| |c06frf| |removeZeroes| |setfirst!| |poisson|
+ |central?| |genericRightDiscriminant| |identityMatrix| |nthRootIfCan|
+ |element?| |semiResultantEuclidean2| |unitsColorDefault| |bottom!|
+ |OMreadStr| |numberOfComposites| |tValues| |inverse| |setButtonValue|
+ |areEquivalent?| ~ |ParCond| |lagrange| |edf2efi|
+ |rewriteIdealWithHeadRemainder| |monomials| |space|
+ |linearAssociatedOrder| |cyclePartition| |insertRoot!| |stFuncN|
+ |wreath| |systemSizeIF| |generalTwoFactor| |trunc| |bit?|
+ |invertibleSet| |cot2tan| |figureUnits| |LyndonCoordinates|
+ |generalSqFr| |addmod| |cscIfCan| |numerators| |fill!| |s18dcf|
+ |llprop| |laurentIfCan| |selectSumOfSquaresRoutines| |nthFlag|
+ |sizeLess?| |OMputEndApp| |purelyTranscendental?| |iiacsch|
+ |rectangularMatrix| |constructorName| |cup| |mapExpon| |firstNumer|
+ |rightQuotient| |nonSingularModel| |ord| |generateIrredPoly|
+ |setAdaptive3D| |basisOfCentroid| |pointData| |trim| |roughBase?|
+ |squareFreePolynomial| |modifyPointData| |eigenvector| |leader|
+ |readable?| |components| |baseRDE| |coshIfCan| |cosh| |BumInSepFFE|
+ |type| |open| |makeSin| |lazyVariations| |leadingIdeal| |s17def|
+ |bezoutResultant| |basisOfNucleus| |setRealSteps| |charpol|
+ |Vectorise| |c06eaf| |tanh| |freeOf?| |postfix| |innerSolve1| |f04adf|
+ |dflist| |basisOfMiddleNucleus| |permutation| |quatern| |coth|
+ |basisOfLeftNucloid| |squareFreeLexTriangular| |makeTerm|
+ |reducedDiscriminant| |nextSublist| |expr| |showAll?|
+ |splitDenominator| |OMunhandledSymbol| |leadingExponent| |pointLists|
+ |exponent| |mvar| |isPlus| |patternMatch| |createZechTable| |f02aff|
+ |cap| |notOperand| |startTable!| |tan2trig| |scanOneDimSubspaces|
+ |key| |tableau| |generalPosition| |factorset| |low| |maxdeg|
+ |inconsistent?| |options| |firstUncouplingMatrix| |ksec| |finite?|
+ |coefChoose| |failed| |d01amf| |OMlistCDs| |linears| |findCycle|
+ |explicitlyEmpty?| |variable| |ptFunc| |nextsousResultant2|
+ |extendedResultant| |bat1| |cosSinInfo| |OMputBVar|
+ |particularSolution| |filename| |changeVar| |hash| |digit|
+ |subresultantSequence| |lyndonIfCan| |lineColorDefault| |OMputEndAtp|
+ |primPartElseUnitCanonical!| |linearAssociatedExp| |roughEqualIdeals?|
+ |pomopo!| |divideIfCan!| |constant| |simpsono| |getMeasure|
+ |maxPoints| |imagK| |not?| |count| |monicDecomposeIfCan|
+ |viewThetaDefault| LODO2FUN |iicot| |find| |OMReadError?| |nthr|
+ |airyBi| |patternVariable| |parse| |printCode| |e04ycf| |OMread|
+ |nsqfree| |ffactor| |backOldPos| |showAllElements| |bitCoef|
+ |midpoints| |squareMatrix| |nextItem| |subscript| |ode| |node| |exquo|
+ |flatten| |probablyZeroDim?| |unitVector| |numberOfImproperPartitions|
+ |hasoln| |createPrimitivePoly| |useSingleFactorBound| |c06gsf|
+ |presuper| |div| |say| |normalizeAtInfinity| |colorDef| |returnType!|
+ |isMult| |e02aef| |f07aef| |lowerCase!| |pr2dmp| |dot| |quo|
+ |SFunction| |OMgetFloat| |zeroSetSplit| |graphImage| |headReduced?|
+ |mapUp!| |conditionsForIdempotents| |d02bbf| |perfectNthRoot|
+ |fortranLiteral| |truncate| |basicSet| |f07adf| |pdct| |solid| |hex|
+ |OMgetEndApp| |characteristic| |rem| |d01bbf| |merge|
+ |pointSizeDefault| |testModulus| |positive?| |operation| |exp1| |nil|
+ |f04jgf| |expint| |selectIntegrationRoutines| |member?|
+ |OMgetVariable| |hostPlatform| |transcendent?| |lllp| |setrest!|
+ |perfectNthPower?| |node?| |hitherPlane| |mainCoefficients|
+ |subResultantGcdEuclidean| |constantToUnaryFunction| |c06ebf|
+ |infRittWu?| |fortranLiteralLine| |setStatus| |subtractIfCan| |cSin|
+ |pattern| |f04mbf| |sum| |rightDivide| |extensionDegree|
+ |euclideanGroebner| |autoReduced?| |outerProduct| |hermite| |zero|
+ |arrayStack| |newTypeLists| |imaginary| |leastPower| |leftQuotient|
+ |twoFactor| |cCosh| |approximate| |createLowComplexityTable|
+ |algebraicDecompose| |simplify| |specialTrigs| |thetaCoord| |complex|
+ |leftZero| |outputAsScript| |trigs| |c05nbf| |rightFactorCandidate|
+ |qinterval| |times!| |OMUnknownCD?| |And| |linGenPos| |squareFreePrim|
+ |operators| |primintfldpoly| |returnTypeOf| |cCot| |cyclicSubmodule|
+ |position!| |integralAtInfinity?| |Or| |monomial?| |interpolate|
+ |sylvesterSequence| |s21bbf| |subResultantChain| |normalForm|
+ |horizConcat| |e01sbf| |deleteProperty!| |critM| |taylorQuoByVar|
+ |Not| |charClass| |OMgetAttr| |hasPredicate?| |quotedOperators|
+ |revert| |leftRank| |rightExactQuotient| |normalDenom|
+ |characteristicSet| |ridHack1| |possiblyNewVariety?| |eulerE| |index|
+ |andOperands| |mr| |shiftRight| |listYoungTableaus| |squareTop|
+ |setPrologue!| |doublyTransitive?| |body| |formula| |compile|
+ |cyclic?| |determinant| |stopMusserTrials| |lyndon?| |char| |f02adf|
+ |coth2tanh| |mathieu12| |stirling1| |leadingCoefficientRicDE| |not|
+ |lieAdmissible?| |s17dlf| |removeRedundantFactorsInContents|
+ |torsionIfCan| |solveLinearPolynomialEquation|
+ |leftCharacteristicPolynomial| |mainVariable| |normal01| |froot|
+ |atoms| |clipBoolean| |selectPDERoutines| |SturmHabichtCoefficients|
+ |associatedSystem| |resultantnaif| |pair| |modularFactor| |conditionP|
+ |mapmult| |linearPart| |c06ekf| |completeHensel| |rur| |besselY|
+ |iiasin| |pseudoQuotient| |complexRoots| |fillPascalTriangle|
+ |PDESolve| |contains?| |showTheSymbolTable| |minimize|
+ |removeConstantTerm| |nrows| |polyRDE| |laplacian| |integers| |comp|
+ |float| |enterPointData| |separate| |width| |plotPolar|
+ |oneDimensionalArray| |isExpt| |innerint| |fortranInteger|
+ |atrapezoidal| |ncols| |setEmpty!| |mapdiv| |primeFrobenius|
+ |sqfrFactor| |fortranCarriageReturn| |PollardSmallFactor| |region|
+ |cyclicParents| |select| |OMputBind| |polygamma| |outputFloating|
+ |rootBound| |polar| |dictionary| |c05pbf| |insertMatch| |messagePrint|
+ |viewZoomDefault| |sdf2lst| |OMencodingSGML| |doubleComplex?|
+ |rightMult| |df2ef| |returns| |rischDE| |csch2sinh|
+ |showTheRoutinesTable| |write| |interReduce| |extractBottom!| |cfirst|
+ |summation| |critMTonD1| |save| |leftLcm| |moreAlgebraic?| |s18aff|
+ |s21bcf| |debug3D| |obj| |nextPrime| |latex| |branchIfCan|
+ |parametersOf| |normalDeriv| |solveid| |binary| |chainSubResultants|
+ |tab1| |screenResolution3D| |mapUnivariateIfCan| |cache|
+ |showClipRegion| |palgintegrate| |leftGcd| |message| |compound?|
+ |bezoutMatrix| |companionBlocks| |permutations| |LowTriBddDenomInv|
+ |stoseInvertibleSetreg| |graeffe| |neglist| |e02bef| |OMgetInteger|
+ |OMencodingBinary| |rootSplit| |hdmpToP| |integerBound| |numerator|
+ |radicalEigenvector| |makeRecord| |zeroDim?| |leftExtendedGcd|
+ |rubiksGroup| GE |basisOfLeftNucleus| |movedPoints| |setProperties|
+ |getCode| |digit?| |denominators| |insertionSort!| |input| |ignore?|
+ |palglimint| |supRittWu?| |mainDefiningPolynomial| GT |palgLODE|
+ |quickSort| |aQuadratic| |s18def| |associator| |OMconnectTCP|
+ |library| |e02ahf| |aspFilename| |high| |viewWriteDefault| LE |name|
+ |search| |monicModulo| |calcRanges| |elements|
+ |eisensteinIrreducible?| |gbasis| |clipWithRanges| |getMatch|
+ |rewriteIdealWithQuasiMonicGenerators| |removeSuperfluousCases|
+ |imagJ| LT |composite| |groebner?| |fortranTypeOf| |defineProperty|
+ |setMinPoints| |screenResolution| |odd?| |diophantineSystem|
+ |numberOfHues| |convergents| |nthFactor| Y |partialNumerators| |tanNa|
+ |exponents| |e01bgf| |drawStyle| |chiSquare1| |ode1| |measure| |li|
+ |push| |closedCurve| |fTable| |smith| |roughSubIdeal?| |mathieu24|
+ |ratPoly| |mathieu23| |set| |splitNodeOf!|
+ |semiSubResultantGcdEuclidean1| |createMultiplicationTable|
+ |nextPrimitiveNormalPoly| |t| |leftAlternative?| |rightDiscriminant|
+ |rCoord| |nlde| |localReal?| |zerosOf| |rowEch| |point?| |e02def|
+ |mirror| |graphStates| |viewport2D| |UnVectorise| |iisinh|
+ |plenaryPower| |f01qef| |OMputAttr| |factorGroebnerBasis|
+ |realEigenvalues| |powmod| UTS2UP |acschIfCan| |insert!|
+ |setMinPoints3D| |ef2edf| |finiteBound| |idealiser| |quoByVar|
+ |se2rfi| |sncndn| |max| |setnext!| |usingTable?| |s18acf| |nullity|
+ |wordInStrongGenerators| |key?| |pushuconst| |numericalIntegration|
+ |collectQuasiMonic| |complexZeros| RF2UTS |changeName| |accuracyIF|
+ |makeVariable| |countRealRootsMultiple| |domainOf| |associates?|
+ |s21bdf| |randnum| |trigs2explogs| |padicallyExpand| |iisqrt2|
+ |extendedIntegrate| |rightTrim| |iisec| |overlap| |cosh2sech|
+ |hyperelliptic| |critB| |infinite?| |quasiMonic?| |cartesian|
+ |indices| |cardinality| |leftTrim| |readLineIfCan!| |Si| |binomial|
+ |innerEigenvectors| |irreducibleFactor| |iifact| |rotatez|
+ |OMgetSymbol| |stoseInvertibleSetsqfreg| |tanhIfCan| |s17aff|
+ |nthFractionalTerm| |gcdPolynomial| |ScanFloatIgnoreSpacesIfCan|
+ |sumOfKthPowerDivisors| |var1StepsDefault| |rationalApproximation|
+ |numberOfDivisors| |transcendentalDecompose| |augment| |OMgetAtp|
+ |setprevious!| |getPickedPoints| |mdeg| |generalLambert| |cSinh|
+ |tanQ| |checkRur| |bernoulliB| |show| |sh| |bandedJacobian|
+ |monomRDEsys| |removeRoughlyRedundantFactorsInPol| |monom|
+ |mkIntegral| |rightRankPolynomial|
+ |dimensionOfIrreducibleRepresentation| |members| |pToDmp|
+ |extendedint| |LyndonBasis| |mainForm| |linearlyDependentOverZ?|
+ |sin?| |rightRemainder| |coefficient| |appendPoint| |round| |OMwrite|
+ |asechIfCan| |coerceP| |hypergeometric0F1| |kmax| |matrixDimensions|
+ |trace| |OMgetApp| |number?| |upDateBranches| |setleaves!|
+ |brillhartIrreducible?| |elRow2!| |delta| |directSum| |lllip|
+ |trace2PowMod| |nor| |rdHack1| |closeComponent| |psolve|
+ |resetAttributeButtons| |lfinfieldint| |common| |primitivePart!|
+ |partialDenominators| |createNormalPrimitivePoly| |lieAlgebra?|
+ |precision| |rewriteSetByReducingWithParticularGenerators| |sup|
+ |makeEq| |stopTableGcd!| |cTan| |lazyPrem| |reverse!| |leaves|
+ |retractable?| ** |generalInfiniteProduct| |digits|
+ |oddInfiniteProduct| |biRank| |showSummary| |deepExpand| |someBasis|
+ |cycleSplit!| |reify| |contract| |symmetricSquare| |fractRadix|
+ |sumOfSquares| |raisePolynomial| |createPrimitiveElement| |reverse|
+ |euclideanNormalForm| |resize| |front| |minGbasis| |maxrank| |over|
+ |minimumDegree| |representationType| |getMultiplicationMatrix|
+ |lastSubResultant| |mainPrimitivePart| |BasicMethod| |iExquo|
+ |maxColIndex| |cLog| |addPointLast| |nullSpace| |divisorCascade|
+ |stiffnessAndStabilityOfODEIF| |conjugates| |exactQuotient| EQ
+ |setlast!| |updatD| |f04asf| |diff| |stack| |nonLinearPart|
+ |gcdcofactprim| |d01alf| |mpsode| |showAttributes| |e04dgf|
+ |reducedForm| |e04gcf| |objects| |stripCommentsAndBlanks|
+ |partialQuotients| |rewriteSetWithReduction| |processTemplate| |prem|
+ |leftUnit| |withPredicates| |belong?| |floor| |iibinom| |cylindrical|
+ |subQuasiComponent?| |integer?| |distFact| |content| |explimitedint|
+ F2FG |ptree| |base| |anfactor| |cAcosh| |OMputVariable| |stFunc2|
+ |elem?| |cos2sec| |power!| |compiledFunction| |decimal|
+ |viewDeltaYDefault| |qqq| |s17akf| |controlPanel| |iicosh| |limitPlus|
+ |jacobiIdentity?| |internalAugment| |lambda| |OMgetBVar| |flagFactor|
+ |gradient| |polarCoordinates| |minPoly| |coerceS| |tensorProduct|
+ |computeCycleEntry| |elementary| |perspective| |morphism| |mathieu22|
+ |nilFactor| |OMopenString| |component| |choosemon| |antiCommutator|
+ |slash| |bright| |coleman| |lastSubResultantElseSplit|
+ |stoseIntegralLastSubResultant| |rangeIsFinite| |chineseRemainder|
+ |removeRedundantFactors| |multMonom| |equation| |sub| |quasiComponent|
+ |corrPoly| |dimensionsOf| |ratDsolve| |rspace| |Nul|
+ |topFortranOutputStack| |hasHi| |rroot| |e02gaf| |multiple| |mesh?|
+ |headReduce| |negative?| |rootsOf| |OMputInteger| |dequeue|
+ |removeZero| |tablePow| |lazyPseudoRemainder| |rightScalarTimes!|
+ |diagonal?| |power| |opeval| |basisOfRightNucloid| |prime?|
+ |applyQuote| |normalizedAssociate| |simpson| |cyclicEqual?| |connect|
+ |expenseOfEvaluation| |stopTable!| |vspace| |rowEchelon| |null?|
+ |primes| |medialSet| |baseRDEsys| |trapezoidal| |hexDigit?| |iisqrt3|
+ |OMmakeConn| |realRoots| |regime| |ramified?| |setPredicates|
+ |zeroDimensional?| |variable?| |acoshIfCan|
+ |tryFunctionalDecomposition?| |tanh2trigh| |norm| |rightAlternative?|
+ |cosIfCan| |monomialIntPoly| |setRow!| |equivOperands| |delete|
+ |d02cjf| |mainContent| |idealSimplify| |doubleResultant| |tan2cot|
+ |ruleset| |extend| |toroidal| |basisOfLeftAnnihilator| |split|
+ |OMsend| |coord| |exprHasLogarithmicWeights| |index?| |swap|
+ |complexElementary| |initial| |qfactor| |traceMatrix| |hdmpToDmp|
+ |skewSFunction| |s17adf| |invertIfCan| |sinhcosh|
+ |parabolicCylindrical| |s19acf| |ldf2lst| |resultant|
+ |strongGenerators| |minordet| |numberOfFactors| |OMreceive|
+ |selectNonFiniteRoutines| |lquo| |subscriptedVariables| |untab|
+ |lowerCase| |readIfCan!| |lazyResidueClass| |OMbindTCP|
+ |setScreenResolution| |suchThat| |previous| |d01aqf| |GospersMethod|
+ |lfextendedint| |one?| |schema| |antiCommutative?| |squareFree|
+ |setTex!| |isOp| |asecIfCan| |composites| |startPolynomial|
+ |distdfact| |transcendenceDegree| |commonDenominator| |pToHdmp|
+ |makeCos| |algint| |totalfract| |gderiv| |level| |laurentRep| |lexico|
+ |internalDecompose| |sayLength| |factorsOfCyclicGroupSize| |f01qcf|
+ |properties| |bitLength| |prindINFO| |inverseLaplace| |Lazard2| |hue|
+ |cycleElt| |setScreenResolution3D| |stoseInvertible?| |iiperm|
+ |dfRange| |ravel| |flexibleArray| |unitNormalize| |e04fdf|
+ |leadingSupport| |increment| |radicalSolve| |translate|
+ |factorsOfDegree| |s20acf| |UP2ifCan| |e01saf| |cycles| |reshape|
+ |recoverAfterFail| |crest| |bezoutDiscriminant| |bivariateSLPEBR|
+ |polyPart| |expandTrigProducts| |e01bff| |uniform| |surface|
+ |alphabetic| |showIntensityFunctions| |e02dff| |invmod| |close!|
+ |makeResult| |lastSubResultantEuclidean| |polygon?| |prevPrime| |mix|
+ |true| |f04atf| |listConjugateBases| |minPoints3D| |mainMonomial|
+ |log10| |perfectSquare?| |logical?| |showTheIFTable| |eulerPhi|
+ |drawCurves| |OMgetObject| |quadraticForm| |logGamma|
+ |constantCoefficientRicDE| |sumSquares| |isQuotient| |aCubic| |more?|
+ |generalizedContinuumHypothesisAssumed?| |numFunEvals3D|
+ |swapColumns!| |addMatchRestricted| |toseLastSubResultant|
+ |factorSquareFreePolynomial| |addiag| |xCoord| |makeViewport3D|
+ |gcdcofact| |merge!| |iicoth| |setAdaptive| |bumptab1|
+ |genericLeftTraceForm| |listOfMonoms| |outputForm| |identity|
+ |ldf2vmf| |singleFactorBound| |update| |list| |reduceByQuasiMonic|
+ |headRemainder| |lowerCase?| |solveRetract| |radicalOfLeftTraceForm|
+ |associative?| |consnewpol| |zeroVector| |e04ucf| |bsolve| |car|
+ |subResultantGcd| |duplicates| |resultantReduitEuclidean| |writeLine!|
+ |debug| |extractProperty| |iipow| |dim| |setMaxPoints| |discreteLog|
+ |Hausdorff| |sequences| |repSq| |cdr| |removeRedundantFactorsInPols|
+ |genericLeftDiscriminant| |refine| |getVariableOrder| |matrixGcd|
+ |quotient| |pile| |height| |denominator| |setLabelValue|
+ |setDifference| |f02fjf| |basisOfCommutingElements| |e02agf| |largest|
+ |brace| |startTableGcd!| |iprint| |discriminant| |multiset|
+ |removeCoshSq| |commutativeEquality| |setIntersection| |lighting|
+ |RemainderList| |primlimintfrac| |UpTriBddDenomInv| |frobenius|
+ |expandLog| |unparse| |elColumn2!| |box| |radicalSimplify| |pushdterm|
+ |setUnion| |selectOrPolynomials| |getConstant| |meshFun2Var| |sec2cos|
+ |directory| |selectPolynomials| |unit| |optional?| |listBranches|
+ |oddintegers| |radicalEigenvectors| |position| |apply|
+ |showArrayValues| |sumOfDivisors| ~= |inR?| |collect| |nullary?|
+ |polygon| |roman| |rootPower| |intensity| |lookup| |pointColor|
+ |leftNorm| |OMputError| |radicalRoots| |degreeSubResultant| |coerce|
+ |coerceL| |value| |hconcat| |integralBasisAtInfinity| |nextSubsetGray|
+ |empty?| |comparison| |complement| |useEisensteinCriterion?| |size|
+ |noLinearFactor?| |genericLeftTrace| |completeSmith| |construct|
+ |rk4qc| |ddFact| |f04faf| |linearAssociatedLog| |shrinkable|
+ |quadratic?| |qroot| |iiasec| |comment| |positiveRemainder| |script|
+ |rightFactorIfCan| |viewDeltaXDefault| |subNode?| |sturmVariationsOf|
+ |d03edf| |integral?| |getStream| |knownInfBasis| |prinpolINFO|
+ |rightRecip| |e04naf| |dark| |ratpart| |cAtan|
+ |indiceSubResultantEuclidean| |pleskenSplit| |ricDsolve| |sparsityIF|
+ |first| |groebSolve| |cotIfCan| |root| |karatsubaDivide| |lexGroebner|
+ |yCoord| |showScalarValues| |moduleSum| |failed?| |makeCrit|
+ |reduction| |rest| |square?| |quoted?| |tex| |minset| |bringDown|
+ |showRegion| |closedCurve?| |mapCoef| |d02gaf| |substitute|
+ |karatsubaOnce| |bfEntry| |lSpaceBasis| |d01ajf| |fractionPart|
+ |f02xef| |crushedSet| |standardBasisOfCyclicSubmodule| |difference|
+ |removeDuplicates| |realElementary| |degreeSubResultantEuclidean|
+ |HenselLift| |meshPar1Var| |erf| |linSolve| |stop| |pseudoRemainder|
+ |d02raf| |changeBase| |rule| |mindeg| |multiplyExponents|
+ |inverseIntegralMatrixAtInfinity| |halfExtendedSubResultantGcd1|
+ |polyred| |scale| |uncouplingMatrices| |ipow| |fortranCompilerName|
+ |zeroDimPrime?| |arg1| |leftUnits| |iidprod| |pole?| |df2fi|
+ |symmetricTensors| |ref| |fullPartialFraction| |arg2|
+ |radicalEigenvalues| |stronglyReduced?| |dilog| |cyclotomic| |back|
+ |collectUpper| |reduced?| |symbolTable| |lifting1| |lintgcd|
+ |perfectSqrt| |s20adf| |f02bbf| |enterInCache| |lprop| |sin|
+ |divideIfCan| |red| |separateDegrees| |symbolIfCan| |second|
+ |OMsupportsCD?| |conditions| |setleft!| |explogs2trigs| |henselFact|
+ |compactFraction| |cos| |pushFortranOutputStack|
+ |rightCharacteristicPolynomial| |shiftLeft| |rightUnits| |third|
+ |c06gcf| |match| |elt| |paraboloidal| |exprex| |OMgetEndObject|
+ |quartic| |tan| |popFortranOutputStack| |normFactors|
+ |exponentialOrder| |and?| |mergeFactors|
+ |solveLinearPolynomialEquationByFractions| |oddlambert|
+ |axesColorDefault| |outputAsFortran| |tanAn| |module| |acosIfCan|
+ |rootNormalize| |lfextlimint| |addPoint| |continuedFraction| |setelt|
+ |cyclotomicDecomposition| |po| |nonQsign| |exists?| |innerSolve|
+ |c06gbf| |setEpilogue!| |varselect| |omError| |initiallyReduced?|
+ |weight| |e02ddf| |copy| |cot2trig| |predicate|
+ |integralMatrixAtInfinity| |sorted?| |removeSinhSq| |pdf2df| |queue|
+ |plusInfinity| |primitivePart| |empty| |equality| |term?| |curryLeft|
+ |minusInfinity| |subset?| |subTriSet?| |autoCoerce| |qelt|
+ |expextendedint| |operator| |f01rdf| |increase|
+ |stoseInvertible?sqfreg| |coHeight| |edf2df| |digamma|
+ |shanksDiscLogAlgorithm| |iiGamma| |conjugate| |xRange| |adaptive|
+ |e01bef| |substring?| |gcdprim| |cAcsch| |chebyshevT| |yRange|
+ |separateFactors| |printingInfo?| |lhs| |rootKerSimp|
+ |increasePrecision| |monicLeftDivide| |zRange| |OMParseError?|
+ |currentScope| |rhs| |suffix?| |cAcoth| |map!| |parameters| |ode2|
+ |rotate| |laguerreL| |linearDependence| |qsetelt!| |zeroSquareMatrix|
+ |getRef| |prefix?| |critBonD| |geometric| |vector| |f02awf|
+ |LagrangeInterpolation| |multiplyCoefficients| |pow| |differentiate|
+ |rationalFunction| |viewSizeDefault| |exprToGenUPS| |interval|
+ |palgRDE| |nextPartition| |univcase| |mainMonomials| |external?|
+ |HermiteIntegrate| |acsch| |d01akf| |f01qdf| |initials|
+ |coercePreimagesImages| |shallowCopy| |axes| |infix?| |outputMeasure|
+ |goto| |palginfieldint| |mapSolve| |constantRight| |simplifyExp|
+ |mask| |kroneckerDelta| |prepareDecompose| |superHeight|
+ |symmetricGroup| |swap!| |f02aef| |problemPoints| |janko2| |setValue!|
+ |definingInequation| |s17dgf| |deepestTail| |iflist2Result|
+ |reducedSystem| |complexIntegrate| |OMopenFile| |basisOfRightNucleus|
+ |anticoord| |limitedIntegrate| |algebraicSort| NOT |lazy?| |traverse|
+ |rightGcd| |ParCondList| |iomode| |youngGroup| |measure2Result|
+ |OMreadFile| OR |OMputEndError| |curve| |currentSubProgram|
+ |sechIfCan| |isobaric?| |sort| |aQuartic| |sign| |heap| |units| AND
+ |setProperty| |lfintegrate| |Lazard| |simplifyLog| |Ei| |s19adf|
+ |entries| |makeprod| |alphanumeric?| |tRange| |sortConstraints|
+ |elRow1!| |iiasech| |rotatey| |taylorIfCan| |e02ajf| |listOfLists|
+ |style| |quadratic| |callForm?| |halfExtendedResultant2|
+ |OMUnknownSymbol?| |tryFunctionalDecomposition| |makeGraphImage|
+ |f04qaf| |OMconnInDevice| |cn| |factorAndSplit| |fibonacci|
+ |sizePascalTriangle| |quasiRegular?| |iiatanh| |divergence| |d03eef|
+ |listRepresentation| |changeMeasure| |iisech| |duplicates?|
+ |genericRightMinimalPolynomial| |palgextint0| |build| |tower|
+ |extendedEuclidean| |isTimes| |random| |reseed| |fortran| |code|
+ |term| |roughUnitIdeal?| |nextNormalPoly| |semicolonSeparate| |d02gbf|
+ |factorSquareFreeByRecursion| |nextNormalPrimitivePoly| |left|
+ |generalizedContinuumHypothesisAssumed| |ramifiedAtInfinity?|
+ |symmetricRemainder| |normalizeIfCan| |matrix| |newReduc|
+ |numberOfNormalPoly| |nextIrreduciblePoly| |outputFixed| |f07fef|
+ |expPot| |right| |powerAssociative?| |d02bhf| |factor1|
+ |restorePrecision| |tubeRadiusDefault| |principal?| |remainder|
+ |leastAffineMultiple| |d03faf| |f02ajf| |coerceImages|
+ |extendedSubResultantGcd| |badValues| |countRealRoots| |s19aaf|
+ |iilog| |overlabel| |stopTableInvSet!| |padecf| |plus!| |cAtanh|
+ |normalise| |numberOfOperations| |or?| |complexNormalize| * |shift|
+ |approximants| |makeFR| |computeInt| |clearFortranOutputStack|
+ |relationsIdeal| |rightPower| |legendreP| |firstDenom| |getOperands|
+ |explicitEntries?| |checkForZero| |subspace| |const| |integralBasis|
+ |leftOne| |collectUnder| |eyeDistance| |createMultiplicationMatrix|
+ |minimumExponent| |leftPower| |f2df| |univariatePolynomial|
+ |unitNormal| |even?| |removeSuperfluousQuasiComponents| |hexDigit|
+ |parts| |constantIfCan| |s15adf| |realEigenvectors| |double|
+ |createRandomElement| |makeObject| |yellow| |c06gqf| |split!|
+ |OMputEndAttr| |zeroMatrix| |rk4a| |vconcat| |maxIndex| |s17dhf|
+ |cubic| |rootProduct| |rename!| |rightMinimalPolynomial| |rotate!|
+ |unravel| |alphanumeric| |cAcos| |condition| |OMclose| |contours|
+ |besselK| |coef| |binding| |OMencodingXML|
+ |purelyAlgebraicLeadingMonomial?| |deepestInitial| |diagonalMatrix|
+ |fortranLogical| |antisymmetric?| |triangular?| |rischDEsys|
+ |halfExtendedResultant1| |eq?| |f04axf| |variationOfParameters|
+ |deriv| |repeatUntilLoop| |setMaxPoints3D| |diagonalProduct|
+ |groebnerIdeal| |OMputEndBVar| |evaluate| |multinomial| |d02kef|
+ |distance| |init| |typeLists| |pmintegrate| |nthCoef| |mapMatrixIfCan|
+ |useNagFunctions| |setOfMinN| |e02daf| |getSyntaxFormsFromFile|
+ |supersub| |intersect| |leftFactor| |positiveSolve| |currentEnv|
+ |harmonic| |polCase| |reopen!| |degreePartition| |direction|
+ |constantOperator| |integerIfCan| |completeEval| |retract| |close|
+ |makeYoungTableau| |varList| |fixedPoints| |cothIfCan|
+ |nextsubResultant2| |linearPolynomials| |declare!| |minPoints|
+ |pushup| |lazyEvaluate| |randomR| |clearTheIFTable| |reflect|
+ |lowerPolynomial| |getExplanations| |nativeModuleExtension| |euler|
+ |identitySquareMatrix| |normalizedDivide| |e04jaf| |f01ref| |display|
+ |optAttributes| |predicates| |iroot| |clearTheFTable| |rightLcm|
+ |exQuo| |f02aaf| |semiResultantReduitEuclidean| |d01apf|
+ |linearMatrix| |rootOfIrreduciblePoly| |showTypeInOutput| |cPower|
+ |socf2socdf| |explicitlyFinite?| |conjug| |bivariatePolynomials|
+ |s18adf| |goodnessOfFit| |complete| |coordinates| |clipParametric|
+ |constantKernel| |s17aef| F |userOrdered?| |prologue|
+ |divideExponents| |nil?| |safeFloor| |impliesOperands| |subPolSet?|
+ |createGenericMatrix| |pquo| FG2F |leastMonomial| |f02abf|
+ |boundOfCauchy| |dihedral| |pointColorPalette| |internalIntegrate0|
+ |startStats!| |rischNormalize| |symmetricDifference| |f01mcf|
+ |changeThreshhold| |write!| |addMatch| |fullDisplay| |copies|
+ |att2Result| |sqfree| |critpOrder| |open?| |pdf2ef| |reducedQPowers|
+ |OMgetEndBVar| |f04mcf| |realZeros| |removeDuplicates!|
+ |binaryTournament| |/\\| |prinb| |resetNew| |heapSort|
+ |infiniteProduct| |splitConstant| |commutator| |pushNewContour|
+ |lazyIrreducibleFactors| |generic?| |extractPoint| |rightUnit| |\\/|
+ |infieldIntegrate| |partialFraction| |weighted| |possiblyInfinite?|
+ |minIndex| |extract!| |shellSort| |label| |updatF| |dihedralGroup|
+ |viewDefaults| |lifting| |e02zaf| |s13adf| |iicos| |cycleLength|
+ |rootOf| |point| |cAsech| |unvectorise| |factorSquareFree|
+ |dominantTerm| |deleteRoutine!| |c02aff| |antisymmetricTensors|
+ |newSubProgram| |lambert| |isList| |coefficients|
+ |trailingCoefficient| |edf2fi| |intcompBasis| |f07fdf| |birth|
+ |points| |nand| |s17dcf| |satisfy?| |listLoops| |setchildren!|
+ |multisect| |irreducibleFactors| |rightZero| |frst| |partition|
+ |karatsuba| GF2FG |prolateSpheroidal| |functionIsOscillatory| |fi2df|
+ |plus| |remove| |fmecg| |tracePowMod| |groebnerFactorize| |makeMulti|
+ |series| |dioSolve| |divisors| |rowEchLocal| |superscript|
+ |meshPar2Var| |combineFeatureCompatibility| |critT| |concat|
+ |invmultisect| |shade| |semiResultantEuclidean1| |hspace|
+ |wordInGenerators| |primextintfrac| |f02akf| |title| |e01sff|
+ |stosePrepareSubResAlgo| |endOfFile?| |decompose| |eigenvectors|
+ |jordanAdmissible?| |safeCeiling| |unitCanonical| |printInfo!| |last|
+ |sPol| ^ |rightRegularRepresentation| |has?| |call| |cCsc|
+ |sizeMultiplication| |internalZeroSetSplit| |expintfldpoly| |cCoth|
+ |zeroOf| |assoc| |setProperties!| |octon| |dequeue!| |firstSubsetGray|
+ |row| |limit| |resultantReduit| |OMgetBind| |hasTopPredicate?|
+ |semiIndiceSubResultantEuclidean| |mapGen| |chiSquare| |iiexp|
+ |tableForDiscreteLogarithm| |times| |lflimitedint| |subMatrix| |list?|
+ |monicCompleteDecompose| |acotIfCan| |min| |countable?| |packageCall|
+ |minus!| |deepCopy| |segment| |upperCase!| |rk4| |loadNativeModule|
+ |secIfCan| |gcdPrimitive| |chebyshevU| |cyclicGroup| |ScanArabic|
+ |tanSum| |htrigs| |dmp2rfi| |insertTop!| |bits| |curry| |OMgetString|
+ |exprHasAlgebraicWeight| |showFortranOutputStack| |goodPoint|
+ |genericLeftMinimalPolynomial| |makeUnit| |var2StepsDefault|
+ |setsubMatrix!| |LiePolyIfCan| |asimpson| |gramschmidt| |blue|
+ |characteristicSerie| |getProperty| |graphCurves| |rightOne|
+ |lexTriangular| |leviCivitaSymbol| |homogeneous?| |permanent|
+ |factors| |argumentList!| |product| |ran| |diag| |option| |elliptic|
+ |bubbleSort!| |super| |lazyIntegrate| |makeSketch| |highCommonTerms|
+ |leftRegularRepresentation| |universe| |constantLeft| |computePowers|
+ |sincos| |sample| |getProperties| |simplifyPower| |outputGeneral|
+ |logpart| |aLinear| |integralLastSubResultant| |groebner|
+ |characteristicPolynomial| |green| |associatedEquations|
+ |rowEchelonLocal| |mightHaveRoots| |algebraicOf| |reindex|
+ |incrementKthElement| |setelt!| |lex| |yCoordinates|
+ |zeroSetSplitIntoTriangularSystems| |complexForm| |prepareSubResAlgo|
+ |cycleTail| |outputList| |patternMatchTimes| |insertBottom!|
+ |mkAnswer| |subst| |tanIfCan| |fintegrate| |check| |printStatement|
+ |rightExtendedGcd| |identification| |hasSolution?| |errorInfo| |Gamma|
+ |shuffle| |abelianGroup| |mapBivariate| |partitions| |univariateSolve|
+ |cyclotomicFactorization| |branchPointAtInfinity?|
+ |viewWriteAvailable| |redmat| |dmpToP| |upperCase| |edf2ef|
+ |getZechTable| |shallowExpand| |putColorInfo| |pointColorDefault|
+ |rarrow| |semiSubResultantGcdEuclidean2| |rewriteIdealWithRemainder|
+ |shufflein| |mantissa| |principalIdeal| |generator| |rules|
+ |completeEchelonBasis| |children| |cCsch| |ceiling| |inHallBasis?|
+ |wronskianMatrix| |leadingTerm| |curve?| |pseudoDivide| |compdegd|
+ |semiDiscriminantEuclidean| |integralDerivationMatrix| |setClipValue|
+ |algebraicVariables| |order| |wholeRadix| |intPatternMatch| |badNum|
+ |isPower| |iteratedInitials| |ellipticCylindrical| |atom?|
+ |definingEquations| |f01brf| |zag| |OMcloseConn| |setProperty!|
+ |absolutelyIrreducible?| |resultantEuclideannaif|
+ |SturmHabichtSequence| |univariate?| |clearDenominator| |size?|
+ |iiacos| |f2st| |dmpToHdmp| |subHeight| |setCondition!|
+ |selectFiniteRoutines| |applyRules| |palgint| |replaceKthElement|
+ |remove!| |subNodeOf?| |approxNthRoot| |subResultantsChain| |dAndcExp|
+ |mathieu11| |minrank| |stoseSquareFreePart| |getGoodPrime|
+ |unaryFunction| |chvar| |symbolTableOf| |s14baf| |polyRicDE|
+ |noncommutativeJordanAlgebra?| |genericLeftNorm| |implies|
+ |exteriorDifferential| |LazardQuotient2| |OMgetEndError| BY
+ |regularRepresentation| |monicRightFactorIfCan| |nthExponent|
+ |computeCycleLength| |categoryFrame| |adaptive3D?| |vectorise|
+ |e01bhf| |nextLatticePermutation| |xor| |brillhartTrials| |cycle|
+ |interpretString| |tree| |arity| |getIdentifier| |powers|
+ |setFormula!| |modulus| |fractRagits| |generators| |d01asf|
+ |primitiveElement| |differentialVariables| |fortranCharacter|
+ |fractionFreeGauss!| |optimize| |c05adf| |binarySearchTree| |iitan|
+ |safetyMargin| |selectsecond| |tubePlot| |createThreeSpace| |nthRoot|
+ |noKaratsuba| |monicDivide| |balancedFactorisation| |lo| |inrootof|
+ |generalizedEigenvectors| |mainCharacterization| |cyclicEntries|
+ |drawComplex| |cschIfCan| |changeNameToObjf| |ODESolve| |makeop|
+ |tail| |less?| |incr| |rangePascalTriangle|
+ |initializeGroupForWordProblem| |leftRemainder| |mainValue|
+ |dimensions| |fixPredicate| |s18aef| |primeFactor| |genericPosition|
+ |infix| |hi| |genericRightNorm| |fortranReal| |compBound|
+ |symmetricProduct| |integralRepresents| |mulmod| |c06fqf| |s17acf|
+ |factorials| |mainVariables| |groebgen| |FormatArabic| |rightNorm|
+ |cAcsc| |e04mbf| |divide| |complex?| |unary?| |ratDenom| |basis|
+ |complexSolve| |iiabs| |e02bbf| |functionIsContinuousAtEndPoints|
+ |match?| |output| |numberOfMonomials| |rightTrace|
+ |createLowComplexityNormalBasis| |graphs| |solveLinearlyOverQ|
+ |mapExponents| |topPredicate| |OMsupportsSymbol?| |rename|
+ |eigenvalues| |ReduceOrder| |linearlyDependent?| |minPol|
+ |sylvesterMatrix| |orOperands| |permutationGroup| |sort!| |nodeOf?|
+ |quadraticNorm| |stiffnessAndStabilityFactor| |equiv?| |LiePoly|
+ |leftTrace| |doubleFloatFormat| |hMonic| |clipPointsDefault| |cAsec|
+ |bivariate?| |exprToUPS| |solve| |makingStats?| |vark| |datalist|
+ |extension| |solid?| |#| |normalElement| |iisin| |triangulate|
+ |OMputEndBind| |asinIfCan| |s14aaf| |complexEigenvalues| |var2Steps|
+ |getOperator| |toScale| |OMgetEndAttr| |mat| |e02bcf|
+ |functionIsFracPolynomial?| |errorKind| |e01baf| |bitTruth|
+ |copyInto!| |lfunc| |complementaryBasis| |initiallyReduce| |diagonal|
+ |nextColeman| |printHeader| |generate| |cond| |complexEigenvectors|
+ |rank| |lazyPquo| |extractSplittingLeaf| |recur| |OMconnOutDevice|
+ |status| |palgint0| |pushucoef| |singular?| |realSolve| |radix| |qPot|
+ |atanIfCan| |incrementBy| |toseSquareFreePart| |mergeDifference|
+ |intermediateResultsIF| |totalDegree| |sinhIfCan| |modTree| |expand|
+ |rightTraceMatrix| |expressIdealMember| = |clearTable!| |sech2cosh|
+ |delay| |expt| |filterWhile| |routines| |wrregime| |primitive?|
+ |bernoulli| |basisOfRightAnnihilator| |removeCosSq| |filterUntil|
+ |complexExpand| |setright!| |indicialEquation| < |forLoop| |hessian|
+ |top!| |setref| |createPrimitiveNormalPoly| |lists| > |nodes|
+ |multiple?| |pascalTriangle| |besselJ| |infinityNorm| |inf| <=
+ |bumprow| |replace| |internalInfRittWu?| |lepol| |magnitude| |eval|
+ |leftScalarTimes!| |numFunEvals| >= |quotientByP| |f01bsf|
+ |maximumExponent| |hclf| |dec| |integrate| |maxrow| |FormatRoman|
+ |outputAsTex| |pureLex| |solve1| |internal?| |OMputAtp| |mapDown!|
+ |int| |scaleRoots| |getGraph| |extractIfCan| |virtualDegree| |cExp| +
+ |op| |any?| |exprToXXP| |flexible?| |repeating?| |bfKeys| |recip| -
+ |cSec| |checkPrecision| |basisOfCenter| |block| |append| |void|
+ |represents| |setFieldInfo| / |mainVariable?| |parabolic| |atanhIfCan|
+ |null| |intChoose| |d02ejf| |powern| |child| |inverseColeman|
+ |interpret| |lazyPseudoDivide| |case| |factorFraction|
+ |nextPrimitivePoly| |f04arf| |insert| |linear?| |Zero| |create|
+ |generalizedInverse| UP2UTS |doubleRank| D |One| |toseInvertibleSet|
+ |deref| |genericRightTraceForm| |removeRoughlyRedundantFactorsInPols|
+ |outlineRender| |viewport3D| |optional| |plot| |algSplitSimple|
+ |doubleDisc| |cAsinh| |linear| |cross| |normDeriv2| |adjoint|
+ |symFunc| |d01fcf| |polynomial| |maxPoints3D| |typeList|
+ |OMputEndObject| |coordinate| |palgextint| |OMsetEncoding|
+ |prefixRagits| |ranges| |dimension| |initTable!| |dom| |Frobenius|
+ |spherical| |print| |maxRowIndex| |nil| |infinite| |arbitraryExponent|
+ |approximate| |complex| |shallowMutable| |canonical| |noetherian|
+ |central| |partiallyOrderedSet| |arbitraryPrecision|
+ |canonicalsClosed| |noZeroDivisors| |rightUnitary| |leftUnitary|
+ |additiveValuation| |unitsKnown| |canonicalUnitNormal|
+ |multiplicativeValuation| |finiteAggregate| |shallowlyMutable|
+ |commutative|) \ No newline at end of file
diff --git a/src/share/algebra/interp.daase b/src/share/algebra/interp.daase
index 023e05c8..21b37c23 100644
--- a/src/share/algebra/interp.daase
+++ b/src/share/algebra/interp.daase
@@ -1,4912 +1,4920 @@
-(3139944 . 3417125229)
-((-4159 (((-108) (-1 (-108) |#2| |#2|) $) 63) (((-108) $) NIL)) (-2361 (($ (-1 (-108) |#2| |#2|) $) 18) (($ $) NIL)) (-4101 ((|#2| $ (-523) |#2|) NIL) ((|#2| $ (-1136 (-523)) |#2|) 34)) (-4091 (($ $) 59)) (-1830 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 40) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 38) ((|#2| (-1 |#2| |#2| |#2|) $) 37)) (-1894 (((-523) (-1 (-108) |#2|) $) 22) (((-523) |#2| $) NIL) (((-523) |#2| $ (-523)) 73)) (-3133 (((-589 |#2|) $) 13)) (-3123 (($ (-1 (-108) |#2| |#2|) $ $) 48) (($ $ $) NIL)) (-3063 (($ (-1 |#2| |#2|) $) 29)) (-3015 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 44)) (-3334 (($ |#2| $ (-523)) NIL) (($ $ $ (-523)) 50)) (-2660 (((-3 |#2| "failed") (-1 (-108) |#2|) $) 24)) (-2720 (((-108) (-1 (-108) |#2|) $) 21)) (-1502 ((|#2| $ (-523) |#2|) NIL) ((|#2| $ (-523)) NIL) (($ $ (-1136 (-523))) 49)) (-3725 (($ $ (-523)) 56) (($ $ (-1136 (-523))) 55)) (-2452 (((-710) (-1 (-108) |#2|) $) 26) (((-710) |#2| $) NIL)) (-2580 (($ $ $ (-523)) 52)) (-4124 (($ $) 51)) (-3985 (($ (-589 |#2|)) 53)) (-2785 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 64) (($ (-589 $)) 62)) (-3976 (((-794) $) 69)) (-1505 (((-108) (-1 (-108) |#2|) $) 20)) (-4037 (((-108) $ $) 72)) (-4052 (((-108) $ $) 75)))
-(((-18 |#1| |#2|) (-10 -8 (-15 -4037 ((-108) |#1| |#1|)) (-15 -3976 ((-794) |#1|)) (-15 -4052 ((-108) |#1| |#1|)) (-15 -2361 (|#1| |#1|)) (-15 -2361 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -4091 (|#1| |#1|)) (-15 -2580 (|#1| |#1| |#1| (-523))) (-15 -4159 ((-108) |#1|)) (-15 -3123 (|#1| |#1| |#1|)) (-15 -1894 ((-523) |#2| |#1| (-523))) (-15 -1894 ((-523) |#2| |#1|)) (-15 -1894 ((-523) (-1 (-108) |#2|) |#1|)) (-15 -4159 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3123 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -4101 (|#2| |#1| (-1136 (-523)) |#2|)) (-15 -3334 (|#1| |#1| |#1| (-523))) (-15 -3334 (|#1| |#2| |#1| (-523))) (-15 -3725 (|#1| |#1| (-1136 (-523)))) (-15 -3725 (|#1| |#1| (-523))) (-15 -1502 (|#1| |#1| (-1136 (-523)))) (-15 -3015 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2785 (|#1| (-589 |#1|))) (-15 -2785 (|#1| |#1| |#1|)) (-15 -2785 (|#1| |#2| |#1|)) (-15 -2785 (|#1| |#1| |#2|)) (-15 -3985 (|#1| (-589 |#2|))) (-15 -2660 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1502 (|#2| |#1| (-523))) (-15 -1502 (|#2| |#1| (-523) |#2|)) (-15 -4101 (|#2| |#1| (-523) |#2|)) (-15 -2452 ((-710) |#2| |#1|)) (-15 -3133 ((-589 |#2|) |#1|)) (-15 -2452 ((-710) (-1 (-108) |#2|) |#1|)) (-15 -2720 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1505 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3063 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4124 (|#1| |#1|))) (-19 |#2|) (-1123)) (T -18))
-NIL
-(-10 -8 (-15 -4037 ((-108) |#1| |#1|)) (-15 -3976 ((-794) |#1|)) (-15 -4052 ((-108) |#1| |#1|)) (-15 -2361 (|#1| |#1|)) (-15 -2361 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -4091 (|#1| |#1|)) (-15 -2580 (|#1| |#1| |#1| (-523))) (-15 -4159 ((-108) |#1|)) (-15 -3123 (|#1| |#1| |#1|)) (-15 -1894 ((-523) |#2| |#1| (-523))) (-15 -1894 ((-523) |#2| |#1|)) (-15 -1894 ((-523) (-1 (-108) |#2|) |#1|)) (-15 -4159 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3123 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -4101 (|#2| |#1| (-1136 (-523)) |#2|)) (-15 -3334 (|#1| |#1| |#1| (-523))) (-15 -3334 (|#1| |#2| |#1| (-523))) (-15 -3725 (|#1| |#1| (-1136 (-523)))) (-15 -3725 (|#1| |#1| (-523))) (-15 -1502 (|#1| |#1| (-1136 (-523)))) (-15 -3015 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2785 (|#1| (-589 |#1|))) (-15 -2785 (|#1| |#1| |#1|)) (-15 -2785 (|#1| |#2| |#1|)) (-15 -2785 (|#1| |#1| |#2|)) (-15 -3985 (|#1| (-589 |#2|))) (-15 -2660 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1502 (|#2| |#1| (-523))) (-15 -1502 (|#2| |#1| (-523) |#2|)) (-15 -4101 (|#2| |#1| (-523) |#2|)) (-15 -2452 ((-710) |#2| |#1|)) (-15 -3133 ((-589 |#2|) |#1|)) (-15 -2452 ((-710) (-1 (-108) |#2|) |#1|)) (-15 -2720 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1505 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3063 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4124 (|#1| |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-1666 (((-1174) $ (-523) (-523)) 40 (|has| $ (-6 -4249)))) (-4159 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-786)))) (-2361 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4249))) (($ $) 88 (-12 (|has| |#1| (-786)) (|has| $ (-6 -4249))))) (-3400 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-786)))) (-2282 (((-108) $ (-710)) 8)) (-4101 ((|#1| $ (-523) |#1|) 52 (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) 58 (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4248)))) (-1640 (($) 7 T CONST)) (-4091 (($ $) 90 (|has| $ (-6 -4249)))) (-4082 (($ $) 100)) (-3917 (($ $) 78 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ |#1| $) 77 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4248)))) (-3073 ((|#1| $ (-523) |#1|) 53 (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) 51)) (-1894 (((-523) (-1 (-108) |#1|) $) 97) (((-523) |#1| $) 96 (|has| |#1| (-1016))) (((-523) |#1| $ (-523)) 95 (|has| |#1| (-1016)))) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-2348 (($ (-710) |#1|) 69)) (-1344 (((-108) $ (-710)) 9)) (-1798 (((-523) $) 43 (|has| (-523) (-786)))) (-3268 (($ $ $) 87 (|has| |#1| (-786)))) (-3123 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-786)))) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2133 (((-523) $) 44 (|has| (-523) (-786)))) (-2644 (($ $ $) 86 (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-3334 (($ |#1| $ (-523)) 60) (($ $ $ (-523)) 59)) (-2909 (((-589 (-523)) $) 46)) (-2290 (((-108) (-523) $) 47)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-3879 ((|#1| $) 42 (|has| (-523) (-786)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-2408 (($ $ |#1|) 41 (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-1410 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) 48)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ (-523) |#1|) 50) ((|#1| $ (-523)) 49) (($ $ (-1136 (-523))) 63)) (-3725 (($ $ (-523)) 62) (($ $ (-1136 (-523))) 61)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2580 (($ $ $ (-523)) 91 (|has| $ (-6 -4249)))) (-4124 (($ $) 13)) (-3077 (((-499) $) 79 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 70)) (-2785 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-589 $)) 65)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) 84 (|has| |#1| (-786)))) (-4061 (((-108) $ $) 83 (|has| |#1| (-786)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-4070 (((-108) $ $) 85 (|has| |#1| (-786)))) (-4052 (((-108) $ $) 82 (|has| |#1| (-786)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-19 |#1|) (-129) (-1123)) (T -19))
-NIL
-(-13 (-349 |t#1|) (-10 -7 (-6 -4249)))
-(((-33) . T) ((-97) -3255 (|has| |#1| (-1016)) (|has| |#1| (-786))) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-786)) (|has| |#1| (-563 (-794)))) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-263 #0=(-523) |#1|) . T) ((-265 #0# |#1|) . T) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-349 |#1|) . T) ((-462 |#1|) . T) ((-556 #0# |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-594 |#1|) . T) ((-786) |has| |#1| (-786)) ((-1016) -3255 (|has| |#1| (-1016)) (|has| |#1| (-786))) ((-1123) . T))
-((-2999 (((-3 $ "failed") $ $) 12)) (-4115 (($ $) NIL) (($ $ $) 9)) (* (($ (-852) $) NIL) (($ (-710) $) 16) (($ (-523) $) 21)))
-(((-20 |#1|) (-10 -8 (-15 * (|#1| (-523) |#1|)) (-15 -4115 (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|)) (-15 -2999 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-852) |#1|))) (-21)) (T -20))
-NIL
-(-10 -8 (-15 * (|#1| (-523) |#1|)) (-15 -4115 (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|)) (-15 -2999 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-852) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20)))
-(((-21) (-129)) (T -21))
-((-4115 (*1 *1 *1) (-4 *1 (-21))) (-4115 (*1 *1 *1 *1) (-4 *1 (-21))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-21)) (-5 *2 (-523)))))
-(-13 (-124) (-10 -8 (-15 -4115 ($ $)) (-15 -4115 ($ $ $)) (-15 * ($ (-523) $))))
-(((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-2388 (((-108) $) 10)) (-1640 (($) 15)) (* (($ (-852) $) 14) (($ (-710) $) 18)))
-(((-22 |#1|) (-10 -8 (-15 * (|#1| (-710) |#1|)) (-15 -2388 ((-108) |#1|)) (-15 -1640 (|#1|)) (-15 * (|#1| (-852) |#1|))) (-23)) (T -22))
-NIL
-(-10 -8 (-15 * (|#1| (-710) |#1|)) (-15 -2388 ((-108) |#1|)) (-15 -1640 (|#1|)) (-15 * (|#1| (-852) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-1640 (($) 17 T CONST)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4103 (($ $ $) 14)) (* (($ (-852) $) 13) (($ (-710) $) 15)))
-(((-23) (-129)) (T -23))
-((-1428 (*1 *1) (-4 *1 (-23))) (-1640 (*1 *1) (-4 *1 (-23))) (-2388 (*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-108)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-710)))))
-(-13 (-25) (-10 -8 (-15 (-1428) ($) -1982) (-15 -1640 ($) -1982) (-15 -2388 ((-108) $)) (-15 * ($ (-710) $))))
-(((-25) . T) ((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((* (($ (-852) $) 10)))
-(((-24 |#1|) (-10 -8 (-15 * (|#1| (-852) |#1|))) (-25)) (T -24))
-NIL
-(-10 -8 (-15 * (|#1| (-852) |#1|)))
-((-3260 (((-108) $ $) 7)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-4037 (((-108) $ $) 6)) (-4103 (($ $ $) 14)) (* (($ (-852) $) 13)))
-(((-25) (-129)) (T -25))
-((-4103 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-852)))))
-(-13 (-1016) (-10 -8 (-15 -4103 ($ $ $)) (-15 * ($ (-852) $))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-4090 (((-589 $) (-883 $)) 29) (((-589 $) (-1083 $)) 16) (((-589 $) (-1083 $) (-1087)) 20)) (-3472 (($ (-883 $)) 27) (($ (-1083 $)) 11) (($ (-1083 $) (-1087)) 54)) (-1258 (((-589 $) (-883 $)) 30) (((-589 $) (-1083 $)) 18) (((-589 $) (-1083 $) (-1087)) 19)) (-2167 (($ (-883 $)) 28) (($ (-1083 $)) 13) (($ (-1083 $) (-1087)) NIL)))
-(((-26 |#1|) (-10 -8 (-15 -4090 ((-589 |#1|) (-1083 |#1|) (-1087))) (-15 -4090 ((-589 |#1|) (-1083 |#1|))) (-15 -4090 ((-589 |#1|) (-883 |#1|))) (-15 -3472 (|#1| (-1083 |#1|) (-1087))) (-15 -3472 (|#1| (-1083 |#1|))) (-15 -3472 (|#1| (-883 |#1|))) (-15 -1258 ((-589 |#1|) (-1083 |#1|) (-1087))) (-15 -1258 ((-589 |#1|) (-1083 |#1|))) (-15 -1258 ((-589 |#1|) (-883 |#1|))) (-15 -2167 (|#1| (-1083 |#1|) (-1087))) (-15 -2167 (|#1| (-1083 |#1|))) (-15 -2167 (|#1| (-883 |#1|)))) (-27)) (T -26))
-NIL
-(-10 -8 (-15 -4090 ((-589 |#1|) (-1083 |#1|) (-1087))) (-15 -4090 ((-589 |#1|) (-1083 |#1|))) (-15 -4090 ((-589 |#1|) (-883 |#1|))) (-15 -3472 (|#1| (-1083 |#1|) (-1087))) (-15 -3472 (|#1| (-1083 |#1|))) (-15 -3472 (|#1| (-883 |#1|))) (-15 -1258 ((-589 |#1|) (-1083 |#1|) (-1087))) (-15 -1258 ((-589 |#1|) (-1083 |#1|))) (-15 -1258 ((-589 |#1|) (-883 |#1|))) (-15 -2167 (|#1| (-1083 |#1|) (-1087))) (-15 -2167 (|#1| (-1083 |#1|))) (-15 -2167 (|#1| (-883 |#1|))))
-((-3260 (((-108) $ $) 7)) (-4090 (((-589 $) (-883 $)) 80) (((-589 $) (-1083 $)) 79) (((-589 $) (-1083 $) (-1087)) 78)) (-3472 (($ (-883 $)) 83) (($ (-1083 $)) 82) (($ (-1083 $) (-1087)) 81)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-2999 (((-3 $ "failed") $ $) 19)) (-3763 (($ $) 73)) (-2105 (((-394 $) $) 72)) (-3584 (($ $) 92)) (-3684 (((-108) $ $) 59)) (-1640 (($) 17 T CONST)) (-1258 (((-589 $) (-883 $)) 86) (((-589 $) (-1083 $)) 85) (((-589 $) (-1083 $) (-1087)) 84)) (-2167 (($ (-883 $)) 89) (($ (-1083 $)) 88) (($ (-1083 $) (-1087)) 87)) (-2501 (($ $ $) 55)) (-4211 (((-3 $ "failed") $) 34)) (-2486 (($ $ $) 56)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 51)) (-1330 (((-108) $) 71)) (-3482 (((-108) $) 31)) (-1324 (($ $ (-523)) 91)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 52)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-3071 (($ $) 70)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-3573 (((-394 $) $) 74)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2469 (((-3 $ "failed") $ $) 42)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 50)) (-3087 (((-710) $) 58)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 57)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43) (($ (-383 (-523))) 65)) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 39)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 69)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4125 (($ $ $) 64)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 68) (($ $ (-383 (-523))) 90)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 (-523))) 67) (($ (-383 (-523)) $) 66)))
-(((-27) (-129)) (T -27))
-((-2167 (*1 *1 *2) (-12 (-5 *2 (-883 *1)) (-4 *1 (-27)))) (-2167 (*1 *1 *2) (-12 (-5 *2 (-1083 *1)) (-4 *1 (-27)))) (-2167 (*1 *1 *2 *3) (-12 (-5 *2 (-1083 *1)) (-5 *3 (-1087)) (-4 *1 (-27)))) (-1258 (*1 *2 *3) (-12 (-5 *3 (-883 *1)) (-4 *1 (-27)) (-5 *2 (-589 *1)))) (-1258 (*1 *2 *3) (-12 (-5 *3 (-1083 *1)) (-4 *1 (-27)) (-5 *2 (-589 *1)))) (-1258 (*1 *2 *3 *4) (-12 (-5 *3 (-1083 *1)) (-5 *4 (-1087)) (-4 *1 (-27)) (-5 *2 (-589 *1)))) (-3472 (*1 *1 *2) (-12 (-5 *2 (-883 *1)) (-4 *1 (-27)))) (-3472 (*1 *1 *2) (-12 (-5 *2 (-1083 *1)) (-4 *1 (-27)))) (-3472 (*1 *1 *2 *3) (-12 (-5 *2 (-1083 *1)) (-5 *3 (-1087)) (-4 *1 (-27)))) (-4090 (*1 *2 *3) (-12 (-5 *3 (-883 *1)) (-4 *1 (-27)) (-5 *2 (-589 *1)))) (-4090 (*1 *2 *3) (-12 (-5 *3 (-1083 *1)) (-4 *1 (-27)) (-5 *2 (-589 *1)))) (-4090 (*1 *2 *3 *4) (-12 (-5 *3 (-1083 *1)) (-5 *4 (-1087)) (-4 *1 (-27)) (-5 *2 (-589 *1)))))
-(-13 (-339) (-930) (-10 -8 (-15 -2167 ($ (-883 $))) (-15 -2167 ($ (-1083 $))) (-15 -2167 ($ (-1083 $) (-1087))) (-15 -1258 ((-589 $) (-883 $))) (-15 -1258 ((-589 $) (-1083 $))) (-15 -1258 ((-589 $) (-1083 $) (-1087))) (-15 -3472 ($ (-883 $))) (-15 -3472 ($ (-1083 $))) (-15 -3472 ($ (-1083 $) (-1087))) (-15 -4090 ((-589 $) (-883 $))) (-15 -4090 ((-589 $) (-1083 $))) (-15 -4090 ((-589 $) (-1083 $) (-1087)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-124) . T) ((-563 (-794)) . T) ((-158) . T) ((-221) . T) ((-267) . T) ((-284) . T) ((-339) . T) ((-427) . T) ((-515) . T) ((-591 #0#) . T) ((-591 $) . T) ((-657 #0#) . T) ((-657 $) . T) ((-666) . T) ((-851) . T) ((-930) . T) ((-979 #0#) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1127) . T))
-((-4090 (((-589 $) (-883 $)) NIL) (((-589 $) (-1083 $)) NIL) (((-589 $) (-1083 $) (-1087)) 50) (((-589 $) $) 19) (((-589 $) $ (-1087)) 41)) (-3472 (($ (-883 $)) NIL) (($ (-1083 $)) NIL) (($ (-1083 $) (-1087)) 52) (($ $) 17) (($ $ (-1087)) 37)) (-1258 (((-589 $) (-883 $)) NIL) (((-589 $) (-1083 $)) NIL) (((-589 $) (-1083 $) (-1087)) 48) (((-589 $) $) 15) (((-589 $) $ (-1087)) 43)) (-2167 (($ (-883 $)) NIL) (($ (-1083 $)) NIL) (($ (-1083 $) (-1087)) NIL) (($ $) 12) (($ $ (-1087)) 39)))
-(((-28 |#1| |#2|) (-10 -8 (-15 -4090 ((-589 |#1|) |#1| (-1087))) (-15 -3472 (|#1| |#1| (-1087))) (-15 -4090 ((-589 |#1|) |#1|)) (-15 -3472 (|#1| |#1|)) (-15 -1258 ((-589 |#1|) |#1| (-1087))) (-15 -2167 (|#1| |#1| (-1087))) (-15 -1258 ((-589 |#1|) |#1|)) (-15 -2167 (|#1| |#1|)) (-15 -4090 ((-589 |#1|) (-1083 |#1|) (-1087))) (-15 -4090 ((-589 |#1|) (-1083 |#1|))) (-15 -4090 ((-589 |#1|) (-883 |#1|))) (-15 -3472 (|#1| (-1083 |#1|) (-1087))) (-15 -3472 (|#1| (-1083 |#1|))) (-15 -3472 (|#1| (-883 |#1|))) (-15 -1258 ((-589 |#1|) (-1083 |#1|) (-1087))) (-15 -1258 ((-589 |#1|) (-1083 |#1|))) (-15 -1258 ((-589 |#1|) (-883 |#1|))) (-15 -2167 (|#1| (-1083 |#1|) (-1087))) (-15 -2167 (|#1| (-1083 |#1|))) (-15 -2167 (|#1| (-883 |#1|)))) (-29 |#2|) (-13 (-786) (-515))) (T -28))
-NIL
-(-10 -8 (-15 -4090 ((-589 |#1|) |#1| (-1087))) (-15 -3472 (|#1| |#1| (-1087))) (-15 -4090 ((-589 |#1|) |#1|)) (-15 -3472 (|#1| |#1|)) (-15 -1258 ((-589 |#1|) |#1| (-1087))) (-15 -2167 (|#1| |#1| (-1087))) (-15 -1258 ((-589 |#1|) |#1|)) (-15 -2167 (|#1| |#1|)) (-15 -4090 ((-589 |#1|) (-1083 |#1|) (-1087))) (-15 -4090 ((-589 |#1|) (-1083 |#1|))) (-15 -4090 ((-589 |#1|) (-883 |#1|))) (-15 -3472 (|#1| (-1083 |#1|) (-1087))) (-15 -3472 (|#1| (-1083 |#1|))) (-15 -3472 (|#1| (-883 |#1|))) (-15 -1258 ((-589 |#1|) (-1083 |#1|) (-1087))) (-15 -1258 ((-589 |#1|) (-1083 |#1|))) (-15 -1258 ((-589 |#1|) (-883 |#1|))) (-15 -2167 (|#1| (-1083 |#1|) (-1087))) (-15 -2167 (|#1| (-1083 |#1|))) (-15 -2167 (|#1| (-883 |#1|))))
-((-3260 (((-108) $ $) 7)) (-4090 (((-589 $) (-883 $)) 80) (((-589 $) (-1083 $)) 79) (((-589 $) (-1083 $) (-1087)) 78) (((-589 $) $) 126) (((-589 $) $ (-1087)) 124)) (-3472 (($ (-883 $)) 83) (($ (-1083 $)) 82) (($ (-1083 $) (-1087)) 81) (($ $) 127) (($ $ (-1087)) 125)) (-2388 (((-108) $) 16)) (-3716 (((-589 (-1087)) $) 201)) (-3540 (((-383 (-1083 $)) $ (-562 $)) 233 (|has| |#1| (-515)))) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-2394 (((-589 (-562 $)) $) 164)) (-2999 (((-3 $ "failed") $ $) 19)) (-3834 (($ $ (-589 (-562 $)) (-589 $)) 154) (($ $ (-589 (-271 $))) 153) (($ $ (-271 $)) 152)) (-3763 (($ $) 73)) (-2105 (((-394 $) $) 72)) (-3584 (($ $) 92)) (-3684 (((-108) $ $) 59)) (-1640 (($) 17 T CONST)) (-1258 (((-589 $) (-883 $)) 86) (((-589 $) (-1083 $)) 85) (((-589 $) (-1083 $) (-1087)) 84) (((-589 $) $) 130) (((-589 $) $ (-1087)) 128)) (-2167 (($ (-883 $)) 89) (($ (-1083 $)) 88) (($ (-1083 $) (-1087)) 87) (($ $) 131) (($ $ (-1087)) 129)) (-2898 (((-3 (-883 |#1|) "failed") $) 251 (|has| |#1| (-973))) (((-3 (-383 (-883 |#1|)) "failed") $) 235 (|has| |#1| (-515))) (((-3 |#1| "failed") $) 197) (((-3 (-523) "failed") $) 195 (|has| |#1| (-964 (-523)))) (((-3 (-1087) "failed") $) 188) (((-3 (-562 $) "failed") $) 139) (((-3 (-383 (-523)) "failed") $) 123 (-3255 (-12 (|has| |#1| (-964 (-523))) (|has| |#1| (-515))) (|has| |#1| (-964 (-383 (-523))))))) (-1996 (((-883 |#1|) $) 252 (|has| |#1| (-973))) (((-383 (-883 |#1|)) $) 236 (|has| |#1| (-515))) ((|#1| $) 198) (((-523) $) 194 (|has| |#1| (-964 (-523)))) (((-1087) $) 189) (((-562 $) $) 140) (((-383 (-523)) $) 122 (-3255 (-12 (|has| |#1| (-964 (-523))) (|has| |#1| (-515))) (|has| |#1| (-964 (-383 (-523))))))) (-2501 (($ $ $) 55)) (-2203 (((-629 |#1|) (-629 $)) 241 (|has| |#1| (-973))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) 240 (|has| |#1| (-973))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 121 (-3255 (-2819 (|has| |#1| (-973)) (|has| |#1| (-585 (-523)))) (-2819 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))))) (((-629 (-523)) (-629 $)) 120 (-3255 (-2819 (|has| |#1| (-973)) (|has| |#1| (-585 (-523)))) (-2819 (|has| |#1| (-585 (-523))) (|has| |#1| (-973)))))) (-4211 (((-3 $ "failed") $) 34)) (-2486 (($ $ $) 56)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 51)) (-1330 (((-108) $) 71)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 193 (|has| |#1| (-817 (-355)))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 192 (|has| |#1| (-817 (-523))))) (-4035 (($ (-589 $)) 158) (($ $) 157)) (-2856 (((-589 (-110)) $) 165)) (-1564 (((-110) (-110)) 166)) (-3482 (((-108) $) 31)) (-2126 (((-108) $) 186 (|has| $ (-964 (-523))))) (-2364 (($ $) 218 (|has| |#1| (-973)))) (-2164 (((-1039 |#1| (-562 $)) $) 217 (|has| |#1| (-973)))) (-1324 (($ $ (-523)) 91)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 52)) (-4016 (((-1083 $) (-562 $)) 183 (|has| $ (-973)))) (-3268 (($ $ $) 137)) (-2644 (($ $ $) 136)) (-3015 (($ (-1 $ $) (-562 $)) 172)) (-2215 (((-3 (-562 $) "failed") $) 162)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-3526 (((-589 (-562 $)) $) 163)) (-2217 (($ (-110) (-589 $)) 171) (($ (-110) $) 170)) (-3818 (((-3 (-589 $) "failed") $) 212 (|has| |#1| (-1028)))) (-3372 (((-3 (-2 (|:| |val| $) (|:| -3262 (-523))) "failed") $) 221 (|has| |#1| (-973)))) (-1973 (((-3 (-589 $) "failed") $) 214 (|has| |#1| (-25)))) (-2695 (((-3 (-2 (|:| -2275 (-523)) (|:| |var| (-562 $))) "failed") $) 215 (|has| |#1| (-25)))) (-3719 (((-3 (-2 (|:| |var| (-562 $)) (|:| -3262 (-523))) "failed") $ (-1087)) 220 (|has| |#1| (-973))) (((-3 (-2 (|:| |var| (-562 $)) (|:| -3262 (-523))) "failed") $ (-110)) 219 (|has| |#1| (-973))) (((-3 (-2 (|:| |var| (-562 $)) (|:| -3262 (-523))) "failed") $) 213 (|has| |#1| (-1028)))) (-2676 (((-108) $ (-1087)) 169) (((-108) $ (-110)) 168)) (-3071 (($ $) 70)) (-1942 (((-710) $) 161)) (-2435 (((-1034) $) 10)) (-3084 (((-108) $) 199)) (-3095 ((|#1| $) 200)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-3791 (((-108) $ (-1087)) 174) (((-108) $ $) 173)) (-3573 (((-394 $) $) 74)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2469 (((-3 $ "failed") $ $) 42)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 50)) (-3775 (((-108) $) 185 (|has| $ (-964 (-523))))) (-1349 (($ $ (-1087) (-710) (-1 $ $)) 225 (|has| |#1| (-973))) (($ $ (-1087) (-710) (-1 $ (-589 $))) 224 (|has| |#1| (-973))) (($ $ (-589 (-1087)) (-589 (-710)) (-589 (-1 $ (-589 $)))) 223 (|has| |#1| (-973))) (($ $ (-589 (-1087)) (-589 (-710)) (-589 (-1 $ $))) 222 (|has| |#1| (-973))) (($ $ (-589 (-110)) (-589 $) (-1087)) 211 (|has| |#1| (-564 (-499)))) (($ $ (-110) $ (-1087)) 210 (|has| |#1| (-564 (-499)))) (($ $) 209 (|has| |#1| (-564 (-499)))) (($ $ (-589 (-1087))) 208 (|has| |#1| (-564 (-499)))) (($ $ (-1087)) 207 (|has| |#1| (-564 (-499)))) (($ $ (-110) (-1 $ $)) 182) (($ $ (-110) (-1 $ (-589 $))) 181) (($ $ (-589 (-110)) (-589 (-1 $ (-589 $)))) 180) (($ $ (-589 (-110)) (-589 (-1 $ $))) 179) (($ $ (-1087) (-1 $ $)) 178) (($ $ (-1087) (-1 $ (-589 $))) 177) (($ $ (-589 (-1087)) (-589 (-1 $ (-589 $)))) 176) (($ $ (-589 (-1087)) (-589 (-1 $ $))) 175) (($ $ (-589 $) (-589 $)) 146) (($ $ $ $) 145) (($ $ (-271 $)) 144) (($ $ (-589 (-271 $))) 143) (($ $ (-589 (-562 $)) (-589 $)) 142) (($ $ (-562 $) $) 141)) (-3087 (((-710) $) 58)) (-1502 (($ (-110) (-589 $)) 151) (($ (-110) $ $ $ $) 150) (($ (-110) $ $ $) 149) (($ (-110) $ $) 148) (($ (-110) $) 147)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 57)) (-2404 (($ $ $) 160) (($ $) 159)) (-4024 (($ $ (-1087)) 249 (|has| |#1| (-973))) (($ $ (-589 (-1087))) 248 (|has| |#1| (-973))) (($ $ (-1087) (-710)) 247 (|has| |#1| (-973))) (($ $ (-589 (-1087)) (-589 (-710))) 246 (|has| |#1| (-973)))) (-3758 (($ $) 228 (|has| |#1| (-515)))) (-2171 (((-1039 |#1| (-562 $)) $) 227 (|has| |#1| (-515)))) (-3399 (($ $) 184 (|has| $ (-973)))) (-3077 (((-499) $) 255 (|has| |#1| (-564 (-499)))) (($ (-394 $)) 226 (|has| |#1| (-515))) (((-823 (-355)) $) 191 (|has| |#1| (-564 (-823 (-355))))) (((-823 (-523)) $) 190 (|has| |#1| (-564 (-823 (-523)))))) (-1308 (($ $ $) 254 (|has| |#1| (-448)))) (-2306 (($ $ $) 253 (|has| |#1| (-448)))) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43) (($ (-383 (-523))) 65) (($ (-883 |#1|)) 250 (|has| |#1| (-973))) (($ (-383 (-883 |#1|))) 234 (|has| |#1| (-515))) (($ (-383 (-883 (-383 |#1|)))) 232 (|has| |#1| (-515))) (($ (-883 (-383 |#1|))) 231 (|has| |#1| (-515))) (($ (-383 |#1|)) 230 (|has| |#1| (-515))) (($ (-1039 |#1| (-562 $))) 216 (|has| |#1| (-973))) (($ |#1|) 196) (($ (-1087)) 187) (($ (-562 $)) 138)) (-2301 (((-3 $ "failed") $) 239 (|has| |#1| (-134)))) (-1698 (((-710)) 29)) (-4114 (($ (-589 $)) 156) (($ $) 155)) (-1651 (((-108) (-110)) 167)) (-3842 (((-108) $ $) 39)) (-3840 (($ (-1087) (-589 $)) 206) (($ (-1087) $ $ $ $) 205) (($ (-1087) $ $ $) 204) (($ (-1087) $ $) 203) (($ (-1087) $) 202)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 69)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ (-1087)) 245 (|has| |#1| (-973))) (($ $ (-589 (-1087))) 244 (|has| |#1| (-973))) (($ $ (-1087) (-710)) 243 (|has| |#1| (-973))) (($ $ (-589 (-1087)) (-589 (-710))) 242 (|has| |#1| (-973)))) (-4078 (((-108) $ $) 134)) (-4061 (((-108) $ $) 133)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 135)) (-4052 (((-108) $ $) 132)) (-4125 (($ $ $) 64) (($ (-1039 |#1| (-562 $)) (-1039 |#1| (-562 $))) 229 (|has| |#1| (-515)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 68) (($ $ (-383 (-523))) 90)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 (-523))) 67) (($ (-383 (-523)) $) 66) (($ $ |#1|) 238 (|has| |#1| (-158))) (($ |#1| $) 237 (|has| |#1| (-158)))))
-(((-29 |#1|) (-129) (-13 (-786) (-515))) (T -29))
-((-2167 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-786) (-515))))) (-1258 (*1 *2 *1) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *2 (-589 *1)) (-4 *1 (-29 *3)))) (-2167 (*1 *1 *1 *2) (-12 (-5 *2 (-1087)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-786) (-515))))) (-1258 (*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-589 *1)) (-4 *1 (-29 *4)))) (-3472 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-786) (-515))))) (-4090 (*1 *2 *1) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *2 (-589 *1)) (-4 *1 (-29 *3)))) (-3472 (*1 *1 *1 *2) (-12 (-5 *2 (-1087)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-786) (-515))))) (-4090 (*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-589 *1)) (-4 *1 (-29 *4)))))
-(-13 (-27) (-406 |t#1|) (-10 -8 (-15 -2167 ($ $)) (-15 -1258 ((-589 $) $)) (-15 -2167 ($ $ (-1087))) (-15 -1258 ((-589 $) $ (-1087))) (-15 -3472 ($ $)) (-15 -4090 ((-589 $) $)) (-15 -3472 ($ $ (-1087))) (-15 -4090 ((-589 $) $ (-1087)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) . T) ((-37 |#1|) |has| |#1| (-158)) ((-37 $) . T) ((-27) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) |has| |#1| (-158)) ((-107 $ $) . T) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-564 (-823 (-355))) |has| |#1| (-564 (-823 (-355)))) ((-564 (-823 (-523))) |has| |#1| (-564 (-823 (-523)))) ((-221) . T) ((-267) . T) ((-284) . T) ((-286 $) . T) ((-279) . T) ((-339) . T) ((-353 |#1|) |has| |#1| (-973)) ((-376 |#1|) . T) ((-387 |#1|) . T) ((-406 |#1|) . T) ((-427) . T) ((-448) |has| |#1| (-448)) ((-484 (-562 $) $) . T) ((-484 $ $) . T) ((-515) . T) ((-591 #0#) . T) ((-591 |#1|) |has| |#1| (-158)) ((-591 $) . T) ((-585 (-523)) -12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))) ((-585 |#1|) |has| |#1| (-973)) ((-657 #0#) . T) ((-657 |#1|) |has| |#1| (-158)) ((-657 $) . T) ((-666) . T) ((-786) . T) ((-831 (-1087)) |has| |#1| (-973)) ((-817 (-355)) |has| |#1| (-817 (-355))) ((-817 (-523)) |has| |#1| (-817 (-523))) ((-815 |#1|) . T) ((-851) . T) ((-930) . T) ((-964 (-383 (-523))) -3255 (|has| |#1| (-964 (-383 (-523)))) (-12 (|has| |#1| (-515)) (|has| |#1| (-964 (-523))))) ((-964 (-383 (-883 |#1|))) |has| |#1| (-515)) ((-964 (-523)) |has| |#1| (-964 (-523))) ((-964 (-562 $)) . T) ((-964 (-883 |#1|)) |has| |#1| (-973)) ((-964 (-1087)) . T) ((-964 |#1|) . T) ((-979 #0#) . T) ((-979 |#1|) |has| |#1| (-158)) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1123) . T) ((-1127) . T))
-((-3040 (((-1011 (-203)) $) NIL)) (-3027 (((-1011 (-203)) $) NIL)) (-1482 (($ $ (-203)) 123)) (-2257 (($ (-883 (-523)) (-1087) (-1087) (-1011 (-383 (-523))) (-1011 (-383 (-523)))) 85)) (-2797 (((-589 (-589 (-874 (-203)))) $) 135)) (-3976 (((-794) $) 147)))
-(((-30) (-13 (-885) (-10 -8 (-15 -2257 ($ (-883 (-523)) (-1087) (-1087) (-1011 (-383 (-523))) (-1011 (-383 (-523))))) (-15 -1482 ($ $ (-203)))))) (T -30))
-((-2257 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-883 (-523))) (-5 *3 (-1087)) (-5 *4 (-1011 (-383 (-523)))) (-5 *1 (-30)))) (-1482 (*1 *1 *1 *2) (-12 (-5 *2 (-203)) (-5 *1 (-30)))))
-(-13 (-885) (-10 -8 (-15 -2257 ($ (-883 (-523)) (-1087) (-1087) (-1011 (-383 (-523))) (-1011 (-383 (-523))))) (-15 -1482 ($ $ (-203)))))
-((-2167 ((|#2| (-1083 |#2|) (-1087)) 43)) (-1564 (((-110) (-110)) 56)) (-4016 (((-1083 |#2|) (-562 |#2|)) 131 (|has| |#1| (-964 (-523))))) (-1465 ((|#2| |#1| (-523)) 109 (|has| |#1| (-964 (-523))))) (-2465 ((|#2| (-1083 |#2|) |#2|) 30)) (-1717 (((-794) (-589 |#2|)) 85)) (-3399 ((|#2| |#2|) 127 (|has| |#1| (-964 (-523))))) (-1651 (((-108) (-110)) 18)) (** ((|#2| |#2| (-383 (-523))) 90 (|has| |#1| (-964 (-523))))))
-(((-31 |#1| |#2|) (-10 -7 (-15 -2167 (|#2| (-1083 |#2|) (-1087))) (-15 -1564 ((-110) (-110))) (-15 -1651 ((-108) (-110))) (-15 -2465 (|#2| (-1083 |#2|) |#2|)) (-15 -1717 ((-794) (-589 |#2|))) (IF (|has| |#1| (-964 (-523))) (PROGN (-15 ** (|#2| |#2| (-383 (-523)))) (-15 -4016 ((-1083 |#2|) (-562 |#2|))) (-15 -3399 (|#2| |#2|)) (-15 -1465 (|#2| |#1| (-523)))) |%noBranch|)) (-13 (-786) (-515)) (-406 |#1|)) (T -31))
-((-1465 (*1 *2 *3 *4) (-12 (-5 *4 (-523)) (-4 *2 (-406 *3)) (-5 *1 (-31 *3 *2)) (-4 *3 (-964 *4)) (-4 *3 (-13 (-786) (-515))))) (-3399 (*1 *2 *2) (-12 (-4 *3 (-964 (-523))) (-4 *3 (-13 (-786) (-515))) (-5 *1 (-31 *3 *2)) (-4 *2 (-406 *3)))) (-4016 (*1 *2 *3) (-12 (-5 *3 (-562 *5)) (-4 *5 (-406 *4)) (-4 *4 (-964 (-523))) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-1083 *5)) (-5 *1 (-31 *4 *5)))) (** (*1 *2 *2 *3) (-12 (-5 *3 (-383 (-523))) (-4 *4 (-964 (-523))) (-4 *4 (-13 (-786) (-515))) (-5 *1 (-31 *4 *2)) (-4 *2 (-406 *4)))) (-1717 (*1 *2 *3) (-12 (-5 *3 (-589 *5)) (-4 *5 (-406 *4)) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-794)) (-5 *1 (-31 *4 *5)))) (-2465 (*1 *2 *3 *2) (-12 (-5 *3 (-1083 *2)) (-4 *2 (-406 *4)) (-4 *4 (-13 (-786) (-515))) (-5 *1 (-31 *4 *2)))) (-1651 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-108)) (-5 *1 (-31 *4 *5)) (-4 *5 (-406 *4)))) (-1564 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-786) (-515))) (-5 *1 (-31 *3 *4)) (-4 *4 (-406 *3)))) (-2167 (*1 *2 *3 *4) (-12 (-5 *3 (-1083 *2)) (-5 *4 (-1087)) (-4 *2 (-406 *5)) (-5 *1 (-31 *5 *2)) (-4 *5 (-13 (-786) (-515))))))
-(-10 -7 (-15 -2167 (|#2| (-1083 |#2|) (-1087))) (-15 -1564 ((-110) (-110))) (-15 -1651 ((-108) (-110))) (-15 -2465 (|#2| (-1083 |#2|) |#2|)) (-15 -1717 ((-794) (-589 |#2|))) (IF (|has| |#1| (-964 (-523))) (PROGN (-15 ** (|#2| |#2| (-383 (-523)))) (-15 -4016 ((-1083 |#2|) (-562 |#2|))) (-15 -3399 (|#2| |#2|)) (-15 -1465 (|#2| |#1| (-523)))) |%noBranch|))
-((-2282 (((-108) $ (-710)) 16)) (-1640 (($) 10)) (-1344 (((-108) $ (-710)) 15)) (-4042 (((-108) $ (-710)) 14)) (-2391 (((-108) $ $) 8)) (-3163 (((-108) $) 13)))
-(((-32 |#1|) (-10 -8 (-15 -1640 (|#1|)) (-15 -2282 ((-108) |#1| (-710))) (-15 -1344 ((-108) |#1| (-710))) (-15 -4042 ((-108) |#1| (-710))) (-15 -3163 ((-108) |#1|)) (-15 -2391 ((-108) |#1| |#1|))) (-33)) (T -32))
-NIL
-(-10 -8 (-15 -1640 (|#1|)) (-15 -2282 ((-108) |#1| (-710))) (-15 -1344 ((-108) |#1| (-710))) (-15 -4042 ((-108) |#1| (-710))) (-15 -3163 ((-108) |#1|)) (-15 -2391 ((-108) |#1| |#1|)))
-((-2282 (((-108) $ (-710)) 8)) (-1640 (($) 7 T CONST)) (-1344 (((-108) $ (-710)) 9)) (-4042 (((-108) $ (-710)) 10)) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-4124 (($ $) 13)) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-33) (-129)) (T -33))
-((-2391 (*1 *2 *1 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108)))) (-4124 (*1 *1 *1) (-4 *1 (-33))) (-4055 (*1 *1) (-4 *1 (-33))) (-3163 (*1 *2 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108)))) (-4042 (*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-710)) (-5 *2 (-108)))) (-1344 (*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-710)) (-5 *2 (-108)))) (-2282 (*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-710)) (-5 *2 (-108)))) (-1640 (*1 *1) (-4 *1 (-33))) (-1271 (*1 *2 *1) (-12 (|has| *1 (-6 -4248)) (-4 *1 (-33)) (-5 *2 (-710)))))
-(-13 (-1123) (-10 -8 (-15 -2391 ((-108) $ $)) (-15 -4124 ($ $)) (-15 -4055 ($)) (-15 -3163 ((-108) $)) (-15 -4042 ((-108) $ (-710))) (-15 -1344 ((-108) $ (-710))) (-15 -2282 ((-108) $ (-710))) (-15 -1640 ($) -1982) (IF (|has| $ (-6 -4248)) (-15 -1271 ((-710) $)) |%noBranch|)))
-(((-1123) . T))
-((-3768 (($ $) 11)) (-3743 (($ $) 10)) (-3793 (($ $) 9)) (-3135 (($ $) 8)) (-3780 (($ $) 7)) (-3756 (($ $) 6)))
-(((-34) (-129)) (T -34))
-((-3768 (*1 *1 *1) (-4 *1 (-34))) (-3743 (*1 *1 *1) (-4 *1 (-34))) (-3793 (*1 *1 *1) (-4 *1 (-34))) (-3135 (*1 *1 *1) (-4 *1 (-34))) (-3780 (*1 *1 *1) (-4 *1 (-34))) (-3756 (*1 *1 *1) (-4 *1 (-34))))
-(-13 (-10 -8 (-15 -3756 ($ $)) (-15 -3780 ($ $)) (-15 -3135 ($ $)) (-15 -3793 ($ $)) (-15 -3743 ($ $)) (-15 -3768 ($ $))))
-((-3260 (((-108) $ $) 19 (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-2058 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 125)) (-3972 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 148)) (-3548 (($ $) 146)) (-2340 (($) 72) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 71)) (-1666 (((-1174) $ |#1| |#1|) 99 (|has| $ (-6 -4249))) (((-1174) $ (-523) (-523)) 178 (|has| $ (-6 -4249)))) (-3117 (($ $ (-523)) 159 (|has| $ (-6 -4249)))) (-4159 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 209) (((-108) $) 203 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-2361 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 200 (|has| $ (-6 -4249))) (($ $) 199 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)) (|has| $ (-6 -4249))))) (-3400 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 210) (($ $) 204 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-2282 (((-108) $ (-710)) 8)) (-3365 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 134 (|has| $ (-6 -4249)))) (-3546 (($ $ $) 155 (|has| $ (-6 -4249)))) (-2535 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 157 (|has| $ (-6 -4249)))) (-1957 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 153 (|has| $ (-6 -4249)))) (-4101 ((|#2| $ |#1| |#2|) 73) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 189 (|has| $ (-6 -4249))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-1136 (-523)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 160 (|has| $ (-6 -4249))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ "last" (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 158 (|has| $ (-6 -4249))) (($ $ "rest" $) 156 (|has| $ (-6 -4249))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ "first" (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 154 (|has| $ (-6 -4249))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ "value" (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 133 (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) 132 (|has| $ (-6 -4249)))) (-3627 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 45 (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 216)) (-1299 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 55 (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 175 (|has| $ (-6 -4248)))) (-3962 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 147)) (-2521 (((-3 |#2| "failed") |#1| $) 61)) (-1640 (($) 7 T CONST)) (-4091 (($ $) 201 (|has| $ (-6 -4249)))) (-4082 (($ $) 211)) (-3891 (($ $ (-710)) 142) (($ $) 140)) (-2543 (($ $) 214 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (-3917 (($ $) 58 (-3255 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248))) (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248)))))) (-1869 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 47 (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 46 (|has| $ (-6 -4248))) (((-3 |#2| "failed") |#1| $) 62) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 220) (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 215 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (-2231 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 54 (|has| $ (-6 -4248))) (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 177 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 174 (|has| $ (-6 -4248)))) (-1830 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 56 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248)))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 53 (|has| $ (-6 -4248))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 52 (|has| $ (-6 -4248))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 176 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248)))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 173 (|has| $ (-6 -4248))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 172 (|has| $ (-6 -4248)))) (-3073 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4249))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 190 (|has| $ (-6 -4249)))) (-3002 ((|#2| $ |#1|) 88) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523)) 188)) (-2527 (((-108) $) 192)) (-1894 (((-523) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 208) (((-523) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 207 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))) (((-523) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523)) 206 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (-3133 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 30 (|has| $ (-6 -4248))) (((-589 |#2|) $) 79 (|has| $ (-6 -4248))) (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 114 (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) 123)) (-3339 (((-108) $ $) 131 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (-2348 (($ (-710) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 169)) (-1344 (((-108) $ (-710)) 9)) (-1798 ((|#1| $) 96 (|has| |#1| (-786))) (((-523) $) 180 (|has| (-523) (-786)))) (-3268 (($ $ $) 198 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-3325 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ $) 217) (($ $ $) 213 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-3123 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ $) 212) (($ $ $) 205 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-3056 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 29 (|has| $ (-6 -4248))) (((-589 |#2|) $) 80 (|has| $ (-6 -4248))) (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 115 (|has| $ (-6 -4248)))) (-1348 (((-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248)))) (((-108) |#2| $) 82 (-12 (|has| |#2| (-1016)) (|has| $ (-6 -4248)))) (((-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 117 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248))))) (-2133 ((|#1| $) 95 (|has| |#1| (-786))) (((-523) $) 181 (|has| (-523) (-786)))) (-2644 (($ $ $) 197 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-3063 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 34 (|has| $ (-6 -4249))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4249))) (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 110 (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70) (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ $) 166) (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 109)) (-3745 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 225)) (-4042 (((-108) $ (-710)) 10)) (-2112 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 128)) (-3391 (((-108) $) 124)) (-3841 (((-1070) $) 22 (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-2247 (($ $ (-710)) 145) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 143)) (-1612 (((-589 |#1|) $) 63)) (-2754 (((-108) |#1| $) 64)) (-2349 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 39)) (-3862 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 40) (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523)) 219) (($ $ $ (-523)) 218)) (-3334 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523)) 162) (($ $ $ (-523)) 161)) (-2909 (((-589 |#1|) $) 93) (((-589 (-523)) $) 183)) (-2290 (((-108) |#1| $) 92) (((-108) (-523) $) 184)) (-2435 (((-1034) $) 21 (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-3879 ((|#2| $) 97 (|has| |#1| (-786))) (($ $ (-710)) 139) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 137)) (-2660 (((-3 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) "failed") (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 51) (((-3 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) "failed") (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 171)) (-2408 (($ $ |#2|) 98 (|has| $ (-6 -4249))) (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 179 (|has| $ (-6 -4249)))) (-1322 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 41)) (-3214 (((-108) $) 191)) (-2720 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 32 (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) 77 (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 112 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))))) 26 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 25 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 24 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 23 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) 86 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) 84 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 (-271 |#2|))) 83 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 121 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 120 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 119 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))))) 118 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-2391 (((-108) $ $) 14)) (-1410 (((-108) |#2| $) 94 (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016)))) (((-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 182 (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-3184 (((-589 |#2|) $) 91) (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 185)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 187) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523)) 186) (($ $ (-1136 (-523))) 165) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ "last") 144) (($ $ "rest") 141) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ "first") 138) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ "value") 126)) (-2981 (((-523) $ $) 129)) (-1771 (($) 49) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 48)) (-1314 (($ $ (-523)) 222) (($ $ (-1136 (-523))) 221)) (-3725 (($ $ (-523)) 164) (($ $ (-1136 (-523))) 163)) (-2837 (((-108) $) 127)) (-2238 (($ $) 151)) (-4198 (($ $) 152 (|has| $ (-6 -4249)))) (-3647 (((-710) $) 150)) (-2801 (($ $) 149)) (-2452 (((-710) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 31 (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248)))) (((-710) |#2| $) 81 (-12 (|has| |#2| (-1016)) (|has| $ (-6 -4248)))) (((-710) (-1 (-108) |#2|) $) 78 (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 116 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248)))) (((-710) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 113 (|has| $ (-6 -4248)))) (-2580 (($ $ $ (-523)) 202 (|has| $ (-6 -4249)))) (-4124 (($ $) 13)) (-3077 (((-499) $) 59 (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-564 (-499))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-564 (-499)))))) (-3985 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 50) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 170)) (-1622 (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 224) (($ $ $) 223)) (-2785 (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 168) (($ (-589 $)) 167) (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 136) (($ $ $) 135)) (-3976 (((-794) $) 18 (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-563 (-794))) (|has| |#2| (-563 (-794))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-563 (-794)))))) (-2464 (((-589 $) $) 122)) (-4004 (((-108) $ $) 130 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (-1245 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 42)) (-2255 (((-3 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) "failed") |#1| $) 108)) (-1505 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 33 (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) 76 (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 111 (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) 195 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-4061 (((-108) $ $) 194 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-4037 (((-108) $ $) 20 (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-4070 (((-108) $ $) 196 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-4052 (((-108) $ $) 193 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-35 |#1| |#2|) (-129) (-1016) (-1016)) (T -35))
-((-2255 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-35 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-5 *2 (-2 (|:| -2402 *3) (|:| -2746 *4))))))
-(-13 (-1100 |t#1| |t#2|) (-609 (-2 (|:| -2402 |t#1|) (|:| -2746 |t#2|))) (-10 -8 (-15 -2255 ((-3 (-2 (|:| -2402 |t#1|) (|:| -2746 |t#2|)) "failed") |t#1| $))))
-(((-33) . T) ((-102 #0=(-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T) ((-97) -3255 (|has| |#2| (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786))) ((-563 (-794)) -3255 (|has| |#2| (-1016)) (|has| |#2| (-563 (-794))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-563 (-794)))) ((-140 #1=(-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T) ((-564 (-499)) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-564 (-499))) ((-207 #0#) . T) ((-213 #0#) . T) ((-263 #2=(-523) #1#) . T) ((-263 |#1| |#2|) . T) ((-265 #2# #1#) . T) ((-265 |#1| |#2|) . T) ((-286 #1#) -12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))) ((-286 |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((-259 #1#) . T) ((-349 #1#) . T) ((-462 #1#) . T) ((-462 |#2|) . T) ((-556 #2# #1#) . T) ((-556 |#1| |#2|) . T) ((-484 #1# #1#) -12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))) ((-484 |#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((-560 |#1| |#2|) . T) ((-594 #1#) . T) ((-609 #1#) . T) ((-786) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)) ((-938 #1#) . T) ((-1016) -3255 (|has| |#2| (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786))) ((-1061 #1#) . T) ((-1100 |#1| |#2|) . T) ((-1123) . T) ((-1157 #1#) . T))
-((-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#2|) 10)))
-(((-36 |#1| |#2|) (-10 -8 (-15 -3976 (|#1| |#2|)) (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|))) (-37 |#2|) (-158)) (T -36))
-NIL
-(-10 -8 (-15 -3976 (|#1| |#2|)) (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 37)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
-(((-37 |#1|) (-129) (-158)) (T -37))
-((-3976 (*1 *1 *2) (-12 (-4 *1 (-37 *2)) (-4 *2 (-158)))))
-(-13 (-973) (-657 |t#1|) (-10 -8 (-15 -3976 ($ |t#1|))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 |#1|) . T) ((-591 $) . T) ((-657 |#1|) . T) ((-666) . T) ((-979 |#1|) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-1380 (((-394 |#1|) |#1|) 41)) (-3573 (((-394 |#1|) |#1|) 30) (((-394 |#1|) |#1| (-589 (-47))) 33)) (-1403 (((-108) |#1|) 56)))
-(((-38 |#1|) (-10 -7 (-15 -3573 ((-394 |#1|) |#1| (-589 (-47)))) (-15 -3573 ((-394 |#1|) |#1|)) (-15 -1380 ((-394 |#1|) |#1|)) (-15 -1403 ((-108) |#1|))) (-1145 (-47))) (T -38))
-((-1403 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-38 *3)) (-4 *3 (-1145 (-47))))) (-1380 (*1 *2 *3) (-12 (-5 *2 (-394 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1145 (-47))))) (-3573 (*1 *2 *3) (-12 (-5 *2 (-394 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1145 (-47))))) (-3573 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-47))) (-5 *2 (-394 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1145 (-47))))))
-(-10 -7 (-15 -3573 ((-394 |#1|) |#1| (-589 (-47)))) (-15 -3573 ((-394 |#1|) |#1|)) (-15 -1380 ((-394 |#1|) |#1|)) (-15 -1403 ((-108) |#1|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1962 (((-2 (|:| |num| (-1169 |#2|)) (|:| |den| |#2|)) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| (-383 |#2|) (-339)))) (-3950 (($ $) NIL (|has| (-383 |#2|) (-339)))) (-3226 (((-108) $) NIL (|has| (-383 |#2|) (-339)))) (-1711 (((-629 (-383 |#2|)) (-1169 $)) NIL) (((-629 (-383 |#2|))) NIL)) (-4131 (((-383 |#2|) $) NIL)) (-2794 (((-1097 (-852) (-710)) (-523)) NIL (|has| (-383 |#2|) (-325)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL (|has| (-383 |#2|) (-339)))) (-2105 (((-394 $) $) NIL (|has| (-383 |#2|) (-339)))) (-3684 (((-108) $ $) NIL (|has| (-383 |#2|) (-339)))) (-3843 (((-710)) NIL (|has| (-383 |#2|) (-344)))) (-2693 (((-108)) NIL)) (-1690 (((-108) |#1|) NIL) (((-108) |#2|) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL (|has| (-383 |#2|) (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| (-383 |#2|) (-964 (-383 (-523))))) (((-3 (-383 |#2|) "failed") $) NIL)) (-1996 (((-523) $) NIL (|has| (-383 |#2|) (-964 (-523)))) (((-383 (-523)) $) NIL (|has| (-383 |#2|) (-964 (-383 (-523))))) (((-383 |#2|) $) NIL)) (-3322 (($ (-1169 (-383 |#2|)) (-1169 $)) NIL) (($ (-1169 (-383 |#2|))) 57) (($ (-1169 |#2|) |#2|) 125)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-383 |#2|) (-325)))) (-2501 (($ $ $) NIL (|has| (-383 |#2|) (-339)))) (-2545 (((-629 (-383 |#2|)) $ (-1169 $)) NIL) (((-629 (-383 |#2|)) $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| (-383 |#2|) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| (-383 |#2|) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-383 |#2|))) (|:| |vec| (-1169 (-383 |#2|)))) (-629 $) (-1169 $)) NIL) (((-629 (-383 |#2|)) (-629 $)) NIL)) (-2332 (((-1169 $) (-1169 $)) NIL)) (-1830 (($ |#3|) NIL) (((-3 $ "failed") (-383 |#3|)) NIL (|has| (-383 |#2|) (-339)))) (-4211 (((-3 $ "failed") $) NIL)) (-3201 (((-589 (-589 |#1|))) NIL (|has| |#1| (-344)))) (-1902 (((-108) |#1| |#1|) NIL)) (-2262 (((-852)) NIL)) (-3461 (($) NIL (|has| (-383 |#2|) (-344)))) (-1495 (((-108)) NIL)) (-3727 (((-108) |#1|) NIL) (((-108) |#2|) NIL)) (-2486 (($ $ $) NIL (|has| (-383 |#2|) (-339)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| (-383 |#2|) (-339)))) (-2213 (($ $) NIL)) (-2097 (($) NIL (|has| (-383 |#2|) (-325)))) (-1200 (((-108) $) NIL (|has| (-383 |#2|) (-325)))) (-1419 (($ $ (-710)) NIL (|has| (-383 |#2|) (-325))) (($ $) NIL (|has| (-383 |#2|) (-325)))) (-1330 (((-108) $) NIL (|has| (-383 |#2|) (-339)))) (-1500 (((-852) $) NIL (|has| (-383 |#2|) (-325))) (((-772 (-852)) $) NIL (|has| (-383 |#2|) (-325)))) (-3482 (((-108) $) NIL)) (-1244 (((-710)) NIL)) (-1402 (((-1169 $) (-1169 $)) 102)) (-2765 (((-383 |#2|) $) NIL)) (-2161 (((-589 (-883 |#1|)) (-1087)) NIL (|has| |#1| (-339)))) (-1289 (((-3 $ "failed") $) NIL (|has| (-383 |#2|) (-325)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| (-383 |#2|) (-339)))) (-2277 ((|#3| $) NIL (|has| (-383 |#2|) (-339)))) (-4076 (((-852) $) NIL (|has| (-383 |#2|) (-344)))) (-1816 ((|#3| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| (-383 |#2|) (-339))) (($ $ $) NIL (|has| (-383 |#2|) (-339)))) (-3841 (((-1070) $) NIL)) (-2704 (((-1174) (-710)) 79)) (-1209 (((-629 (-383 |#2|))) 51)) (-1845 (((-629 (-383 |#2|))) 44)) (-3071 (($ $) NIL (|has| (-383 |#2|) (-339)))) (-4087 (($ (-1169 |#2|) |#2|) 126)) (-2009 (((-629 (-383 |#2|))) 45)) (-3864 (((-629 (-383 |#2|))) 43)) (-2180 (((-2 (|:| |num| (-629 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 124)) (-2401 (((-2 (|:| |num| (-1169 |#2|)) (|:| |den| |#2|)) $) 64)) (-3205 (((-1169 $)) 42)) (-3835 (((-1169 $)) 41)) (-1933 (((-108) $) NIL)) (-3759 (((-108) $) NIL) (((-108) $ |#1|) NIL) (((-108) $ |#2|) NIL)) (-4105 (($) NIL (|has| (-383 |#2|) (-325)) CONST)) (-2557 (($ (-852)) NIL (|has| (-383 |#2|) (-344)))) (-2931 (((-3 |#2| "failed")) NIL)) (-2435 (((-1034) $) NIL)) (-4095 (((-710)) NIL)) (-4102 (($) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| (-383 |#2|) (-339)))) (-2056 (($ (-589 $)) NIL (|has| (-383 |#2|) (-339))) (($ $ $) NIL (|has| (-383 |#2|) (-339)))) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) NIL (|has| (-383 |#2|) (-325)))) (-3573 (((-394 $) $) NIL (|has| (-383 |#2|) (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-383 |#2|) (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| (-383 |#2|) (-339)))) (-2469 (((-3 $ "failed") $ $) NIL (|has| (-383 |#2|) (-339)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| (-383 |#2|) (-339)))) (-3087 (((-710) $) NIL (|has| (-383 |#2|) (-339)))) (-1502 ((|#1| $ |#1| |#1|) NIL)) (-2632 (((-3 |#2| "failed")) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| (-383 |#2|) (-339)))) (-4053 (((-383 |#2|) (-1169 $)) NIL) (((-383 |#2|)) 39)) (-2041 (((-710) $) NIL (|has| (-383 |#2|) (-325))) (((-3 (-710) "failed") $ $) NIL (|has| (-383 |#2|) (-325)))) (-4024 (($ $ (-1 (-383 |#2|) (-383 |#2|)) (-710)) NIL (|has| (-383 |#2|) (-339))) (($ $ (-1 (-383 |#2|) (-383 |#2|))) NIL (|has| (-383 |#2|) (-339))) (($ $ (-1 |#2| |#2|)) 120) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-710)) NIL (-3255 (-12 (|has| (-383 |#2|) (-211)) (|has| (-383 |#2|) (-339))) (|has| (-383 |#2|) (-325)))) (($ $) NIL (-3255 (-12 (|has| (-383 |#2|) (-211)) (|has| (-383 |#2|) (-339))) (|has| (-383 |#2|) (-325))))) (-1718 (((-629 (-383 |#2|)) (-1169 $) (-1 (-383 |#2|) (-383 |#2|))) NIL (|has| (-383 |#2|) (-339)))) (-3399 ((|#3|) 50)) (-2315 (($) NIL (|has| (-383 |#2|) (-325)))) (-2411 (((-1169 (-383 |#2|)) $ (-1169 $)) NIL) (((-629 (-383 |#2|)) (-1169 $) (-1169 $)) NIL) (((-1169 (-383 |#2|)) $) 58) (((-629 (-383 |#2|)) (-1169 $)) 103)) (-3077 (((-1169 (-383 |#2|)) $) NIL) (($ (-1169 (-383 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (|has| (-383 |#2|) (-325)))) (-3054 (((-1169 $) (-1169 $)) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ (-383 |#2|)) NIL) (($ (-383 (-523))) NIL (-3255 (|has| (-383 |#2|) (-964 (-383 (-523)))) (|has| (-383 |#2|) (-339)))) (($ $) NIL (|has| (-383 |#2|) (-339)))) (-2301 (($ $) NIL (|has| (-383 |#2|) (-325))) (((-3 $ "failed") $) NIL (|has| (-383 |#2|) (-134)))) (-1606 ((|#3| $) NIL)) (-1698 (((-710)) NIL)) (-3455 (((-108)) 37)) (-2771 (((-108) |#1|) 49) (((-108) |#2|) 132)) (-2922 (((-1169 $)) 93)) (-3842 (((-108) $ $) NIL (|has| (-383 |#2|) (-339)))) (-2376 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-4152 (((-108)) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| (-383 |#2|) (-339)))) (-1428 (($) 16 T CONST)) (-1440 (($) 26 T CONST)) (-1943 (($ $ (-1 (-383 |#2|) (-383 |#2|)) (-710)) NIL (|has| (-383 |#2|) (-339))) (($ $ (-1 (-383 |#2|) (-383 |#2|))) NIL (|has| (-383 |#2|) (-339))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-710)) NIL (-3255 (-12 (|has| (-383 |#2|) (-211)) (|has| (-383 |#2|) (-339))) (|has| (-383 |#2|) (-325)))) (($ $) NIL (-3255 (-12 (|has| (-383 |#2|) (-211)) (|has| (-383 |#2|) (-339))) (|has| (-383 |#2|) (-325))))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL (|has| (-383 |#2|) (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| (-383 |#2|) (-339)))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 |#2|)) NIL) (($ (-383 |#2|) $) NIL) (($ (-383 (-523)) $) NIL (|has| (-383 |#2|) (-339))) (($ $ (-383 (-523))) NIL (|has| (-383 |#2|) (-339)))))
-(((-39 |#1| |#2| |#3| |#4|) (-13 (-318 |#1| |#2| |#3|) (-10 -7 (-15 -2704 ((-1174) (-710))))) (-339) (-1145 |#1|) (-1145 (-383 |#2|)) |#3|) (T -39))
-((-2704 (*1 *2 *3) (-12 (-5 *3 (-710)) (-4 *4 (-339)) (-4 *5 (-1145 *4)) (-5 *2 (-1174)) (-5 *1 (-39 *4 *5 *6 *7)) (-4 *6 (-1145 (-383 *5))) (-14 *7 *6))))
-(-13 (-318 |#1| |#2| |#3|) (-10 -7 (-15 -2704 ((-1174) (-710)))))
-((-1473 ((|#2| |#2|) 48)) (-4201 ((|#2| |#2|) 119 (-12 (|has| |#2| (-406 |#1|)) (|has| |#1| (-427)) (|has| |#1| (-786)) (|has| |#1| (-964 (-523)))))) (-2829 ((|#2| |#2|) 87 (-12 (|has| |#2| (-406 |#1|)) (|has| |#1| (-427)) (|has| |#1| (-786)) (|has| |#1| (-964 (-523)))))) (-3825 ((|#2| |#2|) 88 (-12 (|has| |#2| (-406 |#1|)) (|has| |#1| (-427)) (|has| |#1| (-786)) (|has| |#1| (-964 (-523)))))) (-3081 ((|#2| (-110) |#2| (-710)) 75 (-12 (|has| |#2| (-406 |#1|)) (|has| |#1| (-427)) (|has| |#1| (-786)) (|has| |#1| (-964 (-523)))))) (-3178 (((-1083 |#2|) |#2|) 45)) (-1727 ((|#2| |#2| (-589 (-562 |#2|))) 18) ((|#2| |#2| (-589 |#2|)) 20) ((|#2| |#2| |#2|) 21) ((|#2| |#2|) 16)))
-(((-40 |#1| |#2|) (-10 -7 (-15 -1473 (|#2| |#2|)) (-15 -1727 (|#2| |#2|)) (-15 -1727 (|#2| |#2| |#2|)) (-15 -1727 (|#2| |#2| (-589 |#2|))) (-15 -1727 (|#2| |#2| (-589 (-562 |#2|)))) (-15 -3178 ((-1083 |#2|) |#2|)) (IF (|has| |#1| (-786)) (IF (|has| |#1| (-427)) (IF (|has| |#1| (-964 (-523))) (IF (|has| |#2| (-406 |#1|)) (PROGN (-15 -3825 (|#2| |#2|)) (-15 -2829 (|#2| |#2|)) (-15 -4201 (|#2| |#2|)) (-15 -3081 (|#2| (-110) |#2| (-710)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-515) (-13 (-339) (-279) (-10 -8 (-15 -2164 ((-1039 |#1| (-562 $)) $)) (-15 -2171 ((-1039 |#1| (-562 $)) $)) (-15 -3976 ($ (-1039 |#1| (-562 $))))))) (T -40))
-((-3081 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-110)) (-5 *4 (-710)) (-4 *5 (-427)) (-4 *5 (-786)) (-4 *5 (-964 (-523))) (-4 *5 (-515)) (-5 *1 (-40 *5 *2)) (-4 *2 (-406 *5)) (-4 *2 (-13 (-339) (-279) (-10 -8 (-15 -2164 ((-1039 *5 (-562 $)) $)) (-15 -2171 ((-1039 *5 (-562 $)) $)) (-15 -3976 ($ (-1039 *5 (-562 $))))))))) (-4201 (*1 *2 *2) (-12 (-4 *3 (-427)) (-4 *3 (-786)) (-4 *3 (-964 (-523))) (-4 *3 (-515)) (-5 *1 (-40 *3 *2)) (-4 *2 (-406 *3)) (-4 *2 (-13 (-339) (-279) (-10 -8 (-15 -2164 ((-1039 *3 (-562 $)) $)) (-15 -2171 ((-1039 *3 (-562 $)) $)) (-15 -3976 ($ (-1039 *3 (-562 $))))))))) (-2829 (*1 *2 *2) (-12 (-4 *3 (-427)) (-4 *3 (-786)) (-4 *3 (-964 (-523))) (-4 *3 (-515)) (-5 *1 (-40 *3 *2)) (-4 *2 (-406 *3)) (-4 *2 (-13 (-339) (-279) (-10 -8 (-15 -2164 ((-1039 *3 (-562 $)) $)) (-15 -2171 ((-1039 *3 (-562 $)) $)) (-15 -3976 ($ (-1039 *3 (-562 $))))))))) (-3825 (*1 *2 *2) (-12 (-4 *3 (-427)) (-4 *3 (-786)) (-4 *3 (-964 (-523))) (-4 *3 (-515)) (-5 *1 (-40 *3 *2)) (-4 *2 (-406 *3)) (-4 *2 (-13 (-339) (-279) (-10 -8 (-15 -2164 ((-1039 *3 (-562 $)) $)) (-15 -2171 ((-1039 *3 (-562 $)) $)) (-15 -3976 ($ (-1039 *3 (-562 $))))))))) (-3178 (*1 *2 *3) (-12 (-4 *4 (-515)) (-5 *2 (-1083 *3)) (-5 *1 (-40 *4 *3)) (-4 *3 (-13 (-339) (-279) (-10 -8 (-15 -2164 ((-1039 *4 (-562 $)) $)) (-15 -2171 ((-1039 *4 (-562 $)) $)) (-15 -3976 ($ (-1039 *4 (-562 $))))))))) (-1727 (*1 *2 *2 *3) (-12 (-5 *3 (-589 (-562 *2))) (-4 *2 (-13 (-339) (-279) (-10 -8 (-15 -2164 ((-1039 *4 (-562 $)) $)) (-15 -2171 ((-1039 *4 (-562 $)) $)) (-15 -3976 ($ (-1039 *4 (-562 $))))))) (-4 *4 (-515)) (-5 *1 (-40 *4 *2)))) (-1727 (*1 *2 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-13 (-339) (-279) (-10 -8 (-15 -2164 ((-1039 *4 (-562 $)) $)) (-15 -2171 ((-1039 *4 (-562 $)) $)) (-15 -3976 ($ (-1039 *4 (-562 $))))))) (-4 *4 (-515)) (-5 *1 (-40 *4 *2)))) (-1727 (*1 *2 *2 *2) (-12 (-4 *3 (-515)) (-5 *1 (-40 *3 *2)) (-4 *2 (-13 (-339) (-279) (-10 -8 (-15 -2164 ((-1039 *3 (-562 $)) $)) (-15 -2171 ((-1039 *3 (-562 $)) $)) (-15 -3976 ($ (-1039 *3 (-562 $))))))))) (-1727 (*1 *2 *2) (-12 (-4 *3 (-515)) (-5 *1 (-40 *3 *2)) (-4 *2 (-13 (-339) (-279) (-10 -8 (-15 -2164 ((-1039 *3 (-562 $)) $)) (-15 -2171 ((-1039 *3 (-562 $)) $)) (-15 -3976 ($ (-1039 *3 (-562 $))))))))) (-1473 (*1 *2 *2) (-12 (-4 *3 (-515)) (-5 *1 (-40 *3 *2)) (-4 *2 (-13 (-339) (-279) (-10 -8 (-15 -2164 ((-1039 *3 (-562 $)) $)) (-15 -2171 ((-1039 *3 (-562 $)) $)) (-15 -3976 ($ (-1039 *3 (-562 $))))))))))
-(-10 -7 (-15 -1473 (|#2| |#2|)) (-15 -1727 (|#2| |#2|)) (-15 -1727 (|#2| |#2| |#2|)) (-15 -1727 (|#2| |#2| (-589 |#2|))) (-15 -1727 (|#2| |#2| (-589 (-562 |#2|)))) (-15 -3178 ((-1083 |#2|) |#2|)) (IF (|has| |#1| (-786)) (IF (|has| |#1| (-427)) (IF (|has| |#1| (-964 (-523))) (IF (|has| |#2| (-406 |#1|)) (PROGN (-15 -3825 (|#2| |#2|)) (-15 -2829 (|#2| |#2|)) (-15 -4201 (|#2| |#2|)) (-15 -3081 (|#2| (-110) |#2| (-710)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
-((-3573 (((-394 (-1083 |#3|)) (-1083 |#3|) (-589 (-47))) 23) (((-394 |#3|) |#3| (-589 (-47))) 19)))
-(((-41 |#1| |#2| |#3|) (-10 -7 (-15 -3573 ((-394 |#3|) |#3| (-589 (-47)))) (-15 -3573 ((-394 (-1083 |#3|)) (-1083 |#3|) (-589 (-47))))) (-786) (-732) (-880 (-47) |#2| |#1|)) (T -41))
-((-3573 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-47))) (-4 *5 (-786)) (-4 *6 (-732)) (-4 *7 (-880 (-47) *6 *5)) (-5 *2 (-394 (-1083 *7))) (-5 *1 (-41 *5 *6 *7)) (-5 *3 (-1083 *7)))) (-3573 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-47))) (-4 *5 (-786)) (-4 *6 (-732)) (-5 *2 (-394 *3)) (-5 *1 (-41 *5 *6 *3)) (-4 *3 (-880 (-47) *6 *5)))))
-(-10 -7 (-15 -3573 ((-394 |#3|) |#3| (-589 (-47)))) (-15 -3573 ((-394 (-1083 |#3|)) (-1083 |#3|) (-589 (-47)))))
-((-2251 (((-710) |#2|) 65)) (-1970 (((-710) |#2|) 68)) (-3502 (((-589 |#2|)) 33)) (-3375 (((-710) |#2|) 67)) (-2001 (((-710) |#2|) 64)) (-1297 (((-710) |#2|) 66)) (-1539 (((-589 (-629 |#1|))) 60)) (-3614 (((-589 |#2|)) 55)) (-4126 (((-589 |#2|) |#2|) 43)) (-3920 (((-589 |#2|)) 57)) (-2900 (((-589 |#2|)) 56)) (-3279 (((-589 (-629 |#1|))) 48)) (-3065 (((-589 |#2|)) 54)) (-3619 (((-589 |#2|) |#2|) 42)) (-1737 (((-589 |#2|)) 50)) (-1778 (((-589 (-629 |#1|))) 61)) (-2077 (((-589 |#2|)) 59)) (-2922 (((-1169 |#2|) (-1169 |#2|)) 84 (|has| |#1| (-284)))))
-(((-42 |#1| |#2|) (-10 -7 (-15 -3375 ((-710) |#2|)) (-15 -1970 ((-710) |#2|)) (-15 -2001 ((-710) |#2|)) (-15 -2251 ((-710) |#2|)) (-15 -1297 ((-710) |#2|)) (-15 -1737 ((-589 |#2|))) (-15 -3619 ((-589 |#2|) |#2|)) (-15 -4126 ((-589 |#2|) |#2|)) (-15 -3065 ((-589 |#2|))) (-15 -3614 ((-589 |#2|))) (-15 -2900 ((-589 |#2|))) (-15 -3920 ((-589 |#2|))) (-15 -2077 ((-589 |#2|))) (-15 -3279 ((-589 (-629 |#1|)))) (-15 -1539 ((-589 (-629 |#1|)))) (-15 -1778 ((-589 (-629 |#1|)))) (-15 -3502 ((-589 |#2|))) (IF (|has| |#1| (-284)) (-15 -2922 ((-1169 |#2|) (-1169 |#2|))) |%noBranch|)) (-515) (-393 |#1|)) (T -42))
-((-2922 (*1 *2 *2) (-12 (-5 *2 (-1169 *4)) (-4 *4 (-393 *3)) (-4 *3 (-284)) (-4 *3 (-515)) (-5 *1 (-42 *3 *4)))) (-3502 (*1 *2) (-12 (-4 *3 (-515)) (-5 *2 (-589 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-393 *3)))) (-1778 (*1 *2) (-12 (-4 *3 (-515)) (-5 *2 (-589 (-629 *3))) (-5 *1 (-42 *3 *4)) (-4 *4 (-393 *3)))) (-1539 (*1 *2) (-12 (-4 *3 (-515)) (-5 *2 (-589 (-629 *3))) (-5 *1 (-42 *3 *4)) (-4 *4 (-393 *3)))) (-3279 (*1 *2) (-12 (-4 *3 (-515)) (-5 *2 (-589 (-629 *3))) (-5 *1 (-42 *3 *4)) (-4 *4 (-393 *3)))) (-2077 (*1 *2) (-12 (-4 *3 (-515)) (-5 *2 (-589 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-393 *3)))) (-3920 (*1 *2) (-12 (-4 *3 (-515)) (-5 *2 (-589 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-393 *3)))) (-2900 (*1 *2) (-12 (-4 *3 (-515)) (-5 *2 (-589 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-393 *3)))) (-3614 (*1 *2) (-12 (-4 *3 (-515)) (-5 *2 (-589 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-393 *3)))) (-3065 (*1 *2) (-12 (-4 *3 (-515)) (-5 *2 (-589 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-393 *3)))) (-4126 (*1 *2 *3) (-12 (-4 *4 (-515)) (-5 *2 (-589 *3)) (-5 *1 (-42 *4 *3)) (-4 *3 (-393 *4)))) (-3619 (*1 *2 *3) (-12 (-4 *4 (-515)) (-5 *2 (-589 *3)) (-5 *1 (-42 *4 *3)) (-4 *3 (-393 *4)))) (-1737 (*1 *2) (-12 (-4 *3 (-515)) (-5 *2 (-589 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-393 *3)))) (-1297 (*1 *2 *3) (-12 (-4 *4 (-515)) (-5 *2 (-710)) (-5 *1 (-42 *4 *3)) (-4 *3 (-393 *4)))) (-2251 (*1 *2 *3) (-12 (-4 *4 (-515)) (-5 *2 (-710)) (-5 *1 (-42 *4 *3)) (-4 *3 (-393 *4)))) (-2001 (*1 *2 *3) (-12 (-4 *4 (-515)) (-5 *2 (-710)) (-5 *1 (-42 *4 *3)) (-4 *3 (-393 *4)))) (-1970 (*1 *2 *3) (-12 (-4 *4 (-515)) (-5 *2 (-710)) (-5 *1 (-42 *4 *3)) (-4 *3 (-393 *4)))) (-3375 (*1 *2 *3) (-12 (-4 *4 (-515)) (-5 *2 (-710)) (-5 *1 (-42 *4 *3)) (-4 *3 (-393 *4)))))
-(-10 -7 (-15 -3375 ((-710) |#2|)) (-15 -1970 ((-710) |#2|)) (-15 -2001 ((-710) |#2|)) (-15 -2251 ((-710) |#2|)) (-15 -1297 ((-710) |#2|)) (-15 -1737 ((-589 |#2|))) (-15 -3619 ((-589 |#2|) |#2|)) (-15 -4126 ((-589 |#2|) |#2|)) (-15 -3065 ((-589 |#2|))) (-15 -3614 ((-589 |#2|))) (-15 -2900 ((-589 |#2|))) (-15 -3920 ((-589 |#2|))) (-15 -2077 ((-589 |#2|))) (-15 -3279 ((-589 (-629 |#1|)))) (-15 -1539 ((-589 (-629 |#1|)))) (-15 -1778 ((-589 (-629 |#1|)))) (-15 -3502 ((-589 |#2|))) (IF (|has| |#1| (-284)) (-15 -2922 ((-1169 |#2|) (-1169 |#2|))) |%noBranch|))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1895 (((-3 $ "failed")) NIL (|has| |#1| (-515)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-2279 (((-1169 (-629 |#1|)) (-1169 $)) NIL) (((-1169 (-629 |#1|))) 24)) (-3513 (((-1169 $)) 51)) (-1640 (($) NIL T CONST)) (-1563 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) NIL (|has| |#1| (-515)))) (-3869 (((-3 $ "failed")) NIL (|has| |#1| (-515)))) (-4067 (((-629 |#1|) (-1169 $)) NIL) (((-629 |#1|)) NIL)) (-2507 ((|#1| $) NIL)) (-2358 (((-629 |#1|) $ (-1169 $)) NIL) (((-629 |#1|) $) NIL)) (-2439 (((-3 $ "failed") $) NIL (|has| |#1| (-515)))) (-2717 (((-1083 (-883 |#1|))) NIL (|has| |#1| (-339)))) (-2966 (($ $ (-852)) NIL)) (-2860 ((|#1| $) NIL)) (-2119 (((-1083 |#1|) $) NIL (|has| |#1| (-515)))) (-1772 ((|#1| (-1169 $)) NIL) ((|#1|) NIL)) (-2196 (((-1083 |#1|) $) NIL)) (-3953 (((-108)) 87)) (-3322 (($ (-1169 |#1|) (-1169 $)) NIL) (($ (-1169 |#1|)) NIL)) (-4211 (((-3 $ "failed") $) 14 (|has| |#1| (-515)))) (-2262 (((-852)) 52)) (-3091 (((-108)) NIL)) (-1935 (($ $ (-852)) NIL)) (-3562 (((-108)) NIL)) (-3877 (((-108)) NIL)) (-3868 (((-108)) 89)) (-4111 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) NIL (|has| |#1| (-515)))) (-3575 (((-3 $ "failed")) NIL (|has| |#1| (-515)))) (-2216 (((-629 |#1|) (-1169 $)) NIL) (((-629 |#1|)) NIL)) (-1870 ((|#1| $) NIL)) (-2225 (((-629 |#1|) $ (-1169 $)) NIL) (((-629 |#1|) $) NIL)) (-3790 (((-3 $ "failed") $) NIL (|has| |#1| (-515)))) (-2975 (((-1083 (-883 |#1|))) NIL (|has| |#1| (-339)))) (-2165 (($ $ (-852)) NIL)) (-1876 ((|#1| $) NIL)) (-1393 (((-1083 |#1|) $) NIL (|has| |#1| (-515)))) (-1242 ((|#1| (-1169 $)) NIL) ((|#1|) NIL)) (-1292 (((-1083 |#1|) $) NIL)) (-1519 (((-108)) 86)) (-3841 (((-1070) $) NIL)) (-1279 (((-108)) 93)) (-1466 (((-108)) 92)) (-1597 (((-108)) 94)) (-2435 (((-1034) $) NIL)) (-2375 (((-108)) 88)) (-1502 ((|#1| $ (-523)) 54)) (-2411 (((-1169 |#1|) $ (-1169 $)) 48) (((-629 |#1|) (-1169 $) (-1169 $)) NIL) (((-1169 |#1|) $) 28) (((-629 |#1|) (-1169 $)) NIL)) (-3077 (((-1169 |#1|) $) NIL) (($ (-1169 |#1|)) NIL)) (-1948 (((-589 (-883 |#1|)) (-1169 $)) NIL) (((-589 (-883 |#1|))) NIL)) (-2306 (($ $ $) NIL)) (-2178 (((-108)) 84)) (-3976 (((-794) $) 69) (($ (-1169 |#1|)) 22)) (-2922 (((-1169 $)) 45)) (-1842 (((-589 (-1169 |#1|))) NIL (|has| |#1| (-515)))) (-3377 (($ $ $ $) NIL)) (-1363 (((-108)) 82)) (-3817 (($ (-629 |#1|) $) 18)) (-1952 (($ $ $) NIL)) (-3931 (((-108)) 85)) (-3433 (((-108)) 83)) (-4001 (((-108)) 81)) (-1428 (($) NIL T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 76) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1054 |#2| |#1|) $) 19)))
-(((-43 |#1| |#2| |#3| |#4|) (-13 (-393 |#1|) (-591 (-1054 |#2| |#1|)) (-10 -8 (-15 -3976 ($ (-1169 |#1|))))) (-339) (-852) (-589 (-1087)) (-1169 (-629 |#1|))) (T -43))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-339)) (-14 *6 (-1169 (-629 *3))) (-5 *1 (-43 *3 *4 *5 *6)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))))))
-(-13 (-393 |#1|) (-591 (-1054 |#2| |#1|)) (-10 -8 (-15 -3976 ($ (-1169 |#1|)))))
-((-3260 (((-108) $ $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-2058 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-3972 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-3548 (($ $) NIL)) (-2340 (($) NIL) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-1666 (((-1174) $ |#1| |#1|) NIL (|has| $ (-6 -4249))) (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-3117 (($ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4159 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL) (((-108) $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-2361 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4249))) (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786))))) (-3400 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-2282 (((-108) $ (-710)) NIL)) (-3365 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4249)))) (-3546 (($ $ $) 27 (|has| $ (-6 -4249)))) (-2535 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4249)))) (-1957 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 29 (|has| $ (-6 -4249)))) (-4101 ((|#2| $ |#1| |#2|) 46) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4249))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-1136 (-523)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4249))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ "last" (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4249))) (($ $ "rest" $) NIL (|has| $ (-6 -4249))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ "first" (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4249))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ "value" (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) NIL (|has| $ (-6 -4249)))) (-3627 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL)) (-1299 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-3962 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-2521 (((-3 |#2| "failed") |#1| $) 37)) (-1640 (($) NIL T CONST)) (-4091 (($ $) NIL (|has| $ (-6 -4249)))) (-4082 (($ $) NIL)) (-3891 (($ $ (-710)) NIL) (($ $) 24)) (-2543 (($ $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-1869 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-3 |#2| "failed") |#1| $) 48) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL) (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (-2231 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1830 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4248))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4248))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4249))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4249)))) (-3002 ((|#2| $ |#1|) NIL) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523)) NIL)) (-2527 (((-108) $) NIL)) (-1894 (((-523) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL) (((-523) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))) (((-523) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523)) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (-3133 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 18 (|has| $ (-6 -4248))) (((-589 |#2|) $) NIL (|has| $ (-6 -4248))) (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 18 (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) NIL)) (-3339 (((-108) $ $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (-2348 (($ (-710) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-1798 ((|#1| $) NIL (|has| |#1| (-786))) (((-523) $) 32 (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-3325 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-3123 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-3056 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-589 |#2|) $) NIL (|has| $ (-6 -4248))) (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016)))) (((-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-2133 ((|#1| $) NIL (|has| |#1| (-786))) (((-523) $) 34 (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-3063 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4249))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4249))) (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL)) (-3745 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-2112 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL)) (-3391 (((-108) $) NIL)) (-3841 (((-1070) $) 42 (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-2247 (($ $ (-710)) NIL) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-1612 (((-589 |#1|) $) 20)) (-2754 (((-108) |#1| $) NIL)) (-2349 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-3862 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL) (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523)) NIL) (($ $ $ (-523)) NIL)) (-3334 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523)) NIL) (($ $ $ (-523)) NIL)) (-2909 (((-589 |#1|) $) NIL) (((-589 (-523)) $) NIL)) (-2290 (((-108) |#1| $) NIL) (((-108) (-523) $) NIL)) (-2435 (((-1034) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-3879 ((|#2| $) NIL (|has| |#1| (-786))) (($ $ (-710)) NIL) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 23)) (-2660 (((-3 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) "failed") (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL) (((-3 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) "failed") (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL)) (-2408 (($ $ |#2|) NIL (|has| $ (-6 -4249))) (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4249)))) (-1322 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-3214 (((-108) $) NIL)) (-2720 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 (-271 |#2|))) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016)))) (((-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-3184 (((-589 |#2|) $) NIL) (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 17)) (-3163 (((-108) $) 16)) (-4055 (($) 13)) (-1502 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ (-523)) NIL) (($ $ (-1136 (-523))) NIL) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ "first") NIL) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $ "value") NIL)) (-2981 (((-523) $ $) NIL)) (-1771 (($) 12) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-1314 (($ $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-3725 (($ $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-2837 (((-108) $) NIL)) (-2238 (($ $) NIL)) (-4198 (($ $) NIL (|has| $ (-6 -4249)))) (-3647 (((-710) $) NIL)) (-2801 (($ $) NIL)) (-2452 (((-710) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-710) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016)))) (((-710) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-710) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-2580 (($ $ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-564 (-499))))) (-3985 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-1622 (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL) (($ $ $) NIL)) (-2785 (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL) (($ (-589 $)) NIL) (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 25) (($ $ $) NIL)) (-3976 (((-794) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-563 (-794))) (|has| |#2| (-563 (-794)))))) (-2464 (((-589 $) $) NIL)) (-4004 (((-108) $ $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (-1245 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-2255 (((-3 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) "failed") |#1| $) 44)) (-1505 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-4061 (((-108) $ $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-4037 (((-108) $ $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-4070 (((-108) $ $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-4052 (((-108) $ $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-786)))) (-1271 (((-710) $) 22 (|has| $ (-6 -4248)))))
-(((-44 |#1| |#2|) (-35 |#1| |#2|) (-1016) (-1016)) (T -44))
+(3144513 . 3417777717)
+((-3203 (((-108) (-1 (-108) |#2| |#2|) $) 63) (((-108) $) NIL)) (-4026 (($ (-1 (-108) |#2| |#2|) $) 18) (($ $) NIL)) (-3186 ((|#2| $ (-525) |#2|) NIL) ((|#2| $ (-1138 (-525)) |#2|) 34)) (-2598 (($ $) 59)) (-1227 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 40) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 38) ((|#2| (-1 |#2| |#2| |#2|) $) 37)) (-3004 (((-525) (-1 (-108) |#2|) $) 22) (((-525) |#2| $) NIL) (((-525) |#2| $ (-525)) 73)) (-3454 (((-591 |#2|) $) 13)) (-2131 (($ (-1 (-108) |#2| |#2|) $ $) 48) (($ $ $) NIL)) (-3249 (($ (-1 |#2| |#2|) $) 29)) (-1340 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 44)) (-4189 (($ |#2| $ (-525)) NIL) (($ $ $ (-525)) 50)) (-2069 (((-3 |#2| "failed") (-1 (-108) |#2|) $) 24)) (-1623 (((-108) (-1 (-108) |#2|) $) 21)) (-3164 ((|#2| $ (-525) |#2|) NIL) ((|#2| $ (-525)) NIL) (($ $ (-1138 (-525))) 49)) (-2777 (($ $ (-525)) 56) (($ $ (-1138 (-525))) 55)) (-2064 (((-712) (-1 (-108) |#2|) $) 26) (((-712) |#2| $) NIL)) (-4063 (($ $ $ (-525)) 52)) (-3199 (($ $) 51)) (-3036 (($ (-591 |#2|)) 53)) (-3690 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 64) (($ (-591 $)) 62)) (-3022 (((-796) $) 69)) (-4158 (((-108) (-1 (-108) |#2|) $) 20)) (-4096 (((-108) $ $) 72)) (-4112 (((-108) $ $) 75)))
+(((-18 |#1| |#2|) (-10 -8 (-15 -4096 ((-108) |#1| |#1|)) (-15 -3022 ((-796) |#1|)) (-15 -4112 ((-108) |#1| |#1|)) (-15 -4026 (|#1| |#1|)) (-15 -4026 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -2598 (|#1| |#1|)) (-15 -4063 (|#1| |#1| |#1| (-525))) (-15 -3203 ((-108) |#1|)) (-15 -2131 (|#1| |#1| |#1|)) (-15 -3004 ((-525) |#2| |#1| (-525))) (-15 -3004 ((-525) |#2| |#1|)) (-15 -3004 ((-525) (-1 (-108) |#2|) |#1|)) (-15 -3203 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -2131 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -3186 (|#2| |#1| (-1138 (-525)) |#2|)) (-15 -4189 (|#1| |#1| |#1| (-525))) (-15 -4189 (|#1| |#2| |#1| (-525))) (-15 -2777 (|#1| |#1| (-1138 (-525)))) (-15 -2777 (|#1| |#1| (-525))) (-15 -3164 (|#1| |#1| (-1138 (-525)))) (-15 -1340 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3690 (|#1| (-591 |#1|))) (-15 -3690 (|#1| |#1| |#1|)) (-15 -3690 (|#1| |#2| |#1|)) (-15 -3690 (|#1| |#1| |#2|)) (-15 -3036 (|#1| (-591 |#2|))) (-15 -2069 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3164 (|#2| |#1| (-525))) (-15 -3164 (|#2| |#1| (-525) |#2|)) (-15 -3186 (|#2| |#1| (-525) |#2|)) (-15 -2064 ((-712) |#2| |#1|)) (-15 -3454 ((-591 |#2|) |#1|)) (-15 -2064 ((-712) (-1 (-108) |#2|) |#1|)) (-15 -1623 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4158 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3249 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3199 (|#1| |#1|))) (-19 |#2|) (-1125)) (T -18))
+NIL
+(-10 -8 (-15 -4096 ((-108) |#1| |#1|)) (-15 -3022 ((-796) |#1|)) (-15 -4112 ((-108) |#1| |#1|)) (-15 -4026 (|#1| |#1|)) (-15 -4026 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -2598 (|#1| |#1|)) (-15 -4063 (|#1| |#1| |#1| (-525))) (-15 -3203 ((-108) |#1|)) (-15 -2131 (|#1| |#1| |#1|)) (-15 -3004 ((-525) |#2| |#1| (-525))) (-15 -3004 ((-525) |#2| |#1|)) (-15 -3004 ((-525) (-1 (-108) |#2|) |#1|)) (-15 -3203 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -2131 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -3186 (|#2| |#1| (-1138 (-525)) |#2|)) (-15 -4189 (|#1| |#1| |#1| (-525))) (-15 -4189 (|#1| |#2| |#1| (-525))) (-15 -2777 (|#1| |#1| (-1138 (-525)))) (-15 -2777 (|#1| |#1| (-525))) (-15 -3164 (|#1| |#1| (-1138 (-525)))) (-15 -1340 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3690 (|#1| (-591 |#1|))) (-15 -3690 (|#1| |#1| |#1|)) (-15 -3690 (|#1| |#2| |#1|)) (-15 -3690 (|#1| |#1| |#2|)) (-15 -3036 (|#1| (-591 |#2|))) (-15 -2069 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3164 (|#2| |#1| (-525))) (-15 -3164 (|#2| |#1| (-525) |#2|)) (-15 -3186 (|#2| |#1| (-525) |#2|)) (-15 -2064 ((-712) |#2| |#1|)) (-15 -3454 ((-591 |#2|) |#1|)) (-15 -2064 ((-712) (-1 (-108) |#2|) |#1|)) (-15 -1623 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4158 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3249 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3199 (|#1| |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3296 (((-1176) $ (-525) (-525)) 40 (|has| $ (-6 -4251)))) (-3203 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-788)))) (-4026 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4251))) (($ $) 88 (-12 (|has| |#1| (-788)) (|has| $ (-6 -4251))))) (-3327 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-788)))) (-3891 (((-108) $ (-712)) 8)) (-3186 ((|#1| $ (-525) |#1|) 52 (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) 58 (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4250)))) (-3798 (($) 7 T CONST)) (-2598 (($ $) 90 (|has| $ (-6 -4251)))) (-2617 (($ $) 100)) (-3098 (($ $) 78 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ |#1| $) 77 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4250)))) (-3255 ((|#1| $ (-525) |#1|) 53 (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) 51)) (-3004 (((-525) (-1 (-108) |#1|) $) 97) (((-525) |#1| $) 96 (|has| |#1| (-1018))) (((-525) |#1| $ (-525)) 95 (|has| |#1| (-1018)))) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-1268 (($ (-712) |#1|) 69)) (-2910 (((-108) $ (-712)) 9)) (-3630 (((-525) $) 43 (|has| (-525) (-788)))) (-3741 (($ $ $) 87 (|has| |#1| (-788)))) (-2131 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-788)))) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3468 (((-525) $) 44 (|has| (-525) (-788)))) (-2478 (($ $ $) 86 (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-4189 (($ |#1| $ (-525)) 60) (($ $ $ (-525)) 59)) (-2511 (((-591 (-525)) $) 46)) (-2791 (((-108) (-525) $) 47)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-3066 ((|#1| $) 42 (|has| (-525) (-788)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-1941 (($ $ |#1|) 41 (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-1615 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) 48)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ (-525) |#1|) 50) ((|#1| $ (-525)) 49) (($ $ (-1138 (-525))) 63)) (-2777 (($ $ (-525)) 62) (($ $ (-1138 (-525))) 61)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-4063 (($ $ $ (-525)) 91 (|has| $ (-6 -4251)))) (-3199 (($ $) 13)) (-1408 (((-501) $) 79 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 70)) (-3690 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-591 $)) 65)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) 84 (|has| |#1| (-788)))) (-4119 (((-108) $ $) 83 (|has| |#1| (-788)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4126 (((-108) $ $) 85 (|has| |#1| (-788)))) (-4112 (((-108) $ $) 82 (|has| |#1| (-788)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-19 |#1|) (-131) (-1125)) (T -19))
+NIL
+(-13 (-351 |t#1|) (-10 -7 (-6 -4251)))
+(((-33) . T) ((-97) -3321 (|has| |#1| (-1018)) (|has| |#1| (-788))) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-788)) (|has| |#1| (-565 (-796)))) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-265 #0=(-525) |#1|) . T) ((-267 #0# |#1|) . T) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-351 |#1|) . T) ((-464 |#1|) . T) ((-558 #0# |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-596 |#1|) . T) ((-788) |has| |#1| (-788)) ((-1018) -3321 (|has| |#1| (-1018)) (|has| |#1| (-788))) ((-1125) . T))
+((-2157 (((-3 $ "failed") $ $) 12)) (-4164 (($ $) NIL) (($ $ $) 9)) (* (($ (-854) $) NIL) (($ (-712) $) 16) (($ (-525) $) 21)))
+(((-20 |#1|) (-10 -8 (-15 * (|#1| (-525) |#1|)) (-15 -4164 (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|)) (-15 -2157 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-854) |#1|))) (-21)) (T -20))
+NIL
+(-10 -8 (-15 * (|#1| (-525) |#1|)) (-15 -4164 (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|)) (-15 -2157 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-854) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20)))
+(((-21) (-131)) (T -21))
+((-4164 (*1 *1 *1) (-4 *1 (-21))) (-4164 (*1 *1 *1 *1) (-4 *1 (-21))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-21)) (-5 *2 (-525)))))
+(-13 (-126) (-10 -8 (-15 -4164 ($ $)) (-15 -4164 ($ $ $)) (-15 * ($ (-525) $))))
+(((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-1800 (((-108) $) 10)) (-3798 (($) 15)) (* (($ (-854) $) 14) (($ (-712) $) 18)))
+(((-22 |#1|) (-10 -8 (-15 * (|#1| (-712) |#1|)) (-15 -1800 ((-108) |#1|)) (-15 -3798 (|#1|)) (-15 * (|#1| (-854) |#1|))) (-23)) (T -22))
+NIL
+(-10 -8 (-15 * (|#1| (-712) |#1|)) (-15 -1800 ((-108) |#1|)) (-15 -3798 (|#1|)) (-15 * (|#1| (-854) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3798 (($) 17 T CONST)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4156 (($ $ $) 14)) (* (($ (-854) $) 13) (($ (-712) $) 15)))
+(((-23) (-131)) (T -23))
+((-4191 (*1 *1) (-4 *1 (-23))) (-3798 (*1 *1) (-4 *1 (-23))) (-1800 (*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-108)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-712)))))
+(-13 (-25) (-10 -8 (-15 (-4191) ($) -2058) (-15 -3798 ($) -2058) (-15 -1800 ((-108) $)) (-15 * ($ (-712) $))))
+(((-25) . T) ((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((* (($ (-854) $) 10)))
+(((-24 |#1|) (-10 -8 (-15 * (|#1| (-854) |#1|))) (-25)) (T -24))
+NIL
+(-10 -8 (-15 * (|#1| (-854) |#1|)))
+((-3008 (((-108) $ $) 7)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4096 (((-108) $ $) 6)) (-4156 (($ $ $) 14)) (* (($ (-854) $) 13)))
+(((-25) (-131)) (T -25))
+((-4156 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-854)))))
+(-13 (-1018) (-10 -8 (-15 -4156 ($ $ $)) (-15 * ($ (-854) $))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-2453 (((-591 $) (-885 $)) 29) (((-591 $) (-1085 $)) 16) (((-591 $) (-1085 $) (-1089)) 20)) (-3719 (($ (-885 $)) 27) (($ (-1085 $)) 11) (($ (-1085 $) (-1089)) 54)) (-2733 (((-591 $) (-885 $)) 30) (((-591 $) (-1085 $)) 18) (((-591 $) (-1085 $) (-1089)) 19)) (-3642 (($ (-885 $)) 28) (($ (-1085 $)) 13) (($ (-1085 $) (-1089)) NIL)))
+(((-26 |#1|) (-10 -8 (-15 -2453 ((-591 |#1|) (-1085 |#1|) (-1089))) (-15 -2453 ((-591 |#1|) (-1085 |#1|))) (-15 -2453 ((-591 |#1|) (-885 |#1|))) (-15 -3719 (|#1| (-1085 |#1|) (-1089))) (-15 -3719 (|#1| (-1085 |#1|))) (-15 -3719 (|#1| (-885 |#1|))) (-15 -2733 ((-591 |#1|) (-1085 |#1|) (-1089))) (-15 -2733 ((-591 |#1|) (-1085 |#1|))) (-15 -2733 ((-591 |#1|) (-885 |#1|))) (-15 -3642 (|#1| (-1085 |#1|) (-1089))) (-15 -3642 (|#1| (-1085 |#1|))) (-15 -3642 (|#1| (-885 |#1|)))) (-27)) (T -26))
+NIL
+(-10 -8 (-15 -2453 ((-591 |#1|) (-1085 |#1|) (-1089))) (-15 -2453 ((-591 |#1|) (-1085 |#1|))) (-15 -2453 ((-591 |#1|) (-885 |#1|))) (-15 -3719 (|#1| (-1085 |#1|) (-1089))) (-15 -3719 (|#1| (-1085 |#1|))) (-15 -3719 (|#1| (-885 |#1|))) (-15 -2733 ((-591 |#1|) (-1085 |#1|) (-1089))) (-15 -2733 ((-591 |#1|) (-1085 |#1|))) (-15 -2733 ((-591 |#1|) (-885 |#1|))) (-15 -3642 (|#1| (-1085 |#1|) (-1089))) (-15 -3642 (|#1| (-1085 |#1|))) (-15 -3642 (|#1| (-885 |#1|))))
+((-3008 (((-108) $ $) 7)) (-2453 (((-591 $) (-885 $)) 80) (((-591 $) (-1085 $)) 79) (((-591 $) (-1085 $) (-1089)) 78)) (-3719 (($ (-885 $)) 83) (($ (-1085 $)) 82) (($ (-1085 $) (-1089)) 81)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2157 (((-3 $ "failed") $ $) 19)) (-1291 (($ $) 73)) (-2827 (((-396 $) $) 72)) (-1361 (($ $) 92)) (-1947 (((-108) $ $) 59)) (-3798 (($) 17 T CONST)) (-2733 (((-591 $) (-885 $)) 86) (((-591 $) (-1085 $)) 85) (((-591 $) (-1085 $) (-1089)) 84)) (-3642 (($ (-885 $)) 89) (($ (-1085 $)) 88) (($ (-1085 $) (-1089)) 87)) (-2129 (($ $ $) 55)) (-4163 (((-3 $ "failed") $) 34)) (-2110 (($ $ $) 56)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 51)) (-2744 (((-108) $) 71)) (-2824 (((-108) $) 31)) (-3956 (($ $ (-525)) 91)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 52)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-1622 (($ $) 70)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-1348 (((-396 $) $) 74)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2089 (((-3 $ "failed") $ $) 42)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 50)) (-1712 (((-712) $) 58)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 57)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43) (($ (-385 (-525))) 65)) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 39)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 69)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4173 (($ $ $) 64)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 68) (($ $ (-385 (-525))) 90)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 (-525))) 67) (($ (-385 (-525)) $) 66)))
+(((-27) (-131)) (T -27))
+((-3642 (*1 *1 *2) (-12 (-5 *2 (-885 *1)) (-4 *1 (-27)))) (-3642 (*1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-27)))) (-3642 (*1 *1 *2 *3) (-12 (-5 *2 (-1085 *1)) (-5 *3 (-1089)) (-4 *1 (-27)))) (-2733 (*1 *2 *3) (-12 (-5 *3 (-885 *1)) (-4 *1 (-27)) (-5 *2 (-591 *1)))) (-2733 (*1 *2 *3) (-12 (-5 *3 (-1085 *1)) (-4 *1 (-27)) (-5 *2 (-591 *1)))) (-2733 (*1 *2 *3 *4) (-12 (-5 *3 (-1085 *1)) (-5 *4 (-1089)) (-4 *1 (-27)) (-5 *2 (-591 *1)))) (-3719 (*1 *1 *2) (-12 (-5 *2 (-885 *1)) (-4 *1 (-27)))) (-3719 (*1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-27)))) (-3719 (*1 *1 *2 *3) (-12 (-5 *2 (-1085 *1)) (-5 *3 (-1089)) (-4 *1 (-27)))) (-2453 (*1 *2 *3) (-12 (-5 *3 (-885 *1)) (-4 *1 (-27)) (-5 *2 (-591 *1)))) (-2453 (*1 *2 *3) (-12 (-5 *3 (-1085 *1)) (-4 *1 (-27)) (-5 *2 (-591 *1)))) (-2453 (*1 *2 *3 *4) (-12 (-5 *3 (-1085 *1)) (-5 *4 (-1089)) (-4 *1 (-27)) (-5 *2 (-591 *1)))))
+(-13 (-341) (-932) (-10 -8 (-15 -3642 ($ (-885 $))) (-15 -3642 ($ (-1085 $))) (-15 -3642 ($ (-1085 $) (-1089))) (-15 -2733 ((-591 $) (-885 $))) (-15 -2733 ((-591 $) (-1085 $))) (-15 -2733 ((-591 $) (-1085 $) (-1089))) (-15 -3719 ($ (-885 $))) (-15 -3719 ($ (-1085 $))) (-15 -3719 ($ (-1085 $) (-1089))) (-15 -2453 ((-591 $) (-885 $))) (-15 -2453 ((-591 $) (-1085 $))) (-15 -2453 ((-591 $) (-1085 $) (-1089)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-126) . T) ((-565 (-796)) . T) ((-160) . T) ((-223) . T) ((-269) . T) ((-286) . T) ((-341) . T) ((-429) . T) ((-517) . T) ((-593 #0#) . T) ((-593 $) . T) ((-659 #0#) . T) ((-659 $) . T) ((-668) . T) ((-853) . T) ((-932) . T) ((-981 #0#) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1129) . T))
+((-2453 (((-591 $) (-885 $)) NIL) (((-591 $) (-1085 $)) NIL) (((-591 $) (-1085 $) (-1089)) 50) (((-591 $) $) 19) (((-591 $) $ (-1089)) 41)) (-3719 (($ (-885 $)) NIL) (($ (-1085 $)) NIL) (($ (-1085 $) (-1089)) 52) (($ $) 17) (($ $ (-1089)) 37)) (-2733 (((-591 $) (-885 $)) NIL) (((-591 $) (-1085 $)) NIL) (((-591 $) (-1085 $) (-1089)) 48) (((-591 $) $) 15) (((-591 $) $ (-1089)) 43)) (-3642 (($ (-885 $)) NIL) (($ (-1085 $)) NIL) (($ (-1085 $) (-1089)) NIL) (($ $) 12) (($ $ (-1089)) 39)))
+(((-28 |#1| |#2|) (-10 -8 (-15 -2453 ((-591 |#1|) |#1| (-1089))) (-15 -3719 (|#1| |#1| (-1089))) (-15 -2453 ((-591 |#1|) |#1|)) (-15 -3719 (|#1| |#1|)) (-15 -2733 ((-591 |#1|) |#1| (-1089))) (-15 -3642 (|#1| |#1| (-1089))) (-15 -2733 ((-591 |#1|) |#1|)) (-15 -3642 (|#1| |#1|)) (-15 -2453 ((-591 |#1|) (-1085 |#1|) (-1089))) (-15 -2453 ((-591 |#1|) (-1085 |#1|))) (-15 -2453 ((-591 |#1|) (-885 |#1|))) (-15 -3719 (|#1| (-1085 |#1|) (-1089))) (-15 -3719 (|#1| (-1085 |#1|))) (-15 -3719 (|#1| (-885 |#1|))) (-15 -2733 ((-591 |#1|) (-1085 |#1|) (-1089))) (-15 -2733 ((-591 |#1|) (-1085 |#1|))) (-15 -2733 ((-591 |#1|) (-885 |#1|))) (-15 -3642 (|#1| (-1085 |#1|) (-1089))) (-15 -3642 (|#1| (-1085 |#1|))) (-15 -3642 (|#1| (-885 |#1|)))) (-29 |#2|) (-13 (-788) (-517))) (T -28))
+NIL
+(-10 -8 (-15 -2453 ((-591 |#1|) |#1| (-1089))) (-15 -3719 (|#1| |#1| (-1089))) (-15 -2453 ((-591 |#1|) |#1|)) (-15 -3719 (|#1| |#1|)) (-15 -2733 ((-591 |#1|) |#1| (-1089))) (-15 -3642 (|#1| |#1| (-1089))) (-15 -2733 ((-591 |#1|) |#1|)) (-15 -3642 (|#1| |#1|)) (-15 -2453 ((-591 |#1|) (-1085 |#1|) (-1089))) (-15 -2453 ((-591 |#1|) (-1085 |#1|))) (-15 -2453 ((-591 |#1|) (-885 |#1|))) (-15 -3719 (|#1| (-1085 |#1|) (-1089))) (-15 -3719 (|#1| (-1085 |#1|))) (-15 -3719 (|#1| (-885 |#1|))) (-15 -2733 ((-591 |#1|) (-1085 |#1|) (-1089))) (-15 -2733 ((-591 |#1|) (-1085 |#1|))) (-15 -2733 ((-591 |#1|) (-885 |#1|))) (-15 -3642 (|#1| (-1085 |#1|) (-1089))) (-15 -3642 (|#1| (-1085 |#1|))) (-15 -3642 (|#1| (-885 |#1|))))
+((-3008 (((-108) $ $) 7)) (-2453 (((-591 $) (-885 $)) 80) (((-591 $) (-1085 $)) 79) (((-591 $) (-1085 $) (-1089)) 78) (((-591 $) $) 126) (((-591 $) $ (-1089)) 124)) (-3719 (($ (-885 $)) 83) (($ (-1085 $)) 82) (($ (-1085 $) (-1089)) 81) (($ $) 127) (($ $ (-1089)) 125)) (-1800 (((-108) $) 16)) (-1507 (((-591 (-1089)) $) 201)) (-1312 (((-385 (-1085 $)) $ (-564 $)) 233 (|has| |#1| (-517)))) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-3374 (((-591 (-564 $)) $) 164)) (-2157 (((-3 $ "failed") $ $) 19)) (-3825 (($ $ (-591 (-564 $)) (-591 $)) 154) (($ $ (-591 (-273 $))) 153) (($ $ (-273 $)) 152)) (-1291 (($ $) 73)) (-2827 (((-396 $) $) 72)) (-1361 (($ $) 92)) (-1947 (((-108) $ $) 59)) (-3798 (($) 17 T CONST)) (-2733 (((-591 $) (-885 $)) 86) (((-591 $) (-1085 $)) 85) (((-591 $) (-1085 $) (-1089)) 84) (((-591 $) $) 130) (((-591 $) $ (-1089)) 128)) (-3642 (($ (-885 $)) 89) (($ (-1085 $)) 88) (($ (-1085 $) (-1089)) 87) (($ $) 131) (($ $ (-1089)) 129)) (-1251 (((-3 (-885 |#1|) "failed") $) 251 (|has| |#1| (-975))) (((-3 (-385 (-885 |#1|)) "failed") $) 235 (|has| |#1| (-517))) (((-3 |#1| "failed") $) 197) (((-3 (-525) "failed") $) 195 (|has| |#1| (-966 (-525)))) (((-3 (-1089) "failed") $) 188) (((-3 (-564 $) "failed") $) 139) (((-3 (-385 (-525)) "failed") $) 123 (-3321 (-12 (|has| |#1| (-966 (-525))) (|has| |#1| (-517))) (|has| |#1| (-966 (-385 (-525))))))) (-3528 (((-885 |#1|) $) 252 (|has| |#1| (-975))) (((-385 (-885 |#1|)) $) 236 (|has| |#1| (-517))) ((|#1| $) 198) (((-525) $) 194 (|has| |#1| (-966 (-525)))) (((-1089) $) 189) (((-564 $) $) 140) (((-385 (-525)) $) 122 (-3321 (-12 (|has| |#1| (-966 (-525))) (|has| |#1| (-517))) (|has| |#1| (-966 (-385 (-525))))))) (-2129 (($ $ $) 55)) (-3305 (((-631 |#1|) (-631 $)) 241 (|has| |#1| (-975))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) 240 (|has| |#1| (-975))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 121 (-3321 (-1213 (|has| |#1| (-975)) (|has| |#1| (-587 (-525)))) (-1213 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))))) (((-631 (-525)) (-631 $)) 120 (-3321 (-1213 (|has| |#1| (-975)) (|has| |#1| (-587 (-525)))) (-1213 (|has| |#1| (-587 (-525))) (|has| |#1| (-975)))))) (-4163 (((-3 $ "failed") $) 34)) (-2110 (($ $ $) 56)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 51)) (-2744 (((-108) $) 71)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 193 (|has| |#1| (-819 (-357)))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 192 (|has| |#1| (-819 (-525))))) (-1668 (($ (-591 $)) 158) (($ $) 157)) (-2194 (((-591 (-110)) $) 165)) (-3219 (((-110) (-110)) 166)) (-2824 (((-108) $) 31)) (-2419 (((-108) $) 186 (|has| $ (-966 (-525))))) (-2368 (($ $) 218 (|has| |#1| (-975)))) (-1738 (((-1041 |#1| (-564 $)) $) 217 (|has| |#1| (-975)))) (-3956 (($ $ (-525)) 91)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 52)) (-2695 (((-1085 $) (-564 $)) 183 (|has| $ (-975)))) (-3741 (($ $ $) 137)) (-2478 (($ $ $) 136)) (-1340 (($ (-1 $ $) (-564 $)) 172)) (-1405 (((-3 (-564 $) "failed") $) 162)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-1298 (((-591 (-564 $)) $) 163)) (-1843 (($ (-110) (-591 $)) 171) (($ (-110) $) 170)) (-3376 (((-3 (-591 $) "failed") $) 212 (|has| |#1| (-1030)))) (-3877 (((-3 (-2 (|:| |val| $) (|:| -2008 (-525))) "failed") $) 221 (|has| |#1| (-975)))) (-2010 (((-3 (-591 $) "failed") $) 214 (|has| |#1| (-25)))) (-2104 (((-3 (-2 (|:| -3482 (-525)) (|:| |var| (-564 $))) "failed") $) 215 (|has| |#1| (-25)))) (-2292 (((-3 (-2 (|:| |var| (-564 $)) (|:| -2008 (-525))) "failed") $ (-1089)) 220 (|has| |#1| (-975))) (((-3 (-2 (|:| |var| (-564 $)) (|:| -2008 (-525))) "failed") $ (-110)) 219 (|has| |#1| (-975))) (((-3 (-2 (|:| |var| (-564 $)) (|:| -2008 (-525))) "failed") $) 213 (|has| |#1| (-1030)))) (-1709 (((-108) $ (-1089)) 169) (((-108) $ (-110)) 168)) (-1622 (($ $) 70)) (-2965 (((-712) $) 161)) (-2047 (((-1036) $) 10)) (-1634 (((-108) $) 199)) (-1646 ((|#1| $) 200)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-1988 (((-108) $ (-1089)) 174) (((-108) $ $) 173)) (-1348 (((-396 $) $) 74)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2089 (((-3 $ "failed") $ $) 42)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 50)) (-3451 (((-108) $) 185 (|has| $ (-966 (-525))))) (-4132 (($ $ (-1089) (-712) (-1 $ $)) 225 (|has| |#1| (-975))) (($ $ (-1089) (-712) (-1 $ (-591 $))) 224 (|has| |#1| (-975))) (($ $ (-591 (-1089)) (-591 (-712)) (-591 (-1 $ (-591 $)))) 223 (|has| |#1| (-975))) (($ $ (-591 (-1089)) (-591 (-712)) (-591 (-1 $ $))) 222 (|has| |#1| (-975))) (($ $ (-591 (-110)) (-591 $) (-1089)) 211 (|has| |#1| (-566 (-501)))) (($ $ (-110) $ (-1089)) 210 (|has| |#1| (-566 (-501)))) (($ $) 209 (|has| |#1| (-566 (-501)))) (($ $ (-591 (-1089))) 208 (|has| |#1| (-566 (-501)))) (($ $ (-1089)) 207 (|has| |#1| (-566 (-501)))) (($ $ (-110) (-1 $ $)) 182) (($ $ (-110) (-1 $ (-591 $))) 181) (($ $ (-591 (-110)) (-591 (-1 $ (-591 $)))) 180) (($ $ (-591 (-110)) (-591 (-1 $ $))) 179) (($ $ (-1089) (-1 $ $)) 178) (($ $ (-1089) (-1 $ (-591 $))) 177) (($ $ (-591 (-1089)) (-591 (-1 $ (-591 $)))) 176) (($ $ (-591 (-1089)) (-591 (-1 $ $))) 175) (($ $ (-591 $) (-591 $)) 146) (($ $ $ $) 145) (($ $ (-273 $)) 144) (($ $ (-591 (-273 $))) 143) (($ $ (-591 (-564 $)) (-591 $)) 142) (($ $ (-564 $) $) 141)) (-1712 (((-712) $) 58)) (-3164 (($ (-110) (-591 $)) 151) (($ (-110) $ $ $ $) 150) (($ (-110) $ $ $) 149) (($ (-110) $ $) 148) (($ (-110) $) 147)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 57)) (-1484 (($ $ $) 160) (($ $) 159)) (-3266 (($ $ (-1089)) 249 (|has| |#1| (-975))) (($ $ (-591 (-1089))) 248 (|has| |#1| (-975))) (($ $ (-1089) (-712)) 247 (|has| |#1| (-975))) (($ $ (-591 (-1089)) (-591 (-712))) 246 (|has| |#1| (-975)))) (-2966 (($ $) 228 (|has| |#1| (-517)))) (-1754 (((-1041 |#1| (-564 $)) $) 227 (|has| |#1| (-517)))) (-1478 (($ $) 184 (|has| $ (-975)))) (-1408 (((-501) $) 255 (|has| |#1| (-566 (-501)))) (($ (-396 $)) 226 (|has| |#1| (-517))) (((-825 (-357)) $) 191 (|has| |#1| (-566 (-825 (-357))))) (((-825 (-525)) $) 190 (|has| |#1| (-566 (-825 (-525)))))) (-3228 (($ $ $) 254 (|has| |#1| (-450)))) (-3619 (($ $ $) 253 (|has| |#1| (-450)))) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43) (($ (-385 (-525))) 65) (($ (-885 |#1|)) 250 (|has| |#1| (-975))) (($ (-385 (-885 |#1|))) 234 (|has| |#1| (-517))) (($ (-385 (-885 (-385 |#1|)))) 232 (|has| |#1| (-517))) (($ (-885 (-385 |#1|))) 231 (|has| |#1| (-517))) (($ (-385 |#1|)) 230 (|has| |#1| (-517))) (($ (-1041 |#1| (-564 $))) 216 (|has| |#1| (-975))) (($ |#1|) 196) (($ (-1089)) 187) (($ (-564 $)) 138)) (-1437 (((-3 $ "failed") $) 239 (|has| |#1| (-136)))) (-2128 (((-712)) 29)) (-2989 (($ (-591 $)) 156) (($ $) 155)) (-2661 (((-108) (-110)) 167)) (-2495 (((-108) $ $) 39)) (-2745 (($ (-1089) (-591 $)) 206) (($ (-1089) $ $ $ $) 205) (($ (-1089) $ $ $) 204) (($ (-1089) $ $) 203) (($ (-1089) $) 202)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 69)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ (-1089)) 245 (|has| |#1| (-975))) (($ $ (-591 (-1089))) 244 (|has| |#1| (-975))) (($ $ (-1089) (-712)) 243 (|has| |#1| (-975))) (($ $ (-591 (-1089)) (-591 (-712))) 242 (|has| |#1| (-975)))) (-4135 (((-108) $ $) 134)) (-4119 (((-108) $ $) 133)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 135)) (-4112 (((-108) $ $) 132)) (-4173 (($ $ $) 64) (($ (-1041 |#1| (-564 $)) (-1041 |#1| (-564 $))) 229 (|has| |#1| (-517)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 68) (($ $ (-385 (-525))) 90)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 (-525))) 67) (($ (-385 (-525)) $) 66) (($ $ |#1|) 238 (|has| |#1| (-160))) (($ |#1| $) 237 (|has| |#1| (-160)))))
+(((-29 |#1|) (-131) (-13 (-788) (-517))) (T -29))
+((-3642 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-788) (-517))))) (-2733 (*1 *2 *1) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *2 (-591 *1)) (-4 *1 (-29 *3)))) (-3642 (*1 *1 *1 *2) (-12 (-5 *2 (-1089)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-788) (-517))))) (-2733 (*1 *2 *1 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-591 *1)) (-4 *1 (-29 *4)))) (-3719 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-788) (-517))))) (-2453 (*1 *2 *1) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *2 (-591 *1)) (-4 *1 (-29 *3)))) (-3719 (*1 *1 *1 *2) (-12 (-5 *2 (-1089)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-788) (-517))))) (-2453 (*1 *2 *1 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-591 *1)) (-4 *1 (-29 *4)))))
+(-13 (-27) (-408 |t#1|) (-10 -8 (-15 -3642 ($ $)) (-15 -2733 ((-591 $) $)) (-15 -3642 ($ $ (-1089))) (-15 -2733 ((-591 $) $ (-1089))) (-15 -3719 ($ $)) (-15 -2453 ((-591 $) $)) (-15 -3719 ($ $ (-1089))) (-15 -2453 ((-591 $) $ (-1089)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) . T) ((-37 |#1|) |has| |#1| (-160)) ((-37 $) . T) ((-27) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) |has| |#1| (-160)) ((-107 $ $) . T) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-566 (-825 (-357))) |has| |#1| (-566 (-825 (-357)))) ((-566 (-825 (-525))) |has| |#1| (-566 (-825 (-525)))) ((-223) . T) ((-269) . T) ((-286) . T) ((-288 $) . T) ((-281) . T) ((-341) . T) ((-355 |#1|) |has| |#1| (-975)) ((-378 |#1|) . T) ((-389 |#1|) . T) ((-408 |#1|) . T) ((-429) . T) ((-450) |has| |#1| (-450)) ((-486 (-564 $) $) . T) ((-486 $ $) . T) ((-517) . T) ((-593 #0#) . T) ((-593 |#1|) |has| |#1| (-160)) ((-593 $) . T) ((-587 (-525)) -12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))) ((-587 |#1|) |has| |#1| (-975)) ((-659 #0#) . T) ((-659 |#1|) |has| |#1| (-160)) ((-659 $) . T) ((-668) . T) ((-788) . T) ((-833 (-1089)) |has| |#1| (-975)) ((-819 (-357)) |has| |#1| (-819 (-357))) ((-819 (-525)) |has| |#1| (-819 (-525))) ((-817 |#1|) . T) ((-853) . T) ((-932) . T) ((-966 (-385 (-525))) -3321 (|has| |#1| (-966 (-385 (-525)))) (-12 (|has| |#1| (-517)) (|has| |#1| (-966 (-525))))) ((-966 (-385 (-885 |#1|))) |has| |#1| (-517)) ((-966 (-525)) |has| |#1| (-966 (-525))) ((-966 (-564 $)) . T) ((-966 (-885 |#1|)) |has| |#1| (-975)) ((-966 (-1089)) . T) ((-966 |#1|) . T) ((-981 #0#) . T) ((-981 |#1|) |has| |#1| (-160)) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1125) . T) ((-1129) . T))
+((-3236 (((-1013 (-205)) $) NIL)) (-3229 (((-1013 (-205)) $) NIL)) (-2960 (($ $ (-205)) 123)) (-3791 (($ (-885 (-525)) (-1089) (-1089) (-1013 (-385 (-525))) (-1013 (-385 (-525)))) 85)) (-3001 (((-591 (-591 (-876 (-205)))) $) 135)) (-3022 (((-796) $) 147)))
+(((-30) (-13 (-887) (-10 -8 (-15 -3791 ($ (-885 (-525)) (-1089) (-1089) (-1013 (-385 (-525))) (-1013 (-385 (-525))))) (-15 -2960 ($ $ (-205)))))) (T -30))
+((-3791 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-885 (-525))) (-5 *3 (-1089)) (-5 *4 (-1013 (-385 (-525)))) (-5 *1 (-30)))) (-2960 (*1 *1 *1 *2) (-12 (-5 *2 (-205)) (-5 *1 (-30)))))
+(-13 (-887) (-10 -8 (-15 -3791 ($ (-885 (-525)) (-1089) (-1089) (-1013 (-385 (-525))) (-1013 (-385 (-525))))) (-15 -2960 ($ $ (-205)))))
+((-3642 ((|#2| (-1085 |#2|) (-1089)) 43)) (-3219 (((-110) (-110)) 56)) (-2695 (((-1085 |#2|) (-564 |#2|)) 131 (|has| |#1| (-966 (-525))))) (-3554 ((|#2| |#1| (-525)) 109 (|has| |#1| (-966 (-525))))) (-3961 ((|#2| (-1085 |#2|) |#2|) 30)) (-1212 (((-796) (-591 |#2|)) 85)) (-1478 ((|#2| |#2|) 127 (|has| |#1| (-966 (-525))))) (-2661 (((-108) (-110)) 18)) (** ((|#2| |#2| (-385 (-525))) 90 (|has| |#1| (-966 (-525))))))
+(((-31 |#1| |#2|) (-10 -7 (-15 -3642 (|#2| (-1085 |#2|) (-1089))) (-15 -3219 ((-110) (-110))) (-15 -2661 ((-108) (-110))) (-15 -3961 (|#2| (-1085 |#2|) |#2|)) (-15 -1212 ((-796) (-591 |#2|))) (IF (|has| |#1| (-966 (-525))) (PROGN (-15 ** (|#2| |#2| (-385 (-525)))) (-15 -2695 ((-1085 |#2|) (-564 |#2|))) (-15 -1478 (|#2| |#2|)) (-15 -3554 (|#2| |#1| (-525)))) |%noBranch|)) (-13 (-788) (-517)) (-408 |#1|)) (T -31))
+((-3554 (*1 *2 *3 *4) (-12 (-5 *4 (-525)) (-4 *2 (-408 *3)) (-5 *1 (-31 *3 *2)) (-4 *3 (-966 *4)) (-4 *3 (-13 (-788) (-517))))) (-1478 (*1 *2 *2) (-12 (-4 *3 (-966 (-525))) (-4 *3 (-13 (-788) (-517))) (-5 *1 (-31 *3 *2)) (-4 *2 (-408 *3)))) (-2695 (*1 *2 *3) (-12 (-5 *3 (-564 *5)) (-4 *5 (-408 *4)) (-4 *4 (-966 (-525))) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-1085 *5)) (-5 *1 (-31 *4 *5)))) (** (*1 *2 *2 *3) (-12 (-5 *3 (-385 (-525))) (-4 *4 (-966 (-525))) (-4 *4 (-13 (-788) (-517))) (-5 *1 (-31 *4 *2)) (-4 *2 (-408 *4)))) (-1212 (*1 *2 *3) (-12 (-5 *3 (-591 *5)) (-4 *5 (-408 *4)) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-796)) (-5 *1 (-31 *4 *5)))) (-3961 (*1 *2 *3 *2) (-12 (-5 *3 (-1085 *2)) (-4 *2 (-408 *4)) (-4 *4 (-13 (-788) (-517))) (-5 *1 (-31 *4 *2)))) (-2661 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-108)) (-5 *1 (-31 *4 *5)) (-4 *5 (-408 *4)))) (-3219 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-788) (-517))) (-5 *1 (-31 *3 *4)) (-4 *4 (-408 *3)))) (-3642 (*1 *2 *3 *4) (-12 (-5 *3 (-1085 *2)) (-5 *4 (-1089)) (-4 *2 (-408 *5)) (-5 *1 (-31 *5 *2)) (-4 *5 (-13 (-788) (-517))))))
+(-10 -7 (-15 -3642 (|#2| (-1085 |#2|) (-1089))) (-15 -3219 ((-110) (-110))) (-15 -2661 ((-108) (-110))) (-15 -3961 (|#2| (-1085 |#2|) |#2|)) (-15 -1212 ((-796) (-591 |#2|))) (IF (|has| |#1| (-966 (-525))) (PROGN (-15 ** (|#2| |#2| (-385 (-525)))) (-15 -2695 ((-1085 |#2|) (-564 |#2|))) (-15 -1478 (|#2| |#2|)) (-15 -3554 (|#2| |#1| (-525)))) |%noBranch|))
+((-3891 (((-108) $ (-712)) 16)) (-3798 (($) 10)) (-2910 (((-108) $ (-712)) 15)) (-3971 (((-108) $ (-712)) 14)) (-3493 (((-108) $ $) 8)) (-3028 (((-108) $) 13)))
+(((-32 |#1|) (-10 -8 (-15 -3798 (|#1|)) (-15 -3891 ((-108) |#1| (-712))) (-15 -2910 ((-108) |#1| (-712))) (-15 -3971 ((-108) |#1| (-712))) (-15 -3028 ((-108) |#1|)) (-15 -3493 ((-108) |#1| |#1|))) (-33)) (T -32))
+NIL
+(-10 -8 (-15 -3798 (|#1|)) (-15 -3891 ((-108) |#1| (-712))) (-15 -2910 ((-108) |#1| (-712))) (-15 -3971 ((-108) |#1| (-712))) (-15 -3028 ((-108) |#1|)) (-15 -3493 ((-108) |#1| |#1|)))
+((-3891 (((-108) $ (-712)) 8)) (-3798 (($) 7 T CONST)) (-2910 (((-108) $ (-712)) 9)) (-3971 (((-108) $ (-712)) 10)) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3199 (($ $) 13)) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-33) (-131)) (T -33))
+((-3493 (*1 *2 *1 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108)))) (-3199 (*1 *1 *1) (-4 *1 (-33))) (-3209 (*1 *1) (-4 *1 (-33))) (-3028 (*1 *2 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108)))) (-3971 (*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-712)) (-5 *2 (-108)))) (-2910 (*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-712)) (-5 *2 (-108)))) (-3891 (*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-712)) (-5 *2 (-108)))) (-3798 (*1 *1) (-4 *1 (-33))) (-4045 (*1 *2 *1) (-12 (|has| *1 (-6 -4250)) (-4 *1 (-33)) (-5 *2 (-712)))))
+(-13 (-1125) (-10 -8 (-15 -3493 ((-108) $ $)) (-15 -3199 ($ $)) (-15 -3209 ($)) (-15 -3028 ((-108) $)) (-15 -3971 ((-108) $ (-712))) (-15 -2910 ((-108) $ (-712))) (-15 -3891 ((-108) $ (-712))) (-15 -3798 ($) -2058) (IF (|has| $ (-6 -4250)) (-15 -4045 ((-712) $)) |%noBranch|)))
+(((-1125) . T))
+((-1563 (($ $) 11)) (-1515 (($ $) 10)) (-1591 (($ $) 9)) (-3277 (($ $) 8)) (-1578 (($ $) 7)) (-1527 (($ $) 6)))
+(((-34) (-131)) (T -34))
+((-1563 (*1 *1 *1) (-4 *1 (-34))) (-1515 (*1 *1 *1) (-4 *1 (-34))) (-1591 (*1 *1 *1) (-4 *1 (-34))) (-3277 (*1 *1 *1) (-4 *1 (-34))) (-1578 (*1 *1 *1) (-4 *1 (-34))) (-1527 (*1 *1 *1) (-4 *1 (-34))))
+(-13 (-10 -8 (-15 -1527 ($ $)) (-15 -1578 ($ $)) (-15 -3277 ($ $)) (-15 -1591 ($ $)) (-15 -1515 ($ $)) (-15 -1563 ($ $))))
+((-3008 (((-108) $ $) 19 (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3024 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 125)) (-3161 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 148)) (-3970 (($ $) 146)) (-1260 (($) 72) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 71)) (-3296 (((-1176) $ |#1| |#1|) 99 (|has| $ (-6 -4251))) (((-1176) $ (-525) (-525)) 178 (|has| $ (-6 -4251)))) (-3463 (($ $ (-525)) 159 (|has| $ (-6 -4251)))) (-3203 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 209) (((-108) $) 203 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-4026 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 200 (|has| $ (-6 -4251))) (($ $) 199 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)) (|has| $ (-6 -4251))))) (-3327 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 210) (($ $) 204 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-3891 (((-108) $ (-712)) 8)) (-1780 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 134 (|has| $ (-6 -4251)))) (-2146 (($ $ $) 155 (|has| $ (-6 -4251)))) (-2640 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 157 (|has| $ (-6 -4251)))) (-1901 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 153 (|has| $ (-6 -4251)))) (-3186 ((|#2| $ |#1| |#2|) 73) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 189 (|has| $ (-6 -4251))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-1138 (-525)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 160 (|has| $ (-6 -4251))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ "last" (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 158 (|has| $ (-6 -4251))) (($ $ "rest" $) 156 (|has| $ (-6 -4251))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ "first" (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 154 (|has| $ (-6 -4251))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ "value" (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 133 (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) 132 (|has| $ (-6 -4251)))) (-1797 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 45 (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 216)) (-2305 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 55 (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 175 (|has| $ (-6 -4250)))) (-3149 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 147)) (-2401 (((-3 |#2| "failed") |#1| $) 61)) (-3798 (($) 7 T CONST)) (-2598 (($ $) 201 (|has| $ (-6 -4251)))) (-2617 (($ $) 211)) (-3078 (($ $ (-712)) 142) (($ $) 140)) (-3611 (($ $) 214 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (-3098 (($ $) 58 (-3321 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250))) (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250)))))) (-3901 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 47 (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 46 (|has| $ (-6 -4250))) (((-3 |#2| "failed") |#1| $) 62) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 220) (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 215 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (-3677 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 54 (|has| $ (-6 -4250))) (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 177 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 174 (|has| $ (-6 -4250)))) (-1227 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 56 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250)))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 53 (|has| $ (-6 -4250))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 52 (|has| $ (-6 -4250))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 176 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250)))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 173 (|has| $ (-6 -4250))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 172 (|has| $ (-6 -4250)))) (-3255 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4251))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 190 (|has| $ (-6 -4251)))) (-3217 ((|#2| $ |#1|) 88) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525)) 188)) (-3629 (((-108) $) 192)) (-3004 (((-525) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 208) (((-525) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 207 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))) (((-525) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525)) 206 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (-3454 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 30 (|has| $ (-6 -4250))) (((-591 |#2|) $) 79 (|has| $ (-6 -4250))) (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 114 (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) 123)) (-2148 (((-108) $ $) 131 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (-1268 (($ (-712) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 169)) (-2910 (((-108) $ (-712)) 9)) (-3630 ((|#1| $) 96 (|has| |#1| (-788))) (((-525) $) 180 (|has| (-525) (-788)))) (-3741 (($ $ $) 198 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-2921 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ $) 217) (($ $ $) 213 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-2131 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ $) 212) (($ $ $) 205 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-2552 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 29 (|has| $ (-6 -4250))) (((-591 |#2|) $) 80 (|has| $ (-6 -4250))) (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 115 (|has| $ (-6 -4250)))) (-2141 (((-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250)))) (((-108) |#2| $) 82 (-12 (|has| |#2| (-1018)) (|has| $ (-6 -4250)))) (((-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 117 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250))))) (-3468 ((|#1| $) 95 (|has| |#1| (-788))) (((-525) $) 181 (|has| (-525) (-788)))) (-2478 (($ $ $) 197 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-3249 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 34 (|has| $ (-6 -4251))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4251))) (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 110 (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70) (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ $) 166) (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 109)) (-2932 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 225)) (-3971 (((-108) $ (-712)) 10)) (-2599 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 128)) (-1203 (((-108) $) 124)) (-2339 (((-1072) $) 22 (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3708 (($ $ (-712)) 145) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 143)) (-1542 (((-591 |#1|) $) 63)) (-2484 (((-108) |#1| $) 64)) (-1464 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 39)) (-2470 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 40) (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525)) 219) (($ $ $ (-525)) 218)) (-4189 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525)) 162) (($ $ $ (-525)) 161)) (-2511 (((-591 |#1|) $) 93) (((-591 (-525)) $) 183)) (-2791 (((-108) |#1| $) 92) (((-108) (-525) $) 184)) (-2047 (((-1036) $) 21 (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3066 ((|#2| $) 97 (|has| |#1| (-788))) (($ $ (-712)) 139) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 137)) (-2069 (((-3 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) "failed") (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 51) (((-3 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) "failed") (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 171)) (-1941 (($ $ |#2|) 98 (|has| $ (-6 -4251))) (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 179 (|has| $ (-6 -4251)))) (-3631 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 41)) (-3566 (((-108) $) 191)) (-1623 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 32 (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) 77 (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 112 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))))) 26 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 25 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 24 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 23 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) 86 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) 84 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 (-273 |#2|))) 83 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 121 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 120 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 119 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))))) 118 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3493 (((-108) $ $) 14)) (-1615 (((-108) |#2| $) 94 (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018)))) (((-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 182 (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3339 (((-591 |#2|) $) 91) (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 185)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 187) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525)) 186) (($ $ (-1138 (-525))) 165) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ "last") 144) (($ $ "rest") 141) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ "first") 138) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ "value") 126)) (-3505 (((-525) $ $) 129)) (-2311 (($) 49) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 48)) (-1790 (($ $ (-525)) 222) (($ $ (-1138 (-525))) 221)) (-2777 (($ $ (-525)) 164) (($ $ (-1138 (-525))) 163)) (-2237 (((-108) $) 127)) (-3820 (($ $) 151)) (-2609 (($ $) 152 (|has| $ (-6 -4251)))) (-3641 (((-712) $) 150)) (-1387 (($ $) 149)) (-2064 (((-712) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 31 (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250)))) (((-712) |#2| $) 81 (-12 (|has| |#2| (-1018)) (|has| $ (-6 -4250)))) (((-712) (-1 (-108) |#2|) $) 78 (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 116 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250)))) (((-712) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 113 (|has| $ (-6 -4250)))) (-4063 (($ $ $ (-525)) 202 (|has| $ (-6 -4251)))) (-3199 (($ $) 13)) (-1408 (((-501) $) 59 (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-566 (-501))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-566 (-501)))))) (-3036 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 50) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 170)) (-1679 (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 224) (($ $ $) 223)) (-3690 (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 168) (($ (-591 $)) 167) (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 136) (($ $ $) 135)) (-3022 (((-796) $) 18 (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-565 (-796))) (|has| |#2| (-565 (-796))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-565 (-796)))))) (-3860 (((-591 $) $) 122)) (-1632 (((-108) $ $) 130 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (-1870 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 42)) (-3720 (((-3 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) "failed") |#1| $) 108)) (-4158 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 33 (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) 76 (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 111 (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) 195 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-4119 (((-108) $ $) 194 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-4096 (((-108) $ $) 20 (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-4126 (((-108) $ $) 196 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-4112 (((-108) $ $) 193 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-35 |#1| |#2|) (-131) (-1018) (-1018)) (T -35))
+((-3720 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-35 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-5 *2 (-2 (|:| -2019 *3) (|:| -1221 *4))))))
+(-13 (-1102 |t#1| |t#2|) (-611 (-2 (|:| -2019 |t#1|) (|:| -1221 |t#2|))) (-10 -8 (-15 -3720 ((-3 (-2 (|:| -2019 |t#1|) (|:| -1221 |t#2|)) "failed") |t#1| $))))
+(((-33) . T) ((-102 #0=(-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T) ((-97) -3321 (|has| |#2| (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788))) ((-565 (-796)) -3321 (|has| |#2| (-1018)) (|has| |#2| (-565 (-796))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-565 (-796)))) ((-142 #1=(-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T) ((-566 (-501)) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-566 (-501))) ((-209 #0#) . T) ((-215 #0#) . T) ((-265 #2=(-525) #1#) . T) ((-265 |#1| |#2|) . T) ((-267 #2# #1#) . T) ((-267 |#1| |#2|) . T) ((-288 #1#) -12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))) ((-288 |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((-261 #1#) . T) ((-351 #1#) . T) ((-464 #1#) . T) ((-464 |#2|) . T) ((-558 #2# #1#) . T) ((-558 |#1| |#2|) . T) ((-486 #1# #1#) -12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))) ((-486 |#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((-562 |#1| |#2|) . T) ((-596 #1#) . T) ((-611 #1#) . T) ((-788) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)) ((-940 #1#) . T) ((-1018) -3321 (|has| |#2| (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788))) ((-1063 #1#) . T) ((-1102 |#1| |#2|) . T) ((-1125) . T) ((-1159 #1#) . T))
+((-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#2|) 10)))
+(((-36 |#1| |#2|) (-10 -8 (-15 -3022 (|#1| |#2|)) (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|))) (-37 |#2|) (-160)) (T -36))
+NIL
+(-10 -8 (-15 -3022 (|#1| |#2|)) (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 37)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
+(((-37 |#1|) (-131) (-160)) (T -37))
+((-3022 (*1 *1 *2) (-12 (-4 *1 (-37 *2)) (-4 *2 (-160)))))
+(-13 (-975) (-659 |t#1|) (-10 -8 (-15 -3022 ($ |t#1|))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 |#1|) . T) ((-593 $) . T) ((-659 |#1|) . T) ((-668) . T) ((-981 |#1|) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-2787 (((-396 |#1|) |#1|) 41)) (-1348 (((-396 |#1|) |#1|) 30) (((-396 |#1|) |#1| (-591 (-47))) 33)) (-2233 (((-108) |#1|) 56)))
+(((-38 |#1|) (-10 -7 (-15 -1348 ((-396 |#1|) |#1| (-591 (-47)))) (-15 -1348 ((-396 |#1|) |#1|)) (-15 -2787 ((-396 |#1|) |#1|)) (-15 -2233 ((-108) |#1|))) (-1147 (-47))) (T -38))
+((-2233 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-38 *3)) (-4 *3 (-1147 (-47))))) (-2787 (*1 *2 *3) (-12 (-5 *2 (-396 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1147 (-47))))) (-1348 (*1 *2 *3) (-12 (-5 *2 (-396 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1147 (-47))))) (-1348 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-47))) (-5 *2 (-396 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1147 (-47))))))
+(-10 -7 (-15 -1348 ((-396 |#1|) |#1| (-591 (-47)))) (-15 -1348 ((-396 |#1|) |#1|)) (-15 -2787 ((-396 |#1|) |#1|)) (-15 -2233 ((-108) |#1|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3816 (((-2 (|:| |num| (-1171 |#2|)) (|:| |den| |#2|)) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| (-385 |#2|) (-341)))) (-3706 (($ $) NIL (|has| (-385 |#2|) (-341)))) (-1715 (((-108) $) NIL (|has| (-385 |#2|) (-341)))) (-2796 (((-631 (-385 |#2|)) (-1171 $)) NIL) (((-631 (-385 |#2|))) NIL)) (-2569 (((-385 |#2|) $) NIL)) (-3734 (((-1099 (-854) (-712)) (-525)) NIL (|has| (-385 |#2|) (-327)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL (|has| (-385 |#2|) (-341)))) (-2827 (((-396 $) $) NIL (|has| (-385 |#2|) (-341)))) (-1947 (((-108) $ $) NIL (|has| (-385 |#2|) (-341)))) (-3032 (((-712)) NIL (|has| (-385 |#2|) (-346)))) (-1819 (((-108)) NIL)) (-4081 (((-108) |#1|) NIL) (((-108) |#2|) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL (|has| (-385 |#2|) (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| (-385 |#2|) (-966 (-385 (-525))))) (((-3 (-385 |#2|) "failed") $) NIL)) (-3528 (((-525) $) NIL (|has| (-385 |#2|) (-966 (-525)))) (((-385 (-525)) $) NIL (|has| (-385 |#2|) (-966 (-385 (-525))))) (((-385 |#2|) $) NIL)) (-4171 (($ (-1171 (-385 |#2|)) (-1171 $)) NIL) (($ (-1171 (-385 |#2|))) 57) (($ (-1171 |#2|) |#2|) 125)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-385 |#2|) (-327)))) (-2129 (($ $ $) NIL (|has| (-385 |#2|) (-341)))) (-3922 (((-631 (-385 |#2|)) $ (-1171 $)) NIL) (((-631 (-385 |#2|)) $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| (-385 |#2|) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| (-385 |#2|) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-385 |#2|))) (|:| |vec| (-1171 (-385 |#2|)))) (-631 $) (-1171 $)) NIL) (((-631 (-385 |#2|)) (-631 $)) NIL)) (-1598 (((-1171 $) (-1171 $)) NIL)) (-1227 (($ |#3|) NIL) (((-3 $ "failed") (-385 |#3|)) NIL (|has| (-385 |#2|) (-341)))) (-4163 (((-3 $ "failed") $) NIL)) (-1205 (((-591 (-591 |#1|))) NIL (|has| |#1| (-346)))) (-1565 (((-108) |#1| |#1|) NIL)) (-4073 (((-854)) NIL)) (-3377 (($) NIL (|has| (-385 |#2|) (-346)))) (-3390 (((-108)) NIL)) (-2764 (((-108) |#1|) NIL) (((-108) |#2|) NIL)) (-2110 (($ $ $) NIL (|has| (-385 |#2|) (-341)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| (-385 |#2|) (-341)))) (-3208 (($ $) NIL)) (-3944 (($) NIL (|has| (-385 |#2|) (-327)))) (-4104 (((-108) $) NIL (|has| (-385 |#2|) (-327)))) (-2299 (($ $ (-712)) NIL (|has| (-385 |#2|) (-327))) (($ $) NIL (|has| (-385 |#2|) (-327)))) (-2744 (((-108) $) NIL (|has| (-385 |#2|) (-341)))) (-3873 (((-854) $) NIL (|has| (-385 |#2|) (-327))) (((-774 (-854)) $) NIL (|has| (-385 |#2|) (-327)))) (-2824 (((-108) $) NIL)) (-1739 (((-712)) NIL)) (-2101 (((-1171 $) (-1171 $)) 102)) (-2771 (((-385 |#2|) $) NIL)) (-1957 (((-591 (-885 |#1|)) (-1089)) NIL (|has| |#1| (-341)))) (-2085 (((-3 $ "failed") $) NIL (|has| (-385 |#2|) (-327)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| (-385 |#2|) (-341)))) (-1382 ((|#3| $) NIL (|has| (-385 |#2|) (-341)))) (-3016 (((-854) $) NIL (|has| (-385 |#2|) (-346)))) (-1223 ((|#3| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| (-385 |#2|) (-341))) (($ $ $) NIL (|has| (-385 |#2|) (-341)))) (-2339 (((-1072) $) NIL)) (-3055 (((-1176) (-712)) 79)) (-3112 (((-631 (-385 |#2|))) 51)) (-1890 (((-631 (-385 |#2|))) 44)) (-1622 (($ $) NIL (|has| (-385 |#2|) (-341)))) (-3988 (($ (-1171 |#2|) |#2|) 126)) (-3202 (((-631 (-385 |#2|))) 45)) (-1891 (((-631 (-385 |#2|))) 43)) (-3870 (((-2 (|:| |num| (-631 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 124)) (-1351 (((-2 (|:| |num| (-1171 |#2|)) (|:| |den| |#2|)) $) 64)) (-3026 (((-1171 $)) 42)) (-3441 (((-1171 $)) 41)) (-2200 (((-108) $) NIL)) (-3053 (((-108) $) NIL) (((-108) $ |#1|) NIL) (((-108) $ |#2|) NIL)) (-3506 (($) NIL (|has| (-385 |#2|) (-327)) CONST)) (-2226 (($ (-854)) NIL (|has| (-385 |#2|) (-346)))) (-2506 (((-3 |#2| "failed")) NIL)) (-2047 (((-1036) $) NIL)) (-1892 (((-712)) NIL)) (-3857 (($) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| (-385 |#2|) (-341)))) (-1399 (($ (-591 $)) NIL (|has| (-385 |#2|) (-341))) (($ $ $) NIL (|has| (-385 |#2|) (-341)))) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) NIL (|has| (-385 |#2|) (-327)))) (-1348 (((-396 $) $) NIL (|has| (-385 |#2|) (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-385 |#2|) (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| (-385 |#2|) (-341)))) (-2089 (((-3 $ "failed") $ $) NIL (|has| (-385 |#2|) (-341)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| (-385 |#2|) (-341)))) (-1712 (((-712) $) NIL (|has| (-385 |#2|) (-341)))) (-3164 ((|#1| $ |#1| |#1|) NIL)) (-3787 (((-3 |#2| "failed")) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| (-385 |#2|) (-341)))) (-2976 (((-385 |#2|) (-1171 $)) NIL) (((-385 |#2|)) 39)) (-2953 (((-712) $) NIL (|has| (-385 |#2|) (-327))) (((-3 (-712) "failed") $ $) NIL (|has| (-385 |#2|) (-327)))) (-3266 (($ $ (-1 (-385 |#2|) (-385 |#2|)) (-712)) NIL (|has| (-385 |#2|) (-341))) (($ $ (-1 (-385 |#2|) (-385 |#2|))) NIL (|has| (-385 |#2|) (-341))) (($ $ (-1 |#2| |#2|)) 120) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-712)) NIL (-3321 (-12 (|has| (-385 |#2|) (-213)) (|has| (-385 |#2|) (-341))) (|has| (-385 |#2|) (-327)))) (($ $) NIL (-3321 (-12 (|has| (-385 |#2|) (-213)) (|has| (-385 |#2|) (-341))) (|has| (-385 |#2|) (-327))))) (-1244 (((-631 (-385 |#2|)) (-1171 $) (-1 (-385 |#2|) (-385 |#2|))) NIL (|has| (-385 |#2|) (-341)))) (-1478 ((|#3|) 50)) (-2616 (($) NIL (|has| (-385 |#2|) (-327)))) (-3572 (((-1171 (-385 |#2|)) $ (-1171 $)) NIL) (((-631 (-385 |#2|)) (-1171 $) (-1171 $)) NIL) (((-1171 (-385 |#2|)) $) 58) (((-631 (-385 |#2|)) (-1171 $)) 103)) (-1408 (((-1171 (-385 |#2|)) $) NIL) (($ (-1171 (-385 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (|has| (-385 |#2|) (-327)))) (-4065 (((-1171 $) (-1171 $)) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ (-385 |#2|)) NIL) (($ (-385 (-525))) NIL (-3321 (|has| (-385 |#2|) (-966 (-385 (-525)))) (|has| (-385 |#2|) (-341)))) (($ $) NIL (|has| (-385 |#2|) (-341)))) (-1437 (($ $) NIL (|has| (-385 |#2|) (-327))) (((-3 $ "failed") $) NIL (|has| (-385 |#2|) (-136)))) (-3806 ((|#3| $) NIL)) (-2128 (((-712)) NIL)) (-3841 (((-108)) 37)) (-1466 (((-108) |#1|) 49) (((-108) |#2|) 132)) (-4003 (((-1171 $)) 93)) (-2495 (((-108) $ $) NIL (|has| (-385 |#2|) (-341)))) (-4206 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-3886 (((-108)) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| (-385 |#2|) (-341)))) (-4191 (($) 16 T CONST)) (-4197 (($) 26 T CONST)) (-4196 (($ $ (-1 (-385 |#2|) (-385 |#2|)) (-712)) NIL (|has| (-385 |#2|) (-341))) (($ $ (-1 (-385 |#2|) (-385 |#2|))) NIL (|has| (-385 |#2|) (-341))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-712)) NIL (-3321 (-12 (|has| (-385 |#2|) (-213)) (|has| (-385 |#2|) (-341))) (|has| (-385 |#2|) (-327)))) (($ $) NIL (-3321 (-12 (|has| (-385 |#2|) (-213)) (|has| (-385 |#2|) (-341))) (|has| (-385 |#2|) (-327))))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL (|has| (-385 |#2|) (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| (-385 |#2|) (-341)))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 |#2|)) NIL) (($ (-385 |#2|) $) NIL) (($ (-385 (-525)) $) NIL (|has| (-385 |#2|) (-341))) (($ $ (-385 (-525))) NIL (|has| (-385 |#2|) (-341)))))
+(((-39 |#1| |#2| |#3| |#4|) (-13 (-320 |#1| |#2| |#3|) (-10 -7 (-15 -3055 ((-1176) (-712))))) (-341) (-1147 |#1|) (-1147 (-385 |#2|)) |#3|) (T -39))
+((-3055 (*1 *2 *3) (-12 (-5 *3 (-712)) (-4 *4 (-341)) (-4 *5 (-1147 *4)) (-5 *2 (-1176)) (-5 *1 (-39 *4 *5 *6 *7)) (-4 *6 (-1147 (-385 *5))) (-14 *7 *6))))
+(-13 (-320 |#1| |#2| |#3|) (-10 -7 (-15 -3055 ((-1176) (-712)))))
+((-2365 ((|#2| |#2|) 48)) (-1272 ((|#2| |#2|) 119 (-12 (|has| |#2| (-408 |#1|)) (|has| |#1| (-429)) (|has| |#1| (-788)) (|has| |#1| (-966 (-525)))))) (-3471 ((|#2| |#2|) 87 (-12 (|has| |#2| (-408 |#1|)) (|has| |#1| (-429)) (|has| |#1| (-788)) (|has| |#1| (-966 (-525)))))) (-3014 ((|#2| |#2|) 88 (-12 (|has| |#2| (-408 |#1|)) (|has| |#1| (-429)) (|has| |#1| (-788)) (|has| |#1| (-966 (-525)))))) (-3240 ((|#2| (-110) |#2| (-712)) 75 (-12 (|has| |#2| (-408 |#1|)) (|has| |#1| (-429)) (|has| |#1| (-788)) (|has| |#1| (-966 (-525)))))) (-2440 (((-1085 |#2|) |#2|) 45)) (-4002 ((|#2| |#2| (-591 (-564 |#2|))) 18) ((|#2| |#2| (-591 |#2|)) 20) ((|#2| |#2| |#2|) 21) ((|#2| |#2|) 16)))
+(((-40 |#1| |#2|) (-10 -7 (-15 -2365 (|#2| |#2|)) (-15 -4002 (|#2| |#2|)) (-15 -4002 (|#2| |#2| |#2|)) (-15 -4002 (|#2| |#2| (-591 |#2|))) (-15 -4002 (|#2| |#2| (-591 (-564 |#2|)))) (-15 -2440 ((-1085 |#2|) |#2|)) (IF (|has| |#1| (-788)) (IF (|has| |#1| (-429)) (IF (|has| |#1| (-966 (-525))) (IF (|has| |#2| (-408 |#1|)) (PROGN (-15 -3014 (|#2| |#2|)) (-15 -3471 (|#2| |#2|)) (-15 -1272 (|#2| |#2|)) (-15 -3240 (|#2| (-110) |#2| (-712)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-517) (-13 (-341) (-281) (-10 -8 (-15 -1738 ((-1041 |#1| (-564 $)) $)) (-15 -1754 ((-1041 |#1| (-564 $)) $)) (-15 -3022 ($ (-1041 |#1| (-564 $))))))) (T -40))
+((-3240 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-110)) (-5 *4 (-712)) (-4 *5 (-429)) (-4 *5 (-788)) (-4 *5 (-966 (-525))) (-4 *5 (-517)) (-5 *1 (-40 *5 *2)) (-4 *2 (-408 *5)) (-4 *2 (-13 (-341) (-281) (-10 -8 (-15 -1738 ((-1041 *5 (-564 $)) $)) (-15 -1754 ((-1041 *5 (-564 $)) $)) (-15 -3022 ($ (-1041 *5 (-564 $))))))))) (-1272 (*1 *2 *2) (-12 (-4 *3 (-429)) (-4 *3 (-788)) (-4 *3 (-966 (-525))) (-4 *3 (-517)) (-5 *1 (-40 *3 *2)) (-4 *2 (-408 *3)) (-4 *2 (-13 (-341) (-281) (-10 -8 (-15 -1738 ((-1041 *3 (-564 $)) $)) (-15 -1754 ((-1041 *3 (-564 $)) $)) (-15 -3022 ($ (-1041 *3 (-564 $))))))))) (-3471 (*1 *2 *2) (-12 (-4 *3 (-429)) (-4 *3 (-788)) (-4 *3 (-966 (-525))) (-4 *3 (-517)) (-5 *1 (-40 *3 *2)) (-4 *2 (-408 *3)) (-4 *2 (-13 (-341) (-281) (-10 -8 (-15 -1738 ((-1041 *3 (-564 $)) $)) (-15 -1754 ((-1041 *3 (-564 $)) $)) (-15 -3022 ($ (-1041 *3 (-564 $))))))))) (-3014 (*1 *2 *2) (-12 (-4 *3 (-429)) (-4 *3 (-788)) (-4 *3 (-966 (-525))) (-4 *3 (-517)) (-5 *1 (-40 *3 *2)) (-4 *2 (-408 *3)) (-4 *2 (-13 (-341) (-281) (-10 -8 (-15 -1738 ((-1041 *3 (-564 $)) $)) (-15 -1754 ((-1041 *3 (-564 $)) $)) (-15 -3022 ($ (-1041 *3 (-564 $))))))))) (-2440 (*1 *2 *3) (-12 (-4 *4 (-517)) (-5 *2 (-1085 *3)) (-5 *1 (-40 *4 *3)) (-4 *3 (-13 (-341) (-281) (-10 -8 (-15 -1738 ((-1041 *4 (-564 $)) $)) (-15 -1754 ((-1041 *4 (-564 $)) $)) (-15 -3022 ($ (-1041 *4 (-564 $))))))))) (-4002 (*1 *2 *2 *3) (-12 (-5 *3 (-591 (-564 *2))) (-4 *2 (-13 (-341) (-281) (-10 -8 (-15 -1738 ((-1041 *4 (-564 $)) $)) (-15 -1754 ((-1041 *4 (-564 $)) $)) (-15 -3022 ($ (-1041 *4 (-564 $))))))) (-4 *4 (-517)) (-5 *1 (-40 *4 *2)))) (-4002 (*1 *2 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-13 (-341) (-281) (-10 -8 (-15 -1738 ((-1041 *4 (-564 $)) $)) (-15 -1754 ((-1041 *4 (-564 $)) $)) (-15 -3022 ($ (-1041 *4 (-564 $))))))) (-4 *4 (-517)) (-5 *1 (-40 *4 *2)))) (-4002 (*1 *2 *2 *2) (-12 (-4 *3 (-517)) (-5 *1 (-40 *3 *2)) (-4 *2 (-13 (-341) (-281) (-10 -8 (-15 -1738 ((-1041 *3 (-564 $)) $)) (-15 -1754 ((-1041 *3 (-564 $)) $)) (-15 -3022 ($ (-1041 *3 (-564 $))))))))) (-4002 (*1 *2 *2) (-12 (-4 *3 (-517)) (-5 *1 (-40 *3 *2)) (-4 *2 (-13 (-341) (-281) (-10 -8 (-15 -1738 ((-1041 *3 (-564 $)) $)) (-15 -1754 ((-1041 *3 (-564 $)) $)) (-15 -3022 ($ (-1041 *3 (-564 $))))))))) (-2365 (*1 *2 *2) (-12 (-4 *3 (-517)) (-5 *1 (-40 *3 *2)) (-4 *2 (-13 (-341) (-281) (-10 -8 (-15 -1738 ((-1041 *3 (-564 $)) $)) (-15 -1754 ((-1041 *3 (-564 $)) $)) (-15 -3022 ($ (-1041 *3 (-564 $))))))))))
+(-10 -7 (-15 -2365 (|#2| |#2|)) (-15 -4002 (|#2| |#2|)) (-15 -4002 (|#2| |#2| |#2|)) (-15 -4002 (|#2| |#2| (-591 |#2|))) (-15 -4002 (|#2| |#2| (-591 (-564 |#2|)))) (-15 -2440 ((-1085 |#2|) |#2|)) (IF (|has| |#1| (-788)) (IF (|has| |#1| (-429)) (IF (|has| |#1| (-966 (-525))) (IF (|has| |#2| (-408 |#1|)) (PROGN (-15 -3014 (|#2| |#2|)) (-15 -3471 (|#2| |#2|)) (-15 -1272 (|#2| |#2|)) (-15 -3240 (|#2| (-110) |#2| (-712)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
+((-1348 (((-396 (-1085 |#3|)) (-1085 |#3|) (-591 (-47))) 23) (((-396 |#3|) |#3| (-591 (-47))) 19)))
+(((-41 |#1| |#2| |#3|) (-10 -7 (-15 -1348 ((-396 |#3|) |#3| (-591 (-47)))) (-15 -1348 ((-396 (-1085 |#3|)) (-1085 |#3|) (-591 (-47))))) (-788) (-734) (-882 (-47) |#2| |#1|)) (T -41))
+((-1348 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-47))) (-4 *5 (-788)) (-4 *6 (-734)) (-4 *7 (-882 (-47) *6 *5)) (-5 *2 (-396 (-1085 *7))) (-5 *1 (-41 *5 *6 *7)) (-5 *3 (-1085 *7)))) (-1348 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-47))) (-4 *5 (-788)) (-4 *6 (-734)) (-5 *2 (-396 *3)) (-5 *1 (-41 *5 *6 *3)) (-4 *3 (-882 (-47) *6 *5)))))
+(-10 -7 (-15 -1348 ((-396 |#3|) |#3| (-591 (-47)))) (-15 -1348 ((-396 (-1085 |#3|)) (-1085 |#3|) (-591 (-47)))))
+((-1861 (((-712) |#2|) 65)) (-1592 (((-712) |#2|) 68)) (-2937 (((-591 |#2|)) 33)) (-2219 (((-712) |#2|) 67)) (-4195 (((-712) |#2|) 64)) (-2605 (((-712) |#2|) 66)) (-2743 (((-591 (-631 |#1|))) 60)) (-3308 (((-591 |#2|)) 55)) (-4106 (((-591 |#2|) |#2|) 43)) (-1982 (((-591 |#2|)) 57)) (-1993 (((-591 |#2|)) 56)) (-1997 (((-591 (-631 |#1|))) 48)) (-2375 (((-591 |#2|)) 54)) (-2786 (((-591 |#2|) |#2|) 42)) (-2970 (((-591 |#2|)) 50)) (-1961 (((-591 (-631 |#1|))) 61)) (-4167 (((-591 |#2|)) 59)) (-4003 (((-1171 |#2|) (-1171 |#2|)) 84 (|has| |#1| (-286)))))
+(((-42 |#1| |#2|) (-10 -7 (-15 -2219 ((-712) |#2|)) (-15 -1592 ((-712) |#2|)) (-15 -4195 ((-712) |#2|)) (-15 -1861 ((-712) |#2|)) (-15 -2605 ((-712) |#2|)) (-15 -2970 ((-591 |#2|))) (-15 -2786 ((-591 |#2|) |#2|)) (-15 -4106 ((-591 |#2|) |#2|)) (-15 -2375 ((-591 |#2|))) (-15 -3308 ((-591 |#2|))) (-15 -1993 ((-591 |#2|))) (-15 -1982 ((-591 |#2|))) (-15 -4167 ((-591 |#2|))) (-15 -1997 ((-591 (-631 |#1|)))) (-15 -2743 ((-591 (-631 |#1|)))) (-15 -1961 ((-591 (-631 |#1|)))) (-15 -2937 ((-591 |#2|))) (IF (|has| |#1| (-286)) (-15 -4003 ((-1171 |#2|) (-1171 |#2|))) |%noBranch|)) (-517) (-395 |#1|)) (T -42))
+((-4003 (*1 *2 *2) (-12 (-5 *2 (-1171 *4)) (-4 *4 (-395 *3)) (-4 *3 (-286)) (-4 *3 (-517)) (-5 *1 (-42 *3 *4)))) (-2937 (*1 *2) (-12 (-4 *3 (-517)) (-5 *2 (-591 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-395 *3)))) (-1961 (*1 *2) (-12 (-4 *3 (-517)) (-5 *2 (-591 (-631 *3))) (-5 *1 (-42 *3 *4)) (-4 *4 (-395 *3)))) (-2743 (*1 *2) (-12 (-4 *3 (-517)) (-5 *2 (-591 (-631 *3))) (-5 *1 (-42 *3 *4)) (-4 *4 (-395 *3)))) (-1997 (*1 *2) (-12 (-4 *3 (-517)) (-5 *2 (-591 (-631 *3))) (-5 *1 (-42 *3 *4)) (-4 *4 (-395 *3)))) (-4167 (*1 *2) (-12 (-4 *3 (-517)) (-5 *2 (-591 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-395 *3)))) (-1982 (*1 *2) (-12 (-4 *3 (-517)) (-5 *2 (-591 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-395 *3)))) (-1993 (*1 *2) (-12 (-4 *3 (-517)) (-5 *2 (-591 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-395 *3)))) (-3308 (*1 *2) (-12 (-4 *3 (-517)) (-5 *2 (-591 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-395 *3)))) (-2375 (*1 *2) (-12 (-4 *3 (-517)) (-5 *2 (-591 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-395 *3)))) (-4106 (*1 *2 *3) (-12 (-4 *4 (-517)) (-5 *2 (-591 *3)) (-5 *1 (-42 *4 *3)) (-4 *3 (-395 *4)))) (-2786 (*1 *2 *3) (-12 (-4 *4 (-517)) (-5 *2 (-591 *3)) (-5 *1 (-42 *4 *3)) (-4 *3 (-395 *4)))) (-2970 (*1 *2) (-12 (-4 *3 (-517)) (-5 *2 (-591 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-395 *3)))) (-2605 (*1 *2 *3) (-12 (-4 *4 (-517)) (-5 *2 (-712)) (-5 *1 (-42 *4 *3)) (-4 *3 (-395 *4)))) (-1861 (*1 *2 *3) (-12 (-4 *4 (-517)) (-5 *2 (-712)) (-5 *1 (-42 *4 *3)) (-4 *3 (-395 *4)))) (-4195 (*1 *2 *3) (-12 (-4 *4 (-517)) (-5 *2 (-712)) (-5 *1 (-42 *4 *3)) (-4 *3 (-395 *4)))) (-1592 (*1 *2 *3) (-12 (-4 *4 (-517)) (-5 *2 (-712)) (-5 *1 (-42 *4 *3)) (-4 *3 (-395 *4)))) (-2219 (*1 *2 *3) (-12 (-4 *4 (-517)) (-5 *2 (-712)) (-5 *1 (-42 *4 *3)) (-4 *3 (-395 *4)))))
+(-10 -7 (-15 -2219 ((-712) |#2|)) (-15 -1592 ((-712) |#2|)) (-15 -4195 ((-712) |#2|)) (-15 -1861 ((-712) |#2|)) (-15 -2605 ((-712) |#2|)) (-15 -2970 ((-591 |#2|))) (-15 -2786 ((-591 |#2|) |#2|)) (-15 -4106 ((-591 |#2|) |#2|)) (-15 -2375 ((-591 |#2|))) (-15 -3308 ((-591 |#2|))) (-15 -1993 ((-591 |#2|))) (-15 -1982 ((-591 |#2|))) (-15 -4167 ((-591 |#2|))) (-15 -1997 ((-591 (-631 |#1|)))) (-15 -2743 ((-591 (-631 |#1|)))) (-15 -1961 ((-591 (-631 |#1|)))) (-15 -2937 ((-591 |#2|))) (IF (|has| |#1| (-286)) (-15 -4003 ((-1171 |#2|) (-1171 |#2|))) |%noBranch|))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2999 (((-3 $ "failed")) NIL (|has| |#1| (-517)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1593 (((-1171 (-631 |#1|)) (-1171 $)) NIL) (((-1171 (-631 |#1|))) 24)) (-2608 (((-1171 $)) 51)) (-3798 (($) NIL T CONST)) (-3160 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) NIL (|has| |#1| (-517)))) (-3624 (((-3 $ "failed")) NIL (|has| |#1| (-517)))) (-4094 (((-631 |#1|) (-1171 $)) NIL) (((-631 |#1|)) NIL)) (-4011 ((|#1| $) NIL)) (-3711 (((-631 |#1|) $ (-1171 $)) NIL) (((-631 |#1|) $) NIL)) (-3057 (((-3 $ "failed") $) NIL (|has| |#1| (-517)))) (-2550 (((-1085 (-885 |#1|))) NIL (|has| |#1| (-341)))) (-3433 (($ $ (-854)) NIL)) (-3996 ((|#1| $) NIL)) (-3473 (((-1085 |#1|) $) NIL (|has| |#1| (-517)))) (-2449 ((|#1| (-1171 $)) NIL) ((|#1|) NIL)) (-3158 (((-1085 |#1|) $) NIL)) (-2772 (((-108)) 87)) (-4171 (($ (-1171 |#1|) (-1171 $)) NIL) (($ (-1171 |#1|)) NIL)) (-4163 (((-3 $ "failed") $) 14 (|has| |#1| (-517)))) (-4073 (((-854)) 52)) (-3401 (((-108)) NIL)) (-2462 (($ $ (-854)) NIL)) (-3915 (((-108)) NIL)) (-2590 (((-108)) NIL)) (-2248 (((-108)) 89)) (-3121 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) NIL (|has| |#1| (-517)))) (-2659 (((-3 $ "failed")) NIL (|has| |#1| (-517)))) (-1548 (((-631 |#1|) (-1171 $)) NIL) (((-631 |#1|)) NIL)) (-4032 ((|#1| $) NIL)) (-3793 (((-631 |#1|) $ (-1171 $)) NIL) (((-631 |#1|) $) NIL)) (-1838 (((-3 $ "failed") $) NIL (|has| |#1| (-517)))) (-1308 (((-1085 (-885 |#1|))) NIL (|has| |#1| (-341)))) (-3447 (($ $ (-854)) NIL)) (-3018 ((|#1| $) NIL)) (-1858 (((-1085 |#1|) $) NIL (|has| |#1| (-517)))) (-1368 ((|#1| (-1171 $)) NIL) ((|#1|) NIL)) (-2253 (((-1085 |#1|) $) NIL)) (-2448 (((-108)) 86)) (-2339 (((-1072) $) NIL)) (-1407 (((-108)) 93)) (-3704 (((-108)) 92)) (-2688 (((-108)) 94)) (-2047 (((-1036) $) NIL)) (-4160 (((-108)) 88)) (-3164 ((|#1| $ (-525)) 54)) (-3572 (((-1171 |#1|) $ (-1171 $)) 48) (((-631 |#1|) (-1171 $) (-1171 $)) NIL) (((-1171 |#1|) $) 28) (((-631 |#1|) (-1171 $)) NIL)) (-1408 (((-1171 |#1|) $) NIL) (($ (-1171 |#1|)) NIL)) (-2117 (((-591 (-885 |#1|)) (-1171 $)) NIL) (((-591 (-885 |#1|))) NIL)) (-3619 (($ $ $) NIL)) (-1806 (((-108)) 84)) (-3022 (((-796) $) 69) (($ (-1171 |#1|)) 22)) (-4003 (((-1171 $)) 45)) (-1640 (((-591 (-1171 |#1|))) NIL (|has| |#1| (-517)))) (-2392 (($ $ $ $) NIL)) (-2938 (((-108)) 82)) (-3005 (($ (-631 |#1|) $) 18)) (-2707 (($ $ $) NIL)) (-2826 (((-108)) 85)) (-1532 (((-108)) 83)) (-1307 (((-108)) 81)) (-4191 (($) NIL T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 76) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1056 |#2| |#1|) $) 19)))
+(((-43 |#1| |#2| |#3| |#4|) (-13 (-395 |#1|) (-593 (-1056 |#2| |#1|)) (-10 -8 (-15 -3022 ($ (-1171 |#1|))))) (-341) (-854) (-591 (-1089)) (-1171 (-631 |#1|))) (T -43))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-341)) (-14 *6 (-1171 (-631 *3))) (-5 *1 (-43 *3 *4 *5 *6)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))))))
+(-13 (-395 |#1|) (-593 (-1056 |#2| |#1|)) (-10 -8 (-15 -3022 ($ (-1171 |#1|)))))
+((-3008 (((-108) $ $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-3024 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-3161 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-3970 (($ $) NIL)) (-1260 (($) NIL) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-3296 (((-1176) $ |#1| |#1|) NIL (|has| $ (-6 -4251))) (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3463 (($ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3203 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL) (((-108) $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-4026 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4251))) (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788))))) (-3327 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-3891 (((-108) $ (-712)) NIL)) (-1780 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4251)))) (-2146 (($ $ $) 27 (|has| $ (-6 -4251)))) (-2640 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4251)))) (-1901 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 29 (|has| $ (-6 -4251)))) (-3186 ((|#2| $ |#1| |#2|) 46) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4251))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-1138 (-525)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4251))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ "last" (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4251))) (($ $ "rest" $) NIL (|has| $ (-6 -4251))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ "first" (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4251))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ "value" (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) NIL (|has| $ (-6 -4251)))) (-1797 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL)) (-2305 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-3149 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-2401 (((-3 |#2| "failed") |#1| $) 37)) (-3798 (($) NIL T CONST)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-3078 (($ $ (-712)) NIL) (($ $) 24)) (-3611 (($ $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3901 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-3 |#2| "failed") |#1| $) 48) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL) (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (-3677 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-1227 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4250))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4250))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4251))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4251)))) (-3217 ((|#2| $ |#1|) NIL) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525)) NIL)) (-3629 (((-108) $) NIL)) (-3004 (((-525) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL) (((-525) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))) (((-525) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525)) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (-3454 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 18 (|has| $ (-6 -4250))) (((-591 |#2|) $) NIL (|has| $ (-6 -4250))) (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 18 (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) NIL)) (-2148 (((-108) $ $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (-1268 (($ (-712) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-3630 ((|#1| $) NIL (|has| |#1| (-788))) (((-525) $) 32 (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-2921 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-2131 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-2552 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-591 |#2|) $) NIL (|has| $ (-6 -4250))) (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018)))) (((-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3468 ((|#1| $) NIL (|has| |#1| (-788))) (((-525) $) 34 (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-3249 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4251))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4251))) (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL)) (-2932 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2599 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL)) (-1203 (((-108) $) NIL)) (-2339 (((-1072) $) 42 (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-3708 (($ $ (-712)) NIL) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-1542 (((-591 |#1|) $) 20)) (-2484 (((-108) |#1| $) NIL)) (-1464 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-2470 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL) (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525)) NIL) (($ $ $ (-525)) NIL)) (-4189 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525)) NIL) (($ $ $ (-525)) NIL)) (-2511 (((-591 |#1|) $) NIL) (((-591 (-525)) $) NIL)) (-2791 (((-108) |#1| $) NIL) (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-3066 ((|#2| $) NIL (|has| |#1| (-788))) (($ $ (-712)) NIL) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 23)) (-2069 (((-3 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) "failed") (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL) (((-3 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) "failed") (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL)) (-1941 (($ $ |#2|) NIL (|has| $ (-6 -4251))) (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4251)))) (-3631 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-3566 (((-108) $) NIL)) (-1623 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 (-273 |#2|))) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018)))) (((-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3339 (((-591 |#2|) $) NIL) (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 17)) (-3028 (((-108) $) 16)) (-3209 (($) 13)) (-3164 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ (-525)) NIL) (($ $ (-1138 (-525))) NIL) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ "first") NIL) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $ "value") NIL)) (-3505 (((-525) $ $) NIL)) (-2311 (($) 12) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-1790 (($ $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-2777 (($ $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-2237 (((-108) $) NIL)) (-3820 (($ $) NIL)) (-2609 (($ $) NIL (|has| $ (-6 -4251)))) (-3641 (((-712) $) NIL)) (-1387 (($ $) NIL)) (-2064 (((-712) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-712) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018)))) (((-712) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-712) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-4063 (($ $ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-566 (-501))))) (-3036 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-1679 (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL) (($ $ $) NIL)) (-3690 (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL) (($ (-591 $)) NIL) (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 25) (($ $ $) NIL)) (-3022 (((-796) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-565 (-796))) (|has| |#2| (-565 (-796)))))) (-3860 (((-591 $) $) NIL)) (-1632 (((-108) $ $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (-1870 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-3720 (((-3 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) "failed") |#1| $) 44)) (-4158 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-4119 (((-108) $ $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-4096 (((-108) $ $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-4126 (((-108) $ $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-4112 (((-108) $ $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-788)))) (-4045 (((-712) $) 22 (|has| $ (-6 -4250)))))
+(((-44 |#1| |#2|) (-35 |#1| |#2|) (-1018) (-1018)) (T -44))
NIL
(-35 |#1| |#2|)
-((-4060 (((-108) $) 12)) (-3015 (($ (-1 |#2| |#2|) $) 21)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ (-383 (-523)) $) 25) (($ $ (-383 (-523))) NIL)))
-(((-45 |#1| |#2| |#3|) (-10 -8 (-15 * (|#1| |#1| (-383 (-523)))) (-15 * (|#1| (-383 (-523)) |#1|)) (-15 -4060 ((-108) |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-852) |#1|))) (-46 |#2| |#3|) (-973) (-731)) (T -45))
-NIL
-(-10 -8 (-15 * (|#1| |#1| (-383 (-523)))) (-15 * (|#1| (-383 (-523)) |#1|)) (-15 -4060 ((-108) |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-852) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 51 (|has| |#1| (-515)))) (-3950 (($ $) 52 (|has| |#1| (-515)))) (-3226 (((-108) $) 54 (|has| |#1| (-515)))) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3142 (($ $) 60)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-4060 (((-108) $) 62)) (-3694 (($ |#1| |#2|) 61)) (-3015 (($ (-1 |#1| |#1|) $) 63)) (-3107 (($ $) 65)) (-3119 ((|#1| $) 66)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2469 (((-3 $ "failed") $ $) 50 (|has| |#1| (-515)))) (-1487 ((|#2| $) 64)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ (-383 (-523))) 57 (|has| |#1| (-37 (-383 (-523))))) (($ $) 49 (|has| |#1| (-515))) (($ |#1|) 47 (|has| |#1| (-158)))) (-1234 ((|#1| $ |#2|) 59)) (-2301 (((-3 $ "failed") $) 48 (|has| |#1| (-134)))) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 53 (|has| |#1| (-515)))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4125 (($ $ |#1|) 58 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-383 (-523)) $) 56 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 55 (|has| |#1| (-37 (-383 (-523)))))))
-(((-46 |#1| |#2|) (-129) (-973) (-731)) (T -46))
-((-3119 (*1 *2 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *3 (-731)) (-4 *2 (-973)))) (-3107 (*1 *1 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-973)) (-4 *3 (-731)))) (-1487 (*1 *2 *1) (-12 (-4 *1 (-46 *3 *2)) (-4 *3 (-973)) (-4 *2 (-731)))) (-3015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-46 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731)))) (-4060 (*1 *2 *1) (-12 (-4 *1 (-46 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731)) (-5 *2 (-108)))) (-3694 (*1 *1 *2 *3) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-973)) (-4 *3 (-731)))) (-3142 (*1 *1 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-973)) (-4 *3 (-731)))) (-1234 (*1 *2 *1 *3) (-12 (-4 *1 (-46 *2 *3)) (-4 *3 (-731)) (-4 *2 (-973)))) (-4125 (*1 *1 *1 *2) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-973)) (-4 *3 (-731)) (-4 *2 (-339)))))
-(-13 (-973) (-107 |t#1| |t#1|) (-10 -8 (-15 -3119 (|t#1| $)) (-15 -3107 ($ $)) (-15 -1487 (|t#2| $)) (-15 -3015 ($ (-1 |t#1| |t#1|) $)) (-15 -4060 ((-108) $)) (-15 -3694 ($ |t#1| |t#2|)) (-15 -3142 ($ $)) (-15 -1234 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-339)) (-15 -4125 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-158)) (PROGN (-6 (-158)) (-6 (-37 |t#1|))) |%noBranch|) (IF (|has| |t#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |t#1| (-134)) (-6 (-134)) |%noBranch|) (IF (|has| |t#1| (-515)) (-6 (-515)) |%noBranch|) (IF (|has| |t#1| (-37 (-383 (-523)))) (-6 (-37 (-383 (-523)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((-37 |#1|) |has| |#1| (-158)) ((-37 $) |has| |#1| (-515)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-383 (-523)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-267) |has| |#1| (-515)) ((-515) |has| |#1| (-515)) ((-591 #0#) |has| |#1| (-37 (-383 (-523)))) ((-591 |#1|) . T) ((-591 $) . T) ((-657 #0#) |has| |#1| (-37 (-383 (-523)))) ((-657 |#1|) |has| |#1| (-158)) ((-657 $) |has| |#1| (-515)) ((-666) . T) ((-979 #0#) |has| |#1| (-37 (-383 (-523)))) ((-979 |#1|) . T) ((-979 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-4090 (((-589 $) (-1083 $) (-1087)) NIL) (((-589 $) (-1083 $)) NIL) (((-589 $) (-883 $)) NIL)) (-3472 (($ (-1083 $) (-1087)) NIL) (($ (-1083 $)) NIL) (($ (-883 $)) NIL)) (-2388 (((-108) $) 11)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2394 (((-589 (-562 $)) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3834 (($ $ (-271 $)) NIL) (($ $ (-589 (-271 $))) NIL) (($ $ (-589 (-562 $)) (-589 $)) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3584 (($ $) NIL)) (-3684 (((-108) $ $) NIL)) (-1640 (($) NIL T CONST)) (-1258 (((-589 $) (-1083 $) (-1087)) NIL) (((-589 $) (-1083 $)) NIL) (((-589 $) (-883 $)) NIL)) (-2167 (($ (-1083 $) (-1087)) NIL) (($ (-1083 $)) NIL) (($ (-883 $)) NIL)) (-2898 (((-3 (-562 $) "failed") $) NIL) (((-3 (-523) "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL)) (-1996 (((-562 $) $) NIL) (((-523) $) NIL) (((-383 (-523)) $) NIL)) (-2501 (($ $ $) NIL)) (-2203 (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL) (((-629 (-523)) (-629 $)) NIL) (((-2 (|:| -2373 (-629 (-383 (-523)))) (|:| |vec| (-1169 (-383 (-523))))) (-629 $) (-1169 $)) NIL) (((-629 (-383 (-523))) (-629 $)) NIL)) (-1830 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-4035 (($ $) NIL) (($ (-589 $)) NIL)) (-2856 (((-589 (-110)) $) NIL)) (-1564 (((-110) (-110)) NIL)) (-3482 (((-108) $) 14)) (-2126 (((-108) $) NIL (|has| $ (-964 (-523))))) (-2164 (((-1039 (-523) (-562 $)) $) NIL)) (-1324 (($ $ (-523)) NIL)) (-2765 (((-1083 $) (-1083 $) (-562 $)) NIL) (((-1083 $) (-1083 $) (-589 (-562 $))) NIL) (($ $ (-562 $)) NIL) (($ $ (-589 (-562 $))) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-4016 (((-1083 $) (-562 $)) NIL (|has| $ (-973)))) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3015 (($ (-1 $ $) (-562 $)) NIL)) (-2215 (((-3 (-562 $) "failed") $) NIL)) (-2012 (($ (-589 $)) NIL) (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-3526 (((-589 (-562 $)) $) NIL)) (-2217 (($ (-110) $) NIL) (($ (-110) (-589 $)) NIL)) (-2676 (((-108) $ (-110)) NIL) (((-108) $ (-1087)) NIL)) (-3071 (($ $) NIL)) (-1942 (((-710) $) NIL)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ (-589 $)) NIL) (($ $ $) NIL)) (-3791 (((-108) $ $) NIL) (((-108) $ (-1087)) NIL)) (-3573 (((-394 $) $) NIL)) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3775 (((-108) $) NIL (|has| $ (-964 (-523))))) (-1349 (($ $ (-562 $) $) NIL) (($ $ (-589 (-562 $)) (-589 $)) NIL) (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-589 (-1087)) (-589 (-1 $ $))) NIL) (($ $ (-589 (-1087)) (-589 (-1 $ (-589 $)))) NIL) (($ $ (-1087) (-1 $ (-589 $))) NIL) (($ $ (-1087) (-1 $ $)) NIL) (($ $ (-589 (-110)) (-589 (-1 $ $))) NIL) (($ $ (-589 (-110)) (-589 (-1 $ (-589 $)))) NIL) (($ $ (-110) (-1 $ (-589 $))) NIL) (($ $ (-110) (-1 $ $)) NIL)) (-3087 (((-710) $) NIL)) (-1502 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-589 $)) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2404 (($ $) NIL) (($ $ $) NIL)) (-4024 (($ $ (-710)) NIL) (($ $) NIL)) (-2171 (((-1039 (-523) (-562 $)) $) NIL)) (-3399 (($ $) NIL (|has| $ (-973)))) (-3077 (((-355) $) NIL) (((-203) $) NIL) (((-155 (-355)) $) NIL)) (-3976 (((-794) $) NIL) (($ (-562 $)) NIL) (($ (-383 (-523))) NIL) (($ $) NIL) (($ (-523)) NIL) (($ (-1039 (-523) (-562 $))) NIL)) (-1698 (((-710)) NIL)) (-4114 (($ $) NIL) (($ (-589 $)) NIL)) (-1651 (((-108) (-110)) NIL)) (-3842 (((-108) $ $) NIL)) (-2573 (($ $ (-523)) NIL) (($ $ (-710)) NIL) (($ $ (-852)) NIL)) (-1428 (($) 7 T CONST)) (-1440 (($) 12 T CONST)) (-1943 (($ $ (-710)) NIL) (($ $) NIL)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 16)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL)) (-4115 (($ $ $) 15) (($ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-383 (-523))) NIL) (($ $ (-523)) NIL) (($ $ (-710)) NIL) (($ $ (-852)) NIL)) (* (($ (-383 (-523)) $) NIL) (($ $ (-383 (-523))) NIL) (($ $ $) NIL) (($ (-523) $) NIL) (($ (-710) $) NIL) (($ (-852) $) NIL)))
-(((-47) (-13 (-279) (-27) (-964 (-523)) (-964 (-383 (-523))) (-585 (-523)) (-949) (-585 (-383 (-523))) (-136) (-564 (-155 (-355))) (-211) (-10 -8 (-15 -3976 ($ (-1039 (-523) (-562 $)))) (-15 -2164 ((-1039 (-523) (-562 $)) $)) (-15 -2171 ((-1039 (-523) (-562 $)) $)) (-15 -1830 ($ $)) (-15 -2765 ((-1083 $) (-1083 $) (-562 $))) (-15 -2765 ((-1083 $) (-1083 $) (-589 (-562 $)))) (-15 -2765 ($ $ (-562 $))) (-15 -2765 ($ $ (-589 (-562 $))))))) (T -47))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1039 (-523) (-562 (-47)))) (-5 *1 (-47)))) (-2164 (*1 *2 *1) (-12 (-5 *2 (-1039 (-523) (-562 (-47)))) (-5 *1 (-47)))) (-2171 (*1 *2 *1) (-12 (-5 *2 (-1039 (-523) (-562 (-47)))) (-5 *1 (-47)))) (-1830 (*1 *1 *1) (-5 *1 (-47))) (-2765 (*1 *2 *2 *3) (-12 (-5 *2 (-1083 (-47))) (-5 *3 (-562 (-47))) (-5 *1 (-47)))) (-2765 (*1 *2 *2 *3) (-12 (-5 *2 (-1083 (-47))) (-5 *3 (-589 (-562 (-47)))) (-5 *1 (-47)))) (-2765 (*1 *1 *1 *2) (-12 (-5 *2 (-562 (-47))) (-5 *1 (-47)))) (-2765 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-562 (-47)))) (-5 *1 (-47)))))
-(-13 (-279) (-27) (-964 (-523)) (-964 (-383 (-523))) (-585 (-523)) (-949) (-585 (-383 (-523))) (-136) (-564 (-155 (-355))) (-211) (-10 -8 (-15 -3976 ($ (-1039 (-523) (-562 $)))) (-15 -2164 ((-1039 (-523) (-562 $)) $)) (-15 -2171 ((-1039 (-523) (-562 $)) $)) (-15 -1830 ($ $)) (-15 -2765 ((-1083 $) (-1083 $) (-562 $))) (-15 -2765 ((-1083 $) (-1083 $) (-589 (-562 $)))) (-15 -2765 ($ $ (-562 $))) (-15 -2765 ($ $ (-589 (-562 $))))))
-((-3260 (((-108) $ $) NIL)) (-2559 (((-589 (-1087)) $) 17)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 7)) (-2403 (((-1092) $) 18)) (-4037 (((-108) $ $) NIL)))
-(((-48) (-13 (-1016) (-10 -8 (-15 -2559 ((-589 (-1087)) $)) (-15 -2403 ((-1092) $))))) (T -48))
-((-2559 (*1 *2 *1) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-48)))) (-2403 (*1 *2 *1) (-12 (-5 *2 (-1092)) (-5 *1 (-48)))))
-(-13 (-1016) (-10 -8 (-15 -2559 ((-589 (-1087)) $)) (-15 -2403 ((-1092) $))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 62)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-1936 (((-108) $) 20)) (-2898 (((-3 |#1| "failed") $) 23)) (-1996 ((|#1| $) 24)) (-3142 (($ $) 28)) (-4211 (((-3 $ "failed") $) NIL)) (-3482 (((-108) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-3119 ((|#1| $) 21)) (-1211 (($ $) 51)) (-3841 (((-1070) $) NIL)) (-4151 (((-108) $) 30)) (-2435 (((-1034) $) NIL)) (-4102 (($ (-710)) 49)) (-1847 (($ (-589 (-523))) 50)) (-1487 (((-710) $) 31)) (-3976 (((-794) $) 65) (($ (-523)) 46) (($ |#1|) 44)) (-1234 ((|#1| $ $) 19)) (-1698 (((-710)) 48)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 32 T CONST)) (-1440 (($) 14 T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) 41)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 42) (($ |#1| $) 36)))
-(((-49 |#1| |#2|) (-13 (-567 |#1|) (-964 |#1|) (-10 -8 (-15 -3119 (|#1| $)) (-15 -1211 ($ $)) (-15 -3142 ($ $)) (-15 -1234 (|#1| $ $)) (-15 -4102 ($ (-710))) (-15 -1847 ($ (-589 (-523)))) (-15 -4151 ((-108) $)) (-15 -1936 ((-108) $)) (-15 -1487 ((-710) $)) (-15 -3015 ($ (-1 |#1| |#1|) $)))) (-973) (-589 (-1087))) (T -49))
-((-3119 (*1 *2 *1) (-12 (-4 *2 (-973)) (-5 *1 (-49 *2 *3)) (-14 *3 (-589 (-1087))))) (-1211 (*1 *1 *1) (-12 (-5 *1 (-49 *2 *3)) (-4 *2 (-973)) (-14 *3 (-589 (-1087))))) (-3142 (*1 *1 *1) (-12 (-5 *1 (-49 *2 *3)) (-4 *2 (-973)) (-14 *3 (-589 (-1087))))) (-1234 (*1 *2 *1 *1) (-12 (-4 *2 (-973)) (-5 *1 (-49 *2 *3)) (-14 *3 (-589 (-1087))))) (-4102 (*1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-49 *3 *4)) (-4 *3 (-973)) (-14 *4 (-589 (-1087))))) (-1847 (*1 *1 *2) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-49 *3 *4)) (-4 *3 (-973)) (-14 *4 (-589 (-1087))))) (-4151 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-49 *3 *4)) (-4 *3 (-973)) (-14 *4 (-589 (-1087))))) (-1936 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-49 *3 *4)) (-4 *3 (-973)) (-14 *4 (-589 (-1087))))) (-1487 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-49 *3 *4)) (-4 *3 (-973)) (-14 *4 (-589 (-1087))))) (-3015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-973)) (-5 *1 (-49 *3 *4)) (-14 *4 (-589 (-1087))))))
-(-13 (-567 |#1|) (-964 |#1|) (-10 -8 (-15 -3119 (|#1| $)) (-15 -1211 ($ $)) (-15 -3142 ($ $)) (-15 -1234 (|#1| $ $)) (-15 -4102 ($ (-710))) (-15 -1847 ($ (-589 (-523)))) (-15 -4151 ((-108) $)) (-15 -1936 ((-108) $)) (-15 -1487 ((-710) $)) (-15 -3015 ($ (-1 |#1| |#1|) $))))
-((-1936 (((-108) (-51)) 13)) (-2898 (((-3 |#1| "failed") (-51)) 21)) (-1996 ((|#1| (-51)) 22)) (-3976 (((-51) |#1|) 18)))
-(((-50 |#1|) (-10 -7 (-15 -3976 ((-51) |#1|)) (-15 -2898 ((-3 |#1| "failed") (-51))) (-15 -1936 ((-108) (-51))) (-15 -1996 (|#1| (-51)))) (-1123)) (T -50))
-((-1996 (*1 *2 *3) (-12 (-5 *3 (-51)) (-5 *1 (-50 *2)) (-4 *2 (-1123)))) (-1936 (*1 *2 *3) (-12 (-5 *3 (-51)) (-5 *2 (-108)) (-5 *1 (-50 *4)) (-4 *4 (-1123)))) (-2898 (*1 *2 *3) (|partial| -12 (-5 *3 (-51)) (-5 *1 (-50 *2)) (-4 *2 (-1123)))) (-3976 (*1 *2 *3) (-12 (-5 *2 (-51)) (-5 *1 (-50 *3)) (-4 *3 (-1123)))))
-(-10 -7 (-15 -3976 ((-51) |#1|)) (-15 -2898 ((-3 |#1| "failed") (-51))) (-15 -1936 ((-108) (-51))) (-15 -1996 (|#1| (-51))))
-((-3260 (((-108) $ $) NIL)) (-3186 (((-1070) (-108)) 25)) (-3534 (((-794) $) 24)) (-2478 (((-713) $) 12)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2574 (((-794) $) 16)) (-3448 (((-1020) $) 14)) (-3976 (((-794) $) 32)) (-3030 (($ (-1020) (-713)) 33)) (-4037 (((-108) $ $) 18)))
-(((-51) (-13 (-1016) (-10 -8 (-15 -3030 ($ (-1020) (-713))) (-15 -2574 ((-794) $)) (-15 -3534 ((-794) $)) (-15 -3448 ((-1020) $)) (-15 -2478 ((-713) $)) (-15 -3186 ((-1070) (-108)))))) (T -51))
-((-3030 (*1 *1 *2 *3) (-12 (-5 *2 (-1020)) (-5 *3 (-713)) (-5 *1 (-51)))) (-2574 (*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-51)))) (-3534 (*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-51)))) (-3448 (*1 *2 *1) (-12 (-5 *2 (-1020)) (-5 *1 (-51)))) (-2478 (*1 *2 *1) (-12 (-5 *2 (-713)) (-5 *1 (-51)))) (-3186 (*1 *2 *3) (-12 (-5 *3 (-108)) (-5 *2 (-1070)) (-5 *1 (-51)))))
-(-13 (-1016) (-10 -8 (-15 -3030 ($ (-1020) (-713))) (-15 -2574 ((-794) $)) (-15 -3534 ((-794) $)) (-15 -3448 ((-1020) $)) (-15 -2478 ((-713) $)) (-15 -3186 ((-1070) (-108)))))
-((-3817 ((|#2| |#3| (-1 |#2| |#2|) |#2|) 16)))
-(((-52 |#1| |#2| |#3|) (-10 -7 (-15 -3817 (|#2| |#3| (-1 |#2| |#2|) |#2|))) (-973) (-591 |#1|) (-788 |#1|)) (T -52))
-((-3817 (*1 *2 *3 *4 *2) (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-591 *5)) (-4 *5 (-973)) (-5 *1 (-52 *5 *2 *3)) (-4 *3 (-788 *5)))))
-(-10 -7 (-15 -3817 (|#2| |#3| (-1 |#2| |#2|) |#2|)))
-((-3965 ((|#3| |#3| (-589 (-1087))) 35)) (-1993 ((|#3| (-589 (-995 |#1| |#2| |#3|)) |#3| (-852)) 22) ((|#3| (-589 (-995 |#1| |#2| |#3|)) |#3|) 20)))
-(((-53 |#1| |#2| |#3|) (-10 -7 (-15 -1993 (|#3| (-589 (-995 |#1| |#2| |#3|)) |#3|)) (-15 -1993 (|#3| (-589 (-995 |#1| |#2| |#3|)) |#3| (-852))) (-15 -3965 (|#3| |#3| (-589 (-1087))))) (-1016) (-13 (-973) (-817 |#1|) (-786) (-564 (-823 |#1|))) (-13 (-406 |#2|) (-817 |#1|) (-564 (-823 |#1|)))) (T -53))
-((-3965 (*1 *2 *2 *3) (-12 (-5 *3 (-589 (-1087))) (-4 *4 (-1016)) (-4 *5 (-13 (-973) (-817 *4) (-786) (-564 (-823 *4)))) (-5 *1 (-53 *4 *5 *2)) (-4 *2 (-13 (-406 *5) (-817 *4) (-564 (-823 *4)))))) (-1993 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-589 (-995 *5 *6 *2))) (-5 *4 (-852)) (-4 *5 (-1016)) (-4 *6 (-13 (-973) (-817 *5) (-786) (-564 (-823 *5)))) (-4 *2 (-13 (-406 *6) (-817 *5) (-564 (-823 *5)))) (-5 *1 (-53 *5 *6 *2)))) (-1993 (*1 *2 *3 *2) (-12 (-5 *3 (-589 (-995 *4 *5 *2))) (-4 *4 (-1016)) (-4 *5 (-13 (-973) (-817 *4) (-786) (-564 (-823 *4)))) (-4 *2 (-13 (-406 *5) (-817 *4) (-564 (-823 *4)))) (-5 *1 (-53 *4 *5 *2)))))
-(-10 -7 (-15 -1993 (|#3| (-589 (-995 |#1| |#2| |#3|)) |#3|)) (-15 -1993 (|#3| (-589 (-995 |#1| |#2| |#3|)) |#3| (-852))) (-15 -3965 (|#3| |#3| (-589 (-1087)))))
-((-2282 (((-108) $ (-710)) 23)) (-1205 (($ $ (-523) |#3|) 46)) (-2963 (($ $ (-523) |#4|) 50)) (-2823 ((|#3| $ (-523)) 59)) (-3133 (((-589 |#2|) $) 30)) (-1344 (((-108) $ (-710)) 25)) (-1348 (((-108) |#2| $) 54)) (-3063 (($ (-1 |#2| |#2|) $) 37)) (-3015 (($ (-1 |#2| |#2|) $) 36) (($ (-1 |#2| |#2| |#2|) $ $) 40) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 42)) (-4042 (((-108) $ (-710)) 24)) (-2408 (($ $ |#2|) 34)) (-2720 (((-108) (-1 (-108) |#2|) $) 19)) (-1502 ((|#2| $ (-523) (-523)) NIL) ((|#2| $ (-523) (-523) |#2|) 27)) (-2452 (((-710) (-1 (-108) |#2|) $) 28) (((-710) |#2| $) 56)) (-4124 (($ $) 33)) (-2032 ((|#4| $ (-523)) 62)) (-3976 (((-794) $) 68)) (-1505 (((-108) (-1 (-108) |#2|) $) 18)) (-4037 (((-108) $ $) 53)) (-1271 (((-710) $) 26)))
-(((-54 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3976 ((-794) |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -3015 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3063 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2963 (|#1| |#1| (-523) |#4|)) (-15 -1205 (|#1| |#1| (-523) |#3|)) (-15 -3133 ((-589 |#2|) |#1|)) (-15 -2032 (|#4| |#1| (-523))) (-15 -2823 (|#3| |#1| (-523))) (-15 -1502 (|#2| |#1| (-523) (-523) |#2|)) (-15 -1502 (|#2| |#1| (-523) (-523))) (-15 -2408 (|#1| |#1| |#2|)) (-15 -4037 ((-108) |#1| |#1|)) (-15 -1348 ((-108) |#2| |#1|)) (-15 -2452 ((-710) |#2| |#1|)) (-15 -2452 ((-710) (-1 (-108) |#2|) |#1|)) (-15 -2720 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1505 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1271 ((-710) |#1|)) (-15 -2282 ((-108) |#1| (-710))) (-15 -1344 ((-108) |#1| (-710))) (-15 -4042 ((-108) |#1| (-710))) (-15 -4124 (|#1| |#1|))) (-55 |#2| |#3| |#4|) (-1123) (-349 |#2|) (-349 |#2|)) (T -54))
-NIL
-(-10 -8 (-15 -3976 ((-794) |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -3015 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3063 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2963 (|#1| |#1| (-523) |#4|)) (-15 -1205 (|#1| |#1| (-523) |#3|)) (-15 -3133 ((-589 |#2|) |#1|)) (-15 -2032 (|#4| |#1| (-523))) (-15 -2823 (|#3| |#1| (-523))) (-15 -1502 (|#2| |#1| (-523) (-523) |#2|)) (-15 -1502 (|#2| |#1| (-523) (-523))) (-15 -2408 (|#1| |#1| |#2|)) (-15 -4037 ((-108) |#1| |#1|)) (-15 -1348 ((-108) |#2| |#1|)) (-15 -2452 ((-710) |#2| |#1|)) (-15 -2452 ((-710) (-1 (-108) |#2|) |#1|)) (-15 -2720 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1505 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1271 ((-710) |#1|)) (-15 -2282 ((-108) |#1| (-710))) (-15 -1344 ((-108) |#1| (-710))) (-15 -4042 ((-108) |#1| (-710))) (-15 -4124 (|#1| |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2282 (((-108) $ (-710)) 8)) (-4101 ((|#1| $ (-523) (-523) |#1|) 44)) (-1205 (($ $ (-523) |#2|) 42)) (-2963 (($ $ (-523) |#3|) 41)) (-1640 (($) 7 T CONST)) (-2823 ((|#2| $ (-523)) 46)) (-3073 ((|#1| $ (-523) (-523) |#1|) 43)) (-3002 ((|#1| $ (-523) (-523)) 48)) (-3133 (((-589 |#1|) $) 30)) (-3656 (((-710) $) 51)) (-2348 (($ (-710) (-710) |#1|) 57)) (-3668 (((-710) $) 50)) (-1344 (((-108) $ (-710)) 9)) (-1392 (((-523) $) 55)) (-1219 (((-523) $) 53)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2102 (((-523) $) 54)) (-3328 (((-523) $) 52)) (-3063 (($ (-1 |#1| |#1|) $) 34)) (-3015 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-2408 (($ $ |#1|) 56)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ (-523) (-523)) 49) ((|#1| $ (-523) (-523) |#1|) 47)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-2032 ((|#3| $ (-523)) 45)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-55 |#1| |#2| |#3|) (-129) (-1123) (-349 |t#1|) (-349 |t#1|)) (T -55))
-((-3015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-2348 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-710)) (-4 *3 (-1123)) (-4 *1 (-55 *3 *4 *5)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-2408 (*1 *1 *1 *2) (-12 (-4 *1 (-55 *2 *3 *4)) (-4 *2 (-1123)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)))) (-1392 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *2 (-523)))) (-2102 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *2 (-523)))) (-1219 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *2 (-523)))) (-3328 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *2 (-523)))) (-3656 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *2 (-710)))) (-3668 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *2 (-710)))) (-1502 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-523)) (-4 *1 (-55 *2 *4 *5)) (-4 *4 (-349 *2)) (-4 *5 (-349 *2)) (-4 *2 (-1123)))) (-3002 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-523)) (-4 *1 (-55 *2 *4 *5)) (-4 *4 (-349 *2)) (-4 *5 (-349 *2)) (-4 *2 (-1123)))) (-1502 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-523)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1123)) (-4 *4 (-349 *2)) (-4 *5 (-349 *2)))) (-2823 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-4 *1 (-55 *4 *2 *5)) (-4 *4 (-1123)) (-4 *5 (-349 *4)) (-4 *2 (-349 *4)))) (-2032 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-4 *1 (-55 *4 *5 *2)) (-4 *4 (-1123)) (-4 *5 (-349 *4)) (-4 *2 (-349 *4)))) (-3133 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *2 (-589 *3)))) (-4101 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-523)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1123)) (-4 *4 (-349 *2)) (-4 *5 (-349 *2)))) (-3073 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-523)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1123)) (-4 *4 (-349 *2)) (-4 *5 (-349 *2)))) (-1205 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-523)) (-4 *1 (-55 *4 *3 *5)) (-4 *4 (-1123)) (-4 *3 (-349 *4)) (-4 *5 (-349 *4)))) (-2963 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-523)) (-4 *1 (-55 *4 *5 *3)) (-4 *4 (-1123)) (-4 *5 (-349 *4)) (-4 *3 (-349 *4)))) (-3063 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-3015 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-3015 (*1 *1 *2 *1 *1 *3) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))))
-(-13 (-462 |t#1|) (-10 -8 (-6 -4249) (-6 -4248) (-15 -2348 ($ (-710) (-710) |t#1|)) (-15 -2408 ($ $ |t#1|)) (-15 -1392 ((-523) $)) (-15 -2102 ((-523) $)) (-15 -1219 ((-523) $)) (-15 -3328 ((-523) $)) (-15 -3656 ((-710) $)) (-15 -3668 ((-710) $)) (-15 -1502 (|t#1| $ (-523) (-523))) (-15 -3002 (|t#1| $ (-523) (-523))) (-15 -1502 (|t#1| $ (-523) (-523) |t#1|)) (-15 -2823 (|t#2| $ (-523))) (-15 -2032 (|t#3| $ (-523))) (-15 -3133 ((-589 |t#1|) $)) (-15 -4101 (|t#1| $ (-523) (-523) |t#1|)) (-15 -3073 (|t#1| $ (-523) (-523) |t#1|)) (-15 -1205 ($ $ (-523) |t#2|)) (-15 -2963 ($ $ (-523) |t#3|)) (-15 -3015 ($ (-1 |t#1| |t#1|) $)) (-15 -3063 ($ (-1 |t#1| |t#1|) $)) (-15 -3015 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -3015 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
-(((-33) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-1586 (((-57 |#2|) (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|) 16)) (-1830 ((|#2| (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|) 18)) (-3015 (((-57 |#2|) (-1 |#2| |#1|) (-57 |#1|)) 13)))
-(((-56 |#1| |#2|) (-10 -7 (-15 -1586 ((-57 |#2|) (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -1830 (|#2| (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -3015 ((-57 |#2|) (-1 |#2| |#1|) (-57 |#1|)))) (-1123) (-1123)) (T -56))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-57 *5)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-57 *6)) (-5 *1 (-56 *5 *6)))) (-1830 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-57 *5)) (-4 *5 (-1123)) (-4 *2 (-1123)) (-5 *1 (-56 *5 *2)))) (-1586 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-57 *6)) (-4 *6 (-1123)) (-4 *5 (-1123)) (-5 *2 (-57 *5)) (-5 *1 (-56 *6 *5)))))
-(-10 -7 (-15 -1586 ((-57 |#2|) (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -1830 (|#2| (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -3015 ((-57 |#2|) (-1 |#2| |#1|) (-57 |#1|))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-4159 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-786)))) (-2361 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4249))) (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| |#1| (-786))))) (-3400 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-786)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#1| $ (-523) |#1|) 11 (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) NIL (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-4091 (($ $) NIL (|has| $ (-6 -4249)))) (-4082 (($ $) NIL)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2231 (($ |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) NIL)) (-1894 (((-523) (-1 (-108) |#1|) $) NIL) (((-523) |#1| $) NIL (|has| |#1| (-1016))) (((-523) |#1| $ (-523)) NIL (|has| |#1| (-1016)))) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-2363 (($ (-589 |#1|)) 13) (($ (-710) |#1|) 14)) (-2348 (($ (-710) |#1|) 9)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) NIL (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-3123 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-786)))) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-3334 (($ |#1| $ (-523)) NIL) (($ $ $ (-523)) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-3879 ((|#1| $) NIL (|has| (-523) (-786)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2408 (($ $ |#1|) NIL (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) 7)) (-1502 ((|#1| $ (-523) |#1|) NIL) ((|#1| $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-3725 (($ $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2580 (($ $ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) NIL)) (-2785 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-589 $)) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-57 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -2363 ($ (-589 |#1|))) (-15 -2363 ($ (-710) |#1|)))) (-1123)) (T -57))
-((-2363 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-5 *1 (-57 *3)))) (-2363 (*1 *1 *2 *3) (-12 (-5 *2 (-710)) (-5 *1 (-57 *3)) (-4 *3 (-1123)))))
-(-13 (-19 |#1|) (-10 -8 (-15 -2363 ($ (-589 |#1|))) (-15 -2363 ($ (-710) |#1|))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#1| $ (-523) (-523) |#1|) NIL)) (-1205 (($ $ (-523) (-57 |#1|)) NIL)) (-2963 (($ $ (-523) (-57 |#1|)) NIL)) (-1640 (($) NIL T CONST)) (-2823 (((-57 |#1|) $ (-523)) NIL)) (-3073 ((|#1| $ (-523) (-523) |#1|) NIL)) (-3002 ((|#1| $ (-523) (-523)) NIL)) (-3133 (((-589 |#1|) $) NIL)) (-3656 (((-710) $) NIL)) (-2348 (($ (-710) (-710) |#1|) NIL)) (-3668 (((-710) $) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-1392 (((-523) $) NIL)) (-1219 (((-523) $) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2102 (((-523) $) NIL)) (-3328 (((-523) $) NIL)) (-3063 (($ (-1 |#1| |#1|) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2408 (($ $ |#1|) NIL)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#1| $ (-523) (-523)) NIL) ((|#1| $ (-523) (-523) |#1|) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) NIL)) (-2032 (((-57 |#1|) $ (-523)) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-58 |#1|) (-13 (-55 |#1| (-57 |#1|) (-57 |#1|)) (-10 -7 (-6 -4249))) (-1123)) (T -58))
-NIL
-(-13 (-55 |#1| (-57 |#1|) (-57 |#1|)) (-10 -7 (-6 -4249)))
-((-2898 (((-3 $ "failed") (-1169 (-292 (-355)))) 74) (((-3 $ "failed") (-1169 (-292 (-523)))) 63) (((-3 $ "failed") (-1169 (-883 (-355)))) 94) (((-3 $ "failed") (-1169 (-883 (-523)))) 84) (((-3 $ "failed") (-1169 (-383 (-883 (-355))))) 52) (((-3 $ "failed") (-1169 (-383 (-883 (-523))))) 39)) (-1996 (($ (-1169 (-292 (-355)))) 70) (($ (-1169 (-292 (-523)))) 59) (($ (-1169 (-883 (-355)))) 90) (($ (-1169 (-883 (-523)))) 80) (($ (-1169 (-383 (-883 (-355))))) 48) (($ (-1169 (-383 (-883 (-523))))) 32)) (-2034 (((-1174) $) 120)) (-3976 (((-794) $) 113) (($ (-589 (-306))) 103) (($ (-306)) 97) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 101) (($ (-1169 (-315 (-3985 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3985) (-638)))) 31)))
-(((-59 |#1|) (-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3985) (-638))))))) (-1087)) (T -59))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1169 (-315 (-3985 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3985) (-638)))) (-5 *1 (-59 *3)) (-14 *3 (-1087)))))
-(-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3985) (-638)))))))
-((-2034 (((-1174) $) 53) (((-1174)) 54)) (-3976 (((-794) $) 50)))
-(((-60 |#1|) (-13 (-371) (-10 -7 (-15 -2034 ((-1174))))) (-1087)) (T -60))
-((-2034 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-60 *3)) (-14 *3 (-1087)))))
-(-13 (-371) (-10 -7 (-15 -2034 ((-1174)))))
-((-2898 (((-3 $ "failed") (-1169 (-292 (-355)))) 144) (((-3 $ "failed") (-1169 (-292 (-523)))) 134) (((-3 $ "failed") (-1169 (-883 (-355)))) 164) (((-3 $ "failed") (-1169 (-883 (-523)))) 154) (((-3 $ "failed") (-1169 (-383 (-883 (-355))))) 123) (((-3 $ "failed") (-1169 (-383 (-883 (-523))))) 111)) (-1996 (($ (-1169 (-292 (-355)))) 140) (($ (-1169 (-292 (-523)))) 130) (($ (-1169 (-883 (-355)))) 160) (($ (-1169 (-883 (-523)))) 150) (($ (-1169 (-383 (-883 (-355))))) 119) (($ (-1169 (-383 (-883 (-523))))) 104)) (-2034 (((-1174) $) 97)) (-3976 (((-794) $) 91) (($ (-589 (-306))) 29) (($ (-306)) 34) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 32) (($ (-1169 (-315 (-3985) (-3985 (QUOTE XC)) (-638)))) 89)))
-(((-61 |#1|) (-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985) (-3985 (QUOTE XC)) (-638))))))) (-1087)) (T -61))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1169 (-315 (-3985) (-3985 (QUOTE XC)) (-638)))) (-5 *1 (-61 *3)) (-14 *3 (-1087)))))
-(-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985) (-3985 (QUOTE XC)) (-638)))))))
-((-2898 (((-3 $ "failed") (-292 (-355))) 41) (((-3 $ "failed") (-292 (-523))) 46) (((-3 $ "failed") (-883 (-355))) 50) (((-3 $ "failed") (-883 (-523))) 54) (((-3 $ "failed") (-383 (-883 (-355)))) 36) (((-3 $ "failed") (-383 (-883 (-523)))) 29)) (-1996 (($ (-292 (-355))) 39) (($ (-292 (-523))) 44) (($ (-883 (-355))) 48) (($ (-883 (-523))) 52) (($ (-383 (-883 (-355)))) 34) (($ (-383 (-883 (-523)))) 26)) (-2034 (((-1174) $) 76)) (-3976 (((-794) $) 69) (($ (-589 (-306))) 61) (($ (-306)) 66) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 64) (($ (-315 (-3985 (QUOTE X)) (-3985) (-638))) 25)))
-(((-62 |#1|) (-13 (-372) (-10 -8 (-15 -3976 ($ (-315 (-3985 (QUOTE X)) (-3985) (-638)))))) (-1087)) (T -62))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-315 (-3985 (QUOTE X)) (-3985) (-638))) (-5 *1 (-62 *3)) (-14 *3 (-1087)))))
-(-13 (-372) (-10 -8 (-15 -3976 ($ (-315 (-3985 (QUOTE X)) (-3985) (-638))))))
-((-2898 (((-3 $ "failed") (-629 (-292 (-355)))) 109) (((-3 $ "failed") (-629 (-292 (-523)))) 97) (((-3 $ "failed") (-629 (-883 (-355)))) 131) (((-3 $ "failed") (-629 (-883 (-523)))) 120) (((-3 $ "failed") (-629 (-383 (-883 (-355))))) 85) (((-3 $ "failed") (-629 (-383 (-883 (-523))))) 71)) (-1996 (($ (-629 (-292 (-355)))) 105) (($ (-629 (-292 (-523)))) 93) (($ (-629 (-883 (-355)))) 127) (($ (-629 (-883 (-523)))) 116) (($ (-629 (-383 (-883 (-355))))) 81) (($ (-629 (-383 (-883 (-523))))) 64)) (-2034 (((-1174) $) 139)) (-3976 (((-794) $) 133) (($ (-589 (-306))) 28) (($ (-306)) 33) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 31) (($ (-629 (-315 (-3985) (-3985 (QUOTE X) (QUOTE HESS)) (-638)))) 54)))
-(((-63 |#1|) (-13 (-360) (-10 -8 (-15 -3976 ($ (-629 (-315 (-3985) (-3985 (QUOTE X) (QUOTE HESS)) (-638))))))) (-1087)) (T -63))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-629 (-315 (-3985) (-3985 (QUOTE X) (QUOTE HESS)) (-638)))) (-5 *1 (-63 *3)) (-14 *3 (-1087)))))
-(-13 (-360) (-10 -8 (-15 -3976 ($ (-629 (-315 (-3985) (-3985 (QUOTE X) (QUOTE HESS)) (-638)))))))
-((-2898 (((-3 $ "failed") (-292 (-355))) 59) (((-3 $ "failed") (-292 (-523))) 64) (((-3 $ "failed") (-883 (-355))) 68) (((-3 $ "failed") (-883 (-523))) 72) (((-3 $ "failed") (-383 (-883 (-355)))) 54) (((-3 $ "failed") (-383 (-883 (-523)))) 47)) (-1996 (($ (-292 (-355))) 57) (($ (-292 (-523))) 62) (($ (-883 (-355))) 66) (($ (-883 (-523))) 70) (($ (-383 (-883 (-355)))) 52) (($ (-383 (-883 (-523)))) 44)) (-2034 (((-1174) $) 81)) (-3976 (((-794) $) 75) (($ (-589 (-306))) 28) (($ (-306)) 33) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 31) (($ (-315 (-3985) (-3985 (QUOTE XC)) (-638))) 39)))
-(((-64 |#1|) (-13 (-372) (-10 -8 (-15 -3976 ($ (-315 (-3985) (-3985 (QUOTE XC)) (-638)))))) (-1087)) (T -64))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-315 (-3985) (-3985 (QUOTE XC)) (-638))) (-5 *1 (-64 *3)) (-14 *3 (-1087)))))
-(-13 (-372) (-10 -8 (-15 -3976 ($ (-315 (-3985) (-3985 (QUOTE XC)) (-638))))))
-((-2034 (((-1174) $) 63)) (-3976 (((-794) $) 57) (($ (-629 (-638))) 49) (($ (-589 (-306))) 48) (($ (-306)) 55) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 53)))
-(((-65 |#1|) (-359) (-1087)) (T -65))
-NIL
-(-359)
-((-2034 (((-1174) $) 64)) (-3976 (((-794) $) 58) (($ (-629 (-638))) 50) (($ (-589 (-306))) 49) (($ (-306)) 52) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 55)))
-(((-66 |#1|) (-359) (-1087)) (T -66))
-NIL
-(-359)
-((-2034 (((-1174) $) NIL) (((-1174)) 32)) (-3976 (((-794) $) NIL)))
-(((-67 |#1|) (-13 (-371) (-10 -7 (-15 -2034 ((-1174))))) (-1087)) (T -67))
-((-2034 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-67 *3)) (-14 *3 (-1087)))))
-(-13 (-371) (-10 -7 (-15 -2034 ((-1174)))))
-((-2034 (((-1174) $) 73)) (-3976 (((-794) $) 67) (($ (-629 (-638))) 59) (($ (-589 (-306))) 61) (($ (-306)) 64) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 58)))
-(((-68 |#1|) (-359) (-1087)) (T -68))
-NIL
-(-359)
-((-2898 (((-3 $ "failed") (-1169 (-292 (-355)))) 103) (((-3 $ "failed") (-1169 (-292 (-523)))) 92) (((-3 $ "failed") (-1169 (-883 (-355)))) 123) (((-3 $ "failed") (-1169 (-883 (-523)))) 113) (((-3 $ "failed") (-1169 (-383 (-883 (-355))))) 81) (((-3 $ "failed") (-1169 (-383 (-883 (-523))))) 68)) (-1996 (($ (-1169 (-292 (-355)))) 99) (($ (-1169 (-292 (-523)))) 88) (($ (-1169 (-883 (-355)))) 119) (($ (-1169 (-883 (-523)))) 109) (($ (-1169 (-383 (-883 (-355))))) 77) (($ (-1169 (-383 (-883 (-523))))) 61)) (-2034 (((-1174) $) 136)) (-3976 (((-794) $) 130) (($ (-589 (-306))) 125) (($ (-306)) 128) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 53) (($ (-1169 (-315 (-3985 (QUOTE X)) (-3985 (QUOTE -4028)) (-638)))) 54)))
-(((-69 |#1|) (-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985 (QUOTE X)) (-3985 (QUOTE -4028)) (-638))))))) (-1087)) (T -69))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1169 (-315 (-3985 (QUOTE X)) (-3985 (QUOTE -4028)) (-638)))) (-5 *1 (-69 *3)) (-14 *3 (-1087)))))
-(-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985 (QUOTE X)) (-3985 (QUOTE -4028)) (-638)))))))
-((-2034 (((-1174) $) 32) (((-1174)) 31)) (-3976 (((-794) $) 35)))
-(((-70 |#1|) (-13 (-371) (-10 -7 (-15 -2034 ((-1174))))) (-1087)) (T -70))
-((-2034 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-70 *3)) (-14 *3 (-1087)))))
-(-13 (-371) (-10 -7 (-15 -2034 ((-1174)))))
-((-2034 (((-1174) $) 63)) (-3976 (((-794) $) 57) (($ (-629 (-638))) 49) (($ (-589 (-306))) 51) (($ (-306)) 54) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 48)))
-(((-71 |#1|) (-359) (-1087)) (T -71))
-NIL
-(-359)
-((-2898 (((-3 $ "failed") (-1169 (-292 (-355)))) 125) (((-3 $ "failed") (-1169 (-292 (-523)))) 115) (((-3 $ "failed") (-1169 (-883 (-355)))) 145) (((-3 $ "failed") (-1169 (-883 (-523)))) 135) (((-3 $ "failed") (-1169 (-383 (-883 (-355))))) 105) (((-3 $ "failed") (-1169 (-383 (-883 (-523))))) 93)) (-1996 (($ (-1169 (-292 (-355)))) 121) (($ (-1169 (-292 (-523)))) 111) (($ (-1169 (-883 (-355)))) 141) (($ (-1169 (-883 (-523)))) 131) (($ (-1169 (-383 (-883 (-355))))) 101) (($ (-1169 (-383 (-883 (-523))))) 86)) (-2034 (((-1174) $) 78)) (-3976 (((-794) $) 27) (($ (-589 (-306))) 68) (($ (-306)) 64) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 71) (($ (-1169 (-315 (-3985) (-3985 (QUOTE X)) (-638)))) 65)))
-(((-72 |#1|) (-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985) (-3985 (QUOTE X)) (-638))))))) (-1087)) (T -72))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1169 (-315 (-3985) (-3985 (QUOTE X)) (-638)))) (-5 *1 (-72 *3)) (-14 *3 (-1087)))))
-(-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985) (-3985 (QUOTE X)) (-638)))))))
-((-2898 (((-3 $ "failed") (-1169 (-292 (-355)))) 130) (((-3 $ "failed") (-1169 (-292 (-523)))) 119) (((-3 $ "failed") (-1169 (-883 (-355)))) 150) (((-3 $ "failed") (-1169 (-883 (-523)))) 140) (((-3 $ "failed") (-1169 (-383 (-883 (-355))))) 108) (((-3 $ "failed") (-1169 (-383 (-883 (-523))))) 95)) (-1996 (($ (-1169 (-292 (-355)))) 126) (($ (-1169 (-292 (-523)))) 115) (($ (-1169 (-883 (-355)))) 146) (($ (-1169 (-883 (-523)))) 136) (($ (-1169 (-383 (-883 (-355))))) 104) (($ (-1169 (-383 (-883 (-523))))) 88)) (-2034 (((-1174) $) 79)) (-3976 (((-794) $) 71) (($ (-589 (-306))) NIL) (($ (-306)) NIL) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) NIL) (($ (-1169 (-315 (-3985 (QUOTE X) (QUOTE EPS)) (-3985 (QUOTE -4028)) (-638)))) 66)))
-(((-73 |#1| |#2| |#3|) (-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985 (QUOTE X) (QUOTE EPS)) (-3985 (QUOTE -4028)) (-638))))))) (-1087) (-1087) (-1087)) (T -73))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1169 (-315 (-3985 (QUOTE X) (QUOTE EPS)) (-3985 (QUOTE -4028)) (-638)))) (-5 *1 (-73 *3 *4 *5)) (-14 *3 (-1087)) (-14 *4 (-1087)) (-14 *5 (-1087)))))
-(-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985 (QUOTE X) (QUOTE EPS)) (-3985 (QUOTE -4028)) (-638)))))))
-((-2898 (((-3 $ "failed") (-1169 (-292 (-355)))) 134) (((-3 $ "failed") (-1169 (-292 (-523)))) 123) (((-3 $ "failed") (-1169 (-883 (-355)))) 154) (((-3 $ "failed") (-1169 (-883 (-523)))) 144) (((-3 $ "failed") (-1169 (-383 (-883 (-355))))) 112) (((-3 $ "failed") (-1169 (-383 (-883 (-523))))) 99)) (-1996 (($ (-1169 (-292 (-355)))) 130) (($ (-1169 (-292 (-523)))) 119) (($ (-1169 (-883 (-355)))) 150) (($ (-1169 (-883 (-523)))) 140) (($ (-1169 (-383 (-883 (-355))))) 108) (($ (-1169 (-383 (-883 (-523))))) 92)) (-2034 (((-1174) $) 83)) (-3976 (((-794) $) 75) (($ (-589 (-306))) NIL) (($ (-306)) NIL) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) NIL) (($ (-1169 (-315 (-3985 (QUOTE EPS)) (-3985 (QUOTE YA) (QUOTE YB)) (-638)))) 70)))
-(((-74 |#1| |#2| |#3|) (-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985 (QUOTE EPS)) (-3985 (QUOTE YA) (QUOTE YB)) (-638))))))) (-1087) (-1087) (-1087)) (T -74))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1169 (-315 (-3985 (QUOTE EPS)) (-3985 (QUOTE YA) (QUOTE YB)) (-638)))) (-5 *1 (-74 *3 *4 *5)) (-14 *3 (-1087)) (-14 *4 (-1087)) (-14 *5 (-1087)))))
-(-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985 (QUOTE EPS)) (-3985 (QUOTE YA) (QUOTE YB)) (-638)))))))
-((-2898 (((-3 $ "failed") (-292 (-355))) 82) (((-3 $ "failed") (-292 (-523))) 87) (((-3 $ "failed") (-883 (-355))) 91) (((-3 $ "failed") (-883 (-523))) 95) (((-3 $ "failed") (-383 (-883 (-355)))) 77) (((-3 $ "failed") (-383 (-883 (-523)))) 70)) (-1996 (($ (-292 (-355))) 80) (($ (-292 (-523))) 85) (($ (-883 (-355))) 89) (($ (-883 (-523))) 93) (($ (-383 (-883 (-355)))) 75) (($ (-383 (-883 (-523)))) 67)) (-2034 (((-1174) $) 62)) (-3976 (((-794) $) 50) (($ (-589 (-306))) 46) (($ (-306)) 56) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 54) (($ (-315 (-3985) (-3985 (QUOTE X)) (-638))) 47)))
-(((-75 |#1|) (-13 (-372) (-10 -8 (-15 -3976 ($ (-315 (-3985) (-3985 (QUOTE X)) (-638)))))) (-1087)) (T -75))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-315 (-3985) (-3985 (QUOTE X)) (-638))) (-5 *1 (-75 *3)) (-14 *3 (-1087)))))
-(-13 (-372) (-10 -8 (-15 -3976 ($ (-315 (-3985) (-3985 (QUOTE X)) (-638))))))
-((-2898 (((-3 $ "failed") (-292 (-355))) 46) (((-3 $ "failed") (-292 (-523))) 51) (((-3 $ "failed") (-883 (-355))) 55) (((-3 $ "failed") (-883 (-523))) 59) (((-3 $ "failed") (-383 (-883 (-355)))) 41) (((-3 $ "failed") (-383 (-883 (-523)))) 34)) (-1996 (($ (-292 (-355))) 44) (($ (-292 (-523))) 49) (($ (-883 (-355))) 53) (($ (-883 (-523))) 57) (($ (-383 (-883 (-355)))) 39) (($ (-383 (-883 (-523)))) 31)) (-2034 (((-1174) $) 80)) (-3976 (((-794) $) 74) (($ (-589 (-306))) 66) (($ (-306)) 71) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 69) (($ (-315 (-3985) (-3985 (QUOTE X)) (-638))) 30)))
-(((-76 |#1|) (-13 (-372) (-10 -8 (-15 -3976 ($ (-315 (-3985) (-3985 (QUOTE X)) (-638)))))) (-1087)) (T -76))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-315 (-3985) (-3985 (QUOTE X)) (-638))) (-5 *1 (-76 *3)) (-14 *3 (-1087)))))
-(-13 (-372) (-10 -8 (-15 -3976 ($ (-315 (-3985) (-3985 (QUOTE X)) (-638))))))
-((-2898 (((-3 $ "failed") (-1169 (-292 (-355)))) 89) (((-3 $ "failed") (-1169 (-292 (-523)))) 78) (((-3 $ "failed") (-1169 (-883 (-355)))) 109) (((-3 $ "failed") (-1169 (-883 (-523)))) 99) (((-3 $ "failed") (-1169 (-383 (-883 (-355))))) 67) (((-3 $ "failed") (-1169 (-383 (-883 (-523))))) 54)) (-1996 (($ (-1169 (-292 (-355)))) 85) (($ (-1169 (-292 (-523)))) 74) (($ (-1169 (-883 (-355)))) 105) (($ (-1169 (-883 (-523)))) 95) (($ (-1169 (-383 (-883 (-355))))) 63) (($ (-1169 (-383 (-883 (-523))))) 47)) (-2034 (((-1174) $) 125)) (-3976 (((-794) $) 119) (($ (-589 (-306))) 112) (($ (-306)) 37) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 115) (($ (-1169 (-315 (-3985) (-3985 (QUOTE XC)) (-638)))) 38)))
-(((-77 |#1|) (-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985) (-3985 (QUOTE XC)) (-638))))))) (-1087)) (T -77))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1169 (-315 (-3985) (-3985 (QUOTE XC)) (-638)))) (-5 *1 (-77 *3)) (-14 *3 (-1087)))))
-(-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985) (-3985 (QUOTE XC)) (-638)))))))
-((-2898 (((-3 $ "failed") (-1169 (-292 (-355)))) 142) (((-3 $ "failed") (-1169 (-292 (-523)))) 132) (((-3 $ "failed") (-1169 (-883 (-355)))) 162) (((-3 $ "failed") (-1169 (-883 (-523)))) 152) (((-3 $ "failed") (-1169 (-383 (-883 (-355))))) 122) (((-3 $ "failed") (-1169 (-383 (-883 (-523))))) 110)) (-1996 (($ (-1169 (-292 (-355)))) 138) (($ (-1169 (-292 (-523)))) 128) (($ (-1169 (-883 (-355)))) 158) (($ (-1169 (-883 (-523)))) 148) (($ (-1169 (-383 (-883 (-355))))) 118) (($ (-1169 (-383 (-883 (-523))))) 103)) (-2034 (((-1174) $) 96)) (-3976 (((-794) $) 90) (($ (-589 (-306))) 81) (($ (-306)) 88) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 86) (($ (-1169 (-315 (-3985) (-3985 (QUOTE X)) (-638)))) 82)))
-(((-78 |#1|) (-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985) (-3985 (QUOTE X)) (-638))))))) (-1087)) (T -78))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1169 (-315 (-3985) (-3985 (QUOTE X)) (-638)))) (-5 *1 (-78 *3)) (-14 *3 (-1087)))))
-(-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985) (-3985 (QUOTE X)) (-638)))))))
-((-2898 (((-3 $ "failed") (-1169 (-292 (-355)))) 78) (((-3 $ "failed") (-1169 (-292 (-523)))) 67) (((-3 $ "failed") (-1169 (-883 (-355)))) 98) (((-3 $ "failed") (-1169 (-883 (-523)))) 88) (((-3 $ "failed") (-1169 (-383 (-883 (-355))))) 56) (((-3 $ "failed") (-1169 (-383 (-883 (-523))))) 43)) (-1996 (($ (-1169 (-292 (-355)))) 74) (($ (-1169 (-292 (-523)))) 63) (($ (-1169 (-883 (-355)))) 94) (($ (-1169 (-883 (-523)))) 84) (($ (-1169 (-383 (-883 (-355))))) 52) (($ (-1169 (-383 (-883 (-523))))) 36)) (-2034 (((-1174) $) 124)) (-3976 (((-794) $) 118) (($ (-589 (-306))) 109) (($ (-306)) 115) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 113) (($ (-1169 (-315 (-3985) (-3985 (QUOTE X)) (-638)))) 35)))
-(((-79 |#1|) (-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985) (-3985 (QUOTE X)) (-638))))))) (-1087)) (T -79))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1169 (-315 (-3985) (-3985 (QUOTE X)) (-638)))) (-5 *1 (-79 *3)) (-14 *3 (-1087)))))
-(-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985) (-3985 (QUOTE X)) (-638)))))))
-((-2898 (((-3 $ "failed") (-1169 (-292 (-355)))) 95) (((-3 $ "failed") (-1169 (-292 (-523)))) 84) (((-3 $ "failed") (-1169 (-883 (-355)))) 115) (((-3 $ "failed") (-1169 (-883 (-523)))) 105) (((-3 $ "failed") (-1169 (-383 (-883 (-355))))) 73) (((-3 $ "failed") (-1169 (-383 (-883 (-523))))) 60)) (-1996 (($ (-1169 (-292 (-355)))) 91) (($ (-1169 (-292 (-523)))) 80) (($ (-1169 (-883 (-355)))) 111) (($ (-1169 (-883 (-523)))) 101) (($ (-1169 (-383 (-883 (-355))))) 69) (($ (-1169 (-383 (-883 (-523))))) 53)) (-2034 (((-1174) $) 45)) (-3976 (((-794) $) 39) (($ (-589 (-306))) 29) (($ (-306)) 32) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 35) (($ (-1169 (-315 (-3985 (QUOTE X) (QUOTE -4028)) (-3985) (-638)))) 30)))
-(((-80 |#1|) (-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985 (QUOTE X) (QUOTE -4028)) (-3985) (-638))))))) (-1087)) (T -80))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1169 (-315 (-3985 (QUOTE X) (QUOTE -4028)) (-3985) (-638)))) (-5 *1 (-80 *3)) (-14 *3 (-1087)))))
-(-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985 (QUOTE X) (QUOTE -4028)) (-3985) (-638)))))))
-((-2898 (((-3 $ "failed") (-629 (-292 (-355)))) 115) (((-3 $ "failed") (-629 (-292 (-523)))) 104) (((-3 $ "failed") (-629 (-883 (-355)))) 137) (((-3 $ "failed") (-629 (-883 (-523)))) 126) (((-3 $ "failed") (-629 (-383 (-883 (-355))))) 93) (((-3 $ "failed") (-629 (-383 (-883 (-523))))) 80)) (-1996 (($ (-629 (-292 (-355)))) 111) (($ (-629 (-292 (-523)))) 100) (($ (-629 (-883 (-355)))) 133) (($ (-629 (-883 (-523)))) 122) (($ (-629 (-383 (-883 (-355))))) 89) (($ (-629 (-383 (-883 (-523))))) 73)) (-2034 (((-1174) $) 63)) (-3976 (((-794) $) 50) (($ (-589 (-306))) 57) (($ (-306)) 46) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 55) (($ (-629 (-315 (-3985 (QUOTE X) (QUOTE -4028)) (-3985) (-638)))) 47)))
-(((-81 |#1|) (-13 (-360) (-10 -8 (-15 -3976 ($ (-629 (-315 (-3985 (QUOTE X) (QUOTE -4028)) (-3985) (-638))))))) (-1087)) (T -81))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-629 (-315 (-3985 (QUOTE X) (QUOTE -4028)) (-3985) (-638)))) (-5 *1 (-81 *3)) (-14 *3 (-1087)))))
-(-13 (-360) (-10 -8 (-15 -3976 ($ (-629 (-315 (-3985 (QUOTE X) (QUOTE -4028)) (-3985) (-638)))))))
-((-2898 (((-3 $ "failed") (-629 (-292 (-355)))) 112) (((-3 $ "failed") (-629 (-292 (-523)))) 100) (((-3 $ "failed") (-629 (-883 (-355)))) 134) (((-3 $ "failed") (-629 (-883 (-523)))) 123) (((-3 $ "failed") (-629 (-383 (-883 (-355))))) 88) (((-3 $ "failed") (-629 (-383 (-883 (-523))))) 74)) (-1996 (($ (-629 (-292 (-355)))) 108) (($ (-629 (-292 (-523)))) 96) (($ (-629 (-883 (-355)))) 130) (($ (-629 (-883 (-523)))) 119) (($ (-629 (-383 (-883 (-355))))) 84) (($ (-629 (-383 (-883 (-523))))) 67)) (-2034 (((-1174) $) 59)) (-3976 (((-794) $) 53) (($ (-589 (-306))) 47) (($ (-306)) 50) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 44) (($ (-629 (-315 (-3985 (QUOTE X)) (-3985) (-638)))) 45)))
-(((-82 |#1|) (-13 (-360) (-10 -8 (-15 -3976 ($ (-629 (-315 (-3985 (QUOTE X)) (-3985) (-638))))))) (-1087)) (T -82))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-629 (-315 (-3985 (QUOTE X)) (-3985) (-638)))) (-5 *1 (-82 *3)) (-14 *3 (-1087)))))
-(-13 (-360) (-10 -8 (-15 -3976 ($ (-629 (-315 (-3985 (QUOTE X)) (-3985) (-638)))))))
-((-2898 (((-3 $ "failed") (-1169 (-292 (-355)))) 104) (((-3 $ "failed") (-1169 (-292 (-523)))) 93) (((-3 $ "failed") (-1169 (-883 (-355)))) 124) (((-3 $ "failed") (-1169 (-883 (-523)))) 114) (((-3 $ "failed") (-1169 (-383 (-883 (-355))))) 82) (((-3 $ "failed") (-1169 (-383 (-883 (-523))))) 69)) (-1996 (($ (-1169 (-292 (-355)))) 100) (($ (-1169 (-292 (-523)))) 89) (($ (-1169 (-883 (-355)))) 120) (($ (-1169 (-883 (-523)))) 110) (($ (-1169 (-383 (-883 (-355))))) 78) (($ (-1169 (-383 (-883 (-523))))) 62)) (-2034 (((-1174) $) 46)) (-3976 (((-794) $) 40) (($ (-589 (-306))) 49) (($ (-306)) 36) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 52) (($ (-1169 (-315 (-3985 (QUOTE X)) (-3985) (-638)))) 37)))
-(((-83 |#1|) (-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985 (QUOTE X)) (-3985) (-638))))))) (-1087)) (T -83))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1169 (-315 (-3985 (QUOTE X)) (-3985) (-638)))) (-5 *1 (-83 *3)) (-14 *3 (-1087)))))
-(-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985 (QUOTE X)) (-3985) (-638)))))))
-((-2898 (((-3 $ "failed") (-1169 (-292 (-355)))) 79) (((-3 $ "failed") (-1169 (-292 (-523)))) 68) (((-3 $ "failed") (-1169 (-883 (-355)))) 99) (((-3 $ "failed") (-1169 (-883 (-523)))) 89) (((-3 $ "failed") (-1169 (-383 (-883 (-355))))) 57) (((-3 $ "failed") (-1169 (-383 (-883 (-523))))) 44)) (-1996 (($ (-1169 (-292 (-355)))) 75) (($ (-1169 (-292 (-523)))) 64) (($ (-1169 (-883 (-355)))) 95) (($ (-1169 (-883 (-523)))) 85) (($ (-1169 (-383 (-883 (-355))))) 53) (($ (-1169 (-383 (-883 (-523))))) 37)) (-2034 (((-1174) $) 125)) (-3976 (((-794) $) 119) (($ (-589 (-306))) 110) (($ (-306)) 116) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 114) (($ (-1169 (-315 (-3985 (QUOTE X)) (-3985 (QUOTE -4028)) (-638)))) 36)))
-(((-84 |#1|) (-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985 (QUOTE X)) (-3985 (QUOTE -4028)) (-638))))))) (-1087)) (T -84))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1169 (-315 (-3985 (QUOTE X)) (-3985 (QUOTE -4028)) (-638)))) (-5 *1 (-84 *3)) (-14 *3 (-1087)))))
-(-13 (-416) (-10 -8 (-15 -3976 ($ (-1169 (-315 (-3985 (QUOTE X)) (-3985 (QUOTE -4028)) (-638)))))))
-((-2898 (((-3 $ "failed") (-629 (-292 (-355)))) 113) (((-3 $ "failed") (-629 (-292 (-523)))) 101) (((-3 $ "failed") (-629 (-883 (-355)))) 135) (((-3 $ "failed") (-629 (-883 (-523)))) 124) (((-3 $ "failed") (-629 (-383 (-883 (-355))))) 89) (((-3 $ "failed") (-629 (-383 (-883 (-523))))) 75)) (-1996 (($ (-629 (-292 (-355)))) 109) (($ (-629 (-292 (-523)))) 97) (($ (-629 (-883 (-355)))) 131) (($ (-629 (-883 (-523)))) 120) (($ (-629 (-383 (-883 (-355))))) 85) (($ (-629 (-383 (-883 (-523))))) 68)) (-2034 (((-1174) $) 59)) (-3976 (((-794) $) 53) (($ (-589 (-306))) 43) (($ (-306)) 50) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 48) (($ (-629 (-315 (-3985 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3985) (-638)))) 44)))
-(((-85 |#1|) (-13 (-360) (-10 -8 (-15 -3976 ($ (-629 (-315 (-3985 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3985) (-638))))))) (-1087)) (T -85))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-629 (-315 (-3985 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3985) (-638)))) (-5 *1 (-85 *3)) (-14 *3 (-1087)))))
-(-13 (-360) (-10 -8 (-15 -3976 ($ (-629 (-315 (-3985 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3985) (-638)))))))
-((-2034 (((-1174) $) 44)) (-3976 (((-794) $) 38) (($ (-1169 (-638))) 92) (($ (-589 (-306))) 30) (($ (-306)) 35) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 33)))
-(((-86 |#1|) (-415) (-1087)) (T -86))
-NIL
-(-415)
-((-2898 (((-3 $ "failed") (-292 (-355))) 47) (((-3 $ "failed") (-292 (-523))) 52) (((-3 $ "failed") (-883 (-355))) 56) (((-3 $ "failed") (-883 (-523))) 60) (((-3 $ "failed") (-383 (-883 (-355)))) 42) (((-3 $ "failed") (-383 (-883 (-523)))) 35)) (-1996 (($ (-292 (-355))) 45) (($ (-292 (-523))) 50) (($ (-883 (-355))) 54) (($ (-883 (-523))) 58) (($ (-383 (-883 (-355)))) 40) (($ (-383 (-883 (-523)))) 32)) (-2034 (((-1174) $) 90)) (-3976 (((-794) $) 84) (($ (-589 (-306))) 78) (($ (-306)) 81) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 76) (($ (-315 (-3985 (QUOTE X)) (-3985 (QUOTE -4028)) (-638))) 31)))
-(((-87 |#1|) (-13 (-372) (-10 -8 (-15 -3976 ($ (-315 (-3985 (QUOTE X)) (-3985 (QUOTE -4028)) (-638)))))) (-1087)) (T -87))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-315 (-3985 (QUOTE X)) (-3985 (QUOTE -4028)) (-638))) (-5 *1 (-87 *3)) (-14 *3 (-1087)))))
-(-13 (-372) (-10 -8 (-15 -3976 ($ (-315 (-3985 (QUOTE X)) (-3985 (QUOTE -4028)) (-638))))))
-((-1716 (((-1169 (-629 |#1|)) (-629 |#1|)) 54)) (-1687 (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 (-589 (-852))))) |#2| (-852)) 44)) (-1467 (((-2 (|:| |minor| (-589 (-852))) (|:| -1747 |#2|) (|:| |minors| (-589 (-589 (-852)))) (|:| |ops| (-589 |#2|))) |#2| (-852)) 65 (|has| |#1| (-339)))))
-(((-88 |#1| |#2|) (-10 -7 (-15 -1687 ((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 (-589 (-852))))) |#2| (-852))) (-15 -1716 ((-1169 (-629 |#1|)) (-629 |#1|))) (IF (|has| |#1| (-339)) (-15 -1467 ((-2 (|:| |minor| (-589 (-852))) (|:| -1747 |#2|) (|:| |minors| (-589 (-589 (-852)))) (|:| |ops| (-589 |#2|))) |#2| (-852))) |%noBranch|)) (-515) (-599 |#1|)) (T -88))
-((-1467 (*1 *2 *3 *4) (-12 (-4 *5 (-339)) (-4 *5 (-515)) (-5 *2 (-2 (|:| |minor| (-589 (-852))) (|:| -1747 *3) (|:| |minors| (-589 (-589 (-852)))) (|:| |ops| (-589 *3)))) (-5 *1 (-88 *5 *3)) (-5 *4 (-852)) (-4 *3 (-599 *5)))) (-1716 (*1 *2 *3) (-12 (-4 *4 (-515)) (-5 *2 (-1169 (-629 *4))) (-5 *1 (-88 *4 *5)) (-5 *3 (-629 *4)) (-4 *5 (-599 *4)))) (-1687 (*1 *2 *3 *4) (-12 (-4 *5 (-515)) (-5 *2 (-2 (|:| -2373 (-629 *5)) (|:| |vec| (-1169 (-589 (-852)))))) (-5 *1 (-88 *5 *3)) (-5 *4 (-852)) (-4 *3 (-599 *5)))))
-(-10 -7 (-15 -1687 ((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 (-589 (-852))))) |#2| (-852))) (-15 -1716 ((-1169 (-629 |#1|)) (-629 |#1|))) (IF (|has| |#1| (-339)) (-15 -1467 ((-2 (|:| |minor| (-589 (-852))) (|:| -1747 |#2|) (|:| |minors| (-589 (-589 (-852)))) (|:| |ops| (-589 |#2|))) |#2| (-852))) |%noBranch|))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-3346 ((|#1| $) 35)) (-2282 (((-108) $ (-710)) NIL)) (-1640 (($) NIL T CONST)) (-2230 ((|#1| |#1| $) 30)) (-2868 ((|#1| $) 28)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2349 ((|#1| $) NIL)) (-3862 (($ |#1| $) 31)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-1322 ((|#1| $) 29)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) 16)) (-4055 (($) 39)) (-4120 (((-710) $) 26)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) 15)) (-3976 (((-794) $) 25 (|has| |#1| (-563 (-794))))) (-1245 (($ (-589 |#1|)) NIL)) (-1964 (($ (-589 |#1|)) 37)) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 13 (|has| |#1| (-1016)))) (-1271 (((-710) $) 10 (|has| $ (-6 -4248)))))
-(((-89 |#1|) (-13 (-1035 |#1|) (-10 -8 (-15 -1964 ($ (-589 |#1|))))) (-1016)) (T -89))
-((-1964 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-89 *3)))))
-(-13 (-1035 |#1|) (-10 -8 (-15 -1964 ($ (-589 |#1|)))))
-((-3645 (($ $) 10)) (-3657 (($ $) 12)))
-(((-90 |#1|) (-10 -8 (-15 -3657 (|#1| |#1|)) (-15 -3645 (|#1| |#1|))) (-91)) (T -90))
-NIL
-(-10 -8 (-15 -3657 (|#1| |#1|)) (-15 -3645 (|#1| |#1|)))
-((-2680 (($ $) 11)) (-2655 (($ $) 10)) (-3645 (($ $) 9)) (-3657 (($ $) 8)) (-3632 (($ $) 7)) (-2667 (($ $) 6)))
-(((-91) (-129)) (T -91))
-((-2680 (*1 *1 *1) (-4 *1 (-91))) (-2655 (*1 *1 *1) (-4 *1 (-91))) (-3645 (*1 *1 *1) (-4 *1 (-91))) (-3657 (*1 *1 *1) (-4 *1 (-91))) (-3632 (*1 *1 *1) (-4 *1 (-91))) (-2667 (*1 *1 *1) (-4 *1 (-91))))
-(-13 (-10 -8 (-15 -2667 ($ $)) (-15 -3632 ($ $)) (-15 -3657 ($ $)) (-15 -3645 ($ $)) (-15 -2655 ($ $)) (-15 -2680 ($ $))))
-((-3260 (((-108) $ $) NIL)) (-1588 (((-355) (-1070) (-355)) 42) (((-355) (-1070) (-1070) (-355)) 41)) (-3345 (((-355) (-355)) 33)) (-1709 (((-1174)) 36)) (-3841 (((-1070) $) NIL)) (-3936 (((-355) (-1070) (-1070)) 46) (((-355) (-1070)) 48)) (-2435 (((-1034) $) NIL)) (-3845 (((-355) (-1070) (-1070)) 47)) (-2405 (((-355) (-1070) (-1070)) 49) (((-355) (-1070)) 50)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-92) (-13 (-1016) (-10 -7 (-15 -3936 ((-355) (-1070) (-1070))) (-15 -3936 ((-355) (-1070))) (-15 -2405 ((-355) (-1070) (-1070))) (-15 -2405 ((-355) (-1070))) (-15 -3845 ((-355) (-1070) (-1070))) (-15 -1709 ((-1174))) (-15 -3345 ((-355) (-355))) (-15 -1588 ((-355) (-1070) (-355))) (-15 -1588 ((-355) (-1070) (-1070) (-355))) (-6 -4248)))) (T -92))
-((-3936 (*1 *2 *3 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-355)) (-5 *1 (-92)))) (-3936 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-355)) (-5 *1 (-92)))) (-2405 (*1 *2 *3 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-355)) (-5 *1 (-92)))) (-2405 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-355)) (-5 *1 (-92)))) (-3845 (*1 *2 *3 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-355)) (-5 *1 (-92)))) (-1709 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-92)))) (-3345 (*1 *2 *2) (-12 (-5 *2 (-355)) (-5 *1 (-92)))) (-1588 (*1 *2 *3 *2) (-12 (-5 *2 (-355)) (-5 *3 (-1070)) (-5 *1 (-92)))) (-1588 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-355)) (-5 *3 (-1070)) (-5 *1 (-92)))))
-(-13 (-1016) (-10 -7 (-15 -3936 ((-355) (-1070) (-1070))) (-15 -3936 ((-355) (-1070))) (-15 -2405 ((-355) (-1070) (-1070))) (-15 -2405 ((-355) (-1070))) (-15 -3845 ((-355) (-1070) (-1070))) (-15 -1709 ((-1174))) (-15 -3345 ((-355) (-355))) (-15 -1588 ((-355) (-1070) (-355))) (-15 -1588 ((-355) (-1070) (-1070) (-355))) (-6 -4248)))
-NIL
-(((-93) (-129)) (T -93))
-NIL
-(-13 (-10 -7 (-6 -4248) (-6 (-4250 "*")) (-6 -4249) (-6 -4245) (-6 -4243) (-6 -4242) (-6 -4241) (-6 -4246) (-6 -4240) (-6 -4239) (-6 -4238) (-6 -4237) (-6 -4236) (-6 -4244) (-6 -4247) (-6 |NullSquare|) (-6 |JacobiIdentity|) (-6 -4235)))
-((-3260 (((-108) $ $) NIL)) (-1640 (($) NIL T CONST)) (-4211 (((-3 $ "failed") $) NIL)) (-3482 (((-108) $) NIL)) (-2847 (($ (-1 |#1| |#1|)) 25) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 24) (($ (-1 |#1| |#1| (-523))) 22)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 14)) (-2435 (((-1034) $) NIL)) (-1502 ((|#1| $ |#1|) 11)) (-1308 (($ $ $) NIL)) (-2306 (($ $ $) NIL)) (-3976 (((-794) $) 20)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1440 (($) 8 T CONST)) (-4037 (((-108) $ $) 10)) (-4125 (($ $ $) NIL)) (** (($ $ (-852)) 28) (($ $ (-710)) NIL) (($ $ (-523)) 16)) (* (($ $ $) 29)))
-(((-94 |#1|) (-13 (-448) (-263 |#1| |#1|) (-10 -8 (-15 -2847 ($ (-1 |#1| |#1|))) (-15 -2847 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -2847 ($ (-1 |#1| |#1| (-523)))))) (-973)) (T -94))
-((-2847 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-973)) (-5 *1 (-94 *3)))) (-2847 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-973)) (-5 *1 (-94 *3)))) (-2847 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3 (-523))) (-4 *3 (-973)) (-5 *1 (-94 *3)))))
-(-13 (-448) (-263 |#1| |#1|) (-10 -8 (-15 -2847 ($ (-1 |#1| |#1|))) (-15 -2847 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -2847 ($ (-1 |#1| |#1| (-523))))))
-((-1994 (((-394 |#2|) |#2| (-589 |#2|)) 10) (((-394 |#2|) |#2| |#2|) 11)))
-(((-95 |#1| |#2|) (-10 -7 (-15 -1994 ((-394 |#2|) |#2| |#2|)) (-15 -1994 ((-394 |#2|) |#2| (-589 |#2|)))) (-13 (-427) (-136)) (-1145 |#1|)) (T -95))
-((-1994 (*1 *2 *3 *4) (-12 (-5 *4 (-589 *3)) (-4 *3 (-1145 *5)) (-4 *5 (-13 (-427) (-136))) (-5 *2 (-394 *3)) (-5 *1 (-95 *5 *3)))) (-1994 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-427) (-136))) (-5 *2 (-394 *3)) (-5 *1 (-95 *4 *3)) (-4 *3 (-1145 *4)))))
-(-10 -7 (-15 -1994 ((-394 |#2|) |#2| |#2|)) (-15 -1994 ((-394 |#2|) |#2| (-589 |#2|))))
-((-3260 (((-108) $ $) 10)))
-(((-96 |#1|) (-10 -8 (-15 -3260 ((-108) |#1| |#1|))) (-97)) (T -96))
-NIL
-(-10 -8 (-15 -3260 ((-108) |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-4037 (((-108) $ $) 6)))
-(((-97) (-129)) (T -97))
-((-3260 (*1 *2 *1 *1) (-12 (-4 *1 (-97)) (-5 *2 (-108)))) (-4037 (*1 *2 *1 *1) (-12 (-4 *1 (-97)) (-5 *2 (-108)))))
-(-13 (-10 -8 (-15 -4037 ((-108) $ $)) (-15 -3260 ((-108) $ $))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2058 ((|#1| $) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-3365 ((|#1| $ |#1|) 13 (|has| $ (-6 -4249)))) (-3913 (($ $ $) NIL (|has| $ (-6 -4249)))) (-1657 (($ $ $) NIL (|has| $ (-6 -4249)))) (-4049 (($ $ (-589 |#1|)) 15)) (-4101 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4249))) (($ $ "left" $) NIL (|has| $ (-6 -4249))) (($ $ "right" $) NIL (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) NIL (|has| $ (-6 -4249)))) (-1640 (($) NIL T CONST)) (-2438 (($ $) 11)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) NIL)) (-3339 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-3588 (($ $ |#1| $) 17)) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-1821 ((|#1| $ (-1 |#1| |#1| |#1|)) 25) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 30)) (-1557 (($ $ |#1| (-1 |#1| |#1| |#1|)) 31) (($ $ |#1| (-1 (-589 |#1|) |#1| |#1| |#1|)) 35)) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-2428 (($ $) 10)) (-2112 (((-589 |#1|) $) NIL)) (-3391 (((-108) $) 12)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) 9)) (-4055 (($) 16)) (-1502 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2981 (((-523) $ $) NIL)) (-2837 (((-108) $) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) NIL)) (-4004 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-3658 (($ (-710) |#1|) 19)) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-98 |#1|) (-13 (-121 |#1|) (-10 -8 (-6 -4248) (-6 -4249) (-15 -3658 ($ (-710) |#1|)) (-15 -4049 ($ $ (-589 |#1|))) (-15 -1821 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -1821 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -1557 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -1557 ($ $ |#1| (-1 (-589 |#1|) |#1| |#1| |#1|))))) (-1016)) (T -98))
-((-3658 (*1 *1 *2 *3) (-12 (-5 *2 (-710)) (-5 *1 (-98 *3)) (-4 *3 (-1016)))) (-4049 (*1 *1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-98 *3)))) (-1821 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-98 *2)) (-4 *2 (-1016)))) (-1821 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1016)) (-5 *1 (-98 *3)))) (-1557 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1016)) (-5 *1 (-98 *2)))) (-1557 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 (-589 *2) *2 *2 *2)) (-4 *2 (-1016)) (-5 *1 (-98 *2)))))
-(-13 (-121 |#1|) (-10 -8 (-6 -4248) (-6 -4249) (-15 -3658 ($ (-710) |#1|)) (-15 -4049 ($ $ (-589 |#1|))) (-15 -1821 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -1821 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -1557 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -1557 ($ $ |#1| (-1 (-589 |#1|) |#1| |#1| |#1|)))))
-((-2372 ((|#3| |#2| |#2|) 29)) (-3556 ((|#1| |#2| |#2|) 37 (|has| |#1| (-6 (-4250 "*"))))) (-2892 ((|#3| |#2| |#2|) 30)) (-3388 ((|#1| |#2|) 41 (|has| |#1| (-6 (-4250 "*"))))))
-(((-99 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2372 (|#3| |#2| |#2|)) (-15 -2892 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4250 "*"))) (PROGN (-15 -3556 (|#1| |#2| |#2|)) (-15 -3388 (|#1| |#2|))) |%noBranch|)) (-973) (-1145 |#1|) (-627 |#1| |#4| |#5|) (-349 |#1|) (-349 |#1|)) (T -99))
-((-3388 (*1 *2 *3) (-12 (|has| *2 (-6 (-4250 "*"))) (-4 *5 (-349 *2)) (-4 *6 (-349 *2)) (-4 *2 (-973)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1145 *2)) (-4 *4 (-627 *2 *5 *6)))) (-3556 (*1 *2 *3 *3) (-12 (|has| *2 (-6 (-4250 "*"))) (-4 *5 (-349 *2)) (-4 *6 (-349 *2)) (-4 *2 (-973)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1145 *2)) (-4 *4 (-627 *2 *5 *6)))) (-2892 (*1 *2 *3 *3) (-12 (-4 *4 (-973)) (-4 *2 (-627 *4 *5 *6)) (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1145 *4)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4)))) (-2372 (*1 *2 *3 *3) (-12 (-4 *4 (-973)) (-4 *2 (-627 *4 *5 *6)) (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1145 *4)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4)))))
-(-10 -7 (-15 -2372 (|#3| |#2| |#2|)) (-15 -2892 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4250 "*"))) (PROGN (-15 -3556 (|#1| |#2| |#2|)) (-15 -3388 (|#1| |#2|))) |%noBranch|))
-((-3260 (((-108) $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-1340 (((-589 (-1087))) 33)) (-4220 (((-2 (|:| |zeros| (-1068 (-203))) (|:| |ones| (-1068 (-203))) (|:| |singularities| (-1068 (-203)))) (-1087)) 35)) (-4037 (((-108) $ $) NIL)))
-(((-100) (-13 (-1016) (-10 -7 (-15 -1340 ((-589 (-1087)))) (-15 -4220 ((-2 (|:| |zeros| (-1068 (-203))) (|:| |ones| (-1068 (-203))) (|:| |singularities| (-1068 (-203)))) (-1087))) (-6 -4248)))) (T -100))
-((-1340 (*1 *2) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-100)))) (-4220 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-2 (|:| |zeros| (-1068 (-203))) (|:| |ones| (-1068 (-203))) (|:| |singularities| (-1068 (-203))))) (-5 *1 (-100)))))
-(-13 (-1016) (-10 -7 (-15 -1340 ((-589 (-1087)))) (-15 -4220 ((-2 (|:| |zeros| (-1068 (-203))) (|:| |ones| (-1068 (-203))) (|:| |singularities| (-1068 (-203)))) (-1087))) (-6 -4248)))
-((-1245 (($ (-589 |#2|)) 11)))
-(((-101 |#1| |#2|) (-10 -8 (-15 -1245 (|#1| (-589 |#2|)))) (-102 |#2|) (-1123)) (T -101))
-NIL
-(-10 -8 (-15 -1245 (|#1| (-589 |#2|))))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2282 (((-108) $ (-710)) 8)) (-1640 (($) 7 T CONST)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2349 ((|#1| $) 39)) (-3862 (($ |#1| $) 40)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-1322 ((|#1| $) 41)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1245 (($ (-589 |#1|)) 42)) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-102 |#1|) (-129) (-1123)) (T -102))
-((-1245 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-4 *1 (-102 *3)))) (-1322 (*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1123)))) (-3862 (*1 *1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1123)))) (-2349 (*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1123)))))
-(-13 (-462 |t#1|) (-10 -8 (-6 -4249) (-15 -1245 ($ (-589 |t#1|))) (-15 -1322 (|t#1| $)) (-15 -3862 ($ |t#1| $)) (-15 -2349 (|t#1| $))))
-(((-33) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3964 (((-523) $) NIL (|has| (-523) (-284)))) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-3684 (((-108) $ $) NIL)) (-2035 (((-523) $) NIL (|has| (-523) (-759)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL) (((-3 (-1087) "failed") $) NIL (|has| (-523) (-964 (-1087)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| (-523) (-964 (-523)))) (((-3 (-523) "failed") $) NIL (|has| (-523) (-964 (-523))))) (-1996 (((-523) $) NIL) (((-1087) $) NIL (|has| (-523) (-964 (-1087)))) (((-383 (-523)) $) NIL (|has| (-523) (-964 (-523)))) (((-523) $) NIL (|has| (-523) (-964 (-523))))) (-2501 (($ $ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| (-523) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| (-523) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL) (((-629 (-523)) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) NIL (|has| (-523) (-508)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-3702 (((-108) $) NIL (|has| (-523) (-759)))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (|has| (-523) (-817 (-523)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (|has| (-523) (-817 (-355))))) (-3482 (((-108) $) NIL)) (-2364 (($ $) NIL)) (-2164 (((-523) $) NIL)) (-1289 (((-3 $ "failed") $) NIL (|has| (-523) (-1063)))) (-4050 (((-108) $) NIL (|has| (-523) (-759)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3268 (($ $ $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| (-523) (-786)))) (-3015 (($ (-1 (-523) (-523)) $) NIL)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| (-523) (-1063)) CONST)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3934 (($ $) NIL (|has| (-523) (-284))) (((-383 (-523)) $) NIL)) (-1250 (((-523) $) NIL (|has| (-523) (-508)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-1349 (($ $ (-589 (-523)) (-589 (-523))) NIL (|has| (-523) (-286 (-523)))) (($ $ (-523) (-523)) NIL (|has| (-523) (-286 (-523)))) (($ $ (-271 (-523))) NIL (|has| (-523) (-286 (-523)))) (($ $ (-589 (-271 (-523)))) NIL (|has| (-523) (-286 (-523)))) (($ $ (-589 (-1087)) (-589 (-523))) NIL (|has| (-523) (-484 (-1087) (-523)))) (($ $ (-1087) (-523)) NIL (|has| (-523) (-484 (-1087) (-523))))) (-3087 (((-710) $) NIL)) (-1502 (($ $ (-523)) NIL (|has| (-523) (-263 (-523) (-523))))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-4024 (($ $) NIL (|has| (-523) (-211))) (($ $ (-710)) NIL (|has| (-523) (-211))) (($ $ (-1087)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1 (-523) (-523)) (-710)) NIL) (($ $ (-1 (-523) (-523))) NIL)) (-3758 (($ $) NIL)) (-2171 (((-523) $) NIL)) (-3077 (((-823 (-523)) $) NIL (|has| (-523) (-564 (-823 (-523))))) (((-823 (-355)) $) NIL (|has| (-523) (-564 (-823 (-355))))) (((-499) $) NIL (|has| (-523) (-564 (-499)))) (((-355) $) NIL (|has| (-523) (-949))) (((-203) $) NIL (|has| (-523) (-949)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| (-523) (-840))))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) 8) (($ (-523)) NIL) (($ (-1087)) NIL (|has| (-523) (-964 (-1087)))) (((-383 (-523)) $) NIL) (((-932 2) $) 10)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| (-523) (-840))) (|has| (-523) (-134))))) (-1698 (((-710)) NIL)) (-1516 (((-523) $) NIL (|has| (-523) (-508)))) (-1293 (($ (-383 (-523))) 9)) (-3842 (((-108) $ $) NIL)) (-3984 (($ $) NIL (|has| (-523) (-759)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $) NIL (|has| (-523) (-211))) (($ $ (-710)) NIL (|has| (-523) (-211))) (($ $ (-1087)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1 (-523) (-523)) (-710)) NIL) (($ $ (-1 (-523) (-523))) NIL)) (-4078 (((-108) $ $) NIL (|has| (-523) (-786)))) (-4061 (((-108) $ $) NIL (|has| (-523) (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| (-523) (-786)))) (-4052 (((-108) $ $) NIL (|has| (-523) (-786)))) (-4125 (($ $ $) NIL) (($ (-523) (-523)) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ (-523) $) NIL) (($ $ (-523)) NIL)))
-(((-103) (-13 (-921 (-523)) (-10 -8 (-15 -3976 ((-383 (-523)) $)) (-15 -3976 ((-932 2) $)) (-15 -3934 ((-383 (-523)) $)) (-15 -1293 ($ (-383 (-523))))))) (T -103))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-103)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-932 2)) (-5 *1 (-103)))) (-3934 (*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-103)))) (-1293 (*1 *1 *2) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-103)))))
-(-13 (-921 (-523)) (-10 -8 (-15 -3976 ((-383 (-523)) $)) (-15 -3976 ((-932 2) $)) (-15 -3934 ((-383 (-523)) $)) (-15 -1293 ($ (-383 (-523))))))
-((-3036 (((-589 (-895)) $) 14)) (-1522 (((-1087) $) 10)) (-3976 (((-794) $) 23)) (-2017 (($ (-1087) (-589 (-895))) 15)))
-(((-104) (-13 (-563 (-794)) (-10 -8 (-15 -1522 ((-1087) $)) (-15 -3036 ((-589 (-895)) $)) (-15 -2017 ($ (-1087) (-589 (-895))))))) (T -104))
-((-1522 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-104)))) (-3036 (*1 *2 *1) (-12 (-5 *2 (-589 (-895))) (-5 *1 (-104)))) (-2017 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-895))) (-5 *1 (-104)))))
-(-13 (-563 (-794)) (-10 -8 (-15 -1522 ((-1087) $)) (-15 -3036 ((-589 (-895)) $)) (-15 -2017 ($ (-1087) (-589 (-895))))))
-((-3260 (((-108) $ $) NIL)) (-1929 (((-1034) $ (-1034)) 24)) (-1590 (($ $ (-1070)) 17)) (-1302 (((-3 (-1034) "failed") $) 23)) (-2214 (((-1034) $) 21)) (-1629 (((-1034) $ (-1034)) 26)) (-1894 (((-1034) $) 25)) (-3439 (($ (-364)) NIL) (($ (-364) (-1070)) 16)) (-1522 (((-364) $) NIL)) (-3841 (((-1070) $) NIL)) (-2965 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-1833 (($ $) 18)) (-4037 (((-108) $ $) NIL)))
-(((-105) (-13 (-340 (-364) (-1034)) (-10 -8 (-15 -1302 ((-3 (-1034) "failed") $)) (-15 -1894 ((-1034) $)) (-15 -1629 ((-1034) $ (-1034)))))) (T -105))
-((-1302 (*1 *2 *1) (|partial| -12 (-5 *2 (-1034)) (-5 *1 (-105)))) (-1894 (*1 *2 *1) (-12 (-5 *2 (-1034)) (-5 *1 (-105)))) (-1629 (*1 *2 *1 *2) (-12 (-5 *2 (-1034)) (-5 *1 (-105)))))
-(-13 (-340 (-364) (-1034)) (-10 -8 (-15 -1302 ((-3 (-1034) "failed") $)) (-15 -1894 ((-1034) $)) (-15 -1629 ((-1034) $ (-1034)))))
-((-3260 (((-108) $ $) NIL)) (-3382 (($ $) NIL)) (-3485 (($ $ $) NIL)) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-4159 (((-108) $) NIL (|has| (-108) (-786))) (((-108) (-1 (-108) (-108) (-108)) $) NIL)) (-2361 (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| (-108) (-786)))) (($ (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4249)))) (-3400 (($ $) NIL (|has| (-108) (-786))) (($ (-1 (-108) (-108) (-108)) $) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-4101 (((-108) $ (-1136 (-523)) (-108)) NIL (|has| $ (-6 -4249))) (((-108) $ (-523) (-108)) NIL (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-4091 (($ $) NIL (|has| $ (-6 -4249)))) (-4082 (($ $) NIL)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-108) (-1016))))) (-2231 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4248))) (($ (-108) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-108) (-1016))))) (-1830 (((-108) (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-108) (-108)) $ (-108)) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-108) (-108)) $ (-108) (-108)) NIL (-12 (|has| $ (-6 -4248)) (|has| (-108) (-1016))))) (-3073 (((-108) $ (-523) (-108)) NIL (|has| $ (-6 -4249)))) (-3002 (((-108) $ (-523)) NIL)) (-1894 (((-523) (-108) $ (-523)) NIL (|has| (-108) (-1016))) (((-523) (-108) $) NIL (|has| (-108) (-1016))) (((-523) (-1 (-108) (-108)) $) NIL)) (-3133 (((-589 (-108)) $) NIL (|has| $ (-6 -4248)))) (-2806 (($ $ $) NIL)) (-2575 (($ $) NIL)) (-3574 (($ $ $) NIL)) (-2348 (($ (-710) (-108)) 8)) (-3853 (($ $ $) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) NIL (|has| (-523) (-786)))) (-3268 (($ $ $) NIL)) (-3123 (($ $ $) NIL (|has| (-108) (-786))) (($ (-1 (-108) (-108) (-108)) $ $) NIL)) (-3056 (((-589 (-108)) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-108) (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL)) (-3063 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-108) (-108) (-108)) $ $) NIL) (($ (-1 (-108) (-108)) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-3334 (($ $ $ (-523)) NIL) (($ (-108) $ (-523)) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2435 (((-1034) $) NIL)) (-3879 (((-108) $) NIL (|has| (-523) (-786)))) (-2660 (((-3 (-108) "failed") (-1 (-108) (-108)) $) NIL)) (-2408 (($ $ (-108)) NIL (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-108)) (-589 (-108))) NIL (-12 (|has| (-108) (-286 (-108))) (|has| (-108) (-1016)))) (($ $ (-108) (-108)) NIL (-12 (|has| (-108) (-286 (-108))) (|has| (-108) (-1016)))) (($ $ (-271 (-108))) NIL (-12 (|has| (-108) (-286 (-108))) (|has| (-108) (-1016)))) (($ $ (-589 (-271 (-108)))) NIL (-12 (|has| (-108) (-286 (-108))) (|has| (-108) (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-108) (-1016))))) (-3184 (((-589 (-108)) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 (($ $ (-1136 (-523))) NIL) (((-108) $ (-523)) NIL) (((-108) $ (-523) (-108)) NIL)) (-3725 (($ $ (-1136 (-523))) NIL) (($ $ (-523)) NIL)) (-2452 (((-710) (-108) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-108) (-1016)))) (((-710) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4248)))) (-2580 (($ $ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| (-108) (-564 (-499))))) (-3985 (($ (-589 (-108))) NIL)) (-2785 (($ (-589 $)) NIL) (($ $ $) NIL) (($ (-108) $) NIL) (($ $ (-108)) NIL)) (-3976 (((-794) $) NIL)) (-2954 (($ (-710) (-108)) 9)) (-1505 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4248)))) (-2819 (($ $ $) NIL)) (-2573 (($ $) NIL)) (-2526 (($ $ $) NIL)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) NIL)) (-2516 (($ $ $) NIL)) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-106) (-13 (-119) (-10 -8 (-15 -2954 ($ (-710) (-108)))))) (T -106))
-((-2954 (*1 *1 *2 *3) (-12 (-5 *2 (-710)) (-5 *3 (-108)) (-5 *1 (-106)))))
-(-13 (-119) (-10 -8 (-15 -2954 ($ (-710) (-108)))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ |#1| $) 23) (($ $ |#2|) 26)))
-(((-107 |#1| |#2|) (-129) (-973) (-973)) (T -107))
-NIL
-(-13 (-591 |t#1|) (-979 |t#2|) (-10 -7 (-6 -4243) (-6 -4242)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 |#1|) . T) ((-979 |#2|) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-3382 (($ $) 12)) (-3485 (($ $ $) 17)) (-2204 (($) 8 T CONST)) (-2799 (((-108) $) 7)) (-3843 (((-710)) 25)) (-3461 (($) 31)) (-2806 (($ $ $) 15)) (-2575 (($ $) 10)) (-3574 (($ $ $) 18)) (-3853 (($ $ $) 19)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-4076 (((-852) $) 30)) (-3841 (((-1070) $) NIL)) (-2557 (($ (-852)) 29)) (-3473 (($ $ $) 21)) (-2435 (((-1034) $) NIL)) (-2084 (($) 9 T CONST)) (-2045 (($ $ $) 22)) (-3077 (((-499) $) 37)) (-3976 (((-794) $) 40)) (-2819 (($ $ $) 13)) (-2573 (($ $) 11)) (-2526 (($ $ $) 16)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 20)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 23)) (-2516 (($ $ $) 14)))
-(((-108) (-13 (-786) (-344) (-604) (-897) (-564 (-499)) (-10 -8 (-15 -2204 ($) -1982) (-15 -2084 ($) -1982) (-15 -2573 ($ $)) (-15 -3485 ($ $ $)) (-15 -3853 ($ $ $)) (-15 -3574 ($ $ $)) (-15 -2799 ((-108) $))))) (T -108))
-((-2204 (*1 *1) (-5 *1 (-108))) (-2084 (*1 *1) (-5 *1 (-108))) (-2573 (*1 *1 *1) (-5 *1 (-108))) (-3485 (*1 *1 *1 *1) (-5 *1 (-108))) (-3853 (*1 *1 *1 *1) (-5 *1 (-108))) (-3574 (*1 *1 *1 *1) (-5 *1 (-108))) (-2799 (*1 *1 *1) (-5 *1 (-108))))
-(-13 (-786) (-344) (-604) (-897) (-564 (-499)) (-10 -8 (-15 -2204 ($) -1982) (-15 -2084 ($) -1982) (-15 -2573 ($ $)) (-15 -3485 ($ $ $)) (-15 -3853 ($ $ $)) (-15 -3574 ($ $ $)) (-15 -2799 ((-108) $))))
-((-2356 (((-3 (-1 |#1| (-589 |#1|)) "failed") (-110)) 19) (((-110) (-110) (-1 |#1| |#1|)) 13) (((-110) (-110) (-1 |#1| (-589 |#1|))) 11) (((-3 |#1| "failed") (-110) (-589 |#1|)) 21)) (-2050 (((-3 (-589 (-1 |#1| (-589 |#1|))) "failed") (-110)) 25) (((-110) (-110) (-1 |#1| |#1|)) 30) (((-110) (-110) (-589 (-1 |#1| (-589 |#1|)))) 26)) (-3776 (((-110) |#1|) 56 (|has| |#1| (-786)))) (-3830 (((-3 |#1| "failed") (-110)) 50 (|has| |#1| (-786)))))
-(((-109 |#1|) (-10 -7 (-15 -2356 ((-3 |#1| "failed") (-110) (-589 |#1|))) (-15 -2356 ((-110) (-110) (-1 |#1| (-589 |#1|)))) (-15 -2356 ((-110) (-110) (-1 |#1| |#1|))) (-15 -2356 ((-3 (-1 |#1| (-589 |#1|)) "failed") (-110))) (-15 -2050 ((-110) (-110) (-589 (-1 |#1| (-589 |#1|))))) (-15 -2050 ((-110) (-110) (-1 |#1| |#1|))) (-15 -2050 ((-3 (-589 (-1 |#1| (-589 |#1|))) "failed") (-110))) (IF (|has| |#1| (-786)) (PROGN (-15 -3776 ((-110) |#1|)) (-15 -3830 ((-3 |#1| "failed") (-110)))) |%noBranch|)) (-1016)) (T -109))
-((-3830 (*1 *2 *3) (|partial| -12 (-5 *3 (-110)) (-4 *2 (-1016)) (-4 *2 (-786)) (-5 *1 (-109 *2)))) (-3776 (*1 *2 *3) (-12 (-5 *2 (-110)) (-5 *1 (-109 *3)) (-4 *3 (-786)) (-4 *3 (-1016)))) (-2050 (*1 *2 *3) (|partial| -12 (-5 *3 (-110)) (-5 *2 (-589 (-1 *4 (-589 *4)))) (-5 *1 (-109 *4)) (-4 *4 (-1016)))) (-2050 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1016)) (-5 *1 (-109 *4)))) (-2050 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-589 (-1 *4 (-589 *4)))) (-4 *4 (-1016)) (-5 *1 (-109 *4)))) (-2356 (*1 *2 *3) (|partial| -12 (-5 *3 (-110)) (-5 *2 (-1 *4 (-589 *4))) (-5 *1 (-109 *4)) (-4 *4 (-1016)))) (-2356 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1016)) (-5 *1 (-109 *4)))) (-2356 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 (-589 *4))) (-4 *4 (-1016)) (-5 *1 (-109 *4)))) (-2356 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-110)) (-5 *4 (-589 *2)) (-5 *1 (-109 *2)) (-4 *2 (-1016)))))
-(-10 -7 (-15 -2356 ((-3 |#1| "failed") (-110) (-589 |#1|))) (-15 -2356 ((-110) (-110) (-1 |#1| (-589 |#1|)))) (-15 -2356 ((-110) (-110) (-1 |#1| |#1|))) (-15 -2356 ((-3 (-1 |#1| (-589 |#1|)) "failed") (-110))) (-15 -2050 ((-110) (-110) (-589 (-1 |#1| (-589 |#1|))))) (-15 -2050 ((-110) (-110) (-1 |#1| |#1|))) (-15 -2050 ((-3 (-589 (-1 |#1| (-589 |#1|))) "failed") (-110))) (IF (|has| |#1| (-786)) (PROGN (-15 -3776 ((-110) |#1|)) (-15 -3830 ((-3 |#1| "failed") (-110)))) |%noBranch|))
-((-3260 (((-108) $ $) NIL)) (-1255 (((-710) $) 72) (($ $ (-710)) 30)) (-2874 (((-108) $) 32)) (-3774 (($ $ (-1070) (-713)) 26)) (-1595 (($ $ (-44 (-1070) (-713))) 15)) (-3422 (((-3 (-713) "failed") $ (-1070)) 25)) (-3036 (((-44 (-1070) (-713)) $) 14)) (-1564 (($ (-1087)) 17) (($ (-1087) (-710)) 22)) (-3044 (((-108) $) 31)) (-3799 (((-108) $) 33)) (-1522 (((-1087) $) 8)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2676 (((-108) $ (-1087)) 10)) (-3989 (($ $ (-1 (-499) (-589 (-499)))) 52) (((-3 (-1 (-499) (-589 (-499))) "failed") $) 56)) (-2435 (((-1034) $) NIL)) (-3974 (((-108) $ (-1070)) 29)) (-2974 (($ $ (-1 (-108) $ $)) 35)) (-3942 (((-3 (-1 (-794) (-589 (-794))) "failed") $) 54) (($ $ (-1 (-794) (-589 (-794)))) 41) (($ $ (-1 (-794) (-794))) 43)) (-3470 (($ $ (-1070)) 45)) (-4124 (($ $) 63)) (-2781 (($ $ (-1 (-108) $ $)) 36)) (-3976 (((-794) $) 48)) (-2074 (($ $ (-1070)) 27)) (-3545 (((-3 (-710) "failed") $) 58)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 71)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 79)))
-(((-110) (-13 (-786) (-10 -8 (-15 -1522 ((-1087) $)) (-15 -3036 ((-44 (-1070) (-713)) $)) (-15 -4124 ($ $)) (-15 -1564 ($ (-1087))) (-15 -1564 ($ (-1087) (-710))) (-15 -3545 ((-3 (-710) "failed") $)) (-15 -3044 ((-108) $)) (-15 -2874 ((-108) $)) (-15 -3799 ((-108) $)) (-15 -1255 ((-710) $)) (-15 -1255 ($ $ (-710))) (-15 -2974 ($ $ (-1 (-108) $ $))) (-15 -2781 ($ $ (-1 (-108) $ $))) (-15 -3942 ((-3 (-1 (-794) (-589 (-794))) "failed") $)) (-15 -3942 ($ $ (-1 (-794) (-589 (-794))))) (-15 -3942 ($ $ (-1 (-794) (-794)))) (-15 -3989 ($ $ (-1 (-499) (-589 (-499))))) (-15 -3989 ((-3 (-1 (-499) (-589 (-499))) "failed") $)) (-15 -2676 ((-108) $ (-1087))) (-15 -3974 ((-108) $ (-1070))) (-15 -2074 ($ $ (-1070))) (-15 -3470 ($ $ (-1070))) (-15 -3422 ((-3 (-713) "failed") $ (-1070))) (-15 -3774 ($ $ (-1070) (-713))) (-15 -1595 ($ $ (-44 (-1070) (-713))))))) (T -110))
-((-1522 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-110)))) (-3036 (*1 *2 *1) (-12 (-5 *2 (-44 (-1070) (-713))) (-5 *1 (-110)))) (-4124 (*1 *1 *1) (-5 *1 (-110))) (-1564 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-110)))) (-1564 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-710)) (-5 *1 (-110)))) (-3545 (*1 *2 *1) (|partial| -12 (-5 *2 (-710)) (-5 *1 (-110)))) (-3044 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))) (-2874 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))) (-1255 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-110)))) (-1255 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-110)))) (-2974 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))) (-2781 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))) (-3942 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-794) (-589 (-794)))) (-5 *1 (-110)))) (-3942 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-794) (-589 (-794)))) (-5 *1 (-110)))) (-3942 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-794) (-794))) (-5 *1 (-110)))) (-3989 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-499) (-589 (-499)))) (-5 *1 (-110)))) (-3989 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-499) (-589 (-499)))) (-5 *1 (-110)))) (-2676 (*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-108)) (-5 *1 (-110)))) (-3974 (*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-108)) (-5 *1 (-110)))) (-2074 (*1 *1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-110)))) (-3470 (*1 *1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-110)))) (-3422 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1070)) (-5 *2 (-713)) (-5 *1 (-110)))) (-3774 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1070)) (-5 *3 (-713)) (-5 *1 (-110)))) (-1595 (*1 *1 *1 *2) (-12 (-5 *2 (-44 (-1070) (-713))) (-5 *1 (-110)))))
-(-13 (-786) (-10 -8 (-15 -1522 ((-1087) $)) (-15 -3036 ((-44 (-1070) (-713)) $)) (-15 -4124 ($ $)) (-15 -1564 ($ (-1087))) (-15 -1564 ($ (-1087) (-710))) (-15 -3545 ((-3 (-710) "failed") $)) (-15 -3044 ((-108) $)) (-15 -2874 ((-108) $)) (-15 -3799 ((-108) $)) (-15 -1255 ((-710) $)) (-15 -1255 ($ $ (-710))) (-15 -2974 ($ $ (-1 (-108) $ $))) (-15 -2781 ($ $ (-1 (-108) $ $))) (-15 -3942 ((-3 (-1 (-794) (-589 (-794))) "failed") $)) (-15 -3942 ($ $ (-1 (-794) (-589 (-794))))) (-15 -3942 ($ $ (-1 (-794) (-794)))) (-15 -3989 ($ $ (-1 (-499) (-589 (-499))))) (-15 -3989 ((-3 (-1 (-499) (-589 (-499))) "failed") $)) (-15 -2676 ((-108) $ (-1087))) (-15 -3974 ((-108) $ (-1070))) (-15 -2074 ($ $ (-1070))) (-15 -3470 ($ $ (-1070))) (-15 -3422 ((-3 (-713) "failed") $ (-1070))) (-15 -3774 ($ $ (-1070) (-713))) (-15 -1595 ($ $ (-44 (-1070) (-713))))))
-((-2256 (((-523) |#2|) 37)))
-(((-111 |#1| |#2|) (-10 -7 (-15 -2256 ((-523) |#2|))) (-13 (-339) (-964 (-383 (-523)))) (-1145 |#1|)) (T -111))
-((-2256 (*1 *2 *3) (-12 (-4 *4 (-13 (-339) (-964 (-383 *2)))) (-5 *2 (-523)) (-5 *1 (-111 *4 *3)) (-4 *3 (-1145 *4)))))
-(-10 -7 (-15 -2256 ((-523) |#2|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3584 (($ $ (-523)) NIL)) (-3684 (((-108) $ $) NIL)) (-1640 (($) NIL T CONST)) (-2938 (($ (-1083 (-523)) (-523)) NIL)) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-1729 (($ $) NIL)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1500 (((-710) $) NIL)) (-3482 (((-108) $) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3014 (((-523)) NIL)) (-2385 (((-523) $) NIL)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1361 (($ $ (-523)) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2080 (((-1068 (-523)) $) NIL)) (-3749 (($ $) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL)) (-1698 (((-710)) NIL)) (-3842 (((-108) $ $) NIL)) (-2523 (((-523) $ (-523)) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL)))
-(((-112 |#1|) (-800 |#1|) (-523)) (T -112))
-NIL
-(-800 |#1|)
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3964 (((-112 |#1|) $) NIL (|has| (-112 |#1|) (-284)))) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-112 |#1|) (-840)))) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| (-112 |#1|) (-840)))) (-3684 (((-108) $ $) NIL)) (-2035 (((-523) $) NIL (|has| (-112 |#1|) (-759)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-112 |#1|) "failed") $) NIL) (((-3 (-1087) "failed") $) NIL (|has| (-112 |#1|) (-964 (-1087)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| (-112 |#1|) (-964 (-523)))) (((-3 (-523) "failed") $) NIL (|has| (-112 |#1|) (-964 (-523))))) (-1996 (((-112 |#1|) $) NIL) (((-1087) $) NIL (|has| (-112 |#1|) (-964 (-1087)))) (((-383 (-523)) $) NIL (|has| (-112 |#1|) (-964 (-523)))) (((-523) $) NIL (|has| (-112 |#1|) (-964 (-523))))) (-3113 (($ $) NIL) (($ (-523) $) NIL)) (-2501 (($ $ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| (-112 |#1|) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| (-112 |#1|) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-112 |#1|))) (|:| |vec| (-1169 (-112 |#1|)))) (-629 $) (-1169 $)) NIL) (((-629 (-112 |#1|)) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) NIL (|has| (-112 |#1|) (-508)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-3702 (((-108) $) NIL (|has| (-112 |#1|) (-759)))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (|has| (-112 |#1|) (-817 (-523)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (|has| (-112 |#1|) (-817 (-355))))) (-3482 (((-108) $) NIL)) (-2364 (($ $) NIL)) (-2164 (((-112 |#1|) $) NIL)) (-1289 (((-3 $ "failed") $) NIL (|has| (-112 |#1|) (-1063)))) (-4050 (((-108) $) NIL (|has| (-112 |#1|) (-759)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3268 (($ $ $) NIL (|has| (-112 |#1|) (-786)))) (-2644 (($ $ $) NIL (|has| (-112 |#1|) (-786)))) (-3015 (($ (-1 (-112 |#1|) (-112 |#1|)) $) NIL)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| (-112 |#1|) (-1063)) CONST)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3934 (($ $) NIL (|has| (-112 |#1|) (-284)))) (-1250 (((-112 |#1|) $) NIL (|has| (-112 |#1|) (-508)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-112 |#1|) (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-112 |#1|) (-840)))) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-1349 (($ $ (-589 (-112 |#1|)) (-589 (-112 |#1|))) NIL (|has| (-112 |#1|) (-286 (-112 |#1|)))) (($ $ (-112 |#1|) (-112 |#1|)) NIL (|has| (-112 |#1|) (-286 (-112 |#1|)))) (($ $ (-271 (-112 |#1|))) NIL (|has| (-112 |#1|) (-286 (-112 |#1|)))) (($ $ (-589 (-271 (-112 |#1|)))) NIL (|has| (-112 |#1|) (-286 (-112 |#1|)))) (($ $ (-589 (-1087)) (-589 (-112 |#1|))) NIL (|has| (-112 |#1|) (-484 (-1087) (-112 |#1|)))) (($ $ (-1087) (-112 |#1|)) NIL (|has| (-112 |#1|) (-484 (-1087) (-112 |#1|))))) (-3087 (((-710) $) NIL)) (-1502 (($ $ (-112 |#1|)) NIL (|has| (-112 |#1|) (-263 (-112 |#1|) (-112 |#1|))))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-4024 (($ $) NIL (|has| (-112 |#1|) (-211))) (($ $ (-710)) NIL (|has| (-112 |#1|) (-211))) (($ $ (-1087)) NIL (|has| (-112 |#1|) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-112 |#1|) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-112 |#1|) (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-112 |#1|) (-831 (-1087)))) (($ $ (-1 (-112 |#1|) (-112 |#1|)) (-710)) NIL) (($ $ (-1 (-112 |#1|) (-112 |#1|))) NIL)) (-3758 (($ $) NIL)) (-2171 (((-112 |#1|) $) NIL)) (-3077 (((-823 (-523)) $) NIL (|has| (-112 |#1|) (-564 (-823 (-523))))) (((-823 (-355)) $) NIL (|has| (-112 |#1|) (-564 (-823 (-355))))) (((-499) $) NIL (|has| (-112 |#1|) (-564 (-499)))) (((-355) $) NIL (|has| (-112 |#1|) (-949))) (((-203) $) NIL (|has| (-112 |#1|) (-949)))) (-3264 (((-159 (-383 (-523))) $) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| (-112 |#1|) (-840))))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) (($ (-112 |#1|)) NIL) (($ (-1087)) NIL (|has| (-112 |#1|) (-964 (-1087))))) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| (-112 |#1|) (-840))) (|has| (-112 |#1|) (-134))))) (-1698 (((-710)) NIL)) (-1516 (((-112 |#1|) $) NIL (|has| (-112 |#1|) (-508)))) (-3842 (((-108) $ $) NIL)) (-2523 (((-383 (-523)) $ (-523)) NIL)) (-3984 (($ $) NIL (|has| (-112 |#1|) (-759)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $) NIL (|has| (-112 |#1|) (-211))) (($ $ (-710)) NIL (|has| (-112 |#1|) (-211))) (($ $ (-1087)) NIL (|has| (-112 |#1|) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-112 |#1|) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-112 |#1|) (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-112 |#1|) (-831 (-1087)))) (($ $ (-1 (-112 |#1|) (-112 |#1|)) (-710)) NIL) (($ $ (-1 (-112 |#1|) (-112 |#1|))) NIL)) (-4078 (((-108) $ $) NIL (|has| (-112 |#1|) (-786)))) (-4061 (((-108) $ $) NIL (|has| (-112 |#1|) (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| (-112 |#1|) (-786)))) (-4052 (((-108) $ $) NIL (|has| (-112 |#1|) (-786)))) (-4125 (($ $ $) NIL) (($ (-112 |#1|) (-112 |#1|)) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ (-112 |#1|) $) NIL) (($ $ (-112 |#1|)) NIL)))
-(((-113 |#1|) (-13 (-921 (-112 |#1|)) (-10 -8 (-15 -2523 ((-383 (-523)) $ (-523))) (-15 -3264 ((-159 (-383 (-523))) $)) (-15 -3113 ($ $)) (-15 -3113 ($ (-523) $)))) (-523)) (T -113))
-((-2523 (*1 *2 *1 *3) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-113 *4)) (-14 *4 *3) (-5 *3 (-523)))) (-3264 (*1 *2 *1) (-12 (-5 *2 (-159 (-383 (-523)))) (-5 *1 (-113 *3)) (-14 *3 (-523)))) (-3113 (*1 *1 *1) (-12 (-5 *1 (-113 *2)) (-14 *2 (-523)))) (-3113 (*1 *1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-113 *3)) (-14 *3 *2))))
-(-13 (-921 (-112 |#1|)) (-10 -8 (-15 -2523 ((-383 (-523)) $ (-523))) (-15 -3264 ((-159 (-383 (-523))) $)) (-15 -3113 ($ $)) (-15 -3113 ($ (-523) $))))
-((-4101 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 49) (($ $ "right" $) 51)) (-1378 (((-589 $) $) 27)) (-3339 (((-108) $ $) 32)) (-1348 (((-108) |#2| $) 36)) (-2112 (((-589 |#2|) $) 22)) (-3391 (((-108) $) 16)) (-1502 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-2837 (((-108) $) 45)) (-3976 (((-794) $) 41)) (-2464 (((-589 $) $) 28)) (-4037 (((-108) $ $) 34)) (-1271 (((-710) $) 43)))
-(((-114 |#1| |#2|) (-10 -8 (-15 -3976 ((-794) |#1|)) (-15 -4101 (|#1| |#1| "right" |#1|)) (-15 -4101 (|#1| |#1| "left" |#1|)) (-15 -1502 (|#1| |#1| "right")) (-15 -1502 (|#1| |#1| "left")) (-15 -4101 (|#2| |#1| "value" |#2|)) (-15 -3339 ((-108) |#1| |#1|)) (-15 -2112 ((-589 |#2|) |#1|)) (-15 -2837 ((-108) |#1|)) (-15 -1502 (|#2| |#1| "value")) (-15 -3391 ((-108) |#1|)) (-15 -1378 ((-589 |#1|) |#1|)) (-15 -2464 ((-589 |#1|) |#1|)) (-15 -4037 ((-108) |#1| |#1|)) (-15 -1348 ((-108) |#2| |#1|)) (-15 -1271 ((-710) |#1|))) (-115 |#2|) (-1123)) (T -114))
-NIL
-(-10 -8 (-15 -3976 ((-794) |#1|)) (-15 -4101 (|#1| |#1| "right" |#1|)) (-15 -4101 (|#1| |#1| "left" |#1|)) (-15 -1502 (|#1| |#1| "right")) (-15 -1502 (|#1| |#1| "left")) (-15 -4101 (|#2| |#1| "value" |#2|)) (-15 -3339 ((-108) |#1| |#1|)) (-15 -2112 ((-589 |#2|) |#1|)) (-15 -2837 ((-108) |#1|)) (-15 -1502 (|#2| |#1| "value")) (-15 -3391 ((-108) |#1|)) (-15 -1378 ((-589 |#1|) |#1|)) (-15 -2464 ((-589 |#1|) |#1|)) (-15 -4037 ((-108) |#1| |#1|)) (-15 -1348 ((-108) |#2| |#1|)) (-15 -1271 ((-710) |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2058 ((|#1| $) 48)) (-2282 (((-108) $ (-710)) 8)) (-3365 ((|#1| $ |#1|) 39 (|has| $ (-6 -4249)))) (-3913 (($ $ $) 52 (|has| $ (-6 -4249)))) (-1657 (($ $ $) 54 (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4249))) (($ $ "left" $) 55 (|has| $ (-6 -4249))) (($ $ "right" $) 53 (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) 41 (|has| $ (-6 -4249)))) (-1640 (($) 7 T CONST)) (-2438 (($ $) 57)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) 50)) (-3339 (((-108) $ $) 42 (|has| |#1| (-1016)))) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-2428 (($ $) 59)) (-2112 (((-589 |#1|) $) 45)) (-3391 (((-108) $) 49)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-2981 (((-523) $ $) 44)) (-2837 (((-108) $) 46)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) 51)) (-4004 (((-108) $ $) 43 (|has| |#1| (-1016)))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-115 |#1|) (-129) (-1123)) (T -115))
-((-2428 (*1 *1 *1) (-12 (-4 *1 (-115 *2)) (-4 *2 (-1123)))) (-1502 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-115 *3)) (-4 *3 (-1123)))) (-2438 (*1 *1 *1) (-12 (-4 *1 (-115 *2)) (-4 *2 (-1123)))) (-1502 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-115 *3)) (-4 *3 (-1123)))) (-4101 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4249)) (-4 *1 (-115 *3)) (-4 *3 (-1123)))) (-1657 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-115 *2)) (-4 *2 (-1123)))) (-4101 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4249)) (-4 *1 (-115 *3)) (-4 *3 (-1123)))) (-3913 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-115 *2)) (-4 *2 (-1123)))))
-(-13 (-938 |t#1|) (-10 -8 (-15 -2428 ($ $)) (-15 -1502 ($ $ "left")) (-15 -2438 ($ $)) (-15 -1502 ($ $ "right")) (IF (|has| $ (-6 -4249)) (PROGN (-15 -4101 ($ $ "left" $)) (-15 -1657 ($ $ $)) (-15 -4101 ($ $ "right" $)) (-15 -3913 ($ $ $))) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-938 |#1|) . T) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-2293 (((-108) |#1|) 24)) (-3035 (((-710) (-710)) 23) (((-710)) 22)) (-1421 (((-108) |#1| (-108)) 25) (((-108) |#1|) 26)))
-(((-116 |#1|) (-10 -7 (-15 -1421 ((-108) |#1|)) (-15 -1421 ((-108) |#1| (-108))) (-15 -3035 ((-710))) (-15 -3035 ((-710) (-710))) (-15 -2293 ((-108) |#1|))) (-1145 (-523))) (T -116))
-((-2293 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1145 (-523))))) (-3035 (*1 *2 *2) (-12 (-5 *2 (-710)) (-5 *1 (-116 *3)) (-4 *3 (-1145 (-523))))) (-3035 (*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-116 *3)) (-4 *3 (-1145 (-523))))) (-1421 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1145 (-523))))) (-1421 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1145 (-523))))))
-(-10 -7 (-15 -1421 ((-108) |#1|)) (-15 -1421 ((-108) |#1| (-108))) (-15 -3035 ((-710))) (-15 -3035 ((-710) (-710))) (-15 -2293 ((-108) |#1|)))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2058 ((|#1| $) 15)) (-1380 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 22)) (-2282 (((-108) $ (-710)) NIL)) (-3365 ((|#1| $ |#1|) NIL (|has| $ (-6 -4249)))) (-3913 (($ $ $) 18 (|has| $ (-6 -4249)))) (-1657 (($ $ $) 20 (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4249))) (($ $ "left" $) NIL (|has| $ (-6 -4249))) (($ $ "right" $) NIL (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) NIL (|has| $ (-6 -4249)))) (-1640 (($) NIL T CONST)) (-2438 (($ $) 17)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) NIL)) (-3339 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-3588 (($ $ |#1| $) 23)) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-2428 (($ $) 19)) (-2112 (((-589 |#1|) $) NIL)) (-3391 (((-108) $) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2722 (($ |#1| $) 24)) (-3862 (($ |#1| $) 10)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) 14)) (-4055 (($) 8)) (-1502 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2981 (((-523) $ $) NIL)) (-2837 (((-108) $) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) NIL)) (-4004 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1468 (($ (-589 |#1|)) 12)) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-117 |#1|) (-13 (-121 |#1|) (-10 -8 (-6 -4249) (-6 -4248) (-15 -1468 ($ (-589 |#1|))) (-15 -3862 ($ |#1| $)) (-15 -2722 ($ |#1| $)) (-15 -1380 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-786)) (T -117))
-((-1468 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-786)) (-5 *1 (-117 *3)))) (-3862 (*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-786)))) (-2722 (*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-786)))) (-1380 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |less| (-117 *3)) (|:| |greater| (-117 *3)))) (-5 *1 (-117 *3)) (-4 *3 (-786)))))
-(-13 (-121 |#1|) (-10 -8 (-6 -4249) (-6 -4248) (-15 -1468 ($ (-589 |#1|))) (-15 -3862 ($ |#1| $)) (-15 -2722 ($ |#1| $)) (-15 -1380 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
-((-3382 (($ $) 14)) (-2575 (($ $) 11)) (-3574 (($ $ $) 24)) (-3853 (($ $ $) 22)) (-2573 (($ $) 12)) (-2526 (($ $ $) 20)) (-2516 (($ $ $) 18)))
-(((-118 |#1|) (-10 -8 (-15 -3574 (|#1| |#1| |#1|)) (-15 -3853 (|#1| |#1| |#1|)) (-15 -2573 (|#1| |#1|)) (-15 -2575 (|#1| |#1|)) (-15 -3382 (|#1| |#1|)) (-15 -2516 (|#1| |#1| |#1|)) (-15 -2526 (|#1| |#1| |#1|))) (-119)) (T -118))
-NIL
-(-10 -8 (-15 -3574 (|#1| |#1| |#1|)) (-15 -3853 (|#1| |#1| |#1|)) (-15 -2573 (|#1| |#1|)) (-15 -2575 (|#1| |#1|)) (-15 -3382 (|#1| |#1|)) (-15 -2516 (|#1| |#1| |#1|)) (-15 -2526 (|#1| |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-3382 (($ $) 104)) (-3485 (($ $ $) 25)) (-1666 (((-1174) $ (-523) (-523)) 67 (|has| $ (-6 -4249)))) (-4159 (((-108) $) 99 (|has| (-108) (-786))) (((-108) (-1 (-108) (-108) (-108)) $) 93)) (-2361 (($ $) 103 (-12 (|has| (-108) (-786)) (|has| $ (-6 -4249)))) (($ (-1 (-108) (-108) (-108)) $) 102 (|has| $ (-6 -4249)))) (-3400 (($ $) 98 (|has| (-108) (-786))) (($ (-1 (-108) (-108) (-108)) $) 92)) (-2282 (((-108) $ (-710)) 38)) (-4101 (((-108) $ (-1136 (-523)) (-108)) 89 (|has| $ (-6 -4249))) (((-108) $ (-523) (-108)) 55 (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) (-108)) $) 72 (|has| $ (-6 -4248)))) (-1640 (($) 39 T CONST)) (-4091 (($ $) 101 (|has| $ (-6 -4249)))) (-4082 (($ $) 91)) (-3917 (($ $) 69 (-12 (|has| (-108) (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ (-1 (-108) (-108)) $) 73 (|has| $ (-6 -4248))) (($ (-108) $) 70 (-12 (|has| (-108) (-1016)) (|has| $ (-6 -4248))))) (-1830 (((-108) (-1 (-108) (-108) (-108)) $) 75 (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-108) (-108)) $ (-108)) 74 (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-108) (-108)) $ (-108) (-108)) 71 (-12 (|has| (-108) (-1016)) (|has| $ (-6 -4248))))) (-3073 (((-108) $ (-523) (-108)) 54 (|has| $ (-6 -4249)))) (-3002 (((-108) $ (-523)) 56)) (-1894 (((-523) (-108) $ (-523)) 96 (|has| (-108) (-1016))) (((-523) (-108) $) 95 (|has| (-108) (-1016))) (((-523) (-1 (-108) (-108)) $) 94)) (-3133 (((-589 (-108)) $) 46 (|has| $ (-6 -4248)))) (-2806 (($ $ $) 26)) (-2575 (($ $) 31)) (-3574 (($ $ $) 28)) (-2348 (($ (-710) (-108)) 78)) (-3853 (($ $ $) 29)) (-1344 (((-108) $ (-710)) 37)) (-1798 (((-523) $) 64 (|has| (-523) (-786)))) (-3268 (($ $ $) 13)) (-3123 (($ $ $) 97 (|has| (-108) (-786))) (($ (-1 (-108) (-108) (-108)) $ $) 90)) (-3056 (((-589 (-108)) $) 47 (|has| $ (-6 -4248)))) (-1348 (((-108) (-108) $) 49 (-12 (|has| (-108) (-1016)) (|has| $ (-6 -4248))))) (-2133 (((-523) $) 63 (|has| (-523) (-786)))) (-2644 (($ $ $) 14)) (-3063 (($ (-1 (-108) (-108)) $) 42 (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-108) (-108) (-108)) $ $) 83) (($ (-1 (-108) (-108)) $) 41)) (-4042 (((-108) $ (-710)) 36)) (-3841 (((-1070) $) 9)) (-3334 (($ $ $ (-523)) 88) (($ (-108) $ (-523)) 87)) (-2909 (((-589 (-523)) $) 61)) (-2290 (((-108) (-523) $) 60)) (-2435 (((-1034) $) 10)) (-3879 (((-108) $) 65 (|has| (-523) (-786)))) (-2660 (((-3 (-108) "failed") (-1 (-108) (-108)) $) 76)) (-2408 (($ $ (-108)) 66 (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) (-108)) $) 44 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-108)) (-589 (-108))) 53 (-12 (|has| (-108) (-286 (-108))) (|has| (-108) (-1016)))) (($ $ (-108) (-108)) 52 (-12 (|has| (-108) (-286 (-108))) (|has| (-108) (-1016)))) (($ $ (-271 (-108))) 51 (-12 (|has| (-108) (-286 (-108))) (|has| (-108) (-1016)))) (($ $ (-589 (-271 (-108)))) 50 (-12 (|has| (-108) (-286 (-108))) (|has| (-108) (-1016))))) (-2391 (((-108) $ $) 32)) (-1410 (((-108) (-108) $) 62 (-12 (|has| $ (-6 -4248)) (|has| (-108) (-1016))))) (-3184 (((-589 (-108)) $) 59)) (-3163 (((-108) $) 35)) (-4055 (($) 34)) (-1502 (($ $ (-1136 (-523))) 84) (((-108) $ (-523)) 58) (((-108) $ (-523) (-108)) 57)) (-3725 (($ $ (-1136 (-523))) 86) (($ $ (-523)) 85)) (-2452 (((-710) (-108) $) 48 (-12 (|has| (-108) (-1016)) (|has| $ (-6 -4248)))) (((-710) (-1 (-108) (-108)) $) 45 (|has| $ (-6 -4248)))) (-2580 (($ $ $ (-523)) 100 (|has| $ (-6 -4249)))) (-4124 (($ $) 33)) (-3077 (((-499) $) 68 (|has| (-108) (-564 (-499))))) (-3985 (($ (-589 (-108))) 77)) (-2785 (($ (-589 $)) 82) (($ $ $) 81) (($ (-108) $) 80) (($ $ (-108)) 79)) (-3976 (((-794) $) 11)) (-1505 (((-108) (-1 (-108) (-108)) $) 43 (|has| $ (-6 -4248)))) (-2819 (($ $ $) 27)) (-2573 (($ $) 30)) (-2526 (($ $ $) 106)) (-4078 (((-108) $ $) 16)) (-4061 (((-108) $ $) 17)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 15)) (-4052 (((-108) $ $) 18)) (-2516 (($ $ $) 105)) (-1271 (((-710) $) 40 (|has| $ (-6 -4248)))))
-(((-119) (-129)) (T -119))
-((-2575 (*1 *1 *1) (-4 *1 (-119))) (-2573 (*1 *1 *1) (-4 *1 (-119))) (-3853 (*1 *1 *1 *1) (-4 *1 (-119))) (-3574 (*1 *1 *1 *1) (-4 *1 (-119))) (-2819 (*1 *1 *1 *1) (-4 *1 (-119))) (-2806 (*1 *1 *1 *1) (-4 *1 (-119))) (-3485 (*1 *1 *1 *1) (-4 *1 (-119))))
-(-13 (-786) (-604) (-19 (-108)) (-10 -8 (-15 -2575 ($ $)) (-15 -2573 ($ $)) (-15 -3853 ($ $ $)) (-15 -3574 ($ $ $)) (-15 -2819 ($ $ $)) (-15 -2806 ($ $ $)) (-15 -3485 ($ $ $))))
-(((-33) . T) ((-97) . T) ((-563 (-794)) . T) ((-140 #0=(-108)) . T) ((-564 (-499)) |has| (-108) (-564 (-499))) ((-263 #1=(-523) #0#) . T) ((-265 #1# #0#) . T) ((-286 #0#) -12 (|has| (-108) (-286 (-108))) (|has| (-108) (-1016))) ((-349 #0#) . T) ((-462 #0#) . T) ((-556 #1# #0#) . T) ((-484 #0# #0#) -12 (|has| (-108) (-286 (-108))) (|has| (-108) (-1016))) ((-594 #0#) . T) ((-604) . T) ((-19 #0#) . T) ((-786) . T) ((-1016) . T) ((-1123) . T))
-((-3063 (($ (-1 |#2| |#2|) $) 22)) (-4124 (($ $) 16)) (-1271 (((-710) $) 24)))
-(((-120 |#1| |#2|) (-10 -8 (-15 -3063 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1271 ((-710) |#1|)) (-15 -4124 (|#1| |#1|))) (-121 |#2|) (-1016)) (T -120))
-NIL
-(-10 -8 (-15 -3063 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1271 ((-710) |#1|)) (-15 -4124 (|#1| |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2058 ((|#1| $) 48)) (-2282 (((-108) $ (-710)) 8)) (-3365 ((|#1| $ |#1|) 39 (|has| $ (-6 -4249)))) (-3913 (($ $ $) 52 (|has| $ (-6 -4249)))) (-1657 (($ $ $) 54 (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4249))) (($ $ "left" $) 55 (|has| $ (-6 -4249))) (($ $ "right" $) 53 (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) 41 (|has| $ (-6 -4249)))) (-1640 (($) 7 T CONST)) (-2438 (($ $) 57)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) 50)) (-3339 (((-108) $ $) 42 (|has| |#1| (-1016)))) (-3588 (($ $ |#1| $) 60)) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-2428 (($ $) 59)) (-2112 (((-589 |#1|) $) 45)) (-3391 (((-108) $) 49)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-2981 (((-523) $ $) 44)) (-2837 (((-108) $) 46)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) 51)) (-4004 (((-108) $ $) 43 (|has| |#1| (-1016)))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-121 |#1|) (-129) (-1016)) (T -121))
-((-3588 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-121 *2)) (-4 *2 (-1016)))))
-(-13 (-115 |t#1|) (-10 -8 (-6 -4249) (-6 -4248) (-15 -3588 ($ $ |t#1| $))))
-(((-33) . T) ((-97) |has| |#1| (-1016)) ((-115 |#1|) . T) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-938 |#1|) . T) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2058 ((|#1| $) 15)) (-2282 (((-108) $ (-710)) NIL)) (-3365 ((|#1| $ |#1|) 19 (|has| $ (-6 -4249)))) (-3913 (($ $ $) 20 (|has| $ (-6 -4249)))) (-1657 (($ $ $) 18 (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4249))) (($ $ "left" $) NIL (|has| $ (-6 -4249))) (($ $ "right" $) NIL (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) NIL (|has| $ (-6 -4249)))) (-1640 (($) NIL T CONST)) (-2438 (($ $) 21)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) NIL)) (-3339 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-3588 (($ $ |#1| $) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-2428 (($ $) NIL)) (-2112 (((-589 |#1|) $) NIL)) (-3391 (((-108) $) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-3862 (($ |#1| $) 10)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) 14)) (-4055 (($) 8)) (-1502 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2981 (((-523) $ $) NIL)) (-2837 (((-108) $) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) 17)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) NIL)) (-4004 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-3949 (($ (-589 |#1|)) 12)) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-122 |#1|) (-13 (-121 |#1|) (-10 -8 (-6 -4249) (-15 -3949 ($ (-589 |#1|))) (-15 -3862 ($ |#1| $)))) (-786)) (T -122))
-((-3949 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-786)) (-5 *1 (-122 *3)))) (-3862 (*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-786)))))
-(-13 (-121 |#1|) (-10 -8 (-6 -4249) (-15 -3949 ($ (-589 |#1|))) (-15 -3862 ($ |#1| $))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2058 ((|#1| $) 24)) (-2282 (((-108) $ (-710)) NIL)) (-3365 ((|#1| $ |#1|) 26 (|has| $ (-6 -4249)))) (-3913 (($ $ $) 30 (|has| $ (-6 -4249)))) (-1657 (($ $ $) 28 (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4249))) (($ $ "left" $) NIL (|has| $ (-6 -4249))) (($ $ "right" $) NIL (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) NIL (|has| $ (-6 -4249)))) (-1640 (($) NIL T CONST)) (-2438 (($ $) 20)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) NIL)) (-3339 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-3588 (($ $ |#1| $) 15)) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-2428 (($ $) 19)) (-2112 (((-589 |#1|) $) NIL)) (-3391 (((-108) $) 21)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) 18)) (-4055 (($) 11)) (-1502 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2981 (((-523) $ $) NIL)) (-2837 (((-108) $) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) NIL)) (-4004 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-3417 (($ |#1|) 17) (($ $ |#1| $) 16)) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 10 (|has| |#1| (-1016)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-123 |#1|) (-13 (-121 |#1|) (-10 -8 (-15 -3417 ($ |#1|)) (-15 -3417 ($ $ |#1| $)))) (-1016)) (T -123))
-((-3417 (*1 *1 *2) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1016)))) (-3417 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1016)))))
-(-13 (-121 |#1|) (-10 -8 (-15 -3417 ($ |#1|)) (-15 -3417 ($ $ |#1| $))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4103 (($ $ $) 14)) (* (($ (-852) $) 13) (($ (-710) $) 15)))
-(((-124) (-129)) (T -124))
-((-2999 (*1 *1 *1 *1) (|partial| -4 *1 (-124))))
-(-13 (-23) (-10 -8 (-15 -2999 ((-3 $ "failed") $ $))))
-(((-23) . T) ((-25) . T) ((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-3260 (((-108) $ $) 7)) (-4025 (((-1174) $ (-710)) 19)) (-1894 (((-710) $) 20)) (-3268 (($ $ $) 13)) (-2644 (($ $ $) 14)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-4078 (((-108) $ $) 16)) (-4061 (((-108) $ $) 17)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 15)) (-4052 (((-108) $ $) 18)))
-(((-125) (-129)) (T -125))
-((-1894 (*1 *2 *1) (-12 (-4 *1 (-125)) (-5 *2 (-710)))) (-4025 (*1 *2 *1 *3) (-12 (-4 *1 (-125)) (-5 *3 (-710)) (-5 *2 (-1174)))))
-(-13 (-786) (-10 -8 (-15 -1894 ((-710) $)) (-15 -4025 ((-1174) $ (-710)))))
-(((-97) . T) ((-563 (-794)) . T) ((-786) . T) ((-1016) . T))
-((-3260 (((-108) $ $) 34)) (-2388 (((-108) $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-710) "failed") $) 40)) (-1996 (((-710) $) 38)) (-4211 (((-3 $ "failed") $) NIL)) (-3482 (((-108) $) NIL)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) 27)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2937 (((-108)) 41)) (-3615 (((-108) (-108)) 43)) (-3349 (((-108) $) 24)) (-3600 (((-108) $) 37)) (-3976 (((-794) $) 22) (($ (-710)) 14)) (-2573 (($ $ (-710)) NIL) (($ $ (-852)) NIL)) (-1428 (($) 12 T CONST)) (-1440 (($) 11 T CONST)) (-1390 (($ (-710)) 15)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 25)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 26)) (-4115 (((-3 $ "failed") $ $) 30)) (-4103 (($ $ $) 28)) (** (($ $ (-710)) NIL) (($ $ (-852)) NIL) (($ $ $) 36)) (* (($ (-710) $) 33) (($ (-852) $) NIL) (($ $ $) 31)))
-(((-126) (-13 (-786) (-23) (-666) (-964 (-710)) (-10 -8 (-6 (-4250 "*")) (-15 -4115 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -1390 ($ (-710))) (-15 -3349 ((-108) $)) (-15 -3600 ((-108) $)) (-15 -2937 ((-108))) (-15 -3615 ((-108) (-108)))))) (T -126))
-((-4115 (*1 *1 *1 *1) (|partial| -5 *1 (-126))) (** (*1 *1 *1 *1) (-5 *1 (-126))) (-1390 (*1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-126)))) (-3349 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-126)))) (-3600 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-126)))) (-2937 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-126)))) (-3615 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-126)))))
-(-13 (-786) (-23) (-666) (-964 (-710)) (-10 -8 (-6 (-4250 "*")) (-15 -4115 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -1390 ($ (-710))) (-15 -3349 ((-108) $)) (-15 -3600 ((-108) $)) (-15 -2937 ((-108))) (-15 -3615 ((-108) (-108)))))
-((-1739 (((-128 |#1| |#2| |#4|) (-589 |#4|) (-128 |#1| |#2| |#3|)) 14)) (-3015 (((-128 |#1| |#2| |#4|) (-1 |#4| |#3|) (-128 |#1| |#2| |#3|)) 18)))
-(((-127 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1739 ((-128 |#1| |#2| |#4|) (-589 |#4|) (-128 |#1| |#2| |#3|))) (-15 -3015 ((-128 |#1| |#2| |#4|) (-1 |#4| |#3|) (-128 |#1| |#2| |#3|)))) (-523) (-710) (-158) (-158)) (T -127))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-128 *5 *6 *7)) (-14 *5 (-523)) (-14 *6 (-710)) (-4 *7 (-158)) (-4 *8 (-158)) (-5 *2 (-128 *5 *6 *8)) (-5 *1 (-127 *5 *6 *7 *8)))) (-1739 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *8)) (-5 *4 (-128 *5 *6 *7)) (-14 *5 (-523)) (-14 *6 (-710)) (-4 *7 (-158)) (-4 *8 (-158)) (-5 *2 (-128 *5 *6 *8)) (-5 *1 (-127 *5 *6 *7 *8)))))
-(-10 -7 (-15 -1739 ((-128 |#1| |#2| |#4|) (-589 |#4|) (-128 |#1| |#2| |#3|))) (-15 -3015 ((-128 |#1| |#2| |#4|) (-1 |#4| |#3|) (-128 |#1| |#2| |#3|))))
-((-3260 (((-108) $ $) NIL)) (-1780 (($ (-589 |#3|)) 40)) (-1659 (($ $) 99) (($ $ (-523) (-523)) 98)) (-1640 (($) 17)) (-2898 (((-3 |#3| "failed") $) 60)) (-1996 ((|#3| $) NIL)) (-2528 (($ $ (-589 (-523))) 100)) (-1723 (((-589 |#3|) $) 36)) (-2262 (((-710) $) 44)) (-2996 (($ $ $) 93)) (-4192 (($) 43)) (-3841 (((-1070) $) NIL)) (-4169 (($) 16)) (-2435 (((-1034) $) NIL)) (-1502 ((|#3| $) 46) ((|#3| $ (-523)) 47) ((|#3| $ (-523) (-523)) 48) ((|#3| $ (-523) (-523) (-523)) 49) ((|#3| $ (-523) (-523) (-523) (-523)) 50) ((|#3| $ (-589 (-523))) 52)) (-1487 (((-710) $) 45)) (-2603 (($ $ (-523) $ (-523)) 94) (($ $ (-523) (-523)) 96)) (-3976 (((-794) $) 67) (($ |#3|) 68) (($ (-218 |#2| |#3|)) 75) (($ (-1054 |#2| |#3|)) 78) (($ (-589 |#3|)) 53) (($ (-589 $)) 58)) (-1428 (($) 69 T CONST)) (-1440 (($) 70 T CONST)) (-4037 (((-108) $ $) 80)) (-4115 (($ $) 86) (($ $ $) 84)) (-4103 (($ $ $) 82)) (* (($ |#3| $) 91) (($ $ |#3|) 92) (($ $ (-523)) 89) (($ (-523) $) 88) (($ $ $) 95)))
-(((-128 |#1| |#2| |#3|) (-13 (-440 |#3| (-710)) (-445 (-523) (-710)) (-10 -8 (-15 -3976 ($ (-218 |#2| |#3|))) (-15 -3976 ($ (-1054 |#2| |#3|))) (-15 -3976 ($ (-589 |#3|))) (-15 -3976 ($ (-589 $))) (-15 -2262 ((-710) $)) (-15 -1502 (|#3| $)) (-15 -1502 (|#3| $ (-523))) (-15 -1502 (|#3| $ (-523) (-523))) (-15 -1502 (|#3| $ (-523) (-523) (-523))) (-15 -1502 (|#3| $ (-523) (-523) (-523) (-523))) (-15 -1502 (|#3| $ (-589 (-523)))) (-15 -2996 ($ $ $)) (-15 * ($ $ $)) (-15 -2603 ($ $ (-523) $ (-523))) (-15 -2603 ($ $ (-523) (-523))) (-15 -1659 ($ $)) (-15 -1659 ($ $ (-523) (-523))) (-15 -2528 ($ $ (-589 (-523)))) (-15 -4169 ($)) (-15 -4192 ($)) (-15 -1723 ((-589 |#3|) $)) (-15 -1780 ($ (-589 |#3|))) (-15 -1640 ($)))) (-523) (-710) (-158)) (T -128))
-((-2996 (*1 *1 *1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-523)) (-14 *3 (-710)) (-4 *4 (-158)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-218 *4 *5)) (-14 *4 (-710)) (-4 *5 (-158)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-523)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-1054 *4 *5)) (-14 *4 (-710)) (-4 *5 (-158)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-523)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-589 *5)) (-4 *5 (-158)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-523)) (-14 *4 (-710)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-589 (-128 *3 *4 *5))) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-523)) (-14 *4 (-710)) (-4 *5 (-158)))) (-2262 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-523)) (-14 *4 *2) (-4 *5 (-158)))) (-1502 (*1 *2 *1) (-12 (-4 *2 (-158)) (-5 *1 (-128 *3 *4 *2)) (-14 *3 (-523)) (-14 *4 (-710)))) (-1502 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-4 *2 (-158)) (-5 *1 (-128 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-710)))) (-1502 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-523)) (-4 *2 (-158)) (-5 *1 (-128 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-710)))) (-1502 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-523)) (-4 *2 (-158)) (-5 *1 (-128 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-710)))) (-1502 (*1 *2 *1 *3 *3 *3 *3) (-12 (-5 *3 (-523)) (-4 *2 (-158)) (-5 *1 (-128 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-710)))) (-1502 (*1 *2 *1 *3) (-12 (-5 *3 (-589 (-523))) (-4 *2 (-158)) (-5 *1 (-128 *4 *5 *2)) (-14 *4 (-523)) (-14 *5 (-710)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-523)) (-14 *3 (-710)) (-4 *4 (-158)))) (-2603 (*1 *1 *1 *2 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-710)) (-4 *5 (-158)))) (-2603 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-710)) (-4 *5 (-158)))) (-1659 (*1 *1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-523)) (-14 *3 (-710)) (-4 *4 (-158)))) (-1659 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-710)) (-4 *5 (-158)))) (-2528 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-523)) (-14 *4 (-710)) (-4 *5 (-158)))) (-4169 (*1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-523)) (-14 *3 (-710)) (-4 *4 (-158)))) (-4192 (*1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-523)) (-14 *3 (-710)) (-4 *4 (-158)))) (-1723 (*1 *2 *1) (-12 (-5 *2 (-589 *5)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-523)) (-14 *4 (-710)) (-4 *5 (-158)))) (-1780 (*1 *1 *2) (-12 (-5 *2 (-589 *5)) (-4 *5 (-158)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-523)) (-14 *4 (-710)))) (-1640 (*1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-523)) (-14 *3 (-710)) (-4 *4 (-158)))))
-(-13 (-440 |#3| (-710)) (-445 (-523) (-710)) (-10 -8 (-15 -3976 ($ (-218 |#2| |#3|))) (-15 -3976 ($ (-1054 |#2| |#3|))) (-15 -3976 ($ (-589 |#3|))) (-15 -3976 ($ (-589 $))) (-15 -2262 ((-710) $)) (-15 -1502 (|#3| $)) (-15 -1502 (|#3| $ (-523))) (-15 -1502 (|#3| $ (-523) (-523))) (-15 -1502 (|#3| $ (-523) (-523) (-523))) (-15 -1502 (|#3| $ (-523) (-523) (-523) (-523))) (-15 -1502 (|#3| $ (-589 (-523)))) (-15 -2996 ($ $ $)) (-15 * ($ $ $)) (-15 -2603 ($ $ (-523) $ (-523))) (-15 -2603 ($ $ (-523) (-523))) (-15 -1659 ($ $)) (-15 -1659 ($ $ (-523) (-523))) (-15 -2528 ($ $ (-589 (-523)))) (-15 -4169 ($)) (-15 -4192 ($)) (-15 -1723 ((-589 |#3|) $)) (-15 -1780 ($ (-589 |#3|))) (-15 -1640 ($))))
-((-3976 (((-794) $) 7)))
-(((-129) (-563 (-794))) (T -129))
-NIL
-(-563 (-794))
-((-3260 (((-108) $ $) NIL)) (-2889 (($) 15 T CONST)) (-2054 (($) NIL (|has| (-133) (-344)))) (-2073 (($ $ $) 17) (($ $ (-133)) NIL) (($ (-133) $) NIL)) (-1767 (($ $ $) NIL)) (-2607 (((-108) $ $) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-3843 (((-710)) NIL (|has| (-133) (-344)))) (-4033 (($) NIL) (($ (-589 (-133))) NIL)) (-3627 (($ (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016))))) (-1869 (($ (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248))) (($ (-133) $) 51 (|has| $ (-6 -4248)))) (-2231 (($ (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248))) (($ (-133) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016))))) (-1830 (((-133) (-1 (-133) (-133) (-133)) $) NIL (|has| $ (-6 -4248))) (((-133) (-1 (-133) (-133) (-133)) $ (-133)) NIL (|has| $ (-6 -4248))) (((-133) (-1 (-133) (-133) (-133)) $ (-133) (-133)) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016))))) (-3461 (($) NIL (|has| (-133) (-344)))) (-3133 (((-589 (-133)) $) 60 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-3268 (((-133) $) NIL (|has| (-133) (-786)))) (-3056 (((-589 (-133)) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-133) $) 26 (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016))))) (-2644 (((-133) $) NIL (|has| (-133) (-786)))) (-3063 (($ (-1 (-133) (-133)) $) 59 (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-133) (-133)) $) 55)) (-4017 (($) 16 T CONST)) (-4076 (((-852) $) NIL (|has| (-133) (-344)))) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-1625 (($ $ $) 29)) (-2349 (((-133) $) 52)) (-3862 (($ (-133) $) 50)) (-2557 (($ (-852)) NIL (|has| (-133) (-344)))) (-3423 (($) 14 T CONST)) (-2435 (((-1034) $) NIL)) (-2660 (((-3 (-133) "failed") (-1 (-108) (-133)) $) NIL)) (-1322 (((-133) $) 53)) (-2720 (((-108) (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-133)) (-589 (-133))) NIL (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016)))) (($ $ (-133) (-133)) NIL (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016)))) (($ $ (-271 (-133))) NIL (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016)))) (($ $ (-589 (-271 (-133)))) NIL (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) 48)) (-4116 (($) 13 T CONST)) (-2973 (($ $ $) 31) (($ $ (-133)) NIL)) (-1771 (($ (-589 (-133))) NIL) (($) NIL)) (-2452 (((-710) (-133) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016)))) (((-710) (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) NIL)) (-3077 (((-1070) $) 36) (((-499) $) NIL (|has| (-133) (-564 (-499)))) (((-589 (-133)) $) 34)) (-3985 (($ (-589 (-133))) NIL)) (-2479 (($ $) 32 (|has| (-133) (-344)))) (-3976 (((-794) $) 46)) (-1435 (($ (-1070)) 12) (($ (-589 (-133))) 43)) (-1596 (((-710) $) NIL)) (-2000 (($) 49) (($ (-589 (-133))) NIL)) (-1245 (($ (-589 (-133))) NIL)) (-1505 (((-108) (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248)))) (-3748 (($) 19 T CONST)) (-2621 (($) 18 T CONST)) (-4037 (((-108) $ $) 22)) (-4052 (((-108) $ $) NIL)) (-1271 (((-710) $) 47 (|has| $ (-6 -4248)))))
-(((-130) (-13 (-1016) (-564 (-1070)) (-401 (-133)) (-564 (-589 (-133))) (-10 -8 (-15 -1435 ($ (-1070))) (-15 -1435 ($ (-589 (-133)))) (-15 -4116 ($) -1982) (-15 -3423 ($) -1982) (-15 -2889 ($) -1982) (-15 -4017 ($) -1982) (-15 -2621 ($) -1982) (-15 -3748 ($) -1982)))) (T -130))
-((-1435 (*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-130)))) (-1435 (*1 *1 *2) (-12 (-5 *2 (-589 (-133))) (-5 *1 (-130)))) (-4116 (*1 *1) (-5 *1 (-130))) (-3423 (*1 *1) (-5 *1 (-130))) (-2889 (*1 *1) (-5 *1 (-130))) (-4017 (*1 *1) (-5 *1 (-130))) (-2621 (*1 *1) (-5 *1 (-130))) (-3748 (*1 *1) (-5 *1 (-130))))
-(-13 (-1016) (-564 (-1070)) (-401 (-133)) (-564 (-589 (-133))) (-10 -8 (-15 -1435 ($ (-1070))) (-15 -1435 ($ (-589 (-133)))) (-15 -4116 ($) -1982) (-15 -3423 ($) -1982) (-15 -2889 ($) -1982) (-15 -4017 ($) -1982) (-15 -2621 ($) -1982) (-15 -3748 ($) -1982)))
-((-3538 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-2848 ((|#1| |#3|) 9)) (-3992 ((|#3| |#3|) 15)))
-(((-131 |#1| |#2| |#3|) (-10 -7 (-15 -2848 (|#1| |#3|)) (-15 -3992 (|#3| |#3|)) (-15 -3538 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-515) (-921 |#1|) (-349 |#2|)) (T -131))
-((-3538 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *5 (-921 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-131 *4 *5 *3)) (-4 *3 (-349 *5)))) (-3992 (*1 *2 *2) (-12 (-4 *3 (-515)) (-4 *4 (-921 *3)) (-5 *1 (-131 *3 *4 *2)) (-4 *2 (-349 *4)))) (-2848 (*1 *2 *3) (-12 (-4 *4 (-921 *2)) (-4 *2 (-515)) (-5 *1 (-131 *2 *4 *3)) (-4 *3 (-349 *4)))))
-(-10 -7 (-15 -2848 (|#1| |#3|)) (-15 -3992 (|#3| |#3|)) (-15 -3538 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-4080 (($ $ $) 8)) (-1763 (($ $) 7)) (-1475 (($ $ $) 6)))
-(((-132) (-129)) (T -132))
-((-4080 (*1 *1 *1 *1) (-4 *1 (-132))) (-1763 (*1 *1 *1) (-4 *1 (-132))) (-1475 (*1 *1 *1 *1) (-4 *1 (-132))))
-(-13 (-10 -8 (-15 -1475 ($ $ $)) (-15 -1763 ($ $)) (-15 -4080 ($ $ $))))
-((-3260 (((-108) $ $) NIL)) (-2316 (((-108) $) 30)) (-2889 (($ $) 43)) (-2980 (($) 17)) (-3843 (((-710)) 10)) (-3461 (($) 16)) (-3814 (($) 18)) (-1749 (((-710) $) 14)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3218 (((-108) $) 32)) (-4017 (($ $) 44)) (-4076 (((-852) $) 15)) (-3841 (((-1070) $) 38)) (-2557 (($ (-852)) 13)) (-3393 (((-108) $) 28)) (-2435 (((-1034) $) NIL)) (-2881 (($) 19)) (-2525 (((-108) $) 26)) (-3976 (((-794) $) 21)) (-1532 (($ (-710)) 11) (($ (-1070)) 42)) (-1395 (((-108) $) 36)) (-1724 (((-108) $) 34)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 7)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 8)))
-(((-133) (-13 (-780) (-10 -8 (-15 -1749 ((-710) $)) (-15 -1532 ($ (-710))) (-15 -1532 ($ (-1070))) (-15 -2980 ($)) (-15 -3814 ($)) (-15 -2881 ($)) (-15 -2889 ($ $)) (-15 -4017 ($ $)) (-15 -2525 ((-108) $)) (-15 -3393 ((-108) $)) (-15 -1724 ((-108) $)) (-15 -2316 ((-108) $)) (-15 -3218 ((-108) $)) (-15 -1395 ((-108) $))))) (T -133))
-((-1749 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-133)))) (-1532 (*1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-133)))) (-1532 (*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-133)))) (-2980 (*1 *1) (-5 *1 (-133))) (-3814 (*1 *1) (-5 *1 (-133))) (-2881 (*1 *1) (-5 *1 (-133))) (-2889 (*1 *1 *1) (-5 *1 (-133))) (-4017 (*1 *1 *1) (-5 *1 (-133))) (-2525 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-133)))) (-3393 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-133)))) (-1724 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-133)))) (-2316 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-133)))) (-3218 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-133)))) (-1395 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-133)))))
-(-13 (-780) (-10 -8 (-15 -1749 ((-710) $)) (-15 -1532 ($ (-710))) (-15 -1532 ($ (-1070))) (-15 -2980 ($)) (-15 -3814 ($)) (-15 -2881 ($)) (-15 -2889 ($ $)) (-15 -4017 ($ $)) (-15 -2525 ((-108) $)) (-15 -3393 ((-108) $)) (-15 -1724 ((-108) $)) (-15 -2316 ((-108) $)) (-15 -3218 ((-108) $)) (-15 -1395 ((-108) $))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11) (($ (-523)) 28)) (-2301 (((-3 $ "failed") $) 35)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-134) (-129)) (T -134))
-((-2301 (*1 *1 *1) (|partial| -4 *1 (-134))))
-(-13 (-973) (-10 -8 (-15 -2301 ((-3 $ "failed") $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 $) . T) ((-666) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-1606 ((|#1| (-629 |#1|) |#1|) 19)))
-(((-135 |#1|) (-10 -7 (-15 -1606 (|#1| (-629 |#1|) |#1|))) (-158)) (T -135))
-((-1606 (*1 *2 *3 *2) (-12 (-5 *3 (-629 *2)) (-4 *2 (-158)) (-5 *1 (-135 *2)))))
-(-10 -7 (-15 -1606 (|#1| (-629 |#1|) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11) (($ (-523)) 28)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-136) (-129)) (T -136))
-NIL
-(-13 (-973))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 $) . T) ((-666) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3446 (((-2 (|:| -3262 (-710)) (|:| -2275 (-383 |#2|)) (|:| |radicand| |#2|)) (-383 |#2|) (-710)) 70)) (-3554 (((-3 (-2 (|:| |radicand| (-383 |#2|)) (|:| |deg| (-710))) "failed") |#3|) 52)) (-2473 (((-2 (|:| -2275 (-383 |#2|)) (|:| |poly| |#3|)) |#3|) 37)) (-1768 ((|#1| |#3| |#3|) 40)) (-1349 ((|#3| |#3| (-383 |#2|) (-383 |#2|)) 19)) (-2698 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-383 |#2|)) (|:| |c2| (-383 |#2|)) (|:| |deg| (-710))) |#3| |#3|) 49)))
-(((-137 |#1| |#2| |#3|) (-10 -7 (-15 -2473 ((-2 (|:| -2275 (-383 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -3554 ((-3 (-2 (|:| |radicand| (-383 |#2|)) (|:| |deg| (-710))) "failed") |#3|)) (-15 -3446 ((-2 (|:| -3262 (-710)) (|:| -2275 (-383 |#2|)) (|:| |radicand| |#2|)) (-383 |#2|) (-710))) (-15 -1768 (|#1| |#3| |#3|)) (-15 -1349 (|#3| |#3| (-383 |#2|) (-383 |#2|))) (-15 -2698 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-383 |#2|)) (|:| |c2| (-383 |#2|)) (|:| |deg| (-710))) |#3| |#3|))) (-1127) (-1145 |#1|) (-1145 (-383 |#2|))) (T -137))
-((-2698 (*1 *2 *3 *3) (-12 (-4 *4 (-1127)) (-4 *5 (-1145 *4)) (-5 *2 (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-383 *5)) (|:| |c2| (-383 *5)) (|:| |deg| (-710)))) (-5 *1 (-137 *4 *5 *3)) (-4 *3 (-1145 (-383 *5))))) (-1349 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-383 *5)) (-4 *4 (-1127)) (-4 *5 (-1145 *4)) (-5 *1 (-137 *4 *5 *2)) (-4 *2 (-1145 *3)))) (-1768 (*1 *2 *3 *3) (-12 (-4 *4 (-1145 *2)) (-4 *2 (-1127)) (-5 *1 (-137 *2 *4 *3)) (-4 *3 (-1145 (-383 *4))))) (-3446 (*1 *2 *3 *4) (-12 (-5 *3 (-383 *6)) (-4 *5 (-1127)) (-4 *6 (-1145 *5)) (-5 *2 (-2 (|:| -3262 (-710)) (|:| -2275 *3) (|:| |radicand| *6))) (-5 *1 (-137 *5 *6 *7)) (-5 *4 (-710)) (-4 *7 (-1145 *3)))) (-3554 (*1 *2 *3) (|partial| -12 (-4 *4 (-1127)) (-4 *5 (-1145 *4)) (-5 *2 (-2 (|:| |radicand| (-383 *5)) (|:| |deg| (-710)))) (-5 *1 (-137 *4 *5 *3)) (-4 *3 (-1145 (-383 *5))))) (-2473 (*1 *2 *3) (-12 (-4 *4 (-1127)) (-4 *5 (-1145 *4)) (-5 *2 (-2 (|:| -2275 (-383 *5)) (|:| |poly| *3))) (-5 *1 (-137 *4 *5 *3)) (-4 *3 (-1145 (-383 *5))))))
-(-10 -7 (-15 -2473 ((-2 (|:| -2275 (-383 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -3554 ((-3 (-2 (|:| |radicand| (-383 |#2|)) (|:| |deg| (-710))) "failed") |#3|)) (-15 -3446 ((-2 (|:| -3262 (-710)) (|:| -2275 (-383 |#2|)) (|:| |radicand| |#2|)) (-383 |#2|) (-710))) (-15 -1768 (|#1| |#3| |#3|)) (-15 -1349 (|#3| |#3| (-383 |#2|) (-383 |#2|))) (-15 -2698 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-383 |#2|)) (|:| |c2| (-383 |#2|)) (|:| |deg| (-710))) |#3| |#3|)))
-((-3908 (((-3 (-589 (-1083 |#2|)) "failed") (-589 (-1083 |#2|)) (-1083 |#2|)) 32)))
-(((-138 |#1| |#2|) (-10 -7 (-15 -3908 ((-3 (-589 (-1083 |#2|)) "failed") (-589 (-1083 |#2|)) (-1083 |#2|)))) (-508) (-152 |#1|)) (T -138))
-((-3908 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-589 (-1083 *5))) (-5 *3 (-1083 *5)) (-4 *5 (-152 *4)) (-4 *4 (-508)) (-5 *1 (-138 *4 *5)))))
-(-10 -7 (-15 -3908 ((-3 (-589 (-1083 |#2|)) "failed") (-589 (-1083 |#2|)) (-1083 |#2|))))
-((-1299 (($ (-1 (-108) |#2|) $) 29)) (-3917 (($ $) 36)) (-2231 (($ (-1 (-108) |#2|) $) 27) (($ |#2| $) 32)) (-1830 ((|#2| (-1 |#2| |#2| |#2|) $) 22) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 24) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 34)) (-2660 (((-3 |#2| "failed") (-1 (-108) |#2|) $) 19)) (-2720 (((-108) (-1 (-108) |#2|) $) 16)) (-2452 (((-710) (-1 (-108) |#2|) $) 14) (((-710) |#2| $) NIL)) (-1505 (((-108) (-1 (-108) |#2|) $) 15)) (-1271 (((-710) $) 11)))
-(((-139 |#1| |#2|) (-10 -8 (-15 -3917 (|#1| |#1|)) (-15 -2231 (|#1| |#2| |#1|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1299 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -2231 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2660 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -2452 ((-710) |#2| |#1|)) (-15 -2452 ((-710) (-1 (-108) |#2|) |#1|)) (-15 -2720 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1505 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1271 ((-710) |#1|))) (-140 |#2|) (-1123)) (T -139))
-NIL
-(-10 -8 (-15 -3917 (|#1| |#1|)) (-15 -2231 (|#1| |#2| |#1|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1299 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -2231 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2660 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -2452 ((-710) |#2| |#1|)) (-15 -2452 ((-710) (-1 (-108) |#2|) |#1|)) (-15 -2720 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1505 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1271 ((-710) |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2282 (((-108) $ (-710)) 8)) (-1299 (($ (-1 (-108) |#1|) $) 44 (|has| $ (-6 -4248)))) (-1640 (($) 7 T CONST)) (-3917 (($ $) 41 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4248))) (($ |#1| $) 42 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $) 47 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 46 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 48)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3077 (((-499) $) 40 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 49)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-140 |#1|) (-129) (-1123)) (T -140))
-((-3985 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-4 *1 (-140 *3)))) (-2660 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-108) *2)) (-4 *1 (-140 *2)) (-4 *2 (-1123)))) (-1830 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4248)) (-4 *1 (-140 *2)) (-4 *2 (-1123)))) (-1830 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4248)) (-4 *1 (-140 *2)) (-4 *2 (-1123)))) (-2231 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4248)) (-4 *1 (-140 *3)) (-4 *3 (-1123)))) (-1299 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4248)) (-4 *1 (-140 *3)) (-4 *3 (-1123)))) (-1830 (*1 *2 *3 *1 *2 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1016)) (|has| *1 (-6 -4248)) (-4 *1 (-140 *2)) (-4 *2 (-1123)))) (-2231 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4248)) (-4 *1 (-140 *2)) (-4 *2 (-1123)) (-4 *2 (-1016)))) (-3917 (*1 *1 *1) (-12 (|has| *1 (-6 -4248)) (-4 *1 (-140 *2)) (-4 *2 (-1123)) (-4 *2 (-1016)))))
-(-13 (-462 |t#1|) (-10 -8 (-15 -3985 ($ (-589 |t#1|))) (-15 -2660 ((-3 |t#1| "failed") (-1 (-108) |t#1|) $)) (IF (|has| $ (-6 -4248)) (PROGN (-15 -1830 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -1830 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -2231 ($ (-1 (-108) |t#1|) $)) (-15 -1299 ($ (-1 (-108) |t#1|) $)) (IF (|has| |t#1| (-1016)) (PROGN (-15 -1830 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -2231 ($ |t#1| $)) (-15 -3917 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-4211 (((-3 $ "failed") $) 87)) (-3482 (((-108) $) NIL)) (-3694 (($ |#2| (-589 (-852))) 57)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3530 (($ (-852)) 48)) (-4012 (((-126)) 23)) (-3976 (((-794) $) 70) (($ (-523)) 46) (($ |#2|) 47)) (-1234 ((|#2| $ (-589 (-852))) 60)) (-1698 (((-710)) 20)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 40 T CONST)) (-1440 (($) 44 T CONST)) (-4037 (((-108) $ $) 26)) (-4125 (($ $ |#2|) NIL)) (-4115 (($ $) 34) (($ $ $) 32)) (-4103 (($ $ $) 30)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 37) (($ $ $) 52) (($ |#2| $) 39) (($ $ |#2|) NIL)))
-(((-141 |#1| |#2| |#3|) (-13 (-973) (-37 |#2|) (-1176 |#2|) (-10 -8 (-15 -3530 ($ (-852))) (-15 -3694 ($ |#2| (-589 (-852)))) (-15 -1234 (|#2| $ (-589 (-852)))) (-15 -4211 ((-3 $ "failed") $)))) (-852) (-339) (-922 |#1| |#2|)) (T -141))
-((-4211 (*1 *1 *1) (|partial| -12 (-5 *1 (-141 *2 *3 *4)) (-14 *2 (-852)) (-4 *3 (-339)) (-14 *4 (-922 *2 *3)))) (-3530 (*1 *1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-141 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-339)) (-14 *5 (-922 *3 *4)))) (-3694 (*1 *1 *2 *3) (-12 (-5 *3 (-589 (-852))) (-5 *1 (-141 *4 *2 *5)) (-14 *4 (-852)) (-4 *2 (-339)) (-14 *5 (-922 *4 *2)))) (-1234 (*1 *2 *1 *3) (-12 (-5 *3 (-589 (-852))) (-4 *2 (-339)) (-5 *1 (-141 *4 *2 *5)) (-14 *4 (-852)) (-14 *5 (-922 *4 *2)))))
-(-13 (-973) (-37 |#2|) (-1176 |#2|) (-10 -8 (-15 -3530 ($ (-852))) (-15 -3694 ($ |#2| (-589 (-852)))) (-15 -1234 (|#2| $ (-589 (-852)))) (-15 -4211 ((-3 $ "failed") $))))
-((-2753 (((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-589 (-589 (-874 (-203)))) (-203) (-203) (-203) (-203)) 38)) (-2822 (((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-858) (-383 (-523)) (-383 (-523))) 63) (((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-858)) 64)) (-4222 (((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-589 (-589 (-874 (-203))))) 67) (((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-589 (-874 (-203)))) 66) (((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-858) (-383 (-523)) (-383 (-523))) 58) (((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-858)) 59)))
-(((-142) (-10 -7 (-15 -4222 ((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-858))) (-15 -4222 ((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-858) (-383 (-523)) (-383 (-523)))) (-15 -2822 ((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-858))) (-15 -2822 ((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-858) (-383 (-523)) (-383 (-523)))) (-15 -2753 ((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-589 (-589 (-874 (-203)))) (-203) (-203) (-203) (-203))) (-15 -4222 ((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-589 (-874 (-203))))) (-15 -4222 ((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-589 (-589 (-874 (-203)))))))) (T -142))
-((-4222 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203))))) (-5 *1 (-142)) (-5 *3 (-589 (-589 (-874 (-203))))))) (-4222 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203))))) (-5 *1 (-142)) (-5 *3 (-589 (-874 (-203)))))) (-2753 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *4 (-203)) (-5 *2 (-2 (|:| |brans| (-589 (-589 (-874 *4)))) (|:| |xValues| (-1011 *4)) (|:| |yValues| (-1011 *4)))) (-5 *1 (-142)) (-5 *3 (-589 (-589 (-874 *4)))))) (-2822 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-858)) (-5 *4 (-383 (-523))) (-5 *2 (-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203))))) (-5 *1 (-142)))) (-2822 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203))))) (-5 *1 (-142)))) (-4222 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-858)) (-5 *4 (-383 (-523))) (-5 *2 (-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203))))) (-5 *1 (-142)))) (-4222 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203))))) (-5 *1 (-142)))))
-(-10 -7 (-15 -4222 ((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-858))) (-15 -4222 ((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-858) (-383 (-523)) (-383 (-523)))) (-15 -2822 ((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-858))) (-15 -2822 ((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-858) (-383 (-523)) (-383 (-523)))) (-15 -2753 ((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-589 (-589 (-874 (-203)))) (-203) (-203) (-203) (-203))) (-15 -4222 ((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-589 (-874 (-203))))) (-15 -4222 ((-2 (|:| |brans| (-589 (-589 (-874 (-203))))) (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))) (-589 (-589 (-874 (-203)))))))
-((-2155 (((-589 (-155 |#2|)) |#1| |#2|) 45)))
-(((-143 |#1| |#2|) (-10 -7 (-15 -2155 ((-589 (-155 |#2|)) |#1| |#2|))) (-1145 (-155 (-523))) (-13 (-339) (-784))) (T -143))
-((-2155 (*1 *2 *3 *4) (-12 (-5 *2 (-589 (-155 *4))) (-5 *1 (-143 *3 *4)) (-4 *3 (-1145 (-155 (-523)))) (-4 *4 (-13 (-339) (-784))))))
-(-10 -7 (-15 -2155 ((-589 (-155 |#2|)) |#1| |#2|)))
-((-3260 (((-108) $ $) NIL)) (-3598 (($) 16)) (-4199 (($) 15)) (-1966 (((-852)) 23)) (-3841 (((-1070) $) NIL)) (-3578 (((-523) $) 20)) (-2435 (((-1034) $) NIL)) (-2179 (($) 17)) (-3026 (($ (-523)) 24)) (-3976 (((-794) $) 30)) (-3689 (($) 18)) (-4037 (((-108) $ $) 14)) (-4103 (($ $ $) 13)) (* (($ (-852) $) 22) (($ (-203) $) 8)))
-(((-144) (-13 (-25) (-10 -8 (-15 * ($ (-852) $)) (-15 * ($ (-203) $)) (-15 -4103 ($ $ $)) (-15 -4199 ($)) (-15 -3598 ($)) (-15 -2179 ($)) (-15 -3689 ($)) (-15 -3578 ((-523) $)) (-15 -1966 ((-852))) (-15 -3026 ($ (-523)))))) (T -144))
-((-4103 (*1 *1 *1 *1) (-5 *1 (-144))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-852)) (-5 *1 (-144)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-203)) (-5 *1 (-144)))) (-4199 (*1 *1) (-5 *1 (-144))) (-3598 (*1 *1) (-5 *1 (-144))) (-2179 (*1 *1) (-5 *1 (-144))) (-3689 (*1 *1) (-5 *1 (-144))) (-3578 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-144)))) (-1966 (*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-144)))) (-3026 (*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-144)))))
-(-13 (-25) (-10 -8 (-15 * ($ (-852) $)) (-15 * ($ (-203) $)) (-15 -4103 ($ $ $)) (-15 -4199 ($)) (-15 -3598 ($)) (-15 -2179 ($)) (-15 -3689 ($)) (-15 -3578 ((-523) $)) (-15 -1966 ((-852))) (-15 -3026 ($ (-523)))))
-((-4098 ((|#2| |#2| (-1009 |#2|)) 88) ((|#2| |#2| (-1087)) 68)) (-2996 ((|#2| |#2| (-1009 |#2|)) 87) ((|#2| |#2| (-1087)) 67)) (-4080 ((|#2| |#2| |#2|) 27)) (-1564 (((-110) (-110)) 99)) (-2798 ((|#2| (-589 |#2|)) 117)) (-3995 ((|#2| (-589 |#2|)) 135)) (-3162 ((|#2| (-589 |#2|)) 125)) (-3696 ((|#2| |#2|) 123)) (-1213 ((|#2| (-589 |#2|)) 111)) (-2958 ((|#2| (-589 |#2|)) 112)) (-1674 ((|#2| (-589 |#2|)) 133)) (-3872 ((|#2| |#2| (-1087)) 56) ((|#2| |#2|) 55)) (-1763 ((|#2| |#2|) 23)) (-1475 ((|#2| |#2| |#2|) 26)) (-1651 (((-108) (-110)) 49)) (** ((|#2| |#2| |#2|) 41)))
-(((-145 |#1| |#2|) (-10 -7 (-15 -1651 ((-108) (-110))) (-15 -1564 ((-110) (-110))) (-15 ** (|#2| |#2| |#2|)) (-15 -1475 (|#2| |#2| |#2|)) (-15 -4080 (|#2| |#2| |#2|)) (-15 -1763 (|#2| |#2|)) (-15 -3872 (|#2| |#2|)) (-15 -3872 (|#2| |#2| (-1087))) (-15 -4098 (|#2| |#2| (-1087))) (-15 -4098 (|#2| |#2| (-1009 |#2|))) (-15 -2996 (|#2| |#2| (-1087))) (-15 -2996 (|#2| |#2| (-1009 |#2|))) (-15 -3696 (|#2| |#2|)) (-15 -1674 (|#2| (-589 |#2|))) (-15 -3162 (|#2| (-589 |#2|))) (-15 -3995 (|#2| (-589 |#2|))) (-15 -1213 (|#2| (-589 |#2|))) (-15 -2958 (|#2| (-589 |#2|))) (-15 -2798 (|#2| (-589 |#2|)))) (-13 (-786) (-515)) (-406 |#1|)) (T -145))
-((-2798 (*1 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-406 *4)) (-5 *1 (-145 *4 *2)) (-4 *4 (-13 (-786) (-515))))) (-2958 (*1 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-406 *4)) (-5 *1 (-145 *4 *2)) (-4 *4 (-13 (-786) (-515))))) (-1213 (*1 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-406 *4)) (-5 *1 (-145 *4 *2)) (-4 *4 (-13 (-786) (-515))))) (-3995 (*1 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-406 *4)) (-5 *1 (-145 *4 *2)) (-4 *4 (-13 (-786) (-515))))) (-3162 (*1 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-406 *4)) (-5 *1 (-145 *4 *2)) (-4 *4 (-13 (-786) (-515))))) (-1674 (*1 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-406 *4)) (-5 *1 (-145 *4 *2)) (-4 *4 (-13 (-786) (-515))))) (-3696 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-145 *3 *2)) (-4 *2 (-406 *3)))) (-2996 (*1 *2 *2 *3) (-12 (-5 *3 (-1009 *2)) (-4 *2 (-406 *4)) (-4 *4 (-13 (-786) (-515))) (-5 *1 (-145 *4 *2)))) (-2996 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-786) (-515))) (-5 *1 (-145 *4 *2)) (-4 *2 (-406 *4)))) (-4098 (*1 *2 *2 *3) (-12 (-5 *3 (-1009 *2)) (-4 *2 (-406 *4)) (-4 *4 (-13 (-786) (-515))) (-5 *1 (-145 *4 *2)))) (-4098 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-786) (-515))) (-5 *1 (-145 *4 *2)) (-4 *2 (-406 *4)))) (-3872 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-786) (-515))) (-5 *1 (-145 *4 *2)) (-4 *2 (-406 *4)))) (-3872 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-145 *3 *2)) (-4 *2 (-406 *3)))) (-1763 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-145 *3 *2)) (-4 *2 (-406 *3)))) (-4080 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-145 *3 *2)) (-4 *2 (-406 *3)))) (-1475 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-145 *3 *2)) (-4 *2 (-406 *3)))) (** (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-145 *3 *2)) (-4 *2 (-406 *3)))) (-1564 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-786) (-515))) (-5 *1 (-145 *3 *4)) (-4 *4 (-406 *3)))) (-1651 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-108)) (-5 *1 (-145 *4 *5)) (-4 *5 (-406 *4)))))
-(-10 -7 (-15 -1651 ((-108) (-110))) (-15 -1564 ((-110) (-110))) (-15 ** (|#2| |#2| |#2|)) (-15 -1475 (|#2| |#2| |#2|)) (-15 -4080 (|#2| |#2| |#2|)) (-15 -1763 (|#2| |#2|)) (-15 -3872 (|#2| |#2|)) (-15 -3872 (|#2| |#2| (-1087))) (-15 -4098 (|#2| |#2| (-1087))) (-15 -4098 (|#2| |#2| (-1009 |#2|))) (-15 -2996 (|#2| |#2| (-1087))) (-15 -2996 (|#2| |#2| (-1009 |#2|))) (-15 -3696 (|#2| |#2|)) (-15 -1674 (|#2| (-589 |#2|))) (-15 -3162 (|#2| (-589 |#2|))) (-15 -3995 (|#2| (-589 |#2|))) (-15 -1213 (|#2| (-589 |#2|))) (-15 -2958 (|#2| (-589 |#2|))) (-15 -2798 (|#2| (-589 |#2|))))
-((-3737 ((|#1| |#1| |#1|) 53)) (-2173 ((|#1| |#1| |#1|) 50)) (-4080 ((|#1| |#1| |#1|) 44)) (-3777 ((|#1| |#1|) 35)) (-2654 ((|#1| |#1| (-589 |#1|)) 43)) (-1763 ((|#1| |#1|) 37)) (-1475 ((|#1| |#1| |#1|) 40)))
-(((-146 |#1|) (-10 -7 (-15 -1475 (|#1| |#1| |#1|)) (-15 -1763 (|#1| |#1|)) (-15 -2654 (|#1| |#1| (-589 |#1|))) (-15 -3777 (|#1| |#1|)) (-15 -4080 (|#1| |#1| |#1|)) (-15 -2173 (|#1| |#1| |#1|)) (-15 -3737 (|#1| |#1| |#1|))) (-508)) (T -146))
-((-3737 (*1 *2 *2 *2) (-12 (-5 *1 (-146 *2)) (-4 *2 (-508)))) (-2173 (*1 *2 *2 *2) (-12 (-5 *1 (-146 *2)) (-4 *2 (-508)))) (-4080 (*1 *2 *2 *2) (-12 (-5 *1 (-146 *2)) (-4 *2 (-508)))) (-3777 (*1 *2 *2) (-12 (-5 *1 (-146 *2)) (-4 *2 (-508)))) (-2654 (*1 *2 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-508)) (-5 *1 (-146 *2)))) (-1763 (*1 *2 *2) (-12 (-5 *1 (-146 *2)) (-4 *2 (-508)))) (-1475 (*1 *2 *2 *2) (-12 (-5 *1 (-146 *2)) (-4 *2 (-508)))))
-(-10 -7 (-15 -1475 (|#1| |#1| |#1|)) (-15 -1763 (|#1| |#1|)) (-15 -2654 (|#1| |#1| (-589 |#1|))) (-15 -3777 (|#1| |#1|)) (-15 -4080 (|#1| |#1| |#1|)) (-15 -2173 (|#1| |#1| |#1|)) (-15 -3737 (|#1| |#1| |#1|)))
-((-4098 (($ $ (-1087)) 12) (($ $ (-1009 $)) 11)) (-2996 (($ $ (-1087)) 10) (($ $ (-1009 $)) 9)) (-4080 (($ $ $) 8)) (-3872 (($ $) 14) (($ $ (-1087)) 13)) (-1763 (($ $) 7)) (-1475 (($ $ $) 6)))
-(((-147) (-129)) (T -147))
-((-3872 (*1 *1 *1) (-4 *1 (-147))) (-3872 (*1 *1 *1 *2) (-12 (-4 *1 (-147)) (-5 *2 (-1087)))) (-4098 (*1 *1 *1 *2) (-12 (-4 *1 (-147)) (-5 *2 (-1087)))) (-4098 (*1 *1 *1 *2) (-12 (-5 *2 (-1009 *1)) (-4 *1 (-147)))) (-2996 (*1 *1 *1 *2) (-12 (-4 *1 (-147)) (-5 *2 (-1087)))) (-2996 (*1 *1 *1 *2) (-12 (-5 *2 (-1009 *1)) (-4 *1 (-147)))))
-(-13 (-132) (-10 -8 (-15 -3872 ($ $)) (-15 -3872 ($ $ (-1087))) (-15 -4098 ($ $ (-1087))) (-15 -4098 ($ $ (-1009 $))) (-15 -2996 ($ $ (-1087))) (-15 -2996 ($ $ (-1009 $)))))
-(((-132) . T))
-((-3260 (((-108) $ $) NIL)) (-3151 (($ (-523)) 13) (($ $ $) 14)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 17)) (-4037 (((-108) $ $) 9)))
-(((-148) (-13 (-1016) (-10 -8 (-15 -3151 ($ (-523))) (-15 -3151 ($ $ $))))) (T -148))
-((-3151 (*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-148)))) (-3151 (*1 *1 *1 *1) (-5 *1 (-148))))
-(-13 (-1016) (-10 -8 (-15 -3151 ($ (-523))) (-15 -3151 ($ $ $))))
-((-1564 (((-110) (-1087)) 97)))
-(((-149) (-10 -7 (-15 -1564 ((-110) (-1087))))) (T -149))
-((-1564 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-110)) (-5 *1 (-149)))))
-(-10 -7 (-15 -1564 ((-110) (-1087))))
-((-2579 ((|#3| |#3|) 19)))
-(((-150 |#1| |#2| |#3|) (-10 -7 (-15 -2579 (|#3| |#3|))) (-973) (-1145 |#1|) (-1145 |#2|)) (T -150))
-((-2579 (*1 *2 *2) (-12 (-4 *3 (-973)) (-4 *4 (-1145 *3)) (-5 *1 (-150 *3 *4 *2)) (-4 *2 (-1145 *4)))))
-(-10 -7 (-15 -2579 (|#3| |#3|)))
-((-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 217)) (-4131 ((|#2| $) 96)) (-3695 (($ $) 245)) (-2608 (($ $) 239)) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) 40)) (-3669 (($ $) 243)) (-2588 (($ $) 237)) (-2898 (((-3 (-523) "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL) (((-3 |#2| "failed") $) 141)) (-1996 (((-523) $) NIL) (((-383 (-523)) $) NIL) ((|#2| $) 139)) (-2501 (($ $ $) 222)) (-2203 (((-629 (-523)) (-629 $)) NIL) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) 155) (((-629 |#2|) (-629 $)) 149)) (-1830 (($ (-1083 |#2|)) 119) (((-3 $ "failed") (-383 (-1083 |#2|))) NIL)) (-4211 (((-3 $ "failed") $) 209)) (-4031 (((-3 (-383 (-523)) "failed") $) 199)) (-1310 (((-108) $) 194)) (-1600 (((-383 (-523)) $) 197)) (-2262 (((-852)) 89)) (-2486 (($ $ $) 224)) (-2757 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 261)) (-2188 (($) 234)) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 186) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 191)) (-2765 ((|#2| $) 94)) (-2277 (((-1083 |#2|) $) 121)) (-3015 (($ (-1 |#2| |#2|) $) 102)) (-2062 (($ $) 236)) (-1816 (((-1083 |#2|) $) 120)) (-3071 (($ $) 202)) (-3564 (($) 97)) (-1893 (((-394 (-1083 $)) (-1083 $)) 88)) (-4034 (((-394 (-1083 $)) (-1083 $)) 57)) (-2469 (((-3 $ "failed") $ |#2|) 204) (((-3 $ "failed") $ $) 207)) (-1847 (($ $) 235)) (-3087 (((-710) $) 219)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 229)) (-4053 ((|#2| (-1169 $)) NIL) ((|#2|) 91)) (-4024 (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-1 |#2| |#2|)) 113) (($ $ (-589 (-1087)) (-589 (-710))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087)) NIL) (($ $ (-710)) NIL) (($ $) NIL)) (-3399 (((-1083 |#2|)) 114)) (-3683 (($ $) 244)) (-2598 (($ $) 238)) (-2411 (((-1169 |#2|) $ (-1169 $)) 128) (((-629 |#2|) (-1169 $) (-1169 $)) NIL) (((-1169 |#2|) $) 110) (((-629 |#2|) (-1169 $)) NIL)) (-3077 (((-1169 |#2|) $) NIL) (($ (-1169 |#2|)) NIL) (((-1083 |#2|) $) NIL) (($ (-1083 |#2|)) NIL) (((-823 (-523)) $) 177) (((-823 (-355)) $) 181) (((-155 (-355)) $) 167) (((-155 (-203)) $) 162) (((-499) $) 173)) (-1308 (($ $) 98)) (-3976 (((-794) $) 138) (($ (-523)) NIL) (($ |#2|) NIL) (($ (-383 (-523))) NIL) (($ $) NIL)) (-1606 (((-1083 |#2|) $) 23)) (-1698 (((-710)) 100)) (-3768 (($ $) 248)) (-2680 (($ $) 242)) (-3743 (($ $) 246)) (-2655 (($ $) 240)) (-2947 ((|#2| $) 233)) (-3756 (($ $) 247)) (-2667 (($ $) 241)) (-3984 (($ $) 157)) (-4037 (((-108) $ $) 104)) (-4052 (((-108) $ $) 193)) (-4115 (($ $) 106) (($ $ $) NIL)) (-4103 (($ $ $) 105)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-383 (-523))) 267) (($ $ $) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 112) (($ $ $) 142) (($ $ |#2|) NIL) (($ |#2| $) 108) (($ (-383 (-523)) $) NIL) (($ $ (-383 (-523))) NIL)))
-(((-151 |#1| |#2|) (-10 -8 (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -3976 (|#1| |#1|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3001 ((-2 (|:| -1895 |#1|) (|:| -4235 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -3087 ((-710) |#1|)) (-15 -1227 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -2486 (|#1| |#1| |#1|)) (-15 -2501 (|#1| |#1| |#1|)) (-15 -3071 (|#1| |#1|)) (-15 ** (|#1| |#1| (-523))) (-15 * (|#1| |#1| (-383 (-523)))) (-15 * (|#1| (-383 (-523)) |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -4052 ((-108) |#1| |#1|)) (-15 -3077 ((-499) |#1|)) (-15 -3077 ((-155 (-203)) |#1|)) (-15 -3077 ((-155 (-355)) |#1|)) (-15 -2608 (|#1| |#1|)) (-15 -2588 (|#1| |#1|)) (-15 -2598 (|#1| |#1|)) (-15 -2667 (|#1| |#1|)) (-15 -2655 (|#1| |#1|)) (-15 -2680 (|#1| |#1|)) (-15 -3683 (|#1| |#1|)) (-15 -3669 (|#1| |#1|)) (-15 -3695 (|#1| |#1|)) (-15 -3756 (|#1| |#1|)) (-15 -3743 (|#1| |#1|)) (-15 -3768 (|#1| |#1|)) (-15 -2062 (|#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -2188 (|#1|)) (-15 ** (|#1| |#1| (-383 (-523)))) (-15 -4034 ((-394 (-1083 |#1|)) (-1083 |#1|))) (-15 -1893 ((-394 (-1083 |#1|)) (-1083 |#1|))) (-15 -3908 ((-3 (-589 (-1083 |#1|)) "failed") (-589 (-1083 |#1|)) (-1083 |#1|))) (-15 -4031 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1600 ((-383 (-523)) |#1|)) (-15 -1310 ((-108) |#1|)) (-15 -2757 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2947 (|#2| |#1|)) (-15 -3984 (|#1| |#1|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1308 (|#1| |#1|)) (-15 -3564 (|#1|)) (-15 -3077 ((-823 (-355)) |#1|)) (-15 -3077 ((-823 (-523)) |#1|)) (-15 -2483 ((-820 (-355) |#1|) |#1| (-823 (-355)) (-820 (-355) |#1|))) (-15 -2483 ((-820 (-523) |#1|) |#1| (-823 (-523)) (-820 (-523) |#1|))) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -1830 ((-3 |#1| "failed") (-383 (-1083 |#2|)))) (-15 -1816 ((-1083 |#2|) |#1|)) (-15 -3077 (|#1| (-1083 |#2|))) (-15 -1830 (|#1| (-1083 |#2|))) (-15 -3399 ((-1083 |#2|))) (-15 -2203 ((-629 |#2|) (-629 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-629 (-523)) (-629 |#1|))) (-15 -1996 (|#2| |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -3077 ((-1083 |#2|) |#1|)) (-15 -4053 (|#2|)) (-15 -3077 (|#1| (-1169 |#2|))) (-15 -3077 ((-1169 |#2|) |#1|)) (-15 -2411 ((-629 |#2|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1|)) (-15 -2277 ((-1083 |#2|) |#1|)) (-15 -1606 ((-1083 |#2|) |#1|)) (-15 -4053 (|#2| (-1169 |#1|))) (-15 -2411 ((-629 |#2|) (-1169 |#1|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1| (-1169 |#1|))) (-15 -2765 (|#2| |#1|)) (-15 -4131 (|#2| |#1|)) (-15 -2262 ((-852))) (-15 -3976 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3976 (|#1| (-523))) (-15 -1698 ((-710))) (-15 ** (|#1| |#1| (-710))) (-15 -4211 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-852))) (-15 * (|#1| (-523) |#1|)) (-15 -4115 (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-852) |#1|)) (-15 -4103 (|#1| |#1| |#1|)) (-15 -3976 ((-794) |#1|)) (-15 -4037 ((-108) |#1| |#1|))) (-152 |#2|) (-158)) (T -151))
-((-1698 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-710)) (-5 *1 (-151 *3 *4)) (-4 *3 (-152 *4)))) (-2262 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-852)) (-5 *1 (-151 *3 *4)) (-4 *3 (-152 *4)))) (-4053 (*1 *2) (-12 (-4 *2 (-158)) (-5 *1 (-151 *3 *2)) (-4 *3 (-152 *2)))) (-3399 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-1083 *4)) (-5 *1 (-151 *3 *4)) (-4 *3 (-152 *4)))))
-(-10 -8 (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -3976 (|#1| |#1|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3001 ((-2 (|:| -1895 |#1|) (|:| -4235 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -3087 ((-710) |#1|)) (-15 -1227 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -2486 (|#1| |#1| |#1|)) (-15 -2501 (|#1| |#1| |#1|)) (-15 -3071 (|#1| |#1|)) (-15 ** (|#1| |#1| (-523))) (-15 * (|#1| |#1| (-383 (-523)))) (-15 * (|#1| (-383 (-523)) |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -4052 ((-108) |#1| |#1|)) (-15 -3077 ((-499) |#1|)) (-15 -3077 ((-155 (-203)) |#1|)) (-15 -3077 ((-155 (-355)) |#1|)) (-15 -2608 (|#1| |#1|)) (-15 -2588 (|#1| |#1|)) (-15 -2598 (|#1| |#1|)) (-15 -2667 (|#1| |#1|)) (-15 -2655 (|#1| |#1|)) (-15 -2680 (|#1| |#1|)) (-15 -3683 (|#1| |#1|)) (-15 -3669 (|#1| |#1|)) (-15 -3695 (|#1| |#1|)) (-15 -3756 (|#1| |#1|)) (-15 -3743 (|#1| |#1|)) (-15 -3768 (|#1| |#1|)) (-15 -2062 (|#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -2188 (|#1|)) (-15 ** (|#1| |#1| (-383 (-523)))) (-15 -4034 ((-394 (-1083 |#1|)) (-1083 |#1|))) (-15 -1893 ((-394 (-1083 |#1|)) (-1083 |#1|))) (-15 -3908 ((-3 (-589 (-1083 |#1|)) "failed") (-589 (-1083 |#1|)) (-1083 |#1|))) (-15 -4031 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1600 ((-383 (-523)) |#1|)) (-15 -1310 ((-108) |#1|)) (-15 -2757 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2947 (|#2| |#1|)) (-15 -3984 (|#1| |#1|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1308 (|#1| |#1|)) (-15 -3564 (|#1|)) (-15 -3077 ((-823 (-355)) |#1|)) (-15 -3077 ((-823 (-523)) |#1|)) (-15 -2483 ((-820 (-355) |#1|) |#1| (-823 (-355)) (-820 (-355) |#1|))) (-15 -2483 ((-820 (-523) |#1|) |#1| (-823 (-523)) (-820 (-523) |#1|))) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -1830 ((-3 |#1| "failed") (-383 (-1083 |#2|)))) (-15 -1816 ((-1083 |#2|) |#1|)) (-15 -3077 (|#1| (-1083 |#2|))) (-15 -1830 (|#1| (-1083 |#2|))) (-15 -3399 ((-1083 |#2|))) (-15 -2203 ((-629 |#2|) (-629 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-629 (-523)) (-629 |#1|))) (-15 -1996 (|#2| |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -3077 ((-1083 |#2|) |#1|)) (-15 -4053 (|#2|)) (-15 -3077 (|#1| (-1169 |#2|))) (-15 -3077 ((-1169 |#2|) |#1|)) (-15 -2411 ((-629 |#2|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1|)) (-15 -2277 ((-1083 |#2|) |#1|)) (-15 -1606 ((-1083 |#2|) |#1|)) (-15 -4053 (|#2| (-1169 |#1|))) (-15 -2411 ((-629 |#2|) (-1169 |#1|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1| (-1169 |#1|))) (-15 -2765 (|#2| |#1|)) (-15 -4131 (|#2| |#1|)) (-15 -2262 ((-852))) (-15 -3976 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3976 (|#1| (-523))) (-15 -1698 ((-710))) (-15 ** (|#1| |#1| (-710))) (-15 -4211 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-852))) (-15 * (|#1| (-523) |#1|)) (-15 -4115 (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-852) |#1|)) (-15 -4103 (|#1| |#1| |#1|)) (-15 -3976 ((-794) |#1|)) (-15 -4037 ((-108) |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 93 (-3255 (|has| |#1| (-515)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840)))))) (-3950 (($ $) 94 (-3255 (|has| |#1| (-515)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840)))))) (-3226 (((-108) $) 96 (-3255 (|has| |#1| (-515)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840)))))) (-1711 (((-629 |#1|) (-1169 $)) 46) (((-629 |#1|)) 61)) (-4131 ((|#1| $) 52)) (-3695 (($ $) 228 (|has| |#1| (-1109)))) (-2608 (($ $) 211 (|has| |#1| (-1109)))) (-2794 (((-1097 (-852) (-710)) (-523)) 147 (|has| |#1| (-325)))) (-2999 (((-3 $ "failed") $ $) 19)) (-2319 (((-394 (-1083 $)) (-1083 $)) 242 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))))) (-3763 (($ $) 113 (-3255 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-339))))) (-2105 (((-394 $) $) 114 (-3255 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-339))))) (-3584 (($ $) 241 (-12 (|has| |#1| (-930)) (|has| |#1| (-1109))))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) 245 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))))) (-3684 (((-108) $ $) 104 (|has| |#1| (-284)))) (-3843 (((-710)) 87 (|has| |#1| (-344)))) (-3669 (($ $) 227 (|has| |#1| (-1109)))) (-2588 (($ $) 212 (|has| |#1| (-1109)))) (-3717 (($ $) 226 (|has| |#1| (-1109)))) (-2629 (($ $) 213 (|has| |#1| (-1109)))) (-1640 (($) 17 T CONST)) (-2898 (((-3 (-523) "failed") $) 169 (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) 167 (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) 166)) (-1996 (((-523) $) 170 (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) 168 (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) 165)) (-3322 (($ (-1169 |#1|) (-1169 $)) 48) (($ (-1169 |#1|)) 64)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) 153 (|has| |#1| (-325)))) (-2501 (($ $ $) 108 (|has| |#1| (-284)))) (-2545 (((-629 |#1|) $ (-1169 $)) 53) (((-629 |#1|) $) 59)) (-2203 (((-629 (-523)) (-629 $)) 164 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 163 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) 162) (((-629 |#1|) (-629 $)) 161)) (-1830 (($ (-1083 |#1|)) 158) (((-3 $ "failed") (-383 (-1083 |#1|))) 155 (|has| |#1| (-339)))) (-4211 (((-3 $ "failed") $) 34)) (-3597 ((|#1| $) 253)) (-4031 (((-3 (-383 (-523)) "failed") $) 246 (|has| |#1| (-508)))) (-1310 (((-108) $) 248 (|has| |#1| (-508)))) (-1600 (((-383 (-523)) $) 247 (|has| |#1| (-508)))) (-2262 (((-852)) 54)) (-3461 (($) 90 (|has| |#1| (-344)))) (-2486 (($ $ $) 107 (|has| |#1| (-284)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 102 (|has| |#1| (-284)))) (-2097 (($) 149 (|has| |#1| (-325)))) (-1200 (((-108) $) 150 (|has| |#1| (-325)))) (-1419 (($ $ (-710)) 141 (|has| |#1| (-325))) (($ $) 140 (|has| |#1| (-325)))) (-1330 (((-108) $) 115 (-3255 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-339))))) (-2757 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 249 (-12 (|has| |#1| (-982)) (|has| |#1| (-1109))))) (-2188 (($) 238 (|has| |#1| (-1109)))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 261 (|has| |#1| (-817 (-523)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 260 (|has| |#1| (-817 (-355))))) (-1500 (((-852) $) 152 (|has| |#1| (-325))) (((-772 (-852)) $) 138 (|has| |#1| (-325)))) (-3482 (((-108) $) 31)) (-1324 (($ $ (-523)) 240 (-12 (|has| |#1| (-930)) (|has| |#1| (-1109))))) (-2765 ((|#1| $) 51)) (-1289 (((-3 $ "failed") $) 142 (|has| |#1| (-325)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 111 (|has| |#1| (-284)))) (-2277 (((-1083 |#1|) $) 44 (|has| |#1| (-339)))) (-3268 (($ $ $) 207 (|has| |#1| (-786)))) (-2644 (($ $ $) 206 (|has| |#1| (-786)))) (-3015 (($ (-1 |#1| |#1|) $) 262)) (-4076 (((-852) $) 89 (|has| |#1| (-344)))) (-2062 (($ $) 235 (|has| |#1| (-1109)))) (-1816 (((-1083 |#1|) $) 156)) (-2012 (($ (-589 $)) 100 (-3255 (|has| |#1| (-284)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840))))) (($ $ $) 99 (-3255 (|has| |#1| (-284)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840)))))) (-3841 (((-1070) $) 9)) (-3071 (($ $) 116 (|has| |#1| (-339)))) (-4105 (($) 143 (|has| |#1| (-325)) CONST)) (-2557 (($ (-852)) 88 (|has| |#1| (-344)))) (-3564 (($) 257)) (-3610 ((|#1| $) 254)) (-2435 (((-1034) $) 10)) (-4102 (($) 160)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 101 (-3255 (|has| |#1| (-284)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840)))))) (-2056 (($ (-589 $)) 98 (-3255 (|has| |#1| (-284)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840))))) (($ $ $) 97 (-3255 (|has| |#1| (-284)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840)))))) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) 146 (|has| |#1| (-325)))) (-1893 (((-394 (-1083 $)) (-1083 $)) 244 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))))) (-4034 (((-394 (-1083 $)) (-1083 $)) 243 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))))) (-3573 (((-394 $) $) 112 (-3255 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-339))))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-284))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 109 (|has| |#1| (-284)))) (-2469 (((-3 $ "failed") $ |#1|) 252 (|has| |#1| (-515))) (((-3 $ "failed") $ $) 92 (-3255 (|has| |#1| (-515)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840)))))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 103 (|has| |#1| (-284)))) (-1847 (($ $) 236 (|has| |#1| (-1109)))) (-1349 (($ $ (-589 |#1|) (-589 |#1|)) 268 (|has| |#1| (-286 |#1|))) (($ $ |#1| |#1|) 267 (|has| |#1| (-286 |#1|))) (($ $ (-271 |#1|)) 266 (|has| |#1| (-286 |#1|))) (($ $ (-589 (-271 |#1|))) 265 (|has| |#1| (-286 |#1|))) (($ $ (-589 (-1087)) (-589 |#1|)) 264 (|has| |#1| (-484 (-1087) |#1|))) (($ $ (-1087) |#1|) 263 (|has| |#1| (-484 (-1087) |#1|)))) (-3087 (((-710) $) 105 (|has| |#1| (-284)))) (-1502 (($ $ |#1|) 269 (|has| |#1| (-263 |#1| |#1|)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 106 (|has| |#1| (-284)))) (-4053 ((|#1| (-1169 $)) 47) ((|#1|) 60)) (-2041 (((-710) $) 151 (|has| |#1| (-325))) (((-3 (-710) "failed") $ $) 139 (|has| |#1| (-325)))) (-4024 (($ $ (-1 |#1| |#1|) (-710)) 123) (($ $ (-1 |#1| |#1|)) 122) (($ $ (-589 (-1087)) (-589 (-710))) 130 (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) 131 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) 132 (|has| |#1| (-831 (-1087)))) (($ $ (-1087)) 133 (|has| |#1| (-831 (-1087)))) (($ $ (-710)) 135 (-3255 (-2819 (|has| |#1| (-339)) (|has| |#1| (-211))) (|has| |#1| (-211)) (-2819 (|has| |#1| (-211)) (|has| |#1| (-339))))) (($ $) 137 (-3255 (-2819 (|has| |#1| (-339)) (|has| |#1| (-211))) (|has| |#1| (-211)) (-2819 (|has| |#1| (-211)) (|has| |#1| (-339)))))) (-1718 (((-629 |#1|) (-1169 $) (-1 |#1| |#1|)) 154 (|has| |#1| (-339)))) (-3399 (((-1083 |#1|)) 159)) (-3730 (($ $) 225 (|has| |#1| (-1109)))) (-2641 (($ $) 214 (|has| |#1| (-1109)))) (-2315 (($) 148 (|has| |#1| (-325)))) (-3707 (($ $) 224 (|has| |#1| (-1109)))) (-2617 (($ $) 215 (|has| |#1| (-1109)))) (-3683 (($ $) 223 (|has| |#1| (-1109)))) (-2598 (($ $) 216 (|has| |#1| (-1109)))) (-2411 (((-1169 |#1|) $ (-1169 $)) 50) (((-629 |#1|) (-1169 $) (-1169 $)) 49) (((-1169 |#1|) $) 66) (((-629 |#1|) (-1169 $)) 65)) (-3077 (((-1169 |#1|) $) 63) (($ (-1169 |#1|)) 62) (((-1083 |#1|) $) 171) (($ (-1083 |#1|)) 157) (((-823 (-523)) $) 259 (|has| |#1| (-564 (-823 (-523))))) (((-823 (-355)) $) 258 (|has| |#1| (-564 (-823 (-355))))) (((-155 (-355)) $) 210 (|has| |#1| (-949))) (((-155 (-203)) $) 209 (|has| |#1| (-949))) (((-499) $) 208 (|has| |#1| (-564 (-499))))) (-1308 (($ $) 256)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) 145 (-3255 (-2819 (|has| $ (-134)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840)))) (|has| |#1| (-325))))) (-2531 (($ |#1| |#1|) 255)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 37) (($ (-383 (-523))) 86 (-3255 (|has| |#1| (-339)) (|has| |#1| (-964 (-383 (-523)))))) (($ $) 91 (-3255 (|has| |#1| (-515)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840)))))) (-2301 (($ $) 144 (|has| |#1| (-325))) (((-3 $ "failed") $) 43 (-3255 (-2819 (|has| $ (-134)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840)))) (|has| |#1| (-134))))) (-1606 (((-1083 |#1|) $) 45)) (-1698 (((-710)) 29)) (-2922 (((-1169 $)) 67)) (-3768 (($ $) 234 (|has| |#1| (-1109)))) (-2680 (($ $) 222 (|has| |#1| (-1109)))) (-3842 (((-108) $ $) 95 (-3255 (|has| |#1| (-515)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840)))))) (-3743 (($ $) 233 (|has| |#1| (-1109)))) (-2655 (($ $) 221 (|has| |#1| (-1109)))) (-3793 (($ $) 232 (|has| |#1| (-1109)))) (-3645 (($ $) 220 (|has| |#1| (-1109)))) (-2947 ((|#1| $) 250 (|has| |#1| (-1109)))) (-3135 (($ $) 231 (|has| |#1| (-1109)))) (-3657 (($ $) 219 (|has| |#1| (-1109)))) (-3780 (($ $) 230 (|has| |#1| (-1109)))) (-3632 (($ $) 218 (|has| |#1| (-1109)))) (-3756 (($ $) 229 (|has| |#1| (-1109)))) (-2667 (($ $) 217 (|has| |#1| (-1109)))) (-3984 (($ $) 251 (|has| |#1| (-982)))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 117 (|has| |#1| (-339)))) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ (-1 |#1| |#1|) (-710)) 125) (($ $ (-1 |#1| |#1|)) 124) (($ $ (-589 (-1087)) (-589 (-710))) 126 (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) 127 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) 128 (|has| |#1| (-831 (-1087)))) (($ $ (-1087)) 129 (|has| |#1| (-831 (-1087)))) (($ $ (-710)) 134 (-3255 (-2819 (|has| |#1| (-339)) (|has| |#1| (-211))) (|has| |#1| (-211)) (-2819 (|has| |#1| (-211)) (|has| |#1| (-339))))) (($ $) 136 (-3255 (-2819 (|has| |#1| (-339)) (|has| |#1| (-211))) (|has| |#1| (-211)) (-2819 (|has| |#1| (-211)) (|has| |#1| (-339)))))) (-4078 (((-108) $ $) 204 (|has| |#1| (-786)))) (-4061 (((-108) $ $) 203 (|has| |#1| (-786)))) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 205 (|has| |#1| (-786)))) (-4052 (((-108) $ $) 202 (|has| |#1| (-786)))) (-4125 (($ $ $) 121 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-383 (-523))) 239 (-12 (|has| |#1| (-930)) (|has| |#1| (-1109)))) (($ $ $) 237 (|has| |#1| (-1109))) (($ $ (-523)) 118 (|has| |#1| (-339)))) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38) (($ (-383 (-523)) $) 120 (|has| |#1| (-339))) (($ $ (-383 (-523))) 119 (|has| |#1| (-339)))))
-(((-152 |#1|) (-129) (-158)) (T -152))
-((-2765 (*1 *2 *1) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158)))) (-3564 (*1 *1) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158)))) (-1308 (*1 *1 *1) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158)))) (-2531 (*1 *1 *2 *2) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158)))) (-3610 (*1 *2 *1) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158)))) (-3597 (*1 *2 *1) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158)))) (-2469 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-152 *2)) (-4 *2 (-158)) (-4 *2 (-515)))) (-3984 (*1 *1 *1) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158)) (-4 *2 (-982)))) (-2947 (*1 *2 *1) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158)) (-4 *2 (-1109)))) (-2757 (*1 *2 *1) (-12 (-4 *1 (-152 *3)) (-4 *3 (-158)) (-4 *3 (-982)) (-4 *3 (-1109)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-1310 (*1 *2 *1) (-12 (-4 *1 (-152 *3)) (-4 *3 (-158)) (-4 *3 (-508)) (-5 *2 (-108)))) (-1600 (*1 *2 *1) (-12 (-4 *1 (-152 *3)) (-4 *3 (-158)) (-4 *3 (-508)) (-5 *2 (-383 (-523))))) (-4031 (*1 *2 *1) (|partial| -12 (-4 *1 (-152 *3)) (-4 *3 (-158)) (-4 *3 (-508)) (-5 *2 (-383 (-523))))))
-(-13 (-664 |t#1| (-1083 |t#1|)) (-387 |t#1|) (-209 |t#1|) (-314 |t#1|) (-376 |t#1|) (-815 |t#1|) (-353 |t#1|) (-158) (-10 -8 (-6 -2531) (-15 -3564 ($)) (-15 -1308 ($ $)) (-15 -2531 ($ |t#1| |t#1|)) (-15 -3610 (|t#1| $)) (-15 -3597 (|t#1| $)) (-15 -2765 (|t#1| $)) (IF (|has| |t#1| (-786)) (-6 (-786)) |%noBranch|) (IF (|has| |t#1| (-515)) (PROGN (-6 (-515)) (-15 -2469 ((-3 $ "failed") $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-284)) (-6 (-284)) |%noBranch|) (IF (|has| |t#1| (-6 -4247)) (-6 -4247) |%noBranch|) (IF (|has| |t#1| (-6 -4244)) (-6 -4244) |%noBranch|) (IF (|has| |t#1| (-339)) (-6 (-339)) |%noBranch|) (IF (|has| |t#1| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|) (IF (|has| |t#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |t#1| (-134)) (-6 (-134)) |%noBranch|) (IF (|has| |t#1| (-949)) (PROGN (-6 (-564 (-155 (-203)))) (-6 (-564 (-155 (-355))))) |%noBranch|) (IF (|has| |t#1| (-982)) (-15 -3984 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1109)) (PROGN (-6 (-1109)) (-15 -2947 (|t#1| $)) (IF (|has| |t#1| (-930)) (-6 (-930)) |%noBranch|) (IF (|has| |t#1| (-982)) (-15 -2757 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-508)) (PROGN (-15 -1310 ((-108) $)) (-15 -1600 ((-383 (-523)) $)) (-15 -4031 ((-3 (-383 (-523)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-840)) (IF (|has| |t#1| (-284)) (-6 (-840)) |%noBranch|) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-37 |#1|) . T) ((-37 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-325)) (|has| |#1| (-339)) (|has| |#1| (-284))) ((-34) |has| |#1| (-1109)) ((-91) |has| |#1| (-1109)) ((-97) . T) ((-107 #0# #0#) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-124) . T) ((-134) -3255 (|has| |#1| (-325)) (|has| |#1| (-134))) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) . T) ((-564 (-155 (-203))) |has| |#1| (-949)) ((-564 (-155 (-355))) |has| |#1| (-949)) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-564 (-823 (-355))) |has| |#1| (-564 (-823 (-355)))) ((-564 (-823 (-523))) |has| |#1| (-564 (-823 (-523)))) ((-564 #1=(-1083 |#1|)) . T) ((-209 |#1|) . T) ((-211) -3255 (|has| |#1| (-325)) (|has| |#1| (-211))) ((-221) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-261) |has| |#1| (-1109)) ((-263 |#1| $) |has| |#1| (-263 |#1| |#1|)) ((-267) -3255 (|has| |#1| (-515)) (|has| |#1| (-325)) (|has| |#1| (-339)) (|has| |#1| (-284))) ((-284) -3255 (|has| |#1| (-325)) (|has| |#1| (-339)) (|has| |#1| (-284))) ((-286 |#1|) |has| |#1| (-286 |#1|)) ((-339) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-378) |has| |#1| (-325)) ((-344) -3255 (|has| |#1| (-344)) (|has| |#1| (-325))) ((-325) |has| |#1| (-325)) ((-346 |#1| #1#) . T) ((-385 |#1| #1#) . T) ((-314 |#1|) . T) ((-353 |#1|) . T) ((-376 |#1|) . T) ((-387 |#1|) . T) ((-427) -3255 (|has| |#1| (-325)) (|has| |#1| (-339)) (|has| |#1| (-284))) ((-464) |has| |#1| (-1109)) ((-484 (-1087) |#1|) |has| |#1| (-484 (-1087) |#1|)) ((-484 |#1| |#1|) |has| |#1| (-286 |#1|)) ((-515) -3255 (|has| |#1| (-515)) (|has| |#1| (-325)) (|has| |#1| (-339)) (|has| |#1| (-284))) ((-591 #0#) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-591 |#1|) . T) ((-591 $) . T) ((-585 (-523)) |has| |#1| (-585 (-523))) ((-585 |#1|) . T) ((-657 #0#) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-657 |#1|) . T) ((-657 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-325)) (|has| |#1| (-339)) (|has| |#1| (-284))) ((-664 |#1| #1#) . T) ((-666) . T) ((-786) |has| |#1| (-786)) ((-831 (-1087)) |has| |#1| (-831 (-1087))) ((-817 (-355)) |has| |#1| (-817 (-355))) ((-817 (-523)) |has| |#1| (-817 (-523))) ((-815 |#1|) . T) ((-840) -12 (|has| |#1| (-284)) (|has| |#1| (-840))) ((-851) -3255 (|has| |#1| (-325)) (|has| |#1| (-339)) (|has| |#1| (-284))) ((-930) -12 (|has| |#1| (-930)) (|has| |#1| (-1109))) ((-964 (-383 (-523))) |has| |#1| (-964 (-383 (-523)))) ((-964 (-523)) |has| |#1| (-964 (-523))) ((-964 |#1|) . T) ((-979 #0#) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-979 |#1|) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1063) |has| |#1| (-325)) ((-1109) |has| |#1| (-1109)) ((-1112) |has| |#1| (-1109)) ((-1123) . T) ((-1127) -3255 (|has| |#1| (-325)) (|has| |#1| (-339)) (-12 (|has| |#1| (-284)) (|has| |#1| (-840)))))
-((-3573 (((-394 |#2|) |#2|) 63)))
-(((-153 |#1| |#2|) (-10 -7 (-15 -3573 ((-394 |#2|) |#2|))) (-284) (-1145 (-155 |#1|))) (T -153))
-((-3573 (*1 *2 *3) (-12 (-4 *4 (-284)) (-5 *2 (-394 *3)) (-5 *1 (-153 *4 *3)) (-4 *3 (-1145 (-155 *4))))))
-(-10 -7 (-15 -3573 ((-394 |#2|) |#2|)))
-((-3015 (((-155 |#2|) (-1 |#2| |#1|) (-155 |#1|)) 14)))
-(((-154 |#1| |#2|) (-10 -7 (-15 -3015 ((-155 |#2|) (-1 |#2| |#1|) (-155 |#1|)))) (-158) (-158)) (T -154))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-155 *5)) (-4 *5 (-158)) (-4 *6 (-158)) (-5 *2 (-155 *6)) (-5 *1 (-154 *5 *6)))))
-(-10 -7 (-15 -3015 ((-155 |#2|) (-1 |#2| |#1|) (-155 |#1|))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 33)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (-3255 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-515))))) (-3950 (($ $) NIL (-3255 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-515))))) (-3226 (((-108) $) NIL (-3255 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-515))))) (-1711 (((-629 |#1|) (-1169 $)) NIL) (((-629 |#1|)) NIL)) (-4131 ((|#1| $) NIL)) (-3695 (($ $) NIL (|has| |#1| (-1109)))) (-2608 (($ $) NIL (|has| |#1| (-1109)))) (-2794 (((-1097 (-852) (-710)) (-523)) NIL (|has| |#1| (-325)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (-12 (|has| |#1| (-284)) (|has| |#1| (-840))))) (-3763 (($ $) NIL (-3255 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-339))))) (-2105 (((-394 $) $) NIL (-3255 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-339))))) (-3584 (($ $) NIL (-12 (|has| |#1| (-930)) (|has| |#1| (-1109))))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (-12 (|has| |#1| (-284)) (|has| |#1| (-840))))) (-3684 (((-108) $ $) NIL (|has| |#1| (-284)))) (-3843 (((-710)) NIL (|has| |#1| (-344)))) (-3669 (($ $) NIL (|has| |#1| (-1109)))) (-2588 (($ $) NIL (|has| |#1| (-1109)))) (-3717 (($ $) NIL (|has| |#1| (-1109)))) (-2629 (($ $) NIL (|has| |#1| (-1109)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) NIL)) (-1996 (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) NIL)) (-3322 (($ (-1169 |#1|) (-1169 $)) NIL) (($ (-1169 |#1|)) NIL)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-325)))) (-2501 (($ $ $) NIL (|has| |#1| (-284)))) (-2545 (((-629 |#1|) $ (-1169 $)) NIL) (((-629 |#1|) $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) NIL) (((-629 |#1|) (-629 $)) NIL)) (-1830 (($ (-1083 |#1|)) NIL) (((-3 $ "failed") (-383 (-1083 |#1|))) NIL (|has| |#1| (-339)))) (-4211 (((-3 $ "failed") $) NIL)) (-3597 ((|#1| $) 13)) (-4031 (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-508)))) (-1310 (((-108) $) NIL (|has| |#1| (-508)))) (-1600 (((-383 (-523)) $) NIL (|has| |#1| (-508)))) (-2262 (((-852)) NIL)) (-3461 (($) NIL (|has| |#1| (-344)))) (-2486 (($ $ $) NIL (|has| |#1| (-284)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#1| (-284)))) (-2097 (($) NIL (|has| |#1| (-325)))) (-1200 (((-108) $) NIL (|has| |#1| (-325)))) (-1419 (($ $ (-710)) NIL (|has| |#1| (-325))) (($ $) NIL (|has| |#1| (-325)))) (-1330 (((-108) $) NIL (-3255 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-339))))) (-2757 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-982)) (|has| |#1| (-1109))))) (-2188 (($) NIL (|has| |#1| (-1109)))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (|has| |#1| (-817 (-523)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (|has| |#1| (-817 (-355))))) (-1500 (((-852) $) NIL (|has| |#1| (-325))) (((-772 (-852)) $) NIL (|has| |#1| (-325)))) (-3482 (((-108) $) 35)) (-1324 (($ $ (-523)) NIL (-12 (|has| |#1| (-930)) (|has| |#1| (-1109))))) (-2765 ((|#1| $) 46)) (-1289 (((-3 $ "failed") $) NIL (|has| |#1| (-325)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-284)))) (-2277 (((-1083 |#1|) $) NIL (|has| |#1| (-339)))) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-4076 (((-852) $) NIL (|has| |#1| (-344)))) (-2062 (($ $) NIL (|has| |#1| (-1109)))) (-1816 (((-1083 |#1|) $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-284))) (($ $ $) NIL (|has| |#1| (-284)))) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL (|has| |#1| (-339)))) (-4105 (($) NIL (|has| |#1| (-325)) CONST)) (-2557 (($ (-852)) NIL (|has| |#1| (-344)))) (-3564 (($) NIL)) (-3610 ((|#1| $) 15)) (-2435 (((-1034) $) NIL)) (-4102 (($) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-284)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-284))) (($ $ $) NIL (|has| |#1| (-284)))) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) NIL (|has| |#1| (-325)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (-12 (|has| |#1| (-284)) (|has| |#1| (-840))))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (-12 (|has| |#1| (-284)) (|has| |#1| (-840))))) (-3573 (((-394 $) $) NIL (-3255 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-339))))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-284))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-284)))) (-2469 (((-3 $ "failed") $ |#1|) 44 (|has| |#1| (-515))) (((-3 $ "failed") $ $) 47 (-3255 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-515))))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-284)))) (-1847 (($ $) NIL (|has| |#1| (-1109)))) (-1349 (($ $ (-589 |#1|) (-589 |#1|)) NIL (|has| |#1| (-286 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-286 |#1|))) (($ $ (-271 |#1|)) NIL (|has| |#1| (-286 |#1|))) (($ $ (-589 (-271 |#1|))) NIL (|has| |#1| (-286 |#1|))) (($ $ (-589 (-1087)) (-589 |#1|)) NIL (|has| |#1| (-484 (-1087) |#1|))) (($ $ (-1087) |#1|) NIL (|has| |#1| (-484 (-1087) |#1|)))) (-3087 (((-710) $) NIL (|has| |#1| (-284)))) (-1502 (($ $ |#1|) NIL (|has| |#1| (-263 |#1| |#1|)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-284)))) (-4053 ((|#1| (-1169 $)) NIL) ((|#1|) NIL)) (-2041 (((-710) $) NIL (|has| |#1| (-325))) (((-3 (-710) "failed") $ $) NIL (|has| |#1| (-325)))) (-4024 (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $) NIL (|has| |#1| (-211)))) (-1718 (((-629 |#1|) (-1169 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-339)))) (-3399 (((-1083 |#1|)) NIL)) (-3730 (($ $) NIL (|has| |#1| (-1109)))) (-2641 (($ $) NIL (|has| |#1| (-1109)))) (-2315 (($) NIL (|has| |#1| (-325)))) (-3707 (($ $) NIL (|has| |#1| (-1109)))) (-2617 (($ $) NIL (|has| |#1| (-1109)))) (-3683 (($ $) NIL (|has| |#1| (-1109)))) (-2598 (($ $) NIL (|has| |#1| (-1109)))) (-2411 (((-1169 |#1|) $ (-1169 $)) NIL) (((-629 |#1|) (-1169 $) (-1169 $)) NIL) (((-1169 |#1|) $) NIL) (((-629 |#1|) (-1169 $)) NIL)) (-3077 (((-1169 |#1|) $) NIL) (($ (-1169 |#1|)) NIL) (((-1083 |#1|) $) NIL) (($ (-1083 |#1|)) NIL) (((-823 (-523)) $) NIL (|has| |#1| (-564 (-823 (-523))))) (((-823 (-355)) $) NIL (|has| |#1| (-564 (-823 (-355))))) (((-155 (-355)) $) NIL (|has| |#1| (-949))) (((-155 (-203)) $) NIL (|has| |#1| (-949))) (((-499) $) NIL (|has| |#1| (-564 (-499))))) (-1308 (($ $) 45)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-325))))) (-2531 (($ |#1| |#1|) 37)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#1|) 36) (($ (-383 (-523))) NIL (-3255 (|has| |#1| (-339)) (|has| |#1| (-964 (-383 (-523)))))) (($ $) NIL (-3255 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-515))))) (-2301 (($ $) NIL (|has| |#1| (-325))) (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-134))))) (-1606 (((-1083 |#1|) $) NIL)) (-1698 (((-710)) NIL)) (-2922 (((-1169 $)) NIL)) (-3768 (($ $) NIL (|has| |#1| (-1109)))) (-2680 (($ $) NIL (|has| |#1| (-1109)))) (-3842 (((-108) $ $) NIL (-3255 (-12 (|has| |#1| (-284)) (|has| |#1| (-840))) (|has| |#1| (-515))))) (-3743 (($ $) NIL (|has| |#1| (-1109)))) (-2655 (($ $) NIL (|has| |#1| (-1109)))) (-3793 (($ $) NIL (|has| |#1| (-1109)))) (-3645 (($ $) NIL (|has| |#1| (-1109)))) (-2947 ((|#1| $) NIL (|has| |#1| (-1109)))) (-3135 (($ $) NIL (|has| |#1| (-1109)))) (-3657 (($ $) NIL (|has| |#1| (-1109)))) (-3780 (($ $) NIL (|has| |#1| (-1109)))) (-3632 (($ $) NIL (|has| |#1| (-1109)))) (-3756 (($ $) NIL (|has| |#1| (-1109)))) (-2667 (($ $) NIL (|has| |#1| (-1109)))) (-3984 (($ $) NIL (|has| |#1| (-982)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339)))) (-1428 (($) 28 T CONST)) (-1440 (($) 30 T CONST)) (-3342 (((-1070) $) 23 (|has| |#1| (-767))) (((-1070) $ (-108)) 25 (|has| |#1| (-767))) (((-1174) (-761) $) 26 (|has| |#1| (-767))) (((-1174) (-761) $ (-108)) 27 (|has| |#1| (-767)))) (-1943 (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $) NIL (|has| |#1| (-211)))) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4125 (($ $ $) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) 39)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-383 (-523))) NIL (-12 (|has| |#1| (-930)) (|has| |#1| (-1109)))) (($ $ $) NIL (|has| |#1| (-1109))) (($ $ (-523)) NIL (|has| |#1| (-339)))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 42) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-383 (-523)) $) NIL (|has| |#1| (-339))) (($ $ (-383 (-523))) NIL (|has| |#1| (-339)))))
-(((-155 |#1|) (-13 (-152 |#1|) (-10 -7 (IF (|has| |#1| (-767)) (-6 (-767)) |%noBranch|))) (-158)) (T -155))
-NIL
-(-13 (-152 |#1|) (-10 -7 (IF (|has| |#1| (-767)) (-6 (-767)) |%noBranch|)))
-((-3077 (((-823 |#1|) |#3|) 22)))
-(((-156 |#1| |#2| |#3|) (-10 -7 (-15 -3077 ((-823 |#1|) |#3|))) (-1016) (-13 (-564 (-823 |#1|)) (-158)) (-152 |#2|)) (T -156))
-((-3077 (*1 *2 *3) (-12 (-4 *5 (-13 (-564 *2) (-158))) (-5 *2 (-823 *4)) (-5 *1 (-156 *4 *5 *3)) (-4 *4 (-1016)) (-4 *3 (-152 *5)))))
-(-10 -7 (-15 -3077 ((-823 |#1|) |#3|)))
-((-3260 (((-108) $ $) NIL)) (-1997 (((-108) $) 9)) (-2681 (((-108) $ (-108)) 11)) (-2348 (($) 12)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-4124 (($ $) 13)) (-3976 (((-794) $) 17)) (-1572 (((-108) $) 8)) (-3922 (((-108) $ (-108)) 10)) (-4037 (((-108) $ $) NIL)))
-(((-157) (-13 (-1016) (-10 -8 (-15 -2348 ($)) (-15 -1572 ((-108) $)) (-15 -1997 ((-108) $)) (-15 -3922 ((-108) $ (-108))) (-15 -2681 ((-108) $ (-108))) (-15 -4124 ($ $))))) (T -157))
-((-2348 (*1 *1) (-5 *1 (-157))) (-1572 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-157)))) (-1997 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-157)))) (-3922 (*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-157)))) (-2681 (*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-157)))) (-4124 (*1 *1 *1) (-5 *1 (-157))))
-(-13 (-1016) (-10 -8 (-15 -2348 ($)) (-15 -1572 ((-108) $)) (-15 -1997 ((-108) $)) (-15 -3922 ((-108) $ (-108))) (-15 -2681 ((-108) $ (-108))) (-15 -4124 ($ $))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11) (($ (-523)) 28)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-158) (-129)) (T -158))
-NIL
-(-13 (-973) (-107 $ $) (-10 -7 (-6 (-4250 "*"))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 $) . T) ((-666) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3964 ((|#1| $) 75)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-1640 (($) NIL T CONST)) (-2501 (($ $ $) NIL)) (-2585 (($ $) 19)) (-2419 (($ |#1| (-1068 |#1|)) 48)) (-4211 (((-3 $ "failed") $) 117)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-3915 (((-1068 |#1|) $) 82)) (-1646 (((-1068 |#1|) $) 79)) (-3179 (((-1068 |#1|) $) 80)) (-3482 (((-108) $) NIL)) (-1493 (((-1068 |#1|) $) 88)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2012 (($ (-589 $)) NIL) (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ (-589 $)) NIL) (($ $ $) NIL)) (-3573 (((-394 $) $) NIL)) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL)) (-1361 (($ $ (-523)) 91)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2750 (((-1068 |#1|) $) 89)) (-2876 (((-1068 (-383 |#1|)) $) 14)) (-3264 (($ (-383 |#1|)) 17) (($ |#1| (-1068 |#1|) (-1068 |#1|)) 38)) (-3749 (($ $) 93)) (-3976 (((-794) $) 127) (($ (-523)) 51) (($ |#1|) 52) (($ (-383 |#1|)) 36) (($ (-383 (-523))) NIL) (($ $) NIL)) (-1698 (((-710)) 64)) (-3842 (((-108) $ $) NIL)) (-1751 (((-1068 (-383 |#1|)) $) 18)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) 25 T CONST)) (-1440 (($) 28 T CONST)) (-4037 (((-108) $ $) 35)) (-4125 (($ $ $) 115)) (-4115 (($ $) 106) (($ $ $) 103)) (-4103 (($ $ $) 101)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 113) (($ $ $) 108) (($ $ |#1|) NIL) (($ |#1| $) 110) (($ (-383 |#1|) $) 111) (($ $ (-383 |#1|)) NIL) (($ (-383 (-523)) $) NIL) (($ $ (-383 (-523))) NIL)))
-(((-159 |#1|) (-13 (-37 |#1|) (-37 (-383 |#1|)) (-339) (-10 -8 (-15 -3264 ($ (-383 |#1|))) (-15 -3264 ($ |#1| (-1068 |#1|) (-1068 |#1|))) (-15 -2419 ($ |#1| (-1068 |#1|))) (-15 -1646 ((-1068 |#1|) $)) (-15 -3179 ((-1068 |#1|) $)) (-15 -3915 ((-1068 |#1|) $)) (-15 -3964 (|#1| $)) (-15 -2585 ($ $)) (-15 -1751 ((-1068 (-383 |#1|)) $)) (-15 -2876 ((-1068 (-383 |#1|)) $)) (-15 -1493 ((-1068 |#1|) $)) (-15 -2750 ((-1068 |#1|) $)) (-15 -1361 ($ $ (-523))) (-15 -3749 ($ $)))) (-284)) (T -159))
-((-3264 (*1 *1 *2) (-12 (-5 *2 (-383 *3)) (-4 *3 (-284)) (-5 *1 (-159 *3)))) (-3264 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1068 *2)) (-4 *2 (-284)) (-5 *1 (-159 *2)))) (-2419 (*1 *1 *2 *3) (-12 (-5 *3 (-1068 *2)) (-4 *2 (-284)) (-5 *1 (-159 *2)))) (-1646 (*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-159 *3)) (-4 *3 (-284)))) (-3179 (*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-159 *3)) (-4 *3 (-284)))) (-3915 (*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-159 *3)) (-4 *3 (-284)))) (-3964 (*1 *2 *1) (-12 (-5 *1 (-159 *2)) (-4 *2 (-284)))) (-2585 (*1 *1 *1) (-12 (-5 *1 (-159 *2)) (-4 *2 (-284)))) (-1751 (*1 *2 *1) (-12 (-5 *2 (-1068 (-383 *3))) (-5 *1 (-159 *3)) (-4 *3 (-284)))) (-2876 (*1 *2 *1) (-12 (-5 *2 (-1068 (-383 *3))) (-5 *1 (-159 *3)) (-4 *3 (-284)))) (-1493 (*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-159 *3)) (-4 *3 (-284)))) (-2750 (*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-159 *3)) (-4 *3 (-284)))) (-1361 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-159 *3)) (-4 *3 (-284)))) (-3749 (*1 *1 *1) (-12 (-5 *1 (-159 *2)) (-4 *2 (-284)))))
-(-13 (-37 |#1|) (-37 (-383 |#1|)) (-339) (-10 -8 (-15 -3264 ($ (-383 |#1|))) (-15 -3264 ($ |#1| (-1068 |#1|) (-1068 |#1|))) (-15 -2419 ($ |#1| (-1068 |#1|))) (-15 -1646 ((-1068 |#1|) $)) (-15 -3179 ((-1068 |#1|) $)) (-15 -3915 ((-1068 |#1|) $)) (-15 -3964 (|#1| $)) (-15 -2585 ($ $)) (-15 -1751 ((-1068 (-383 |#1|)) $)) (-15 -2876 ((-1068 (-383 |#1|)) $)) (-15 -1493 ((-1068 |#1|) $)) (-15 -2750 ((-1068 |#1|) $)) (-15 -1361 ($ $ (-523))) (-15 -3749 ($ $))))
-((-3194 (($ (-104) $) 13)) (-1460 (((-3 (-104) "failed") (-1087) $) 12)) (-3976 (((-794) $) 16)) (-2421 (((-589 (-104)) $) 8)))
-(((-160) (-13 (-563 (-794)) (-10 -8 (-15 -2421 ((-589 (-104)) $)) (-15 -3194 ($ (-104) $)) (-15 -1460 ((-3 (-104) "failed") (-1087) $))))) (T -160))
-((-2421 (*1 *2 *1) (-12 (-5 *2 (-589 (-104))) (-5 *1 (-160)))) (-3194 (*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-160)))) (-1460 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1087)) (-5 *2 (-104)) (-5 *1 (-160)))))
-(-13 (-563 (-794)) (-10 -8 (-15 -2421 ((-589 (-104)) $)) (-15 -3194 ($ (-104) $)) (-15 -1460 ((-3 (-104) "failed") (-1087) $))))
-((-3203 (((-1 (-874 |#1|) (-874 |#1|)) |#1|) 40)) (-2377 (((-874 |#1|) (-874 |#1|)) 19)) (-3187 (((-1 (-874 |#1|) (-874 |#1|)) |#1|) 36)) (-3492 (((-874 |#1|) (-874 |#1|)) 17)) (-1307 (((-874 |#1|) (-874 |#1|)) 25)) (-1832 (((-874 |#1|) (-874 |#1|)) 24)) (-4127 (((-874 |#1|) (-874 |#1|)) 23)) (-1955 (((-1 (-874 |#1|) (-874 |#1|)) |#1|) 37)) (-2426 (((-1 (-874 |#1|) (-874 |#1|)) |#1|) 35)) (-2632 (((-1 (-874 |#1|) (-874 |#1|)) |#1|) 34)) (-3787 (((-874 |#1|) (-874 |#1|)) 18)) (-3140 (((-1 (-874 |#1|) (-874 |#1|)) |#1| |#1|) 43)) (-2079 (((-874 |#1|) (-874 |#1|)) 8)) (-1838 (((-1 (-874 |#1|) (-874 |#1|)) |#1|) 39)) (-1215 (((-1 (-874 |#1|) (-874 |#1|)) |#1|) 38)))
-(((-161 |#1|) (-10 -7 (-15 -2079 ((-874 |#1|) (-874 |#1|))) (-15 -3492 ((-874 |#1|) (-874 |#1|))) (-15 -3787 ((-874 |#1|) (-874 |#1|))) (-15 -2377 ((-874 |#1|) (-874 |#1|))) (-15 -4127 ((-874 |#1|) (-874 |#1|))) (-15 -1832 ((-874 |#1|) (-874 |#1|))) (-15 -1307 ((-874 |#1|) (-874 |#1|))) (-15 -2632 ((-1 (-874 |#1|) (-874 |#1|)) |#1|)) (-15 -2426 ((-1 (-874 |#1|) (-874 |#1|)) |#1|)) (-15 -3187 ((-1 (-874 |#1|) (-874 |#1|)) |#1|)) (-15 -1955 ((-1 (-874 |#1|) (-874 |#1|)) |#1|)) (-15 -1215 ((-1 (-874 |#1|) (-874 |#1|)) |#1|)) (-15 -1838 ((-1 (-874 |#1|) (-874 |#1|)) |#1|)) (-15 -3203 ((-1 (-874 |#1|) (-874 |#1|)) |#1|)) (-15 -3140 ((-1 (-874 |#1|) (-874 |#1|)) |#1| |#1|))) (-13 (-339) (-1109) (-930))) (T -161))
-((-3140 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3)) (-4 *3 (-13 (-339) (-1109) (-930))))) (-3203 (*1 *2 *3) (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3)) (-4 *3 (-13 (-339) (-1109) (-930))))) (-1838 (*1 *2 *3) (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3)) (-4 *3 (-13 (-339) (-1109) (-930))))) (-1215 (*1 *2 *3) (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3)) (-4 *3 (-13 (-339) (-1109) (-930))))) (-1955 (*1 *2 *3) (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3)) (-4 *3 (-13 (-339) (-1109) (-930))))) (-3187 (*1 *2 *3) (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3)) (-4 *3 (-13 (-339) (-1109) (-930))))) (-2426 (*1 *2 *3) (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3)) (-4 *3 (-13 (-339) (-1109) (-930))))) (-2632 (*1 *2 *3) (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3)) (-4 *3 (-13 (-339) (-1109) (-930))))) (-1307 (*1 *2 *2) (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109) (-930))) (-5 *1 (-161 *3)))) (-1832 (*1 *2 *2) (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109) (-930))) (-5 *1 (-161 *3)))) (-4127 (*1 *2 *2) (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109) (-930))) (-5 *1 (-161 *3)))) (-2377 (*1 *2 *2) (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109) (-930))) (-5 *1 (-161 *3)))) (-3787 (*1 *2 *2) (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109) (-930))) (-5 *1 (-161 *3)))) (-3492 (*1 *2 *2) (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109) (-930))) (-5 *1 (-161 *3)))) (-2079 (*1 *2 *2) (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109) (-930))) (-5 *1 (-161 *3)))))
-(-10 -7 (-15 -2079 ((-874 |#1|) (-874 |#1|))) (-15 -3492 ((-874 |#1|) (-874 |#1|))) (-15 -3787 ((-874 |#1|) (-874 |#1|))) (-15 -2377 ((-874 |#1|) (-874 |#1|))) (-15 -4127 ((-874 |#1|) (-874 |#1|))) (-15 -1832 ((-874 |#1|) (-874 |#1|))) (-15 -1307 ((-874 |#1|) (-874 |#1|))) (-15 -2632 ((-1 (-874 |#1|) (-874 |#1|)) |#1|)) (-15 -2426 ((-1 (-874 |#1|) (-874 |#1|)) |#1|)) (-15 -3187 ((-1 (-874 |#1|) (-874 |#1|)) |#1|)) (-15 -1955 ((-1 (-874 |#1|) (-874 |#1|)) |#1|)) (-15 -1215 ((-1 (-874 |#1|) (-874 |#1|)) |#1|)) (-15 -1838 ((-1 (-874 |#1|) (-874 |#1|)) |#1|)) (-15 -3203 ((-1 (-874 |#1|) (-874 |#1|)) |#1|)) (-15 -3140 ((-1 (-874 |#1|) (-874 |#1|)) |#1| |#1|)))
-((-1606 ((|#2| |#3|) 27)))
-(((-162 |#1| |#2| |#3|) (-10 -7 (-15 -1606 (|#2| |#3|))) (-158) (-1145 |#1|) (-664 |#1| |#2|)) (T -162))
-((-1606 (*1 *2 *3) (-12 (-4 *4 (-158)) (-4 *2 (-1145 *4)) (-5 *1 (-162 *4 *2 *3)) (-4 *3 (-664 *4 *2)))))
-(-10 -7 (-15 -1606 (|#2| |#3|)))
-((-2483 (((-820 |#1| |#3|) |#3| (-823 |#1|) (-820 |#1| |#3|)) 47 (|has| (-883 |#2|) (-817 |#1|)))))
-(((-163 |#1| |#2| |#3|) (-10 -7 (IF (|has| (-883 |#2|) (-817 |#1|)) (-15 -2483 ((-820 |#1| |#3|) |#3| (-823 |#1|) (-820 |#1| |#3|))) |%noBranch|)) (-1016) (-13 (-817 |#1|) (-158)) (-152 |#2|)) (T -163))
-((-2483 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-820 *5 *3)) (-5 *4 (-823 *5)) (-4 *5 (-1016)) (-4 *3 (-152 *6)) (-4 (-883 *6) (-817 *5)) (-4 *6 (-13 (-817 *5) (-158))) (-5 *1 (-163 *5 *6 *3)))))
-(-10 -7 (IF (|has| (-883 |#2|) (-817 |#1|)) (-15 -2483 ((-820 |#1| |#3|) |#3| (-823 |#1|) (-820 |#1| |#3|))) |%noBranch|))
-((-2833 (((-589 |#1|) (-589 |#1|) |#1|) 38)) (-4045 (((-589 |#1|) |#1| (-589 |#1|)) 19)) (-1968 (((-589 |#1|) (-589 (-589 |#1|)) (-589 |#1|)) 33) ((|#1| (-589 |#1|) (-589 |#1|)) 31)))
-(((-164 |#1|) (-10 -7 (-15 -4045 ((-589 |#1|) |#1| (-589 |#1|))) (-15 -1968 (|#1| (-589 |#1|) (-589 |#1|))) (-15 -1968 ((-589 |#1|) (-589 (-589 |#1|)) (-589 |#1|))) (-15 -2833 ((-589 |#1|) (-589 |#1|) |#1|))) (-284)) (T -164))
-((-2833 (*1 *2 *2 *3) (-12 (-5 *2 (-589 *3)) (-4 *3 (-284)) (-5 *1 (-164 *3)))) (-1968 (*1 *2 *3 *2) (-12 (-5 *3 (-589 (-589 *4))) (-5 *2 (-589 *4)) (-4 *4 (-284)) (-5 *1 (-164 *4)))) (-1968 (*1 *2 *3 *3) (-12 (-5 *3 (-589 *2)) (-5 *1 (-164 *2)) (-4 *2 (-284)))) (-4045 (*1 *2 *3 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-284)) (-5 *1 (-164 *3)))))
-(-10 -7 (-15 -4045 ((-589 |#1|) |#1| (-589 |#1|))) (-15 -1968 (|#1| (-589 |#1|) (-589 |#1|))) (-15 -1968 ((-589 |#1|) (-589 (-589 |#1|)) (-589 |#1|))) (-15 -2833 ((-589 |#1|) (-589 |#1|) |#1|)))
-((-4051 (((-2 (|:| |start| |#2|) (|:| -3286 (-394 |#2|))) |#2|) 61)) (-4202 ((|#1| |#1|) 54)) (-1901 (((-155 |#1|) |#2|) 84)) (-2302 ((|#1| |#2|) 123) ((|#1| |#2| |#1|) 82)) (-4144 ((|#2| |#2|) 83)) (-4157 (((-394 |#2|) |#2| |#1|) 113) (((-394 |#2|) |#2| |#1| (-108)) 81)) (-2765 ((|#1| |#2|) 112)) (-3125 ((|#2| |#2|) 119)) (-3573 (((-394 |#2|) |#2|) 134) (((-394 |#2|) |#2| |#1|) 32) (((-394 |#2|) |#2| |#1| (-108)) 133)) (-3723 (((-589 (-2 (|:| -3286 (-589 |#2|)) (|:| -2052 |#1|))) |#2| |#2|) 132) (((-589 (-2 (|:| -3286 (-589 |#2|)) (|:| -2052 |#1|))) |#2| |#2| (-108)) 76)) (-2155 (((-589 (-155 |#1|)) |#2| |#1|) 40) (((-589 (-155 |#1|)) |#2|) 41)))
-(((-165 |#1| |#2|) (-10 -7 (-15 -2155 ((-589 (-155 |#1|)) |#2|)) (-15 -2155 ((-589 (-155 |#1|)) |#2| |#1|)) (-15 -3723 ((-589 (-2 (|:| -3286 (-589 |#2|)) (|:| -2052 |#1|))) |#2| |#2| (-108))) (-15 -3723 ((-589 (-2 (|:| -3286 (-589 |#2|)) (|:| -2052 |#1|))) |#2| |#2|)) (-15 -3573 ((-394 |#2|) |#2| |#1| (-108))) (-15 -3573 ((-394 |#2|) |#2| |#1|)) (-15 -3573 ((-394 |#2|) |#2|)) (-15 -3125 (|#2| |#2|)) (-15 -2765 (|#1| |#2|)) (-15 -4157 ((-394 |#2|) |#2| |#1| (-108))) (-15 -4157 ((-394 |#2|) |#2| |#1|)) (-15 -4144 (|#2| |#2|)) (-15 -2302 (|#1| |#2| |#1|)) (-15 -2302 (|#1| |#2|)) (-15 -1901 ((-155 |#1|) |#2|)) (-15 -4202 (|#1| |#1|)) (-15 -4051 ((-2 (|:| |start| |#2|) (|:| -3286 (-394 |#2|))) |#2|))) (-13 (-339) (-784)) (-1145 (-155 |#1|))) (T -165))
-((-4051 (*1 *2 *3) (-12 (-4 *4 (-13 (-339) (-784))) (-5 *2 (-2 (|:| |start| *3) (|:| -3286 (-394 *3)))) (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4))))) (-4202 (*1 *2 *2) (-12 (-4 *2 (-13 (-339) (-784))) (-5 *1 (-165 *2 *3)) (-4 *3 (-1145 (-155 *2))))) (-1901 (*1 *2 *3) (-12 (-5 *2 (-155 *4)) (-5 *1 (-165 *4 *3)) (-4 *4 (-13 (-339) (-784))) (-4 *3 (-1145 *2)))) (-2302 (*1 *2 *3) (-12 (-4 *2 (-13 (-339) (-784))) (-5 *1 (-165 *2 *3)) (-4 *3 (-1145 (-155 *2))))) (-2302 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-339) (-784))) (-5 *1 (-165 *2 *3)) (-4 *3 (-1145 (-155 *2))))) (-4144 (*1 *2 *2) (-12 (-4 *3 (-13 (-339) (-784))) (-5 *1 (-165 *3 *2)) (-4 *2 (-1145 (-155 *3))))) (-4157 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-339) (-784))) (-5 *2 (-394 *3)) (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4))))) (-4157 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-108)) (-4 *4 (-13 (-339) (-784))) (-5 *2 (-394 *3)) (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4))))) (-2765 (*1 *2 *3) (-12 (-4 *2 (-13 (-339) (-784))) (-5 *1 (-165 *2 *3)) (-4 *3 (-1145 (-155 *2))))) (-3125 (*1 *2 *2) (-12 (-4 *3 (-13 (-339) (-784))) (-5 *1 (-165 *3 *2)) (-4 *2 (-1145 (-155 *3))))) (-3573 (*1 *2 *3) (-12 (-4 *4 (-13 (-339) (-784))) (-5 *2 (-394 *3)) (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4))))) (-3573 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-339) (-784))) (-5 *2 (-394 *3)) (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4))))) (-3573 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-108)) (-4 *4 (-13 (-339) (-784))) (-5 *2 (-394 *3)) (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4))))) (-3723 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-339) (-784))) (-5 *2 (-589 (-2 (|:| -3286 (-589 *3)) (|:| -2052 *4)))) (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4))))) (-3723 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-339) (-784))) (-5 *2 (-589 (-2 (|:| -3286 (-589 *3)) (|:| -2052 *5)))) (-5 *1 (-165 *5 *3)) (-4 *3 (-1145 (-155 *5))))) (-2155 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-339) (-784))) (-5 *2 (-589 (-155 *4))) (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4))))) (-2155 (*1 *2 *3) (-12 (-4 *4 (-13 (-339) (-784))) (-5 *2 (-589 (-155 *4))) (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4))))))
-(-10 -7 (-15 -2155 ((-589 (-155 |#1|)) |#2|)) (-15 -2155 ((-589 (-155 |#1|)) |#2| |#1|)) (-15 -3723 ((-589 (-2 (|:| -3286 (-589 |#2|)) (|:| -2052 |#1|))) |#2| |#2| (-108))) (-15 -3723 ((-589 (-2 (|:| -3286 (-589 |#2|)) (|:| -2052 |#1|))) |#2| |#2|)) (-15 -3573 ((-394 |#2|) |#2| |#1| (-108))) (-15 -3573 ((-394 |#2|) |#2| |#1|)) (-15 -3573 ((-394 |#2|) |#2|)) (-15 -3125 (|#2| |#2|)) (-15 -2765 (|#1| |#2|)) (-15 -4157 ((-394 |#2|) |#2| |#1| (-108))) (-15 -4157 ((-394 |#2|) |#2| |#1|)) (-15 -4144 (|#2| |#2|)) (-15 -2302 (|#1| |#2| |#1|)) (-15 -2302 (|#1| |#2|)) (-15 -1901 ((-155 |#1|) |#2|)) (-15 -4202 (|#1| |#1|)) (-15 -4051 ((-2 (|:| |start| |#2|) (|:| -3286 (-394 |#2|))) |#2|)))
-((-1681 (((-3 |#2| "failed") |#2|) 14)) (-3666 (((-710) |#2|) 16)) (-3697 ((|#2| |#2| |#2|) 18)))
-(((-166 |#1| |#2|) (-10 -7 (-15 -1681 ((-3 |#2| "failed") |#2|)) (-15 -3666 ((-710) |#2|)) (-15 -3697 (|#2| |#2| |#2|))) (-1123) (-616 |#1|)) (T -166))
-((-3697 (*1 *2 *2 *2) (-12 (-4 *3 (-1123)) (-5 *1 (-166 *3 *2)) (-4 *2 (-616 *3)))) (-3666 (*1 *2 *3) (-12 (-4 *4 (-1123)) (-5 *2 (-710)) (-5 *1 (-166 *4 *3)) (-4 *3 (-616 *4)))) (-1681 (*1 *2 *2) (|partial| -12 (-4 *3 (-1123)) (-5 *1 (-166 *3 *2)) (-4 *2 (-616 *3)))))
-(-10 -7 (-15 -1681 ((-3 |#2| "failed") |#2|)) (-15 -3666 ((-710) |#2|)) (-15 -3697 (|#2| |#2| |#2|)))
-((-3427 (((-1087) $) 9)) (-3976 (((-794) $) 13)) (-1858 (((-589 (-1092)) $) 11)))
-(((-167) (-13 (-563 (-794)) (-10 -8 (-15 -3427 ((-1087) $)) (-15 -1858 ((-589 (-1092)) $))))) (T -167))
-((-3427 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-167)))) (-1858 (*1 *2 *1) (-12 (-5 *2 (-589 (-1092))) (-5 *1 (-167)))))
-(-13 (-563 (-794)) (-10 -8 (-15 -3427 ((-1087) $)) (-15 -1858 ((-589 (-1092)) $))))
-((-4083 ((|#2| |#2|) 28)) (-1241 (((-108) |#2|) 19)) (-3597 (((-292 |#1|) |#2|) 12)) (-3610 (((-292 |#1|) |#2|) 14)) (-3368 ((|#2| |#2| (-1087)) 68) ((|#2| |#2|) 69)) (-3305 (((-155 (-292 |#1|)) |#2|) 10)) (-3072 ((|#2| |#2| (-1087)) 65) ((|#2| |#2|) 59)))
-(((-168 |#1| |#2|) (-10 -7 (-15 -3368 (|#2| |#2|)) (-15 -3368 (|#2| |#2| (-1087))) (-15 -3072 (|#2| |#2|)) (-15 -3072 (|#2| |#2| (-1087))) (-15 -3597 ((-292 |#1|) |#2|)) (-15 -3610 ((-292 |#1|) |#2|)) (-15 -1241 ((-108) |#2|)) (-15 -4083 (|#2| |#2|)) (-15 -3305 ((-155 (-292 |#1|)) |#2|))) (-13 (-515) (-786) (-964 (-523))) (-13 (-27) (-1109) (-406 (-155 |#1|)))) (T -168))
-((-3305 (*1 *2 *3) (-12 (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-5 *2 (-155 (-292 *4))) (-5 *1 (-168 *4 *3)) (-4 *3 (-13 (-27) (-1109) (-406 (-155 *4)))))) (-4083 (*1 *2 *2) (-12 (-4 *3 (-13 (-515) (-786) (-964 (-523)))) (-5 *1 (-168 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 (-155 *3)))))) (-1241 (*1 *2 *3) (-12 (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-5 *2 (-108)) (-5 *1 (-168 *4 *3)) (-4 *3 (-13 (-27) (-1109) (-406 (-155 *4)))))) (-3610 (*1 *2 *3) (-12 (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-5 *2 (-292 *4)) (-5 *1 (-168 *4 *3)) (-4 *3 (-13 (-27) (-1109) (-406 (-155 *4)))))) (-3597 (*1 *2 *3) (-12 (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-5 *2 (-292 *4)) (-5 *1 (-168 *4 *3)) (-4 *3 (-13 (-27) (-1109) (-406 (-155 *4)))))) (-3072 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-5 *1 (-168 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 (-155 *4)))))) (-3072 (*1 *2 *2) (-12 (-4 *3 (-13 (-515) (-786) (-964 (-523)))) (-5 *1 (-168 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 (-155 *3)))))) (-3368 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-5 *1 (-168 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 (-155 *4)))))) (-3368 (*1 *2 *2) (-12 (-4 *3 (-13 (-515) (-786) (-964 (-523)))) (-5 *1 (-168 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 (-155 *3)))))))
-(-10 -7 (-15 -3368 (|#2| |#2|)) (-15 -3368 (|#2| |#2| (-1087))) (-15 -3072 (|#2| |#2|)) (-15 -3072 (|#2| |#2| (-1087))) (-15 -3597 ((-292 |#1|) |#2|)) (-15 -3610 ((-292 |#1|) |#2|)) (-15 -1241 ((-108) |#2|)) (-15 -4083 (|#2| |#2|)) (-15 -3305 ((-155 (-292 |#1|)) |#2|)))
-((-4013 (((-1169 (-629 (-883 |#1|))) (-1169 (-629 |#1|))) 24)) (-3976 (((-1169 (-629 (-383 (-883 |#1|)))) (-1169 (-629 |#1|))) 33)))
-(((-169 |#1|) (-10 -7 (-15 -4013 ((-1169 (-629 (-883 |#1|))) (-1169 (-629 |#1|)))) (-15 -3976 ((-1169 (-629 (-383 (-883 |#1|)))) (-1169 (-629 |#1|))))) (-158)) (T -169))
-((-3976 (*1 *2 *3) (-12 (-5 *3 (-1169 (-629 *4))) (-4 *4 (-158)) (-5 *2 (-1169 (-629 (-383 (-883 *4))))) (-5 *1 (-169 *4)))) (-4013 (*1 *2 *3) (-12 (-5 *3 (-1169 (-629 *4))) (-4 *4 (-158)) (-5 *2 (-1169 (-629 (-883 *4)))) (-5 *1 (-169 *4)))))
-(-10 -7 (-15 -4013 ((-1169 (-629 (-883 |#1|))) (-1169 (-629 |#1|)))) (-15 -3976 ((-1169 (-629 (-383 (-883 |#1|)))) (-1169 (-629 |#1|)))))
-((-3006 (((-1089 (-383 (-523))) (-1089 (-383 (-523))) (-1089 (-383 (-523)))) 66)) (-3754 (((-1089 (-383 (-523))) (-589 (-523)) (-589 (-523))) 75)) (-2113 (((-1089 (-383 (-523))) (-523)) 40)) (-3563 (((-1089 (-383 (-523))) (-523)) 52)) (-1349 (((-383 (-523)) (-1089 (-383 (-523)))) 62)) (-1710 (((-1089 (-383 (-523))) (-523)) 32)) (-1781 (((-1089 (-383 (-523))) (-523)) 48)) (-2199 (((-1089 (-383 (-523))) (-523)) 46)) (-2834 (((-1089 (-383 (-523))) (-1089 (-383 (-523))) (-1089 (-383 (-523)))) 60)) (-3749 (((-1089 (-383 (-523))) (-523)) 25)) (-3660 (((-383 (-523)) (-1089 (-383 (-523))) (-1089 (-383 (-523)))) 64)) (-1921 (((-1089 (-383 (-523))) (-523)) 30)) (-3469 (((-1089 (-383 (-523))) (-589 (-523))) 72)))
-(((-170) (-10 -7 (-15 -3749 ((-1089 (-383 (-523))) (-523))) (-15 -2113 ((-1089 (-383 (-523))) (-523))) (-15 -1710 ((-1089 (-383 (-523))) (-523))) (-15 -1921 ((-1089 (-383 (-523))) (-523))) (-15 -2199 ((-1089 (-383 (-523))) (-523))) (-15 -1781 ((-1089 (-383 (-523))) (-523))) (-15 -3563 ((-1089 (-383 (-523))) (-523))) (-15 -3660 ((-383 (-523)) (-1089 (-383 (-523))) (-1089 (-383 (-523))))) (-15 -2834 ((-1089 (-383 (-523))) (-1089 (-383 (-523))) (-1089 (-383 (-523))))) (-15 -1349 ((-383 (-523)) (-1089 (-383 (-523))))) (-15 -3006 ((-1089 (-383 (-523))) (-1089 (-383 (-523))) (-1089 (-383 (-523))))) (-15 -3469 ((-1089 (-383 (-523))) (-589 (-523)))) (-15 -3754 ((-1089 (-383 (-523))) (-589 (-523)) (-589 (-523)))))) (T -170))
-((-3754 (*1 *2 *3 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)))) (-3469 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)))) (-3006 (*1 *2 *2 *2) (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)))) (-1349 (*1 *2 *3) (-12 (-5 *3 (-1089 (-383 (-523)))) (-5 *2 (-383 (-523))) (-5 *1 (-170)))) (-2834 (*1 *2 *2 *2) (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)))) (-3660 (*1 *2 *3 *3) (-12 (-5 *3 (-1089 (-383 (-523)))) (-5 *2 (-383 (-523))) (-5 *1 (-170)))) (-3563 (*1 *2 *3) (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)) (-5 *3 (-523)))) (-1781 (*1 *2 *3) (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)) (-5 *3 (-523)))) (-2199 (*1 *2 *3) (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)) (-5 *3 (-523)))) (-1921 (*1 *2 *3) (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)) (-5 *3 (-523)))) (-1710 (*1 *2 *3) (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)) (-5 *3 (-523)))) (-2113 (*1 *2 *3) (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)) (-5 *3 (-523)))) (-3749 (*1 *2 *3) (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)) (-5 *3 (-523)))))
-(-10 -7 (-15 -3749 ((-1089 (-383 (-523))) (-523))) (-15 -2113 ((-1089 (-383 (-523))) (-523))) (-15 -1710 ((-1089 (-383 (-523))) (-523))) (-15 -1921 ((-1089 (-383 (-523))) (-523))) (-15 -2199 ((-1089 (-383 (-523))) (-523))) (-15 -1781 ((-1089 (-383 (-523))) (-523))) (-15 -3563 ((-1089 (-383 (-523))) (-523))) (-15 -3660 ((-383 (-523)) (-1089 (-383 (-523))) (-1089 (-383 (-523))))) (-15 -2834 ((-1089 (-383 (-523))) (-1089 (-383 (-523))) (-1089 (-383 (-523))))) (-15 -1349 ((-383 (-523)) (-1089 (-383 (-523))))) (-15 -3006 ((-1089 (-383 (-523))) (-1089 (-383 (-523))) (-1089 (-383 (-523))))) (-15 -3469 ((-1089 (-383 (-523))) (-589 (-523)))) (-15 -3754 ((-1089 (-383 (-523))) (-589 (-523)) (-589 (-523)))))
-((-3752 (((-394 (-1083 (-523))) (-523)) 28)) (-3589 (((-589 (-1083 (-523))) (-523)) 23)) (-4022 (((-1083 (-523)) (-523)) 21)))
-(((-171) (-10 -7 (-15 -3589 ((-589 (-1083 (-523))) (-523))) (-15 -4022 ((-1083 (-523)) (-523))) (-15 -3752 ((-394 (-1083 (-523))) (-523))))) (T -171))
-((-3752 (*1 *2 *3) (-12 (-5 *2 (-394 (-1083 (-523)))) (-5 *1 (-171)) (-5 *3 (-523)))) (-4022 (*1 *2 *3) (-12 (-5 *2 (-1083 (-523))) (-5 *1 (-171)) (-5 *3 (-523)))) (-3589 (*1 *2 *3) (-12 (-5 *2 (-589 (-1083 (-523)))) (-5 *1 (-171)) (-5 *3 (-523)))))
-(-10 -7 (-15 -3589 ((-589 (-1083 (-523))) (-523))) (-15 -4022 ((-1083 (-523)) (-523))) (-15 -3752 ((-394 (-1083 (-523))) (-523))))
-((-3397 (((-1068 (-203)) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 104)) (-1582 (((-589 (-1070)) (-1068 (-203))) NIL)) (-2690 (((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 80)) (-3212 (((-589 (-203)) (-292 (-203)) (-1087) (-1011 (-779 (-203)))) NIL)) (-3577 (((-589 (-1070)) (-589 (-203))) NIL)) (-4227 (((-203) (-1011 (-779 (-203)))) 24)) (-2978 (((-203) (-1011 (-779 (-203)))) 25)) (-4150 (((-355) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 97)) (-1995 (((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 42)) (-4161 (((-1070) (-203)) NIL)) (-1841 (((-1070) (-589 (-1070))) 20)) (-3532 (((-962) (-1087) (-1087) (-962)) 13)))
-(((-172) (-10 -7 (-15 -2690 ((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -1995 ((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -4227 ((-203) (-1011 (-779 (-203))))) (-15 -2978 ((-203) (-1011 (-779 (-203))))) (-15 -4150 ((-355) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3212 ((-589 (-203)) (-292 (-203)) (-1087) (-1011 (-779 (-203))))) (-15 -3397 ((-1068 (-203)) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -4161 ((-1070) (-203))) (-15 -3577 ((-589 (-1070)) (-589 (-203)))) (-15 -1582 ((-589 (-1070)) (-1068 (-203)))) (-15 -1841 ((-1070) (-589 (-1070)))) (-15 -3532 ((-962) (-1087) (-1087) (-962))))) (T -172))
-((-3532 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-962)) (-5 *3 (-1087)) (-5 *1 (-172)))) (-1841 (*1 *2 *3) (-12 (-5 *3 (-589 (-1070))) (-5 *2 (-1070)) (-5 *1 (-172)))) (-1582 (*1 *2 *3) (-12 (-5 *3 (-1068 (-203))) (-5 *2 (-589 (-1070))) (-5 *1 (-172)))) (-3577 (*1 *2 *3) (-12 (-5 *3 (-589 (-203))) (-5 *2 (-589 (-1070))) (-5 *1 (-172)))) (-4161 (*1 *2 *3) (-12 (-5 *3 (-203)) (-5 *2 (-1070)) (-5 *1 (-172)))) (-3397 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-1068 (-203))) (-5 *1 (-172)))) (-3212 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-292 (-203))) (-5 *4 (-1087)) (-5 *5 (-1011 (-779 (-203)))) (-5 *2 (-589 (-203))) (-5 *1 (-172)))) (-4150 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-355)) (-5 *1 (-172)))) (-2978 (*1 *2 *3) (-12 (-5 *3 (-1011 (-779 (-203)))) (-5 *2 (-203)) (-5 *1 (-172)))) (-4227 (*1 *2 *3) (-12 (-5 *3 (-1011 (-779 (-203)))) (-5 *2 (-203)) (-5 *1 (-172)))) (-1995 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (-5 *1 (-172)))) (-2690 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))) (-5 *1 (-172)))))
-(-10 -7 (-15 -2690 ((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -1995 ((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -4227 ((-203) (-1011 (-779 (-203))))) (-15 -2978 ((-203) (-1011 (-779 (-203))))) (-15 -4150 ((-355) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3212 ((-589 (-203)) (-292 (-203)) (-1087) (-1011 (-779 (-203))))) (-15 -3397 ((-1068 (-203)) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -4161 ((-1070) (-203))) (-15 -3577 ((-589 (-1070)) (-589 (-203)))) (-15 -1582 ((-589 (-1070)) (-1068 (-203)))) (-15 -1841 ((-1070) (-589 (-1070)))) (-15 -3532 ((-962) (-1087) (-1087) (-962))))
-((-3260 (((-108) $ $) NIL)) (-3499 (((-962) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) 55) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) NIL)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 32) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-173) (-726)) (T -173))
-NIL
-(-726)
-((-3260 (((-108) $ $) NIL)) (-3499 (((-962) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) 60) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) NIL)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 41) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-174) (-726)) (T -174))
-NIL
-(-726)
-((-3260 (((-108) $ $) NIL)) (-3499 (((-962) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) 69) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) NIL)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 40) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-175) (-726)) (T -175))
-NIL
-(-726)
-((-3260 (((-108) $ $) NIL)) (-3499 (((-962) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) 56) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) NIL)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 34) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-176) (-726)) (T -176))
-NIL
-(-726)
-((-3260 (((-108) $ $) NIL)) (-3499 (((-962) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) 67) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) NIL)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 38) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-177) (-726)) (T -177))
-NIL
-(-726)
-((-3260 (((-108) $ $) NIL)) (-3499 (((-962) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) 73) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) NIL)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 36) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-178) (-726)) (T -178))
-NIL
-(-726)
-((-3260 (((-108) $ $) NIL)) (-3499 (((-962) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) 80) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) NIL)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 44) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-179) (-726)) (T -179))
-NIL
-(-726)
-((-3260 (((-108) $ $) NIL)) (-3499 (((-962) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) 70) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) NIL)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 40) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-180) (-726)) (T -180))
-NIL
-(-726)
-((-3260 (((-108) $ $) NIL)) (-3499 (((-962) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) NIL) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) 65)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) NIL) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 32)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-181) (-726)) (T -181))
-NIL
-(-726)
-((-3260 (((-108) $ $) NIL)) (-3499 (((-962) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) NIL) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) 63)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) NIL) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 34)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-182) (-726)) (T -182))
-NIL
-(-726)
-((-3260 (((-108) $ $) NIL)) (-3499 (((-962) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) 90) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) NIL)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 78) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-183) (-726)) (T -183))
-NIL
-(-726)
-((-3811 (((-3 (-2 (|:| -3362 (-110)) (|:| |w| (-203))) "failed") (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 85)) (-1251 (((-523) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 42)) (-3925 (((-3 (-589 (-203)) "failed") (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 73)))
-(((-184) (-10 -7 (-15 -3811 ((-3 (-2 (|:| -3362 (-110)) (|:| |w| (-203))) "failed") (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3925 ((-3 (-589 (-203)) "failed") (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -1251 ((-523) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))))) (T -184))
-((-1251 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-523)) (-5 *1 (-184)))) (-3925 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-589 (-203))) (-5 *1 (-184)))) (-3811 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-2 (|:| -3362 (-110)) (|:| |w| (-203)))) (-5 *1 (-184)))))
-(-10 -7 (-15 -3811 ((-3 (-2 (|:| -3362 (-110)) (|:| |w| (-203))) "failed") (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3925 ((-3 (-589 (-203)) "failed") (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -1251 ((-523) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))))
-((-3987 (((-355) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 39)) (-2577 (((-2 (|:| |stiffnessFactor| (-355)) (|:| |stabilityFactor| (-355))) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 129)) (-2260 (((-2 (|:| |stiffnessFactor| (-355)) (|:| |stabilityFactor| (-355))) (-629 (-292 (-203)))) 88)) (-1695 (((-355) (-629 (-292 (-203)))) 112)) (-2296 (((-629 (-292 (-203))) (-1169 (-292 (-203))) (-589 (-1087))) 109)) (-4210 (((-355) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 30)) (-4139 (((-355) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 43)) (-1349 (((-629 (-292 (-203))) (-629 (-292 (-203))) (-589 (-1087)) (-1169 (-292 (-203)))) 101)) (-3454 (((-355) (-355) (-589 (-355))) 106) (((-355) (-355) (-355)) 104)) (-3673 (((-355) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 36)))
-(((-185) (-10 -7 (-15 -3454 ((-355) (-355) (-355))) (-15 -3454 ((-355) (-355) (-589 (-355)))) (-15 -1695 ((-355) (-629 (-292 (-203))))) (-15 -2296 ((-629 (-292 (-203))) (-1169 (-292 (-203))) (-589 (-1087)))) (-15 -1349 ((-629 (-292 (-203))) (-629 (-292 (-203))) (-589 (-1087)) (-1169 (-292 (-203))))) (-15 -2260 ((-2 (|:| |stiffnessFactor| (-355)) (|:| |stabilityFactor| (-355))) (-629 (-292 (-203))))) (-15 -2577 ((-2 (|:| |stiffnessFactor| (-355)) (|:| |stabilityFactor| (-355))) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3987 ((-355) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -4139 ((-355) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3673 ((-355) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -4210 ((-355) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))))) (T -185))
-((-4210 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-355)) (-5 *1 (-185)))) (-3673 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-355)) (-5 *1 (-185)))) (-4139 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-355)) (-5 *1 (-185)))) (-3987 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-355)) (-5 *1 (-185)))) (-2577 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-355)) (|:| |stabilityFactor| (-355)))) (-5 *1 (-185)))) (-2260 (*1 *2 *3) (-12 (-5 *3 (-629 (-292 (-203)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-355)) (|:| |stabilityFactor| (-355)))) (-5 *1 (-185)))) (-1349 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-629 (-292 (-203)))) (-5 *3 (-589 (-1087))) (-5 *4 (-1169 (-292 (-203)))) (-5 *1 (-185)))) (-2296 (*1 *2 *3 *4) (-12 (-5 *3 (-1169 (-292 (-203)))) (-5 *4 (-589 (-1087))) (-5 *2 (-629 (-292 (-203)))) (-5 *1 (-185)))) (-1695 (*1 *2 *3) (-12 (-5 *3 (-629 (-292 (-203)))) (-5 *2 (-355)) (-5 *1 (-185)))) (-3454 (*1 *2 *2 *3) (-12 (-5 *3 (-589 (-355))) (-5 *2 (-355)) (-5 *1 (-185)))) (-3454 (*1 *2 *2 *2) (-12 (-5 *2 (-355)) (-5 *1 (-185)))))
-(-10 -7 (-15 -3454 ((-355) (-355) (-355))) (-15 -3454 ((-355) (-355) (-589 (-355)))) (-15 -1695 ((-355) (-629 (-292 (-203))))) (-15 -2296 ((-629 (-292 (-203))) (-1169 (-292 (-203))) (-589 (-1087)))) (-15 -1349 ((-629 (-292 (-203))) (-629 (-292 (-203))) (-589 (-1087)) (-1169 (-292 (-203))))) (-15 -2260 ((-2 (|:| |stiffnessFactor| (-355)) (|:| |stabilityFactor| (-355))) (-629 (-292 (-203))))) (-15 -2577 ((-2 (|:| |stiffnessFactor| (-355)) (|:| |stabilityFactor| (-355))) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3987 ((-355) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -4139 ((-355) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3673 ((-355) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -4210 ((-355) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))))
-((-3260 (((-108) $ $) NIL)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 41)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-3306 (((-962) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 64)) (-4037 (((-108) $ $) NIL)))
-(((-186) (-739)) (T -186))
-NIL
-(-739)
-((-3260 (((-108) $ $) NIL)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 41)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-3306 (((-962) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 62)) (-4037 (((-108) $ $) NIL)))
-(((-187) (-739)) (T -187))
-NIL
-(-739)
-((-3260 (((-108) $ $) NIL)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 40)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-3306 (((-962) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 66)) (-4037 (((-108) $ $) NIL)))
-(((-188) (-739)) (T -188))
-NIL
-(-739)
-((-3260 (((-108) $ $) NIL)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 46)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-3306 (((-962) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 75)) (-4037 (((-108) $ $) NIL)))
-(((-189) (-739)) (T -189))
-NIL
-(-739)
-((-1304 (((-589 (-1087)) (-1087) (-710)) 23)) (-2879 (((-292 (-203)) (-292 (-203))) 31)) (-3449 (((-108) (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203)))) 73)) (-2499 (((-108) (-203) (-203) (-589 (-292 (-203)))) 44)))
-(((-190) (-10 -7 (-15 -1304 ((-589 (-1087)) (-1087) (-710))) (-15 -2879 ((-292 (-203)) (-292 (-203)))) (-15 -2499 ((-108) (-203) (-203) (-589 (-292 (-203))))) (-15 -3449 ((-108) (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203))))))) (T -190))
-((-3449 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203)))) (-5 *2 (-108)) (-5 *1 (-190)))) (-2499 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-589 (-292 (-203)))) (-5 *3 (-203)) (-5 *2 (-108)) (-5 *1 (-190)))) (-2879 (*1 *2 *2) (-12 (-5 *2 (-292 (-203))) (-5 *1 (-190)))) (-1304 (*1 *2 *3 *4) (-12 (-5 *4 (-710)) (-5 *2 (-589 (-1087))) (-5 *1 (-190)) (-5 *3 (-1087)))))
-(-10 -7 (-15 -1304 ((-589 (-1087)) (-1087) (-710))) (-15 -2879 ((-292 (-203)) (-292 (-203)))) (-15 -2499 ((-108) (-203) (-203) (-589 (-292 (-203))))) (-15 -3449 ((-108) (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203))))))
-((-3260 (((-108) $ $) NIL)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203)))) 26)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-3687 (((-962) (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203)))) 57)) (-4037 (((-108) $ $) NIL)))
-(((-191) (-826)) (T -191))
-NIL
-(-826)
-((-3260 (((-108) $ $) NIL)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203)))) 21)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-3687 (((-962) (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203)))) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-192) (-826)) (T -192))
-NIL
-(-826)
-((-3260 (((-108) $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2149 (((-1174) $) 36) (((-1174) $ (-852) (-852)) 38)) (-1502 (($ $ (-918)) 19) (((-223 (-1070)) $ (-1087)) 15)) (-3942 (((-1174) $) 34)) (-3976 (((-794) $) 31) (($ (-589 |#1|)) 8)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $ $) 27)) (-4103 (($ $ $) 22)))
-(((-193 |#1|) (-13 (-1016) (-10 -8 (-15 -1502 ($ $ (-918))) (-15 -1502 ((-223 (-1070)) $ (-1087))) (-15 -4103 ($ $ $)) (-15 -4115 ($ $ $)) (-15 -3976 ($ (-589 |#1|))) (-15 -3942 ((-1174) $)) (-15 -2149 ((-1174) $)) (-15 -2149 ((-1174) $ (-852) (-852))))) (-13 (-786) (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 ((-1174) $)) (-15 -2149 ((-1174) $))))) (T -193))
-((-1502 (*1 *1 *1 *2) (-12 (-5 *2 (-918)) (-5 *1 (-193 *3)) (-4 *3 (-13 (-786) (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 ((-1174) $)) (-15 -2149 ((-1174) $))))))) (-1502 (*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-223 (-1070))) (-5 *1 (-193 *4)) (-4 *4 (-13 (-786) (-10 -8 (-15 -1502 ((-1070) $ *3)) (-15 -3942 ((-1174) $)) (-15 -2149 ((-1174) $))))))) (-4103 (*1 *1 *1 *1) (-12 (-5 *1 (-193 *2)) (-4 *2 (-13 (-786) (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 ((-1174) $)) (-15 -2149 ((-1174) $))))))) (-4115 (*1 *1 *1 *1) (-12 (-5 *1 (-193 *2)) (-4 *2 (-13 (-786) (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 ((-1174) $)) (-15 -2149 ((-1174) $))))))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-13 (-786) (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 ((-1174) $)) (-15 -2149 ((-1174) $))))) (-5 *1 (-193 *3)))) (-3942 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-193 *3)) (-4 *3 (-13 (-786) (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 (*2 $)) (-15 -2149 (*2 $))))))) (-2149 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-193 *3)) (-4 *3 (-13 (-786) (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 (*2 $)) (-15 -2149 (*2 $))))))) (-2149 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1174)) (-5 *1 (-193 *4)) (-4 *4 (-13 (-786) (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 (*2 $)) (-15 -2149 (*2 $))))))))
-(-13 (-1016) (-10 -8 (-15 -1502 ($ $ (-918))) (-15 -1502 ((-223 (-1070)) $ (-1087))) (-15 -4103 ($ $ $)) (-15 -4115 ($ $ $)) (-15 -3976 ($ (-589 |#1|))) (-15 -3942 ((-1174) $)) (-15 -2149 ((-1174) $)) (-15 -2149 ((-1174) $ (-852) (-852)))))
-((-1790 ((|#2| |#4| (-1 |#2| |#2|)) 46)))
-(((-194 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1790 (|#2| |#4| (-1 |#2| |#2|)))) (-339) (-1145 |#1|) (-1145 (-383 |#2|)) (-318 |#1| |#2| |#3|)) (T -194))
-((-1790 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-339)) (-4 *6 (-1145 (-383 *2))) (-4 *2 (-1145 *5)) (-5 *1 (-194 *5 *2 *6 *3)) (-4 *3 (-318 *5 *2 *6)))))
-(-10 -7 (-15 -1790 (|#2| |#4| (-1 |#2| |#2|))))
-((-1868 ((|#2| |#2| (-710) |#2|) 42)) (-1733 ((|#2| |#2| (-710) |#2|) 38)) (-3762 (((-589 |#2|) (-589 (-2 (|:| |deg| (-710)) (|:| -1549 |#2|)))) 58)) (-1240 (((-589 (-2 (|:| |deg| (-710)) (|:| -1549 |#2|))) |#2|) 53)) (-3154 (((-108) |#2|) 50)) (-1398 (((-394 |#2|) |#2|) 78)) (-3573 (((-394 |#2|) |#2|) 77)) (-1599 ((|#2| |#2| (-710) |#2|) 36)) (-2796 (((-2 (|:| |cont| |#1|) (|:| -3286 (-589 (-2 (|:| |irr| |#2|) (|:| -3269 (-523)))))) |#2| (-108)) 70)))
-(((-195 |#1| |#2|) (-10 -7 (-15 -3573 ((-394 |#2|) |#2|)) (-15 -1398 ((-394 |#2|) |#2|)) (-15 -2796 ((-2 (|:| |cont| |#1|) (|:| -3286 (-589 (-2 (|:| |irr| |#2|) (|:| -3269 (-523)))))) |#2| (-108))) (-15 -1240 ((-589 (-2 (|:| |deg| (-710)) (|:| -1549 |#2|))) |#2|)) (-15 -3762 ((-589 |#2|) (-589 (-2 (|:| |deg| (-710)) (|:| -1549 |#2|))))) (-15 -1599 (|#2| |#2| (-710) |#2|)) (-15 -1733 (|#2| |#2| (-710) |#2|)) (-15 -1868 (|#2| |#2| (-710) |#2|)) (-15 -3154 ((-108) |#2|))) (-325) (-1145 |#1|)) (T -195))
-((-3154 (*1 *2 *3) (-12 (-4 *4 (-325)) (-5 *2 (-108)) (-5 *1 (-195 *4 *3)) (-4 *3 (-1145 *4)))) (-1868 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-710)) (-4 *4 (-325)) (-5 *1 (-195 *4 *2)) (-4 *2 (-1145 *4)))) (-1733 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-710)) (-4 *4 (-325)) (-5 *1 (-195 *4 *2)) (-4 *2 (-1145 *4)))) (-1599 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-710)) (-4 *4 (-325)) (-5 *1 (-195 *4 *2)) (-4 *2 (-1145 *4)))) (-3762 (*1 *2 *3) (-12 (-5 *3 (-589 (-2 (|:| |deg| (-710)) (|:| -1549 *5)))) (-4 *5 (-1145 *4)) (-4 *4 (-325)) (-5 *2 (-589 *5)) (-5 *1 (-195 *4 *5)))) (-1240 (*1 *2 *3) (-12 (-4 *4 (-325)) (-5 *2 (-589 (-2 (|:| |deg| (-710)) (|:| -1549 *3)))) (-5 *1 (-195 *4 *3)) (-4 *3 (-1145 *4)))) (-2796 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-325)) (-5 *2 (-2 (|:| |cont| *5) (|:| -3286 (-589 (-2 (|:| |irr| *3) (|:| -3269 (-523))))))) (-5 *1 (-195 *5 *3)) (-4 *3 (-1145 *5)))) (-1398 (*1 *2 *3) (-12 (-4 *4 (-325)) (-5 *2 (-394 *3)) (-5 *1 (-195 *4 *3)) (-4 *3 (-1145 *4)))) (-3573 (*1 *2 *3) (-12 (-4 *4 (-325)) (-5 *2 (-394 *3)) (-5 *1 (-195 *4 *3)) (-4 *3 (-1145 *4)))))
-(-10 -7 (-15 -3573 ((-394 |#2|) |#2|)) (-15 -1398 ((-394 |#2|) |#2|)) (-15 -2796 ((-2 (|:| |cont| |#1|) (|:| -3286 (-589 (-2 (|:| |irr| |#2|) (|:| -3269 (-523)))))) |#2| (-108))) (-15 -1240 ((-589 (-2 (|:| |deg| (-710)) (|:| -1549 |#2|))) |#2|)) (-15 -3762 ((-589 |#2|) (-589 (-2 (|:| |deg| (-710)) (|:| -1549 |#2|))))) (-15 -1599 (|#2| |#2| (-710) |#2|)) (-15 -1733 (|#2| |#2| (-710) |#2|)) (-15 -1868 (|#2| |#2| (-710) |#2|)) (-15 -3154 ((-108) |#2|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3964 (((-523) $) NIL (|has| (-523) (-284)))) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-3684 (((-108) $ $) NIL)) (-2035 (((-523) $) NIL (|has| (-523) (-759)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL) (((-3 (-1087) "failed") $) NIL (|has| (-523) (-964 (-1087)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| (-523) (-964 (-523)))) (((-3 (-523) "failed") $) NIL (|has| (-523) (-964 (-523))))) (-1996 (((-523) $) NIL) (((-1087) $) NIL (|has| (-523) (-964 (-1087)))) (((-383 (-523)) $) NIL (|has| (-523) (-964 (-523)))) (((-523) $) NIL (|has| (-523) (-964 (-523))))) (-2501 (($ $ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| (-523) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| (-523) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL) (((-629 (-523)) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) NIL (|has| (-523) (-508)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-3702 (((-108) $) NIL (|has| (-523) (-759)))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (|has| (-523) (-817 (-523)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (|has| (-523) (-817 (-355))))) (-3482 (((-108) $) NIL)) (-2364 (($ $) NIL)) (-2164 (((-523) $) NIL)) (-1289 (((-3 $ "failed") $) NIL (|has| (-523) (-1063)))) (-4050 (((-108) $) NIL (|has| (-523) (-759)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3268 (($ $ $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| (-523) (-786)))) (-3015 (($ (-1 (-523) (-523)) $) NIL)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| (-523) (-1063)) CONST)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3934 (($ $) NIL (|has| (-523) (-284))) (((-383 (-523)) $) NIL)) (-1250 (((-523) $) NIL (|has| (-523) (-508)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-1349 (($ $ (-589 (-523)) (-589 (-523))) NIL (|has| (-523) (-286 (-523)))) (($ $ (-523) (-523)) NIL (|has| (-523) (-286 (-523)))) (($ $ (-271 (-523))) NIL (|has| (-523) (-286 (-523)))) (($ $ (-589 (-271 (-523)))) NIL (|has| (-523) (-286 (-523)))) (($ $ (-589 (-1087)) (-589 (-523))) NIL (|has| (-523) (-484 (-1087) (-523)))) (($ $ (-1087) (-523)) NIL (|has| (-523) (-484 (-1087) (-523))))) (-3087 (((-710) $) NIL)) (-1502 (($ $ (-523)) NIL (|has| (-523) (-263 (-523) (-523))))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-4024 (($ $) NIL (|has| (-523) (-211))) (($ $ (-710)) NIL (|has| (-523) (-211))) (($ $ (-1087)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1 (-523) (-523)) (-710)) NIL) (($ $ (-1 (-523) (-523))) NIL)) (-3758 (($ $) NIL)) (-2171 (((-523) $) NIL)) (-1807 (($ (-383 (-523))) 9)) (-3077 (((-823 (-523)) $) NIL (|has| (-523) (-564 (-823 (-523))))) (((-823 (-355)) $) NIL (|has| (-523) (-564 (-823 (-355))))) (((-499) $) NIL (|has| (-523) (-564 (-499)))) (((-355) $) NIL (|has| (-523) (-949))) (((-203) $) NIL (|has| (-523) (-949)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| (-523) (-840))))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) 8) (($ (-523)) NIL) (($ (-1087)) NIL (|has| (-523) (-964 (-1087)))) (((-383 (-523)) $) NIL) (((-932 10) $) 10)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| (-523) (-840))) (|has| (-523) (-134))))) (-1698 (((-710)) NIL)) (-1516 (((-523) $) NIL (|has| (-523) (-508)))) (-3842 (((-108) $ $) NIL)) (-3984 (($ $) NIL (|has| (-523) (-759)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $) NIL (|has| (-523) (-211))) (($ $ (-710)) NIL (|has| (-523) (-211))) (($ $ (-1087)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1 (-523) (-523)) (-710)) NIL) (($ $ (-1 (-523) (-523))) NIL)) (-4078 (((-108) $ $) NIL (|has| (-523) (-786)))) (-4061 (((-108) $ $) NIL (|has| (-523) (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| (-523) (-786)))) (-4052 (((-108) $ $) NIL (|has| (-523) (-786)))) (-4125 (($ $ $) NIL) (($ (-523) (-523)) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ (-523) $) NIL) (($ $ (-523)) NIL)))
-(((-196) (-13 (-921 (-523)) (-10 -8 (-15 -3976 ((-383 (-523)) $)) (-15 -3976 ((-932 10) $)) (-15 -3934 ((-383 (-523)) $)) (-15 -1807 ($ (-383 (-523))))))) (T -196))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-196)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-932 10)) (-5 *1 (-196)))) (-3934 (*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-196)))) (-1807 (*1 *1 *2) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-196)))))
-(-13 (-921 (-523)) (-10 -8 (-15 -3976 ((-383 (-523)) $)) (-15 -3976 ((-932 10) $)) (-15 -3934 ((-383 (-523)) $)) (-15 -1807 ($ (-383 (-523))))))
-((-2669 (((-3 (|:| |f1| (-779 |#2|)) (|:| |f2| (-589 (-779 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1009 (-779 |#2|)) (-1070)) 28) (((-3 (|:| |f1| (-779 |#2|)) (|:| |f2| (-589 (-779 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1009 (-779 |#2|))) 24)) (-2570 (((-3 (|:| |f1| (-779 |#2|)) (|:| |f2| (-589 (-779 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1087) (-779 |#2|) (-779 |#2|) (-108)) 17)))
-(((-197 |#1| |#2|) (-10 -7 (-15 -2669 ((-3 (|:| |f1| (-779 |#2|)) (|:| |f2| (-589 (-779 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1009 (-779 |#2|)))) (-15 -2669 ((-3 (|:| |f1| (-779 |#2|)) (|:| |f2| (-589 (-779 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1009 (-779 |#2|)) (-1070))) (-15 -2570 ((-3 (|:| |f1| (-779 |#2|)) (|:| |f2| (-589 (-779 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1087) (-779 |#2|) (-779 |#2|) (-108)))) (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))) (-13 (-1109) (-889) (-29 |#1|))) (T -197))
-((-2570 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-1087)) (-5 *6 (-108)) (-4 *7 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-4 *3 (-13 (-1109) (-889) (-29 *7))) (-5 *2 (-3 (|:| |f1| (-779 *3)) (|:| |f2| (-589 (-779 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-197 *7 *3)) (-5 *5 (-779 *3)))) (-2669 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1009 (-779 *3))) (-5 *5 (-1070)) (-4 *3 (-13 (-1109) (-889) (-29 *6))) (-4 *6 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *2 (-3 (|:| |f1| (-779 *3)) (|:| |f2| (-589 (-779 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-197 *6 *3)))) (-2669 (*1 *2 *3 *4) (-12 (-5 *4 (-1009 (-779 *3))) (-4 *3 (-13 (-1109) (-889) (-29 *5))) (-4 *5 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *2 (-3 (|:| |f1| (-779 *3)) (|:| |f2| (-589 (-779 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-197 *5 *3)))))
-(-10 -7 (-15 -2669 ((-3 (|:| |f1| (-779 |#2|)) (|:| |f2| (-589 (-779 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1009 (-779 |#2|)))) (-15 -2669 ((-3 (|:| |f1| (-779 |#2|)) (|:| |f2| (-589 (-779 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1009 (-779 |#2|)) (-1070))) (-15 -2570 ((-3 (|:| |f1| (-779 |#2|)) (|:| |f2| (-589 (-779 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1087) (-779 |#2|) (-779 |#2|) (-108))))
-((-2669 (((-3 (|:| |f1| (-779 (-292 |#1|))) (|:| |f2| (-589 (-779 (-292 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-383 (-883 |#1|)) (-1009 (-779 (-383 (-883 |#1|)))) (-1070)) 46) (((-3 (|:| |f1| (-779 (-292 |#1|))) (|:| |f2| (-589 (-779 (-292 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-383 (-883 |#1|)) (-1009 (-779 (-383 (-883 |#1|))))) 43) (((-3 (|:| |f1| (-779 (-292 |#1|))) (|:| |f2| (-589 (-779 (-292 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-383 (-883 |#1|)) (-1009 (-779 (-292 |#1|))) (-1070)) 47) (((-3 (|:| |f1| (-779 (-292 |#1|))) (|:| |f2| (-589 (-779 (-292 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-383 (-883 |#1|)) (-1009 (-779 (-292 |#1|)))) 20)))
-(((-198 |#1|) (-10 -7 (-15 -2669 ((-3 (|:| |f1| (-779 (-292 |#1|))) (|:| |f2| (-589 (-779 (-292 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-383 (-883 |#1|)) (-1009 (-779 (-292 |#1|))))) (-15 -2669 ((-3 (|:| |f1| (-779 (-292 |#1|))) (|:| |f2| (-589 (-779 (-292 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-383 (-883 |#1|)) (-1009 (-779 (-292 |#1|))) (-1070))) (-15 -2669 ((-3 (|:| |f1| (-779 (-292 |#1|))) (|:| |f2| (-589 (-779 (-292 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-383 (-883 |#1|)) (-1009 (-779 (-383 (-883 |#1|)))))) (-15 -2669 ((-3 (|:| |f1| (-779 (-292 |#1|))) (|:| |f2| (-589 (-779 (-292 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-383 (-883 |#1|)) (-1009 (-779 (-383 (-883 |#1|)))) (-1070)))) (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523)))) (T -198))
-((-2669 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1009 (-779 (-383 (-883 *6))))) (-5 *5 (-1070)) (-5 *3 (-383 (-883 *6))) (-4 *6 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *2 (-3 (|:| |f1| (-779 (-292 *6))) (|:| |f2| (-589 (-779 (-292 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-198 *6)))) (-2669 (*1 *2 *3 *4) (-12 (-5 *4 (-1009 (-779 (-383 (-883 *5))))) (-5 *3 (-383 (-883 *5))) (-4 *5 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *2 (-3 (|:| |f1| (-779 (-292 *5))) (|:| |f2| (-589 (-779 (-292 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-198 *5)))) (-2669 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-383 (-883 *6))) (-5 *4 (-1009 (-779 (-292 *6)))) (-5 *5 (-1070)) (-4 *6 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *2 (-3 (|:| |f1| (-779 (-292 *6))) (|:| |f2| (-589 (-779 (-292 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-198 *6)))) (-2669 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-1009 (-779 (-292 *5)))) (-4 *5 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *2 (-3 (|:| |f1| (-779 (-292 *5))) (|:| |f2| (-589 (-779 (-292 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-198 *5)))))
-(-10 -7 (-15 -2669 ((-3 (|:| |f1| (-779 (-292 |#1|))) (|:| |f2| (-589 (-779 (-292 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-383 (-883 |#1|)) (-1009 (-779 (-292 |#1|))))) (-15 -2669 ((-3 (|:| |f1| (-779 (-292 |#1|))) (|:| |f2| (-589 (-779 (-292 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-383 (-883 |#1|)) (-1009 (-779 (-292 |#1|))) (-1070))) (-15 -2669 ((-3 (|:| |f1| (-779 (-292 |#1|))) (|:| |f2| (-589 (-779 (-292 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-383 (-883 |#1|)) (-1009 (-779 (-383 (-883 |#1|)))))) (-15 -2669 ((-3 (|:| |f1| (-779 (-292 |#1|))) (|:| |f2| (-589 (-779 (-292 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-383 (-883 |#1|)) (-1009 (-779 (-383 (-883 |#1|)))) (-1070))))
-((-1830 (((-2 (|:| -3764 (-1083 |#1|)) (|:| |deg| (-852))) (-1083 |#1|)) 21)) (-1276 (((-589 (-292 |#2|)) (-292 |#2|) (-852)) 42)))
-(((-199 |#1| |#2|) (-10 -7 (-15 -1830 ((-2 (|:| -3764 (-1083 |#1|)) (|:| |deg| (-852))) (-1083 |#1|))) (-15 -1276 ((-589 (-292 |#2|)) (-292 |#2|) (-852)))) (-973) (-13 (-515) (-786))) (T -199))
-((-1276 (*1 *2 *3 *4) (-12 (-5 *4 (-852)) (-4 *6 (-13 (-515) (-786))) (-5 *2 (-589 (-292 *6))) (-5 *1 (-199 *5 *6)) (-5 *3 (-292 *6)) (-4 *5 (-973)))) (-1830 (*1 *2 *3) (-12 (-4 *4 (-973)) (-5 *2 (-2 (|:| -3764 (-1083 *4)) (|:| |deg| (-852)))) (-5 *1 (-199 *4 *5)) (-5 *3 (-1083 *4)) (-4 *5 (-13 (-515) (-786))))))
-(-10 -7 (-15 -1830 ((-2 (|:| -3764 (-1083 |#1|)) (|:| |deg| (-852))) (-1083 |#1|))) (-15 -1276 ((-589 (-292 |#2|)) (-292 |#2|) (-852))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2186 ((|#1| $) NIL)) (-3346 ((|#1| $) 25)) (-2282 (((-108) $ (-710)) NIL)) (-1640 (($) NIL T CONST)) (-3629 (($ $) NIL)) (-4091 (($ $) 31)) (-2230 ((|#1| |#1| $) NIL)) (-2868 ((|#1| $) NIL)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3229 (((-710) $) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2349 ((|#1| $) NIL)) (-2308 ((|#1| |#1| $) 28)) (-3188 ((|#1| |#1| $) 30)) (-3862 (($ |#1| $) NIL)) (-1942 (((-710) $) 27)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2764 ((|#1| $) NIL)) (-3637 ((|#1| $) 26)) (-1934 ((|#1| $) 24)) (-1322 ((|#1| $) NIL)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3844 ((|#1| |#1| $) NIL)) (-3163 (((-108) $) 9)) (-4055 (($) NIL)) (-1671 ((|#1| $) NIL)) (-3724 (($) NIL) (($ (-589 |#1|)) 16)) (-4120 (((-710) $) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-2804 ((|#1| $) 13)) (-1245 (($ (-589 |#1|)) NIL)) (-2939 ((|#1| $) NIL)) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-200 |#1|) (-13 (-231 |#1|) (-10 -8 (-15 -3724 ($ (-589 |#1|))))) (-1016)) (T -200))
-((-3724 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-200 *3)))))
-(-13 (-231 |#1|) (-10 -8 (-15 -3724 ($ (-589 |#1|)))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1220 (($ (-292 |#1|)) 23)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-1936 (((-108) $) NIL)) (-2898 (((-3 (-292 |#1|) "failed") $) NIL)) (-1996 (((-292 |#1|) $) NIL)) (-3142 (($ $) 31)) (-4211 (((-3 $ "failed") $) NIL)) (-3482 (((-108) $) NIL)) (-3015 (($ (-1 (-292 |#1|) (-292 |#1|)) $) NIL)) (-3119 (((-292 |#1|) $) NIL)) (-1211 (($ $) 30)) (-3841 (((-1070) $) NIL)) (-4151 (((-108) $) NIL)) (-2435 (((-1034) $) NIL)) (-4102 (($ (-710)) NIL)) (-3122 (($ $) 32)) (-1487 (((-523) $) NIL)) (-3976 (((-794) $) 57) (($ (-523)) NIL) (($ (-292 |#1|)) NIL)) (-1234 (((-292 |#1|) $ $) NIL)) (-1698 (((-710)) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 25 T CONST)) (-1440 (($) 50 T CONST)) (-4037 (((-108) $ $) 28)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) 19)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 24) (($ (-292 |#1|) $) 18)))
-(((-201 |#1| |#2|) (-13 (-567 (-292 |#1|)) (-964 (-292 |#1|)) (-10 -8 (-15 -3119 ((-292 |#1|) $)) (-15 -1211 ($ $)) (-15 -3142 ($ $)) (-15 -1234 ((-292 |#1|) $ $)) (-15 -4102 ($ (-710))) (-15 -4151 ((-108) $)) (-15 -1936 ((-108) $)) (-15 -1487 ((-523) $)) (-15 -3015 ($ (-1 (-292 |#1|) (-292 |#1|)) $)) (-15 -1220 ($ (-292 |#1|))) (-15 -3122 ($ $)))) (-13 (-973) (-786)) (-589 (-1087))) (T -201))
-((-3119 (*1 *2 *1) (-12 (-5 *2 (-292 *3)) (-5 *1 (-201 *3 *4)) (-4 *3 (-13 (-973) (-786))) (-14 *4 (-589 (-1087))))) (-1211 (*1 *1 *1) (-12 (-5 *1 (-201 *2 *3)) (-4 *2 (-13 (-973) (-786))) (-14 *3 (-589 (-1087))))) (-3142 (*1 *1 *1) (-12 (-5 *1 (-201 *2 *3)) (-4 *2 (-13 (-973) (-786))) (-14 *3 (-589 (-1087))))) (-1234 (*1 *2 *1 *1) (-12 (-5 *2 (-292 *3)) (-5 *1 (-201 *3 *4)) (-4 *3 (-13 (-973) (-786))) (-14 *4 (-589 (-1087))))) (-4102 (*1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-201 *3 *4)) (-4 *3 (-13 (-973) (-786))) (-14 *4 (-589 (-1087))))) (-4151 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-201 *3 *4)) (-4 *3 (-13 (-973) (-786))) (-14 *4 (-589 (-1087))))) (-1936 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-201 *3 *4)) (-4 *3 (-13 (-973) (-786))) (-14 *4 (-589 (-1087))))) (-1487 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-201 *3 *4)) (-4 *3 (-13 (-973) (-786))) (-14 *4 (-589 (-1087))))) (-3015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-292 *3) (-292 *3))) (-4 *3 (-13 (-973) (-786))) (-5 *1 (-201 *3 *4)) (-14 *4 (-589 (-1087))))) (-1220 (*1 *1 *2) (-12 (-5 *2 (-292 *3)) (-4 *3 (-13 (-973) (-786))) (-5 *1 (-201 *3 *4)) (-14 *4 (-589 (-1087))))) (-3122 (*1 *1 *1) (-12 (-5 *1 (-201 *2 *3)) (-4 *2 (-13 (-973) (-786))) (-14 *3 (-589 (-1087))))))
-(-13 (-567 (-292 |#1|)) (-964 (-292 |#1|)) (-10 -8 (-15 -3119 ((-292 |#1|) $)) (-15 -1211 ($ $)) (-15 -3142 ($ $)) (-15 -1234 ((-292 |#1|) $ $)) (-15 -4102 ($ (-710))) (-15 -4151 ((-108) $)) (-15 -1936 ((-108) $)) (-15 -1487 ((-523) $)) (-15 -3015 ($ (-1 (-292 |#1|) (-292 |#1|)) $)) (-15 -1220 ($ (-292 |#1|))) (-15 -3122 ($ $))))
-((-2688 (((-108) (-1070)) 22)) (-3274 (((-3 (-779 |#2|) "failed") (-562 |#2|) |#2| (-779 |#2|) (-779 |#2|) (-108)) 32)) (-1396 (((-3 (-108) "failed") (-1083 |#2|) (-779 |#2|) (-779 |#2|) (-108)) 73) (((-3 (-108) "failed") (-883 |#1|) (-1087) (-779 |#2|) (-779 |#2|) (-108)) 74)))
-(((-202 |#1| |#2|) (-10 -7 (-15 -2688 ((-108) (-1070))) (-15 -3274 ((-3 (-779 |#2|) "failed") (-562 |#2|) |#2| (-779 |#2|) (-779 |#2|) (-108))) (-15 -1396 ((-3 (-108) "failed") (-883 |#1|) (-1087) (-779 |#2|) (-779 |#2|) (-108))) (-15 -1396 ((-3 (-108) "failed") (-1083 |#2|) (-779 |#2|) (-779 |#2|) (-108)))) (-13 (-427) (-786) (-964 (-523)) (-585 (-523))) (-13 (-1109) (-29 |#1|))) (T -202))
-((-1396 (*1 *2 *3 *4 *4 *2) (|partial| -12 (-5 *2 (-108)) (-5 *3 (-1083 *6)) (-5 *4 (-779 *6)) (-4 *6 (-13 (-1109) (-29 *5))) (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-202 *5 *6)))) (-1396 (*1 *2 *3 *4 *5 *5 *2) (|partial| -12 (-5 *2 (-108)) (-5 *3 (-883 *6)) (-5 *4 (-1087)) (-5 *5 (-779 *7)) (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-4 *7 (-13 (-1109) (-29 *6))) (-5 *1 (-202 *6 *7)))) (-3274 (*1 *2 *3 *4 *2 *2 *5) (|partial| -12 (-5 *2 (-779 *4)) (-5 *3 (-562 *4)) (-5 *5 (-108)) (-4 *4 (-13 (-1109) (-29 *6))) (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-202 *6 *4)))) (-2688 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-108)) (-5 *1 (-202 *4 *5)) (-4 *5 (-13 (-1109) (-29 *4))))))
-(-10 -7 (-15 -2688 ((-108) (-1070))) (-15 -3274 ((-3 (-779 |#2|) "failed") (-562 |#2|) |#2| (-779 |#2|) (-779 |#2|) (-108))) (-15 -1396 ((-3 (-108) "failed") (-883 |#1|) (-1087) (-779 |#2|) (-779 |#2|) (-108))) (-15 -1396 ((-3 (-108) "failed") (-1083 |#2|) (-779 |#2|) (-779 |#2|) (-108))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 89)) (-3964 (((-523) $) 99)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-1756 (($ $) NIL)) (-3695 (($ $) 77)) (-2608 (($ $) 65)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3584 (($ $) 56)) (-3684 (((-108) $ $) NIL)) (-3669 (($ $) 75)) (-2588 (($ $) 63)) (-2035 (((-523) $) 116)) (-3717 (($ $) 80)) (-2629 (($ $) 67)) (-1640 (($) NIL T CONST)) (-3710 (($ $) NIL)) (-2898 (((-3 (-523) "failed") $) 115) (((-3 (-383 (-523)) "failed") $) 112)) (-1996 (((-523) $) 113) (((-383 (-523)) $) 110)) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) 92)) (-1328 (((-383 (-523)) $ (-710)) 108) (((-383 (-523)) $ (-710) (-710)) 107)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-2878 (((-852)) 29) (((-852) (-852)) NIL (|has| $ (-6 -4239)))) (-3702 (((-108) $) NIL)) (-2188 (($) 39)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL)) (-1500 (((-523) $) 35)) (-3482 (((-108) $) NIL)) (-1324 (($ $ (-523)) NIL)) (-2765 (($ $) NIL)) (-4050 (((-108) $) 88)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3268 (($ $ $) 53) (($) 34 (-12 (-2575 (|has| $ (-6 -4231))) (-2575 (|has| $ (-6 -4239)))))) (-2644 (($ $ $) 52) (($) 33 (-12 (-2575 (|has| $ (-6 -4231))) (-2575 (|has| $ (-6 -4239)))))) (-4068 (((-523) $) 27)) (-3503 (($ $) 30)) (-3847 (($ $) 57)) (-2062 (($ $) 62)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-2026 (((-852) (-523)) NIL (|has| $ (-6 -4239)))) (-2435 (((-1034) $) NIL) (((-523) $) 90)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3934 (($ $) NIL)) (-1250 (($ $) NIL)) (-1565 (($ (-523) (-523)) NIL) (($ (-523) (-523) (-852)) 100)) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3262 (((-523) $) 28)) (-1320 (($) 38)) (-1847 (($ $) 61)) (-3087 (((-710) $) NIL)) (-1907 (((-1070) (-1070)) 8)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2080 (((-852)) NIL) (((-852) (-852)) NIL (|has| $ (-6 -4239)))) (-4024 (($ $ (-710)) NIL) (($ $) 93)) (-3624 (((-852) (-523)) NIL (|has| $ (-6 -4239)))) (-3730 (($ $) 78)) (-2641 (($ $) 68)) (-3707 (($ $) 79)) (-2617 (($ $) 66)) (-3683 (($ $) 76)) (-2598 (($ $) 64)) (-3077 (((-355) $) 104) (((-203) $) 101) (((-823 (-355)) $) NIL) (((-499) $) 45)) (-3976 (((-794) $) 42) (($ (-523)) 60) (($ $) NIL) (($ (-383 (-523))) NIL) (($ (-523)) 60) (($ (-383 (-523))) NIL)) (-1698 (((-710)) NIL)) (-1516 (($ $) NIL)) (-2954 (((-852)) 32) (((-852) (-852)) NIL (|has| $ (-6 -4239)))) (-3912 (((-852)) 25)) (-3768 (($ $) 83)) (-2680 (($ $) 71) (($ $ $) 109)) (-3842 (((-108) $ $) NIL)) (-3743 (($ $) 81)) (-2655 (($ $) 69)) (-3793 (($ $) 86)) (-3645 (($ $) 74)) (-3135 (($ $) 84)) (-3657 (($ $) 72)) (-3780 (($ $) 85)) (-3632 (($ $) 73)) (-3756 (($ $) 82)) (-2667 (($ $) 70)) (-3984 (($ $) 117)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) 36 T CONST)) (-1440 (($) 37 T CONST)) (-3342 (((-1070) $) 19) (((-1070) $ (-108)) 21) (((-1174) (-761) $) 22) (((-1174) (-761) $ (-108)) 23)) (-3034 (($ $) 96)) (-1943 (($ $ (-710)) NIL) (($ $) NIL)) (-3364 (($ $ $) 98)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 54)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 46)) (-4125 (($ $ $) 87) (($ $ (-523)) 55)) (-4115 (($ $) 47) (($ $ $) 49)) (-4103 (($ $ $) 48)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) 58) (($ $ (-383 (-523))) 128) (($ $ $) 59)) (* (($ (-852) $) 31) (($ (-710) $) NIL) (($ (-523) $) 51) (($ $ $) 50) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL)))
-(((-203) (-13 (-380) (-211) (-767) (-1109) (-564 (-499)) (-10 -8 (-15 -4125 ($ $ (-523))) (-15 ** ($ $ $)) (-15 -1320 ($)) (-15 -2435 ((-523) $)) (-15 -3503 ($ $)) (-15 -3847 ($ $)) (-15 -2680 ($ $ $)) (-15 -3034 ($ $)) (-15 -3364 ($ $ $)) (-15 -1907 ((-1070) (-1070))) (-15 -1328 ((-383 (-523)) $ (-710))) (-15 -1328 ((-383 (-523)) $ (-710) (-710)))))) (T -203))
-((** (*1 *1 *1 *1) (-5 *1 (-203))) (-4125 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-203)))) (-1320 (*1 *1) (-5 *1 (-203))) (-2435 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-203)))) (-3503 (*1 *1 *1) (-5 *1 (-203))) (-3847 (*1 *1 *1) (-5 *1 (-203))) (-2680 (*1 *1 *1 *1) (-5 *1 (-203))) (-3034 (*1 *1 *1) (-5 *1 (-203))) (-3364 (*1 *1 *1 *1) (-5 *1 (-203))) (-1907 (*1 *2 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-203)))) (-1328 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-5 *2 (-383 (-523))) (-5 *1 (-203)))) (-1328 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-710)) (-5 *2 (-383 (-523))) (-5 *1 (-203)))))
-(-13 (-380) (-211) (-767) (-1109) (-564 (-499)) (-10 -8 (-15 -4125 ($ $ (-523))) (-15 ** ($ $ $)) (-15 -1320 ($)) (-15 -2435 ((-523) $)) (-15 -3503 ($ $)) (-15 -3847 ($ $)) (-15 -2680 ($ $ $)) (-15 -3034 ($ $)) (-15 -3364 ($ $ $)) (-15 -1907 ((-1070) (-1070))) (-15 -1328 ((-383 (-523)) $ (-710))) (-15 -1328 ((-383 (-523)) $ (-710) (-710)))))
-((-2431 (((-155 (-203)) (-710) (-155 (-203))) 11) (((-203) (-710) (-203)) 12)) (-1259 (((-155 (-203)) (-155 (-203))) 13) (((-203) (-203)) 14)) (-2576 (((-155 (-203)) (-155 (-203)) (-155 (-203))) 19) (((-203) (-203) (-203)) 22)) (-3959 (((-155 (-203)) (-155 (-203))) 25) (((-203) (-203)) 24)) (-2985 (((-155 (-203)) (-155 (-203)) (-155 (-203))) 43) (((-203) (-203) (-203)) 35)) (-3558 (((-155 (-203)) (-155 (-203)) (-155 (-203))) 48) (((-203) (-203) (-203)) 45)) (-3198 (((-155 (-203)) (-155 (-203)) (-155 (-203))) 15) (((-203) (-203) (-203)) 16)) (-1278 (((-155 (-203)) (-155 (-203)) (-155 (-203))) 17) (((-203) (-203) (-203)) 18)) (-3506 (((-155 (-203)) (-155 (-203))) 60) (((-203) (-203)) 59)) (-2773 (((-203) (-203)) 54) (((-155 (-203)) (-155 (-203))) 58)) (-3034 (((-155 (-203)) (-155 (-203))) 8) (((-203) (-203)) 9)) (-3364 (((-155 (-203)) (-155 (-203)) (-155 (-203))) 30) (((-203) (-203) (-203)) 26)))
-(((-204) (-10 -7 (-15 -3034 ((-203) (-203))) (-15 -3034 ((-155 (-203)) (-155 (-203)))) (-15 -3364 ((-203) (-203) (-203))) (-15 -3364 ((-155 (-203)) (-155 (-203)) (-155 (-203)))) (-15 -1259 ((-203) (-203))) (-15 -1259 ((-155 (-203)) (-155 (-203)))) (-15 -3959 ((-203) (-203))) (-15 -3959 ((-155 (-203)) (-155 (-203)))) (-15 -2431 ((-203) (-710) (-203))) (-15 -2431 ((-155 (-203)) (-710) (-155 (-203)))) (-15 -3198 ((-203) (-203) (-203))) (-15 -3198 ((-155 (-203)) (-155 (-203)) (-155 (-203)))) (-15 -2985 ((-203) (-203) (-203))) (-15 -2985 ((-155 (-203)) (-155 (-203)) (-155 (-203)))) (-15 -1278 ((-203) (-203) (-203))) (-15 -1278 ((-155 (-203)) (-155 (-203)) (-155 (-203)))) (-15 -3558 ((-203) (-203) (-203))) (-15 -3558 ((-155 (-203)) (-155 (-203)) (-155 (-203)))) (-15 -2773 ((-155 (-203)) (-155 (-203)))) (-15 -2773 ((-203) (-203))) (-15 -3506 ((-203) (-203))) (-15 -3506 ((-155 (-203)) (-155 (-203)))) (-15 -2576 ((-203) (-203) (-203))) (-15 -2576 ((-155 (-203)) (-155 (-203)) (-155 (-203)))))) (T -204))
-((-2576 (*1 *2 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204)))) (-2576 (*1 *2 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204)))) (-3506 (*1 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204)))) (-3506 (*1 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204)))) (-2773 (*1 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204)))) (-2773 (*1 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204)))) (-3558 (*1 *2 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204)))) (-3558 (*1 *2 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204)))) (-1278 (*1 *2 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204)))) (-1278 (*1 *2 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204)))) (-2985 (*1 *2 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204)))) (-2985 (*1 *2 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204)))) (-3198 (*1 *2 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204)))) (-3198 (*1 *2 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204)))) (-2431 (*1 *2 *3 *2) (-12 (-5 *2 (-155 (-203))) (-5 *3 (-710)) (-5 *1 (-204)))) (-2431 (*1 *2 *3 *2) (-12 (-5 *2 (-203)) (-5 *3 (-710)) (-5 *1 (-204)))) (-3959 (*1 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204)))) (-3959 (*1 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204)))) (-1259 (*1 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204)))) (-1259 (*1 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204)))) (-3364 (*1 *2 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204)))) (-3364 (*1 *2 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204)))) (-3034 (*1 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204)))) (-3034 (*1 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204)))))
-(-10 -7 (-15 -3034 ((-203) (-203))) (-15 -3034 ((-155 (-203)) (-155 (-203)))) (-15 -3364 ((-203) (-203) (-203))) (-15 -3364 ((-155 (-203)) (-155 (-203)) (-155 (-203)))) (-15 -1259 ((-203) (-203))) (-15 -1259 ((-155 (-203)) (-155 (-203)))) (-15 -3959 ((-203) (-203))) (-15 -3959 ((-155 (-203)) (-155 (-203)))) (-15 -2431 ((-203) (-710) (-203))) (-15 -2431 ((-155 (-203)) (-710) (-155 (-203)))) (-15 -3198 ((-203) (-203) (-203))) (-15 -3198 ((-155 (-203)) (-155 (-203)) (-155 (-203)))) (-15 -2985 ((-203) (-203) (-203))) (-15 -2985 ((-155 (-203)) (-155 (-203)) (-155 (-203)))) (-15 -1278 ((-203) (-203) (-203))) (-15 -1278 ((-155 (-203)) (-155 (-203)) (-155 (-203)))) (-15 -3558 ((-203) (-203) (-203))) (-15 -3558 ((-155 (-203)) (-155 (-203)) (-155 (-203)))) (-15 -2773 ((-155 (-203)) (-155 (-203)))) (-15 -2773 ((-203) (-203))) (-15 -3506 ((-203) (-203))) (-15 -3506 ((-155 (-203)) (-155 (-203)))) (-15 -2576 ((-203) (-203) (-203))) (-15 -2576 ((-155 (-203)) (-155 (-203)) (-155 (-203)))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2448 (($ (-710) (-710)) NIL)) (-3594 (($ $ $) NIL)) (-1659 (($ (-1169 |#1|)) NIL) (($ $) NIL)) (-3049 (($ |#1| |#1| |#1|) 32)) (-2624 (((-108) $) NIL)) (-3152 (($ $ (-523) (-523)) NIL)) (-3808 (($ $ (-523) (-523)) NIL)) (-1499 (($ $ (-523) (-523) (-523) (-523)) NIL)) (-2748 (($ $) NIL)) (-2108 (((-108) $) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-3704 (($ $ (-523) (-523) $) NIL)) (-4101 ((|#1| $ (-523) (-523) |#1|) NIL) (($ $ (-589 (-523)) (-589 (-523)) $) NIL)) (-1205 (($ $ (-523) (-1169 |#1|)) NIL)) (-2963 (($ $ (-523) (-1169 |#1|)) NIL)) (-1254 (($ |#1| |#1| |#1|) 31)) (-1370 (($ (-710) |#1|) NIL)) (-1640 (($) NIL T CONST)) (-1561 (($ $) NIL (|has| |#1| (-284)))) (-2823 (((-1169 |#1|) $ (-523)) NIL)) (-2636 (($ |#1|) 30)) (-3421 (($ |#1|) 29)) (-3402 (($ |#1|) 28)) (-2262 (((-710) $) NIL (|has| |#1| (-515)))) (-3073 ((|#1| $ (-523) (-523) |#1|) NIL)) (-3002 ((|#1| $ (-523) (-523)) NIL)) (-3133 (((-589 |#1|) $) NIL)) (-2534 (((-710) $) NIL (|has| |#1| (-515)))) (-3392 (((-589 (-1169 |#1|)) $) NIL (|has| |#1| (-515)))) (-3656 (((-710) $) NIL)) (-2348 (($ (-710) (-710) |#1|) NIL)) (-3668 (((-710) $) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-2082 ((|#1| $) NIL (|has| |#1| (-6 (-4250 "*"))))) (-1392 (((-523) $) NIL)) (-1219 (((-523) $) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2102 (((-523) $) NIL)) (-3328 (((-523) $) NIL)) (-3078 (($ (-589 (-589 |#1|))) 11)) (-3063 (($ (-1 |#1| |#1|) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3522 (((-589 (-589 |#1|)) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-3714 (((-3 $ "failed") $) NIL (|has| |#1| (-339)))) (-3620 (($) 12)) (-1880 (($ $ $) NIL)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2408 (($ $ |#1|) NIL)) (-2469 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#1| $ (-523) (-523)) NIL) ((|#1| $ (-523) (-523) |#1|) NIL) (($ $ (-589 (-523)) (-589 (-523))) NIL)) (-2148 (($ (-589 |#1|)) NIL) (($ (-589 $)) NIL)) (-2395 (((-108) $) NIL)) (-1273 ((|#1| $) NIL (|has| |#1| (-6 (-4250 "*"))))) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) NIL)) (-2032 (((-1169 |#1|) $ (-523)) NIL)) (-3976 (($ (-1169 |#1|)) NIL) (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-2791 (((-108) $) NIL)) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339)))) (-4115 (($ $ $) NIL) (($ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-523) $) NIL) (((-1169 |#1|) $ (-1169 |#1|)) 15) (((-1169 |#1|) (-1169 |#1|) $) NIL) (((-874 |#1|) $ (-874 |#1|)) 20)) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-205 |#1|) (-13 (-627 |#1| (-1169 |#1|) (-1169 |#1|)) (-10 -8 (-15 * ((-874 |#1|) $ (-874 |#1|))) (-15 -3620 ($)) (-15 -3402 ($ |#1|)) (-15 -3421 ($ |#1|)) (-15 -2636 ($ |#1|)) (-15 -1254 ($ |#1| |#1| |#1|)) (-15 -3049 ($ |#1| |#1| |#1|)))) (-13 (-339) (-1109))) (T -205))
-((* (*1 *2 *1 *2) (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109))) (-5 *1 (-205 *3)))) (-3620 (*1 *1) (-12 (-5 *1 (-205 *2)) (-4 *2 (-13 (-339) (-1109))))) (-3402 (*1 *1 *2) (-12 (-5 *1 (-205 *2)) (-4 *2 (-13 (-339) (-1109))))) (-3421 (*1 *1 *2) (-12 (-5 *1 (-205 *2)) (-4 *2 (-13 (-339) (-1109))))) (-2636 (*1 *1 *2) (-12 (-5 *1 (-205 *2)) (-4 *2 (-13 (-339) (-1109))))) (-1254 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-205 *2)) (-4 *2 (-13 (-339) (-1109))))) (-3049 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-205 *2)) (-4 *2 (-13 (-339) (-1109))))))
-(-13 (-627 |#1| (-1169 |#1|) (-1169 |#1|)) (-10 -8 (-15 * ((-874 |#1|) $ (-874 |#1|))) (-15 -3620 ($)) (-15 -3402 ($ |#1|)) (-15 -3421 ($ |#1|)) (-15 -2636 ($ |#1|)) (-15 -1254 ($ |#1| |#1| |#1|)) (-15 -3049 ($ |#1| |#1| |#1|))))
-((-3627 (($ (-1 (-108) |#2|) $) 16)) (-1869 (($ |#2| $) NIL) (($ (-1 (-108) |#2|) $) 25)) (-1771 (($) NIL) (($ (-589 |#2|)) 11)) (-4037 (((-108) $ $) 23)))
-(((-206 |#1| |#2|) (-10 -8 (-15 -3627 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1869 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1869 (|#1| |#2| |#1|)) (-15 -1771 (|#1| (-589 |#2|))) (-15 -1771 (|#1|)) (-15 -4037 ((-108) |#1| |#1|))) (-207 |#2|) (-1016)) (T -206))
-NIL
-(-10 -8 (-15 -3627 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1869 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1869 (|#1| |#2| |#1|)) (-15 -1771 (|#1| (-589 |#2|))) (-15 -1771 (|#1|)) (-15 -4037 ((-108) |#1| |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2282 (((-108) $ (-710)) 8)) (-3627 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4248)))) (-1640 (($) 7 T CONST)) (-3917 (($ $) 58 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-1869 (($ |#1| $) 47 (|has| $ (-6 -4248))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4248)))) (-2231 (($ |#1| $) 57 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4248)))) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2349 ((|#1| $) 39)) (-3862 (($ |#1| $) 40)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-1322 ((|#1| $) 41)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1771 (($) 49) (($ (-589 |#1|)) 48)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3077 (((-499) $) 59 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 50)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1245 (($ (-589 |#1|)) 42)) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-207 |#1|) (-129) (-1016)) (T -207))
-NIL
-(-13 (-213 |t#1|))
-(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-213 |#1|) . T) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-4024 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-710)) 11) (($ $ (-589 (-1087)) (-589 (-710))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087)) 19) (($ $ (-710)) NIL) (($ $) 16)) (-1943 (($ $ (-1 |#2| |#2|)) 12) (($ $ (-1 |#2| |#2|) (-710)) 14) (($ $ (-589 (-1087)) (-589 (-710))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087)) NIL) (($ $ (-710)) NIL) (($ $) NIL)))
-(((-208 |#1| |#2|) (-10 -8 (-15 -4024 (|#1| |#1|)) (-15 -1943 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -1943 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -1943 (|#1| |#1| (-1087))) (-15 -1943 (|#1| |#1| (-589 (-1087)))) (-15 -1943 (|#1| |#1| (-1087) (-710))) (-15 -1943 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -1943 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -1943 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|)))) (-209 |#2|) (-973)) (T -208))
-NIL
-(-10 -8 (-15 -4024 (|#1| |#1|)) (-15 -1943 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -1943 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -1943 (|#1| |#1| (-1087))) (-15 -1943 (|#1| |#1| (-589 (-1087)))) (-15 -1943 (|#1| |#1| (-1087) (-710))) (-15 -1943 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -1943 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -1943 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-4024 (($ $ (-1 |#1| |#1|)) 52) (($ $ (-1 |#1| |#1|) (-710)) 51) (($ $ (-589 (-1087)) (-589 (-710))) 44 (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) 43 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) 42 (|has| |#1| (-831 (-1087)))) (($ $ (-1087)) 41 (|has| |#1| (-831 (-1087)))) (($ $ (-710)) 39 (|has| |#1| (-211))) (($ $) 37 (|has| |#1| (-211)))) (-3976 (((-794) $) 11) (($ (-523)) 28)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ (-1 |#1| |#1|)) 50) (($ $ (-1 |#1| |#1|) (-710)) 49) (($ $ (-589 (-1087)) (-589 (-710))) 48 (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) 47 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) 46 (|has| |#1| (-831 (-1087)))) (($ $ (-1087)) 45 (|has| |#1| (-831 (-1087)))) (($ $ (-710)) 40 (|has| |#1| (-211))) (($ $) 38 (|has| |#1| (-211)))) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-209 |#1|) (-129) (-973)) (T -209))
-((-4024 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-209 *3)) (-4 *3 (-973)))) (-4024 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-710)) (-4 *1 (-209 *4)) (-4 *4 (-973)))) (-1943 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-209 *3)) (-4 *3 (-973)))) (-1943 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-710)) (-4 *1 (-209 *4)) (-4 *4 (-973)))))
-(-13 (-973) (-10 -8 (-15 -4024 ($ $ (-1 |t#1| |t#1|))) (-15 -4024 ($ $ (-1 |t#1| |t#1|) (-710))) (-15 -1943 ($ $ (-1 |t#1| |t#1|))) (-15 -1943 ($ $ (-1 |t#1| |t#1|) (-710))) (IF (|has| |t#1| (-211)) (-6 (-211)) |%noBranch|) (IF (|has| |t#1| (-831 (-1087))) (-6 (-831 (-1087))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-211) |has| |#1| (-211)) ((-591 $) . T) ((-666) . T) ((-831 (-1087)) |has| |#1| (-831 (-1087))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-4024 (($ $) NIL) (($ $ (-710)) 10)) (-1943 (($ $) 8) (($ $ (-710)) 12)))
-(((-210 |#1|) (-10 -8 (-15 -1943 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1| (-710))) (-15 -1943 (|#1| |#1|)) (-15 -4024 (|#1| |#1|))) (-211)) (T -210))
-NIL
-(-10 -8 (-15 -1943 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1| (-710))) (-15 -1943 (|#1| |#1|)) (-15 -4024 (|#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-4024 (($ $) 38) (($ $ (-710)) 36)) (-3976 (((-794) $) 11) (($ (-523)) 28)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $) 37) (($ $ (-710)) 35)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-211) (-129)) (T -211))
-((-4024 (*1 *1 *1) (-4 *1 (-211))) (-1943 (*1 *1 *1) (-4 *1 (-211))) (-4024 (*1 *1 *1 *2) (-12 (-4 *1 (-211)) (-5 *2 (-710)))) (-1943 (*1 *1 *1 *2) (-12 (-4 *1 (-211)) (-5 *2 (-710)))))
-(-13 (-973) (-10 -8 (-15 -4024 ($ $)) (-15 -1943 ($ $)) (-15 -4024 ($ $ (-710))) (-15 -1943 ($ $ (-710)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 $) . T) ((-666) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-1771 (($) 12) (($ (-589 |#2|)) NIL)) (-4124 (($ $) 14)) (-3985 (($ (-589 |#2|)) 10)) (-3976 (((-794) $) 21)))
-(((-212 |#1| |#2|) (-10 -8 (-15 -3976 ((-794) |#1|)) (-15 -1771 (|#1| (-589 |#2|))) (-15 -1771 (|#1|)) (-15 -3985 (|#1| (-589 |#2|))) (-15 -4124 (|#1| |#1|))) (-213 |#2|) (-1016)) (T -212))
-NIL
-(-10 -8 (-15 -3976 ((-794) |#1|)) (-15 -1771 (|#1| (-589 |#2|))) (-15 -1771 (|#1|)) (-15 -3985 (|#1| (-589 |#2|))) (-15 -4124 (|#1| |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2282 (((-108) $ (-710)) 8)) (-3627 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4248)))) (-1640 (($) 7 T CONST)) (-3917 (($ $) 58 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-1869 (($ |#1| $) 47 (|has| $ (-6 -4248))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4248)))) (-2231 (($ |#1| $) 57 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4248)))) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2349 ((|#1| $) 39)) (-3862 (($ |#1| $) 40)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-1322 ((|#1| $) 41)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1771 (($) 49) (($ (-589 |#1|)) 48)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3077 (((-499) $) 59 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 50)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1245 (($ (-589 |#1|)) 42)) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-213 |#1|) (-129) (-1016)) (T -213))
-((-1771 (*1 *1) (-12 (-4 *1 (-213 *2)) (-4 *2 (-1016)))) (-1771 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-4 *1 (-213 *3)))) (-1869 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4248)) (-4 *1 (-213 *2)) (-4 *2 (-1016)))) (-1869 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4248)) (-4 *1 (-213 *3)) (-4 *3 (-1016)))) (-3627 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4248)) (-4 *1 (-213 *3)) (-4 *3 (-1016)))))
-(-13 (-102 |t#1|) (-140 |t#1|) (-10 -8 (-15 -1771 ($)) (-15 -1771 ($ (-589 |t#1|))) (IF (|has| $ (-6 -4248)) (PROGN (-15 -1869 ($ |t#1| $)) (-15 -1869 ($ (-1 (-108) |t#1|) $)) (-15 -3627 ($ (-1 (-108) |t#1|) $))) |%noBranch|)))
-(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-3215 (((-2 (|:| |varOrder| (-589 (-1087))) (|:| |inhom| (-3 (-589 (-1169 (-710))) "failed")) (|:| |hom| (-589 (-1169 (-710))))) (-271 (-883 (-523)))) 27)))
-(((-214) (-10 -7 (-15 -3215 ((-2 (|:| |varOrder| (-589 (-1087))) (|:| |inhom| (-3 (-589 (-1169 (-710))) "failed")) (|:| |hom| (-589 (-1169 (-710))))) (-271 (-883 (-523))))))) (T -214))
-((-3215 (*1 *2 *3) (-12 (-5 *3 (-271 (-883 (-523)))) (-5 *2 (-2 (|:| |varOrder| (-589 (-1087))) (|:| |inhom| (-3 (-589 (-1169 (-710))) "failed")) (|:| |hom| (-589 (-1169 (-710)))))) (-5 *1 (-214)))))
-(-10 -7 (-15 -3215 ((-2 (|:| |varOrder| (-589 (-1087))) (|:| |inhom| (-3 (-589 (-1169 (-710))) "failed")) (|:| |hom| (-589 (-1169 (-710))))) (-271 (-883 (-523))))))
-((-3843 (((-710)) 51)) (-2203 (((-2 (|:| -2373 (-629 |#3|)) (|:| |vec| (-1169 |#3|))) (-629 $) (-1169 $)) 49) (((-629 |#3|) (-629 $)) 41) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL) (((-629 (-523)) (-629 $)) NIL)) (-4012 (((-126)) 57)) (-4024 (($ $ (-1 |#3| |#3|) (-710)) NIL) (($ $ (-1 |#3| |#3|)) 18) (($ $ (-589 (-1087)) (-589 (-710))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087)) NIL) (($ $ (-710)) NIL) (($ $) NIL)) (-3976 (((-1169 |#3|) $) NIL) (($ |#3|) NIL) (((-794) $) NIL) (($ (-523)) 12) (($ (-383 (-523))) NIL)) (-1698 (((-710)) 15)) (-4125 (($ $ |#3|) 54)))
-(((-215 |#1| |#2| |#3|) (-10 -8 (-15 -3976 (|#1| (-383 (-523)))) (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|)) (-15 -1698 ((-710))) (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -2203 ((-629 (-523)) (-629 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 |#1|) (-1169 |#1|))) (-15 -3976 (|#1| |#3|)) (-15 -4024 (|#1| |#1| (-1 |#3| |#3|))) (-15 -4024 (|#1| |#1| (-1 |#3| |#3|) (-710))) (-15 -2203 ((-629 |#3|) (-629 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 |#3|)) (|:| |vec| (-1169 |#3|))) (-629 |#1|) (-1169 |#1|))) (-15 -3843 ((-710))) (-15 -4125 (|#1| |#1| |#3|)) (-15 -4012 ((-126))) (-15 -3976 ((-1169 |#3|) |#1|))) (-216 |#2| |#3|) (-710) (-1123)) (T -215))
-((-4012 (*1 *2) (-12 (-14 *4 (-710)) (-4 *5 (-1123)) (-5 *2 (-126)) (-5 *1 (-215 *3 *4 *5)) (-4 *3 (-216 *4 *5)))) (-3843 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1123)) (-5 *2 (-710)) (-5 *1 (-215 *3 *4 *5)) (-4 *3 (-216 *4 *5)))) (-1698 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1123)) (-5 *2 (-710)) (-5 *1 (-215 *3 *4 *5)) (-4 *3 (-216 *4 *5)))))
-(-10 -8 (-15 -3976 (|#1| (-383 (-523)))) (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|)) (-15 -1698 ((-710))) (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -2203 ((-629 (-523)) (-629 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 |#1|) (-1169 |#1|))) (-15 -3976 (|#1| |#3|)) (-15 -4024 (|#1| |#1| (-1 |#3| |#3|))) (-15 -4024 (|#1| |#1| (-1 |#3| |#3|) (-710))) (-15 -2203 ((-629 |#3|) (-629 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 |#3|)) (|:| |vec| (-1169 |#3|))) (-629 |#1|) (-1169 |#1|))) (-15 -3843 ((-710))) (-15 -4125 (|#1| |#1| |#3|)) (-15 -4012 ((-126))) (-15 -3976 ((-1169 |#3|) |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#2| (-1016)))) (-2388 (((-108) $) 72 (|has| |#2| (-124)))) (-1932 (($ (-852)) 127 (|has| |#2| (-973)))) (-1666 (((-1174) $ (-523) (-523)) 40 (|has| $ (-6 -4249)))) (-1773 (($ $ $) 123 (|has| |#2| (-732)))) (-2999 (((-3 $ "failed") $ $) 74 (|has| |#2| (-124)))) (-2282 (((-108) $ (-710)) 8)) (-3843 (((-710)) 109 (|has| |#2| (-344)))) (-2035 (((-523) $) 121 (|has| |#2| (-784)))) (-4101 ((|#2| $ (-523) |#2|) 52 (|has| $ (-6 -4249)))) (-1640 (($) 7 T CONST)) (-2898 (((-3 (-523) "failed") $) 67 (-2819 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016)))) (((-3 (-383 (-523)) "failed") $) 64 (-2819 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016)))) (((-3 |#2| "failed") $) 61 (|has| |#2| (-1016)))) (-1996 (((-523) $) 68 (-2819 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016)))) (((-383 (-523)) $) 65 (-2819 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016)))) ((|#2| $) 60 (|has| |#2| (-1016)))) (-2203 (((-629 (-523)) (-629 $)) 108 (-2819 (|has| |#2| (-585 (-523))) (|has| |#2| (-973)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 107 (-2819 (|has| |#2| (-585 (-523))) (|has| |#2| (-973)))) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) 106 (|has| |#2| (-973))) (((-629 |#2|) (-629 $)) 105 (|has| |#2| (-973)))) (-4211 (((-3 $ "failed") $) 99 (|has| |#2| (-973)))) (-3461 (($) 112 (|has| |#2| (-344)))) (-3073 ((|#2| $ (-523) |#2|) 53 (|has| $ (-6 -4249)))) (-3002 ((|#2| $ (-523)) 51)) (-3702 (((-108) $) 119 (|has| |#2| (-784)))) (-3133 (((-589 |#2|) $) 30 (|has| $ (-6 -4248)))) (-3482 (((-108) $) 102 (|has| |#2| (-973)))) (-4050 (((-108) $) 120 (|has| |#2| (-784)))) (-1344 (((-108) $ (-710)) 9)) (-1798 (((-523) $) 43 (|has| (-523) (-786)))) (-3268 (($ $ $) 118 (-3255 (|has| |#2| (-784)) (|has| |#2| (-732))))) (-3056 (((-589 |#2|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#2| $) 27 (-12 (|has| |#2| (-1016)) (|has| $ (-6 -4248))))) (-2133 (((-523) $) 44 (|has| (-523) (-786)))) (-2644 (($ $ $) 117 (-3255 (|has| |#2| (-784)) (|has| |#2| (-732))))) (-3063 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#2| |#2|) $) 35)) (-4076 (((-852) $) 111 (|has| |#2| (-344)))) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#2| (-1016)))) (-2909 (((-589 (-523)) $) 46)) (-2290 (((-108) (-523) $) 47)) (-2557 (($ (-852)) 110 (|has| |#2| (-344)))) (-2435 (((-1034) $) 21 (|has| |#2| (-1016)))) (-3879 ((|#2| $) 42 (|has| (-523) (-786)))) (-2408 (($ $ |#2|) 41 (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#2|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#2|))) 26 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) 25 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) 23 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))) (-2391 (((-108) $ $) 14)) (-1410 (((-108) |#2| $) 45 (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-3184 (((-589 |#2|) $) 48)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#2| $ (-523) |#2|) 50) ((|#2| $ (-523)) 49)) (-1879 ((|#2| $ $) 126 (|has| |#2| (-973)))) (-3621 (($ (-1169 |#2|)) 128)) (-4012 (((-126)) 125 (|has| |#2| (-339)))) (-4024 (($ $) 92 (-2819 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-710)) 90 (-2819 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-1087)) 88 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087))) 87 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1087) (-710)) 86 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087)) (-589 (-710))) 85 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1 |#2| |#2|) (-710)) 78 (|has| |#2| (-973))) (($ $ (-1 |#2| |#2|)) 77 (|has| |#2| (-973)))) (-2452 (((-710) (-1 (-108) |#2|) $) 31 (|has| $ (-6 -4248))) (((-710) |#2| $) 28 (-12 (|has| |#2| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3976 (((-1169 |#2|) $) 129) (($ (-523)) 66 (-3255 (-2819 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016))) (|has| |#2| (-973)))) (($ (-383 (-523))) 63 (-2819 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016)))) (($ |#2|) 62 (|has| |#2| (-1016))) (((-794) $) 18 (|has| |#2| (-563 (-794))))) (-1698 (((-710)) 104 (|has| |#2| (-973)))) (-1505 (((-108) (-1 (-108) |#2|) $) 33 (|has| $ (-6 -4248)))) (-3984 (($ $) 122 (|has| |#2| (-784)))) (-2573 (($ $ (-710)) 100 (|has| |#2| (-973))) (($ $ (-852)) 96 (|has| |#2| (-973)))) (-1428 (($) 71 (|has| |#2| (-124)) CONST)) (-1440 (($) 103 (|has| |#2| (-973)) CONST)) (-1943 (($ $) 91 (-2819 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-710)) 89 (-2819 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-1087)) 84 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087))) 83 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1087) (-710)) 82 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087)) (-589 (-710))) 81 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1 |#2| |#2|) (-710)) 80 (|has| |#2| (-973))) (($ $ (-1 |#2| |#2|)) 79 (|has| |#2| (-973)))) (-4078 (((-108) $ $) 115 (-3255 (|has| |#2| (-784)) (|has| |#2| (-732))))) (-4061 (((-108) $ $) 114 (-3255 (|has| |#2| (-784)) (|has| |#2| (-732))))) (-4037 (((-108) $ $) 20 (|has| |#2| (-1016)))) (-4070 (((-108) $ $) 116 (-3255 (|has| |#2| (-784)) (|has| |#2| (-732))))) (-4052 (((-108) $ $) 113 (-3255 (|has| |#2| (-784)) (|has| |#2| (-732))))) (-4125 (($ $ |#2|) 124 (|has| |#2| (-339)))) (-4115 (($ $ $) 94 (|has| |#2| (-973))) (($ $) 93 (|has| |#2| (-973)))) (-4103 (($ $ $) 69 (|has| |#2| (-25)))) (** (($ $ (-710)) 101 (|has| |#2| (-973))) (($ $ (-852)) 97 (|has| |#2| (-973)))) (* (($ $ $) 98 (|has| |#2| (-973))) (($ (-523) $) 95 (|has| |#2| (-973))) (($ $ |#2|) 76 (|has| |#2| (-666))) (($ |#2| $) 75 (|has| |#2| (-666))) (($ (-710) $) 73 (|has| |#2| (-124))) (($ (-852) $) 70 (|has| |#2| (-25)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-216 |#1| |#2|) (-129) (-710) (-1123)) (T -216))
-((-3621 (*1 *1 *2) (-12 (-5 *2 (-1169 *4)) (-4 *4 (-1123)) (-4 *1 (-216 *3 *4)))) (-1932 (*1 *1 *2) (-12 (-5 *2 (-852)) (-4 *1 (-216 *3 *4)) (-4 *4 (-973)) (-4 *4 (-1123)))) (-1879 (*1 *2 *1 *1) (-12 (-4 *1 (-216 *3 *2)) (-4 *2 (-1123)) (-4 *2 (-973)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-216 *3 *2)) (-4 *2 (-1123)) (-4 *2 (-666)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-216 *3 *2)) (-4 *2 (-1123)) (-4 *2 (-666)))))
-(-13 (-556 (-523) |t#2|) (-563 (-1169 |t#2|)) (-10 -8 (-6 -4248) (-15 -3621 ($ (-1169 |t#2|))) (IF (|has| |t#2| (-1016)) (-6 (-387 |t#2|)) |%noBranch|) (IF (|has| |t#2| (-973)) (PROGN (-6 (-107 |t#2| |t#2|)) (-6 (-209 |t#2|)) (-6 (-353 |t#2|)) (-15 -1932 ($ (-852))) (-15 -1879 (|t#2| $ $))) |%noBranch|) (IF (|has| |t#2| (-25)) (-6 (-25)) |%noBranch|) (IF (|has| |t#2| (-124)) (-6 (-124)) |%noBranch|) (IF (|has| |t#2| (-666)) (PROGN (-15 * ($ |t#2| $)) (-15 * ($ $ |t#2|))) |%noBranch|) (IF (|has| |t#2| (-344)) (-6 (-344)) |%noBranch|) (IF (|has| |t#2| (-158)) (PROGN (-6 (-37 |t#2|)) (-6 (-158))) |%noBranch|) (IF (|has| |t#2| (-6 -4245)) (-6 -4245) |%noBranch|) (IF (|has| |t#2| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |t#2| (-732)) (-6 (-732)) |%noBranch|) (IF (|has| |t#2| (-339)) (-6 (-1176 |t#2|)) |%noBranch|)))
-(((-21) -3255 (|has| |#2| (-973)) (|has| |#2| (-784)) (|has| |#2| (-339)) (|has| |#2| (-158))) ((-23) -3255 (|has| |#2| (-973)) (|has| |#2| (-784)) (|has| |#2| (-732)) (|has| |#2| (-339)) (|has| |#2| (-158)) (|has| |#2| (-124))) ((-25) -3255 (|has| |#2| (-973)) (|has| |#2| (-784)) (|has| |#2| (-732)) (|has| |#2| (-339)) (|has| |#2| (-158)) (|has| |#2| (-124)) (|has| |#2| (-25))) ((-33) . T) ((-37 |#2|) |has| |#2| (-158)) ((-97) -3255 (|has| |#2| (-1016)) (|has| |#2| (-973)) (|has| |#2| (-784)) (|has| |#2| (-732)) (|has| |#2| (-344)) (|has| |#2| (-339)) (|has| |#2| (-158)) (|has| |#2| (-124)) (|has| |#2| (-25))) ((-107 |#2| |#2|) -3255 (|has| |#2| (-973)) (|has| |#2| (-339)) (|has| |#2| (-158))) ((-107 $ $) |has| |#2| (-158)) ((-124) -3255 (|has| |#2| (-973)) (|has| |#2| (-784)) (|has| |#2| (-732)) (|has| |#2| (-339)) (|has| |#2| (-158)) (|has| |#2| (-124))) ((-563 (-794)) -3255 (|has| |#2| (-1016)) (|has| |#2| (-973)) (|has| |#2| (-784)) (|has| |#2| (-732)) (|has| |#2| (-344)) (|has| |#2| (-339)) (|has| |#2| (-158)) (|has| |#2| (-563 (-794))) (|has| |#2| (-124)) (|has| |#2| (-25))) ((-563 (-1169 |#2|)) . T) ((-158) |has| |#2| (-158)) ((-209 |#2|) |has| |#2| (-973)) ((-211) -12 (|has| |#2| (-211)) (|has| |#2| (-973))) ((-263 #0=(-523) |#2|) . T) ((-265 #0# |#2|) . T) ((-286 |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((-344) |has| |#2| (-344)) ((-353 |#2|) |has| |#2| (-973)) ((-387 |#2|) |has| |#2| (-1016)) ((-462 |#2|) . T) ((-556 #0# |#2|) . T) ((-484 |#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((-591 |#2|) -3255 (|has| |#2| (-973)) (|has| |#2| (-339)) (|has| |#2| (-158))) ((-591 $) -3255 (|has| |#2| (-973)) (|has| |#2| (-784)) (|has| |#2| (-158))) ((-585 (-523)) -12 (|has| |#2| (-585 (-523))) (|has| |#2| (-973))) ((-585 |#2|) |has| |#2| (-973)) ((-657 |#2|) -3255 (|has| |#2| (-339)) (|has| |#2| (-158))) ((-666) -3255 (|has| |#2| (-973)) (|has| |#2| (-784)) (|has| |#2| (-158))) ((-730) |has| |#2| (-784)) ((-731) -3255 (|has| |#2| (-784)) (|has| |#2| (-732))) ((-732) |has| |#2| (-732)) ((-733) -3255 (|has| |#2| (-784)) (|has| |#2| (-732))) ((-734) -3255 (|has| |#2| (-784)) (|has| |#2| (-732))) ((-784) |has| |#2| (-784)) ((-786) -3255 (|has| |#2| (-784)) (|has| |#2| (-732))) ((-831 (-1087)) -12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973))) ((-964 (-383 (-523))) -12 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016))) ((-964 (-523)) -12 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016))) ((-964 |#2|) |has| |#2| (-1016)) ((-979 |#2|) -3255 (|has| |#2| (-973)) (|has| |#2| (-339)) (|has| |#2| (-158))) ((-979 $) |has| |#2| (-158)) ((-973) -3255 (|has| |#2| (-973)) (|has| |#2| (-784)) (|has| |#2| (-158))) ((-980) -3255 (|has| |#2| (-973)) (|has| |#2| (-784)) (|has| |#2| (-158))) ((-1028) -3255 (|has| |#2| (-973)) (|has| |#2| (-784)) (|has| |#2| (-158))) ((-1016) -3255 (|has| |#2| (-1016)) (|has| |#2| (-973)) (|has| |#2| (-784)) (|has| |#2| (-732)) (|has| |#2| (-344)) (|has| |#2| (-339)) (|has| |#2| (-158)) (|has| |#2| (-124)) (|has| |#2| (-25))) ((-1123) . T) ((-1176 |#2|) |has| |#2| (-339)))
-((-1586 (((-218 |#1| |#3|) (-1 |#3| |#2| |#3|) (-218 |#1| |#2|) |#3|) 21)) (-1830 ((|#3| (-1 |#3| |#2| |#3|) (-218 |#1| |#2|) |#3|) 23)) (-3015 (((-218 |#1| |#3|) (-1 |#3| |#2|) (-218 |#1| |#2|)) 18)))
-(((-217 |#1| |#2| |#3|) (-10 -7 (-15 -1586 ((-218 |#1| |#3|) (-1 |#3| |#2| |#3|) (-218 |#1| |#2|) |#3|)) (-15 -1830 (|#3| (-1 |#3| |#2| |#3|) (-218 |#1| |#2|) |#3|)) (-15 -3015 ((-218 |#1| |#3|) (-1 |#3| |#2|) (-218 |#1| |#2|)))) (-710) (-1123) (-1123)) (T -217))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-218 *5 *6)) (-14 *5 (-710)) (-4 *6 (-1123)) (-4 *7 (-1123)) (-5 *2 (-218 *5 *7)) (-5 *1 (-217 *5 *6 *7)))) (-1830 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-218 *5 *6)) (-14 *5 (-710)) (-4 *6 (-1123)) (-4 *2 (-1123)) (-5 *1 (-217 *5 *6 *2)))) (-1586 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-218 *6 *7)) (-14 *6 (-710)) (-4 *7 (-1123)) (-4 *5 (-1123)) (-5 *2 (-218 *6 *5)) (-5 *1 (-217 *6 *7 *5)))))
-(-10 -7 (-15 -1586 ((-218 |#1| |#3|) (-1 |#3| |#2| |#3|) (-218 |#1| |#2|) |#3|)) (-15 -1830 (|#3| (-1 |#3| |#2| |#3|) (-218 |#1| |#2|) |#3|)) (-15 -3015 ((-218 |#1| |#3|) (-1 |#3| |#2|) (-218 |#1| |#2|))))
-((-3260 (((-108) $ $) NIL (|has| |#2| (-1016)))) (-2388 (((-108) $) NIL (|has| |#2| (-124)))) (-1932 (($ (-852)) 56 (|has| |#2| (-973)))) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-1773 (($ $ $) 60 (|has| |#2| (-732)))) (-2999 (((-3 $ "failed") $ $) 48 (|has| |#2| (-124)))) (-2282 (((-108) $ (-710)) 17)) (-3843 (((-710)) NIL (|has| |#2| (-344)))) (-2035 (((-523) $) NIL (|has| |#2| (-784)))) (-4101 ((|#2| $ (-523) |#2|) NIL (|has| $ (-6 -4249)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL (-12 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016)))) (((-3 (-383 (-523)) "failed") $) NIL (-12 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016)))) (((-3 |#2| "failed") $) 29 (|has| |#2| (-1016)))) (-1996 (((-523) $) NIL (-12 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016)))) (((-383 (-523)) $) NIL (-12 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016)))) ((|#2| $) 27 (|has| |#2| (-1016)))) (-2203 (((-629 (-523)) (-629 $)) NIL (-12 (|has| |#2| (-585 (-523))) (|has| |#2| (-973)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (-12 (|has| |#2| (-585 (-523))) (|has| |#2| (-973)))) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) NIL (|has| |#2| (-973))) (((-629 |#2|) (-629 $)) NIL (|has| |#2| (-973)))) (-4211 (((-3 $ "failed") $) 53 (|has| |#2| (-973)))) (-3461 (($) NIL (|has| |#2| (-344)))) (-3073 ((|#2| $ (-523) |#2|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#2| $ (-523)) 51)) (-3702 (((-108) $) NIL (|has| |#2| (-784)))) (-3133 (((-589 |#2|) $) 15 (|has| $ (-6 -4248)))) (-3482 (((-108) $) NIL (|has| |#2| (-973)))) (-4050 (((-108) $) NIL (|has| |#2| (-784)))) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) 20 (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-3056 (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-2133 (((-523) $) 50 (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-3063 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#2| |#2|) $) 41)) (-4076 (((-852) $) NIL (|has| |#2| (-344)))) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#2| (-1016)))) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2557 (($ (-852)) NIL (|has| |#2| (-344)))) (-2435 (((-1034) $) NIL (|has| |#2| (-1016)))) (-3879 ((|#2| $) NIL (|has| (-523) (-786)))) (-2408 (($ $ |#2|) NIL (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#2|) $) 24 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#2|))) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-3184 (((-589 |#2|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#2| $ (-523) |#2|) NIL) ((|#2| $ (-523)) 21)) (-1879 ((|#2| $ $) NIL (|has| |#2| (-973)))) (-3621 (($ (-1169 |#2|)) 18)) (-4012 (((-126)) NIL (|has| |#2| (-339)))) (-4024 (($ $) NIL (-12 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-710)) NIL (-12 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-1087)) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1 |#2| |#2|) (-710)) NIL (|has| |#2| (-973))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-973)))) (-2452 (((-710) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248))) (((-710) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-4124 (($ $) NIL)) (-3976 (((-1169 |#2|) $) 10) (($ (-523)) NIL (-3255 (-12 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016))) (|has| |#2| (-973)))) (($ (-383 (-523))) NIL (-12 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016)))) (($ |#2|) 13 (|has| |#2| (-1016))) (((-794) $) NIL (|has| |#2| (-563 (-794))))) (-1698 (((-710)) NIL (|has| |#2| (-973)))) (-1505 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-3984 (($ $) NIL (|has| |#2| (-784)))) (-2573 (($ $ (-710)) NIL (|has| |#2| (-973))) (($ $ (-852)) NIL (|has| |#2| (-973)))) (-1428 (($) 35 (|has| |#2| (-124)) CONST)) (-1440 (($) 38 (|has| |#2| (-973)) CONST)) (-1943 (($ $) NIL (-12 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-710)) NIL (-12 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-1087)) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1 |#2| |#2|) (-710)) NIL (|has| |#2| (-973))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-973)))) (-4078 (((-108) $ $) NIL (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-4061 (((-108) $ $) NIL (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-4037 (((-108) $ $) 26 (|has| |#2| (-1016)))) (-4070 (((-108) $ $) NIL (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-4052 (((-108) $ $) 58 (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-4125 (($ $ |#2|) NIL (|has| |#2| (-339)))) (-4115 (($ $ $) NIL (|has| |#2| (-973))) (($ $) NIL (|has| |#2| (-973)))) (-4103 (($ $ $) 33 (|has| |#2| (-25)))) (** (($ $ (-710)) NIL (|has| |#2| (-973))) (($ $ (-852)) NIL (|has| |#2| (-973)))) (* (($ $ $) 49 (|has| |#2| (-973))) (($ (-523) $) NIL (|has| |#2| (-973))) (($ $ |#2|) 42 (|has| |#2| (-666))) (($ |#2| $) 43 (|has| |#2| (-666))) (($ (-710) $) NIL (|has| |#2| (-124))) (($ (-852) $) NIL (|has| |#2| (-25)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-218 |#1| |#2|) (-216 |#1| |#2|) (-710) (-1123)) (T -218))
-NIL
-(-216 |#1| |#2|)
-((-1676 (((-523) (-589 (-1070))) 24) (((-523) (-1070)) 19)) (-3601 (((-1174) (-589 (-1070))) 29) (((-1174) (-1070)) 28)) (-2130 (((-1070)) 14)) (-2838 (((-1070) (-523) (-1070)) 16)) (-3882 (((-589 (-1070)) (-589 (-1070)) (-523) (-1070)) 25) (((-1070) (-1070) (-523) (-1070)) 23)) (-3675 (((-589 (-1070)) (-589 (-1070))) 13) (((-589 (-1070)) (-1070)) 11)))
-(((-219) (-10 -7 (-15 -3675 ((-589 (-1070)) (-1070))) (-15 -3675 ((-589 (-1070)) (-589 (-1070)))) (-15 -2130 ((-1070))) (-15 -2838 ((-1070) (-523) (-1070))) (-15 -3882 ((-1070) (-1070) (-523) (-1070))) (-15 -3882 ((-589 (-1070)) (-589 (-1070)) (-523) (-1070))) (-15 -3601 ((-1174) (-1070))) (-15 -3601 ((-1174) (-589 (-1070)))) (-15 -1676 ((-523) (-1070))) (-15 -1676 ((-523) (-589 (-1070)))))) (T -219))
-((-1676 (*1 *2 *3) (-12 (-5 *3 (-589 (-1070))) (-5 *2 (-523)) (-5 *1 (-219)))) (-1676 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-523)) (-5 *1 (-219)))) (-3601 (*1 *2 *3) (-12 (-5 *3 (-589 (-1070))) (-5 *2 (-1174)) (-5 *1 (-219)))) (-3601 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-219)))) (-3882 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-589 (-1070))) (-5 *3 (-523)) (-5 *4 (-1070)) (-5 *1 (-219)))) (-3882 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1070)) (-5 *3 (-523)) (-5 *1 (-219)))) (-2838 (*1 *2 *3 *2) (-12 (-5 *2 (-1070)) (-5 *3 (-523)) (-5 *1 (-219)))) (-2130 (*1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-219)))) (-3675 (*1 *2 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-219)))) (-3675 (*1 *2 *3) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-219)) (-5 *3 (-1070)))))
-(-10 -7 (-15 -3675 ((-589 (-1070)) (-1070))) (-15 -3675 ((-589 (-1070)) (-589 (-1070)))) (-15 -2130 ((-1070))) (-15 -2838 ((-1070) (-523) (-1070))) (-15 -3882 ((-1070) (-1070) (-523) (-1070))) (-15 -3882 ((-589 (-1070)) (-589 (-1070)) (-523) (-1070))) (-15 -3601 ((-1174) (-1070))) (-15 -3601 ((-1174) (-589 (-1070)))) (-15 -1676 ((-523) (-1070))) (-15 -1676 ((-523) (-589 (-1070)))))
-((-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) 9)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) 18)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ (-383 (-523)) $) 25) (($ $ (-383 (-523))) NIL)))
-(((-220 |#1|) (-10 -8 (-15 -2573 (|#1| |#1| (-523))) (-15 ** (|#1| |#1| (-523))) (-15 * (|#1| |#1| (-383 (-523)))) (-15 * (|#1| (-383 (-523)) |#1|)) (-15 ** (|#1| |#1| (-710))) (-15 -2573 (|#1| |#1| (-710))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-852))) (-15 -2573 (|#1| |#1| (-852))) (-15 * (|#1| (-523) |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-852) |#1|))) (-221)) (T -220))
-NIL
-(-10 -8 (-15 -2573 (|#1| |#1| (-523))) (-15 ** (|#1| |#1| (-523))) (-15 * (|#1| |#1| (-383 (-523)))) (-15 * (|#1| (-383 (-523)) |#1|)) (-15 ** (|#1| |#1| (-710))) (-15 -2573 (|#1| |#1| (-710))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-852))) (-15 -2573 (|#1| |#1| (-852))) (-15 * (|#1| (-523) |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-852) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3841 (((-1070) $) 9)) (-3071 (($ $) 39)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ (-383 (-523))) 44)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 40)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 41)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ (-383 (-523)) $) 43) (($ $ (-383 (-523))) 42)))
-(((-221) (-129)) (T -221))
-((** (*1 *1 *1 *2) (-12 (-4 *1 (-221)) (-5 *2 (-523)))) (-2573 (*1 *1 *1 *2) (-12 (-4 *1 (-221)) (-5 *2 (-523)))) (-3071 (*1 *1 *1) (-4 *1 (-221))))
-(-13 (-267) (-37 (-383 (-523))) (-10 -8 (-15 ** ($ $ (-523))) (-15 -2573 ($ $ (-523))) (-15 -3071 ($ $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-124) . T) ((-563 (-794)) . T) ((-267) . T) ((-591 #0#) . T) ((-591 $) . T) ((-657 #0#) . T) ((-666) . T) ((-979 #0#) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2058 ((|#1| $) 48)) (-3548 (($ $) 57)) (-2282 (((-108) $ (-710)) 8)) (-3365 ((|#1| $ |#1|) 39 (|has| $ (-6 -4249)))) (-4072 (($ $ $) 53 (|has| $ (-6 -4249)))) (-1295 (($ $ $) 52 (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) 41 (|has| $ (-6 -4249)))) (-1640 (($) 7 T CONST)) (-4015 (($ $) 56)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) 50)) (-3339 (((-108) $ $) 42 (|has| |#1| (-1016)))) (-2025 (($ $) 55)) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-2112 (((-589 |#1|) $) 45)) (-3391 (((-108) $) 49)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2247 ((|#1| $) 59)) (-3612 (($ $) 58)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ "value") 47)) (-2981 (((-523) $ $) 44)) (-2837 (((-108) $) 46)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-1622 (($ $ $) 54 (|has| $ (-6 -4249)))) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) 51)) (-4004 (((-108) $ $) 43 (|has| |#1| (-1016)))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-222 |#1|) (-129) (-1123)) (T -222))
-((-2247 (*1 *2 *1) (-12 (-4 *1 (-222 *2)) (-4 *2 (-1123)))) (-3612 (*1 *1 *1) (-12 (-4 *1 (-222 *2)) (-4 *2 (-1123)))) (-3548 (*1 *1 *1) (-12 (-4 *1 (-222 *2)) (-4 *2 (-1123)))) (-4015 (*1 *1 *1) (-12 (-4 *1 (-222 *2)) (-4 *2 (-1123)))) (-2025 (*1 *1 *1) (-12 (-4 *1 (-222 *2)) (-4 *2 (-1123)))) (-1622 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-222 *2)) (-4 *2 (-1123)))) (-4072 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-222 *2)) (-4 *2 (-1123)))) (-1295 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-222 *2)) (-4 *2 (-1123)))))
-(-13 (-938 |t#1|) (-10 -8 (-15 -2247 (|t#1| $)) (-15 -3612 ($ $)) (-15 -3548 ($ $)) (-15 -4015 ($ $)) (-15 -2025 ($ $)) (IF (|has| $ (-6 -4249)) (PROGN (-15 -1622 ($ $ $)) (-15 -4072 ($ $ $)) (-15 -1295 ($ $ $))) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-938 |#1|) . T) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2058 ((|#1| $) NIL)) (-3972 ((|#1| $) NIL)) (-3548 (($ $) NIL)) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-3117 (($ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4159 (((-108) $) NIL (|has| |#1| (-786))) (((-108) (-1 (-108) |#1| |#1|) $) NIL)) (-2361 (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| |#1| (-786)))) (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3400 (($ $) 10 (|has| |#1| (-786))) (($ (-1 (-108) |#1| |#1|) $) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-3365 ((|#1| $ |#1|) NIL (|has| $ (-6 -4249)))) (-3546 (($ $ $) NIL (|has| $ (-6 -4249)))) (-2535 ((|#1| $ |#1|) NIL (|has| $ (-6 -4249)))) (-1957 ((|#1| $ |#1|) NIL (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4249))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4249))) (($ $ "rest" $) NIL (|has| $ (-6 -4249))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) NIL (|has| $ (-6 -4249))) ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) NIL (|has| $ (-6 -4249)))) (-3627 (($ (-1 (-108) |#1|) $) NIL)) (-1299 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-3962 ((|#1| $) NIL)) (-1640 (($) NIL T CONST)) (-4091 (($ $) NIL (|has| $ (-6 -4249)))) (-4082 (($ $) NIL)) (-3891 (($ $) NIL) (($ $ (-710)) NIL)) (-2543 (($ $) NIL (|has| |#1| (-1016)))) (-3917 (($ $) 7 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-1869 (($ |#1| $) NIL (|has| |#1| (-1016))) (($ (-1 (-108) |#1|) $) NIL)) (-2231 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3073 ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) NIL)) (-2527 (((-108) $) NIL)) (-1894 (((-523) |#1| $ (-523)) NIL (|has| |#1| (-1016))) (((-523) |#1| $) NIL (|has| |#1| (-1016))) (((-523) (-1 (-108) |#1|) $) NIL)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) NIL)) (-3339 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2348 (($ (-710) |#1|) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) NIL (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-3325 (($ $ $) NIL (|has| |#1| (-786))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-3123 (($ $ $) NIL (|has| |#1| (-786))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3745 (($ |#1|) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-2112 (((-589 |#1|) $) NIL)) (-3391 (((-108) $) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2247 ((|#1| $) NIL) (($ $ (-710)) NIL)) (-3862 (($ $ $ (-523)) NIL) (($ |#1| $ (-523)) NIL)) (-3334 (($ $ $ (-523)) NIL) (($ |#1| $ (-523)) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-3879 ((|#1| $) NIL) (($ $ (-710)) NIL)) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2408 (($ $ |#1|) NIL (|has| $ (-6 -4249)))) (-3214 (((-108) $) NIL)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1136 (-523))) NIL) ((|#1| $ (-523)) NIL) ((|#1| $ (-523) |#1|) NIL) (($ $ "unique") 9) (($ $ "sort") 12) (((-710) $ "count") 16)) (-2981 (((-523) $ $) NIL)) (-1314 (($ $ (-1136 (-523))) NIL) (($ $ (-523)) NIL)) (-3725 (($ $ (-1136 (-523))) NIL) (($ $ (-523)) NIL)) (-2202 (($ (-589 |#1|)) 22)) (-2837 (((-108) $) NIL)) (-2238 (($ $) NIL)) (-4198 (($ $) NIL (|has| $ (-6 -4249)))) (-3647 (((-710) $) NIL)) (-2801 (($ $) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2580 (($ $ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) NIL)) (-1622 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2785 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-589 $)) NIL) (($ $ |#1|) NIL)) (-3976 (($ (-589 |#1|)) 17) (((-589 |#1|) $) 18) (((-794) $) 21 (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) NIL)) (-4004 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-1271 (((-710) $) 14 (|has| $ (-6 -4248)))))
-(((-223 |#1|) (-13 (-609 |#1|) (-10 -8 (-15 -3976 ($ (-589 |#1|))) (-15 -3976 ((-589 |#1|) $)) (-15 -2202 ($ (-589 |#1|))) (-15 -1502 ($ $ "unique")) (-15 -1502 ($ $ "sort")) (-15 -1502 ((-710) $ "count")))) (-786)) (T -223))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-786)) (-5 *1 (-223 *3)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-223 *3)) (-4 *3 (-786)))) (-2202 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-786)) (-5 *1 (-223 *3)))) (-1502 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-223 *3)) (-4 *3 (-786)))) (-1502 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-223 *3)) (-4 *3 (-786)))) (-1502 (*1 *2 *1 *3) (-12 (-5 *3 "count") (-5 *2 (-710)) (-5 *1 (-223 *4)) (-4 *4 (-786)))))
-(-13 (-609 |#1|) (-10 -8 (-15 -3976 ($ (-589 |#1|))) (-15 -3976 ((-589 |#1|) $)) (-15 -2202 ($ (-589 |#1|))) (-15 -1502 ($ $ "unique")) (-15 -1502 ($ $ "sort")) (-15 -1502 ((-710) $ "count"))))
-((-2443 (((-3 (-710) "failed") |#1| |#1| (-710)) 27)))
-(((-224 |#1|) (-10 -7 (-15 -2443 ((-3 (-710) "failed") |#1| |#1| (-710)))) (-13 (-666) (-344) (-10 -7 (-15 ** (|#1| |#1| (-523)))))) (T -224))
-((-2443 (*1 *2 *3 *3 *2) (|partial| -12 (-5 *2 (-710)) (-4 *3 (-13 (-666) (-344) (-10 -7 (-15 ** (*3 *3 (-523)))))) (-5 *1 (-224 *3)))))
-(-10 -7 (-15 -2443 ((-3 (-710) "failed") |#1| |#1| (-710))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3716 (((-589 (-796 |#1|)) $) NIL)) (-3540 (((-1083 $) $ (-796 |#1|)) NIL) (((-1083 |#2|) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#2| (-515)))) (-3950 (($ $) NIL (|has| |#2| (-515)))) (-3226 (((-108) $) NIL (|has| |#2| (-515)))) (-2862 (((-710) $) NIL) (((-710) $ (-589 (-796 |#1|))) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-3763 (($ $) NIL (|has| |#2| (-427)))) (-2105 (((-394 $) $) NIL (|has| |#2| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#2| "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#2| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) NIL (|has| |#2| (-964 (-523)))) (((-3 (-796 |#1|) "failed") $) NIL)) (-1996 ((|#2| $) NIL) (((-383 (-523)) $) NIL (|has| |#2| (-964 (-383 (-523))))) (((-523) $) NIL (|has| |#2| (-964 (-523)))) (((-796 |#1|) $) NIL)) (-2210 (($ $ $ (-796 |#1|)) NIL (|has| |#2| (-158)))) (-2095 (($ $ (-589 (-523))) NIL)) (-3142 (($ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) NIL) (((-629 |#2|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2213 (($ $) NIL (|has| |#2| (-427))) (($ $ (-796 |#1|)) NIL (|has| |#2| (-427)))) (-3127 (((-589 $) $) NIL)) (-1330 (((-108) $) NIL (|has| |#2| (-840)))) (-2067 (($ $ |#2| (-218 (-1271 |#1|) (-710)) $) NIL)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| (-796 |#1|) (-817 (-355))) (|has| |#2| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| (-796 |#1|) (-817 (-523))) (|has| |#2| (-817 (-523)))))) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) NIL)) (-3706 (($ (-1083 |#2|) (-796 |#1|)) NIL) (($ (-1083 $) (-796 |#1|)) NIL)) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-3694 (($ |#2| (-218 (-1271 |#1|) (-710))) NIL) (($ $ (-796 |#1|) (-710)) NIL) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ (-796 |#1|)) NIL)) (-2140 (((-218 (-1271 |#1|) (-710)) $) NIL) (((-710) $ (-796 |#1|)) NIL) (((-589 (-710)) $ (-589 (-796 |#1|))) NIL)) (-3268 (($ $ $) NIL (|has| |#2| (-786)))) (-2644 (($ $ $) NIL (|has| |#2| (-786)))) (-3927 (($ (-1 (-218 (-1271 |#1|) (-710)) (-218 (-1271 |#1|) (-710))) $) NIL)) (-3015 (($ (-1 |#2| |#2|) $) NIL)) (-1949 (((-3 (-796 |#1|) "failed") $) NIL)) (-3107 (($ $) NIL)) (-3119 ((|#2| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#2| (-427))) (($ $ $) NIL (|has| |#2| (-427)))) (-3841 (((-1070) $) NIL)) (-3818 (((-3 (-589 $) "failed") $) NIL)) (-1973 (((-3 (-589 $) "failed") $) NIL)) (-3719 (((-3 (-2 (|:| |var| (-796 |#1|)) (|:| -3262 (-710))) "failed") $) NIL)) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) NIL)) (-3095 ((|#2| $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#2| (-427)))) (-2056 (($ (-589 $)) NIL (|has| |#2| (-427))) (($ $ $) NIL (|has| |#2| (-427)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-3573 (((-394 $) $) NIL (|has| |#2| (-840)))) (-2469 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-515))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-515)))) (-1349 (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-796 |#1|) |#2|) NIL) (($ $ (-589 (-796 |#1|)) (-589 |#2|)) NIL) (($ $ (-796 |#1|) $) NIL) (($ $ (-589 (-796 |#1|)) (-589 $)) NIL)) (-4053 (($ $ (-796 |#1|)) NIL (|has| |#2| (-158)))) (-4024 (($ $ (-796 |#1|)) NIL) (($ $ (-589 (-796 |#1|))) NIL) (($ $ (-796 |#1|) (-710)) NIL) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-1487 (((-218 (-1271 |#1|) (-710)) $) NIL) (((-710) $ (-796 |#1|)) NIL) (((-589 (-710)) $ (-589 (-796 |#1|))) NIL)) (-3077 (((-823 (-355)) $) NIL (-12 (|has| (-796 |#1|) (-564 (-823 (-355)))) (|has| |#2| (-564 (-823 (-355)))))) (((-823 (-523)) $) NIL (-12 (|has| (-796 |#1|) (-564 (-823 (-523)))) (|has| |#2| (-564 (-823 (-523)))))) (((-499) $) NIL (-12 (|has| (-796 |#1|) (-564 (-499))) (|has| |#2| (-564 (-499)))))) (-2267 ((|#2| $) NIL (|has| |#2| (-427))) (($ $ (-796 |#1|)) NIL (|has| |#2| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#2| (-840))))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#2|) NIL) (($ (-796 |#1|)) NIL) (($ (-383 (-523))) NIL (-3255 (|has| |#2| (-37 (-383 (-523)))) (|has| |#2| (-964 (-383 (-523)))))) (($ $) NIL (|has| |#2| (-515)))) (-1639 (((-589 |#2|) $) NIL)) (-1234 ((|#2| $ (-218 (-1271 |#1|) (-710))) NIL) (($ $ (-796 |#1|) (-710)) NIL) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#2| (-840))) (|has| |#2| (-134))))) (-1698 (((-710)) NIL)) (-2656 (($ $ $ (-710)) NIL (|has| |#2| (-158)))) (-3842 (((-108) $ $) NIL (|has| |#2| (-515)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ (-796 |#1|)) NIL) (($ $ (-589 (-796 |#1|))) NIL) (($ $ (-796 |#1|) (-710)) NIL) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-4078 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4125 (($ $ |#2|) NIL (|has| |#2| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL (|has| |#2| (-37 (-383 (-523))))) (($ (-383 (-523)) $) NIL (|has| |#2| (-37 (-383 (-523))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-225 |#1| |#2|) (-13 (-880 |#2| (-218 (-1271 |#1|) (-710)) (-796 |#1|)) (-10 -8 (-15 -2095 ($ $ (-589 (-523)))))) (-589 (-1087)) (-973)) (T -225))
-((-2095 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-225 *3 *4)) (-14 *3 (-589 (-1087))) (-4 *4 (-973)))))
-(-13 (-880 |#2| (-218 (-1271 |#1|) (-710)) (-796 |#1|)) (-10 -8 (-15 -2095 ($ $ (-589 (-523))))))
-((-4162 (((-1174) $) 12)) (-1560 (((-167) $) 9)) (-2967 (($ (-167)) 10)) (-3976 (((-794) $) 7)))
-(((-226) (-13 (-563 (-794)) (-10 -8 (-15 -1560 ((-167) $)) (-15 -2967 ($ (-167))) (-15 -4162 ((-1174) $))))) (T -226))
-((-1560 (*1 *2 *1) (-12 (-5 *2 (-167)) (-5 *1 (-226)))) (-2967 (*1 *1 *2) (-12 (-5 *2 (-167)) (-5 *1 (-226)))) (-4162 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-226)))))
-(-13 (-563 (-794)) (-10 -8 (-15 -1560 ((-167) $)) (-15 -2967 ($ (-167))) (-15 -4162 ((-1174) $))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1932 (($ (-852)) NIL (|has| |#4| (-973)))) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-1773 (($ $ $) NIL (|has| |#4| (-732)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-3843 (((-710)) NIL (|has| |#4| (-344)))) (-2035 (((-523) $) NIL (|has| |#4| (-784)))) (-4101 ((|#4| $ (-523) |#4|) NIL (|has| $ (-6 -4249)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#4| "failed") $) NIL (|has| |#4| (-1016))) (((-3 (-523) "failed") $) NIL (-12 (|has| |#4| (-964 (-523))) (|has| |#4| (-1016)))) (((-3 (-383 (-523)) "failed") $) NIL (-12 (|has| |#4| (-964 (-383 (-523)))) (|has| |#4| (-1016))))) (-1996 ((|#4| $) NIL (|has| |#4| (-1016))) (((-523) $) NIL (-12 (|has| |#4| (-964 (-523))) (|has| |#4| (-1016)))) (((-383 (-523)) $) NIL (-12 (|has| |#4| (-964 (-383 (-523)))) (|has| |#4| (-1016))))) (-2203 (((-2 (|:| -2373 (-629 |#4|)) (|:| |vec| (-1169 |#4|))) (-629 $) (-1169 $)) NIL (|has| |#4| (-973))) (((-629 |#4|) (-629 $)) NIL (|has| |#4| (-973))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (-12 (|has| |#4| (-585 (-523))) (|has| |#4| (-973)))) (((-629 (-523)) (-629 $)) NIL (-12 (|has| |#4| (-585 (-523))) (|has| |#4| (-973))))) (-4211 (((-3 $ "failed") $) NIL (|has| |#4| (-973)))) (-3461 (($) NIL (|has| |#4| (-344)))) (-3073 ((|#4| $ (-523) |#4|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#4| $ (-523)) NIL)) (-3702 (((-108) $) NIL (|has| |#4| (-784)))) (-3133 (((-589 |#4|) $) NIL (|has| $ (-6 -4248)))) (-3482 (((-108) $) NIL (|has| |#4| (-973)))) (-4050 (((-108) $) NIL (|has| |#4| (-784)))) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) NIL (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (-3255 (|has| |#4| (-732)) (|has| |#4| (-784))))) (-3056 (((-589 |#4|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#4| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (-3255 (|has| |#4| (-732)) (|has| |#4| (-784))))) (-3063 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#4| |#4|) $) NIL)) (-4076 (((-852) $) NIL (|has| |#4| (-344)))) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2557 (($ (-852)) NIL (|has| |#4| (-344)))) (-2435 (((-1034) $) NIL)) (-3879 ((|#4| $) NIL (|has| (-523) (-786)))) (-2408 (($ $ |#4|) NIL (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#4|))) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-271 |#4|)) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-589 |#4|) (-589 |#4|)) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#4| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016))))) (-3184 (((-589 |#4|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#4| $ (-523) |#4|) NIL) ((|#4| $ (-523)) 12)) (-1879 ((|#4| $ $) NIL (|has| |#4| (-973)))) (-3621 (($ (-1169 |#4|)) NIL)) (-4012 (((-126)) NIL (|has| |#4| (-339)))) (-4024 (($ $ (-1 |#4| |#4|) (-710)) NIL (|has| |#4| (-973))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-973))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#4| (-831 (-1087))) (|has| |#4| (-973)))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#4| (-831 (-1087))) (|has| |#4| (-973)))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#4| (-831 (-1087))) (|has| |#4| (-973)))) (($ $ (-1087)) NIL (-12 (|has| |#4| (-831 (-1087))) (|has| |#4| (-973)))) (($ $ (-710)) NIL (-12 (|has| |#4| (-211)) (|has| |#4| (-973)))) (($ $) NIL (-12 (|has| |#4| (-211)) (|has| |#4| (-973))))) (-2452 (((-710) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248))) (((-710) |#4| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016))))) (-4124 (($ $) NIL)) (-3976 (((-1169 |#4|) $) NIL) (((-794) $) NIL) (($ |#4|) NIL (|has| |#4| (-1016))) (($ (-523)) NIL (-3255 (-12 (|has| |#4| (-964 (-523))) (|has| |#4| (-1016))) (|has| |#4| (-973)))) (($ (-383 (-523))) NIL (-12 (|has| |#4| (-964 (-383 (-523)))) (|has| |#4| (-1016))))) (-1698 (((-710)) NIL (|has| |#4| (-973)))) (-1505 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-3984 (($ $) NIL (|has| |#4| (-784)))) (-2573 (($ $ (-710)) NIL (|has| |#4| (-973))) (($ $ (-852)) NIL (|has| |#4| (-973)))) (-1428 (($) NIL T CONST)) (-1440 (($) NIL (|has| |#4| (-973)) CONST)) (-1943 (($ $ (-1 |#4| |#4|) (-710)) NIL (|has| |#4| (-973))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-973))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#4| (-831 (-1087))) (|has| |#4| (-973)))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#4| (-831 (-1087))) (|has| |#4| (-973)))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#4| (-831 (-1087))) (|has| |#4| (-973)))) (($ $ (-1087)) NIL (-12 (|has| |#4| (-831 (-1087))) (|has| |#4| (-973)))) (($ $ (-710)) NIL (-12 (|has| |#4| (-211)) (|has| |#4| (-973)))) (($ $) NIL (-12 (|has| |#4| (-211)) (|has| |#4| (-973))))) (-4078 (((-108) $ $) NIL (-3255 (|has| |#4| (-732)) (|has| |#4| (-784))))) (-4061 (((-108) $ $) NIL (-3255 (|has| |#4| (-732)) (|has| |#4| (-784))))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (-3255 (|has| |#4| (-732)) (|has| |#4| (-784))))) (-4052 (((-108) $ $) NIL (-3255 (|has| |#4| (-732)) (|has| |#4| (-784))))) (-4125 (($ $ |#4|) NIL (|has| |#4| (-339)))) (-4115 (($ $ $) NIL) (($ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-710)) NIL (|has| |#4| (-973))) (($ $ (-852)) NIL (|has| |#4| (-973)))) (* (($ |#2| $) 14) (($ (-523) $) NIL) (($ (-710) $) NIL) (($ (-852) $) NIL) (($ |#3| $) 18) (($ $ |#4|) NIL (|has| |#4| (-666))) (($ |#4| $) NIL (|has| |#4| (-666))) (($ $ $) NIL (|has| |#4| (-973)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-227 |#1| |#2| |#3| |#4|) (-13 (-216 |#1| |#4|) (-591 |#2|) (-591 |#3|)) (-852) (-973) (-1037 |#1| |#2| (-218 |#1| |#2|) (-218 |#1| |#2|)) (-591 |#2|)) (T -227))
-NIL
-(-13 (-216 |#1| |#4|) (-591 |#2|) (-591 |#3|))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1932 (($ (-852)) NIL (|has| |#3| (-973)))) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-1773 (($ $ $) NIL (|has| |#3| (-732)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-3843 (((-710)) NIL (|has| |#3| (-344)))) (-2035 (((-523) $) NIL (|has| |#3| (-784)))) (-4101 ((|#3| $ (-523) |#3|) NIL (|has| $ (-6 -4249)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#3| "failed") $) NIL (|has| |#3| (-1016))) (((-3 (-523) "failed") $) NIL (-12 (|has| |#3| (-964 (-523))) (|has| |#3| (-1016)))) (((-3 (-383 (-523)) "failed") $) NIL (-12 (|has| |#3| (-964 (-383 (-523)))) (|has| |#3| (-1016))))) (-1996 ((|#3| $) NIL (|has| |#3| (-1016))) (((-523) $) NIL (-12 (|has| |#3| (-964 (-523))) (|has| |#3| (-1016)))) (((-383 (-523)) $) NIL (-12 (|has| |#3| (-964 (-383 (-523)))) (|has| |#3| (-1016))))) (-2203 (((-2 (|:| -2373 (-629 |#3|)) (|:| |vec| (-1169 |#3|))) (-629 $) (-1169 $)) NIL (|has| |#3| (-973))) (((-629 |#3|) (-629 $)) NIL (|has| |#3| (-973))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (-12 (|has| |#3| (-585 (-523))) (|has| |#3| (-973)))) (((-629 (-523)) (-629 $)) NIL (-12 (|has| |#3| (-585 (-523))) (|has| |#3| (-973))))) (-4211 (((-3 $ "failed") $) NIL (|has| |#3| (-973)))) (-3461 (($) NIL (|has| |#3| (-344)))) (-3073 ((|#3| $ (-523) |#3|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#3| $ (-523)) NIL)) (-3702 (((-108) $) NIL (|has| |#3| (-784)))) (-3133 (((-589 |#3|) $) NIL (|has| $ (-6 -4248)))) (-3482 (((-108) $) NIL (|has| |#3| (-973)))) (-4050 (((-108) $) NIL (|has| |#3| (-784)))) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) NIL (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (-3255 (|has| |#3| (-732)) (|has| |#3| (-784))))) (-3056 (((-589 |#3|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#3| (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (-3255 (|has| |#3| (-732)) (|has| |#3| (-784))))) (-3063 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#3| |#3|) $) NIL)) (-4076 (((-852) $) NIL (|has| |#3| (-344)))) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2557 (($ (-852)) NIL (|has| |#3| (-344)))) (-2435 (((-1034) $) NIL)) (-3879 ((|#3| $) NIL (|has| (-523) (-786)))) (-2408 (($ $ |#3|) NIL (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#3|))) NIL (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016)))) (($ $ (-271 |#3|)) NIL (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016)))) (($ $ (-589 |#3|) (-589 |#3|)) NIL (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#3| (-1016))))) (-3184 (((-589 |#3|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#3| $ (-523) |#3|) NIL) ((|#3| $ (-523)) 11)) (-1879 ((|#3| $ $) NIL (|has| |#3| (-973)))) (-3621 (($ (-1169 |#3|)) NIL)) (-4012 (((-126)) NIL (|has| |#3| (-339)))) (-4024 (($ $ (-1 |#3| |#3|) (-710)) NIL (|has| |#3| (-973))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-973))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-1087)) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-710)) NIL (-12 (|has| |#3| (-211)) (|has| |#3| (-973)))) (($ $) NIL (-12 (|has| |#3| (-211)) (|has| |#3| (-973))))) (-2452 (((-710) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4248))) (((-710) |#3| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#3| (-1016))))) (-4124 (($ $) NIL)) (-3976 (((-1169 |#3|) $) NIL) (((-794) $) NIL) (($ |#3|) NIL (|has| |#3| (-1016))) (($ (-523)) NIL (-3255 (-12 (|has| |#3| (-964 (-523))) (|has| |#3| (-1016))) (|has| |#3| (-973)))) (($ (-383 (-523))) NIL (-12 (|has| |#3| (-964 (-383 (-523)))) (|has| |#3| (-1016))))) (-1698 (((-710)) NIL (|has| |#3| (-973)))) (-1505 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4248)))) (-3984 (($ $) NIL (|has| |#3| (-784)))) (-2573 (($ $ (-710)) NIL (|has| |#3| (-973))) (($ $ (-852)) NIL (|has| |#3| (-973)))) (-1428 (($) NIL T CONST)) (-1440 (($) NIL (|has| |#3| (-973)) CONST)) (-1943 (($ $ (-1 |#3| |#3|) (-710)) NIL (|has| |#3| (-973))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-973))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-1087)) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-710)) NIL (-12 (|has| |#3| (-211)) (|has| |#3| (-973)))) (($ $) NIL (-12 (|has| |#3| (-211)) (|has| |#3| (-973))))) (-4078 (((-108) $ $) NIL (-3255 (|has| |#3| (-732)) (|has| |#3| (-784))))) (-4061 (((-108) $ $) NIL (-3255 (|has| |#3| (-732)) (|has| |#3| (-784))))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (-3255 (|has| |#3| (-732)) (|has| |#3| (-784))))) (-4052 (((-108) $ $) NIL (-3255 (|has| |#3| (-732)) (|has| |#3| (-784))))) (-4125 (($ $ |#3|) NIL (|has| |#3| (-339)))) (-4115 (($ $ $) NIL) (($ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-710)) NIL (|has| |#3| (-973))) (($ $ (-852)) NIL (|has| |#3| (-973)))) (* (($ |#2| $) 13) (($ (-523) $) NIL) (($ (-710) $) NIL) (($ (-852) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-666))) (($ |#3| $) NIL (|has| |#3| (-666))) (($ $ $) NIL (|has| |#3| (-973)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-228 |#1| |#2| |#3|) (-13 (-216 |#1| |#3|) (-591 |#2|)) (-710) (-973) (-591 |#2|)) (T -228))
-NIL
-(-13 (-216 |#1| |#3|) (-591 |#2|))
-((-4038 (((-589 (-710)) $) 47) (((-589 (-710)) $ |#3|) 50)) (-1255 (((-710) $) 49) (((-710) $ |#3|) 52)) (-2089 (($ $) 65)) (-2898 (((-3 |#2| "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL) (((-3 (-523) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 72)) (-1500 (((-710) $ |#3|) 39) (((-710) $) 36)) (-1647 (((-1 $ (-710)) |#3|) 15) (((-1 $ (-710)) $) 77)) (-2298 ((|#4| $) 58)) (-2522 (((-108) $) 56)) (-4182 (($ $) 64)) (-1349 (($ $ (-589 (-271 $))) 97) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-589 |#4|) (-589 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-589 |#4|) (-589 $)) NIL) (($ $ |#3| $) NIL) (($ $ (-589 |#3|) (-589 $)) 89) (($ $ |#3| |#2|) NIL) (($ $ (-589 |#3|) (-589 |#2|)) 84)) (-4024 (($ $ |#4|) NIL) (($ $ (-589 |#4|)) NIL) (($ $ |#4| (-710)) NIL) (($ $ (-589 |#4|) (-589 (-710))) NIL) (($ $) NIL) (($ $ (-710)) NIL) (($ $ (-1087)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL) (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-1 |#2| |#2|)) 32)) (-1703 (((-589 |#3|) $) 75)) (-1487 ((|#5| $) NIL) (((-710) $ |#4|) NIL) (((-589 (-710)) $ (-589 |#4|)) NIL) (((-710) $ |#3|) 44)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 67) (($ (-383 (-523))) NIL) (($ $) NIL)))
-(((-229 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3976 (|#1| |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -1349 (|#1| |#1| (-589 |#3|) (-589 |#2|))) (-15 -1349 (|#1| |#1| |#3| |#2|)) (-15 -1349 (|#1| |#1| (-589 |#3|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#3| |#1|)) (-15 -1647 ((-1 |#1| (-710)) |#1|)) (-15 -2089 (|#1| |#1|)) (-15 -4182 (|#1| |#1|)) (-15 -2298 (|#4| |#1|)) (-15 -2522 ((-108) |#1|)) (-15 -1255 ((-710) |#1| |#3|)) (-15 -4038 ((-589 (-710)) |#1| |#3|)) (-15 -1255 ((-710) |#1|)) (-15 -4038 ((-589 (-710)) |#1|)) (-15 -1487 ((-710) |#1| |#3|)) (-15 -1500 ((-710) |#1|)) (-15 -1500 ((-710) |#1| |#3|)) (-15 -1703 ((-589 |#3|) |#1|)) (-15 -1647 ((-1 |#1| (-710)) |#3|)) (-15 -2898 ((-3 |#3| "failed") |#1|)) (-15 -3976 (|#1| |#3|)) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1|)) (-15 -1487 ((-589 (-710)) |#1| (-589 |#4|))) (-15 -1487 ((-710) |#1| |#4|)) (-15 -2898 ((-3 |#4| "failed") |#1|)) (-15 -3976 (|#1| |#4|)) (-15 -1349 (|#1| |#1| (-589 |#4|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#4| |#1|)) (-15 -1349 (|#1| |#1| (-589 |#4|) (-589 |#2|))) (-15 -1349 (|#1| |#1| |#4| |#2|)) (-15 -1349 (|#1| |#1| (-589 |#1|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#1| |#1|)) (-15 -1349 (|#1| |#1| (-271 |#1|))) (-15 -1349 (|#1| |#1| (-589 (-271 |#1|)))) (-15 -1487 (|#5| |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -3976 (|#1| |#2|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -4024 (|#1| |#1| (-589 |#4|) (-589 (-710)))) (-15 -4024 (|#1| |#1| |#4| (-710))) (-15 -4024 (|#1| |#1| (-589 |#4|))) (-15 -4024 (|#1| |#1| |#4|)) (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|))) (-230 |#2| |#3| |#4| |#5|) (-973) (-786) (-243 |#3|) (-732)) (T -229))
-NIL
-(-10 -8 (-15 -3976 (|#1| |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -1349 (|#1| |#1| (-589 |#3|) (-589 |#2|))) (-15 -1349 (|#1| |#1| |#3| |#2|)) (-15 -1349 (|#1| |#1| (-589 |#3|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#3| |#1|)) (-15 -1647 ((-1 |#1| (-710)) |#1|)) (-15 -2089 (|#1| |#1|)) (-15 -4182 (|#1| |#1|)) (-15 -2298 (|#4| |#1|)) (-15 -2522 ((-108) |#1|)) (-15 -1255 ((-710) |#1| |#3|)) (-15 -4038 ((-589 (-710)) |#1| |#3|)) (-15 -1255 ((-710) |#1|)) (-15 -4038 ((-589 (-710)) |#1|)) (-15 -1487 ((-710) |#1| |#3|)) (-15 -1500 ((-710) |#1|)) (-15 -1500 ((-710) |#1| |#3|)) (-15 -1703 ((-589 |#3|) |#1|)) (-15 -1647 ((-1 |#1| (-710)) |#3|)) (-15 -2898 ((-3 |#3| "failed") |#1|)) (-15 -3976 (|#1| |#3|)) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1|)) (-15 -1487 ((-589 (-710)) |#1| (-589 |#4|))) (-15 -1487 ((-710) |#1| |#4|)) (-15 -2898 ((-3 |#4| "failed") |#1|)) (-15 -3976 (|#1| |#4|)) (-15 -1349 (|#1| |#1| (-589 |#4|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#4| |#1|)) (-15 -1349 (|#1| |#1| (-589 |#4|) (-589 |#2|))) (-15 -1349 (|#1| |#1| |#4| |#2|)) (-15 -1349 (|#1| |#1| (-589 |#1|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#1| |#1|)) (-15 -1349 (|#1| |#1| (-271 |#1|))) (-15 -1349 (|#1| |#1| (-589 (-271 |#1|)))) (-15 -1487 (|#5| |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -3976 (|#1| |#2|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -4024 (|#1| |#1| (-589 |#4|) (-589 (-710)))) (-15 -4024 (|#1| |#1| |#4| (-710))) (-15 -4024 (|#1| |#1| (-589 |#4|))) (-15 -4024 (|#1| |#1| |#4|)) (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-4038 (((-589 (-710)) $) 214) (((-589 (-710)) $ |#2|) 212)) (-1255 (((-710) $) 213) (((-710) $ |#2|) 211)) (-3716 (((-589 |#3|) $) 110)) (-3540 (((-1083 $) $ |#3|) 125) (((-1083 |#1|) $) 124)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 87 (|has| |#1| (-515)))) (-3950 (($ $) 88 (|has| |#1| (-515)))) (-3226 (((-108) $) 90 (|has| |#1| (-515)))) (-2862 (((-710) $) 112) (((-710) $ (-589 |#3|)) 111)) (-2999 (((-3 $ "failed") $ $) 19)) (-2319 (((-394 (-1083 $)) (-1083 $)) 100 (|has| |#1| (-840)))) (-3763 (($ $) 98 (|has| |#1| (-427)))) (-2105 (((-394 $) $) 97 (|has| |#1| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) 103 (|has| |#1| (-840)))) (-2089 (($ $) 207)) (-1640 (($) 17 T CONST)) (-2898 (((-3 |#1| "failed") $) 164) (((-3 (-383 (-523)) "failed") $) 162 (|has| |#1| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) 160 (|has| |#1| (-964 (-523)))) (((-3 |#3| "failed") $) 136) (((-3 |#2| "failed") $) 221)) (-1996 ((|#1| $) 165) (((-383 (-523)) $) 161 (|has| |#1| (-964 (-383 (-523))))) (((-523) $) 159 (|has| |#1| (-964 (-523)))) ((|#3| $) 135) ((|#2| $) 220)) (-2210 (($ $ $ |#3|) 108 (|has| |#1| (-158)))) (-3142 (($ $) 154)) (-2203 (((-629 (-523)) (-629 $)) 134 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 133 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) 132) (((-629 |#1|) (-629 $)) 131)) (-4211 (((-3 $ "failed") $) 34)) (-2213 (($ $) 176 (|has| |#1| (-427))) (($ $ |#3|) 105 (|has| |#1| (-427)))) (-3127 (((-589 $) $) 109)) (-1330 (((-108) $) 96 (|has| |#1| (-840)))) (-2067 (($ $ |#1| |#4| $) 172)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 84 (-12 (|has| |#3| (-817 (-355))) (|has| |#1| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 83 (-12 (|has| |#3| (-817 (-523))) (|has| |#1| (-817 (-523)))))) (-1500 (((-710) $ |#2|) 217) (((-710) $) 216)) (-3482 (((-108) $) 31)) (-3288 (((-710) $) 169)) (-3706 (($ (-1083 |#1|) |#3|) 117) (($ (-1083 $) |#3|) 116)) (-2738 (((-589 $) $) 126)) (-4060 (((-108) $) 152)) (-3694 (($ |#1| |#4|) 153) (($ $ |#3| (-710)) 119) (($ $ (-589 |#3|) (-589 (-710))) 118)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ |#3|) 120)) (-2140 ((|#4| $) 170) (((-710) $ |#3|) 122) (((-589 (-710)) $ (-589 |#3|)) 121)) (-3268 (($ $ $) 79 (|has| |#1| (-786)))) (-2644 (($ $ $) 78 (|has| |#1| (-786)))) (-3927 (($ (-1 |#4| |#4|) $) 171)) (-3015 (($ (-1 |#1| |#1|) $) 151)) (-1647 (((-1 $ (-710)) |#2|) 219) (((-1 $ (-710)) $) 206 (|has| |#1| (-211)))) (-1949 (((-3 |#3| "failed") $) 123)) (-3107 (($ $) 149)) (-3119 ((|#1| $) 148)) (-2298 ((|#3| $) 209)) (-2012 (($ (-589 $)) 94 (|has| |#1| (-427))) (($ $ $) 93 (|has| |#1| (-427)))) (-3841 (((-1070) $) 9)) (-2522 (((-108) $) 210)) (-3818 (((-3 (-589 $) "failed") $) 114)) (-1973 (((-3 (-589 $) "failed") $) 115)) (-3719 (((-3 (-2 (|:| |var| |#3|) (|:| -3262 (-710))) "failed") $) 113)) (-4182 (($ $) 208)) (-2435 (((-1034) $) 10)) (-3084 (((-108) $) 166)) (-3095 ((|#1| $) 167)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 95 (|has| |#1| (-427)))) (-2056 (($ (-589 $)) 92 (|has| |#1| (-427))) (($ $ $) 91 (|has| |#1| (-427)))) (-1893 (((-394 (-1083 $)) (-1083 $)) 102 (|has| |#1| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) 101 (|has| |#1| (-840)))) (-3573 (((-394 $) $) 99 (|has| |#1| (-840)))) (-2469 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-515))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-515)))) (-1349 (($ $ (-589 (-271 $))) 145) (($ $ (-271 $)) 144) (($ $ $ $) 143) (($ $ (-589 $) (-589 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-589 |#3|) (-589 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-589 |#3|) (-589 $)) 138) (($ $ |#2| $) 205 (|has| |#1| (-211))) (($ $ (-589 |#2|) (-589 $)) 204 (|has| |#1| (-211))) (($ $ |#2| |#1|) 203 (|has| |#1| (-211))) (($ $ (-589 |#2|) (-589 |#1|)) 202 (|has| |#1| (-211)))) (-4053 (($ $ |#3|) 107 (|has| |#1| (-158)))) (-4024 (($ $ |#3|) 42) (($ $ (-589 |#3|)) 41) (($ $ |#3| (-710)) 40) (($ $ (-589 |#3|) (-589 (-710))) 39) (($ $) 238 (|has| |#1| (-211))) (($ $ (-710)) 236 (|has| |#1| (-211))) (($ $ (-1087)) 234 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) 233 (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) 232 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) 231 (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) 224) (($ $ (-1 |#1| |#1|)) 223)) (-1703 (((-589 |#2|) $) 218)) (-1487 ((|#4| $) 150) (((-710) $ |#3|) 130) (((-589 (-710)) $ (-589 |#3|)) 129) (((-710) $ |#2|) 215)) (-3077 (((-823 (-355)) $) 82 (-12 (|has| |#3| (-564 (-823 (-355)))) (|has| |#1| (-564 (-823 (-355)))))) (((-823 (-523)) $) 81 (-12 (|has| |#3| (-564 (-823 (-523)))) (|has| |#1| (-564 (-823 (-523)))))) (((-499) $) 80 (-12 (|has| |#3| (-564 (-499))) (|has| |#1| (-564 (-499)))))) (-2267 ((|#1| $) 175 (|has| |#1| (-427))) (($ $ |#3|) 106 (|has| |#1| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) 104 (-2819 (|has| $ (-134)) (|has| |#1| (-840))))) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 163) (($ |#3|) 137) (($ |#2|) 222) (($ (-383 (-523))) 72 (-3255 (|has| |#1| (-964 (-383 (-523)))) (|has| |#1| (-37 (-383 (-523)))))) (($ $) 85 (|has| |#1| (-515)))) (-1639 (((-589 |#1|) $) 168)) (-1234 ((|#1| $ |#4|) 155) (($ $ |#3| (-710)) 128) (($ $ (-589 |#3|) (-589 (-710))) 127)) (-2301 (((-3 $ "failed") $) 73 (-3255 (-2819 (|has| $ (-134)) (|has| |#1| (-840))) (|has| |#1| (-134))))) (-1698 (((-710)) 29)) (-2656 (($ $ $ (-710)) 173 (|has| |#1| (-158)))) (-3842 (((-108) $ $) 89 (|has| |#1| (-515)))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ |#3|) 38) (($ $ (-589 |#3|)) 37) (($ $ |#3| (-710)) 36) (($ $ (-589 |#3|) (-589 (-710))) 35) (($ $) 237 (|has| |#1| (-211))) (($ $ (-710)) 235 (|has| |#1| (-211))) (($ $ (-1087)) 230 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) 229 (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) 228 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) 227 (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) 226) (($ $ (-1 |#1| |#1|)) 225)) (-4078 (((-108) $ $) 76 (|has| |#1| (-786)))) (-4061 (((-108) $ $) 75 (|has| |#1| (-786)))) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 77 (|has| |#1| (-786)))) (-4052 (((-108) $ $) 74 (|has| |#1| (-786)))) (-4125 (($ $ |#1|) 156 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 (-523))) 158 (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) 157 (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
-(((-230 |#1| |#2| |#3| |#4|) (-129) (-973) (-786) (-243 |t#2|) (-732)) (T -230))
-((-1647 (*1 *2 *3) (-12 (-4 *4 (-973)) (-4 *3 (-786)) (-4 *5 (-243 *3)) (-4 *6 (-732)) (-5 *2 (-1 *1 (-710))) (-4 *1 (-230 *4 *3 *5 *6)))) (-1703 (*1 *2 *1) (-12 (-4 *1 (-230 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-786)) (-4 *5 (-243 *4)) (-4 *6 (-732)) (-5 *2 (-589 *4)))) (-1500 (*1 *2 *1 *3) (-12 (-4 *1 (-230 *4 *3 *5 *6)) (-4 *4 (-973)) (-4 *3 (-786)) (-4 *5 (-243 *3)) (-4 *6 (-732)) (-5 *2 (-710)))) (-1500 (*1 *2 *1) (-12 (-4 *1 (-230 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-786)) (-4 *5 (-243 *4)) (-4 *6 (-732)) (-5 *2 (-710)))) (-1487 (*1 *2 *1 *3) (-12 (-4 *1 (-230 *4 *3 *5 *6)) (-4 *4 (-973)) (-4 *3 (-786)) (-4 *5 (-243 *3)) (-4 *6 (-732)) (-5 *2 (-710)))) (-4038 (*1 *2 *1) (-12 (-4 *1 (-230 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-786)) (-4 *5 (-243 *4)) (-4 *6 (-732)) (-5 *2 (-589 (-710))))) (-1255 (*1 *2 *1) (-12 (-4 *1 (-230 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-786)) (-4 *5 (-243 *4)) (-4 *6 (-732)) (-5 *2 (-710)))) (-4038 (*1 *2 *1 *3) (-12 (-4 *1 (-230 *4 *3 *5 *6)) (-4 *4 (-973)) (-4 *3 (-786)) (-4 *5 (-243 *3)) (-4 *6 (-732)) (-5 *2 (-589 (-710))))) (-1255 (*1 *2 *1 *3) (-12 (-4 *1 (-230 *4 *3 *5 *6)) (-4 *4 (-973)) (-4 *3 (-786)) (-4 *5 (-243 *3)) (-4 *6 (-732)) (-5 *2 (-710)))) (-2522 (*1 *2 *1) (-12 (-4 *1 (-230 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-786)) (-4 *5 (-243 *4)) (-4 *6 (-732)) (-5 *2 (-108)))) (-2298 (*1 *2 *1) (-12 (-4 *1 (-230 *3 *4 *2 *5)) (-4 *3 (-973)) (-4 *4 (-786)) (-4 *5 (-732)) (-4 *2 (-243 *4)))) (-4182 (*1 *1 *1) (-12 (-4 *1 (-230 *2 *3 *4 *5)) (-4 *2 (-973)) (-4 *3 (-786)) (-4 *4 (-243 *3)) (-4 *5 (-732)))) (-2089 (*1 *1 *1) (-12 (-4 *1 (-230 *2 *3 *4 *5)) (-4 *2 (-973)) (-4 *3 (-786)) (-4 *4 (-243 *3)) (-4 *5 (-732)))) (-1647 (*1 *2 *1) (-12 (-4 *3 (-211)) (-4 *3 (-973)) (-4 *4 (-786)) (-4 *5 (-243 *4)) (-4 *6 (-732)) (-5 *2 (-1 *1 (-710))) (-4 *1 (-230 *3 *4 *5 *6)))))
-(-13 (-880 |t#1| |t#4| |t#3|) (-209 |t#1|) (-964 |t#2|) (-10 -8 (-15 -1647 ((-1 $ (-710)) |t#2|)) (-15 -1703 ((-589 |t#2|) $)) (-15 -1500 ((-710) $ |t#2|)) (-15 -1500 ((-710) $)) (-15 -1487 ((-710) $ |t#2|)) (-15 -4038 ((-589 (-710)) $)) (-15 -1255 ((-710) $)) (-15 -4038 ((-589 (-710)) $ |t#2|)) (-15 -1255 ((-710) $ |t#2|)) (-15 -2522 ((-108) $)) (-15 -2298 (|t#3| $)) (-15 -4182 ($ $)) (-15 -2089 ($ $)) (IF (|has| |t#1| (-211)) (PROGN (-6 (-484 |t#2| |t#1|)) (-6 (-484 |t#2| $)) (-6 (-286 $)) (-15 -1647 ((-1 $ (-710)) $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| |#4|) . T) ((-25) . T) ((-37 #0=(-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((-37 |#1|) |has| |#1| (-158)) ((-37 $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427))) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-383 (-523)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-158))) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-158))) ((-564 (-499)) -12 (|has| |#1| (-564 (-499))) (|has| |#3| (-564 (-499)))) ((-564 (-823 (-355))) -12 (|has| |#1| (-564 (-823 (-355)))) (|has| |#3| (-564 (-823 (-355))))) ((-564 (-823 (-523))) -12 (|has| |#1| (-564 (-823 (-523)))) (|has| |#3| (-564 (-823 (-523))))) ((-209 |#1|) . T) ((-211) |has| |#1| (-211)) ((-267) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427))) ((-286 $) . T) ((-302 |#1| |#4|) . T) ((-353 |#1|) . T) ((-387 |#1|) . T) ((-427) -3255 (|has| |#1| (-840)) (|has| |#1| (-427))) ((-484 |#2| |#1|) |has| |#1| (-211)) ((-484 |#2| $) |has| |#1| (-211)) ((-484 |#3| |#1|) . T) ((-484 |#3| $) . T) ((-484 $ $) . T) ((-515) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427))) ((-591 #0#) |has| |#1| (-37 (-383 (-523)))) ((-591 |#1|) . T) ((-591 $) . T) ((-585 (-523)) |has| |#1| (-585 (-523))) ((-585 |#1|) . T) ((-657 #0#) |has| |#1| (-37 (-383 (-523)))) ((-657 |#1|) |has| |#1| (-158)) ((-657 $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427))) ((-666) . T) ((-786) |has| |#1| (-786)) ((-831 (-1087)) |has| |#1| (-831 (-1087))) ((-831 |#3|) . T) ((-817 (-355)) -12 (|has| |#1| (-817 (-355))) (|has| |#3| (-817 (-355)))) ((-817 (-523)) -12 (|has| |#1| (-817 (-523))) (|has| |#3| (-817 (-523)))) ((-880 |#1| |#4| |#3|) . T) ((-840) |has| |#1| (-840)) ((-964 (-383 (-523))) |has| |#1| (-964 (-383 (-523)))) ((-964 (-523)) |has| |#1| (-964 (-523))) ((-964 |#1|) . T) ((-964 |#2|) . T) ((-964 |#3|) . T) ((-979 #0#) |has| |#1| (-37 (-383 (-523)))) ((-979 |#1|) . T) ((-979 $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-158))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1127) |has| |#1| (-840)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2186 ((|#1| $) 54)) (-3346 ((|#1| $) 44)) (-2282 (((-108) $ (-710)) 8)) (-1640 (($) 7 T CONST)) (-3629 (($ $) 60)) (-4091 (($ $) 48)) (-2230 ((|#1| |#1| $) 46)) (-2868 ((|#1| $) 45)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-3229 (((-710) $) 61)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2349 ((|#1| $) 39)) (-2308 ((|#1| |#1| $) 52)) (-3188 ((|#1| |#1| $) 51)) (-3862 (($ |#1| $) 40)) (-1942 (((-710) $) 55)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-2764 ((|#1| $) 62)) (-3637 ((|#1| $) 50)) (-1934 ((|#1| $) 49)) (-1322 ((|#1| $) 41)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3844 ((|#1| |#1| $) 58)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1671 ((|#1| $) 59)) (-3724 (($) 57) (($ (-589 |#1|)) 56)) (-4120 (((-710) $) 43)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-2804 ((|#1| $) 53)) (-1245 (($ (-589 |#1|)) 42)) (-2939 ((|#1| $) 63)) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-231 |#1|) (-129) (-1123)) (T -231))
-((-3724 (*1 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123)))) (-3724 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-4 *1 (-231 *3)))) (-1942 (*1 *2 *1) (-12 (-4 *1 (-231 *3)) (-4 *3 (-1123)) (-5 *2 (-710)))) (-2186 (*1 *2 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123)))) (-2804 (*1 *2 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123)))) (-2308 (*1 *2 *2 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123)))) (-3188 (*1 *2 *2 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123)))) (-3637 (*1 *2 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123)))) (-1934 (*1 *2 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123)))) (-4091 (*1 *1 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123)))))
-(-13 (-1035 |t#1|) (-923 |t#1|) (-10 -8 (-15 -3724 ($)) (-15 -3724 ($ (-589 |t#1|))) (-15 -1942 ((-710) $)) (-15 -2186 (|t#1| $)) (-15 -2804 (|t#1| $)) (-15 -2308 (|t#1| |t#1| $)) (-15 -3188 (|t#1| |t#1| $)) (-15 -3637 (|t#1| $)) (-15 -1934 (|t#1| $)) (-15 -4091 ($ $))))
-(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-923 |#1|) . T) ((-1016) |has| |#1| (-1016)) ((-1035 |#1|) . T) ((-1123) . T))
-((-3797 (((-1 (-874 (-203)) (-203) (-203)) (-1 (-874 (-203)) (-203) (-203)) (-1 (-203) (-203) (-203) (-203))) 139)) (-2258 (((-1047 (-203)) (-813 (-1 (-203) (-203) (-203))) (-1011 (-355)) (-1011 (-355))) 160) (((-1047 (-203)) (-813 (-1 (-203) (-203) (-203))) (-1011 (-355)) (-1011 (-355)) (-589 (-240))) 158) (((-1047 (-203)) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-355)) (-1011 (-355))) 163) (((-1047 (-203)) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-355)) (-1011 (-355)) (-589 (-240))) 159) (((-1047 (-203)) (-1 (-203) (-203) (-203)) (-1011 (-355)) (-1011 (-355))) 150) (((-1047 (-203)) (-1 (-203) (-203) (-203)) (-1011 (-355)) (-1011 (-355)) (-589 (-240))) 149) (((-1047 (-203)) (-1 (-874 (-203)) (-203)) (-1011 (-355))) 129) (((-1047 (-203)) (-1 (-874 (-203)) (-203)) (-1011 (-355)) (-589 (-240))) 127) (((-1047 (-203)) (-810 (-1 (-203) (-203))) (-1011 (-355))) 128) (((-1047 (-203)) (-810 (-1 (-203) (-203))) (-1011 (-355)) (-589 (-240))) 125)) (-2224 (((-1171) (-813 (-1 (-203) (-203) (-203))) (-1011 (-355)) (-1011 (-355))) 162) (((-1171) (-813 (-1 (-203) (-203) (-203))) (-1011 (-355)) (-1011 (-355)) (-589 (-240))) 161) (((-1171) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-355)) (-1011 (-355))) 165) (((-1171) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-355)) (-1011 (-355)) (-589 (-240))) 164) (((-1171) (-1 (-203) (-203) (-203)) (-1011 (-355)) (-1011 (-355))) 152) (((-1171) (-1 (-203) (-203) (-203)) (-1011 (-355)) (-1011 (-355)) (-589 (-240))) 151) (((-1171) (-1 (-874 (-203)) (-203)) (-1011 (-355))) 135) (((-1171) (-1 (-874 (-203)) (-203)) (-1011 (-355)) (-589 (-240))) 134) (((-1171) (-810 (-1 (-203) (-203))) (-1011 (-355))) 133) (((-1171) (-810 (-1 (-203) (-203))) (-1011 (-355)) (-589 (-240))) 132) (((-1170) (-808 (-1 (-203) (-203))) (-1011 (-355))) 100) (((-1170) (-808 (-1 (-203) (-203))) (-1011 (-355)) (-589 (-240))) 99) (((-1170) (-1 (-203) (-203)) (-1011 (-355))) 96) (((-1170) (-1 (-203) (-203)) (-1011 (-355)) (-589 (-240))) 95)))
-(((-232) (-10 -7 (-15 -2224 ((-1170) (-1 (-203) (-203)) (-1011 (-355)) (-589 (-240)))) (-15 -2224 ((-1170) (-1 (-203) (-203)) (-1011 (-355)))) (-15 -2224 ((-1170) (-808 (-1 (-203) (-203))) (-1011 (-355)) (-589 (-240)))) (-15 -2224 ((-1170) (-808 (-1 (-203) (-203))) (-1011 (-355)))) (-15 -2224 ((-1171) (-810 (-1 (-203) (-203))) (-1011 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) (-810 (-1 (-203) (-203))) (-1011 (-355)))) (-15 -2224 ((-1171) (-1 (-874 (-203)) (-203)) (-1011 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) (-1 (-874 (-203)) (-203)) (-1011 (-355)))) (-15 -2258 ((-1047 (-203)) (-810 (-1 (-203) (-203))) (-1011 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) (-810 (-1 (-203) (-203))) (-1011 (-355)))) (-15 -2258 ((-1047 (-203)) (-1 (-874 (-203)) (-203)) (-1011 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) (-1 (-874 (-203)) (-203)) (-1011 (-355)))) (-15 -2224 ((-1171) (-1 (-203) (-203) (-203)) (-1011 (-355)) (-1011 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) (-1 (-203) (-203) (-203)) (-1011 (-355)) (-1011 (-355)))) (-15 -2258 ((-1047 (-203)) (-1 (-203) (-203) (-203)) (-1011 (-355)) (-1011 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) (-1 (-203) (-203) (-203)) (-1011 (-355)) (-1011 (-355)))) (-15 -2224 ((-1171) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-355)) (-1011 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-355)) (-1011 (-355)))) (-15 -2258 ((-1047 (-203)) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-355)) (-1011 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-355)) (-1011 (-355)))) (-15 -2224 ((-1171) (-813 (-1 (-203) (-203) (-203))) (-1011 (-355)) (-1011 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) (-813 (-1 (-203) (-203) (-203))) (-1011 (-355)) (-1011 (-355)))) (-15 -2258 ((-1047 (-203)) (-813 (-1 (-203) (-203) (-203))) (-1011 (-355)) (-1011 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) (-813 (-1 (-203) (-203) (-203))) (-1011 (-355)) (-1011 (-355)))) (-15 -3797 ((-1 (-874 (-203)) (-203) (-203)) (-1 (-874 (-203)) (-203) (-203)) (-1 (-203) (-203) (-203) (-203)))))) (T -232))
-((-3797 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-874 (-203)) (-203) (-203))) (-5 *3 (-1 (-203) (-203) (-203) (-203))) (-5 *1 (-232)))) (-2258 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-813 (-1 (-203) (-203) (-203)))) (-5 *4 (-1011 (-355))) (-5 *2 (-1047 (-203))) (-5 *1 (-232)))) (-2258 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-813 (-1 (-203) (-203) (-203)))) (-5 *4 (-1011 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-232)))) (-2224 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-813 (-1 (-203) (-203) (-203)))) (-5 *4 (-1011 (-355))) (-5 *2 (-1171)) (-5 *1 (-232)))) (-2224 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-813 (-1 (-203) (-203) (-203)))) (-5 *4 (-1011 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1171)) (-5 *1 (-232)))) (-2258 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-874 (-203)) (-203) (-203))) (-5 *4 (-1011 (-355))) (-5 *2 (-1047 (-203))) (-5 *1 (-232)))) (-2258 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-874 (-203)) (-203) (-203))) (-5 *4 (-1011 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-232)))) (-2224 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-874 (-203)) (-203) (-203))) (-5 *4 (-1011 (-355))) (-5 *2 (-1171)) (-5 *1 (-232)))) (-2224 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-874 (-203)) (-203) (-203))) (-5 *4 (-1011 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1171)) (-5 *1 (-232)))) (-2258 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-203) (-203) (-203))) (-5 *4 (-1011 (-355))) (-5 *2 (-1047 (-203))) (-5 *1 (-232)))) (-2258 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-203) (-203) (-203))) (-5 *4 (-1011 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-232)))) (-2224 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-203) (-203) (-203))) (-5 *4 (-1011 (-355))) (-5 *2 (-1171)) (-5 *1 (-232)))) (-2224 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-203) (-203) (-203))) (-5 *4 (-1011 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1171)) (-5 *1 (-232)))) (-2258 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-874 (-203)) (-203))) (-5 *4 (-1011 (-355))) (-5 *2 (-1047 (-203))) (-5 *1 (-232)))) (-2258 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-874 (-203)) (-203))) (-5 *4 (-1011 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-232)))) (-2258 (*1 *2 *3 *4) (-12 (-5 *3 (-810 (-1 (-203) (-203)))) (-5 *4 (-1011 (-355))) (-5 *2 (-1047 (-203))) (-5 *1 (-232)))) (-2258 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-810 (-1 (-203) (-203)))) (-5 *4 (-1011 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-232)))) (-2224 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-874 (-203)) (-203))) (-5 *4 (-1011 (-355))) (-5 *2 (-1171)) (-5 *1 (-232)))) (-2224 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-874 (-203)) (-203))) (-5 *4 (-1011 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1171)) (-5 *1 (-232)))) (-2224 (*1 *2 *3 *4) (-12 (-5 *3 (-810 (-1 (-203) (-203)))) (-5 *4 (-1011 (-355))) (-5 *2 (-1171)) (-5 *1 (-232)))) (-2224 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-810 (-1 (-203) (-203)))) (-5 *4 (-1011 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1171)) (-5 *1 (-232)))) (-2224 (*1 *2 *3 *4) (-12 (-5 *3 (-808 (-1 (-203) (-203)))) (-5 *4 (-1011 (-355))) (-5 *2 (-1170)) (-5 *1 (-232)))) (-2224 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-808 (-1 (-203) (-203)))) (-5 *4 (-1011 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1170)) (-5 *1 (-232)))) (-2224 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-203) (-203))) (-5 *4 (-1011 (-355))) (-5 *2 (-1170)) (-5 *1 (-232)))) (-2224 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-203) (-203))) (-5 *4 (-1011 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1170)) (-5 *1 (-232)))))
-(-10 -7 (-15 -2224 ((-1170) (-1 (-203) (-203)) (-1011 (-355)) (-589 (-240)))) (-15 -2224 ((-1170) (-1 (-203) (-203)) (-1011 (-355)))) (-15 -2224 ((-1170) (-808 (-1 (-203) (-203))) (-1011 (-355)) (-589 (-240)))) (-15 -2224 ((-1170) (-808 (-1 (-203) (-203))) (-1011 (-355)))) (-15 -2224 ((-1171) (-810 (-1 (-203) (-203))) (-1011 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) (-810 (-1 (-203) (-203))) (-1011 (-355)))) (-15 -2224 ((-1171) (-1 (-874 (-203)) (-203)) (-1011 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) (-1 (-874 (-203)) (-203)) (-1011 (-355)))) (-15 -2258 ((-1047 (-203)) (-810 (-1 (-203) (-203))) (-1011 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) (-810 (-1 (-203) (-203))) (-1011 (-355)))) (-15 -2258 ((-1047 (-203)) (-1 (-874 (-203)) (-203)) (-1011 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) (-1 (-874 (-203)) (-203)) (-1011 (-355)))) (-15 -2224 ((-1171) (-1 (-203) (-203) (-203)) (-1011 (-355)) (-1011 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) (-1 (-203) (-203) (-203)) (-1011 (-355)) (-1011 (-355)))) (-15 -2258 ((-1047 (-203)) (-1 (-203) (-203) (-203)) (-1011 (-355)) (-1011 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) (-1 (-203) (-203) (-203)) (-1011 (-355)) (-1011 (-355)))) (-15 -2224 ((-1171) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-355)) (-1011 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-355)) (-1011 (-355)))) (-15 -2258 ((-1047 (-203)) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-355)) (-1011 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-355)) (-1011 (-355)))) (-15 -2224 ((-1171) (-813 (-1 (-203) (-203) (-203))) (-1011 (-355)) (-1011 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) (-813 (-1 (-203) (-203) (-203))) (-1011 (-355)) (-1011 (-355)))) (-15 -2258 ((-1047 (-203)) (-813 (-1 (-203) (-203) (-203))) (-1011 (-355)) (-1011 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) (-813 (-1 (-203) (-203) (-203))) (-1011 (-355)) (-1011 (-355)))) (-15 -3797 ((-1 (-874 (-203)) (-203) (-203)) (-1 (-874 (-203)) (-203) (-203)) (-1 (-203) (-203) (-203) (-203)))))
-((-2224 (((-1170) (-271 |#2|) (-1087) (-1087) (-589 (-240))) 96)))
-(((-233 |#1| |#2|) (-10 -7 (-15 -2224 ((-1170) (-271 |#2|) (-1087) (-1087) (-589 (-240))))) (-13 (-515) (-786) (-964 (-523))) (-406 |#1|)) (T -233))
-((-2224 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-271 *7)) (-5 *4 (-1087)) (-5 *5 (-589 (-240))) (-4 *7 (-406 *6)) (-4 *6 (-13 (-515) (-786) (-964 (-523)))) (-5 *2 (-1170)) (-5 *1 (-233 *6 *7)))))
-(-10 -7 (-15 -2224 ((-1170) (-271 |#2|) (-1087) (-1087) (-589 (-240)))))
-((-3114 (((-523) (-523)) 50)) (-2988 (((-523) (-523)) 51)) (-1819 (((-203) (-203)) 52)) (-1601 (((-1171) (-1 (-155 (-203)) (-155 (-203))) (-1011 (-203)) (-1011 (-203))) 49)) (-4208 (((-1171) (-1 (-155 (-203)) (-155 (-203))) (-1011 (-203)) (-1011 (-203)) (-108)) 47)))
-(((-234) (-10 -7 (-15 -4208 ((-1171) (-1 (-155 (-203)) (-155 (-203))) (-1011 (-203)) (-1011 (-203)) (-108))) (-15 -1601 ((-1171) (-1 (-155 (-203)) (-155 (-203))) (-1011 (-203)) (-1011 (-203)))) (-15 -3114 ((-523) (-523))) (-15 -2988 ((-523) (-523))) (-15 -1819 ((-203) (-203))))) (T -234))
-((-1819 (*1 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-234)))) (-2988 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-234)))) (-3114 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-234)))) (-1601 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-155 (-203)) (-155 (-203)))) (-5 *4 (-1011 (-203))) (-5 *2 (-1171)) (-5 *1 (-234)))) (-4208 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-155 (-203)) (-155 (-203)))) (-5 *4 (-1011 (-203))) (-5 *5 (-108)) (-5 *2 (-1171)) (-5 *1 (-234)))))
-(-10 -7 (-15 -4208 ((-1171) (-1 (-155 (-203)) (-155 (-203))) (-1011 (-203)) (-1011 (-203)) (-108))) (-15 -1601 ((-1171) (-1 (-155 (-203)) (-155 (-203))) (-1011 (-203)) (-1011 (-203)))) (-15 -3114 ((-523) (-523))) (-15 -2988 ((-523) (-523))) (-15 -1819 ((-203) (-203))))
-((-3976 (((-1009 (-355)) (-1009 (-292 |#1|))) 16)))
-(((-235 |#1|) (-10 -7 (-15 -3976 ((-1009 (-355)) (-1009 (-292 |#1|))))) (-13 (-786) (-515) (-564 (-355)))) (T -235))
-((-3976 (*1 *2 *3) (-12 (-5 *3 (-1009 (-292 *4))) (-4 *4 (-13 (-786) (-515) (-564 (-355)))) (-5 *2 (-1009 (-355))) (-5 *1 (-235 *4)))))
-(-10 -7 (-15 -3976 ((-1009 (-355)) (-1009 (-292 |#1|)))))
-((-2258 (((-1047 (-203)) (-813 |#1|) (-1009 (-355)) (-1009 (-355))) 71) (((-1047 (-203)) (-813 |#1|) (-1009 (-355)) (-1009 (-355)) (-589 (-240))) 70) (((-1047 (-203)) |#1| (-1009 (-355)) (-1009 (-355))) 61) (((-1047 (-203)) |#1| (-1009 (-355)) (-1009 (-355)) (-589 (-240))) 60) (((-1047 (-203)) (-810 |#1|) (-1009 (-355))) 52) (((-1047 (-203)) (-810 |#1|) (-1009 (-355)) (-589 (-240))) 51)) (-2224 (((-1171) (-813 |#1|) (-1009 (-355)) (-1009 (-355))) 74) (((-1171) (-813 |#1|) (-1009 (-355)) (-1009 (-355)) (-589 (-240))) 73) (((-1171) |#1| (-1009 (-355)) (-1009 (-355))) 64) (((-1171) |#1| (-1009 (-355)) (-1009 (-355)) (-589 (-240))) 63) (((-1171) (-810 |#1|) (-1009 (-355))) 56) (((-1171) (-810 |#1|) (-1009 (-355)) (-589 (-240))) 55) (((-1170) (-808 |#1|) (-1009 (-355))) 43) (((-1170) (-808 |#1|) (-1009 (-355)) (-589 (-240))) 42) (((-1170) |#1| (-1009 (-355))) 35) (((-1170) |#1| (-1009 (-355)) (-589 (-240))) 34)))
-(((-236 |#1|) (-10 -7 (-15 -2224 ((-1170) |#1| (-1009 (-355)) (-589 (-240)))) (-15 -2224 ((-1170) |#1| (-1009 (-355)))) (-15 -2224 ((-1170) (-808 |#1|) (-1009 (-355)) (-589 (-240)))) (-15 -2224 ((-1170) (-808 |#1|) (-1009 (-355)))) (-15 -2224 ((-1171) (-810 |#1|) (-1009 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) (-810 |#1|) (-1009 (-355)))) (-15 -2258 ((-1047 (-203)) (-810 |#1|) (-1009 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) (-810 |#1|) (-1009 (-355)))) (-15 -2224 ((-1171) |#1| (-1009 (-355)) (-1009 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) |#1| (-1009 (-355)) (-1009 (-355)))) (-15 -2258 ((-1047 (-203)) |#1| (-1009 (-355)) (-1009 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) |#1| (-1009 (-355)) (-1009 (-355)))) (-15 -2224 ((-1171) (-813 |#1|) (-1009 (-355)) (-1009 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) (-813 |#1|) (-1009 (-355)) (-1009 (-355)))) (-15 -2258 ((-1047 (-203)) (-813 |#1|) (-1009 (-355)) (-1009 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) (-813 |#1|) (-1009 (-355)) (-1009 (-355))))) (-13 (-564 (-499)) (-1016))) (T -236))
-((-2258 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-813 *5)) (-5 *4 (-1009 (-355))) (-4 *5 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1047 (-203))) (-5 *1 (-236 *5)))) (-2258 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-813 *6)) (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240))) (-4 *6 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1047 (-203))) (-5 *1 (-236 *6)))) (-2224 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-813 *5)) (-5 *4 (-1009 (-355))) (-4 *5 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1171)) (-5 *1 (-236 *5)))) (-2224 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-813 *6)) (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240))) (-4 *6 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1171)) (-5 *1 (-236 *6)))) (-2258 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1009 (-355))) (-5 *2 (-1047 (-203))) (-5 *1 (-236 *3)) (-4 *3 (-13 (-564 (-499)) (-1016))))) (-2258 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-236 *3)) (-4 *3 (-13 (-564 (-499)) (-1016))))) (-2224 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1009 (-355))) (-5 *2 (-1171)) (-5 *1 (-236 *3)) (-4 *3 (-13 (-564 (-499)) (-1016))))) (-2224 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1171)) (-5 *1 (-236 *3)) (-4 *3 (-13 (-564 (-499)) (-1016))))) (-2258 (*1 *2 *3 *4) (-12 (-5 *3 (-810 *5)) (-5 *4 (-1009 (-355))) (-4 *5 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1047 (-203))) (-5 *1 (-236 *5)))) (-2258 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-810 *6)) (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240))) (-4 *6 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1047 (-203))) (-5 *1 (-236 *6)))) (-2224 (*1 *2 *3 *4) (-12 (-5 *3 (-810 *5)) (-5 *4 (-1009 (-355))) (-4 *5 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1171)) (-5 *1 (-236 *5)))) (-2224 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-810 *6)) (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240))) (-4 *6 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1171)) (-5 *1 (-236 *6)))) (-2224 (*1 *2 *3 *4) (-12 (-5 *3 (-808 *5)) (-5 *4 (-1009 (-355))) (-4 *5 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1170)) (-5 *1 (-236 *5)))) (-2224 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-808 *6)) (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240))) (-4 *6 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1170)) (-5 *1 (-236 *6)))) (-2224 (*1 *2 *3 *4) (-12 (-5 *4 (-1009 (-355))) (-5 *2 (-1170)) (-5 *1 (-236 *3)) (-4 *3 (-13 (-564 (-499)) (-1016))))) (-2224 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1170)) (-5 *1 (-236 *3)) (-4 *3 (-13 (-564 (-499)) (-1016))))))
-(-10 -7 (-15 -2224 ((-1170) |#1| (-1009 (-355)) (-589 (-240)))) (-15 -2224 ((-1170) |#1| (-1009 (-355)))) (-15 -2224 ((-1170) (-808 |#1|) (-1009 (-355)) (-589 (-240)))) (-15 -2224 ((-1170) (-808 |#1|) (-1009 (-355)))) (-15 -2224 ((-1171) (-810 |#1|) (-1009 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) (-810 |#1|) (-1009 (-355)))) (-15 -2258 ((-1047 (-203)) (-810 |#1|) (-1009 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) (-810 |#1|) (-1009 (-355)))) (-15 -2224 ((-1171) |#1| (-1009 (-355)) (-1009 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) |#1| (-1009 (-355)) (-1009 (-355)))) (-15 -2258 ((-1047 (-203)) |#1| (-1009 (-355)) (-1009 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) |#1| (-1009 (-355)) (-1009 (-355)))) (-15 -2224 ((-1171) (-813 |#1|) (-1009 (-355)) (-1009 (-355)) (-589 (-240)))) (-15 -2224 ((-1171) (-813 |#1|) (-1009 (-355)) (-1009 (-355)))) (-15 -2258 ((-1047 (-203)) (-813 |#1|) (-1009 (-355)) (-1009 (-355)) (-589 (-240)))) (-15 -2258 ((-1047 (-203)) (-813 |#1|) (-1009 (-355)) (-1009 (-355)))))
-((-2224 (((-1171) (-589 (-203)) (-589 (-203)) (-589 (-203)) (-589 (-240))) 23) (((-1171) (-589 (-203)) (-589 (-203)) (-589 (-203))) 24) (((-1170) (-589 (-874 (-203))) (-589 (-240))) 16) (((-1170) (-589 (-874 (-203)))) 17) (((-1170) (-589 (-203)) (-589 (-203)) (-589 (-240))) 20) (((-1170) (-589 (-203)) (-589 (-203))) 21)))
-(((-237) (-10 -7 (-15 -2224 ((-1170) (-589 (-203)) (-589 (-203)))) (-15 -2224 ((-1170) (-589 (-203)) (-589 (-203)) (-589 (-240)))) (-15 -2224 ((-1170) (-589 (-874 (-203))))) (-15 -2224 ((-1170) (-589 (-874 (-203))) (-589 (-240)))) (-15 -2224 ((-1171) (-589 (-203)) (-589 (-203)) (-589 (-203)))) (-15 -2224 ((-1171) (-589 (-203)) (-589 (-203)) (-589 (-203)) (-589 (-240)))))) (T -237))
-((-2224 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-589 (-203))) (-5 *4 (-589 (-240))) (-5 *2 (-1171)) (-5 *1 (-237)))) (-2224 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-589 (-203))) (-5 *2 (-1171)) (-5 *1 (-237)))) (-2224 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-874 (-203)))) (-5 *4 (-589 (-240))) (-5 *2 (-1170)) (-5 *1 (-237)))) (-2224 (*1 *2 *3) (-12 (-5 *3 (-589 (-874 (-203)))) (-5 *2 (-1170)) (-5 *1 (-237)))) (-2224 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-589 (-203))) (-5 *4 (-589 (-240))) (-5 *2 (-1170)) (-5 *1 (-237)))) (-2224 (*1 *2 *3 *3) (-12 (-5 *3 (-589 (-203))) (-5 *2 (-1170)) (-5 *1 (-237)))))
-(-10 -7 (-15 -2224 ((-1170) (-589 (-203)) (-589 (-203)))) (-15 -2224 ((-1170) (-589 (-203)) (-589 (-203)) (-589 (-240)))) (-15 -2224 ((-1170) (-589 (-874 (-203))))) (-15 -2224 ((-1170) (-589 (-874 (-203))) (-589 (-240)))) (-15 -2224 ((-1171) (-589 (-203)) (-589 (-203)) (-589 (-203)))) (-15 -2224 ((-1171) (-589 (-203)) (-589 (-203)) (-589 (-203)) (-589 (-240)))))
-((-1696 (((-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203))) (-589 (-240)) (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203)))) 26)) (-2699 (((-852) (-589 (-240)) (-852)) 53)) (-1743 (((-852) (-589 (-240)) (-852)) 52)) (-3459 (((-589 (-355)) (-589 (-240)) (-589 (-355))) 69)) (-1367 (((-355) (-589 (-240)) (-355)) 58)) (-2609 (((-852) (-589 (-240)) (-852)) 54)) (-3691 (((-108) (-589 (-240)) (-108)) 28)) (-2793 (((-1070) (-589 (-240)) (-1070)) 20)) (-3115 (((-1070) (-589 (-240)) (-1070)) 27)) (-2980 (((-1047 (-203)) (-589 (-240))) 47)) (-2003 (((-589 (-1011 (-355))) (-589 (-240)) (-589 (-1011 (-355)))) 41)) (-2461 (((-805) (-589 (-240)) (-805)) 33)) (-1423 (((-805) (-589 (-240)) (-805)) 34)) (-2063 (((-1 (-874 (-203)) (-874 (-203))) (-589 (-240)) (-1 (-874 (-203)) (-874 (-203)))) 64)) (-3010 (((-108) (-589 (-240)) (-108)) 16)) (-2418 (((-108) (-589 (-240)) (-108)) 15)))
-(((-238) (-10 -7 (-15 -2418 ((-108) (-589 (-240)) (-108))) (-15 -3010 ((-108) (-589 (-240)) (-108))) (-15 -1696 ((-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203))) (-589 (-240)) (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203))))) (-15 -2793 ((-1070) (-589 (-240)) (-1070))) (-15 -3115 ((-1070) (-589 (-240)) (-1070))) (-15 -3691 ((-108) (-589 (-240)) (-108))) (-15 -2461 ((-805) (-589 (-240)) (-805))) (-15 -1423 ((-805) (-589 (-240)) (-805))) (-15 -2003 ((-589 (-1011 (-355))) (-589 (-240)) (-589 (-1011 (-355))))) (-15 -1743 ((-852) (-589 (-240)) (-852))) (-15 -2699 ((-852) (-589 (-240)) (-852))) (-15 -2980 ((-1047 (-203)) (-589 (-240)))) (-15 -2609 ((-852) (-589 (-240)) (-852))) (-15 -1367 ((-355) (-589 (-240)) (-355))) (-15 -2063 ((-1 (-874 (-203)) (-874 (-203))) (-589 (-240)) (-1 (-874 (-203)) (-874 (-203))))) (-15 -3459 ((-589 (-355)) (-589 (-240)) (-589 (-355)))))) (T -238))
-((-3459 (*1 *2 *3 *2) (-12 (-5 *2 (-589 (-355))) (-5 *3 (-589 (-240))) (-5 *1 (-238)))) (-2063 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-874 (-203)) (-874 (-203)))) (-5 *3 (-589 (-240))) (-5 *1 (-238)))) (-1367 (*1 *2 *3 *2) (-12 (-5 *2 (-355)) (-5 *3 (-589 (-240))) (-5 *1 (-238)))) (-2609 (*1 *2 *3 *2) (-12 (-5 *2 (-852)) (-5 *3 (-589 (-240))) (-5 *1 (-238)))) (-2980 (*1 *2 *3) (-12 (-5 *3 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-238)))) (-2699 (*1 *2 *3 *2) (-12 (-5 *2 (-852)) (-5 *3 (-589 (-240))) (-5 *1 (-238)))) (-1743 (*1 *2 *3 *2) (-12 (-5 *2 (-852)) (-5 *3 (-589 (-240))) (-5 *1 (-238)))) (-2003 (*1 *2 *3 *2) (-12 (-5 *2 (-589 (-1011 (-355)))) (-5 *3 (-589 (-240))) (-5 *1 (-238)))) (-1423 (*1 *2 *3 *2) (-12 (-5 *2 (-805)) (-5 *3 (-589 (-240))) (-5 *1 (-238)))) (-2461 (*1 *2 *3 *2) (-12 (-5 *2 (-805)) (-5 *3 (-589 (-240))) (-5 *1 (-238)))) (-3691 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *3 (-589 (-240))) (-5 *1 (-238)))) (-3115 (*1 *2 *3 *2) (-12 (-5 *2 (-1070)) (-5 *3 (-589 (-240))) (-5 *1 (-238)))) (-2793 (*1 *2 *3 *2) (-12 (-5 *2 (-1070)) (-5 *3 (-589 (-240))) (-5 *1 (-238)))) (-1696 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203)))) (-5 *3 (-589 (-240))) (-5 *1 (-238)))) (-3010 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *3 (-589 (-240))) (-5 *1 (-238)))) (-2418 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *3 (-589 (-240))) (-5 *1 (-238)))))
-(-10 -7 (-15 -2418 ((-108) (-589 (-240)) (-108))) (-15 -3010 ((-108) (-589 (-240)) (-108))) (-15 -1696 ((-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203))) (-589 (-240)) (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203))))) (-15 -2793 ((-1070) (-589 (-240)) (-1070))) (-15 -3115 ((-1070) (-589 (-240)) (-1070))) (-15 -3691 ((-108) (-589 (-240)) (-108))) (-15 -2461 ((-805) (-589 (-240)) (-805))) (-15 -1423 ((-805) (-589 (-240)) (-805))) (-15 -2003 ((-589 (-1011 (-355))) (-589 (-240)) (-589 (-1011 (-355))))) (-15 -1743 ((-852) (-589 (-240)) (-852))) (-15 -2699 ((-852) (-589 (-240)) (-852))) (-15 -2980 ((-1047 (-203)) (-589 (-240)))) (-15 -2609 ((-852) (-589 (-240)) (-852))) (-15 -1367 ((-355) (-589 (-240)) (-355))) (-15 -2063 ((-1 (-874 (-203)) (-874 (-203))) (-589 (-240)) (-1 (-874 (-203)) (-874 (-203))))) (-15 -3459 ((-589 (-355)) (-589 (-240)) (-589 (-355)))))
-((-2861 (((-3 |#1| "failed") (-589 (-240)) (-1087)) 17)))
-(((-239 |#1|) (-10 -7 (-15 -2861 ((-3 |#1| "failed") (-589 (-240)) (-1087)))) (-1123)) (T -239))
-((-2861 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-589 (-240))) (-5 *4 (-1087)) (-5 *1 (-239 *2)) (-4 *2 (-1123)))))
-(-10 -7 (-15 -2861 ((-3 |#1| "failed") (-589 (-240)) (-1087))))
-((-3260 (((-108) $ $) NIL)) (-1696 (($ (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203)))) 15)) (-2699 (($ (-852)) 76)) (-1743 (($ (-852)) 75)) (-1895 (($ (-589 (-355))) 82)) (-1367 (($ (-355)) 58)) (-2609 (($ (-852)) 77)) (-3691 (($ (-108)) 23)) (-2793 (($ (-1070)) 18)) (-3115 (($ (-1070)) 19)) (-2980 (($ (-1047 (-203))) 71)) (-2003 (($ (-589 (-1011 (-355)))) 67)) (-3487 (($ (-589 (-1011 (-355)))) 59) (($ (-589 (-1011 (-383 (-523))))) 66)) (-3731 (($ (-355)) 29) (($ (-805)) 33)) (-3654 (((-108) (-589 $) (-1087)) 91)) (-2861 (((-3 (-51) "failed") (-589 $) (-1087)) 93)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-1683 (($ (-355)) 34) (($ (-805)) 35)) (-2411 (($ (-1 (-874 (-203)) (-874 (-203)))) 57)) (-2063 (($ (-1 (-874 (-203)) (-874 (-203)))) 78)) (-4137 (($ (-1 (-203) (-203))) 39) (($ (-1 (-203) (-203) (-203))) 43) (($ (-1 (-203) (-203) (-203) (-203))) 47)) (-3976 (((-794) $) 87)) (-4222 (($ (-108)) 24) (($ (-589 (-1011 (-355)))) 52)) (-2418 (($ (-108)) 25)) (-4037 (((-108) $ $) 89)))
-(((-240) (-13 (-1016) (-10 -8 (-15 -2418 ($ (-108))) (-15 -4222 ($ (-108))) (-15 -1696 ($ (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203))))) (-15 -2793 ($ (-1070))) (-15 -3115 ($ (-1070))) (-15 -3691 ($ (-108))) (-15 -4222 ($ (-589 (-1011 (-355))))) (-15 -2411 ($ (-1 (-874 (-203)) (-874 (-203))))) (-15 -3731 ($ (-355))) (-15 -3731 ($ (-805))) (-15 -1683 ($ (-355))) (-15 -1683 ($ (-805))) (-15 -4137 ($ (-1 (-203) (-203)))) (-15 -4137 ($ (-1 (-203) (-203) (-203)))) (-15 -4137 ($ (-1 (-203) (-203) (-203) (-203)))) (-15 -1367 ($ (-355))) (-15 -3487 ($ (-589 (-1011 (-355))))) (-15 -3487 ($ (-589 (-1011 (-383 (-523)))))) (-15 -2003 ($ (-589 (-1011 (-355))))) (-15 -2980 ($ (-1047 (-203)))) (-15 -1743 ($ (-852))) (-15 -2699 ($ (-852))) (-15 -2609 ($ (-852))) (-15 -2063 ($ (-1 (-874 (-203)) (-874 (-203))))) (-15 -1895 ($ (-589 (-355)))) (-15 -2861 ((-3 (-51) "failed") (-589 $) (-1087))) (-15 -3654 ((-108) (-589 $) (-1087)))))) (T -240))
-((-2418 (*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-240)))) (-4222 (*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-240)))) (-1696 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203)))) (-5 *1 (-240)))) (-2793 (*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-240)))) (-3115 (*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-240)))) (-3691 (*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-240)))) (-4222 (*1 *1 *2) (-12 (-5 *2 (-589 (-1011 (-355)))) (-5 *1 (-240)))) (-2411 (*1 *1 *2) (-12 (-5 *2 (-1 (-874 (-203)) (-874 (-203)))) (-5 *1 (-240)))) (-3731 (*1 *1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-240)))) (-3731 (*1 *1 *2) (-12 (-5 *2 (-805)) (-5 *1 (-240)))) (-1683 (*1 *1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-240)))) (-1683 (*1 *1 *2) (-12 (-5 *2 (-805)) (-5 *1 (-240)))) (-4137 (*1 *1 *2) (-12 (-5 *2 (-1 (-203) (-203))) (-5 *1 (-240)))) (-4137 (*1 *1 *2) (-12 (-5 *2 (-1 (-203) (-203) (-203))) (-5 *1 (-240)))) (-4137 (*1 *1 *2) (-12 (-5 *2 (-1 (-203) (-203) (-203) (-203))) (-5 *1 (-240)))) (-1367 (*1 *1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-240)))) (-3487 (*1 *1 *2) (-12 (-5 *2 (-589 (-1011 (-355)))) (-5 *1 (-240)))) (-3487 (*1 *1 *2) (-12 (-5 *2 (-589 (-1011 (-383 (-523))))) (-5 *1 (-240)))) (-2003 (*1 *1 *2) (-12 (-5 *2 (-589 (-1011 (-355)))) (-5 *1 (-240)))) (-2980 (*1 *1 *2) (-12 (-5 *2 (-1047 (-203))) (-5 *1 (-240)))) (-1743 (*1 *1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-240)))) (-2699 (*1 *1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-240)))) (-2609 (*1 *1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-240)))) (-2063 (*1 *1 *2) (-12 (-5 *2 (-1 (-874 (-203)) (-874 (-203)))) (-5 *1 (-240)))) (-1895 (*1 *1 *2) (-12 (-5 *2 (-589 (-355))) (-5 *1 (-240)))) (-2861 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-589 (-240))) (-5 *4 (-1087)) (-5 *2 (-51)) (-5 *1 (-240)))) (-3654 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-240))) (-5 *4 (-1087)) (-5 *2 (-108)) (-5 *1 (-240)))))
-(-13 (-1016) (-10 -8 (-15 -2418 ($ (-108))) (-15 -4222 ($ (-108))) (-15 -1696 ($ (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203))))) (-15 -2793 ($ (-1070))) (-15 -3115 ($ (-1070))) (-15 -3691 ($ (-108))) (-15 -4222 ($ (-589 (-1011 (-355))))) (-15 -2411 ($ (-1 (-874 (-203)) (-874 (-203))))) (-15 -3731 ($ (-355))) (-15 -3731 ($ (-805))) (-15 -1683 ($ (-355))) (-15 -1683 ($ (-805))) (-15 -4137 ($ (-1 (-203) (-203)))) (-15 -4137 ($ (-1 (-203) (-203) (-203)))) (-15 -4137 ($ (-1 (-203) (-203) (-203) (-203)))) (-15 -1367 ($ (-355))) (-15 -3487 ($ (-589 (-1011 (-355))))) (-15 -3487 ($ (-589 (-1011 (-383 (-523)))))) (-15 -2003 ($ (-589 (-1011 (-355))))) (-15 -2980 ($ (-1047 (-203)))) (-15 -1743 ($ (-852))) (-15 -2699 ($ (-852))) (-15 -2609 ($ (-852))) (-15 -2063 ($ (-1 (-874 (-203)) (-874 (-203))))) (-15 -1895 ($ (-589 (-355)))) (-15 -2861 ((-3 (-51) "failed") (-589 $) (-1087))) (-15 -3654 ((-108) (-589 $) (-1087)))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-4038 (((-589 (-710)) $) NIL) (((-589 (-710)) $ |#2|) NIL)) (-1255 (((-710) $) NIL) (((-710) $ |#2|) NIL)) (-3716 (((-589 |#3|) $) NIL)) (-3540 (((-1083 $) $ |#3|) NIL) (((-1083 |#1|) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-2862 (((-710) $) NIL) (((-710) $ (-589 |#3|)) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3763 (($ $) NIL (|has| |#1| (-427)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-2089 (($ $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 |#3| "failed") $) NIL) (((-3 |#2| "failed") $) NIL) (((-3 (-1039 |#1| |#2|) "failed") $) 21)) (-1996 ((|#1| $) NIL) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-523) $) NIL (|has| |#1| (-964 (-523)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1039 |#1| |#2|) $) NIL)) (-2210 (($ $ $ |#3|) NIL (|has| |#1| (-158)))) (-3142 (($ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) NIL) (((-629 |#1|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2213 (($ $) NIL (|has| |#1| (-427))) (($ $ |#3|) NIL (|has| |#1| (-427)))) (-3127 (((-589 $) $) NIL)) (-1330 (((-108) $) NIL (|has| |#1| (-840)))) (-2067 (($ $ |#1| (-495 |#3|) $) NIL)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| |#1| (-817 (-355))) (|has| |#3| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| |#1| (-817 (-523))) (|has| |#3| (-817 (-523)))))) (-1500 (((-710) $ |#2|) NIL) (((-710) $) 10)) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) NIL)) (-3706 (($ (-1083 |#1|) |#3|) NIL) (($ (-1083 $) |#3|) NIL)) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-495 |#3|)) NIL) (($ $ |#3| (-710)) NIL) (($ $ (-589 |#3|) (-589 (-710))) NIL)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ |#3|) NIL)) (-2140 (((-495 |#3|) $) NIL) (((-710) $ |#3|) NIL) (((-589 (-710)) $ (-589 |#3|)) NIL)) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3927 (($ (-1 (-495 |#3|) (-495 |#3|)) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-1647 (((-1 $ (-710)) |#2|) NIL) (((-1 $ (-710)) $) NIL (|has| |#1| (-211)))) (-1949 (((-3 |#3| "failed") $) NIL)) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-2298 ((|#3| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-3841 (((-1070) $) NIL)) (-2522 (((-108) $) NIL)) (-3818 (((-3 (-589 $) "failed") $) NIL)) (-1973 (((-3 (-589 $) "failed") $) NIL)) (-3719 (((-3 (-2 (|:| |var| |#3|) (|:| -3262 (-710))) "failed") $) NIL)) (-4182 (($ $) NIL)) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) NIL)) (-3095 ((|#1| $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-427)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3573 (((-394 $) $) NIL (|has| |#1| (-840)))) (-2469 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-515)))) (-1349 (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ |#3| |#1|) NIL) (($ $ (-589 |#3|) (-589 |#1|)) NIL) (($ $ |#3| $) NIL) (($ $ (-589 |#3|) (-589 $)) NIL) (($ $ |#2| $) NIL (|has| |#1| (-211))) (($ $ (-589 |#2|) (-589 $)) NIL (|has| |#1| (-211))) (($ $ |#2| |#1|) NIL (|has| |#1| (-211))) (($ $ (-589 |#2|) (-589 |#1|)) NIL (|has| |#1| (-211)))) (-4053 (($ $ |#3|) NIL (|has| |#1| (-158)))) (-4024 (($ $ |#3|) NIL) (($ $ (-589 |#3|)) NIL) (($ $ |#3| (-710)) NIL) (($ $ (-589 |#3|) (-589 (-710))) NIL) (($ $) NIL (|has| |#1| (-211))) (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1703 (((-589 |#2|) $) NIL)) (-1487 (((-495 |#3|) $) NIL) (((-710) $ |#3|) NIL) (((-589 (-710)) $ (-589 |#3|)) NIL) (((-710) $ |#2|) NIL)) (-3077 (((-823 (-355)) $) NIL (-12 (|has| |#1| (-564 (-823 (-355)))) (|has| |#3| (-564 (-823 (-355)))))) (((-823 (-523)) $) NIL (-12 (|has| |#1| (-564 (-823 (-523)))) (|has| |#3| (-564 (-823 (-523)))))) (((-499) $) NIL (-12 (|has| |#1| (-564 (-499))) (|has| |#3| (-564 (-499)))))) (-2267 ((|#1| $) NIL (|has| |#1| (-427))) (($ $ |#3|) NIL (|has| |#1| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#1| (-840))))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#1|) 24) (($ |#3|) 23) (($ |#2|) NIL) (($ (-1039 |#1| |#2|)) 30) (($ (-383 (-523))) NIL (-3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-964 (-383 (-523)))))) (($ $) NIL (|has| |#1| (-515)))) (-1639 (((-589 |#1|) $) NIL)) (-1234 ((|#1| $ (-495 |#3|)) NIL) (($ $ |#3| (-710)) NIL) (($ $ (-589 |#3|) (-589 (-710))) NIL)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#1| (-840))) (|has| |#1| (-134))))) (-1698 (((-710)) NIL)) (-2656 (($ $ $ (-710)) NIL (|has| |#1| (-158)))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ |#3|) NIL) (($ $ (-589 |#3|)) NIL) (($ $ |#3| (-710)) NIL) (($ $ (-589 |#3|) (-589 (-710))) NIL) (($ $) NIL (|has| |#1| (-211))) (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-241 |#1| |#2| |#3|) (-13 (-230 |#1| |#2| |#3| (-495 |#3|)) (-964 (-1039 |#1| |#2|))) (-973) (-786) (-243 |#2|)) (T -241))
-NIL
-(-13 (-230 |#1| |#2| |#3| (-495 |#3|)) (-964 (-1039 |#1| |#2|)))
-((-1255 (((-710) $) 30)) (-2898 (((-3 |#2| "failed") $) 17)) (-1996 ((|#2| $) 27)) (-4024 (($ $) 12) (($ $ (-710)) 15)) (-3976 (((-794) $) 26) (($ |#2|) 10)) (-4037 (((-108) $ $) 20)) (-4052 (((-108) $ $) 29)))
-(((-242 |#1| |#2|) (-10 -8 (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1|)) (-15 -1255 ((-710) |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -3976 (|#1| |#2|)) (-15 -4052 ((-108) |#1| |#1|)) (-15 -3976 ((-794) |#1|)) (-15 -4037 ((-108) |#1| |#1|))) (-243 |#2|) (-786)) (T -242))
-NIL
-(-10 -8 (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1|)) (-15 -1255 ((-710) |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -3976 (|#1| |#2|)) (-15 -4052 ((-108) |#1| |#1|)) (-15 -3976 ((-794) |#1|)) (-15 -4037 ((-108) |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-1255 (((-710) $) 22)) (-2354 ((|#1| $) 23)) (-2898 (((-3 |#1| "failed") $) 27)) (-1996 ((|#1| $) 26)) (-1500 (((-710) $) 24)) (-3268 (($ $ $) 13)) (-2644 (($ $ $) 14)) (-1647 (($ |#1| (-710)) 25)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-4024 (($ $) 21) (($ $ (-710)) 20)) (-3976 (((-794) $) 11) (($ |#1|) 28)) (-4078 (((-108) $ $) 16)) (-4061 (((-108) $ $) 17)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 15)) (-4052 (((-108) $ $) 18)))
-(((-243 |#1|) (-129) (-786)) (T -243))
-((-3976 (*1 *1 *2) (-12 (-4 *1 (-243 *2)) (-4 *2 (-786)))) (-1647 (*1 *1 *2 *3) (-12 (-5 *3 (-710)) (-4 *1 (-243 *2)) (-4 *2 (-786)))) (-1500 (*1 *2 *1) (-12 (-4 *1 (-243 *3)) (-4 *3 (-786)) (-5 *2 (-710)))) (-2354 (*1 *2 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-786)))) (-1255 (*1 *2 *1) (-12 (-4 *1 (-243 *3)) (-4 *3 (-786)) (-5 *2 (-710)))) (-4024 (*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-786)))) (-4024 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-243 *3)) (-4 *3 (-786)))))
-(-13 (-786) (-964 |t#1|) (-10 -8 (-15 -1647 ($ |t#1| (-710))) (-15 -1500 ((-710) $)) (-15 -2354 (|t#1| $)) (-15 -1255 ((-710) $)) (-15 -4024 ($ $)) (-15 -4024 ($ $ (-710))) (-15 -3976 ($ |t#1|))))
-(((-97) . T) ((-563 (-794)) . T) ((-786) . T) ((-964 |#1|) . T) ((-1016) . T))
-((-3716 (((-589 (-1087)) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) 41)) (-1304 (((-589 (-1087)) (-292 (-203)) (-710)) 80)) (-2865 (((-3 (-292 (-203)) "failed") (-292 (-203))) 51)) (-3939 (((-292 (-203)) (-292 (-203))) 67)) (-1269 (((-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203))))) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 26)) (-2420 (((-108) (-589 (-292 (-203)))) 84)) (-1208 (((-108) (-292 (-203))) 24)) (-3616 (((-589 (-1070)) (-3 (|:| |noa| (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (|:| |lsa| (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))))) 106)) (-1507 (((-589 (-292 (-203))) (-589 (-292 (-203)))) 88)) (-1699 (((-589 (-292 (-203))) (-589 (-292 (-203)))) 86)) (-1497 (((-629 (-203)) (-589 (-292 (-203))) (-710)) 95)) (-1232 (((-108) (-292 (-203))) 20) (((-108) (-589 (-292 (-203)))) 85)) (-2265 (((-589 (-203)) (-589 (-779 (-203))) (-203)) 14)) (-2673 (((-355) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) 101)) (-3067 (((-962) (-1087) (-962)) 34)))
-(((-244) (-10 -7 (-15 -2265 ((-589 (-203)) (-589 (-779 (-203))) (-203))) (-15 -1269 ((-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203))))) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203))))))) (-15 -2865 ((-3 (-292 (-203)) "failed") (-292 (-203)))) (-15 -3939 ((-292 (-203)) (-292 (-203)))) (-15 -2420 ((-108) (-589 (-292 (-203))))) (-15 -1232 ((-108) (-589 (-292 (-203))))) (-15 -1232 ((-108) (-292 (-203)))) (-15 -1497 ((-629 (-203)) (-589 (-292 (-203))) (-710))) (-15 -1699 ((-589 (-292 (-203))) (-589 (-292 (-203))))) (-15 -1507 ((-589 (-292 (-203))) (-589 (-292 (-203))))) (-15 -1208 ((-108) (-292 (-203)))) (-15 -3716 ((-589 (-1087)) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))) (-15 -1304 ((-589 (-1087)) (-292 (-203)) (-710))) (-15 -3067 ((-962) (-1087) (-962))) (-15 -2673 ((-355) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))) (-15 -3616 ((-589 (-1070)) (-3 (|:| |noa| (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (|:| |lsa| (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))))))) (T -244))
-((-3616 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (|:| |lsa| (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))))) (-5 *2 (-589 (-1070))) (-5 *1 (-244)))) (-2673 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) (-5 *2 (-355)) (-5 *1 (-244)))) (-3067 (*1 *2 *3 *2) (-12 (-5 *2 (-962)) (-5 *3 (-1087)) (-5 *1 (-244)))) (-1304 (*1 *2 *3 *4) (-12 (-5 *3 (-292 (-203))) (-5 *4 (-710)) (-5 *2 (-589 (-1087))) (-5 *1 (-244)))) (-3716 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) (-5 *2 (-589 (-1087))) (-5 *1 (-244)))) (-1208 (*1 *2 *3) (-12 (-5 *3 (-292 (-203))) (-5 *2 (-108)) (-5 *1 (-244)))) (-1507 (*1 *2 *2) (-12 (-5 *2 (-589 (-292 (-203)))) (-5 *1 (-244)))) (-1699 (*1 *2 *2) (-12 (-5 *2 (-589 (-292 (-203)))) (-5 *1 (-244)))) (-1497 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-292 (-203)))) (-5 *4 (-710)) (-5 *2 (-629 (-203))) (-5 *1 (-244)))) (-1232 (*1 *2 *3) (-12 (-5 *3 (-292 (-203))) (-5 *2 (-108)) (-5 *1 (-244)))) (-1232 (*1 *2 *3) (-12 (-5 *3 (-589 (-292 (-203)))) (-5 *2 (-108)) (-5 *1 (-244)))) (-2420 (*1 *2 *3) (-12 (-5 *3 (-589 (-292 (-203)))) (-5 *2 (-108)) (-5 *1 (-244)))) (-3939 (*1 *2 *2) (-12 (-5 *2 (-292 (-203))) (-5 *1 (-244)))) (-2865 (*1 *2 *2) (|partial| -12 (-5 *2 (-292 (-203))) (-5 *1 (-244)))) (-1269 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (-5 *1 (-244)))) (-2265 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-779 (-203)))) (-5 *4 (-203)) (-5 *2 (-589 *4)) (-5 *1 (-244)))))
-(-10 -7 (-15 -2265 ((-589 (-203)) (-589 (-779 (-203))) (-203))) (-15 -1269 ((-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203))))) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203))))))) (-15 -2865 ((-3 (-292 (-203)) "failed") (-292 (-203)))) (-15 -3939 ((-292 (-203)) (-292 (-203)))) (-15 -2420 ((-108) (-589 (-292 (-203))))) (-15 -1232 ((-108) (-589 (-292 (-203))))) (-15 -1232 ((-108) (-292 (-203)))) (-15 -1497 ((-629 (-203)) (-589 (-292 (-203))) (-710))) (-15 -1699 ((-589 (-292 (-203))) (-589 (-292 (-203))))) (-15 -1507 ((-589 (-292 (-203))) (-589 (-292 (-203))))) (-15 -1208 ((-108) (-292 (-203)))) (-15 -3716 ((-589 (-1087)) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))) (-15 -1304 ((-589 (-1087)) (-292 (-203)) (-710))) (-15 -3067 ((-962) (-1087) (-962))) (-15 -2673 ((-355) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))) (-15 -3616 ((-589 (-1070)) (-3 (|:| |noa| (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (|:| |lsa| (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))))))
-((-3260 (((-108) $ $) NIL)) (-2400 (((-962) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) NIL) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 44)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 26) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-245) (-775)) (T -245))
-NIL
-(-775)
-((-3260 (((-108) $ $) NIL)) (-2400 (((-962) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) 58) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 54)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 34) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) 36)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-246) (-775)) (T -246))
-NIL
-(-775)
-((-3260 (((-108) $ $) NIL)) (-2400 (((-962) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) 76) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 73)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 44) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) 55)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-247) (-775)) (T -247))
-NIL
-(-775)
-((-3260 (((-108) $ $) NIL)) (-2400 (((-962) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) NIL) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 50)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 31) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-248) (-775)) (T -248))
-NIL
-(-775)
-((-3260 (((-108) $ $) NIL)) (-2400 (((-962) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) NIL) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 50)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 28) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-249) (-775)) (T -249))
-NIL
-(-775)
-((-3260 (((-108) $ $) NIL)) (-2400 (((-962) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) NIL) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 73)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 28) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-250) (-775)) (T -250))
-NIL
-(-775)
-((-3260 (((-108) $ $) NIL)) (-2400 (((-962) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) NIL) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 77)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 25) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-251) (-775)) (T -251))
-NIL
-(-775)
-((-3260 (((-108) $ $) NIL)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3568 (((-589 (-523)) $) 19)) (-1487 (((-710) $) 17)) (-3976 (((-794) $) 23) (($ (-589 (-523))) 15)) (-2104 (($ (-710)) 20)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 9)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 11)))
-(((-252) (-13 (-786) (-10 -8 (-15 -3976 ($ (-589 (-523)))) (-15 -1487 ((-710) $)) (-15 -3568 ((-589 (-523)) $)) (-15 -2104 ($ (-710)))))) (T -252))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-252)))) (-1487 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-252)))) (-3568 (*1 *2 *1) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-252)))) (-2104 (*1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-252)))))
-(-13 (-786) (-10 -8 (-15 -3976 ($ (-589 (-523)))) (-15 -1487 ((-710) $)) (-15 -3568 ((-589 (-523)) $)) (-15 -2104 ($ (-710)))))
-((-3695 ((|#2| |#2|) 77)) (-2608 ((|#2| |#2|) 65)) (-2343 (((-3 |#2| "failed") |#2| (-589 (-2 (|:| |func| |#2|) (|:| |pole| (-108))))) 116)) (-3669 ((|#2| |#2|) 75)) (-2588 ((|#2| |#2|) 63)) (-3717 ((|#2| |#2|) 79)) (-2629 ((|#2| |#2|) 67)) (-2188 ((|#2|) 46)) (-1564 (((-110) (-110)) 95)) (-2062 ((|#2| |#2|) 61)) (-2813 (((-108) |#2|) 134)) (-1620 ((|#2| |#2|) 181)) (-4065 ((|#2| |#2|) 157)) (-1675 ((|#2|) 59)) (-3863 ((|#2|) 58)) (-2368 ((|#2| |#2|) 177)) (-2243 ((|#2| |#2|) 153)) (-4170 ((|#2| |#2|) 185)) (-1341 ((|#2| |#2|) 161)) (-2600 ((|#2| |#2|) 149)) (-2839 ((|#2| |#2|) 151)) (-2554 ((|#2| |#2|) 187)) (-3401 ((|#2| |#2|) 163)) (-4218 ((|#2| |#2|) 183)) (-3519 ((|#2| |#2|) 159)) (-3952 ((|#2| |#2|) 179)) (-3524 ((|#2| |#2|) 155)) (-2147 ((|#2| |#2|) 193)) (-3766 ((|#2| |#2|) 169)) (-3416 ((|#2| |#2|) 189)) (-3318 ((|#2| |#2|) 165)) (-1779 ((|#2| |#2|) 197)) (-2250 ((|#2| |#2|) 173)) (-3518 ((|#2| |#2|) 199)) (-1546 ((|#2| |#2|) 175)) (-2830 ((|#2| |#2|) 195)) (-2331 ((|#2| |#2|) 171)) (-1424 ((|#2| |#2|) 191)) (-2169 ((|#2| |#2|) 167)) (-1847 ((|#2| |#2|) 62)) (-3730 ((|#2| |#2|) 80)) (-2641 ((|#2| |#2|) 68)) (-3707 ((|#2| |#2|) 78)) (-2617 ((|#2| |#2|) 66)) (-3683 ((|#2| |#2|) 76)) (-2598 ((|#2| |#2|) 64)) (-1651 (((-108) (-110)) 93)) (-3768 ((|#2| |#2|) 83)) (-2680 ((|#2| |#2|) 71)) (-3743 ((|#2| |#2|) 81)) (-2655 ((|#2| |#2|) 69)) (-3793 ((|#2| |#2|) 85)) (-3645 ((|#2| |#2|) 73)) (-3135 ((|#2| |#2|) 86)) (-3657 ((|#2| |#2|) 74)) (-3780 ((|#2| |#2|) 84)) (-3632 ((|#2| |#2|) 72)) (-3756 ((|#2| |#2|) 82)) (-2667 ((|#2| |#2|) 70)))
-(((-253 |#1| |#2|) (-10 -7 (-15 -1847 (|#2| |#2|)) (-15 -2062 (|#2| |#2|)) (-15 -2588 (|#2| |#2|)) (-15 -2598 (|#2| |#2|)) (-15 -2608 (|#2| |#2|)) (-15 -2617 (|#2| |#2|)) (-15 -2629 (|#2| |#2|)) (-15 -2641 (|#2| |#2|)) (-15 -2655 (|#2| |#2|)) (-15 -2667 (|#2| |#2|)) (-15 -2680 (|#2| |#2|)) (-15 -3632 (|#2| |#2|)) (-15 -3645 (|#2| |#2|)) (-15 -3657 (|#2| |#2|)) (-15 -3669 (|#2| |#2|)) (-15 -3683 (|#2| |#2|)) (-15 -3695 (|#2| |#2|)) (-15 -3707 (|#2| |#2|)) (-15 -3717 (|#2| |#2|)) (-15 -3730 (|#2| |#2|)) (-15 -3743 (|#2| |#2|)) (-15 -3756 (|#2| |#2|)) (-15 -3768 (|#2| |#2|)) (-15 -3780 (|#2| |#2|)) (-15 -3793 (|#2| |#2|)) (-15 -3135 (|#2| |#2|)) (-15 -2188 (|#2|)) (-15 -1651 ((-108) (-110))) (-15 -1564 ((-110) (-110))) (-15 -3863 (|#2|)) (-15 -1675 (|#2|)) (-15 -2839 (|#2| |#2|)) (-15 -2600 (|#2| |#2|)) (-15 -2243 (|#2| |#2|)) (-15 -3524 (|#2| |#2|)) (-15 -4065 (|#2| |#2|)) (-15 -3519 (|#2| |#2|)) (-15 -1341 (|#2| |#2|)) (-15 -3401 (|#2| |#2|)) (-15 -3318 (|#2| |#2|)) (-15 -2169 (|#2| |#2|)) (-15 -3766 (|#2| |#2|)) (-15 -2331 (|#2| |#2|)) (-15 -2250 (|#2| |#2|)) (-15 -1546 (|#2| |#2|)) (-15 -2368 (|#2| |#2|)) (-15 -3952 (|#2| |#2|)) (-15 -1620 (|#2| |#2|)) (-15 -4218 (|#2| |#2|)) (-15 -4170 (|#2| |#2|)) (-15 -2554 (|#2| |#2|)) (-15 -3416 (|#2| |#2|)) (-15 -1424 (|#2| |#2|)) (-15 -2147 (|#2| |#2|)) (-15 -2830 (|#2| |#2|)) (-15 -1779 (|#2| |#2|)) (-15 -3518 (|#2| |#2|)) (-15 -2343 ((-3 |#2| "failed") |#2| (-589 (-2 (|:| |func| |#2|) (|:| |pole| (-108)))))) (-15 -2813 ((-108) |#2|))) (-13 (-786) (-515)) (-13 (-406 |#1|) (-930))) (T -253))
-((-2813 (*1 *2 *3) (-12 (-4 *4 (-13 (-786) (-515))) (-5 *2 (-108)) (-5 *1 (-253 *4 *3)) (-4 *3 (-13 (-406 *4) (-930))))) (-2343 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-589 (-2 (|:| |func| *2) (|:| |pole| (-108))))) (-4 *2 (-13 (-406 *4) (-930))) (-4 *4 (-13 (-786) (-515))) (-5 *1 (-253 *4 *2)))) (-3518 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-1779 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2830 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2147 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-1424 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3416 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2554 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-4170 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-4218 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-1620 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3952 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2368 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-1546 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2250 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2331 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3766 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2169 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3318 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3401 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-1341 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3519 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-4065 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3524 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2243 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2600 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2839 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-1675 (*1 *2) (-12 (-4 *2 (-13 (-406 *3) (-930))) (-5 *1 (-253 *3 *2)) (-4 *3 (-13 (-786) (-515))))) (-3863 (*1 *2) (-12 (-4 *2 (-13 (-406 *3) (-930))) (-5 *1 (-253 *3 *2)) (-4 *3 (-13 (-786) (-515))))) (-1564 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *4)) (-4 *4 (-13 (-406 *3) (-930))))) (-1651 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-108)) (-5 *1 (-253 *4 *5)) (-4 *5 (-13 (-406 *4) (-930))))) (-2188 (*1 *2) (-12 (-4 *2 (-13 (-406 *3) (-930))) (-5 *1 (-253 *3 *2)) (-4 *3 (-13 (-786) (-515))))) (-3135 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3793 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3780 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3768 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3756 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3743 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3730 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3717 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3707 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3695 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3683 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3669 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3657 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3645 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-3632 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2680 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2667 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2655 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2641 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2629 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2617 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2608 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2598 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2588 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-2062 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))) (-1847 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-406 *3) (-930))))))
-(-10 -7 (-15 -1847 (|#2| |#2|)) (-15 -2062 (|#2| |#2|)) (-15 -2588 (|#2| |#2|)) (-15 -2598 (|#2| |#2|)) (-15 -2608 (|#2| |#2|)) (-15 -2617 (|#2| |#2|)) (-15 -2629 (|#2| |#2|)) (-15 -2641 (|#2| |#2|)) (-15 -2655 (|#2| |#2|)) (-15 -2667 (|#2| |#2|)) (-15 -2680 (|#2| |#2|)) (-15 -3632 (|#2| |#2|)) (-15 -3645 (|#2| |#2|)) (-15 -3657 (|#2| |#2|)) (-15 -3669 (|#2| |#2|)) (-15 -3683 (|#2| |#2|)) (-15 -3695 (|#2| |#2|)) (-15 -3707 (|#2| |#2|)) (-15 -3717 (|#2| |#2|)) (-15 -3730 (|#2| |#2|)) (-15 -3743 (|#2| |#2|)) (-15 -3756 (|#2| |#2|)) (-15 -3768 (|#2| |#2|)) (-15 -3780 (|#2| |#2|)) (-15 -3793 (|#2| |#2|)) (-15 -3135 (|#2| |#2|)) (-15 -2188 (|#2|)) (-15 -1651 ((-108) (-110))) (-15 -1564 ((-110) (-110))) (-15 -3863 (|#2|)) (-15 -1675 (|#2|)) (-15 -2839 (|#2| |#2|)) (-15 -2600 (|#2| |#2|)) (-15 -2243 (|#2| |#2|)) (-15 -3524 (|#2| |#2|)) (-15 -4065 (|#2| |#2|)) (-15 -3519 (|#2| |#2|)) (-15 -1341 (|#2| |#2|)) (-15 -3401 (|#2| |#2|)) (-15 -3318 (|#2| |#2|)) (-15 -2169 (|#2| |#2|)) (-15 -3766 (|#2| |#2|)) (-15 -2331 (|#2| |#2|)) (-15 -2250 (|#2| |#2|)) (-15 -1546 (|#2| |#2|)) (-15 -2368 (|#2| |#2|)) (-15 -3952 (|#2| |#2|)) (-15 -1620 (|#2| |#2|)) (-15 -4218 (|#2| |#2|)) (-15 -4170 (|#2| |#2|)) (-15 -2554 (|#2| |#2|)) (-15 -3416 (|#2| |#2|)) (-15 -1424 (|#2| |#2|)) (-15 -2147 (|#2| |#2|)) (-15 -2830 (|#2| |#2|)) (-15 -1779 (|#2| |#2|)) (-15 -3518 (|#2| |#2|)) (-15 -2343 ((-3 |#2| "failed") |#2| (-589 (-2 (|:| |func| |#2|) (|:| |pole| (-108)))))) (-15 -2813 ((-108) |#2|)))
-((-3298 (((-3 |#2| "failed") (-589 (-562 |#2|)) |#2| (-1087)) 135)) (-2755 ((|#2| (-383 (-523)) |#2|) 51)) (-3810 ((|#2| |#2| (-562 |#2|)) 128)) (-1817 (((-2 (|:| |func| |#2|) (|:| |kers| (-589 (-562 |#2|))) (|:| |vals| (-589 |#2|))) |#2| (-1087)) 127)) (-1484 ((|#2| |#2| (-1087)) 20) ((|#2| |#2|) 23)) (-4206 ((|#2| |#2| (-1087)) 141) ((|#2| |#2|) 139)))
-(((-254 |#1| |#2|) (-10 -7 (-15 -4206 (|#2| |#2|)) (-15 -4206 (|#2| |#2| (-1087))) (-15 -1817 ((-2 (|:| |func| |#2|) (|:| |kers| (-589 (-562 |#2|))) (|:| |vals| (-589 |#2|))) |#2| (-1087))) (-15 -1484 (|#2| |#2|)) (-15 -1484 (|#2| |#2| (-1087))) (-15 -3298 ((-3 |#2| "failed") (-589 (-562 |#2|)) |#2| (-1087))) (-15 -3810 (|#2| |#2| (-562 |#2|))) (-15 -2755 (|#2| (-383 (-523)) |#2|))) (-13 (-515) (-786) (-964 (-523)) (-585 (-523))) (-13 (-27) (-1109) (-406 |#1|))) (T -254))
-((-2755 (*1 *2 *3 *2) (-12 (-5 *3 (-383 (-523))) (-4 *4 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-254 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *4))))) (-3810 (*1 *2 *2 *3) (-12 (-5 *3 (-562 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *4))) (-4 *4 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-254 *4 *2)))) (-3298 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-589 (-562 *2))) (-5 *4 (-1087)) (-4 *2 (-13 (-27) (-1109) (-406 *5))) (-4 *5 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-254 *5 *2)))) (-1484 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-254 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *4))))) (-1484 (*1 *2 *2) (-12 (-4 *3 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-254 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *3))))) (-1817 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-4 *5 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-2 (|:| |func| *3) (|:| |kers| (-589 (-562 *3))) (|:| |vals| (-589 *3)))) (-5 *1 (-254 *5 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5))))) (-4206 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-254 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *4))))) (-4206 (*1 *2 *2) (-12 (-4 *3 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-254 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *3))))))
-(-10 -7 (-15 -4206 (|#2| |#2|)) (-15 -4206 (|#2| |#2| (-1087))) (-15 -1817 ((-2 (|:| |func| |#2|) (|:| |kers| (-589 (-562 |#2|))) (|:| |vals| (-589 |#2|))) |#2| (-1087))) (-15 -1484 (|#2| |#2|)) (-15 -1484 (|#2| |#2| (-1087))) (-15 -3298 ((-3 |#2| "failed") (-589 (-562 |#2|)) |#2| (-1087))) (-15 -3810 (|#2| |#2| (-562 |#2|))) (-15 -2755 (|#2| (-383 (-523)) |#2|)))
-((-4130 (((-3 |#3| "failed") |#3|) 110)) (-3695 ((|#3| |#3|) 131)) (-1257 (((-3 |#3| "failed") |#3|) 82)) (-2608 ((|#3| |#3|) 121)) (-1355 (((-3 |#3| "failed") |#3|) 58)) (-3669 ((|#3| |#3|) 129)) (-2613 (((-3 |#3| "failed") |#3|) 46)) (-2588 ((|#3| |#3|) 119)) (-2650 (((-3 |#3| "failed") |#3|) 112)) (-3717 ((|#3| |#3|) 133)) (-1337 (((-3 |#3| "failed") |#3|) 84)) (-2629 ((|#3| |#3|) 123)) (-1315 (((-3 |#3| "failed") |#3| (-710)) 36)) (-2014 (((-3 |#3| "failed") |#3|) 74)) (-2062 ((|#3| |#3|) 118)) (-1371 (((-3 |#3| "failed") |#3|) 44)) (-1847 ((|#3| |#3|) 117)) (-3373 (((-3 |#3| "failed") |#3|) 113)) (-3730 ((|#3| |#3|) 134)) (-4113 (((-3 |#3| "failed") |#3|) 85)) (-2641 ((|#3| |#3|) 124)) (-3233 (((-3 |#3| "failed") |#3|) 111)) (-3707 ((|#3| |#3|) 132)) (-1738 (((-3 |#3| "failed") |#3|) 83)) (-2617 ((|#3| |#3|) 122)) (-3435 (((-3 |#3| "failed") |#3|) 60)) (-3683 ((|#3| |#3|) 130)) (-2620 (((-3 |#3| "failed") |#3|) 48)) (-2598 ((|#3| |#3|) 120)) (-2187 (((-3 |#3| "failed") |#3|) 66)) (-3768 ((|#3| |#3|) 137)) (-3197 (((-3 |#3| "failed") |#3|) 104)) (-2680 ((|#3| |#3|) 142)) (-3447 (((-3 |#3| "failed") |#3|) 62)) (-3743 ((|#3| |#3|) 135)) (-2075 (((-3 |#3| "failed") |#3|) 50)) (-2655 ((|#3| |#3|) 125)) (-1648 (((-3 |#3| "failed") |#3|) 70)) (-3793 ((|#3| |#3|) 139)) (-2866 (((-3 |#3| "failed") |#3|) 54)) (-3645 ((|#3| |#3|) 127)) (-2139 (((-3 |#3| "failed") |#3|) 72)) (-3135 ((|#3| |#3|) 140)) (-3258 (((-3 |#3| "failed") |#3|) 56)) (-3657 ((|#3| |#3|) 128)) (-2454 (((-3 |#3| "failed") |#3|) 68)) (-3780 ((|#3| |#3|) 138)) (-3371 (((-3 |#3| "failed") |#3|) 107)) (-3632 ((|#3| |#3|) 143)) (-1680 (((-3 |#3| "failed") |#3|) 64)) (-3756 ((|#3| |#3|) 136)) (-1385 (((-3 |#3| "failed") |#3|) 52)) (-2667 ((|#3| |#3|) 126)) (** ((|#3| |#3| (-383 (-523))) 40 (|has| |#1| (-339)))))
-(((-255 |#1| |#2| |#3|) (-13 (-912 |#3|) (-10 -7 (IF (|has| |#1| (-339)) (-15 ** (|#3| |#3| (-383 (-523)))) |%noBranch|) (-15 -1847 (|#3| |#3|)) (-15 -2062 (|#3| |#3|)) (-15 -2588 (|#3| |#3|)) (-15 -2598 (|#3| |#3|)) (-15 -2608 (|#3| |#3|)) (-15 -2617 (|#3| |#3|)) (-15 -2629 (|#3| |#3|)) (-15 -2641 (|#3| |#3|)) (-15 -2655 (|#3| |#3|)) (-15 -2667 (|#3| |#3|)) (-15 -2680 (|#3| |#3|)) (-15 -3632 (|#3| |#3|)) (-15 -3645 (|#3| |#3|)) (-15 -3657 (|#3| |#3|)) (-15 -3669 (|#3| |#3|)) (-15 -3683 (|#3| |#3|)) (-15 -3695 (|#3| |#3|)) (-15 -3707 (|#3| |#3|)) (-15 -3717 (|#3| |#3|)) (-15 -3730 (|#3| |#3|)) (-15 -3743 (|#3| |#3|)) (-15 -3756 (|#3| |#3|)) (-15 -3768 (|#3| |#3|)) (-15 -3780 (|#3| |#3|)) (-15 -3793 (|#3| |#3|)) (-15 -3135 (|#3| |#3|)))) (-37 (-383 (-523))) (-1160 |#1|) (-1131 |#1| |#2|)) (T -255))
-((** (*1 *2 *2 *3) (-12 (-5 *3 (-383 (-523))) (-4 *4 (-339)) (-4 *4 (-37 *3)) (-4 *5 (-1160 *4)) (-5 *1 (-255 *4 *5 *2)) (-4 *2 (-1131 *4 *5)))) (-1847 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-2062 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-2588 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-2598 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-2608 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-2617 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-2629 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-2641 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-2655 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-2667 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-2680 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-3632 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-3645 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-3657 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-3669 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-3683 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-3695 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-3707 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-3717 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-3730 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-3743 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-3756 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-3768 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-3780 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-3793 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))) (-3135 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3)) (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4)))))
-(-13 (-912 |#3|) (-10 -7 (IF (|has| |#1| (-339)) (-15 ** (|#3| |#3| (-383 (-523)))) |%noBranch|) (-15 -1847 (|#3| |#3|)) (-15 -2062 (|#3| |#3|)) (-15 -2588 (|#3| |#3|)) (-15 -2598 (|#3| |#3|)) (-15 -2608 (|#3| |#3|)) (-15 -2617 (|#3| |#3|)) (-15 -2629 (|#3| |#3|)) (-15 -2641 (|#3| |#3|)) (-15 -2655 (|#3| |#3|)) (-15 -2667 (|#3| |#3|)) (-15 -2680 (|#3| |#3|)) (-15 -3632 (|#3| |#3|)) (-15 -3645 (|#3| |#3|)) (-15 -3657 (|#3| |#3|)) (-15 -3669 (|#3| |#3|)) (-15 -3683 (|#3| |#3|)) (-15 -3695 (|#3| |#3|)) (-15 -3707 (|#3| |#3|)) (-15 -3717 (|#3| |#3|)) (-15 -3730 (|#3| |#3|)) (-15 -3743 (|#3| |#3|)) (-15 -3756 (|#3| |#3|)) (-15 -3768 (|#3| |#3|)) (-15 -3780 (|#3| |#3|)) (-15 -3793 (|#3| |#3|)) (-15 -3135 (|#3| |#3|))))
-((-4130 (((-3 |#3| "failed") |#3|) 66)) (-3695 ((|#3| |#3|) 133)) (-1257 (((-3 |#3| "failed") |#3|) 50)) (-2608 ((|#3| |#3|) 121)) (-1355 (((-3 |#3| "failed") |#3|) 62)) (-3669 ((|#3| |#3|) 131)) (-2613 (((-3 |#3| "failed") |#3|) 46)) (-2588 ((|#3| |#3|) 119)) (-2650 (((-3 |#3| "failed") |#3|) 70)) (-3717 ((|#3| |#3|) 135)) (-1337 (((-3 |#3| "failed") |#3|) 54)) (-2629 ((|#3| |#3|) 123)) (-1315 (((-3 |#3| "failed") |#3| (-710)) 35)) (-2014 (((-3 |#3| "failed") |#3|) 44)) (-2062 ((|#3| |#3|) 112)) (-1371 (((-3 |#3| "failed") |#3|) 42)) (-1847 ((|#3| |#3|) 118)) (-3373 (((-3 |#3| "failed") |#3|) 72)) (-3730 ((|#3| |#3|) 136)) (-4113 (((-3 |#3| "failed") |#3|) 56)) (-2641 ((|#3| |#3|) 124)) (-3233 (((-3 |#3| "failed") |#3|) 68)) (-3707 ((|#3| |#3|) 134)) (-1738 (((-3 |#3| "failed") |#3|) 52)) (-2617 ((|#3| |#3|) 122)) (-3435 (((-3 |#3| "failed") |#3|) 64)) (-3683 ((|#3| |#3|) 132)) (-2620 (((-3 |#3| "failed") |#3|) 48)) (-2598 ((|#3| |#3|) 120)) (-2187 (((-3 |#3| "failed") |#3|) 78)) (-3768 ((|#3| |#3|) 139)) (-3197 (((-3 |#3| "failed") |#3|) 58)) (-2680 ((|#3| |#3|) 127)) (-3447 (((-3 |#3| "failed") |#3|) 74)) (-3743 ((|#3| |#3|) 137)) (-2075 (((-3 |#3| "failed") |#3|) 102)) (-2655 ((|#3| |#3|) 125)) (-1648 (((-3 |#3| "failed") |#3|) 82)) (-3793 ((|#3| |#3|) 141)) (-2866 (((-3 |#3| "failed") |#3|) 109)) (-3645 ((|#3| |#3|) 129)) (-2139 (((-3 |#3| "failed") |#3|) 84)) (-3135 ((|#3| |#3|) 142)) (-3258 (((-3 |#3| "failed") |#3|) 111)) (-3657 ((|#3| |#3|) 130)) (-2454 (((-3 |#3| "failed") |#3|) 80)) (-3780 ((|#3| |#3|) 140)) (-3371 (((-3 |#3| "failed") |#3|) 60)) (-3632 ((|#3| |#3|) 128)) (-1680 (((-3 |#3| "failed") |#3|) 76)) (-3756 ((|#3| |#3|) 138)) (-1385 (((-3 |#3| "failed") |#3|) 105)) (-2667 ((|#3| |#3|) 126)) (** ((|#3| |#3| (-383 (-523))) 40 (|has| |#1| (-339)))))
-(((-256 |#1| |#2| |#3| |#4|) (-13 (-912 |#3|) (-10 -7 (IF (|has| |#1| (-339)) (-15 ** (|#3| |#3| (-383 (-523)))) |%noBranch|) (-15 -1847 (|#3| |#3|)) (-15 -2062 (|#3| |#3|)) (-15 -2588 (|#3| |#3|)) (-15 -2598 (|#3| |#3|)) (-15 -2608 (|#3| |#3|)) (-15 -2617 (|#3| |#3|)) (-15 -2629 (|#3| |#3|)) (-15 -2641 (|#3| |#3|)) (-15 -2655 (|#3| |#3|)) (-15 -2667 (|#3| |#3|)) (-15 -2680 (|#3| |#3|)) (-15 -3632 (|#3| |#3|)) (-15 -3645 (|#3| |#3|)) (-15 -3657 (|#3| |#3|)) (-15 -3669 (|#3| |#3|)) (-15 -3683 (|#3| |#3|)) (-15 -3695 (|#3| |#3|)) (-15 -3707 (|#3| |#3|)) (-15 -3717 (|#3| |#3|)) (-15 -3730 (|#3| |#3|)) (-15 -3743 (|#3| |#3|)) (-15 -3756 (|#3| |#3|)) (-15 -3768 (|#3| |#3|)) (-15 -3780 (|#3| |#3|)) (-15 -3793 (|#3| |#3|)) (-15 -3135 (|#3| |#3|)))) (-37 (-383 (-523))) (-1129 |#1|) (-1152 |#1| |#2|) (-912 |#2|)) (T -256))
-((** (*1 *2 *2 *3) (-12 (-5 *3 (-383 (-523))) (-4 *4 (-339)) (-4 *4 (-37 *3)) (-4 *5 (-1129 *4)) (-5 *1 (-256 *4 *5 *2 *6)) (-4 *2 (-1152 *4 *5)) (-4 *6 (-912 *5)))) (-1847 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-2062 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-2588 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-2598 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-2608 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-2617 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-2629 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-2641 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-2655 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-2667 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-2680 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-3632 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-3645 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-3657 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-3669 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-3683 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-3695 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-3707 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-3717 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-3730 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-3743 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-3756 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-3768 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-3780 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-3793 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))) (-3135 (*1 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3)) (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4)))))
-(-13 (-912 |#3|) (-10 -7 (IF (|has| |#1| (-339)) (-15 ** (|#3| |#3| (-383 (-523)))) |%noBranch|) (-15 -1847 (|#3| |#3|)) (-15 -2062 (|#3| |#3|)) (-15 -2588 (|#3| |#3|)) (-15 -2598 (|#3| |#3|)) (-15 -2608 (|#3| |#3|)) (-15 -2617 (|#3| |#3|)) (-15 -2629 (|#3| |#3|)) (-15 -2641 (|#3| |#3|)) (-15 -2655 (|#3| |#3|)) (-15 -2667 (|#3| |#3|)) (-15 -2680 (|#3| |#3|)) (-15 -3632 (|#3| |#3|)) (-15 -3645 (|#3| |#3|)) (-15 -3657 (|#3| |#3|)) (-15 -3669 (|#3| |#3|)) (-15 -3683 (|#3| |#3|)) (-15 -3695 (|#3| |#3|)) (-15 -3707 (|#3| |#3|)) (-15 -3717 (|#3| |#3|)) (-15 -3730 (|#3| |#3|)) (-15 -3743 (|#3| |#3|)) (-15 -3756 (|#3| |#3|)) (-15 -3768 (|#3| |#3|)) (-15 -3780 (|#3| |#3|)) (-15 -3793 (|#3| |#3|)) (-15 -3135 (|#3| |#3|))))
-((-3807 (((-108) $) 19)) (-2381 (((-167) $) 7)) (-1376 (((-3 (-1087) "failed") $) 14)) (-1637 (((-3 (-589 $) "failed") $) NIL)) (-2259 (((-3 (-1087) "failed") $) 21)) (-2107 (((-3 (-1020) "failed") $) 17)) (-2592 (((-108) $) 15)) (-3976 (((-794) $) NIL)) (-2236 (((-108) $) 9)))
-(((-257) (-13 (-563 (-794)) (-10 -8 (-15 -2381 ((-167) $)) (-15 -2592 ((-108) $)) (-15 -2107 ((-3 (-1020) "failed") $)) (-15 -3807 ((-108) $)) (-15 -2259 ((-3 (-1087) "failed") $)) (-15 -2236 ((-108) $)) (-15 -1376 ((-3 (-1087) "failed") $)) (-15 -1637 ((-3 (-589 $) "failed") $))))) (T -257))
-((-2381 (*1 *2 *1) (-12 (-5 *2 (-167)) (-5 *1 (-257)))) (-2592 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-257)))) (-2107 (*1 *2 *1) (|partial| -12 (-5 *2 (-1020)) (-5 *1 (-257)))) (-3807 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-257)))) (-2259 (*1 *2 *1) (|partial| -12 (-5 *2 (-1087)) (-5 *1 (-257)))) (-2236 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-257)))) (-1376 (*1 *2 *1) (|partial| -12 (-5 *2 (-1087)) (-5 *1 (-257)))) (-1637 (*1 *2 *1) (|partial| -12 (-5 *2 (-589 (-257))) (-5 *1 (-257)))))
-(-13 (-563 (-794)) (-10 -8 (-15 -2381 ((-167) $)) (-15 -2592 ((-108) $)) (-15 -2107 ((-3 (-1020) "failed") $)) (-15 -3807 ((-108) $)) (-15 -2259 ((-3 (-1087) "failed") $)) (-15 -2236 ((-108) $)) (-15 -1376 ((-3 (-1087) "failed") $)) (-15 -1637 ((-3 (-589 $) "failed") $))))
-((-1299 (($ (-1 (-108) |#2|) $) 24)) (-3917 (($ $) 36)) (-1869 (($ (-1 (-108) |#2|) $) NIL) (($ |#2| $) 34)) (-2231 (($ |#2| $) 32) (($ (-1 (-108) |#2|) $) 18)) (-3325 (($ (-1 (-108) |#2| |#2|) $ $) NIL) (($ $ $) 40)) (-3334 (($ |#2| $ (-523)) 20) (($ $ $ (-523)) 22)) (-3725 (($ $ (-523)) 11) (($ $ (-1136 (-523))) 14)) (-1622 (($ $ |#2|) 30) (($ $ $) NIL)) (-2785 (($ $ |#2|) 29) (($ |#2| $) NIL) (($ $ $) 26) (($ (-589 $)) NIL)))
-(((-258 |#1| |#2|) (-10 -8 (-15 -3325 (|#1| |#1| |#1|)) (-15 -1869 (|#1| |#2| |#1|)) (-15 -3325 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -1869 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1622 (|#1| |#1| |#1|)) (-15 -1622 (|#1| |#1| |#2|)) (-15 -3334 (|#1| |#1| |#1| (-523))) (-15 -3334 (|#1| |#2| |#1| (-523))) (-15 -3725 (|#1| |#1| (-1136 (-523)))) (-15 -3725 (|#1| |#1| (-523))) (-15 -2785 (|#1| (-589 |#1|))) (-15 -2785 (|#1| |#1| |#1|)) (-15 -2785 (|#1| |#2| |#1|)) (-15 -2785 (|#1| |#1| |#2|)) (-15 -2231 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1299 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -2231 (|#1| |#2| |#1|)) (-15 -3917 (|#1| |#1|))) (-259 |#2|) (-1123)) (T -258))
-NIL
-(-10 -8 (-15 -3325 (|#1| |#1| |#1|)) (-15 -1869 (|#1| |#2| |#1|)) (-15 -3325 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -1869 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1622 (|#1| |#1| |#1|)) (-15 -1622 (|#1| |#1| |#2|)) (-15 -3334 (|#1| |#1| |#1| (-523))) (-15 -3334 (|#1| |#2| |#1| (-523))) (-15 -3725 (|#1| |#1| (-1136 (-523)))) (-15 -3725 (|#1| |#1| (-523))) (-15 -2785 (|#1| (-589 |#1|))) (-15 -2785 (|#1| |#1| |#1|)) (-15 -2785 (|#1| |#2| |#1|)) (-15 -2785 (|#1| |#1| |#2|)) (-15 -2231 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1299 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -2231 (|#1| |#2| |#1|)) (-15 -3917 (|#1| |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-1666 (((-1174) $ (-523) (-523)) 40 (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) 8)) (-4101 ((|#1| $ (-523) |#1|) 52 (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) 58 (|has| $ (-6 -4249)))) (-3627 (($ (-1 (-108) |#1|) $) 85)) (-1299 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4248)))) (-1640 (($) 7 T CONST)) (-2543 (($ $) 83 (|has| |#1| (-1016)))) (-3917 (($ $) 78 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-1869 (($ (-1 (-108) |#1|) $) 89) (($ |#1| $) 84 (|has| |#1| (-1016)))) (-2231 (($ |#1| $) 77 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4248)))) (-3073 ((|#1| $ (-523) |#1|) 53 (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) 51)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-2348 (($ (-710) |#1|) 69)) (-1344 (((-108) $ (-710)) 9)) (-1798 (((-523) $) 43 (|has| (-523) (-786)))) (-3325 (($ (-1 (-108) |#1| |#1|) $ $) 86) (($ $ $) 82 (|has| |#1| (-786)))) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2133 (((-523) $) 44 (|has| (-523) (-786)))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-3862 (($ |#1| $ (-523)) 88) (($ $ $ (-523)) 87)) (-3334 (($ |#1| $ (-523)) 60) (($ $ $ (-523)) 59)) (-2909 (((-589 (-523)) $) 46)) (-2290 (((-108) (-523) $) 47)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-3879 ((|#1| $) 42 (|has| (-523) (-786)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-2408 (($ $ |#1|) 41 (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-1410 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) 48)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ (-523) |#1|) 50) ((|#1| $ (-523)) 49) (($ $ (-1136 (-523))) 63)) (-1314 (($ $ (-523)) 91) (($ $ (-1136 (-523))) 90)) (-3725 (($ $ (-523)) 62) (($ $ (-1136 (-523))) 61)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3077 (((-499) $) 79 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 70)) (-1622 (($ $ |#1|) 93) (($ $ $) 92)) (-2785 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-589 $)) 65)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-259 |#1|) (-129) (-1123)) (T -259))
-((-1622 (*1 *1 *1 *2) (-12 (-4 *1 (-259 *2)) (-4 *2 (-1123)))) (-1622 (*1 *1 *1 *1) (-12 (-4 *1 (-259 *2)) (-4 *2 (-1123)))) (-1314 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-259 *3)) (-4 *3 (-1123)))) (-1314 (*1 *1 *1 *2) (-12 (-5 *2 (-1136 (-523))) (-4 *1 (-259 *3)) (-4 *3 (-1123)))) (-1869 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-259 *3)) (-4 *3 (-1123)))) (-3862 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-523)) (-4 *1 (-259 *2)) (-4 *2 (-1123)))) (-3862 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-259 *3)) (-4 *3 (-1123)))) (-3325 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-259 *3)) (-4 *3 (-1123)))) (-3627 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-259 *3)) (-4 *3 (-1123)))) (-1869 (*1 *1 *2 *1) (-12 (-4 *1 (-259 *2)) (-4 *2 (-1123)) (-4 *2 (-1016)))) (-2543 (*1 *1 *1) (-12 (-4 *1 (-259 *2)) (-4 *2 (-1123)) (-4 *2 (-1016)))) (-3325 (*1 *1 *1 *1) (-12 (-4 *1 (-259 *2)) (-4 *2 (-1123)) (-4 *2 (-786)))))
-(-13 (-594 |t#1|) (-10 -8 (-6 -4249) (-15 -1622 ($ $ |t#1|)) (-15 -1622 ($ $ $)) (-15 -1314 ($ $ (-523))) (-15 -1314 ($ $ (-1136 (-523)))) (-15 -1869 ($ (-1 (-108) |t#1|) $)) (-15 -3862 ($ |t#1| $ (-523))) (-15 -3862 ($ $ $ (-523))) (-15 -3325 ($ (-1 (-108) |t#1| |t#1|) $ $)) (-15 -3627 ($ (-1 (-108) |t#1|) $)) (IF (|has| |t#1| (-1016)) (PROGN (-15 -1869 ($ |t#1| $)) (-15 -2543 ($ $))) |%noBranch|) (IF (|has| |t#1| (-786)) (-15 -3325 ($ $ $)) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-263 #0=(-523) |#1|) . T) ((-265 #0# |#1|) . T) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-556 #0# |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-594 |#1|) . T) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
+((-2202 (((-108) $) 12)) (-1340 (($ (-1 |#2| |#2|) $) 21)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ (-385 (-525)) $) 25) (($ $ (-385 (-525))) NIL)))
+(((-45 |#1| |#2| |#3|) (-10 -8 (-15 * (|#1| |#1| (-385 (-525)))) (-15 * (|#1| (-385 (-525)) |#1|)) (-15 -2202 ((-108) |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-854) |#1|))) (-46 |#2| |#3|) (-975) (-733)) (T -45))
+NIL
+(-10 -8 (-15 * (|#1| |#1| (-385 (-525)))) (-15 * (|#1| (-385 (-525)) |#1|)) (-15 -2202 ((-108) |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-854) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 51 (|has| |#1| (-517)))) (-3706 (($ $) 52 (|has| |#1| (-517)))) (-1715 (((-108) $) 54 (|has| |#1| (-517)))) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-1710 (($ $) 60)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2202 (((-108) $) 62)) (-1480 (($ |#1| |#2|) 61)) (-1340 (($ (-1 |#1| |#1|) $) 63)) (-1661 (($ $) 65)) (-1678 ((|#1| $) 66)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2089 (((-3 $ "failed") $ $) 50 (|has| |#1| (-517)))) (-1316 ((|#2| $) 64)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ (-385 (-525))) 57 (|has| |#1| (-37 (-385 (-525))))) (($ $) 49 (|has| |#1| (-517))) (($ |#1|) 47 (|has| |#1| (-160)))) (-2560 ((|#1| $ |#2|) 59)) (-1437 (((-3 $ "failed") $) 48 (|has| |#1| (-136)))) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 53 (|has| |#1| (-517)))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4173 (($ $ |#1|) 58 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-385 (-525)) $) 56 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 55 (|has| |#1| (-37 (-385 (-525)))))))
+(((-46 |#1| |#2|) (-131) (-975) (-733)) (T -46))
+((-1678 (*1 *2 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *3 (-733)) (-4 *2 (-975)))) (-1661 (*1 *1 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-975)) (-4 *3 (-733)))) (-1316 (*1 *2 *1) (-12 (-4 *1 (-46 *3 *2)) (-4 *3 (-975)) (-4 *2 (-733)))) (-1340 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-46 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733)))) (-2202 (*1 *2 *1) (-12 (-4 *1 (-46 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733)) (-5 *2 (-108)))) (-1480 (*1 *1 *2 *3) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-975)) (-4 *3 (-733)))) (-1710 (*1 *1 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-975)) (-4 *3 (-733)))) (-2560 (*1 *2 *1 *3) (-12 (-4 *1 (-46 *2 *3)) (-4 *3 (-733)) (-4 *2 (-975)))) (-4173 (*1 *1 *1 *2) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-975)) (-4 *3 (-733)) (-4 *2 (-341)))))
+(-13 (-975) (-107 |t#1| |t#1|) (-10 -8 (-15 -1678 (|t#1| $)) (-15 -1661 ($ $)) (-15 -1316 (|t#2| $)) (-15 -1340 ($ (-1 |t#1| |t#1|) $)) (-15 -2202 ((-108) $)) (-15 -1480 ($ |t#1| |t#2|)) (-15 -1710 ($ $)) (-15 -2560 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-341)) (-15 -4173 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-160)) (PROGN (-6 (-160)) (-6 (-37 |t#1|))) |%noBranch|) (IF (|has| |t#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |t#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |t#1| (-517)) (-6 (-517)) |%noBranch|) (IF (|has| |t#1| (-37 (-385 (-525)))) (-6 (-37 (-385 (-525)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((-37 |#1|) |has| |#1| (-160)) ((-37 $) |has| |#1| (-517)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-385 (-525)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-269) |has| |#1| (-517)) ((-517) |has| |#1| (-517)) ((-593 #0#) |has| |#1| (-37 (-385 (-525)))) ((-593 |#1|) . T) ((-593 $) . T) ((-659 #0#) |has| |#1| (-37 (-385 (-525)))) ((-659 |#1|) |has| |#1| (-160)) ((-659 $) |has| |#1| (-517)) ((-668) . T) ((-981 #0#) |has| |#1| (-37 (-385 (-525)))) ((-981 |#1|) . T) ((-981 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-2453 (((-591 $) (-1085 $) (-1089)) NIL) (((-591 $) (-1085 $)) NIL) (((-591 $) (-885 $)) NIL)) (-3719 (($ (-1085 $) (-1089)) NIL) (($ (-1085 $)) NIL) (($ (-885 $)) NIL)) (-1800 (((-108) $) 11)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-3374 (((-591 (-564 $)) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3825 (($ $ (-273 $)) NIL) (($ $ (-591 (-273 $))) NIL) (($ $ (-591 (-564 $)) (-591 $)) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1361 (($ $) NIL)) (-1947 (((-108) $ $) NIL)) (-3798 (($) NIL T CONST)) (-2733 (((-591 $) (-1085 $) (-1089)) NIL) (((-591 $) (-1085 $)) NIL) (((-591 $) (-885 $)) NIL)) (-3642 (($ (-1085 $) (-1089)) NIL) (($ (-1085 $)) NIL) (($ (-885 $)) NIL)) (-1251 (((-3 (-564 $) "failed") $) NIL) (((-3 (-525) "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL)) (-3528 (((-564 $) $) NIL) (((-525) $) NIL) (((-385 (-525)) $) NIL)) (-2129 (($ $ $) NIL)) (-3305 (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL) (((-631 (-525)) (-631 $)) NIL) (((-2 (|:| -4057 (-631 (-385 (-525)))) (|:| |vec| (-1171 (-385 (-525))))) (-631 $) (-1171 $)) NIL) (((-631 (-385 (-525))) (-631 $)) NIL)) (-1227 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-1668 (($ $) NIL) (($ (-591 $)) NIL)) (-2194 (((-591 (-110)) $) NIL)) (-3219 (((-110) (-110)) NIL)) (-2824 (((-108) $) 14)) (-2419 (((-108) $) NIL (|has| $ (-966 (-525))))) (-1738 (((-1041 (-525) (-564 $)) $) NIL)) (-3956 (($ $ (-525)) NIL)) (-2771 (((-1085 $) (-1085 $) (-564 $)) NIL) (((-1085 $) (-1085 $) (-591 (-564 $))) NIL) (($ $ (-564 $)) NIL) (($ $ (-591 (-564 $))) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-2695 (((-1085 $) (-564 $)) NIL (|has| $ (-975)))) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-1340 (($ (-1 $ $) (-564 $)) NIL)) (-1405 (((-3 (-564 $) "failed") $) NIL)) (-1356 (($ (-591 $)) NIL) (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-1298 (((-591 (-564 $)) $) NIL)) (-1843 (($ (-110) $) NIL) (($ (-110) (-591 $)) NIL)) (-1709 (((-108) $ (-110)) NIL) (((-108) $ (-1089)) NIL)) (-1622 (($ $) NIL)) (-2965 (((-712) $) NIL)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ (-591 $)) NIL) (($ $ $) NIL)) (-1988 (((-108) $ $) NIL) (((-108) $ (-1089)) NIL)) (-1348 (((-396 $) $) NIL)) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3451 (((-108) $) NIL (|has| $ (-966 (-525))))) (-4132 (($ $ (-564 $) $) NIL) (($ $ (-591 (-564 $)) (-591 $)) NIL) (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-591 (-1089)) (-591 (-1 $ $))) NIL) (($ $ (-591 (-1089)) (-591 (-1 $ (-591 $)))) NIL) (($ $ (-1089) (-1 $ (-591 $))) NIL) (($ $ (-1089) (-1 $ $)) NIL) (($ $ (-591 (-110)) (-591 (-1 $ $))) NIL) (($ $ (-591 (-110)) (-591 (-1 $ (-591 $)))) NIL) (($ $ (-110) (-1 $ (-591 $))) NIL) (($ $ (-110) (-1 $ $)) NIL)) (-1712 (((-712) $) NIL)) (-3164 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-591 $)) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-1484 (($ $) NIL) (($ $ $) NIL)) (-3266 (($ $ (-712)) NIL) (($ $) NIL)) (-1754 (((-1041 (-525) (-564 $)) $) NIL)) (-1478 (($ $) NIL (|has| $ (-975)))) (-1408 (((-357) $) NIL) (((-205) $) NIL) (((-157 (-357)) $) NIL)) (-3022 (((-796) $) NIL) (($ (-564 $)) NIL) (($ (-385 (-525))) NIL) (($ $) NIL) (($ (-525)) NIL) (($ (-1041 (-525) (-564 $))) NIL)) (-2128 (((-712)) NIL)) (-2989 (($ $) NIL) (($ (-591 $)) NIL)) (-2661 (((-108) (-110)) NIL)) (-2495 (((-108) $ $) NIL)) (-3710 (($ $ (-525)) NIL) (($ $ (-712)) NIL) (($ $ (-854)) NIL)) (-4191 (($) 7 T CONST)) (-4197 (($) 12 T CONST)) (-4196 (($ $ (-712)) NIL) (($ $) NIL)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 16)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL)) (-4164 (($ $ $) 15) (($ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-385 (-525))) NIL) (($ $ (-525)) NIL) (($ $ (-712)) NIL) (($ $ (-854)) NIL)) (* (($ (-385 (-525)) $) NIL) (($ $ (-385 (-525))) NIL) (($ $ $) NIL) (($ (-525) $) NIL) (($ (-712) $) NIL) (($ (-854) $) NIL)))
+(((-47) (-13 (-281) (-27) (-966 (-525)) (-966 (-385 (-525))) (-587 (-525)) (-951) (-587 (-385 (-525))) (-138) (-566 (-157 (-357))) (-213) (-10 -8 (-15 -3022 ($ (-1041 (-525) (-564 $)))) (-15 -1738 ((-1041 (-525) (-564 $)) $)) (-15 -1754 ((-1041 (-525) (-564 $)) $)) (-15 -1227 ($ $)) (-15 -2771 ((-1085 $) (-1085 $) (-564 $))) (-15 -2771 ((-1085 $) (-1085 $) (-591 (-564 $)))) (-15 -2771 ($ $ (-564 $))) (-15 -2771 ($ $ (-591 (-564 $))))))) (T -47))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1041 (-525) (-564 (-47)))) (-5 *1 (-47)))) (-1738 (*1 *2 *1) (-12 (-5 *2 (-1041 (-525) (-564 (-47)))) (-5 *1 (-47)))) (-1754 (*1 *2 *1) (-12 (-5 *2 (-1041 (-525) (-564 (-47)))) (-5 *1 (-47)))) (-1227 (*1 *1 *1) (-5 *1 (-47))) (-2771 (*1 *2 *2 *3) (-12 (-5 *2 (-1085 (-47))) (-5 *3 (-564 (-47))) (-5 *1 (-47)))) (-2771 (*1 *2 *2 *3) (-12 (-5 *2 (-1085 (-47))) (-5 *3 (-591 (-564 (-47)))) (-5 *1 (-47)))) (-2771 (*1 *1 *1 *2) (-12 (-5 *2 (-564 (-47))) (-5 *1 (-47)))) (-2771 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-564 (-47)))) (-5 *1 (-47)))))
+(-13 (-281) (-27) (-966 (-525)) (-966 (-385 (-525))) (-587 (-525)) (-951) (-587 (-385 (-525))) (-138) (-566 (-157 (-357))) (-213) (-10 -8 (-15 -3022 ($ (-1041 (-525) (-564 $)))) (-15 -1738 ((-1041 (-525) (-564 $)) $)) (-15 -1754 ((-1041 (-525) (-564 $)) $)) (-15 -1227 ($ $)) (-15 -2771 ((-1085 $) (-1085 $) (-564 $))) (-15 -2771 ((-1085 $) (-1085 $) (-591 (-564 $)))) (-15 -2771 ($ $ (-564 $))) (-15 -2771 ($ $ (-591 (-564 $))))))
+((-3008 (((-108) $ $) NIL)) (-3250 (((-591 (-1089)) $) 17)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 7)) (-2234 (((-1094) $) 18)) (-4096 (((-108) $ $) NIL)))
+(((-48) (-13 (-1018) (-10 -8 (-15 -3250 ((-591 (-1089)) $)) (-15 -2234 ((-1094) $))))) (T -48))
+((-3250 (*1 *2 *1) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-48)))) (-2234 (*1 *2 *1) (-12 (-5 *2 (-1094)) (-5 *1 (-48)))))
+(-13 (-1018) (-10 -8 (-15 -3250 ((-591 (-1089)) $)) (-15 -2234 ((-1094) $))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 62)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-2600 (((-108) $) 20)) (-1251 (((-3 |#1| "failed") $) 23)) (-3528 ((|#1| $) 24)) (-1710 (($ $) 28)) (-4163 (((-3 $ "failed") $) NIL)) (-2824 (((-108) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-1678 ((|#1| $) 21)) (-1224 (($ $) 51)) (-2339 (((-1072) $) NIL)) (-3779 (((-108) $) 30)) (-2047 (((-1036) $) NIL)) (-3857 (($ (-712)) 49)) (-1409 (($ (-591 (-525))) 50)) (-1316 (((-712) $) 31)) (-3022 (((-796) $) 65) (($ (-525)) 46) (($ |#1|) 44)) (-2560 ((|#1| $ $) 19)) (-2128 (((-712)) 48)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 32 T CONST)) (-4197 (($) 14 T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) 41)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 42) (($ |#1| $) 36)))
+(((-49 |#1| |#2|) (-13 (-569 |#1|) (-966 |#1|) (-10 -8 (-15 -1678 (|#1| $)) (-15 -1224 ($ $)) (-15 -1710 ($ $)) (-15 -2560 (|#1| $ $)) (-15 -3857 ($ (-712))) (-15 -1409 ($ (-591 (-525)))) (-15 -3779 ((-108) $)) (-15 -2600 ((-108) $)) (-15 -1316 ((-712) $)) (-15 -1340 ($ (-1 |#1| |#1|) $)))) (-975) (-591 (-1089))) (T -49))
+((-1678 (*1 *2 *1) (-12 (-4 *2 (-975)) (-5 *1 (-49 *2 *3)) (-14 *3 (-591 (-1089))))) (-1224 (*1 *1 *1) (-12 (-5 *1 (-49 *2 *3)) (-4 *2 (-975)) (-14 *3 (-591 (-1089))))) (-1710 (*1 *1 *1) (-12 (-5 *1 (-49 *2 *3)) (-4 *2 (-975)) (-14 *3 (-591 (-1089))))) (-2560 (*1 *2 *1 *1) (-12 (-4 *2 (-975)) (-5 *1 (-49 *2 *3)) (-14 *3 (-591 (-1089))))) (-3857 (*1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-49 *3 *4)) (-4 *3 (-975)) (-14 *4 (-591 (-1089))))) (-1409 (*1 *1 *2) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-49 *3 *4)) (-4 *3 (-975)) (-14 *4 (-591 (-1089))))) (-3779 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-49 *3 *4)) (-4 *3 (-975)) (-14 *4 (-591 (-1089))))) (-2600 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-49 *3 *4)) (-4 *3 (-975)) (-14 *4 (-591 (-1089))))) (-1316 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-49 *3 *4)) (-4 *3 (-975)) (-14 *4 (-591 (-1089))))) (-1340 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-975)) (-5 *1 (-49 *3 *4)) (-14 *4 (-591 (-1089))))))
+(-13 (-569 |#1|) (-966 |#1|) (-10 -8 (-15 -1678 (|#1| $)) (-15 -1224 ($ $)) (-15 -1710 ($ $)) (-15 -2560 (|#1| $ $)) (-15 -3857 ($ (-712))) (-15 -1409 ($ (-591 (-525)))) (-15 -3779 ((-108) $)) (-15 -2600 ((-108) $)) (-15 -1316 ((-712) $)) (-15 -1340 ($ (-1 |#1| |#1|) $))))
+((-2600 (((-108) (-51)) 13)) (-1251 (((-3 |#1| "failed") (-51)) 21)) (-3528 ((|#1| (-51)) 22)) (-3022 (((-51) |#1|) 18)))
+(((-50 |#1|) (-10 -7 (-15 -3022 ((-51) |#1|)) (-15 -1251 ((-3 |#1| "failed") (-51))) (-15 -2600 ((-108) (-51))) (-15 -3528 (|#1| (-51)))) (-1125)) (T -50))
+((-3528 (*1 *2 *3) (-12 (-5 *3 (-51)) (-5 *1 (-50 *2)) (-4 *2 (-1125)))) (-2600 (*1 *2 *3) (-12 (-5 *3 (-51)) (-5 *2 (-108)) (-5 *1 (-50 *4)) (-4 *4 (-1125)))) (-1251 (*1 *2 *3) (|partial| -12 (-5 *3 (-51)) (-5 *1 (-50 *2)) (-4 *2 (-1125)))) (-3022 (*1 *2 *3) (-12 (-5 *2 (-51)) (-5 *1 (-50 *3)) (-4 *3 (-1125)))))
+(-10 -7 (-15 -3022 ((-51) |#1|)) (-15 -1251 ((-3 |#1| "failed") (-51))) (-15 -2600 ((-108) (-51))) (-15 -3528 (|#1| (-51))))
+((-3008 (((-108) $ $) NIL)) (-3563 (((-1072) (-108)) 25)) (-1403 (((-796) $) 24)) (-2337 (((-715) $) 12)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2494 (((-796) $) 16)) (-4226 (((-1022) $) 14)) (-3022 (((-796) $) 32)) (-1420 (($ (-1022) (-715)) 33)) (-4096 (((-108) $ $) 18)))
+(((-51) (-13 (-1018) (-10 -8 (-15 -1420 ($ (-1022) (-715))) (-15 -2494 ((-796) $)) (-15 -1403 ((-796) $)) (-15 -4226 ((-1022) $)) (-15 -2337 ((-715) $)) (-15 -3563 ((-1072) (-108)))))) (T -51))
+((-1420 (*1 *1 *2 *3) (-12 (-5 *2 (-1022)) (-5 *3 (-715)) (-5 *1 (-51)))) (-2494 (*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-51)))) (-1403 (*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-51)))) (-4226 (*1 *2 *1) (-12 (-5 *2 (-1022)) (-5 *1 (-51)))) (-2337 (*1 *2 *1) (-12 (-5 *2 (-715)) (-5 *1 (-51)))) (-3563 (*1 *2 *3) (-12 (-5 *3 (-108)) (-5 *2 (-1072)) (-5 *1 (-51)))))
+(-13 (-1018) (-10 -8 (-15 -1420 ($ (-1022) (-715))) (-15 -2494 ((-796) $)) (-15 -1403 ((-796) $)) (-15 -4226 ((-1022) $)) (-15 -2337 ((-715) $)) (-15 -3563 ((-1072) (-108)))))
+((-3005 ((|#2| |#3| (-1 |#2| |#2|) |#2|) 16)))
+(((-52 |#1| |#2| |#3|) (-10 -7 (-15 -3005 (|#2| |#3| (-1 |#2| |#2|) |#2|))) (-975) (-593 |#1|) (-790 |#1|)) (T -52))
+((-3005 (*1 *2 *3 *4 *2) (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-593 *5)) (-4 *5 (-975)) (-5 *1 (-52 *5 *2 *3)) (-4 *3 (-790 *5)))))
+(-10 -7 (-15 -3005 (|#2| |#3| (-1 |#2| |#2|) |#2|)))
+((-1594 ((|#3| |#3| (-591 (-1089))) 35)) (-3898 ((|#3| (-591 (-997 |#1| |#2| |#3|)) |#3| (-854)) 22) ((|#3| (-591 (-997 |#1| |#2| |#3|)) |#3|) 20)))
+(((-53 |#1| |#2| |#3|) (-10 -7 (-15 -3898 (|#3| (-591 (-997 |#1| |#2| |#3|)) |#3|)) (-15 -3898 (|#3| (-591 (-997 |#1| |#2| |#3|)) |#3| (-854))) (-15 -1594 (|#3| |#3| (-591 (-1089))))) (-1018) (-13 (-975) (-819 |#1|) (-788) (-566 (-825 |#1|))) (-13 (-408 |#2|) (-819 |#1|) (-566 (-825 |#1|)))) (T -53))
+((-1594 (*1 *2 *2 *3) (-12 (-5 *3 (-591 (-1089))) (-4 *4 (-1018)) (-4 *5 (-13 (-975) (-819 *4) (-788) (-566 (-825 *4)))) (-5 *1 (-53 *4 *5 *2)) (-4 *2 (-13 (-408 *5) (-819 *4) (-566 (-825 *4)))))) (-3898 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-591 (-997 *5 *6 *2))) (-5 *4 (-854)) (-4 *5 (-1018)) (-4 *6 (-13 (-975) (-819 *5) (-788) (-566 (-825 *5)))) (-4 *2 (-13 (-408 *6) (-819 *5) (-566 (-825 *5)))) (-5 *1 (-53 *5 *6 *2)))) (-3898 (*1 *2 *3 *2) (-12 (-5 *3 (-591 (-997 *4 *5 *2))) (-4 *4 (-1018)) (-4 *5 (-13 (-975) (-819 *4) (-788) (-566 (-825 *4)))) (-4 *2 (-13 (-408 *5) (-819 *4) (-566 (-825 *4)))) (-5 *1 (-53 *4 *5 *2)))))
+(-10 -7 (-15 -3898 (|#3| (-591 (-997 |#1| |#2| |#3|)) |#3|)) (-15 -3898 (|#3| (-591 (-997 |#1| |#2| |#3|)) |#3| (-854))) (-15 -1594 (|#3| |#3| (-591 (-1089)))))
+((-3891 (((-108) $ (-712)) 23)) (-2775 (($ $ (-525) |#3|) 46)) (-1743 (($ $ (-525) |#4|) 50)) (-3725 ((|#3| $ (-525)) 59)) (-3454 (((-591 |#2|) $) 30)) (-2910 (((-108) $ (-712)) 25)) (-2141 (((-108) |#2| $) 54)) (-3249 (($ (-1 |#2| |#2|) $) 37)) (-1340 (($ (-1 |#2| |#2|) $) 36) (($ (-1 |#2| |#2| |#2|) $ $) 40) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 42)) (-3971 (((-108) $ (-712)) 24)) (-1941 (($ $ |#2|) 34)) (-1623 (((-108) (-1 (-108) |#2|) $) 19)) (-3164 ((|#2| $ (-525) (-525)) NIL) ((|#2| $ (-525) (-525) |#2|) 27)) (-2064 (((-712) (-1 (-108) |#2|) $) 28) (((-712) |#2| $) 56)) (-3199 (($ $) 33)) (-1793 ((|#4| $ (-525)) 62)) (-3022 (((-796) $) 68)) (-4158 (((-108) (-1 (-108) |#2|) $) 18)) (-4096 (((-108) $ $) 53)) (-4045 (((-712) $) 26)))
+(((-54 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3022 ((-796) |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -1340 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3249 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1743 (|#1| |#1| (-525) |#4|)) (-15 -2775 (|#1| |#1| (-525) |#3|)) (-15 -3454 ((-591 |#2|) |#1|)) (-15 -1793 (|#4| |#1| (-525))) (-15 -3725 (|#3| |#1| (-525))) (-15 -3164 (|#2| |#1| (-525) (-525) |#2|)) (-15 -3164 (|#2| |#1| (-525) (-525))) (-15 -1941 (|#1| |#1| |#2|)) (-15 -4096 ((-108) |#1| |#1|)) (-15 -2141 ((-108) |#2| |#1|)) (-15 -2064 ((-712) |#2| |#1|)) (-15 -2064 ((-712) (-1 (-108) |#2|) |#1|)) (-15 -1623 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4158 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4045 ((-712) |#1|)) (-15 -3891 ((-108) |#1| (-712))) (-15 -2910 ((-108) |#1| (-712))) (-15 -3971 ((-108) |#1| (-712))) (-15 -3199 (|#1| |#1|))) (-55 |#2| |#3| |#4|) (-1125) (-351 |#2|) (-351 |#2|)) (T -54))
+NIL
+(-10 -8 (-15 -3022 ((-796) |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -1340 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3249 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1743 (|#1| |#1| (-525) |#4|)) (-15 -2775 (|#1| |#1| (-525) |#3|)) (-15 -3454 ((-591 |#2|) |#1|)) (-15 -1793 (|#4| |#1| (-525))) (-15 -3725 (|#3| |#1| (-525))) (-15 -3164 (|#2| |#1| (-525) (-525) |#2|)) (-15 -3164 (|#2| |#1| (-525) (-525))) (-15 -1941 (|#1| |#1| |#2|)) (-15 -4096 ((-108) |#1| |#1|)) (-15 -2141 ((-108) |#2| |#1|)) (-15 -2064 ((-712) |#2| |#1|)) (-15 -2064 ((-712) (-1 (-108) |#2|) |#1|)) (-15 -1623 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4158 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4045 ((-712) |#1|)) (-15 -3891 ((-108) |#1| (-712))) (-15 -2910 ((-108) |#1| (-712))) (-15 -3971 ((-108) |#1| (-712))) (-15 -3199 (|#1| |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3891 (((-108) $ (-712)) 8)) (-3186 ((|#1| $ (-525) (-525) |#1|) 44)) (-2775 (($ $ (-525) |#2|) 42)) (-1743 (($ $ (-525) |#3|) 41)) (-3798 (($) 7 T CONST)) (-3725 ((|#2| $ (-525)) 46)) (-3255 ((|#1| $ (-525) (-525) |#1|) 43)) (-3217 ((|#1| $ (-525) (-525)) 48)) (-3454 (((-591 |#1|) $) 30)) (-2281 (((-712) $) 51)) (-1268 (($ (-712) (-712) |#1|) 57)) (-2296 (((-712) $) 50)) (-2910 (((-108) $ (-712)) 9)) (-1755 (((-525) $) 55)) (-1639 (((-525) $) 53)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-4230 (((-525) $) 54)) (-2631 (((-525) $) 52)) (-3249 (($ (-1 |#1| |#1|) $) 34)) (-1340 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-1941 (($ $ |#1|) 56)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ (-525) (-525)) 49) ((|#1| $ (-525) (-525) |#1|) 47)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1793 ((|#3| $ (-525)) 45)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-55 |#1| |#2| |#3|) (-131) (-1125) (-351 |t#1|) (-351 |t#1|)) (T -55))
+((-1340 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-1268 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-712)) (-4 *3 (-1125)) (-4 *1 (-55 *3 *4 *5)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-1941 (*1 *1 *1 *2) (-12 (-4 *1 (-55 *2 *3 *4)) (-4 *2 (-1125)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)))) (-1755 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *2 (-525)))) (-4230 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *2 (-525)))) (-1639 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *2 (-525)))) (-2631 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *2 (-525)))) (-2281 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *2 (-712)))) (-2296 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *2 (-712)))) (-3164 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-525)) (-4 *1 (-55 *2 *4 *5)) (-4 *4 (-351 *2)) (-4 *5 (-351 *2)) (-4 *2 (-1125)))) (-3217 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-525)) (-4 *1 (-55 *2 *4 *5)) (-4 *4 (-351 *2)) (-4 *5 (-351 *2)) (-4 *2 (-1125)))) (-3164 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-525)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1125)) (-4 *4 (-351 *2)) (-4 *5 (-351 *2)))) (-3725 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-4 *1 (-55 *4 *2 *5)) (-4 *4 (-1125)) (-4 *5 (-351 *4)) (-4 *2 (-351 *4)))) (-1793 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-4 *1 (-55 *4 *5 *2)) (-4 *4 (-1125)) (-4 *5 (-351 *4)) (-4 *2 (-351 *4)))) (-3454 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *2 (-591 *3)))) (-3186 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-525)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1125)) (-4 *4 (-351 *2)) (-4 *5 (-351 *2)))) (-3255 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-525)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1125)) (-4 *4 (-351 *2)) (-4 *5 (-351 *2)))) (-2775 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-525)) (-4 *1 (-55 *4 *3 *5)) (-4 *4 (-1125)) (-4 *3 (-351 *4)) (-4 *5 (-351 *4)))) (-1743 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-525)) (-4 *1 (-55 *4 *5 *3)) (-4 *4 (-1125)) (-4 *5 (-351 *4)) (-4 *3 (-351 *4)))) (-3249 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-1340 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-1340 (*1 *1 *2 *1 *1 *3) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))))
+(-13 (-464 |t#1|) (-10 -8 (-6 -4251) (-6 -4250) (-15 -1268 ($ (-712) (-712) |t#1|)) (-15 -1941 ($ $ |t#1|)) (-15 -1755 ((-525) $)) (-15 -4230 ((-525) $)) (-15 -1639 ((-525) $)) (-15 -2631 ((-525) $)) (-15 -2281 ((-712) $)) (-15 -2296 ((-712) $)) (-15 -3164 (|t#1| $ (-525) (-525))) (-15 -3217 (|t#1| $ (-525) (-525))) (-15 -3164 (|t#1| $ (-525) (-525) |t#1|)) (-15 -3725 (|t#2| $ (-525))) (-15 -1793 (|t#3| $ (-525))) (-15 -3454 ((-591 |t#1|) $)) (-15 -3186 (|t#1| $ (-525) (-525) |t#1|)) (-15 -3255 (|t#1| $ (-525) (-525) |t#1|)) (-15 -2775 ($ $ (-525) |t#2|)) (-15 -1743 ($ $ (-525) |t#3|)) (-15 -1340 ($ (-1 |t#1| |t#1|) $)) (-15 -3249 ($ (-1 |t#1| |t#1|) $)) (-15 -1340 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -1340 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
+(((-33) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-1526 (((-57 |#2|) (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|) 16)) (-1227 ((|#2| (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|) 18)) (-1340 (((-57 |#2|) (-1 |#2| |#1|) (-57 |#1|)) 13)))
+(((-56 |#1| |#2|) (-10 -7 (-15 -1526 ((-57 |#2|) (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -1227 (|#2| (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -1340 ((-57 |#2|) (-1 |#2| |#1|) (-57 |#1|)))) (-1125) (-1125)) (T -56))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-57 *5)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-57 *6)) (-5 *1 (-56 *5 *6)))) (-1227 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-57 *5)) (-4 *5 (-1125)) (-4 *2 (-1125)) (-5 *1 (-56 *5 *2)))) (-1526 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-57 *6)) (-4 *6 (-1125)) (-4 *5 (-1125)) (-5 *2 (-57 *5)) (-5 *1 (-56 *6 *5)))))
+(-10 -7 (-15 -1526 ((-57 |#2|) (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -1227 (|#2| (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -1340 ((-57 |#2|) (-1 |#2| |#1|) (-57 |#1|))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3203 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-788)))) (-4026 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4251))) (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| |#1| (-788))))) (-3327 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-788)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#1| $ (-525) |#1|) 11 (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) NIL (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3677 (($ |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) NIL)) (-3004 (((-525) (-1 (-108) |#1|) $) NIL) (((-525) |#1| $) NIL (|has| |#1| (-1018))) (((-525) |#1| $ (-525)) NIL (|has| |#1| (-1018)))) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2291 (($ (-591 |#1|)) 13) (($ (-712) |#1|) 14)) (-1268 (($ (-712) |#1|) 9)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) NIL (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2131 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-788)))) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-4189 (($ |#1| $ (-525)) NIL) (($ $ $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-3066 ((|#1| $) NIL (|has| (-525) (-788)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1941 (($ $ |#1|) NIL (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) 7)) (-3164 ((|#1| $ (-525) |#1|) NIL) ((|#1| $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-2777 (($ $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4063 (($ $ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) NIL)) (-3690 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-591 $)) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-57 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -2291 ($ (-591 |#1|))) (-15 -2291 ($ (-712) |#1|)))) (-1125)) (T -57))
+((-2291 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-5 *1 (-57 *3)))) (-2291 (*1 *1 *2 *3) (-12 (-5 *2 (-712)) (-5 *1 (-57 *3)) (-4 *3 (-1125)))))
+(-13 (-19 |#1|) (-10 -8 (-15 -2291 ($ (-591 |#1|))) (-15 -2291 ($ (-712) |#1|))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#1| $ (-525) (-525) |#1|) NIL)) (-2775 (($ $ (-525) (-57 |#1|)) NIL)) (-1743 (($ $ (-525) (-57 |#1|)) NIL)) (-3798 (($) NIL T CONST)) (-3725 (((-57 |#1|) $ (-525)) NIL)) (-3255 ((|#1| $ (-525) (-525) |#1|) NIL)) (-3217 ((|#1| $ (-525) (-525)) NIL)) (-3454 (((-591 |#1|) $) NIL)) (-2281 (((-712) $) NIL)) (-1268 (($ (-712) (-712) |#1|) NIL)) (-2296 (((-712) $) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-1755 (((-525) $) NIL)) (-1639 (((-525) $) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4230 (((-525) $) NIL)) (-2631 (((-525) $) NIL)) (-3249 (($ (-1 |#1| |#1|) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-1941 (($ $ |#1|) NIL)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#1| $ (-525) (-525)) NIL) ((|#1| $ (-525) (-525) |#1|) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) NIL)) (-1793 (((-57 |#1|) $ (-525)) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-58 |#1|) (-13 (-55 |#1| (-57 |#1|) (-57 |#1|)) (-10 -7 (-6 -4251))) (-1125)) (T -58))
+NIL
+(-13 (-55 |#1| (-57 |#1|) (-57 |#1|)) (-10 -7 (-6 -4251)))
+((-1251 (((-3 $ "failed") (-1171 (-294 (-357)))) 74) (((-3 $ "failed") (-1171 (-294 (-525)))) 63) (((-3 $ "failed") (-1171 (-885 (-357)))) 94) (((-3 $ "failed") (-1171 (-885 (-525)))) 84) (((-3 $ "failed") (-1171 (-385 (-885 (-357))))) 52) (((-3 $ "failed") (-1171 (-385 (-885 (-525))))) 39)) (-3528 (($ (-1171 (-294 (-357)))) 70) (($ (-1171 (-294 (-525)))) 59) (($ (-1171 (-885 (-357)))) 90) (($ (-1171 (-885 (-525)))) 80) (($ (-1171 (-385 (-885 (-357))))) 48) (($ (-1171 (-385 (-885 (-525))))) 32)) (-3178 (((-1176) $) 120)) (-3022 (((-796) $) 113) (($ (-591 (-308))) 103) (($ (-308)) 97) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 101) (($ (-1171 (-317 (-3036 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3036) (-640)))) 31)))
+(((-59 |#1|) (-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3036) (-640))))))) (-1089)) (T -59))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1171 (-317 (-3036 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3036) (-640)))) (-5 *1 (-59 *3)) (-14 *3 (-1089)))))
+(-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3036) (-640)))))))
+((-3178 (((-1176) $) 53) (((-1176)) 54)) (-3022 (((-796) $) 50)))
+(((-60 |#1|) (-13 (-373) (-10 -7 (-15 -3178 ((-1176))))) (-1089)) (T -60))
+((-3178 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-60 *3)) (-14 *3 (-1089)))))
+(-13 (-373) (-10 -7 (-15 -3178 ((-1176)))))
+((-1251 (((-3 $ "failed") (-1171 (-294 (-357)))) 144) (((-3 $ "failed") (-1171 (-294 (-525)))) 134) (((-3 $ "failed") (-1171 (-885 (-357)))) 164) (((-3 $ "failed") (-1171 (-885 (-525)))) 154) (((-3 $ "failed") (-1171 (-385 (-885 (-357))))) 123) (((-3 $ "failed") (-1171 (-385 (-885 (-525))))) 111)) (-3528 (($ (-1171 (-294 (-357)))) 140) (($ (-1171 (-294 (-525)))) 130) (($ (-1171 (-885 (-357)))) 160) (($ (-1171 (-885 (-525)))) 150) (($ (-1171 (-385 (-885 (-357))))) 119) (($ (-1171 (-385 (-885 (-525))))) 104)) (-3178 (((-1176) $) 97)) (-3022 (((-796) $) 91) (($ (-591 (-308))) 29) (($ (-308)) 34) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 32) (($ (-1171 (-317 (-3036) (-3036 (QUOTE XC)) (-640)))) 89)))
+(((-61 |#1|) (-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036) (-3036 (QUOTE XC)) (-640))))))) (-1089)) (T -61))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1171 (-317 (-3036) (-3036 (QUOTE XC)) (-640)))) (-5 *1 (-61 *3)) (-14 *3 (-1089)))))
+(-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036) (-3036 (QUOTE XC)) (-640)))))))
+((-1251 (((-3 $ "failed") (-294 (-357))) 41) (((-3 $ "failed") (-294 (-525))) 46) (((-3 $ "failed") (-885 (-357))) 50) (((-3 $ "failed") (-885 (-525))) 54) (((-3 $ "failed") (-385 (-885 (-357)))) 36) (((-3 $ "failed") (-385 (-885 (-525)))) 29)) (-3528 (($ (-294 (-357))) 39) (($ (-294 (-525))) 44) (($ (-885 (-357))) 48) (($ (-885 (-525))) 52) (($ (-385 (-885 (-357)))) 34) (($ (-385 (-885 (-525)))) 26)) (-3178 (((-1176) $) 76)) (-3022 (((-796) $) 69) (($ (-591 (-308))) 61) (($ (-308)) 66) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 64) (($ (-317 (-3036 (QUOTE X)) (-3036) (-640))) 25)))
+(((-62 |#1|) (-13 (-374) (-10 -8 (-15 -3022 ($ (-317 (-3036 (QUOTE X)) (-3036) (-640)))))) (-1089)) (T -62))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-317 (-3036 (QUOTE X)) (-3036) (-640))) (-5 *1 (-62 *3)) (-14 *3 (-1089)))))
+(-13 (-374) (-10 -8 (-15 -3022 ($ (-317 (-3036 (QUOTE X)) (-3036) (-640))))))
+((-1251 (((-3 $ "failed") (-631 (-294 (-357)))) 109) (((-3 $ "failed") (-631 (-294 (-525)))) 97) (((-3 $ "failed") (-631 (-885 (-357)))) 131) (((-3 $ "failed") (-631 (-885 (-525)))) 120) (((-3 $ "failed") (-631 (-385 (-885 (-357))))) 85) (((-3 $ "failed") (-631 (-385 (-885 (-525))))) 71)) (-3528 (($ (-631 (-294 (-357)))) 105) (($ (-631 (-294 (-525)))) 93) (($ (-631 (-885 (-357)))) 127) (($ (-631 (-885 (-525)))) 116) (($ (-631 (-385 (-885 (-357))))) 81) (($ (-631 (-385 (-885 (-525))))) 64)) (-3178 (((-1176) $) 139)) (-3022 (((-796) $) 133) (($ (-591 (-308))) 28) (($ (-308)) 33) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 31) (($ (-631 (-317 (-3036) (-3036 (QUOTE X) (QUOTE HESS)) (-640)))) 54)))
+(((-63 |#1|) (-13 (-362) (-10 -8 (-15 -3022 ($ (-631 (-317 (-3036) (-3036 (QUOTE X) (QUOTE HESS)) (-640))))))) (-1089)) (T -63))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-631 (-317 (-3036) (-3036 (QUOTE X) (QUOTE HESS)) (-640)))) (-5 *1 (-63 *3)) (-14 *3 (-1089)))))
+(-13 (-362) (-10 -8 (-15 -3022 ($ (-631 (-317 (-3036) (-3036 (QUOTE X) (QUOTE HESS)) (-640)))))))
+((-1251 (((-3 $ "failed") (-294 (-357))) 59) (((-3 $ "failed") (-294 (-525))) 64) (((-3 $ "failed") (-885 (-357))) 68) (((-3 $ "failed") (-885 (-525))) 72) (((-3 $ "failed") (-385 (-885 (-357)))) 54) (((-3 $ "failed") (-385 (-885 (-525)))) 47)) (-3528 (($ (-294 (-357))) 57) (($ (-294 (-525))) 62) (($ (-885 (-357))) 66) (($ (-885 (-525))) 70) (($ (-385 (-885 (-357)))) 52) (($ (-385 (-885 (-525)))) 44)) (-3178 (((-1176) $) 81)) (-3022 (((-796) $) 75) (($ (-591 (-308))) 28) (($ (-308)) 33) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 31) (($ (-317 (-3036) (-3036 (QUOTE XC)) (-640))) 39)))
+(((-64 |#1|) (-13 (-374) (-10 -8 (-15 -3022 ($ (-317 (-3036) (-3036 (QUOTE XC)) (-640)))))) (-1089)) (T -64))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-317 (-3036) (-3036 (QUOTE XC)) (-640))) (-5 *1 (-64 *3)) (-14 *3 (-1089)))))
+(-13 (-374) (-10 -8 (-15 -3022 ($ (-317 (-3036) (-3036 (QUOTE XC)) (-640))))))
+((-3178 (((-1176) $) 63)) (-3022 (((-796) $) 57) (($ (-631 (-640))) 49) (($ (-591 (-308))) 48) (($ (-308)) 55) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 53)))
+(((-65 |#1|) (-361) (-1089)) (T -65))
+NIL
+(-361)
+((-3178 (((-1176) $) 64)) (-3022 (((-796) $) 58) (($ (-631 (-640))) 50) (($ (-591 (-308))) 49) (($ (-308)) 52) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 55)))
+(((-66 |#1|) (-361) (-1089)) (T -66))
+NIL
+(-361)
+((-3178 (((-1176) $) NIL) (((-1176)) 32)) (-3022 (((-796) $) NIL)))
+(((-67 |#1|) (-13 (-373) (-10 -7 (-15 -3178 ((-1176))))) (-1089)) (T -67))
+((-3178 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-67 *3)) (-14 *3 (-1089)))))
+(-13 (-373) (-10 -7 (-15 -3178 ((-1176)))))
+((-3178 (((-1176) $) 73)) (-3022 (((-796) $) 67) (($ (-631 (-640))) 59) (($ (-591 (-308))) 61) (($ (-308)) 64) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 58)))
+(((-68 |#1|) (-361) (-1089)) (T -68))
+NIL
+(-361)
+((-1251 (((-3 $ "failed") (-1171 (-294 (-357)))) 103) (((-3 $ "failed") (-1171 (-294 (-525)))) 92) (((-3 $ "failed") (-1171 (-885 (-357)))) 123) (((-3 $ "failed") (-1171 (-885 (-525)))) 113) (((-3 $ "failed") (-1171 (-385 (-885 (-357))))) 81) (((-3 $ "failed") (-1171 (-385 (-885 (-525))))) 68)) (-3528 (($ (-1171 (-294 (-357)))) 99) (($ (-1171 (-294 (-525)))) 88) (($ (-1171 (-885 (-357)))) 119) (($ (-1171 (-885 (-525)))) 109) (($ (-1171 (-385 (-885 (-357))))) 77) (($ (-1171 (-385 (-885 (-525))))) 61)) (-3178 (((-1176) $) 136)) (-3022 (((-796) $) 130) (($ (-591 (-308))) 125) (($ (-308)) 128) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 53) (($ (-1171 (-317 (-3036 (QUOTE X)) (-3036 (QUOTE -2424)) (-640)))) 54)))
+(((-69 |#1|) (-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036 (QUOTE X)) (-3036 (QUOTE -2424)) (-640))))))) (-1089)) (T -69))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1171 (-317 (-3036 (QUOTE X)) (-3036 (QUOTE -2424)) (-640)))) (-5 *1 (-69 *3)) (-14 *3 (-1089)))))
+(-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036 (QUOTE X)) (-3036 (QUOTE -2424)) (-640)))))))
+((-3178 (((-1176) $) 32) (((-1176)) 31)) (-3022 (((-796) $) 35)))
+(((-70 |#1|) (-13 (-373) (-10 -7 (-15 -3178 ((-1176))))) (-1089)) (T -70))
+((-3178 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-70 *3)) (-14 *3 (-1089)))))
+(-13 (-373) (-10 -7 (-15 -3178 ((-1176)))))
+((-3178 (((-1176) $) 63)) (-3022 (((-796) $) 57) (($ (-631 (-640))) 49) (($ (-591 (-308))) 51) (($ (-308)) 54) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 48)))
+(((-71 |#1|) (-361) (-1089)) (T -71))
+NIL
+(-361)
+((-1251 (((-3 $ "failed") (-1171 (-294 (-357)))) 125) (((-3 $ "failed") (-1171 (-294 (-525)))) 115) (((-3 $ "failed") (-1171 (-885 (-357)))) 145) (((-3 $ "failed") (-1171 (-885 (-525)))) 135) (((-3 $ "failed") (-1171 (-385 (-885 (-357))))) 105) (((-3 $ "failed") (-1171 (-385 (-885 (-525))))) 93)) (-3528 (($ (-1171 (-294 (-357)))) 121) (($ (-1171 (-294 (-525)))) 111) (($ (-1171 (-885 (-357)))) 141) (($ (-1171 (-885 (-525)))) 131) (($ (-1171 (-385 (-885 (-357))))) 101) (($ (-1171 (-385 (-885 (-525))))) 86)) (-3178 (((-1176) $) 78)) (-3022 (((-796) $) 27) (($ (-591 (-308))) 68) (($ (-308)) 64) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 71) (($ (-1171 (-317 (-3036) (-3036 (QUOTE X)) (-640)))) 65)))
+(((-72 |#1|) (-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036) (-3036 (QUOTE X)) (-640))))))) (-1089)) (T -72))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1171 (-317 (-3036) (-3036 (QUOTE X)) (-640)))) (-5 *1 (-72 *3)) (-14 *3 (-1089)))))
+(-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036) (-3036 (QUOTE X)) (-640)))))))
+((-1251 (((-3 $ "failed") (-1171 (-294 (-357)))) 130) (((-3 $ "failed") (-1171 (-294 (-525)))) 119) (((-3 $ "failed") (-1171 (-885 (-357)))) 150) (((-3 $ "failed") (-1171 (-885 (-525)))) 140) (((-3 $ "failed") (-1171 (-385 (-885 (-357))))) 108) (((-3 $ "failed") (-1171 (-385 (-885 (-525))))) 95)) (-3528 (($ (-1171 (-294 (-357)))) 126) (($ (-1171 (-294 (-525)))) 115) (($ (-1171 (-885 (-357)))) 146) (($ (-1171 (-885 (-525)))) 136) (($ (-1171 (-385 (-885 (-357))))) 104) (($ (-1171 (-385 (-885 (-525))))) 88)) (-3178 (((-1176) $) 79)) (-3022 (((-796) $) 71) (($ (-591 (-308))) NIL) (($ (-308)) NIL) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) NIL) (($ (-1171 (-317 (-3036 (QUOTE X) (QUOTE EPS)) (-3036 (QUOTE -2424)) (-640)))) 66)))
+(((-73 |#1| |#2| |#3|) (-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036 (QUOTE X) (QUOTE EPS)) (-3036 (QUOTE -2424)) (-640))))))) (-1089) (-1089) (-1089)) (T -73))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1171 (-317 (-3036 (QUOTE X) (QUOTE EPS)) (-3036 (QUOTE -2424)) (-640)))) (-5 *1 (-73 *3 *4 *5)) (-14 *3 (-1089)) (-14 *4 (-1089)) (-14 *5 (-1089)))))
+(-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036 (QUOTE X) (QUOTE EPS)) (-3036 (QUOTE -2424)) (-640)))))))
+((-1251 (((-3 $ "failed") (-1171 (-294 (-357)))) 134) (((-3 $ "failed") (-1171 (-294 (-525)))) 123) (((-3 $ "failed") (-1171 (-885 (-357)))) 154) (((-3 $ "failed") (-1171 (-885 (-525)))) 144) (((-3 $ "failed") (-1171 (-385 (-885 (-357))))) 112) (((-3 $ "failed") (-1171 (-385 (-885 (-525))))) 99)) (-3528 (($ (-1171 (-294 (-357)))) 130) (($ (-1171 (-294 (-525)))) 119) (($ (-1171 (-885 (-357)))) 150) (($ (-1171 (-885 (-525)))) 140) (($ (-1171 (-385 (-885 (-357))))) 108) (($ (-1171 (-385 (-885 (-525))))) 92)) (-3178 (((-1176) $) 83)) (-3022 (((-796) $) 75) (($ (-591 (-308))) NIL) (($ (-308)) NIL) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) NIL) (($ (-1171 (-317 (-3036 (QUOTE EPS)) (-3036 (QUOTE YA) (QUOTE YB)) (-640)))) 70)))
+(((-74 |#1| |#2| |#3|) (-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036 (QUOTE EPS)) (-3036 (QUOTE YA) (QUOTE YB)) (-640))))))) (-1089) (-1089) (-1089)) (T -74))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1171 (-317 (-3036 (QUOTE EPS)) (-3036 (QUOTE YA) (QUOTE YB)) (-640)))) (-5 *1 (-74 *3 *4 *5)) (-14 *3 (-1089)) (-14 *4 (-1089)) (-14 *5 (-1089)))))
+(-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036 (QUOTE EPS)) (-3036 (QUOTE YA) (QUOTE YB)) (-640)))))))
+((-1251 (((-3 $ "failed") (-294 (-357))) 82) (((-3 $ "failed") (-294 (-525))) 87) (((-3 $ "failed") (-885 (-357))) 91) (((-3 $ "failed") (-885 (-525))) 95) (((-3 $ "failed") (-385 (-885 (-357)))) 77) (((-3 $ "failed") (-385 (-885 (-525)))) 70)) (-3528 (($ (-294 (-357))) 80) (($ (-294 (-525))) 85) (($ (-885 (-357))) 89) (($ (-885 (-525))) 93) (($ (-385 (-885 (-357)))) 75) (($ (-385 (-885 (-525)))) 67)) (-3178 (((-1176) $) 62)) (-3022 (((-796) $) 50) (($ (-591 (-308))) 46) (($ (-308)) 56) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 54) (($ (-317 (-3036) (-3036 (QUOTE X)) (-640))) 47)))
+(((-75 |#1|) (-13 (-374) (-10 -8 (-15 -3022 ($ (-317 (-3036) (-3036 (QUOTE X)) (-640)))))) (-1089)) (T -75))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-317 (-3036) (-3036 (QUOTE X)) (-640))) (-5 *1 (-75 *3)) (-14 *3 (-1089)))))
+(-13 (-374) (-10 -8 (-15 -3022 ($ (-317 (-3036) (-3036 (QUOTE X)) (-640))))))
+((-1251 (((-3 $ "failed") (-294 (-357))) 46) (((-3 $ "failed") (-294 (-525))) 51) (((-3 $ "failed") (-885 (-357))) 55) (((-3 $ "failed") (-885 (-525))) 59) (((-3 $ "failed") (-385 (-885 (-357)))) 41) (((-3 $ "failed") (-385 (-885 (-525)))) 34)) (-3528 (($ (-294 (-357))) 44) (($ (-294 (-525))) 49) (($ (-885 (-357))) 53) (($ (-885 (-525))) 57) (($ (-385 (-885 (-357)))) 39) (($ (-385 (-885 (-525)))) 31)) (-3178 (((-1176) $) 80)) (-3022 (((-796) $) 74) (($ (-591 (-308))) 66) (($ (-308)) 71) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 69) (($ (-317 (-3036) (-3036 (QUOTE X)) (-640))) 30)))
+(((-76 |#1|) (-13 (-374) (-10 -8 (-15 -3022 ($ (-317 (-3036) (-3036 (QUOTE X)) (-640)))))) (-1089)) (T -76))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-317 (-3036) (-3036 (QUOTE X)) (-640))) (-5 *1 (-76 *3)) (-14 *3 (-1089)))))
+(-13 (-374) (-10 -8 (-15 -3022 ($ (-317 (-3036) (-3036 (QUOTE X)) (-640))))))
+((-1251 (((-3 $ "failed") (-1171 (-294 (-357)))) 89) (((-3 $ "failed") (-1171 (-294 (-525)))) 78) (((-3 $ "failed") (-1171 (-885 (-357)))) 109) (((-3 $ "failed") (-1171 (-885 (-525)))) 99) (((-3 $ "failed") (-1171 (-385 (-885 (-357))))) 67) (((-3 $ "failed") (-1171 (-385 (-885 (-525))))) 54)) (-3528 (($ (-1171 (-294 (-357)))) 85) (($ (-1171 (-294 (-525)))) 74) (($ (-1171 (-885 (-357)))) 105) (($ (-1171 (-885 (-525)))) 95) (($ (-1171 (-385 (-885 (-357))))) 63) (($ (-1171 (-385 (-885 (-525))))) 47)) (-3178 (((-1176) $) 125)) (-3022 (((-796) $) 119) (($ (-591 (-308))) 112) (($ (-308)) 37) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 115) (($ (-1171 (-317 (-3036) (-3036 (QUOTE XC)) (-640)))) 38)))
+(((-77 |#1|) (-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036) (-3036 (QUOTE XC)) (-640))))))) (-1089)) (T -77))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1171 (-317 (-3036) (-3036 (QUOTE XC)) (-640)))) (-5 *1 (-77 *3)) (-14 *3 (-1089)))))
+(-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036) (-3036 (QUOTE XC)) (-640)))))))
+((-1251 (((-3 $ "failed") (-1171 (-294 (-357)))) 142) (((-3 $ "failed") (-1171 (-294 (-525)))) 132) (((-3 $ "failed") (-1171 (-885 (-357)))) 162) (((-3 $ "failed") (-1171 (-885 (-525)))) 152) (((-3 $ "failed") (-1171 (-385 (-885 (-357))))) 122) (((-3 $ "failed") (-1171 (-385 (-885 (-525))))) 110)) (-3528 (($ (-1171 (-294 (-357)))) 138) (($ (-1171 (-294 (-525)))) 128) (($ (-1171 (-885 (-357)))) 158) (($ (-1171 (-885 (-525)))) 148) (($ (-1171 (-385 (-885 (-357))))) 118) (($ (-1171 (-385 (-885 (-525))))) 103)) (-3178 (((-1176) $) 96)) (-3022 (((-796) $) 90) (($ (-591 (-308))) 81) (($ (-308)) 88) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 86) (($ (-1171 (-317 (-3036) (-3036 (QUOTE X)) (-640)))) 82)))
+(((-78 |#1|) (-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036) (-3036 (QUOTE X)) (-640))))))) (-1089)) (T -78))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1171 (-317 (-3036) (-3036 (QUOTE X)) (-640)))) (-5 *1 (-78 *3)) (-14 *3 (-1089)))))
+(-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036) (-3036 (QUOTE X)) (-640)))))))
+((-1251 (((-3 $ "failed") (-1171 (-294 (-357)))) 78) (((-3 $ "failed") (-1171 (-294 (-525)))) 67) (((-3 $ "failed") (-1171 (-885 (-357)))) 98) (((-3 $ "failed") (-1171 (-885 (-525)))) 88) (((-3 $ "failed") (-1171 (-385 (-885 (-357))))) 56) (((-3 $ "failed") (-1171 (-385 (-885 (-525))))) 43)) (-3528 (($ (-1171 (-294 (-357)))) 74) (($ (-1171 (-294 (-525)))) 63) (($ (-1171 (-885 (-357)))) 94) (($ (-1171 (-885 (-525)))) 84) (($ (-1171 (-385 (-885 (-357))))) 52) (($ (-1171 (-385 (-885 (-525))))) 36)) (-3178 (((-1176) $) 124)) (-3022 (((-796) $) 118) (($ (-591 (-308))) 109) (($ (-308)) 115) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 113) (($ (-1171 (-317 (-3036) (-3036 (QUOTE X)) (-640)))) 35)))
+(((-79 |#1|) (-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036) (-3036 (QUOTE X)) (-640))))))) (-1089)) (T -79))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1171 (-317 (-3036) (-3036 (QUOTE X)) (-640)))) (-5 *1 (-79 *3)) (-14 *3 (-1089)))))
+(-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036) (-3036 (QUOTE X)) (-640)))))))
+((-1251 (((-3 $ "failed") (-1171 (-294 (-357)))) 95) (((-3 $ "failed") (-1171 (-294 (-525)))) 84) (((-3 $ "failed") (-1171 (-885 (-357)))) 115) (((-3 $ "failed") (-1171 (-885 (-525)))) 105) (((-3 $ "failed") (-1171 (-385 (-885 (-357))))) 73) (((-3 $ "failed") (-1171 (-385 (-885 (-525))))) 60)) (-3528 (($ (-1171 (-294 (-357)))) 91) (($ (-1171 (-294 (-525)))) 80) (($ (-1171 (-885 (-357)))) 111) (($ (-1171 (-885 (-525)))) 101) (($ (-1171 (-385 (-885 (-357))))) 69) (($ (-1171 (-385 (-885 (-525))))) 53)) (-3178 (((-1176) $) 45)) (-3022 (((-796) $) 39) (($ (-591 (-308))) 29) (($ (-308)) 32) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 35) (($ (-1171 (-317 (-3036 (QUOTE X) (QUOTE -2424)) (-3036) (-640)))) 30)))
+(((-80 |#1|) (-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036 (QUOTE X) (QUOTE -2424)) (-3036) (-640))))))) (-1089)) (T -80))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1171 (-317 (-3036 (QUOTE X) (QUOTE -2424)) (-3036) (-640)))) (-5 *1 (-80 *3)) (-14 *3 (-1089)))))
+(-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036 (QUOTE X) (QUOTE -2424)) (-3036) (-640)))))))
+((-1251 (((-3 $ "failed") (-631 (-294 (-357)))) 115) (((-3 $ "failed") (-631 (-294 (-525)))) 104) (((-3 $ "failed") (-631 (-885 (-357)))) 137) (((-3 $ "failed") (-631 (-885 (-525)))) 126) (((-3 $ "failed") (-631 (-385 (-885 (-357))))) 93) (((-3 $ "failed") (-631 (-385 (-885 (-525))))) 80)) (-3528 (($ (-631 (-294 (-357)))) 111) (($ (-631 (-294 (-525)))) 100) (($ (-631 (-885 (-357)))) 133) (($ (-631 (-885 (-525)))) 122) (($ (-631 (-385 (-885 (-357))))) 89) (($ (-631 (-385 (-885 (-525))))) 73)) (-3178 (((-1176) $) 63)) (-3022 (((-796) $) 50) (($ (-591 (-308))) 57) (($ (-308)) 46) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 55) (($ (-631 (-317 (-3036 (QUOTE X) (QUOTE -2424)) (-3036) (-640)))) 47)))
+(((-81 |#1|) (-13 (-362) (-10 -8 (-15 -3022 ($ (-631 (-317 (-3036 (QUOTE X) (QUOTE -2424)) (-3036) (-640))))))) (-1089)) (T -81))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-631 (-317 (-3036 (QUOTE X) (QUOTE -2424)) (-3036) (-640)))) (-5 *1 (-81 *3)) (-14 *3 (-1089)))))
+(-13 (-362) (-10 -8 (-15 -3022 ($ (-631 (-317 (-3036 (QUOTE X) (QUOTE -2424)) (-3036) (-640)))))))
+((-1251 (((-3 $ "failed") (-631 (-294 (-357)))) 112) (((-3 $ "failed") (-631 (-294 (-525)))) 100) (((-3 $ "failed") (-631 (-885 (-357)))) 134) (((-3 $ "failed") (-631 (-885 (-525)))) 123) (((-3 $ "failed") (-631 (-385 (-885 (-357))))) 88) (((-3 $ "failed") (-631 (-385 (-885 (-525))))) 74)) (-3528 (($ (-631 (-294 (-357)))) 108) (($ (-631 (-294 (-525)))) 96) (($ (-631 (-885 (-357)))) 130) (($ (-631 (-885 (-525)))) 119) (($ (-631 (-385 (-885 (-357))))) 84) (($ (-631 (-385 (-885 (-525))))) 67)) (-3178 (((-1176) $) 59)) (-3022 (((-796) $) 53) (($ (-591 (-308))) 47) (($ (-308)) 50) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 44) (($ (-631 (-317 (-3036 (QUOTE X)) (-3036) (-640)))) 45)))
+(((-82 |#1|) (-13 (-362) (-10 -8 (-15 -3022 ($ (-631 (-317 (-3036 (QUOTE X)) (-3036) (-640))))))) (-1089)) (T -82))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-631 (-317 (-3036 (QUOTE X)) (-3036) (-640)))) (-5 *1 (-82 *3)) (-14 *3 (-1089)))))
+(-13 (-362) (-10 -8 (-15 -3022 ($ (-631 (-317 (-3036 (QUOTE X)) (-3036) (-640)))))))
+((-1251 (((-3 $ "failed") (-1171 (-294 (-357)))) 104) (((-3 $ "failed") (-1171 (-294 (-525)))) 93) (((-3 $ "failed") (-1171 (-885 (-357)))) 124) (((-3 $ "failed") (-1171 (-885 (-525)))) 114) (((-3 $ "failed") (-1171 (-385 (-885 (-357))))) 82) (((-3 $ "failed") (-1171 (-385 (-885 (-525))))) 69)) (-3528 (($ (-1171 (-294 (-357)))) 100) (($ (-1171 (-294 (-525)))) 89) (($ (-1171 (-885 (-357)))) 120) (($ (-1171 (-885 (-525)))) 110) (($ (-1171 (-385 (-885 (-357))))) 78) (($ (-1171 (-385 (-885 (-525))))) 62)) (-3178 (((-1176) $) 46)) (-3022 (((-796) $) 40) (($ (-591 (-308))) 49) (($ (-308)) 36) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 52) (($ (-1171 (-317 (-3036 (QUOTE X)) (-3036) (-640)))) 37)))
+(((-83 |#1|) (-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036 (QUOTE X)) (-3036) (-640))))))) (-1089)) (T -83))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1171 (-317 (-3036 (QUOTE X)) (-3036) (-640)))) (-5 *1 (-83 *3)) (-14 *3 (-1089)))))
+(-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036 (QUOTE X)) (-3036) (-640)))))))
+((-1251 (((-3 $ "failed") (-1171 (-294 (-357)))) 79) (((-3 $ "failed") (-1171 (-294 (-525)))) 68) (((-3 $ "failed") (-1171 (-885 (-357)))) 99) (((-3 $ "failed") (-1171 (-885 (-525)))) 89) (((-3 $ "failed") (-1171 (-385 (-885 (-357))))) 57) (((-3 $ "failed") (-1171 (-385 (-885 (-525))))) 44)) (-3528 (($ (-1171 (-294 (-357)))) 75) (($ (-1171 (-294 (-525)))) 64) (($ (-1171 (-885 (-357)))) 95) (($ (-1171 (-885 (-525)))) 85) (($ (-1171 (-385 (-885 (-357))))) 53) (($ (-1171 (-385 (-885 (-525))))) 37)) (-3178 (((-1176) $) 125)) (-3022 (((-796) $) 119) (($ (-591 (-308))) 110) (($ (-308)) 116) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 114) (($ (-1171 (-317 (-3036 (QUOTE X)) (-3036 (QUOTE -2424)) (-640)))) 36)))
+(((-84 |#1|) (-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036 (QUOTE X)) (-3036 (QUOTE -2424)) (-640))))))) (-1089)) (T -84))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1171 (-317 (-3036 (QUOTE X)) (-3036 (QUOTE -2424)) (-640)))) (-5 *1 (-84 *3)) (-14 *3 (-1089)))))
+(-13 (-418) (-10 -8 (-15 -3022 ($ (-1171 (-317 (-3036 (QUOTE X)) (-3036 (QUOTE -2424)) (-640)))))))
+((-1251 (((-3 $ "failed") (-631 (-294 (-357)))) 113) (((-3 $ "failed") (-631 (-294 (-525)))) 101) (((-3 $ "failed") (-631 (-885 (-357)))) 135) (((-3 $ "failed") (-631 (-885 (-525)))) 124) (((-3 $ "failed") (-631 (-385 (-885 (-357))))) 89) (((-3 $ "failed") (-631 (-385 (-885 (-525))))) 75)) (-3528 (($ (-631 (-294 (-357)))) 109) (($ (-631 (-294 (-525)))) 97) (($ (-631 (-885 (-357)))) 131) (($ (-631 (-885 (-525)))) 120) (($ (-631 (-385 (-885 (-357))))) 85) (($ (-631 (-385 (-885 (-525))))) 68)) (-3178 (((-1176) $) 59)) (-3022 (((-796) $) 53) (($ (-591 (-308))) 43) (($ (-308)) 50) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 48) (($ (-631 (-317 (-3036 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3036) (-640)))) 44)))
+(((-85 |#1|) (-13 (-362) (-10 -8 (-15 -3022 ($ (-631 (-317 (-3036 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3036) (-640))))))) (-1089)) (T -85))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-631 (-317 (-3036 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3036) (-640)))) (-5 *1 (-85 *3)) (-14 *3 (-1089)))))
+(-13 (-362) (-10 -8 (-15 -3022 ($ (-631 (-317 (-3036 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3036) (-640)))))))
+((-3178 (((-1176) $) 44)) (-3022 (((-796) $) 38) (($ (-1171 (-640))) 92) (($ (-591 (-308))) 30) (($ (-308)) 35) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 33)))
+(((-86 |#1|) (-417) (-1089)) (T -86))
+NIL
+(-417)
+((-1251 (((-3 $ "failed") (-294 (-357))) 47) (((-3 $ "failed") (-294 (-525))) 52) (((-3 $ "failed") (-885 (-357))) 56) (((-3 $ "failed") (-885 (-525))) 60) (((-3 $ "failed") (-385 (-885 (-357)))) 42) (((-3 $ "failed") (-385 (-885 (-525)))) 35)) (-3528 (($ (-294 (-357))) 45) (($ (-294 (-525))) 50) (($ (-885 (-357))) 54) (($ (-885 (-525))) 58) (($ (-385 (-885 (-357)))) 40) (($ (-385 (-885 (-525)))) 32)) (-3178 (((-1176) $) 90)) (-3022 (((-796) $) 84) (($ (-591 (-308))) 78) (($ (-308)) 81) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 76) (($ (-317 (-3036 (QUOTE X)) (-3036 (QUOTE -2424)) (-640))) 31)))
+(((-87 |#1|) (-13 (-374) (-10 -8 (-15 -3022 ($ (-317 (-3036 (QUOTE X)) (-3036 (QUOTE -2424)) (-640)))))) (-1089)) (T -87))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-317 (-3036 (QUOTE X)) (-3036 (QUOTE -2424)) (-640))) (-5 *1 (-87 *3)) (-14 *3 (-1089)))))
+(-13 (-374) (-10 -8 (-15 -3022 ($ (-317 (-3036 (QUOTE X)) (-3036 (QUOTE -2424)) (-640))))))
+((-3116 (((-1171 (-631 |#1|)) (-631 |#1|)) 54)) (-2261 (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 (-591 (-854))))) |#2| (-854)) 44)) (-3808 (((-2 (|:| |minor| (-591 (-854))) (|:| -1317 |#2|) (|:| |minors| (-591 (-591 (-854)))) (|:| |ops| (-591 |#2|))) |#2| (-854)) 65 (|has| |#1| (-341)))))
+(((-88 |#1| |#2|) (-10 -7 (-15 -2261 ((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 (-591 (-854))))) |#2| (-854))) (-15 -3116 ((-1171 (-631 |#1|)) (-631 |#1|))) (IF (|has| |#1| (-341)) (-15 -3808 ((-2 (|:| |minor| (-591 (-854))) (|:| -1317 |#2|) (|:| |minors| (-591 (-591 (-854)))) (|:| |ops| (-591 |#2|))) |#2| (-854))) |%noBranch|)) (-517) (-601 |#1|)) (T -88))
+((-3808 (*1 *2 *3 *4) (-12 (-4 *5 (-341)) (-4 *5 (-517)) (-5 *2 (-2 (|:| |minor| (-591 (-854))) (|:| -1317 *3) (|:| |minors| (-591 (-591 (-854)))) (|:| |ops| (-591 *3)))) (-5 *1 (-88 *5 *3)) (-5 *4 (-854)) (-4 *3 (-601 *5)))) (-3116 (*1 *2 *3) (-12 (-4 *4 (-517)) (-5 *2 (-1171 (-631 *4))) (-5 *1 (-88 *4 *5)) (-5 *3 (-631 *4)) (-4 *5 (-601 *4)))) (-2261 (*1 *2 *3 *4) (-12 (-4 *5 (-517)) (-5 *2 (-2 (|:| -4057 (-631 *5)) (|:| |vec| (-1171 (-591 (-854)))))) (-5 *1 (-88 *5 *3)) (-5 *4 (-854)) (-4 *3 (-601 *5)))))
+(-10 -7 (-15 -2261 ((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 (-591 (-854))))) |#2| (-854))) (-15 -3116 ((-1171 (-631 |#1|)) (-631 |#1|))) (IF (|has| |#1| (-341)) (-15 -3808 ((-2 (|:| |minor| (-591 (-854))) (|:| -1317 |#2|) (|:| |minors| (-591 (-591 (-854)))) (|:| |ops| (-591 |#2|))) |#2| (-854))) |%noBranch|))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-1211 ((|#1| $) 35)) (-3891 (((-108) $ (-712)) NIL)) (-3798 (($) NIL T CONST)) (-1275 ((|#1| |#1| $) 30)) (-1764 ((|#1| $) 28)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-1464 ((|#1| $) NIL)) (-2470 (($ |#1| $) 31)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-3631 ((|#1| $) 29)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) 16)) (-3209 (($) 39)) (-1326 (((-712) $) 26)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) 15)) (-3022 (((-796) $) 25 (|has| |#1| (-565 (-796))))) (-1870 (($ (-591 |#1|)) NIL)) (-2169 (($ (-591 |#1|)) 37)) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 13 (|has| |#1| (-1018)))) (-4045 (((-712) $) 10 (|has| $ (-6 -4250)))))
+(((-89 |#1|) (-13 (-1037 |#1|) (-10 -8 (-15 -2169 ($ (-591 |#1|))))) (-1018)) (T -89))
+((-2169 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-89 *3)))))
+(-13 (-1037 |#1|) (-10 -8 (-15 -2169 ($ (-591 |#1|)))))
+((-1400 (($ $) 10)) (-1415 (($ $) 12)))
+(((-90 |#1|) (-10 -8 (-15 -1415 (|#1| |#1|)) (-15 -1400 (|#1| |#1|))) (-91)) (T -90))
+NIL
+(-10 -8 (-15 -1415 (|#1| |#1|)) (-15 -1400 (|#1| |#1|)))
+((-1371 (($ $) 11)) (-1346 (($ $) 10)) (-1400 (($ $) 9)) (-1415 (($ $) 8)) (-1385 (($ $) 7)) (-1358 (($ $) 6)))
+(((-91) (-131)) (T -91))
+((-1371 (*1 *1 *1) (-4 *1 (-91))) (-1346 (*1 *1 *1) (-4 *1 (-91))) (-1400 (*1 *1 *1) (-4 *1 (-91))) (-1415 (*1 *1 *1) (-4 *1 (-91))) (-1385 (*1 *1 *1) (-4 *1 (-91))) (-1358 (*1 *1 *1) (-4 *1 (-91))))
+(-13 (-10 -8 (-15 -1358 ($ $)) (-15 -1385 ($ $)) (-15 -1415 ($ $)) (-15 -1400 ($ $)) (-15 -1346 ($ $)) (-15 -1371 ($ $))))
+((-3008 (((-108) $ $) NIL)) (-1915 (((-357) (-1072) (-357)) 42) (((-357) (-1072) (-1072) (-357)) 41)) (-1610 (((-357) (-357)) 33)) (-2584 (((-1176)) 36)) (-2339 (((-1072) $) NIL)) (-3221 (((-357) (-1072) (-1072)) 46) (((-357) (-1072)) 48)) (-2047 (((-1036) $) NIL)) (-1379 (((-357) (-1072) (-1072)) 47)) (-1625 (((-357) (-1072) (-1072)) 49) (((-357) (-1072)) 50)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-92) (-13 (-1018) (-10 -7 (-15 -3221 ((-357) (-1072) (-1072))) (-15 -3221 ((-357) (-1072))) (-15 -1625 ((-357) (-1072) (-1072))) (-15 -1625 ((-357) (-1072))) (-15 -1379 ((-357) (-1072) (-1072))) (-15 -2584 ((-1176))) (-15 -1610 ((-357) (-357))) (-15 -1915 ((-357) (-1072) (-357))) (-15 -1915 ((-357) (-1072) (-1072) (-357))) (-6 -4250)))) (T -92))
+((-3221 (*1 *2 *3 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-357)) (-5 *1 (-92)))) (-3221 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-357)) (-5 *1 (-92)))) (-1625 (*1 *2 *3 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-357)) (-5 *1 (-92)))) (-1625 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-357)) (-5 *1 (-92)))) (-1379 (*1 *2 *3 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-357)) (-5 *1 (-92)))) (-2584 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-92)))) (-1610 (*1 *2 *2) (-12 (-5 *2 (-357)) (-5 *1 (-92)))) (-1915 (*1 *2 *3 *2) (-12 (-5 *2 (-357)) (-5 *3 (-1072)) (-5 *1 (-92)))) (-1915 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-357)) (-5 *3 (-1072)) (-5 *1 (-92)))))
+(-13 (-1018) (-10 -7 (-15 -3221 ((-357) (-1072) (-1072))) (-15 -3221 ((-357) (-1072))) (-15 -1625 ((-357) (-1072) (-1072))) (-15 -1625 ((-357) (-1072))) (-15 -1379 ((-357) (-1072) (-1072))) (-15 -2584 ((-1176))) (-15 -1610 ((-357) (-357))) (-15 -1915 ((-357) (-1072) (-357))) (-15 -1915 ((-357) (-1072) (-1072) (-357))) (-6 -4250)))
+NIL
+(((-93) (-131)) (T -93))
+NIL
+(-13 (-10 -7 (-6 -4250) (-6 (-4252 "*")) (-6 -4251) (-6 -4247) (-6 -4245) (-6 -4244) (-6 -4243) (-6 -4248) (-6 -4242) (-6 -4241) (-6 -4240) (-6 -4239) (-6 -4238) (-6 -4246) (-6 -4249) (-6 |NullSquare|) (-6 |JacobiIdentity|) (-6 -4237)))
+((-3008 (((-108) $ $) NIL)) (-3798 (($) NIL T CONST)) (-4163 (((-3 $ "failed") $) NIL)) (-2824 (((-108) $) NIL)) (-2701 (($ (-1 |#1| |#1|)) 25) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 24) (($ (-1 |#1| |#1| (-525))) 22)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 14)) (-2047 (((-1036) $) NIL)) (-3164 ((|#1| $ |#1|) 11)) (-3228 (($ $ $) NIL)) (-3619 (($ $ $) NIL)) (-3022 (((-796) $) 20)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4197 (($) 8 T CONST)) (-4096 (((-108) $ $) 10)) (-4173 (($ $ $) NIL)) (** (($ $ (-854)) 28) (($ $ (-712)) NIL) (($ $ (-525)) 16)) (* (($ $ $) 29)))
+(((-94 |#1|) (-13 (-450) (-265 |#1| |#1|) (-10 -8 (-15 -2701 ($ (-1 |#1| |#1|))) (-15 -2701 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -2701 ($ (-1 |#1| |#1| (-525)))))) (-975)) (T -94))
+((-2701 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-975)) (-5 *1 (-94 *3)))) (-2701 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-975)) (-5 *1 (-94 *3)))) (-2701 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3 (-525))) (-4 *3 (-975)) (-5 *1 (-94 *3)))))
+(-13 (-450) (-265 |#1| |#1|) (-10 -8 (-15 -2701 ($ (-1 |#1| |#1|))) (-15 -2701 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -2701 ($ (-1 |#1| |#1| (-525))))))
+((-3959 (((-396 |#2|) |#2| (-591 |#2|)) 10) (((-396 |#2|) |#2| |#2|) 11)))
+(((-95 |#1| |#2|) (-10 -7 (-15 -3959 ((-396 |#2|) |#2| |#2|)) (-15 -3959 ((-396 |#2|) |#2| (-591 |#2|)))) (-13 (-429) (-138)) (-1147 |#1|)) (T -95))
+((-3959 (*1 *2 *3 *4) (-12 (-5 *4 (-591 *3)) (-4 *3 (-1147 *5)) (-4 *5 (-13 (-429) (-138))) (-5 *2 (-396 *3)) (-5 *1 (-95 *5 *3)))) (-3959 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-429) (-138))) (-5 *2 (-396 *3)) (-5 *1 (-95 *4 *3)) (-4 *3 (-1147 *4)))))
+(-10 -7 (-15 -3959 ((-396 |#2|) |#2| |#2|)) (-15 -3959 ((-396 |#2|) |#2| (-591 |#2|))))
+((-3008 (((-108) $ $) 10)))
+(((-96 |#1|) (-10 -8 (-15 -3008 ((-108) |#1| |#1|))) (-97)) (T -96))
+NIL
+(-10 -8 (-15 -3008 ((-108) |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-4096 (((-108) $ $) 6)))
+(((-97) (-131)) (T -97))
+((-3008 (*1 *2 *1 *1) (-12 (-4 *1 (-97)) (-5 *2 (-108)))) (-4096 (*1 *2 *1 *1) (-12 (-4 *1 (-97)) (-5 *2 (-108)))))
+(-13 (-10 -8 (-15 -4096 ((-108) $ $)) (-15 -3008 ((-108) $ $))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3024 ((|#1| $) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-1780 ((|#1| $ |#1|) 13 (|has| $ (-6 -4251)))) (-4110 (($ $ $) NIL (|has| $ (-6 -4251)))) (-3152 (($ $ $) NIL (|has| $ (-6 -4251)))) (-2573 (($ $ (-591 |#1|)) 15)) (-3186 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4251))) (($ $ "left" $) NIL (|has| $ (-6 -4251))) (($ $ "right" $) NIL (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) NIL (|has| $ (-6 -4251)))) (-3798 (($) NIL T CONST)) (-3400 (($ $) 11)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) NIL)) (-2148 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-2088 (($ $ |#1| $) 17)) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-2116 ((|#1| $ (-1 |#1| |#1| |#1|)) 25) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 30)) (-4149 (($ $ |#1| (-1 |#1| |#1| |#1|)) 31) (($ $ |#1| (-1 (-591 |#1|) |#1| |#1| |#1|)) 35)) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-3388 (($ $) 10)) (-2599 (((-591 |#1|) $) NIL)) (-1203 (((-108) $) 12)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) 9)) (-3209 (($) 16)) (-3164 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3505 (((-525) $ $) NIL)) (-2237 (((-108) $) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) NIL)) (-1632 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-1789 (($ (-712) |#1|) 19)) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-98 |#1|) (-13 (-121 |#1|) (-10 -8 (-6 -4250) (-6 -4251) (-15 -1789 ($ (-712) |#1|)) (-15 -2573 ($ $ (-591 |#1|))) (-15 -2116 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2116 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -4149 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -4149 ($ $ |#1| (-1 (-591 |#1|) |#1| |#1| |#1|))))) (-1018)) (T -98))
+((-1789 (*1 *1 *2 *3) (-12 (-5 *2 (-712)) (-5 *1 (-98 *3)) (-4 *3 (-1018)))) (-2573 (*1 *1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-98 *3)))) (-2116 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-98 *2)) (-4 *2 (-1018)))) (-2116 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-98 *3)))) (-4149 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1018)) (-5 *1 (-98 *2)))) (-4149 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 (-591 *2) *2 *2 *2)) (-4 *2 (-1018)) (-5 *1 (-98 *2)))))
+(-13 (-121 |#1|) (-10 -8 (-6 -4250) (-6 -4251) (-15 -1789 ($ (-712) |#1|)) (-15 -2573 ($ $ (-591 |#1|))) (-15 -2116 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2116 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -4149 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -4149 ($ $ |#1| (-1 (-591 |#1|) |#1| |#1| |#1|)))))
+((-4023 ((|#3| |#2| |#2|) 29)) (-1981 ((|#1| |#2| |#2|) 37 (|has| |#1| (-6 (-4252 "*"))))) (-2355 ((|#3| |#2| |#2|) 30)) (-2875 ((|#1| |#2|) 41 (|has| |#1| (-6 (-4252 "*"))))))
+(((-99 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4023 (|#3| |#2| |#2|)) (-15 -2355 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4252 "*"))) (PROGN (-15 -1981 (|#1| |#2| |#2|)) (-15 -2875 (|#1| |#2|))) |%noBranch|)) (-975) (-1147 |#1|) (-629 |#1| |#4| |#5|) (-351 |#1|) (-351 |#1|)) (T -99))
+((-2875 (*1 *2 *3) (-12 (|has| *2 (-6 (-4252 "*"))) (-4 *5 (-351 *2)) (-4 *6 (-351 *2)) (-4 *2 (-975)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1147 *2)) (-4 *4 (-629 *2 *5 *6)))) (-1981 (*1 *2 *3 *3) (-12 (|has| *2 (-6 (-4252 "*"))) (-4 *5 (-351 *2)) (-4 *6 (-351 *2)) (-4 *2 (-975)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1147 *2)) (-4 *4 (-629 *2 *5 *6)))) (-2355 (*1 *2 *3 *3) (-12 (-4 *4 (-975)) (-4 *2 (-629 *4 *5 *6)) (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1147 *4)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4)))) (-4023 (*1 *2 *3 *3) (-12 (-4 *4 (-975)) (-4 *2 (-629 *4 *5 *6)) (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1147 *4)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4)))))
+(-10 -7 (-15 -4023 (|#3| |#2| |#2|)) (-15 -2355 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4252 "*"))) (PROGN (-15 -1981 (|#1| |#2| |#2|)) (-15 -2875 (|#1| |#2|))) |%noBranch|))
+((-3008 (((-108) $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4162 (((-591 (-1089))) 33)) (-3090 (((-2 (|:| |zeros| (-1070 (-205))) (|:| |ones| (-1070 (-205))) (|:| |singularities| (-1070 (-205)))) (-1089)) 35)) (-4096 (((-108) $ $) NIL)))
+(((-100) (-13 (-1018) (-10 -7 (-15 -4162 ((-591 (-1089)))) (-15 -3090 ((-2 (|:| |zeros| (-1070 (-205))) (|:| |ones| (-1070 (-205))) (|:| |singularities| (-1070 (-205)))) (-1089))) (-6 -4250)))) (T -100))
+((-4162 (*1 *2) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-100)))) (-3090 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-2 (|:| |zeros| (-1070 (-205))) (|:| |ones| (-1070 (-205))) (|:| |singularities| (-1070 (-205))))) (-5 *1 (-100)))))
+(-13 (-1018) (-10 -7 (-15 -4162 ((-591 (-1089)))) (-15 -3090 ((-2 (|:| |zeros| (-1070 (-205))) (|:| |ones| (-1070 (-205))) (|:| |singularities| (-1070 (-205)))) (-1089))) (-6 -4250)))
+((-1870 (($ (-591 |#2|)) 11)))
+(((-101 |#1| |#2|) (-10 -8 (-15 -1870 (|#1| (-591 |#2|)))) (-102 |#2|) (-1125)) (T -101))
+NIL
+(-10 -8 (-15 -1870 (|#1| (-591 |#2|))))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3891 (((-108) $ (-712)) 8)) (-3798 (($) 7 T CONST)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-1464 ((|#1| $) 39)) (-2470 (($ |#1| $) 40)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-3631 ((|#1| $) 41)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-1870 (($ (-591 |#1|)) 42)) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-102 |#1|) (-131) (-1125)) (T -102))
+((-1870 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-4 *1 (-102 *3)))) (-3631 (*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1125)))) (-2470 (*1 *1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1125)))) (-1464 (*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1125)))))
+(-13 (-464 |t#1|) (-10 -8 (-6 -4251) (-15 -1870 ($ (-591 |t#1|))) (-15 -3631 (|t#1| $)) (-15 -2470 ($ |t#1| $)) (-15 -1464 (|t#1| $))))
+(((-33) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1508 (((-525) $) NIL (|has| (-525) (-286)))) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1947 (((-108) $ $) NIL)) (-3329 (((-525) $) NIL (|has| (-525) (-761)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL) (((-3 (-1089) "failed") $) NIL (|has| (-525) (-966 (-1089)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| (-525) (-966 (-525)))) (((-3 (-525) "failed") $) NIL (|has| (-525) (-966 (-525))))) (-3528 (((-525) $) NIL) (((-1089) $) NIL (|has| (-525) (-966 (-1089)))) (((-385 (-525)) $) NIL (|has| (-525) (-966 (-525)))) (((-525) $) NIL (|has| (-525) (-966 (-525))))) (-2129 (($ $ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| (-525) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| (-525) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL) (((-631 (-525)) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) NIL (|has| (-525) (-510)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2134 (((-108) $) NIL (|has| (-525) (-761)))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (|has| (-525) (-819 (-525)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (|has| (-525) (-819 (-357))))) (-2824 (((-108) $) NIL)) (-2368 (($ $) NIL)) (-1738 (((-525) $) NIL)) (-2085 (((-3 $ "failed") $) NIL (|has| (-525) (-1065)))) (-2732 (((-108) $) NIL (|has| (-525) (-761)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3741 (($ $ $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| (-525) (-788)))) (-1340 (($ (-1 (-525) (-525)) $) NIL)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| (-525) (-1065)) CONST)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3093 (($ $) NIL (|has| (-525) (-286))) (((-385 (-525)) $) NIL)) (-2662 (((-525) $) NIL (|has| (-525) (-510)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-4132 (($ $ (-591 (-525)) (-591 (-525))) NIL (|has| (-525) (-288 (-525)))) (($ $ (-525) (-525)) NIL (|has| (-525) (-288 (-525)))) (($ $ (-273 (-525))) NIL (|has| (-525) (-288 (-525)))) (($ $ (-591 (-273 (-525)))) NIL (|has| (-525) (-288 (-525)))) (($ $ (-591 (-1089)) (-591 (-525))) NIL (|has| (-525) (-486 (-1089) (-525)))) (($ $ (-1089) (-525)) NIL (|has| (-525) (-486 (-1089) (-525))))) (-1712 (((-712) $) NIL)) (-3164 (($ $ (-525)) NIL (|has| (-525) (-265 (-525) (-525))))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3266 (($ $) NIL (|has| (-525) (-213))) (($ $ (-712)) NIL (|has| (-525) (-213))) (($ $ (-1089)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1 (-525) (-525)) (-712)) NIL) (($ $ (-1 (-525) (-525))) NIL)) (-2966 (($ $) NIL)) (-1754 (((-525) $) NIL)) (-1408 (((-825 (-525)) $) NIL (|has| (-525) (-566 (-825 (-525))))) (((-825 (-357)) $) NIL (|has| (-525) (-566 (-825 (-357))))) (((-501) $) NIL (|has| (-525) (-566 (-501)))) (((-357) $) NIL (|has| (-525) (-951))) (((-205) $) NIL (|has| (-525) (-951)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| (-525) (-842))))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) 8) (($ (-525)) NIL) (($ (-1089)) NIL (|has| (-525) (-966 (-1089)))) (((-385 (-525)) $) NIL) (((-934 2) $) 10)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| (-525) (-842))) (|has| (-525) (-136))))) (-2128 (((-712)) NIL)) (-3862 (((-525) $) NIL (|has| (-525) (-510)))) (-2344 (($ (-385 (-525))) 9)) (-2495 (((-108) $ $) NIL)) (-1539 (($ $) NIL (|has| (-525) (-761)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $) NIL (|has| (-525) (-213))) (($ $ (-712)) NIL (|has| (-525) (-213))) (($ $ (-1089)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1 (-525) (-525)) (-712)) NIL) (($ $ (-1 (-525) (-525))) NIL)) (-4135 (((-108) $ $) NIL (|has| (-525) (-788)))) (-4119 (((-108) $ $) NIL (|has| (-525) (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| (-525) (-788)))) (-4112 (((-108) $ $) NIL (|has| (-525) (-788)))) (-4173 (($ $ $) NIL) (($ (-525) (-525)) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ (-525) $) NIL) (($ $ (-525)) NIL)))
+(((-103) (-13 (-923 (-525)) (-10 -8 (-15 -3022 ((-385 (-525)) $)) (-15 -3022 ((-934 2) $)) (-15 -3093 ((-385 (-525)) $)) (-15 -2344 ($ (-385 (-525))))))) (T -103))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-103)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-934 2)) (-5 *1 (-103)))) (-3093 (*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-103)))) (-2344 (*1 *1 *2) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-103)))))
+(-13 (-923 (-525)) (-10 -8 (-15 -3022 ((-385 (-525)) $)) (-15 -3022 ((-934 2) $)) (-15 -3093 ((-385 (-525)) $)) (-15 -2344 ($ (-385 (-525))))))
+((-2848 (((-591 (-897)) $) 14)) (-2400 (((-1089) $) 10)) (-3022 (((-796) $) 23)) (-3483 (($ (-1089) (-591 (-897))) 15)))
+(((-104) (-13 (-565 (-796)) (-10 -8 (-15 -2400 ((-1089) $)) (-15 -2848 ((-591 (-897)) $)) (-15 -3483 ($ (-1089) (-591 (-897))))))) (T -104))
+((-2400 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-104)))) (-2848 (*1 *2 *1) (-12 (-5 *2 (-591 (-897))) (-5 *1 (-104)))) (-3483 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-897))) (-5 *1 (-104)))))
+(-13 (-565 (-796)) (-10 -8 (-15 -2400 ((-1089) $)) (-15 -2848 ((-591 (-897)) $)) (-15 -3483 ($ (-1089) (-591 (-897))))))
+((-3008 (((-108) $ $) NIL)) (-3598 (((-1036) $ (-1036)) 24)) (-3522 (($ $ (-1072)) 17)) (-2815 (((-3 (-1036) "failed") $) 23)) (-1277 (((-1036) $) 21)) (-2199 (((-1036) $ (-1036)) 26)) (-3004 (((-1036) $) 25)) (-1976 (($ (-366)) NIL) (($ (-366) (-1072)) 16)) (-2400 (((-366) $) NIL)) (-2339 (((-1072) $) NIL)) (-3317 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-2886 (($ $) 18)) (-4096 (((-108) $ $) NIL)))
+(((-105) (-13 (-342 (-366) (-1036)) (-10 -8 (-15 -2815 ((-3 (-1036) "failed") $)) (-15 -3004 ((-1036) $)) (-15 -2199 ((-1036) $ (-1036)))))) (T -105))
+((-2815 (*1 *2 *1) (|partial| -12 (-5 *2 (-1036)) (-5 *1 (-105)))) (-3004 (*1 *2 *1) (-12 (-5 *2 (-1036)) (-5 *1 (-105)))) (-2199 (*1 *2 *1 *2) (-12 (-5 *2 (-1036)) (-5 *1 (-105)))))
+(-13 (-342 (-366) (-1036)) (-10 -8 (-15 -2815 ((-3 (-1036) "failed") $)) (-15 -3004 ((-1036) $)) (-15 -2199 ((-1036) $ (-1036)))))
+((-3008 (((-108) $ $) NIL)) (-1917 (($ $) NIL)) (-3931 (($ $ $) NIL)) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3203 (((-108) $) NIL (|has| (-108) (-788))) (((-108) (-1 (-108) (-108) (-108)) $) NIL)) (-4026 (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| (-108) (-788)))) (($ (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4251)))) (-3327 (($ $) NIL (|has| (-108) (-788))) (($ (-1 (-108) (-108) (-108)) $) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-3186 (((-108) $ (-1138 (-525)) (-108)) NIL (|has| $ (-6 -4251))) (((-108) $ (-525) (-108)) NIL (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-108) (-1018))))) (-3677 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4250))) (($ (-108) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-108) (-1018))))) (-1227 (((-108) (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-108) (-108)) $ (-108)) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-108) (-108)) $ (-108) (-108)) NIL (-12 (|has| $ (-6 -4250)) (|has| (-108) (-1018))))) (-3255 (((-108) $ (-525) (-108)) NIL (|has| $ (-6 -4251)))) (-3217 (((-108) $ (-525)) NIL)) (-3004 (((-525) (-108) $ (-525)) NIL (|has| (-108) (-1018))) (((-525) (-108) $) NIL (|has| (-108) (-1018))) (((-525) (-1 (-108) (-108)) $) NIL)) (-3454 (((-591 (-108)) $) NIL (|has| $ (-6 -4250)))) (-1209 (($ $ $) NIL)) (-2247 (($ $) NIL)) (-2580 (($ $ $) NIL)) (-1268 (($ (-712) (-108)) 8)) (-3661 (($ $ $) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) NIL (|has| (-525) (-788)))) (-3741 (($ $ $) NIL)) (-2131 (($ $ $) NIL (|has| (-108) (-788))) (($ (-1 (-108) (-108) (-108)) $ $) NIL)) (-2552 (((-591 (-108)) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-108) (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL)) (-3249 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-108) (-108) (-108)) $ $) NIL) (($ (-1 (-108) (-108)) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-4189 (($ $ $ (-525)) NIL) (($ (-108) $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL)) (-3066 (((-108) $) NIL (|has| (-525) (-788)))) (-2069 (((-3 (-108) "failed") (-1 (-108) (-108)) $) NIL)) (-1941 (($ $ (-108)) NIL (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-108)) (-591 (-108))) NIL (-12 (|has| (-108) (-288 (-108))) (|has| (-108) (-1018)))) (($ $ (-108) (-108)) NIL (-12 (|has| (-108) (-288 (-108))) (|has| (-108) (-1018)))) (($ $ (-273 (-108))) NIL (-12 (|has| (-108) (-288 (-108))) (|has| (-108) (-1018)))) (($ $ (-591 (-273 (-108)))) NIL (-12 (|has| (-108) (-288 (-108))) (|has| (-108) (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-108) (-1018))))) (-3339 (((-591 (-108)) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 (($ $ (-1138 (-525))) NIL) (((-108) $ (-525)) NIL) (((-108) $ (-525) (-108)) NIL)) (-2777 (($ $ (-1138 (-525))) NIL) (($ $ (-525)) NIL)) (-2064 (((-712) (-108) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-108) (-1018)))) (((-712) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4250)))) (-4063 (($ $ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-108) (-566 (-501))))) (-3036 (($ (-591 (-108))) NIL)) (-3690 (($ (-591 $)) NIL) (($ $ $) NIL) (($ (-108) $) NIL) (($ $ (-108)) NIL)) (-3022 (((-796) $) NIL)) (-3759 (($ (-712) (-108)) 9)) (-4158 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4250)))) (-1213 (($ $ $) NIL)) (-3710 (($ $) NIL)) (-3625 (($ $ $) NIL)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) NIL)) (-3613 (($ $ $) NIL)) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-106) (-13 (-119) (-10 -8 (-15 -3759 ($ (-712) (-108)))))) (T -106))
+((-3759 (*1 *1 *2 *3) (-12 (-5 *2 (-712)) (-5 *3 (-108)) (-5 *1 (-106)))))
+(-13 (-119) (-10 -8 (-15 -3759 ($ (-712) (-108)))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ |#1| $) 23) (($ $ |#2|) 26)))
+(((-107 |#1| |#2|) (-131) (-975) (-975)) (T -107))
+NIL
+(-13 (-593 |t#1|) (-981 |t#2|) (-10 -7 (-6 -4245) (-6 -4244)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 |#1|) . T) ((-981 |#2|) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-1917 (($ $) 12)) (-3931 (($ $ $) 17)) (-2892 (($) 8 T CONST)) (-1240 (((-108) $) 7)) (-3032 (((-712)) 25)) (-3377 (($) 31)) (-1209 (($ $ $) 15)) (-2247 (($ $) 10)) (-2580 (($ $ $) 18)) (-3661 (($ $ $) 19)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-3016 (((-854) $) 30)) (-2339 (((-1072) $) NIL)) (-2226 (($ (-854)) 29)) (-3917 (($ $ $) 21)) (-2047 (((-1036) $) NIL)) (-1421 (($) 9 T CONST)) (-1520 (($ $ $) 22)) (-1408 (((-501) $) 37)) (-3022 (((-796) $) 40)) (-1213 (($ $ $) 13)) (-3710 (($ $) 11)) (-3625 (($ $ $) 16)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 20)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 23)) (-3613 (($ $ $) 14)))
+(((-108) (-13 (-788) (-346) (-606) (-899) (-566 (-501)) (-10 -8 (-15 -2892 ($) -2058) (-15 -1421 ($) -2058) (-15 -3710 ($ $)) (-15 -3931 ($ $ $)) (-15 -3661 ($ $ $)) (-15 -2580 ($ $ $)) (-15 -1240 ((-108) $))))) (T -108))
+((-2892 (*1 *1) (-5 *1 (-108))) (-1421 (*1 *1) (-5 *1 (-108))) (-3710 (*1 *1 *1) (-5 *1 (-108))) (-3931 (*1 *1 *1 *1) (-5 *1 (-108))) (-3661 (*1 *1 *1 *1) (-5 *1 (-108))) (-2580 (*1 *1 *1 *1) (-5 *1 (-108))) (-1240 (*1 *1 *1) (-5 *1 (-108))))
+(-13 (-788) (-346) (-606) (-899) (-566 (-501)) (-10 -8 (-15 -2892 ($) -2058) (-15 -1421 ($) -2058) (-15 -3710 ($ $)) (-15 -3931 ($ $ $)) (-15 -3661 ($ $ $)) (-15 -2580 ($ $ $)) (-15 -1240 ((-108) $))))
+((-3502 (((-3 (-1 |#1| (-591 |#1|)) "failed") (-110)) 19) (((-110) (-110) (-1 |#1| |#1|)) 13) (((-110) (-110) (-1 |#1| (-591 |#1|))) 11) (((-3 |#1| "failed") (-110) (-591 |#1|)) 21)) (-1897 (((-3 (-591 (-1 |#1| (-591 |#1|))) "failed") (-110)) 25) (((-110) (-110) (-1 |#1| |#1|)) 30) (((-110) (-110) (-591 (-1 |#1| (-591 |#1|)))) 26)) (-3525 (((-110) |#1|) 56 (|has| |#1| (-788)))) (-1322 (((-3 |#1| "failed") (-110)) 50 (|has| |#1| (-788)))))
+(((-109 |#1|) (-10 -7 (-15 -3502 ((-3 |#1| "failed") (-110) (-591 |#1|))) (-15 -3502 ((-110) (-110) (-1 |#1| (-591 |#1|)))) (-15 -3502 ((-110) (-110) (-1 |#1| |#1|))) (-15 -3502 ((-3 (-1 |#1| (-591 |#1|)) "failed") (-110))) (-15 -1897 ((-110) (-110) (-591 (-1 |#1| (-591 |#1|))))) (-15 -1897 ((-110) (-110) (-1 |#1| |#1|))) (-15 -1897 ((-3 (-591 (-1 |#1| (-591 |#1|))) "failed") (-110))) (IF (|has| |#1| (-788)) (PROGN (-15 -3525 ((-110) |#1|)) (-15 -1322 ((-3 |#1| "failed") (-110)))) |%noBranch|)) (-1018)) (T -109))
+((-1322 (*1 *2 *3) (|partial| -12 (-5 *3 (-110)) (-4 *2 (-1018)) (-4 *2 (-788)) (-5 *1 (-109 *2)))) (-3525 (*1 *2 *3) (-12 (-5 *2 (-110)) (-5 *1 (-109 *3)) (-4 *3 (-788)) (-4 *3 (-1018)))) (-1897 (*1 *2 *3) (|partial| -12 (-5 *3 (-110)) (-5 *2 (-591 (-1 *4 (-591 *4)))) (-5 *1 (-109 *4)) (-4 *4 (-1018)))) (-1897 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1018)) (-5 *1 (-109 *4)))) (-1897 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-591 (-1 *4 (-591 *4)))) (-4 *4 (-1018)) (-5 *1 (-109 *4)))) (-3502 (*1 *2 *3) (|partial| -12 (-5 *3 (-110)) (-5 *2 (-1 *4 (-591 *4))) (-5 *1 (-109 *4)) (-4 *4 (-1018)))) (-3502 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1018)) (-5 *1 (-109 *4)))) (-3502 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 (-591 *4))) (-4 *4 (-1018)) (-5 *1 (-109 *4)))) (-3502 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-110)) (-5 *4 (-591 *2)) (-5 *1 (-109 *2)) (-4 *2 (-1018)))))
+(-10 -7 (-15 -3502 ((-3 |#1| "failed") (-110) (-591 |#1|))) (-15 -3502 ((-110) (-110) (-1 |#1| (-591 |#1|)))) (-15 -3502 ((-110) (-110) (-1 |#1| |#1|))) (-15 -3502 ((-3 (-1 |#1| (-591 |#1|)) "failed") (-110))) (-15 -1897 ((-110) (-110) (-591 (-1 |#1| (-591 |#1|))))) (-15 -1897 ((-110) (-110) (-1 |#1| |#1|))) (-15 -1897 ((-3 (-591 (-1 |#1| (-591 |#1|))) "failed") (-110))) (IF (|has| |#1| (-788)) (PROGN (-15 -3525 ((-110) |#1|)) (-15 -1322 ((-3 |#1| "failed") (-110)))) |%noBranch|))
+((-3008 (((-108) $ $) NIL)) (-3197 (((-712) $) 72) (($ $ (-712)) 30)) (-4001 (((-108) $) 32)) (-3333 (($ $ (-1072) (-715)) 26)) (-2377 (($ $ (-44 (-1072) (-715))) 15)) (-1279 (((-3 (-715) "failed") $ (-1072)) 25)) (-2848 (((-44 (-1072) (-715)) $) 14)) (-3219 (($ (-1089)) 17) (($ (-1089) (-712)) 22)) (-3011 (((-108) $) 31)) (-1841 (((-108) $) 33)) (-2400 (((-1089) $) 8)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-1709 (((-108) $ (-1089)) 10)) (-2382 (($ $ (-1 (-501) (-591 (-501)))) 52) (((-3 (-1 (-501) (-591 (-501))) "failed") $) 56)) (-2047 (((-1036) $) NIL)) (-3712 (((-108) $ (-1072)) 29)) (-3210 (($ $ (-1 (-108) $ $)) 35)) (-3551 (((-3 (-1 (-796) (-591 (-796))) "failed") $) 54) (($ $ (-1 (-796) (-591 (-796)))) 41) (($ $ (-1 (-796) (-796))) 43)) (-2210 (($ $ (-1072)) 45)) (-3199 (($ $) 63)) (-3029 (($ $ (-1 (-108) $ $)) 36)) (-3022 (((-796) $) 48)) (-1498 (($ $ (-1072)) 27)) (-3936 (((-3 (-712) "failed") $) 58)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 71)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 79)))
+(((-110) (-13 (-788) (-10 -8 (-15 -2400 ((-1089) $)) (-15 -2848 ((-44 (-1072) (-715)) $)) (-15 -3199 ($ $)) (-15 -3219 ($ (-1089))) (-15 -3219 ($ (-1089) (-712))) (-15 -3936 ((-3 (-712) "failed") $)) (-15 -3011 ((-108) $)) (-15 -4001 ((-108) $)) (-15 -1841 ((-108) $)) (-15 -3197 ((-712) $)) (-15 -3197 ($ $ (-712))) (-15 -3210 ($ $ (-1 (-108) $ $))) (-15 -3029 ($ $ (-1 (-108) $ $))) (-15 -3551 ((-3 (-1 (-796) (-591 (-796))) "failed") $)) (-15 -3551 ($ $ (-1 (-796) (-591 (-796))))) (-15 -3551 ($ $ (-1 (-796) (-796)))) (-15 -2382 ($ $ (-1 (-501) (-591 (-501))))) (-15 -2382 ((-3 (-1 (-501) (-591 (-501))) "failed") $)) (-15 -1709 ((-108) $ (-1089))) (-15 -3712 ((-108) $ (-1072))) (-15 -1498 ($ $ (-1072))) (-15 -2210 ($ $ (-1072))) (-15 -1279 ((-3 (-715) "failed") $ (-1072))) (-15 -3333 ($ $ (-1072) (-715))) (-15 -2377 ($ $ (-44 (-1072) (-715))))))) (T -110))
+((-2400 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-110)))) (-2848 (*1 *2 *1) (-12 (-5 *2 (-44 (-1072) (-715))) (-5 *1 (-110)))) (-3199 (*1 *1 *1) (-5 *1 (-110))) (-3219 (*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-110)))) (-3219 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-712)) (-5 *1 (-110)))) (-3936 (*1 *2 *1) (|partial| -12 (-5 *2 (-712)) (-5 *1 (-110)))) (-3011 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))) (-4001 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))) (-1841 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))) (-3197 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-110)))) (-3197 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-110)))) (-3210 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))) (-3029 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))) (-3551 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-796) (-591 (-796)))) (-5 *1 (-110)))) (-3551 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-796) (-591 (-796)))) (-5 *1 (-110)))) (-3551 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-796) (-796))) (-5 *1 (-110)))) (-2382 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-501) (-591 (-501)))) (-5 *1 (-110)))) (-2382 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-501) (-591 (-501)))) (-5 *1 (-110)))) (-1709 (*1 *2 *1 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-108)) (-5 *1 (-110)))) (-3712 (*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-108)) (-5 *1 (-110)))) (-1498 (*1 *1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-110)))) (-2210 (*1 *1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-110)))) (-1279 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1072)) (-5 *2 (-715)) (-5 *1 (-110)))) (-3333 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1072)) (-5 *3 (-715)) (-5 *1 (-110)))) (-2377 (*1 *1 *1 *2) (-12 (-5 *2 (-44 (-1072) (-715))) (-5 *1 (-110)))))
+(-13 (-788) (-10 -8 (-15 -2400 ((-1089) $)) (-15 -2848 ((-44 (-1072) (-715)) $)) (-15 -3199 ($ $)) (-15 -3219 ($ (-1089))) (-15 -3219 ($ (-1089) (-712))) (-15 -3936 ((-3 (-712) "failed") $)) (-15 -3011 ((-108) $)) (-15 -4001 ((-108) $)) (-15 -1841 ((-108) $)) (-15 -3197 ((-712) $)) (-15 -3197 ($ $ (-712))) (-15 -3210 ($ $ (-1 (-108) $ $))) (-15 -3029 ($ $ (-1 (-108) $ $))) (-15 -3551 ((-3 (-1 (-796) (-591 (-796))) "failed") $)) (-15 -3551 ($ $ (-1 (-796) (-591 (-796))))) (-15 -3551 ($ $ (-1 (-796) (-796)))) (-15 -2382 ($ $ (-1 (-501) (-591 (-501))))) (-15 -2382 ((-3 (-1 (-501) (-591 (-501))) "failed") $)) (-15 -1709 ((-108) $ (-1089))) (-15 -3712 ((-108) $ (-1072))) (-15 -1498 ($ $ (-1072))) (-15 -2210 ($ $ (-1072))) (-15 -1279 ((-3 (-715) "failed") $ (-1072))) (-15 -3333 ($ $ (-1072) (-715))) (-15 -2377 ($ $ (-44 (-1072) (-715))))))
+((-2367 (((-525) |#2|) 37)))
+(((-111 |#1| |#2|) (-10 -7 (-15 -2367 ((-525) |#2|))) (-13 (-341) (-966 (-385 (-525)))) (-1147 |#1|)) (T -111))
+((-2367 (*1 *2 *3) (-12 (-4 *4 (-13 (-341) (-966 (-385 *2)))) (-5 *2 (-525)) (-5 *1 (-111 *4 *3)) (-4 *3 (-1147 *4)))))
+(-10 -7 (-15 -2367 ((-525) |#2|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1361 (($ $ (-525)) NIL)) (-1947 (((-108) $ $) NIL)) (-3798 (($) NIL T CONST)) (-3069 (($ (-1085 (-525)) (-525)) NIL)) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-4136 (($ $) NIL)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-3873 (((-712) $) NIL)) (-2824 (((-108) $) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3940 (((-525)) NIL)) (-1289 (((-525) $) NIL)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2784 (($ $ (-525)) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2603 (((-1070 (-525)) $) NIL)) (-3571 (($ $) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL)) (-2128 (((-712)) NIL)) (-2495 (((-108) $ $) NIL)) (-2176 (((-525) $ (-525)) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL)))
+(((-112 |#1|) (-802 |#1|) (-525)) (T -112))
+NIL
+(-802 |#1|)
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1508 (((-112 |#1|) $) NIL (|has| (-112 |#1|) (-286)))) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-112 |#1|) (-842)))) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| (-112 |#1|) (-842)))) (-1947 (((-108) $ $) NIL)) (-3329 (((-525) $) NIL (|has| (-112 |#1|) (-761)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-112 |#1|) "failed") $) NIL) (((-3 (-1089) "failed") $) NIL (|has| (-112 |#1|) (-966 (-1089)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| (-112 |#1|) (-966 (-525)))) (((-3 (-525) "failed") $) NIL (|has| (-112 |#1|) (-966 (-525))))) (-3528 (((-112 |#1|) $) NIL) (((-1089) $) NIL (|has| (-112 |#1|) (-966 (-1089)))) (((-385 (-525)) $) NIL (|has| (-112 |#1|) (-966 (-525)))) (((-525) $) NIL (|has| (-112 |#1|) (-966 (-525))))) (-1900 (($ $) NIL) (($ (-525) $) NIL)) (-2129 (($ $ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| (-112 |#1|) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| (-112 |#1|) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-112 |#1|))) (|:| |vec| (-1171 (-112 |#1|)))) (-631 $) (-1171 $)) NIL) (((-631 (-112 |#1|)) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) NIL (|has| (-112 |#1|) (-510)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2134 (((-108) $) NIL (|has| (-112 |#1|) (-761)))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (|has| (-112 |#1|) (-819 (-525)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (|has| (-112 |#1|) (-819 (-357))))) (-2824 (((-108) $) NIL)) (-2368 (($ $) NIL)) (-1738 (((-112 |#1|) $) NIL)) (-2085 (((-3 $ "failed") $) NIL (|has| (-112 |#1|) (-1065)))) (-2732 (((-108) $) NIL (|has| (-112 |#1|) (-761)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3741 (($ $ $) NIL (|has| (-112 |#1|) (-788)))) (-2478 (($ $ $) NIL (|has| (-112 |#1|) (-788)))) (-1340 (($ (-1 (-112 |#1|) (-112 |#1|)) $) NIL)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| (-112 |#1|) (-1065)) CONST)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3093 (($ $) NIL (|has| (-112 |#1|) (-286)))) (-2662 (((-112 |#1|) $) NIL (|has| (-112 |#1|) (-510)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-112 |#1|) (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-112 |#1|) (-842)))) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-4132 (($ $ (-591 (-112 |#1|)) (-591 (-112 |#1|))) NIL (|has| (-112 |#1|) (-288 (-112 |#1|)))) (($ $ (-112 |#1|) (-112 |#1|)) NIL (|has| (-112 |#1|) (-288 (-112 |#1|)))) (($ $ (-273 (-112 |#1|))) NIL (|has| (-112 |#1|) (-288 (-112 |#1|)))) (($ $ (-591 (-273 (-112 |#1|)))) NIL (|has| (-112 |#1|) (-288 (-112 |#1|)))) (($ $ (-591 (-1089)) (-591 (-112 |#1|))) NIL (|has| (-112 |#1|) (-486 (-1089) (-112 |#1|)))) (($ $ (-1089) (-112 |#1|)) NIL (|has| (-112 |#1|) (-486 (-1089) (-112 |#1|))))) (-1712 (((-712) $) NIL)) (-3164 (($ $ (-112 |#1|)) NIL (|has| (-112 |#1|) (-265 (-112 |#1|) (-112 |#1|))))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3266 (($ $) NIL (|has| (-112 |#1|) (-213))) (($ $ (-712)) NIL (|has| (-112 |#1|) (-213))) (($ $ (-1089)) NIL (|has| (-112 |#1|) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-112 |#1|) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-112 |#1|) (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-112 |#1|) (-833 (-1089)))) (($ $ (-1 (-112 |#1|) (-112 |#1|)) (-712)) NIL) (($ $ (-1 (-112 |#1|) (-112 |#1|))) NIL)) (-2966 (($ $) NIL)) (-1754 (((-112 |#1|) $) NIL)) (-1408 (((-825 (-525)) $) NIL (|has| (-112 |#1|) (-566 (-825 (-525))))) (((-825 (-357)) $) NIL (|has| (-112 |#1|) (-566 (-825 (-357))))) (((-501) $) NIL (|has| (-112 |#1|) (-566 (-501)))) (((-357) $) NIL (|has| (-112 |#1|) (-951))) (((-205) $) NIL (|has| (-112 |#1|) (-951)))) (-3185 (((-161 (-385 (-525))) $) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| (-112 |#1|) (-842))))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) (($ (-112 |#1|)) NIL) (($ (-1089)) NIL (|has| (-112 |#1|) (-966 (-1089))))) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| (-112 |#1|) (-842))) (|has| (-112 |#1|) (-136))))) (-2128 (((-712)) NIL)) (-3862 (((-112 |#1|) $) NIL (|has| (-112 |#1|) (-510)))) (-2495 (((-108) $ $) NIL)) (-2176 (((-385 (-525)) $ (-525)) NIL)) (-1539 (($ $) NIL (|has| (-112 |#1|) (-761)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $) NIL (|has| (-112 |#1|) (-213))) (($ $ (-712)) NIL (|has| (-112 |#1|) (-213))) (($ $ (-1089)) NIL (|has| (-112 |#1|) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-112 |#1|) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-112 |#1|) (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-112 |#1|) (-833 (-1089)))) (($ $ (-1 (-112 |#1|) (-112 |#1|)) (-712)) NIL) (($ $ (-1 (-112 |#1|) (-112 |#1|))) NIL)) (-4135 (((-108) $ $) NIL (|has| (-112 |#1|) (-788)))) (-4119 (((-108) $ $) NIL (|has| (-112 |#1|) (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| (-112 |#1|) (-788)))) (-4112 (((-108) $ $) NIL (|has| (-112 |#1|) (-788)))) (-4173 (($ $ $) NIL) (($ (-112 |#1|) (-112 |#1|)) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ (-112 |#1|) $) NIL) (($ $ (-112 |#1|)) NIL)))
+(((-113 |#1|) (-13 (-923 (-112 |#1|)) (-10 -8 (-15 -2176 ((-385 (-525)) $ (-525))) (-15 -3185 ((-161 (-385 (-525))) $)) (-15 -1900 ($ $)) (-15 -1900 ($ (-525) $)))) (-525)) (T -113))
+((-2176 (*1 *2 *1 *3) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-113 *4)) (-14 *4 *3) (-5 *3 (-525)))) (-3185 (*1 *2 *1) (-12 (-5 *2 (-161 (-385 (-525)))) (-5 *1 (-113 *3)) (-14 *3 (-525)))) (-1900 (*1 *1 *1) (-12 (-5 *1 (-113 *2)) (-14 *2 (-525)))) (-1900 (*1 *1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-113 *3)) (-14 *3 *2))))
+(-13 (-923 (-112 |#1|)) (-10 -8 (-15 -2176 ((-385 (-525)) $ (-525))) (-15 -3185 ((-161 (-385 (-525))) $)) (-15 -1900 ($ $)) (-15 -1900 ($ (-525) $))))
+((-3186 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 49) (($ $ "right" $) 51)) (-4120 (((-591 $) $) 27)) (-2148 (((-108) $ $) 32)) (-2141 (((-108) |#2| $) 36)) (-2599 (((-591 |#2|) $) 22)) (-1203 (((-108) $) 16)) (-3164 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-2237 (((-108) $) 45)) (-3022 (((-796) $) 41)) (-3860 (((-591 $) $) 28)) (-4096 (((-108) $ $) 34)) (-4045 (((-712) $) 43)))
+(((-114 |#1| |#2|) (-10 -8 (-15 -3022 ((-796) |#1|)) (-15 -3186 (|#1| |#1| "right" |#1|)) (-15 -3186 (|#1| |#1| "left" |#1|)) (-15 -3164 (|#1| |#1| "right")) (-15 -3164 (|#1| |#1| "left")) (-15 -3186 (|#2| |#1| "value" |#2|)) (-15 -2148 ((-108) |#1| |#1|)) (-15 -2599 ((-591 |#2|) |#1|)) (-15 -2237 ((-108) |#1|)) (-15 -3164 (|#2| |#1| "value")) (-15 -1203 ((-108) |#1|)) (-15 -4120 ((-591 |#1|) |#1|)) (-15 -3860 ((-591 |#1|) |#1|)) (-15 -4096 ((-108) |#1| |#1|)) (-15 -2141 ((-108) |#2| |#1|)) (-15 -4045 ((-712) |#1|))) (-115 |#2|) (-1125)) (T -114))
+NIL
+(-10 -8 (-15 -3022 ((-796) |#1|)) (-15 -3186 (|#1| |#1| "right" |#1|)) (-15 -3186 (|#1| |#1| "left" |#1|)) (-15 -3164 (|#1| |#1| "right")) (-15 -3164 (|#1| |#1| "left")) (-15 -3186 (|#2| |#1| "value" |#2|)) (-15 -2148 ((-108) |#1| |#1|)) (-15 -2599 ((-591 |#2|) |#1|)) (-15 -2237 ((-108) |#1|)) (-15 -3164 (|#2| |#1| "value")) (-15 -1203 ((-108) |#1|)) (-15 -4120 ((-591 |#1|) |#1|)) (-15 -3860 ((-591 |#1|) |#1|)) (-15 -4096 ((-108) |#1| |#1|)) (-15 -2141 ((-108) |#2| |#1|)) (-15 -4045 ((-712) |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3024 ((|#1| $) 48)) (-3891 (((-108) $ (-712)) 8)) (-1780 ((|#1| $ |#1|) 39 (|has| $ (-6 -4251)))) (-4110 (($ $ $) 52 (|has| $ (-6 -4251)))) (-3152 (($ $ $) 54 (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4251))) (($ $ "left" $) 55 (|has| $ (-6 -4251))) (($ $ "right" $) 53 (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) 41 (|has| $ (-6 -4251)))) (-3798 (($) 7 T CONST)) (-3400 (($ $) 57)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) 50)) (-2148 (((-108) $ $) 42 (|has| |#1| (-1018)))) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-3388 (($ $) 59)) (-2599 (((-591 |#1|) $) 45)) (-1203 (((-108) $) 49)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-3505 (((-525) $ $) 44)) (-2237 (((-108) $) 46)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) 51)) (-1632 (((-108) $ $) 43 (|has| |#1| (-1018)))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-115 |#1|) (-131) (-1125)) (T -115))
+((-3388 (*1 *1 *1) (-12 (-4 *1 (-115 *2)) (-4 *2 (-1125)))) (-3164 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-115 *3)) (-4 *3 (-1125)))) (-3400 (*1 *1 *1) (-12 (-4 *1 (-115 *2)) (-4 *2 (-1125)))) (-3164 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-115 *3)) (-4 *3 (-1125)))) (-3186 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4251)) (-4 *1 (-115 *3)) (-4 *3 (-1125)))) (-3152 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-115 *2)) (-4 *2 (-1125)))) (-3186 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4251)) (-4 *1 (-115 *3)) (-4 *3 (-1125)))) (-4110 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-115 *2)) (-4 *2 (-1125)))))
+(-13 (-940 |t#1|) (-10 -8 (-15 -3388 ($ $)) (-15 -3164 ($ $ "left")) (-15 -3400 ($ $)) (-15 -3164 ($ $ "right")) (IF (|has| $ (-6 -4251)) (PROGN (-15 -3186 ($ $ "left" $)) (-15 -3152 ($ $ $)) (-15 -3186 ($ $ "right" $)) (-15 -4110 ($ $ $))) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-940 |#1|) . T) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-3033 (((-108) |#1|) 24)) (-3932 (((-712) (-712)) 23) (((-712)) 22)) (-2574 (((-108) |#1| (-108)) 25) (((-108) |#1|) 26)))
+(((-116 |#1|) (-10 -7 (-15 -2574 ((-108) |#1|)) (-15 -2574 ((-108) |#1| (-108))) (-15 -3932 ((-712))) (-15 -3932 ((-712) (-712))) (-15 -3033 ((-108) |#1|))) (-1147 (-525))) (T -116))
+((-3033 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1147 (-525))))) (-3932 (*1 *2 *2) (-12 (-5 *2 (-712)) (-5 *1 (-116 *3)) (-4 *3 (-1147 (-525))))) (-3932 (*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-116 *3)) (-4 *3 (-1147 (-525))))) (-2574 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1147 (-525))))) (-2574 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1147 (-525))))))
+(-10 -7 (-15 -2574 ((-108) |#1|)) (-15 -2574 ((-108) |#1| (-108))) (-15 -3932 ((-712))) (-15 -3932 ((-712) (-712))) (-15 -3033 ((-108) |#1|)))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3024 ((|#1| $) 15)) (-2787 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 22)) (-3891 (((-108) $ (-712)) NIL)) (-1780 ((|#1| $ |#1|) NIL (|has| $ (-6 -4251)))) (-4110 (($ $ $) 18 (|has| $ (-6 -4251)))) (-3152 (($ $ $) 20 (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4251))) (($ $ "left" $) NIL (|has| $ (-6 -4251))) (($ $ "right" $) NIL (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) NIL (|has| $ (-6 -4251)))) (-3798 (($) NIL T CONST)) (-3400 (($ $) 17)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) NIL)) (-2148 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-2088 (($ $ |#1| $) 23)) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-3388 (($ $) 19)) (-2599 (((-591 |#1|) $) NIL)) (-1203 (((-108) $) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-1926 (($ |#1| $) 24)) (-2470 (($ |#1| $) 10)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) 14)) (-3209 (($) 8)) (-3164 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3505 (((-525) $ $) NIL)) (-2237 (((-108) $) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) NIL)) (-1632 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3950 (($ (-591 |#1|)) 12)) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-117 |#1|) (-13 (-121 |#1|) (-10 -8 (-6 -4251) (-6 -4250) (-15 -3950 ($ (-591 |#1|))) (-15 -2470 ($ |#1| $)) (-15 -1926 ($ |#1| $)) (-15 -2787 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-788)) (T -117))
+((-3950 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-788)) (-5 *1 (-117 *3)))) (-2470 (*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-788)))) (-1926 (*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-788)))) (-2787 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |less| (-117 *3)) (|:| |greater| (-117 *3)))) (-5 *1 (-117 *3)) (-4 *3 (-788)))))
+(-13 (-121 |#1|) (-10 -8 (-6 -4251) (-6 -4250) (-15 -3950 ($ (-591 |#1|))) (-15 -2470 ($ |#1| $)) (-15 -1926 ($ |#1| $)) (-15 -2787 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
+((-1917 (($ $) 14)) (-2247 (($ $) 11)) (-2580 (($ $ $) 24)) (-3661 (($ $ $) 22)) (-3710 (($ $) 12)) (-3625 (($ $ $) 20)) (-3613 (($ $ $) 18)))
+(((-118 |#1|) (-10 -8 (-15 -2580 (|#1| |#1| |#1|)) (-15 -3661 (|#1| |#1| |#1|)) (-15 -3710 (|#1| |#1|)) (-15 -2247 (|#1| |#1|)) (-15 -1917 (|#1| |#1|)) (-15 -3613 (|#1| |#1| |#1|)) (-15 -3625 (|#1| |#1| |#1|))) (-119)) (T -118))
+NIL
+(-10 -8 (-15 -2580 (|#1| |#1| |#1|)) (-15 -3661 (|#1| |#1| |#1|)) (-15 -3710 (|#1| |#1|)) (-15 -2247 (|#1| |#1|)) (-15 -1917 (|#1| |#1|)) (-15 -3613 (|#1| |#1| |#1|)) (-15 -3625 (|#1| |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1917 (($ $) 104)) (-3931 (($ $ $) 25)) (-3296 (((-1176) $ (-525) (-525)) 67 (|has| $ (-6 -4251)))) (-3203 (((-108) $) 99 (|has| (-108) (-788))) (((-108) (-1 (-108) (-108) (-108)) $) 93)) (-4026 (($ $) 103 (-12 (|has| (-108) (-788)) (|has| $ (-6 -4251)))) (($ (-1 (-108) (-108) (-108)) $) 102 (|has| $ (-6 -4251)))) (-3327 (($ $) 98 (|has| (-108) (-788))) (($ (-1 (-108) (-108) (-108)) $) 92)) (-3891 (((-108) $ (-712)) 38)) (-3186 (((-108) $ (-1138 (-525)) (-108)) 89 (|has| $ (-6 -4251))) (((-108) $ (-525) (-108)) 55 (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) (-108)) $) 72 (|has| $ (-6 -4250)))) (-3798 (($) 39 T CONST)) (-2598 (($ $) 101 (|has| $ (-6 -4251)))) (-2617 (($ $) 91)) (-3098 (($ $) 69 (-12 (|has| (-108) (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ (-1 (-108) (-108)) $) 73 (|has| $ (-6 -4250))) (($ (-108) $) 70 (-12 (|has| (-108) (-1018)) (|has| $ (-6 -4250))))) (-1227 (((-108) (-1 (-108) (-108) (-108)) $) 75 (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-108) (-108)) $ (-108)) 74 (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-108) (-108)) $ (-108) (-108)) 71 (-12 (|has| (-108) (-1018)) (|has| $ (-6 -4250))))) (-3255 (((-108) $ (-525) (-108)) 54 (|has| $ (-6 -4251)))) (-3217 (((-108) $ (-525)) 56)) (-3004 (((-525) (-108) $ (-525)) 96 (|has| (-108) (-1018))) (((-525) (-108) $) 95 (|has| (-108) (-1018))) (((-525) (-1 (-108) (-108)) $) 94)) (-3454 (((-591 (-108)) $) 46 (|has| $ (-6 -4250)))) (-1209 (($ $ $) 26)) (-2247 (($ $) 31)) (-2580 (($ $ $) 28)) (-1268 (($ (-712) (-108)) 78)) (-3661 (($ $ $) 29)) (-2910 (((-108) $ (-712)) 37)) (-3630 (((-525) $) 64 (|has| (-525) (-788)))) (-3741 (($ $ $) 13)) (-2131 (($ $ $) 97 (|has| (-108) (-788))) (($ (-1 (-108) (-108) (-108)) $ $) 90)) (-2552 (((-591 (-108)) $) 47 (|has| $ (-6 -4250)))) (-2141 (((-108) (-108) $) 49 (-12 (|has| (-108) (-1018)) (|has| $ (-6 -4250))))) (-3468 (((-525) $) 63 (|has| (-525) (-788)))) (-2478 (($ $ $) 14)) (-3249 (($ (-1 (-108) (-108)) $) 42 (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-108) (-108) (-108)) $ $) 83) (($ (-1 (-108) (-108)) $) 41)) (-3971 (((-108) $ (-712)) 36)) (-2339 (((-1072) $) 9)) (-4189 (($ $ $ (-525)) 88) (($ (-108) $ (-525)) 87)) (-2511 (((-591 (-525)) $) 61)) (-2791 (((-108) (-525) $) 60)) (-2047 (((-1036) $) 10)) (-3066 (((-108) $) 65 (|has| (-525) (-788)))) (-2069 (((-3 (-108) "failed") (-1 (-108) (-108)) $) 76)) (-1941 (($ $ (-108)) 66 (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) (-108)) $) 44 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-108)) (-591 (-108))) 53 (-12 (|has| (-108) (-288 (-108))) (|has| (-108) (-1018)))) (($ $ (-108) (-108)) 52 (-12 (|has| (-108) (-288 (-108))) (|has| (-108) (-1018)))) (($ $ (-273 (-108))) 51 (-12 (|has| (-108) (-288 (-108))) (|has| (-108) (-1018)))) (($ $ (-591 (-273 (-108)))) 50 (-12 (|has| (-108) (-288 (-108))) (|has| (-108) (-1018))))) (-3493 (((-108) $ $) 32)) (-1615 (((-108) (-108) $) 62 (-12 (|has| $ (-6 -4250)) (|has| (-108) (-1018))))) (-3339 (((-591 (-108)) $) 59)) (-3028 (((-108) $) 35)) (-3209 (($) 34)) (-3164 (($ $ (-1138 (-525))) 84) (((-108) $ (-525)) 58) (((-108) $ (-525) (-108)) 57)) (-2777 (($ $ (-1138 (-525))) 86) (($ $ (-525)) 85)) (-2064 (((-712) (-108) $) 48 (-12 (|has| (-108) (-1018)) (|has| $ (-6 -4250)))) (((-712) (-1 (-108) (-108)) $) 45 (|has| $ (-6 -4250)))) (-4063 (($ $ $ (-525)) 100 (|has| $ (-6 -4251)))) (-3199 (($ $) 33)) (-1408 (((-501) $) 68 (|has| (-108) (-566 (-501))))) (-3036 (($ (-591 (-108))) 77)) (-3690 (($ (-591 $)) 82) (($ $ $) 81) (($ (-108) $) 80) (($ $ (-108)) 79)) (-3022 (((-796) $) 11)) (-4158 (((-108) (-1 (-108) (-108)) $) 43 (|has| $ (-6 -4250)))) (-1213 (($ $ $) 27)) (-3710 (($ $) 30)) (-3625 (($ $ $) 106)) (-4135 (((-108) $ $) 16)) (-4119 (((-108) $ $) 17)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 15)) (-4112 (((-108) $ $) 18)) (-3613 (($ $ $) 105)) (-4045 (((-712) $) 40 (|has| $ (-6 -4250)))))
+(((-119) (-131)) (T -119))
+((-2247 (*1 *1 *1) (-4 *1 (-119))) (-3710 (*1 *1 *1) (-4 *1 (-119))) (-3661 (*1 *1 *1 *1) (-4 *1 (-119))) (-2580 (*1 *1 *1 *1) (-4 *1 (-119))) (-1213 (*1 *1 *1 *1) (-4 *1 (-119))) (-1209 (*1 *1 *1 *1) (-4 *1 (-119))) (-3931 (*1 *1 *1 *1) (-4 *1 (-119))))
+(-13 (-788) (-606) (-19 (-108)) (-10 -8 (-15 -2247 ($ $)) (-15 -3710 ($ $)) (-15 -3661 ($ $ $)) (-15 -2580 ($ $ $)) (-15 -1213 ($ $ $)) (-15 -1209 ($ $ $)) (-15 -3931 ($ $ $))))
+(((-33) . T) ((-97) . T) ((-565 (-796)) . T) ((-142 #0=(-108)) . T) ((-566 (-501)) |has| (-108) (-566 (-501))) ((-265 #1=(-525) #0#) . T) ((-267 #1# #0#) . T) ((-288 #0#) -12 (|has| (-108) (-288 (-108))) (|has| (-108) (-1018))) ((-351 #0#) . T) ((-464 #0#) . T) ((-558 #1# #0#) . T) ((-486 #0# #0#) -12 (|has| (-108) (-288 (-108))) (|has| (-108) (-1018))) ((-596 #0#) . T) ((-606) . T) ((-19 #0#) . T) ((-788) . T) ((-1018) . T) ((-1125) . T))
+((-3249 (($ (-1 |#2| |#2|) $) 22)) (-3199 (($ $) 16)) (-4045 (((-712) $) 24)))
+(((-120 |#1| |#2|) (-10 -8 (-15 -3249 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4045 ((-712) |#1|)) (-15 -3199 (|#1| |#1|))) (-121 |#2|) (-1018)) (T -120))
+NIL
+(-10 -8 (-15 -3249 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4045 ((-712) |#1|)) (-15 -3199 (|#1| |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3024 ((|#1| $) 48)) (-3891 (((-108) $ (-712)) 8)) (-1780 ((|#1| $ |#1|) 39 (|has| $ (-6 -4251)))) (-4110 (($ $ $) 52 (|has| $ (-6 -4251)))) (-3152 (($ $ $) 54 (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4251))) (($ $ "left" $) 55 (|has| $ (-6 -4251))) (($ $ "right" $) 53 (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) 41 (|has| $ (-6 -4251)))) (-3798 (($) 7 T CONST)) (-3400 (($ $) 57)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) 50)) (-2148 (((-108) $ $) 42 (|has| |#1| (-1018)))) (-2088 (($ $ |#1| $) 60)) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-3388 (($ $) 59)) (-2599 (((-591 |#1|) $) 45)) (-1203 (((-108) $) 49)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-3505 (((-525) $ $) 44)) (-2237 (((-108) $) 46)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) 51)) (-1632 (((-108) $ $) 43 (|has| |#1| (-1018)))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-121 |#1|) (-131) (-1018)) (T -121))
+((-2088 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-121 *2)) (-4 *2 (-1018)))))
+(-13 (-115 |t#1|) (-10 -8 (-6 -4251) (-6 -4250) (-15 -2088 ($ $ |t#1| $))))
+(((-33) . T) ((-97) |has| |#1| (-1018)) ((-115 |#1|) . T) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-940 |#1|) . T) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3024 ((|#1| $) 15)) (-3891 (((-108) $ (-712)) NIL)) (-1780 ((|#1| $ |#1|) 19 (|has| $ (-6 -4251)))) (-4110 (($ $ $) 20 (|has| $ (-6 -4251)))) (-3152 (($ $ $) 18 (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4251))) (($ $ "left" $) NIL (|has| $ (-6 -4251))) (($ $ "right" $) NIL (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) NIL (|has| $ (-6 -4251)))) (-3798 (($) NIL T CONST)) (-3400 (($ $) 21)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) NIL)) (-2148 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-2088 (($ $ |#1| $) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-3388 (($ $) NIL)) (-2599 (((-591 |#1|) $) NIL)) (-1203 (((-108) $) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-2470 (($ |#1| $) 10)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) 14)) (-3209 (($) 8)) (-3164 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3505 (((-525) $ $) NIL)) (-2237 (((-108) $) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) 17)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) NIL)) (-1632 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3612 (($ (-591 |#1|)) 12)) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-122 |#1|) (-13 (-121 |#1|) (-10 -8 (-6 -4251) (-15 -3612 ($ (-591 |#1|))) (-15 -2470 ($ |#1| $)))) (-788)) (T -122))
+((-3612 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-788)) (-5 *1 (-122 *3)))) (-2470 (*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-788)))))
+(-13 (-121 |#1|) (-10 -8 (-6 -4251) (-15 -3612 ($ (-591 |#1|))) (-15 -2470 ($ |#1| $))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3024 ((|#1| $) 24)) (-3891 (((-108) $ (-712)) NIL)) (-1780 ((|#1| $ |#1|) 26 (|has| $ (-6 -4251)))) (-4110 (($ $ $) 30 (|has| $ (-6 -4251)))) (-3152 (($ $ $) 28 (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4251))) (($ $ "left" $) NIL (|has| $ (-6 -4251))) (($ $ "right" $) NIL (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) NIL (|has| $ (-6 -4251)))) (-3798 (($) NIL T CONST)) (-3400 (($ $) 20)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) NIL)) (-2148 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-2088 (($ $ |#1| $) 15)) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-3388 (($ $) 19)) (-2599 (((-591 |#1|) $) NIL)) (-1203 (((-108) $) 21)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) 18)) (-3209 (($) 11)) (-3164 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3505 (((-525) $ $) NIL)) (-2237 (((-108) $) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) NIL)) (-1632 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-1496 (($ |#1|) 17) (($ $ |#1| $) 16)) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 10 (|has| |#1| (-1018)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-123 |#1|) (-13 (-121 |#1|) (-10 -8 (-15 -1496 ($ |#1|)) (-15 -1496 ($ $ |#1| $)))) (-1018)) (T -123))
+((-1496 (*1 *1 *2) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1018)))) (-1496 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1018)))))
+(-13 (-121 |#1|) (-10 -8 (-15 -1496 ($ |#1|)) (-15 -1496 ($ $ |#1| $))))
+((-3008 (((-108) $ $) NIL (|has| (-125) (-1018)))) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3203 (((-108) (-1 (-108) (-125) (-125)) $) NIL) (((-108) $) NIL (|has| (-125) (-788)))) (-4026 (($ (-1 (-108) (-125) (-125)) $) NIL (|has| $ (-6 -4251))) (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| (-125) (-788))))) (-3327 (($ (-1 (-108) (-125) (-125)) $) NIL) (($ $) NIL (|has| (-125) (-788)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 (((-125) $ (-525) (-125)) NIL (|has| $ (-6 -4251))) (((-125) $ (-1138 (-525)) (-125)) NIL (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) (-125)) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-125) (-1018))))) (-3677 (($ (-125) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-125) (-1018)))) (($ (-1 (-108) (-125)) $) NIL (|has| $ (-6 -4250)))) (-1227 (((-125) (-1 (-125) (-125) (-125)) $ (-125) (-125)) NIL (-12 (|has| $ (-6 -4250)) (|has| (-125) (-1018)))) (((-125) (-1 (-125) (-125) (-125)) $ (-125)) NIL (|has| $ (-6 -4250))) (((-125) (-1 (-125) (-125) (-125)) $) NIL (|has| $ (-6 -4250)))) (-3255 (((-125) $ (-525) (-125)) NIL (|has| $ (-6 -4251)))) (-3217 (((-125) $ (-525)) NIL)) (-3004 (((-525) (-1 (-108) (-125)) $) NIL) (((-525) (-125) $) NIL (|has| (-125) (-1018))) (((-525) (-125) $ (-525)) NIL (|has| (-125) (-1018)))) (-3454 (((-591 (-125)) $) NIL (|has| $ (-6 -4250)))) (-1268 (($ (-712) (-125)) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) NIL (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (|has| (-125) (-788)))) (-2131 (($ (-1 (-108) (-125) (-125)) $ $) NIL) (($ $ $) NIL (|has| (-125) (-788)))) (-2552 (((-591 (-125)) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-125) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-125) (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| (-125) (-788)))) (-3249 (($ (-1 (-125) (-125)) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-125) (-125)) $) NIL) (($ (-1 (-125) (-125) (-125)) $ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| (-125) (-1018)))) (-4189 (($ (-125) $ (-525)) NIL) (($ $ $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL (|has| (-125) (-1018)))) (-3066 (((-125) $) NIL (|has| (-525) (-788)))) (-2069 (((-3 (-125) "failed") (-1 (-108) (-125)) $) NIL)) (-1941 (($ $ (-125)) NIL (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) (-125)) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-125)))) NIL (-12 (|has| (-125) (-288 (-125))) (|has| (-125) (-1018)))) (($ $ (-273 (-125))) NIL (-12 (|has| (-125) (-288 (-125))) (|has| (-125) (-1018)))) (($ $ (-125) (-125)) NIL (-12 (|has| (-125) (-288 (-125))) (|has| (-125) (-1018)))) (($ $ (-591 (-125)) (-591 (-125))) NIL (-12 (|has| (-125) (-288 (-125))) (|has| (-125) (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) (-125) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-125) (-1018))))) (-3339 (((-591 (-125)) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 (((-125) $ (-525) (-125)) NIL) (((-125) $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-2777 (($ $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-2064 (((-712) (-1 (-108) (-125)) $) NIL (|has| $ (-6 -4250))) (((-712) (-125) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-125) (-1018))))) (-4063 (($ $ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-125) (-566 (-501))))) (-3036 (($ (-591 (-125))) NIL)) (-3690 (($ $ (-125)) NIL) (($ (-125) $) NIL) (($ $ $) NIL) (($ (-591 $)) NIL)) (-3022 (((-796) $) NIL (|has| (-125) (-565 (-796))))) (-4158 (((-108) (-1 (-108) (-125)) $) NIL (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) NIL (|has| (-125) (-788)))) (-4119 (((-108) $ $) NIL (|has| (-125) (-788)))) (-4096 (((-108) $ $) NIL (|has| (-125) (-1018)))) (-4126 (((-108) $ $) NIL (|has| (-125) (-788)))) (-4112 (((-108) $ $) NIL (|has| (-125) (-788)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-124) (-19 (-125))) (T -124))
+NIL
+(-19 (-125))
+((-3008 (((-108) $ $) NIL)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 11) (((-712) $) 8) (($ (-712)) 7)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 13)))
+(((-125) (-13 (-788) (-565 (-712)) (-10 -8 (-15 -3022 ($ (-712)))))) (T -125))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-125)))))
+(-13 (-788) (-565 (-712)) (-10 -8 (-15 -3022 ($ (-712)))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4156 (($ $ $) 14)) (* (($ (-854) $) 13) (($ (-712) $) 15)))
+(((-126) (-131)) (T -126))
+((-2157 (*1 *1 *1 *1) (|partial| -4 *1 (-126))))
+(-13 (-23) (-10 -8 (-15 -2157 ((-3 $ "failed") $ $))))
+(((-23) . T) ((-25) . T) ((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-3008 (((-108) $ $) 7)) (-1231 (((-1176) $ (-712)) 19)) (-3004 (((-712) $) 20)) (-3741 (($ $ $) 13)) (-2478 (($ $ $) 14)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4135 (((-108) $ $) 16)) (-4119 (((-108) $ $) 17)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 15)) (-4112 (((-108) $ $) 18)))
+(((-127) (-131)) (T -127))
+((-3004 (*1 *2 *1) (-12 (-4 *1 (-127)) (-5 *2 (-712)))) (-1231 (*1 *2 *1 *3) (-12 (-4 *1 (-127)) (-5 *3 (-712)) (-5 *2 (-1176)))))
+(-13 (-788) (-10 -8 (-15 -3004 ((-712) $)) (-15 -1231 ((-1176) $ (-712)))))
+(((-97) . T) ((-565 (-796)) . T) ((-788) . T) ((-1018) . T))
+((-3008 (((-108) $ $) 34)) (-1800 (((-108) $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-712) "failed") $) 40)) (-3528 (((-712) $) 38)) (-4163 (((-3 $ "failed") $) NIL)) (-2824 (((-108) $) NIL)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) 27)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2911 (((-108)) 41)) (-3389 (((-108) (-108)) 43)) (-2029 (((-108) $) 24)) (-3742 (((-108) $) 37)) (-3022 (((-796) $) 22) (($ (-712)) 14)) (-3710 (($ $ (-712)) NIL) (($ $ (-854)) NIL)) (-4191 (($) 12 T CONST)) (-4197 (($) 11 T CONST)) (-1519 (($ (-712)) 15)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 25)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 26)) (-4164 (((-3 $ "failed") $ $) 30)) (-4156 (($ $ $) 28)) (** (($ $ (-712)) NIL) (($ $ (-854)) NIL) (($ $ $) 36)) (* (($ (-712) $) 33) (($ (-854) $) NIL) (($ $ $) 31)))
+(((-128) (-13 (-788) (-23) (-668) (-966 (-712)) (-10 -8 (-6 (-4252 "*")) (-15 -4164 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -1519 ($ (-712))) (-15 -2029 ((-108) $)) (-15 -3742 ((-108) $)) (-15 -2911 ((-108))) (-15 -3389 ((-108) (-108)))))) (T -128))
+((-4164 (*1 *1 *1 *1) (|partial| -5 *1 (-128))) (** (*1 *1 *1 *1) (-5 *1 (-128))) (-1519 (*1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-128)))) (-2029 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-128)))) (-3742 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-128)))) (-2911 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-128)))) (-3389 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-128)))))
+(-13 (-788) (-23) (-668) (-966 (-712)) (-10 -8 (-6 (-4252 "*")) (-15 -4164 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -1519 ($ (-712))) (-15 -2029 ((-108) $)) (-15 -3742 ((-108) $)) (-15 -2911 ((-108))) (-15 -3389 ((-108) (-108)))))
+((-2872 (((-130 |#1| |#2| |#4|) (-591 |#4|) (-130 |#1| |#2| |#3|)) 14)) (-1340 (((-130 |#1| |#2| |#4|) (-1 |#4| |#3|) (-130 |#1| |#2| |#3|)) 18)))
+(((-129 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2872 ((-130 |#1| |#2| |#4|) (-591 |#4|) (-130 |#1| |#2| |#3|))) (-15 -1340 ((-130 |#1| |#2| |#4|) (-1 |#4| |#3|) (-130 |#1| |#2| |#3|)))) (-525) (-712) (-160) (-160)) (T -129))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-130 *5 *6 *7)) (-14 *5 (-525)) (-14 *6 (-712)) (-4 *7 (-160)) (-4 *8 (-160)) (-5 *2 (-130 *5 *6 *8)) (-5 *1 (-129 *5 *6 *7 *8)))) (-2872 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *8)) (-5 *4 (-130 *5 *6 *7)) (-14 *5 (-525)) (-14 *6 (-712)) (-4 *7 (-160)) (-4 *8 (-160)) (-5 *2 (-130 *5 *6 *8)) (-5 *1 (-129 *5 *6 *7 *8)))))
+(-10 -7 (-15 -2872 ((-130 |#1| |#2| |#4|) (-591 |#4|) (-130 |#1| |#2| |#3|))) (-15 -1340 ((-130 |#1| |#2| |#4|) (-1 |#4| |#3|) (-130 |#1| |#2| |#3|))))
+((-3008 (((-108) $ $) NIL)) (-3475 (($ (-591 |#3|)) 40)) (-1278 (($ $) 99) (($ $ (-525) (-525)) 98)) (-3798 (($) 17)) (-1251 (((-3 |#3| "failed") $) 60)) (-3528 ((|#3| $) NIL)) (-3812 (($ $ (-591 (-525))) 100)) (-2859 (((-591 |#3|) $) 36)) (-4073 (((-712) $) 44)) (-3783 (($ $ $) 93)) (-3778 (($) 43)) (-2339 (((-1072) $) NIL)) (-3292 (($) 16)) (-2047 (((-1036) $) NIL)) (-3164 ((|#3| $) 46) ((|#3| $ (-525)) 47) ((|#3| $ (-525) (-525)) 48) ((|#3| $ (-525) (-525) (-525)) 49) ((|#3| $ (-525) (-525) (-525) (-525)) 50) ((|#3| $ (-591 (-525))) 52)) (-1316 (((-712) $) 45)) (-2611 (($ $ (-525) $ (-525)) 94) (($ $ (-525) (-525)) 96)) (-3022 (((-796) $) 67) (($ |#3|) 68) (($ (-220 |#2| |#3|)) 75) (($ (-1056 |#2| |#3|)) 78) (($ (-591 |#3|)) 53) (($ (-591 $)) 58)) (-4191 (($) 69 T CONST)) (-4197 (($) 70 T CONST)) (-4096 (((-108) $ $) 80)) (-4164 (($ $) 86) (($ $ $) 84)) (-4156 (($ $ $) 82)) (* (($ |#3| $) 91) (($ $ |#3|) 92) (($ $ (-525)) 89) (($ (-525) $) 88) (($ $ $) 95)))
+(((-130 |#1| |#2| |#3|) (-13 (-442 |#3| (-712)) (-447 (-525) (-712)) (-10 -8 (-15 -3022 ($ (-220 |#2| |#3|))) (-15 -3022 ($ (-1056 |#2| |#3|))) (-15 -3022 ($ (-591 |#3|))) (-15 -3022 ($ (-591 $))) (-15 -4073 ((-712) $)) (-15 -3164 (|#3| $)) (-15 -3164 (|#3| $ (-525))) (-15 -3164 (|#3| $ (-525) (-525))) (-15 -3164 (|#3| $ (-525) (-525) (-525))) (-15 -3164 (|#3| $ (-525) (-525) (-525) (-525))) (-15 -3164 (|#3| $ (-591 (-525)))) (-15 -3783 ($ $ $)) (-15 * ($ $ $)) (-15 -2611 ($ $ (-525) $ (-525))) (-15 -2611 ($ $ (-525) (-525))) (-15 -1278 ($ $)) (-15 -1278 ($ $ (-525) (-525))) (-15 -3812 ($ $ (-591 (-525)))) (-15 -3292 ($)) (-15 -3778 ($)) (-15 -2859 ((-591 |#3|) $)) (-15 -3475 ($ (-591 |#3|))) (-15 -3798 ($)))) (-525) (-712) (-160)) (T -130))
+((-3783 (*1 *1 *1 *1) (-12 (-5 *1 (-130 *2 *3 *4)) (-14 *2 (-525)) (-14 *3 (-712)) (-4 *4 (-160)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-220 *4 *5)) (-14 *4 (-712)) (-4 *5 (-160)) (-5 *1 (-130 *3 *4 *5)) (-14 *3 (-525)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-1056 *4 *5)) (-14 *4 (-712)) (-4 *5 (-160)) (-5 *1 (-130 *3 *4 *5)) (-14 *3 (-525)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-591 *5)) (-4 *5 (-160)) (-5 *1 (-130 *3 *4 *5)) (-14 *3 (-525)) (-14 *4 (-712)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-591 (-130 *3 *4 *5))) (-5 *1 (-130 *3 *4 *5)) (-14 *3 (-525)) (-14 *4 (-712)) (-4 *5 (-160)))) (-4073 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-130 *3 *4 *5)) (-14 *3 (-525)) (-14 *4 *2) (-4 *5 (-160)))) (-3164 (*1 *2 *1) (-12 (-4 *2 (-160)) (-5 *1 (-130 *3 *4 *2)) (-14 *3 (-525)) (-14 *4 (-712)))) (-3164 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-4 *2 (-160)) (-5 *1 (-130 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-712)))) (-3164 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-525)) (-4 *2 (-160)) (-5 *1 (-130 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-712)))) (-3164 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-525)) (-4 *2 (-160)) (-5 *1 (-130 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-712)))) (-3164 (*1 *2 *1 *3 *3 *3 *3) (-12 (-5 *3 (-525)) (-4 *2 (-160)) (-5 *1 (-130 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-712)))) (-3164 (*1 *2 *1 *3) (-12 (-5 *3 (-591 (-525))) (-4 *2 (-160)) (-5 *1 (-130 *4 *5 *2)) (-14 *4 (-525)) (-14 *5 (-712)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-130 *2 *3 *4)) (-14 *2 (-525)) (-14 *3 (-712)) (-4 *4 (-160)))) (-2611 (*1 *1 *1 *2 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-130 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-712)) (-4 *5 (-160)))) (-2611 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-130 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-712)) (-4 *5 (-160)))) (-1278 (*1 *1 *1) (-12 (-5 *1 (-130 *2 *3 *4)) (-14 *2 (-525)) (-14 *3 (-712)) (-4 *4 (-160)))) (-1278 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-130 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-712)) (-4 *5 (-160)))) (-3812 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-130 *3 *4 *5)) (-14 *3 (-525)) (-14 *4 (-712)) (-4 *5 (-160)))) (-3292 (*1 *1) (-12 (-5 *1 (-130 *2 *3 *4)) (-14 *2 (-525)) (-14 *3 (-712)) (-4 *4 (-160)))) (-3778 (*1 *1) (-12 (-5 *1 (-130 *2 *3 *4)) (-14 *2 (-525)) (-14 *3 (-712)) (-4 *4 (-160)))) (-2859 (*1 *2 *1) (-12 (-5 *2 (-591 *5)) (-5 *1 (-130 *3 *4 *5)) (-14 *3 (-525)) (-14 *4 (-712)) (-4 *5 (-160)))) (-3475 (*1 *1 *2) (-12 (-5 *2 (-591 *5)) (-4 *5 (-160)) (-5 *1 (-130 *3 *4 *5)) (-14 *3 (-525)) (-14 *4 (-712)))) (-3798 (*1 *1) (-12 (-5 *1 (-130 *2 *3 *4)) (-14 *2 (-525)) (-14 *3 (-712)) (-4 *4 (-160)))))
+(-13 (-442 |#3| (-712)) (-447 (-525) (-712)) (-10 -8 (-15 -3022 ($ (-220 |#2| |#3|))) (-15 -3022 ($ (-1056 |#2| |#3|))) (-15 -3022 ($ (-591 |#3|))) (-15 -3022 ($ (-591 $))) (-15 -4073 ((-712) $)) (-15 -3164 (|#3| $)) (-15 -3164 (|#3| $ (-525))) (-15 -3164 (|#3| $ (-525) (-525))) (-15 -3164 (|#3| $ (-525) (-525) (-525))) (-15 -3164 (|#3| $ (-525) (-525) (-525) (-525))) (-15 -3164 (|#3| $ (-591 (-525)))) (-15 -3783 ($ $ $)) (-15 * ($ $ $)) (-15 -2611 ($ $ (-525) $ (-525))) (-15 -2611 ($ $ (-525) (-525))) (-15 -1278 ($ $)) (-15 -1278 ($ $ (-525) (-525))) (-15 -3812 ($ $ (-591 (-525)))) (-15 -3292 ($)) (-15 -3778 ($)) (-15 -2859 ((-591 |#3|) $)) (-15 -3475 ($ (-591 |#3|))) (-15 -3798 ($))))
+((-3022 (((-796) $) 7)))
+(((-131) (-565 (-796))) (T -131))
+NIL
+(-565 (-796))
+((-3008 (((-108) $ $) NIL)) (-3845 (($) 15 T CONST)) (-3794 (($) NIL (|has| (-135) (-346)))) (-1414 (($ $ $) 17) (($ $ (-135)) NIL) (($ (-135) $) NIL)) (-3595 (($ $ $) NIL)) (-3214 (((-108) $ $) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-3032 (((-712)) NIL (|has| (-135) (-346)))) (-2442 (($) NIL) (($ (-591 (-135))) NIL)) (-1797 (($ (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018))))) (-3901 (($ (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250))) (($ (-135) $) 51 (|has| $ (-6 -4250)))) (-3677 (($ (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250))) (($ (-135) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018))))) (-1227 (((-135) (-1 (-135) (-135) (-135)) $) NIL (|has| $ (-6 -4250))) (((-135) (-1 (-135) (-135) (-135)) $ (-135)) NIL (|has| $ (-6 -4250))) (((-135) (-1 (-135) (-135) (-135)) $ (-135) (-135)) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018))))) (-3377 (($) NIL (|has| (-135) (-346)))) (-3454 (((-591 (-135)) $) 60 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-3741 (((-135) $) NIL (|has| (-135) (-788)))) (-2552 (((-591 (-135)) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-135) $) 26 (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018))))) (-2478 (((-135) $) NIL (|has| (-135) (-788)))) (-3249 (($ (-1 (-135) (-135)) $) 59 (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-135) (-135)) $) 55)) (-2814 (($) 16 T CONST)) (-3016 (((-854) $) NIL (|has| (-135) (-346)))) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-3516 (($ $ $) 29)) (-1464 (((-135) $) 52)) (-2470 (($ (-135) $) 50)) (-2226 (($ (-854)) NIL (|has| (-135) (-346)))) (-3453 (($) 14 T CONST)) (-2047 (((-1036) $) NIL)) (-2069 (((-3 (-135) "failed") (-1 (-108) (-135)) $) NIL)) (-3631 (((-135) $) 53)) (-1623 (((-108) (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-135)) (-591 (-135))) NIL (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018)))) (($ $ (-135) (-135)) NIL (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018)))) (($ $ (-273 (-135))) NIL (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018)))) (($ $ (-591 (-273 (-135)))) NIL (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) 48)) (-2048 (($) 13 T CONST)) (-3097 (($ $ $) 31) (($ $ (-135)) NIL)) (-2311 (($ (-591 (-135))) NIL) (($) NIL)) (-2064 (((-712) (-135) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018)))) (((-712) (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) NIL)) (-1408 (((-1072) $) 36) (((-501) $) NIL (|has| (-135) (-566 (-501)))) (((-591 (-135)) $) 34)) (-3036 (($ (-591 (-135))) NIL)) (-3030 (($ $) 32 (|has| (-135) (-346)))) (-3022 (((-796) $) 46)) (-2214 (($ (-1072)) 12) (($ (-591 (-135))) 43)) (-2512 (((-712) $) NIL)) (-2973 (($) 49) (($ (-591 (-135))) NIL)) (-1870 (($ (-591 (-135))) NIL)) (-4158 (((-108) (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250)))) (-3476 (($) 19 T CONST)) (-2882 (($) 18 T CONST)) (-4096 (((-108) $ $) 22)) (-4112 (((-108) $ $) NIL)) (-4045 (((-712) $) 47 (|has| $ (-6 -4250)))))
+(((-132) (-13 (-1018) (-566 (-1072)) (-403 (-135)) (-566 (-591 (-135))) (-10 -8 (-15 -2214 ($ (-1072))) (-15 -2214 ($ (-591 (-135)))) (-15 -2048 ($) -2058) (-15 -3453 ($) -2058) (-15 -3845 ($) -2058) (-15 -2814 ($) -2058) (-15 -2882 ($) -2058) (-15 -3476 ($) -2058)))) (T -132))
+((-2214 (*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-132)))) (-2214 (*1 *1 *2) (-12 (-5 *2 (-591 (-135))) (-5 *1 (-132)))) (-2048 (*1 *1) (-5 *1 (-132))) (-3453 (*1 *1) (-5 *1 (-132))) (-3845 (*1 *1) (-5 *1 (-132))) (-2814 (*1 *1) (-5 *1 (-132))) (-2882 (*1 *1) (-5 *1 (-132))) (-3476 (*1 *1) (-5 *1 (-132))))
+(-13 (-1018) (-566 (-1072)) (-403 (-135)) (-566 (-591 (-135))) (-10 -8 (-15 -2214 ($ (-1072))) (-15 -2214 ($ (-591 (-135)))) (-15 -2048 ($) -2058) (-15 -3453 ($) -2058) (-15 -3845 ($) -2058) (-15 -2814 ($) -2058) (-15 -2882 ($) -2058) (-15 -3476 ($) -2058)))
+((-2004 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-2835 ((|#1| |#3|) 9)) (-3890 ((|#3| |#3|) 15)))
+(((-133 |#1| |#2| |#3|) (-10 -7 (-15 -2835 (|#1| |#3|)) (-15 -3890 (|#3| |#3|)) (-15 -2004 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-517) (-923 |#1|) (-351 |#2|)) (T -133))
+((-2004 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *5 (-923 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-133 *4 *5 *3)) (-4 *3 (-351 *5)))) (-3890 (*1 *2 *2) (-12 (-4 *3 (-517)) (-4 *4 (-923 *3)) (-5 *1 (-133 *3 *4 *2)) (-4 *2 (-351 *4)))) (-2835 (*1 *2 *3) (-12 (-4 *4 (-923 *2)) (-4 *2 (-517)) (-5 *1 (-133 *2 *4 *3)) (-4 *3 (-351 *4)))))
+(-10 -7 (-15 -2835 (|#1| |#3|)) (-15 -3890 (|#3| |#3|)) (-15 -2004 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-1994 (($ $ $) 8)) (-1603 (($ $) 7)) (-2516 (($ $ $) 6)))
+(((-134) (-131)) (T -134))
+((-1994 (*1 *1 *1 *1) (-4 *1 (-134))) (-1603 (*1 *1 *1) (-4 *1 (-134))) (-2516 (*1 *1 *1 *1) (-4 *1 (-134))))
+(-13 (-10 -8 (-15 -2516 ($ $ $)) (-15 -1603 ($ $)) (-15 -1994 ($ $ $))))
+((-3008 (((-108) $ $) NIL)) (-1389 (((-108) $) 30)) (-3845 (($ $) 43)) (-1923 (($) 17)) (-3032 (((-712)) 10)) (-3377 (($) 16)) (-1685 (($) 18)) (-1958 (((-712) $) 14)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2935 (((-108) $) 32)) (-2814 (($ $) 44)) (-3016 (((-854) $) 15)) (-2339 (((-1072) $) 38)) (-2226 (($ (-854)) 13)) (-2759 (((-108) $) 28)) (-2047 (((-1036) $) NIL)) (-1787 (($) 19)) (-2379 (((-108) $) 26)) (-3022 (((-796) $) 21)) (-2241 (($ (-712)) 11) (($ (-1072)) 42)) (-3341 (((-108) $) 36)) (-1736 (((-108) $) 34)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 7)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 8)))
+(((-135) (-13 (-782) (-10 -8 (-15 -1958 ((-712) $)) (-15 -2241 ($ (-712))) (-15 -2241 ($ (-1072))) (-15 -1923 ($)) (-15 -1685 ($)) (-15 -1787 ($)) (-15 -3845 ($ $)) (-15 -2814 ($ $)) (-15 -2379 ((-108) $)) (-15 -2759 ((-108) $)) (-15 -1736 ((-108) $)) (-15 -1389 ((-108) $)) (-15 -2935 ((-108) $)) (-15 -3341 ((-108) $))))) (T -135))
+((-1958 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-135)))) (-2241 (*1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-135)))) (-2241 (*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-135)))) (-1923 (*1 *1) (-5 *1 (-135))) (-1685 (*1 *1) (-5 *1 (-135))) (-1787 (*1 *1) (-5 *1 (-135))) (-3845 (*1 *1 *1) (-5 *1 (-135))) (-2814 (*1 *1 *1) (-5 *1 (-135))) (-2379 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-135)))) (-2759 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-135)))) (-1736 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-135)))) (-1389 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-135)))) (-2935 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-135)))) (-3341 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-135)))))
+(-13 (-782) (-10 -8 (-15 -1958 ((-712) $)) (-15 -2241 ($ (-712))) (-15 -2241 ($ (-1072))) (-15 -1923 ($)) (-15 -1685 ($)) (-15 -1787 ($)) (-15 -3845 ($ $)) (-15 -2814 ($ $)) (-15 -2379 ((-108) $)) (-15 -2759 ((-108) $)) (-15 -1736 ((-108) $)) (-15 -1389 ((-108) $)) (-15 -2935 ((-108) $)) (-15 -3341 ((-108) $))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11) (($ (-525)) 28)) (-1437 (((-3 $ "failed") $) 35)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-136) (-131)) (T -136))
+((-1437 (*1 *1 *1) (|partial| -4 *1 (-136))))
+(-13 (-975) (-10 -8 (-15 -1437 ((-3 $ "failed") $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 $) . T) ((-668) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3806 ((|#1| (-631 |#1|) |#1|) 19)))
+(((-137 |#1|) (-10 -7 (-15 -3806 (|#1| (-631 |#1|) |#1|))) (-160)) (T -137))
+((-3806 (*1 *2 *3 *2) (-12 (-5 *3 (-631 *2)) (-4 *2 (-160)) (-5 *1 (-137 *2)))))
+(-10 -7 (-15 -3806 (|#1| (-631 |#1|) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11) (($ (-525)) 28)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-138) (-131)) (T -138))
+NIL
+(-13 (-975))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 $) . T) ((-668) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-1393 (((-2 (|:| -2008 (-712)) (|:| -3482 (-385 |#2|)) (|:| |radicand| |#2|)) (-385 |#2|) (-712)) 70)) (-1704 (((-3 (-2 (|:| |radicand| (-385 |#2|)) (|:| |deg| (-712))) "failed") |#3|) 52)) (-2549 (((-2 (|:| -3482 (-385 |#2|)) (|:| |poly| |#3|)) |#3|) 37)) (-3764 ((|#1| |#3| |#3|) 40)) (-4132 ((|#3| |#3| (-385 |#2|) (-385 |#2|)) 19)) (-3911 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-385 |#2|)) (|:| |c2| (-385 |#2|)) (|:| |deg| (-712))) |#3| |#3|) 49)))
+(((-139 |#1| |#2| |#3|) (-10 -7 (-15 -2549 ((-2 (|:| -3482 (-385 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -1704 ((-3 (-2 (|:| |radicand| (-385 |#2|)) (|:| |deg| (-712))) "failed") |#3|)) (-15 -1393 ((-2 (|:| -2008 (-712)) (|:| -3482 (-385 |#2|)) (|:| |radicand| |#2|)) (-385 |#2|) (-712))) (-15 -3764 (|#1| |#3| |#3|)) (-15 -4132 (|#3| |#3| (-385 |#2|) (-385 |#2|))) (-15 -3911 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-385 |#2|)) (|:| |c2| (-385 |#2|)) (|:| |deg| (-712))) |#3| |#3|))) (-1129) (-1147 |#1|) (-1147 (-385 |#2|))) (T -139))
+((-3911 (*1 *2 *3 *3) (-12 (-4 *4 (-1129)) (-4 *5 (-1147 *4)) (-5 *2 (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-385 *5)) (|:| |c2| (-385 *5)) (|:| |deg| (-712)))) (-5 *1 (-139 *4 *5 *3)) (-4 *3 (-1147 (-385 *5))))) (-4132 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-385 *5)) (-4 *4 (-1129)) (-4 *5 (-1147 *4)) (-5 *1 (-139 *4 *5 *2)) (-4 *2 (-1147 *3)))) (-3764 (*1 *2 *3 *3) (-12 (-4 *4 (-1147 *2)) (-4 *2 (-1129)) (-5 *1 (-139 *2 *4 *3)) (-4 *3 (-1147 (-385 *4))))) (-1393 (*1 *2 *3 *4) (-12 (-5 *3 (-385 *6)) (-4 *5 (-1129)) (-4 *6 (-1147 *5)) (-5 *2 (-2 (|:| -2008 (-712)) (|:| -3482 *3) (|:| |radicand| *6))) (-5 *1 (-139 *5 *6 *7)) (-5 *4 (-712)) (-4 *7 (-1147 *3)))) (-1704 (*1 *2 *3) (|partial| -12 (-4 *4 (-1129)) (-4 *5 (-1147 *4)) (-5 *2 (-2 (|:| |radicand| (-385 *5)) (|:| |deg| (-712)))) (-5 *1 (-139 *4 *5 *3)) (-4 *3 (-1147 (-385 *5))))) (-2549 (*1 *2 *3) (-12 (-4 *4 (-1129)) (-4 *5 (-1147 *4)) (-5 *2 (-2 (|:| -3482 (-385 *5)) (|:| |poly| *3))) (-5 *1 (-139 *4 *5 *3)) (-4 *3 (-1147 (-385 *5))))))
+(-10 -7 (-15 -2549 ((-2 (|:| -3482 (-385 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -1704 ((-3 (-2 (|:| |radicand| (-385 |#2|)) (|:| |deg| (-712))) "failed") |#3|)) (-15 -1393 ((-2 (|:| -2008 (-712)) (|:| -3482 (-385 |#2|)) (|:| |radicand| |#2|)) (-385 |#2|) (-712))) (-15 -3764 (|#1| |#3| |#3|)) (-15 -4132 (|#3| |#3| (-385 |#2|) (-385 |#2|))) (-15 -3911 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-385 |#2|)) (|:| |c2| (-385 |#2|)) (|:| |deg| (-712))) |#3| |#3|)))
+((-2252 (((-3 (-591 (-1085 |#2|)) "failed") (-591 (-1085 |#2|)) (-1085 |#2|)) 32)))
+(((-140 |#1| |#2|) (-10 -7 (-15 -2252 ((-3 (-591 (-1085 |#2|)) "failed") (-591 (-1085 |#2|)) (-1085 |#2|)))) (-510) (-154 |#1|)) (T -140))
+((-2252 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-591 (-1085 *5))) (-5 *3 (-1085 *5)) (-4 *5 (-154 *4)) (-4 *4 (-510)) (-5 *1 (-140 *4 *5)))))
+(-10 -7 (-15 -2252 ((-3 (-591 (-1085 |#2|)) "failed") (-591 (-1085 |#2|)) (-1085 |#2|))))
+((-2305 (($ (-1 (-108) |#2|) $) 29)) (-3098 (($ $) 36)) (-3677 (($ (-1 (-108) |#2|) $) 27) (($ |#2| $) 32)) (-1227 ((|#2| (-1 |#2| |#2| |#2|) $) 22) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 24) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 34)) (-2069 (((-3 |#2| "failed") (-1 (-108) |#2|) $) 19)) (-1623 (((-108) (-1 (-108) |#2|) $) 16)) (-2064 (((-712) (-1 (-108) |#2|) $) 14) (((-712) |#2| $) NIL)) (-4158 (((-108) (-1 (-108) |#2|) $) 15)) (-4045 (((-712) $) 11)))
+(((-141 |#1| |#2|) (-10 -8 (-15 -3098 (|#1| |#1|)) (-15 -3677 (|#1| |#2| |#1|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2305 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3677 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2069 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -2064 ((-712) |#2| |#1|)) (-15 -2064 ((-712) (-1 (-108) |#2|) |#1|)) (-15 -1623 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4158 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4045 ((-712) |#1|))) (-142 |#2|) (-1125)) (T -141))
+NIL
+(-10 -8 (-15 -3098 (|#1| |#1|)) (-15 -3677 (|#1| |#2| |#1|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2305 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3677 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2069 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -2064 ((-712) |#2| |#1|)) (-15 -2064 ((-712) (-1 (-108) |#2|) |#1|)) (-15 -1623 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4158 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4045 ((-712) |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3891 (((-108) $ (-712)) 8)) (-2305 (($ (-1 (-108) |#1|) $) 44 (|has| $ (-6 -4250)))) (-3798 (($) 7 T CONST)) (-3098 (($ $) 41 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4250))) (($ |#1| $) 42 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $) 47 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 46 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 48)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1408 (((-501) $) 40 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 49)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-142 |#1|) (-131) (-1125)) (T -142))
+((-3036 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-4 *1 (-142 *3)))) (-2069 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-108) *2)) (-4 *1 (-142 *2)) (-4 *2 (-1125)))) (-1227 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4250)) (-4 *1 (-142 *2)) (-4 *2 (-1125)))) (-1227 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4250)) (-4 *1 (-142 *2)) (-4 *2 (-1125)))) (-3677 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4250)) (-4 *1 (-142 *3)) (-4 *3 (-1125)))) (-2305 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4250)) (-4 *1 (-142 *3)) (-4 *3 (-1125)))) (-1227 (*1 *2 *3 *1 *2 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1018)) (|has| *1 (-6 -4250)) (-4 *1 (-142 *2)) (-4 *2 (-1125)))) (-3677 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4250)) (-4 *1 (-142 *2)) (-4 *2 (-1125)) (-4 *2 (-1018)))) (-3098 (*1 *1 *1) (-12 (|has| *1 (-6 -4250)) (-4 *1 (-142 *2)) (-4 *2 (-1125)) (-4 *2 (-1018)))))
+(-13 (-464 |t#1|) (-10 -8 (-15 -3036 ($ (-591 |t#1|))) (-15 -2069 ((-3 |t#1| "failed") (-1 (-108) |t#1|) $)) (IF (|has| $ (-6 -4250)) (PROGN (-15 -1227 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -1227 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -3677 ($ (-1 (-108) |t#1|) $)) (-15 -2305 ($ (-1 (-108) |t#1|) $)) (IF (|has| |t#1| (-1018)) (PROGN (-15 -1227 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -3677 ($ |t#1| $)) (-15 -3098 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-4163 (((-3 $ "failed") $) 87)) (-2824 (((-108) $) NIL)) (-1480 (($ |#2| (-591 (-854))) 57)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1216 (($ (-854)) 48)) (-4224 (((-128)) 23)) (-3022 (((-796) $) 70) (($ (-525)) 46) (($ |#2|) 47)) (-2560 ((|#2| $ (-591 (-854))) 60)) (-2128 (((-712)) 20)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 40 T CONST)) (-4197 (($) 44 T CONST)) (-4096 (((-108) $ $) 26)) (-4173 (($ $ |#2|) NIL)) (-4164 (($ $) 34) (($ $ $) 32)) (-4156 (($ $ $) 30)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 37) (($ $ $) 52) (($ |#2| $) 39) (($ $ |#2|) NIL)))
+(((-143 |#1| |#2| |#3|) (-13 (-975) (-37 |#2|) (-1178 |#2|) (-10 -8 (-15 -1216 ($ (-854))) (-15 -1480 ($ |#2| (-591 (-854)))) (-15 -2560 (|#2| $ (-591 (-854)))) (-15 -4163 ((-3 $ "failed") $)))) (-854) (-341) (-924 |#1| |#2|)) (T -143))
+((-4163 (*1 *1 *1) (|partial| -12 (-5 *1 (-143 *2 *3 *4)) (-14 *2 (-854)) (-4 *3 (-341)) (-14 *4 (-924 *2 *3)))) (-1216 (*1 *1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-143 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-341)) (-14 *5 (-924 *3 *4)))) (-1480 (*1 *1 *2 *3) (-12 (-5 *3 (-591 (-854))) (-5 *1 (-143 *4 *2 *5)) (-14 *4 (-854)) (-4 *2 (-341)) (-14 *5 (-924 *4 *2)))) (-2560 (*1 *2 *1 *3) (-12 (-5 *3 (-591 (-854))) (-4 *2 (-341)) (-5 *1 (-143 *4 *2 *5)) (-14 *4 (-854)) (-14 *5 (-924 *4 *2)))))
+(-13 (-975) (-37 |#2|) (-1178 |#2|) (-10 -8 (-15 -1216 ($ (-854))) (-15 -1480 ($ |#2| (-591 (-854)))) (-15 -2560 (|#2| $ (-591 (-854)))) (-15 -4163 ((-3 $ "failed") $))))
+((-2407 (((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-591 (-591 (-876 (-205)))) (-205) (-205) (-205) (-205)) 38)) (-3573 (((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-860) (-385 (-525)) (-385 (-525))) 63) (((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-860)) 64)) (-1218 (((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-591 (-591 (-876 (-205))))) 67) (((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-591 (-876 (-205)))) 66) (((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-860) (-385 (-525)) (-385 (-525))) 58) (((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-860)) 59)))
+(((-144) (-10 -7 (-15 -1218 ((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-860))) (-15 -1218 ((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-860) (-385 (-525)) (-385 (-525)))) (-15 -3573 ((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-860))) (-15 -3573 ((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-860) (-385 (-525)) (-385 (-525)))) (-15 -2407 ((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-591 (-591 (-876 (-205)))) (-205) (-205) (-205) (-205))) (-15 -1218 ((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-591 (-876 (-205))))) (-15 -1218 ((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-591 (-591 (-876 (-205)))))))) (T -144))
+((-1218 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205))))) (-5 *1 (-144)) (-5 *3 (-591 (-591 (-876 (-205))))))) (-1218 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205))))) (-5 *1 (-144)) (-5 *3 (-591 (-876 (-205)))))) (-2407 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *4 (-205)) (-5 *2 (-2 (|:| |brans| (-591 (-591 (-876 *4)))) (|:| |xValues| (-1013 *4)) (|:| |yValues| (-1013 *4)))) (-5 *1 (-144)) (-5 *3 (-591 (-591 (-876 *4)))))) (-3573 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-860)) (-5 *4 (-385 (-525))) (-5 *2 (-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205))))) (-5 *1 (-144)))) (-3573 (*1 *2 *3) (-12 (-5 *3 (-860)) (-5 *2 (-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205))))) (-5 *1 (-144)))) (-1218 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-860)) (-5 *4 (-385 (-525))) (-5 *2 (-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205))))) (-5 *1 (-144)))) (-1218 (*1 *2 *3) (-12 (-5 *3 (-860)) (-5 *2 (-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205))))) (-5 *1 (-144)))))
+(-10 -7 (-15 -1218 ((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-860))) (-15 -1218 ((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-860) (-385 (-525)) (-385 (-525)))) (-15 -3573 ((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-860))) (-15 -3573 ((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-860) (-385 (-525)) (-385 (-525)))) (-15 -2407 ((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-591 (-591 (-876 (-205)))) (-205) (-205) (-205) (-205))) (-15 -1218 ((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-591 (-876 (-205))))) (-15 -1218 ((-2 (|:| |brans| (-591 (-591 (-876 (-205))))) (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))) (-591 (-591 (-876 (-205)))))))
+((-2488 (((-591 (-157 |#2|)) |#1| |#2|) 45)))
+(((-145 |#1| |#2|) (-10 -7 (-15 -2488 ((-591 (-157 |#2|)) |#1| |#2|))) (-1147 (-157 (-525))) (-13 (-341) (-786))) (T -145))
+((-2488 (*1 *2 *3 *4) (-12 (-5 *2 (-591 (-157 *4))) (-5 *1 (-145 *3 *4)) (-4 *3 (-1147 (-157 (-525)))) (-4 *4 (-13 (-341) (-786))))))
+(-10 -7 (-15 -2488 ((-591 (-157 |#2|)) |#1| |#2|)))
+((-3008 (((-108) $ $) NIL)) (-3461 (($) 16)) (-3146 (($) 15)) (-2421 (((-854)) 23)) (-2339 (((-1072) $) NIL)) (-2853 (((-525) $) 20)) (-2047 (((-1036) $) NIL)) (-3807 (($) 17)) (-1872 (($ (-525)) 24)) (-3022 (((-796) $) 30)) (-3772 (($) 18)) (-4096 (((-108) $ $) 14)) (-4156 (($ $ $) 13)) (* (($ (-854) $) 22) (($ (-205) $) 8)))
+(((-146) (-13 (-25) (-10 -8 (-15 * ($ (-854) $)) (-15 * ($ (-205) $)) (-15 -4156 ($ $ $)) (-15 -3146 ($)) (-15 -3461 ($)) (-15 -3807 ($)) (-15 -3772 ($)) (-15 -2853 ((-525) $)) (-15 -2421 ((-854))) (-15 -1872 ($ (-525)))))) (T -146))
+((-4156 (*1 *1 *1 *1) (-5 *1 (-146))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-854)) (-5 *1 (-146)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-205)) (-5 *1 (-146)))) (-3146 (*1 *1) (-5 *1 (-146))) (-3461 (*1 *1) (-5 *1 (-146))) (-3807 (*1 *1) (-5 *1 (-146))) (-3772 (*1 *1) (-5 *1 (-146))) (-2853 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-146)))) (-2421 (*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-146)))) (-1872 (*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-146)))))
+(-13 (-25) (-10 -8 (-15 * ($ (-854) $)) (-15 * ($ (-205) $)) (-15 -4156 ($ $ $)) (-15 -3146 ($)) (-15 -3461 ($)) (-15 -3807 ($)) (-15 -3772 ($)) (-15 -2853 ((-525) $)) (-15 -2421 ((-854))) (-15 -1872 ($ (-525)))))
+((-2329 ((|#2| |#2| (-1011 |#2|)) 88) ((|#2| |#2| (-1089)) 68)) (-3783 ((|#2| |#2| (-1011 |#2|)) 87) ((|#2| |#2| (-1089)) 67)) (-1994 ((|#2| |#2| |#2|) 27)) (-3219 (((-110) (-110)) 99)) (-3117 ((|#2| (-591 |#2|)) 117)) (-2950 ((|#2| (-591 |#2|)) 135)) (-2857 ((|#2| (-591 |#2|)) 125)) (-2519 ((|#2| |#2|) 123)) (-1292 ((|#2| (-591 |#2|)) 111)) (-3122 ((|#2| (-591 |#2|)) 112)) (-2663 ((|#2| (-591 |#2|)) 133)) (-3992 ((|#2| |#2| (-1089)) 56) ((|#2| |#2|) 55)) (-1603 ((|#2| |#2|) 23)) (-2516 ((|#2| |#2| |#2|) 26)) (-2661 (((-108) (-110)) 49)) (** ((|#2| |#2| |#2|) 41)))
+(((-147 |#1| |#2|) (-10 -7 (-15 -2661 ((-108) (-110))) (-15 -3219 ((-110) (-110))) (-15 ** (|#2| |#2| |#2|)) (-15 -2516 (|#2| |#2| |#2|)) (-15 -1994 (|#2| |#2| |#2|)) (-15 -1603 (|#2| |#2|)) (-15 -3992 (|#2| |#2|)) (-15 -3992 (|#2| |#2| (-1089))) (-15 -2329 (|#2| |#2| (-1089))) (-15 -2329 (|#2| |#2| (-1011 |#2|))) (-15 -3783 (|#2| |#2| (-1089))) (-15 -3783 (|#2| |#2| (-1011 |#2|))) (-15 -2519 (|#2| |#2|)) (-15 -2663 (|#2| (-591 |#2|))) (-15 -2857 (|#2| (-591 |#2|))) (-15 -2950 (|#2| (-591 |#2|))) (-15 -1292 (|#2| (-591 |#2|))) (-15 -3122 (|#2| (-591 |#2|))) (-15 -3117 (|#2| (-591 |#2|)))) (-13 (-788) (-517)) (-408 |#1|)) (T -147))
+((-3117 (*1 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-408 *4)) (-5 *1 (-147 *4 *2)) (-4 *4 (-13 (-788) (-517))))) (-3122 (*1 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-408 *4)) (-5 *1 (-147 *4 *2)) (-4 *4 (-13 (-788) (-517))))) (-1292 (*1 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-408 *4)) (-5 *1 (-147 *4 *2)) (-4 *4 (-13 (-788) (-517))))) (-2950 (*1 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-408 *4)) (-5 *1 (-147 *4 *2)) (-4 *4 (-13 (-788) (-517))))) (-2857 (*1 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-408 *4)) (-5 *1 (-147 *4 *2)) (-4 *4 (-13 (-788) (-517))))) (-2663 (*1 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-408 *4)) (-5 *1 (-147 *4 *2)) (-4 *4 (-13 (-788) (-517))))) (-2519 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-147 *3 *2)) (-4 *2 (-408 *3)))) (-3783 (*1 *2 *2 *3) (-12 (-5 *3 (-1011 *2)) (-4 *2 (-408 *4)) (-4 *4 (-13 (-788) (-517))) (-5 *1 (-147 *4 *2)))) (-3783 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-788) (-517))) (-5 *1 (-147 *4 *2)) (-4 *2 (-408 *4)))) (-2329 (*1 *2 *2 *3) (-12 (-5 *3 (-1011 *2)) (-4 *2 (-408 *4)) (-4 *4 (-13 (-788) (-517))) (-5 *1 (-147 *4 *2)))) (-2329 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-788) (-517))) (-5 *1 (-147 *4 *2)) (-4 *2 (-408 *4)))) (-3992 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-788) (-517))) (-5 *1 (-147 *4 *2)) (-4 *2 (-408 *4)))) (-3992 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-147 *3 *2)) (-4 *2 (-408 *3)))) (-1603 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-147 *3 *2)) (-4 *2 (-408 *3)))) (-1994 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-147 *3 *2)) (-4 *2 (-408 *3)))) (-2516 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-147 *3 *2)) (-4 *2 (-408 *3)))) (** (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-147 *3 *2)) (-4 *2 (-408 *3)))) (-3219 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-788) (-517))) (-5 *1 (-147 *3 *4)) (-4 *4 (-408 *3)))) (-2661 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-108)) (-5 *1 (-147 *4 *5)) (-4 *5 (-408 *4)))))
+(-10 -7 (-15 -2661 ((-108) (-110))) (-15 -3219 ((-110) (-110))) (-15 ** (|#2| |#2| |#2|)) (-15 -2516 (|#2| |#2| |#2|)) (-15 -1994 (|#2| |#2| |#2|)) (-15 -1603 (|#2| |#2|)) (-15 -3992 (|#2| |#2|)) (-15 -3992 (|#2| |#2| (-1089))) (-15 -2329 (|#2| |#2| (-1089))) (-15 -2329 (|#2| |#2| (-1011 |#2|))) (-15 -3783 (|#2| |#2| (-1089))) (-15 -3783 (|#2| |#2| (-1011 |#2|))) (-15 -2519 (|#2| |#2|)) (-15 -2663 (|#2| (-591 |#2|))) (-15 -2857 (|#2| (-591 |#2|))) (-15 -2950 (|#2| (-591 |#2|))) (-15 -1292 (|#2| (-591 |#2|))) (-15 -3122 (|#2| (-591 |#2|))) (-15 -3117 (|#2| (-591 |#2|))))
+((-1391 ((|#1| |#1| |#1|) 53)) (-2245 ((|#1| |#1| |#1|) 50)) (-1994 ((|#1| |#1| |#1|) 44)) (-3670 ((|#1| |#1|) 35)) (-3503 ((|#1| |#1| (-591 |#1|)) 43)) (-1603 ((|#1| |#1|) 37)) (-2516 ((|#1| |#1| |#1|) 40)))
+(((-148 |#1|) (-10 -7 (-15 -2516 (|#1| |#1| |#1|)) (-15 -1603 (|#1| |#1|)) (-15 -3503 (|#1| |#1| (-591 |#1|))) (-15 -3670 (|#1| |#1|)) (-15 -1994 (|#1| |#1| |#1|)) (-15 -2245 (|#1| |#1| |#1|)) (-15 -1391 (|#1| |#1| |#1|))) (-510)) (T -148))
+((-1391 (*1 *2 *2 *2) (-12 (-5 *1 (-148 *2)) (-4 *2 (-510)))) (-2245 (*1 *2 *2 *2) (-12 (-5 *1 (-148 *2)) (-4 *2 (-510)))) (-1994 (*1 *2 *2 *2) (-12 (-5 *1 (-148 *2)) (-4 *2 (-510)))) (-3670 (*1 *2 *2) (-12 (-5 *1 (-148 *2)) (-4 *2 (-510)))) (-3503 (*1 *2 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-510)) (-5 *1 (-148 *2)))) (-1603 (*1 *2 *2) (-12 (-5 *1 (-148 *2)) (-4 *2 (-510)))) (-2516 (*1 *2 *2 *2) (-12 (-5 *1 (-148 *2)) (-4 *2 (-510)))))
+(-10 -7 (-15 -2516 (|#1| |#1| |#1|)) (-15 -1603 (|#1| |#1|)) (-15 -3503 (|#1| |#1| (-591 |#1|))) (-15 -3670 (|#1| |#1|)) (-15 -1994 (|#1| |#1| |#1|)) (-15 -2245 (|#1| |#1| |#1|)) (-15 -1391 (|#1| |#1| |#1|)))
+((-2329 (($ $ (-1089)) 12) (($ $ (-1011 $)) 11)) (-3783 (($ $ (-1089)) 10) (($ $ (-1011 $)) 9)) (-1994 (($ $ $) 8)) (-3992 (($ $) 14) (($ $ (-1089)) 13)) (-1603 (($ $) 7)) (-2516 (($ $ $) 6)))
+(((-149) (-131)) (T -149))
+((-3992 (*1 *1 *1) (-4 *1 (-149))) (-3992 (*1 *1 *1 *2) (-12 (-4 *1 (-149)) (-5 *2 (-1089)))) (-2329 (*1 *1 *1 *2) (-12 (-4 *1 (-149)) (-5 *2 (-1089)))) (-2329 (*1 *1 *1 *2) (-12 (-5 *2 (-1011 *1)) (-4 *1 (-149)))) (-3783 (*1 *1 *1 *2) (-12 (-4 *1 (-149)) (-5 *2 (-1089)))) (-3783 (*1 *1 *1 *2) (-12 (-5 *2 (-1011 *1)) (-4 *1 (-149)))))
+(-13 (-134) (-10 -8 (-15 -3992 ($ $)) (-15 -3992 ($ $ (-1089))) (-15 -2329 ($ $ (-1089))) (-15 -2329 ($ $ (-1011 $))) (-15 -3783 ($ $ (-1089))) (-15 -3783 ($ $ (-1011 $)))))
+(((-134) . T))
+((-3008 (((-108) $ $) NIL)) (-1262 (($ (-525)) 13) (($ $ $) 14)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 17)) (-4096 (((-108) $ $) 9)))
+(((-150) (-13 (-1018) (-10 -8 (-15 -1262 ($ (-525))) (-15 -1262 ($ $ $))))) (T -150))
+((-1262 (*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-150)))) (-1262 (*1 *1 *1 *1) (-5 *1 (-150))))
+(-13 (-1018) (-10 -8 (-15 -1262 ($ (-525))) (-15 -1262 ($ $ $))))
+((-3219 (((-110) (-1089)) 97)))
+(((-151) (-10 -7 (-15 -3219 ((-110) (-1089))))) (T -151))
+((-3219 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-110)) (-5 *1 (-151)))))
+(-10 -7 (-15 -3219 ((-110) (-1089))))
+((-2792 ((|#3| |#3|) 19)))
+(((-152 |#1| |#2| |#3|) (-10 -7 (-15 -2792 (|#3| |#3|))) (-975) (-1147 |#1|) (-1147 |#2|)) (T -152))
+((-2792 (*1 *2 *2) (-12 (-4 *3 (-975)) (-4 *4 (-1147 *3)) (-5 *1 (-152 *3 *4 *2)) (-4 *2 (-1147 *4)))))
+(-10 -7 (-15 -2792 (|#3| |#3|)))
+((-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 217)) (-2569 ((|#2| $) 96)) (-1987 (($ $) 245)) (-3169 (($ $) 239)) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) 40)) (-1431 (($ $) 243)) (-3144 (($ $) 237)) (-1251 (((-3 (-525) "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL) (((-3 |#2| "failed") $) 141)) (-3528 (((-525) $) NIL) (((-385 (-525)) $) NIL) ((|#2| $) 139)) (-2129 (($ $ $) 222)) (-3305 (((-631 (-525)) (-631 $)) NIL) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) 155) (((-631 |#2|) (-631 $)) 149)) (-1227 (($ (-1085 |#2|)) 119) (((-3 $ "failed") (-385 (-1085 |#2|))) NIL)) (-4163 (((-3 $ "failed") $) 209)) (-1511 (((-3 (-385 (-525)) "failed") $) 199)) (-1352 (((-108) $) 194)) (-1726 (((-385 (-525)) $) 197)) (-4073 (((-854)) 89)) (-2110 (($ $ $) 224)) (-2694 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 261)) (-1784 (($) 234)) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 186) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 191)) (-2771 ((|#2| $) 94)) (-1382 (((-1085 |#2|) $) 121)) (-1340 (($ (-1 |#2| |#2|) $) 102)) (-1488 (($ $) 236)) (-1223 (((-1085 |#2|) $) 120)) (-1622 (($ $) 202)) (-2171 (($) 97)) (-2916 (((-396 (-1085 $)) (-1085 $)) 88)) (-1626 (((-396 (-1085 $)) (-1085 $)) 57)) (-2089 (((-3 $ "failed") $ |#2|) 204) (((-3 $ "failed") $ $) 207)) (-1409 (($ $) 235)) (-1712 (((-712) $) 219)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 229)) (-2976 ((|#2| (-1171 $)) NIL) ((|#2|) 91)) (-3266 (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-1 |#2| |#2|)) 113) (($ $ (-591 (-1089)) (-591 (-712))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089)) NIL) (($ $ (-712)) NIL) (($ $) NIL)) (-1478 (((-1085 |#2|)) 114)) (-1973 (($ $) 244)) (-3156 (($ $) 238)) (-3572 (((-1171 |#2|) $ (-1171 $)) 128) (((-631 |#2|) (-1171 $) (-1171 $)) NIL) (((-1171 |#2|) $) 110) (((-631 |#2|) (-1171 $)) NIL)) (-1408 (((-1171 |#2|) $) NIL) (($ (-1171 |#2|)) NIL) (((-1085 |#2|) $) NIL) (($ (-1085 |#2|)) NIL) (((-825 (-525)) $) 177) (((-825 (-357)) $) 181) (((-157 (-357)) $) 167) (((-157 (-205)) $) 162) (((-501) $) 173)) (-3228 (($ $) 98)) (-3022 (((-796) $) 138) (($ (-525)) NIL) (($ |#2|) NIL) (($ (-385 (-525))) NIL) (($ $) NIL)) (-3806 (((-1085 |#2|) $) 23)) (-2128 (((-712)) 100)) (-1563 (($ $) 248)) (-1371 (($ $) 242)) (-1515 (($ $) 246)) (-1346 (($ $) 240)) (-1398 ((|#2| $) 233)) (-1527 (($ $) 247)) (-1358 (($ $) 241)) (-1539 (($ $) 157)) (-4096 (((-108) $ $) 104)) (-4112 (((-108) $ $) 193)) (-4164 (($ $) 106) (($ $ $) NIL)) (-4156 (($ $ $) 105)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-385 (-525))) 267) (($ $ $) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 112) (($ $ $) 142) (($ $ |#2|) NIL) (($ |#2| $) 108) (($ (-385 (-525)) $) NIL) (($ $ (-385 (-525))) NIL)))
+(((-153 |#1| |#2|) (-10 -8 (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -3022 (|#1| |#1|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3450 ((-2 (|:| -2999 |#1|) (|:| -4237 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -1712 ((-712) |#1|)) (-15 -3999 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -2110 (|#1| |#1| |#1|)) (-15 -2129 (|#1| |#1| |#1|)) (-15 -1622 (|#1| |#1|)) (-15 ** (|#1| |#1| (-525))) (-15 * (|#1| |#1| (-385 (-525)))) (-15 * (|#1| (-385 (-525)) |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -4112 ((-108) |#1| |#1|)) (-15 -1408 ((-501) |#1|)) (-15 -1408 ((-157 (-205)) |#1|)) (-15 -1408 ((-157 (-357)) |#1|)) (-15 -3169 (|#1| |#1|)) (-15 -3144 (|#1| |#1|)) (-15 -3156 (|#1| |#1|)) (-15 -1358 (|#1| |#1|)) (-15 -1346 (|#1| |#1|)) (-15 -1371 (|#1| |#1|)) (-15 -1973 (|#1| |#1|)) (-15 -1431 (|#1| |#1|)) (-15 -1987 (|#1| |#1|)) (-15 -1527 (|#1| |#1|)) (-15 -1515 (|#1| |#1|)) (-15 -1563 (|#1| |#1|)) (-15 -1488 (|#1| |#1|)) (-15 -1409 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -1784 (|#1|)) (-15 ** (|#1| |#1| (-385 (-525)))) (-15 -1626 ((-396 (-1085 |#1|)) (-1085 |#1|))) (-15 -2916 ((-396 (-1085 |#1|)) (-1085 |#1|))) (-15 -2252 ((-3 (-591 (-1085 |#1|)) "failed") (-591 (-1085 |#1|)) (-1085 |#1|))) (-15 -1511 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -1726 ((-385 (-525)) |#1|)) (-15 -1352 ((-108) |#1|)) (-15 -2694 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -1398 (|#2| |#1|)) (-15 -1539 (|#1| |#1|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3228 (|#1| |#1|)) (-15 -2171 (|#1|)) (-15 -1408 ((-825 (-357)) |#1|)) (-15 -1408 ((-825 (-525)) |#1|)) (-15 -2011 ((-822 (-357) |#1|) |#1| (-825 (-357)) (-822 (-357) |#1|))) (-15 -2011 ((-822 (-525) |#1|) |#1| (-825 (-525)) (-822 (-525) |#1|))) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -1227 ((-3 |#1| "failed") (-385 (-1085 |#2|)))) (-15 -1223 ((-1085 |#2|) |#1|)) (-15 -1408 (|#1| (-1085 |#2|))) (-15 -1227 (|#1| (-1085 |#2|))) (-15 -1478 ((-1085 |#2|))) (-15 -3305 ((-631 |#2|) (-631 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-631 (-525)) (-631 |#1|))) (-15 -3528 (|#2| |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -1408 ((-1085 |#2|) |#1|)) (-15 -2976 (|#2|)) (-15 -1408 (|#1| (-1171 |#2|))) (-15 -1408 ((-1171 |#2|) |#1|)) (-15 -3572 ((-631 |#2|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1|)) (-15 -1382 ((-1085 |#2|) |#1|)) (-15 -3806 ((-1085 |#2|) |#1|)) (-15 -2976 (|#2| (-1171 |#1|))) (-15 -3572 ((-631 |#2|) (-1171 |#1|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1| (-1171 |#1|))) (-15 -2771 (|#2| |#1|)) (-15 -2569 (|#2| |#1|)) (-15 -4073 ((-854))) (-15 -3022 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3022 (|#1| (-525))) (-15 -2128 ((-712))) (-15 ** (|#1| |#1| (-712))) (-15 -4163 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-854))) (-15 * (|#1| (-525) |#1|)) (-15 -4164 (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-854) |#1|)) (-15 -4156 (|#1| |#1| |#1|)) (-15 -3022 ((-796) |#1|)) (-15 -4096 ((-108) |#1| |#1|))) (-154 |#2|) (-160)) (T -153))
+((-2128 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-712)) (-5 *1 (-153 *3 *4)) (-4 *3 (-154 *4)))) (-4073 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-854)) (-5 *1 (-153 *3 *4)) (-4 *3 (-154 *4)))) (-2976 (*1 *2) (-12 (-4 *2 (-160)) (-5 *1 (-153 *3 *2)) (-4 *3 (-154 *2)))) (-1478 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-1085 *4)) (-5 *1 (-153 *3 *4)) (-4 *3 (-154 *4)))))
+(-10 -8 (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -3022 (|#1| |#1|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3450 ((-2 (|:| -2999 |#1|) (|:| -4237 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -1712 ((-712) |#1|)) (-15 -3999 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -2110 (|#1| |#1| |#1|)) (-15 -2129 (|#1| |#1| |#1|)) (-15 -1622 (|#1| |#1|)) (-15 ** (|#1| |#1| (-525))) (-15 * (|#1| |#1| (-385 (-525)))) (-15 * (|#1| (-385 (-525)) |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -4112 ((-108) |#1| |#1|)) (-15 -1408 ((-501) |#1|)) (-15 -1408 ((-157 (-205)) |#1|)) (-15 -1408 ((-157 (-357)) |#1|)) (-15 -3169 (|#1| |#1|)) (-15 -3144 (|#1| |#1|)) (-15 -3156 (|#1| |#1|)) (-15 -1358 (|#1| |#1|)) (-15 -1346 (|#1| |#1|)) (-15 -1371 (|#1| |#1|)) (-15 -1973 (|#1| |#1|)) (-15 -1431 (|#1| |#1|)) (-15 -1987 (|#1| |#1|)) (-15 -1527 (|#1| |#1|)) (-15 -1515 (|#1| |#1|)) (-15 -1563 (|#1| |#1|)) (-15 -1488 (|#1| |#1|)) (-15 -1409 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -1784 (|#1|)) (-15 ** (|#1| |#1| (-385 (-525)))) (-15 -1626 ((-396 (-1085 |#1|)) (-1085 |#1|))) (-15 -2916 ((-396 (-1085 |#1|)) (-1085 |#1|))) (-15 -2252 ((-3 (-591 (-1085 |#1|)) "failed") (-591 (-1085 |#1|)) (-1085 |#1|))) (-15 -1511 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -1726 ((-385 (-525)) |#1|)) (-15 -1352 ((-108) |#1|)) (-15 -2694 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -1398 (|#2| |#1|)) (-15 -1539 (|#1| |#1|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3228 (|#1| |#1|)) (-15 -2171 (|#1|)) (-15 -1408 ((-825 (-357)) |#1|)) (-15 -1408 ((-825 (-525)) |#1|)) (-15 -2011 ((-822 (-357) |#1|) |#1| (-825 (-357)) (-822 (-357) |#1|))) (-15 -2011 ((-822 (-525) |#1|) |#1| (-825 (-525)) (-822 (-525) |#1|))) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -1227 ((-3 |#1| "failed") (-385 (-1085 |#2|)))) (-15 -1223 ((-1085 |#2|) |#1|)) (-15 -1408 (|#1| (-1085 |#2|))) (-15 -1227 (|#1| (-1085 |#2|))) (-15 -1478 ((-1085 |#2|))) (-15 -3305 ((-631 |#2|) (-631 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-631 (-525)) (-631 |#1|))) (-15 -3528 (|#2| |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -1408 ((-1085 |#2|) |#1|)) (-15 -2976 (|#2|)) (-15 -1408 (|#1| (-1171 |#2|))) (-15 -1408 ((-1171 |#2|) |#1|)) (-15 -3572 ((-631 |#2|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1|)) (-15 -1382 ((-1085 |#2|) |#1|)) (-15 -3806 ((-1085 |#2|) |#1|)) (-15 -2976 (|#2| (-1171 |#1|))) (-15 -3572 ((-631 |#2|) (-1171 |#1|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1| (-1171 |#1|))) (-15 -2771 (|#2| |#1|)) (-15 -2569 (|#2| |#1|)) (-15 -4073 ((-854))) (-15 -3022 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3022 (|#1| (-525))) (-15 -2128 ((-712))) (-15 ** (|#1| |#1| (-712))) (-15 -4163 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-854))) (-15 * (|#1| (-525) |#1|)) (-15 -4164 (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-854) |#1|)) (-15 -4156 (|#1| |#1| |#1|)) (-15 -3022 ((-796) |#1|)) (-15 -4096 ((-108) |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 93 (-3321 (|has| |#1| (-517)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842)))))) (-3706 (($ $) 94 (-3321 (|has| |#1| (-517)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842)))))) (-1715 (((-108) $) 96 (-3321 (|has| |#1| (-517)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842)))))) (-2796 (((-631 |#1|) (-1171 $)) 46) (((-631 |#1|)) 61)) (-2569 ((|#1| $) 52)) (-1987 (($ $) 228 (|has| |#1| (-1111)))) (-3169 (($ $) 211 (|has| |#1| (-1111)))) (-3734 (((-1099 (-854) (-712)) (-525)) 147 (|has| |#1| (-327)))) (-2157 (((-3 $ "failed") $ $) 19)) (-1965 (((-396 (-1085 $)) (-1085 $)) 242 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))))) (-1291 (($ $) 113 (-3321 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-341))))) (-2827 (((-396 $) $) 114 (-3321 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-341))))) (-1361 (($ $) 241 (-12 (|has| |#1| (-932)) (|has| |#1| (-1111))))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) 245 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))))) (-1947 (((-108) $ $) 104 (|has| |#1| (-286)))) (-3032 (((-712)) 87 (|has| |#1| (-346)))) (-1431 (($ $) 227 (|has| |#1| (-1111)))) (-3144 (($ $) 212 (|has| |#1| (-1111)))) (-1719 (($ $) 226 (|has| |#1| (-1111)))) (-1321 (($ $) 213 (|has| |#1| (-1111)))) (-3798 (($) 17 T CONST)) (-1251 (((-3 (-525) "failed") $) 169 (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) 167 (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) 166)) (-3528 (((-525) $) 170 (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) 168 (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) 165)) (-4171 (($ (-1171 |#1|) (-1171 $)) 48) (($ (-1171 |#1|)) 64)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) 153 (|has| |#1| (-327)))) (-2129 (($ $ $) 108 (|has| |#1| (-286)))) (-3922 (((-631 |#1|) $ (-1171 $)) 53) (((-631 |#1|) $) 59)) (-3305 (((-631 (-525)) (-631 $)) 164 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 163 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) 162) (((-631 |#1|) (-631 $)) 161)) (-1227 (($ (-1085 |#1|)) 158) (((-3 $ "failed") (-385 (-1085 |#1|))) 155 (|has| |#1| (-341)))) (-4163 (((-3 $ "failed") $) 34)) (-1373 ((|#1| $) 253)) (-1511 (((-3 (-385 (-525)) "failed") $) 246 (|has| |#1| (-510)))) (-1352 (((-108) $) 248 (|has| |#1| (-510)))) (-1726 (((-385 (-525)) $) 247 (|has| |#1| (-510)))) (-4073 (((-854)) 54)) (-3377 (($) 90 (|has| |#1| (-346)))) (-2110 (($ $ $) 107 (|has| |#1| (-286)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 102 (|has| |#1| (-286)))) (-3944 (($) 149 (|has| |#1| (-327)))) (-4104 (((-108) $) 150 (|has| |#1| (-327)))) (-2299 (($ $ (-712)) 141 (|has| |#1| (-327))) (($ $) 140 (|has| |#1| (-327)))) (-2744 (((-108) $) 115 (-3321 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-341))))) (-2694 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 249 (-12 (|has| |#1| (-984)) (|has| |#1| (-1111))))) (-1784 (($) 238 (|has| |#1| (-1111)))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 261 (|has| |#1| (-819 (-525)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 260 (|has| |#1| (-819 (-357))))) (-3873 (((-854) $) 152 (|has| |#1| (-327))) (((-774 (-854)) $) 138 (|has| |#1| (-327)))) (-2824 (((-108) $) 31)) (-3956 (($ $ (-525)) 240 (-12 (|has| |#1| (-932)) (|has| |#1| (-1111))))) (-2771 ((|#1| $) 51)) (-2085 (((-3 $ "failed") $) 142 (|has| |#1| (-327)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 111 (|has| |#1| (-286)))) (-1382 (((-1085 |#1|) $) 44 (|has| |#1| (-341)))) (-3741 (($ $ $) 207 (|has| |#1| (-788)))) (-2478 (($ $ $) 206 (|has| |#1| (-788)))) (-1340 (($ (-1 |#1| |#1|) $) 262)) (-3016 (((-854) $) 89 (|has| |#1| (-346)))) (-1488 (($ $) 235 (|has| |#1| (-1111)))) (-1223 (((-1085 |#1|) $) 156)) (-1356 (($ (-591 $)) 100 (-3321 (|has| |#1| (-286)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842))))) (($ $ $) 99 (-3321 (|has| |#1| (-286)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842)))))) (-2339 (((-1072) $) 9)) (-1622 (($ $) 116 (|has| |#1| (-341)))) (-3506 (($) 143 (|has| |#1| (-327)) CONST)) (-2226 (($ (-854)) 88 (|has| |#1| (-346)))) (-2171 (($) 257)) (-1386 ((|#1| $) 254)) (-2047 (((-1036) $) 10)) (-3857 (($) 160)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 101 (-3321 (|has| |#1| (-286)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842)))))) (-1399 (($ (-591 $)) 98 (-3321 (|has| |#1| (-286)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842))))) (($ $ $) 97 (-3321 (|has| |#1| (-286)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842)))))) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) 146 (|has| |#1| (-327)))) (-2916 (((-396 (-1085 $)) (-1085 $)) 244 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))))) (-1626 (((-396 (-1085 $)) (-1085 $)) 243 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))))) (-1348 (((-396 $) $) 112 (-3321 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-341))))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-286))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 109 (|has| |#1| (-286)))) (-2089 (((-3 $ "failed") $ |#1|) 252 (|has| |#1| (-517))) (((-3 $ "failed") $ $) 92 (-3321 (|has| |#1| (-517)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842)))))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 103 (|has| |#1| (-286)))) (-1409 (($ $) 236 (|has| |#1| (-1111)))) (-4132 (($ $ (-591 |#1|) (-591 |#1|)) 268 (|has| |#1| (-288 |#1|))) (($ $ |#1| |#1|) 267 (|has| |#1| (-288 |#1|))) (($ $ (-273 |#1|)) 266 (|has| |#1| (-288 |#1|))) (($ $ (-591 (-273 |#1|))) 265 (|has| |#1| (-288 |#1|))) (($ $ (-591 (-1089)) (-591 |#1|)) 264 (|has| |#1| (-486 (-1089) |#1|))) (($ $ (-1089) |#1|) 263 (|has| |#1| (-486 (-1089) |#1|)))) (-1712 (((-712) $) 105 (|has| |#1| (-286)))) (-3164 (($ $ |#1|) 269 (|has| |#1| (-265 |#1| |#1|)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 106 (|has| |#1| (-286)))) (-2976 ((|#1| (-1171 $)) 47) ((|#1|) 60)) (-2953 (((-712) $) 151 (|has| |#1| (-327))) (((-3 (-712) "failed") $ $) 139 (|has| |#1| (-327)))) (-3266 (($ $ (-1 |#1| |#1|) (-712)) 123) (($ $ (-1 |#1| |#1|)) 122) (($ $ (-591 (-1089)) (-591 (-712))) 130 (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) 131 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) 132 (|has| |#1| (-833 (-1089)))) (($ $ (-1089)) 133 (|has| |#1| (-833 (-1089)))) (($ $ (-712)) 135 (-3321 (-1213 (|has| |#1| (-341)) (|has| |#1| (-213))) (|has| |#1| (-213)) (-1213 (|has| |#1| (-213)) (|has| |#1| (-341))))) (($ $) 137 (-3321 (-1213 (|has| |#1| (-341)) (|has| |#1| (-213))) (|has| |#1| (-213)) (-1213 (|has| |#1| (-213)) (|has| |#1| (-341)))))) (-1244 (((-631 |#1|) (-1171 $) (-1 |#1| |#1|)) 154 (|has| |#1| (-341)))) (-1478 (((-1085 |#1|)) 159)) (-1502 (($ $) 225 (|has| |#1| (-1111)))) (-1333 (($ $) 214 (|has| |#1| (-1111)))) (-2616 (($) 148 (|has| |#1| (-327)))) (-1996 (($ $) 224 (|has| |#1| (-1111)))) (-1309 (($ $) 215 (|has| |#1| (-1111)))) (-1973 (($ $) 223 (|has| |#1| (-1111)))) (-3156 (($ $) 216 (|has| |#1| (-1111)))) (-3572 (((-1171 |#1|) $ (-1171 $)) 50) (((-631 |#1|) (-1171 $) (-1171 $)) 49) (((-1171 |#1|) $) 66) (((-631 |#1|) (-1171 $)) 65)) (-1408 (((-1171 |#1|) $) 63) (($ (-1171 |#1|)) 62) (((-1085 |#1|) $) 171) (($ (-1085 |#1|)) 157) (((-825 (-525)) $) 259 (|has| |#1| (-566 (-825 (-525))))) (((-825 (-357)) $) 258 (|has| |#1| (-566 (-825 (-357))))) (((-157 (-357)) $) 210 (|has| |#1| (-951))) (((-157 (-205)) $) 209 (|has| |#1| (-951))) (((-501) $) 208 (|has| |#1| (-566 (-501))))) (-3228 (($ $) 256)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) 145 (-3321 (-1213 (|has| $ (-136)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842)))) (|has| |#1| (-327))))) (-2182 (($ |#1| |#1|) 255)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 37) (($ (-385 (-525))) 86 (-3321 (|has| |#1| (-341)) (|has| |#1| (-966 (-385 (-525)))))) (($ $) 91 (-3321 (|has| |#1| (-517)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842)))))) (-1437 (($ $) 144 (|has| |#1| (-327))) (((-3 $ "failed") $) 43 (-3321 (-1213 (|has| $ (-136)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842)))) (|has| |#1| (-136))))) (-3806 (((-1085 |#1|) $) 45)) (-2128 (((-712)) 29)) (-4003 (((-1171 $)) 67)) (-1563 (($ $) 234 (|has| |#1| (-1111)))) (-1371 (($ $) 222 (|has| |#1| (-1111)))) (-2495 (((-108) $ $) 95 (-3321 (|has| |#1| (-517)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842)))))) (-1515 (($ $) 233 (|has| |#1| (-1111)))) (-1346 (($ $) 221 (|has| |#1| (-1111)))) (-1591 (($ $) 232 (|has| |#1| (-1111)))) (-1400 (($ $) 220 (|has| |#1| (-1111)))) (-1398 ((|#1| $) 250 (|has| |#1| (-1111)))) (-3277 (($ $) 231 (|has| |#1| (-1111)))) (-1415 (($ $) 219 (|has| |#1| (-1111)))) (-1578 (($ $) 230 (|has| |#1| (-1111)))) (-1385 (($ $) 218 (|has| |#1| (-1111)))) (-1527 (($ $) 229 (|has| |#1| (-1111)))) (-1358 (($ $) 217 (|has| |#1| (-1111)))) (-1539 (($ $) 251 (|has| |#1| (-984)))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 117 (|has| |#1| (-341)))) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ (-1 |#1| |#1|) (-712)) 125) (($ $ (-1 |#1| |#1|)) 124) (($ $ (-591 (-1089)) (-591 (-712))) 126 (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) 127 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) 128 (|has| |#1| (-833 (-1089)))) (($ $ (-1089)) 129 (|has| |#1| (-833 (-1089)))) (($ $ (-712)) 134 (-3321 (-1213 (|has| |#1| (-341)) (|has| |#1| (-213))) (|has| |#1| (-213)) (-1213 (|has| |#1| (-213)) (|has| |#1| (-341))))) (($ $) 136 (-3321 (-1213 (|has| |#1| (-341)) (|has| |#1| (-213))) (|has| |#1| (-213)) (-1213 (|has| |#1| (-213)) (|has| |#1| (-341)))))) (-4135 (((-108) $ $) 204 (|has| |#1| (-788)))) (-4119 (((-108) $ $) 203 (|has| |#1| (-788)))) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 205 (|has| |#1| (-788)))) (-4112 (((-108) $ $) 202 (|has| |#1| (-788)))) (-4173 (($ $ $) 121 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-385 (-525))) 239 (-12 (|has| |#1| (-932)) (|has| |#1| (-1111)))) (($ $ $) 237 (|has| |#1| (-1111))) (($ $ (-525)) 118 (|has| |#1| (-341)))) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38) (($ (-385 (-525)) $) 120 (|has| |#1| (-341))) (($ $ (-385 (-525))) 119 (|has| |#1| (-341)))))
+(((-154 |#1|) (-131) (-160)) (T -154))
+((-2771 (*1 *2 *1) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160)))) (-2171 (*1 *1) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160)))) (-3228 (*1 *1 *1) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160)))) (-2182 (*1 *1 *2 *2) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160)))) (-1386 (*1 *2 *1) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160)))) (-1373 (*1 *2 *1) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160)))) (-2089 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-154 *2)) (-4 *2 (-160)) (-4 *2 (-517)))) (-1539 (*1 *1 *1) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160)) (-4 *2 (-984)))) (-1398 (*1 *2 *1) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160)) (-4 *2 (-1111)))) (-2694 (*1 *2 *1) (-12 (-4 *1 (-154 *3)) (-4 *3 (-160)) (-4 *3 (-984)) (-4 *3 (-1111)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-1352 (*1 *2 *1) (-12 (-4 *1 (-154 *3)) (-4 *3 (-160)) (-4 *3 (-510)) (-5 *2 (-108)))) (-1726 (*1 *2 *1) (-12 (-4 *1 (-154 *3)) (-4 *3 (-160)) (-4 *3 (-510)) (-5 *2 (-385 (-525))))) (-1511 (*1 *2 *1) (|partial| -12 (-4 *1 (-154 *3)) (-4 *3 (-160)) (-4 *3 (-510)) (-5 *2 (-385 (-525))))))
+(-13 (-666 |t#1| (-1085 |t#1|)) (-389 |t#1|) (-211 |t#1|) (-316 |t#1|) (-378 |t#1|) (-817 |t#1|) (-355 |t#1|) (-160) (-10 -8 (-6 -2182) (-15 -2171 ($)) (-15 -3228 ($ $)) (-15 -2182 ($ |t#1| |t#1|)) (-15 -1386 (|t#1| $)) (-15 -1373 (|t#1| $)) (-15 -2771 (|t#1| $)) (IF (|has| |t#1| (-788)) (-6 (-788)) |%noBranch|) (IF (|has| |t#1| (-517)) (PROGN (-6 (-517)) (-15 -2089 ((-3 $ "failed") $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-286)) (-6 (-286)) |%noBranch|) (IF (|has| |t#1| (-6 -4249)) (-6 -4249) |%noBranch|) (IF (|has| |t#1| (-6 -4246)) (-6 -4246) |%noBranch|) (IF (|has| |t#1| (-341)) (-6 (-341)) |%noBranch|) (IF (|has| |t#1| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|) (IF (|has| |t#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |t#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |t#1| (-951)) (PROGN (-6 (-566 (-157 (-205)))) (-6 (-566 (-157 (-357))))) |%noBranch|) (IF (|has| |t#1| (-984)) (-15 -1539 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1111)) (PROGN (-6 (-1111)) (-15 -1398 (|t#1| $)) (IF (|has| |t#1| (-932)) (-6 (-932)) |%noBranch|) (IF (|has| |t#1| (-984)) (-15 -2694 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-510)) (PROGN (-15 -1352 ((-108) $)) (-15 -1726 ((-385 (-525)) $)) (-15 -1511 ((-3 (-385 (-525)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-842)) (IF (|has| |t#1| (-286)) (-6 (-842)) |%noBranch|) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-37 |#1|) . T) ((-37 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-327)) (|has| |#1| (-341)) (|has| |#1| (-286))) ((-34) |has| |#1| (-1111)) ((-91) |has| |#1| (-1111)) ((-97) . T) ((-107 #0# #0#) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-126) . T) ((-136) -3321 (|has| |#1| (-327)) (|has| |#1| (-136))) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) . T) ((-566 (-157 (-205))) |has| |#1| (-951)) ((-566 (-157 (-357))) |has| |#1| (-951)) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-566 (-825 (-357))) |has| |#1| (-566 (-825 (-357)))) ((-566 (-825 (-525))) |has| |#1| (-566 (-825 (-525)))) ((-566 #1=(-1085 |#1|)) . T) ((-211 |#1|) . T) ((-213) -3321 (|has| |#1| (-327)) (|has| |#1| (-213))) ((-223) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-263) |has| |#1| (-1111)) ((-265 |#1| $) |has| |#1| (-265 |#1| |#1|)) ((-269) -3321 (|has| |#1| (-517)) (|has| |#1| (-327)) (|has| |#1| (-341)) (|has| |#1| (-286))) ((-286) -3321 (|has| |#1| (-327)) (|has| |#1| (-341)) (|has| |#1| (-286))) ((-288 |#1|) |has| |#1| (-288 |#1|)) ((-341) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-380) |has| |#1| (-327)) ((-346) -3321 (|has| |#1| (-346)) (|has| |#1| (-327))) ((-327) |has| |#1| (-327)) ((-348 |#1| #1#) . T) ((-387 |#1| #1#) . T) ((-316 |#1|) . T) ((-355 |#1|) . T) ((-378 |#1|) . T) ((-389 |#1|) . T) ((-429) -3321 (|has| |#1| (-327)) (|has| |#1| (-341)) (|has| |#1| (-286))) ((-466) |has| |#1| (-1111)) ((-486 (-1089) |#1|) |has| |#1| (-486 (-1089) |#1|)) ((-486 |#1| |#1|) |has| |#1| (-288 |#1|)) ((-517) -3321 (|has| |#1| (-517)) (|has| |#1| (-327)) (|has| |#1| (-341)) (|has| |#1| (-286))) ((-593 #0#) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-593 |#1|) . T) ((-593 $) . T) ((-587 (-525)) |has| |#1| (-587 (-525))) ((-587 |#1|) . T) ((-659 #0#) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-659 |#1|) . T) ((-659 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-327)) (|has| |#1| (-341)) (|has| |#1| (-286))) ((-666 |#1| #1#) . T) ((-668) . T) ((-788) |has| |#1| (-788)) ((-833 (-1089)) |has| |#1| (-833 (-1089))) ((-819 (-357)) |has| |#1| (-819 (-357))) ((-819 (-525)) |has| |#1| (-819 (-525))) ((-817 |#1|) . T) ((-842) -12 (|has| |#1| (-286)) (|has| |#1| (-842))) ((-853) -3321 (|has| |#1| (-327)) (|has| |#1| (-341)) (|has| |#1| (-286))) ((-932) -12 (|has| |#1| (-932)) (|has| |#1| (-1111))) ((-966 (-385 (-525))) |has| |#1| (-966 (-385 (-525)))) ((-966 (-525)) |has| |#1| (-966 (-525))) ((-966 |#1|) . T) ((-981 #0#) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-981 |#1|) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1065) |has| |#1| (-327)) ((-1111) |has| |#1| (-1111)) ((-1114) |has| |#1| (-1111)) ((-1125) . T) ((-1129) -3321 (|has| |#1| (-327)) (|has| |#1| (-341)) (-12 (|has| |#1| (-286)) (|has| |#1| (-842)))))
+((-1348 (((-396 |#2|) |#2|) 63)))
+(((-155 |#1| |#2|) (-10 -7 (-15 -1348 ((-396 |#2|) |#2|))) (-286) (-1147 (-157 |#1|))) (T -155))
+((-1348 (*1 *2 *3) (-12 (-4 *4 (-286)) (-5 *2 (-396 *3)) (-5 *1 (-155 *4 *3)) (-4 *3 (-1147 (-157 *4))))))
+(-10 -7 (-15 -1348 ((-396 |#2|) |#2|)))
+((-1340 (((-157 |#2|) (-1 |#2| |#1|) (-157 |#1|)) 14)))
+(((-156 |#1| |#2|) (-10 -7 (-15 -1340 ((-157 |#2|) (-1 |#2| |#1|) (-157 |#1|)))) (-160) (-160)) (T -156))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-157 *5)) (-4 *5 (-160)) (-4 *6 (-160)) (-5 *2 (-157 *6)) (-5 *1 (-156 *5 *6)))))
+(-10 -7 (-15 -1340 ((-157 |#2|) (-1 |#2| |#1|) (-157 |#1|))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 33)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (-3321 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-517))))) (-3706 (($ $) NIL (-3321 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-517))))) (-1715 (((-108) $) NIL (-3321 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-517))))) (-2796 (((-631 |#1|) (-1171 $)) NIL) (((-631 |#1|)) NIL)) (-2569 ((|#1| $) NIL)) (-1987 (($ $) NIL (|has| |#1| (-1111)))) (-3169 (($ $) NIL (|has| |#1| (-1111)))) (-3734 (((-1099 (-854) (-712)) (-525)) NIL (|has| |#1| (-327)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (-12 (|has| |#1| (-286)) (|has| |#1| (-842))))) (-1291 (($ $) NIL (-3321 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-341))))) (-2827 (((-396 $) $) NIL (-3321 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-341))))) (-1361 (($ $) NIL (-12 (|has| |#1| (-932)) (|has| |#1| (-1111))))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (-12 (|has| |#1| (-286)) (|has| |#1| (-842))))) (-1947 (((-108) $ $) NIL (|has| |#1| (-286)))) (-3032 (((-712)) NIL (|has| |#1| (-346)))) (-1431 (($ $) NIL (|has| |#1| (-1111)))) (-3144 (($ $) NIL (|has| |#1| (-1111)))) (-1719 (($ $) NIL (|has| |#1| (-1111)))) (-1321 (($ $) NIL (|has| |#1| (-1111)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) NIL)) (-3528 (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) NIL)) (-4171 (($ (-1171 |#1|) (-1171 $)) NIL) (($ (-1171 |#1|)) NIL)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-327)))) (-2129 (($ $ $) NIL (|has| |#1| (-286)))) (-3922 (((-631 |#1|) $ (-1171 $)) NIL) (((-631 |#1|) $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) NIL) (((-631 |#1|) (-631 $)) NIL)) (-1227 (($ (-1085 |#1|)) NIL) (((-3 $ "failed") (-385 (-1085 |#1|))) NIL (|has| |#1| (-341)))) (-4163 (((-3 $ "failed") $) NIL)) (-1373 ((|#1| $) 13)) (-1511 (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-510)))) (-1352 (((-108) $) NIL (|has| |#1| (-510)))) (-1726 (((-385 (-525)) $) NIL (|has| |#1| (-510)))) (-4073 (((-854)) NIL)) (-3377 (($) NIL (|has| |#1| (-346)))) (-2110 (($ $ $) NIL (|has| |#1| (-286)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#1| (-286)))) (-3944 (($) NIL (|has| |#1| (-327)))) (-4104 (((-108) $) NIL (|has| |#1| (-327)))) (-2299 (($ $ (-712)) NIL (|has| |#1| (-327))) (($ $) NIL (|has| |#1| (-327)))) (-2744 (((-108) $) NIL (-3321 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-341))))) (-2694 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-984)) (|has| |#1| (-1111))))) (-1784 (($) NIL (|has| |#1| (-1111)))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (|has| |#1| (-819 (-525)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (|has| |#1| (-819 (-357))))) (-3873 (((-854) $) NIL (|has| |#1| (-327))) (((-774 (-854)) $) NIL (|has| |#1| (-327)))) (-2824 (((-108) $) 35)) (-3956 (($ $ (-525)) NIL (-12 (|has| |#1| (-932)) (|has| |#1| (-1111))))) (-2771 ((|#1| $) 46)) (-2085 (((-3 $ "failed") $) NIL (|has| |#1| (-327)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-286)))) (-1382 (((-1085 |#1|) $) NIL (|has| |#1| (-341)))) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-3016 (((-854) $) NIL (|has| |#1| (-346)))) (-1488 (($ $) NIL (|has| |#1| (-1111)))) (-1223 (((-1085 |#1|) $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-286))) (($ $ $) NIL (|has| |#1| (-286)))) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL (|has| |#1| (-341)))) (-3506 (($) NIL (|has| |#1| (-327)) CONST)) (-2226 (($ (-854)) NIL (|has| |#1| (-346)))) (-2171 (($) NIL)) (-1386 ((|#1| $) 15)) (-2047 (((-1036) $) NIL)) (-3857 (($) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-286)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-286))) (($ $ $) NIL (|has| |#1| (-286)))) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) NIL (|has| |#1| (-327)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (-12 (|has| |#1| (-286)) (|has| |#1| (-842))))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (-12 (|has| |#1| (-286)) (|has| |#1| (-842))))) (-1348 (((-396 $) $) NIL (-3321 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-341))))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-286))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-286)))) (-2089 (((-3 $ "failed") $ |#1|) 44 (|has| |#1| (-517))) (((-3 $ "failed") $ $) 47 (-3321 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-517))))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-286)))) (-1409 (($ $) NIL (|has| |#1| (-1111)))) (-4132 (($ $ (-591 |#1|) (-591 |#1|)) NIL (|has| |#1| (-288 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-288 |#1|))) (($ $ (-273 |#1|)) NIL (|has| |#1| (-288 |#1|))) (($ $ (-591 (-273 |#1|))) NIL (|has| |#1| (-288 |#1|))) (($ $ (-591 (-1089)) (-591 |#1|)) NIL (|has| |#1| (-486 (-1089) |#1|))) (($ $ (-1089) |#1|) NIL (|has| |#1| (-486 (-1089) |#1|)))) (-1712 (((-712) $) NIL (|has| |#1| (-286)))) (-3164 (($ $ |#1|) NIL (|has| |#1| (-265 |#1| |#1|)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-286)))) (-2976 ((|#1| (-1171 $)) NIL) ((|#1|) NIL)) (-2953 (((-712) $) NIL (|has| |#1| (-327))) (((-3 (-712) "failed") $ $) NIL (|has| |#1| (-327)))) (-3266 (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $) NIL (|has| |#1| (-213)))) (-1244 (((-631 |#1|) (-1171 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-341)))) (-1478 (((-1085 |#1|)) NIL)) (-1502 (($ $) NIL (|has| |#1| (-1111)))) (-1333 (($ $) NIL (|has| |#1| (-1111)))) (-2616 (($) NIL (|has| |#1| (-327)))) (-1996 (($ $) NIL (|has| |#1| (-1111)))) (-1309 (($ $) NIL (|has| |#1| (-1111)))) (-1973 (($ $) NIL (|has| |#1| (-1111)))) (-3156 (($ $) NIL (|has| |#1| (-1111)))) (-3572 (((-1171 |#1|) $ (-1171 $)) NIL) (((-631 |#1|) (-1171 $) (-1171 $)) NIL) (((-1171 |#1|) $) NIL) (((-631 |#1|) (-1171 $)) NIL)) (-1408 (((-1171 |#1|) $) NIL) (($ (-1171 |#1|)) NIL) (((-1085 |#1|) $) NIL) (($ (-1085 |#1|)) NIL) (((-825 (-525)) $) NIL (|has| |#1| (-566 (-825 (-525))))) (((-825 (-357)) $) NIL (|has| |#1| (-566 (-825 (-357))))) (((-157 (-357)) $) NIL (|has| |#1| (-951))) (((-157 (-205)) $) NIL (|has| |#1| (-951))) (((-501) $) NIL (|has| |#1| (-566 (-501))))) (-3228 (($ $) 45)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-327))))) (-2182 (($ |#1| |#1|) 37)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#1|) 36) (($ (-385 (-525))) NIL (-3321 (|has| |#1| (-341)) (|has| |#1| (-966 (-385 (-525)))))) (($ $) NIL (-3321 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-517))))) (-1437 (($ $) NIL (|has| |#1| (-327))) (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-136))))) (-3806 (((-1085 |#1|) $) NIL)) (-2128 (((-712)) NIL)) (-4003 (((-1171 $)) NIL)) (-1563 (($ $) NIL (|has| |#1| (-1111)))) (-1371 (($ $) NIL (|has| |#1| (-1111)))) (-2495 (((-108) $ $) NIL (-3321 (-12 (|has| |#1| (-286)) (|has| |#1| (-842))) (|has| |#1| (-517))))) (-1515 (($ $) NIL (|has| |#1| (-1111)))) (-1346 (($ $) NIL (|has| |#1| (-1111)))) (-1591 (($ $) NIL (|has| |#1| (-1111)))) (-1400 (($ $) NIL (|has| |#1| (-1111)))) (-1398 ((|#1| $) NIL (|has| |#1| (-1111)))) (-3277 (($ $) NIL (|has| |#1| (-1111)))) (-1415 (($ $) NIL (|has| |#1| (-1111)))) (-1578 (($ $) NIL (|has| |#1| (-1111)))) (-1385 (($ $) NIL (|has| |#1| (-1111)))) (-1527 (($ $) NIL (|has| |#1| (-1111)))) (-1358 (($ $) NIL (|has| |#1| (-1111)))) (-1539 (($ $) NIL (|has| |#1| (-984)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341)))) (-4191 (($) 28 T CONST)) (-4197 (($) 30 T CONST)) (-2563 (((-1072) $) 23 (|has| |#1| (-769))) (((-1072) $ (-108)) 25 (|has| |#1| (-769))) (((-1176) (-763) $) 26 (|has| |#1| (-769))) (((-1176) (-763) $ (-108)) 27 (|has| |#1| (-769)))) (-4196 (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $) NIL (|has| |#1| (-213)))) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4173 (($ $ $) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) 39)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-385 (-525))) NIL (-12 (|has| |#1| (-932)) (|has| |#1| (-1111)))) (($ $ $) NIL (|has| |#1| (-1111))) (($ $ (-525)) NIL (|has| |#1| (-341)))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 42) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-385 (-525)) $) NIL (|has| |#1| (-341))) (($ $ (-385 (-525))) NIL (|has| |#1| (-341)))))
+(((-157 |#1|) (-13 (-154 |#1|) (-10 -7 (IF (|has| |#1| (-769)) (-6 (-769)) |%noBranch|))) (-160)) (T -157))
+NIL
+(-13 (-154 |#1|) (-10 -7 (IF (|has| |#1| (-769)) (-6 (-769)) |%noBranch|)))
+((-1408 (((-825 |#1|) |#3|) 22)))
+(((-158 |#1| |#2| |#3|) (-10 -7 (-15 -1408 ((-825 |#1|) |#3|))) (-1018) (-13 (-566 (-825 |#1|)) (-160)) (-154 |#2|)) (T -158))
+((-1408 (*1 *2 *3) (-12 (-4 *5 (-13 (-566 *2) (-160))) (-5 *2 (-825 *4)) (-5 *1 (-158 *4 *5 *3)) (-4 *4 (-1018)) (-4 *3 (-154 *5)))))
+(-10 -7 (-15 -1408 ((-825 |#1|) |#3|)))
+((-3008 (((-108) $ $) NIL)) (-4044 (((-108) $) 9)) (-2125 (((-108) $ (-108)) 11)) (-1268 (($) 12)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3199 (($ $) 13)) (-3022 (((-796) $) 17)) (-1816 (((-108) $) 8)) (-3529 (((-108) $ (-108)) 10)) (-4096 (((-108) $ $) NIL)))
+(((-159) (-13 (-1018) (-10 -8 (-15 -1268 ($)) (-15 -1816 ((-108) $)) (-15 -4044 ((-108) $)) (-15 -3529 ((-108) $ (-108))) (-15 -2125 ((-108) $ (-108))) (-15 -3199 ($ $))))) (T -159))
+((-1268 (*1 *1) (-5 *1 (-159))) (-1816 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-159)))) (-4044 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-159)))) (-3529 (*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-159)))) (-2125 (*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-159)))) (-3199 (*1 *1 *1) (-5 *1 (-159))))
+(-13 (-1018) (-10 -8 (-15 -1268 ($)) (-15 -1816 ((-108) $)) (-15 -4044 ((-108) $)) (-15 -3529 ((-108) $ (-108))) (-15 -2125 ((-108) $ (-108))) (-15 -3199 ($ $))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11) (($ (-525)) 28)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-160) (-131)) (T -160))
+NIL
+(-13 (-975) (-107 $ $) (-10 -7 (-6 (-4252 "*"))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 $ $) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 $) . T) ((-668) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1508 ((|#1| $) 75)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3798 (($) NIL T CONST)) (-2129 (($ $ $) NIL)) (-2651 (($ $) 19)) (-1343 (($ |#1| (-1070 |#1|)) 48)) (-4163 (((-3 $ "failed") $) 117)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2655 (((-1070 |#1|) $) 82)) (-2425 (((-1070 |#1|) $) 79)) (-2588 (((-1070 |#1|) $) 80)) (-2824 (((-108) $) NIL)) (-1940 (((-1070 |#1|) $) 88)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1356 (($ (-591 $)) NIL) (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ (-591 $)) NIL) (($ $ $) NIL)) (-1348 (((-396 $) $) NIL)) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL)) (-2784 (($ $ (-525)) 91)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2380 (((-1070 |#1|) $) 89)) (-2422 (((-1070 (-385 |#1|)) $) 14)) (-3185 (($ (-385 |#1|)) 17) (($ |#1| (-1070 |#1|) (-1070 |#1|)) 38)) (-3571 (($ $) 93)) (-3022 (((-796) $) 127) (($ (-525)) 51) (($ |#1|) 52) (($ (-385 |#1|)) 36) (($ (-385 (-525))) NIL) (($ $) NIL)) (-2128 (((-712)) 64)) (-2495 (((-108) $ $) NIL)) (-3428 (((-1070 (-385 |#1|)) $) 18)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) 25 T CONST)) (-4197 (($) 28 T CONST)) (-4096 (((-108) $ $) 35)) (-4173 (($ $ $) 115)) (-4164 (($ $) 106) (($ $ $) 103)) (-4156 (($ $ $) 101)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 113) (($ $ $) 108) (($ $ |#1|) NIL) (($ |#1| $) 110) (($ (-385 |#1|) $) 111) (($ $ (-385 |#1|)) NIL) (($ (-385 (-525)) $) NIL) (($ $ (-385 (-525))) NIL)))
+(((-161 |#1|) (-13 (-37 |#1|) (-37 (-385 |#1|)) (-341) (-10 -8 (-15 -3185 ($ (-385 |#1|))) (-15 -3185 ($ |#1| (-1070 |#1|) (-1070 |#1|))) (-15 -1343 ($ |#1| (-1070 |#1|))) (-15 -2425 ((-1070 |#1|) $)) (-15 -2588 ((-1070 |#1|) $)) (-15 -2655 ((-1070 |#1|) $)) (-15 -1508 (|#1| $)) (-15 -2651 ($ $)) (-15 -3428 ((-1070 (-385 |#1|)) $)) (-15 -2422 ((-1070 (-385 |#1|)) $)) (-15 -1940 ((-1070 |#1|) $)) (-15 -2380 ((-1070 |#1|) $)) (-15 -2784 ($ $ (-525))) (-15 -3571 ($ $)))) (-286)) (T -161))
+((-3185 (*1 *1 *2) (-12 (-5 *2 (-385 *3)) (-4 *3 (-286)) (-5 *1 (-161 *3)))) (-3185 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1070 *2)) (-4 *2 (-286)) (-5 *1 (-161 *2)))) (-1343 (*1 *1 *2 *3) (-12 (-5 *3 (-1070 *2)) (-4 *2 (-286)) (-5 *1 (-161 *2)))) (-2425 (*1 *2 *1) (-12 (-5 *2 (-1070 *3)) (-5 *1 (-161 *3)) (-4 *3 (-286)))) (-2588 (*1 *2 *1) (-12 (-5 *2 (-1070 *3)) (-5 *1 (-161 *3)) (-4 *3 (-286)))) (-2655 (*1 *2 *1) (-12 (-5 *2 (-1070 *3)) (-5 *1 (-161 *3)) (-4 *3 (-286)))) (-1508 (*1 *2 *1) (-12 (-5 *1 (-161 *2)) (-4 *2 (-286)))) (-2651 (*1 *1 *1) (-12 (-5 *1 (-161 *2)) (-4 *2 (-286)))) (-3428 (*1 *2 *1) (-12 (-5 *2 (-1070 (-385 *3))) (-5 *1 (-161 *3)) (-4 *3 (-286)))) (-2422 (*1 *2 *1) (-12 (-5 *2 (-1070 (-385 *3))) (-5 *1 (-161 *3)) (-4 *3 (-286)))) (-1940 (*1 *2 *1) (-12 (-5 *2 (-1070 *3)) (-5 *1 (-161 *3)) (-4 *3 (-286)))) (-2380 (*1 *2 *1) (-12 (-5 *2 (-1070 *3)) (-5 *1 (-161 *3)) (-4 *3 (-286)))) (-2784 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-161 *3)) (-4 *3 (-286)))) (-3571 (*1 *1 *1) (-12 (-5 *1 (-161 *2)) (-4 *2 (-286)))))
+(-13 (-37 |#1|) (-37 (-385 |#1|)) (-341) (-10 -8 (-15 -3185 ($ (-385 |#1|))) (-15 -3185 ($ |#1| (-1070 |#1|) (-1070 |#1|))) (-15 -1343 ($ |#1| (-1070 |#1|))) (-15 -2425 ((-1070 |#1|) $)) (-15 -2588 ((-1070 |#1|) $)) (-15 -2655 ((-1070 |#1|) $)) (-15 -1508 (|#1| $)) (-15 -2651 ($ $)) (-15 -3428 ((-1070 (-385 |#1|)) $)) (-15 -2422 ((-1070 (-385 |#1|)) $)) (-15 -1940 ((-1070 |#1|) $)) (-15 -2380 ((-1070 |#1|) $)) (-15 -2784 ($ $ (-525))) (-15 -3571 ($ $))))
+((-2434 (($ (-104) $) 13)) (-1590 (((-3 (-104) "failed") (-1089) $) 12)) (-3022 (((-796) $) 16)) (-1690 (((-591 (-104)) $) 8)))
+(((-162) (-13 (-565 (-796)) (-10 -8 (-15 -1690 ((-591 (-104)) $)) (-15 -2434 ($ (-104) $)) (-15 -1590 ((-3 (-104) "failed") (-1089) $))))) (T -162))
+((-1690 (*1 *2 *1) (-12 (-5 *2 (-591 (-104))) (-5 *1 (-162)))) (-2434 (*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-162)))) (-1590 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1089)) (-5 *2 (-104)) (-5 *1 (-162)))))
+(-13 (-565 (-796)) (-10 -8 (-15 -1690 ((-591 (-104)) $)) (-15 -2434 ($ (-104) $)) (-15 -1590 ((-3 (-104) "failed") (-1089) $))))
+((-2785 (((-1 (-876 |#1|) (-876 |#1|)) |#1|) 40)) (-4228 (((-876 |#1|) (-876 |#1|)) 19)) (-3673 (((-1 (-876 |#1|) (-876 |#1|)) |#1|) 36)) (-2310 (((-876 |#1|) (-876 |#1|)) 17)) (-3165 (((-876 |#1|) (-876 |#1|)) 25)) (-2802 (((-876 |#1|) (-876 |#1|)) 24)) (-4175 (((-876 |#1|) (-876 |#1|)) 23)) (-1585 (((-1 (-876 |#1|) (-876 |#1|)) |#1|) 37)) (-3879 (((-1 (-876 |#1|) (-876 |#1|)) |#1|) 35)) (-3787 (((-1 (-876 |#1|) (-876 |#1|)) |#1|) 34)) (-2664 (((-876 |#1|) (-876 |#1|)) 18)) (-1856 (((-1 (-876 |#1|) (-876 |#1|)) |#1| |#1|) 43)) (-2510 (((-876 |#1|) (-876 |#1|)) 8)) (-1255 (((-1 (-876 |#1|) (-876 |#1|)) |#1|) 39)) (-1422 (((-1 (-876 |#1|) (-876 |#1|)) |#1|) 38)))
+(((-163 |#1|) (-10 -7 (-15 -2510 ((-876 |#1|) (-876 |#1|))) (-15 -2310 ((-876 |#1|) (-876 |#1|))) (-15 -2664 ((-876 |#1|) (-876 |#1|))) (-15 -4228 ((-876 |#1|) (-876 |#1|))) (-15 -4175 ((-876 |#1|) (-876 |#1|))) (-15 -2802 ((-876 |#1|) (-876 |#1|))) (-15 -3165 ((-876 |#1|) (-876 |#1|))) (-15 -3787 ((-1 (-876 |#1|) (-876 |#1|)) |#1|)) (-15 -3879 ((-1 (-876 |#1|) (-876 |#1|)) |#1|)) (-15 -3673 ((-1 (-876 |#1|) (-876 |#1|)) |#1|)) (-15 -1585 ((-1 (-876 |#1|) (-876 |#1|)) |#1|)) (-15 -1422 ((-1 (-876 |#1|) (-876 |#1|)) |#1|)) (-15 -1255 ((-1 (-876 |#1|) (-876 |#1|)) |#1|)) (-15 -2785 ((-1 (-876 |#1|) (-876 |#1|)) |#1|)) (-15 -1856 ((-1 (-876 |#1|) (-876 |#1|)) |#1| |#1|))) (-13 (-341) (-1111) (-932))) (T -163))
+((-1856 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3)) (-4 *3 (-13 (-341) (-1111) (-932))))) (-2785 (*1 *2 *3) (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3)) (-4 *3 (-13 (-341) (-1111) (-932))))) (-1255 (*1 *2 *3) (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3)) (-4 *3 (-13 (-341) (-1111) (-932))))) (-1422 (*1 *2 *3) (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3)) (-4 *3 (-13 (-341) (-1111) (-932))))) (-1585 (*1 *2 *3) (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3)) (-4 *3 (-13 (-341) (-1111) (-932))))) (-3673 (*1 *2 *3) (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3)) (-4 *3 (-13 (-341) (-1111) (-932))))) (-3879 (*1 *2 *3) (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3)) (-4 *3 (-13 (-341) (-1111) (-932))))) (-3787 (*1 *2 *3) (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3)) (-4 *3 (-13 (-341) (-1111) (-932))))) (-3165 (*1 *2 *2) (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111) (-932))) (-5 *1 (-163 *3)))) (-2802 (*1 *2 *2) (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111) (-932))) (-5 *1 (-163 *3)))) (-4175 (*1 *2 *2) (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111) (-932))) (-5 *1 (-163 *3)))) (-4228 (*1 *2 *2) (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111) (-932))) (-5 *1 (-163 *3)))) (-2664 (*1 *2 *2) (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111) (-932))) (-5 *1 (-163 *3)))) (-2310 (*1 *2 *2) (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111) (-932))) (-5 *1 (-163 *3)))) (-2510 (*1 *2 *2) (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111) (-932))) (-5 *1 (-163 *3)))))
+(-10 -7 (-15 -2510 ((-876 |#1|) (-876 |#1|))) (-15 -2310 ((-876 |#1|) (-876 |#1|))) (-15 -2664 ((-876 |#1|) (-876 |#1|))) (-15 -4228 ((-876 |#1|) (-876 |#1|))) (-15 -4175 ((-876 |#1|) (-876 |#1|))) (-15 -2802 ((-876 |#1|) (-876 |#1|))) (-15 -3165 ((-876 |#1|) (-876 |#1|))) (-15 -3787 ((-1 (-876 |#1|) (-876 |#1|)) |#1|)) (-15 -3879 ((-1 (-876 |#1|) (-876 |#1|)) |#1|)) (-15 -3673 ((-1 (-876 |#1|) (-876 |#1|)) |#1|)) (-15 -1585 ((-1 (-876 |#1|) (-876 |#1|)) |#1|)) (-15 -1422 ((-1 (-876 |#1|) (-876 |#1|)) |#1|)) (-15 -1255 ((-1 (-876 |#1|) (-876 |#1|)) |#1|)) (-15 -2785 ((-1 (-876 |#1|) (-876 |#1|)) |#1|)) (-15 -1856 ((-1 (-876 |#1|) (-876 |#1|)) |#1| |#1|)))
+((-3806 ((|#2| |#3|) 27)))
+(((-164 |#1| |#2| |#3|) (-10 -7 (-15 -3806 (|#2| |#3|))) (-160) (-1147 |#1|) (-666 |#1| |#2|)) (T -164))
+((-3806 (*1 *2 *3) (-12 (-4 *4 (-160)) (-4 *2 (-1147 *4)) (-5 *1 (-164 *4 *2 *3)) (-4 *3 (-666 *4 *2)))))
+(-10 -7 (-15 -3806 (|#2| |#3|)))
+((-2011 (((-822 |#1| |#3|) |#3| (-825 |#1|) (-822 |#1| |#3|)) 47 (|has| (-885 |#2|) (-819 |#1|)))))
+(((-165 |#1| |#2| |#3|) (-10 -7 (IF (|has| (-885 |#2|) (-819 |#1|)) (-15 -2011 ((-822 |#1| |#3|) |#3| (-825 |#1|) (-822 |#1| |#3|))) |%noBranch|)) (-1018) (-13 (-819 |#1|) (-160)) (-154 |#2|)) (T -165))
+((-2011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-822 *5 *3)) (-5 *4 (-825 *5)) (-4 *5 (-1018)) (-4 *3 (-154 *6)) (-4 (-885 *6) (-819 *5)) (-4 *6 (-13 (-819 *5) (-160))) (-5 *1 (-165 *5 *6 *3)))))
+(-10 -7 (IF (|has| (-885 |#2|) (-819 |#1|)) (-15 -2011 ((-822 |#1| |#3|) |#3| (-825 |#1|) (-822 |#1| |#3|))) |%noBranch|))
+((-1863 (((-591 |#1|) (-591 |#1|) |#1|) 38)) (-4092 (((-591 |#1|) |#1| (-591 |#1|)) 19)) (-2714 (((-591 |#1|) (-591 (-591 |#1|)) (-591 |#1|)) 33) ((|#1| (-591 |#1|) (-591 |#1|)) 31)))
+(((-166 |#1|) (-10 -7 (-15 -4092 ((-591 |#1|) |#1| (-591 |#1|))) (-15 -2714 (|#1| (-591 |#1|) (-591 |#1|))) (-15 -2714 ((-591 |#1|) (-591 (-591 |#1|)) (-591 |#1|))) (-15 -1863 ((-591 |#1|) (-591 |#1|) |#1|))) (-286)) (T -166))
+((-1863 (*1 *2 *2 *3) (-12 (-5 *2 (-591 *3)) (-4 *3 (-286)) (-5 *1 (-166 *3)))) (-2714 (*1 *2 *3 *2) (-12 (-5 *3 (-591 (-591 *4))) (-5 *2 (-591 *4)) (-4 *4 (-286)) (-5 *1 (-166 *4)))) (-2714 (*1 *2 *3 *3) (-12 (-5 *3 (-591 *2)) (-5 *1 (-166 *2)) (-4 *2 (-286)))) (-4092 (*1 *2 *3 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-286)) (-5 *1 (-166 *3)))))
+(-10 -7 (-15 -4092 ((-591 |#1|) |#1| (-591 |#1|))) (-15 -2714 (|#1| (-591 |#1|) (-591 |#1|))) (-15 -2714 ((-591 |#1|) (-591 (-591 |#1|)) (-591 |#1|))) (-15 -1863 ((-591 |#1|) (-591 |#1|) |#1|)))
+((-2832 (((-2 (|:| |start| |#2|) (|:| -3781 (-396 |#2|))) |#2|) 61)) (-1344 ((|#1| |#1|) 54)) (-1465 (((-157 |#1|) |#2|) 84)) (-1482 ((|#1| |#2|) 123) ((|#1| |#2| |#1|) 82)) (-1876 ((|#2| |#2|) 83)) (-3063 (((-396 |#2|) |#2| |#1|) 113) (((-396 |#2|) |#2| |#1| (-108)) 81)) (-2771 ((|#1| |#2|) 112)) (-2360 ((|#2| |#2|) 119)) (-1348 (((-396 |#2|) |#2|) 134) (((-396 |#2|) |#2| |#1|) 32) (((-396 |#2|) |#2| |#1| (-108)) 133)) (-2635 (((-591 (-2 (|:| -3781 (-591 |#2|)) (|:| -1483 |#1|))) |#2| |#2|) 132) (((-591 (-2 (|:| -3781 (-591 |#2|)) (|:| -1483 |#1|))) |#2| |#2| (-108)) 76)) (-2488 (((-591 (-157 |#1|)) |#2| |#1|) 40) (((-591 (-157 |#1|)) |#2|) 41)))
+(((-167 |#1| |#2|) (-10 -7 (-15 -2488 ((-591 (-157 |#1|)) |#2|)) (-15 -2488 ((-591 (-157 |#1|)) |#2| |#1|)) (-15 -2635 ((-591 (-2 (|:| -3781 (-591 |#2|)) (|:| -1483 |#1|))) |#2| |#2| (-108))) (-15 -2635 ((-591 (-2 (|:| -3781 (-591 |#2|)) (|:| -1483 |#1|))) |#2| |#2|)) (-15 -1348 ((-396 |#2|) |#2| |#1| (-108))) (-15 -1348 ((-396 |#2|) |#2| |#1|)) (-15 -1348 ((-396 |#2|) |#2|)) (-15 -2360 (|#2| |#2|)) (-15 -2771 (|#1| |#2|)) (-15 -3063 ((-396 |#2|) |#2| |#1| (-108))) (-15 -3063 ((-396 |#2|) |#2| |#1|)) (-15 -1876 (|#2| |#2|)) (-15 -1482 (|#1| |#2| |#1|)) (-15 -1482 (|#1| |#2|)) (-15 -1465 ((-157 |#1|) |#2|)) (-15 -1344 (|#1| |#1|)) (-15 -2832 ((-2 (|:| |start| |#2|) (|:| -3781 (-396 |#2|))) |#2|))) (-13 (-341) (-786)) (-1147 (-157 |#1|))) (T -167))
+((-2832 (*1 *2 *3) (-12 (-4 *4 (-13 (-341) (-786))) (-5 *2 (-2 (|:| |start| *3) (|:| -3781 (-396 *3)))) (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4))))) (-1344 (*1 *2 *2) (-12 (-4 *2 (-13 (-341) (-786))) (-5 *1 (-167 *2 *3)) (-4 *3 (-1147 (-157 *2))))) (-1465 (*1 *2 *3) (-12 (-5 *2 (-157 *4)) (-5 *1 (-167 *4 *3)) (-4 *4 (-13 (-341) (-786))) (-4 *3 (-1147 *2)))) (-1482 (*1 *2 *3) (-12 (-4 *2 (-13 (-341) (-786))) (-5 *1 (-167 *2 *3)) (-4 *3 (-1147 (-157 *2))))) (-1482 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-341) (-786))) (-5 *1 (-167 *2 *3)) (-4 *3 (-1147 (-157 *2))))) (-1876 (*1 *2 *2) (-12 (-4 *3 (-13 (-341) (-786))) (-5 *1 (-167 *3 *2)) (-4 *2 (-1147 (-157 *3))))) (-3063 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-341) (-786))) (-5 *2 (-396 *3)) (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4))))) (-3063 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-108)) (-4 *4 (-13 (-341) (-786))) (-5 *2 (-396 *3)) (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4))))) (-2771 (*1 *2 *3) (-12 (-4 *2 (-13 (-341) (-786))) (-5 *1 (-167 *2 *3)) (-4 *3 (-1147 (-157 *2))))) (-2360 (*1 *2 *2) (-12 (-4 *3 (-13 (-341) (-786))) (-5 *1 (-167 *3 *2)) (-4 *2 (-1147 (-157 *3))))) (-1348 (*1 *2 *3) (-12 (-4 *4 (-13 (-341) (-786))) (-5 *2 (-396 *3)) (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4))))) (-1348 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-341) (-786))) (-5 *2 (-396 *3)) (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4))))) (-1348 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-108)) (-4 *4 (-13 (-341) (-786))) (-5 *2 (-396 *3)) (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4))))) (-2635 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-341) (-786))) (-5 *2 (-591 (-2 (|:| -3781 (-591 *3)) (|:| -1483 *4)))) (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4))))) (-2635 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-341) (-786))) (-5 *2 (-591 (-2 (|:| -3781 (-591 *3)) (|:| -1483 *5)))) (-5 *1 (-167 *5 *3)) (-4 *3 (-1147 (-157 *5))))) (-2488 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-341) (-786))) (-5 *2 (-591 (-157 *4))) (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4))))) (-2488 (*1 *2 *3) (-12 (-4 *4 (-13 (-341) (-786))) (-5 *2 (-591 (-157 *4))) (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4))))))
+(-10 -7 (-15 -2488 ((-591 (-157 |#1|)) |#2|)) (-15 -2488 ((-591 (-157 |#1|)) |#2| |#1|)) (-15 -2635 ((-591 (-2 (|:| -3781 (-591 |#2|)) (|:| -1483 |#1|))) |#2| |#2| (-108))) (-15 -2635 ((-591 (-2 (|:| -3781 (-591 |#2|)) (|:| -1483 |#1|))) |#2| |#2|)) (-15 -1348 ((-396 |#2|) |#2| |#1| (-108))) (-15 -1348 ((-396 |#2|) |#2| |#1|)) (-15 -1348 ((-396 |#2|) |#2|)) (-15 -2360 (|#2| |#2|)) (-15 -2771 (|#1| |#2|)) (-15 -3063 ((-396 |#2|) |#2| |#1| (-108))) (-15 -3063 ((-396 |#2|) |#2| |#1|)) (-15 -1876 (|#2| |#2|)) (-15 -1482 (|#1| |#2| |#1|)) (-15 -1482 (|#1| |#2|)) (-15 -1465 ((-157 |#1|) |#2|)) (-15 -1344 (|#1| |#1|)) (-15 -2832 ((-2 (|:| |start| |#2|) (|:| -3781 (-396 |#2|))) |#2|)))
+((-2854 (((-3 |#2| "failed") |#2|) 14)) (-3925 (((-712) |#2|) 16)) (-2698 ((|#2| |#2| |#2|) 18)))
+(((-168 |#1| |#2|) (-10 -7 (-15 -2854 ((-3 |#2| "failed") |#2|)) (-15 -3925 ((-712) |#2|)) (-15 -2698 (|#2| |#2| |#2|))) (-1125) (-618 |#1|)) (T -168))
+((-2698 (*1 *2 *2 *2) (-12 (-4 *3 (-1125)) (-5 *1 (-168 *3 *2)) (-4 *2 (-618 *3)))) (-3925 (*1 *2 *3) (-12 (-4 *4 (-1125)) (-5 *2 (-712)) (-5 *1 (-168 *4 *3)) (-4 *3 (-618 *4)))) (-2854 (*1 *2 *2) (|partial| -12 (-4 *3 (-1125)) (-5 *1 (-168 *3 *2)) (-4 *2 (-618 *3)))))
+(-10 -7 (-15 -2854 ((-3 |#2| "failed") |#2|)) (-15 -3925 ((-712) |#2|)) (-15 -2698 (|#2| |#2| |#2|)))
+((-1952 (((-1089) $) 9)) (-3022 (((-796) $) 13)) (-1235 (((-591 (-1094)) $) 11)))
+(((-169) (-13 (-565 (-796)) (-10 -8 (-15 -1952 ((-1089) $)) (-15 -1235 ((-591 (-1094)) $))))) (T -169))
+((-1952 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-169)))) (-1235 (*1 *2 *1) (-12 (-5 *2 (-591 (-1094))) (-5 *1 (-169)))))
+(-13 (-565 (-796)) (-10 -8 (-15 -1952 ((-1089) $)) (-15 -1235 ((-591 (-1094)) $))))
+((-2185 ((|#2| |#2|) 28)) (-1253 (((-108) |#2|) 19)) (-1373 (((-294 |#1|) |#2|) 12)) (-1386 (((-294 |#1|) |#2|) 14)) (-3425 ((|#2| |#2| (-1089)) 68) ((|#2| |#2|) 69)) (-3818 (((-157 (-294 |#1|)) |#2|) 10)) (-2793 ((|#2| |#2| (-1089)) 65) ((|#2| |#2|) 59)))
+(((-170 |#1| |#2|) (-10 -7 (-15 -3425 (|#2| |#2|)) (-15 -3425 (|#2| |#2| (-1089))) (-15 -2793 (|#2| |#2|)) (-15 -2793 (|#2| |#2| (-1089))) (-15 -1373 ((-294 |#1|) |#2|)) (-15 -1386 ((-294 |#1|) |#2|)) (-15 -1253 ((-108) |#2|)) (-15 -2185 (|#2| |#2|)) (-15 -3818 ((-157 (-294 |#1|)) |#2|))) (-13 (-517) (-788) (-966 (-525))) (-13 (-27) (-1111) (-408 (-157 |#1|)))) (T -170))
+((-3818 (*1 *2 *3) (-12 (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-5 *2 (-157 (-294 *4))) (-5 *1 (-170 *4 *3)) (-4 *3 (-13 (-27) (-1111) (-408 (-157 *4)))))) (-2185 (*1 *2 *2) (-12 (-4 *3 (-13 (-517) (-788) (-966 (-525)))) (-5 *1 (-170 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 (-157 *3)))))) (-1253 (*1 *2 *3) (-12 (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-5 *2 (-108)) (-5 *1 (-170 *4 *3)) (-4 *3 (-13 (-27) (-1111) (-408 (-157 *4)))))) (-1386 (*1 *2 *3) (-12 (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-5 *2 (-294 *4)) (-5 *1 (-170 *4 *3)) (-4 *3 (-13 (-27) (-1111) (-408 (-157 *4)))))) (-1373 (*1 *2 *3) (-12 (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-5 *2 (-294 *4)) (-5 *1 (-170 *4 *3)) (-4 *3 (-13 (-27) (-1111) (-408 (-157 *4)))))) (-2793 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-5 *1 (-170 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 (-157 *4)))))) (-2793 (*1 *2 *2) (-12 (-4 *3 (-13 (-517) (-788) (-966 (-525)))) (-5 *1 (-170 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 (-157 *3)))))) (-3425 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-5 *1 (-170 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 (-157 *4)))))) (-3425 (*1 *2 *2) (-12 (-4 *3 (-13 (-517) (-788) (-966 (-525)))) (-5 *1 (-170 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 (-157 *3)))))))
+(-10 -7 (-15 -3425 (|#2| |#2|)) (-15 -3425 (|#2| |#2| (-1089))) (-15 -2793 (|#2| |#2|)) (-15 -2793 (|#2| |#2| (-1089))) (-15 -1373 ((-294 |#1|) |#2|)) (-15 -1386 ((-294 |#1|) |#2|)) (-15 -1253 ((-108) |#2|)) (-15 -2185 (|#2| |#2|)) (-15 -3818 ((-157 (-294 |#1|)) |#2|)))
+((-2565 (((-1171 (-631 (-885 |#1|))) (-1171 (-631 |#1|))) 24)) (-3022 (((-1171 (-631 (-385 (-885 |#1|)))) (-1171 (-631 |#1|))) 33)))
+(((-171 |#1|) (-10 -7 (-15 -2565 ((-1171 (-631 (-885 |#1|))) (-1171 (-631 |#1|)))) (-15 -3022 ((-1171 (-631 (-385 (-885 |#1|)))) (-1171 (-631 |#1|))))) (-160)) (T -171))
+((-3022 (*1 *2 *3) (-12 (-5 *3 (-1171 (-631 *4))) (-4 *4 (-160)) (-5 *2 (-1171 (-631 (-385 (-885 *4))))) (-5 *1 (-171 *4)))) (-2565 (*1 *2 *3) (-12 (-5 *3 (-1171 (-631 *4))) (-4 *4 (-160)) (-5 *2 (-1171 (-631 (-885 *4)))) (-5 *1 (-171 *4)))))
+(-10 -7 (-15 -2565 ((-1171 (-631 (-885 |#1|))) (-1171 (-631 |#1|)))) (-15 -3022 ((-1171 (-631 (-385 (-885 |#1|)))) (-1171 (-631 |#1|)))))
+((-1928 (((-1091 (-385 (-525))) (-1091 (-385 (-525))) (-1091 (-385 (-525)))) 66)) (-2798 (((-1091 (-385 (-525))) (-591 (-525)) (-591 (-525))) 75)) (-1276 (((-1091 (-385 (-525))) (-525)) 40)) (-4013 (((-1091 (-385 (-525))) (-525)) 52)) (-4132 (((-385 (-525)) (-1091 (-385 (-525)))) 62)) (-2699 (((-1091 (-385 (-525))) (-525)) 32)) (-3590 (((-1091 (-385 (-525))) (-525)) 48)) (-1518 (((-1091 (-385 (-525))) (-525)) 46)) (-1953 (((-1091 (-385 (-525))) (-1091 (-385 (-525))) (-1091 (-385 (-525)))) 60)) (-3571 (((-1091 (-385 (-525))) (-525)) 25)) (-2014 (((-385 (-525)) (-1091 (-385 (-525))) (-1091 (-385 (-525)))) 64)) (-1241 (((-1091 (-385 (-525))) (-525)) 30)) (-2111 (((-1091 (-385 (-525))) (-591 (-525))) 72)))
+(((-172) (-10 -7 (-15 -3571 ((-1091 (-385 (-525))) (-525))) (-15 -1276 ((-1091 (-385 (-525))) (-525))) (-15 -2699 ((-1091 (-385 (-525))) (-525))) (-15 -1241 ((-1091 (-385 (-525))) (-525))) (-15 -1518 ((-1091 (-385 (-525))) (-525))) (-15 -3590 ((-1091 (-385 (-525))) (-525))) (-15 -4013 ((-1091 (-385 (-525))) (-525))) (-15 -2014 ((-385 (-525)) (-1091 (-385 (-525))) (-1091 (-385 (-525))))) (-15 -1953 ((-1091 (-385 (-525))) (-1091 (-385 (-525))) (-1091 (-385 (-525))))) (-15 -4132 ((-385 (-525)) (-1091 (-385 (-525))))) (-15 -1928 ((-1091 (-385 (-525))) (-1091 (-385 (-525))) (-1091 (-385 (-525))))) (-15 -2111 ((-1091 (-385 (-525))) (-591 (-525)))) (-15 -2798 ((-1091 (-385 (-525))) (-591 (-525)) (-591 (-525)))))) (T -172))
+((-2798 (*1 *2 *3 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)))) (-2111 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)))) (-1928 (*1 *2 *2 *2) (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)))) (-4132 (*1 *2 *3) (-12 (-5 *3 (-1091 (-385 (-525)))) (-5 *2 (-385 (-525))) (-5 *1 (-172)))) (-1953 (*1 *2 *2 *2) (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)))) (-2014 (*1 *2 *3 *3) (-12 (-5 *3 (-1091 (-385 (-525)))) (-5 *2 (-385 (-525))) (-5 *1 (-172)))) (-4013 (*1 *2 *3) (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)) (-5 *3 (-525)))) (-3590 (*1 *2 *3) (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)) (-5 *3 (-525)))) (-1518 (*1 *2 *3) (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)) (-5 *3 (-525)))) (-1241 (*1 *2 *3) (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)) (-5 *3 (-525)))) (-2699 (*1 *2 *3) (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)) (-5 *3 (-525)))) (-1276 (*1 *2 *3) (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)) (-5 *3 (-525)))) (-3571 (*1 *2 *3) (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)) (-5 *3 (-525)))))
+(-10 -7 (-15 -3571 ((-1091 (-385 (-525))) (-525))) (-15 -1276 ((-1091 (-385 (-525))) (-525))) (-15 -2699 ((-1091 (-385 (-525))) (-525))) (-15 -1241 ((-1091 (-385 (-525))) (-525))) (-15 -1518 ((-1091 (-385 (-525))) (-525))) (-15 -3590 ((-1091 (-385 (-525))) (-525))) (-15 -4013 ((-1091 (-385 (-525))) (-525))) (-15 -2014 ((-385 (-525)) (-1091 (-385 (-525))) (-1091 (-385 (-525))))) (-15 -1953 ((-1091 (-385 (-525))) (-1091 (-385 (-525))) (-1091 (-385 (-525))))) (-15 -4132 ((-385 (-525)) (-1091 (-385 (-525))))) (-15 -1928 ((-1091 (-385 (-525))) (-1091 (-385 (-525))) (-1091 (-385 (-525))))) (-15 -2111 ((-1091 (-385 (-525))) (-591 (-525)))) (-15 -2798 ((-1091 (-385 (-525))) (-591 (-525)) (-591 (-525)))))
+((-3840 (((-396 (-1085 (-525))) (-525)) 28)) (-3187 (((-591 (-1085 (-525))) (-525)) 23)) (-3132 (((-1085 (-525)) (-525)) 21)))
+(((-173) (-10 -7 (-15 -3187 ((-591 (-1085 (-525))) (-525))) (-15 -3132 ((-1085 (-525)) (-525))) (-15 -3840 ((-396 (-1085 (-525))) (-525))))) (T -173))
+((-3840 (*1 *2 *3) (-12 (-5 *2 (-396 (-1085 (-525)))) (-5 *1 (-173)) (-5 *3 (-525)))) (-3132 (*1 *2 *3) (-12 (-5 *2 (-1085 (-525))) (-5 *1 (-173)) (-5 *3 (-525)))) (-3187 (*1 *2 *3) (-12 (-5 *2 (-591 (-1085 (-525)))) (-5 *1 (-173)) (-5 *3 (-525)))))
+(-10 -7 (-15 -3187 ((-591 (-1085 (-525))) (-525))) (-15 -3132 ((-1085 (-525)) (-525))) (-15 -3840 ((-396 (-1085 (-525))) (-525))))
+((-1226 (((-1070 (-205)) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 104)) (-2316 (((-591 (-1072)) (-1070 (-205))) NIL)) (-2713 (((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 80)) (-3298 (((-591 (-205)) (-294 (-205)) (-1089) (-1013 (-781 (-205)))) NIL)) (-2804 (((-591 (-1072)) (-591 (-205))) NIL)) (-1470 (((-205) (-1013 (-781 (-205)))) 24)) (-1596 (((-205) (-1013 (-781 (-205)))) 25)) (-3674 (((-357) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 97)) (-4007 (((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 42)) (-1300 (((-1072) (-205)) NIL)) (-1549 (((-1072) (-591 (-1072))) 20)) (-2490 (((-964) (-1089) (-1089) (-964)) 13)))
+(((-174) (-10 -7 (-15 -2713 ((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -4007 ((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -1470 ((-205) (-1013 (-781 (-205))))) (-15 -1596 ((-205) (-1013 (-781 (-205))))) (-15 -3674 ((-357) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -3298 ((-591 (-205)) (-294 (-205)) (-1089) (-1013 (-781 (-205))))) (-15 -1226 ((-1070 (-205)) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -1300 ((-1072) (-205))) (-15 -2804 ((-591 (-1072)) (-591 (-205)))) (-15 -2316 ((-591 (-1072)) (-1070 (-205)))) (-15 -1549 ((-1072) (-591 (-1072)))) (-15 -2490 ((-964) (-1089) (-1089) (-964))))) (T -174))
+((-2490 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-964)) (-5 *3 (-1089)) (-5 *1 (-174)))) (-1549 (*1 *2 *3) (-12 (-5 *3 (-591 (-1072))) (-5 *2 (-1072)) (-5 *1 (-174)))) (-2316 (*1 *2 *3) (-12 (-5 *3 (-1070 (-205))) (-5 *2 (-591 (-1072))) (-5 *1 (-174)))) (-2804 (*1 *2 *3) (-12 (-5 *3 (-591 (-205))) (-5 *2 (-591 (-1072))) (-5 *1 (-174)))) (-1300 (*1 *2 *3) (-12 (-5 *3 (-205)) (-5 *2 (-1072)) (-5 *1 (-174)))) (-1226 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-1070 (-205))) (-5 *1 (-174)))) (-3298 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-294 (-205))) (-5 *4 (-1089)) (-5 *5 (-1013 (-781 (-205)))) (-5 *2 (-591 (-205))) (-5 *1 (-174)))) (-3674 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-357)) (-5 *1 (-174)))) (-1596 (*1 *2 *3) (-12 (-5 *3 (-1013 (-781 (-205)))) (-5 *2 (-205)) (-5 *1 (-174)))) (-1470 (*1 *2 *3) (-12 (-5 *3 (-1013 (-781 (-205)))) (-5 *2 (-205)) (-5 *1 (-174)))) (-4007 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (-5 *1 (-174)))) (-2713 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))) (-5 *1 (-174)))))
+(-10 -7 (-15 -2713 ((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -4007 ((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -1470 ((-205) (-1013 (-781 (-205))))) (-15 -1596 ((-205) (-1013 (-781 (-205))))) (-15 -3674 ((-357) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -3298 ((-591 (-205)) (-294 (-205)) (-1089) (-1013 (-781 (-205))))) (-15 -1226 ((-1070 (-205)) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -1300 ((-1072) (-205))) (-15 -2804 ((-591 (-1072)) (-591 (-205)))) (-15 -2316 ((-591 (-1072)) (-1070 (-205)))) (-15 -1549 ((-1072) (-591 (-1072)))) (-15 -2490 ((-964) (-1089) (-1089) (-964))))
+((-3008 (((-108) $ $) NIL)) (-2486 (((-964) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) 55) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) NIL)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 32) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-175) (-728)) (T -175))
+NIL
+(-728)
+((-3008 (((-108) $ $) NIL)) (-2486 (((-964) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) 60) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) NIL)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 41) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-176) (-728)) (T -176))
+NIL
+(-728)
+((-3008 (((-108) $ $) NIL)) (-2486 (((-964) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) 69) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) NIL)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 40) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-177) (-728)) (T -177))
+NIL
+(-728)
+((-3008 (((-108) $ $) NIL)) (-2486 (((-964) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) 56) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) NIL)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 34) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-178) (-728)) (T -178))
+NIL
+(-728)
+((-3008 (((-108) $ $) NIL)) (-2486 (((-964) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) 67) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) NIL)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 38) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-179) (-728)) (T -179))
+NIL
+(-728)
+((-3008 (((-108) $ $) NIL)) (-2486 (((-964) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) 73) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) NIL)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 36) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-180) (-728)) (T -180))
+NIL
+(-728)
+((-3008 (((-108) $ $) NIL)) (-2486 (((-964) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) 80) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) NIL)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 44) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-181) (-728)) (T -181))
+NIL
+(-728)
+((-3008 (((-108) $ $) NIL)) (-2486 (((-964) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) 70) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) NIL)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 40) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-182) (-728)) (T -182))
+NIL
+(-728)
+((-3008 (((-108) $ $) NIL)) (-2486 (((-964) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) NIL) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) 65)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) NIL) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 32)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-183) (-728)) (T -183))
+NIL
+(-728)
+((-3008 (((-108) $ $) NIL)) (-2486 (((-964) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) NIL) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) 63)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) NIL) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 34)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-184) (-728)) (T -184))
+NIL
+(-728)
+((-3008 (((-108) $ $) NIL)) (-2486 (((-964) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) 90) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) NIL)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 78) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-185) (-728)) (T -185))
+NIL
+(-728)
+((-1270 (((-3 (-2 (|:| -4157 (-110)) (|:| |w| (-205))) "failed") (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 85)) (-2790 (((-525) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 42)) (-3762 (((-3 (-591 (-205)) "failed") (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 73)))
+(((-186) (-10 -7 (-15 -1270 ((-3 (-2 (|:| -4157 (-110)) (|:| |w| (-205))) "failed") (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -3762 ((-3 (-591 (-205)) "failed") (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -2790 ((-525) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))))) (T -186))
+((-2790 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-525)) (-5 *1 (-186)))) (-3762 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-591 (-205))) (-5 *1 (-186)))) (-1270 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-2 (|:| -4157 (-110)) (|:| |w| (-205)))) (-5 *1 (-186)))))
+(-10 -7 (-15 -1270 ((-3 (-2 (|:| -4157 (-110)) (|:| |w| (-205))) "failed") (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -3762 ((-3 (-591 (-205)) "failed") (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -2790 ((-525) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))))
+((-1929 (((-357) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 39)) (-2636 (((-2 (|:| |stiffnessFactor| (-357)) (|:| |stabilityFactor| (-357))) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 129)) (-4029 (((-2 (|:| |stiffnessFactor| (-357)) (|:| |stabilityFactor| (-357))) (-631 (-294 (-205)))) 88)) (-3065 (((-357) (-631 (-294 (-205)))) 112)) (-1228 (((-631 (-294 (-205))) (-1171 (-294 (-205))) (-591 (-1089))) 109)) (-4089 (((-357) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 30)) (-1404 (((-357) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 43)) (-4132 (((-631 (-294 (-205))) (-631 (-294 (-205))) (-591 (-1089)) (-1171 (-294 (-205)))) 101)) (-3688 (((-357) (-357) (-591 (-357))) 106) (((-357) (-357) (-357)) 104)) (-2491 (((-357) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 36)))
+(((-187) (-10 -7 (-15 -3688 ((-357) (-357) (-357))) (-15 -3688 ((-357) (-357) (-591 (-357)))) (-15 -3065 ((-357) (-631 (-294 (-205))))) (-15 -1228 ((-631 (-294 (-205))) (-1171 (-294 (-205))) (-591 (-1089)))) (-15 -4132 ((-631 (-294 (-205))) (-631 (-294 (-205))) (-591 (-1089)) (-1171 (-294 (-205))))) (-15 -4029 ((-2 (|:| |stiffnessFactor| (-357)) (|:| |stabilityFactor| (-357))) (-631 (-294 (-205))))) (-15 -2636 ((-2 (|:| |stiffnessFactor| (-357)) (|:| |stabilityFactor| (-357))) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -1929 ((-357) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -1404 ((-357) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -2491 ((-357) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -4089 ((-357) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))))) (T -187))
+((-4089 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-357)) (-5 *1 (-187)))) (-2491 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-357)) (-5 *1 (-187)))) (-1404 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-357)) (-5 *1 (-187)))) (-1929 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-357)) (-5 *1 (-187)))) (-2636 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-357)) (|:| |stabilityFactor| (-357)))) (-5 *1 (-187)))) (-4029 (*1 *2 *3) (-12 (-5 *3 (-631 (-294 (-205)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-357)) (|:| |stabilityFactor| (-357)))) (-5 *1 (-187)))) (-4132 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-631 (-294 (-205)))) (-5 *3 (-591 (-1089))) (-5 *4 (-1171 (-294 (-205)))) (-5 *1 (-187)))) (-1228 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 (-294 (-205)))) (-5 *4 (-591 (-1089))) (-5 *2 (-631 (-294 (-205)))) (-5 *1 (-187)))) (-3065 (*1 *2 *3) (-12 (-5 *3 (-631 (-294 (-205)))) (-5 *2 (-357)) (-5 *1 (-187)))) (-3688 (*1 *2 *2 *3) (-12 (-5 *3 (-591 (-357))) (-5 *2 (-357)) (-5 *1 (-187)))) (-3688 (*1 *2 *2 *2) (-12 (-5 *2 (-357)) (-5 *1 (-187)))))
+(-10 -7 (-15 -3688 ((-357) (-357) (-357))) (-15 -3688 ((-357) (-357) (-591 (-357)))) (-15 -3065 ((-357) (-631 (-294 (-205))))) (-15 -1228 ((-631 (-294 (-205))) (-1171 (-294 (-205))) (-591 (-1089)))) (-15 -4132 ((-631 (-294 (-205))) (-631 (-294 (-205))) (-591 (-1089)) (-1171 (-294 (-205))))) (-15 -4029 ((-2 (|:| |stiffnessFactor| (-357)) (|:| |stabilityFactor| (-357))) (-631 (-294 (-205))))) (-15 -2636 ((-2 (|:| |stiffnessFactor| (-357)) (|:| |stabilityFactor| (-357))) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -1929 ((-357) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -1404 ((-357) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -2491 ((-357) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -4089 ((-357) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))))
+((-3008 (((-108) $ $) NIL)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 41)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-3968 (((-964) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 64)) (-4096 (((-108) $ $) NIL)))
+(((-188) (-741)) (T -188))
+NIL
+(-741)
+((-3008 (((-108) $ $) NIL)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 41)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-3968 (((-964) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 62)) (-4096 (((-108) $ $) NIL)))
+(((-189) (-741)) (T -189))
+NIL
+(-741)
+((-3008 (((-108) $ $) NIL)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 40)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-3968 (((-964) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 66)) (-4096 (((-108) $ $) NIL)))
+(((-190) (-741)) (T -190))
+NIL
+(-741)
+((-3008 (((-108) $ $) NIL)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 46)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-3968 (((-964) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 75)) (-4096 (((-108) $ $) NIL)))
+(((-191) (-741)) (T -191))
+NIL
+(-741)
+((-3531 (((-591 (-1089)) (-1089) (-712)) 23)) (-2812 (((-294 (-205)) (-294 (-205))) 31)) (-1727 (((-108) (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205)))) 73)) (-1903 (((-108) (-205) (-205) (-591 (-294 (-205)))) 44)))
+(((-192) (-10 -7 (-15 -3531 ((-591 (-1089)) (-1089) (-712))) (-15 -2812 ((-294 (-205)) (-294 (-205)))) (-15 -1903 ((-108) (-205) (-205) (-591 (-294 (-205))))) (-15 -1727 ((-108) (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205))))))) (T -192))
+((-1727 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205)))) (-5 *2 (-108)) (-5 *1 (-192)))) (-1903 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-591 (-294 (-205)))) (-5 *3 (-205)) (-5 *2 (-108)) (-5 *1 (-192)))) (-2812 (*1 *2 *2) (-12 (-5 *2 (-294 (-205))) (-5 *1 (-192)))) (-3531 (*1 *2 *3 *4) (-12 (-5 *4 (-712)) (-5 *2 (-591 (-1089))) (-5 *1 (-192)) (-5 *3 (-1089)))))
+(-10 -7 (-15 -3531 ((-591 (-1089)) (-1089) (-712))) (-15 -2812 ((-294 (-205)) (-294 (-205)))) (-15 -1903 ((-108) (-205) (-205) (-591 (-294 (-205))))) (-15 -1727 ((-108) (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205))))))
+((-3008 (((-108) $ $) NIL)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205)))) 26)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-2276 (((-964) (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205)))) 57)) (-4096 (((-108) $ $) NIL)))
+(((-193) (-828)) (T -193))
+NIL
+(-828)
+((-3008 (((-108) $ $) NIL)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205)))) 21)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-2276 (((-964) (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205)))) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-194) (-828)) (T -194))
+NIL
+(-828)
+((-3008 (((-108) $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3600 (((-1176) $) 36) (((-1176) $ (-854) (-854)) 38)) (-3164 (($ $ (-920)) 19) (((-225 (-1072)) $ (-1089)) 15)) (-3551 (((-1176) $) 34)) (-3022 (((-796) $) 31) (($ (-591 |#1|)) 8)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $ $) 27)) (-4156 (($ $ $) 22)))
+(((-195 |#1|) (-13 (-1018) (-10 -8 (-15 -3164 ($ $ (-920))) (-15 -3164 ((-225 (-1072)) $ (-1089))) (-15 -4156 ($ $ $)) (-15 -4164 ($ $ $)) (-15 -3022 ($ (-591 |#1|))) (-15 -3551 ((-1176) $)) (-15 -3600 ((-1176) $)) (-15 -3600 ((-1176) $ (-854) (-854))))) (-13 (-788) (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 ((-1176) $)) (-15 -3600 ((-1176) $))))) (T -195))
+((-3164 (*1 *1 *1 *2) (-12 (-5 *2 (-920)) (-5 *1 (-195 *3)) (-4 *3 (-13 (-788) (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 ((-1176) $)) (-15 -3600 ((-1176) $))))))) (-3164 (*1 *2 *1 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-225 (-1072))) (-5 *1 (-195 *4)) (-4 *4 (-13 (-788) (-10 -8 (-15 -3164 ((-1072) $ *3)) (-15 -3551 ((-1176) $)) (-15 -3600 ((-1176) $))))))) (-4156 (*1 *1 *1 *1) (-12 (-5 *1 (-195 *2)) (-4 *2 (-13 (-788) (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 ((-1176) $)) (-15 -3600 ((-1176) $))))))) (-4164 (*1 *1 *1 *1) (-12 (-5 *1 (-195 *2)) (-4 *2 (-13 (-788) (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 ((-1176) $)) (-15 -3600 ((-1176) $))))))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-13 (-788) (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 ((-1176) $)) (-15 -3600 ((-1176) $))))) (-5 *1 (-195 *3)))) (-3551 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-195 *3)) (-4 *3 (-13 (-788) (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 (*2 $)) (-15 -3600 (*2 $))))))) (-3600 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-195 *3)) (-4 *3 (-13 (-788) (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 (*2 $)) (-15 -3600 (*2 $))))))) (-3600 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1176)) (-5 *1 (-195 *4)) (-4 *4 (-13 (-788) (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 (*2 $)) (-15 -3600 (*2 $))))))))
+(-13 (-1018) (-10 -8 (-15 -3164 ($ $ (-920))) (-15 -3164 ((-225 (-1072)) $ (-1089))) (-15 -4156 ($ $ $)) (-15 -4164 ($ $ $)) (-15 -3022 ($ (-591 |#1|))) (-15 -3551 ((-1176) $)) (-15 -3600 ((-1176) $)) (-15 -3600 ((-1176) $ (-854) (-854)))))
+((-2781 ((|#2| |#4| (-1 |#2| |#2|)) 46)))
+(((-196 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2781 (|#2| |#4| (-1 |#2| |#2|)))) (-341) (-1147 |#1|) (-1147 (-385 |#2|)) (-320 |#1| |#2| |#3|)) (T -196))
+((-2781 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-341)) (-4 *6 (-1147 (-385 *2))) (-4 *2 (-1147 *5)) (-5 *1 (-196 *5 *2 *6 *3)) (-4 *3 (-320 *5 *2 *6)))))
+(-10 -7 (-15 -2781 (|#2| |#4| (-1 |#2| |#2|))))
+((-3679 ((|#2| |#2| (-712) |#2|) 42)) (-2579 ((|#2| |#2| (-712) |#2|) 38)) (-3237 (((-591 |#2|) (-591 (-2 (|:| |deg| (-712)) (|:| -1553 |#2|)))) 58)) (-3147 (((-591 (-2 (|:| |deg| (-712)) (|:| -1553 |#2|))) |#2|) 53)) (-1666 (((-108) |#2|) 50)) (-3646 (((-396 |#2|) |#2|) 78)) (-1348 (((-396 |#2|) |#2|) 77)) (-1571 ((|#2| |#2| (-712) |#2|) 36)) (-2833 (((-2 (|:| |cont| |#1|) (|:| -3781 (-591 (-2 (|:| |irr| |#2|) (|:| -3265 (-525)))))) |#2| (-108)) 70)))
+(((-197 |#1| |#2|) (-10 -7 (-15 -1348 ((-396 |#2|) |#2|)) (-15 -3646 ((-396 |#2|) |#2|)) (-15 -2833 ((-2 (|:| |cont| |#1|) (|:| -3781 (-591 (-2 (|:| |irr| |#2|) (|:| -3265 (-525)))))) |#2| (-108))) (-15 -3147 ((-591 (-2 (|:| |deg| (-712)) (|:| -1553 |#2|))) |#2|)) (-15 -3237 ((-591 |#2|) (-591 (-2 (|:| |deg| (-712)) (|:| -1553 |#2|))))) (-15 -1571 (|#2| |#2| (-712) |#2|)) (-15 -2579 (|#2| |#2| (-712) |#2|)) (-15 -3679 (|#2| |#2| (-712) |#2|)) (-15 -1666 ((-108) |#2|))) (-327) (-1147 |#1|)) (T -197))
+((-1666 (*1 *2 *3) (-12 (-4 *4 (-327)) (-5 *2 (-108)) (-5 *1 (-197 *4 *3)) (-4 *3 (-1147 *4)))) (-3679 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-712)) (-4 *4 (-327)) (-5 *1 (-197 *4 *2)) (-4 *2 (-1147 *4)))) (-2579 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-712)) (-4 *4 (-327)) (-5 *1 (-197 *4 *2)) (-4 *2 (-1147 *4)))) (-1571 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-712)) (-4 *4 (-327)) (-5 *1 (-197 *4 *2)) (-4 *2 (-1147 *4)))) (-3237 (*1 *2 *3) (-12 (-5 *3 (-591 (-2 (|:| |deg| (-712)) (|:| -1553 *5)))) (-4 *5 (-1147 *4)) (-4 *4 (-327)) (-5 *2 (-591 *5)) (-5 *1 (-197 *4 *5)))) (-3147 (*1 *2 *3) (-12 (-4 *4 (-327)) (-5 *2 (-591 (-2 (|:| |deg| (-712)) (|:| -1553 *3)))) (-5 *1 (-197 *4 *3)) (-4 *3 (-1147 *4)))) (-2833 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-327)) (-5 *2 (-2 (|:| |cont| *5) (|:| -3781 (-591 (-2 (|:| |irr| *3) (|:| -3265 (-525))))))) (-5 *1 (-197 *5 *3)) (-4 *3 (-1147 *5)))) (-3646 (*1 *2 *3) (-12 (-4 *4 (-327)) (-5 *2 (-396 *3)) (-5 *1 (-197 *4 *3)) (-4 *3 (-1147 *4)))) (-1348 (*1 *2 *3) (-12 (-4 *4 (-327)) (-5 *2 (-396 *3)) (-5 *1 (-197 *4 *3)) (-4 *3 (-1147 *4)))))
+(-10 -7 (-15 -1348 ((-396 |#2|) |#2|)) (-15 -3646 ((-396 |#2|) |#2|)) (-15 -2833 ((-2 (|:| |cont| |#1|) (|:| -3781 (-591 (-2 (|:| |irr| |#2|) (|:| -3265 (-525)))))) |#2| (-108))) (-15 -3147 ((-591 (-2 (|:| |deg| (-712)) (|:| -1553 |#2|))) |#2|)) (-15 -3237 ((-591 |#2|) (-591 (-2 (|:| |deg| (-712)) (|:| -1553 |#2|))))) (-15 -1571 (|#2| |#2| (-712) |#2|)) (-15 -2579 (|#2| |#2| (-712) |#2|)) (-15 -3679 (|#2| |#2| (-712) |#2|)) (-15 -1666 ((-108) |#2|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1508 (((-525) $) NIL (|has| (-525) (-286)))) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1947 (((-108) $ $) NIL)) (-3329 (((-525) $) NIL (|has| (-525) (-761)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL) (((-3 (-1089) "failed") $) NIL (|has| (-525) (-966 (-1089)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| (-525) (-966 (-525)))) (((-3 (-525) "failed") $) NIL (|has| (-525) (-966 (-525))))) (-3528 (((-525) $) NIL) (((-1089) $) NIL (|has| (-525) (-966 (-1089)))) (((-385 (-525)) $) NIL (|has| (-525) (-966 (-525)))) (((-525) $) NIL (|has| (-525) (-966 (-525))))) (-2129 (($ $ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| (-525) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| (-525) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL) (((-631 (-525)) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) NIL (|has| (-525) (-510)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2134 (((-108) $) NIL (|has| (-525) (-761)))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (|has| (-525) (-819 (-525)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (|has| (-525) (-819 (-357))))) (-2824 (((-108) $) NIL)) (-2368 (($ $) NIL)) (-1738 (((-525) $) NIL)) (-2085 (((-3 $ "failed") $) NIL (|has| (-525) (-1065)))) (-2732 (((-108) $) NIL (|has| (-525) (-761)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3741 (($ $ $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| (-525) (-788)))) (-1340 (($ (-1 (-525) (-525)) $) NIL)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| (-525) (-1065)) CONST)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3093 (($ $) NIL (|has| (-525) (-286))) (((-385 (-525)) $) NIL)) (-2662 (((-525) $) NIL (|has| (-525) (-510)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-4132 (($ $ (-591 (-525)) (-591 (-525))) NIL (|has| (-525) (-288 (-525)))) (($ $ (-525) (-525)) NIL (|has| (-525) (-288 (-525)))) (($ $ (-273 (-525))) NIL (|has| (-525) (-288 (-525)))) (($ $ (-591 (-273 (-525)))) NIL (|has| (-525) (-288 (-525)))) (($ $ (-591 (-1089)) (-591 (-525))) NIL (|has| (-525) (-486 (-1089) (-525)))) (($ $ (-1089) (-525)) NIL (|has| (-525) (-486 (-1089) (-525))))) (-1712 (((-712) $) NIL)) (-3164 (($ $ (-525)) NIL (|has| (-525) (-265 (-525) (-525))))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3266 (($ $) NIL (|has| (-525) (-213))) (($ $ (-712)) NIL (|has| (-525) (-213))) (($ $ (-1089)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1 (-525) (-525)) (-712)) NIL) (($ $ (-1 (-525) (-525))) NIL)) (-2966 (($ $) NIL)) (-1754 (((-525) $) NIL)) (-2681 (($ (-385 (-525))) 9)) (-1408 (((-825 (-525)) $) NIL (|has| (-525) (-566 (-825 (-525))))) (((-825 (-357)) $) NIL (|has| (-525) (-566 (-825 (-357))))) (((-501) $) NIL (|has| (-525) (-566 (-501)))) (((-357) $) NIL (|has| (-525) (-951))) (((-205) $) NIL (|has| (-525) (-951)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| (-525) (-842))))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) 8) (($ (-525)) NIL) (($ (-1089)) NIL (|has| (-525) (-966 (-1089)))) (((-385 (-525)) $) NIL) (((-934 10) $) 10)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| (-525) (-842))) (|has| (-525) (-136))))) (-2128 (((-712)) NIL)) (-3862 (((-525) $) NIL (|has| (-525) (-510)))) (-2495 (((-108) $ $) NIL)) (-1539 (($ $) NIL (|has| (-525) (-761)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $) NIL (|has| (-525) (-213))) (($ $ (-712)) NIL (|has| (-525) (-213))) (($ $ (-1089)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1 (-525) (-525)) (-712)) NIL) (($ $ (-1 (-525) (-525))) NIL)) (-4135 (((-108) $ $) NIL (|has| (-525) (-788)))) (-4119 (((-108) $ $) NIL (|has| (-525) (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| (-525) (-788)))) (-4112 (((-108) $ $) NIL (|has| (-525) (-788)))) (-4173 (($ $ $) NIL) (($ (-525) (-525)) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ (-525) $) NIL) (($ $ (-525)) NIL)))
+(((-198) (-13 (-923 (-525)) (-10 -8 (-15 -3022 ((-385 (-525)) $)) (-15 -3022 ((-934 10) $)) (-15 -3093 ((-385 (-525)) $)) (-15 -2681 ($ (-385 (-525))))))) (T -198))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-198)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-934 10)) (-5 *1 (-198)))) (-3093 (*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-198)))) (-2681 (*1 *1 *2) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-198)))))
+(-13 (-923 (-525)) (-10 -8 (-15 -3022 ((-385 (-525)) $)) (-15 -3022 ((-934 10) $)) (-15 -3093 ((-385 (-525)) $)) (-15 -2681 ($ (-385 (-525))))))
+((-4141 (((-3 (|:| |f1| (-781 |#2|)) (|:| |f2| (-591 (-781 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1011 (-781 |#2|)) (-1072)) 28) (((-3 (|:| |f1| (-781 |#2|)) (|:| |f2| (-591 (-781 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1011 (-781 |#2|))) 24)) (-2293 (((-3 (|:| |f1| (-781 |#2|)) (|:| |f2| (-591 (-781 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1089) (-781 |#2|) (-781 |#2|) (-108)) 17)))
+(((-199 |#1| |#2|) (-10 -7 (-15 -4141 ((-3 (|:| |f1| (-781 |#2|)) (|:| |f2| (-591 (-781 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1011 (-781 |#2|)))) (-15 -4141 ((-3 (|:| |f1| (-781 |#2|)) (|:| |f2| (-591 (-781 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1011 (-781 |#2|)) (-1072))) (-15 -2293 ((-3 (|:| |f1| (-781 |#2|)) (|:| |f2| (-591 (-781 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1089) (-781 |#2|) (-781 |#2|) (-108)))) (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))) (-13 (-1111) (-891) (-29 |#1|))) (T -199))
+((-2293 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-1089)) (-5 *6 (-108)) (-4 *7 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-4 *3 (-13 (-1111) (-891) (-29 *7))) (-5 *2 (-3 (|:| |f1| (-781 *3)) (|:| |f2| (-591 (-781 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-199 *7 *3)) (-5 *5 (-781 *3)))) (-4141 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1011 (-781 *3))) (-5 *5 (-1072)) (-4 *3 (-13 (-1111) (-891) (-29 *6))) (-4 *6 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *2 (-3 (|:| |f1| (-781 *3)) (|:| |f2| (-591 (-781 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-199 *6 *3)))) (-4141 (*1 *2 *3 *4) (-12 (-5 *4 (-1011 (-781 *3))) (-4 *3 (-13 (-1111) (-891) (-29 *5))) (-4 *5 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *2 (-3 (|:| |f1| (-781 *3)) (|:| |f2| (-591 (-781 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-199 *5 *3)))))
+(-10 -7 (-15 -4141 ((-3 (|:| |f1| (-781 |#2|)) (|:| |f2| (-591 (-781 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1011 (-781 |#2|)))) (-15 -4141 ((-3 (|:| |f1| (-781 |#2|)) (|:| |f2| (-591 (-781 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1011 (-781 |#2|)) (-1072))) (-15 -2293 ((-3 (|:| |f1| (-781 |#2|)) (|:| |f2| (-591 (-781 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1089) (-781 |#2|) (-781 |#2|) (-108))))
+((-4141 (((-3 (|:| |f1| (-781 (-294 |#1|))) (|:| |f2| (-591 (-781 (-294 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-385 (-885 |#1|)) (-1011 (-781 (-385 (-885 |#1|)))) (-1072)) 46) (((-3 (|:| |f1| (-781 (-294 |#1|))) (|:| |f2| (-591 (-781 (-294 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-385 (-885 |#1|)) (-1011 (-781 (-385 (-885 |#1|))))) 43) (((-3 (|:| |f1| (-781 (-294 |#1|))) (|:| |f2| (-591 (-781 (-294 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-385 (-885 |#1|)) (-1011 (-781 (-294 |#1|))) (-1072)) 47) (((-3 (|:| |f1| (-781 (-294 |#1|))) (|:| |f2| (-591 (-781 (-294 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-385 (-885 |#1|)) (-1011 (-781 (-294 |#1|)))) 20)))
+(((-200 |#1|) (-10 -7 (-15 -4141 ((-3 (|:| |f1| (-781 (-294 |#1|))) (|:| |f2| (-591 (-781 (-294 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-385 (-885 |#1|)) (-1011 (-781 (-294 |#1|))))) (-15 -4141 ((-3 (|:| |f1| (-781 (-294 |#1|))) (|:| |f2| (-591 (-781 (-294 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-385 (-885 |#1|)) (-1011 (-781 (-294 |#1|))) (-1072))) (-15 -4141 ((-3 (|:| |f1| (-781 (-294 |#1|))) (|:| |f2| (-591 (-781 (-294 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-385 (-885 |#1|)) (-1011 (-781 (-385 (-885 |#1|)))))) (-15 -4141 ((-3 (|:| |f1| (-781 (-294 |#1|))) (|:| |f2| (-591 (-781 (-294 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-385 (-885 |#1|)) (-1011 (-781 (-385 (-885 |#1|)))) (-1072)))) (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525)))) (T -200))
+((-4141 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1011 (-781 (-385 (-885 *6))))) (-5 *5 (-1072)) (-5 *3 (-385 (-885 *6))) (-4 *6 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *2 (-3 (|:| |f1| (-781 (-294 *6))) (|:| |f2| (-591 (-781 (-294 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-200 *6)))) (-4141 (*1 *2 *3 *4) (-12 (-5 *4 (-1011 (-781 (-385 (-885 *5))))) (-5 *3 (-385 (-885 *5))) (-4 *5 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *2 (-3 (|:| |f1| (-781 (-294 *5))) (|:| |f2| (-591 (-781 (-294 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-200 *5)))) (-4141 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-385 (-885 *6))) (-5 *4 (-1011 (-781 (-294 *6)))) (-5 *5 (-1072)) (-4 *6 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *2 (-3 (|:| |f1| (-781 (-294 *6))) (|:| |f2| (-591 (-781 (-294 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-200 *6)))) (-4141 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-1011 (-781 (-294 *5)))) (-4 *5 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *2 (-3 (|:| |f1| (-781 (-294 *5))) (|:| |f2| (-591 (-781 (-294 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-200 *5)))))
+(-10 -7 (-15 -4141 ((-3 (|:| |f1| (-781 (-294 |#1|))) (|:| |f2| (-591 (-781 (-294 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-385 (-885 |#1|)) (-1011 (-781 (-294 |#1|))))) (-15 -4141 ((-3 (|:| |f1| (-781 (-294 |#1|))) (|:| |f2| (-591 (-781 (-294 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-385 (-885 |#1|)) (-1011 (-781 (-294 |#1|))) (-1072))) (-15 -4141 ((-3 (|:| |f1| (-781 (-294 |#1|))) (|:| |f2| (-591 (-781 (-294 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-385 (-885 |#1|)) (-1011 (-781 (-385 (-885 |#1|)))))) (-15 -4141 ((-3 (|:| |f1| (-781 (-294 |#1|))) (|:| |f2| (-591 (-781 (-294 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-385 (-885 |#1|)) (-1011 (-781 (-385 (-885 |#1|)))) (-1072))))
+((-1227 (((-2 (|:| -1357 (-1085 |#1|)) (|:| |deg| (-854))) (-1085 |#1|)) 21)) (-4093 (((-591 (-294 |#2|)) (-294 |#2|) (-854)) 42)))
+(((-201 |#1| |#2|) (-10 -7 (-15 -1227 ((-2 (|:| -1357 (-1085 |#1|)) (|:| |deg| (-854))) (-1085 |#1|))) (-15 -4093 ((-591 (-294 |#2|)) (-294 |#2|) (-854)))) (-975) (-13 (-517) (-788))) (T -201))
+((-4093 (*1 *2 *3 *4) (-12 (-5 *4 (-854)) (-4 *6 (-13 (-517) (-788))) (-5 *2 (-591 (-294 *6))) (-5 *1 (-201 *5 *6)) (-5 *3 (-294 *6)) (-4 *5 (-975)))) (-1227 (*1 *2 *3) (-12 (-4 *4 (-975)) (-5 *2 (-2 (|:| -1357 (-1085 *4)) (|:| |deg| (-854)))) (-5 *1 (-201 *4 *5)) (-5 *3 (-1085 *4)) (-4 *5 (-13 (-517) (-788))))))
+(-10 -7 (-15 -1227 ((-2 (|:| -1357 (-1085 |#1|)) (|:| |deg| (-854))) (-1085 |#1|))) (-15 -4093 ((-591 (-294 |#2|)) (-294 |#2|) (-854))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4115 ((|#1| $) NIL)) (-1211 ((|#1| $) 25)) (-3891 (((-108) $ (-712)) NIL)) (-3798 (($) NIL T CONST)) (-3474 (($ $) NIL)) (-2598 (($ $) 31)) (-1275 ((|#1| |#1| $) NIL)) (-1764 ((|#1| $) NIL)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-1657 (((-712) $) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-1464 ((|#1| $) NIL)) (-3758 ((|#1| |#1| $) 28)) (-3823 ((|#1| |#1| $) 30)) (-2470 (($ |#1| $) NIL)) (-2965 (((-712) $) 27)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-2620 ((|#1| $) NIL)) (-1305 ((|#1| $) 26)) (-2327 ((|#1| $) 24)) (-3631 ((|#1| $) NIL)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1296 ((|#1| |#1| $) NIL)) (-3028 (((-108) $) 9)) (-3209 (($) NIL)) (-3723 ((|#1| $) NIL)) (-2735 (($) NIL) (($ (-591 |#1|)) 16)) (-1326 (((-712) $) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-1910 ((|#1| $) 13)) (-1870 (($ (-591 |#1|)) NIL)) (-3133 ((|#1| $) NIL)) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-202 |#1|) (-13 (-233 |#1|) (-10 -8 (-15 -2735 ($ (-591 |#1|))))) (-1018)) (T -202))
+((-2735 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-202 *3)))))
+(-13 (-233 |#1|) (-10 -8 (-15 -2735 ($ (-591 |#1|)))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1697 (($ (-294 |#1|)) 23)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-2600 (((-108) $) NIL)) (-1251 (((-3 (-294 |#1|) "failed") $) NIL)) (-3528 (((-294 |#1|) $) NIL)) (-1710 (($ $) 31)) (-4163 (((-3 $ "failed") $) NIL)) (-2824 (((-108) $) NIL)) (-1340 (($ (-1 (-294 |#1|) (-294 |#1|)) $) NIL)) (-1678 (((-294 |#1|) $) NIL)) (-1224 (($ $) 30)) (-2339 (((-1072) $) NIL)) (-3779 (((-108) $) NIL)) (-2047 (((-1036) $) NIL)) (-3857 (($ (-712)) NIL)) (-3918 (($ $) 32)) (-1316 (((-525) $) NIL)) (-3022 (((-796) $) 57) (($ (-525)) NIL) (($ (-294 |#1|)) NIL)) (-2560 (((-294 |#1|) $ $) NIL)) (-2128 (((-712)) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 25 T CONST)) (-4197 (($) 50 T CONST)) (-4096 (((-108) $ $) 28)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) 19)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 24) (($ (-294 |#1|) $) 18)))
+(((-203 |#1| |#2|) (-13 (-569 (-294 |#1|)) (-966 (-294 |#1|)) (-10 -8 (-15 -1678 ((-294 |#1|) $)) (-15 -1224 ($ $)) (-15 -1710 ($ $)) (-15 -2560 ((-294 |#1|) $ $)) (-15 -3857 ($ (-712))) (-15 -3779 ((-108) $)) (-15 -2600 ((-108) $)) (-15 -1316 ((-525) $)) (-15 -1340 ($ (-1 (-294 |#1|) (-294 |#1|)) $)) (-15 -1697 ($ (-294 |#1|))) (-15 -3918 ($ $)))) (-13 (-975) (-788)) (-591 (-1089))) (T -203))
+((-1678 (*1 *2 *1) (-12 (-5 *2 (-294 *3)) (-5 *1 (-203 *3 *4)) (-4 *3 (-13 (-975) (-788))) (-14 *4 (-591 (-1089))))) (-1224 (*1 *1 *1) (-12 (-5 *1 (-203 *2 *3)) (-4 *2 (-13 (-975) (-788))) (-14 *3 (-591 (-1089))))) (-1710 (*1 *1 *1) (-12 (-5 *1 (-203 *2 *3)) (-4 *2 (-13 (-975) (-788))) (-14 *3 (-591 (-1089))))) (-2560 (*1 *2 *1 *1) (-12 (-5 *2 (-294 *3)) (-5 *1 (-203 *3 *4)) (-4 *3 (-13 (-975) (-788))) (-14 *4 (-591 (-1089))))) (-3857 (*1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-203 *3 *4)) (-4 *3 (-13 (-975) (-788))) (-14 *4 (-591 (-1089))))) (-3779 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-203 *3 *4)) (-4 *3 (-13 (-975) (-788))) (-14 *4 (-591 (-1089))))) (-2600 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-203 *3 *4)) (-4 *3 (-13 (-975) (-788))) (-14 *4 (-591 (-1089))))) (-1316 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-203 *3 *4)) (-4 *3 (-13 (-975) (-788))) (-14 *4 (-591 (-1089))))) (-1340 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-294 *3) (-294 *3))) (-4 *3 (-13 (-975) (-788))) (-5 *1 (-203 *3 *4)) (-14 *4 (-591 (-1089))))) (-1697 (*1 *1 *2) (-12 (-5 *2 (-294 *3)) (-4 *3 (-13 (-975) (-788))) (-5 *1 (-203 *3 *4)) (-14 *4 (-591 (-1089))))) (-3918 (*1 *1 *1) (-12 (-5 *1 (-203 *2 *3)) (-4 *2 (-13 (-975) (-788))) (-14 *3 (-591 (-1089))))))
+(-13 (-569 (-294 |#1|)) (-966 (-294 |#1|)) (-10 -8 (-15 -1678 ((-294 |#1|) $)) (-15 -1224 ($ $)) (-15 -1710 ($ $)) (-15 -2560 ((-294 |#1|) $ $)) (-15 -3857 ($ (-712))) (-15 -3779 ((-108) $)) (-15 -2600 ((-108) $)) (-15 -1316 ((-525) $)) (-15 -1340 ($ (-1 (-294 |#1|) (-294 |#1|)) $)) (-15 -1697 ($ (-294 |#1|))) (-15 -3918 ($ $))))
+((-2383 (((-108) (-1072)) 22)) (-3430 (((-3 (-781 |#2|) "failed") (-564 |#2|) |#2| (-781 |#2|) (-781 |#2|) (-108)) 32)) (-3438 (((-3 (-108) "failed") (-1085 |#2|) (-781 |#2|) (-781 |#2|) (-108)) 73) (((-3 (-108) "failed") (-885 |#1|) (-1089) (-781 |#2|) (-781 |#2|) (-108)) 74)))
+(((-204 |#1| |#2|) (-10 -7 (-15 -2383 ((-108) (-1072))) (-15 -3430 ((-3 (-781 |#2|) "failed") (-564 |#2|) |#2| (-781 |#2|) (-781 |#2|) (-108))) (-15 -3438 ((-3 (-108) "failed") (-885 |#1|) (-1089) (-781 |#2|) (-781 |#2|) (-108))) (-15 -3438 ((-3 (-108) "failed") (-1085 |#2|) (-781 |#2|) (-781 |#2|) (-108)))) (-13 (-429) (-788) (-966 (-525)) (-587 (-525))) (-13 (-1111) (-29 |#1|))) (T -204))
+((-3438 (*1 *2 *3 *4 *4 *2) (|partial| -12 (-5 *2 (-108)) (-5 *3 (-1085 *6)) (-5 *4 (-781 *6)) (-4 *6 (-13 (-1111) (-29 *5))) (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-204 *5 *6)))) (-3438 (*1 *2 *3 *4 *5 *5 *2) (|partial| -12 (-5 *2 (-108)) (-5 *3 (-885 *6)) (-5 *4 (-1089)) (-5 *5 (-781 *7)) (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-4 *7 (-13 (-1111) (-29 *6))) (-5 *1 (-204 *6 *7)))) (-3430 (*1 *2 *3 *4 *2 *2 *5) (|partial| -12 (-5 *2 (-781 *4)) (-5 *3 (-564 *4)) (-5 *5 (-108)) (-4 *4 (-13 (-1111) (-29 *6))) (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-204 *6 *4)))) (-2383 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-108)) (-5 *1 (-204 *4 *5)) (-4 *5 (-13 (-1111) (-29 *4))))))
+(-10 -7 (-15 -2383 ((-108) (-1072))) (-15 -3430 ((-3 (-781 |#2|) "failed") (-564 |#2|) |#2| (-781 |#2|) (-781 |#2|) (-108))) (-15 -3438 ((-3 (-108) "failed") (-885 |#1|) (-1089) (-781 |#2|) (-781 |#2|) (-108))) (-15 -3438 ((-3 (-108) "failed") (-1085 |#2|) (-781 |#2|) (-781 |#2|) (-108))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 89)) (-1508 (((-525) $) 99)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2121 (($ $) NIL)) (-1987 (($ $) 77)) (-3169 (($ $) 65)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1361 (($ $) 56)) (-1947 (((-108) $ $) NIL)) (-1431 (($ $) 75)) (-3144 (($ $) 63)) (-3329 (((-525) $) 116)) (-1719 (($ $) 80)) (-1321 (($ $) 67)) (-3798 (($) NIL T CONST)) (-2562 (($ $) NIL)) (-1251 (((-3 (-525) "failed") $) 115) (((-3 (-385 (-525)) "failed") $) 112)) (-3528 (((-525) $) 113) (((-385 (-525)) $) 110)) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) 92)) (-2530 (((-385 (-525)) $ (-712)) 108) (((-385 (-525)) $ (-712) (-712)) 107)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2591 (((-854)) 29) (((-854) (-854)) NIL (|has| $ (-6 -4241)))) (-2134 (((-108) $) NIL)) (-1784 (($) 39)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL)) (-3873 (((-525) $) 35)) (-2824 (((-108) $) NIL)) (-3956 (($ $ (-525)) NIL)) (-2771 (($ $) NIL)) (-2732 (((-108) $) 88)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3741 (($ $ $) 53) (($) 34 (-12 (-2247 (|has| $ (-6 -4233))) (-2247 (|has| $ (-6 -4241)))))) (-2478 (($ $ $) 52) (($) 33 (-12 (-2247 (|has| $ (-6 -4233))) (-2247 (|has| $ (-6 -4241)))))) (-3855 (((-525) $) 27)) (-1714 (($ $) 30)) (-2897 (($ $) 57)) (-1488 (($ $) 62)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3241 (((-854) (-525)) NIL (|has| $ (-6 -4241)))) (-2047 (((-1036) $) NIL) (((-525) $) 90)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3093 (($ $) NIL)) (-2662 (($ $) NIL)) (-2286 (($ (-525) (-525)) NIL) (($ (-525) (-525) (-854)) 100)) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-2008 (((-525) $) 28)) (-2136 (($) 38)) (-1409 (($ $) 61)) (-1712 (((-712) $) NIL)) (-4033 (((-1072) (-1072)) 8)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2603 (((-854)) NIL) (((-854) (-854)) NIL (|has| $ (-6 -4241)))) (-3266 (($ $ (-712)) NIL) (($ $) 93)) (-1301 (((-854) (-525)) NIL (|has| $ (-6 -4241)))) (-1502 (($ $) 78)) (-1333 (($ $) 68)) (-1996 (($ $) 79)) (-1309 (($ $) 66)) (-1973 (($ $) 76)) (-3156 (($ $) 64)) (-1408 (((-357) $) 104) (((-205) $) 101) (((-825 (-357)) $) NIL) (((-501) $) 45)) (-3022 (((-796) $) 42) (($ (-525)) 60) (($ $) NIL) (($ (-385 (-525))) NIL) (($ (-525)) 60) (($ (-385 (-525))) NIL)) (-2128 (((-712)) NIL)) (-3862 (($ $) NIL)) (-3759 (((-854)) 32) (((-854) (-854)) NIL (|has| $ (-6 -4241)))) (-2672 (((-854)) 25)) (-1563 (($ $) 83)) (-1371 (($ $) 71) (($ $ $) 109)) (-2495 (((-108) $ $) NIL)) (-1515 (($ $) 81)) (-1346 (($ $) 69)) (-1591 (($ $) 86)) (-1400 (($ $) 74)) (-3277 (($ $) 84)) (-1415 (($ $) 72)) (-1578 (($ $) 85)) (-1385 (($ $) 73)) (-1527 (($ $) 82)) (-1358 (($ $) 70)) (-1539 (($ $) 117)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) 36 T CONST)) (-4197 (($) 37 T CONST)) (-2563 (((-1072) $) 19) (((-1072) $ (-108)) 21) (((-1176) (-763) $) 22) (((-1176) (-763) $ (-108)) 23)) (-3834 (($ $) 96)) (-4196 (($ $ (-712)) NIL) (($ $) NIL)) (-1617 (($ $ $) 98)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 54)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 46)) (-4173 (($ $ $) 87) (($ $ (-525)) 55)) (-4164 (($ $) 47) (($ $ $) 49)) (-4156 (($ $ $) 48)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) 58) (($ $ (-385 (-525))) 128) (($ $ $) 59)) (* (($ (-854) $) 31) (($ (-712) $) NIL) (($ (-525) $) 51) (($ $ $) 50) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL)))
+(((-205) (-13 (-382) (-213) (-769) (-1111) (-566 (-501)) (-10 -8 (-15 -4173 ($ $ (-525))) (-15 ** ($ $ $)) (-15 -2136 ($)) (-15 -2047 ((-525) $)) (-15 -1714 ($ $)) (-15 -2897 ($ $)) (-15 -1371 ($ $ $)) (-15 -3834 ($ $)) (-15 -1617 ($ $ $)) (-15 -4033 ((-1072) (-1072))) (-15 -2530 ((-385 (-525)) $ (-712))) (-15 -2530 ((-385 (-525)) $ (-712) (-712)))))) (T -205))
+((** (*1 *1 *1 *1) (-5 *1 (-205))) (-4173 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-205)))) (-2136 (*1 *1) (-5 *1 (-205))) (-2047 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-205)))) (-1714 (*1 *1 *1) (-5 *1 (-205))) (-2897 (*1 *1 *1) (-5 *1 (-205))) (-1371 (*1 *1 *1 *1) (-5 *1 (-205))) (-3834 (*1 *1 *1) (-5 *1 (-205))) (-1617 (*1 *1 *1 *1) (-5 *1 (-205))) (-4033 (*1 *2 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-205)))) (-2530 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-5 *2 (-385 (-525))) (-5 *1 (-205)))) (-2530 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-712)) (-5 *2 (-385 (-525))) (-5 *1 (-205)))))
+(-13 (-382) (-213) (-769) (-1111) (-566 (-501)) (-10 -8 (-15 -4173 ($ $ (-525))) (-15 ** ($ $ $)) (-15 -2136 ($)) (-15 -2047 ((-525) $)) (-15 -1714 ($ $)) (-15 -2897 ($ $)) (-15 -1371 ($ $ $)) (-15 -3834 ($ $)) (-15 -1617 ($ $ $)) (-15 -4033 ((-1072) (-1072))) (-15 -2530 ((-385 (-525)) $ (-712))) (-15 -2530 ((-385 (-525)) $ (-712) (-712)))))
+((-2307 (((-157 (-205)) (-712) (-157 (-205))) 11) (((-205) (-712) (-205)) 12)) (-2905 (((-157 (-205)) (-157 (-205))) 13) (((-205) (-205)) 14)) (-2566 (((-157 (-205)) (-157 (-205)) (-157 (-205))) 19) (((-205) (-205) (-205)) 22)) (-3225 (((-157 (-205)) (-157 (-205))) 25) (((-205) (-205)) 24)) (-2271 (((-157 (-205)) (-157 (-205)) (-157 (-205))) 43) (((-205) (-205) (-205)) 35)) (-3481 (((-157 (-205)) (-157 (-205)) (-157 (-205))) 48) (((-205) (-205) (-205)) 45)) (-4123 (((-157 (-205)) (-157 (-205)) (-157 (-205))) 15) (((-205) (-205) (-205)) 16)) (-1330 (((-157 (-205)) (-157 (-205)) (-157 (-205))) 17) (((-205) (-205) (-205)) 18)) (-2072 (((-157 (-205)) (-157 (-205))) 60) (((-205) (-205)) 59)) (-1828 (((-205) (-205)) 54) (((-157 (-205)) (-157 (-205))) 58)) (-3834 (((-157 (-205)) (-157 (-205))) 8) (((-205) (-205)) 9)) (-1617 (((-157 (-205)) (-157 (-205)) (-157 (-205))) 30) (((-205) (-205) (-205)) 26)))
+(((-206) (-10 -7 (-15 -3834 ((-205) (-205))) (-15 -3834 ((-157 (-205)) (-157 (-205)))) (-15 -1617 ((-205) (-205) (-205))) (-15 -1617 ((-157 (-205)) (-157 (-205)) (-157 (-205)))) (-15 -2905 ((-205) (-205))) (-15 -2905 ((-157 (-205)) (-157 (-205)))) (-15 -3225 ((-205) (-205))) (-15 -3225 ((-157 (-205)) (-157 (-205)))) (-15 -2307 ((-205) (-712) (-205))) (-15 -2307 ((-157 (-205)) (-712) (-157 (-205)))) (-15 -4123 ((-205) (-205) (-205))) (-15 -4123 ((-157 (-205)) (-157 (-205)) (-157 (-205)))) (-15 -2271 ((-205) (-205) (-205))) (-15 -2271 ((-157 (-205)) (-157 (-205)) (-157 (-205)))) (-15 -1330 ((-205) (-205) (-205))) (-15 -1330 ((-157 (-205)) (-157 (-205)) (-157 (-205)))) (-15 -3481 ((-205) (-205) (-205))) (-15 -3481 ((-157 (-205)) (-157 (-205)) (-157 (-205)))) (-15 -1828 ((-157 (-205)) (-157 (-205)))) (-15 -1828 ((-205) (-205))) (-15 -2072 ((-205) (-205))) (-15 -2072 ((-157 (-205)) (-157 (-205)))) (-15 -2566 ((-205) (-205) (-205))) (-15 -2566 ((-157 (-205)) (-157 (-205)) (-157 (-205)))))) (T -206))
+((-2566 (*1 *2 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206)))) (-2566 (*1 *2 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206)))) (-2072 (*1 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206)))) (-2072 (*1 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206)))) (-1828 (*1 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206)))) (-1828 (*1 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206)))) (-3481 (*1 *2 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206)))) (-3481 (*1 *2 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206)))) (-1330 (*1 *2 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206)))) (-1330 (*1 *2 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206)))) (-2271 (*1 *2 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206)))) (-2271 (*1 *2 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206)))) (-4123 (*1 *2 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206)))) (-4123 (*1 *2 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206)))) (-2307 (*1 *2 *3 *2) (-12 (-5 *2 (-157 (-205))) (-5 *3 (-712)) (-5 *1 (-206)))) (-2307 (*1 *2 *3 *2) (-12 (-5 *2 (-205)) (-5 *3 (-712)) (-5 *1 (-206)))) (-3225 (*1 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206)))) (-3225 (*1 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206)))) (-2905 (*1 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206)))) (-2905 (*1 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206)))) (-1617 (*1 *2 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206)))) (-1617 (*1 *2 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206)))) (-3834 (*1 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206)))) (-3834 (*1 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206)))))
+(-10 -7 (-15 -3834 ((-205) (-205))) (-15 -3834 ((-157 (-205)) (-157 (-205)))) (-15 -1617 ((-205) (-205) (-205))) (-15 -1617 ((-157 (-205)) (-157 (-205)) (-157 (-205)))) (-15 -2905 ((-205) (-205))) (-15 -2905 ((-157 (-205)) (-157 (-205)))) (-15 -3225 ((-205) (-205))) (-15 -3225 ((-157 (-205)) (-157 (-205)))) (-15 -2307 ((-205) (-712) (-205))) (-15 -2307 ((-157 (-205)) (-712) (-157 (-205)))) (-15 -4123 ((-205) (-205) (-205))) (-15 -4123 ((-157 (-205)) (-157 (-205)) (-157 (-205)))) (-15 -2271 ((-205) (-205) (-205))) (-15 -2271 ((-157 (-205)) (-157 (-205)) (-157 (-205)))) (-15 -1330 ((-205) (-205) (-205))) (-15 -1330 ((-157 (-205)) (-157 (-205)) (-157 (-205)))) (-15 -3481 ((-205) (-205) (-205))) (-15 -3481 ((-157 (-205)) (-157 (-205)) (-157 (-205)))) (-15 -1828 ((-157 (-205)) (-157 (-205)))) (-15 -1828 ((-205) (-205))) (-15 -2072 ((-205) (-205))) (-15 -2072 ((-157 (-205)) (-157 (-205)))) (-15 -2566 ((-205) (-205) (-205))) (-15 -2566 ((-157 (-205)) (-157 (-205)) (-157 (-205)))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-2168 (($ (-712) (-712)) NIL)) (-1753 (($ $ $) NIL)) (-1278 (($ (-1171 |#1|)) NIL) (($ $) NIL)) (-2866 (($ |#1| |#1| |#1|) 32)) (-1290 (((-108) $) NIL)) (-1364 (($ $ (-525) (-525)) NIL)) (-2913 (($ $ (-525) (-525)) NIL)) (-3737 (($ $ (-525) (-525) (-525) (-525)) NIL)) (-2231 (($ $) NIL)) (-3079 (((-108) $) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-3768 (($ $ (-525) (-525) $) NIL)) (-3186 ((|#1| $ (-525) (-525) |#1|) NIL) (($ $ (-591 (-525)) (-591 (-525)) $) NIL)) (-2775 (($ $ (-525) (-1171 |#1|)) NIL)) (-1743 (($ $ (-525) (-1171 |#1|)) NIL)) (-3115 (($ |#1| |#1| |#1|) 31)) (-1504 (($ (-712) |#1|) NIL)) (-3798 (($) NIL T CONST)) (-2753 (($ $) NIL (|has| |#1| (-286)))) (-3725 (((-1171 |#1|) $ (-525)) NIL)) (-2520 (($ |#1|) 30)) (-3346 (($ |#1|) 29)) (-1813 (($ |#1|) 28)) (-4073 (((-712) $) NIL (|has| |#1| (-517)))) (-3255 ((|#1| $ (-525) (-525) |#1|) NIL)) (-3217 ((|#1| $ (-525) (-525)) NIL)) (-3454 (((-591 |#1|) $) NIL)) (-2482 (((-712) $) NIL (|has| |#1| (-517)))) (-2634 (((-591 (-1171 |#1|)) $) NIL (|has| |#1| (-517)))) (-2281 (((-712) $) NIL)) (-1268 (($ (-712) (-712) |#1|) NIL)) (-2296 (((-712) $) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-2807 ((|#1| $) NIL (|has| |#1| (-6 (-4252 "*"))))) (-1755 (((-525) $) NIL)) (-1639 (((-525) $) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4230 (((-525) $) NIL)) (-2631 (((-525) $) NIL)) (-3393 (($ (-591 (-591 |#1|))) 11)) (-3249 (($ (-1 |#1| |#1|) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3349 (((-591 (-591 |#1|)) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-1914 (((-3 $ "failed") $) NIL (|has| |#1| (-341)))) (-2928 (($) 12)) (-2208 (($ $ $) NIL)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-1941 (($ $ |#1|) NIL)) (-2089 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#1| $ (-525) (-525)) NIL) ((|#1| $ (-525) (-525) |#1|) NIL) (($ $ (-591 (-525)) (-591 (-525))) NIL)) (-3487 (($ (-591 |#1|)) NIL) (($ (-591 $)) NIL)) (-2740 (((-108) $) NIL)) (-2238 ((|#1| $) NIL (|has| |#1| (-6 (-4252 "*"))))) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) NIL)) (-1793 (((-1171 |#1|) $ (-525)) NIL)) (-3022 (($ (-1171 |#1|)) NIL) (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3489 (((-108) $) NIL)) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341)))) (-4164 (($ $ $) NIL) (($ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-525) $) NIL) (((-1171 |#1|) $ (-1171 |#1|)) 15) (((-1171 |#1|) (-1171 |#1|) $) NIL) (((-876 |#1|) $ (-876 |#1|)) 20)) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-207 |#1|) (-13 (-629 |#1| (-1171 |#1|) (-1171 |#1|)) (-10 -8 (-15 * ((-876 |#1|) $ (-876 |#1|))) (-15 -2928 ($)) (-15 -1813 ($ |#1|)) (-15 -3346 ($ |#1|)) (-15 -2520 ($ |#1|)) (-15 -3115 ($ |#1| |#1| |#1|)) (-15 -2866 ($ |#1| |#1| |#1|)))) (-13 (-341) (-1111))) (T -207))
+((* (*1 *2 *1 *2) (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111))) (-5 *1 (-207 *3)))) (-2928 (*1 *1) (-12 (-5 *1 (-207 *2)) (-4 *2 (-13 (-341) (-1111))))) (-1813 (*1 *1 *2) (-12 (-5 *1 (-207 *2)) (-4 *2 (-13 (-341) (-1111))))) (-3346 (*1 *1 *2) (-12 (-5 *1 (-207 *2)) (-4 *2 (-13 (-341) (-1111))))) (-2520 (*1 *1 *2) (-12 (-5 *1 (-207 *2)) (-4 *2 (-13 (-341) (-1111))))) (-3115 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-207 *2)) (-4 *2 (-13 (-341) (-1111))))) (-2866 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-207 *2)) (-4 *2 (-13 (-341) (-1111))))))
+(-13 (-629 |#1| (-1171 |#1|) (-1171 |#1|)) (-10 -8 (-15 * ((-876 |#1|) $ (-876 |#1|))) (-15 -2928 ($)) (-15 -1813 ($ |#1|)) (-15 -3346 ($ |#1|)) (-15 -2520 ($ |#1|)) (-15 -3115 ($ |#1| |#1| |#1|)) (-15 -2866 ($ |#1| |#1| |#1|))))
+((-1797 (($ (-1 (-108) |#2|) $) 16)) (-3901 (($ |#2| $) NIL) (($ (-1 (-108) |#2|) $) 25)) (-2311 (($) NIL) (($ (-591 |#2|)) 11)) (-4096 (((-108) $ $) 23)))
+(((-208 |#1| |#2|) (-10 -8 (-15 -1797 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3901 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3901 (|#1| |#2| |#1|)) (-15 -2311 (|#1| (-591 |#2|))) (-15 -2311 (|#1|)) (-15 -4096 ((-108) |#1| |#1|))) (-209 |#2|) (-1018)) (T -208))
+NIL
+(-10 -8 (-15 -1797 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3901 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3901 (|#1| |#2| |#1|)) (-15 -2311 (|#1| (-591 |#2|))) (-15 -2311 (|#1|)) (-15 -4096 ((-108) |#1| |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3891 (((-108) $ (-712)) 8)) (-1797 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4250)))) (-3798 (($) 7 T CONST)) (-3098 (($ $) 58 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3901 (($ |#1| $) 47 (|has| $ (-6 -4250))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4250)))) (-3677 (($ |#1| $) 57 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4250)))) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-1464 ((|#1| $) 39)) (-2470 (($ |#1| $) 40)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-3631 ((|#1| $) 41)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-2311 (($) 49) (($ (-591 |#1|)) 48)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1408 (((-501) $) 59 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 50)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-1870 (($ (-591 |#1|)) 42)) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-209 |#1|) (-131) (-1018)) (T -209))
+NIL
+(-13 (-215 |t#1|))
+(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-215 |#1|) . T) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-3266 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-712)) 11) (($ $ (-591 (-1089)) (-591 (-712))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089)) 19) (($ $ (-712)) NIL) (($ $) 16)) (-4196 (($ $ (-1 |#2| |#2|)) 12) (($ $ (-1 |#2| |#2|) (-712)) 14) (($ $ (-591 (-1089)) (-591 (-712))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089)) NIL) (($ $ (-712)) NIL) (($ $) NIL)))
+(((-210 |#1| |#2|) (-10 -8 (-15 -3266 (|#1| |#1|)) (-15 -4196 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -4196 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -4196 (|#1| |#1| (-1089))) (-15 -4196 (|#1| |#1| (-591 (-1089)))) (-15 -4196 (|#1| |#1| (-1089) (-712))) (-15 -4196 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -4196 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -4196 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|)))) (-211 |#2|) (-975)) (T -210))
+NIL
+(-10 -8 (-15 -3266 (|#1| |#1|)) (-15 -4196 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -4196 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -4196 (|#1| |#1| (-1089))) (-15 -4196 (|#1| |#1| (-591 (-1089)))) (-15 -4196 (|#1| |#1| (-1089) (-712))) (-15 -4196 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -4196 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -4196 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3266 (($ $ (-1 |#1| |#1|)) 52) (($ $ (-1 |#1| |#1|) (-712)) 51) (($ $ (-591 (-1089)) (-591 (-712))) 44 (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) 43 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) 42 (|has| |#1| (-833 (-1089)))) (($ $ (-1089)) 41 (|has| |#1| (-833 (-1089)))) (($ $ (-712)) 39 (|has| |#1| (-213))) (($ $) 37 (|has| |#1| (-213)))) (-3022 (((-796) $) 11) (($ (-525)) 28)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ (-1 |#1| |#1|)) 50) (($ $ (-1 |#1| |#1|) (-712)) 49) (($ $ (-591 (-1089)) (-591 (-712))) 48 (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) 47 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) 46 (|has| |#1| (-833 (-1089)))) (($ $ (-1089)) 45 (|has| |#1| (-833 (-1089)))) (($ $ (-712)) 40 (|has| |#1| (-213))) (($ $) 38 (|has| |#1| (-213)))) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-211 |#1|) (-131) (-975)) (T -211))
+((-3266 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-211 *3)) (-4 *3 (-975)))) (-3266 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-712)) (-4 *1 (-211 *4)) (-4 *4 (-975)))) (-4196 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-211 *3)) (-4 *3 (-975)))) (-4196 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-712)) (-4 *1 (-211 *4)) (-4 *4 (-975)))))
+(-13 (-975) (-10 -8 (-15 -3266 ($ $ (-1 |t#1| |t#1|))) (-15 -3266 ($ $ (-1 |t#1| |t#1|) (-712))) (-15 -4196 ($ $ (-1 |t#1| |t#1|))) (-15 -4196 ($ $ (-1 |t#1| |t#1|) (-712))) (IF (|has| |t#1| (-213)) (-6 (-213)) |%noBranch|) (IF (|has| |t#1| (-833 (-1089))) (-6 (-833 (-1089))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-213) |has| |#1| (-213)) ((-593 $) . T) ((-668) . T) ((-833 (-1089)) |has| |#1| (-833 (-1089))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3266 (($ $) NIL) (($ $ (-712)) 10)) (-4196 (($ $) 8) (($ $ (-712)) 12)))
+(((-212 |#1|) (-10 -8 (-15 -4196 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1| (-712))) (-15 -4196 (|#1| |#1|)) (-15 -3266 (|#1| |#1|))) (-213)) (T -212))
+NIL
+(-10 -8 (-15 -4196 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1| (-712))) (-15 -4196 (|#1| |#1|)) (-15 -3266 (|#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3266 (($ $) 38) (($ $ (-712)) 36)) (-3022 (((-796) $) 11) (($ (-525)) 28)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $) 37) (($ $ (-712)) 35)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-213) (-131)) (T -213))
+((-3266 (*1 *1 *1) (-4 *1 (-213))) (-4196 (*1 *1 *1) (-4 *1 (-213))) (-3266 (*1 *1 *1 *2) (-12 (-4 *1 (-213)) (-5 *2 (-712)))) (-4196 (*1 *1 *1 *2) (-12 (-4 *1 (-213)) (-5 *2 (-712)))))
+(-13 (-975) (-10 -8 (-15 -3266 ($ $)) (-15 -4196 ($ $)) (-15 -3266 ($ $ (-712))) (-15 -4196 ($ $ (-712)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 $) . T) ((-668) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-2311 (($) 12) (($ (-591 |#2|)) NIL)) (-3199 (($ $) 14)) (-3036 (($ (-591 |#2|)) 10)) (-3022 (((-796) $) 21)))
+(((-214 |#1| |#2|) (-10 -8 (-15 -3022 ((-796) |#1|)) (-15 -2311 (|#1| (-591 |#2|))) (-15 -2311 (|#1|)) (-15 -3036 (|#1| (-591 |#2|))) (-15 -3199 (|#1| |#1|))) (-215 |#2|) (-1018)) (T -214))
+NIL
+(-10 -8 (-15 -3022 ((-796) |#1|)) (-15 -2311 (|#1| (-591 |#2|))) (-15 -2311 (|#1|)) (-15 -3036 (|#1| (-591 |#2|))) (-15 -3199 (|#1| |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3891 (((-108) $ (-712)) 8)) (-1797 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4250)))) (-3798 (($) 7 T CONST)) (-3098 (($ $) 58 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3901 (($ |#1| $) 47 (|has| $ (-6 -4250))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4250)))) (-3677 (($ |#1| $) 57 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4250)))) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-1464 ((|#1| $) 39)) (-2470 (($ |#1| $) 40)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-3631 ((|#1| $) 41)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-2311 (($) 49) (($ (-591 |#1|)) 48)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1408 (((-501) $) 59 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 50)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-1870 (($ (-591 |#1|)) 42)) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-215 |#1|) (-131) (-1018)) (T -215))
+((-2311 (*1 *1) (-12 (-4 *1 (-215 *2)) (-4 *2 (-1018)))) (-2311 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-4 *1 (-215 *3)))) (-3901 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4250)) (-4 *1 (-215 *2)) (-4 *2 (-1018)))) (-3901 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4250)) (-4 *1 (-215 *3)) (-4 *3 (-1018)))) (-1797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4250)) (-4 *1 (-215 *3)) (-4 *3 (-1018)))))
+(-13 (-102 |t#1|) (-142 |t#1|) (-10 -8 (-15 -2311 ($)) (-15 -2311 ($ (-591 |t#1|))) (IF (|has| $ (-6 -4250)) (PROGN (-15 -3901 ($ |t#1| $)) (-15 -3901 ($ (-1 (-108) |t#1|) $)) (-15 -1797 ($ (-1 (-108) |t#1|) $))) |%noBranch|)))
+(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-3683 (((-2 (|:| |varOrder| (-591 (-1089))) (|:| |inhom| (-3 (-591 (-1171 (-712))) "failed")) (|:| |hom| (-591 (-1171 (-712))))) (-273 (-885 (-525)))) 27)))
+(((-216) (-10 -7 (-15 -3683 ((-2 (|:| |varOrder| (-591 (-1089))) (|:| |inhom| (-3 (-591 (-1171 (-712))) "failed")) (|:| |hom| (-591 (-1171 (-712))))) (-273 (-885 (-525))))))) (T -216))
+((-3683 (*1 *2 *3) (-12 (-5 *3 (-273 (-885 (-525)))) (-5 *2 (-2 (|:| |varOrder| (-591 (-1089))) (|:| |inhom| (-3 (-591 (-1171 (-712))) "failed")) (|:| |hom| (-591 (-1171 (-712)))))) (-5 *1 (-216)))))
+(-10 -7 (-15 -3683 ((-2 (|:| |varOrder| (-591 (-1089))) (|:| |inhom| (-3 (-591 (-1171 (-712))) "failed")) (|:| |hom| (-591 (-1171 (-712))))) (-273 (-885 (-525))))))
+((-3032 (((-712)) 51)) (-3305 (((-2 (|:| -4057 (-631 |#3|)) (|:| |vec| (-1171 |#3|))) (-631 $) (-1171 $)) 49) (((-631 |#3|) (-631 $)) 41) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL) (((-631 (-525)) (-631 $)) NIL)) (-4224 (((-128)) 57)) (-3266 (($ $ (-1 |#3| |#3|) (-712)) NIL) (($ $ (-1 |#3| |#3|)) 18) (($ $ (-591 (-1089)) (-591 (-712))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089)) NIL) (($ $ (-712)) NIL) (($ $) NIL)) (-3022 (((-1171 |#3|) $) NIL) (($ |#3|) NIL) (((-796) $) NIL) (($ (-525)) 12) (($ (-385 (-525))) NIL)) (-2128 (((-712)) 15)) (-4173 (($ $ |#3|) 54)))
+(((-217 |#1| |#2| |#3|) (-10 -8 (-15 -3022 (|#1| (-385 (-525)))) (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|)) (-15 -2128 ((-712))) (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -3305 ((-631 (-525)) (-631 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 |#1|) (-1171 |#1|))) (-15 -3022 (|#1| |#3|)) (-15 -3266 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3266 (|#1| |#1| (-1 |#3| |#3|) (-712))) (-15 -3305 ((-631 |#3|) (-631 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 |#3|)) (|:| |vec| (-1171 |#3|))) (-631 |#1|) (-1171 |#1|))) (-15 -3032 ((-712))) (-15 -4173 (|#1| |#1| |#3|)) (-15 -4224 ((-128))) (-15 -3022 ((-1171 |#3|) |#1|))) (-218 |#2| |#3|) (-712) (-1125)) (T -217))
+((-4224 (*1 *2) (-12 (-14 *4 (-712)) (-4 *5 (-1125)) (-5 *2 (-128)) (-5 *1 (-217 *3 *4 *5)) (-4 *3 (-218 *4 *5)))) (-3032 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1125)) (-5 *2 (-712)) (-5 *1 (-217 *3 *4 *5)) (-4 *3 (-218 *4 *5)))) (-2128 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1125)) (-5 *2 (-712)) (-5 *1 (-217 *3 *4 *5)) (-4 *3 (-218 *4 *5)))))
+(-10 -8 (-15 -3022 (|#1| (-385 (-525)))) (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|)) (-15 -2128 ((-712))) (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -3305 ((-631 (-525)) (-631 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 |#1|) (-1171 |#1|))) (-15 -3022 (|#1| |#3|)) (-15 -3266 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3266 (|#1| |#1| (-1 |#3| |#3|) (-712))) (-15 -3305 ((-631 |#3|) (-631 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 |#3|)) (|:| |vec| (-1171 |#3|))) (-631 |#1|) (-1171 |#1|))) (-15 -3032 ((-712))) (-15 -4173 (|#1| |#1| |#3|)) (-15 -4224 ((-128))) (-15 -3022 ((-1171 |#3|) |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#2| (-1018)))) (-1800 (((-108) $) 72 (|has| |#2| (-126)))) (-2092 (($ (-854)) 127 (|has| |#2| (-975)))) (-3296 (((-1176) $ (-525) (-525)) 40 (|has| $ (-6 -4251)))) (-2593 (($ $ $) 123 (|has| |#2| (-734)))) (-2157 (((-3 $ "failed") $ $) 74 (|has| |#2| (-126)))) (-3891 (((-108) $ (-712)) 8)) (-3032 (((-712)) 109 (|has| |#2| (-346)))) (-3329 (((-525) $) 121 (|has| |#2| (-786)))) (-3186 ((|#2| $ (-525) |#2|) 52 (|has| $ (-6 -4251)))) (-3798 (($) 7 T CONST)) (-1251 (((-3 (-525) "failed") $) 67 (-1213 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018)))) (((-3 (-385 (-525)) "failed") $) 64 (-1213 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018)))) (((-3 |#2| "failed") $) 61 (|has| |#2| (-1018)))) (-3528 (((-525) $) 68 (-1213 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018)))) (((-385 (-525)) $) 65 (-1213 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018)))) ((|#2| $) 60 (|has| |#2| (-1018)))) (-3305 (((-631 (-525)) (-631 $)) 108 (-1213 (|has| |#2| (-587 (-525))) (|has| |#2| (-975)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 107 (-1213 (|has| |#2| (-587 (-525))) (|has| |#2| (-975)))) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) 106 (|has| |#2| (-975))) (((-631 |#2|) (-631 $)) 105 (|has| |#2| (-975)))) (-4163 (((-3 $ "failed") $) 99 (|has| |#2| (-975)))) (-3377 (($) 112 (|has| |#2| (-346)))) (-3255 ((|#2| $ (-525) |#2|) 53 (|has| $ (-6 -4251)))) (-3217 ((|#2| $ (-525)) 51)) (-2134 (((-108) $) 119 (|has| |#2| (-786)))) (-3454 (((-591 |#2|) $) 30 (|has| $ (-6 -4250)))) (-2824 (((-108) $) 102 (|has| |#2| (-975)))) (-2732 (((-108) $) 120 (|has| |#2| (-786)))) (-2910 (((-108) $ (-712)) 9)) (-3630 (((-525) $) 43 (|has| (-525) (-788)))) (-3741 (($ $ $) 118 (-3321 (|has| |#2| (-786)) (|has| |#2| (-734))))) (-2552 (((-591 |#2|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#2| $) 27 (-12 (|has| |#2| (-1018)) (|has| $ (-6 -4250))))) (-3468 (((-525) $) 44 (|has| (-525) (-788)))) (-2478 (($ $ $) 117 (-3321 (|has| |#2| (-786)) (|has| |#2| (-734))))) (-3249 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#2| |#2|) $) 35)) (-3016 (((-854) $) 111 (|has| |#2| (-346)))) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#2| (-1018)))) (-2511 (((-591 (-525)) $) 46)) (-2791 (((-108) (-525) $) 47)) (-2226 (($ (-854)) 110 (|has| |#2| (-346)))) (-2047 (((-1036) $) 21 (|has| |#2| (-1018)))) (-3066 ((|#2| $) 42 (|has| (-525) (-788)))) (-1941 (($ $ |#2|) 41 (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#2|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#2|))) 26 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) 25 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) 23 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))) (-3493 (((-108) $ $) 14)) (-1615 (((-108) |#2| $) 45 (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3339 (((-591 |#2|) $) 48)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#2| $ (-525) |#2|) 50) ((|#2| $ (-525)) 49)) (-2109 ((|#2| $ $) 126 (|has| |#2| (-975)))) (-1395 (($ (-1171 |#2|)) 128)) (-4224 (((-128)) 125 (|has| |#2| (-341)))) (-3266 (($ $) 92 (-1213 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-712)) 90 (-1213 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-1089)) 88 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089))) 87 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1089) (-712)) 86 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089)) (-591 (-712))) 85 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1 |#2| |#2|) (-712)) 78 (|has| |#2| (-975))) (($ $ (-1 |#2| |#2|)) 77 (|has| |#2| (-975)))) (-2064 (((-712) (-1 (-108) |#2|) $) 31 (|has| $ (-6 -4250))) (((-712) |#2| $) 28 (-12 (|has| |#2| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-3022 (((-1171 |#2|) $) 129) (($ (-525)) 66 (-3321 (-1213 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018))) (|has| |#2| (-975)))) (($ (-385 (-525))) 63 (-1213 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018)))) (($ |#2|) 62 (|has| |#2| (-1018))) (((-796) $) 18 (|has| |#2| (-565 (-796))))) (-2128 (((-712)) 104 (|has| |#2| (-975)))) (-4158 (((-108) (-1 (-108) |#2|) $) 33 (|has| $ (-6 -4250)))) (-1539 (($ $) 122 (|has| |#2| (-786)))) (-3710 (($ $ (-712)) 100 (|has| |#2| (-975))) (($ $ (-854)) 96 (|has| |#2| (-975)))) (-4191 (($) 71 (|has| |#2| (-126)) CONST)) (-4197 (($) 103 (|has| |#2| (-975)) CONST)) (-4196 (($ $) 91 (-1213 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-712)) 89 (-1213 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-1089)) 84 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089))) 83 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1089) (-712)) 82 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089)) (-591 (-712))) 81 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1 |#2| |#2|) (-712)) 80 (|has| |#2| (-975))) (($ $ (-1 |#2| |#2|)) 79 (|has| |#2| (-975)))) (-4135 (((-108) $ $) 115 (-3321 (|has| |#2| (-786)) (|has| |#2| (-734))))) (-4119 (((-108) $ $) 114 (-3321 (|has| |#2| (-786)) (|has| |#2| (-734))))) (-4096 (((-108) $ $) 20 (|has| |#2| (-1018)))) (-4126 (((-108) $ $) 116 (-3321 (|has| |#2| (-786)) (|has| |#2| (-734))))) (-4112 (((-108) $ $) 113 (-3321 (|has| |#2| (-786)) (|has| |#2| (-734))))) (-4173 (($ $ |#2|) 124 (|has| |#2| (-341)))) (-4164 (($ $ $) 94 (|has| |#2| (-975))) (($ $) 93 (|has| |#2| (-975)))) (-4156 (($ $ $) 69 (|has| |#2| (-25)))) (** (($ $ (-712)) 101 (|has| |#2| (-975))) (($ $ (-854)) 97 (|has| |#2| (-975)))) (* (($ $ $) 98 (|has| |#2| (-975))) (($ (-525) $) 95 (|has| |#2| (-975))) (($ $ |#2|) 76 (|has| |#2| (-668))) (($ |#2| $) 75 (|has| |#2| (-668))) (($ (-712) $) 73 (|has| |#2| (-126))) (($ (-854) $) 70 (|has| |#2| (-25)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-218 |#1| |#2|) (-131) (-712) (-1125)) (T -218))
+((-1395 (*1 *1 *2) (-12 (-5 *2 (-1171 *4)) (-4 *4 (-1125)) (-4 *1 (-218 *3 *4)))) (-2092 (*1 *1 *2) (-12 (-5 *2 (-854)) (-4 *1 (-218 *3 *4)) (-4 *4 (-975)) (-4 *4 (-1125)))) (-2109 (*1 *2 *1 *1) (-12 (-4 *1 (-218 *3 *2)) (-4 *2 (-1125)) (-4 *2 (-975)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-218 *3 *2)) (-4 *2 (-1125)) (-4 *2 (-668)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-218 *3 *2)) (-4 *2 (-1125)) (-4 *2 (-668)))))
+(-13 (-558 (-525) |t#2|) (-565 (-1171 |t#2|)) (-10 -8 (-6 -4250) (-15 -1395 ($ (-1171 |t#2|))) (IF (|has| |t#2| (-1018)) (-6 (-389 |t#2|)) |%noBranch|) (IF (|has| |t#2| (-975)) (PROGN (-6 (-107 |t#2| |t#2|)) (-6 (-211 |t#2|)) (-6 (-355 |t#2|)) (-15 -2092 ($ (-854))) (-15 -2109 (|t#2| $ $))) |%noBranch|) (IF (|has| |t#2| (-25)) (-6 (-25)) |%noBranch|) (IF (|has| |t#2| (-126)) (-6 (-126)) |%noBranch|) (IF (|has| |t#2| (-668)) (PROGN (-15 * ($ |t#2| $)) (-15 * ($ $ |t#2|))) |%noBranch|) (IF (|has| |t#2| (-346)) (-6 (-346)) |%noBranch|) (IF (|has| |t#2| (-160)) (PROGN (-6 (-37 |t#2|)) (-6 (-160))) |%noBranch|) (IF (|has| |t#2| (-6 -4247)) (-6 -4247) |%noBranch|) (IF (|has| |t#2| (-786)) (-6 (-786)) |%noBranch|) (IF (|has| |t#2| (-734)) (-6 (-734)) |%noBranch|) (IF (|has| |t#2| (-341)) (-6 (-1178 |t#2|)) |%noBranch|)))
+(((-21) -3321 (|has| |#2| (-975)) (|has| |#2| (-786)) (|has| |#2| (-341)) (|has| |#2| (-160))) ((-23) -3321 (|has| |#2| (-975)) (|has| |#2| (-786)) (|has| |#2| (-734)) (|has| |#2| (-341)) (|has| |#2| (-160)) (|has| |#2| (-126))) ((-25) -3321 (|has| |#2| (-975)) (|has| |#2| (-786)) (|has| |#2| (-734)) (|has| |#2| (-341)) (|has| |#2| (-160)) (|has| |#2| (-126)) (|has| |#2| (-25))) ((-33) . T) ((-37 |#2|) |has| |#2| (-160)) ((-97) -3321 (|has| |#2| (-1018)) (|has| |#2| (-975)) (|has| |#2| (-786)) (|has| |#2| (-734)) (|has| |#2| (-346)) (|has| |#2| (-341)) (|has| |#2| (-160)) (|has| |#2| (-126)) (|has| |#2| (-25))) ((-107 |#2| |#2|) -3321 (|has| |#2| (-975)) (|has| |#2| (-341)) (|has| |#2| (-160))) ((-107 $ $) |has| |#2| (-160)) ((-126) -3321 (|has| |#2| (-975)) (|has| |#2| (-786)) (|has| |#2| (-734)) (|has| |#2| (-341)) (|has| |#2| (-160)) (|has| |#2| (-126))) ((-565 (-796)) -3321 (|has| |#2| (-1018)) (|has| |#2| (-975)) (|has| |#2| (-786)) (|has| |#2| (-734)) (|has| |#2| (-346)) (|has| |#2| (-341)) (|has| |#2| (-160)) (|has| |#2| (-565 (-796))) (|has| |#2| (-126)) (|has| |#2| (-25))) ((-565 (-1171 |#2|)) . T) ((-160) |has| |#2| (-160)) ((-211 |#2|) |has| |#2| (-975)) ((-213) -12 (|has| |#2| (-213)) (|has| |#2| (-975))) ((-265 #0=(-525) |#2|) . T) ((-267 #0# |#2|) . T) ((-288 |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((-346) |has| |#2| (-346)) ((-355 |#2|) |has| |#2| (-975)) ((-389 |#2|) |has| |#2| (-1018)) ((-464 |#2|) . T) ((-558 #0# |#2|) . T) ((-486 |#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((-593 |#2|) -3321 (|has| |#2| (-975)) (|has| |#2| (-341)) (|has| |#2| (-160))) ((-593 $) -3321 (|has| |#2| (-975)) (|has| |#2| (-786)) (|has| |#2| (-160))) ((-587 (-525)) -12 (|has| |#2| (-587 (-525))) (|has| |#2| (-975))) ((-587 |#2|) |has| |#2| (-975)) ((-659 |#2|) -3321 (|has| |#2| (-341)) (|has| |#2| (-160))) ((-668) -3321 (|has| |#2| (-975)) (|has| |#2| (-786)) (|has| |#2| (-160))) ((-732) |has| |#2| (-786)) ((-733) -3321 (|has| |#2| (-786)) (|has| |#2| (-734))) ((-734) |has| |#2| (-734)) ((-735) -3321 (|has| |#2| (-786)) (|has| |#2| (-734))) ((-736) -3321 (|has| |#2| (-786)) (|has| |#2| (-734))) ((-786) |has| |#2| (-786)) ((-788) -3321 (|has| |#2| (-786)) (|has| |#2| (-734))) ((-833 (-1089)) -12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975))) ((-966 (-385 (-525))) -12 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018))) ((-966 (-525)) -12 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018))) ((-966 |#2|) |has| |#2| (-1018)) ((-981 |#2|) -3321 (|has| |#2| (-975)) (|has| |#2| (-341)) (|has| |#2| (-160))) ((-981 $) |has| |#2| (-160)) ((-975) -3321 (|has| |#2| (-975)) (|has| |#2| (-786)) (|has| |#2| (-160))) ((-982) -3321 (|has| |#2| (-975)) (|has| |#2| (-786)) (|has| |#2| (-160))) ((-1030) -3321 (|has| |#2| (-975)) (|has| |#2| (-786)) (|has| |#2| (-160))) ((-1018) -3321 (|has| |#2| (-1018)) (|has| |#2| (-975)) (|has| |#2| (-786)) (|has| |#2| (-734)) (|has| |#2| (-346)) (|has| |#2| (-341)) (|has| |#2| (-160)) (|has| |#2| (-126)) (|has| |#2| (-25))) ((-1125) . T) ((-1178 |#2|) |has| |#2| (-341)))
+((-1526 (((-220 |#1| |#3|) (-1 |#3| |#2| |#3|) (-220 |#1| |#2|) |#3|) 21)) (-1227 ((|#3| (-1 |#3| |#2| |#3|) (-220 |#1| |#2|) |#3|) 23)) (-1340 (((-220 |#1| |#3|) (-1 |#3| |#2|) (-220 |#1| |#2|)) 18)))
+(((-219 |#1| |#2| |#3|) (-10 -7 (-15 -1526 ((-220 |#1| |#3|) (-1 |#3| |#2| |#3|) (-220 |#1| |#2|) |#3|)) (-15 -1227 (|#3| (-1 |#3| |#2| |#3|) (-220 |#1| |#2|) |#3|)) (-15 -1340 ((-220 |#1| |#3|) (-1 |#3| |#2|) (-220 |#1| |#2|)))) (-712) (-1125) (-1125)) (T -219))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-220 *5 *6)) (-14 *5 (-712)) (-4 *6 (-1125)) (-4 *7 (-1125)) (-5 *2 (-220 *5 *7)) (-5 *1 (-219 *5 *6 *7)))) (-1227 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-220 *5 *6)) (-14 *5 (-712)) (-4 *6 (-1125)) (-4 *2 (-1125)) (-5 *1 (-219 *5 *6 *2)))) (-1526 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-220 *6 *7)) (-14 *6 (-712)) (-4 *7 (-1125)) (-4 *5 (-1125)) (-5 *2 (-220 *6 *5)) (-5 *1 (-219 *6 *7 *5)))))
+(-10 -7 (-15 -1526 ((-220 |#1| |#3|) (-1 |#3| |#2| |#3|) (-220 |#1| |#2|) |#3|)) (-15 -1227 (|#3| (-1 |#3| |#2| |#3|) (-220 |#1| |#2|) |#3|)) (-15 -1340 ((-220 |#1| |#3|) (-1 |#3| |#2|) (-220 |#1| |#2|))))
+((-3008 (((-108) $ $) NIL (|has| |#2| (-1018)))) (-1800 (((-108) $) NIL (|has| |#2| (-126)))) (-2092 (($ (-854)) 56 (|has| |#2| (-975)))) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-2593 (($ $ $) 60 (|has| |#2| (-734)))) (-2157 (((-3 $ "failed") $ $) 48 (|has| |#2| (-126)))) (-3891 (((-108) $ (-712)) 17)) (-3032 (((-712)) NIL (|has| |#2| (-346)))) (-3329 (((-525) $) NIL (|has| |#2| (-786)))) (-3186 ((|#2| $ (-525) |#2|) NIL (|has| $ (-6 -4251)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL (-12 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018)))) (((-3 (-385 (-525)) "failed") $) NIL (-12 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018)))) (((-3 |#2| "failed") $) 29 (|has| |#2| (-1018)))) (-3528 (((-525) $) NIL (-12 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018)))) (((-385 (-525)) $) NIL (-12 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018)))) ((|#2| $) 27 (|has| |#2| (-1018)))) (-3305 (((-631 (-525)) (-631 $)) NIL (-12 (|has| |#2| (-587 (-525))) (|has| |#2| (-975)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (-12 (|has| |#2| (-587 (-525))) (|has| |#2| (-975)))) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) NIL (|has| |#2| (-975))) (((-631 |#2|) (-631 $)) NIL (|has| |#2| (-975)))) (-4163 (((-3 $ "failed") $) 53 (|has| |#2| (-975)))) (-3377 (($) NIL (|has| |#2| (-346)))) (-3255 ((|#2| $ (-525) |#2|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#2| $ (-525)) 51)) (-2134 (((-108) $) NIL (|has| |#2| (-786)))) (-3454 (((-591 |#2|) $) 15 (|has| $ (-6 -4250)))) (-2824 (((-108) $) NIL (|has| |#2| (-975)))) (-2732 (((-108) $) NIL (|has| |#2| (-786)))) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) 20 (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-2552 (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3468 (((-525) $) 50 (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-3249 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#2| |#2|) $) 41)) (-3016 (((-854) $) NIL (|has| |#2| (-346)))) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#2| (-1018)))) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2226 (($ (-854)) NIL (|has| |#2| (-346)))) (-2047 (((-1036) $) NIL (|has| |#2| (-1018)))) (-3066 ((|#2| $) NIL (|has| (-525) (-788)))) (-1941 (($ $ |#2|) NIL (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#2|) $) 24 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#2|))) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3339 (((-591 |#2|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#2| $ (-525) |#2|) NIL) ((|#2| $ (-525)) 21)) (-2109 ((|#2| $ $) NIL (|has| |#2| (-975)))) (-1395 (($ (-1171 |#2|)) 18)) (-4224 (((-128)) NIL (|has| |#2| (-341)))) (-3266 (($ $) NIL (-12 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-712)) NIL (-12 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-1089)) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1 |#2| |#2|) (-712)) NIL (|has| |#2| (-975))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-975)))) (-2064 (((-712) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250))) (((-712) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3199 (($ $) NIL)) (-3022 (((-1171 |#2|) $) 10) (($ (-525)) NIL (-3321 (-12 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018))) (|has| |#2| (-975)))) (($ (-385 (-525))) NIL (-12 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018)))) (($ |#2|) 13 (|has| |#2| (-1018))) (((-796) $) NIL (|has| |#2| (-565 (-796))))) (-2128 (((-712)) NIL (|has| |#2| (-975)))) (-4158 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-1539 (($ $) NIL (|has| |#2| (-786)))) (-3710 (($ $ (-712)) NIL (|has| |#2| (-975))) (($ $ (-854)) NIL (|has| |#2| (-975)))) (-4191 (($) 35 (|has| |#2| (-126)) CONST)) (-4197 (($) 38 (|has| |#2| (-975)) CONST)) (-4196 (($ $) NIL (-12 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-712)) NIL (-12 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-1089)) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1 |#2| |#2|) (-712)) NIL (|has| |#2| (-975))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-975)))) (-4135 (((-108) $ $) NIL (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-4119 (((-108) $ $) NIL (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-4096 (((-108) $ $) 26 (|has| |#2| (-1018)))) (-4126 (((-108) $ $) NIL (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-4112 (((-108) $ $) 58 (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-4173 (($ $ |#2|) NIL (|has| |#2| (-341)))) (-4164 (($ $ $) NIL (|has| |#2| (-975))) (($ $) NIL (|has| |#2| (-975)))) (-4156 (($ $ $) 33 (|has| |#2| (-25)))) (** (($ $ (-712)) NIL (|has| |#2| (-975))) (($ $ (-854)) NIL (|has| |#2| (-975)))) (* (($ $ $) 49 (|has| |#2| (-975))) (($ (-525) $) NIL (|has| |#2| (-975))) (($ $ |#2|) 42 (|has| |#2| (-668))) (($ |#2| $) 43 (|has| |#2| (-668))) (($ (-712) $) NIL (|has| |#2| (-126))) (($ (-854) $) NIL (|has| |#2| (-25)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-220 |#1| |#2|) (-218 |#1| |#2|) (-712) (-1125)) (T -220))
+NIL
+(-218 |#1| |#2|)
+((-2845 (((-525) (-591 (-1072))) 24) (((-525) (-1072)) 19)) (-2100 (((-1176) (-591 (-1072))) 29) (((-1176) (-1072)) 28)) (-1651 (((-1072)) 14)) (-3601 (((-1072) (-525) (-1072)) 16)) (-1682 (((-591 (-1072)) (-591 (-1072)) (-525) (-1072)) 25) (((-1072) (-1072) (-525) (-1072)) 23)) (-2709 (((-591 (-1072)) (-591 (-1072))) 13) (((-591 (-1072)) (-1072)) 11)))
+(((-221) (-10 -7 (-15 -2709 ((-591 (-1072)) (-1072))) (-15 -2709 ((-591 (-1072)) (-591 (-1072)))) (-15 -1651 ((-1072))) (-15 -3601 ((-1072) (-525) (-1072))) (-15 -1682 ((-1072) (-1072) (-525) (-1072))) (-15 -1682 ((-591 (-1072)) (-591 (-1072)) (-525) (-1072))) (-15 -2100 ((-1176) (-1072))) (-15 -2100 ((-1176) (-591 (-1072)))) (-15 -2845 ((-525) (-1072))) (-15 -2845 ((-525) (-591 (-1072)))))) (T -221))
+((-2845 (*1 *2 *3) (-12 (-5 *3 (-591 (-1072))) (-5 *2 (-525)) (-5 *1 (-221)))) (-2845 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-525)) (-5 *1 (-221)))) (-2100 (*1 *2 *3) (-12 (-5 *3 (-591 (-1072))) (-5 *2 (-1176)) (-5 *1 (-221)))) (-2100 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-221)))) (-1682 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-591 (-1072))) (-5 *3 (-525)) (-5 *4 (-1072)) (-5 *1 (-221)))) (-1682 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1072)) (-5 *3 (-525)) (-5 *1 (-221)))) (-3601 (*1 *2 *3 *2) (-12 (-5 *2 (-1072)) (-5 *3 (-525)) (-5 *1 (-221)))) (-1651 (*1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-221)))) (-2709 (*1 *2 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-221)))) (-2709 (*1 *2 *3) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-221)) (-5 *3 (-1072)))))
+(-10 -7 (-15 -2709 ((-591 (-1072)) (-1072))) (-15 -2709 ((-591 (-1072)) (-591 (-1072)))) (-15 -1651 ((-1072))) (-15 -3601 ((-1072) (-525) (-1072))) (-15 -1682 ((-1072) (-1072) (-525) (-1072))) (-15 -1682 ((-591 (-1072)) (-591 (-1072)) (-525) (-1072))) (-15 -2100 ((-1176) (-1072))) (-15 -2100 ((-1176) (-591 (-1072)))) (-15 -2845 ((-525) (-1072))) (-15 -2845 ((-525) (-591 (-1072)))))
+((-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) 9)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) 18)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ (-385 (-525)) $) 25) (($ $ (-385 (-525))) NIL)))
+(((-222 |#1|) (-10 -8 (-15 -3710 (|#1| |#1| (-525))) (-15 ** (|#1| |#1| (-525))) (-15 * (|#1| |#1| (-385 (-525)))) (-15 * (|#1| (-385 (-525)) |#1|)) (-15 ** (|#1| |#1| (-712))) (-15 -3710 (|#1| |#1| (-712))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-854))) (-15 -3710 (|#1| |#1| (-854))) (-15 * (|#1| (-525) |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-854) |#1|))) (-223)) (T -222))
+NIL
+(-10 -8 (-15 -3710 (|#1| |#1| (-525))) (-15 ** (|#1| |#1| (-525))) (-15 * (|#1| |#1| (-385 (-525)))) (-15 * (|#1| (-385 (-525)) |#1|)) (-15 ** (|#1| |#1| (-712))) (-15 -3710 (|#1| |#1| (-712))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-854))) (-15 -3710 (|#1| |#1| (-854))) (-15 * (|#1| (-525) |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-854) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2339 (((-1072) $) 9)) (-1622 (($ $) 39)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ (-385 (-525))) 44)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 40)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 41)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ (-385 (-525)) $) 43) (($ $ (-385 (-525))) 42)))
+(((-223) (-131)) (T -223))
+((** (*1 *1 *1 *2) (-12 (-4 *1 (-223)) (-5 *2 (-525)))) (-3710 (*1 *1 *1 *2) (-12 (-4 *1 (-223)) (-5 *2 (-525)))) (-1622 (*1 *1 *1) (-4 *1 (-223))))
+(-13 (-269) (-37 (-385 (-525))) (-10 -8 (-15 ** ($ $ (-525))) (-15 -3710 ($ $ (-525))) (-15 -1622 ($ $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-126) . T) ((-565 (-796)) . T) ((-269) . T) ((-593 #0#) . T) ((-593 $) . T) ((-659 #0#) . T) ((-668) . T) ((-981 #0#) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3024 ((|#1| $) 48)) (-3970 (($ $) 57)) (-3891 (((-108) $ (-712)) 8)) (-1780 ((|#1| $ |#1|) 39 (|has| $ (-6 -4251)))) (-2535 (($ $ $) 53 (|has| $ (-6 -4251)))) (-2479 (($ $ $) 52 (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) 41 (|has| $ (-6 -4251)))) (-3798 (($) 7 T CONST)) (-2820 (($ $) 56)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) 50)) (-2148 (((-108) $ $) 42 (|has| |#1| (-1018)))) (-1570 (($ $) 55)) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-2599 (((-591 |#1|) $) 45)) (-1203 (((-108) $) 49)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-3708 ((|#1| $) 59)) (-1762 (($ $) 58)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ "value") 47)) (-3505 (((-525) $ $) 44)) (-2237 (((-108) $) 46)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1679 (($ $ $) 54 (|has| $ (-6 -4251)))) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) 51)) (-1632 (((-108) $ $) 43 (|has| |#1| (-1018)))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-224 |#1|) (-131) (-1125)) (T -224))
+((-3708 (*1 *2 *1) (-12 (-4 *1 (-224 *2)) (-4 *2 (-1125)))) (-1762 (*1 *1 *1) (-12 (-4 *1 (-224 *2)) (-4 *2 (-1125)))) (-3970 (*1 *1 *1) (-12 (-4 *1 (-224 *2)) (-4 *2 (-1125)))) (-2820 (*1 *1 *1) (-12 (-4 *1 (-224 *2)) (-4 *2 (-1125)))) (-1570 (*1 *1 *1) (-12 (-4 *1 (-224 *2)) (-4 *2 (-1125)))) (-1679 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-224 *2)) (-4 *2 (-1125)))) (-2535 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-224 *2)) (-4 *2 (-1125)))) (-2479 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-224 *2)) (-4 *2 (-1125)))))
+(-13 (-940 |t#1|) (-10 -8 (-15 -3708 (|t#1| $)) (-15 -1762 ($ $)) (-15 -3970 ($ $)) (-15 -2820 ($ $)) (-15 -1570 ($ $)) (IF (|has| $ (-6 -4251)) (PROGN (-15 -1679 ($ $ $)) (-15 -2535 ($ $ $)) (-15 -2479 ($ $ $))) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-940 |#1|) . T) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3024 ((|#1| $) NIL)) (-3161 ((|#1| $) NIL)) (-3970 (($ $) NIL)) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3463 (($ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3203 (((-108) $) NIL (|has| |#1| (-788))) (((-108) (-1 (-108) |#1| |#1|) $) NIL)) (-4026 (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| |#1| (-788)))) (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-3327 (($ $) 10 (|has| |#1| (-788))) (($ (-1 (-108) |#1| |#1|) $) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-1780 ((|#1| $ |#1|) NIL (|has| $ (-6 -4251)))) (-2146 (($ $ $) NIL (|has| $ (-6 -4251)))) (-2640 ((|#1| $ |#1|) NIL (|has| $ (-6 -4251)))) (-1901 ((|#1| $ |#1|) NIL (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4251))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4251))) (($ $ "rest" $) NIL (|has| $ (-6 -4251))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) NIL (|has| $ (-6 -4251))) ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) NIL (|has| $ (-6 -4251)))) (-1797 (($ (-1 (-108) |#1|) $) NIL)) (-2305 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3149 ((|#1| $) NIL)) (-3798 (($) NIL T CONST)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-3078 (($ $) NIL) (($ $ (-712)) NIL)) (-3611 (($ $) NIL (|has| |#1| (-1018)))) (-3098 (($ $) 7 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3901 (($ |#1| $) NIL (|has| |#1| (-1018))) (($ (-1 (-108) |#1|) $) NIL)) (-3677 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3255 ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) NIL)) (-3629 (((-108) $) NIL)) (-3004 (((-525) |#1| $ (-525)) NIL (|has| |#1| (-1018))) (((-525) |#1| $) NIL (|has| |#1| (-1018))) (((-525) (-1 (-108) |#1|) $) NIL)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) NIL)) (-2148 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-1268 (($ (-712) |#1|) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) NIL (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2921 (($ $ $) NIL (|has| |#1| (-788))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-2131 (($ $ $) NIL (|has| |#1| (-788))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2932 (($ |#1|) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2599 (((-591 |#1|) $) NIL)) (-1203 (((-108) $) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-3708 ((|#1| $) NIL) (($ $ (-712)) NIL)) (-2470 (($ $ $ (-525)) NIL) (($ |#1| $ (-525)) NIL)) (-4189 (($ $ $ (-525)) NIL) (($ |#1| $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-3066 ((|#1| $) NIL) (($ $ (-712)) NIL)) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1941 (($ $ |#1|) NIL (|has| $ (-6 -4251)))) (-3566 (((-108) $) NIL)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1138 (-525))) NIL) ((|#1| $ (-525)) NIL) ((|#1| $ (-525) |#1|) NIL) (($ $ "unique") 9) (($ $ "sort") 12) (((-712) $ "count") 16)) (-3505 (((-525) $ $) NIL)) (-1790 (($ $ (-1138 (-525))) NIL) (($ $ (-525)) NIL)) (-2777 (($ $ (-1138 (-525))) NIL) (($ $ (-525)) NIL)) (-4042 (($ (-591 |#1|)) 22)) (-2237 (((-108) $) NIL)) (-3820 (($ $) NIL)) (-2609 (($ $) NIL (|has| $ (-6 -4251)))) (-3641 (((-712) $) NIL)) (-1387 (($ $) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4063 (($ $ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) NIL)) (-1679 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3690 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-591 $)) NIL) (($ $ |#1|) NIL)) (-3022 (($ (-591 |#1|)) 17) (((-591 |#1|) $) 18) (((-796) $) 21 (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) NIL)) (-1632 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4045 (((-712) $) 14 (|has| $ (-6 -4250)))))
+(((-225 |#1|) (-13 (-611 |#1|) (-10 -8 (-15 -3022 ($ (-591 |#1|))) (-15 -3022 ((-591 |#1|) $)) (-15 -4042 ($ (-591 |#1|))) (-15 -3164 ($ $ "unique")) (-15 -3164 ($ $ "sort")) (-15 -3164 ((-712) $ "count")))) (-788)) (T -225))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-788)) (-5 *1 (-225 *3)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-225 *3)) (-4 *3 (-788)))) (-4042 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-788)) (-5 *1 (-225 *3)))) (-3164 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-225 *3)) (-4 *3 (-788)))) (-3164 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-225 *3)) (-4 *3 (-788)))) (-3164 (*1 *2 *1 *3) (-12 (-5 *3 "count") (-5 *2 (-712)) (-5 *1 (-225 *4)) (-4 *4 (-788)))))
+(-13 (-611 |#1|) (-10 -8 (-15 -3022 ($ (-591 |#1|))) (-15 -3022 ((-591 |#1|) $)) (-15 -4042 ($ (-591 |#1|))) (-15 -3164 ($ $ "unique")) (-15 -3164 ($ $ "sort")) (-15 -3164 ((-712) $ "count"))))
+((-3226 (((-3 (-712) "failed") |#1| |#1| (-712)) 27)))
+(((-226 |#1|) (-10 -7 (-15 -3226 ((-3 (-712) "failed") |#1| |#1| (-712)))) (-13 (-668) (-346) (-10 -7 (-15 ** (|#1| |#1| (-525)))))) (T -226))
+((-3226 (*1 *2 *3 *3 *2) (|partial| -12 (-5 *2 (-712)) (-4 *3 (-13 (-668) (-346) (-10 -7 (-15 ** (*3 *3 (-525)))))) (-5 *1 (-226 *3)))))
+(-10 -7 (-15 -3226 ((-3 (-712) "failed") |#1| |#1| (-712))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1507 (((-591 (-798 |#1|)) $) NIL)) (-1312 (((-1085 $) $ (-798 |#1|)) NIL) (((-1085 |#2|) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#2| (-517)))) (-3706 (($ $) NIL (|has| |#2| (-517)))) (-1715 (((-108) $) NIL (|has| |#2| (-517)))) (-4090 (((-712) $) NIL) (((-712) $ (-591 (-798 |#1|))) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1291 (($ $) NIL (|has| |#2| (-429)))) (-2827 (((-396 $) $) NIL (|has| |#2| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#2| "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#2| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) NIL (|has| |#2| (-966 (-525)))) (((-3 (-798 |#1|) "failed") $) NIL)) (-3528 ((|#2| $) NIL) (((-385 (-525)) $) NIL (|has| |#2| (-966 (-385 (-525))))) (((-525) $) NIL (|has| |#2| (-966 (-525)))) (((-798 |#1|) $) NIL)) (-2805 (($ $ $ (-798 |#1|)) NIL (|has| |#2| (-160)))) (-1766 (($ $ (-591 (-525))) NIL)) (-1710 (($ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) NIL) (((-631 |#2|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3208 (($ $) NIL (|has| |#2| (-429))) (($ $ (-798 |#1|)) NIL (|has| |#2| (-429)))) (-1695 (((-591 $) $) NIL)) (-2744 (((-108) $) NIL (|has| |#2| (-842)))) (-2056 (($ $ |#2| (-220 (-4045 |#1|) (-712)) $) NIL)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| (-798 |#1|) (-819 (-357))) (|has| |#2| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| (-798 |#1|) (-819 (-525))) (|has| |#2| (-819 (-525)))))) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) NIL)) (-1493 (($ (-1085 |#2|) (-798 |#1|)) NIL) (($ (-1085 $) (-798 |#1|)) NIL)) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-1480 (($ |#2| (-220 (-4045 |#1|) (-712))) NIL) (($ $ (-798 |#1|) (-712)) NIL) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ (-798 |#1|)) NIL)) (-2624 (((-220 (-4045 |#1|) (-712)) $) NIL) (((-712) $ (-798 |#1|)) NIL) (((-591 (-712)) $ (-591 (-798 |#1|))) NIL)) (-3741 (($ $ $) NIL (|has| |#2| (-788)))) (-2478 (($ $ $) NIL (|has| |#2| (-788)))) (-4015 (($ (-1 (-220 (-4045 |#1|) (-712)) (-220 (-4045 |#1|) (-712))) $) NIL)) (-1340 (($ (-1 |#2| |#2|) $) NIL)) (-2254 (((-3 (-798 |#1|) "failed") $) NIL)) (-1661 (($ $) NIL)) (-1678 ((|#2| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#2| (-429))) (($ $ $) NIL (|has| |#2| (-429)))) (-2339 (((-1072) $) NIL)) (-3376 (((-3 (-591 $) "failed") $) NIL)) (-2010 (((-3 (-591 $) "failed") $) NIL)) (-2292 (((-3 (-2 (|:| |var| (-798 |#1|)) (|:| -2008 (-712))) "failed") $) NIL)) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) NIL)) (-1646 ((|#2| $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#2| (-429)))) (-1399 (($ (-591 $)) NIL (|has| |#2| (-429))) (($ $ $) NIL (|has| |#2| (-429)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1348 (((-396 $) $) NIL (|has| |#2| (-842)))) (-2089 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-517))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-517)))) (-4132 (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-798 |#1|) |#2|) NIL) (($ $ (-591 (-798 |#1|)) (-591 |#2|)) NIL) (($ $ (-798 |#1|) $) NIL) (($ $ (-591 (-798 |#1|)) (-591 $)) NIL)) (-2976 (($ $ (-798 |#1|)) NIL (|has| |#2| (-160)))) (-3266 (($ $ (-798 |#1|)) NIL) (($ $ (-591 (-798 |#1|))) NIL) (($ $ (-798 |#1|) (-712)) NIL) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-1316 (((-220 (-4045 |#1|) (-712)) $) NIL) (((-712) $ (-798 |#1|)) NIL) (((-591 (-712)) $ (-591 (-798 |#1|))) NIL)) (-1408 (((-825 (-357)) $) NIL (-12 (|has| (-798 |#1|) (-566 (-825 (-357)))) (|has| |#2| (-566 (-825 (-357)))))) (((-825 (-525)) $) NIL (-12 (|has| (-798 |#1|) (-566 (-825 (-525)))) (|has| |#2| (-566 (-825 (-525)))))) (((-501) $) NIL (-12 (|has| (-798 |#1|) (-566 (-501))) (|has| |#2| (-566 (-501)))))) (-2668 ((|#2| $) NIL (|has| |#2| (-429))) (($ $ (-798 |#1|)) NIL (|has| |#2| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#2| (-842))))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#2|) NIL) (($ (-798 |#1|)) NIL) (($ (-385 (-525))) NIL (-3321 (|has| |#2| (-37 (-385 (-525)))) (|has| |#2| (-966 (-385 (-525)))))) (($ $) NIL (|has| |#2| (-517)))) (-3654 (((-591 |#2|) $) NIL)) (-2560 ((|#2| $ (-220 (-4045 |#1|) (-712))) NIL) (($ $ (-798 |#1|) (-712)) NIL) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#2| (-842))) (|has| |#2| (-136))))) (-2128 (((-712)) NIL)) (-1698 (($ $ $ (-712)) NIL (|has| |#2| (-160)))) (-2495 (((-108) $ $) NIL (|has| |#2| (-517)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ (-798 |#1|)) NIL) (($ $ (-591 (-798 |#1|))) NIL) (($ $ (-798 |#1|) (-712)) NIL) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-4135 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4173 (($ $ |#2|) NIL (|has| |#2| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL (|has| |#2| (-37 (-385 (-525))))) (($ (-385 (-525)) $) NIL (|has| |#2| (-37 (-385 (-525))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-227 |#1| |#2|) (-13 (-882 |#2| (-220 (-4045 |#1|) (-712)) (-798 |#1|)) (-10 -8 (-15 -1766 ($ $ (-591 (-525)))))) (-591 (-1089)) (-975)) (T -227))
+((-1766 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-227 *3 *4)) (-14 *3 (-591 (-1089))) (-4 *4 (-975)))))
+(-13 (-882 |#2| (-220 (-4045 |#1|) (-712)) (-798 |#1|)) (-10 -8 (-15 -1766 ($ $ (-591 (-525))))))
+((-2606 (((-1176) $) 12)) (-2610 (((-169) $) 9)) (-3542 (($ (-169)) 10)) (-3022 (((-796) $) 7)))
+(((-228) (-13 (-565 (-796)) (-10 -8 (-15 -2610 ((-169) $)) (-15 -3542 ($ (-169))) (-15 -2606 ((-1176) $))))) (T -228))
+((-2610 (*1 *2 *1) (-12 (-5 *2 (-169)) (-5 *1 (-228)))) (-3542 (*1 *1 *2) (-12 (-5 *2 (-169)) (-5 *1 (-228)))) (-2606 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-228)))))
+(-13 (-565 (-796)) (-10 -8 (-15 -2610 ((-169) $)) (-15 -3542 ($ (-169))) (-15 -2606 ((-1176) $))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2092 (($ (-854)) NIL (|has| |#4| (-975)))) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-2593 (($ $ $) NIL (|has| |#4| (-734)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-3032 (((-712)) NIL (|has| |#4| (-346)))) (-3329 (((-525) $) NIL (|has| |#4| (-786)))) (-3186 ((|#4| $ (-525) |#4|) NIL (|has| $ (-6 -4251)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#4| "failed") $) NIL (|has| |#4| (-1018))) (((-3 (-525) "failed") $) NIL (-12 (|has| |#4| (-966 (-525))) (|has| |#4| (-1018)))) (((-3 (-385 (-525)) "failed") $) NIL (-12 (|has| |#4| (-966 (-385 (-525)))) (|has| |#4| (-1018))))) (-3528 ((|#4| $) NIL (|has| |#4| (-1018))) (((-525) $) NIL (-12 (|has| |#4| (-966 (-525))) (|has| |#4| (-1018)))) (((-385 (-525)) $) NIL (-12 (|has| |#4| (-966 (-385 (-525)))) (|has| |#4| (-1018))))) (-3305 (((-2 (|:| -4057 (-631 |#4|)) (|:| |vec| (-1171 |#4|))) (-631 $) (-1171 $)) NIL (|has| |#4| (-975))) (((-631 |#4|) (-631 $)) NIL (|has| |#4| (-975))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (-12 (|has| |#4| (-587 (-525))) (|has| |#4| (-975)))) (((-631 (-525)) (-631 $)) NIL (-12 (|has| |#4| (-587 (-525))) (|has| |#4| (-975))))) (-4163 (((-3 $ "failed") $) NIL (|has| |#4| (-975)))) (-3377 (($) NIL (|has| |#4| (-346)))) (-3255 ((|#4| $ (-525) |#4|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#4| $ (-525)) NIL)) (-2134 (((-108) $) NIL (|has| |#4| (-786)))) (-3454 (((-591 |#4|) $) NIL (|has| $ (-6 -4250)))) (-2824 (((-108) $) NIL (|has| |#4| (-975)))) (-2732 (((-108) $) NIL (|has| |#4| (-786)))) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) NIL (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (-3321 (|has| |#4| (-734)) (|has| |#4| (-786))))) (-2552 (((-591 |#4|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#4| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (-3321 (|has| |#4| (-734)) (|has| |#4| (-786))))) (-3249 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#4| |#4|) $) NIL)) (-3016 (((-854) $) NIL (|has| |#4| (-346)))) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2226 (($ (-854)) NIL (|has| |#4| (-346)))) (-2047 (((-1036) $) NIL)) (-3066 ((|#4| $) NIL (|has| (-525) (-788)))) (-1941 (($ $ |#4|) NIL (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#4|))) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-273 |#4|)) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-591 |#4|) (-591 |#4|)) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#4| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018))))) (-3339 (((-591 |#4|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#4| $ (-525) |#4|) NIL) ((|#4| $ (-525)) 12)) (-2109 ((|#4| $ $) NIL (|has| |#4| (-975)))) (-1395 (($ (-1171 |#4|)) NIL)) (-4224 (((-128)) NIL (|has| |#4| (-341)))) (-3266 (($ $ (-1 |#4| |#4|) (-712)) NIL (|has| |#4| (-975))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-975))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#4| (-833 (-1089))) (|has| |#4| (-975)))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#4| (-833 (-1089))) (|has| |#4| (-975)))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#4| (-833 (-1089))) (|has| |#4| (-975)))) (($ $ (-1089)) NIL (-12 (|has| |#4| (-833 (-1089))) (|has| |#4| (-975)))) (($ $ (-712)) NIL (-12 (|has| |#4| (-213)) (|has| |#4| (-975)))) (($ $) NIL (-12 (|has| |#4| (-213)) (|has| |#4| (-975))))) (-2064 (((-712) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250))) (((-712) |#4| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018))))) (-3199 (($ $) NIL)) (-3022 (((-1171 |#4|) $) NIL) (((-796) $) NIL) (($ |#4|) NIL (|has| |#4| (-1018))) (($ (-525)) NIL (-3321 (-12 (|has| |#4| (-966 (-525))) (|has| |#4| (-1018))) (|has| |#4| (-975)))) (($ (-385 (-525))) NIL (-12 (|has| |#4| (-966 (-385 (-525)))) (|has| |#4| (-1018))))) (-2128 (((-712)) NIL (|has| |#4| (-975)))) (-4158 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-1539 (($ $) NIL (|has| |#4| (-786)))) (-3710 (($ $ (-712)) NIL (|has| |#4| (-975))) (($ $ (-854)) NIL (|has| |#4| (-975)))) (-4191 (($) NIL T CONST)) (-4197 (($) NIL (|has| |#4| (-975)) CONST)) (-4196 (($ $ (-1 |#4| |#4|) (-712)) NIL (|has| |#4| (-975))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-975))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#4| (-833 (-1089))) (|has| |#4| (-975)))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#4| (-833 (-1089))) (|has| |#4| (-975)))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#4| (-833 (-1089))) (|has| |#4| (-975)))) (($ $ (-1089)) NIL (-12 (|has| |#4| (-833 (-1089))) (|has| |#4| (-975)))) (($ $ (-712)) NIL (-12 (|has| |#4| (-213)) (|has| |#4| (-975)))) (($ $) NIL (-12 (|has| |#4| (-213)) (|has| |#4| (-975))))) (-4135 (((-108) $ $) NIL (-3321 (|has| |#4| (-734)) (|has| |#4| (-786))))) (-4119 (((-108) $ $) NIL (-3321 (|has| |#4| (-734)) (|has| |#4| (-786))))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (-3321 (|has| |#4| (-734)) (|has| |#4| (-786))))) (-4112 (((-108) $ $) NIL (-3321 (|has| |#4| (-734)) (|has| |#4| (-786))))) (-4173 (($ $ |#4|) NIL (|has| |#4| (-341)))) (-4164 (($ $ $) NIL) (($ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-712)) NIL (|has| |#4| (-975))) (($ $ (-854)) NIL (|has| |#4| (-975)))) (* (($ |#2| $) 14) (($ (-525) $) NIL) (($ (-712) $) NIL) (($ (-854) $) NIL) (($ |#3| $) 18) (($ $ |#4|) NIL (|has| |#4| (-668))) (($ |#4| $) NIL (|has| |#4| (-668))) (($ $ $) NIL (|has| |#4| (-975)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-229 |#1| |#2| |#3| |#4|) (-13 (-218 |#1| |#4|) (-593 |#2|) (-593 |#3|)) (-854) (-975) (-1039 |#1| |#2| (-220 |#1| |#2|) (-220 |#1| |#2|)) (-593 |#2|)) (T -229))
+NIL
+(-13 (-218 |#1| |#4|) (-593 |#2|) (-593 |#3|))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2092 (($ (-854)) NIL (|has| |#3| (-975)))) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-2593 (($ $ $) NIL (|has| |#3| (-734)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-3032 (((-712)) NIL (|has| |#3| (-346)))) (-3329 (((-525) $) NIL (|has| |#3| (-786)))) (-3186 ((|#3| $ (-525) |#3|) NIL (|has| $ (-6 -4251)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#3| "failed") $) NIL (|has| |#3| (-1018))) (((-3 (-525) "failed") $) NIL (-12 (|has| |#3| (-966 (-525))) (|has| |#3| (-1018)))) (((-3 (-385 (-525)) "failed") $) NIL (-12 (|has| |#3| (-966 (-385 (-525)))) (|has| |#3| (-1018))))) (-3528 ((|#3| $) NIL (|has| |#3| (-1018))) (((-525) $) NIL (-12 (|has| |#3| (-966 (-525))) (|has| |#3| (-1018)))) (((-385 (-525)) $) NIL (-12 (|has| |#3| (-966 (-385 (-525)))) (|has| |#3| (-1018))))) (-3305 (((-2 (|:| -4057 (-631 |#3|)) (|:| |vec| (-1171 |#3|))) (-631 $) (-1171 $)) NIL (|has| |#3| (-975))) (((-631 |#3|) (-631 $)) NIL (|has| |#3| (-975))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (-12 (|has| |#3| (-587 (-525))) (|has| |#3| (-975)))) (((-631 (-525)) (-631 $)) NIL (-12 (|has| |#3| (-587 (-525))) (|has| |#3| (-975))))) (-4163 (((-3 $ "failed") $) NIL (|has| |#3| (-975)))) (-3377 (($) NIL (|has| |#3| (-346)))) (-3255 ((|#3| $ (-525) |#3|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#3| $ (-525)) NIL)) (-2134 (((-108) $) NIL (|has| |#3| (-786)))) (-3454 (((-591 |#3|) $) NIL (|has| $ (-6 -4250)))) (-2824 (((-108) $) NIL (|has| |#3| (-975)))) (-2732 (((-108) $) NIL (|has| |#3| (-786)))) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) NIL (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (-3321 (|has| |#3| (-734)) (|has| |#3| (-786))))) (-2552 (((-591 |#3|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#3| (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (-3321 (|has| |#3| (-734)) (|has| |#3| (-786))))) (-3249 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#3| |#3|) $) NIL)) (-3016 (((-854) $) NIL (|has| |#3| (-346)))) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2226 (($ (-854)) NIL (|has| |#3| (-346)))) (-2047 (((-1036) $) NIL)) (-3066 ((|#3| $) NIL (|has| (-525) (-788)))) (-1941 (($ $ |#3|) NIL (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#3|))) NIL (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018)))) (($ $ (-273 |#3|)) NIL (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018)))) (($ $ (-591 |#3|) (-591 |#3|)) NIL (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#3| (-1018))))) (-3339 (((-591 |#3|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#3| $ (-525) |#3|) NIL) ((|#3| $ (-525)) 11)) (-2109 ((|#3| $ $) NIL (|has| |#3| (-975)))) (-1395 (($ (-1171 |#3|)) NIL)) (-4224 (((-128)) NIL (|has| |#3| (-341)))) (-3266 (($ $ (-1 |#3| |#3|) (-712)) NIL (|has| |#3| (-975))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-975))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-1089)) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-712)) NIL (-12 (|has| |#3| (-213)) (|has| |#3| (-975)))) (($ $) NIL (-12 (|has| |#3| (-213)) (|has| |#3| (-975))))) (-2064 (((-712) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4250))) (((-712) |#3| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#3| (-1018))))) (-3199 (($ $) NIL)) (-3022 (((-1171 |#3|) $) NIL) (((-796) $) NIL) (($ |#3|) NIL (|has| |#3| (-1018))) (($ (-525)) NIL (-3321 (-12 (|has| |#3| (-966 (-525))) (|has| |#3| (-1018))) (|has| |#3| (-975)))) (($ (-385 (-525))) NIL (-12 (|has| |#3| (-966 (-385 (-525)))) (|has| |#3| (-1018))))) (-2128 (((-712)) NIL (|has| |#3| (-975)))) (-4158 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4250)))) (-1539 (($ $) NIL (|has| |#3| (-786)))) (-3710 (($ $ (-712)) NIL (|has| |#3| (-975))) (($ $ (-854)) NIL (|has| |#3| (-975)))) (-4191 (($) NIL T CONST)) (-4197 (($) NIL (|has| |#3| (-975)) CONST)) (-4196 (($ $ (-1 |#3| |#3|) (-712)) NIL (|has| |#3| (-975))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-975))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-1089)) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-712)) NIL (-12 (|has| |#3| (-213)) (|has| |#3| (-975)))) (($ $) NIL (-12 (|has| |#3| (-213)) (|has| |#3| (-975))))) (-4135 (((-108) $ $) NIL (-3321 (|has| |#3| (-734)) (|has| |#3| (-786))))) (-4119 (((-108) $ $) NIL (-3321 (|has| |#3| (-734)) (|has| |#3| (-786))))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (-3321 (|has| |#3| (-734)) (|has| |#3| (-786))))) (-4112 (((-108) $ $) NIL (-3321 (|has| |#3| (-734)) (|has| |#3| (-786))))) (-4173 (($ $ |#3|) NIL (|has| |#3| (-341)))) (-4164 (($ $ $) NIL) (($ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-712)) NIL (|has| |#3| (-975))) (($ $ (-854)) NIL (|has| |#3| (-975)))) (* (($ |#2| $) 13) (($ (-525) $) NIL) (($ (-712) $) NIL) (($ (-854) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-668))) (($ |#3| $) NIL (|has| |#3| (-668))) (($ $ $) NIL (|has| |#3| (-975)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-230 |#1| |#2| |#3|) (-13 (-218 |#1| |#3|) (-593 |#2|)) (-712) (-975) (-593 |#2|)) (T -230))
+NIL
+(-13 (-218 |#1| |#3|) (-593 |#2|))
+((-1773 (((-591 (-712)) $) 47) (((-591 (-712)) $ |#3|) 50)) (-3197 (((-712) $) 49) (((-712) $ |#3|) 52)) (-1257 (($ $) 65)) (-1251 (((-3 |#2| "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL) (((-3 (-525) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 72)) (-3873 (((-712) $ |#3|) 39) (((-712) $) 36)) (-2492 (((-1 $ (-712)) |#3|) 15) (((-1 $ (-712)) $) 77)) (-1968 ((|#4| $) 58)) (-3326 (((-108) $) 56)) (-2794 (($ $) 64)) (-4132 (($ $ (-591 (-273 $))) 97) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-591 |#4|) (-591 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-591 |#4|) (-591 $)) NIL) (($ $ |#3| $) NIL) (($ $ (-591 |#3|) (-591 $)) 89) (($ $ |#3| |#2|) NIL) (($ $ (-591 |#3|) (-591 |#2|)) 84)) (-3266 (($ $ |#4|) NIL) (($ $ (-591 |#4|)) NIL) (($ $ |#4| (-712)) NIL) (($ $ (-591 |#4|) (-591 (-712))) NIL) (($ $) NIL) (($ $ (-712)) NIL) (($ $ (-1089)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL) (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-1 |#2| |#2|)) 32)) (-3945 (((-591 |#3|) $) 75)) (-1316 ((|#5| $) NIL) (((-712) $ |#4|) NIL) (((-591 (-712)) $ (-591 |#4|)) NIL) (((-712) $ |#3|) 44)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 67) (($ (-385 (-525))) NIL) (($ $) NIL)))
+(((-231 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3022 (|#1| |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -4132 (|#1| |#1| (-591 |#3|) (-591 |#2|))) (-15 -4132 (|#1| |#1| |#3| |#2|)) (-15 -4132 (|#1| |#1| (-591 |#3|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#3| |#1|)) (-15 -2492 ((-1 |#1| (-712)) |#1|)) (-15 -1257 (|#1| |#1|)) (-15 -2794 (|#1| |#1|)) (-15 -1968 (|#4| |#1|)) (-15 -3326 ((-108) |#1|)) (-15 -3197 ((-712) |#1| |#3|)) (-15 -1773 ((-591 (-712)) |#1| |#3|)) (-15 -3197 ((-712) |#1|)) (-15 -1773 ((-591 (-712)) |#1|)) (-15 -1316 ((-712) |#1| |#3|)) (-15 -3873 ((-712) |#1|)) (-15 -3873 ((-712) |#1| |#3|)) (-15 -3945 ((-591 |#3|) |#1|)) (-15 -2492 ((-1 |#1| (-712)) |#3|)) (-15 -1251 ((-3 |#3| "failed") |#1|)) (-15 -3022 (|#1| |#3|)) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1|)) (-15 -1316 ((-591 (-712)) |#1| (-591 |#4|))) (-15 -1316 ((-712) |#1| |#4|)) (-15 -1251 ((-3 |#4| "failed") |#1|)) (-15 -3022 (|#1| |#4|)) (-15 -4132 (|#1| |#1| (-591 |#4|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#4| |#1|)) (-15 -4132 (|#1| |#1| (-591 |#4|) (-591 |#2|))) (-15 -4132 (|#1| |#1| |#4| |#2|)) (-15 -4132 (|#1| |#1| (-591 |#1|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#1| |#1|)) (-15 -4132 (|#1| |#1| (-273 |#1|))) (-15 -4132 (|#1| |#1| (-591 (-273 |#1|)))) (-15 -1316 (|#5| |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3022 (|#1| |#2|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3266 (|#1| |#1| (-591 |#4|) (-591 (-712)))) (-15 -3266 (|#1| |#1| |#4| (-712))) (-15 -3266 (|#1| |#1| (-591 |#4|))) (-15 -3266 (|#1| |#1| |#4|)) (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|))) (-232 |#2| |#3| |#4| |#5|) (-975) (-788) (-245 |#3|) (-734)) (T -231))
+NIL
+(-10 -8 (-15 -3022 (|#1| |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -4132 (|#1| |#1| (-591 |#3|) (-591 |#2|))) (-15 -4132 (|#1| |#1| |#3| |#2|)) (-15 -4132 (|#1| |#1| (-591 |#3|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#3| |#1|)) (-15 -2492 ((-1 |#1| (-712)) |#1|)) (-15 -1257 (|#1| |#1|)) (-15 -2794 (|#1| |#1|)) (-15 -1968 (|#4| |#1|)) (-15 -3326 ((-108) |#1|)) (-15 -3197 ((-712) |#1| |#3|)) (-15 -1773 ((-591 (-712)) |#1| |#3|)) (-15 -3197 ((-712) |#1|)) (-15 -1773 ((-591 (-712)) |#1|)) (-15 -1316 ((-712) |#1| |#3|)) (-15 -3873 ((-712) |#1|)) (-15 -3873 ((-712) |#1| |#3|)) (-15 -3945 ((-591 |#3|) |#1|)) (-15 -2492 ((-1 |#1| (-712)) |#3|)) (-15 -1251 ((-3 |#3| "failed") |#1|)) (-15 -3022 (|#1| |#3|)) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1|)) (-15 -1316 ((-591 (-712)) |#1| (-591 |#4|))) (-15 -1316 ((-712) |#1| |#4|)) (-15 -1251 ((-3 |#4| "failed") |#1|)) (-15 -3022 (|#1| |#4|)) (-15 -4132 (|#1| |#1| (-591 |#4|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#4| |#1|)) (-15 -4132 (|#1| |#1| (-591 |#4|) (-591 |#2|))) (-15 -4132 (|#1| |#1| |#4| |#2|)) (-15 -4132 (|#1| |#1| (-591 |#1|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#1| |#1|)) (-15 -4132 (|#1| |#1| (-273 |#1|))) (-15 -4132 (|#1| |#1| (-591 (-273 |#1|)))) (-15 -1316 (|#5| |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3022 (|#1| |#2|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3266 (|#1| |#1| (-591 |#4|) (-591 (-712)))) (-15 -3266 (|#1| |#1| |#4| (-712))) (-15 -3266 (|#1| |#1| (-591 |#4|))) (-15 -3266 (|#1| |#1| |#4|)) (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1773 (((-591 (-712)) $) 214) (((-591 (-712)) $ |#2|) 212)) (-3197 (((-712) $) 213) (((-712) $ |#2|) 211)) (-1507 (((-591 |#3|) $) 110)) (-1312 (((-1085 $) $ |#3|) 125) (((-1085 |#1|) $) 124)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 87 (|has| |#1| (-517)))) (-3706 (($ $) 88 (|has| |#1| (-517)))) (-1715 (((-108) $) 90 (|has| |#1| (-517)))) (-4090 (((-712) $) 112) (((-712) $ (-591 |#3|)) 111)) (-2157 (((-3 $ "failed") $ $) 19)) (-1965 (((-396 (-1085 $)) (-1085 $)) 100 (|has| |#1| (-842)))) (-1291 (($ $) 98 (|has| |#1| (-429)))) (-2827 (((-396 $) $) 97 (|has| |#1| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) 103 (|has| |#1| (-842)))) (-1257 (($ $) 207)) (-3798 (($) 17 T CONST)) (-1251 (((-3 |#1| "failed") $) 164) (((-3 (-385 (-525)) "failed") $) 162 (|has| |#1| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) 160 (|has| |#1| (-966 (-525)))) (((-3 |#3| "failed") $) 136) (((-3 |#2| "failed") $) 221)) (-3528 ((|#1| $) 165) (((-385 (-525)) $) 161 (|has| |#1| (-966 (-385 (-525))))) (((-525) $) 159 (|has| |#1| (-966 (-525)))) ((|#3| $) 135) ((|#2| $) 220)) (-2805 (($ $ $ |#3|) 108 (|has| |#1| (-160)))) (-1710 (($ $) 154)) (-3305 (((-631 (-525)) (-631 $)) 134 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 133 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) 132) (((-631 |#1|) (-631 $)) 131)) (-4163 (((-3 $ "failed") $) 34)) (-3208 (($ $) 176 (|has| |#1| (-429))) (($ $ |#3|) 105 (|has| |#1| (-429)))) (-1695 (((-591 $) $) 109)) (-2744 (((-108) $) 96 (|has| |#1| (-842)))) (-2056 (($ $ |#1| |#4| $) 172)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 84 (-12 (|has| |#3| (-819 (-357))) (|has| |#1| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 83 (-12 (|has| |#3| (-819 (-525))) (|has| |#1| (-819 (-525)))))) (-3873 (((-712) $ |#2|) 217) (((-712) $) 216)) (-2824 (((-108) $) 31)) (-4010 (((-712) $) 169)) (-1493 (($ (-1085 |#1|) |#3|) 117) (($ (-1085 $) |#3|) 116)) (-1922 (((-591 $) $) 126)) (-2202 (((-108) $) 152)) (-1480 (($ |#1| |#4|) 153) (($ $ |#3| (-712)) 119) (($ $ (-591 |#3|) (-591 (-712))) 118)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ |#3|) 120)) (-2624 ((|#4| $) 170) (((-712) $ |#3|) 122) (((-591 (-712)) $ (-591 |#3|)) 121)) (-3741 (($ $ $) 79 (|has| |#1| (-788)))) (-2478 (($ $ $) 78 (|has| |#1| (-788)))) (-4015 (($ (-1 |#4| |#4|) $) 171)) (-1340 (($ (-1 |#1| |#1|) $) 151)) (-2492 (((-1 $ (-712)) |#2|) 219) (((-1 $ (-712)) $) 206 (|has| |#1| (-213)))) (-2254 (((-3 |#3| "failed") $) 123)) (-1661 (($ $) 149)) (-1678 ((|#1| $) 148)) (-1968 ((|#3| $) 209)) (-1356 (($ (-591 $)) 94 (|has| |#1| (-429))) (($ $ $) 93 (|has| |#1| (-429)))) (-2339 (((-1072) $) 9)) (-3326 (((-108) $) 210)) (-3376 (((-3 (-591 $) "failed") $) 114)) (-2010 (((-3 (-591 $) "failed") $) 115)) (-2292 (((-3 (-2 (|:| |var| |#3|) (|:| -2008 (-712))) "failed") $) 113)) (-2794 (($ $) 208)) (-2047 (((-1036) $) 10)) (-1634 (((-108) $) 166)) (-1646 ((|#1| $) 167)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 95 (|has| |#1| (-429)))) (-1399 (($ (-591 $)) 92 (|has| |#1| (-429))) (($ $ $) 91 (|has| |#1| (-429)))) (-2916 (((-396 (-1085 $)) (-1085 $)) 102 (|has| |#1| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) 101 (|has| |#1| (-842)))) (-1348 (((-396 $) $) 99 (|has| |#1| (-842)))) (-2089 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-517))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-517)))) (-4132 (($ $ (-591 (-273 $))) 145) (($ $ (-273 $)) 144) (($ $ $ $) 143) (($ $ (-591 $) (-591 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-591 |#3|) (-591 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-591 |#3|) (-591 $)) 138) (($ $ |#2| $) 205 (|has| |#1| (-213))) (($ $ (-591 |#2|) (-591 $)) 204 (|has| |#1| (-213))) (($ $ |#2| |#1|) 203 (|has| |#1| (-213))) (($ $ (-591 |#2|) (-591 |#1|)) 202 (|has| |#1| (-213)))) (-2976 (($ $ |#3|) 107 (|has| |#1| (-160)))) (-3266 (($ $ |#3|) 42) (($ $ (-591 |#3|)) 41) (($ $ |#3| (-712)) 40) (($ $ (-591 |#3|) (-591 (-712))) 39) (($ $) 238 (|has| |#1| (-213))) (($ $ (-712)) 236 (|has| |#1| (-213))) (($ $ (-1089)) 234 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) 233 (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) 232 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) 231 (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) 224) (($ $ (-1 |#1| |#1|)) 223)) (-3945 (((-591 |#2|) $) 218)) (-1316 ((|#4| $) 150) (((-712) $ |#3|) 130) (((-591 (-712)) $ (-591 |#3|)) 129) (((-712) $ |#2|) 215)) (-1408 (((-825 (-357)) $) 82 (-12 (|has| |#3| (-566 (-825 (-357)))) (|has| |#1| (-566 (-825 (-357)))))) (((-825 (-525)) $) 81 (-12 (|has| |#3| (-566 (-825 (-525)))) (|has| |#1| (-566 (-825 (-525)))))) (((-501) $) 80 (-12 (|has| |#3| (-566 (-501))) (|has| |#1| (-566 (-501)))))) (-2668 ((|#1| $) 175 (|has| |#1| (-429))) (($ $ |#3|) 106 (|has| |#1| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) 104 (-1213 (|has| $ (-136)) (|has| |#1| (-842))))) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 163) (($ |#3|) 137) (($ |#2|) 222) (($ (-385 (-525))) 72 (-3321 (|has| |#1| (-966 (-385 (-525)))) (|has| |#1| (-37 (-385 (-525)))))) (($ $) 85 (|has| |#1| (-517)))) (-3654 (((-591 |#1|) $) 168)) (-2560 ((|#1| $ |#4|) 155) (($ $ |#3| (-712)) 128) (($ $ (-591 |#3|) (-591 (-712))) 127)) (-1437 (((-3 $ "failed") $) 73 (-3321 (-1213 (|has| $ (-136)) (|has| |#1| (-842))) (|has| |#1| (-136))))) (-2128 (((-712)) 29)) (-1698 (($ $ $ (-712)) 173 (|has| |#1| (-160)))) (-2495 (((-108) $ $) 89 (|has| |#1| (-517)))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ |#3|) 38) (($ $ (-591 |#3|)) 37) (($ $ |#3| (-712)) 36) (($ $ (-591 |#3|) (-591 (-712))) 35) (($ $) 237 (|has| |#1| (-213))) (($ $ (-712)) 235 (|has| |#1| (-213))) (($ $ (-1089)) 230 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) 229 (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) 228 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) 227 (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) 226) (($ $ (-1 |#1| |#1|)) 225)) (-4135 (((-108) $ $) 76 (|has| |#1| (-788)))) (-4119 (((-108) $ $) 75 (|has| |#1| (-788)))) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 77 (|has| |#1| (-788)))) (-4112 (((-108) $ $) 74 (|has| |#1| (-788)))) (-4173 (($ $ |#1|) 156 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 (-525))) 158 (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) 157 (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+(((-232 |#1| |#2| |#3| |#4|) (-131) (-975) (-788) (-245 |t#2|) (-734)) (T -232))
+((-2492 (*1 *2 *3) (-12 (-4 *4 (-975)) (-4 *3 (-788)) (-4 *5 (-245 *3)) (-4 *6 (-734)) (-5 *2 (-1 *1 (-712))) (-4 *1 (-232 *4 *3 *5 *6)))) (-3945 (*1 *2 *1) (-12 (-4 *1 (-232 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-788)) (-4 *5 (-245 *4)) (-4 *6 (-734)) (-5 *2 (-591 *4)))) (-3873 (*1 *2 *1 *3) (-12 (-4 *1 (-232 *4 *3 *5 *6)) (-4 *4 (-975)) (-4 *3 (-788)) (-4 *5 (-245 *3)) (-4 *6 (-734)) (-5 *2 (-712)))) (-3873 (*1 *2 *1) (-12 (-4 *1 (-232 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-788)) (-4 *5 (-245 *4)) (-4 *6 (-734)) (-5 *2 (-712)))) (-1316 (*1 *2 *1 *3) (-12 (-4 *1 (-232 *4 *3 *5 *6)) (-4 *4 (-975)) (-4 *3 (-788)) (-4 *5 (-245 *3)) (-4 *6 (-734)) (-5 *2 (-712)))) (-1773 (*1 *2 *1) (-12 (-4 *1 (-232 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-788)) (-4 *5 (-245 *4)) (-4 *6 (-734)) (-5 *2 (-591 (-712))))) (-3197 (*1 *2 *1) (-12 (-4 *1 (-232 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-788)) (-4 *5 (-245 *4)) (-4 *6 (-734)) (-5 *2 (-712)))) (-1773 (*1 *2 *1 *3) (-12 (-4 *1 (-232 *4 *3 *5 *6)) (-4 *4 (-975)) (-4 *3 (-788)) (-4 *5 (-245 *3)) (-4 *6 (-734)) (-5 *2 (-591 (-712))))) (-3197 (*1 *2 *1 *3) (-12 (-4 *1 (-232 *4 *3 *5 *6)) (-4 *4 (-975)) (-4 *3 (-788)) (-4 *5 (-245 *3)) (-4 *6 (-734)) (-5 *2 (-712)))) (-3326 (*1 *2 *1) (-12 (-4 *1 (-232 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-788)) (-4 *5 (-245 *4)) (-4 *6 (-734)) (-5 *2 (-108)))) (-1968 (*1 *2 *1) (-12 (-4 *1 (-232 *3 *4 *2 *5)) (-4 *3 (-975)) (-4 *4 (-788)) (-4 *5 (-734)) (-4 *2 (-245 *4)))) (-2794 (*1 *1 *1) (-12 (-4 *1 (-232 *2 *3 *4 *5)) (-4 *2 (-975)) (-4 *3 (-788)) (-4 *4 (-245 *3)) (-4 *5 (-734)))) (-1257 (*1 *1 *1) (-12 (-4 *1 (-232 *2 *3 *4 *5)) (-4 *2 (-975)) (-4 *3 (-788)) (-4 *4 (-245 *3)) (-4 *5 (-734)))) (-2492 (*1 *2 *1) (-12 (-4 *3 (-213)) (-4 *3 (-975)) (-4 *4 (-788)) (-4 *5 (-245 *4)) (-4 *6 (-734)) (-5 *2 (-1 *1 (-712))) (-4 *1 (-232 *3 *4 *5 *6)))))
+(-13 (-882 |t#1| |t#4| |t#3|) (-211 |t#1|) (-966 |t#2|) (-10 -8 (-15 -2492 ((-1 $ (-712)) |t#2|)) (-15 -3945 ((-591 |t#2|) $)) (-15 -3873 ((-712) $ |t#2|)) (-15 -3873 ((-712) $)) (-15 -1316 ((-712) $ |t#2|)) (-15 -1773 ((-591 (-712)) $)) (-15 -3197 ((-712) $)) (-15 -1773 ((-591 (-712)) $ |t#2|)) (-15 -3197 ((-712) $ |t#2|)) (-15 -3326 ((-108) $)) (-15 -1968 (|t#3| $)) (-15 -2794 ($ $)) (-15 -1257 ($ $)) (IF (|has| |t#1| (-213)) (PROGN (-6 (-486 |t#2| |t#1|)) (-6 (-486 |t#2| $)) (-6 (-288 $)) (-15 -2492 ((-1 $ (-712)) $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| |#4|) . T) ((-25) . T) ((-37 #0=(-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((-37 |#1|) |has| |#1| (-160)) ((-37 $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429))) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-385 (-525)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-160))) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-160))) ((-566 (-501)) -12 (|has| |#1| (-566 (-501))) (|has| |#3| (-566 (-501)))) ((-566 (-825 (-357))) -12 (|has| |#1| (-566 (-825 (-357)))) (|has| |#3| (-566 (-825 (-357))))) ((-566 (-825 (-525))) -12 (|has| |#1| (-566 (-825 (-525)))) (|has| |#3| (-566 (-825 (-525))))) ((-211 |#1|) . T) ((-213) |has| |#1| (-213)) ((-269) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429))) ((-288 $) . T) ((-304 |#1| |#4|) . T) ((-355 |#1|) . T) ((-389 |#1|) . T) ((-429) -3321 (|has| |#1| (-842)) (|has| |#1| (-429))) ((-486 |#2| |#1|) |has| |#1| (-213)) ((-486 |#2| $) |has| |#1| (-213)) ((-486 |#3| |#1|) . T) ((-486 |#3| $) . T) ((-486 $ $) . T) ((-517) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429))) ((-593 #0#) |has| |#1| (-37 (-385 (-525)))) ((-593 |#1|) . T) ((-593 $) . T) ((-587 (-525)) |has| |#1| (-587 (-525))) ((-587 |#1|) . T) ((-659 #0#) |has| |#1| (-37 (-385 (-525)))) ((-659 |#1|) |has| |#1| (-160)) ((-659 $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429))) ((-668) . T) ((-788) |has| |#1| (-788)) ((-833 (-1089)) |has| |#1| (-833 (-1089))) ((-833 |#3|) . T) ((-819 (-357)) -12 (|has| |#1| (-819 (-357))) (|has| |#3| (-819 (-357)))) ((-819 (-525)) -12 (|has| |#1| (-819 (-525))) (|has| |#3| (-819 (-525)))) ((-882 |#1| |#4| |#3|) . T) ((-842) |has| |#1| (-842)) ((-966 (-385 (-525))) |has| |#1| (-966 (-385 (-525)))) ((-966 (-525)) |has| |#1| (-966 (-525))) ((-966 |#1|) . T) ((-966 |#2|) . T) ((-966 |#3|) . T) ((-981 #0#) |has| |#1| (-37 (-385 (-525)))) ((-981 |#1|) . T) ((-981 $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-160))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1129) |has| |#1| (-842)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-4115 ((|#1| $) 54)) (-1211 ((|#1| $) 44)) (-3891 (((-108) $ (-712)) 8)) (-3798 (($) 7 T CONST)) (-3474 (($ $) 60)) (-2598 (($ $) 48)) (-1275 ((|#1| |#1| $) 46)) (-1764 ((|#1| $) 45)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-1657 (((-712) $) 61)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-1464 ((|#1| $) 39)) (-3758 ((|#1| |#1| $) 52)) (-3823 ((|#1| |#1| $) 51)) (-2470 (($ |#1| $) 40)) (-2965 (((-712) $) 55)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-2620 ((|#1| $) 62)) (-1305 ((|#1| $) 50)) (-2327 ((|#1| $) 49)) (-3631 ((|#1| $) 41)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-1296 ((|#1| |#1| $) 58)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3723 ((|#1| $) 59)) (-2735 (($) 57) (($ (-591 |#1|)) 56)) (-1326 (((-712) $) 43)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-1910 ((|#1| $) 53)) (-1870 (($ (-591 |#1|)) 42)) (-3133 ((|#1| $) 63)) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-233 |#1|) (-131) (-1125)) (T -233))
+((-2735 (*1 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125)))) (-2735 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-4 *1 (-233 *3)))) (-2965 (*1 *2 *1) (-12 (-4 *1 (-233 *3)) (-4 *3 (-1125)) (-5 *2 (-712)))) (-4115 (*1 *2 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125)))) (-1910 (*1 *2 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125)))) (-3758 (*1 *2 *2 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125)))) (-3823 (*1 *2 *2 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125)))) (-1305 (*1 *2 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125)))) (-2327 (*1 *2 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125)))) (-2598 (*1 *1 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125)))))
+(-13 (-1037 |t#1|) (-925 |t#1|) (-10 -8 (-15 -2735 ($)) (-15 -2735 ($ (-591 |t#1|))) (-15 -2965 ((-712) $)) (-15 -4115 (|t#1| $)) (-15 -1910 (|t#1| $)) (-15 -3758 (|t#1| |t#1| $)) (-15 -3823 (|t#1| |t#1| $)) (-15 -1305 (|t#1| $)) (-15 -2327 (|t#1| $)) (-15 -2598 ($ $))))
+(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-925 |#1|) . T) ((-1018) |has| |#1| (-1018)) ((-1037 |#1|) . T) ((-1125) . T))
+((-1491 (((-1 (-876 (-205)) (-205) (-205)) (-1 (-876 (-205)) (-205) (-205)) (-1 (-205) (-205) (-205) (-205))) 139)) (-3460 (((-1049 (-205)) (-815 (-1 (-205) (-205) (-205))) (-1013 (-357)) (-1013 (-357))) 160) (((-1049 (-205)) (-815 (-1 (-205) (-205) (-205))) (-1013 (-357)) (-1013 (-357)) (-591 (-242))) 158) (((-1049 (-205)) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-357)) (-1013 (-357))) 163) (((-1049 (-205)) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-357)) (-1013 (-357)) (-591 (-242))) 159) (((-1049 (-205)) (-1 (-205) (-205) (-205)) (-1013 (-357)) (-1013 (-357))) 150) (((-1049 (-205)) (-1 (-205) (-205) (-205)) (-1013 (-357)) (-1013 (-357)) (-591 (-242))) 149) (((-1049 (-205)) (-1 (-876 (-205)) (-205)) (-1013 (-357))) 129) (((-1049 (-205)) (-1 (-876 (-205)) (-205)) (-1013 (-357)) (-591 (-242))) 127) (((-1049 (-205)) (-812 (-1 (-205) (-205))) (-1013 (-357))) 128) (((-1049 (-205)) (-812 (-1 (-205) (-205))) (-1013 (-357)) (-591 (-242))) 125)) (-1857 (((-1173) (-815 (-1 (-205) (-205) (-205))) (-1013 (-357)) (-1013 (-357))) 162) (((-1173) (-815 (-1 (-205) (-205) (-205))) (-1013 (-357)) (-1013 (-357)) (-591 (-242))) 161) (((-1173) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-357)) (-1013 (-357))) 165) (((-1173) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-357)) (-1013 (-357)) (-591 (-242))) 164) (((-1173) (-1 (-205) (-205) (-205)) (-1013 (-357)) (-1013 (-357))) 152) (((-1173) (-1 (-205) (-205) (-205)) (-1013 (-357)) (-1013 (-357)) (-591 (-242))) 151) (((-1173) (-1 (-876 (-205)) (-205)) (-1013 (-357))) 135) (((-1173) (-1 (-876 (-205)) (-205)) (-1013 (-357)) (-591 (-242))) 134) (((-1173) (-812 (-1 (-205) (-205))) (-1013 (-357))) 133) (((-1173) (-812 (-1 (-205) (-205))) (-1013 (-357)) (-591 (-242))) 132) (((-1172) (-810 (-1 (-205) (-205))) (-1013 (-357))) 100) (((-1172) (-810 (-1 (-205) (-205))) (-1013 (-357)) (-591 (-242))) 99) (((-1172) (-1 (-205) (-205)) (-1013 (-357))) 96) (((-1172) (-1 (-205) (-205)) (-1013 (-357)) (-591 (-242))) 95)))
+(((-234) (-10 -7 (-15 -1857 ((-1172) (-1 (-205) (-205)) (-1013 (-357)) (-591 (-242)))) (-15 -1857 ((-1172) (-1 (-205) (-205)) (-1013 (-357)))) (-15 -1857 ((-1172) (-810 (-1 (-205) (-205))) (-1013 (-357)) (-591 (-242)))) (-15 -1857 ((-1172) (-810 (-1 (-205) (-205))) (-1013 (-357)))) (-15 -1857 ((-1173) (-812 (-1 (-205) (-205))) (-1013 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) (-812 (-1 (-205) (-205))) (-1013 (-357)))) (-15 -1857 ((-1173) (-1 (-876 (-205)) (-205)) (-1013 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) (-1 (-876 (-205)) (-205)) (-1013 (-357)))) (-15 -3460 ((-1049 (-205)) (-812 (-1 (-205) (-205))) (-1013 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) (-812 (-1 (-205) (-205))) (-1013 (-357)))) (-15 -3460 ((-1049 (-205)) (-1 (-876 (-205)) (-205)) (-1013 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) (-1 (-876 (-205)) (-205)) (-1013 (-357)))) (-15 -1857 ((-1173) (-1 (-205) (-205) (-205)) (-1013 (-357)) (-1013 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) (-1 (-205) (-205) (-205)) (-1013 (-357)) (-1013 (-357)))) (-15 -3460 ((-1049 (-205)) (-1 (-205) (-205) (-205)) (-1013 (-357)) (-1013 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) (-1 (-205) (-205) (-205)) (-1013 (-357)) (-1013 (-357)))) (-15 -1857 ((-1173) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-357)) (-1013 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-357)) (-1013 (-357)))) (-15 -3460 ((-1049 (-205)) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-357)) (-1013 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-357)) (-1013 (-357)))) (-15 -1857 ((-1173) (-815 (-1 (-205) (-205) (-205))) (-1013 (-357)) (-1013 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) (-815 (-1 (-205) (-205) (-205))) (-1013 (-357)) (-1013 (-357)))) (-15 -3460 ((-1049 (-205)) (-815 (-1 (-205) (-205) (-205))) (-1013 (-357)) (-1013 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) (-815 (-1 (-205) (-205) (-205))) (-1013 (-357)) (-1013 (-357)))) (-15 -1491 ((-1 (-876 (-205)) (-205) (-205)) (-1 (-876 (-205)) (-205) (-205)) (-1 (-205) (-205) (-205) (-205)))))) (T -234))
+((-1491 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-876 (-205)) (-205) (-205))) (-5 *3 (-1 (-205) (-205) (-205) (-205))) (-5 *1 (-234)))) (-3460 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-815 (-1 (-205) (-205) (-205)))) (-5 *4 (-1013 (-357))) (-5 *2 (-1049 (-205))) (-5 *1 (-234)))) (-3460 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-815 (-1 (-205) (-205) (-205)))) (-5 *4 (-1013 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-234)))) (-1857 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-815 (-1 (-205) (-205) (-205)))) (-5 *4 (-1013 (-357))) (-5 *2 (-1173)) (-5 *1 (-234)))) (-1857 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-815 (-1 (-205) (-205) (-205)))) (-5 *4 (-1013 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1173)) (-5 *1 (-234)))) (-3460 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-876 (-205)) (-205) (-205))) (-5 *4 (-1013 (-357))) (-5 *2 (-1049 (-205))) (-5 *1 (-234)))) (-3460 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-876 (-205)) (-205) (-205))) (-5 *4 (-1013 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-234)))) (-1857 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-876 (-205)) (-205) (-205))) (-5 *4 (-1013 (-357))) (-5 *2 (-1173)) (-5 *1 (-234)))) (-1857 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-876 (-205)) (-205) (-205))) (-5 *4 (-1013 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1173)) (-5 *1 (-234)))) (-3460 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-205) (-205) (-205))) (-5 *4 (-1013 (-357))) (-5 *2 (-1049 (-205))) (-5 *1 (-234)))) (-3460 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-205) (-205) (-205))) (-5 *4 (-1013 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-234)))) (-1857 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-205) (-205) (-205))) (-5 *4 (-1013 (-357))) (-5 *2 (-1173)) (-5 *1 (-234)))) (-1857 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-205) (-205) (-205))) (-5 *4 (-1013 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1173)) (-5 *1 (-234)))) (-3460 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-876 (-205)) (-205))) (-5 *4 (-1013 (-357))) (-5 *2 (-1049 (-205))) (-5 *1 (-234)))) (-3460 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-876 (-205)) (-205))) (-5 *4 (-1013 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-234)))) (-3460 (*1 *2 *3 *4) (-12 (-5 *3 (-812 (-1 (-205) (-205)))) (-5 *4 (-1013 (-357))) (-5 *2 (-1049 (-205))) (-5 *1 (-234)))) (-3460 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-812 (-1 (-205) (-205)))) (-5 *4 (-1013 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-234)))) (-1857 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-876 (-205)) (-205))) (-5 *4 (-1013 (-357))) (-5 *2 (-1173)) (-5 *1 (-234)))) (-1857 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-876 (-205)) (-205))) (-5 *4 (-1013 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1173)) (-5 *1 (-234)))) (-1857 (*1 *2 *3 *4) (-12 (-5 *3 (-812 (-1 (-205) (-205)))) (-5 *4 (-1013 (-357))) (-5 *2 (-1173)) (-5 *1 (-234)))) (-1857 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-812 (-1 (-205) (-205)))) (-5 *4 (-1013 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1173)) (-5 *1 (-234)))) (-1857 (*1 *2 *3 *4) (-12 (-5 *3 (-810 (-1 (-205) (-205)))) (-5 *4 (-1013 (-357))) (-5 *2 (-1172)) (-5 *1 (-234)))) (-1857 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-810 (-1 (-205) (-205)))) (-5 *4 (-1013 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1172)) (-5 *1 (-234)))) (-1857 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-205) (-205))) (-5 *4 (-1013 (-357))) (-5 *2 (-1172)) (-5 *1 (-234)))) (-1857 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-205) (-205))) (-5 *4 (-1013 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1172)) (-5 *1 (-234)))))
+(-10 -7 (-15 -1857 ((-1172) (-1 (-205) (-205)) (-1013 (-357)) (-591 (-242)))) (-15 -1857 ((-1172) (-1 (-205) (-205)) (-1013 (-357)))) (-15 -1857 ((-1172) (-810 (-1 (-205) (-205))) (-1013 (-357)) (-591 (-242)))) (-15 -1857 ((-1172) (-810 (-1 (-205) (-205))) (-1013 (-357)))) (-15 -1857 ((-1173) (-812 (-1 (-205) (-205))) (-1013 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) (-812 (-1 (-205) (-205))) (-1013 (-357)))) (-15 -1857 ((-1173) (-1 (-876 (-205)) (-205)) (-1013 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) (-1 (-876 (-205)) (-205)) (-1013 (-357)))) (-15 -3460 ((-1049 (-205)) (-812 (-1 (-205) (-205))) (-1013 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) (-812 (-1 (-205) (-205))) (-1013 (-357)))) (-15 -3460 ((-1049 (-205)) (-1 (-876 (-205)) (-205)) (-1013 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) (-1 (-876 (-205)) (-205)) (-1013 (-357)))) (-15 -1857 ((-1173) (-1 (-205) (-205) (-205)) (-1013 (-357)) (-1013 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) (-1 (-205) (-205) (-205)) (-1013 (-357)) (-1013 (-357)))) (-15 -3460 ((-1049 (-205)) (-1 (-205) (-205) (-205)) (-1013 (-357)) (-1013 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) (-1 (-205) (-205) (-205)) (-1013 (-357)) (-1013 (-357)))) (-15 -1857 ((-1173) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-357)) (-1013 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-357)) (-1013 (-357)))) (-15 -3460 ((-1049 (-205)) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-357)) (-1013 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-357)) (-1013 (-357)))) (-15 -1857 ((-1173) (-815 (-1 (-205) (-205) (-205))) (-1013 (-357)) (-1013 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) (-815 (-1 (-205) (-205) (-205))) (-1013 (-357)) (-1013 (-357)))) (-15 -3460 ((-1049 (-205)) (-815 (-1 (-205) (-205) (-205))) (-1013 (-357)) (-1013 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) (-815 (-1 (-205) (-205) (-205))) (-1013 (-357)) (-1013 (-357)))) (-15 -1491 ((-1 (-876 (-205)) (-205) (-205)) (-1 (-876 (-205)) (-205) (-205)) (-1 (-205) (-205) (-205) (-205)))))
+((-1857 (((-1172) (-273 |#2|) (-1089) (-1089) (-591 (-242))) 96)))
+(((-235 |#1| |#2|) (-10 -7 (-15 -1857 ((-1172) (-273 |#2|) (-1089) (-1089) (-591 (-242))))) (-13 (-517) (-788) (-966 (-525))) (-408 |#1|)) (T -235))
+((-1857 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-273 *7)) (-5 *4 (-1089)) (-5 *5 (-591 (-242))) (-4 *7 (-408 *6)) (-4 *6 (-13 (-517) (-788) (-966 (-525)))) (-5 *2 (-1172)) (-5 *1 (-235 *6 *7)))))
+(-10 -7 (-15 -1857 ((-1172) (-273 |#2|) (-1089) (-1089) (-591 (-242)))))
+((-1983 (((-525) (-525)) 50)) (-1353 (((-525) (-525)) 51)) (-3871 (((-205) (-205)) 52)) (-1883 (((-1173) (-1 (-157 (-205)) (-157 (-205))) (-1013 (-205)) (-1013 (-205))) 49)) (-3965 (((-1173) (-1 (-157 (-205)) (-157 (-205))) (-1013 (-205)) (-1013 (-205)) (-108)) 47)))
+(((-236) (-10 -7 (-15 -3965 ((-1173) (-1 (-157 (-205)) (-157 (-205))) (-1013 (-205)) (-1013 (-205)) (-108))) (-15 -1883 ((-1173) (-1 (-157 (-205)) (-157 (-205))) (-1013 (-205)) (-1013 (-205)))) (-15 -1983 ((-525) (-525))) (-15 -1353 ((-525) (-525))) (-15 -3871 ((-205) (-205))))) (T -236))
+((-3871 (*1 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-236)))) (-1353 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-236)))) (-1983 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-236)))) (-1883 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-157 (-205)) (-157 (-205)))) (-5 *4 (-1013 (-205))) (-5 *2 (-1173)) (-5 *1 (-236)))) (-3965 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-157 (-205)) (-157 (-205)))) (-5 *4 (-1013 (-205))) (-5 *5 (-108)) (-5 *2 (-1173)) (-5 *1 (-236)))))
+(-10 -7 (-15 -3965 ((-1173) (-1 (-157 (-205)) (-157 (-205))) (-1013 (-205)) (-1013 (-205)) (-108))) (-15 -1883 ((-1173) (-1 (-157 (-205)) (-157 (-205))) (-1013 (-205)) (-1013 (-205)))) (-15 -1983 ((-525) (-525))) (-15 -1353 ((-525) (-525))) (-15 -3871 ((-205) (-205))))
+((-3022 (((-1011 (-357)) (-1011 (-294 |#1|))) 16)))
+(((-237 |#1|) (-10 -7 (-15 -3022 ((-1011 (-357)) (-1011 (-294 |#1|))))) (-13 (-788) (-517) (-566 (-357)))) (T -237))
+((-3022 (*1 *2 *3) (-12 (-5 *3 (-1011 (-294 *4))) (-4 *4 (-13 (-788) (-517) (-566 (-357)))) (-5 *2 (-1011 (-357))) (-5 *1 (-237 *4)))))
+(-10 -7 (-15 -3022 ((-1011 (-357)) (-1011 (-294 |#1|)))))
+((-3460 (((-1049 (-205)) (-815 |#1|) (-1011 (-357)) (-1011 (-357))) 71) (((-1049 (-205)) (-815 |#1|) (-1011 (-357)) (-1011 (-357)) (-591 (-242))) 70) (((-1049 (-205)) |#1| (-1011 (-357)) (-1011 (-357))) 61) (((-1049 (-205)) |#1| (-1011 (-357)) (-1011 (-357)) (-591 (-242))) 60) (((-1049 (-205)) (-812 |#1|) (-1011 (-357))) 52) (((-1049 (-205)) (-812 |#1|) (-1011 (-357)) (-591 (-242))) 51)) (-1857 (((-1173) (-815 |#1|) (-1011 (-357)) (-1011 (-357))) 74) (((-1173) (-815 |#1|) (-1011 (-357)) (-1011 (-357)) (-591 (-242))) 73) (((-1173) |#1| (-1011 (-357)) (-1011 (-357))) 64) (((-1173) |#1| (-1011 (-357)) (-1011 (-357)) (-591 (-242))) 63) (((-1173) (-812 |#1|) (-1011 (-357))) 56) (((-1173) (-812 |#1|) (-1011 (-357)) (-591 (-242))) 55) (((-1172) (-810 |#1|) (-1011 (-357))) 43) (((-1172) (-810 |#1|) (-1011 (-357)) (-591 (-242))) 42) (((-1172) |#1| (-1011 (-357))) 35) (((-1172) |#1| (-1011 (-357)) (-591 (-242))) 34)))
+(((-238 |#1|) (-10 -7 (-15 -1857 ((-1172) |#1| (-1011 (-357)) (-591 (-242)))) (-15 -1857 ((-1172) |#1| (-1011 (-357)))) (-15 -1857 ((-1172) (-810 |#1|) (-1011 (-357)) (-591 (-242)))) (-15 -1857 ((-1172) (-810 |#1|) (-1011 (-357)))) (-15 -1857 ((-1173) (-812 |#1|) (-1011 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) (-812 |#1|) (-1011 (-357)))) (-15 -3460 ((-1049 (-205)) (-812 |#1|) (-1011 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) (-812 |#1|) (-1011 (-357)))) (-15 -1857 ((-1173) |#1| (-1011 (-357)) (-1011 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) |#1| (-1011 (-357)) (-1011 (-357)))) (-15 -3460 ((-1049 (-205)) |#1| (-1011 (-357)) (-1011 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) |#1| (-1011 (-357)) (-1011 (-357)))) (-15 -1857 ((-1173) (-815 |#1|) (-1011 (-357)) (-1011 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) (-815 |#1|) (-1011 (-357)) (-1011 (-357)))) (-15 -3460 ((-1049 (-205)) (-815 |#1|) (-1011 (-357)) (-1011 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) (-815 |#1|) (-1011 (-357)) (-1011 (-357))))) (-13 (-566 (-501)) (-1018))) (T -238))
+((-3460 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-815 *5)) (-5 *4 (-1011 (-357))) (-4 *5 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1049 (-205))) (-5 *1 (-238 *5)))) (-3460 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-815 *6)) (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242))) (-4 *6 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1049 (-205))) (-5 *1 (-238 *6)))) (-1857 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-815 *5)) (-5 *4 (-1011 (-357))) (-4 *5 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1173)) (-5 *1 (-238 *5)))) (-1857 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-815 *6)) (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242))) (-4 *6 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1173)) (-5 *1 (-238 *6)))) (-3460 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1011 (-357))) (-5 *2 (-1049 (-205))) (-5 *1 (-238 *3)) (-4 *3 (-13 (-566 (-501)) (-1018))))) (-3460 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-238 *3)) (-4 *3 (-13 (-566 (-501)) (-1018))))) (-1857 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1011 (-357))) (-5 *2 (-1173)) (-5 *1 (-238 *3)) (-4 *3 (-13 (-566 (-501)) (-1018))))) (-1857 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1173)) (-5 *1 (-238 *3)) (-4 *3 (-13 (-566 (-501)) (-1018))))) (-3460 (*1 *2 *3 *4) (-12 (-5 *3 (-812 *5)) (-5 *4 (-1011 (-357))) (-4 *5 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1049 (-205))) (-5 *1 (-238 *5)))) (-3460 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-812 *6)) (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242))) (-4 *6 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1049 (-205))) (-5 *1 (-238 *6)))) (-1857 (*1 *2 *3 *4) (-12 (-5 *3 (-812 *5)) (-5 *4 (-1011 (-357))) (-4 *5 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1173)) (-5 *1 (-238 *5)))) (-1857 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-812 *6)) (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242))) (-4 *6 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1173)) (-5 *1 (-238 *6)))) (-1857 (*1 *2 *3 *4) (-12 (-5 *3 (-810 *5)) (-5 *4 (-1011 (-357))) (-4 *5 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1172)) (-5 *1 (-238 *5)))) (-1857 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-810 *6)) (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242))) (-4 *6 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1172)) (-5 *1 (-238 *6)))) (-1857 (*1 *2 *3 *4) (-12 (-5 *4 (-1011 (-357))) (-5 *2 (-1172)) (-5 *1 (-238 *3)) (-4 *3 (-13 (-566 (-501)) (-1018))))) (-1857 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1172)) (-5 *1 (-238 *3)) (-4 *3 (-13 (-566 (-501)) (-1018))))))
+(-10 -7 (-15 -1857 ((-1172) |#1| (-1011 (-357)) (-591 (-242)))) (-15 -1857 ((-1172) |#1| (-1011 (-357)))) (-15 -1857 ((-1172) (-810 |#1|) (-1011 (-357)) (-591 (-242)))) (-15 -1857 ((-1172) (-810 |#1|) (-1011 (-357)))) (-15 -1857 ((-1173) (-812 |#1|) (-1011 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) (-812 |#1|) (-1011 (-357)))) (-15 -3460 ((-1049 (-205)) (-812 |#1|) (-1011 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) (-812 |#1|) (-1011 (-357)))) (-15 -1857 ((-1173) |#1| (-1011 (-357)) (-1011 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) |#1| (-1011 (-357)) (-1011 (-357)))) (-15 -3460 ((-1049 (-205)) |#1| (-1011 (-357)) (-1011 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) |#1| (-1011 (-357)) (-1011 (-357)))) (-15 -1857 ((-1173) (-815 |#1|) (-1011 (-357)) (-1011 (-357)) (-591 (-242)))) (-15 -1857 ((-1173) (-815 |#1|) (-1011 (-357)) (-1011 (-357)))) (-15 -3460 ((-1049 (-205)) (-815 |#1|) (-1011 (-357)) (-1011 (-357)) (-591 (-242)))) (-15 -3460 ((-1049 (-205)) (-815 |#1|) (-1011 (-357)) (-1011 (-357)))))
+((-1857 (((-1173) (-591 (-205)) (-591 (-205)) (-591 (-205)) (-591 (-242))) 23) (((-1173) (-591 (-205)) (-591 (-205)) (-591 (-205))) 24) (((-1172) (-591 (-876 (-205))) (-591 (-242))) 16) (((-1172) (-591 (-876 (-205)))) 17) (((-1172) (-591 (-205)) (-591 (-205)) (-591 (-242))) 20) (((-1172) (-591 (-205)) (-591 (-205))) 21)))
+(((-239) (-10 -7 (-15 -1857 ((-1172) (-591 (-205)) (-591 (-205)))) (-15 -1857 ((-1172) (-591 (-205)) (-591 (-205)) (-591 (-242)))) (-15 -1857 ((-1172) (-591 (-876 (-205))))) (-15 -1857 ((-1172) (-591 (-876 (-205))) (-591 (-242)))) (-15 -1857 ((-1173) (-591 (-205)) (-591 (-205)) (-591 (-205)))) (-15 -1857 ((-1173) (-591 (-205)) (-591 (-205)) (-591 (-205)) (-591 (-242)))))) (T -239))
+((-1857 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-591 (-205))) (-5 *4 (-591 (-242))) (-5 *2 (-1173)) (-5 *1 (-239)))) (-1857 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-591 (-205))) (-5 *2 (-1173)) (-5 *1 (-239)))) (-1857 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-876 (-205)))) (-5 *4 (-591 (-242))) (-5 *2 (-1172)) (-5 *1 (-239)))) (-1857 (*1 *2 *3) (-12 (-5 *3 (-591 (-876 (-205)))) (-5 *2 (-1172)) (-5 *1 (-239)))) (-1857 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-591 (-205))) (-5 *4 (-591 (-242))) (-5 *2 (-1172)) (-5 *1 (-239)))) (-1857 (*1 *2 *3 *3) (-12 (-5 *3 (-591 (-205))) (-5 *2 (-1172)) (-5 *1 (-239)))))
+(-10 -7 (-15 -1857 ((-1172) (-591 (-205)) (-591 (-205)))) (-15 -1857 ((-1172) (-591 (-205)) (-591 (-205)) (-591 (-242)))) (-15 -1857 ((-1172) (-591 (-876 (-205))))) (-15 -1857 ((-1172) (-591 (-876 (-205))) (-591 (-242)))) (-15 -1857 ((-1173) (-591 (-205)) (-591 (-205)) (-591 (-205)))) (-15 -1857 ((-1173) (-591 (-205)) (-591 (-205)) (-591 (-205)) (-591 (-242)))))
+((-1889 (((-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205))) (-591 (-242)) (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205)))) 26)) (-4053 (((-854) (-591 (-242)) (-854)) 53)) (-1531 (((-854) (-591 (-242)) (-854)) 52)) (-3331 (((-591 (-357)) (-591 (-242)) (-591 (-357))) 69)) (-1237 (((-357) (-591 (-242)) (-357)) 58)) (-1286 (((-854) (-591 (-242)) (-854)) 54)) (-4055 (((-108) (-591 (-242)) (-108)) 28)) (-3698 (((-1072) (-591 (-242)) (-1072)) 20)) (-3350 (((-1072) (-591 (-242)) (-1072)) 27)) (-1923 (((-1049 (-205)) (-591 (-242))) 47)) (-4223 (((-591 (-1013 (-357))) (-591 (-242)) (-591 (-1013 (-357)))) 41)) (-3591 (((-807) (-591 (-242)) (-807)) 33)) (-1495 (((-807) (-591 (-242)) (-807)) 34)) (-2789 (((-1 (-876 (-205)) (-876 (-205))) (-591 (-242)) (-1 (-876 (-205)) (-876 (-205)))) 64)) (-2258 (((-108) (-591 (-242)) (-108)) 16)) (-3230 (((-108) (-591 (-242)) (-108)) 15)))
+(((-240) (-10 -7 (-15 -3230 ((-108) (-591 (-242)) (-108))) (-15 -2258 ((-108) (-591 (-242)) (-108))) (-15 -1889 ((-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205))) (-591 (-242)) (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205))))) (-15 -3698 ((-1072) (-591 (-242)) (-1072))) (-15 -3350 ((-1072) (-591 (-242)) (-1072))) (-15 -4055 ((-108) (-591 (-242)) (-108))) (-15 -3591 ((-807) (-591 (-242)) (-807))) (-15 -1495 ((-807) (-591 (-242)) (-807))) (-15 -4223 ((-591 (-1013 (-357))) (-591 (-242)) (-591 (-1013 (-357))))) (-15 -1531 ((-854) (-591 (-242)) (-854))) (-15 -4053 ((-854) (-591 (-242)) (-854))) (-15 -1923 ((-1049 (-205)) (-591 (-242)))) (-15 -1286 ((-854) (-591 (-242)) (-854))) (-15 -1237 ((-357) (-591 (-242)) (-357))) (-15 -2789 ((-1 (-876 (-205)) (-876 (-205))) (-591 (-242)) (-1 (-876 (-205)) (-876 (-205))))) (-15 -3331 ((-591 (-357)) (-591 (-242)) (-591 (-357)))))) (T -240))
+((-3331 (*1 *2 *3 *2) (-12 (-5 *2 (-591 (-357))) (-5 *3 (-591 (-242))) (-5 *1 (-240)))) (-2789 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-876 (-205)) (-876 (-205)))) (-5 *3 (-591 (-242))) (-5 *1 (-240)))) (-1237 (*1 *2 *3 *2) (-12 (-5 *2 (-357)) (-5 *3 (-591 (-242))) (-5 *1 (-240)))) (-1286 (*1 *2 *3 *2) (-12 (-5 *2 (-854)) (-5 *3 (-591 (-242))) (-5 *1 (-240)))) (-1923 (*1 *2 *3) (-12 (-5 *3 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-240)))) (-4053 (*1 *2 *3 *2) (-12 (-5 *2 (-854)) (-5 *3 (-591 (-242))) (-5 *1 (-240)))) (-1531 (*1 *2 *3 *2) (-12 (-5 *2 (-854)) (-5 *3 (-591 (-242))) (-5 *1 (-240)))) (-4223 (*1 *2 *3 *2) (-12 (-5 *2 (-591 (-1013 (-357)))) (-5 *3 (-591 (-242))) (-5 *1 (-240)))) (-1495 (*1 *2 *3 *2) (-12 (-5 *2 (-807)) (-5 *3 (-591 (-242))) (-5 *1 (-240)))) (-3591 (*1 *2 *3 *2) (-12 (-5 *2 (-807)) (-5 *3 (-591 (-242))) (-5 *1 (-240)))) (-4055 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *3 (-591 (-242))) (-5 *1 (-240)))) (-3350 (*1 *2 *3 *2) (-12 (-5 *2 (-1072)) (-5 *3 (-591 (-242))) (-5 *1 (-240)))) (-3698 (*1 *2 *3 *2) (-12 (-5 *2 (-1072)) (-5 *3 (-591 (-242))) (-5 *1 (-240)))) (-1889 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205)))) (-5 *3 (-591 (-242))) (-5 *1 (-240)))) (-2258 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *3 (-591 (-242))) (-5 *1 (-240)))) (-3230 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *3 (-591 (-242))) (-5 *1 (-240)))))
+(-10 -7 (-15 -3230 ((-108) (-591 (-242)) (-108))) (-15 -2258 ((-108) (-591 (-242)) (-108))) (-15 -1889 ((-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205))) (-591 (-242)) (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205))))) (-15 -3698 ((-1072) (-591 (-242)) (-1072))) (-15 -3350 ((-1072) (-591 (-242)) (-1072))) (-15 -4055 ((-108) (-591 (-242)) (-108))) (-15 -3591 ((-807) (-591 (-242)) (-807))) (-15 -1495 ((-807) (-591 (-242)) (-807))) (-15 -4223 ((-591 (-1013 (-357))) (-591 (-242)) (-591 (-1013 (-357))))) (-15 -1531 ((-854) (-591 (-242)) (-854))) (-15 -4053 ((-854) (-591 (-242)) (-854))) (-15 -1923 ((-1049 (-205)) (-591 (-242)))) (-15 -1286 ((-854) (-591 (-242)) (-854))) (-15 -1237 ((-357) (-591 (-242)) (-357))) (-15 -2789 ((-1 (-876 (-205)) (-876 (-205))) (-591 (-242)) (-1 (-876 (-205)) (-876 (-205))))) (-15 -3331 ((-591 (-357)) (-591 (-242)) (-591 (-357)))))
+((-3786 (((-3 |#1| "failed") (-591 (-242)) (-1089)) 17)))
+(((-241 |#1|) (-10 -7 (-15 -3786 ((-3 |#1| "failed") (-591 (-242)) (-1089)))) (-1125)) (T -241))
+((-3786 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-591 (-242))) (-5 *4 (-1089)) (-5 *1 (-241 *2)) (-4 *2 (-1125)))))
+(-10 -7 (-15 -3786 ((-3 |#1| "failed") (-591 (-242)) (-1089))))
+((-3008 (((-108) $ $) NIL)) (-1889 (($ (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205)))) 15)) (-4053 (($ (-854)) 76)) (-1531 (($ (-854)) 75)) (-2999 (($ (-591 (-357))) 82)) (-1237 (($ (-357)) 58)) (-1286 (($ (-854)) 77)) (-4055 (($ (-108)) 23)) (-3698 (($ (-1072)) 18)) (-3350 (($ (-1072)) 19)) (-1923 (($ (-1049 (-205))) 71)) (-4223 (($ (-591 (-1013 (-357)))) 67)) (-1767 (($ (-591 (-1013 (-357)))) 59) (($ (-591 (-1013 (-385 (-525))))) 66)) (-3017 (($ (-357)) 29) (($ (-807)) 33)) (-1611 (((-108) (-591 $) (-1089)) 91)) (-3786 (((-3 (-51) "failed") (-591 $) (-1089)) 93)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1805 (($ (-357)) 34) (($ (-807)) 35)) (-3572 (($ (-1 (-876 (-205)) (-876 (-205)))) 57)) (-2789 (($ (-1 (-876 (-205)) (-876 (-205)))) 78)) (-1263 (($ (-1 (-205) (-205))) 39) (($ (-1 (-205) (-205) (-205))) 43) (($ (-1 (-205) (-205) (-205) (-205))) 47)) (-3022 (((-796) $) 87)) (-1218 (($ (-108)) 24) (($ (-591 (-1013 (-357)))) 52)) (-3230 (($ (-108)) 25)) (-4096 (((-108) $ $) 89)))
+(((-242) (-13 (-1018) (-10 -8 (-15 -3230 ($ (-108))) (-15 -1218 ($ (-108))) (-15 -1889 ($ (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205))))) (-15 -3698 ($ (-1072))) (-15 -3350 ($ (-1072))) (-15 -4055 ($ (-108))) (-15 -1218 ($ (-591 (-1013 (-357))))) (-15 -3572 ($ (-1 (-876 (-205)) (-876 (-205))))) (-15 -3017 ($ (-357))) (-15 -3017 ($ (-807))) (-15 -1805 ($ (-357))) (-15 -1805 ($ (-807))) (-15 -1263 ($ (-1 (-205) (-205)))) (-15 -1263 ($ (-1 (-205) (-205) (-205)))) (-15 -1263 ($ (-1 (-205) (-205) (-205) (-205)))) (-15 -1237 ($ (-357))) (-15 -1767 ($ (-591 (-1013 (-357))))) (-15 -1767 ($ (-591 (-1013 (-385 (-525)))))) (-15 -4223 ($ (-591 (-1013 (-357))))) (-15 -1923 ($ (-1049 (-205)))) (-15 -1531 ($ (-854))) (-15 -4053 ($ (-854))) (-15 -1286 ($ (-854))) (-15 -2789 ($ (-1 (-876 (-205)) (-876 (-205))))) (-15 -2999 ($ (-591 (-357)))) (-15 -3786 ((-3 (-51) "failed") (-591 $) (-1089))) (-15 -1611 ((-108) (-591 $) (-1089)))))) (T -242))
+((-3230 (*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-242)))) (-1218 (*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-242)))) (-1889 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205)))) (-5 *1 (-242)))) (-3698 (*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-242)))) (-3350 (*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-242)))) (-4055 (*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-242)))) (-1218 (*1 *1 *2) (-12 (-5 *2 (-591 (-1013 (-357)))) (-5 *1 (-242)))) (-3572 (*1 *1 *2) (-12 (-5 *2 (-1 (-876 (-205)) (-876 (-205)))) (-5 *1 (-242)))) (-3017 (*1 *1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-242)))) (-3017 (*1 *1 *2) (-12 (-5 *2 (-807)) (-5 *1 (-242)))) (-1805 (*1 *1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-242)))) (-1805 (*1 *1 *2) (-12 (-5 *2 (-807)) (-5 *1 (-242)))) (-1263 (*1 *1 *2) (-12 (-5 *2 (-1 (-205) (-205))) (-5 *1 (-242)))) (-1263 (*1 *1 *2) (-12 (-5 *2 (-1 (-205) (-205) (-205))) (-5 *1 (-242)))) (-1263 (*1 *1 *2) (-12 (-5 *2 (-1 (-205) (-205) (-205) (-205))) (-5 *1 (-242)))) (-1237 (*1 *1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-242)))) (-1767 (*1 *1 *2) (-12 (-5 *2 (-591 (-1013 (-357)))) (-5 *1 (-242)))) (-1767 (*1 *1 *2) (-12 (-5 *2 (-591 (-1013 (-385 (-525))))) (-5 *1 (-242)))) (-4223 (*1 *1 *2) (-12 (-5 *2 (-591 (-1013 (-357)))) (-5 *1 (-242)))) (-1923 (*1 *1 *2) (-12 (-5 *2 (-1049 (-205))) (-5 *1 (-242)))) (-1531 (*1 *1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-242)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-242)))) (-1286 (*1 *1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-242)))) (-2789 (*1 *1 *2) (-12 (-5 *2 (-1 (-876 (-205)) (-876 (-205)))) (-5 *1 (-242)))) (-2999 (*1 *1 *2) (-12 (-5 *2 (-591 (-357))) (-5 *1 (-242)))) (-3786 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-591 (-242))) (-5 *4 (-1089)) (-5 *2 (-51)) (-5 *1 (-242)))) (-1611 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-242))) (-5 *4 (-1089)) (-5 *2 (-108)) (-5 *1 (-242)))))
+(-13 (-1018) (-10 -8 (-15 -3230 ($ (-108))) (-15 -1218 ($ (-108))) (-15 -1889 ($ (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205))))) (-15 -3698 ($ (-1072))) (-15 -3350 ($ (-1072))) (-15 -4055 ($ (-108))) (-15 -1218 ($ (-591 (-1013 (-357))))) (-15 -3572 ($ (-1 (-876 (-205)) (-876 (-205))))) (-15 -3017 ($ (-357))) (-15 -3017 ($ (-807))) (-15 -1805 ($ (-357))) (-15 -1805 ($ (-807))) (-15 -1263 ($ (-1 (-205) (-205)))) (-15 -1263 ($ (-1 (-205) (-205) (-205)))) (-15 -1263 ($ (-1 (-205) (-205) (-205) (-205)))) (-15 -1237 ($ (-357))) (-15 -1767 ($ (-591 (-1013 (-357))))) (-15 -1767 ($ (-591 (-1013 (-385 (-525)))))) (-15 -4223 ($ (-591 (-1013 (-357))))) (-15 -1923 ($ (-1049 (-205)))) (-15 -1531 ($ (-854))) (-15 -4053 ($ (-854))) (-15 -1286 ($ (-854))) (-15 -2789 ($ (-1 (-876 (-205)) (-876 (-205))))) (-15 -2999 ($ (-591 (-357)))) (-15 -3786 ((-3 (-51) "failed") (-591 $) (-1089))) (-15 -1611 ((-108) (-591 $) (-1089)))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1773 (((-591 (-712)) $) NIL) (((-591 (-712)) $ |#2|) NIL)) (-3197 (((-712) $) NIL) (((-712) $ |#2|) NIL)) (-1507 (((-591 |#3|) $) NIL)) (-1312 (((-1085 $) $ |#3|) NIL) (((-1085 |#1|) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-4090 (((-712) $) NIL) (((-712) $ (-591 |#3|)) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1291 (($ $) NIL (|has| |#1| (-429)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1257 (($ $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 |#3| "failed") $) NIL) (((-3 |#2| "failed") $) NIL) (((-3 (-1041 |#1| |#2|) "failed") $) 21)) (-3528 ((|#1| $) NIL) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-525) $) NIL (|has| |#1| (-966 (-525)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1041 |#1| |#2|) $) NIL)) (-2805 (($ $ $ |#3|) NIL (|has| |#1| (-160)))) (-1710 (($ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) NIL) (((-631 |#1|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3208 (($ $) NIL (|has| |#1| (-429))) (($ $ |#3|) NIL (|has| |#1| (-429)))) (-1695 (((-591 $) $) NIL)) (-2744 (((-108) $) NIL (|has| |#1| (-842)))) (-2056 (($ $ |#1| (-497 |#3|) $) NIL)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| |#1| (-819 (-357))) (|has| |#3| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| |#1| (-819 (-525))) (|has| |#3| (-819 (-525)))))) (-3873 (((-712) $ |#2|) NIL) (((-712) $) 10)) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) NIL)) (-1493 (($ (-1085 |#1|) |#3|) NIL) (($ (-1085 $) |#3|) NIL)) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-497 |#3|)) NIL) (($ $ |#3| (-712)) NIL) (($ $ (-591 |#3|) (-591 (-712))) NIL)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ |#3|) NIL)) (-2624 (((-497 |#3|) $) NIL) (((-712) $ |#3|) NIL) (((-591 (-712)) $ (-591 |#3|)) NIL)) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-4015 (($ (-1 (-497 |#3|) (-497 |#3|)) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-2492 (((-1 $ (-712)) |#2|) NIL) (((-1 $ (-712)) $) NIL (|has| |#1| (-213)))) (-2254 (((-3 |#3| "failed") $) NIL)) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-1968 ((|#3| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2339 (((-1072) $) NIL)) (-3326 (((-108) $) NIL)) (-3376 (((-3 (-591 $) "failed") $) NIL)) (-2010 (((-3 (-591 $) "failed") $) NIL)) (-2292 (((-3 (-2 (|:| |var| |#3|) (|:| -2008 (-712))) "failed") $) NIL)) (-2794 (($ $) NIL)) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) NIL)) (-1646 ((|#1| $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-429)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1348 (((-396 $) $) NIL (|has| |#1| (-842)))) (-2089 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-517)))) (-4132 (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ |#3| |#1|) NIL) (($ $ (-591 |#3|) (-591 |#1|)) NIL) (($ $ |#3| $) NIL) (($ $ (-591 |#3|) (-591 $)) NIL) (($ $ |#2| $) NIL (|has| |#1| (-213))) (($ $ (-591 |#2|) (-591 $)) NIL (|has| |#1| (-213))) (($ $ |#2| |#1|) NIL (|has| |#1| (-213))) (($ $ (-591 |#2|) (-591 |#1|)) NIL (|has| |#1| (-213)))) (-2976 (($ $ |#3|) NIL (|has| |#1| (-160)))) (-3266 (($ $ |#3|) NIL) (($ $ (-591 |#3|)) NIL) (($ $ |#3| (-712)) NIL) (($ $ (-591 |#3|) (-591 (-712))) NIL) (($ $) NIL (|has| |#1| (-213))) (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3945 (((-591 |#2|) $) NIL)) (-1316 (((-497 |#3|) $) NIL) (((-712) $ |#3|) NIL) (((-591 (-712)) $ (-591 |#3|)) NIL) (((-712) $ |#2|) NIL)) (-1408 (((-825 (-357)) $) NIL (-12 (|has| |#1| (-566 (-825 (-357)))) (|has| |#3| (-566 (-825 (-357)))))) (((-825 (-525)) $) NIL (-12 (|has| |#1| (-566 (-825 (-525)))) (|has| |#3| (-566 (-825 (-525)))))) (((-501) $) NIL (-12 (|has| |#1| (-566 (-501))) (|has| |#3| (-566 (-501)))))) (-2668 ((|#1| $) NIL (|has| |#1| (-429))) (($ $ |#3|) NIL (|has| |#1| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#1| (-842))))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#1|) 24) (($ |#3|) 23) (($ |#2|) NIL) (($ (-1041 |#1| |#2|)) 30) (($ (-385 (-525))) NIL (-3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-966 (-385 (-525)))))) (($ $) NIL (|has| |#1| (-517)))) (-3654 (((-591 |#1|) $) NIL)) (-2560 ((|#1| $ (-497 |#3|)) NIL) (($ $ |#3| (-712)) NIL) (($ $ (-591 |#3|) (-591 (-712))) NIL)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#1| (-842))) (|has| |#1| (-136))))) (-2128 (((-712)) NIL)) (-1698 (($ $ $ (-712)) NIL (|has| |#1| (-160)))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ |#3|) NIL) (($ $ (-591 |#3|)) NIL) (($ $ |#3| (-712)) NIL) (($ $ (-591 |#3|) (-591 (-712))) NIL) (($ $) NIL (|has| |#1| (-213))) (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-243 |#1| |#2| |#3|) (-13 (-232 |#1| |#2| |#3| (-497 |#3|)) (-966 (-1041 |#1| |#2|))) (-975) (-788) (-245 |#2|)) (T -243))
+NIL
+(-13 (-232 |#1| |#2| |#3| (-497 |#3|)) (-966 (-1041 |#1| |#2|)))
+((-3197 (((-712) $) 30)) (-1251 (((-3 |#2| "failed") $) 17)) (-3528 ((|#2| $) 27)) (-3266 (($ $) 12) (($ $ (-712)) 15)) (-3022 (((-796) $) 26) (($ |#2|) 10)) (-4096 (((-108) $ $) 20)) (-4112 (((-108) $ $) 29)))
+(((-244 |#1| |#2|) (-10 -8 (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1|)) (-15 -3197 ((-712) |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3022 (|#1| |#2|)) (-15 -4112 ((-108) |#1| |#1|)) (-15 -3022 ((-796) |#1|)) (-15 -4096 ((-108) |#1| |#1|))) (-245 |#2|) (-788)) (T -244))
+NIL
+(-10 -8 (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1|)) (-15 -3197 ((-712) |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3022 (|#1| |#2|)) (-15 -4112 ((-108) |#1| |#1|)) (-15 -3022 ((-796) |#1|)) (-15 -4096 ((-108) |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-3197 (((-712) $) 22)) (-2037 ((|#1| $) 23)) (-1251 (((-3 |#1| "failed") $) 27)) (-3528 ((|#1| $) 26)) (-3873 (((-712) $) 24)) (-3741 (($ $ $) 13)) (-2478 (($ $ $) 14)) (-2492 (($ |#1| (-712)) 25)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3266 (($ $) 21) (($ $ (-712)) 20)) (-3022 (((-796) $) 11) (($ |#1|) 28)) (-4135 (((-108) $ $) 16)) (-4119 (((-108) $ $) 17)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 15)) (-4112 (((-108) $ $) 18)))
+(((-245 |#1|) (-131) (-788)) (T -245))
+((-3022 (*1 *1 *2) (-12 (-4 *1 (-245 *2)) (-4 *2 (-788)))) (-2492 (*1 *1 *2 *3) (-12 (-5 *3 (-712)) (-4 *1 (-245 *2)) (-4 *2 (-788)))) (-3873 (*1 *2 *1) (-12 (-4 *1 (-245 *3)) (-4 *3 (-788)) (-5 *2 (-712)))) (-2037 (*1 *2 *1) (-12 (-4 *1 (-245 *2)) (-4 *2 (-788)))) (-3197 (*1 *2 *1) (-12 (-4 *1 (-245 *3)) (-4 *3 (-788)) (-5 *2 (-712)))) (-3266 (*1 *1 *1) (-12 (-4 *1 (-245 *2)) (-4 *2 (-788)))) (-3266 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-245 *3)) (-4 *3 (-788)))))
+(-13 (-788) (-966 |t#1|) (-10 -8 (-15 -2492 ($ |t#1| (-712))) (-15 -3873 ((-712) $)) (-15 -2037 (|t#1| $)) (-15 -3197 ((-712) $)) (-15 -3266 ($ $)) (-15 -3266 ($ $ (-712))) (-15 -3022 ($ |t#1|))))
+(((-97) . T) ((-565 (-796)) . T) ((-788) . T) ((-966 |#1|) . T) ((-1018) . T))
+((-1507 (((-591 (-1089)) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) 41)) (-3531 (((-591 (-1089)) (-294 (-205)) (-712)) 80)) (-2614 (((-3 (-294 (-205)) "failed") (-294 (-205))) 51)) (-1471 (((-294 (-205)) (-294 (-205))) 67)) (-3343 (((-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205))))) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 26)) (-1505 (((-108) (-591 (-294 (-205)))) 84)) (-3042 (((-108) (-294 (-205))) 24)) (-3552 (((-591 (-1072)) (-3 (|:| |noa| (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (|:| |lsa| (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))))) 106)) (-2645 (((-591 (-294 (-205))) (-591 (-294 (-205)))) 88)) (-2267 (((-591 (-294 (-205))) (-591 (-294 (-205)))) 86)) (-3561 (((-631 (-205)) (-591 (-294 (-205))) (-712)) 95)) (-4190 (((-108) (-294 (-205))) 20) (((-108) (-591 (-294 (-205)))) 85)) (-2473 (((-591 (-205)) (-591 (-781 (-205))) (-205)) 14)) (-2750 (((-357) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) 101)) (-3967 (((-964) (-1089) (-964)) 34)))
+(((-246) (-10 -7 (-15 -2473 ((-591 (-205)) (-591 (-781 (-205))) (-205))) (-15 -3343 ((-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205))))) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205))))))) (-15 -2614 ((-3 (-294 (-205)) "failed") (-294 (-205)))) (-15 -1471 ((-294 (-205)) (-294 (-205)))) (-15 -1505 ((-108) (-591 (-294 (-205))))) (-15 -4190 ((-108) (-591 (-294 (-205))))) (-15 -4190 ((-108) (-294 (-205)))) (-15 -3561 ((-631 (-205)) (-591 (-294 (-205))) (-712))) (-15 -2267 ((-591 (-294 (-205))) (-591 (-294 (-205))))) (-15 -2645 ((-591 (-294 (-205))) (-591 (-294 (-205))))) (-15 -3042 ((-108) (-294 (-205)))) (-15 -1507 ((-591 (-1089)) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))) (-15 -3531 ((-591 (-1089)) (-294 (-205)) (-712))) (-15 -3967 ((-964) (-1089) (-964))) (-15 -2750 ((-357) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))) (-15 -3552 ((-591 (-1072)) (-3 (|:| |noa| (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (|:| |lsa| (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))))))) (T -246))
+((-3552 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (|:| |lsa| (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))))) (-5 *2 (-591 (-1072))) (-5 *1 (-246)))) (-2750 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) (-5 *2 (-357)) (-5 *1 (-246)))) (-3967 (*1 *2 *3 *2) (-12 (-5 *2 (-964)) (-5 *3 (-1089)) (-5 *1 (-246)))) (-3531 (*1 *2 *3 *4) (-12 (-5 *3 (-294 (-205))) (-5 *4 (-712)) (-5 *2 (-591 (-1089))) (-5 *1 (-246)))) (-1507 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) (-5 *2 (-591 (-1089))) (-5 *1 (-246)))) (-3042 (*1 *2 *3) (-12 (-5 *3 (-294 (-205))) (-5 *2 (-108)) (-5 *1 (-246)))) (-2645 (*1 *2 *2) (-12 (-5 *2 (-591 (-294 (-205)))) (-5 *1 (-246)))) (-2267 (*1 *2 *2) (-12 (-5 *2 (-591 (-294 (-205)))) (-5 *1 (-246)))) (-3561 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-294 (-205)))) (-5 *4 (-712)) (-5 *2 (-631 (-205))) (-5 *1 (-246)))) (-4190 (*1 *2 *3) (-12 (-5 *3 (-294 (-205))) (-5 *2 (-108)) (-5 *1 (-246)))) (-4190 (*1 *2 *3) (-12 (-5 *3 (-591 (-294 (-205)))) (-5 *2 (-108)) (-5 *1 (-246)))) (-1505 (*1 *2 *3) (-12 (-5 *3 (-591 (-294 (-205)))) (-5 *2 (-108)) (-5 *1 (-246)))) (-1471 (*1 *2 *2) (-12 (-5 *2 (-294 (-205))) (-5 *1 (-246)))) (-2614 (*1 *2 *2) (|partial| -12 (-5 *2 (-294 (-205))) (-5 *1 (-246)))) (-3343 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (-5 *1 (-246)))) (-2473 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-781 (-205)))) (-5 *4 (-205)) (-5 *2 (-591 *4)) (-5 *1 (-246)))))
+(-10 -7 (-15 -2473 ((-591 (-205)) (-591 (-781 (-205))) (-205))) (-15 -3343 ((-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205))))) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205))))))) (-15 -2614 ((-3 (-294 (-205)) "failed") (-294 (-205)))) (-15 -1471 ((-294 (-205)) (-294 (-205)))) (-15 -1505 ((-108) (-591 (-294 (-205))))) (-15 -4190 ((-108) (-591 (-294 (-205))))) (-15 -4190 ((-108) (-294 (-205)))) (-15 -3561 ((-631 (-205)) (-591 (-294 (-205))) (-712))) (-15 -2267 ((-591 (-294 (-205))) (-591 (-294 (-205))))) (-15 -2645 ((-591 (-294 (-205))) (-591 (-294 (-205))))) (-15 -3042 ((-108) (-294 (-205)))) (-15 -1507 ((-591 (-1089)) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))) (-15 -3531 ((-591 (-1089)) (-294 (-205)) (-712))) (-15 -3967 ((-964) (-1089) (-964))) (-15 -2750 ((-357) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))) (-15 -3552 ((-591 (-1072)) (-3 (|:| |noa| (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (|:| |lsa| (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))))))
+((-3008 (((-108) $ $) NIL)) (-1243 (((-964) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) NIL) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 44)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 26) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-247) (-777)) (T -247))
+NIL
+(-777)
+((-3008 (((-108) $ $) NIL)) (-1243 (((-964) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) 58) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 54)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 34) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) 36)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-248) (-777)) (T -248))
+NIL
+(-777)
+((-3008 (((-108) $ $) NIL)) (-1243 (((-964) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) 76) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 73)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 44) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) 55)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-249) (-777)) (T -249))
+NIL
+(-777)
+((-3008 (((-108) $ $) NIL)) (-1243 (((-964) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) NIL) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 50)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 31) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-250) (-777)) (T -250))
+NIL
+(-777)
+((-3008 (((-108) $ $) NIL)) (-1243 (((-964) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) NIL) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 50)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 28) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-251) (-777)) (T -251))
+NIL
+(-777)
+((-3008 (((-108) $ $) NIL)) (-1243 (((-964) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) NIL) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 73)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 28) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-252) (-777)) (T -252))
+NIL
+(-777)
+((-3008 (((-108) $ $) NIL)) (-1243 (((-964) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) NIL) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 77)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 25) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-253) (-777)) (T -253))
+NIL
+(-777)
+((-3008 (((-108) $ $) NIL)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2427 (((-591 (-525)) $) 19)) (-1316 (((-712) $) 17)) (-3022 (((-796) $) 23) (($ (-591 (-525))) 15)) (-2724 (($ (-712)) 20)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 9)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 11)))
+(((-254) (-13 (-788) (-10 -8 (-15 -3022 ($ (-591 (-525)))) (-15 -1316 ((-712) $)) (-15 -2427 ((-591 (-525)) $)) (-15 -2724 ($ (-712)))))) (T -254))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-254)))) (-1316 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-254)))) (-2427 (*1 *2 *1) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-254)))) (-2724 (*1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-254)))))
+(-13 (-788) (-10 -8 (-15 -3022 ($ (-591 (-525)))) (-15 -1316 ((-712) $)) (-15 -2427 ((-591 (-525)) $)) (-15 -2724 ($ (-712)))))
+((-1987 ((|#2| |#2|) 77)) (-3169 ((|#2| |#2|) 65)) (-2180 (((-3 |#2| "failed") |#2| (-591 (-2 (|:| |func| |#2|) (|:| |pole| (-108))))) 116)) (-1431 ((|#2| |#2|) 75)) (-3144 ((|#2| |#2|) 63)) (-1719 ((|#2| |#2|) 79)) (-1321 ((|#2| |#2|) 67)) (-1784 ((|#2|) 46)) (-3219 (((-110) (-110)) 95)) (-1488 ((|#2| |#2|) 61)) (-2452 (((-108) |#2|) 134)) (-1417 ((|#2| |#2|) 181)) (-3951 ((|#2| |#2|) 157)) (-2760 ((|#2|) 59)) (-2500 ((|#2|) 58)) (-2461 ((|#2| |#2|) 177)) (-4047 ((|#2| |#2|) 153)) (-3369 ((|#2| |#2|) 185)) (-2503 ((|#2| |#2|) 161)) (-3416 ((|#2| |#2|) 149)) (-3733 ((|#2| |#2|) 151)) (-1689 ((|#2| |#2|) 187)) (-1633 ((|#2| |#2|) 163)) (-2922 ((|#2| |#2|) 183)) (-2068 ((|#2| |#2|) 159)) (-2686 ((|#2| |#2|) 179)) (-3640 ((|#2| |#2|) 155)) (-3364 ((|#2| |#2|) 193)) (-1427 ((|#2| |#2|) 169)) (-1337 ((|#2| |#2|) 189)) (-2272 ((|#2| |#2|) 165)) (-3345 ((|#2| |#2|) 197)) (-3044 ((|#2| |#2|) 173)) (-1950 ((|#2| |#2|) 199)) (-1264 ((|#2| |#2|) 175)) (-1638 ((|#2| |#2|) 195)) (-1458 ((|#2| |#2|) 171)) (-1637 ((|#2| |#2|) 191)) (-3892 ((|#2| |#2|) 167)) (-1409 ((|#2| |#2|) 62)) (-1502 ((|#2| |#2|) 80)) (-1333 ((|#2| |#2|) 68)) (-1996 ((|#2| |#2|) 78)) (-1309 ((|#2| |#2|) 66)) (-1973 ((|#2| |#2|) 76)) (-3156 ((|#2| |#2|) 64)) (-2661 (((-108) (-110)) 93)) (-1563 ((|#2| |#2|) 83)) (-1371 ((|#2| |#2|) 71)) (-1515 ((|#2| |#2|) 81)) (-1346 ((|#2| |#2|) 69)) (-1591 ((|#2| |#2|) 85)) (-1400 ((|#2| |#2|) 73)) (-3277 ((|#2| |#2|) 86)) (-1415 ((|#2| |#2|) 74)) (-1578 ((|#2| |#2|) 84)) (-1385 ((|#2| |#2|) 72)) (-1527 ((|#2| |#2|) 82)) (-1358 ((|#2| |#2|) 70)))
+(((-255 |#1| |#2|) (-10 -7 (-15 -1409 (|#2| |#2|)) (-15 -1488 (|#2| |#2|)) (-15 -3144 (|#2| |#2|)) (-15 -3156 (|#2| |#2|)) (-15 -3169 (|#2| |#2|)) (-15 -1309 (|#2| |#2|)) (-15 -1321 (|#2| |#2|)) (-15 -1333 (|#2| |#2|)) (-15 -1346 (|#2| |#2|)) (-15 -1358 (|#2| |#2|)) (-15 -1371 (|#2| |#2|)) (-15 -1385 (|#2| |#2|)) (-15 -1400 (|#2| |#2|)) (-15 -1415 (|#2| |#2|)) (-15 -1431 (|#2| |#2|)) (-15 -1973 (|#2| |#2|)) (-15 -1987 (|#2| |#2|)) (-15 -1996 (|#2| |#2|)) (-15 -1719 (|#2| |#2|)) (-15 -1502 (|#2| |#2|)) (-15 -1515 (|#2| |#2|)) (-15 -1527 (|#2| |#2|)) (-15 -1563 (|#2| |#2|)) (-15 -1578 (|#2| |#2|)) (-15 -1591 (|#2| |#2|)) (-15 -3277 (|#2| |#2|)) (-15 -1784 (|#2|)) (-15 -2661 ((-108) (-110))) (-15 -3219 ((-110) (-110))) (-15 -2500 (|#2|)) (-15 -2760 (|#2|)) (-15 -3733 (|#2| |#2|)) (-15 -3416 (|#2| |#2|)) (-15 -4047 (|#2| |#2|)) (-15 -3640 (|#2| |#2|)) (-15 -3951 (|#2| |#2|)) (-15 -2068 (|#2| |#2|)) (-15 -2503 (|#2| |#2|)) (-15 -1633 (|#2| |#2|)) (-15 -2272 (|#2| |#2|)) (-15 -3892 (|#2| |#2|)) (-15 -1427 (|#2| |#2|)) (-15 -1458 (|#2| |#2|)) (-15 -3044 (|#2| |#2|)) (-15 -1264 (|#2| |#2|)) (-15 -2461 (|#2| |#2|)) (-15 -2686 (|#2| |#2|)) (-15 -1417 (|#2| |#2|)) (-15 -2922 (|#2| |#2|)) (-15 -3369 (|#2| |#2|)) (-15 -1689 (|#2| |#2|)) (-15 -1337 (|#2| |#2|)) (-15 -1637 (|#2| |#2|)) (-15 -3364 (|#2| |#2|)) (-15 -1638 (|#2| |#2|)) (-15 -3345 (|#2| |#2|)) (-15 -1950 (|#2| |#2|)) (-15 -2180 ((-3 |#2| "failed") |#2| (-591 (-2 (|:| |func| |#2|) (|:| |pole| (-108)))))) (-15 -2452 ((-108) |#2|))) (-13 (-788) (-517)) (-13 (-408 |#1|) (-932))) (T -255))
+((-2452 (*1 *2 *3) (-12 (-4 *4 (-13 (-788) (-517))) (-5 *2 (-108)) (-5 *1 (-255 *4 *3)) (-4 *3 (-13 (-408 *4) (-932))))) (-2180 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-591 (-2 (|:| |func| *2) (|:| |pole| (-108))))) (-4 *2 (-13 (-408 *4) (-932))) (-4 *4 (-13 (-788) (-517))) (-5 *1 (-255 *4 *2)))) (-1950 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-3345 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1638 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-3364 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1637 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1337 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1689 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-3369 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-2922 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1417 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-2686 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-2461 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1264 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-3044 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1458 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1427 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-3892 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-2272 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1633 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-2503 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-2068 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-3951 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-3640 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-4047 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-3416 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-3733 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-2760 (*1 *2) (-12 (-4 *2 (-13 (-408 *3) (-932))) (-5 *1 (-255 *3 *2)) (-4 *3 (-13 (-788) (-517))))) (-2500 (*1 *2) (-12 (-4 *2 (-13 (-408 *3) (-932))) (-5 *1 (-255 *3 *2)) (-4 *3 (-13 (-788) (-517))))) (-3219 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *4)) (-4 *4 (-13 (-408 *3) (-932))))) (-2661 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-108)) (-5 *1 (-255 *4 *5)) (-4 *5 (-13 (-408 *4) (-932))))) (-1784 (*1 *2) (-12 (-4 *2 (-13 (-408 *3) (-932))) (-5 *1 (-255 *3 *2)) (-4 *3 (-13 (-788) (-517))))) (-3277 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1591 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1578 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1563 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1527 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1515 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1502 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1719 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1996 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1987 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1973 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1431 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1415 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1400 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1385 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1371 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1358 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1346 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1333 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1321 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1309 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-3169 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-3156 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-3144 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1488 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))) (-1409 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2)) (-4 *2 (-13 (-408 *3) (-932))))))
+(-10 -7 (-15 -1409 (|#2| |#2|)) (-15 -1488 (|#2| |#2|)) (-15 -3144 (|#2| |#2|)) (-15 -3156 (|#2| |#2|)) (-15 -3169 (|#2| |#2|)) (-15 -1309 (|#2| |#2|)) (-15 -1321 (|#2| |#2|)) (-15 -1333 (|#2| |#2|)) (-15 -1346 (|#2| |#2|)) (-15 -1358 (|#2| |#2|)) (-15 -1371 (|#2| |#2|)) (-15 -1385 (|#2| |#2|)) (-15 -1400 (|#2| |#2|)) (-15 -1415 (|#2| |#2|)) (-15 -1431 (|#2| |#2|)) (-15 -1973 (|#2| |#2|)) (-15 -1987 (|#2| |#2|)) (-15 -1996 (|#2| |#2|)) (-15 -1719 (|#2| |#2|)) (-15 -1502 (|#2| |#2|)) (-15 -1515 (|#2| |#2|)) (-15 -1527 (|#2| |#2|)) (-15 -1563 (|#2| |#2|)) (-15 -1578 (|#2| |#2|)) (-15 -1591 (|#2| |#2|)) (-15 -3277 (|#2| |#2|)) (-15 -1784 (|#2|)) (-15 -2661 ((-108) (-110))) (-15 -3219 ((-110) (-110))) (-15 -2500 (|#2|)) (-15 -2760 (|#2|)) (-15 -3733 (|#2| |#2|)) (-15 -3416 (|#2| |#2|)) (-15 -4047 (|#2| |#2|)) (-15 -3640 (|#2| |#2|)) (-15 -3951 (|#2| |#2|)) (-15 -2068 (|#2| |#2|)) (-15 -2503 (|#2| |#2|)) (-15 -1633 (|#2| |#2|)) (-15 -2272 (|#2| |#2|)) (-15 -3892 (|#2| |#2|)) (-15 -1427 (|#2| |#2|)) (-15 -1458 (|#2| |#2|)) (-15 -3044 (|#2| |#2|)) (-15 -1264 (|#2| |#2|)) (-15 -2461 (|#2| |#2|)) (-15 -2686 (|#2| |#2|)) (-15 -1417 (|#2| |#2|)) (-15 -2922 (|#2| |#2|)) (-15 -3369 (|#2| |#2|)) (-15 -1689 (|#2| |#2|)) (-15 -1337 (|#2| |#2|)) (-15 -1637 (|#2| |#2|)) (-15 -3364 (|#2| |#2|)) (-15 -1638 (|#2| |#2|)) (-15 -3345 (|#2| |#2|)) (-15 -1950 (|#2| |#2|)) (-15 -2180 ((-3 |#2| "failed") |#2| (-591 (-2 (|:| |func| |#2|) (|:| |pole| (-108)))))) (-15 -2452 ((-108) |#2|)))
+((-1827 (((-3 |#2| "failed") (-591 (-564 |#2|)) |#2| (-1089)) 135)) (-2540 ((|#2| (-385 (-525)) |#2|) 51)) (-3182 ((|#2| |#2| (-564 |#2|)) 128)) (-3594 (((-2 (|:| |func| |#2|) (|:| |kers| (-591 (-564 |#2|))) (|:| |vals| (-591 |#2|))) |#2| (-1089)) 127)) (-3099 ((|#2| |#2| (-1089)) 20) ((|#2| |#2|) 23)) (-1798 ((|#2| |#2| (-1089)) 141) ((|#2| |#2|) 139)))
+(((-256 |#1| |#2|) (-10 -7 (-15 -1798 (|#2| |#2|)) (-15 -1798 (|#2| |#2| (-1089))) (-15 -3594 ((-2 (|:| |func| |#2|) (|:| |kers| (-591 (-564 |#2|))) (|:| |vals| (-591 |#2|))) |#2| (-1089))) (-15 -3099 (|#2| |#2|)) (-15 -3099 (|#2| |#2| (-1089))) (-15 -1827 ((-3 |#2| "failed") (-591 (-564 |#2|)) |#2| (-1089))) (-15 -3182 (|#2| |#2| (-564 |#2|))) (-15 -2540 (|#2| (-385 (-525)) |#2|))) (-13 (-517) (-788) (-966 (-525)) (-587 (-525))) (-13 (-27) (-1111) (-408 |#1|))) (T -256))
+((-2540 (*1 *2 *3 *2) (-12 (-5 *3 (-385 (-525))) (-4 *4 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-256 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *4))))) (-3182 (*1 *2 *2 *3) (-12 (-5 *3 (-564 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *4))) (-4 *4 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-256 *4 *2)))) (-1827 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-591 (-564 *2))) (-5 *4 (-1089)) (-4 *2 (-13 (-27) (-1111) (-408 *5))) (-4 *5 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-256 *5 *2)))) (-3099 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-256 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *4))))) (-3099 (*1 *2 *2) (-12 (-4 *3 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-256 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *3))))) (-3594 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-4 *5 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-2 (|:| |func| *3) (|:| |kers| (-591 (-564 *3))) (|:| |vals| (-591 *3)))) (-5 *1 (-256 *5 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5))))) (-1798 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-256 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *4))))) (-1798 (*1 *2 *2) (-12 (-4 *3 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-256 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *3))))))
+(-10 -7 (-15 -1798 (|#2| |#2|)) (-15 -1798 (|#2| |#2| (-1089))) (-15 -3594 ((-2 (|:| |func| |#2|) (|:| |kers| (-591 (-564 |#2|))) (|:| |vals| (-591 |#2|))) |#2| (-1089))) (-15 -3099 (|#2| |#2|)) (-15 -3099 (|#2| |#2| (-1089))) (-15 -1827 ((-3 |#2| "failed") (-591 (-564 |#2|)) |#2| (-1089))) (-15 -3182 (|#2| |#2| (-564 |#2|))) (-15 -2540 (|#2| (-385 (-525)) |#2|)))
+((-2523 (((-3 |#3| "failed") |#3|) 110)) (-1987 ((|#3| |#3|) 131)) (-3826 (((-3 |#3| "failed") |#3|) 82)) (-3169 ((|#3| |#3|) 121)) (-4091 (((-3 |#3| "failed") |#3|) 58)) (-1431 ((|#3| |#3|) 129)) (-1893 (((-3 |#3| "failed") |#3|) 46)) (-3144 ((|#3| |#3|) 119)) (-3325 (((-3 |#3| "failed") |#3|) 112)) (-1719 ((|#3| |#3|) 133)) (-3750 (((-3 |#3| "failed") |#3|) 84)) (-1321 ((|#3| |#3|) 123)) (-1906 (((-3 |#3| "failed") |#3| (-712)) 36)) (-1783 (((-3 |#3| "failed") |#3|) 74)) (-1488 ((|#3| |#3|) 118)) (-1606 (((-3 |#3| "failed") |#3|) 44)) (-1409 ((|#3| |#3|) 117)) (-3966 (((-3 |#3| "failed") |#3|) 113)) (-1502 ((|#3| |#3|) 134)) (-1939 (((-3 |#3| "failed") |#3|) 85)) (-1333 ((|#3| |#3|) 124)) (-3533 (((-3 |#3| "failed") |#3|) 111)) (-1996 ((|#3| |#3|) 132)) (-3068 (((-3 |#3| "failed") |#3|) 83)) (-1309 ((|#3| |#3|) 122)) (-1972 (((-3 |#3| "failed") |#3|) 60)) (-1973 ((|#3| |#3|) 130)) (-2773 (((-3 |#3| "failed") |#3|) 48)) (-3156 ((|#3| |#3|) 120)) (-4176 (((-3 |#3| "failed") |#3|) 66)) (-1563 ((|#3| |#3|) 137)) (-4085 (((-3 |#3| "failed") |#3|) 104)) (-1371 ((|#3| |#3|) 142)) (-1604 (((-3 |#3| "failed") |#3|) 62)) (-1515 ((|#3| |#3|) 135)) (-4050 (((-3 |#3| "failed") |#3|) 50)) (-1346 ((|#3| |#3|) 125)) (-2564 (((-3 |#3| "failed") |#3|) 70)) (-1591 ((|#3| |#3|) 139)) (-2830 (((-3 |#3| "failed") |#3|) 54)) (-1400 ((|#3| |#3|) 127)) (-2469 (((-3 |#3| "failed") |#3|) 72)) (-3277 ((|#3| |#3|) 140)) (-1524 (((-3 |#3| "failed") |#3|) 56)) (-1415 ((|#3| |#3|) 128)) (-1746 (((-3 |#3| "failed") |#3|) 68)) (-1578 ((|#3| |#3|) 138)) (-3740 (((-3 |#3| "failed") |#3|) 107)) (-1385 ((|#3| |#3|) 143)) (-2768 (((-3 |#3| "failed") |#3|) 64)) (-1527 ((|#3| |#3|) 136)) (-3181 (((-3 |#3| "failed") |#3|) 52)) (-1358 ((|#3| |#3|) 126)) (** ((|#3| |#3| (-385 (-525))) 40 (|has| |#1| (-341)))))
+(((-257 |#1| |#2| |#3|) (-13 (-914 |#3|) (-10 -7 (IF (|has| |#1| (-341)) (-15 ** (|#3| |#3| (-385 (-525)))) |%noBranch|) (-15 -1409 (|#3| |#3|)) (-15 -1488 (|#3| |#3|)) (-15 -3144 (|#3| |#3|)) (-15 -3156 (|#3| |#3|)) (-15 -3169 (|#3| |#3|)) (-15 -1309 (|#3| |#3|)) (-15 -1321 (|#3| |#3|)) (-15 -1333 (|#3| |#3|)) (-15 -1346 (|#3| |#3|)) (-15 -1358 (|#3| |#3|)) (-15 -1371 (|#3| |#3|)) (-15 -1385 (|#3| |#3|)) (-15 -1400 (|#3| |#3|)) (-15 -1415 (|#3| |#3|)) (-15 -1431 (|#3| |#3|)) (-15 -1973 (|#3| |#3|)) (-15 -1987 (|#3| |#3|)) (-15 -1996 (|#3| |#3|)) (-15 -1719 (|#3| |#3|)) (-15 -1502 (|#3| |#3|)) (-15 -1515 (|#3| |#3|)) (-15 -1527 (|#3| |#3|)) (-15 -1563 (|#3| |#3|)) (-15 -1578 (|#3| |#3|)) (-15 -1591 (|#3| |#3|)) (-15 -3277 (|#3| |#3|)))) (-37 (-385 (-525))) (-1162 |#1|) (-1133 |#1| |#2|)) (T -257))
+((** (*1 *2 *2 *3) (-12 (-5 *3 (-385 (-525))) (-4 *4 (-341)) (-4 *4 (-37 *3)) (-4 *5 (-1162 *4)) (-5 *1 (-257 *4 *5 *2)) (-4 *2 (-1133 *4 *5)))) (-1409 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1488 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-3144 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-3156 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-3169 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1309 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1321 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1333 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1346 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1358 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1371 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1385 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1400 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1415 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1431 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1973 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1987 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1996 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1719 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1502 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1515 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1527 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1563 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1578 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-1591 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))) (-3277 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3)) (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4)))))
+(-13 (-914 |#3|) (-10 -7 (IF (|has| |#1| (-341)) (-15 ** (|#3| |#3| (-385 (-525)))) |%noBranch|) (-15 -1409 (|#3| |#3|)) (-15 -1488 (|#3| |#3|)) (-15 -3144 (|#3| |#3|)) (-15 -3156 (|#3| |#3|)) (-15 -3169 (|#3| |#3|)) (-15 -1309 (|#3| |#3|)) (-15 -1321 (|#3| |#3|)) (-15 -1333 (|#3| |#3|)) (-15 -1346 (|#3| |#3|)) (-15 -1358 (|#3| |#3|)) (-15 -1371 (|#3| |#3|)) (-15 -1385 (|#3| |#3|)) (-15 -1400 (|#3| |#3|)) (-15 -1415 (|#3| |#3|)) (-15 -1431 (|#3| |#3|)) (-15 -1973 (|#3| |#3|)) (-15 -1987 (|#3| |#3|)) (-15 -1996 (|#3| |#3|)) (-15 -1719 (|#3| |#3|)) (-15 -1502 (|#3| |#3|)) (-15 -1515 (|#3| |#3|)) (-15 -1527 (|#3| |#3|)) (-15 -1563 (|#3| |#3|)) (-15 -1578 (|#3| |#3|)) (-15 -1591 (|#3| |#3|)) (-15 -3277 (|#3| |#3|))))
+((-2523 (((-3 |#3| "failed") |#3|) 66)) (-1987 ((|#3| |#3|) 133)) (-3826 (((-3 |#3| "failed") |#3|) 50)) (-3169 ((|#3| |#3|) 121)) (-4091 (((-3 |#3| "failed") |#3|) 62)) (-1431 ((|#3| |#3|) 131)) (-1893 (((-3 |#3| "failed") |#3|) 46)) (-3144 ((|#3| |#3|) 119)) (-3325 (((-3 |#3| "failed") |#3|) 70)) (-1719 ((|#3| |#3|) 135)) (-3750 (((-3 |#3| "failed") |#3|) 54)) (-1321 ((|#3| |#3|) 123)) (-1906 (((-3 |#3| "failed") |#3| (-712)) 35)) (-1783 (((-3 |#3| "failed") |#3|) 44)) (-1488 ((|#3| |#3|) 112)) (-1606 (((-3 |#3| "failed") |#3|) 42)) (-1409 ((|#3| |#3|) 118)) (-3966 (((-3 |#3| "failed") |#3|) 72)) (-1502 ((|#3| |#3|) 136)) (-1939 (((-3 |#3| "failed") |#3|) 56)) (-1333 ((|#3| |#3|) 124)) (-3533 (((-3 |#3| "failed") |#3|) 68)) (-1996 ((|#3| |#3|) 134)) (-3068 (((-3 |#3| "failed") |#3|) 52)) (-1309 ((|#3| |#3|) 122)) (-1972 (((-3 |#3| "failed") |#3|) 64)) (-1973 ((|#3| |#3|) 132)) (-2773 (((-3 |#3| "failed") |#3|) 48)) (-3156 ((|#3| |#3|) 120)) (-4176 (((-3 |#3| "failed") |#3|) 78)) (-1563 ((|#3| |#3|) 139)) (-4085 (((-3 |#3| "failed") |#3|) 58)) (-1371 ((|#3| |#3|) 127)) (-1604 (((-3 |#3| "failed") |#3|) 74)) (-1515 ((|#3| |#3|) 137)) (-4050 (((-3 |#3| "failed") |#3|) 102)) (-1346 ((|#3| |#3|) 125)) (-2564 (((-3 |#3| "failed") |#3|) 82)) (-1591 ((|#3| |#3|) 141)) (-2830 (((-3 |#3| "failed") |#3|) 109)) (-1400 ((|#3| |#3|) 129)) (-2469 (((-3 |#3| "failed") |#3|) 84)) (-3277 ((|#3| |#3|) 142)) (-1524 (((-3 |#3| "failed") |#3|) 111)) (-1415 ((|#3| |#3|) 130)) (-1746 (((-3 |#3| "failed") |#3|) 80)) (-1578 ((|#3| |#3|) 140)) (-3740 (((-3 |#3| "failed") |#3|) 60)) (-1385 ((|#3| |#3|) 128)) (-2768 (((-3 |#3| "failed") |#3|) 76)) (-1527 ((|#3| |#3|) 138)) (-3181 (((-3 |#3| "failed") |#3|) 105)) (-1358 ((|#3| |#3|) 126)) (** ((|#3| |#3| (-385 (-525))) 40 (|has| |#1| (-341)))))
+(((-258 |#1| |#2| |#3| |#4|) (-13 (-914 |#3|) (-10 -7 (IF (|has| |#1| (-341)) (-15 ** (|#3| |#3| (-385 (-525)))) |%noBranch|) (-15 -1409 (|#3| |#3|)) (-15 -1488 (|#3| |#3|)) (-15 -3144 (|#3| |#3|)) (-15 -3156 (|#3| |#3|)) (-15 -3169 (|#3| |#3|)) (-15 -1309 (|#3| |#3|)) (-15 -1321 (|#3| |#3|)) (-15 -1333 (|#3| |#3|)) (-15 -1346 (|#3| |#3|)) (-15 -1358 (|#3| |#3|)) (-15 -1371 (|#3| |#3|)) (-15 -1385 (|#3| |#3|)) (-15 -1400 (|#3| |#3|)) (-15 -1415 (|#3| |#3|)) (-15 -1431 (|#3| |#3|)) (-15 -1973 (|#3| |#3|)) (-15 -1987 (|#3| |#3|)) (-15 -1996 (|#3| |#3|)) (-15 -1719 (|#3| |#3|)) (-15 -1502 (|#3| |#3|)) (-15 -1515 (|#3| |#3|)) (-15 -1527 (|#3| |#3|)) (-15 -1563 (|#3| |#3|)) (-15 -1578 (|#3| |#3|)) (-15 -1591 (|#3| |#3|)) (-15 -3277 (|#3| |#3|)))) (-37 (-385 (-525))) (-1131 |#1|) (-1154 |#1| |#2|) (-914 |#2|)) (T -258))
+((** (*1 *2 *2 *3) (-12 (-5 *3 (-385 (-525))) (-4 *4 (-341)) (-4 *4 (-37 *3)) (-4 *5 (-1131 *4)) (-5 *1 (-258 *4 *5 *2 *6)) (-4 *2 (-1154 *4 *5)) (-4 *6 (-914 *5)))) (-1409 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1488 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-3144 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-3156 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-3169 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1309 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1321 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1333 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1346 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1358 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1371 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1385 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1400 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1415 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1431 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1973 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1987 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1996 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1719 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1502 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1515 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1527 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1563 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1578 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-1591 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))) (-3277 (*1 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3)) (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4)))))
+(-13 (-914 |#3|) (-10 -7 (IF (|has| |#1| (-341)) (-15 ** (|#3| |#3| (-385 (-525)))) |%noBranch|) (-15 -1409 (|#3| |#3|)) (-15 -1488 (|#3| |#3|)) (-15 -3144 (|#3| |#3|)) (-15 -3156 (|#3| |#3|)) (-15 -3169 (|#3| |#3|)) (-15 -1309 (|#3| |#3|)) (-15 -1321 (|#3| |#3|)) (-15 -1333 (|#3| |#3|)) (-15 -1346 (|#3| |#3|)) (-15 -1358 (|#3| |#3|)) (-15 -1371 (|#3| |#3|)) (-15 -1385 (|#3| |#3|)) (-15 -1400 (|#3| |#3|)) (-15 -1415 (|#3| |#3|)) (-15 -1431 (|#3| |#3|)) (-15 -1973 (|#3| |#3|)) (-15 -1987 (|#3| |#3|)) (-15 -1996 (|#3| |#3|)) (-15 -1719 (|#3| |#3|)) (-15 -1502 (|#3| |#3|)) (-15 -1515 (|#3| |#3|)) (-15 -1527 (|#3| |#3|)) (-15 -1563 (|#3| |#3|)) (-15 -1578 (|#3| |#3|)) (-15 -1591 (|#3| |#3|)) (-15 -3277 (|#3| |#3|))))
+((-2767 (((-108) $) 19)) (-1975 (((-169) $) 7)) (-4054 (((-3 (-1089) "failed") $) 14)) (-3436 (((-3 (-591 $) "failed") $) NIL)) (-3937 (((-3 (-1089) "failed") $) 21)) (-2994 (((-3 (-1022) "failed") $) 17)) (-1246 (((-108) $) 15)) (-3022 (((-796) $) NIL)) (-3352 (((-108) $) 9)))
+(((-259) (-13 (-565 (-796)) (-10 -8 (-15 -1975 ((-169) $)) (-15 -1246 ((-108) $)) (-15 -2994 ((-3 (-1022) "failed") $)) (-15 -2767 ((-108) $)) (-15 -3937 ((-3 (-1089) "failed") $)) (-15 -3352 ((-108) $)) (-15 -4054 ((-3 (-1089) "failed") $)) (-15 -3436 ((-3 (-591 $) "failed") $))))) (T -259))
+((-1975 (*1 *2 *1) (-12 (-5 *2 (-169)) (-5 *1 (-259)))) (-1246 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-259)))) (-2994 (*1 *2 *1) (|partial| -12 (-5 *2 (-1022)) (-5 *1 (-259)))) (-2767 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-259)))) (-3937 (*1 *2 *1) (|partial| -12 (-5 *2 (-1089)) (-5 *1 (-259)))) (-3352 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-259)))) (-4054 (*1 *2 *1) (|partial| -12 (-5 *2 (-1089)) (-5 *1 (-259)))) (-3436 (*1 *2 *1) (|partial| -12 (-5 *2 (-591 (-259))) (-5 *1 (-259)))))
+(-13 (-565 (-796)) (-10 -8 (-15 -1975 ((-169) $)) (-15 -1246 ((-108) $)) (-15 -2994 ((-3 (-1022) "failed") $)) (-15 -2767 ((-108) $)) (-15 -3937 ((-3 (-1089) "failed") $)) (-15 -3352 ((-108) $)) (-15 -4054 ((-3 (-1089) "failed") $)) (-15 -3436 ((-3 (-591 $) "failed") $))))
+((-2305 (($ (-1 (-108) |#2|) $) 24)) (-3098 (($ $) 36)) (-3901 (($ (-1 (-108) |#2|) $) NIL) (($ |#2| $) 34)) (-3677 (($ |#2| $) 32) (($ (-1 (-108) |#2|) $) 18)) (-2921 (($ (-1 (-108) |#2| |#2|) $ $) NIL) (($ $ $) 40)) (-4189 (($ |#2| $ (-525)) 20) (($ $ $ (-525)) 22)) (-2777 (($ $ (-525)) 11) (($ $ (-1138 (-525))) 14)) (-1679 (($ $ |#2|) 30) (($ $ $) NIL)) (-3690 (($ $ |#2|) 29) (($ |#2| $) NIL) (($ $ $) 26) (($ (-591 $)) NIL)))
+(((-260 |#1| |#2|) (-10 -8 (-15 -2921 (|#1| |#1| |#1|)) (-15 -3901 (|#1| |#2| |#1|)) (-15 -2921 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -3901 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1679 (|#1| |#1| |#1|)) (-15 -1679 (|#1| |#1| |#2|)) (-15 -4189 (|#1| |#1| |#1| (-525))) (-15 -4189 (|#1| |#2| |#1| (-525))) (-15 -2777 (|#1| |#1| (-1138 (-525)))) (-15 -2777 (|#1| |#1| (-525))) (-15 -3690 (|#1| (-591 |#1|))) (-15 -3690 (|#1| |#1| |#1|)) (-15 -3690 (|#1| |#2| |#1|)) (-15 -3690 (|#1| |#1| |#2|)) (-15 -3677 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -2305 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3677 (|#1| |#2| |#1|)) (-15 -3098 (|#1| |#1|))) (-261 |#2|) (-1125)) (T -260))
+NIL
+(-10 -8 (-15 -2921 (|#1| |#1| |#1|)) (-15 -3901 (|#1| |#2| |#1|)) (-15 -2921 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -3901 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1679 (|#1| |#1| |#1|)) (-15 -1679 (|#1| |#1| |#2|)) (-15 -4189 (|#1| |#1| |#1| (-525))) (-15 -4189 (|#1| |#2| |#1| (-525))) (-15 -2777 (|#1| |#1| (-1138 (-525)))) (-15 -2777 (|#1| |#1| (-525))) (-15 -3690 (|#1| (-591 |#1|))) (-15 -3690 (|#1| |#1| |#1|)) (-15 -3690 (|#1| |#2| |#1|)) (-15 -3690 (|#1| |#1| |#2|)) (-15 -3677 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -2305 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3677 (|#1| |#2| |#1|)) (-15 -3098 (|#1| |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3296 (((-1176) $ (-525) (-525)) 40 (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) 8)) (-3186 ((|#1| $ (-525) |#1|) 52 (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) 58 (|has| $ (-6 -4251)))) (-1797 (($ (-1 (-108) |#1|) $) 85)) (-2305 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4250)))) (-3798 (($) 7 T CONST)) (-3611 (($ $) 83 (|has| |#1| (-1018)))) (-3098 (($ $) 78 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3901 (($ (-1 (-108) |#1|) $) 89) (($ |#1| $) 84 (|has| |#1| (-1018)))) (-3677 (($ |#1| $) 77 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4250)))) (-3255 ((|#1| $ (-525) |#1|) 53 (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) 51)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-1268 (($ (-712) |#1|) 69)) (-2910 (((-108) $ (-712)) 9)) (-3630 (((-525) $) 43 (|has| (-525) (-788)))) (-2921 (($ (-1 (-108) |#1| |#1|) $ $) 86) (($ $ $) 82 (|has| |#1| (-788)))) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3468 (((-525) $) 44 (|has| (-525) (-788)))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-2470 (($ |#1| $ (-525)) 88) (($ $ $ (-525)) 87)) (-4189 (($ |#1| $ (-525)) 60) (($ $ $ (-525)) 59)) (-2511 (((-591 (-525)) $) 46)) (-2791 (((-108) (-525) $) 47)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-3066 ((|#1| $) 42 (|has| (-525) (-788)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-1941 (($ $ |#1|) 41 (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-1615 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) 48)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ (-525) |#1|) 50) ((|#1| $ (-525)) 49) (($ $ (-1138 (-525))) 63)) (-1790 (($ $ (-525)) 91) (($ $ (-1138 (-525))) 90)) (-2777 (($ $ (-525)) 62) (($ $ (-1138 (-525))) 61)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1408 (((-501) $) 79 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 70)) (-1679 (($ $ |#1|) 93) (($ $ $) 92)) (-3690 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-591 $)) 65)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-261 |#1|) (-131) (-1125)) (T -261))
+((-1679 (*1 *1 *1 *2) (-12 (-4 *1 (-261 *2)) (-4 *2 (-1125)))) (-1679 (*1 *1 *1 *1) (-12 (-4 *1 (-261 *2)) (-4 *2 (-1125)))) (-1790 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-261 *3)) (-4 *3 (-1125)))) (-1790 (*1 *1 *1 *2) (-12 (-5 *2 (-1138 (-525))) (-4 *1 (-261 *3)) (-4 *3 (-1125)))) (-3901 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-261 *3)) (-4 *3 (-1125)))) (-2470 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-525)) (-4 *1 (-261 *2)) (-4 *2 (-1125)))) (-2470 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-261 *3)) (-4 *3 (-1125)))) (-2921 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-261 *3)) (-4 *3 (-1125)))) (-1797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-261 *3)) (-4 *3 (-1125)))) (-3901 (*1 *1 *2 *1) (-12 (-4 *1 (-261 *2)) (-4 *2 (-1125)) (-4 *2 (-1018)))) (-3611 (*1 *1 *1) (-12 (-4 *1 (-261 *2)) (-4 *2 (-1125)) (-4 *2 (-1018)))) (-2921 (*1 *1 *1 *1) (-12 (-4 *1 (-261 *2)) (-4 *2 (-1125)) (-4 *2 (-788)))))
+(-13 (-596 |t#1|) (-10 -8 (-6 -4251) (-15 -1679 ($ $ |t#1|)) (-15 -1679 ($ $ $)) (-15 -1790 ($ $ (-525))) (-15 -1790 ($ $ (-1138 (-525)))) (-15 -3901 ($ (-1 (-108) |t#1|) $)) (-15 -2470 ($ |t#1| $ (-525))) (-15 -2470 ($ $ $ (-525))) (-15 -2921 ($ (-1 (-108) |t#1| |t#1|) $ $)) (-15 -1797 ($ (-1 (-108) |t#1|) $)) (IF (|has| |t#1| (-1018)) (PROGN (-15 -3901 ($ |t#1| $)) (-15 -3611 ($ $))) |%noBranch|) (IF (|has| |t#1| (-788)) (-15 -2921 ($ $ $)) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-265 #0=(-525) |#1|) . T) ((-267 #0# |#1|) . T) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-558 #0# |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-596 |#1|) . T) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
((** (($ $ $) 10)))
-(((-260 |#1|) (-10 -8 (-15 ** (|#1| |#1| |#1|))) (-261)) (T -260))
+(((-262 |#1|) (-10 -8 (-15 ** (|#1| |#1| |#1|))) (-263)) (T -262))
NIL
(-10 -8 (-15 ** (|#1| |#1| |#1|)))
-((-2062 (($ $) 6)) (-1847 (($ $) 7)) (** (($ $ $) 8)))
-(((-261) (-129)) (T -261))
-((** (*1 *1 *1 *1) (-4 *1 (-261))) (-1847 (*1 *1 *1) (-4 *1 (-261))) (-2062 (*1 *1 *1) (-4 *1 (-261))))
-(-13 (-10 -8 (-15 -2062 ($ $)) (-15 -1847 ($ $)) (-15 ** ($ $ $))))
-((-1788 (((-589 (-1068 |#1|)) (-1068 |#1|) |#1|) 35)) (-3961 ((|#2| |#2| |#1|) 38)) (-2896 ((|#2| |#2| |#1|) 40)) (-1782 ((|#2| |#2| |#1|) 39)))
-(((-262 |#1| |#2|) (-10 -7 (-15 -3961 (|#2| |#2| |#1|)) (-15 -1782 (|#2| |#2| |#1|)) (-15 -2896 (|#2| |#2| |#1|)) (-15 -1788 ((-589 (-1068 |#1|)) (-1068 |#1|) |#1|))) (-339) (-1160 |#1|)) (T -262))
-((-1788 (*1 *2 *3 *4) (-12 (-4 *4 (-339)) (-5 *2 (-589 (-1068 *4))) (-5 *1 (-262 *4 *5)) (-5 *3 (-1068 *4)) (-4 *5 (-1160 *4)))) (-2896 (*1 *2 *2 *3) (-12 (-4 *3 (-339)) (-5 *1 (-262 *3 *2)) (-4 *2 (-1160 *3)))) (-1782 (*1 *2 *2 *3) (-12 (-4 *3 (-339)) (-5 *1 (-262 *3 *2)) (-4 *2 (-1160 *3)))) (-3961 (*1 *2 *2 *3) (-12 (-4 *3 (-339)) (-5 *1 (-262 *3 *2)) (-4 *2 (-1160 *3)))))
-(-10 -7 (-15 -3961 (|#2| |#2| |#1|)) (-15 -1782 (|#2| |#2| |#1|)) (-15 -2896 (|#2| |#2| |#1|)) (-15 -1788 ((-589 (-1068 |#1|)) (-1068 |#1|) |#1|)))
-((-1502 ((|#2| $ |#1|) 6)))
-(((-263 |#1| |#2|) (-129) (-1016) (-1123)) (T -263))
-((-1502 (*1 *2 *1 *3) (-12 (-4 *1 (-263 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1123)))))
-(-13 (-10 -8 (-15 -1502 (|t#2| $ |t#1|))))
-((-3073 ((|#3| $ |#2| |#3|) 12)) (-3002 ((|#3| $ |#2|) 10)))
-(((-264 |#1| |#2| |#3|) (-10 -8 (-15 -3073 (|#3| |#1| |#2| |#3|)) (-15 -3002 (|#3| |#1| |#2|))) (-265 |#2| |#3|) (-1016) (-1123)) (T -264))
-NIL
-(-10 -8 (-15 -3073 (|#3| |#1| |#2| |#3|)) (-15 -3002 (|#3| |#1| |#2|)))
-((-4101 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4249)))) (-3073 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4249)))) (-3002 ((|#2| $ |#1|) 11)) (-1502 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
-(((-265 |#1| |#2|) (-129) (-1016) (-1123)) (T -265))
-((-1502 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-265 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1123)))) (-3002 (*1 *2 *1 *3) (-12 (-4 *1 (-265 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1123)))) (-4101 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-265 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1123)))) (-3073 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-265 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1123)))))
-(-13 (-263 |t#1| |t#2|) (-10 -8 (-15 -1502 (|t#2| $ |t#1| |t#2|)) (-15 -3002 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4249)) (PROGN (-15 -4101 (|t#2| $ |t#1| |t#2|)) (-15 -3073 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
-(((-263 |#1| |#2|) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 35)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 40)) (-3950 (($ $) 38)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3684 (((-108) $ $) NIL)) (-1640 (($) NIL T CONST)) (-2501 (($ $ $) 33)) (-1830 (($ |#2| |#3|) 19)) (-4211 (((-3 $ "failed") $) NIL)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-3482 (((-108) $) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3014 ((|#3| $) NIL)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 20)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2206 (((-3 $ "failed") $ $) NIL)) (-3087 (((-710) $) 34)) (-1502 ((|#2| $ |#2|) 42)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 24)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-1698 (((-710)) NIL)) (-3842 (((-108) $ $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 29 T CONST)) (-1440 (($) 36 T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 37)))
-(((-266 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-284) (-10 -8 (-15 -3014 (|#3| $)) (-15 -3976 (|#2| $)) (-15 -1830 ($ |#2| |#3|)) (-15 -2206 ((-3 $ "failed") $ $)) (-15 -4211 ((-3 $ "failed") $)) (-15 -3071 ($ $)) (-15 -1502 (|#2| $ |#2|)))) (-158) (-1145 |#1|) (-23) (-1 |#2| |#2| |#3|) (-1 (-3 |#3| "failed") |#3| |#3|) (-1 (-3 |#2| "failed") |#2| |#2| |#3|)) (T -266))
-((-4211 (*1 *1 *1) (|partial| -12 (-4 *2 (-158)) (-5 *1 (-266 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1145 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-3014 (*1 *2 *1) (-12 (-4 *3 (-158)) (-4 *2 (-23)) (-5 *1 (-266 *3 *4 *2 *5 *6 *7)) (-4 *4 (-1145 *3)) (-14 *5 (-1 *4 *4 *2)) (-14 *6 (-1 (-3 *2 "failed") *2 *2)) (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2)))) (-3976 (*1 *2 *1) (-12 (-4 *2 (-1145 *3)) (-5 *1 (-266 *3 *2 *4 *5 *6 *7)) (-4 *3 (-158)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4)))) (-1830 (*1 *1 *2 *3) (-12 (-4 *4 (-158)) (-5 *1 (-266 *4 *2 *3 *5 *6 *7)) (-4 *2 (-1145 *4)) (-4 *3 (-23)) (-14 *5 (-1 *2 *2 *3)) (-14 *6 (-1 (-3 *3 "failed") *3 *3)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *3)))) (-2206 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-158)) (-5 *1 (-266 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1145 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-3071 (*1 *1 *1) (-12 (-4 *2 (-158)) (-5 *1 (-266 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1145 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-1502 (*1 *2 *1 *2) (-12 (-4 *3 (-158)) (-5 *1 (-266 *3 *2 *4 *5 *6 *7)) (-4 *2 (-1145 *3)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4)))))
-(-13 (-284) (-10 -8 (-15 -3014 (|#3| $)) (-15 -3976 (|#2| $)) (-15 -1830 ($ |#2| |#3|)) (-15 -2206 ((-3 $ "failed") $ $)) (-15 -4211 ((-3 $ "failed") $)) (-15 -3071 ($ $)) (-15 -1502 (|#2| $ |#2|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11) (($ (-523)) 28)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-267) (-129)) (T -267))
-NIL
-(-13 (-973) (-107 $ $) (-10 -7 (-6 -4241)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 $) . T) ((-666) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-2039 (($ (-1087) (-1087) (-1020) $) 16)) (-3336 (($ (-1087) (-589 (-895)) $) 21)) (-2304 (((-589 (-1003)) $) 9)) (-3778 (((-3 (-1020) "failed") (-1087) (-1087) $) 15)) (-1725 (((-3 (-589 (-895)) "failed") (-1087) $) 20)) (-4055 (($) 6)) (-2502 (($) 22)) (-3976 (((-794) $) 26)) (-1338 (($) 23)))
-(((-268) (-13 (-563 (-794)) (-10 -8 (-15 -4055 ($)) (-15 -2304 ((-589 (-1003)) $)) (-15 -3778 ((-3 (-1020) "failed") (-1087) (-1087) $)) (-15 -2039 ($ (-1087) (-1087) (-1020) $)) (-15 -1725 ((-3 (-589 (-895)) "failed") (-1087) $)) (-15 -3336 ($ (-1087) (-589 (-895)) $)) (-15 -2502 ($)) (-15 -1338 ($))))) (T -268))
-((-4055 (*1 *1) (-5 *1 (-268))) (-2304 (*1 *2 *1) (-12 (-5 *2 (-589 (-1003))) (-5 *1 (-268)))) (-3778 (*1 *2 *3 *3 *1) (|partial| -12 (-5 *3 (-1087)) (-5 *2 (-1020)) (-5 *1 (-268)))) (-2039 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-1087)) (-5 *3 (-1020)) (-5 *1 (-268)))) (-1725 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1087)) (-5 *2 (-589 (-895))) (-5 *1 (-268)))) (-3336 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-895))) (-5 *1 (-268)))) (-2502 (*1 *1) (-5 *1 (-268))) (-1338 (*1 *1) (-5 *1 (-268))))
-(-13 (-563 (-794)) (-10 -8 (-15 -4055 ($)) (-15 -2304 ((-589 (-1003)) $)) (-15 -3778 ((-3 (-1020) "failed") (-1087) (-1087) $)) (-15 -2039 ($ (-1087) (-1087) (-1020) $)) (-15 -1725 ((-3 (-589 (-895)) "failed") (-1087) $)) (-15 -3336 ($ (-1087) (-589 (-895)) $)) (-15 -2502 ($)) (-15 -1338 ($))))
-((-4194 (((-589 (-2 (|:| |eigval| (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|)))) (|:| |geneigvec| (-589 (-629 (-383 (-883 |#1|))))))) (-629 (-383 (-883 |#1|)))) 85)) (-3537 (((-589 (-629 (-383 (-883 |#1|)))) (-2 (|:| |eigval| (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|)))) (|:| |eigmult| (-710)) (|:| |eigvec| (-589 (-629 (-383 (-883 |#1|)))))) (-629 (-383 (-883 |#1|)))) 80) (((-589 (-629 (-383 (-883 |#1|)))) (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|))) (-629 (-383 (-883 |#1|))) (-710) (-710)) 38)) (-2462 (((-589 (-2 (|:| |eigval| (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|)))) (|:| |eigmult| (-710)) (|:| |eigvec| (-589 (-629 (-383 (-883 |#1|))))))) (-629 (-383 (-883 |#1|)))) 82)) (-2556 (((-589 (-629 (-383 (-883 |#1|)))) (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|))) (-629 (-383 (-883 |#1|)))) 62)) (-2098 (((-589 (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|)))) (-629 (-383 (-883 |#1|)))) 61)) (-1606 (((-883 |#1|) (-629 (-383 (-883 |#1|)))) 50) (((-883 |#1|) (-629 (-383 (-883 |#1|))) (-1087)) 51)))
-(((-269 |#1|) (-10 -7 (-15 -1606 ((-883 |#1|) (-629 (-383 (-883 |#1|))) (-1087))) (-15 -1606 ((-883 |#1|) (-629 (-383 (-883 |#1|))))) (-15 -2098 ((-589 (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|)))) (-629 (-383 (-883 |#1|))))) (-15 -2556 ((-589 (-629 (-383 (-883 |#1|)))) (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|))) (-629 (-383 (-883 |#1|))))) (-15 -3537 ((-589 (-629 (-383 (-883 |#1|)))) (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|))) (-629 (-383 (-883 |#1|))) (-710) (-710))) (-15 -3537 ((-589 (-629 (-383 (-883 |#1|)))) (-2 (|:| |eigval| (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|)))) (|:| |eigmult| (-710)) (|:| |eigvec| (-589 (-629 (-383 (-883 |#1|)))))) (-629 (-383 (-883 |#1|))))) (-15 -4194 ((-589 (-2 (|:| |eigval| (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|)))) (|:| |geneigvec| (-589 (-629 (-383 (-883 |#1|))))))) (-629 (-383 (-883 |#1|))))) (-15 -2462 ((-589 (-2 (|:| |eigval| (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|)))) (|:| |eigmult| (-710)) (|:| |eigvec| (-589 (-629 (-383 (-883 |#1|))))))) (-629 (-383 (-883 |#1|)))))) (-427)) (T -269))
-((-2462 (*1 *2 *3) (-12 (-4 *4 (-427)) (-5 *2 (-589 (-2 (|:| |eigval| (-3 (-383 (-883 *4)) (-1077 (-1087) (-883 *4)))) (|:| |eigmult| (-710)) (|:| |eigvec| (-589 (-629 (-383 (-883 *4)))))))) (-5 *1 (-269 *4)) (-5 *3 (-629 (-383 (-883 *4)))))) (-4194 (*1 *2 *3) (-12 (-4 *4 (-427)) (-5 *2 (-589 (-2 (|:| |eigval| (-3 (-383 (-883 *4)) (-1077 (-1087) (-883 *4)))) (|:| |geneigvec| (-589 (-629 (-383 (-883 *4)))))))) (-5 *1 (-269 *4)) (-5 *3 (-629 (-383 (-883 *4)))))) (-3537 (*1 *2 *3 *4) (-12 (-5 *3 (-2 (|:| |eigval| (-3 (-383 (-883 *5)) (-1077 (-1087) (-883 *5)))) (|:| |eigmult| (-710)) (|:| |eigvec| (-589 *4)))) (-4 *5 (-427)) (-5 *2 (-589 (-629 (-383 (-883 *5))))) (-5 *1 (-269 *5)) (-5 *4 (-629 (-383 (-883 *5)))))) (-3537 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-3 (-383 (-883 *6)) (-1077 (-1087) (-883 *6)))) (-5 *5 (-710)) (-4 *6 (-427)) (-5 *2 (-589 (-629 (-383 (-883 *6))))) (-5 *1 (-269 *6)) (-5 *4 (-629 (-383 (-883 *6)))))) (-2556 (*1 *2 *3 *4) (-12 (-5 *3 (-3 (-383 (-883 *5)) (-1077 (-1087) (-883 *5)))) (-4 *5 (-427)) (-5 *2 (-589 (-629 (-383 (-883 *5))))) (-5 *1 (-269 *5)) (-5 *4 (-629 (-383 (-883 *5)))))) (-2098 (*1 *2 *3) (-12 (-5 *3 (-629 (-383 (-883 *4)))) (-4 *4 (-427)) (-5 *2 (-589 (-3 (-383 (-883 *4)) (-1077 (-1087) (-883 *4))))) (-5 *1 (-269 *4)))) (-1606 (*1 *2 *3) (-12 (-5 *3 (-629 (-383 (-883 *4)))) (-5 *2 (-883 *4)) (-5 *1 (-269 *4)) (-4 *4 (-427)))) (-1606 (*1 *2 *3 *4) (-12 (-5 *3 (-629 (-383 (-883 *5)))) (-5 *4 (-1087)) (-5 *2 (-883 *5)) (-5 *1 (-269 *5)) (-4 *5 (-427)))))
-(-10 -7 (-15 -1606 ((-883 |#1|) (-629 (-383 (-883 |#1|))) (-1087))) (-15 -1606 ((-883 |#1|) (-629 (-383 (-883 |#1|))))) (-15 -2098 ((-589 (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|)))) (-629 (-383 (-883 |#1|))))) (-15 -2556 ((-589 (-629 (-383 (-883 |#1|)))) (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|))) (-629 (-383 (-883 |#1|))))) (-15 -3537 ((-589 (-629 (-383 (-883 |#1|)))) (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|))) (-629 (-383 (-883 |#1|))) (-710) (-710))) (-15 -3537 ((-589 (-629 (-383 (-883 |#1|)))) (-2 (|:| |eigval| (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|)))) (|:| |eigmult| (-710)) (|:| |eigvec| (-589 (-629 (-383 (-883 |#1|)))))) (-629 (-383 (-883 |#1|))))) (-15 -4194 ((-589 (-2 (|:| |eigval| (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|)))) (|:| |geneigvec| (-589 (-629 (-383 (-883 |#1|))))))) (-629 (-383 (-883 |#1|))))) (-15 -2462 ((-589 (-2 (|:| |eigval| (-3 (-383 (-883 |#1|)) (-1077 (-1087) (-883 |#1|)))) (|:| |eigmult| (-710)) (|:| |eigvec| (-589 (-629 (-383 (-883 |#1|))))))) (-629 (-383 (-883 |#1|))))))
-((-3015 (((-271 |#2|) (-1 |#2| |#1|) (-271 |#1|)) 14)))
-(((-270 |#1| |#2|) (-10 -7 (-15 -3015 ((-271 |#2|) (-1 |#2| |#1|) (-271 |#1|)))) (-1123) (-1123)) (T -270))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-271 *5)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-271 *6)) (-5 *1 (-270 *5 *6)))))
-(-10 -7 (-15 -3015 ((-271 |#2|) (-1 |#2| |#1|) (-271 |#1|))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2388 (((-108) $) NIL (|has| |#1| (-21)))) (-2579 (($ $) 23)) (-2999 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3834 (($ $ $) 94 (|has| |#1| (-279)))) (-1640 (($) NIL (-3255 (|has| |#1| (-21)) (|has| |#1| (-666))) CONST)) (-3033 (($ $) 8 (|has| |#1| (-21)))) (-2904 (((-3 $ "failed") $) 69 (|has| |#1| (-666)))) (-2248 ((|#1| $) 22)) (-4211 (((-3 $ "failed") $) 67 (|has| |#1| (-666)))) (-3482 (((-108) $) NIL (|has| |#1| (-666)))) (-3015 (($ (-1 |#1| |#1|) $) 25)) (-2239 ((|#1| $) 9)) (-3651 (($ $) 58 (|has| |#1| (-21)))) (-2724 (((-3 $ "failed") $) 68 (|has| |#1| (-666)))) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-3071 (($ $) 71 (-3255 (|has| |#1| (-339)) (|has| |#1| (-448))))) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2805 (((-589 $) $) 20 (|has| |#1| (-515)))) (-1349 (($ $ $) 35 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 $)) 38 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-1087) |#1|) 28 (|has| |#1| (-484 (-1087) |#1|))) (($ $ (-589 (-1087)) (-589 |#1|)) 32 (|has| |#1| (-484 (-1087) |#1|)))) (-3282 (($ |#1| |#1|) 18)) (-4012 (((-126)) 89 (|has| |#1| (-339)))) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087)) 86 (|has| |#1| (-831 (-1087))))) (-1308 (($ $ $) NIL (|has| |#1| (-448)))) (-2306 (($ $ $) NIL (|has| |#1| (-448)))) (-3976 (($ (-523)) NIL (|has| |#1| (-973))) (((-108) $) 46 (|has| |#1| (-1016))) (((-794) $) 45 (|has| |#1| (-1016)))) (-1698 (((-710)) 74 (|has| |#1| (-973)))) (-2573 (($ $ (-523)) NIL (|has| |#1| (-448))) (($ $ (-710)) NIL (|has| |#1| (-666))) (($ $ (-852)) NIL (|has| |#1| (-1028)))) (-1428 (($) 56 (|has| |#1| (-21)) CONST)) (-1440 (($) 64 (|has| |#1| (-666)) CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087))))) (-4037 (($ |#1| |#1|) 21) (((-108) $ $) 41 (|has| |#1| (-1016)))) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339))) (($ $ $) 91 (-3255 (|has| |#1| (-339)) (|has| |#1| (-448))))) (-4115 (($ |#1| $) 54 (|has| |#1| (-21))) (($ $ |#1|) 55 (|has| |#1| (-21))) (($ $ $) 53 (|has| |#1| (-21))) (($ $) 52 (|has| |#1| (-21)))) (-4103 (($ |#1| $) 49 (|has| |#1| (-25))) (($ $ |#1|) 50 (|has| |#1| (-25))) (($ $ $) 48 (|has| |#1| (-25)))) (** (($ $ (-523)) NIL (|has| |#1| (-448))) (($ $ (-710)) NIL (|has| |#1| (-666))) (($ $ (-852)) NIL (|has| |#1| (-1028)))) (* (($ $ |#1|) 62 (|has| |#1| (-1028))) (($ |#1| $) 61 (|has| |#1| (-1028))) (($ $ $) 60 (|has| |#1| (-1028))) (($ (-523) $) 76 (|has| |#1| (-21))) (($ (-710) $) NIL (|has| |#1| (-21))) (($ (-852) $) NIL (|has| |#1| (-25)))))
-(((-271 |#1|) (-13 (-1123) (-10 -8 (-15 -4037 ($ |#1| |#1|)) (-15 -3282 ($ |#1| |#1|)) (-15 -2579 ($ $)) (-15 -2239 (|#1| $)) (-15 -2248 (|#1| $)) (-15 -3015 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-484 (-1087) |#1|)) (-6 (-484 (-1087) |#1|)) |%noBranch|) (IF (|has| |#1| (-1016)) (PROGN (-6 (-1016)) (-6 (-563 (-108))) (IF (|has| |#1| (-286 |#1|)) (PROGN (-15 -1349 ($ $ $)) (-15 -1349 ($ $ (-589 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -4103 ($ |#1| $)) (-15 -4103 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -3651 ($ $)) (-15 -3033 ($ $)) (-15 -4115 ($ |#1| $)) (-15 -4115 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1028)) (PROGN (-6 (-1028)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-666)) (PROGN (-6 (-666)) (-15 -2724 ((-3 $ "failed") $)) (-15 -2904 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-448)) (PROGN (-6 (-448)) (-15 -2724 ((-3 $ "failed") $)) (-15 -2904 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-973)) (PROGN (-6 (-973)) (-6 (-107 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-158)) (-6 (-657 |#1|)) |%noBranch|) (IF (|has| |#1| (-515)) (-15 -2805 ((-589 $) $)) |%noBranch|) (IF (|has| |#1| (-831 (-1087))) (-6 (-831 (-1087))) |%noBranch|) (IF (|has| |#1| (-339)) (PROGN (-6 (-1176 |#1|)) (-15 -4125 ($ $ $)) (-15 -3071 ($ $))) |%noBranch|) (IF (|has| |#1| (-279)) (-15 -3834 ($ $ $)) |%noBranch|))) (-1123)) (T -271))
-((-4037 (*1 *1 *2 *2) (-12 (-5 *1 (-271 *2)) (-4 *2 (-1123)))) (-3282 (*1 *1 *2 *2) (-12 (-5 *1 (-271 *2)) (-4 *2 (-1123)))) (-2579 (*1 *1 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-1123)))) (-2239 (*1 *2 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-1123)))) (-2248 (*1 *2 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-1123)))) (-3015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1123)) (-5 *1 (-271 *3)))) (-1349 (*1 *1 *1 *1) (-12 (-4 *2 (-286 *2)) (-4 *2 (-1016)) (-4 *2 (-1123)) (-5 *1 (-271 *2)))) (-1349 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-271 *3))) (-4 *3 (-286 *3)) (-4 *3 (-1016)) (-4 *3 (-1123)) (-5 *1 (-271 *3)))) (-4103 (*1 *1 *2 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-25)) (-4 *2 (-1123)))) (-4103 (*1 *1 *1 *2) (-12 (-5 *1 (-271 *2)) (-4 *2 (-25)) (-4 *2 (-1123)))) (-3651 (*1 *1 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-21)) (-4 *2 (-1123)))) (-3033 (*1 *1 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-21)) (-4 *2 (-1123)))) (-4115 (*1 *1 *2 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-21)) (-4 *2 (-1123)))) (-4115 (*1 *1 *1 *2) (-12 (-5 *1 (-271 *2)) (-4 *2 (-21)) (-4 *2 (-1123)))) (-2724 (*1 *1 *1) (|partial| -12 (-5 *1 (-271 *2)) (-4 *2 (-666)) (-4 *2 (-1123)))) (-2904 (*1 *1 *1) (|partial| -12 (-5 *1 (-271 *2)) (-4 *2 (-666)) (-4 *2 (-1123)))) (-2805 (*1 *2 *1) (-12 (-5 *2 (-589 (-271 *3))) (-5 *1 (-271 *3)) (-4 *3 (-515)) (-4 *3 (-1123)))) (-3834 (*1 *1 *1 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-279)) (-4 *2 (-1123)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-271 *2)) (-4 *2 (-1028)) (-4 *2 (-1123)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-1028)) (-4 *2 (-1123)))) (-4125 (*1 *1 *1 *1) (-3255 (-12 (-5 *1 (-271 *2)) (-4 *2 (-339)) (-4 *2 (-1123))) (-12 (-5 *1 (-271 *2)) (-4 *2 (-448)) (-4 *2 (-1123))))) (-3071 (*1 *1 *1) (-3255 (-12 (-5 *1 (-271 *2)) (-4 *2 (-339)) (-4 *2 (-1123))) (-12 (-5 *1 (-271 *2)) (-4 *2 (-448)) (-4 *2 (-1123))))))
-(-13 (-1123) (-10 -8 (-15 -4037 ($ |#1| |#1|)) (-15 -3282 ($ |#1| |#1|)) (-15 -2579 ($ $)) (-15 -2239 (|#1| $)) (-15 -2248 (|#1| $)) (-15 -3015 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-484 (-1087) |#1|)) (-6 (-484 (-1087) |#1|)) |%noBranch|) (IF (|has| |#1| (-1016)) (PROGN (-6 (-1016)) (-6 (-563 (-108))) (IF (|has| |#1| (-286 |#1|)) (PROGN (-15 -1349 ($ $ $)) (-15 -1349 ($ $ (-589 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -4103 ($ |#1| $)) (-15 -4103 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -3651 ($ $)) (-15 -3033 ($ $)) (-15 -4115 ($ |#1| $)) (-15 -4115 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1028)) (PROGN (-6 (-1028)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-666)) (PROGN (-6 (-666)) (-15 -2724 ((-3 $ "failed") $)) (-15 -2904 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-448)) (PROGN (-6 (-448)) (-15 -2724 ((-3 $ "failed") $)) (-15 -2904 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-973)) (PROGN (-6 (-973)) (-6 (-107 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-158)) (-6 (-657 |#1|)) |%noBranch|) (IF (|has| |#1| (-515)) (-15 -2805 ((-589 $) $)) |%noBranch|) (IF (|has| |#1| (-831 (-1087))) (-6 (-831 (-1087))) |%noBranch|) (IF (|has| |#1| (-339)) (PROGN (-6 (-1176 |#1|)) (-15 -4125 ($ $ $)) (-15 -3071 ($ $))) |%noBranch|) (IF (|has| |#1| (-279)) (-15 -3834 ($ $ $)) |%noBranch|)))
-((-3260 (((-108) $ $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-2340 (($) NIL) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-1666 (((-1174) $ |#1| |#1|) NIL (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#2| $ |#1| |#2|) NIL)) (-3627 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-2521 (((-3 |#2| "failed") |#1| $) NIL)) (-1640 (($) NIL T CONST)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-1869 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-3 |#2| "failed") |#1| $) NIL)) (-2231 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1830 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4248))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#2| $ |#1|) NIL)) (-3133 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-1798 ((|#1| $) NIL (|has| |#1| (-786)))) (-3056 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-2133 ((|#1| $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4249))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-1612 (((-589 |#1|) $) NIL)) (-2754 (((-108) |#1| $) NIL)) (-2349 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-3862 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-2909 (((-589 |#1|) $) NIL)) (-2290 (((-108) |#1| $) NIL)) (-2435 (((-1034) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-3879 ((|#2| $) NIL (|has| |#1| (-786)))) (-2660 (((-3 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) "failed") (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL)) (-2408 (($ $ |#2|) NIL (|has| $ (-6 -4249)))) (-1322 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-2720 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 (-271 |#2|))) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-3184 (((-589 |#2|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-1771 (($) NIL) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-2452 (((-710) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-710) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016)))) (((-710) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-564 (-499))))) (-3985 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-3976 (((-794) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-563 (-794))) (|has| |#2| (-563 (-794)))))) (-1245 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-1505 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-272 |#1| |#2|) (-13 (-1100 |#1| |#2|) (-10 -7 (-6 -4248))) (-1016) (-1016)) (T -272))
-NIL
-(-13 (-1100 |#1| |#2|) (-10 -7 (-6 -4248)))
-((-2052 (((-288) (-1070) (-589 (-1070))) 16) (((-288) (-1070) (-1070)) 15) (((-288) (-589 (-1070))) 14) (((-288) (-1070)) 12)))
-(((-273) (-10 -7 (-15 -2052 ((-288) (-1070))) (-15 -2052 ((-288) (-589 (-1070)))) (-15 -2052 ((-288) (-1070) (-1070))) (-15 -2052 ((-288) (-1070) (-589 (-1070)))))) (T -273))
-((-2052 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-1070))) (-5 *3 (-1070)) (-5 *2 (-288)) (-5 *1 (-273)))) (-2052 (*1 *2 *3 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-288)) (-5 *1 (-273)))) (-2052 (*1 *2 *3) (-12 (-5 *3 (-589 (-1070))) (-5 *2 (-288)) (-5 *1 (-273)))) (-2052 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-288)) (-5 *1 (-273)))))
-(-10 -7 (-15 -2052 ((-288) (-1070))) (-15 -2052 ((-288) (-589 (-1070)))) (-15 -2052 ((-288) (-1070) (-1070))) (-15 -2052 ((-288) (-1070) (-589 (-1070)))))
-((-3015 ((|#2| (-1 |#2| |#1|) (-1070) (-562 |#1|)) 18)))
-(((-274 |#1| |#2|) (-10 -7 (-15 -3015 (|#2| (-1 |#2| |#1|) (-1070) (-562 |#1|)))) (-279) (-1123)) (T -274))
-((-3015 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1070)) (-5 *5 (-562 *6)) (-4 *6 (-279)) (-4 *2 (-1123)) (-5 *1 (-274 *6 *2)))))
-(-10 -7 (-15 -3015 (|#2| (-1 |#2| |#1|) (-1070) (-562 |#1|))))
-((-3015 ((|#2| (-1 |#2| |#1|) (-562 |#1|)) 17)))
-(((-275 |#1| |#2|) (-10 -7 (-15 -3015 (|#2| (-1 |#2| |#1|) (-562 |#1|)))) (-279) (-279)) (T -275))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-562 *5)) (-4 *5 (-279)) (-4 *2 (-279)) (-5 *1 (-275 *5 *2)))))
-(-10 -7 (-15 -3015 (|#2| (-1 |#2| |#1|) (-562 |#1|))))
-((-3552 (((-108) (-203)) 10)))
-(((-276 |#1| |#2|) (-10 -7 (-15 -3552 ((-108) (-203)))) (-203) (-203)) (T -276))
-((-3552 (*1 *2 *3) (-12 (-5 *3 (-203)) (-5 *2 (-108)) (-5 *1 (-276 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
-(-10 -7 (-15 -3552 ((-108) (-203))))
-((-4090 (((-1068 (-203)) (-292 (-203)) (-589 (-1087)) (-1011 (-779 (-203)))) 92)) (-3397 (((-1068 (-203)) (-1169 (-292 (-203))) (-589 (-1087)) (-1011 (-779 (-203)))) 106) (((-1068 (-203)) (-292 (-203)) (-589 (-1087)) (-1011 (-779 (-203)))) 61)) (-1582 (((-589 (-1070)) (-1068 (-203))) NIL)) (-3212 (((-589 (-203)) (-292 (-203)) (-1087) (-1011 (-779 (-203)))) 58)) (-3208 (((-589 (-203)) (-883 (-383 (-523))) (-1087) (-1011 (-779 (-203)))) 49)) (-3577 (((-589 (-1070)) (-589 (-203))) NIL)) (-4227 (((-203) (-1011 (-779 (-203)))) 25)) (-2978 (((-203) (-1011 (-779 (-203)))) 26)) (-1339 (((-108) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 54)) (-4161 (((-1070) (-203)) NIL)))
-(((-277) (-10 -7 (-15 -4227 ((-203) (-1011 (-779 (-203))))) (-15 -2978 ((-203) (-1011 (-779 (-203))))) (-15 -1339 ((-108) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3212 ((-589 (-203)) (-292 (-203)) (-1087) (-1011 (-779 (-203))))) (-15 -4090 ((-1068 (-203)) (-292 (-203)) (-589 (-1087)) (-1011 (-779 (-203))))) (-15 -3397 ((-1068 (-203)) (-292 (-203)) (-589 (-1087)) (-1011 (-779 (-203))))) (-15 -3397 ((-1068 (-203)) (-1169 (-292 (-203))) (-589 (-1087)) (-1011 (-779 (-203))))) (-15 -3208 ((-589 (-203)) (-883 (-383 (-523))) (-1087) (-1011 (-779 (-203))))) (-15 -4161 ((-1070) (-203))) (-15 -3577 ((-589 (-1070)) (-589 (-203)))) (-15 -1582 ((-589 (-1070)) (-1068 (-203)))))) (T -277))
-((-1582 (*1 *2 *3) (-12 (-5 *3 (-1068 (-203))) (-5 *2 (-589 (-1070))) (-5 *1 (-277)))) (-3577 (*1 *2 *3) (-12 (-5 *3 (-589 (-203))) (-5 *2 (-589 (-1070))) (-5 *1 (-277)))) (-4161 (*1 *2 *3) (-12 (-5 *3 (-203)) (-5 *2 (-1070)) (-5 *1 (-277)))) (-3208 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-883 (-383 (-523)))) (-5 *4 (-1087)) (-5 *5 (-1011 (-779 (-203)))) (-5 *2 (-589 (-203))) (-5 *1 (-277)))) (-3397 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1169 (-292 (-203)))) (-5 *4 (-589 (-1087))) (-5 *5 (-1011 (-779 (-203)))) (-5 *2 (-1068 (-203))) (-5 *1 (-277)))) (-3397 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-292 (-203))) (-5 *4 (-589 (-1087))) (-5 *5 (-1011 (-779 (-203)))) (-5 *2 (-1068 (-203))) (-5 *1 (-277)))) (-4090 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-292 (-203))) (-5 *4 (-589 (-1087))) (-5 *5 (-1011 (-779 (-203)))) (-5 *2 (-1068 (-203))) (-5 *1 (-277)))) (-3212 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-292 (-203))) (-5 *4 (-1087)) (-5 *5 (-1011 (-779 (-203)))) (-5 *2 (-589 (-203))) (-5 *1 (-277)))) (-1339 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-108)) (-5 *1 (-277)))) (-2978 (*1 *2 *3) (-12 (-5 *3 (-1011 (-779 (-203)))) (-5 *2 (-203)) (-5 *1 (-277)))) (-4227 (*1 *2 *3) (-12 (-5 *3 (-1011 (-779 (-203)))) (-5 *2 (-203)) (-5 *1 (-277)))))
-(-10 -7 (-15 -4227 ((-203) (-1011 (-779 (-203))))) (-15 -2978 ((-203) (-1011 (-779 (-203))))) (-15 -1339 ((-108) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3212 ((-589 (-203)) (-292 (-203)) (-1087) (-1011 (-779 (-203))))) (-15 -4090 ((-1068 (-203)) (-292 (-203)) (-589 (-1087)) (-1011 (-779 (-203))))) (-15 -3397 ((-1068 (-203)) (-292 (-203)) (-589 (-1087)) (-1011 (-779 (-203))))) (-15 -3397 ((-1068 (-203)) (-1169 (-292 (-203))) (-589 (-1087)) (-1011 (-779 (-203))))) (-15 -3208 ((-589 (-203)) (-883 (-383 (-523))) (-1087) (-1011 (-779 (-203))))) (-15 -4161 ((-1070) (-203))) (-15 -3577 ((-589 (-1070)) (-589 (-203)))) (-15 -1582 ((-589 (-1070)) (-1068 (-203)))))
-((-2394 (((-589 (-562 $)) $) 30)) (-3834 (($ $ (-271 $)) 81) (($ $ (-589 (-271 $))) 123) (($ $ (-589 (-562 $)) (-589 $)) NIL)) (-2898 (((-3 (-562 $) "failed") $) 113)) (-1996 (((-562 $) $) 112)) (-4035 (($ $) 19) (($ (-589 $)) 56)) (-2856 (((-589 (-110)) $) 38)) (-1564 (((-110) (-110)) 91)) (-2126 (((-108) $) 131)) (-3015 (($ (-1 $ $) (-562 $)) 89)) (-2215 (((-3 (-562 $) "failed") $) 93)) (-2217 (($ (-110) $) 61) (($ (-110) (-589 $)) 100)) (-2676 (((-108) $ (-110)) 117) (((-108) $ (-1087)) 116)) (-1942 (((-710) $) 46)) (-3791 (((-108) $ $) 59) (((-108) $ (-1087)) 51)) (-3775 (((-108) $) 129)) (-1349 (($ $ (-562 $) $) NIL) (($ $ (-589 (-562 $)) (-589 $)) NIL) (($ $ (-589 (-271 $))) 121) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-589 (-1087)) (-589 (-1 $ $))) 84) (($ $ (-589 (-1087)) (-589 (-1 $ (-589 $)))) NIL) (($ $ (-1087) (-1 $ (-589 $))) 69) (($ $ (-1087) (-1 $ $)) 75) (($ $ (-589 (-110)) (-589 (-1 $ $))) 83) (($ $ (-589 (-110)) (-589 (-1 $ (-589 $)))) 85) (($ $ (-110) (-1 $ (-589 $))) 71) (($ $ (-110) (-1 $ $)) 77)) (-1502 (($ (-110) $) 62) (($ (-110) $ $) 63) (($ (-110) $ $ $) 64) (($ (-110) $ $ $ $) 65) (($ (-110) (-589 $)) 109)) (-2404 (($ $) 53) (($ $ $) 119)) (-4114 (($ $) 17) (($ (-589 $)) 55)) (-1651 (((-108) (-110)) 22)))
-(((-278 |#1|) (-10 -8 (-15 -2126 ((-108) |#1|)) (-15 -3775 ((-108) |#1|)) (-15 -1349 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -1349 (|#1| |#1| (-110) (-1 |#1| (-589 |#1|)))) (-15 -1349 (|#1| |#1| (-589 (-110)) (-589 (-1 |#1| (-589 |#1|))))) (-15 -1349 (|#1| |#1| (-589 (-110)) (-589 (-1 |#1| |#1|)))) (-15 -1349 (|#1| |#1| (-1087) (-1 |#1| |#1|))) (-15 -1349 (|#1| |#1| (-1087) (-1 |#1| (-589 |#1|)))) (-15 -1349 (|#1| |#1| (-589 (-1087)) (-589 (-1 |#1| (-589 |#1|))))) (-15 -1349 (|#1| |#1| (-589 (-1087)) (-589 (-1 |#1| |#1|)))) (-15 -3791 ((-108) |#1| (-1087))) (-15 -3791 ((-108) |#1| |#1|)) (-15 -3015 (|#1| (-1 |#1| |#1|) (-562 |#1|))) (-15 -2217 (|#1| (-110) (-589 |#1|))) (-15 -2217 (|#1| (-110) |#1|)) (-15 -2676 ((-108) |#1| (-1087))) (-15 -2676 ((-108) |#1| (-110))) (-15 -1651 ((-108) (-110))) (-15 -1564 ((-110) (-110))) (-15 -2856 ((-589 (-110)) |#1|)) (-15 -2394 ((-589 (-562 |#1|)) |#1|)) (-15 -2215 ((-3 (-562 |#1|) "failed") |#1|)) (-15 -1942 ((-710) |#1|)) (-15 -2404 (|#1| |#1| |#1|)) (-15 -2404 (|#1| |#1|)) (-15 -4035 (|#1| (-589 |#1|))) (-15 -4035 (|#1| |#1|)) (-15 -4114 (|#1| (-589 |#1|))) (-15 -4114 (|#1| |#1|)) (-15 -3834 (|#1| |#1| (-589 (-562 |#1|)) (-589 |#1|))) (-15 -3834 (|#1| |#1| (-589 (-271 |#1|)))) (-15 -3834 (|#1| |#1| (-271 |#1|))) (-15 -1502 (|#1| (-110) (-589 |#1|))) (-15 -1502 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -1502 (|#1| (-110) |#1| |#1| |#1|)) (-15 -1502 (|#1| (-110) |#1| |#1|)) (-15 -1502 (|#1| (-110) |#1|)) (-15 -1349 (|#1| |#1| (-589 |#1|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#1| |#1|)) (-15 -1349 (|#1| |#1| (-271 |#1|))) (-15 -1349 (|#1| |#1| (-589 (-271 |#1|)))) (-15 -1349 (|#1| |#1| (-589 (-562 |#1|)) (-589 |#1|))) (-15 -1349 (|#1| |#1| (-562 |#1|) |#1|)) (-15 -1996 ((-562 |#1|) |#1|)) (-15 -2898 ((-3 (-562 |#1|) "failed") |#1|))) (-279)) (T -278))
-((-1564 (*1 *2 *2) (-12 (-5 *2 (-110)) (-5 *1 (-278 *3)) (-4 *3 (-279)))) (-1651 (*1 *2 *3) (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-278 *4)) (-4 *4 (-279)))))
-(-10 -8 (-15 -2126 ((-108) |#1|)) (-15 -3775 ((-108) |#1|)) (-15 -1349 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -1349 (|#1| |#1| (-110) (-1 |#1| (-589 |#1|)))) (-15 -1349 (|#1| |#1| (-589 (-110)) (-589 (-1 |#1| (-589 |#1|))))) (-15 -1349 (|#1| |#1| (-589 (-110)) (-589 (-1 |#1| |#1|)))) (-15 -1349 (|#1| |#1| (-1087) (-1 |#1| |#1|))) (-15 -1349 (|#1| |#1| (-1087) (-1 |#1| (-589 |#1|)))) (-15 -1349 (|#1| |#1| (-589 (-1087)) (-589 (-1 |#1| (-589 |#1|))))) (-15 -1349 (|#1| |#1| (-589 (-1087)) (-589 (-1 |#1| |#1|)))) (-15 -3791 ((-108) |#1| (-1087))) (-15 -3791 ((-108) |#1| |#1|)) (-15 -3015 (|#1| (-1 |#1| |#1|) (-562 |#1|))) (-15 -2217 (|#1| (-110) (-589 |#1|))) (-15 -2217 (|#1| (-110) |#1|)) (-15 -2676 ((-108) |#1| (-1087))) (-15 -2676 ((-108) |#1| (-110))) (-15 -1651 ((-108) (-110))) (-15 -1564 ((-110) (-110))) (-15 -2856 ((-589 (-110)) |#1|)) (-15 -2394 ((-589 (-562 |#1|)) |#1|)) (-15 -2215 ((-3 (-562 |#1|) "failed") |#1|)) (-15 -1942 ((-710) |#1|)) (-15 -2404 (|#1| |#1| |#1|)) (-15 -2404 (|#1| |#1|)) (-15 -4035 (|#1| (-589 |#1|))) (-15 -4035 (|#1| |#1|)) (-15 -4114 (|#1| (-589 |#1|))) (-15 -4114 (|#1| |#1|)) (-15 -3834 (|#1| |#1| (-589 (-562 |#1|)) (-589 |#1|))) (-15 -3834 (|#1| |#1| (-589 (-271 |#1|)))) (-15 -3834 (|#1| |#1| (-271 |#1|))) (-15 -1502 (|#1| (-110) (-589 |#1|))) (-15 -1502 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -1502 (|#1| (-110) |#1| |#1| |#1|)) (-15 -1502 (|#1| (-110) |#1| |#1|)) (-15 -1502 (|#1| (-110) |#1|)) (-15 -1349 (|#1| |#1| (-589 |#1|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#1| |#1|)) (-15 -1349 (|#1| |#1| (-271 |#1|))) (-15 -1349 (|#1| |#1| (-589 (-271 |#1|)))) (-15 -1349 (|#1| |#1| (-589 (-562 |#1|)) (-589 |#1|))) (-15 -1349 (|#1| |#1| (-562 |#1|) |#1|)) (-15 -1996 ((-562 |#1|) |#1|)) (-15 -2898 ((-3 (-562 |#1|) "failed") |#1|)))
-((-3260 (((-108) $ $) 7)) (-2394 (((-589 (-562 $)) $) 44)) (-3834 (($ $ (-271 $)) 56) (($ $ (-589 (-271 $))) 55) (($ $ (-589 (-562 $)) (-589 $)) 54)) (-2898 (((-3 (-562 $) "failed") $) 69)) (-1996 (((-562 $) $) 68)) (-4035 (($ $) 51) (($ (-589 $)) 50)) (-2856 (((-589 (-110)) $) 43)) (-1564 (((-110) (-110)) 42)) (-2126 (((-108) $) 22 (|has| $ (-964 (-523))))) (-4016 (((-1083 $) (-562 $)) 25 (|has| $ (-973)))) (-3268 (($ $ $) 13)) (-2644 (($ $ $) 14)) (-3015 (($ (-1 $ $) (-562 $)) 36)) (-2215 (((-3 (-562 $) "failed") $) 46)) (-3841 (((-1070) $) 9)) (-3526 (((-589 (-562 $)) $) 45)) (-2217 (($ (-110) $) 38) (($ (-110) (-589 $)) 37)) (-2676 (((-108) $ (-110)) 40) (((-108) $ (-1087)) 39)) (-1942 (((-710) $) 47)) (-2435 (((-1034) $) 10)) (-3791 (((-108) $ $) 35) (((-108) $ (-1087)) 34)) (-3775 (((-108) $) 23 (|has| $ (-964 (-523))))) (-1349 (($ $ (-562 $) $) 67) (($ $ (-589 (-562 $)) (-589 $)) 66) (($ $ (-589 (-271 $))) 65) (($ $ (-271 $)) 64) (($ $ $ $) 63) (($ $ (-589 $) (-589 $)) 62) (($ $ (-589 (-1087)) (-589 (-1 $ $))) 33) (($ $ (-589 (-1087)) (-589 (-1 $ (-589 $)))) 32) (($ $ (-1087) (-1 $ (-589 $))) 31) (($ $ (-1087) (-1 $ $)) 30) (($ $ (-589 (-110)) (-589 (-1 $ $))) 29) (($ $ (-589 (-110)) (-589 (-1 $ (-589 $)))) 28) (($ $ (-110) (-1 $ (-589 $))) 27) (($ $ (-110) (-1 $ $)) 26)) (-1502 (($ (-110) $) 61) (($ (-110) $ $) 60) (($ (-110) $ $ $) 59) (($ (-110) $ $ $ $) 58) (($ (-110) (-589 $)) 57)) (-2404 (($ $) 49) (($ $ $) 48)) (-3399 (($ $) 24 (|has| $ (-973)))) (-3976 (((-794) $) 11) (($ (-562 $)) 70)) (-4114 (($ $) 53) (($ (-589 $)) 52)) (-1651 (((-108) (-110)) 41)) (-4078 (((-108) $ $) 16)) (-4061 (((-108) $ $) 17)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 15)) (-4052 (((-108) $ $) 18)))
-(((-279) (-129)) (T -279))
-((-1502 (*1 *1 *2 *1) (-12 (-4 *1 (-279)) (-5 *2 (-110)))) (-1502 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-279)) (-5 *2 (-110)))) (-1502 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-279)) (-5 *2 (-110)))) (-1502 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-279)) (-5 *2 (-110)))) (-1502 (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-589 *1)) (-4 *1 (-279)))) (-3834 (*1 *1 *1 *2) (-12 (-5 *2 (-271 *1)) (-4 *1 (-279)))) (-3834 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-271 *1))) (-4 *1 (-279)))) (-3834 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 (-562 *1))) (-5 *3 (-589 *1)) (-4 *1 (-279)))) (-4114 (*1 *1 *1) (-4 *1 (-279))) (-4114 (*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-279)))) (-4035 (*1 *1 *1) (-4 *1 (-279))) (-4035 (*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-279)))) (-2404 (*1 *1 *1) (-4 *1 (-279))) (-2404 (*1 *1 *1 *1) (-4 *1 (-279))) (-1942 (*1 *2 *1) (-12 (-4 *1 (-279)) (-5 *2 (-710)))) (-2215 (*1 *2 *1) (|partial| -12 (-5 *2 (-562 *1)) (-4 *1 (-279)))) (-3526 (*1 *2 *1) (-12 (-5 *2 (-589 (-562 *1))) (-4 *1 (-279)))) (-2394 (*1 *2 *1) (-12 (-5 *2 (-589 (-562 *1))) (-4 *1 (-279)))) (-2856 (*1 *2 *1) (-12 (-4 *1 (-279)) (-5 *2 (-589 (-110))))) (-1564 (*1 *2 *2) (-12 (-4 *1 (-279)) (-5 *2 (-110)))) (-1651 (*1 *2 *3) (-12 (-4 *1 (-279)) (-5 *3 (-110)) (-5 *2 (-108)))) (-2676 (*1 *2 *1 *3) (-12 (-4 *1 (-279)) (-5 *3 (-110)) (-5 *2 (-108)))) (-2676 (*1 *2 *1 *3) (-12 (-4 *1 (-279)) (-5 *3 (-1087)) (-5 *2 (-108)))) (-2217 (*1 *1 *2 *1) (-12 (-4 *1 (-279)) (-5 *2 (-110)))) (-2217 (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-589 *1)) (-4 *1 (-279)))) (-3015 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-562 *1)) (-4 *1 (-279)))) (-3791 (*1 *2 *1 *1) (-12 (-4 *1 (-279)) (-5 *2 (-108)))) (-3791 (*1 *2 *1 *3) (-12 (-4 *1 (-279)) (-5 *3 (-1087)) (-5 *2 (-108)))) (-1349 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 (-1087))) (-5 *3 (-589 (-1 *1 *1))) (-4 *1 (-279)))) (-1349 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 (-1087))) (-5 *3 (-589 (-1 *1 (-589 *1)))) (-4 *1 (-279)))) (-1349 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1 *1 (-589 *1))) (-4 *1 (-279)))) (-1349 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1 *1 *1)) (-4 *1 (-279)))) (-1349 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 (-110))) (-5 *3 (-589 (-1 *1 *1))) (-4 *1 (-279)))) (-1349 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 (-110))) (-5 *3 (-589 (-1 *1 (-589 *1)))) (-4 *1 (-279)))) (-1349 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *1 (-589 *1))) (-4 *1 (-279)))) (-1349 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *1 *1)) (-4 *1 (-279)))) (-4016 (*1 *2 *3) (-12 (-5 *3 (-562 *1)) (-4 *1 (-973)) (-4 *1 (-279)) (-5 *2 (-1083 *1)))) (-3399 (*1 *1 *1) (-12 (-4 *1 (-973)) (-4 *1 (-279)))) (-3775 (*1 *2 *1) (-12 (-4 *1 (-964 (-523))) (-4 *1 (-279)) (-5 *2 (-108)))) (-2126 (*1 *2 *1) (-12 (-4 *1 (-964 (-523))) (-4 *1 (-279)) (-5 *2 (-108)))))
-(-13 (-786) (-964 (-562 $)) (-484 (-562 $) $) (-286 $) (-10 -8 (-15 -1502 ($ (-110) $)) (-15 -1502 ($ (-110) $ $)) (-15 -1502 ($ (-110) $ $ $)) (-15 -1502 ($ (-110) $ $ $ $)) (-15 -1502 ($ (-110) (-589 $))) (-15 -3834 ($ $ (-271 $))) (-15 -3834 ($ $ (-589 (-271 $)))) (-15 -3834 ($ $ (-589 (-562 $)) (-589 $))) (-15 -4114 ($ $)) (-15 -4114 ($ (-589 $))) (-15 -4035 ($ $)) (-15 -4035 ($ (-589 $))) (-15 -2404 ($ $)) (-15 -2404 ($ $ $)) (-15 -1942 ((-710) $)) (-15 -2215 ((-3 (-562 $) "failed") $)) (-15 -3526 ((-589 (-562 $)) $)) (-15 -2394 ((-589 (-562 $)) $)) (-15 -2856 ((-589 (-110)) $)) (-15 -1564 ((-110) (-110))) (-15 -1651 ((-108) (-110))) (-15 -2676 ((-108) $ (-110))) (-15 -2676 ((-108) $ (-1087))) (-15 -2217 ($ (-110) $)) (-15 -2217 ($ (-110) (-589 $))) (-15 -3015 ($ (-1 $ $) (-562 $))) (-15 -3791 ((-108) $ $)) (-15 -3791 ((-108) $ (-1087))) (-15 -1349 ($ $ (-589 (-1087)) (-589 (-1 $ $)))) (-15 -1349 ($ $ (-589 (-1087)) (-589 (-1 $ (-589 $))))) (-15 -1349 ($ $ (-1087) (-1 $ (-589 $)))) (-15 -1349 ($ $ (-1087) (-1 $ $))) (-15 -1349 ($ $ (-589 (-110)) (-589 (-1 $ $)))) (-15 -1349 ($ $ (-589 (-110)) (-589 (-1 $ (-589 $))))) (-15 -1349 ($ $ (-110) (-1 $ (-589 $)))) (-15 -1349 ($ $ (-110) (-1 $ $))) (IF (|has| $ (-973)) (PROGN (-15 -4016 ((-1083 $) (-562 $))) (-15 -3399 ($ $))) |%noBranch|) (IF (|has| $ (-964 (-523))) (PROGN (-15 -3775 ((-108) $)) (-15 -2126 ((-108) $))) |%noBranch|)))
-(((-97) . T) ((-563 (-794)) . T) ((-286 $) . T) ((-484 (-562 $) $) . T) ((-484 $ $) . T) ((-786) . T) ((-964 (-562 $)) . T) ((-1016) . T))
-((-2986 (((-589 |#1|) (-589 |#1|)) 10)))
-(((-280 |#1|) (-10 -7 (-15 -2986 ((-589 |#1|) (-589 |#1|)))) (-784)) (T -280))
-((-2986 (*1 *2 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-784)) (-5 *1 (-280 *3)))))
-(-10 -7 (-15 -2986 ((-589 |#1|) (-589 |#1|))))
-((-3015 (((-629 |#2|) (-1 |#2| |#1|) (-629 |#1|)) 17)))
-(((-281 |#1| |#2|) (-10 -7 (-15 -3015 ((-629 |#2|) (-1 |#2| |#1|) (-629 |#1|)))) (-973) (-973)) (T -281))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-629 *5)) (-4 *5 (-973)) (-4 *6 (-973)) (-5 *2 (-629 *6)) (-5 *1 (-281 *5 *6)))))
-(-10 -7 (-15 -3015 ((-629 |#2|) (-1 |#2| |#1|) (-629 |#1|))))
-((-2536 (((-1169 (-292 (-355))) (-1169 (-292 (-203)))) 105)) (-3559 (((-1011 (-779 (-203))) (-1011 (-779 (-355)))) 40)) (-1582 (((-589 (-1070)) (-1068 (-203))) 87)) (-2742 (((-292 (-355)) (-883 (-203))) 50)) (-4136 (((-203) (-883 (-203))) 46)) (-2649 (((-1070) (-355)) 169)) (-3276 (((-779 (-203)) (-779 (-355))) 34)) (-3136 (((-2 (|:| |additions| (-523)) (|:| |multiplications| (-523)) (|:| |exponentiations| (-523)) (|:| |functionCalls| (-523))) (-1169 (-292 (-203)))) 143)) (-1463 (((-962) (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))) (|:| |extra| (-962)))) 181) (((-962) (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))))) 179)) (-2373 (((-629 (-203)) (-589 (-203)) (-710)) 14)) (-1677 (((-1169 (-638)) (-589 (-203))) 94)) (-3577 (((-589 (-1070)) (-589 (-203))) 75)) (-1875 (((-3 (-292 (-203)) "failed") (-292 (-203))) 120)) (-3552 (((-108) (-203) (-1011 (-779 (-203)))) 109)) (-1574 (((-962) (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355)))) 198)) (-4227 (((-203) (-1011 (-779 (-203)))) 107)) (-2978 (((-203) (-1011 (-779 (-203)))) 108)) (-2968 (((-203) (-383 (-523))) 27)) (-2810 (((-1070) (-355)) 73)) (-3631 (((-203) (-355)) 17)) (-2673 (((-355) (-1169 (-292 (-203)))) 154)) (-3381 (((-292 (-203)) (-292 (-355))) 23)) (-3145 (((-383 (-523)) (-292 (-203))) 53)) (-2869 (((-292 (-383 (-523))) (-292 (-203))) 69)) (-1552 (((-292 (-355)) (-292 (-203))) 98)) (-2043 (((-203) (-292 (-203))) 54)) (-2915 (((-589 (-203)) (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) 64)) (-3954 (((-1011 (-779 (-203))) (-1011 (-779 (-203)))) 61)) (-4161 (((-1070) (-203)) 72)) (-1262 (((-638) (-203)) 90)) (-3581 (((-383 (-523)) (-203)) 55)) (-2487 (((-292 (-355)) (-203)) 49)) (-3077 (((-589 (-1011 (-779 (-203)))) (-589 (-1011 (-779 (-355))))) 43)) (-2785 (((-962) (-589 (-962))) 165) (((-962) (-962) (-962)) 162)) (-3820 (((-962) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) 195)))
-(((-282) (-10 -7 (-15 -3631 ((-203) (-355))) (-15 -3381 ((-292 (-203)) (-292 (-355)))) (-15 -3276 ((-779 (-203)) (-779 (-355)))) (-15 -3559 ((-1011 (-779 (-203))) (-1011 (-779 (-355))))) (-15 -3077 ((-589 (-1011 (-779 (-203)))) (-589 (-1011 (-779 (-355)))))) (-15 -3581 ((-383 (-523)) (-203))) (-15 -3145 ((-383 (-523)) (-292 (-203)))) (-15 -2043 ((-203) (-292 (-203)))) (-15 -1875 ((-3 (-292 (-203)) "failed") (-292 (-203)))) (-15 -2673 ((-355) (-1169 (-292 (-203))))) (-15 -3136 ((-2 (|:| |additions| (-523)) (|:| |multiplications| (-523)) (|:| |exponentiations| (-523)) (|:| |functionCalls| (-523))) (-1169 (-292 (-203))))) (-15 -2869 ((-292 (-383 (-523))) (-292 (-203)))) (-15 -3954 ((-1011 (-779 (-203))) (-1011 (-779 (-203))))) (-15 -2915 ((-589 (-203)) (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))))) (-15 -1262 ((-638) (-203))) (-15 -1677 ((-1169 (-638)) (-589 (-203)))) (-15 -1552 ((-292 (-355)) (-292 (-203)))) (-15 -2536 ((-1169 (-292 (-355))) (-1169 (-292 (-203))))) (-15 -3552 ((-108) (-203) (-1011 (-779 (-203))))) (-15 -4161 ((-1070) (-203))) (-15 -2810 ((-1070) (-355))) (-15 -3577 ((-589 (-1070)) (-589 (-203)))) (-15 -1582 ((-589 (-1070)) (-1068 (-203)))) (-15 -4227 ((-203) (-1011 (-779 (-203))))) (-15 -2978 ((-203) (-1011 (-779 (-203))))) (-15 -2785 ((-962) (-962) (-962))) (-15 -2785 ((-962) (-589 (-962)))) (-15 -2649 ((-1070) (-355))) (-15 -1463 ((-962) (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))))) (-15 -1463 ((-962) (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))) (|:| |extra| (-962))))) (-15 -3820 ((-962) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))) (-15 -1574 ((-962) (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355))))) (-15 -2742 ((-292 (-355)) (-883 (-203)))) (-15 -4136 ((-203) (-883 (-203)))) (-15 -2487 ((-292 (-355)) (-203))) (-15 -2968 ((-203) (-383 (-523)))) (-15 -2373 ((-629 (-203)) (-589 (-203)) (-710))))) (T -282))
-((-2373 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-203))) (-5 *4 (-710)) (-5 *2 (-629 (-203))) (-5 *1 (-282)))) (-2968 (*1 *2 *3) (-12 (-5 *3 (-383 (-523))) (-5 *2 (-203)) (-5 *1 (-282)))) (-2487 (*1 *2 *3) (-12 (-5 *3 (-203)) (-5 *2 (-292 (-355))) (-5 *1 (-282)))) (-4136 (*1 *2 *3) (-12 (-5 *3 (-883 (-203))) (-5 *2 (-203)) (-5 *1 (-282)))) (-2742 (*1 *2 *3) (-12 (-5 *3 (-883 (-203))) (-5 *2 (-292 (-355))) (-5 *1 (-282)))) (-1574 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355)))) (-5 *2 (-962)) (-5 *1 (-282)))) (-3820 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *2 (-962)) (-5 *1 (-282)))) (-1463 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))) (|:| |extra| (-962)))) (-5 *2 (-962)) (-5 *1 (-282)))) (-1463 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))))) (-5 *2 (-962)) (-5 *1 (-282)))) (-2649 (*1 *2 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1070)) (-5 *1 (-282)))) (-2785 (*1 *2 *3) (-12 (-5 *3 (-589 (-962))) (-5 *2 (-962)) (-5 *1 (-282)))) (-2785 (*1 *2 *2 *2) (-12 (-5 *2 (-962)) (-5 *1 (-282)))) (-2978 (*1 *2 *3) (-12 (-5 *3 (-1011 (-779 (-203)))) (-5 *2 (-203)) (-5 *1 (-282)))) (-4227 (*1 *2 *3) (-12 (-5 *3 (-1011 (-779 (-203)))) (-5 *2 (-203)) (-5 *1 (-282)))) (-1582 (*1 *2 *3) (-12 (-5 *3 (-1068 (-203))) (-5 *2 (-589 (-1070))) (-5 *1 (-282)))) (-3577 (*1 *2 *3) (-12 (-5 *3 (-589 (-203))) (-5 *2 (-589 (-1070))) (-5 *1 (-282)))) (-2810 (*1 *2 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1070)) (-5 *1 (-282)))) (-4161 (*1 *2 *3) (-12 (-5 *3 (-203)) (-5 *2 (-1070)) (-5 *1 (-282)))) (-3552 (*1 *2 *3 *4) (-12 (-5 *4 (-1011 (-779 (-203)))) (-5 *3 (-203)) (-5 *2 (-108)) (-5 *1 (-282)))) (-2536 (*1 *2 *3) (-12 (-5 *3 (-1169 (-292 (-203)))) (-5 *2 (-1169 (-292 (-355)))) (-5 *1 (-282)))) (-1552 (*1 *2 *3) (-12 (-5 *3 (-292 (-203))) (-5 *2 (-292 (-355))) (-5 *1 (-282)))) (-1677 (*1 *2 *3) (-12 (-5 *3 (-589 (-203))) (-5 *2 (-1169 (-638))) (-5 *1 (-282)))) (-1262 (*1 *2 *3) (-12 (-5 *3 (-203)) (-5 *2 (-638)) (-5 *1 (-282)))) (-2915 (*1 *2 *3) (-12 (-5 *3 (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) (-5 *2 (-589 (-203))) (-5 *1 (-282)))) (-3954 (*1 *2 *2) (-12 (-5 *2 (-1011 (-779 (-203)))) (-5 *1 (-282)))) (-2869 (*1 *2 *3) (-12 (-5 *3 (-292 (-203))) (-5 *2 (-292 (-383 (-523)))) (-5 *1 (-282)))) (-3136 (*1 *2 *3) (-12 (-5 *3 (-1169 (-292 (-203)))) (-5 *2 (-2 (|:| |additions| (-523)) (|:| |multiplications| (-523)) (|:| |exponentiations| (-523)) (|:| |functionCalls| (-523)))) (-5 *1 (-282)))) (-2673 (*1 *2 *3) (-12 (-5 *3 (-1169 (-292 (-203)))) (-5 *2 (-355)) (-5 *1 (-282)))) (-1875 (*1 *2 *2) (|partial| -12 (-5 *2 (-292 (-203))) (-5 *1 (-282)))) (-2043 (*1 *2 *3) (-12 (-5 *3 (-292 (-203))) (-5 *2 (-203)) (-5 *1 (-282)))) (-3145 (*1 *2 *3) (-12 (-5 *3 (-292 (-203))) (-5 *2 (-383 (-523))) (-5 *1 (-282)))) (-3581 (*1 *2 *3) (-12 (-5 *3 (-203)) (-5 *2 (-383 (-523))) (-5 *1 (-282)))) (-3077 (*1 *2 *3) (-12 (-5 *3 (-589 (-1011 (-779 (-355))))) (-5 *2 (-589 (-1011 (-779 (-203))))) (-5 *1 (-282)))) (-3559 (*1 *2 *3) (-12 (-5 *3 (-1011 (-779 (-355)))) (-5 *2 (-1011 (-779 (-203)))) (-5 *1 (-282)))) (-3276 (*1 *2 *3) (-12 (-5 *3 (-779 (-355))) (-5 *2 (-779 (-203))) (-5 *1 (-282)))) (-3381 (*1 *2 *3) (-12 (-5 *3 (-292 (-355))) (-5 *2 (-292 (-203))) (-5 *1 (-282)))) (-3631 (*1 *2 *3) (-12 (-5 *3 (-355)) (-5 *2 (-203)) (-5 *1 (-282)))))
-(-10 -7 (-15 -3631 ((-203) (-355))) (-15 -3381 ((-292 (-203)) (-292 (-355)))) (-15 -3276 ((-779 (-203)) (-779 (-355)))) (-15 -3559 ((-1011 (-779 (-203))) (-1011 (-779 (-355))))) (-15 -3077 ((-589 (-1011 (-779 (-203)))) (-589 (-1011 (-779 (-355)))))) (-15 -3581 ((-383 (-523)) (-203))) (-15 -3145 ((-383 (-523)) (-292 (-203)))) (-15 -2043 ((-203) (-292 (-203)))) (-15 -1875 ((-3 (-292 (-203)) "failed") (-292 (-203)))) (-15 -2673 ((-355) (-1169 (-292 (-203))))) (-15 -3136 ((-2 (|:| |additions| (-523)) (|:| |multiplications| (-523)) (|:| |exponentiations| (-523)) (|:| |functionCalls| (-523))) (-1169 (-292 (-203))))) (-15 -2869 ((-292 (-383 (-523))) (-292 (-203)))) (-15 -3954 ((-1011 (-779 (-203))) (-1011 (-779 (-203))))) (-15 -2915 ((-589 (-203)) (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))))) (-15 -1262 ((-638) (-203))) (-15 -1677 ((-1169 (-638)) (-589 (-203)))) (-15 -1552 ((-292 (-355)) (-292 (-203)))) (-15 -2536 ((-1169 (-292 (-355))) (-1169 (-292 (-203))))) (-15 -3552 ((-108) (-203) (-1011 (-779 (-203))))) (-15 -4161 ((-1070) (-203))) (-15 -2810 ((-1070) (-355))) (-15 -3577 ((-589 (-1070)) (-589 (-203)))) (-15 -1582 ((-589 (-1070)) (-1068 (-203)))) (-15 -4227 ((-203) (-1011 (-779 (-203))))) (-15 -2978 ((-203) (-1011 (-779 (-203))))) (-15 -2785 ((-962) (-962) (-962))) (-15 -2785 ((-962) (-589 (-962)))) (-15 -2649 ((-1070) (-355))) (-15 -1463 ((-962) (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))))) (-15 -1463 ((-962) (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))) (|:| |extra| (-962))))) (-15 -3820 ((-962) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))) (-15 -1574 ((-962) (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355))))) (-15 -2742 ((-292 (-355)) (-883 (-203)))) (-15 -4136 ((-203) (-883 (-203)))) (-15 -2487 ((-292 (-355)) (-203))) (-15 -2968 ((-203) (-383 (-523)))) (-15 -2373 ((-629 (-203)) (-589 (-203)) (-710))))
-((-3684 (((-108) $ $) 11)) (-2501 (($ $ $) 15)) (-2486 (($ $ $) 14)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 44)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 53)) (-2056 (($ $ $) 21) (($ (-589 $)) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 32) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 37)) (-2469 (((-3 $ "failed") $ $) 17)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 46)))
-(((-283 |#1|) (-10 -8 (-15 -3331 ((-3 (-589 |#1|) "failed") (-589 |#1|) |#1|)) (-15 -3263 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -3263 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4102 |#1|)) |#1| |#1|)) (-15 -2501 (|#1| |#1| |#1|)) (-15 -2486 (|#1| |#1| |#1|)) (-15 -3684 ((-108) |#1| |#1|)) (-15 -2057 ((-3 (-589 |#1|) "failed") (-589 |#1|) |#1|)) (-15 -1992 ((-2 (|:| -2275 (-589 |#1|)) (|:| -4102 |#1|)) (-589 |#1|))) (-15 -2056 (|#1| (-589 |#1|))) (-15 -2056 (|#1| |#1| |#1|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#1|))) (-284)) (T -283))
-NIL
-(-10 -8 (-15 -3331 ((-3 (-589 |#1|) "failed") (-589 |#1|) |#1|)) (-15 -3263 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -3263 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4102 |#1|)) |#1| |#1|)) (-15 -2501 (|#1| |#1| |#1|)) (-15 -2486 (|#1| |#1| |#1|)) (-15 -3684 ((-108) |#1| |#1|)) (-15 -2057 ((-3 (-589 |#1|) "failed") (-589 |#1|) |#1|)) (-15 -1992 ((-2 (|:| -2275 (-589 |#1|)) (|:| -4102 |#1|)) (-589 |#1|))) (-15 -2056 (|#1| (-589 |#1|))) (-15 -2056 (|#1| |#1| |#1|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-2999 (((-3 $ "failed") $ $) 19)) (-3684 (((-108) $ $) 59)) (-1640 (($) 17 T CONST)) (-2501 (($ $ $) 55)) (-4211 (((-3 $ "failed") $) 34)) (-2486 (($ $ $) 56)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 51)) (-3482 (((-108) $) 31)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 52)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2469 (((-3 $ "failed") $ $) 42)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 50)) (-3087 (((-710) $) 58)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 57)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43)) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 39)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-284) (-129)) (T -284))
-((-3684 (*1 *2 *1 *1) (-12 (-4 *1 (-284)) (-5 *2 (-108)))) (-3087 (*1 *2 *1) (-12 (-4 *1 (-284)) (-5 *2 (-710)))) (-1227 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-284)))) (-2486 (*1 *1 *1 *1) (-4 *1 (-284))) (-2501 (*1 *1 *1 *1) (-4 *1 (-284))) (-3263 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4102 *1))) (-4 *1 (-284)))) (-3263 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-284)))) (-3331 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-589 *1)) (-4 *1 (-284)))))
-(-13 (-851) (-10 -8 (-15 -3684 ((-108) $ $)) (-15 -3087 ((-710) $)) (-15 -1227 ((-2 (|:| -3429 $) (|:| -3143 $)) $ $)) (-15 -2486 ($ $ $)) (-15 -2501 ($ $ $)) (-15 -3263 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $)) (-15 -3263 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -3331 ((-3 (-589 $) "failed") (-589 $) $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-563 (-794)) . T) ((-158) . T) ((-267) . T) ((-427) . T) ((-515) . T) ((-591 $) . T) ((-657 $) . T) ((-666) . T) ((-851) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-1349 (($ $ (-589 |#2|) (-589 |#2|)) 14) (($ $ |#2| |#2|) NIL) (($ $ (-271 |#2|)) 11) (($ $ (-589 (-271 |#2|))) NIL)))
-(((-285 |#1| |#2|) (-10 -8 (-15 -1349 (|#1| |#1| (-589 (-271 |#2|)))) (-15 -1349 (|#1| |#1| (-271 |#2|))) (-15 -1349 (|#1| |#1| |#2| |#2|)) (-15 -1349 (|#1| |#1| (-589 |#2|) (-589 |#2|)))) (-286 |#2|) (-1016)) (T -285))
-NIL
-(-10 -8 (-15 -1349 (|#1| |#1| (-589 (-271 |#2|)))) (-15 -1349 (|#1| |#1| (-271 |#2|))) (-15 -1349 (|#1| |#1| |#2| |#2|)) (-15 -1349 (|#1| |#1| (-589 |#2|) (-589 |#2|))))
-((-1349 (($ $ (-589 |#1|) (-589 |#1|)) 7) (($ $ |#1| |#1|) 6) (($ $ (-271 |#1|)) 11) (($ $ (-589 (-271 |#1|))) 10)))
-(((-286 |#1|) (-129) (-1016)) (T -286))
-((-1349 (*1 *1 *1 *2) (-12 (-5 *2 (-271 *3)) (-4 *1 (-286 *3)) (-4 *3 (-1016)))) (-1349 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-271 *3))) (-4 *1 (-286 *3)) (-4 *3 (-1016)))))
-(-13 (-484 |t#1| |t#1|) (-10 -8 (-15 -1349 ($ $ (-271 |t#1|))) (-15 -1349 ($ $ (-589 (-271 |t#1|))))))
-(((-484 |#1| |#1|) . T))
-((-1349 ((|#1| (-1 |#1| (-523)) (-1089 (-383 (-523)))) 25)))
-(((-287 |#1|) (-10 -7 (-15 -1349 (|#1| (-1 |#1| (-523)) (-1089 (-383 (-523)))))) (-37 (-383 (-523)))) (T -287))
-((-1349 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-523))) (-5 *4 (-1089 (-383 (-523)))) (-5 *1 (-287 *2)) (-4 *2 (-37 (-383 (-523)))))))
-(-10 -7 (-15 -1349 (|#1| (-1 |#1| (-523)) (-1089 (-383 (-523))))))
-((-3260 (((-108) $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 7)) (-4037 (((-108) $ $) 9)))
-(((-288) (-1016)) (T -288))
-NIL
-(-1016)
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 62)) (-3964 (((-1155 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-284)))) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-840)))) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-840)))) (-3684 (((-108) $ $) NIL)) (-2035 (((-523) $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-759)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-1155 |#1| |#2| |#3| |#4|) "failed") $) NIL) (((-3 (-1087) "failed") $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-964 (-1087)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-964 (-523)))) (((-3 (-523) "failed") $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-964 (-523)))) (((-3 (-1154 |#2| |#3| |#4|) "failed") $) 25)) (-1996 (((-1155 |#1| |#2| |#3| |#4|) $) NIL) (((-1087) $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-964 (-1087)))) (((-383 (-523)) $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-964 (-523)))) (((-523) $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-964 (-523)))) (((-1154 |#2| |#3| |#4|) $) NIL)) (-2501 (($ $ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-1155 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1169 (-1155 |#1| |#2| |#3| |#4|)))) (-629 $) (-1169 $)) NIL) (((-629 (-1155 |#1| |#2| |#3| |#4|)) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-508)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-3702 (((-108) $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-759)))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-817 (-523)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-817 (-355))))) (-3482 (((-108) $) NIL)) (-2364 (($ $) NIL)) (-2164 (((-1155 |#1| |#2| |#3| |#4|) $) 21)) (-1289 (((-3 $ "failed") $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-1063)))) (-4050 (((-108) $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-759)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3268 (($ $ $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-786)))) (-2644 (($ $ $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-786)))) (-3015 (($ (-1 (-1155 |#1| |#2| |#3| |#4|) (-1155 |#1| |#2| |#3| |#4|)) $) NIL)) (-3202 (((-3 (-779 |#2|) "failed") $) 78)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-1063)) CONST)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3934 (($ $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-284)))) (-1250 (((-1155 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-508)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-840)))) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-1349 (($ $ (-589 (-1155 |#1| |#2| |#3| |#4|)) (-589 (-1155 |#1| |#2| |#3| |#4|))) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-286 (-1155 |#1| |#2| |#3| |#4|)))) (($ $ (-1155 |#1| |#2| |#3| |#4|) (-1155 |#1| |#2| |#3| |#4|)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-286 (-1155 |#1| |#2| |#3| |#4|)))) (($ $ (-271 (-1155 |#1| |#2| |#3| |#4|))) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-286 (-1155 |#1| |#2| |#3| |#4|)))) (($ $ (-589 (-271 (-1155 |#1| |#2| |#3| |#4|)))) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-286 (-1155 |#1| |#2| |#3| |#4|)))) (($ $ (-589 (-1087)) (-589 (-1155 |#1| |#2| |#3| |#4|))) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-484 (-1087) (-1155 |#1| |#2| |#3| |#4|)))) (($ $ (-1087) (-1155 |#1| |#2| |#3| |#4|)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-484 (-1087) (-1155 |#1| |#2| |#3| |#4|))))) (-3087 (((-710) $) NIL)) (-1502 (($ $ (-1155 |#1| |#2| |#3| |#4|)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-263 (-1155 |#1| |#2| |#3| |#4|) (-1155 |#1| |#2| |#3| |#4|))))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-4024 (($ $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-211))) (($ $ (-710)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-211))) (($ $ (-1087)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-831 (-1087)))) (($ $ (-1 (-1155 |#1| |#2| |#3| |#4|) (-1155 |#1| |#2| |#3| |#4|)) (-710)) NIL) (($ $ (-1 (-1155 |#1| |#2| |#3| |#4|) (-1155 |#1| |#2| |#3| |#4|))) NIL)) (-3758 (($ $) NIL)) (-2171 (((-1155 |#1| |#2| |#3| |#4|) $) 17)) (-3077 (((-823 (-523)) $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-564 (-823 (-523))))) (((-823 (-355)) $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-564 (-823 (-355))))) (((-499) $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-564 (-499)))) (((-355) $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-949))) (((-203) $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-949)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| (-1155 |#1| |#2| |#3| |#4|) (-840))))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) (($ (-1155 |#1| |#2| |#3| |#4|)) 29) (($ (-1087)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-964 (-1087)))) (($ (-1154 |#2| |#3| |#4|)) 36)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| (-1155 |#1| |#2| |#3| |#4|) (-840))) (|has| (-1155 |#1| |#2| |#3| |#4|) (-134))))) (-1698 (((-710)) NIL)) (-1516 (((-1155 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-508)))) (-3842 (((-108) $ $) NIL)) (-3984 (($ $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-759)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) 41 T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-211))) (($ $ (-710)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-211))) (($ $ (-1087)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-831 (-1087)))) (($ $ (-1 (-1155 |#1| |#2| |#3| |#4|) (-1155 |#1| |#2| |#3| |#4|)) (-710)) NIL) (($ $ (-1 (-1155 |#1| |#2| |#3| |#4|) (-1155 |#1| |#2| |#3| |#4|))) NIL)) (-4078 (((-108) $ $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-786)))) (-4061 (((-108) $ $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-786)))) (-4052 (((-108) $ $) NIL (|has| (-1155 |#1| |#2| |#3| |#4|) (-786)))) (-4125 (($ $ $) 34) (($ (-1155 |#1| |#2| |#3| |#4|) (-1155 |#1| |#2| |#3| |#4|)) 31)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ (-1155 |#1| |#2| |#3| |#4|) $) 30) (($ $ (-1155 |#1| |#2| |#3| |#4|)) NIL)))
-(((-289 |#1| |#2| |#3| |#4|) (-13 (-921 (-1155 |#1| |#2| |#3| |#4|)) (-964 (-1154 |#2| |#3| |#4|)) (-10 -8 (-15 -3202 ((-3 (-779 |#2|) "failed") $)) (-15 -3976 ($ (-1154 |#2| |#3| |#4|))))) (-13 (-786) (-964 (-523)) (-585 (-523)) (-427)) (-13 (-27) (-1109) (-406 |#1|)) (-1087) |#2|) (T -289))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1154 *4 *5 *6)) (-4 *4 (-13 (-27) (-1109) (-406 *3))) (-14 *5 (-1087)) (-14 *6 *4) (-4 *3 (-13 (-786) (-964 (-523)) (-585 (-523)) (-427))) (-5 *1 (-289 *3 *4 *5 *6)))) (-3202 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-786) (-964 (-523)) (-585 (-523)) (-427))) (-5 *2 (-779 *4)) (-5 *1 (-289 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1109) (-406 *3))) (-14 *5 (-1087)) (-14 *6 *4))))
-(-13 (-921 (-1155 |#1| |#2| |#3| |#4|)) (-964 (-1154 |#2| |#3| |#4|)) (-10 -8 (-15 -3202 ((-3 (-779 |#2|) "failed") $)) (-15 -3976 ($ (-1154 |#2| |#3| |#4|)))))
-((-3015 (((-292 |#2|) (-1 |#2| |#1|) (-292 |#1|)) 13)))
-(((-290 |#1| |#2|) (-10 -7 (-15 -3015 ((-292 |#2|) (-1 |#2| |#1|) (-292 |#1|)))) (-786) (-786)) (T -290))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-292 *5)) (-4 *5 (-786)) (-4 *6 (-786)) (-5 *2 (-292 *6)) (-5 *1 (-290 *5 *6)))))
-(-10 -7 (-15 -3015 ((-292 |#2|) (-1 |#2| |#1|) (-292 |#1|))))
-((-3781 (((-51) |#2| (-271 |#2|) (-710)) 33) (((-51) |#2| (-271 |#2|)) 24) (((-51) |#2| (-710)) 28) (((-51) |#2|) 25) (((-51) (-1087)) 21)) (-3223 (((-51) |#2| (-271 |#2|) (-383 (-523))) 51) (((-51) |#2| (-271 |#2|)) 48) (((-51) |#2| (-383 (-523))) 50) (((-51) |#2|) 49) (((-51) (-1087)) 47)) (-3047 (((-51) |#2| (-271 |#2|) (-383 (-523))) 46) (((-51) |#2| (-271 |#2|)) 43) (((-51) |#2| (-383 (-523))) 45) (((-51) |#2|) 44) (((-51) (-1087)) 42)) (-3794 (((-51) |#2| (-271 |#2|) (-523)) 39) (((-51) |#2| (-271 |#2|)) 35) (((-51) |#2| (-523)) 38) (((-51) |#2|) 36) (((-51) (-1087)) 34)))
-(((-291 |#1| |#2|) (-10 -7 (-15 -3781 ((-51) (-1087))) (-15 -3781 ((-51) |#2|)) (-15 -3781 ((-51) |#2| (-710))) (-15 -3781 ((-51) |#2| (-271 |#2|))) (-15 -3781 ((-51) |#2| (-271 |#2|) (-710))) (-15 -3794 ((-51) (-1087))) (-15 -3794 ((-51) |#2|)) (-15 -3794 ((-51) |#2| (-523))) (-15 -3794 ((-51) |#2| (-271 |#2|))) (-15 -3794 ((-51) |#2| (-271 |#2|) (-523))) (-15 -3047 ((-51) (-1087))) (-15 -3047 ((-51) |#2|)) (-15 -3047 ((-51) |#2| (-383 (-523)))) (-15 -3047 ((-51) |#2| (-271 |#2|))) (-15 -3047 ((-51) |#2| (-271 |#2|) (-383 (-523)))) (-15 -3223 ((-51) (-1087))) (-15 -3223 ((-51) |#2|)) (-15 -3223 ((-51) |#2| (-383 (-523)))) (-15 -3223 ((-51) |#2| (-271 |#2|))) (-15 -3223 ((-51) |#2| (-271 |#2|) (-383 (-523))))) (-13 (-427) (-786) (-964 (-523)) (-585 (-523))) (-13 (-27) (-1109) (-406 |#1|))) (T -291))
-((-3223 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-271 *3)) (-5 *5 (-383 (-523))) (-4 *3 (-13 (-27) (-1109) (-406 *6))) (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *6 *3)))) (-3223 (*1 *2 *3 *4) (-12 (-5 *4 (-271 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5))) (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *5 *3)))) (-3223 (*1 *2 *3 *4) (-12 (-5 *4 (-383 (-523))) (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *5 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5))))) (-3223 (*1 *2 *3) (-12 (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *4 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *4))))) (-3223 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *4 *5)) (-4 *5 (-13 (-27) (-1109) (-406 *4))))) (-3047 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-271 *3)) (-5 *5 (-383 (-523))) (-4 *3 (-13 (-27) (-1109) (-406 *6))) (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *6 *3)))) (-3047 (*1 *2 *3 *4) (-12 (-5 *4 (-271 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5))) (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *5 *3)))) (-3047 (*1 *2 *3 *4) (-12 (-5 *4 (-383 (-523))) (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *5 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5))))) (-3047 (*1 *2 *3) (-12 (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *4 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *4))))) (-3047 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *4 *5)) (-4 *5 (-13 (-27) (-1109) (-406 *4))))) (-3794 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-271 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *6))) (-4 *6 (-13 (-427) (-786) (-964 *5) (-585 *5))) (-5 *5 (-523)) (-5 *2 (-51)) (-5 *1 (-291 *6 *3)))) (-3794 (*1 *2 *3 *4) (-12 (-5 *4 (-271 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5))) (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *5 *3)))) (-3794 (*1 *2 *3 *4) (-12 (-5 *4 (-523)) (-4 *5 (-13 (-427) (-786) (-964 *4) (-585 *4))) (-5 *2 (-51)) (-5 *1 (-291 *5 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5))))) (-3794 (*1 *2 *3) (-12 (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *4 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *4))))) (-3794 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *4 *5)) (-4 *5 (-13 (-27) (-1109) (-406 *4))))) (-3781 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-271 *3)) (-5 *5 (-710)) (-4 *3 (-13 (-27) (-1109) (-406 *6))) (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *6 *3)))) (-3781 (*1 *2 *3 *4) (-12 (-5 *4 (-271 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5))) (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *5 *3)))) (-3781 (*1 *2 *3 *4) (-12 (-5 *4 (-710)) (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *5 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5))))) (-3781 (*1 *2 *3) (-12 (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *4 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *4))))) (-3781 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-291 *4 *5)) (-4 *5 (-13 (-27) (-1109) (-406 *4))))))
-(-10 -7 (-15 -3781 ((-51) (-1087))) (-15 -3781 ((-51) |#2|)) (-15 -3781 ((-51) |#2| (-710))) (-15 -3781 ((-51) |#2| (-271 |#2|))) (-15 -3781 ((-51) |#2| (-271 |#2|) (-710))) (-15 -3794 ((-51) (-1087))) (-15 -3794 ((-51) |#2|)) (-15 -3794 ((-51) |#2| (-523))) (-15 -3794 ((-51) |#2| (-271 |#2|))) (-15 -3794 ((-51) |#2| (-271 |#2|) (-523))) (-15 -3047 ((-51) (-1087))) (-15 -3047 ((-51) |#2|)) (-15 -3047 ((-51) |#2| (-383 (-523)))) (-15 -3047 ((-51) |#2| (-271 |#2|))) (-15 -3047 ((-51) |#2| (-271 |#2|) (-383 (-523)))) (-15 -3223 ((-51) (-1087))) (-15 -3223 ((-51) |#2|)) (-15 -3223 ((-51) |#2| (-383 (-523)))) (-15 -3223 ((-51) |#2| (-271 |#2|))) (-15 -3223 ((-51) |#2| (-271 |#2|) (-383 (-523)))))
-((-3260 (((-108) $ $) NIL)) (-4090 (((-589 $) $ (-1087)) NIL (|has| |#1| (-515))) (((-589 $) $) NIL (|has| |#1| (-515))) (((-589 $) (-1083 $) (-1087)) NIL (|has| |#1| (-515))) (((-589 $) (-1083 $)) NIL (|has| |#1| (-515))) (((-589 $) (-883 $)) NIL (|has| |#1| (-515)))) (-3472 (($ $ (-1087)) NIL (|has| |#1| (-515))) (($ $) NIL (|has| |#1| (-515))) (($ (-1083 $) (-1087)) NIL (|has| |#1| (-515))) (($ (-1083 $)) NIL (|has| |#1| (-515))) (($ (-883 $)) NIL (|has| |#1| (-515)))) (-2388 (((-108) $) 27 (-3255 (|has| |#1| (-25)) (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973)))))) (-3716 (((-589 (-1087)) $) 348)) (-3540 (((-383 (-1083 $)) $ (-562 $)) NIL (|has| |#1| (-515)))) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-2394 (((-589 (-562 $)) $) NIL)) (-3695 (($ $) 157 (|has| |#1| (-515)))) (-2608 (($ $) 133 (|has| |#1| (-515)))) (-4098 (($ $ (-1009 $)) 218 (|has| |#1| (-515))) (($ $ (-1087)) 214 (|has| |#1| (-515)))) (-2999 (((-3 $ "failed") $ $) NIL (-3255 (|has| |#1| (-21)) (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973)))))) (-3834 (($ $ (-271 $)) NIL) (($ $ (-589 (-271 $))) 365) (($ $ (-589 (-562 $)) (-589 $)) 409)) (-2319 (((-394 (-1083 $)) (-1083 $)) 292 (-12 (|has| |#1| (-427)) (|has| |#1| (-515))))) (-3763 (($ $) NIL (|has| |#1| (-515)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-515)))) (-3584 (($ $) NIL (|has| |#1| (-515)))) (-3684 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3669 (($ $) 153 (|has| |#1| (-515)))) (-2588 (($ $) 129 (|has| |#1| (-515)))) (-3561 (($ $ (-523)) 65 (|has| |#1| (-515)))) (-3717 (($ $) 161 (|has| |#1| (-515)))) (-2629 (($ $) 137 (|has| |#1| (-515)))) (-1640 (($) NIL (-3255 (|has| |#1| (-25)) (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))) (|has| |#1| (-1028))) CONST)) (-1258 (((-589 $) $ (-1087)) NIL (|has| |#1| (-515))) (((-589 $) $) NIL (|has| |#1| (-515))) (((-589 $) (-1083 $) (-1087)) NIL (|has| |#1| (-515))) (((-589 $) (-1083 $)) NIL (|has| |#1| (-515))) (((-589 $) (-883 $)) NIL (|has| |#1| (-515)))) (-2167 (($ $ (-1087)) NIL (|has| |#1| (-515))) (($ $) NIL (|has| |#1| (-515))) (($ (-1083 $) (-1087)) 120 (|has| |#1| (-515))) (($ (-1083 $)) NIL (|has| |#1| (-515))) (($ (-883 $)) NIL (|has| |#1| (-515)))) (-2898 (((-3 (-562 $) "failed") $) 17) (((-3 (-1087) "failed") $) NIL) (((-3 |#1| "failed") $) 418) (((-3 (-47) "failed") $) 320 (-12 (|has| |#1| (-515)) (|has| |#1| (-964 (-523))))) (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-383 (-883 |#1|)) "failed") $) NIL (|has| |#1| (-515))) (((-3 (-883 |#1|) "failed") $) NIL (|has| |#1| (-973))) (((-3 (-383 (-523)) "failed") $) 46 (-3255 (-12 (|has| |#1| (-515)) (|has| |#1| (-964 (-523)))) (|has| |#1| (-964 (-383 (-523))))))) (-1996 (((-562 $) $) 11) (((-1087) $) NIL) ((|#1| $) 400) (((-47) $) NIL (-12 (|has| |#1| (-515)) (|has| |#1| (-964 (-523))))) (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-383 (-883 |#1|)) $) NIL (|has| |#1| (-515))) (((-883 |#1|) $) NIL (|has| |#1| (-973))) (((-383 (-523)) $) 303 (-3255 (-12 (|has| |#1| (-515)) (|has| |#1| (-964 (-523)))) (|has| |#1| (-964 (-383 (-523))))))) (-2501 (($ $ $) NIL (|has| |#1| (-515)))) (-2203 (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) 113 (|has| |#1| (-973))) (((-629 |#1|) (-629 $)) 103 (|has| |#1| (-973))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973)))) (((-629 (-523)) (-629 $)) NIL (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))))) (-1830 (($ $) 85 (|has| |#1| (-515)))) (-4211 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))) (|has| |#1| (-1028))))) (-2486 (($ $ $) NIL (|has| |#1| (-515)))) (-2996 (($ $ (-1009 $)) 222 (|has| |#1| (-515))) (($ $ (-1087)) 220 (|has| |#1| (-515)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#1| (-515)))) (-1330 (((-108) $) NIL (|has| |#1| (-515)))) (-2431 (($ $ $) 188 (|has| |#1| (-515)))) (-2188 (($) 123 (|has| |#1| (-515)))) (-4080 (($ $ $) 208 (|has| |#1| (-515)))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 371 (|has| |#1| (-817 (-523)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 378 (|has| |#1| (-817 (-355))))) (-4035 (($ $) NIL) (($ (-589 $)) NIL)) (-2856 (((-589 (-110)) $) NIL)) (-1564 (((-110) (-110)) 263)) (-3482 (((-108) $) 25 (-3255 (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))) (|has| |#1| (-1028))))) (-2126 (((-108) $) NIL (|has| $ (-964 (-523))))) (-2364 (($ $) 67 (|has| |#1| (-973)))) (-2164 (((-1039 |#1| (-562 $)) $) 80 (|has| |#1| (-973)))) (-3360 (((-108) $) 47 (|has| |#1| (-515)))) (-1324 (($ $ (-523)) NIL (|has| |#1| (-515)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-515)))) (-4016 (((-1083 $) (-562 $)) 264 (|has| $ (-973)))) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3015 (($ (-1 $ $) (-562 $)) 405)) (-2215 (((-3 (-562 $) "failed") $) NIL)) (-2062 (($ $) 127 (|has| |#1| (-515)))) (-2652 (($ $) 233 (|has| |#1| (-515)))) (-2012 (($ (-589 $)) NIL (|has| |#1| (-515))) (($ $ $) NIL (|has| |#1| (-515)))) (-3841 (((-1070) $) NIL)) (-3526 (((-589 (-562 $)) $) 49)) (-2217 (($ (-110) $) NIL) (($ (-110) (-589 $)) 410)) (-3818 (((-3 (-589 $) "failed") $) NIL (|has| |#1| (-1028)))) (-3372 (((-3 (-2 (|:| |val| $) (|:| -3262 (-523))) "failed") $) NIL (|has| |#1| (-973)))) (-1973 (((-3 (-589 $) "failed") $) 413 (|has| |#1| (-25)))) (-2695 (((-3 (-2 (|:| -2275 (-523)) (|:| |var| (-562 $))) "failed") $) 417 (|has| |#1| (-25)))) (-3719 (((-3 (-2 (|:| |var| (-562 $)) (|:| -3262 (-523))) "failed") $) NIL (|has| |#1| (-1028))) (((-3 (-2 (|:| |var| (-562 $)) (|:| -3262 (-523))) "failed") $ (-110)) NIL (|has| |#1| (-973))) (((-3 (-2 (|:| |var| (-562 $)) (|:| -3262 (-523))) "failed") $ (-1087)) NIL (|has| |#1| (-973)))) (-2676 (((-108) $ (-110)) NIL) (((-108) $ (-1087)) 53)) (-3071 (($ $) NIL (-3255 (|has| |#1| (-448)) (|has| |#1| (-515))))) (-1777 (($ $ (-1087)) 237 (|has| |#1| (-515))) (($ $ (-1009 $)) 239 (|has| |#1| (-515)))) (-1942 (((-710) $) NIL)) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) 43)) (-3095 ((|#1| $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 285 (|has| |#1| (-515)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-515))) (($ $ $) NIL (|has| |#1| (-515)))) (-3791 (((-108) $ $) NIL) (((-108) $ (-1087)) NIL)) (-3872 (($ $ (-1087)) 212 (|has| |#1| (-515))) (($ $) 210 (|has| |#1| (-515)))) (-1763 (($ $) 204 (|has| |#1| (-515)))) (-4034 (((-394 (-1083 $)) (-1083 $)) 290 (-12 (|has| |#1| (-427)) (|has| |#1| (-515))))) (-3573 (((-394 $) $) NIL (|has| |#1| (-515)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-515))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-515)))) (-2469 (((-3 $ "failed") $ $) NIL (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-515)))) (-1847 (($ $) 125 (|has| |#1| (-515)))) (-3775 (((-108) $) NIL (|has| $ (-964 (-523))))) (-1349 (($ $ (-562 $) $) NIL) (($ $ (-589 (-562 $)) (-589 $)) 404) (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-589 (-1087)) (-589 (-1 $ $))) NIL) (($ $ (-589 (-1087)) (-589 (-1 $ (-589 $)))) NIL) (($ $ (-1087) (-1 $ (-589 $))) NIL) (($ $ (-1087) (-1 $ $)) NIL) (($ $ (-589 (-110)) (-589 (-1 $ $))) 358) (($ $ (-589 (-110)) (-589 (-1 $ (-589 $)))) NIL) (($ $ (-110) (-1 $ (-589 $))) NIL) (($ $ (-110) (-1 $ $)) NIL) (($ $ (-1087)) NIL (|has| |#1| (-564 (-499)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-564 (-499)))) (($ $) NIL (|has| |#1| (-564 (-499)))) (($ $ (-110) $ (-1087)) 346 (|has| |#1| (-564 (-499)))) (($ $ (-589 (-110)) (-589 $) (-1087)) 345 (|has| |#1| (-564 (-499)))) (($ $ (-589 (-1087)) (-589 (-710)) (-589 (-1 $ $))) NIL (|has| |#1| (-973))) (($ $ (-589 (-1087)) (-589 (-710)) (-589 (-1 $ (-589 $)))) NIL (|has| |#1| (-973))) (($ $ (-1087) (-710) (-1 $ (-589 $))) NIL (|has| |#1| (-973))) (($ $ (-1087) (-710) (-1 $ $)) NIL (|has| |#1| (-973)))) (-3087 (((-710) $) NIL (|has| |#1| (-515)))) (-2028 (($ $) 225 (|has| |#1| (-515)))) (-1502 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-589 $)) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-515)))) (-2404 (($ $) NIL) (($ $ $) NIL)) (-2550 (($ $) 235 (|has| |#1| (-515)))) (-3959 (($ $) 186 (|has| |#1| (-515)))) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-973))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-973))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-973))) (($ $ (-1087)) NIL (|has| |#1| (-973)))) (-3758 (($ $) 68 (|has| |#1| (-515)))) (-2171 (((-1039 |#1| (-562 $)) $) 82 (|has| |#1| (-515)))) (-3399 (($ $) 301 (|has| $ (-973)))) (-3730 (($ $) 163 (|has| |#1| (-515)))) (-2641 (($ $) 139 (|has| |#1| (-515)))) (-3707 (($ $) 159 (|has| |#1| (-515)))) (-2617 (($ $) 135 (|has| |#1| (-515)))) (-3683 (($ $) 155 (|has| |#1| (-515)))) (-2598 (($ $) 131 (|has| |#1| (-515)))) (-3077 (((-823 (-523)) $) NIL (|has| |#1| (-564 (-823 (-523))))) (((-823 (-355)) $) NIL (|has| |#1| (-564 (-823 (-355))))) (($ (-394 $)) NIL (|has| |#1| (-515))) (((-499) $) 343 (|has| |#1| (-564 (-499))))) (-1308 (($ $ $) NIL (|has| |#1| (-448)))) (-2306 (($ $ $) NIL (|has| |#1| (-448)))) (-3976 (((-794) $) 403) (($ (-562 $)) 394) (($ (-1087)) 360) (($ |#1|) 321) (($ $) NIL (|has| |#1| (-515))) (($ (-47)) 296 (-12 (|has| |#1| (-515)) (|has| |#1| (-964 (-523))))) (($ (-1039 |#1| (-562 $))) 84 (|has| |#1| (-973))) (($ (-383 |#1|)) NIL (|has| |#1| (-515))) (($ (-883 (-383 |#1|))) NIL (|has| |#1| (-515))) (($ (-383 (-883 (-383 |#1|)))) NIL (|has| |#1| (-515))) (($ (-383 (-883 |#1|))) NIL (|has| |#1| (-515))) (($ (-883 |#1|)) NIL (|has| |#1| (-973))) (($ (-383 (-523))) NIL (-3255 (|has| |#1| (-515)) (|has| |#1| (-964 (-383 (-523)))))) (($ (-523)) 34 (-3255 (|has| |#1| (-964 (-523))) (|has| |#1| (-973))))) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) NIL (|has| |#1| (-973)))) (-4114 (($ $) NIL) (($ (-589 $)) NIL)) (-1475 (($ $ $) 206 (|has| |#1| (-515)))) (-2985 (($ $ $) 192 (|has| |#1| (-515)))) (-3558 (($ $ $) 196 (|has| |#1| (-515)))) (-3198 (($ $ $) 190 (|has| |#1| (-515)))) (-1278 (($ $ $) 194 (|has| |#1| (-515)))) (-1651 (((-108) (-110)) 9)) (-3768 (($ $) 169 (|has| |#1| (-515)))) (-2680 (($ $) 145 (|has| |#1| (-515)))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3743 (($ $) 165 (|has| |#1| (-515)))) (-2655 (($ $) 141 (|has| |#1| (-515)))) (-3793 (($ $) 173 (|has| |#1| (-515)))) (-3645 (($ $) 149 (|has| |#1| (-515)))) (-3840 (($ (-1087) $) NIL) (($ (-1087) $ $) NIL) (($ (-1087) $ $ $) NIL) (($ (-1087) $ $ $ $) NIL) (($ (-1087) (-589 $)) NIL)) (-3506 (($ $) 200 (|has| |#1| (-515)))) (-2773 (($ $) 198 (|has| |#1| (-515)))) (-3135 (($ $) 175 (|has| |#1| (-515)))) (-3657 (($ $) 151 (|has| |#1| (-515)))) (-3780 (($ $) 171 (|has| |#1| (-515)))) (-3632 (($ $) 147 (|has| |#1| (-515)))) (-3756 (($ $) 167 (|has| |#1| (-515)))) (-2667 (($ $) 143 (|has| |#1| (-515)))) (-3984 (($ $) 178 (|has| |#1| (-515)))) (-2573 (($ $ (-523)) NIL (-3255 (|has| |#1| (-448)) (|has| |#1| (-515)))) (($ $ (-710)) NIL (-3255 (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))) (|has| |#1| (-1028)))) (($ $ (-852)) NIL (-3255 (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))) (|has| |#1| (-1028))))) (-1428 (($) 20 (-3255 (|has| |#1| (-25)) (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973)))) CONST)) (-1692 (($ $) 229 (|has| |#1| (-515)))) (-1440 (($) 22 (-3255 (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))) (|has| |#1| (-1028))) CONST)) (-3034 (($ $) 180 (|has| |#1| (-515))) (($ $ $) 182 (|has| |#1| (-515)))) (-2409 (($ $) 227 (|has| |#1| (-515)))) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-973))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-973))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-973))) (($ $ (-1087)) NIL (|has| |#1| (-973)))) (-3625 (($ $) 231 (|has| |#1| (-515)))) (-3364 (($ $ $) 184 (|has| |#1| (-515)))) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 77)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 76)) (-4125 (($ (-1039 |#1| (-562 $)) (-1039 |#1| (-562 $))) 94 (|has| |#1| (-515))) (($ $ $) 42 (-3255 (|has| |#1| (-448)) (|has| |#1| (-515))))) (-4115 (($ $ $) 40 (-3255 (|has| |#1| (-21)) (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))))) (($ $) 29 (-3255 (|has| |#1| (-21)) (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973)))))) (-4103 (($ $ $) 38 (-3255 (|has| |#1| (-25)) (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973)))))) (** (($ $ $) 62 (|has| |#1| (-515))) (($ $ (-383 (-523))) 298 (|has| |#1| (-515))) (($ $ (-523)) 72 (-3255 (|has| |#1| (-448)) (|has| |#1| (-515)))) (($ $ (-710)) 69 (-3255 (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))) (|has| |#1| (-1028)))) (($ $ (-852)) 74 (-3255 (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))) (|has| |#1| (-1028))))) (* (($ (-383 (-523)) $) NIL (|has| |#1| (-515))) (($ $ (-383 (-523))) NIL (|has| |#1| (-515))) (($ |#1| $) NIL (|has| |#1| (-158))) (($ $ |#1|) NIL (|has| |#1| (-158))) (($ $ $) 36 (-3255 (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))) (|has| |#1| (-1028)))) (($ (-523) $) 32 (-3255 (|has| |#1| (-21)) (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))))) (($ (-710) $) NIL (-3255 (|has| |#1| (-25)) (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))))) (($ (-852) $) NIL (-3255 (|has| |#1| (-25)) (-12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973)))))))
-(((-292 |#1|) (-13 (-406 |#1|) (-10 -8 (IF (|has| |#1| (-515)) (PROGN (-6 (-29 |#1|)) (-6 (-1109)) (-6 (-147)) (-6 (-575)) (-6 (-1051)) (-15 -1830 ($ $)) (-15 -3360 ((-108) $)) (-15 -3561 ($ $ (-523))) (IF (|has| |#1| (-427)) (PROGN (-15 -4034 ((-394 (-1083 $)) (-1083 $))) (-15 -2319 ((-394 (-1083 $)) (-1083 $)))) |%noBranch|) (IF (|has| |#1| (-964 (-523))) (-6 (-964 (-47))) |%noBranch|)) |%noBranch|))) (-786)) (T -292))
-((-1830 (*1 *1 *1) (-12 (-5 *1 (-292 *2)) (-4 *2 (-515)) (-4 *2 (-786)))) (-3360 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-292 *3)) (-4 *3 (-515)) (-4 *3 (-786)))) (-3561 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-292 *3)) (-4 *3 (-515)) (-4 *3 (-786)))) (-4034 (*1 *2 *3) (-12 (-5 *2 (-394 (-1083 *1))) (-5 *1 (-292 *4)) (-5 *3 (-1083 *1)) (-4 *4 (-427)) (-4 *4 (-515)) (-4 *4 (-786)))) (-2319 (*1 *2 *3) (-12 (-5 *2 (-394 (-1083 *1))) (-5 *1 (-292 *4)) (-5 *3 (-1083 *1)) (-4 *4 (-427)) (-4 *4 (-515)) (-4 *4 (-786)))))
-(-13 (-406 |#1|) (-10 -8 (IF (|has| |#1| (-515)) (PROGN (-6 (-29 |#1|)) (-6 (-1109)) (-6 (-147)) (-6 (-575)) (-6 (-1051)) (-15 -1830 ($ $)) (-15 -3360 ((-108) $)) (-15 -3561 ($ $ (-523))) (IF (|has| |#1| (-427)) (PROGN (-15 -4034 ((-394 (-1083 $)) (-1083 $))) (-15 -2319 ((-394 (-1083 $)) (-1083 $)))) |%noBranch|) (IF (|has| |#1| (-964 (-523))) (-6 (-964 (-47))) |%noBranch|)) |%noBranch|)))
-((-2595 (((-51) |#2| (-110) (-271 |#2|) (-589 |#2|)) 88) (((-51) |#2| (-110) (-271 |#2|) (-271 |#2|)) 84) (((-51) |#2| (-110) (-271 |#2|) |#2|) 86) (((-51) (-271 |#2|) (-110) (-271 |#2|) |#2|) 87) (((-51) (-589 |#2|) (-589 (-110)) (-271 |#2|) (-589 (-271 |#2|))) 80) (((-51) (-589 |#2|) (-589 (-110)) (-271 |#2|) (-589 |#2|)) 82) (((-51) (-589 (-271 |#2|)) (-589 (-110)) (-271 |#2|) (-589 |#2|)) 83) (((-51) (-589 (-271 |#2|)) (-589 (-110)) (-271 |#2|) (-589 (-271 |#2|))) 81) (((-51) (-271 |#2|) (-110) (-271 |#2|) (-589 |#2|)) 89) (((-51) (-271 |#2|) (-110) (-271 |#2|) (-271 |#2|)) 85)))
-(((-293 |#1| |#2|) (-10 -7 (-15 -2595 ((-51) (-271 |#2|) (-110) (-271 |#2|) (-271 |#2|))) (-15 -2595 ((-51) (-271 |#2|) (-110) (-271 |#2|) (-589 |#2|))) (-15 -2595 ((-51) (-589 (-271 |#2|)) (-589 (-110)) (-271 |#2|) (-589 (-271 |#2|)))) (-15 -2595 ((-51) (-589 (-271 |#2|)) (-589 (-110)) (-271 |#2|) (-589 |#2|))) (-15 -2595 ((-51) (-589 |#2|) (-589 (-110)) (-271 |#2|) (-589 |#2|))) (-15 -2595 ((-51) (-589 |#2|) (-589 (-110)) (-271 |#2|) (-589 (-271 |#2|)))) (-15 -2595 ((-51) (-271 |#2|) (-110) (-271 |#2|) |#2|)) (-15 -2595 ((-51) |#2| (-110) (-271 |#2|) |#2|)) (-15 -2595 ((-51) |#2| (-110) (-271 |#2|) (-271 |#2|))) (-15 -2595 ((-51) |#2| (-110) (-271 |#2|) (-589 |#2|)))) (-13 (-786) (-515) (-564 (-499))) (-406 |#1|)) (T -293))
-((-2595 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-110)) (-5 *5 (-271 *3)) (-5 *6 (-589 *3)) (-4 *3 (-406 *7)) (-4 *7 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51)) (-5 *1 (-293 *7 *3)))) (-2595 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-110)) (-5 *5 (-271 *3)) (-4 *3 (-406 *6)) (-4 *6 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51)) (-5 *1 (-293 *6 *3)))) (-2595 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-110)) (-5 *5 (-271 *3)) (-4 *3 (-406 *6)) (-4 *6 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51)) (-5 *1 (-293 *6 *3)))) (-2595 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-271 *5)) (-5 *4 (-110)) (-4 *5 (-406 *6)) (-4 *6 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51)) (-5 *1 (-293 *6 *5)))) (-2595 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-589 *8)) (-5 *4 (-589 (-110))) (-5 *6 (-589 (-271 *8))) (-4 *8 (-406 *7)) (-5 *5 (-271 *8)) (-4 *7 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51)) (-5 *1 (-293 *7 *8)))) (-2595 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-589 *7)) (-5 *4 (-589 (-110))) (-5 *5 (-271 *7)) (-4 *7 (-406 *6)) (-4 *6 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51)) (-5 *1 (-293 *6 *7)))) (-2595 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-589 (-271 *8))) (-5 *4 (-589 (-110))) (-5 *5 (-271 *8)) (-5 *6 (-589 *8)) (-4 *8 (-406 *7)) (-4 *7 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51)) (-5 *1 (-293 *7 *8)))) (-2595 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-589 (-271 *7))) (-5 *4 (-589 (-110))) (-5 *5 (-271 *7)) (-4 *7 (-406 *6)) (-4 *6 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51)) (-5 *1 (-293 *6 *7)))) (-2595 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-271 *7)) (-5 *4 (-110)) (-5 *5 (-589 *7)) (-4 *7 (-406 *6)) (-4 *6 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51)) (-5 *1 (-293 *6 *7)))) (-2595 (*1 *2 *3 *4 *3 *3) (-12 (-5 *3 (-271 *6)) (-5 *4 (-110)) (-4 *6 (-406 *5)) (-4 *5 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51)) (-5 *1 (-293 *5 *6)))))
-(-10 -7 (-15 -2595 ((-51) (-271 |#2|) (-110) (-271 |#2|) (-271 |#2|))) (-15 -2595 ((-51) (-271 |#2|) (-110) (-271 |#2|) (-589 |#2|))) (-15 -2595 ((-51) (-589 (-271 |#2|)) (-589 (-110)) (-271 |#2|) (-589 (-271 |#2|)))) (-15 -2595 ((-51) (-589 (-271 |#2|)) (-589 (-110)) (-271 |#2|) (-589 |#2|))) (-15 -2595 ((-51) (-589 |#2|) (-589 (-110)) (-271 |#2|) (-589 |#2|))) (-15 -2595 ((-51) (-589 |#2|) (-589 (-110)) (-271 |#2|) (-589 (-271 |#2|)))) (-15 -2595 ((-51) (-271 |#2|) (-110) (-271 |#2|) |#2|)) (-15 -2595 ((-51) |#2| (-110) (-271 |#2|) |#2|)) (-15 -2595 ((-51) |#2| (-110) (-271 |#2|) (-271 |#2|))) (-15 -2595 ((-51) |#2| (-110) (-271 |#2|) (-589 |#2|))))
-((-2360 (((-1119 (-857)) (-292 (-523)) (-292 (-523)) (-292 (-523)) (-1 (-203) (-203)) (-1011 (-203)) (-203) (-523) (-1070)) 46) (((-1119 (-857)) (-292 (-523)) (-292 (-523)) (-292 (-523)) (-1 (-203) (-203)) (-1011 (-203)) (-203) (-523)) 47) (((-1119 (-857)) (-292 (-523)) (-292 (-523)) (-292 (-523)) (-1 (-203) (-203)) (-1011 (-203)) (-1 (-203) (-203)) (-523) (-1070)) 43) (((-1119 (-857)) (-292 (-523)) (-292 (-523)) (-292 (-523)) (-1 (-203) (-203)) (-1011 (-203)) (-1 (-203) (-203)) (-523)) 44)) (-2124 (((-1 (-203) (-203)) (-203)) 45)))
-(((-294) (-10 -7 (-15 -2124 ((-1 (-203) (-203)) (-203))) (-15 -2360 ((-1119 (-857)) (-292 (-523)) (-292 (-523)) (-292 (-523)) (-1 (-203) (-203)) (-1011 (-203)) (-1 (-203) (-203)) (-523))) (-15 -2360 ((-1119 (-857)) (-292 (-523)) (-292 (-523)) (-292 (-523)) (-1 (-203) (-203)) (-1011 (-203)) (-1 (-203) (-203)) (-523) (-1070))) (-15 -2360 ((-1119 (-857)) (-292 (-523)) (-292 (-523)) (-292 (-523)) (-1 (-203) (-203)) (-1011 (-203)) (-203) (-523))) (-15 -2360 ((-1119 (-857)) (-292 (-523)) (-292 (-523)) (-292 (-523)) (-1 (-203) (-203)) (-1011 (-203)) (-203) (-523) (-1070))))) (T -294))
-((-2360 (*1 *2 *3 *3 *3 *4 *5 *6 *7 *8) (-12 (-5 *3 (-292 (-523))) (-5 *4 (-1 (-203) (-203))) (-5 *5 (-1011 (-203))) (-5 *6 (-203)) (-5 *7 (-523)) (-5 *8 (-1070)) (-5 *2 (-1119 (-857))) (-5 *1 (-294)))) (-2360 (*1 *2 *3 *3 *3 *4 *5 *6 *7) (-12 (-5 *3 (-292 (-523))) (-5 *4 (-1 (-203) (-203))) (-5 *5 (-1011 (-203))) (-5 *6 (-203)) (-5 *7 (-523)) (-5 *2 (-1119 (-857))) (-5 *1 (-294)))) (-2360 (*1 *2 *3 *3 *3 *4 *5 *4 *6 *7) (-12 (-5 *3 (-292 (-523))) (-5 *4 (-1 (-203) (-203))) (-5 *5 (-1011 (-203))) (-5 *6 (-523)) (-5 *7 (-1070)) (-5 *2 (-1119 (-857))) (-5 *1 (-294)))) (-2360 (*1 *2 *3 *3 *3 *4 *5 *4 *6) (-12 (-5 *3 (-292 (-523))) (-5 *4 (-1 (-203) (-203))) (-5 *5 (-1011 (-203))) (-5 *6 (-523)) (-5 *2 (-1119 (-857))) (-5 *1 (-294)))) (-2124 (*1 *2 *3) (-12 (-5 *2 (-1 (-203) (-203))) (-5 *1 (-294)) (-5 *3 (-203)))))
-(-10 -7 (-15 -2124 ((-1 (-203) (-203)) (-203))) (-15 -2360 ((-1119 (-857)) (-292 (-523)) (-292 (-523)) (-292 (-523)) (-1 (-203) (-203)) (-1011 (-203)) (-1 (-203) (-203)) (-523))) (-15 -2360 ((-1119 (-857)) (-292 (-523)) (-292 (-523)) (-292 (-523)) (-1 (-203) (-203)) (-1011 (-203)) (-1 (-203) (-203)) (-523) (-1070))) (-15 -2360 ((-1119 (-857)) (-292 (-523)) (-292 (-523)) (-292 (-523)) (-1 (-203) (-203)) (-1011 (-203)) (-203) (-523))) (-15 -2360 ((-1119 (-857)) (-292 (-523)) (-292 (-523)) (-292 (-523)) (-1 (-203) (-203)) (-1011 (-203)) (-203) (-523) (-1070))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 25)) (-3716 (((-589 (-1001)) $) NIL)) (-2354 (((-1087) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-1756 (($ $ (-383 (-523))) NIL) (($ $ (-383 (-523)) (-383 (-523))) NIL)) (-2736 (((-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#1|))) $) 20)) (-3695 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL (|has| |#1| (-339)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3584 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3684 (((-108) $ $) NIL (|has| |#1| (-339)))) (-3669 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3223 (($ (-710) (-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#1|)))) NIL)) (-3717 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) NIL T CONST)) (-2501 (($ $ $) NIL (|has| |#1| (-339)))) (-3142 (($ $) 32)) (-4211 (((-3 $ "failed") $) NIL)) (-2486 (($ $ $) NIL (|has| |#1| (-339)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#1| (-339)))) (-1330 (((-108) $) NIL (|has| |#1| (-339)))) (-2294 (((-108) $) NIL)) (-2188 (($) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1500 (((-383 (-523)) $) NIL) (((-383 (-523)) $ (-383 (-523))) 16)) (-3482 (((-108) $) NIL)) (-1324 (($ $ (-523)) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3059 (($ $ (-852)) NIL) (($ $ (-383 (-523))) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-383 (-523))) NIL) (($ $ (-1001) (-383 (-523))) NIL) (($ $ (-589 (-1001)) (-589 (-383 (-523)))) NIL)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-2062 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL (|has| |#1| (-339)))) (-2669 (($ $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087)) NIL (-3255 (-12 (|has| |#1| (-15 -2669 (|#1| |#1| (-1087)))) (|has| |#1| (-15 -3716 ((-589 (-1087)) |#1|))) (|has| |#1| (-37 (-383 (-523))))) (-12 (|has| |#1| (-29 (-523))) (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-889)) (|has| |#1| (-1109)))))) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-339)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3573 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-1361 (($ $ (-383 (-523))) NIL)) (-2469 (((-3 $ "failed") $ $) NIL (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-3958 (((-383 (-523)) $) 17)) (-2960 (($ (-1154 |#1| |#2| |#3|)) 11)) (-3262 (((-1154 |#1| |#2| |#3|) $) 12)) (-1847 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1349 (((-1068 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-383 (-523))))))) (-3087 (((-710) $) NIL (|has| |#1| (-339)))) (-1502 ((|#1| $ (-383 (-523))) NIL) (($ $ $) NIL (|has| (-383 (-523)) (-1028)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (-1487 (((-383 (-523)) $) NIL)) (-3730 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3749 (($ $) 10)) (-3976 (((-794) $) 38) (($ (-523)) NIL) (($ |#1|) NIL (|has| |#1| (-158))) (($ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $) NIL (|has| |#1| (-515)))) (-1234 ((|#1| $ (-383 (-523))) 30)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) NIL)) (-3882 ((|#1| $) NIL)) (-3768 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3743 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2523 ((|#1| $ (-383 (-523))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-383 (-523))))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-3135 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339)))) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 27)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 33)) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))))
-(((-295 |#1| |#2| |#3|) (-13 (-1150 |#1|) (-731) (-10 -8 (-15 -2960 ($ (-1154 |#1| |#2| |#3|))) (-15 -3262 ((-1154 |#1| |#2| |#3|) $)) (-15 -3958 ((-383 (-523)) $)))) (-13 (-339) (-786)) (-1087) |#1|) (T -295))
-((-2960 (*1 *1 *2) (-12 (-5 *2 (-1154 *3 *4 *5)) (-4 *3 (-13 (-339) (-786))) (-14 *4 (-1087)) (-14 *5 *3) (-5 *1 (-295 *3 *4 *5)))) (-3262 (*1 *2 *1) (-12 (-5 *2 (-1154 *3 *4 *5)) (-5 *1 (-295 *3 *4 *5)) (-4 *3 (-13 (-339) (-786))) (-14 *4 (-1087)) (-14 *5 *3))) (-3958 (*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-295 *3 *4 *5)) (-4 *3 (-13 (-339) (-786))) (-14 *4 (-1087)) (-14 *5 *3))))
-(-13 (-1150 |#1|) (-731) (-10 -8 (-15 -2960 ($ (-1154 |#1| |#2| |#3|))) (-15 -3262 ((-1154 |#1| |#2| |#3|) $)) (-15 -3958 ((-383 (-523)) $))))
-((-1324 (((-2 (|:| -3262 (-710)) (|:| -2275 |#1|) (|:| |radicand| (-589 |#1|))) (-394 |#1|) (-710)) 24)) (-2062 (((-589 (-2 (|:| -2275 (-710)) (|:| |logand| |#1|))) (-394 |#1|)) 28)))
-(((-296 |#1|) (-10 -7 (-15 -1324 ((-2 (|:| -3262 (-710)) (|:| -2275 |#1|) (|:| |radicand| (-589 |#1|))) (-394 |#1|) (-710))) (-15 -2062 ((-589 (-2 (|:| -2275 (-710)) (|:| |logand| |#1|))) (-394 |#1|)))) (-515)) (T -296))
-((-2062 (*1 *2 *3) (-12 (-5 *3 (-394 *4)) (-4 *4 (-515)) (-5 *2 (-589 (-2 (|:| -2275 (-710)) (|:| |logand| *4)))) (-5 *1 (-296 *4)))) (-1324 (*1 *2 *3 *4) (-12 (-5 *3 (-394 *5)) (-4 *5 (-515)) (-5 *2 (-2 (|:| -3262 (-710)) (|:| -2275 *5) (|:| |radicand| (-589 *5)))) (-5 *1 (-296 *5)) (-5 *4 (-710)))))
-(-10 -7 (-15 -1324 ((-2 (|:| -3262 (-710)) (|:| -2275 |#1|) (|:| |radicand| (-589 |#1|))) (-394 |#1|) (-710))) (-15 -2062 ((-589 (-2 (|:| -2275 (-710)) (|:| |logand| |#1|))) (-394 |#1|))))
-((-3716 (((-589 |#2|) (-1083 |#4|)) 43)) (-1373 ((|#3| (-523)) 46)) (-2433 (((-1083 |#4|) (-1083 |#3|)) 30)) (-2844 (((-1083 |#4|) (-1083 |#4|) (-523)) 56)) (-3948 (((-1083 |#3|) (-1083 |#4|)) 21)) (-1487 (((-589 (-710)) (-1083 |#4|) (-589 |#2|)) 40)) (-3836 (((-1083 |#3|) (-1083 |#4|) (-589 |#2|) (-589 |#3|)) 35)))
-(((-297 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3836 ((-1083 |#3|) (-1083 |#4|) (-589 |#2|) (-589 |#3|))) (-15 -1487 ((-589 (-710)) (-1083 |#4|) (-589 |#2|))) (-15 -3716 ((-589 |#2|) (-1083 |#4|))) (-15 -3948 ((-1083 |#3|) (-1083 |#4|))) (-15 -2433 ((-1083 |#4|) (-1083 |#3|))) (-15 -2844 ((-1083 |#4|) (-1083 |#4|) (-523))) (-15 -1373 (|#3| (-523)))) (-732) (-786) (-973) (-880 |#3| |#1| |#2|)) (T -297))
-((-1373 (*1 *2 *3) (-12 (-5 *3 (-523)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *2 (-973)) (-5 *1 (-297 *4 *5 *2 *6)) (-4 *6 (-880 *2 *4 *5)))) (-2844 (*1 *2 *2 *3) (-12 (-5 *2 (-1083 *7)) (-5 *3 (-523)) (-4 *7 (-880 *6 *4 *5)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-973)) (-5 *1 (-297 *4 *5 *6 *7)))) (-2433 (*1 *2 *3) (-12 (-5 *3 (-1083 *6)) (-4 *6 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-1083 *7)) (-5 *1 (-297 *4 *5 *6 *7)) (-4 *7 (-880 *6 *4 *5)))) (-3948 (*1 *2 *3) (-12 (-5 *3 (-1083 *7)) (-4 *7 (-880 *6 *4 *5)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-973)) (-5 *2 (-1083 *6)) (-5 *1 (-297 *4 *5 *6 *7)))) (-3716 (*1 *2 *3) (-12 (-5 *3 (-1083 *7)) (-4 *7 (-880 *6 *4 *5)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-973)) (-5 *2 (-589 *5)) (-5 *1 (-297 *4 *5 *6 *7)))) (-1487 (*1 *2 *3 *4) (-12 (-5 *3 (-1083 *8)) (-5 *4 (-589 *6)) (-4 *6 (-786)) (-4 *8 (-880 *7 *5 *6)) (-4 *5 (-732)) (-4 *7 (-973)) (-5 *2 (-589 (-710))) (-5 *1 (-297 *5 *6 *7 *8)))) (-3836 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1083 *9)) (-5 *4 (-589 *7)) (-5 *5 (-589 *8)) (-4 *7 (-786)) (-4 *8 (-973)) (-4 *9 (-880 *8 *6 *7)) (-4 *6 (-732)) (-5 *2 (-1083 *8)) (-5 *1 (-297 *6 *7 *8 *9)))))
-(-10 -7 (-15 -3836 ((-1083 |#3|) (-1083 |#4|) (-589 |#2|) (-589 |#3|))) (-15 -1487 ((-589 (-710)) (-1083 |#4|) (-589 |#2|))) (-15 -3716 ((-589 |#2|) (-1083 |#4|))) (-15 -3948 ((-1083 |#3|) (-1083 |#4|))) (-15 -2433 ((-1083 |#4|) (-1083 |#3|))) (-15 -2844 ((-1083 |#4|) (-1083 |#4|) (-523))) (-15 -1373 (|#3| (-523))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 14)) (-2736 (((-589 (-2 (|:| |gen| |#1|) (|:| -1847 (-523)))) $) 18)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3843 (((-710) $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL)) (-1996 ((|#1| $) NIL)) (-3019 ((|#1| $ (-523)) NIL)) (-2616 (((-523) $ (-523)) NIL)) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-4119 (($ (-1 |#1| |#1|) $) NIL)) (-1562 (($ (-1 (-523) (-523)) $) 10)) (-3841 (((-1070) $) NIL)) (-3544 (($ $ $) NIL (|has| (-523) (-731)))) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL) (($ |#1|) NIL)) (-1234 (((-523) |#1| $) NIL)) (-1428 (($) 15 T CONST)) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) 21 (|has| |#1| (-786)))) (-4115 (($ $) 11) (($ $ $) 20)) (-4103 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ (-523)) NIL) (($ (-523) |#1|) 19)))
-(((-298 |#1|) (-13 (-21) (-657 (-523)) (-299 |#1| (-523)) (-10 -7 (IF (|has| |#1| (-786)) (-6 (-786)) |%noBranch|))) (-1016)) (T -298))
-NIL
-(-13 (-21) (-657 (-523)) (-299 |#1| (-523)) (-10 -7 (IF (|has| |#1| (-786)) (-6 (-786)) |%noBranch|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2736 (((-589 (-2 (|:| |gen| |#1|) (|:| -1847 |#2|))) $) 27)) (-2999 (((-3 $ "failed") $ $) 19)) (-3843 (((-710) $) 28)) (-1640 (($) 17 T CONST)) (-2898 (((-3 |#1| "failed") $) 32)) (-1996 ((|#1| $) 31)) (-3019 ((|#1| $ (-523)) 25)) (-2616 ((|#2| $ (-523)) 26)) (-4119 (($ (-1 |#1| |#1|) $) 22)) (-1562 (($ (-1 |#2| |#2|) $) 23)) (-3841 (((-1070) $) 9)) (-3544 (($ $ $) 21 (|has| |#2| (-731)))) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11) (($ |#1|) 33)) (-1234 ((|#2| |#1| $) 24)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4103 (($ $ $) 14) (($ |#1| $) 30)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ |#2| |#1|) 29)))
-(((-299 |#1| |#2|) (-129) (-1016) (-124)) (T -299))
-((-4103 (*1 *1 *2 *1) (-12 (-4 *1 (-299 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-124)))) (* (*1 *1 *2 *3) (-12 (-4 *1 (-299 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-124)))) (-3843 (*1 *2 *1) (-12 (-4 *1 (-299 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-124)) (-5 *2 (-710)))) (-2736 (*1 *2 *1) (-12 (-4 *1 (-299 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-124)) (-5 *2 (-589 (-2 (|:| |gen| *3) (|:| -1847 *4)))))) (-2616 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-4 *1 (-299 *4 *2)) (-4 *4 (-1016)) (-4 *2 (-124)))) (-3019 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-4 *1 (-299 *2 *4)) (-4 *4 (-124)) (-4 *2 (-1016)))) (-1234 (*1 *2 *3 *1) (-12 (-4 *1 (-299 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-124)))) (-1562 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-299 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-124)))) (-4119 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-299 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-124)))) (-3544 (*1 *1 *1 *1) (-12 (-4 *1 (-299 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-124)) (-4 *3 (-731)))))
-(-13 (-124) (-964 |t#1|) (-10 -8 (-15 -4103 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -3843 ((-710) $)) (-15 -2736 ((-589 (-2 (|:| |gen| |t#1|) (|:| -1847 |t#2|))) $)) (-15 -2616 (|t#2| $ (-523))) (-15 -3019 (|t#1| $ (-523))) (-15 -1234 (|t#2| |t#1| $)) (-15 -1562 ($ (-1 |t#2| |t#2|) $)) (-15 -4119 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-731)) (-15 -3544 ($ $ $)) |%noBranch|)))
-(((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-964 |#1|) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2736 (((-589 (-2 (|:| |gen| |#1|) (|:| -1847 (-710)))) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3843 (((-710) $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL)) (-1996 ((|#1| $) NIL)) (-3019 ((|#1| $ (-523)) NIL)) (-2616 (((-710) $ (-523)) NIL)) (-4119 (($ (-1 |#1| |#1|) $) NIL)) (-1562 (($ (-1 (-710) (-710)) $) NIL)) (-3841 (((-1070) $) NIL)) (-3544 (($ $ $) NIL (|has| (-710) (-731)))) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL) (($ |#1|) NIL)) (-1234 (((-710) |#1| $) NIL)) (-1428 (($) NIL T CONST)) (-4037 (((-108) $ $) NIL)) (-4103 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-710) |#1|) NIL)))
-(((-300 |#1|) (-299 |#1| (-710)) (-1016)) (T -300))
-NIL
-(-299 |#1| (-710))
-((-2213 (($ $) 53)) (-2067 (($ $ |#2| |#3| $) 14)) (-3927 (($ (-1 |#3| |#3|) $) 35)) (-3084 (((-108) $) 27)) (-3095 ((|#2| $) 29)) (-2469 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 46)) (-2267 ((|#2| $) 49)) (-1639 (((-589 |#2|) $) 38)) (-2656 (($ $ $ (-710)) 23)) (-4125 (($ $ |#2|) 42)))
-(((-301 |#1| |#2| |#3|) (-10 -8 (-15 -2213 (|#1| |#1|)) (-15 -2267 (|#2| |#1|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2656 (|#1| |#1| |#1| (-710))) (-15 -2067 (|#1| |#1| |#2| |#3| |#1|)) (-15 -3927 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1639 ((-589 |#2|) |#1|)) (-15 -3095 (|#2| |#1|)) (-15 -3084 ((-108) |#1|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4125 (|#1| |#1| |#2|))) (-302 |#2| |#3|) (-973) (-731)) (T -301))
-NIL
-(-10 -8 (-15 -2213 (|#1| |#1|)) (-15 -2267 (|#2| |#1|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2656 (|#1| |#1| |#1| (-710))) (-15 -2067 (|#1| |#1| |#2| |#3| |#1|)) (-15 -3927 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1639 ((-589 |#2|) |#1|)) (-15 -3095 (|#2| |#1|)) (-15 -3084 ((-108) |#1|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4125 (|#1| |#1| |#2|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 51 (|has| |#1| (-515)))) (-3950 (($ $) 52 (|has| |#1| (-515)))) (-3226 (((-108) $) 54 (|has| |#1| (-515)))) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-2898 (((-3 (-523) "failed") $) 90 (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) 88 (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) 87)) (-1996 (((-523) $) 91 (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) 89 (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) 86)) (-3142 (($ $) 60)) (-4211 (((-3 $ "failed") $) 34)) (-2213 (($ $) 75 (|has| |#1| (-427)))) (-2067 (($ $ |#1| |#2| $) 79)) (-3482 (((-108) $) 31)) (-3288 (((-710) $) 82)) (-4060 (((-108) $) 62)) (-3694 (($ |#1| |#2|) 61)) (-2140 ((|#2| $) 81)) (-3927 (($ (-1 |#2| |#2|) $) 80)) (-3015 (($ (-1 |#1| |#1|) $) 63)) (-3107 (($ $) 65)) (-3119 ((|#1| $) 66)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3084 (((-108) $) 85)) (-3095 ((|#1| $) 84)) (-2469 (((-3 $ "failed") $ $) 50 (|has| |#1| (-515))) (((-3 $ "failed") $ |#1|) 77 (|has| |#1| (-515)))) (-1487 ((|#2| $) 64)) (-2267 ((|#1| $) 76 (|has| |#1| (-427)))) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 49 (|has| |#1| (-515))) (($ |#1|) 47) (($ (-383 (-523))) 57 (-3255 (|has| |#1| (-964 (-383 (-523)))) (|has| |#1| (-37 (-383 (-523))))))) (-1639 (((-589 |#1|) $) 83)) (-1234 ((|#1| $ |#2|) 59)) (-2301 (((-3 $ "failed") $) 48 (|has| |#1| (-134)))) (-1698 (((-710)) 29)) (-2656 (($ $ $ (-710)) 78 (|has| |#1| (-158)))) (-3842 (((-108) $ $) 53 (|has| |#1| (-515)))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4125 (($ $ |#1|) 58 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-383 (-523)) $) 56 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 55 (|has| |#1| (-37 (-383 (-523)))))))
-(((-302 |#1| |#2|) (-129) (-973) (-731)) (T -302))
-((-3084 (*1 *2 *1) (-12 (-4 *1 (-302 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731)) (-5 *2 (-108)))) (-3095 (*1 *2 *1) (-12 (-4 *1 (-302 *2 *3)) (-4 *3 (-731)) (-4 *2 (-973)))) (-1639 (*1 *2 *1) (-12 (-4 *1 (-302 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731)) (-5 *2 (-589 *3)))) (-3288 (*1 *2 *1) (-12 (-4 *1 (-302 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731)) (-5 *2 (-710)))) (-2140 (*1 *2 *1) (-12 (-4 *1 (-302 *3 *2)) (-4 *3 (-973)) (-4 *2 (-731)))) (-3927 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-302 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731)))) (-2067 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-302 *2 *3)) (-4 *2 (-973)) (-4 *3 (-731)))) (-2656 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-302 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731)) (-4 *3 (-158)))) (-2469 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-302 *2 *3)) (-4 *2 (-973)) (-4 *3 (-731)) (-4 *2 (-515)))) (-2267 (*1 *2 *1) (-12 (-4 *1 (-302 *2 *3)) (-4 *3 (-731)) (-4 *2 (-973)) (-4 *2 (-427)))) (-2213 (*1 *1 *1) (-12 (-4 *1 (-302 *2 *3)) (-4 *2 (-973)) (-4 *3 (-731)) (-4 *2 (-427)))))
-(-13 (-46 |t#1| |t#2|) (-387 |t#1|) (-10 -8 (-15 -3084 ((-108) $)) (-15 -3095 (|t#1| $)) (-15 -1639 ((-589 |t#1|) $)) (-15 -3288 ((-710) $)) (-15 -2140 (|t#2| $)) (-15 -3927 ($ (-1 |t#2| |t#2|) $)) (-15 -2067 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-158)) (-15 -2656 ($ $ $ (-710))) |%noBranch|) (IF (|has| |t#1| (-515)) (-15 -2469 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-427)) (PROGN (-15 -2267 (|t#1| $)) (-15 -2213 ($ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((-37 |#1|) |has| |#1| (-158)) ((-37 $) |has| |#1| (-515)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-383 (-523)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-267) |has| |#1| (-515)) ((-387 |#1|) . T) ((-515) |has| |#1| (-515)) ((-591 #0#) |has| |#1| (-37 (-383 (-523)))) ((-591 |#1|) . T) ((-591 $) . T) ((-657 #0#) |has| |#1| (-37 (-383 (-523)))) ((-657 |#1|) |has| |#1| (-158)) ((-657 $) |has| |#1| (-515)) ((-666) . T) ((-964 (-383 (-523))) |has| |#1| (-964 (-383 (-523)))) ((-964 (-523)) |has| |#1| (-964 (-523))) ((-964 |#1|) . T) ((-979 #0#) |has| |#1| (-37 (-383 (-523)))) ((-979 |#1|) . T) ((-979 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-4159 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-786)))) (-2361 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4249))) (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| |#1| (-786))))) (-3400 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-786)))) (-2282 (((-108) $ (-710)) NIL)) (-2622 (((-108) (-108)) NIL)) (-4101 ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) NIL (|has| $ (-6 -4249)))) (-3627 (($ (-1 (-108) |#1|) $) NIL)) (-1299 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-4091 (($ $) NIL (|has| $ (-6 -4249)))) (-4082 (($ $) NIL)) (-2543 (($ $) NIL (|has| |#1| (-1016)))) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-1869 (($ |#1| $) NIL (|has| |#1| (-1016))) (($ (-1 (-108) |#1|) $) NIL)) (-2231 (($ |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) NIL)) (-1894 (((-523) (-1 (-108) |#1|) $) NIL) (((-523) |#1| $) NIL (|has| |#1| (-1016))) (((-523) |#1| $ (-523)) NIL (|has| |#1| (-1016)))) (-2772 (($ $ (-523)) NIL)) (-3608 (((-710) $) NIL)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-2348 (($ (-710) |#1|) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) NIL (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-3325 (($ $ $) NIL (|has| |#1| (-786))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-3123 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-786)))) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-3862 (($ $ $ (-523)) NIL) (($ |#1| $ (-523)) NIL)) (-3334 (($ |#1| $ (-523)) NIL) (($ $ $ (-523)) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2674 (($ (-589 |#1|)) NIL)) (-3879 ((|#1| $) NIL (|has| (-523) (-786)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2408 (($ $ |#1|) NIL (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#1| $ (-523) |#1|) NIL) ((|#1| $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-1314 (($ $ (-1136 (-523))) NIL) (($ $ (-523)) NIL)) (-3725 (($ $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2580 (($ $ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) NIL)) (-1622 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2785 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-589 $)) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-303 |#1|) (-13 (-19 |#1|) (-259 |#1|) (-10 -8 (-15 -2674 ($ (-589 |#1|))) (-15 -3608 ((-710) $)) (-15 -2772 ($ $ (-523))) (-15 -2622 ((-108) (-108))))) (-1123)) (T -303))
-((-2674 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-5 *1 (-303 *3)))) (-3608 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-303 *3)) (-4 *3 (-1123)))) (-2772 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-303 *3)) (-4 *3 (-1123)))) (-2622 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-303 *3)) (-4 *3 (-1123)))))
-(-13 (-19 |#1|) (-259 |#1|) (-10 -8 (-15 -2674 ($ (-589 |#1|))) (-15 -3608 ((-710) $)) (-15 -2772 ($ $ (-523))) (-15 -2622 ((-108) (-108)))))
-((-3867 (((-108) $) 42)) (-4154 (((-710)) 22)) (-4131 ((|#2| $) 46) (($ $ (-852)) 104)) (-3843 (((-710)) 98)) (-3322 (($ (-1169 |#2|)) 20)) (-4077 (((-108) $) 116)) (-2765 ((|#2| $) 48) (($ $ (-852)) 102)) (-2277 (((-1083 |#2|) $) NIL) (((-1083 $) $ (-852)) 95)) (-1573 (((-1083 |#2|) $) 83)) (-3102 (((-1083 |#2|) $) 80) (((-3 (-1083 |#2|) "failed") $ $) 77)) (-2163 (($ $ (-1083 |#2|)) 53)) (-3718 (((-772 (-852))) 28) (((-852)) 43)) (-4012 (((-126)) 25)) (-1487 (((-772 (-852)) $) 30) (((-852) $) 118)) (-2233 (($) 110)) (-2411 (((-1169 |#2|) $) NIL) (((-629 |#2|) (-1169 $)) 39)) (-2301 (($ $) NIL) (((-3 $ "failed") $) 86)) (-4079 (((-108) $) 41)))
-(((-304 |#1| |#2|) (-10 -8 (-15 -2301 ((-3 |#1| "failed") |#1|)) (-15 -3843 ((-710))) (-15 -2301 (|#1| |#1|)) (-15 -3102 ((-3 (-1083 |#2|) "failed") |#1| |#1|)) (-15 -3102 ((-1083 |#2|) |#1|)) (-15 -1573 ((-1083 |#2|) |#1|)) (-15 -2163 (|#1| |#1| (-1083 |#2|))) (-15 -4077 ((-108) |#1|)) (-15 -2233 (|#1|)) (-15 -4131 (|#1| |#1| (-852))) (-15 -2765 (|#1| |#1| (-852))) (-15 -2277 ((-1083 |#1|) |#1| (-852))) (-15 -4131 (|#2| |#1|)) (-15 -2765 (|#2| |#1|)) (-15 -1487 ((-852) |#1|)) (-15 -3718 ((-852))) (-15 -2277 ((-1083 |#2|) |#1|)) (-15 -3322 (|#1| (-1169 |#2|))) (-15 -2411 ((-629 |#2|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1|)) (-15 -4154 ((-710))) (-15 -3718 ((-772 (-852)))) (-15 -1487 ((-772 (-852)) |#1|)) (-15 -3867 ((-108) |#1|)) (-15 -4079 ((-108) |#1|)) (-15 -4012 ((-126)))) (-305 |#2|) (-339)) (T -304))
-((-4012 (*1 *2) (-12 (-4 *4 (-339)) (-5 *2 (-126)) (-5 *1 (-304 *3 *4)) (-4 *3 (-305 *4)))) (-3718 (*1 *2) (-12 (-4 *4 (-339)) (-5 *2 (-772 (-852))) (-5 *1 (-304 *3 *4)) (-4 *3 (-305 *4)))) (-4154 (*1 *2) (-12 (-4 *4 (-339)) (-5 *2 (-710)) (-5 *1 (-304 *3 *4)) (-4 *3 (-305 *4)))) (-3718 (*1 *2) (-12 (-4 *4 (-339)) (-5 *2 (-852)) (-5 *1 (-304 *3 *4)) (-4 *3 (-305 *4)))) (-3843 (*1 *2) (-12 (-4 *4 (-339)) (-5 *2 (-710)) (-5 *1 (-304 *3 *4)) (-4 *3 (-305 *4)))))
-(-10 -8 (-15 -2301 ((-3 |#1| "failed") |#1|)) (-15 -3843 ((-710))) (-15 -2301 (|#1| |#1|)) (-15 -3102 ((-3 (-1083 |#2|) "failed") |#1| |#1|)) (-15 -3102 ((-1083 |#2|) |#1|)) (-15 -1573 ((-1083 |#2|) |#1|)) (-15 -2163 (|#1| |#1| (-1083 |#2|))) (-15 -4077 ((-108) |#1|)) (-15 -2233 (|#1|)) (-15 -4131 (|#1| |#1| (-852))) (-15 -2765 (|#1| |#1| (-852))) (-15 -2277 ((-1083 |#1|) |#1| (-852))) (-15 -4131 (|#2| |#1|)) (-15 -2765 (|#2| |#1|)) (-15 -1487 ((-852) |#1|)) (-15 -3718 ((-852))) (-15 -2277 ((-1083 |#2|) |#1|)) (-15 -3322 (|#1| (-1169 |#2|))) (-15 -2411 ((-629 |#2|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1|)) (-15 -4154 ((-710))) (-15 -3718 ((-772 (-852)))) (-15 -1487 ((-772 (-852)) |#1|)) (-15 -3867 ((-108) |#1|)) (-15 -4079 ((-108) |#1|)) (-15 -4012 ((-126))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-3867 (((-108) $) 94)) (-4154 (((-710)) 90)) (-4131 ((|#1| $) 140) (($ $ (-852)) 137 (|has| |#1| (-344)))) (-2794 (((-1097 (-852) (-710)) (-523)) 122 (|has| |#1| (-344)))) (-2999 (((-3 $ "failed") $ $) 19)) (-3763 (($ $) 73)) (-2105 (((-394 $) $) 72)) (-3684 (((-108) $ $) 59)) (-3843 (((-710)) 112 (|has| |#1| (-344)))) (-1640 (($) 17 T CONST)) (-2898 (((-3 |#1| "failed") $) 101)) (-1996 ((|#1| $) 100)) (-3322 (($ (-1169 |#1|)) 146)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) 128 (|has| |#1| (-344)))) (-2501 (($ $ $) 55)) (-4211 (((-3 $ "failed") $) 34)) (-3461 (($) 109 (|has| |#1| (-344)))) (-2486 (($ $ $) 56)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 51)) (-2097 (($) 124 (|has| |#1| (-344)))) (-1200 (((-108) $) 125 (|has| |#1| (-344)))) (-1419 (($ $ (-710)) 87 (-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))) (($ $) 86 (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1330 (((-108) $) 71)) (-1500 (((-852) $) 127 (|has| |#1| (-344))) (((-772 (-852)) $) 84 (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-3482 (((-108) $) 31)) (-2842 (($) 135 (|has| |#1| (-344)))) (-4077 (((-108) $) 134 (|has| |#1| (-344)))) (-2765 ((|#1| $) 141) (($ $ (-852)) 138 (|has| |#1| (-344)))) (-1289 (((-3 $ "failed") $) 113 (|has| |#1| (-344)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 52)) (-2277 (((-1083 |#1|) $) 145) (((-1083 $) $ (-852)) 139 (|has| |#1| (-344)))) (-4076 (((-852) $) 110 (|has| |#1| (-344)))) (-1573 (((-1083 |#1|) $) 131 (|has| |#1| (-344)))) (-3102 (((-1083 |#1|) $) 130 (|has| |#1| (-344))) (((-3 (-1083 |#1|) "failed") $ $) 129 (|has| |#1| (-344)))) (-2163 (($ $ (-1083 |#1|)) 132 (|has| |#1| (-344)))) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-3071 (($ $) 70)) (-4105 (($) 114 (|has| |#1| (-344)) CONST)) (-2557 (($ (-852)) 111 (|has| |#1| (-344)))) (-4203 (((-108) $) 93)) (-2435 (((-1034) $) 10)) (-4102 (($) 133 (|has| |#1| (-344)))) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) 121 (|has| |#1| (-344)))) (-3573 (((-394 $) $) 74)) (-3718 (((-772 (-852))) 91) (((-852)) 143)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2469 (((-3 $ "failed") $ $) 42)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 50)) (-3087 (((-710) $) 58)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 57)) (-2041 (((-710) $) 126 (|has| |#1| (-344))) (((-3 (-710) "failed") $ $) 85 (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-4012 (((-126)) 99)) (-4024 (($ $) 118 (|has| |#1| (-344))) (($ $ (-710)) 116 (|has| |#1| (-344)))) (-1487 (((-772 (-852)) $) 92) (((-852) $) 142)) (-3399 (((-1083 |#1|)) 144)) (-2315 (($) 123 (|has| |#1| (-344)))) (-2233 (($) 136 (|has| |#1| (-344)))) (-2411 (((-1169 |#1|) $) 148) (((-629 |#1|) (-1169 $)) 147)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) 120 (|has| |#1| (-344)))) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43) (($ (-383 (-523))) 65) (($ |#1|) 102)) (-2301 (($ $) 119 (|has| |#1| (-344))) (((-3 $ "failed") $) 83 (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1698 (((-710)) 29)) (-2922 (((-1169 $)) 150) (((-1169 $) (-852)) 149)) (-3842 (((-108) $ $) 39)) (-4079 (((-108) $) 95)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 69)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1732 (($ $) 89 (|has| |#1| (-344))) (($ $ (-710)) 88 (|has| |#1| (-344)))) (-1943 (($ $) 117 (|has| |#1| (-344))) (($ $ (-710)) 115 (|has| |#1| (-344)))) (-4037 (((-108) $ $) 6)) (-4125 (($ $ $) 64) (($ $ |#1|) 98)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 68)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 (-523))) 67) (($ (-383 (-523)) $) 66) (($ $ |#1|) 97) (($ |#1| $) 96)))
-(((-305 |#1|) (-129) (-339)) (T -305))
-((-2922 (*1 *2) (-12 (-4 *3 (-339)) (-5 *2 (-1169 *1)) (-4 *1 (-305 *3)))) (-2922 (*1 *2 *3) (-12 (-5 *3 (-852)) (-4 *4 (-339)) (-5 *2 (-1169 *1)) (-4 *1 (-305 *4)))) (-2411 (*1 *2 *1) (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-5 *2 (-1169 *3)))) (-2411 (*1 *2 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-305 *4)) (-4 *4 (-339)) (-5 *2 (-629 *4)))) (-3322 (*1 *1 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-339)) (-4 *1 (-305 *3)))) (-2277 (*1 *2 *1) (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-5 *2 (-1083 *3)))) (-3399 (*1 *2) (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-5 *2 (-1083 *3)))) (-3718 (*1 *2) (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-5 *2 (-852)))) (-1487 (*1 *2 *1) (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-5 *2 (-852)))) (-2765 (*1 *2 *1) (-12 (-4 *1 (-305 *2)) (-4 *2 (-339)))) (-4131 (*1 *2 *1) (-12 (-4 *1 (-305 *2)) (-4 *2 (-339)))) (-2277 (*1 *2 *1 *3) (-12 (-5 *3 (-852)) (-4 *4 (-344)) (-4 *4 (-339)) (-5 *2 (-1083 *1)) (-4 *1 (-305 *4)))) (-2765 (*1 *1 *1 *2) (-12 (-5 *2 (-852)) (-4 *1 (-305 *3)) (-4 *3 (-339)) (-4 *3 (-344)))) (-4131 (*1 *1 *1 *2) (-12 (-5 *2 (-852)) (-4 *1 (-305 *3)) (-4 *3 (-339)) (-4 *3 (-344)))) (-2233 (*1 *1) (-12 (-4 *1 (-305 *2)) (-4 *2 (-344)) (-4 *2 (-339)))) (-2842 (*1 *1) (-12 (-4 *1 (-305 *2)) (-4 *2 (-344)) (-4 *2 (-339)))) (-4077 (*1 *2 *1) (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-4 *3 (-344)) (-5 *2 (-108)))) (-4102 (*1 *1) (-12 (-4 *1 (-305 *2)) (-4 *2 (-344)) (-4 *2 (-339)))) (-2163 (*1 *1 *1 *2) (-12 (-5 *2 (-1083 *3)) (-4 *3 (-344)) (-4 *1 (-305 *3)) (-4 *3 (-339)))) (-1573 (*1 *2 *1) (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-4 *3 (-344)) (-5 *2 (-1083 *3)))) (-3102 (*1 *2 *1) (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-4 *3 (-344)) (-5 *2 (-1083 *3)))) (-3102 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-4 *3 (-344)) (-5 *2 (-1083 *3)))))
-(-13 (-1186 |t#1|) (-964 |t#1|) (-10 -8 (-15 -2922 ((-1169 $))) (-15 -2922 ((-1169 $) (-852))) (-15 -2411 ((-1169 |t#1|) $)) (-15 -2411 ((-629 |t#1|) (-1169 $))) (-15 -3322 ($ (-1169 |t#1|))) (-15 -2277 ((-1083 |t#1|) $)) (-15 -3399 ((-1083 |t#1|))) (-15 -3718 ((-852))) (-15 -1487 ((-852) $)) (-15 -2765 (|t#1| $)) (-15 -4131 (|t#1| $)) (IF (|has| |t#1| (-344)) (PROGN (-6 (-325)) (-15 -2277 ((-1083 $) $ (-852))) (-15 -2765 ($ $ (-852))) (-15 -4131 ($ $ (-852))) (-15 -2233 ($)) (-15 -2842 ($)) (-15 -4077 ((-108) $)) (-15 -4102 ($)) (-15 -2163 ($ $ (-1083 |t#1|))) (-15 -1573 ((-1083 |t#1|) $)) (-15 -3102 ((-1083 |t#1|) $)) (-15 -3102 ((-3 (-1083 |t#1|) "failed") $ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-124) . T) ((-134) -3255 (|has| |#1| (-344)) (|has| |#1| (-134))) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) . T) ((-211) |has| |#1| (-344)) ((-221) . T) ((-267) . T) ((-284) . T) ((-1186 |#1|) . T) ((-339) . T) ((-378) -3255 (|has| |#1| (-344)) (|has| |#1| (-134))) ((-344) |has| |#1| (-344)) ((-325) |has| |#1| (-344)) ((-427) . T) ((-515) . T) ((-591 #0#) . T) ((-591 |#1|) . T) ((-591 $) . T) ((-657 #0#) . T) ((-657 |#1|) . T) ((-657 $) . T) ((-666) . T) ((-851) . T) ((-964 |#1|) . T) ((-979 #0#) . T) ((-979 |#1|) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1063) |has| |#1| (-344)) ((-1127) . T) ((-1176 |#1|) . T))
-((-3260 (((-108) $ $) NIL)) (-1840 (($ (-1086) $) 88)) (-1940 (($) 77)) (-3296 (((-1034) (-1034)) 11)) (-3244 (($) 78)) (-2174 (($) 90) (($ (-292 (-638))) 98) (($ (-292 (-640))) 94) (($ (-292 (-633))) 102) (($ (-292 (-355))) 109) (($ (-292 (-523))) 105) (($ (-292 (-155 (-355)))) 113)) (-2542 (($ (-1086) $) 89)) (-2873 (($ (-589 (-794))) 79)) (-1642 (((-1174) $) 75)) (-1621 (((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $) 27)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3800 (($ (-1034)) 51)) (-3861 (((-1020) $) 25)) (-1326 (($ (-1009 (-883 (-523))) $) 85) (($ (-1009 (-883 (-523))) (-883 (-523)) $) 86)) (-3353 (($ (-1034)) 87)) (-1228 (($ (-1086) $) 115) (($ (-1086) $ $) 116)) (-1553 (($ (-1087) (-589 (-1087))) 76)) (-2061 (($ (-1070)) 82) (($ (-589 (-1070))) 80)) (-3976 (((-794) $) 118)) (-3514 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1087)) (|:| |arrayIndex| (-589 (-883 (-523)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -3483 (-794)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1087)) (|:| |rand| (-794)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1086)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3163 (-108)) (|:| -2058 (-2 (|:| |ints2Floats?| (-108)) (|:| -3483 (-794)))))) (|:| |blockBranch| (-589 $)) (|:| |commentBranch| (-589 (-1070))) (|:| |callBranch| (-1070)) (|:| |forBranch| (-2 (|:| -3487 (-1009 (-883 (-523)))) (|:| |span| (-883 (-523))) (|:| -2403 $))) (|:| |labelBranch| (-1034)) (|:| |loopBranch| (-2 (|:| |switch| (-1086)) (|:| -2403 $))) (|:| |commonBranch| (-2 (|:| -1522 (-1087)) (|:| |contents| (-589 (-1087))))) (|:| |printBranch| (-589 (-794)))) $) 44)) (-2182 (($ (-1070)) 187)) (-2582 (($ (-589 $)) 114)) (-1447 (($ (-1087) (-1070)) 120) (($ (-1087) (-292 (-640))) 160) (($ (-1087) (-292 (-638))) 161) (($ (-1087) (-292 (-633))) 162) (($ (-1087) (-629 (-640))) 123) (($ (-1087) (-629 (-638))) 126) (($ (-1087) (-629 (-633))) 129) (($ (-1087) (-1169 (-640))) 132) (($ (-1087) (-1169 (-638))) 135) (($ (-1087) (-1169 (-633))) 138) (($ (-1087) (-629 (-292 (-640)))) 141) (($ (-1087) (-629 (-292 (-638)))) 144) (($ (-1087) (-629 (-292 (-633)))) 147) (($ (-1087) (-1169 (-292 (-640)))) 150) (($ (-1087) (-1169 (-292 (-638)))) 153) (($ (-1087) (-1169 (-292 (-633)))) 156) (($ (-1087) (-589 (-883 (-523))) (-292 (-640))) 157) (($ (-1087) (-589 (-883 (-523))) (-292 (-638))) 158) (($ (-1087) (-589 (-883 (-523))) (-292 (-633))) 159) (($ (-1087) (-292 (-523))) 184) (($ (-1087) (-292 (-355))) 185) (($ (-1087) (-292 (-155 (-355)))) 186) (($ (-1087) (-629 (-292 (-523)))) 165) (($ (-1087) (-629 (-292 (-355)))) 168) (($ (-1087) (-629 (-292 (-155 (-355))))) 171) (($ (-1087) (-1169 (-292 (-523)))) 174) (($ (-1087) (-1169 (-292 (-355)))) 177) (($ (-1087) (-1169 (-292 (-155 (-355))))) 180) (($ (-1087) (-589 (-883 (-523))) (-292 (-523))) 181) (($ (-1087) (-589 (-883 (-523))) (-292 (-355))) 182) (($ (-1087) (-589 (-883 (-523))) (-292 (-155 (-355)))) 183)) (-4037 (((-108) $ $) NIL)))
-(((-306) (-13 (-1016) (-10 -8 (-15 -3976 ((-794) $)) (-15 -1326 ($ (-1009 (-883 (-523))) $)) (-15 -1326 ($ (-1009 (-883 (-523))) (-883 (-523)) $)) (-15 -1840 ($ (-1086) $)) (-15 -2542 ($ (-1086) $)) (-15 -3800 ($ (-1034))) (-15 -3353 ($ (-1034))) (-15 -2061 ($ (-1070))) (-15 -2061 ($ (-589 (-1070)))) (-15 -2182 ($ (-1070))) (-15 -2174 ($)) (-15 -2174 ($ (-292 (-638)))) (-15 -2174 ($ (-292 (-640)))) (-15 -2174 ($ (-292 (-633)))) (-15 -2174 ($ (-292 (-355)))) (-15 -2174 ($ (-292 (-523)))) (-15 -2174 ($ (-292 (-155 (-355))))) (-15 -1228 ($ (-1086) $)) (-15 -1228 ($ (-1086) $ $)) (-15 -1447 ($ (-1087) (-1070))) (-15 -1447 ($ (-1087) (-292 (-640)))) (-15 -1447 ($ (-1087) (-292 (-638)))) (-15 -1447 ($ (-1087) (-292 (-633)))) (-15 -1447 ($ (-1087) (-629 (-640)))) (-15 -1447 ($ (-1087) (-629 (-638)))) (-15 -1447 ($ (-1087) (-629 (-633)))) (-15 -1447 ($ (-1087) (-1169 (-640)))) (-15 -1447 ($ (-1087) (-1169 (-638)))) (-15 -1447 ($ (-1087) (-1169 (-633)))) (-15 -1447 ($ (-1087) (-629 (-292 (-640))))) (-15 -1447 ($ (-1087) (-629 (-292 (-638))))) (-15 -1447 ($ (-1087) (-629 (-292 (-633))))) (-15 -1447 ($ (-1087) (-1169 (-292 (-640))))) (-15 -1447 ($ (-1087) (-1169 (-292 (-638))))) (-15 -1447 ($ (-1087) (-1169 (-292 (-633))))) (-15 -1447 ($ (-1087) (-589 (-883 (-523))) (-292 (-640)))) (-15 -1447 ($ (-1087) (-589 (-883 (-523))) (-292 (-638)))) (-15 -1447 ($ (-1087) (-589 (-883 (-523))) (-292 (-633)))) (-15 -1447 ($ (-1087) (-292 (-523)))) (-15 -1447 ($ (-1087) (-292 (-355)))) (-15 -1447 ($ (-1087) (-292 (-155 (-355))))) (-15 -1447 ($ (-1087) (-629 (-292 (-523))))) (-15 -1447 ($ (-1087) (-629 (-292 (-355))))) (-15 -1447 ($ (-1087) (-629 (-292 (-155 (-355)))))) (-15 -1447 ($ (-1087) (-1169 (-292 (-523))))) (-15 -1447 ($ (-1087) (-1169 (-292 (-355))))) (-15 -1447 ($ (-1087) (-1169 (-292 (-155 (-355)))))) (-15 -1447 ($ (-1087) (-589 (-883 (-523))) (-292 (-523)))) (-15 -1447 ($ (-1087) (-589 (-883 (-523))) (-292 (-355)))) (-15 -1447 ($ (-1087) (-589 (-883 (-523))) (-292 (-155 (-355))))) (-15 -2582 ($ (-589 $))) (-15 -1940 ($)) (-15 -3244 ($)) (-15 -2873 ($ (-589 (-794)))) (-15 -1553 ($ (-1087) (-589 (-1087)))) (-15 -1621 ((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $)) (-15 -3514 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1087)) (|:| |arrayIndex| (-589 (-883 (-523)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -3483 (-794)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1087)) (|:| |rand| (-794)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1086)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3163 (-108)) (|:| -2058 (-2 (|:| |ints2Floats?| (-108)) (|:| -3483 (-794)))))) (|:| |blockBranch| (-589 $)) (|:| |commentBranch| (-589 (-1070))) (|:| |callBranch| (-1070)) (|:| |forBranch| (-2 (|:| -3487 (-1009 (-883 (-523)))) (|:| |span| (-883 (-523))) (|:| -2403 $))) (|:| |labelBranch| (-1034)) (|:| |loopBranch| (-2 (|:| |switch| (-1086)) (|:| -2403 $))) (|:| |commonBranch| (-2 (|:| -1522 (-1087)) (|:| |contents| (-589 (-1087))))) (|:| |printBranch| (-589 (-794)))) $)) (-15 -1642 ((-1174) $)) (-15 -3861 ((-1020) $)) (-15 -3296 ((-1034) (-1034)))))) (T -306))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-306)))) (-1326 (*1 *1 *2 *1) (-12 (-5 *2 (-1009 (-883 (-523)))) (-5 *1 (-306)))) (-1326 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1009 (-883 (-523)))) (-5 *3 (-883 (-523))) (-5 *1 (-306)))) (-1840 (*1 *1 *2 *1) (-12 (-5 *2 (-1086)) (-5 *1 (-306)))) (-2542 (*1 *1 *2 *1) (-12 (-5 *2 (-1086)) (-5 *1 (-306)))) (-3800 (*1 *1 *2) (-12 (-5 *2 (-1034)) (-5 *1 (-306)))) (-3353 (*1 *1 *2) (-12 (-5 *2 (-1034)) (-5 *1 (-306)))) (-2061 (*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-306)))) (-2061 (*1 *1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-306)))) (-2182 (*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-306)))) (-2174 (*1 *1) (-5 *1 (-306))) (-2174 (*1 *1 *2) (-12 (-5 *2 (-292 (-638))) (-5 *1 (-306)))) (-2174 (*1 *1 *2) (-12 (-5 *2 (-292 (-640))) (-5 *1 (-306)))) (-2174 (*1 *1 *2) (-12 (-5 *2 (-292 (-633))) (-5 *1 (-306)))) (-2174 (*1 *1 *2) (-12 (-5 *2 (-292 (-355))) (-5 *1 (-306)))) (-2174 (*1 *1 *2) (-12 (-5 *2 (-292 (-523))) (-5 *1 (-306)))) (-2174 (*1 *1 *2) (-12 (-5 *2 (-292 (-155 (-355)))) (-5 *1 (-306)))) (-1228 (*1 *1 *2 *1) (-12 (-5 *2 (-1086)) (-5 *1 (-306)))) (-1228 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1086)) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1070)) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-292 (-640))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-292 (-638))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-292 (-633))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-640))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-638))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-633))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-640))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-638))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-633))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-292 (-640)))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-292 (-638)))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-292 (-633)))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-292 (-640)))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-292 (-638)))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-292 (-633)))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-883 (-523)))) (-5 *4 (-292 (-640))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-883 (-523)))) (-5 *4 (-292 (-638))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-883 (-523)))) (-5 *4 (-292 (-633))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-292 (-523))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-292 (-355))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-292 (-155 (-355)))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-292 (-523)))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-292 (-355)))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-292 (-155 (-355))))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-292 (-523)))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-292 (-355)))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-292 (-155 (-355))))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-883 (-523)))) (-5 *4 (-292 (-523))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-883 (-523)))) (-5 *4 (-292 (-355))) (-5 *1 (-306)))) (-1447 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-883 (-523)))) (-5 *4 (-292 (-155 (-355)))) (-5 *1 (-306)))) (-2582 (*1 *1 *2) (-12 (-5 *2 (-589 (-306))) (-5 *1 (-306)))) (-1940 (*1 *1) (-5 *1 (-306))) (-3244 (*1 *1) (-5 *1 (-306))) (-2873 (*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-306)))) (-1553 (*1 *1 *2 *3) (-12 (-5 *3 (-589 (-1087))) (-5 *2 (-1087)) (-5 *1 (-306)))) (-1621 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print"))) (-5 *1 (-306)))) (-3514 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1087)) (|:| |arrayIndex| (-589 (-883 (-523)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -3483 (-794)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1087)) (|:| |rand| (-794)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1086)) (|:| |thenClause| (-306)) (|:| |elseClause| (-306)))) (|:| |returnBranch| (-2 (|:| -3163 (-108)) (|:| -2058 (-2 (|:| |ints2Floats?| (-108)) (|:| -3483 (-794)))))) (|:| |blockBranch| (-589 (-306))) (|:| |commentBranch| (-589 (-1070))) (|:| |callBranch| (-1070)) (|:| |forBranch| (-2 (|:| -3487 (-1009 (-883 (-523)))) (|:| |span| (-883 (-523))) (|:| -2403 (-306)))) (|:| |labelBranch| (-1034)) (|:| |loopBranch| (-2 (|:| |switch| (-1086)) (|:| -2403 (-306)))) (|:| |commonBranch| (-2 (|:| -1522 (-1087)) (|:| |contents| (-589 (-1087))))) (|:| |printBranch| (-589 (-794))))) (-5 *1 (-306)))) (-1642 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-306)))) (-3861 (*1 *2 *1) (-12 (-5 *2 (-1020)) (-5 *1 (-306)))) (-3296 (*1 *2 *2) (-12 (-5 *2 (-1034)) (-5 *1 (-306)))))
-(-13 (-1016) (-10 -8 (-15 -3976 ((-794) $)) (-15 -1326 ($ (-1009 (-883 (-523))) $)) (-15 -1326 ($ (-1009 (-883 (-523))) (-883 (-523)) $)) (-15 -1840 ($ (-1086) $)) (-15 -2542 ($ (-1086) $)) (-15 -3800 ($ (-1034))) (-15 -3353 ($ (-1034))) (-15 -2061 ($ (-1070))) (-15 -2061 ($ (-589 (-1070)))) (-15 -2182 ($ (-1070))) (-15 -2174 ($)) (-15 -2174 ($ (-292 (-638)))) (-15 -2174 ($ (-292 (-640)))) (-15 -2174 ($ (-292 (-633)))) (-15 -2174 ($ (-292 (-355)))) (-15 -2174 ($ (-292 (-523)))) (-15 -2174 ($ (-292 (-155 (-355))))) (-15 -1228 ($ (-1086) $)) (-15 -1228 ($ (-1086) $ $)) (-15 -1447 ($ (-1087) (-1070))) (-15 -1447 ($ (-1087) (-292 (-640)))) (-15 -1447 ($ (-1087) (-292 (-638)))) (-15 -1447 ($ (-1087) (-292 (-633)))) (-15 -1447 ($ (-1087) (-629 (-640)))) (-15 -1447 ($ (-1087) (-629 (-638)))) (-15 -1447 ($ (-1087) (-629 (-633)))) (-15 -1447 ($ (-1087) (-1169 (-640)))) (-15 -1447 ($ (-1087) (-1169 (-638)))) (-15 -1447 ($ (-1087) (-1169 (-633)))) (-15 -1447 ($ (-1087) (-629 (-292 (-640))))) (-15 -1447 ($ (-1087) (-629 (-292 (-638))))) (-15 -1447 ($ (-1087) (-629 (-292 (-633))))) (-15 -1447 ($ (-1087) (-1169 (-292 (-640))))) (-15 -1447 ($ (-1087) (-1169 (-292 (-638))))) (-15 -1447 ($ (-1087) (-1169 (-292 (-633))))) (-15 -1447 ($ (-1087) (-589 (-883 (-523))) (-292 (-640)))) (-15 -1447 ($ (-1087) (-589 (-883 (-523))) (-292 (-638)))) (-15 -1447 ($ (-1087) (-589 (-883 (-523))) (-292 (-633)))) (-15 -1447 ($ (-1087) (-292 (-523)))) (-15 -1447 ($ (-1087) (-292 (-355)))) (-15 -1447 ($ (-1087) (-292 (-155 (-355))))) (-15 -1447 ($ (-1087) (-629 (-292 (-523))))) (-15 -1447 ($ (-1087) (-629 (-292 (-355))))) (-15 -1447 ($ (-1087) (-629 (-292 (-155 (-355)))))) (-15 -1447 ($ (-1087) (-1169 (-292 (-523))))) (-15 -1447 ($ (-1087) (-1169 (-292 (-355))))) (-15 -1447 ($ (-1087) (-1169 (-292 (-155 (-355)))))) (-15 -1447 ($ (-1087) (-589 (-883 (-523))) (-292 (-523)))) (-15 -1447 ($ (-1087) (-589 (-883 (-523))) (-292 (-355)))) (-15 -1447 ($ (-1087) (-589 (-883 (-523))) (-292 (-155 (-355))))) (-15 -2582 ($ (-589 $))) (-15 -1940 ($)) (-15 -3244 ($)) (-15 -2873 ($ (-589 (-794)))) (-15 -1553 ($ (-1087) (-589 (-1087)))) (-15 -1621 ((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $)) (-15 -3514 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1087)) (|:| |arrayIndex| (-589 (-883 (-523)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -3483 (-794)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1087)) (|:| |rand| (-794)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1086)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3163 (-108)) (|:| -2058 (-2 (|:| |ints2Floats?| (-108)) (|:| -3483 (-794)))))) (|:| |blockBranch| (-589 $)) (|:| |commentBranch| (-589 (-1070))) (|:| |callBranch| (-1070)) (|:| |forBranch| (-2 (|:| -3487 (-1009 (-883 (-523)))) (|:| |span| (-883 (-523))) (|:| -2403 $))) (|:| |labelBranch| (-1034)) (|:| |loopBranch| (-2 (|:| |switch| (-1086)) (|:| -2403 $))) (|:| |commonBranch| (-2 (|:| -1522 (-1087)) (|:| |contents| (-589 (-1087))))) (|:| |printBranch| (-589 (-794)))) $)) (-15 -1642 ((-1174) $)) (-15 -3861 ((-1020) $)) (-15 -3296 ((-1034) (-1034)))))
-((-3260 (((-108) $ $) NIL)) (-2266 (((-108) $) 11)) (-2588 (($ |#1|) 8)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2598 (($ |#1|) 9)) (-3976 (((-794) $) 17)) (-2947 ((|#1| $) 12)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 19)))
-(((-307 |#1|) (-13 (-786) (-10 -8 (-15 -2588 ($ |#1|)) (-15 -2598 ($ |#1|)) (-15 -2266 ((-108) $)) (-15 -2947 (|#1| $)))) (-786)) (T -307))
-((-2588 (*1 *1 *2) (-12 (-5 *1 (-307 *2)) (-4 *2 (-786)))) (-2598 (*1 *1 *2) (-12 (-5 *1 (-307 *2)) (-4 *2 (-786)))) (-2266 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-307 *3)) (-4 *3 (-786)))) (-2947 (*1 *2 *1) (-12 (-5 *1 (-307 *2)) (-4 *2 (-786)))))
-(-13 (-786) (-10 -8 (-15 -2588 ($ |#1|)) (-15 -2598 ($ |#1|)) (-15 -2266 ((-108) $)) (-15 -2947 (|#1| $))))
-((-2972 (((-306) (-1087) (-883 (-523))) 23)) (-1566 (((-306) (-1087) (-883 (-523))) 27)) (-1430 (((-306) (-1087) (-1009 (-883 (-523))) (-1009 (-883 (-523)))) 26) (((-306) (-1087) (-883 (-523)) (-883 (-523))) 24)) (-2953 (((-306) (-1087) (-883 (-523))) 31)))
-(((-308) (-10 -7 (-15 -2972 ((-306) (-1087) (-883 (-523)))) (-15 -1430 ((-306) (-1087) (-883 (-523)) (-883 (-523)))) (-15 -1430 ((-306) (-1087) (-1009 (-883 (-523))) (-1009 (-883 (-523))))) (-15 -1566 ((-306) (-1087) (-883 (-523)))) (-15 -2953 ((-306) (-1087) (-883 (-523)))))) (T -308))
-((-2953 (*1 *2 *3 *4) (-12 (-5 *3 (-1087)) (-5 *4 (-883 (-523))) (-5 *2 (-306)) (-5 *1 (-308)))) (-1566 (*1 *2 *3 *4) (-12 (-5 *3 (-1087)) (-5 *4 (-883 (-523))) (-5 *2 (-306)) (-5 *1 (-308)))) (-1430 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1087)) (-5 *4 (-1009 (-883 (-523)))) (-5 *2 (-306)) (-5 *1 (-308)))) (-1430 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1087)) (-5 *4 (-883 (-523))) (-5 *2 (-306)) (-5 *1 (-308)))) (-2972 (*1 *2 *3 *4) (-12 (-5 *3 (-1087)) (-5 *4 (-883 (-523))) (-5 *2 (-306)) (-5 *1 (-308)))))
-(-10 -7 (-15 -2972 ((-306) (-1087) (-883 (-523)))) (-15 -1430 ((-306) (-1087) (-883 (-523)) (-883 (-523)))) (-15 -1430 ((-306) (-1087) (-1009 (-883 (-523))) (-1009 (-883 (-523))))) (-15 -1566 ((-306) (-1087) (-883 (-523)))) (-15 -2953 ((-306) (-1087) (-883 (-523)))))
-((-3015 (((-312 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-312 |#1| |#2| |#3| |#4|)) 33)))
-(((-309 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3015 ((-312 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-312 |#1| |#2| |#3| |#4|)))) (-339) (-1145 |#1|) (-1145 (-383 |#2|)) (-318 |#1| |#2| |#3|) (-339) (-1145 |#5|) (-1145 (-383 |#6|)) (-318 |#5| |#6| |#7|)) (T -309))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-312 *5 *6 *7 *8)) (-4 *5 (-339)) (-4 *6 (-1145 *5)) (-4 *7 (-1145 (-383 *6))) (-4 *8 (-318 *5 *6 *7)) (-4 *9 (-339)) (-4 *10 (-1145 *9)) (-4 *11 (-1145 (-383 *10))) (-5 *2 (-312 *9 *10 *11 *12)) (-5 *1 (-309 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-318 *9 *10 *11)))))
-(-10 -7 (-15 -3015 ((-312 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-312 |#1| |#2| |#3| |#4|))))
-((-3462 (((-108) $) 14)))
-(((-310 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3462 ((-108) |#1|))) (-311 |#2| |#3| |#4| |#5|) (-339) (-1145 |#2|) (-1145 (-383 |#3|)) (-318 |#2| |#3| |#4|)) (T -310))
-NIL
-(-10 -8 (-15 -3462 ((-108) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-1830 (($ $) 26)) (-3462 (((-108) $) 25)) (-3841 (((-1070) $) 9)) (-4140 (((-389 |#2| (-383 |#2|) |#3| |#4|) $) 32)) (-2435 (((-1034) $) 10)) (-4102 (((-3 |#4| "failed") $) 24)) (-2046 (($ (-389 |#2| (-383 |#2|) |#3| |#4|)) 31) (($ |#4|) 30) (($ |#1| |#1|) 29) (($ |#1| |#1| (-523)) 28) (($ |#4| |#2| |#2| |#2| |#1|) 23)) (-3720 (((-2 (|:| -2323 (-389 |#2| (-383 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 27)) (-3976 (((-794) $) 11)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20)))
-(((-311 |#1| |#2| |#3| |#4|) (-129) (-339) (-1145 |t#1|) (-1145 (-383 |t#2|)) (-318 |t#1| |t#2| |t#3|)) (T -311))
-((-4140 (*1 *2 *1) (-12 (-4 *1 (-311 *3 *4 *5 *6)) (-4 *3 (-339)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-4 *6 (-318 *3 *4 *5)) (-5 *2 (-389 *4 (-383 *4) *5 *6)))) (-2046 (*1 *1 *2) (-12 (-5 *2 (-389 *4 (-383 *4) *5 *6)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-4 *6 (-318 *3 *4 *5)) (-4 *3 (-339)) (-4 *1 (-311 *3 *4 *5 *6)))) (-2046 (*1 *1 *2) (-12 (-4 *3 (-339)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-4 *1 (-311 *3 *4 *5 *2)) (-4 *2 (-318 *3 *4 *5)))) (-2046 (*1 *1 *2 *2) (-12 (-4 *2 (-339)) (-4 *3 (-1145 *2)) (-4 *4 (-1145 (-383 *3))) (-4 *1 (-311 *2 *3 *4 *5)) (-4 *5 (-318 *2 *3 *4)))) (-2046 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-523)) (-4 *2 (-339)) (-4 *4 (-1145 *2)) (-4 *5 (-1145 (-383 *4))) (-4 *1 (-311 *2 *4 *5 *6)) (-4 *6 (-318 *2 *4 *5)))) (-3720 (*1 *2 *1) (-12 (-4 *1 (-311 *3 *4 *5 *6)) (-4 *3 (-339)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-4 *6 (-318 *3 *4 *5)) (-5 *2 (-2 (|:| -2323 (-389 *4 (-383 *4) *5 *6)) (|:| |principalPart| *6))))) (-1830 (*1 *1 *1) (-12 (-4 *1 (-311 *2 *3 *4 *5)) (-4 *2 (-339)) (-4 *3 (-1145 *2)) (-4 *4 (-1145 (-383 *3))) (-4 *5 (-318 *2 *3 *4)))) (-3462 (*1 *2 *1) (-12 (-4 *1 (-311 *3 *4 *5 *6)) (-4 *3 (-339)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-4 *6 (-318 *3 *4 *5)) (-5 *2 (-108)))) (-4102 (*1 *2 *1) (|partial| -12 (-4 *1 (-311 *3 *4 *5 *2)) (-4 *3 (-339)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-4 *2 (-318 *3 *4 *5)))) (-2046 (*1 *1 *2 *3 *3 *3 *4) (-12 (-4 *4 (-339)) (-4 *3 (-1145 *4)) (-4 *5 (-1145 (-383 *3))) (-4 *1 (-311 *4 *3 *5 *2)) (-4 *2 (-318 *4 *3 *5)))))
-(-13 (-21) (-10 -8 (-15 -4140 ((-389 |t#2| (-383 |t#2|) |t#3| |t#4|) $)) (-15 -2046 ($ (-389 |t#2| (-383 |t#2|) |t#3| |t#4|))) (-15 -2046 ($ |t#4|)) (-15 -2046 ($ |t#1| |t#1|)) (-15 -2046 ($ |t#1| |t#1| (-523))) (-15 -3720 ((-2 (|:| -2323 (-389 |t#2| (-383 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -1830 ($ $)) (-15 -3462 ((-108) $)) (-15 -4102 ((-3 |t#4| "failed") $)) (-15 -2046 ($ |t#4| |t#2| |t#2| |t#2| |t#1|))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-1830 (($ $) 33)) (-3462 (((-108) $) NIL)) (-3841 (((-1070) $) NIL)) (-3390 (((-1169 |#4|) $) 125)) (-4140 (((-389 |#2| (-383 |#2|) |#3| |#4|) $) 31)) (-2435 (((-1034) $) NIL)) (-4102 (((-3 |#4| "failed") $) 36)) (-2788 (((-1169 |#4|) $) 118)) (-2046 (($ (-389 |#2| (-383 |#2|) |#3| |#4|)) 41) (($ |#4|) 43) (($ |#1| |#1|) 45) (($ |#1| |#1| (-523)) 47) (($ |#4| |#2| |#2| |#2| |#1|) 49)) (-3720 (((-2 (|:| -2323 (-389 |#2| (-383 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 39)) (-3976 (((-794) $) 17)) (-1428 (($) 14 T CONST)) (-4037 (((-108) $ $) 20)) (-4115 (($ $) 27) (($ $ $) NIL)) (-4103 (($ $ $) 25)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 23)))
-(((-312 |#1| |#2| |#3| |#4|) (-13 (-311 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2788 ((-1169 |#4|) $)) (-15 -3390 ((-1169 |#4|) $)))) (-339) (-1145 |#1|) (-1145 (-383 |#2|)) (-318 |#1| |#2| |#3|)) (T -312))
-((-2788 (*1 *2 *1) (-12 (-4 *3 (-339)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-1169 *6)) (-5 *1 (-312 *3 *4 *5 *6)) (-4 *6 (-318 *3 *4 *5)))) (-3390 (*1 *2 *1) (-12 (-4 *3 (-339)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-1169 *6)) (-5 *1 (-312 *3 *4 *5 *6)) (-4 *6 (-318 *3 *4 *5)))))
-(-13 (-311 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2788 ((-1169 |#4|) $)) (-15 -3390 ((-1169 |#4|) $))))
-((-1349 (($ $ (-1087) |#2|) NIL) (($ $ (-589 (-1087)) (-589 |#2|)) 20) (($ $ (-589 (-271 |#2|))) 15) (($ $ (-271 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-589 |#2|) (-589 |#2|)) NIL)) (-1502 (($ $ |#2|) 11)))
-(((-313 |#1| |#2|) (-10 -8 (-15 -1502 (|#1| |#1| |#2|)) (-15 -1349 (|#1| |#1| (-589 |#2|) (-589 |#2|))) (-15 -1349 (|#1| |#1| |#2| |#2|)) (-15 -1349 (|#1| |#1| (-271 |#2|))) (-15 -1349 (|#1| |#1| (-589 (-271 |#2|)))) (-15 -1349 (|#1| |#1| (-589 (-1087)) (-589 |#2|))) (-15 -1349 (|#1| |#1| (-1087) |#2|))) (-314 |#2|) (-1016)) (T -313))
-NIL
-(-10 -8 (-15 -1502 (|#1| |#1| |#2|)) (-15 -1349 (|#1| |#1| (-589 |#2|) (-589 |#2|))) (-15 -1349 (|#1| |#1| |#2| |#2|)) (-15 -1349 (|#1| |#1| (-271 |#2|))) (-15 -1349 (|#1| |#1| (-589 (-271 |#2|)))) (-15 -1349 (|#1| |#1| (-589 (-1087)) (-589 |#2|))) (-15 -1349 (|#1| |#1| (-1087) |#2|)))
-((-3015 (($ (-1 |#1| |#1|) $) 6)) (-1349 (($ $ (-1087) |#1|) 17 (|has| |#1| (-484 (-1087) |#1|))) (($ $ (-589 (-1087)) (-589 |#1|)) 16 (|has| |#1| (-484 (-1087) |#1|))) (($ $ (-589 (-271 |#1|))) 15 (|has| |#1| (-286 |#1|))) (($ $ (-271 |#1|)) 14 (|has| |#1| (-286 |#1|))) (($ $ |#1| |#1|) 13 (|has| |#1| (-286 |#1|))) (($ $ (-589 |#1|) (-589 |#1|)) 12 (|has| |#1| (-286 |#1|)))) (-1502 (($ $ |#1|) 11 (|has| |#1| (-263 |#1| |#1|)))))
-(((-314 |#1|) (-129) (-1016)) (T -314))
-((-3015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-314 *3)) (-4 *3 (-1016)))))
-(-13 (-10 -8 (-15 -3015 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-263 |t#1| |t#1|)) (-6 (-263 |t#1| $)) |%noBranch|) (IF (|has| |t#1| (-286 |t#1|)) (-6 (-286 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-484 (-1087) |t#1|)) (-6 (-484 (-1087) |t#1|)) |%noBranch|)))
-(((-263 |#1| $) |has| |#1| (-263 |#1| |#1|)) ((-286 |#1|) |has| |#1| (-286 |#1|)) ((-484 (-1087) |#1|) |has| |#1| (-484 (-1087) |#1|)) ((-484 |#1| |#1|) |has| |#1| (-286 |#1|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3716 (((-589 (-1087)) $) NIL)) (-1638 (((-108)) 89) (((-108) (-108)) 90)) (-2394 (((-589 (-562 $)) $) NIL)) (-3695 (($ $) NIL)) (-2608 (($ $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3834 (($ $ (-271 $)) NIL) (($ $ (-589 (-271 $))) NIL) (($ $ (-589 (-562 $)) (-589 $)) NIL)) (-3584 (($ $) NIL)) (-3669 (($ $) NIL)) (-2588 (($ $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-562 $) "failed") $) NIL) (((-3 |#3| "failed") $) NIL) (((-3 $ "failed") (-292 |#3|)) 71) (((-3 $ "failed") (-1087)) 95) (((-3 $ "failed") (-292 (-523))) 59 (|has| |#3| (-964 (-523)))) (((-3 $ "failed") (-383 (-883 (-523)))) 65 (|has| |#3| (-964 (-523)))) (((-3 $ "failed") (-883 (-523))) 60 (|has| |#3| (-964 (-523)))) (((-3 $ "failed") (-292 (-355))) 77 (|has| |#3| (-964 (-355)))) (((-3 $ "failed") (-383 (-883 (-355)))) 83 (|has| |#3| (-964 (-355)))) (((-3 $ "failed") (-883 (-355))) 78 (|has| |#3| (-964 (-355))))) (-1996 (((-562 $) $) NIL) ((|#3| $) NIL) (($ (-292 |#3|)) 72) (($ (-1087)) 96) (($ (-292 (-523))) 61 (|has| |#3| (-964 (-523)))) (($ (-383 (-883 (-523)))) 66 (|has| |#3| (-964 (-523)))) (($ (-883 (-523))) 62 (|has| |#3| (-964 (-523)))) (($ (-292 (-355))) 79 (|has| |#3| (-964 (-355)))) (($ (-383 (-883 (-355)))) 84 (|has| |#3| (-964 (-355)))) (($ (-883 (-355))) 80 (|has| |#3| (-964 (-355))))) (-4211 (((-3 $ "failed") $) NIL)) (-2188 (($) 10)) (-4035 (($ $) NIL) (($ (-589 $)) NIL)) (-2856 (((-589 (-110)) $) NIL)) (-1564 (((-110) (-110)) NIL)) (-3482 (((-108) $) NIL)) (-2126 (((-108) $) NIL (|has| $ (-964 (-523))))) (-4016 (((-1083 $) (-562 $)) NIL (|has| $ (-973)))) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3015 (($ (-1 $ $) (-562 $)) NIL)) (-2215 (((-3 (-562 $) "failed") $) NIL)) (-3847 (($ $) 92)) (-2062 (($ $) NIL)) (-3841 (((-1070) $) NIL)) (-3526 (((-589 (-562 $)) $) NIL)) (-2217 (($ (-110) $) 91) (($ (-110) (-589 $)) NIL)) (-2676 (((-108) $ (-110)) NIL) (((-108) $ (-1087)) NIL)) (-1942 (((-710) $) NIL)) (-2435 (((-1034) $) NIL)) (-3791 (((-108) $ $) NIL) (((-108) $ (-1087)) NIL)) (-1847 (($ $) NIL)) (-3775 (((-108) $) NIL (|has| $ (-964 (-523))))) (-1349 (($ $ (-562 $) $) NIL) (($ $ (-589 (-562 $)) (-589 $)) NIL) (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-589 (-1087)) (-589 (-1 $ $))) NIL) (($ $ (-589 (-1087)) (-589 (-1 $ (-589 $)))) NIL) (($ $ (-1087) (-1 $ (-589 $))) NIL) (($ $ (-1087) (-1 $ $)) NIL) (($ $ (-589 (-110)) (-589 (-1 $ $))) NIL) (($ $ (-589 (-110)) (-589 (-1 $ (-589 $)))) NIL) (($ $ (-110) (-1 $ (-589 $))) NIL) (($ $ (-110) (-1 $ $)) NIL)) (-1502 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-589 $)) NIL)) (-2404 (($ $) NIL) (($ $ $) NIL)) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087)) NIL)) (-3399 (($ $) NIL (|has| $ (-973)))) (-3683 (($ $) NIL)) (-2598 (($ $) NIL)) (-3976 (((-794) $) NIL) (($ (-562 $)) NIL) (($ |#3|) NIL) (($ (-523)) NIL) (((-292 |#3|) $) 94)) (-1698 (((-710)) NIL)) (-4114 (($ $) NIL) (($ (-589 $)) NIL)) (-1651 (((-108) (-110)) NIL)) (-2680 (($ $) NIL)) (-2655 (($ $) NIL)) (-2667 (($ $) NIL)) (-3984 (($ $) NIL)) (-2573 (($ $ (-710)) NIL) (($ $ (-852)) NIL)) (-1428 (($) 93 T CONST)) (-1440 (($) 24 T CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087)) NIL)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) NIL)) (-4115 (($ $ $) NIL) (($ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-710)) NIL) (($ $ (-852)) NIL)) (* (($ |#3| $) NIL) (($ $ |#3|) NIL) (($ $ $) NIL) (($ (-523) $) NIL) (($ (-710) $) NIL) (($ (-852) $) NIL)))
-(((-315 |#1| |#2| |#3|) (-13 (-279) (-37 |#3|) (-964 |#3|) (-831 (-1087)) (-10 -8 (-15 -1996 ($ (-292 |#3|))) (-15 -2898 ((-3 $ "failed") (-292 |#3|))) (-15 -1996 ($ (-1087))) (-15 -2898 ((-3 $ "failed") (-1087))) (-15 -3976 ((-292 |#3|) $)) (IF (|has| |#3| (-964 (-523))) (PROGN (-15 -1996 ($ (-292 (-523)))) (-15 -2898 ((-3 $ "failed") (-292 (-523)))) (-15 -1996 ($ (-383 (-883 (-523))))) (-15 -2898 ((-3 $ "failed") (-383 (-883 (-523))))) (-15 -1996 ($ (-883 (-523)))) (-15 -2898 ((-3 $ "failed") (-883 (-523))))) |%noBranch|) (IF (|has| |#3| (-964 (-355))) (PROGN (-15 -1996 ($ (-292 (-355)))) (-15 -2898 ((-3 $ "failed") (-292 (-355)))) (-15 -1996 ($ (-383 (-883 (-355))))) (-15 -2898 ((-3 $ "failed") (-383 (-883 (-355))))) (-15 -1996 ($ (-883 (-355)))) (-15 -2898 ((-3 $ "failed") (-883 (-355))))) |%noBranch|) (-15 -3984 ($ $)) (-15 -3584 ($ $)) (-15 -1847 ($ $)) (-15 -2062 ($ $)) (-15 -3847 ($ $)) (-15 -2588 ($ $)) (-15 -2598 ($ $)) (-15 -2608 ($ $)) (-15 -2655 ($ $)) (-15 -2667 ($ $)) (-15 -2680 ($ $)) (-15 -3669 ($ $)) (-15 -3683 ($ $)) (-15 -3695 ($ $)) (-15 -2188 ($)) (-15 -3716 ((-589 (-1087)) $)) (-15 -1638 ((-108))) (-15 -1638 ((-108) (-108))))) (-589 (-1087)) (-589 (-1087)) (-363)) (T -315))
-((-1996 (*1 *1 *2) (-12 (-5 *2 (-292 *5)) (-4 *5 (-363)) (-5 *1 (-315 *3 *4 *5)) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-292 *5)) (-4 *5 (-363)) (-5 *1 (-315 *3 *4 *5)) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-315 *3 *4 *5)) (-14 *3 (-589 *2)) (-14 *4 (-589 *2)) (-4 *5 (-363)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-1087)) (-5 *1 (-315 *3 *4 *5)) (-14 *3 (-589 *2)) (-14 *4 (-589 *2)) (-4 *5 (-363)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-292 *5)) (-5 *1 (-315 *3 *4 *5)) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-292 (-523))) (-5 *1 (-315 *3 *4 *5)) (-4 *5 (-964 (-523))) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-292 (-523))) (-5 *1 (-315 *3 *4 *5)) (-4 *5 (-964 (-523))) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-383 (-883 (-523)))) (-5 *1 (-315 *3 *4 *5)) (-4 *5 (-964 (-523))) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-383 (-883 (-523)))) (-5 *1 (-315 *3 *4 *5)) (-4 *5 (-964 (-523))) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-883 (-523))) (-5 *1 (-315 *3 *4 *5)) (-4 *5 (-964 (-523))) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-883 (-523))) (-5 *1 (-315 *3 *4 *5)) (-4 *5 (-964 (-523))) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-292 (-355))) (-5 *1 (-315 *3 *4 *5)) (-4 *5 (-964 (-355))) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-292 (-355))) (-5 *1 (-315 *3 *4 *5)) (-4 *5 (-964 (-355))) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-383 (-883 (-355)))) (-5 *1 (-315 *3 *4 *5)) (-4 *5 (-964 (-355))) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-383 (-883 (-355)))) (-5 *1 (-315 *3 *4 *5)) (-4 *5 (-964 (-355))) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-883 (-355))) (-5 *1 (-315 *3 *4 *5)) (-4 *5 (-964 (-355))) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-883 (-355))) (-5 *1 (-315 *3 *4 *5)) (-4 *5 (-964 (-355))) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363)))) (-3984 (*1 *1 *1) (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087))) (-14 *3 (-589 (-1087))) (-4 *4 (-363)))) (-3584 (*1 *1 *1) (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087))) (-14 *3 (-589 (-1087))) (-4 *4 (-363)))) (-1847 (*1 *1 *1) (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087))) (-14 *3 (-589 (-1087))) (-4 *4 (-363)))) (-2062 (*1 *1 *1) (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087))) (-14 *3 (-589 (-1087))) (-4 *4 (-363)))) (-3847 (*1 *1 *1) (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087))) (-14 *3 (-589 (-1087))) (-4 *4 (-363)))) (-2588 (*1 *1 *1) (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087))) (-14 *3 (-589 (-1087))) (-4 *4 (-363)))) (-2598 (*1 *1 *1) (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087))) (-14 *3 (-589 (-1087))) (-4 *4 (-363)))) (-2608 (*1 *1 *1) (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087))) (-14 *3 (-589 (-1087))) (-4 *4 (-363)))) (-2655 (*1 *1 *1) (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087))) (-14 *3 (-589 (-1087))) (-4 *4 (-363)))) (-2667 (*1 *1 *1) (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087))) (-14 *3 (-589 (-1087))) (-4 *4 (-363)))) (-2680 (*1 *1 *1) (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087))) (-14 *3 (-589 (-1087))) (-4 *4 (-363)))) (-3669 (*1 *1 *1) (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087))) (-14 *3 (-589 (-1087))) (-4 *4 (-363)))) (-3683 (*1 *1 *1) (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087))) (-14 *3 (-589 (-1087))) (-4 *4 (-363)))) (-3695 (*1 *1 *1) (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087))) (-14 *3 (-589 (-1087))) (-4 *4 (-363)))) (-2188 (*1 *1) (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087))) (-14 *3 (-589 (-1087))) (-4 *4 (-363)))) (-3716 (*1 *2 *1) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-315 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-363)))) (-1638 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-315 *3 *4 *5)) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363)))) (-1638 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-315 *3 *4 *5)) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363)))))
-(-13 (-279) (-37 |#3|) (-964 |#3|) (-831 (-1087)) (-10 -8 (-15 -1996 ($ (-292 |#3|))) (-15 -2898 ((-3 $ "failed") (-292 |#3|))) (-15 -1996 ($ (-1087))) (-15 -2898 ((-3 $ "failed") (-1087))) (-15 -3976 ((-292 |#3|) $)) (IF (|has| |#3| (-964 (-523))) (PROGN (-15 -1996 ($ (-292 (-523)))) (-15 -2898 ((-3 $ "failed") (-292 (-523)))) (-15 -1996 ($ (-383 (-883 (-523))))) (-15 -2898 ((-3 $ "failed") (-383 (-883 (-523))))) (-15 -1996 ($ (-883 (-523)))) (-15 -2898 ((-3 $ "failed") (-883 (-523))))) |%noBranch|) (IF (|has| |#3| (-964 (-355))) (PROGN (-15 -1996 ($ (-292 (-355)))) (-15 -2898 ((-3 $ "failed") (-292 (-355)))) (-15 -1996 ($ (-383 (-883 (-355))))) (-15 -2898 ((-3 $ "failed") (-383 (-883 (-355))))) (-15 -1996 ($ (-883 (-355)))) (-15 -2898 ((-3 $ "failed") (-883 (-355))))) |%noBranch|) (-15 -3984 ($ $)) (-15 -3584 ($ $)) (-15 -1847 ($ $)) (-15 -2062 ($ $)) (-15 -3847 ($ $)) (-15 -2588 ($ $)) (-15 -2598 ($ $)) (-15 -2608 ($ $)) (-15 -2655 ($ $)) (-15 -2667 ($ $)) (-15 -2680 ($ $)) (-15 -3669 ($ $)) (-15 -3683 ($ $)) (-15 -3695 ($ $)) (-15 -2188 ($)) (-15 -3716 ((-589 (-1087)) $)) (-15 -1638 ((-108))) (-15 -1638 ((-108) (-108)))))
-((-3015 ((|#8| (-1 |#5| |#1|) |#4|) 19)))
-(((-316 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3015 (|#8| (-1 |#5| |#1|) |#4|))) (-1127) (-1145 |#1|) (-1145 (-383 |#2|)) (-318 |#1| |#2| |#3|) (-1127) (-1145 |#5|) (-1145 (-383 |#6|)) (-318 |#5| |#6| |#7|)) (T -316))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1127)) (-4 *8 (-1127)) (-4 *6 (-1145 *5)) (-4 *7 (-1145 (-383 *6))) (-4 *9 (-1145 *8)) (-4 *2 (-318 *8 *9 *10)) (-5 *1 (-316 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-318 *5 *6 *7)) (-4 *10 (-1145 (-383 *9))))))
-(-10 -7 (-15 -3015 (|#8| (-1 |#5| |#1|) |#4|)))
-((-1962 (((-2 (|:| |num| (-1169 |#3|)) (|:| |den| |#3|)) $) 38)) (-3322 (($ (-1169 (-383 |#3|)) (-1169 $)) NIL) (($ (-1169 (-383 |#3|))) NIL) (($ (-1169 |#3|) |#3|) 161)) (-2332 (((-1169 $) (-1169 $)) 145)) (-3201 (((-589 (-589 |#2|))) 119)) (-1902 (((-108) |#2| |#2|) 73)) (-2213 (($ $) 139)) (-1244 (((-710)) 31)) (-1402 (((-1169 $) (-1169 $)) 198)) (-2161 (((-589 (-883 |#2|)) (-1087)) 110)) (-1933 (((-108) $) 158)) (-3759 (((-108) $) 25) (((-108) $ |#2|) 29) (((-108) $ |#3|) 202)) (-2931 (((-3 |#3| "failed")) 50)) (-4095 (((-710)) 170)) (-1502 ((|#2| $ |#2| |#2|) 132)) (-2632 (((-3 |#3| "failed")) 68)) (-4024 (($ $ (-1 (-383 |#3|) (-383 |#3|)) (-710)) NIL) (($ $ (-1 (-383 |#3|) (-383 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 206) (($ $ (-589 (-1087)) (-589 (-710))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087)) NIL) (($ $ (-710)) NIL) (($ $) NIL)) (-3054 (((-1169 $) (-1169 $)) 151)) (-2376 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 66)) (-4152 (((-108)) 33)))
-(((-317 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -3201 ((-589 (-589 |#2|)))) (-15 -2161 ((-589 (-883 |#2|)) (-1087))) (-15 -2376 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -2931 ((-3 |#3| "failed"))) (-15 -2632 ((-3 |#3| "failed"))) (-15 -1502 (|#2| |#1| |#2| |#2|)) (-15 -2213 (|#1| |#1|)) (-15 -3322 (|#1| (-1169 |#3|) |#3|)) (-15 -4024 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3759 ((-108) |#1| |#3|)) (-15 -3759 ((-108) |#1| |#2|)) (-15 -1962 ((-2 (|:| |num| (-1169 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2332 ((-1169 |#1|) (-1169 |#1|))) (-15 -1402 ((-1169 |#1|) (-1169 |#1|))) (-15 -3054 ((-1169 |#1|) (-1169 |#1|))) (-15 -3759 ((-108) |#1|)) (-15 -1933 ((-108) |#1|)) (-15 -1902 ((-108) |#2| |#2|)) (-15 -4152 ((-108))) (-15 -4095 ((-710))) (-15 -1244 ((-710))) (-15 -4024 (|#1| |#1| (-1 (-383 |#3|) (-383 |#3|)))) (-15 -4024 (|#1| |#1| (-1 (-383 |#3|) (-383 |#3|)) (-710))) (-15 -3322 (|#1| (-1169 (-383 |#3|)))) (-15 -3322 (|#1| (-1169 (-383 |#3|)) (-1169 |#1|)))) (-318 |#2| |#3| |#4|) (-1127) (-1145 |#2|) (-1145 (-383 |#3|))) (T -317))
-((-1244 (*1 *2) (-12 (-4 *4 (-1127)) (-4 *5 (-1145 *4)) (-4 *6 (-1145 (-383 *5))) (-5 *2 (-710)) (-5 *1 (-317 *3 *4 *5 *6)) (-4 *3 (-318 *4 *5 *6)))) (-4095 (*1 *2) (-12 (-4 *4 (-1127)) (-4 *5 (-1145 *4)) (-4 *6 (-1145 (-383 *5))) (-5 *2 (-710)) (-5 *1 (-317 *3 *4 *5 *6)) (-4 *3 (-318 *4 *5 *6)))) (-4152 (*1 *2) (-12 (-4 *4 (-1127)) (-4 *5 (-1145 *4)) (-4 *6 (-1145 (-383 *5))) (-5 *2 (-108)) (-5 *1 (-317 *3 *4 *5 *6)) (-4 *3 (-318 *4 *5 *6)))) (-1902 (*1 *2 *3 *3) (-12 (-4 *3 (-1127)) (-4 *5 (-1145 *3)) (-4 *6 (-1145 (-383 *5))) (-5 *2 (-108)) (-5 *1 (-317 *4 *3 *5 *6)) (-4 *4 (-318 *3 *5 *6)))) (-2632 (*1 *2) (|partial| -12 (-4 *4 (-1127)) (-4 *5 (-1145 (-383 *2))) (-4 *2 (-1145 *4)) (-5 *1 (-317 *3 *4 *2 *5)) (-4 *3 (-318 *4 *2 *5)))) (-2931 (*1 *2) (|partial| -12 (-4 *4 (-1127)) (-4 *5 (-1145 (-383 *2))) (-4 *2 (-1145 *4)) (-5 *1 (-317 *3 *4 *2 *5)) (-4 *3 (-318 *4 *2 *5)))) (-2161 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-4 *5 (-1127)) (-4 *6 (-1145 *5)) (-4 *7 (-1145 (-383 *6))) (-5 *2 (-589 (-883 *5))) (-5 *1 (-317 *4 *5 *6 *7)) (-4 *4 (-318 *5 *6 *7)))) (-3201 (*1 *2) (-12 (-4 *4 (-1127)) (-4 *5 (-1145 *4)) (-4 *6 (-1145 (-383 *5))) (-5 *2 (-589 (-589 *4))) (-5 *1 (-317 *3 *4 *5 *6)) (-4 *3 (-318 *4 *5 *6)))))
-(-10 -8 (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -3201 ((-589 (-589 |#2|)))) (-15 -2161 ((-589 (-883 |#2|)) (-1087))) (-15 -2376 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -2931 ((-3 |#3| "failed"))) (-15 -2632 ((-3 |#3| "failed"))) (-15 -1502 (|#2| |#1| |#2| |#2|)) (-15 -2213 (|#1| |#1|)) (-15 -3322 (|#1| (-1169 |#3|) |#3|)) (-15 -4024 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3759 ((-108) |#1| |#3|)) (-15 -3759 ((-108) |#1| |#2|)) (-15 -1962 ((-2 (|:| |num| (-1169 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2332 ((-1169 |#1|) (-1169 |#1|))) (-15 -1402 ((-1169 |#1|) (-1169 |#1|))) (-15 -3054 ((-1169 |#1|) (-1169 |#1|))) (-15 -3759 ((-108) |#1|)) (-15 -1933 ((-108) |#1|)) (-15 -1902 ((-108) |#2| |#2|)) (-15 -4152 ((-108))) (-15 -4095 ((-710))) (-15 -1244 ((-710))) (-15 -4024 (|#1| |#1| (-1 (-383 |#3|) (-383 |#3|)))) (-15 -4024 (|#1| |#1| (-1 (-383 |#3|) (-383 |#3|)) (-710))) (-15 -3322 (|#1| (-1169 (-383 |#3|)))) (-15 -3322 (|#1| (-1169 (-383 |#3|)) (-1169 |#1|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-1962 (((-2 (|:| |num| (-1169 |#2|)) (|:| |den| |#2|)) $) 196)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 93 (|has| (-383 |#2|) (-339)))) (-3950 (($ $) 94 (|has| (-383 |#2|) (-339)))) (-3226 (((-108) $) 96 (|has| (-383 |#2|) (-339)))) (-1711 (((-629 (-383 |#2|)) (-1169 $)) 46) (((-629 (-383 |#2|))) 61)) (-4131 (((-383 |#2|) $) 52)) (-2794 (((-1097 (-852) (-710)) (-523)) 147 (|has| (-383 |#2|) (-325)))) (-2999 (((-3 $ "failed") $ $) 19)) (-3763 (($ $) 113 (|has| (-383 |#2|) (-339)))) (-2105 (((-394 $) $) 114 (|has| (-383 |#2|) (-339)))) (-3684 (((-108) $ $) 104 (|has| (-383 |#2|) (-339)))) (-3843 (((-710)) 87 (|has| (-383 |#2|) (-344)))) (-2693 (((-108)) 213)) (-1690 (((-108) |#1|) 212) (((-108) |#2|) 211)) (-1640 (($) 17 T CONST)) (-2898 (((-3 (-523) "failed") $) 169 (|has| (-383 |#2|) (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) 167 (|has| (-383 |#2|) (-964 (-383 (-523))))) (((-3 (-383 |#2|) "failed") $) 166)) (-1996 (((-523) $) 170 (|has| (-383 |#2|) (-964 (-523)))) (((-383 (-523)) $) 168 (|has| (-383 |#2|) (-964 (-383 (-523))))) (((-383 |#2|) $) 165)) (-3322 (($ (-1169 (-383 |#2|)) (-1169 $)) 48) (($ (-1169 (-383 |#2|))) 64) (($ (-1169 |#2|) |#2|) 189)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) 153 (|has| (-383 |#2|) (-325)))) (-2501 (($ $ $) 108 (|has| (-383 |#2|) (-339)))) (-2545 (((-629 (-383 |#2|)) $ (-1169 $)) 53) (((-629 (-383 |#2|)) $) 59)) (-2203 (((-629 (-523)) (-629 $)) 164 (|has| (-383 |#2|) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 163 (|has| (-383 |#2|) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-383 |#2|))) (|:| |vec| (-1169 (-383 |#2|)))) (-629 $) (-1169 $)) 162) (((-629 (-383 |#2|)) (-629 $)) 161)) (-2332 (((-1169 $) (-1169 $)) 201)) (-1830 (($ |#3|) 158) (((-3 $ "failed") (-383 |#3|)) 155 (|has| (-383 |#2|) (-339)))) (-4211 (((-3 $ "failed") $) 34)) (-3201 (((-589 (-589 |#1|))) 182 (|has| |#1| (-344)))) (-1902 (((-108) |#1| |#1|) 217)) (-2262 (((-852)) 54)) (-3461 (($) 90 (|has| (-383 |#2|) (-344)))) (-1495 (((-108)) 210)) (-3727 (((-108) |#1|) 209) (((-108) |#2|) 208)) (-2486 (($ $ $) 107 (|has| (-383 |#2|) (-339)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 102 (|has| (-383 |#2|) (-339)))) (-2213 (($ $) 188)) (-2097 (($) 149 (|has| (-383 |#2|) (-325)))) (-1200 (((-108) $) 150 (|has| (-383 |#2|) (-325)))) (-1419 (($ $ (-710)) 141 (|has| (-383 |#2|) (-325))) (($ $) 140 (|has| (-383 |#2|) (-325)))) (-1330 (((-108) $) 115 (|has| (-383 |#2|) (-339)))) (-1500 (((-852) $) 152 (|has| (-383 |#2|) (-325))) (((-772 (-852)) $) 138 (|has| (-383 |#2|) (-325)))) (-3482 (((-108) $) 31)) (-1244 (((-710)) 220)) (-1402 (((-1169 $) (-1169 $)) 202)) (-2765 (((-383 |#2|) $) 51)) (-2161 (((-589 (-883 |#1|)) (-1087)) 183 (|has| |#1| (-339)))) (-1289 (((-3 $ "failed") $) 142 (|has| (-383 |#2|) (-325)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 111 (|has| (-383 |#2|) (-339)))) (-2277 ((|#3| $) 44 (|has| (-383 |#2|) (-339)))) (-4076 (((-852) $) 89 (|has| (-383 |#2|) (-344)))) (-1816 ((|#3| $) 156)) (-2012 (($ (-589 $)) 100 (|has| (-383 |#2|) (-339))) (($ $ $) 99 (|has| (-383 |#2|) (-339)))) (-3841 (((-1070) $) 9)) (-1209 (((-629 (-383 |#2|))) 197)) (-1845 (((-629 (-383 |#2|))) 199)) (-3071 (($ $) 116 (|has| (-383 |#2|) (-339)))) (-4087 (($ (-1169 |#2|) |#2|) 194)) (-2009 (((-629 (-383 |#2|))) 198)) (-3864 (((-629 (-383 |#2|))) 200)) (-2180 (((-2 (|:| |num| (-629 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 193)) (-2401 (((-2 (|:| |num| (-1169 |#2|)) (|:| |den| |#2|)) $) 195)) (-3205 (((-1169 $)) 206)) (-3835 (((-1169 $)) 207)) (-1933 (((-108) $) 205)) (-3759 (((-108) $) 204) (((-108) $ |#1|) 192) (((-108) $ |#2|) 191)) (-4105 (($) 143 (|has| (-383 |#2|) (-325)) CONST)) (-2557 (($ (-852)) 88 (|has| (-383 |#2|) (-344)))) (-2931 (((-3 |#2| "failed")) 185)) (-2435 (((-1034) $) 10)) (-4095 (((-710)) 219)) (-4102 (($) 160)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 101 (|has| (-383 |#2|) (-339)))) (-2056 (($ (-589 $)) 98 (|has| (-383 |#2|) (-339))) (($ $ $) 97 (|has| (-383 |#2|) (-339)))) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) 146 (|has| (-383 |#2|) (-325)))) (-3573 (((-394 $) $) 112 (|has| (-383 |#2|) (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| (-383 |#2|) (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 109 (|has| (-383 |#2|) (-339)))) (-2469 (((-3 $ "failed") $ $) 92 (|has| (-383 |#2|) (-339)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 103 (|has| (-383 |#2|) (-339)))) (-3087 (((-710) $) 105 (|has| (-383 |#2|) (-339)))) (-1502 ((|#1| $ |#1| |#1|) 187)) (-2632 (((-3 |#2| "failed")) 186)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 106 (|has| (-383 |#2|) (-339)))) (-4053 (((-383 |#2|) (-1169 $)) 47) (((-383 |#2|)) 60)) (-2041 (((-710) $) 151 (|has| (-383 |#2|) (-325))) (((-3 (-710) "failed") $ $) 139 (|has| (-383 |#2|) (-325)))) (-4024 (($ $ (-1 (-383 |#2|) (-383 |#2|)) (-710)) 123 (|has| (-383 |#2|) (-339))) (($ $ (-1 (-383 |#2|) (-383 |#2|))) 122 (|has| (-383 |#2|) (-339))) (($ $ (-1 |#2| |#2|)) 190) (($ $ (-589 (-1087)) (-589 (-710))) 130 (-3255 (-2819 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087)))) (-2819 (|has| (-383 |#2|) (-831 (-1087))) (|has| (-383 |#2|) (-339))))) (($ $ (-1087) (-710)) 131 (-3255 (-2819 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087)))) (-2819 (|has| (-383 |#2|) (-831 (-1087))) (|has| (-383 |#2|) (-339))))) (($ $ (-589 (-1087))) 132 (-3255 (-2819 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087)))) (-2819 (|has| (-383 |#2|) (-831 (-1087))) (|has| (-383 |#2|) (-339))))) (($ $ (-1087)) 133 (-3255 (-2819 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087)))) (-2819 (|has| (-383 |#2|) (-831 (-1087))) (|has| (-383 |#2|) (-339))))) (($ $ (-710)) 135 (-3255 (-2819 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-211))) (-2819 (|has| (-383 |#2|) (-211)) (|has| (-383 |#2|) (-339))) (|has| (-383 |#2|) (-325)))) (($ $) 137 (-3255 (-2819 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-211))) (-2819 (|has| (-383 |#2|) (-211)) (|has| (-383 |#2|) (-339))) (|has| (-383 |#2|) (-325))))) (-1718 (((-629 (-383 |#2|)) (-1169 $) (-1 (-383 |#2|) (-383 |#2|))) 154 (|has| (-383 |#2|) (-339)))) (-3399 ((|#3|) 159)) (-2315 (($) 148 (|has| (-383 |#2|) (-325)))) (-2411 (((-1169 (-383 |#2|)) $ (-1169 $)) 50) (((-629 (-383 |#2|)) (-1169 $) (-1169 $)) 49) (((-1169 (-383 |#2|)) $) 66) (((-629 (-383 |#2|)) (-1169 $)) 65)) (-3077 (((-1169 (-383 |#2|)) $) 63) (($ (-1169 (-383 |#2|))) 62) ((|#3| $) 171) (($ |#3|) 157)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) 145 (|has| (-383 |#2|) (-325)))) (-3054 (((-1169 $) (-1169 $)) 203)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ (-383 |#2|)) 37) (($ (-383 (-523))) 86 (-3255 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-964 (-383 (-523)))))) (($ $) 91 (|has| (-383 |#2|) (-339)))) (-2301 (($ $) 144 (|has| (-383 |#2|) (-325))) (((-3 $ "failed") $) 43 (|has| (-383 |#2|) (-134)))) (-1606 ((|#3| $) 45)) (-1698 (((-710)) 29)) (-3455 (((-108)) 216)) (-2771 (((-108) |#1|) 215) (((-108) |#2|) 214)) (-2922 (((-1169 $)) 67)) (-3842 (((-108) $ $) 95 (|has| (-383 |#2|) (-339)))) (-2376 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 184)) (-4152 (((-108)) 218)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 117 (|has| (-383 |#2|) (-339)))) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ (-1 (-383 |#2|) (-383 |#2|)) (-710)) 125 (|has| (-383 |#2|) (-339))) (($ $ (-1 (-383 |#2|) (-383 |#2|))) 124 (|has| (-383 |#2|) (-339))) (($ $ (-589 (-1087)) (-589 (-710))) 126 (-3255 (-2819 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087)))) (-2819 (|has| (-383 |#2|) (-831 (-1087))) (|has| (-383 |#2|) (-339))))) (($ $ (-1087) (-710)) 127 (-3255 (-2819 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087)))) (-2819 (|has| (-383 |#2|) (-831 (-1087))) (|has| (-383 |#2|) (-339))))) (($ $ (-589 (-1087))) 128 (-3255 (-2819 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087)))) (-2819 (|has| (-383 |#2|) (-831 (-1087))) (|has| (-383 |#2|) (-339))))) (($ $ (-1087)) 129 (-3255 (-2819 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087)))) (-2819 (|has| (-383 |#2|) (-831 (-1087))) (|has| (-383 |#2|) (-339))))) (($ $ (-710)) 134 (-3255 (-2819 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-211))) (-2819 (|has| (-383 |#2|) (-211)) (|has| (-383 |#2|) (-339))) (|has| (-383 |#2|) (-325)))) (($ $) 136 (-3255 (-2819 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-211))) (-2819 (|has| (-383 |#2|) (-211)) (|has| (-383 |#2|) (-339))) (|has| (-383 |#2|) (-325))))) (-4037 (((-108) $ $) 6)) (-4125 (($ $ $) 121 (|has| (-383 |#2|) (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 118 (|has| (-383 |#2|) (-339)))) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 |#2|)) 39) (($ (-383 |#2|) $) 38) (($ (-383 (-523)) $) 120 (|has| (-383 |#2|) (-339))) (($ $ (-383 (-523))) 119 (|has| (-383 |#2|) (-339)))))
-(((-318 |#1| |#2| |#3|) (-129) (-1127) (-1145 |t#1|) (-1145 (-383 |t#2|))) (T -318))
-((-1244 (*1 *2) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-710)))) (-4095 (*1 *2) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-710)))) (-4152 (*1 *2) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))) (-1902 (*1 *2 *3 *3) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))) (-3455 (*1 *2) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))) (-2771 (*1 *2 *3) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))) (-2771 (*1 *2 *3) (-12 (-4 *1 (-318 *4 *3 *5)) (-4 *4 (-1127)) (-4 *3 (-1145 *4)) (-4 *5 (-1145 (-383 *3))) (-5 *2 (-108)))) (-2693 (*1 *2) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))) (-1690 (*1 *2 *3) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))) (-1690 (*1 *2 *3) (-12 (-4 *1 (-318 *4 *3 *5)) (-4 *4 (-1127)) (-4 *3 (-1145 *4)) (-4 *5 (-1145 (-383 *3))) (-5 *2 (-108)))) (-1495 (*1 *2) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))) (-3727 (*1 *2 *3) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))) (-3727 (*1 *2 *3) (-12 (-4 *1 (-318 *4 *3 *5)) (-4 *4 (-1127)) (-4 *3 (-1145 *4)) (-4 *5 (-1145 (-383 *3))) (-5 *2 (-108)))) (-3835 (*1 *2) (-12 (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-1169 *1)) (-4 *1 (-318 *3 *4 *5)))) (-3205 (*1 *2) (-12 (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-1169 *1)) (-4 *1 (-318 *3 *4 *5)))) (-1933 (*1 *2 *1) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))) (-3759 (*1 *2 *1) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))) (-3054 (*1 *2 *2) (-12 (-5 *2 (-1169 *1)) (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))))) (-1402 (*1 *2 *2) (-12 (-5 *2 (-1169 *1)) (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))))) (-2332 (*1 *2 *2) (-12 (-5 *2 (-1169 *1)) (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))))) (-3864 (*1 *2) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-629 (-383 *4))))) (-1845 (*1 *2) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-629 (-383 *4))))) (-2009 (*1 *2) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-629 (-383 *4))))) (-1209 (*1 *2) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-629 (-383 *4))))) (-1962 (*1 *2 *1) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-2 (|:| |num| (-1169 *4)) (|:| |den| *4))))) (-2401 (*1 *2 *1) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-2 (|:| |num| (-1169 *4)) (|:| |den| *4))))) (-4087 (*1 *1 *2 *3) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-1145 *4)) (-4 *4 (-1127)) (-4 *1 (-318 *4 *3 *5)) (-4 *5 (-1145 (-383 *3))))) (-2180 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-318 *4 *5 *6)) (-4 *4 (-1127)) (-4 *5 (-1145 *4)) (-4 *6 (-1145 (-383 *5))) (-5 *2 (-2 (|:| |num| (-629 *5)) (|:| |den| *5))))) (-3759 (*1 *2 *1 *3) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))) (-3759 (*1 *2 *1 *3) (-12 (-4 *1 (-318 *4 *3 *5)) (-4 *4 (-1127)) (-4 *3 (-1145 *4)) (-4 *5 (-1145 (-383 *3))) (-5 *2 (-108)))) (-4024 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))))) (-3322 (*1 *1 *2 *3) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-1145 *4)) (-4 *4 (-1127)) (-4 *1 (-318 *4 *3 *5)) (-4 *5 (-1145 (-383 *3))))) (-2213 (*1 *1 *1) (-12 (-4 *1 (-318 *2 *3 *4)) (-4 *2 (-1127)) (-4 *3 (-1145 *2)) (-4 *4 (-1145 (-383 *3))))) (-1502 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-318 *2 *3 *4)) (-4 *2 (-1127)) (-4 *3 (-1145 *2)) (-4 *4 (-1145 (-383 *3))))) (-2632 (*1 *2) (|partial| -12 (-4 *1 (-318 *3 *2 *4)) (-4 *3 (-1127)) (-4 *4 (-1145 (-383 *2))) (-4 *2 (-1145 *3)))) (-2931 (*1 *2) (|partial| -12 (-4 *1 (-318 *3 *2 *4)) (-4 *3 (-1127)) (-4 *4 (-1145 (-383 *2))) (-4 *2 (-1145 *3)))) (-2376 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1145 *4)) (-4 *4 (-1127)) (-4 *6 (-1145 (-383 *5))) (-5 *2 (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5) (|:| |gd| *5))) (-4 *1 (-318 *4 *5 *6)))) (-2161 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-4 *1 (-318 *4 *5 *6)) (-4 *4 (-1127)) (-4 *5 (-1145 *4)) (-4 *6 (-1145 (-383 *5))) (-4 *4 (-339)) (-5 *2 (-589 (-883 *4))))) (-3201 (*1 *2) (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))) (-4 *3 (-344)) (-5 *2 (-589 (-589 *3))))))
-(-13 (-664 (-383 |t#2|) |t#3|) (-10 -8 (-15 -1244 ((-710))) (-15 -4095 ((-710))) (-15 -4152 ((-108))) (-15 -1902 ((-108) |t#1| |t#1|)) (-15 -3455 ((-108))) (-15 -2771 ((-108) |t#1|)) (-15 -2771 ((-108) |t#2|)) (-15 -2693 ((-108))) (-15 -1690 ((-108) |t#1|)) (-15 -1690 ((-108) |t#2|)) (-15 -1495 ((-108))) (-15 -3727 ((-108) |t#1|)) (-15 -3727 ((-108) |t#2|)) (-15 -3835 ((-1169 $))) (-15 -3205 ((-1169 $))) (-15 -1933 ((-108) $)) (-15 -3759 ((-108) $)) (-15 -3054 ((-1169 $) (-1169 $))) (-15 -1402 ((-1169 $) (-1169 $))) (-15 -2332 ((-1169 $) (-1169 $))) (-15 -3864 ((-629 (-383 |t#2|)))) (-15 -1845 ((-629 (-383 |t#2|)))) (-15 -2009 ((-629 (-383 |t#2|)))) (-15 -1209 ((-629 (-383 |t#2|)))) (-15 -1962 ((-2 (|:| |num| (-1169 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -3322 ($ (-1169 |t#2|) |t#2|)) (-15 -2401 ((-2 (|:| |num| (-1169 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -4087 ($ (-1169 |t#2|) |t#2|)) (-15 -2180 ((-2 (|:| |num| (-629 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -3759 ((-108) $ |t#1|)) (-15 -3759 ((-108) $ |t#2|)) (-15 -4024 ($ $ (-1 |t#2| |t#2|))) (-15 -3322 ($ (-1169 |t#2|) |t#2|)) (-15 -2213 ($ $)) (-15 -1502 (|t#1| $ |t#1| |t#1|)) (-15 -2632 ((-3 |t#2| "failed"))) (-15 -2931 ((-3 |t#2| "failed"))) (-15 -2376 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-339)) (-15 -2161 ((-589 (-883 |t#1|)) (-1087))) |%noBranch|) (IF (|has| |t#1| (-344)) (-15 -3201 ((-589 (-589 |t#1|)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-339))) ((-37 #1=(-383 |#2|)) . T) ((-37 $) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-339))) ((-97) . T) ((-107 #0# #0#) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-339))) ((-107 #1# #1#) . T) ((-107 $ $) . T) ((-124) . T) ((-134) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-134))) ((-136) |has| (-383 |#2|) (-136)) ((-563 (-794)) . T) ((-158) . T) ((-564 |#3|) . T) ((-209 #1#) |has| (-383 |#2|) (-339)) ((-211) -3255 (|has| (-383 |#2|) (-325)) (-12 (|has| (-383 |#2|) (-211)) (|has| (-383 |#2|) (-339)))) ((-221) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-339))) ((-267) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-339))) ((-284) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-339))) ((-339) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-339))) ((-378) |has| (-383 |#2|) (-325)) ((-344) -3255 (|has| (-383 |#2|) (-344)) (|has| (-383 |#2|) (-325))) ((-325) |has| (-383 |#2|) (-325)) ((-346 #1# |#3|) . T) ((-385 #1# |#3|) . T) ((-353 #1#) . T) ((-387 #1#) . T) ((-427) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-339))) ((-515) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-339))) ((-591 #0#) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-339))) ((-591 #1#) . T) ((-591 $) . T) ((-585 #1#) . T) ((-585 (-523)) |has| (-383 |#2|) (-585 (-523))) ((-657 #0#) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-339))) ((-657 #1#) . T) ((-657 $) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-339))) ((-664 #1# |#3|) . T) ((-666) . T) ((-831 (-1087)) -12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087)))) ((-851) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-339))) ((-964 (-383 (-523))) |has| (-383 |#2|) (-964 (-383 (-523)))) ((-964 #1#) . T) ((-964 (-523)) |has| (-383 |#2|) (-964 (-523))) ((-979 #0#) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-339))) ((-979 #1#) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1063) |has| (-383 |#2|) (-325)) ((-1127) -3255 (|has| (-383 |#2|) (-325)) (|has| (-383 |#2|) (-339))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-3867 (((-108) $) NIL)) (-4154 (((-710)) NIL)) (-4131 (((-841 |#1|) $) NIL) (($ $ (-852)) NIL (|has| (-841 |#1|) (-344)))) (-2794 (((-1097 (-852) (-710)) (-523)) NIL (|has| (-841 |#1|) (-344)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-3843 (((-710)) NIL (|has| (-841 |#1|) (-344)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-841 |#1|) "failed") $) NIL)) (-1996 (((-841 |#1|) $) NIL)) (-3322 (($ (-1169 (-841 |#1|))) NIL)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-841 |#1|) (-344)))) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) NIL (|has| (-841 |#1|) (-344)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-2097 (($) NIL (|has| (-841 |#1|) (-344)))) (-1200 (((-108) $) NIL (|has| (-841 |#1|) (-344)))) (-1419 (($ $ (-710)) NIL (-3255 (|has| (-841 |#1|) (-134)) (|has| (-841 |#1|) (-344)))) (($ $) NIL (-3255 (|has| (-841 |#1|) (-134)) (|has| (-841 |#1|) (-344))))) (-1330 (((-108) $) NIL)) (-1500 (((-852) $) NIL (|has| (-841 |#1|) (-344))) (((-772 (-852)) $) NIL (-3255 (|has| (-841 |#1|) (-134)) (|has| (-841 |#1|) (-344))))) (-3482 (((-108) $) NIL)) (-2842 (($) NIL (|has| (-841 |#1|) (-344)))) (-4077 (((-108) $) NIL (|has| (-841 |#1|) (-344)))) (-2765 (((-841 |#1|) $) NIL) (($ $ (-852)) NIL (|has| (-841 |#1|) (-344)))) (-1289 (((-3 $ "failed") $) NIL (|has| (-841 |#1|) (-344)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2277 (((-1083 (-841 |#1|)) $) NIL) (((-1083 $) $ (-852)) NIL (|has| (-841 |#1|) (-344)))) (-4076 (((-852) $) NIL (|has| (-841 |#1|) (-344)))) (-1573 (((-1083 (-841 |#1|)) $) NIL (|has| (-841 |#1|) (-344)))) (-3102 (((-1083 (-841 |#1|)) $) NIL (|has| (-841 |#1|) (-344))) (((-3 (-1083 (-841 |#1|)) "failed") $ $) NIL (|has| (-841 |#1|) (-344)))) (-2163 (($ $ (-1083 (-841 |#1|))) NIL (|has| (-841 |#1|) (-344)))) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| (-841 |#1|) (-344)) CONST)) (-2557 (($ (-852)) NIL (|has| (-841 |#1|) (-344)))) (-4203 (((-108) $) NIL)) (-2435 (((-1034) $) NIL)) (-2359 (((-888 (-1034))) NIL)) (-4102 (($) NIL (|has| (-841 |#1|) (-344)))) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) NIL (|has| (-841 |#1|) (-344)))) (-3573 (((-394 $) $) NIL)) (-3718 (((-772 (-852))) NIL) (((-852)) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2041 (((-710) $) NIL (|has| (-841 |#1|) (-344))) (((-3 (-710) "failed") $ $) NIL (-3255 (|has| (-841 |#1|) (-134)) (|has| (-841 |#1|) (-344))))) (-4012 (((-126)) NIL)) (-4024 (($ $) NIL (|has| (-841 |#1|) (-344))) (($ $ (-710)) NIL (|has| (-841 |#1|) (-344)))) (-1487 (((-772 (-852)) $) NIL) (((-852) $) NIL)) (-3399 (((-1083 (-841 |#1|))) NIL)) (-2315 (($) NIL (|has| (-841 |#1|) (-344)))) (-2233 (($) NIL (|has| (-841 |#1|) (-344)))) (-2411 (((-1169 (-841 |#1|)) $) NIL) (((-629 (-841 |#1|)) (-1169 $)) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (|has| (-841 |#1|) (-344)))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) (($ (-841 |#1|)) NIL)) (-2301 (($ $) NIL (|has| (-841 |#1|) (-344))) (((-3 $ "failed") $) NIL (-3255 (|has| (-841 |#1|) (-134)) (|has| (-841 |#1|) (-344))))) (-1698 (((-710)) NIL)) (-2922 (((-1169 $)) NIL) (((-1169 $) (-852)) NIL)) (-3842 (((-108) $ $) NIL)) (-4079 (((-108) $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1732 (($ $) NIL (|has| (-841 |#1|) (-344))) (($ $ (-710)) NIL (|has| (-841 |#1|) (-344)))) (-1943 (($ $) NIL (|has| (-841 |#1|) (-344))) (($ $ (-710)) NIL (|has| (-841 |#1|) (-344)))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL) (($ $ (-841 |#1|)) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ $ (-841 |#1|)) NIL) (($ (-841 |#1|) $) NIL)))
-(((-319 |#1| |#2|) (-13 (-305 (-841 |#1|)) (-10 -7 (-15 -2359 ((-888 (-1034)))))) (-852) (-852)) (T -319))
-((-2359 (*1 *2) (-12 (-5 *2 (-888 (-1034))) (-5 *1 (-319 *3 *4)) (-14 *3 (-852)) (-14 *4 (-852)))))
-(-13 (-305 (-841 |#1|)) (-10 -7 (-15 -2359 ((-888 (-1034))))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 46)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-3867 (((-108) $) NIL)) (-4154 (((-710)) NIL)) (-4131 ((|#1| $) NIL) (($ $ (-852)) NIL (|has| |#1| (-344)))) (-2794 (((-1097 (-852) (-710)) (-523)) 43 (|has| |#1| (-344)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-3843 (((-710)) NIL (|has| |#1| (-344)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) 115)) (-1996 ((|#1| $) 86)) (-3322 (($ (-1169 |#1|)) 104)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) 95 (|has| |#1| (-344)))) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) 98 (|has| |#1| (-344)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-2097 (($) 130 (|has| |#1| (-344)))) (-1200 (((-108) $) 49 (|has| |#1| (-344)))) (-1419 (($ $ (-710)) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))) (($ $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1330 (((-108) $) NIL)) (-1500 (((-852) $) 47 (|has| |#1| (-344))) (((-772 (-852)) $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-3482 (((-108) $) NIL)) (-2842 (($) 132 (|has| |#1| (-344)))) (-4077 (((-108) $) NIL (|has| |#1| (-344)))) (-2765 ((|#1| $) NIL) (($ $ (-852)) NIL (|has| |#1| (-344)))) (-1289 (((-3 $ "failed") $) NIL (|has| |#1| (-344)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2277 (((-1083 |#1|) $) 90) (((-1083 $) $ (-852)) NIL (|has| |#1| (-344)))) (-4076 (((-852) $) 140 (|has| |#1| (-344)))) (-1573 (((-1083 |#1|) $) NIL (|has| |#1| (-344)))) (-3102 (((-1083 |#1|) $) NIL (|has| |#1| (-344))) (((-3 (-1083 |#1|) "failed") $ $) NIL (|has| |#1| (-344)))) (-2163 (($ $ (-1083 |#1|)) NIL (|has| |#1| (-344)))) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 147)) (-4105 (($) NIL (|has| |#1| (-344)) CONST)) (-2557 (($ (-852)) 71 (|has| |#1| (-344)))) (-4203 (((-108) $) 118)) (-2435 (((-1034) $) NIL)) (-2359 (((-888 (-1034))) 44)) (-4102 (($) 128 (|has| |#1| (-344)))) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) 93 (|has| |#1| (-344)))) (-3573 (((-394 $) $) NIL)) (-3718 (((-772 (-852))) 67) (((-852)) 68)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2041 (((-710) $) 131 (|has| |#1| (-344))) (((-3 (-710) "failed") $ $) 125 (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-4012 (((-126)) NIL)) (-4024 (($ $) NIL (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-1487 (((-772 (-852)) $) NIL) (((-852) $) NIL)) (-3399 (((-1083 |#1|)) 96)) (-2315 (($) 129 (|has| |#1| (-344)))) (-2233 (($) 137 (|has| |#1| (-344)))) (-2411 (((-1169 |#1|) $) 59) (((-629 |#1|) (-1169 $)) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (|has| |#1| (-344)))) (-3976 (((-794) $) 143) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) (($ |#1|) 75)) (-2301 (($ $) NIL (|has| |#1| (-344))) (((-3 $ "failed") $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1698 (((-710)) 139)) (-2922 (((-1169 $)) 117) (((-1169 $) (-852)) 73)) (-3842 (((-108) $ $) NIL)) (-4079 (((-108) $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) 32 T CONST)) (-1440 (($) 19 T CONST)) (-1732 (($ $) 81 (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-1943 (($ $) NIL (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-4037 (((-108) $ $) 48)) (-4125 (($ $ $) 145) (($ $ |#1|) 146)) (-4115 (($ $) 127) (($ $ $) NIL)) (-4103 (($ $ $) 61)) (** (($ $ (-852)) 149) (($ $ (-710)) 150) (($ $ (-523)) 148)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 77) (($ $ $) 76) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 144)))
-(((-320 |#1| |#2|) (-13 (-305 |#1|) (-10 -7 (-15 -2359 ((-888 (-1034)))))) (-325) (-1083 |#1|)) (T -320))
-((-2359 (*1 *2) (-12 (-5 *2 (-888 (-1034))) (-5 *1 (-320 *3 *4)) (-4 *3 (-325)) (-14 *4 (-1083 *3)))))
-(-13 (-305 |#1|) (-10 -7 (-15 -2359 ((-888 (-1034))))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-3867 (((-108) $) NIL)) (-4154 (((-710)) NIL)) (-4131 ((|#1| $) NIL) (($ $ (-852)) NIL (|has| |#1| (-344)))) (-2794 (((-1097 (-852) (-710)) (-523)) NIL (|has| |#1| (-344)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-3843 (((-710)) NIL (|has| |#1| (-344)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL)) (-1996 ((|#1| $) NIL)) (-3322 (($ (-1169 |#1|)) NIL)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-344)))) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) NIL (|has| |#1| (-344)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-2097 (($) NIL (|has| |#1| (-344)))) (-1200 (((-108) $) NIL (|has| |#1| (-344)))) (-1419 (($ $ (-710)) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))) (($ $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1330 (((-108) $) NIL)) (-1500 (((-852) $) NIL (|has| |#1| (-344))) (((-772 (-852)) $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-3482 (((-108) $) NIL)) (-2842 (($) NIL (|has| |#1| (-344)))) (-4077 (((-108) $) NIL (|has| |#1| (-344)))) (-2765 ((|#1| $) NIL) (($ $ (-852)) NIL (|has| |#1| (-344)))) (-1289 (((-3 $ "failed") $) NIL (|has| |#1| (-344)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2277 (((-1083 |#1|) $) NIL) (((-1083 $) $ (-852)) NIL (|has| |#1| (-344)))) (-4076 (((-852) $) NIL (|has| |#1| (-344)))) (-1573 (((-1083 |#1|) $) NIL (|has| |#1| (-344)))) (-3102 (((-1083 |#1|) $) NIL (|has| |#1| (-344))) (((-3 (-1083 |#1|) "failed") $ $) NIL (|has| |#1| (-344)))) (-2163 (($ $ (-1083 |#1|)) NIL (|has| |#1| (-344)))) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| |#1| (-344)) CONST)) (-2557 (($ (-852)) NIL (|has| |#1| (-344)))) (-4203 (((-108) $) NIL)) (-2435 (((-1034) $) NIL)) (-2359 (((-888 (-1034))) NIL)) (-4102 (($) NIL (|has| |#1| (-344)))) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) NIL (|has| |#1| (-344)))) (-3573 (((-394 $) $) NIL)) (-3718 (((-772 (-852))) NIL) (((-852)) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2041 (((-710) $) NIL (|has| |#1| (-344))) (((-3 (-710) "failed") $ $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-4012 (((-126)) NIL)) (-4024 (($ $) NIL (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-1487 (((-772 (-852)) $) NIL) (((-852) $) NIL)) (-3399 (((-1083 |#1|)) NIL)) (-2315 (($) NIL (|has| |#1| (-344)))) (-2233 (($) NIL (|has| |#1| (-344)))) (-2411 (((-1169 |#1|) $) NIL) (((-629 |#1|) (-1169 $)) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (|has| |#1| (-344)))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) (($ |#1|) NIL)) (-2301 (($ $) NIL (|has| |#1| (-344))) (((-3 $ "failed") $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1698 (((-710)) NIL)) (-2922 (((-1169 $)) NIL) (((-1169 $) (-852)) NIL)) (-3842 (((-108) $ $) NIL)) (-4079 (((-108) $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1732 (($ $) NIL (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-1943 (($ $) NIL (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL) (($ $ |#1|) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-321 |#1| |#2|) (-13 (-305 |#1|) (-10 -7 (-15 -2359 ((-888 (-1034)))))) (-325) (-852)) (T -321))
-((-2359 (*1 *2) (-12 (-5 *2 (-888 (-1034))) (-5 *1 (-321 *3 *4)) (-4 *3 (-325)) (-14 *4 (-852)))))
-(-13 (-305 |#1|) (-10 -7 (-15 -2359 ((-888 (-1034))))))
-((-2489 (((-710) (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034)))))) 42)) (-3061 (((-888 (-1034)) (-1083 |#1|)) 85)) (-1825 (((-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))) (-1083 |#1|)) 78)) (-3792 (((-629 |#1|) (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034)))))) 86)) (-3662 (((-3 (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))) "failed") (-852)) 13)) (-4008 (((-3 (-1083 |#1|) (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034)))))) (-852)) 18)))
-(((-322 |#1|) (-10 -7 (-15 -3061 ((-888 (-1034)) (-1083 |#1|))) (-15 -1825 ((-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))) (-1083 |#1|))) (-15 -3792 ((-629 |#1|) (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))))) (-15 -2489 ((-710) (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))))) (-15 -3662 ((-3 (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))) "failed") (-852))) (-15 -4008 ((-3 (-1083 |#1|) (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034)))))) (-852)))) (-325)) (T -322))
-((-4008 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-3 (-1083 *4) (-1169 (-589 (-2 (|:| -2058 *4) (|:| -2557 (-1034))))))) (-5 *1 (-322 *4)) (-4 *4 (-325)))) (-3662 (*1 *2 *3) (|partial| -12 (-5 *3 (-852)) (-5 *2 (-1169 (-589 (-2 (|:| -2058 *4) (|:| -2557 (-1034)))))) (-5 *1 (-322 *4)) (-4 *4 (-325)))) (-2489 (*1 *2 *3) (-12 (-5 *3 (-1169 (-589 (-2 (|:| -2058 *4) (|:| -2557 (-1034)))))) (-4 *4 (-325)) (-5 *2 (-710)) (-5 *1 (-322 *4)))) (-3792 (*1 *2 *3) (-12 (-5 *3 (-1169 (-589 (-2 (|:| -2058 *4) (|:| -2557 (-1034)))))) (-4 *4 (-325)) (-5 *2 (-629 *4)) (-5 *1 (-322 *4)))) (-1825 (*1 *2 *3) (-12 (-5 *3 (-1083 *4)) (-4 *4 (-325)) (-5 *2 (-1169 (-589 (-2 (|:| -2058 *4) (|:| -2557 (-1034)))))) (-5 *1 (-322 *4)))) (-3061 (*1 *2 *3) (-12 (-5 *3 (-1083 *4)) (-4 *4 (-325)) (-5 *2 (-888 (-1034))) (-5 *1 (-322 *4)))))
-(-10 -7 (-15 -3061 ((-888 (-1034)) (-1083 |#1|))) (-15 -1825 ((-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))) (-1083 |#1|))) (-15 -3792 ((-629 |#1|) (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))))) (-15 -2489 ((-710) (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))))) (-15 -3662 ((-3 (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))) "failed") (-852))) (-15 -4008 ((-3 (-1083 |#1|) (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034)))))) (-852))))
-((-3976 ((|#1| |#3|) 86) ((|#3| |#1|) 69)))
-(((-323 |#1| |#2| |#3|) (-10 -7 (-15 -3976 (|#3| |#1|)) (-15 -3976 (|#1| |#3|))) (-305 |#2|) (-325) (-305 |#2|)) (T -323))
-((-3976 (*1 *2 *3) (-12 (-4 *4 (-325)) (-4 *2 (-305 *4)) (-5 *1 (-323 *2 *4 *3)) (-4 *3 (-305 *4)))) (-3976 (*1 *2 *3) (-12 (-4 *4 (-325)) (-4 *2 (-305 *4)) (-5 *1 (-323 *3 *4 *2)) (-4 *3 (-305 *4)))))
-(-10 -7 (-15 -3976 (|#3| |#1|)) (-15 -3976 (|#1| |#3|)))
-((-1200 (((-108) $) 52)) (-1500 (((-772 (-852)) $) 21) (((-852) $) 53)) (-1289 (((-3 $ "failed") $) 16)) (-4105 (($) 9)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 94)) (-2041 (((-3 (-710) "failed") $ $) 72) (((-710) $) 61)) (-4024 (($ $ (-710)) NIL) (($ $) 8)) (-2315 (($) 46)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) 34)) (-2301 (((-3 $ "failed") $) 40) (($ $) 39)))
-(((-324 |#1|) (-10 -8 (-15 -1500 ((-852) |#1|)) (-15 -2041 ((-710) |#1|)) (-15 -1200 ((-108) |#1|)) (-15 -2315 (|#1|)) (-15 -2326 ((-3 (-1169 |#1|) "failed") (-629 |#1|))) (-15 -2301 (|#1| |#1|)) (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -4105 (|#1|)) (-15 -1289 ((-3 |#1| "failed") |#1|)) (-15 -2041 ((-3 (-710) "failed") |#1| |#1|)) (-15 -1500 ((-772 (-852)) |#1|)) (-15 -2301 ((-3 |#1| "failed") |#1|)) (-15 -2701 ((-1083 |#1|) (-1083 |#1|) (-1083 |#1|)))) (-325)) (T -324))
-NIL
-(-10 -8 (-15 -1500 ((-852) |#1|)) (-15 -2041 ((-710) |#1|)) (-15 -1200 ((-108) |#1|)) (-15 -2315 (|#1|)) (-15 -2326 ((-3 (-1169 |#1|) "failed") (-629 |#1|))) (-15 -2301 (|#1| |#1|)) (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -4105 (|#1|)) (-15 -1289 ((-3 |#1| "failed") |#1|)) (-15 -2041 ((-3 (-710) "failed") |#1| |#1|)) (-15 -1500 ((-772 (-852)) |#1|)) (-15 -2301 ((-3 |#1| "failed") |#1|)) (-15 -2701 ((-1083 |#1|) (-1083 |#1|) (-1083 |#1|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-2794 (((-1097 (-852) (-710)) (-523)) 93)) (-2999 (((-3 $ "failed") $ $) 19)) (-3763 (($ $) 73)) (-2105 (((-394 $) $) 72)) (-3684 (((-108) $ $) 59)) (-3843 (((-710)) 103)) (-1640 (($) 17 T CONST)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) 87)) (-2501 (($ $ $) 55)) (-4211 (((-3 $ "failed") $) 34)) (-3461 (($) 106)) (-2486 (($ $ $) 56)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 51)) (-2097 (($) 91)) (-1200 (((-108) $) 90)) (-1419 (($ $) 79) (($ $ (-710)) 78)) (-1330 (((-108) $) 71)) (-1500 (((-772 (-852)) $) 81) (((-852) $) 88)) (-3482 (((-108) $) 31)) (-1289 (((-3 $ "failed") $) 102)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 52)) (-4076 (((-852) $) 105)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-3071 (($ $) 70)) (-4105 (($) 101 T CONST)) (-2557 (($ (-852)) 104)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) 94)) (-3573 (((-394 $) $) 74)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2469 (((-3 $ "failed") $ $) 42)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 50)) (-3087 (((-710) $) 58)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 57)) (-2041 (((-3 (-710) "failed") $ $) 80) (((-710) $) 89)) (-4024 (($ $ (-710)) 99) (($ $) 97)) (-2315 (($) 92)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) 95)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43) (($ (-383 (-523))) 65)) (-2301 (((-3 $ "failed") $) 82) (($ $) 96)) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 39)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 69)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ (-710)) 100) (($ $) 98)) (-4037 (((-108) $ $) 6)) (-4125 (($ $ $) 64)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 68)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 (-523))) 67) (($ (-383 (-523)) $) 66)))
-(((-325) (-129)) (T -325))
-((-2301 (*1 *1 *1) (-4 *1 (-325))) (-2326 (*1 *2 *3) (|partial| -12 (-5 *3 (-629 *1)) (-4 *1 (-325)) (-5 *2 (-1169 *1)))) (-3428 (*1 *2) (-12 (-4 *1 (-325)) (-5 *2 (-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))))) (-2794 (*1 *2 *3) (-12 (-4 *1 (-325)) (-5 *3 (-523)) (-5 *2 (-1097 (-852) (-710))))) (-2315 (*1 *1) (-4 *1 (-325))) (-2097 (*1 *1) (-4 *1 (-325))) (-1200 (*1 *2 *1) (-12 (-4 *1 (-325)) (-5 *2 (-108)))) (-2041 (*1 *2 *1) (-12 (-4 *1 (-325)) (-5 *2 (-710)))) (-1500 (*1 *2 *1) (-12 (-4 *1 (-325)) (-5 *2 (-852)))) (-1829 (*1 *2) (-12 (-4 *1 (-325)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
-(-13 (-378) (-344) (-1063) (-211) (-10 -8 (-15 -2301 ($ $)) (-15 -2326 ((-3 (-1169 $) "failed") (-629 $))) (-15 -3428 ((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523)))))) (-15 -2794 ((-1097 (-852) (-710)) (-523))) (-15 -2315 ($)) (-15 -2097 ($)) (-15 -1200 ((-108) $)) (-15 -2041 ((-710) $)) (-15 -1500 ((-852) $)) (-15 -1829 ((-3 "prime" "polynomial" "normal" "cyclic")))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-124) . T) ((-134) . T) ((-563 (-794)) . T) ((-158) . T) ((-211) . T) ((-221) . T) ((-267) . T) ((-284) . T) ((-339) . T) ((-378) . T) ((-344) . T) ((-427) . T) ((-515) . T) ((-591 #0#) . T) ((-591 $) . T) ((-657 #0#) . T) ((-657 $) . T) ((-666) . T) ((-851) . T) ((-979 #0#) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1063) . T) ((-1127) . T))
-((-3329 (((-2 (|:| -2922 (-629 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-629 |#1|))) |#1|) 53)) (-3835 (((-2 (|:| -2922 (-629 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-629 |#1|)))) 51)))
-(((-326 |#1| |#2| |#3|) (-10 -7 (-15 -3835 ((-2 (|:| -2922 (-629 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-629 |#1|))))) (-15 -3329 ((-2 (|:| -2922 (-629 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-629 |#1|))) |#1|))) (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $)))) (-1145 |#1|) (-385 |#1| |#2|)) (T -326))
-((-3329 (*1 *2 *3) (-12 (-4 *3 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $))))) (-4 *4 (-1145 *3)) (-5 *2 (-2 (|:| -2922 (-629 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-629 *3)))) (-5 *1 (-326 *3 *4 *5)) (-4 *5 (-385 *3 *4)))) (-3835 (*1 *2) (-12 (-4 *3 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $))))) (-4 *4 (-1145 *3)) (-5 *2 (-2 (|:| -2922 (-629 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-629 *3)))) (-5 *1 (-326 *3 *4 *5)) (-4 *5 (-385 *3 *4)))))
-(-10 -7 (-15 -3835 ((-2 (|:| -2922 (-629 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-629 |#1|))))) (-15 -3329 ((-2 (|:| -2922 (-629 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-629 |#1|))) |#1|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-3867 (((-108) $) NIL)) (-4154 (((-710)) NIL)) (-4131 (((-841 |#1|) $) NIL) (($ $ (-852)) NIL (|has| (-841 |#1|) (-344)))) (-2794 (((-1097 (-852) (-710)) (-523)) NIL (|has| (-841 |#1|) (-344)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-2489 (((-710)) NIL)) (-3684 (((-108) $ $) NIL)) (-3843 (((-710)) NIL (|has| (-841 |#1|) (-344)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-841 |#1|) "failed") $) NIL)) (-1996 (((-841 |#1|) $) NIL)) (-3322 (($ (-1169 (-841 |#1|))) NIL)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-841 |#1|) (-344)))) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) NIL (|has| (-841 |#1|) (-344)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-2097 (($) NIL (|has| (-841 |#1|) (-344)))) (-1200 (((-108) $) NIL (|has| (-841 |#1|) (-344)))) (-1419 (($ $ (-710)) NIL (-3255 (|has| (-841 |#1|) (-134)) (|has| (-841 |#1|) (-344)))) (($ $) NIL (-3255 (|has| (-841 |#1|) (-134)) (|has| (-841 |#1|) (-344))))) (-1330 (((-108) $) NIL)) (-1500 (((-852) $) NIL (|has| (-841 |#1|) (-344))) (((-772 (-852)) $) NIL (-3255 (|has| (-841 |#1|) (-134)) (|has| (-841 |#1|) (-344))))) (-3482 (((-108) $) NIL)) (-2842 (($) NIL (|has| (-841 |#1|) (-344)))) (-4077 (((-108) $) NIL (|has| (-841 |#1|) (-344)))) (-2765 (((-841 |#1|) $) NIL) (($ $ (-852)) NIL (|has| (-841 |#1|) (-344)))) (-1289 (((-3 $ "failed") $) NIL (|has| (-841 |#1|) (-344)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2277 (((-1083 (-841 |#1|)) $) NIL) (((-1083 $) $ (-852)) NIL (|has| (-841 |#1|) (-344)))) (-4076 (((-852) $) NIL (|has| (-841 |#1|) (-344)))) (-1573 (((-1083 (-841 |#1|)) $) NIL (|has| (-841 |#1|) (-344)))) (-3102 (((-1083 (-841 |#1|)) $) NIL (|has| (-841 |#1|) (-344))) (((-3 (-1083 (-841 |#1|)) "failed") $ $) NIL (|has| (-841 |#1|) (-344)))) (-2163 (($ $ (-1083 (-841 |#1|))) NIL (|has| (-841 |#1|) (-344)))) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| (-841 |#1|) (-344)) CONST)) (-2557 (($ (-852)) NIL (|has| (-841 |#1|) (-344)))) (-4203 (((-108) $) NIL)) (-2435 (((-1034) $) NIL)) (-1764 (((-1169 (-589 (-2 (|:| -2058 (-841 |#1|)) (|:| -2557 (-1034)))))) NIL)) (-4214 (((-629 (-841 |#1|))) NIL)) (-4102 (($) NIL (|has| (-841 |#1|) (-344)))) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) NIL (|has| (-841 |#1|) (-344)))) (-3573 (((-394 $) $) NIL)) (-3718 (((-772 (-852))) NIL) (((-852)) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2041 (((-710) $) NIL (|has| (-841 |#1|) (-344))) (((-3 (-710) "failed") $ $) NIL (-3255 (|has| (-841 |#1|) (-134)) (|has| (-841 |#1|) (-344))))) (-4012 (((-126)) NIL)) (-4024 (($ $) NIL (|has| (-841 |#1|) (-344))) (($ $ (-710)) NIL (|has| (-841 |#1|) (-344)))) (-1487 (((-772 (-852)) $) NIL) (((-852) $) NIL)) (-3399 (((-1083 (-841 |#1|))) NIL)) (-2315 (($) NIL (|has| (-841 |#1|) (-344)))) (-2233 (($) NIL (|has| (-841 |#1|) (-344)))) (-2411 (((-1169 (-841 |#1|)) $) NIL) (((-629 (-841 |#1|)) (-1169 $)) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (|has| (-841 |#1|) (-344)))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) (($ (-841 |#1|)) NIL)) (-2301 (($ $) NIL (|has| (-841 |#1|) (-344))) (((-3 $ "failed") $) NIL (-3255 (|has| (-841 |#1|) (-134)) (|has| (-841 |#1|) (-344))))) (-1698 (((-710)) NIL)) (-2922 (((-1169 $)) NIL) (((-1169 $) (-852)) NIL)) (-3842 (((-108) $ $) NIL)) (-4079 (((-108) $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1732 (($ $) NIL (|has| (-841 |#1|) (-344))) (($ $ (-710)) NIL (|has| (-841 |#1|) (-344)))) (-1943 (($ $) NIL (|has| (-841 |#1|) (-344))) (($ $ (-710)) NIL (|has| (-841 |#1|) (-344)))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL) (($ $ (-841 |#1|)) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ $ (-841 |#1|)) NIL) (($ (-841 |#1|) $) NIL)))
-(((-327 |#1| |#2|) (-13 (-305 (-841 |#1|)) (-10 -7 (-15 -1764 ((-1169 (-589 (-2 (|:| -2058 (-841 |#1|)) (|:| -2557 (-1034))))))) (-15 -4214 ((-629 (-841 |#1|)))) (-15 -2489 ((-710))))) (-852) (-852)) (T -327))
-((-1764 (*1 *2) (-12 (-5 *2 (-1169 (-589 (-2 (|:| -2058 (-841 *3)) (|:| -2557 (-1034)))))) (-5 *1 (-327 *3 *4)) (-14 *3 (-852)) (-14 *4 (-852)))) (-4214 (*1 *2) (-12 (-5 *2 (-629 (-841 *3))) (-5 *1 (-327 *3 *4)) (-14 *3 (-852)) (-14 *4 (-852)))) (-2489 (*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-327 *3 *4)) (-14 *3 (-852)) (-14 *4 (-852)))))
-(-13 (-305 (-841 |#1|)) (-10 -7 (-15 -1764 ((-1169 (-589 (-2 (|:| -2058 (-841 |#1|)) (|:| -2557 (-1034))))))) (-15 -4214 ((-629 (-841 |#1|)))) (-15 -2489 ((-710)))))
-((-3260 (((-108) $ $) 62)) (-2388 (((-108) $) 75)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-3867 (((-108) $) NIL)) (-4154 (((-710)) NIL)) (-4131 ((|#1| $) 93) (($ $ (-852)) 91 (|has| |#1| (-344)))) (-2794 (((-1097 (-852) (-710)) (-523)) 149 (|has| |#1| (-344)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-2489 (((-710)) 90)) (-3684 (((-108) $ $) NIL)) (-3843 (((-710)) 163 (|has| |#1| (-344)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) 113)) (-1996 ((|#1| $) 92)) (-3322 (($ (-1169 |#1|)) 59)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) 189 (|has| |#1| (-344)))) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) 159 (|has| |#1| (-344)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-2097 (($) 150 (|has| |#1| (-344)))) (-1200 (((-108) $) NIL (|has| |#1| (-344)))) (-1419 (($ $ (-710)) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))) (($ $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1330 (((-108) $) NIL)) (-1500 (((-852) $) NIL (|has| |#1| (-344))) (((-772 (-852)) $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-3482 (((-108) $) NIL)) (-2842 (($) 99 (|has| |#1| (-344)))) (-4077 (((-108) $) 176 (|has| |#1| (-344)))) (-2765 ((|#1| $) 95) (($ $ (-852)) 94 (|has| |#1| (-344)))) (-1289 (((-3 $ "failed") $) NIL (|has| |#1| (-344)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2277 (((-1083 |#1|) $) 190) (((-1083 $) $ (-852)) NIL (|has| |#1| (-344)))) (-4076 (((-852) $) 135 (|has| |#1| (-344)))) (-1573 (((-1083 |#1|) $) 74 (|has| |#1| (-344)))) (-3102 (((-1083 |#1|) $) 71 (|has| |#1| (-344))) (((-3 (-1083 |#1|) "failed") $ $) 83 (|has| |#1| (-344)))) (-2163 (($ $ (-1083 |#1|)) 70 (|has| |#1| (-344)))) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 193)) (-4105 (($) NIL (|has| |#1| (-344)) CONST)) (-2557 (($ (-852)) 138 (|has| |#1| (-344)))) (-4203 (((-108) $) 109)) (-2435 (((-1034) $) NIL)) (-1764 (((-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034)))))) 84)) (-4214 (((-629 |#1|)) 88)) (-4102 (($) 97 (|has| |#1| (-344)))) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) 151 (|has| |#1| (-344)))) (-3573 (((-394 $) $) NIL)) (-3718 (((-772 (-852))) NIL) (((-852)) 152)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2041 (((-710) $) NIL (|has| |#1| (-344))) (((-3 (-710) "failed") $ $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-4012 (((-126)) NIL)) (-4024 (($ $) NIL (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-1487 (((-772 (-852)) $) NIL) (((-852) $) 63)) (-3399 (((-1083 |#1|)) 153)) (-2315 (($) 134 (|has| |#1| (-344)))) (-2233 (($) NIL (|has| |#1| (-344)))) (-2411 (((-1169 |#1|) $) 107) (((-629 |#1|) (-1169 $)) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (|has| |#1| (-344)))) (-3976 (((-794) $) 125) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) (($ |#1|) 58)) (-2301 (($ $) NIL (|has| |#1| (-344))) (((-3 $ "failed") $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1698 (((-710)) 157)) (-2922 (((-1169 $)) 173) (((-1169 $) (-852)) 102)) (-3842 (((-108) $ $) NIL)) (-4079 (((-108) $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) 30 T CONST)) (-1440 (($) 22 T CONST)) (-1732 (($ $) 108 (|has| |#1| (-344))) (($ $ (-710)) 100 (|has| |#1| (-344)))) (-1943 (($ $) NIL (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-4037 (((-108) $ $) 184)) (-4125 (($ $ $) 105) (($ $ |#1|) 106)) (-4115 (($ $) 178) (($ $ $) 182)) (-4103 (($ $ $) 180)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) 139)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 187) (($ $ $) 143) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 104)))
-(((-328 |#1| |#2|) (-13 (-305 |#1|) (-10 -7 (-15 -1764 ((-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))))) (-15 -4214 ((-629 |#1|))) (-15 -2489 ((-710))))) (-325) (-3 (-1083 |#1|) (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))))) (T -328))
-((-1764 (*1 *2) (-12 (-5 *2 (-1169 (-589 (-2 (|:| -2058 *3) (|:| -2557 (-1034)))))) (-5 *1 (-328 *3 *4)) (-4 *3 (-325)) (-14 *4 (-3 (-1083 *3) *2)))) (-4214 (*1 *2) (-12 (-5 *2 (-629 *3)) (-5 *1 (-328 *3 *4)) (-4 *3 (-325)) (-14 *4 (-3 (-1083 *3) (-1169 (-589 (-2 (|:| -2058 *3) (|:| -2557 (-1034))))))))) (-2489 (*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-328 *3 *4)) (-4 *3 (-325)) (-14 *4 (-3 (-1083 *3) (-1169 (-589 (-2 (|:| -2058 *3) (|:| -2557 (-1034))))))))))
-(-13 (-305 |#1|) (-10 -7 (-15 -1764 ((-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))))) (-15 -4214 ((-629 |#1|))) (-15 -2489 ((-710)))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-3867 (((-108) $) NIL)) (-4154 (((-710)) NIL)) (-4131 ((|#1| $) NIL) (($ $ (-852)) NIL (|has| |#1| (-344)))) (-2794 (((-1097 (-852) (-710)) (-523)) NIL (|has| |#1| (-344)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-2489 (((-710)) NIL)) (-3684 (((-108) $ $) NIL)) (-3843 (((-710)) NIL (|has| |#1| (-344)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL)) (-1996 ((|#1| $) NIL)) (-3322 (($ (-1169 |#1|)) NIL)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-344)))) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) NIL (|has| |#1| (-344)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-2097 (($) NIL (|has| |#1| (-344)))) (-1200 (((-108) $) NIL (|has| |#1| (-344)))) (-1419 (($ $ (-710)) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))) (($ $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1330 (((-108) $) NIL)) (-1500 (((-852) $) NIL (|has| |#1| (-344))) (((-772 (-852)) $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-3482 (((-108) $) NIL)) (-2842 (($) NIL (|has| |#1| (-344)))) (-4077 (((-108) $) NIL (|has| |#1| (-344)))) (-2765 ((|#1| $) NIL) (($ $ (-852)) NIL (|has| |#1| (-344)))) (-1289 (((-3 $ "failed") $) NIL (|has| |#1| (-344)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2277 (((-1083 |#1|) $) NIL) (((-1083 $) $ (-852)) NIL (|has| |#1| (-344)))) (-4076 (((-852) $) NIL (|has| |#1| (-344)))) (-1573 (((-1083 |#1|) $) NIL (|has| |#1| (-344)))) (-3102 (((-1083 |#1|) $) NIL (|has| |#1| (-344))) (((-3 (-1083 |#1|) "failed") $ $) NIL (|has| |#1| (-344)))) (-2163 (($ $ (-1083 |#1|)) NIL (|has| |#1| (-344)))) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| |#1| (-344)) CONST)) (-2557 (($ (-852)) NIL (|has| |#1| (-344)))) (-4203 (((-108) $) NIL)) (-2435 (((-1034) $) NIL)) (-1764 (((-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034)))))) NIL)) (-4214 (((-629 |#1|)) NIL)) (-4102 (($) NIL (|has| |#1| (-344)))) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) NIL (|has| |#1| (-344)))) (-3573 (((-394 $) $) NIL)) (-3718 (((-772 (-852))) NIL) (((-852)) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2041 (((-710) $) NIL (|has| |#1| (-344))) (((-3 (-710) "failed") $ $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-4012 (((-126)) NIL)) (-4024 (($ $) NIL (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-1487 (((-772 (-852)) $) NIL) (((-852) $) NIL)) (-3399 (((-1083 |#1|)) NIL)) (-2315 (($) NIL (|has| |#1| (-344)))) (-2233 (($) NIL (|has| |#1| (-344)))) (-2411 (((-1169 |#1|) $) NIL) (((-629 |#1|) (-1169 $)) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (|has| |#1| (-344)))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) (($ |#1|) NIL)) (-2301 (($ $) NIL (|has| |#1| (-344))) (((-3 $ "failed") $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1698 (((-710)) NIL)) (-2922 (((-1169 $)) NIL) (((-1169 $) (-852)) NIL)) (-3842 (((-108) $ $) NIL)) (-4079 (((-108) $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1732 (($ $) NIL (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-1943 (($ $) NIL (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL) (($ $ |#1|) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-329 |#1| |#2|) (-13 (-305 |#1|) (-10 -7 (-15 -1764 ((-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))))) (-15 -4214 ((-629 |#1|))) (-15 -2489 ((-710))))) (-325) (-852)) (T -329))
-((-1764 (*1 *2) (-12 (-5 *2 (-1169 (-589 (-2 (|:| -2058 *3) (|:| -2557 (-1034)))))) (-5 *1 (-329 *3 *4)) (-4 *3 (-325)) (-14 *4 (-852)))) (-4214 (*1 *2) (-12 (-5 *2 (-629 *3)) (-5 *1 (-329 *3 *4)) (-4 *3 (-325)) (-14 *4 (-852)))) (-2489 (*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-329 *3 *4)) (-4 *3 (-325)) (-14 *4 (-852)))))
-(-13 (-305 |#1|) (-10 -7 (-15 -1764 ((-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))))) (-15 -4214 ((-629 |#1|))) (-15 -2489 ((-710)))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-3867 (((-108) $) NIL)) (-4154 (((-710)) NIL)) (-4131 (((-841 |#1|) $) NIL) (($ $ (-852)) NIL (|has| (-841 |#1|) (-344)))) (-2794 (((-1097 (-852) (-710)) (-523)) NIL (|has| (-841 |#1|) (-344)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-3843 (((-710)) NIL (|has| (-841 |#1|) (-344)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-841 |#1|) "failed") $) NIL)) (-1996 (((-841 |#1|) $) NIL)) (-3322 (($ (-1169 (-841 |#1|))) NIL)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-841 |#1|) (-344)))) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) NIL (|has| (-841 |#1|) (-344)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-2097 (($) NIL (|has| (-841 |#1|) (-344)))) (-1200 (((-108) $) NIL (|has| (-841 |#1|) (-344)))) (-1419 (($ $ (-710)) NIL (-3255 (|has| (-841 |#1|) (-134)) (|has| (-841 |#1|) (-344)))) (($ $) NIL (-3255 (|has| (-841 |#1|) (-134)) (|has| (-841 |#1|) (-344))))) (-1330 (((-108) $) NIL)) (-1500 (((-852) $) NIL (|has| (-841 |#1|) (-344))) (((-772 (-852)) $) NIL (-3255 (|has| (-841 |#1|) (-134)) (|has| (-841 |#1|) (-344))))) (-3482 (((-108) $) NIL)) (-2842 (($) NIL (|has| (-841 |#1|) (-344)))) (-4077 (((-108) $) NIL (|has| (-841 |#1|) (-344)))) (-2765 (((-841 |#1|) $) NIL) (($ $ (-852)) NIL (|has| (-841 |#1|) (-344)))) (-1289 (((-3 $ "failed") $) NIL (|has| (-841 |#1|) (-344)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2277 (((-1083 (-841 |#1|)) $) NIL) (((-1083 $) $ (-852)) NIL (|has| (-841 |#1|) (-344)))) (-4076 (((-852) $) NIL (|has| (-841 |#1|) (-344)))) (-1573 (((-1083 (-841 |#1|)) $) NIL (|has| (-841 |#1|) (-344)))) (-3102 (((-1083 (-841 |#1|)) $) NIL (|has| (-841 |#1|) (-344))) (((-3 (-1083 (-841 |#1|)) "failed") $ $) NIL (|has| (-841 |#1|) (-344)))) (-2163 (($ $ (-1083 (-841 |#1|))) NIL (|has| (-841 |#1|) (-344)))) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| (-841 |#1|) (-344)) CONST)) (-2557 (($ (-852)) NIL (|has| (-841 |#1|) (-344)))) (-4203 (((-108) $) NIL)) (-2435 (((-1034) $) NIL)) (-4102 (($) NIL (|has| (-841 |#1|) (-344)))) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) NIL (|has| (-841 |#1|) (-344)))) (-3573 (((-394 $) $) NIL)) (-3718 (((-772 (-852))) NIL) (((-852)) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2041 (((-710) $) NIL (|has| (-841 |#1|) (-344))) (((-3 (-710) "failed") $ $) NIL (-3255 (|has| (-841 |#1|) (-134)) (|has| (-841 |#1|) (-344))))) (-4012 (((-126)) NIL)) (-4024 (($ $) NIL (|has| (-841 |#1|) (-344))) (($ $ (-710)) NIL (|has| (-841 |#1|) (-344)))) (-1487 (((-772 (-852)) $) NIL) (((-852) $) NIL)) (-3399 (((-1083 (-841 |#1|))) NIL)) (-2315 (($) NIL (|has| (-841 |#1|) (-344)))) (-2233 (($) NIL (|has| (-841 |#1|) (-344)))) (-2411 (((-1169 (-841 |#1|)) $) NIL) (((-629 (-841 |#1|)) (-1169 $)) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (|has| (-841 |#1|) (-344)))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) (($ (-841 |#1|)) NIL)) (-2301 (($ $) NIL (|has| (-841 |#1|) (-344))) (((-3 $ "failed") $) NIL (-3255 (|has| (-841 |#1|) (-134)) (|has| (-841 |#1|) (-344))))) (-1698 (((-710)) NIL)) (-2922 (((-1169 $)) NIL) (((-1169 $) (-852)) NIL)) (-3842 (((-108) $ $) NIL)) (-4079 (((-108) $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1732 (($ $) NIL (|has| (-841 |#1|) (-344))) (($ $ (-710)) NIL (|has| (-841 |#1|) (-344)))) (-1943 (($ $) NIL (|has| (-841 |#1|) (-344))) (($ $ (-710)) NIL (|has| (-841 |#1|) (-344)))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL) (($ $ (-841 |#1|)) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ $ (-841 |#1|)) NIL) (($ (-841 |#1|) $) NIL)))
-(((-330 |#1| |#2|) (-305 (-841 |#1|)) (-852) (-852)) (T -330))
-NIL
-(-305 (-841 |#1|))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-3867 (((-108) $) NIL)) (-4154 (((-710)) NIL)) (-4131 ((|#1| $) NIL) (($ $ (-852)) NIL (|has| |#1| (-344)))) (-2794 (((-1097 (-852) (-710)) (-523)) 120 (|has| |#1| (-344)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-3843 (((-710)) 140 (|has| |#1| (-344)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) 93)) (-1996 ((|#1| $) 90)) (-3322 (($ (-1169 |#1|)) 85)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) 117 (|has| |#1| (-344)))) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) 82 (|has| |#1| (-344)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-2097 (($) 42 (|has| |#1| (-344)))) (-1200 (((-108) $) NIL (|has| |#1| (-344)))) (-1419 (($ $ (-710)) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))) (($ $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1330 (((-108) $) NIL)) (-1500 (((-852) $) NIL (|has| |#1| (-344))) (((-772 (-852)) $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-3482 (((-108) $) NIL)) (-2842 (($) 121 (|has| |#1| (-344)))) (-4077 (((-108) $) 74 (|has| |#1| (-344)))) (-2765 ((|#1| $) 39) (($ $ (-852)) 43 (|has| |#1| (-344)))) (-1289 (((-3 $ "failed") $) NIL (|has| |#1| (-344)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2277 (((-1083 |#1|) $) 65) (((-1083 $) $ (-852)) NIL (|has| |#1| (-344)))) (-4076 (((-852) $) 97 (|has| |#1| (-344)))) (-1573 (((-1083 |#1|) $) NIL (|has| |#1| (-344)))) (-3102 (((-1083 |#1|) $) NIL (|has| |#1| (-344))) (((-3 (-1083 |#1|) "failed") $ $) NIL (|has| |#1| (-344)))) (-2163 (($ $ (-1083 |#1|)) NIL (|has| |#1| (-344)))) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| |#1| (-344)) CONST)) (-2557 (($ (-852)) 95 (|has| |#1| (-344)))) (-4203 (((-108) $) 142)) (-2435 (((-1034) $) NIL)) (-4102 (($) 36 (|has| |#1| (-344)))) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) 115 (|has| |#1| (-344)))) (-3573 (((-394 $) $) NIL)) (-3718 (((-772 (-852))) NIL) (((-852)) 139)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2041 (((-710) $) NIL (|has| |#1| (-344))) (((-3 (-710) "failed") $ $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-4012 (((-126)) NIL)) (-4024 (($ $) NIL (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-1487 (((-772 (-852)) $) NIL) (((-852) $) 59)) (-3399 (((-1083 |#1|)) 88)) (-2315 (($) 126 (|has| |#1| (-344)))) (-2233 (($) NIL (|has| |#1| (-344)))) (-2411 (((-1169 |#1|) $) 53) (((-629 |#1|) (-1169 $)) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (|has| |#1| (-344)))) (-3976 (((-794) $) 138) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) (($ |#1|) 87)) (-2301 (($ $) NIL (|has| |#1| (-344))) (((-3 $ "failed") $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1698 (((-710)) 144)) (-2922 (((-1169 $)) 109) (((-1169 $) (-852)) 49)) (-3842 (((-108) $ $) NIL)) (-4079 (((-108) $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) 111 T CONST)) (-1440 (($) 32 T CONST)) (-1732 (($ $) 68 (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-1943 (($ $) NIL (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-4037 (((-108) $ $) 107)) (-4125 (($ $ $) 99) (($ $ |#1|) 100)) (-4115 (($ $) 80) (($ $ $) 105)) (-4103 (($ $ $) 103)) (** (($ $ (-852)) NIL) (($ $ (-710)) 44) (($ $ (-523)) 130)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 78) (($ $ $) 56) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 76)))
-(((-331 |#1| |#2|) (-305 |#1|) (-325) (-1083 |#1|)) (T -331))
-NIL
-(-305 |#1|)
-((-2037 ((|#1| (-1083 |#2|)) 52)))
-(((-332 |#1| |#2|) (-10 -7 (-15 -2037 (|#1| (-1083 |#2|)))) (-13 (-378) (-10 -7 (-15 -3976 (|#1| |#2|)) (-15 -4076 ((-852) |#1|)) (-15 -2922 ((-1169 |#1|) (-852))) (-15 -1732 (|#1| |#1|)))) (-325)) (T -332))
-((-2037 (*1 *2 *3) (-12 (-5 *3 (-1083 *4)) (-4 *4 (-325)) (-4 *2 (-13 (-378) (-10 -7 (-15 -3976 (*2 *4)) (-15 -4076 ((-852) *2)) (-15 -2922 ((-1169 *2) (-852))) (-15 -1732 (*2 *2))))) (-5 *1 (-332 *2 *4)))))
-(-10 -7 (-15 -2037 (|#1| (-1083 |#2|))))
-((-2982 (((-888 (-1083 |#1|)) (-1083 |#1|)) 36)) (-3461 (((-1083 |#1|) (-852) (-852)) 113) (((-1083 |#1|) (-852)) 112)) (-1200 (((-108) (-1083 |#1|)) 84)) (-1547 (((-852) (-852)) 71)) (-3801 (((-852) (-852)) 74)) (-1989 (((-852) (-852)) 69)) (-4077 (((-108) (-1083 |#1|)) 88)) (-3897 (((-3 (-1083 |#1|) "failed") (-1083 |#1|)) 101)) (-2845 (((-3 (-1083 |#1|) "failed") (-1083 |#1|)) 104)) (-3539 (((-3 (-1083 |#1|) "failed") (-1083 |#1|)) 103)) (-3172 (((-3 (-1083 |#1|) "failed") (-1083 |#1|)) 102)) (-2450 (((-3 (-1083 |#1|) "failed") (-1083 |#1|)) 98)) (-1450 (((-1083 |#1|) (-1083 |#1|)) 62)) (-2325 (((-1083 |#1|) (-852)) 107)) (-1518 (((-1083 |#1|) (-852)) 110)) (-1827 (((-1083 |#1|) (-852)) 109)) (-1369 (((-1083 |#1|) (-852)) 108)) (-1741 (((-1083 |#1|) (-852)) 105)))
-(((-333 |#1|) (-10 -7 (-15 -1200 ((-108) (-1083 |#1|))) (-15 -4077 ((-108) (-1083 |#1|))) (-15 -1989 ((-852) (-852))) (-15 -1547 ((-852) (-852))) (-15 -3801 ((-852) (-852))) (-15 -1741 ((-1083 |#1|) (-852))) (-15 -2325 ((-1083 |#1|) (-852))) (-15 -1369 ((-1083 |#1|) (-852))) (-15 -1827 ((-1083 |#1|) (-852))) (-15 -1518 ((-1083 |#1|) (-852))) (-15 -2450 ((-3 (-1083 |#1|) "failed") (-1083 |#1|))) (-15 -3897 ((-3 (-1083 |#1|) "failed") (-1083 |#1|))) (-15 -3172 ((-3 (-1083 |#1|) "failed") (-1083 |#1|))) (-15 -3539 ((-3 (-1083 |#1|) "failed") (-1083 |#1|))) (-15 -2845 ((-3 (-1083 |#1|) "failed") (-1083 |#1|))) (-15 -3461 ((-1083 |#1|) (-852))) (-15 -3461 ((-1083 |#1|) (-852) (-852))) (-15 -1450 ((-1083 |#1|) (-1083 |#1|))) (-15 -2982 ((-888 (-1083 |#1|)) (-1083 |#1|)))) (-325)) (T -333))
-((-2982 (*1 *2 *3) (-12 (-4 *4 (-325)) (-5 *2 (-888 (-1083 *4))) (-5 *1 (-333 *4)) (-5 *3 (-1083 *4)))) (-1450 (*1 *2 *2) (-12 (-5 *2 (-1083 *3)) (-4 *3 (-325)) (-5 *1 (-333 *3)))) (-3461 (*1 *2 *3 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-333 *4)) (-4 *4 (-325)))) (-3461 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-333 *4)) (-4 *4 (-325)))) (-2845 (*1 *2 *2) (|partial| -12 (-5 *2 (-1083 *3)) (-4 *3 (-325)) (-5 *1 (-333 *3)))) (-3539 (*1 *2 *2) (|partial| -12 (-5 *2 (-1083 *3)) (-4 *3 (-325)) (-5 *1 (-333 *3)))) (-3172 (*1 *2 *2) (|partial| -12 (-5 *2 (-1083 *3)) (-4 *3 (-325)) (-5 *1 (-333 *3)))) (-3897 (*1 *2 *2) (|partial| -12 (-5 *2 (-1083 *3)) (-4 *3 (-325)) (-5 *1 (-333 *3)))) (-2450 (*1 *2 *2) (|partial| -12 (-5 *2 (-1083 *3)) (-4 *3 (-325)) (-5 *1 (-333 *3)))) (-1518 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-333 *4)) (-4 *4 (-325)))) (-1827 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-333 *4)) (-4 *4 (-325)))) (-1369 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-333 *4)) (-4 *4 (-325)))) (-2325 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-333 *4)) (-4 *4 (-325)))) (-1741 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-333 *4)) (-4 *4 (-325)))) (-3801 (*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-333 *3)) (-4 *3 (-325)))) (-1547 (*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-333 *3)) (-4 *3 (-325)))) (-1989 (*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-333 *3)) (-4 *3 (-325)))) (-4077 (*1 *2 *3) (-12 (-5 *3 (-1083 *4)) (-4 *4 (-325)) (-5 *2 (-108)) (-5 *1 (-333 *4)))) (-1200 (*1 *2 *3) (-12 (-5 *3 (-1083 *4)) (-4 *4 (-325)) (-5 *2 (-108)) (-5 *1 (-333 *4)))))
-(-10 -7 (-15 -1200 ((-108) (-1083 |#1|))) (-15 -4077 ((-108) (-1083 |#1|))) (-15 -1989 ((-852) (-852))) (-15 -1547 ((-852) (-852))) (-15 -3801 ((-852) (-852))) (-15 -1741 ((-1083 |#1|) (-852))) (-15 -2325 ((-1083 |#1|) (-852))) (-15 -1369 ((-1083 |#1|) (-852))) (-15 -1827 ((-1083 |#1|) (-852))) (-15 -1518 ((-1083 |#1|) (-852))) (-15 -2450 ((-3 (-1083 |#1|) "failed") (-1083 |#1|))) (-15 -3897 ((-3 (-1083 |#1|) "failed") (-1083 |#1|))) (-15 -3172 ((-3 (-1083 |#1|) "failed") (-1083 |#1|))) (-15 -3539 ((-3 (-1083 |#1|) "failed") (-1083 |#1|))) (-15 -2845 ((-3 (-1083 |#1|) "failed") (-1083 |#1|))) (-15 -3461 ((-1083 |#1|) (-852))) (-15 -3461 ((-1083 |#1|) (-852) (-852))) (-15 -1450 ((-1083 |#1|) (-1083 |#1|))) (-15 -2982 ((-888 (-1083 |#1|)) (-1083 |#1|))))
-((-3908 (((-3 (-589 |#3|) "failed") (-589 |#3|) |#3|) 34)))
-(((-334 |#1| |#2| |#3|) (-10 -7 (-15 -3908 ((-3 (-589 |#3|) "failed") (-589 |#3|) |#3|))) (-325) (-1145 |#1|) (-1145 |#2|)) (T -334))
-((-3908 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-589 *3)) (-4 *3 (-1145 *5)) (-4 *5 (-1145 *4)) (-4 *4 (-325)) (-5 *1 (-334 *4 *5 *3)))))
-(-10 -7 (-15 -3908 ((-3 (-589 |#3|) "failed") (-589 |#3|) |#3|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-3867 (((-108) $) NIL)) (-4154 (((-710)) NIL)) (-4131 ((|#1| $) NIL) (($ $ (-852)) NIL (|has| |#1| (-344)))) (-2794 (((-1097 (-852) (-710)) (-523)) NIL (|has| |#1| (-344)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-3843 (((-710)) NIL (|has| |#1| (-344)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL)) (-1996 ((|#1| $) NIL)) (-3322 (($ (-1169 |#1|)) NIL)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-344)))) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) NIL (|has| |#1| (-344)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-2097 (($) NIL (|has| |#1| (-344)))) (-1200 (((-108) $) NIL (|has| |#1| (-344)))) (-1419 (($ $ (-710)) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))) (($ $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1330 (((-108) $) NIL)) (-1500 (((-852) $) NIL (|has| |#1| (-344))) (((-772 (-852)) $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-3482 (((-108) $) NIL)) (-2842 (($) NIL (|has| |#1| (-344)))) (-4077 (((-108) $) NIL (|has| |#1| (-344)))) (-2765 ((|#1| $) NIL) (($ $ (-852)) NIL (|has| |#1| (-344)))) (-1289 (((-3 $ "failed") $) NIL (|has| |#1| (-344)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2277 (((-1083 |#1|) $) NIL) (((-1083 $) $ (-852)) NIL (|has| |#1| (-344)))) (-4076 (((-852) $) NIL (|has| |#1| (-344)))) (-1573 (((-1083 |#1|) $) NIL (|has| |#1| (-344)))) (-3102 (((-1083 |#1|) $) NIL (|has| |#1| (-344))) (((-3 (-1083 |#1|) "failed") $ $) NIL (|has| |#1| (-344)))) (-2163 (($ $ (-1083 |#1|)) NIL (|has| |#1| (-344)))) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| |#1| (-344)) CONST)) (-2557 (($ (-852)) NIL (|has| |#1| (-344)))) (-4203 (((-108) $) NIL)) (-2435 (((-1034) $) NIL)) (-4102 (($) NIL (|has| |#1| (-344)))) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) NIL (|has| |#1| (-344)))) (-3573 (((-394 $) $) NIL)) (-3718 (((-772 (-852))) NIL) (((-852)) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2041 (((-710) $) NIL (|has| |#1| (-344))) (((-3 (-710) "failed") $ $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-4012 (((-126)) NIL)) (-4024 (($ $) NIL (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-1487 (((-772 (-852)) $) NIL) (((-852) $) NIL)) (-3399 (((-1083 |#1|)) NIL)) (-2315 (($) NIL (|has| |#1| (-344)))) (-2233 (($) NIL (|has| |#1| (-344)))) (-2411 (((-1169 |#1|) $) NIL) (((-629 |#1|) (-1169 $)) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (|has| |#1| (-344)))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) (($ |#1|) NIL)) (-2301 (($ $) NIL (|has| |#1| (-344))) (((-3 $ "failed") $) NIL (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1698 (((-710)) NIL)) (-2922 (((-1169 $)) NIL) (((-1169 $) (-852)) NIL)) (-3842 (((-108) $ $) NIL)) (-4079 (((-108) $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1732 (($ $) NIL (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-1943 (($ $) NIL (|has| |#1| (-344))) (($ $ (-710)) NIL (|has| |#1| (-344)))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL) (($ $ |#1|) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-335 |#1| |#2|) (-305 |#1|) (-325) (-852)) (T -335))
-NIL
-(-305 |#1|)
-((-2758 (((-108) (-589 (-883 |#1|))) 34)) (-3721 (((-589 (-883 |#1|)) (-589 (-883 |#1|))) 46)) (-1217 (((-3 (-589 (-883 |#1|)) "failed") (-589 (-883 |#1|))) 41)))
-(((-336 |#1| |#2|) (-10 -7 (-15 -2758 ((-108) (-589 (-883 |#1|)))) (-15 -1217 ((-3 (-589 (-883 |#1|)) "failed") (-589 (-883 |#1|)))) (-15 -3721 ((-589 (-883 |#1|)) (-589 (-883 |#1|))))) (-427) (-589 (-1087))) (T -336))
-((-3721 (*1 *2 *2) (-12 (-5 *2 (-589 (-883 *3))) (-4 *3 (-427)) (-5 *1 (-336 *3 *4)) (-14 *4 (-589 (-1087))))) (-1217 (*1 *2 *2) (|partial| -12 (-5 *2 (-589 (-883 *3))) (-4 *3 (-427)) (-5 *1 (-336 *3 *4)) (-14 *4 (-589 (-1087))))) (-2758 (*1 *2 *3) (-12 (-5 *3 (-589 (-883 *4))) (-4 *4 (-427)) (-5 *2 (-108)) (-5 *1 (-336 *4 *5)) (-14 *5 (-589 (-1087))))))
-(-10 -7 (-15 -2758 ((-108) (-589 (-883 |#1|)))) (-15 -1217 ((-3 (-589 (-883 |#1|)) "failed") (-589 (-883 |#1|)))) (-15 -3721 ((-589 (-883 |#1|)) (-589 (-883 |#1|)))))
-((-3260 (((-108) $ $) NIL)) (-3843 (((-710) $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL)) (-1996 ((|#1| $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3482 (((-108) $) 15)) (-3019 ((|#1| $ (-523)) NIL)) (-3831 (((-523) $ (-523)) NIL)) (-4119 (($ (-1 |#1| |#1|) $) 32)) (-3332 (($ (-1 (-523) (-523)) $) 24)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 26)) (-2435 (((-1034) $) NIL)) (-3286 (((-589 (-2 (|:| |gen| |#1|) (|:| -1847 (-523)))) $) 28)) (-1308 (($ $ $) NIL)) (-2306 (($ $ $) NIL)) (-3976 (((-794) $) 38) (($ |#1|) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1440 (($) 9 T CONST)) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL) (($ |#1| (-523)) 17)) (* (($ $ $) 43) (($ |#1| $) 21) (($ $ |#1|) 19)))
-(((-337 |#1|) (-13 (-448) (-964 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-523))) (-15 -3843 ((-710) $)) (-15 -3831 ((-523) $ (-523))) (-15 -3019 (|#1| $ (-523))) (-15 -3332 ($ (-1 (-523) (-523)) $)) (-15 -4119 ($ (-1 |#1| |#1|) $)) (-15 -3286 ((-589 (-2 (|:| |gen| |#1|) (|:| -1847 (-523)))) $)))) (-1016)) (T -337))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-337 *2)) (-4 *2 (-1016)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-337 *2)) (-4 *2 (-1016)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-523)) (-5 *1 (-337 *2)) (-4 *2 (-1016)))) (-3843 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-337 *3)) (-4 *3 (-1016)))) (-3831 (*1 *2 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-337 *3)) (-4 *3 (-1016)))) (-3019 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *1 (-337 *2)) (-4 *2 (-1016)))) (-3332 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-523) (-523))) (-5 *1 (-337 *3)) (-4 *3 (-1016)))) (-4119 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1016)) (-5 *1 (-337 *3)))) (-3286 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| |gen| *3) (|:| -1847 (-523))))) (-5 *1 (-337 *3)) (-4 *3 (-1016)))))
-(-13 (-448) (-964 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-523))) (-15 -3843 ((-710) $)) (-15 -3831 ((-523) $ (-523))) (-15 -3019 (|#1| $ (-523))) (-15 -3332 ($ (-1 (-523) (-523)) $)) (-15 -4119 ($ (-1 |#1| |#1|) $)) (-15 -3286 ((-589 (-2 (|:| |gen| |#1|) (|:| -1847 (-523)))) $))))
-((-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 13)) (-3950 (($ $) 14)) (-2105 (((-394 $) $) 30)) (-1330 (((-108) $) 26)) (-3071 (($ $) 19)) (-2056 (($ $ $) 23) (($ (-589 $)) NIL)) (-3573 (((-394 $) $) 31)) (-2469 (((-3 $ "failed") $ $) 22)) (-3087 (((-710) $) 25)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 35)) (-3842 (((-108) $ $) 16)) (-4125 (($ $ $) 33)))
-(((-338 |#1|) (-10 -8 (-15 -4125 (|#1| |#1| |#1|)) (-15 -3071 (|#1| |#1|)) (-15 -1330 ((-108) |#1|)) (-15 -2105 ((-394 |#1|) |#1|)) (-15 -3573 ((-394 |#1|) |#1|)) (-15 -1227 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -3087 ((-710) |#1|)) (-15 -2056 (|#1| (-589 |#1|))) (-15 -2056 (|#1| |#1| |#1|)) (-15 -3842 ((-108) |#1| |#1|)) (-15 -3950 (|#1| |#1|)) (-15 -3001 ((-2 (|:| -1895 |#1|) (|:| -4235 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#1|))) (-339)) (T -338))
-NIL
-(-10 -8 (-15 -4125 (|#1| |#1| |#1|)) (-15 -3071 (|#1| |#1|)) (-15 -1330 ((-108) |#1|)) (-15 -2105 ((-394 |#1|) |#1|)) (-15 -3573 ((-394 |#1|) |#1|)) (-15 -1227 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -3087 ((-710) |#1|)) (-15 -2056 (|#1| (-589 |#1|))) (-15 -2056 (|#1| |#1| |#1|)) (-15 -3842 ((-108) |#1| |#1|)) (-15 -3950 (|#1| |#1|)) (-15 -3001 ((-2 (|:| -1895 |#1|) (|:| -4235 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-2999 (((-3 $ "failed") $ $) 19)) (-3763 (($ $) 73)) (-2105 (((-394 $) $) 72)) (-3684 (((-108) $ $) 59)) (-1640 (($) 17 T CONST)) (-2501 (($ $ $) 55)) (-4211 (((-3 $ "failed") $) 34)) (-2486 (($ $ $) 56)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 51)) (-1330 (((-108) $) 71)) (-3482 (((-108) $) 31)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 52)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-3071 (($ $) 70)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-3573 (((-394 $) $) 74)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2469 (((-3 $ "failed") $ $) 42)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 50)) (-3087 (((-710) $) 58)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 57)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43) (($ (-383 (-523))) 65)) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 39)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 69)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4125 (($ $ $) 64)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 68)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 (-523))) 67) (($ (-383 (-523)) $) 66)))
-(((-339) (-129)) (T -339))
-((-4125 (*1 *1 *1 *1) (-4 *1 (-339))))
-(-13 (-284) (-1127) (-221) (-10 -8 (-15 -4125 ($ $ $)) (-6 -4246) (-6 -4240)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-124) . T) ((-563 (-794)) . T) ((-158) . T) ((-221) . T) ((-267) . T) ((-284) . T) ((-427) . T) ((-515) . T) ((-591 #0#) . T) ((-591 $) . T) ((-657 #0#) . T) ((-657 $) . T) ((-666) . T) ((-851) . T) ((-979 #0#) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1127) . T))
-((-3260 (((-108) $ $) 7)) (-1929 ((|#2| $ |#2|) 13)) (-1590 (($ $ (-1070)) 18)) (-2214 ((|#2| $) 14)) (-3439 (($ |#1|) 20) (($ |#1| (-1070)) 19)) (-1522 ((|#1| $) 16)) (-3841 (((-1070) $) 9)) (-2965 (((-1070) $) 15)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-1833 (($ $) 17)) (-4037 (((-108) $ $) 6)))
-(((-340 |#1| |#2|) (-129) (-1016) (-1016)) (T -340))
-((-3439 (*1 *1 *2) (-12 (-4 *1 (-340 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))) (-3439 (*1 *1 *2 *3) (-12 (-5 *3 (-1070)) (-4 *1 (-340 *2 *4)) (-4 *2 (-1016)) (-4 *4 (-1016)))) (-1590 (*1 *1 *1 *2) (-12 (-5 *2 (-1070)) (-4 *1 (-340 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016)))) (-1833 (*1 *1 *1) (-12 (-4 *1 (-340 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))) (-1522 (*1 *2 *1) (-12 (-4 *1 (-340 *2 *3)) (-4 *3 (-1016)) (-4 *2 (-1016)))) (-2965 (*1 *2 *1) (-12 (-4 *1 (-340 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-5 *2 (-1070)))) (-2214 (*1 *2 *1) (-12 (-4 *1 (-340 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1016)))) (-1929 (*1 *2 *1 *2) (-12 (-4 *1 (-340 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1016)))))
-(-13 (-1016) (-10 -8 (-15 -3439 ($ |t#1|)) (-15 -3439 ($ |t#1| (-1070))) (-15 -1590 ($ $ (-1070))) (-15 -1833 ($ $)) (-15 -1522 (|t#1| $)) (-15 -2965 ((-1070) $)) (-15 -2214 (|t#2| $)) (-15 -1929 (|t#2| $ |t#2|))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-1929 ((|#1| $ |#1|) 30)) (-1590 (($ $ (-1070)) 22)) (-1302 (((-3 |#1| "failed") $) 29)) (-2214 ((|#1| $) 27)) (-3439 (($ (-364)) 21) (($ (-364) (-1070)) 20)) (-1522 (((-364) $) 24)) (-3841 (((-1070) $) NIL)) (-2965 (((-1070) $) 25)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 19)) (-1833 (($ $) 23)) (-4037 (((-108) $ $) 18)))
-(((-341 |#1|) (-13 (-340 (-364) |#1|) (-10 -8 (-15 -1302 ((-3 |#1| "failed") $)))) (-1016)) (T -341))
-((-1302 (*1 *2 *1) (|partial| -12 (-5 *1 (-341 *2)) (-4 *2 (-1016)))))
-(-13 (-340 (-364) |#1|) (-10 -8 (-15 -1302 ((-3 |#1| "failed") $))))
-((-2279 (((-1169 (-629 |#2|)) (-1169 $)) 61)) (-4067 (((-629 |#2|) (-1169 $)) 120)) (-2507 ((|#2| $) 32)) (-2358 (((-629 |#2|) $ (-1169 $)) 123)) (-2439 (((-3 $ "failed") $) 75)) (-2860 ((|#2| $) 35)) (-2119 (((-1083 |#2|) $) 83)) (-1772 ((|#2| (-1169 $)) 106)) (-2196 (((-1083 |#2|) $) 28)) (-3953 (((-108)) 100)) (-3322 (($ (-1169 |#2|) (-1169 $)) 113)) (-4211 (((-3 $ "failed") $) 79)) (-3562 (((-108)) 95)) (-3877 (((-108)) 90)) (-3868 (((-108)) 53)) (-2216 (((-629 |#2|) (-1169 $)) 118)) (-1870 ((|#2| $) 31)) (-2225 (((-629 |#2|) $ (-1169 $)) 122)) (-3790 (((-3 $ "failed") $) 73)) (-1876 ((|#2| $) 34)) (-1393 (((-1083 |#2|) $) 82)) (-1242 ((|#2| (-1169 $)) 104)) (-1292 (((-1083 |#2|) $) 26)) (-1519 (((-108)) 99)) (-1279 (((-108)) 92)) (-1466 (((-108)) 51)) (-1597 (((-108)) 87)) (-2375 (((-108)) 101)) (-2411 (((-1169 |#2|) $ (-1169 $)) NIL) (((-629 |#2|) (-1169 $) (-1169 $)) 111)) (-2178 (((-108)) 97)) (-1842 (((-589 (-1169 |#2|))) 86)) (-1363 (((-108)) 98)) (-3931 (((-108)) 96)) (-3433 (((-108)) 46)) (-4001 (((-108)) 102)))
-(((-342 |#1| |#2|) (-10 -8 (-15 -2119 ((-1083 |#2|) |#1|)) (-15 -1393 ((-1083 |#2|) |#1|)) (-15 -1842 ((-589 (-1169 |#2|)))) (-15 -2439 ((-3 |#1| "failed") |#1|)) (-15 -3790 ((-3 |#1| "failed") |#1|)) (-15 -4211 ((-3 |#1| "failed") |#1|)) (-15 -3877 ((-108))) (-15 -1279 ((-108))) (-15 -3562 ((-108))) (-15 -1466 ((-108))) (-15 -3868 ((-108))) (-15 -1597 ((-108))) (-15 -4001 ((-108))) (-15 -2375 ((-108))) (-15 -3953 ((-108))) (-15 -1519 ((-108))) (-15 -3433 ((-108))) (-15 -1363 ((-108))) (-15 -3931 ((-108))) (-15 -2178 ((-108))) (-15 -2196 ((-1083 |#2|) |#1|)) (-15 -1292 ((-1083 |#2|) |#1|)) (-15 -4067 ((-629 |#2|) (-1169 |#1|))) (-15 -2216 ((-629 |#2|) (-1169 |#1|))) (-15 -1772 (|#2| (-1169 |#1|))) (-15 -1242 (|#2| (-1169 |#1|))) (-15 -3322 (|#1| (-1169 |#2|) (-1169 |#1|))) (-15 -2411 ((-629 |#2|) (-1169 |#1|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1| (-1169 |#1|))) (-15 -2860 (|#2| |#1|)) (-15 -1876 (|#2| |#1|)) (-15 -2507 (|#2| |#1|)) (-15 -1870 (|#2| |#1|)) (-15 -2358 ((-629 |#2|) |#1| (-1169 |#1|))) (-15 -2225 ((-629 |#2|) |#1| (-1169 |#1|))) (-15 -2279 ((-1169 (-629 |#2|)) (-1169 |#1|)))) (-343 |#2|) (-158)) (T -342))
-((-2178 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4)) (-4 *3 (-343 *4)))) (-3931 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4)) (-4 *3 (-343 *4)))) (-1363 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4)) (-4 *3 (-343 *4)))) (-3433 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4)) (-4 *3 (-343 *4)))) (-1519 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4)) (-4 *3 (-343 *4)))) (-3953 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4)) (-4 *3 (-343 *4)))) (-2375 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4)) (-4 *3 (-343 *4)))) (-4001 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4)) (-4 *3 (-343 *4)))) (-1597 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4)) (-4 *3 (-343 *4)))) (-3868 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4)) (-4 *3 (-343 *4)))) (-1466 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4)) (-4 *3 (-343 *4)))) (-3562 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4)) (-4 *3 (-343 *4)))) (-1279 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4)) (-4 *3 (-343 *4)))) (-3877 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4)) (-4 *3 (-343 *4)))) (-1842 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-589 (-1169 *4))) (-5 *1 (-342 *3 *4)) (-4 *3 (-343 *4)))))
-(-10 -8 (-15 -2119 ((-1083 |#2|) |#1|)) (-15 -1393 ((-1083 |#2|) |#1|)) (-15 -1842 ((-589 (-1169 |#2|)))) (-15 -2439 ((-3 |#1| "failed") |#1|)) (-15 -3790 ((-3 |#1| "failed") |#1|)) (-15 -4211 ((-3 |#1| "failed") |#1|)) (-15 -3877 ((-108))) (-15 -1279 ((-108))) (-15 -3562 ((-108))) (-15 -1466 ((-108))) (-15 -3868 ((-108))) (-15 -1597 ((-108))) (-15 -4001 ((-108))) (-15 -2375 ((-108))) (-15 -3953 ((-108))) (-15 -1519 ((-108))) (-15 -3433 ((-108))) (-15 -1363 ((-108))) (-15 -3931 ((-108))) (-15 -2178 ((-108))) (-15 -2196 ((-1083 |#2|) |#1|)) (-15 -1292 ((-1083 |#2|) |#1|)) (-15 -4067 ((-629 |#2|) (-1169 |#1|))) (-15 -2216 ((-629 |#2|) (-1169 |#1|))) (-15 -1772 (|#2| (-1169 |#1|))) (-15 -1242 (|#2| (-1169 |#1|))) (-15 -3322 (|#1| (-1169 |#2|) (-1169 |#1|))) (-15 -2411 ((-629 |#2|) (-1169 |#1|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1| (-1169 |#1|))) (-15 -2860 (|#2| |#1|)) (-15 -1876 (|#2| |#1|)) (-15 -2507 (|#2| |#1|)) (-15 -1870 (|#2| |#1|)) (-15 -2358 ((-629 |#2|) |#1| (-1169 |#1|))) (-15 -2225 ((-629 |#2|) |#1| (-1169 |#1|))) (-15 -2279 ((-1169 (-629 |#2|)) (-1169 |#1|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-1895 (((-3 $ "failed")) 37 (|has| |#1| (-515)))) (-2999 (((-3 $ "failed") $ $) 19)) (-2279 (((-1169 (-629 |#1|)) (-1169 $)) 78)) (-3513 (((-1169 $)) 81)) (-1640 (($) 17 T CONST)) (-1563 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) 40 (|has| |#1| (-515)))) (-3869 (((-3 $ "failed")) 38 (|has| |#1| (-515)))) (-4067 (((-629 |#1|) (-1169 $)) 65)) (-2507 ((|#1| $) 74)) (-2358 (((-629 |#1|) $ (-1169 $)) 76)) (-2439 (((-3 $ "failed") $) 45 (|has| |#1| (-515)))) (-2966 (($ $ (-852)) 28)) (-2860 ((|#1| $) 72)) (-2119 (((-1083 |#1|) $) 42 (|has| |#1| (-515)))) (-1772 ((|#1| (-1169 $)) 67)) (-2196 (((-1083 |#1|) $) 63)) (-3953 (((-108)) 57)) (-3322 (($ (-1169 |#1|) (-1169 $)) 69)) (-4211 (((-3 $ "failed") $) 47 (|has| |#1| (-515)))) (-2262 (((-852)) 80)) (-3091 (((-108)) 54)) (-1935 (($ $ (-852)) 33)) (-3562 (((-108)) 50)) (-3877 (((-108)) 48)) (-3868 (((-108)) 52)) (-4111 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) 41 (|has| |#1| (-515)))) (-3575 (((-3 $ "failed")) 39 (|has| |#1| (-515)))) (-2216 (((-629 |#1|) (-1169 $)) 66)) (-1870 ((|#1| $) 75)) (-2225 (((-629 |#1|) $ (-1169 $)) 77)) (-3790 (((-3 $ "failed") $) 46 (|has| |#1| (-515)))) (-2165 (($ $ (-852)) 29)) (-1876 ((|#1| $) 73)) (-1393 (((-1083 |#1|) $) 43 (|has| |#1| (-515)))) (-1242 ((|#1| (-1169 $)) 68)) (-1292 (((-1083 |#1|) $) 64)) (-1519 (((-108)) 58)) (-3841 (((-1070) $) 9)) (-1279 (((-108)) 49)) (-1466 (((-108)) 51)) (-1597 (((-108)) 53)) (-2435 (((-1034) $) 10)) (-2375 (((-108)) 56)) (-2411 (((-1169 |#1|) $ (-1169 $)) 71) (((-629 |#1|) (-1169 $) (-1169 $)) 70)) (-1948 (((-589 (-883 |#1|)) (-1169 $)) 79)) (-2306 (($ $ $) 25)) (-2178 (((-108)) 62)) (-3976 (((-794) $) 11)) (-1842 (((-589 (-1169 |#1|))) 44 (|has| |#1| (-515)))) (-3377 (($ $ $ $) 26)) (-1363 (((-108)) 60)) (-1952 (($ $ $) 24)) (-3931 (((-108)) 61)) (-3433 (((-108)) 59)) (-4001 (((-108)) 55)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 30)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
-(((-343 |#1|) (-129) (-158)) (T -343))
-((-3513 (*1 *2) (-12 (-4 *3 (-158)) (-5 *2 (-1169 *1)) (-4 *1 (-343 *3)))) (-2262 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-852)))) (-1948 (*1 *2 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158)) (-5 *2 (-589 (-883 *4))))) (-2279 (*1 *2 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158)) (-5 *2 (-1169 (-629 *4))))) (-2225 (*1 *2 *1 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158)) (-5 *2 (-629 *4)))) (-2358 (*1 *2 *1 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158)) (-5 *2 (-629 *4)))) (-1870 (*1 *2 *1) (-12 (-4 *1 (-343 *2)) (-4 *2 (-158)))) (-2507 (*1 *2 *1) (-12 (-4 *1 (-343 *2)) (-4 *2 (-158)))) (-1876 (*1 *2 *1) (-12 (-4 *1 (-343 *2)) (-4 *2 (-158)))) (-2860 (*1 *2 *1) (-12 (-4 *1 (-343 *2)) (-4 *2 (-158)))) (-2411 (*1 *2 *1 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158)) (-5 *2 (-1169 *4)))) (-2411 (*1 *2 *3 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158)) (-5 *2 (-629 *4)))) (-3322 (*1 *1 *2 *3) (-12 (-5 *2 (-1169 *4)) (-5 *3 (-1169 *1)) (-4 *4 (-158)) (-4 *1 (-343 *4)))) (-1242 (*1 *2 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *2)) (-4 *2 (-158)))) (-1772 (*1 *2 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *2)) (-4 *2 (-158)))) (-2216 (*1 *2 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158)) (-5 *2 (-629 *4)))) (-4067 (*1 *2 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158)) (-5 *2 (-629 *4)))) (-1292 (*1 *2 *1) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-1083 *3)))) (-2196 (*1 *2 *1) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-1083 *3)))) (-2178 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))) (-3931 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))) (-1363 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))) (-3433 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))) (-1519 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))) (-3953 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))) (-2375 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))) (-4001 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))) (-3091 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))) (-1597 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))) (-3868 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))) (-1466 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))) (-3562 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))) (-1279 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))) (-3877 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))) (-4211 (*1 *1 *1) (|partial| -12 (-4 *1 (-343 *2)) (-4 *2 (-158)) (-4 *2 (-515)))) (-3790 (*1 *1 *1) (|partial| -12 (-4 *1 (-343 *2)) (-4 *2 (-158)) (-4 *2 (-515)))) (-2439 (*1 *1 *1) (|partial| -12 (-4 *1 (-343 *2)) (-4 *2 (-158)) (-4 *2 (-515)))) (-1842 (*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-4 *3 (-515)) (-5 *2 (-589 (-1169 *3))))) (-1393 (*1 *2 *1) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-4 *3 (-515)) (-5 *2 (-1083 *3)))) (-2119 (*1 *2 *1) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-4 *3 (-515)) (-5 *2 (-1083 *3)))) (-4111 (*1 *2) (|partial| -12 (-4 *3 (-515)) (-4 *3 (-158)) (-5 *2 (-2 (|:| |particular| *1) (|:| -2922 (-589 *1)))) (-4 *1 (-343 *3)))) (-1563 (*1 *2) (|partial| -12 (-4 *3 (-515)) (-4 *3 (-158)) (-5 *2 (-2 (|:| |particular| *1) (|:| -2922 (-589 *1)))) (-4 *1 (-343 *3)))) (-3575 (*1 *1) (|partial| -12 (-4 *1 (-343 *2)) (-4 *2 (-515)) (-4 *2 (-158)))) (-3869 (*1 *1) (|partial| -12 (-4 *1 (-343 *2)) (-4 *2 (-515)) (-4 *2 (-158)))) (-1895 (*1 *1) (|partial| -12 (-4 *1 (-343 *2)) (-4 *2 (-515)) (-4 *2 (-158)))))
-(-13 (-684 |t#1|) (-10 -8 (-15 -3513 ((-1169 $))) (-15 -2262 ((-852))) (-15 -1948 ((-589 (-883 |t#1|)) (-1169 $))) (-15 -2279 ((-1169 (-629 |t#1|)) (-1169 $))) (-15 -2225 ((-629 |t#1|) $ (-1169 $))) (-15 -2358 ((-629 |t#1|) $ (-1169 $))) (-15 -1870 (|t#1| $)) (-15 -2507 (|t#1| $)) (-15 -1876 (|t#1| $)) (-15 -2860 (|t#1| $)) (-15 -2411 ((-1169 |t#1|) $ (-1169 $))) (-15 -2411 ((-629 |t#1|) (-1169 $) (-1169 $))) (-15 -3322 ($ (-1169 |t#1|) (-1169 $))) (-15 -1242 (|t#1| (-1169 $))) (-15 -1772 (|t#1| (-1169 $))) (-15 -2216 ((-629 |t#1|) (-1169 $))) (-15 -4067 ((-629 |t#1|) (-1169 $))) (-15 -1292 ((-1083 |t#1|) $)) (-15 -2196 ((-1083 |t#1|) $)) (-15 -2178 ((-108))) (-15 -3931 ((-108))) (-15 -1363 ((-108))) (-15 -3433 ((-108))) (-15 -1519 ((-108))) (-15 -3953 ((-108))) (-15 -2375 ((-108))) (-15 -4001 ((-108))) (-15 -3091 ((-108))) (-15 -1597 ((-108))) (-15 -3868 ((-108))) (-15 -1466 ((-108))) (-15 -3562 ((-108))) (-15 -1279 ((-108))) (-15 -3877 ((-108))) (IF (|has| |t#1| (-515)) (PROGN (-15 -4211 ((-3 $ "failed") $)) (-15 -3790 ((-3 $ "failed") $)) (-15 -2439 ((-3 $ "failed") $)) (-15 -1842 ((-589 (-1169 |t#1|)))) (-15 -1393 ((-1083 |t#1|) $)) (-15 -2119 ((-1083 |t#1|) $)) (-15 -4111 ((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed"))) (-15 -1563 ((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed"))) (-15 -3575 ((-3 $ "failed"))) (-15 -3869 ((-3 $ "failed"))) (-15 -1895 ((-3 $ "failed"))) (-6 -4245)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 |#1|) . T) ((-657 |#1|) . T) ((-660) . T) ((-684 |#1|) . T) ((-701) . T) ((-979 |#1|) . T) ((-1016) . T))
-((-3260 (((-108) $ $) 7)) (-3843 (((-710)) 16)) (-3461 (($) 13)) (-4076 (((-852) $) 14)) (-3841 (((-1070) $) 9)) (-2557 (($ (-852)) 15)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-4037 (((-108) $ $) 6)))
-(((-344) (-129)) (T -344))
-((-3843 (*1 *2) (-12 (-4 *1 (-344)) (-5 *2 (-710)))) (-2557 (*1 *1 *2) (-12 (-5 *2 (-852)) (-4 *1 (-344)))) (-4076 (*1 *2 *1) (-12 (-4 *1 (-344)) (-5 *2 (-852)))) (-3461 (*1 *1) (-4 *1 (-344))))
-(-13 (-1016) (-10 -8 (-15 -3843 ((-710))) (-15 -2557 ($ (-852))) (-15 -4076 ((-852) $)) (-15 -3461 ($))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-1711 (((-629 |#2|) (-1169 $)) 41)) (-3322 (($ (-1169 |#2|) (-1169 $)) 35)) (-2545 (((-629 |#2|) $ (-1169 $)) 43)) (-4053 ((|#2| (-1169 $)) 13)) (-2411 (((-1169 |#2|) $ (-1169 $)) NIL) (((-629 |#2|) (-1169 $) (-1169 $)) 25)))
-(((-345 |#1| |#2| |#3|) (-10 -8 (-15 -1711 ((-629 |#2|) (-1169 |#1|))) (-15 -4053 (|#2| (-1169 |#1|))) (-15 -3322 (|#1| (-1169 |#2|) (-1169 |#1|))) (-15 -2411 ((-629 |#2|) (-1169 |#1|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1| (-1169 |#1|))) (-15 -2545 ((-629 |#2|) |#1| (-1169 |#1|)))) (-346 |#2| |#3|) (-158) (-1145 |#2|)) (T -345))
-NIL
-(-10 -8 (-15 -1711 ((-629 |#2|) (-1169 |#1|))) (-15 -4053 (|#2| (-1169 |#1|))) (-15 -3322 (|#1| (-1169 |#2|) (-1169 |#1|))) (-15 -2411 ((-629 |#2|) (-1169 |#1|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1| (-1169 |#1|))) (-15 -2545 ((-629 |#2|) |#1| (-1169 |#1|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-1711 (((-629 |#1|) (-1169 $)) 46)) (-4131 ((|#1| $) 52)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3322 (($ (-1169 |#1|) (-1169 $)) 48)) (-2545 (((-629 |#1|) $ (-1169 $)) 53)) (-4211 (((-3 $ "failed") $) 34)) (-2262 (((-852)) 54)) (-3482 (((-108) $) 31)) (-2765 ((|#1| $) 51)) (-2277 ((|#2| $) 44 (|has| |#1| (-339)))) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-4053 ((|#1| (-1169 $)) 47)) (-2411 (((-1169 |#1|) $ (-1169 $)) 50) (((-629 |#1|) (-1169 $) (-1169 $)) 49)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 37)) (-2301 (((-3 $ "failed") $) 43 (|has| |#1| (-134)))) (-1606 ((|#2| $) 45)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
-(((-346 |#1| |#2|) (-129) (-158) (-1145 |t#1|)) (T -346))
-((-2262 (*1 *2) (-12 (-4 *1 (-346 *3 *4)) (-4 *3 (-158)) (-4 *4 (-1145 *3)) (-5 *2 (-852)))) (-2545 (*1 *2 *1 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-346 *4 *5)) (-4 *4 (-158)) (-4 *5 (-1145 *4)) (-5 *2 (-629 *4)))) (-4131 (*1 *2 *1) (-12 (-4 *1 (-346 *2 *3)) (-4 *3 (-1145 *2)) (-4 *2 (-158)))) (-2765 (*1 *2 *1) (-12 (-4 *1 (-346 *2 *3)) (-4 *3 (-1145 *2)) (-4 *2 (-158)))) (-2411 (*1 *2 *1 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-346 *4 *5)) (-4 *4 (-158)) (-4 *5 (-1145 *4)) (-5 *2 (-1169 *4)))) (-2411 (*1 *2 *3 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-346 *4 *5)) (-4 *4 (-158)) (-4 *5 (-1145 *4)) (-5 *2 (-629 *4)))) (-3322 (*1 *1 *2 *3) (-12 (-5 *2 (-1169 *4)) (-5 *3 (-1169 *1)) (-4 *4 (-158)) (-4 *1 (-346 *4 *5)) (-4 *5 (-1145 *4)))) (-4053 (*1 *2 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-346 *2 *4)) (-4 *4 (-1145 *2)) (-4 *2 (-158)))) (-1711 (*1 *2 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-346 *4 *5)) (-4 *4 (-158)) (-4 *5 (-1145 *4)) (-5 *2 (-629 *4)))) (-1606 (*1 *2 *1) (-12 (-4 *1 (-346 *3 *2)) (-4 *3 (-158)) (-4 *2 (-1145 *3)))) (-2277 (*1 *2 *1) (-12 (-4 *1 (-346 *3 *2)) (-4 *3 (-158)) (-4 *3 (-339)) (-4 *2 (-1145 *3)))))
-(-13 (-37 |t#1|) (-10 -8 (-15 -2262 ((-852))) (-15 -2545 ((-629 |t#1|) $ (-1169 $))) (-15 -4131 (|t#1| $)) (-15 -2765 (|t#1| $)) (-15 -2411 ((-1169 |t#1|) $ (-1169 $))) (-15 -2411 ((-629 |t#1|) (-1169 $) (-1169 $))) (-15 -3322 ($ (-1169 |t#1|) (-1169 $))) (-15 -4053 (|t#1| (-1169 $))) (-15 -1711 ((-629 |t#1|) (-1169 $))) (-15 -1606 (|t#2| $)) (IF (|has| |t#1| (-339)) (-15 -2277 (|t#2| $)) |%noBranch|) (IF (|has| |t#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |t#1| (-134)) (-6 (-134)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-591 |#1|) . T) ((-591 $) . T) ((-657 |#1|) . T) ((-666) . T) ((-979 |#1|) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-1586 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 23)) (-1830 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 15)) (-3015 ((|#4| (-1 |#3| |#1|) |#2|) 21)))
-(((-347 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3015 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1830 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1586 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1123) (-349 |#1|) (-1123) (-349 |#3|)) (T -347))
-((-1586 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1123)) (-4 *5 (-1123)) (-4 *2 (-349 *5)) (-5 *1 (-347 *6 *4 *5 *2)) (-4 *4 (-349 *6)))) (-1830 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1123)) (-4 *2 (-1123)) (-5 *1 (-347 *5 *4 *2 *6)) (-4 *4 (-349 *5)) (-4 *6 (-349 *2)))) (-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-4 *2 (-349 *6)) (-5 *1 (-347 *5 *4 *6 *2)) (-4 *4 (-349 *5)))))
-(-10 -7 (-15 -3015 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1830 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1586 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-4159 (((-108) (-1 (-108) |#2| |#2|) $) NIL) (((-108) $) 18)) (-2361 (($ (-1 (-108) |#2| |#2|) $) NIL) (($ $) 28)) (-3400 (($ (-1 (-108) |#2| |#2|) $) 27) (($ $) 22)) (-4082 (($ $) 25)) (-1894 (((-523) (-1 (-108) |#2|) $) NIL) (((-523) |#2| $) 11) (((-523) |#2| $ (-523)) NIL)) (-3123 (($ (-1 (-108) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
-(((-348 |#1| |#2|) (-10 -8 (-15 -2361 (|#1| |#1|)) (-15 -2361 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -4159 ((-108) |#1|)) (-15 -3400 (|#1| |#1|)) (-15 -3123 (|#1| |#1| |#1|)) (-15 -1894 ((-523) |#2| |#1| (-523))) (-15 -1894 ((-523) |#2| |#1|)) (-15 -1894 ((-523) (-1 (-108) |#2|) |#1|)) (-15 -4159 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3400 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -4082 (|#1| |#1|)) (-15 -3123 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|))) (-349 |#2|) (-1123)) (T -348))
-NIL
-(-10 -8 (-15 -2361 (|#1| |#1|)) (-15 -2361 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -4159 ((-108) |#1|)) (-15 -3400 (|#1| |#1|)) (-15 -3123 (|#1| |#1| |#1|)) (-15 -1894 ((-523) |#2| |#1| (-523))) (-15 -1894 ((-523) |#2| |#1|)) (-15 -1894 ((-523) (-1 (-108) |#2|) |#1|)) (-15 -4159 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3400 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -4082 (|#1| |#1|)) (-15 -3123 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-1666 (((-1174) $ (-523) (-523)) 40 (|has| $ (-6 -4249)))) (-4159 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-786)))) (-2361 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4249))) (($ $) 88 (-12 (|has| |#1| (-786)) (|has| $ (-6 -4249))))) (-3400 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-786)))) (-2282 (((-108) $ (-710)) 8)) (-4101 ((|#1| $ (-523) |#1|) 52 (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) 58 (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4248)))) (-1640 (($) 7 T CONST)) (-4091 (($ $) 90 (|has| $ (-6 -4249)))) (-4082 (($ $) 100)) (-3917 (($ $) 78 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ |#1| $) 77 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4248)))) (-3073 ((|#1| $ (-523) |#1|) 53 (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) 51)) (-1894 (((-523) (-1 (-108) |#1|) $) 97) (((-523) |#1| $) 96 (|has| |#1| (-1016))) (((-523) |#1| $ (-523)) 95 (|has| |#1| (-1016)))) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-2348 (($ (-710) |#1|) 69)) (-1344 (((-108) $ (-710)) 9)) (-1798 (((-523) $) 43 (|has| (-523) (-786)))) (-3268 (($ $ $) 87 (|has| |#1| (-786)))) (-3123 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-786)))) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2133 (((-523) $) 44 (|has| (-523) (-786)))) (-2644 (($ $ $) 86 (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-3334 (($ |#1| $ (-523)) 60) (($ $ $ (-523)) 59)) (-2909 (((-589 (-523)) $) 46)) (-2290 (((-108) (-523) $) 47)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-3879 ((|#1| $) 42 (|has| (-523) (-786)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-2408 (($ $ |#1|) 41 (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-1410 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) 48)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ (-523) |#1|) 50) ((|#1| $ (-523)) 49) (($ $ (-1136 (-523))) 63)) (-3725 (($ $ (-523)) 62) (($ $ (-1136 (-523))) 61)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2580 (($ $ $ (-523)) 91 (|has| $ (-6 -4249)))) (-4124 (($ $) 13)) (-3077 (((-499) $) 79 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 70)) (-2785 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-589 $)) 65)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) 84 (|has| |#1| (-786)))) (-4061 (((-108) $ $) 83 (|has| |#1| (-786)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-4070 (((-108) $ $) 85 (|has| |#1| (-786)))) (-4052 (((-108) $ $) 82 (|has| |#1| (-786)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-349 |#1|) (-129) (-1123)) (T -349))
-((-3123 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-349 *3)) (-4 *3 (-1123)))) (-4082 (*1 *1 *1) (-12 (-4 *1 (-349 *2)) (-4 *2 (-1123)))) (-3400 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-349 *3)) (-4 *3 (-1123)))) (-4159 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *1 (-349 *4)) (-4 *4 (-1123)) (-5 *2 (-108)))) (-1894 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (-4 *1 (-349 *4)) (-4 *4 (-1123)) (-5 *2 (-523)))) (-1894 (*1 *2 *3 *1) (-12 (-4 *1 (-349 *3)) (-4 *3 (-1123)) (-4 *3 (-1016)) (-5 *2 (-523)))) (-1894 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-349 *3)) (-4 *3 (-1123)) (-4 *3 (-1016)))) (-3123 (*1 *1 *1 *1) (-12 (-4 *1 (-349 *2)) (-4 *2 (-1123)) (-4 *2 (-786)))) (-3400 (*1 *1 *1) (-12 (-4 *1 (-349 *2)) (-4 *2 (-1123)) (-4 *2 (-786)))) (-4159 (*1 *2 *1) (-12 (-4 *1 (-349 *3)) (-4 *3 (-1123)) (-4 *3 (-786)) (-5 *2 (-108)))) (-2580 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-523)) (|has| *1 (-6 -4249)) (-4 *1 (-349 *3)) (-4 *3 (-1123)))) (-4091 (*1 *1 *1) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-349 *2)) (-4 *2 (-1123)))) (-2361 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (|has| *1 (-6 -4249)) (-4 *1 (-349 *3)) (-4 *3 (-1123)))) (-2361 (*1 *1 *1) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-349 *2)) (-4 *2 (-1123)) (-4 *2 (-786)))))
-(-13 (-594 |t#1|) (-10 -8 (-6 -4248) (-15 -3123 ($ (-1 (-108) |t#1| |t#1|) $ $)) (-15 -4082 ($ $)) (-15 -3400 ($ (-1 (-108) |t#1| |t#1|) $)) (-15 -4159 ((-108) (-1 (-108) |t#1| |t#1|) $)) (-15 -1894 ((-523) (-1 (-108) |t#1|) $)) (IF (|has| |t#1| (-1016)) (PROGN (-15 -1894 ((-523) |t#1| $)) (-15 -1894 ((-523) |t#1| $ (-523)))) |%noBranch|) (IF (|has| |t#1| (-786)) (PROGN (-6 (-786)) (-15 -3123 ($ $ $)) (-15 -3400 ($ $)) (-15 -4159 ((-108) $))) |%noBranch|) (IF (|has| $ (-6 -4249)) (PROGN (-15 -2580 ($ $ $ (-523))) (-15 -4091 ($ $)) (-15 -2361 ($ (-1 (-108) |t#1| |t#1|) $)) (IF (|has| |t#1| (-786)) (-15 -2361 ($ $)) |%noBranch|)) |%noBranch|)))
-(((-33) . T) ((-97) -3255 (|has| |#1| (-1016)) (|has| |#1| (-786))) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-786)) (|has| |#1| (-563 (-794)))) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-263 #0=(-523) |#1|) . T) ((-265 #0# |#1|) . T) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-556 #0# |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-594 |#1|) . T) ((-786) |has| |#1| (-786)) ((-1016) -3255 (|has| |#1| (-1016)) (|has| |#1| (-786))) ((-1123) . T))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-1304 (((-589 |#1|) $) 32)) (-3944 (($ $ (-710)) 33)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3168 (((-1191 |#1| |#2|) (-1191 |#1| |#2|) $) 36)) (-2471 (($ $) 34)) (-2475 (((-1191 |#1| |#2|) (-1191 |#1| |#2|) $) 37)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-1349 (($ $ |#1| $) 31) (($ $ (-589 |#1|) (-589 $)) 30)) (-1487 (((-710) $) 38)) (-3985 (($ $ $) 29)) (-3976 (((-794) $) 11) (($ |#1|) 41) (((-1182 |#1| |#2|) $) 40) (((-1191 |#1| |#2|) $) 39)) (-2275 ((|#2| (-1191 |#1| |#2|) $) 42)) (-1428 (($) 18 T CONST)) (-4066 (($ (-614 |#1|)) 35)) (-4037 (((-108) $ $) 6)) (-4125 (($ $ |#2|) 28 (|has| |#2| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ |#2| $) 23) (($ $ |#2|) 26)))
-(((-350 |#1| |#2|) (-129) (-786) (-158)) (T -350))
-((-2275 (*1 *2 *3 *1) (-12 (-5 *3 (-1191 *4 *2)) (-4 *1 (-350 *4 *2)) (-4 *4 (-786)) (-4 *2 (-158)))) (-3976 (*1 *1 *2) (-12 (-4 *1 (-350 *2 *3)) (-4 *2 (-786)) (-4 *3 (-158)))) (-3976 (*1 *2 *1) (-12 (-4 *1 (-350 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158)) (-5 *2 (-1182 *3 *4)))) (-3976 (*1 *2 *1) (-12 (-4 *1 (-350 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158)) (-5 *2 (-1191 *3 *4)))) (-1487 (*1 *2 *1) (-12 (-4 *1 (-350 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158)) (-5 *2 (-710)))) (-2475 (*1 *2 *2 *1) (-12 (-5 *2 (-1191 *3 *4)) (-4 *1 (-350 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158)))) (-3168 (*1 *2 *2 *1) (-12 (-5 *2 (-1191 *3 *4)) (-4 *1 (-350 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158)))) (-4066 (*1 *1 *2) (-12 (-5 *2 (-614 *3)) (-4 *3 (-786)) (-4 *1 (-350 *3 *4)) (-4 *4 (-158)))) (-2471 (*1 *1 *1) (-12 (-4 *1 (-350 *2 *3)) (-4 *2 (-786)) (-4 *3 (-158)))) (-3944 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-350 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158)))) (-1304 (*1 *2 *1) (-12 (-4 *1 (-350 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158)) (-5 *2 (-589 *3)))) (-1349 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-350 *2 *3)) (-4 *2 (-786)) (-4 *3 (-158)))) (-1349 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 *4)) (-5 *3 (-589 *1)) (-4 *1 (-350 *4 *5)) (-4 *4 (-786)) (-4 *5 (-158)))))
-(-13 (-580 |t#2|) (-10 -8 (-15 -2275 (|t#2| (-1191 |t#1| |t#2|) $)) (-15 -3976 ($ |t#1|)) (-15 -3976 ((-1182 |t#1| |t#2|) $)) (-15 -3976 ((-1191 |t#1| |t#2|) $)) (-15 -1487 ((-710) $)) (-15 -2475 ((-1191 |t#1| |t#2|) (-1191 |t#1| |t#2|) $)) (-15 -3168 ((-1191 |t#1| |t#2|) (-1191 |t#1| |t#2|) $)) (-15 -4066 ($ (-614 |t#1|))) (-15 -2471 ($ $)) (-15 -3944 ($ $ (-710))) (-15 -1304 ((-589 |t#1|) $)) (-15 -1349 ($ $ |t#1| $)) (-15 -1349 ($ $ (-589 |t#1|) (-589 $)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#2| |#2|) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 |#2|) . T) ((-580 |#2|) . T) ((-657 |#2|) . T) ((-979 |#2|) . T) ((-1016) . T))
-((-2777 ((|#2| (-1 (-108) |#1| |#1|) |#2|) 24)) (-1950 ((|#2| (-1 (-108) |#1| |#1|) |#2|) 13)) (-2995 ((|#2| (-1 (-108) |#1| |#1|) |#2|) 22)))
-(((-351 |#1| |#2|) (-10 -7 (-15 -1950 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -2995 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -2777 (|#2| (-1 (-108) |#1| |#1|) |#2|))) (-1123) (-13 (-349 |#1|) (-10 -7 (-6 -4249)))) (T -351))
-((-2777 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1123)) (-5 *1 (-351 *4 *2)) (-4 *2 (-13 (-349 *4) (-10 -7 (-6 -4249)))))) (-2995 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1123)) (-5 *1 (-351 *4 *2)) (-4 *2 (-13 (-349 *4) (-10 -7 (-6 -4249)))))) (-1950 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1123)) (-5 *1 (-351 *4 *2)) (-4 *2 (-13 (-349 *4) (-10 -7 (-6 -4249)))))))
-(-10 -7 (-15 -1950 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -2995 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -2777 (|#2| (-1 (-108) |#1| |#1|) |#2|)))
-((-2203 (((-629 |#2|) (-629 $)) NIL) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) NIL) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 22) (((-629 (-523)) (-629 $)) 14)))
-(((-352 |#1| |#2|) (-10 -8 (-15 -2203 ((-629 (-523)) (-629 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-629 |#2|) (-629 |#1|)))) (-353 |#2|) (-973)) (T -352))
-NIL
-(-10 -8 (-15 -2203 ((-629 (-523)) (-629 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-629 |#2|) (-629 |#1|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-2203 (((-629 |#1|) (-629 $)) 36) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) 35) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 43 (|has| |#1| (-585 (-523)))) (((-629 (-523)) (-629 $)) 42 (|has| |#1| (-585 (-523))))) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11) (($ (-523)) 28)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-353 |#1|) (-129) (-973)) (T -353))
-NIL
-(-13 (-585 |t#1|) (-10 -7 (IF (|has| |t#1| (-585 (-523))) (-6 (-585 (-523))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 $) . T) ((-585 (-523)) |has| |#1| (-585 (-523))) ((-585 |#1|) . T) ((-666) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3495 (((-589 (-271 (-883 (-155 |#1|)))) (-271 (-383 (-883 (-155 (-523))))) |#1|) 51) (((-589 (-271 (-883 (-155 |#1|)))) (-383 (-883 (-155 (-523)))) |#1|) 50) (((-589 (-589 (-271 (-883 (-155 |#1|))))) (-589 (-271 (-383 (-883 (-155 (-523)))))) |#1|) 47) (((-589 (-589 (-271 (-883 (-155 |#1|))))) (-589 (-383 (-883 (-155 (-523))))) |#1|) 41)) (-2715 (((-589 (-589 (-155 |#1|))) (-589 (-383 (-883 (-155 (-523))))) (-589 (-1087)) |#1|) 30) (((-589 (-155 |#1|)) (-383 (-883 (-155 (-523)))) |#1|) 18)))
-(((-354 |#1|) (-10 -7 (-15 -3495 ((-589 (-589 (-271 (-883 (-155 |#1|))))) (-589 (-383 (-883 (-155 (-523))))) |#1|)) (-15 -3495 ((-589 (-589 (-271 (-883 (-155 |#1|))))) (-589 (-271 (-383 (-883 (-155 (-523)))))) |#1|)) (-15 -3495 ((-589 (-271 (-883 (-155 |#1|)))) (-383 (-883 (-155 (-523)))) |#1|)) (-15 -3495 ((-589 (-271 (-883 (-155 |#1|)))) (-271 (-383 (-883 (-155 (-523))))) |#1|)) (-15 -2715 ((-589 (-155 |#1|)) (-383 (-883 (-155 (-523)))) |#1|)) (-15 -2715 ((-589 (-589 (-155 |#1|))) (-589 (-383 (-883 (-155 (-523))))) (-589 (-1087)) |#1|))) (-13 (-339) (-784))) (T -354))
-((-2715 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-589 (-383 (-883 (-155 (-523)))))) (-5 *4 (-589 (-1087))) (-5 *2 (-589 (-589 (-155 *5)))) (-5 *1 (-354 *5)) (-4 *5 (-13 (-339) (-784))))) (-2715 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-883 (-155 (-523))))) (-5 *2 (-589 (-155 *4))) (-5 *1 (-354 *4)) (-4 *4 (-13 (-339) (-784))))) (-3495 (*1 *2 *3 *4) (-12 (-5 *3 (-271 (-383 (-883 (-155 (-523)))))) (-5 *2 (-589 (-271 (-883 (-155 *4))))) (-5 *1 (-354 *4)) (-4 *4 (-13 (-339) (-784))))) (-3495 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-883 (-155 (-523))))) (-5 *2 (-589 (-271 (-883 (-155 *4))))) (-5 *1 (-354 *4)) (-4 *4 (-13 (-339) (-784))))) (-3495 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-271 (-383 (-883 (-155 (-523))))))) (-5 *2 (-589 (-589 (-271 (-883 (-155 *4)))))) (-5 *1 (-354 *4)) (-4 *4 (-13 (-339) (-784))))) (-3495 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-383 (-883 (-155 (-523)))))) (-5 *2 (-589 (-589 (-271 (-883 (-155 *4)))))) (-5 *1 (-354 *4)) (-4 *4 (-13 (-339) (-784))))))
-(-10 -7 (-15 -3495 ((-589 (-589 (-271 (-883 (-155 |#1|))))) (-589 (-383 (-883 (-155 (-523))))) |#1|)) (-15 -3495 ((-589 (-589 (-271 (-883 (-155 |#1|))))) (-589 (-271 (-383 (-883 (-155 (-523)))))) |#1|)) (-15 -3495 ((-589 (-271 (-883 (-155 |#1|)))) (-383 (-883 (-155 (-523)))) |#1|)) (-15 -3495 ((-589 (-271 (-883 (-155 |#1|)))) (-271 (-383 (-883 (-155 (-523))))) |#1|)) (-15 -2715 ((-589 (-155 |#1|)) (-383 (-883 (-155 (-523)))) |#1|)) (-15 -2715 ((-589 (-589 (-155 |#1|))) (-589 (-383 (-883 (-155 (-523))))) (-589 (-1087)) |#1|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 33)) (-3964 (((-523) $) 55)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-1756 (($ $) 110)) (-3695 (($ $) 82)) (-2608 (($ $) 71)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3584 (($ $) 44)) (-3684 (((-108) $ $) NIL)) (-3669 (($ $) 80)) (-2588 (($ $) 69)) (-2035 (((-523) $) 64)) (-3565 (($ $ (-523)) 62)) (-3717 (($ $) NIL)) (-2629 (($ $) NIL)) (-1640 (($) NIL T CONST)) (-3710 (($ $) 112)) (-2898 (((-3 (-523) "failed") $) 189) (((-3 (-383 (-523)) "failed") $) 185)) (-1996 (((-523) $) 187) (((-383 (-523)) $) 183)) (-2501 (($ $ $) NIL)) (-1391 (((-523) $ $) 102)) (-4211 (((-3 $ "failed") $) 114)) (-1328 (((-383 (-523)) $ (-710)) 190) (((-383 (-523)) $ (-710) (-710)) 182)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-2878 (((-852)) 73) (((-852) (-852)) 98 (|has| $ (-6 -4239)))) (-3702 (((-108) $) 106)) (-2188 (($) 40)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL)) (-1720 (((-1174) (-710)) 152)) (-3407 (((-1174)) 157) (((-1174) (-710)) 158)) (-2344 (((-1174)) 159) (((-1174) (-710)) 160)) (-2423 (((-1174)) 155) (((-1174) (-710)) 156)) (-1500 (((-523) $) 58)) (-3482 (((-108) $) 104)) (-1324 (($ $ (-523)) NIL)) (-4206 (($ $) 48)) (-2765 (($ $) NIL)) (-4050 (((-108) $) 35)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3268 (($ $ $) NIL) (($) NIL (-12 (-2575 (|has| $ (-6 -4231))) (-2575 (|has| $ (-6 -4239)))))) (-2644 (($ $ $) NIL) (($) 99 (-12 (-2575 (|has| $ (-6 -4231))) (-2575 (|has| $ (-6 -4239)))))) (-4068 (((-523) $) 17)) (-3503 (($) 87) (($ $) 92)) (-3847 (($) 91) (($ $) 93)) (-2062 (($ $) 83)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 116)) (-2026 (((-852) (-523)) 43 (|has| $ (-6 -4239)))) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3934 (($ $) 53)) (-1250 (($ $) 109)) (-1565 (($ (-523) (-523)) 107) (($ (-523) (-523) (-852)) 108)) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3262 (((-523) $) 19)) (-1320 (($) 94)) (-1847 (($ $) 79)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2080 (((-852)) 100) (((-852) (-852)) 101 (|has| $ (-6 -4239)))) (-4024 (($ $ (-710)) NIL) (($ $) 115)) (-3624 (((-852) (-523)) 47 (|has| $ (-6 -4239)))) (-3730 (($ $) NIL)) (-2641 (($ $) NIL)) (-3707 (($ $) NIL)) (-2617 (($ $) NIL)) (-3683 (($ $) 81)) (-2598 (($ $) 70)) (-3077 (((-355) $) 175) (((-203) $) 177) (((-823 (-355)) $) NIL) (((-1070) $) 162) (((-499) $) 173) (($ (-203)) 181)) (-3976 (((-794) $) 164) (($ (-523)) 186) (($ $) NIL) (($ (-383 (-523))) NIL) (($ (-523)) 186) (($ (-383 (-523))) NIL) (((-203) $) 178)) (-1698 (((-710)) NIL)) (-1516 (($ $) 111)) (-2954 (((-852)) 54) (((-852) (-852)) 66 (|has| $ (-6 -4239)))) (-3912 (((-852)) 103)) (-3768 (($ $) 86)) (-2680 (($ $) 46) (($ $ $) 52)) (-3842 (((-108) $ $) NIL)) (-3743 (($ $) 84)) (-2655 (($ $) 37)) (-3793 (($ $) NIL)) (-3645 (($ $) NIL)) (-3135 (($ $) NIL)) (-3657 (($ $) NIL)) (-3780 (($ $) NIL)) (-3632 (($ $) NIL)) (-3756 (($ $) 85)) (-2667 (($ $) 49)) (-3984 (($ $) 51)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) 34 T CONST)) (-1440 (($) 38 T CONST)) (-3342 (((-1070) $) 27) (((-1070) $ (-108)) 29) (((-1174) (-761) $) 30) (((-1174) (-761) $ (-108)) 31)) (-1943 (($ $ (-710)) NIL) (($ $) NIL)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 39)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 42)) (-4125 (($ $ $) 45) (($ $ (-523)) 41)) (-4115 (($ $) 36) (($ $ $) 50)) (-4103 (($ $ $) 61)) (** (($ $ (-852)) 67) (($ $ (-710)) NIL) (($ $ (-523)) 88) (($ $ (-383 (-523))) 125) (($ $ $) 117)) (* (($ (-852) $) 65) (($ (-710) $) NIL) (($ (-523) $) 68) (($ $ $) 60) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL)))
-(((-355) (-13 (-380) (-211) (-564 (-1070)) (-767) (-563 (-203)) (-1109) (-564 (-499)) (-10 -8 (-15 -4125 ($ $ (-523))) (-15 ** ($ $ $)) (-15 -4206 ($ $)) (-15 -1391 ((-523) $ $)) (-15 -3565 ($ $ (-523))) (-15 -1328 ((-383 (-523)) $ (-710))) (-15 -1328 ((-383 (-523)) $ (-710) (-710))) (-15 -3503 ($)) (-15 -3847 ($)) (-15 -1320 ($)) (-15 -2680 ($ $ $)) (-15 -3503 ($ $)) (-15 -3847 ($ $)) (-15 -3077 ($ (-203))) (-15 -2344 ((-1174))) (-15 -2344 ((-1174) (-710))) (-15 -2423 ((-1174))) (-15 -2423 ((-1174) (-710))) (-15 -3407 ((-1174))) (-15 -3407 ((-1174) (-710))) (-15 -1720 ((-1174) (-710))) (-6 -4239) (-6 -4231)))) (T -355))
-((** (*1 *1 *1 *1) (-5 *1 (-355))) (-4125 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-355)))) (-4206 (*1 *1 *1) (-5 *1 (-355))) (-1391 (*1 *2 *1 *1) (-12 (-5 *2 (-523)) (-5 *1 (-355)))) (-3565 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-355)))) (-1328 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-5 *2 (-383 (-523))) (-5 *1 (-355)))) (-1328 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-710)) (-5 *2 (-383 (-523))) (-5 *1 (-355)))) (-3503 (*1 *1) (-5 *1 (-355))) (-3847 (*1 *1) (-5 *1 (-355))) (-1320 (*1 *1) (-5 *1 (-355))) (-2680 (*1 *1 *1 *1) (-5 *1 (-355))) (-3503 (*1 *1 *1) (-5 *1 (-355))) (-3847 (*1 *1 *1) (-5 *1 (-355))) (-3077 (*1 *1 *2) (-12 (-5 *2 (-203)) (-5 *1 (-355)))) (-2344 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-355)))) (-2344 (*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1174)) (-5 *1 (-355)))) (-2423 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-355)))) (-2423 (*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1174)) (-5 *1 (-355)))) (-3407 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-355)))) (-3407 (*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1174)) (-5 *1 (-355)))) (-1720 (*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1174)) (-5 *1 (-355)))))
-(-13 (-380) (-211) (-564 (-1070)) (-767) (-563 (-203)) (-1109) (-564 (-499)) (-10 -8 (-15 -4125 ($ $ (-523))) (-15 ** ($ $ $)) (-15 -4206 ($ $)) (-15 -1391 ((-523) $ $)) (-15 -3565 ($ $ (-523))) (-15 -1328 ((-383 (-523)) $ (-710))) (-15 -1328 ((-383 (-523)) $ (-710) (-710))) (-15 -3503 ($)) (-15 -3847 ($)) (-15 -1320 ($)) (-15 -2680 ($ $ $)) (-15 -3503 ($ $)) (-15 -3847 ($ $)) (-15 -3077 ($ (-203))) (-15 -2344 ((-1174))) (-15 -2344 ((-1174) (-710))) (-15 -2423 ((-1174))) (-15 -2423 ((-1174) (-710))) (-15 -3407 ((-1174))) (-15 -3407 ((-1174) (-710))) (-15 -1720 ((-1174) (-710))) (-6 -4239) (-6 -4231)))
-((-3911 (((-589 (-271 (-883 |#1|))) (-271 (-383 (-883 (-523)))) |#1|) 46) (((-589 (-271 (-883 |#1|))) (-383 (-883 (-523))) |#1|) 45) (((-589 (-589 (-271 (-883 |#1|)))) (-589 (-271 (-383 (-883 (-523))))) |#1|) 42) (((-589 (-589 (-271 (-883 |#1|)))) (-589 (-383 (-883 (-523)))) |#1|) 36)) (-3294 (((-589 |#1|) (-383 (-883 (-523))) |#1|) 20) (((-589 (-589 |#1|)) (-589 (-383 (-883 (-523)))) (-589 (-1087)) |#1|) 30)))
-(((-356 |#1|) (-10 -7 (-15 -3911 ((-589 (-589 (-271 (-883 |#1|)))) (-589 (-383 (-883 (-523)))) |#1|)) (-15 -3911 ((-589 (-589 (-271 (-883 |#1|)))) (-589 (-271 (-383 (-883 (-523))))) |#1|)) (-15 -3911 ((-589 (-271 (-883 |#1|))) (-383 (-883 (-523))) |#1|)) (-15 -3911 ((-589 (-271 (-883 |#1|))) (-271 (-383 (-883 (-523)))) |#1|)) (-15 -3294 ((-589 (-589 |#1|)) (-589 (-383 (-883 (-523)))) (-589 (-1087)) |#1|)) (-15 -3294 ((-589 |#1|) (-383 (-883 (-523))) |#1|))) (-13 (-784) (-339))) (T -356))
-((-3294 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-883 (-523)))) (-5 *2 (-589 *4)) (-5 *1 (-356 *4)) (-4 *4 (-13 (-784) (-339))))) (-3294 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-589 (-383 (-883 (-523))))) (-5 *4 (-589 (-1087))) (-5 *2 (-589 (-589 *5))) (-5 *1 (-356 *5)) (-4 *5 (-13 (-784) (-339))))) (-3911 (*1 *2 *3 *4) (-12 (-5 *3 (-271 (-383 (-883 (-523))))) (-5 *2 (-589 (-271 (-883 *4)))) (-5 *1 (-356 *4)) (-4 *4 (-13 (-784) (-339))))) (-3911 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-883 (-523)))) (-5 *2 (-589 (-271 (-883 *4)))) (-5 *1 (-356 *4)) (-4 *4 (-13 (-784) (-339))))) (-3911 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-271 (-383 (-883 (-523)))))) (-5 *2 (-589 (-589 (-271 (-883 *4))))) (-5 *1 (-356 *4)) (-4 *4 (-13 (-784) (-339))))) (-3911 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-383 (-883 (-523))))) (-5 *2 (-589 (-589 (-271 (-883 *4))))) (-5 *1 (-356 *4)) (-4 *4 (-13 (-784) (-339))))))
-(-10 -7 (-15 -3911 ((-589 (-589 (-271 (-883 |#1|)))) (-589 (-383 (-883 (-523)))) |#1|)) (-15 -3911 ((-589 (-589 (-271 (-883 |#1|)))) (-589 (-271 (-383 (-883 (-523))))) |#1|)) (-15 -3911 ((-589 (-271 (-883 |#1|))) (-383 (-883 (-523))) |#1|)) (-15 -3911 ((-589 (-271 (-883 |#1|))) (-271 (-383 (-883 (-523)))) |#1|)) (-15 -3294 ((-589 (-589 |#1|)) (-589 (-383 (-883 (-523)))) (-589 (-1087)) |#1|)) (-15 -3294 ((-589 |#1|) (-383 (-883 (-523))) |#1|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#2| "failed") $) 26)) (-1996 ((|#2| $) 28)) (-3142 (($ $) NIL)) (-3288 (((-710) $) 10)) (-2738 (((-589 $) $) 20)) (-4060 (((-108) $) NIL)) (-1511 (($ |#2| |#1|) 18)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-2859 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 14)) (-3107 ((|#2| $) 15)) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 45) (($ |#2|) 27)) (-1639 (((-589 |#1|) $) 17)) (-1234 ((|#1| $ |#2|) 47)) (-1428 (($) 29 T CONST)) (-1776 (((-589 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 13)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ |#1| $) 32) (($ $ |#1|) 33) (($ |#1| |#2|) 35) (($ |#2| |#1|) 36)))
-(((-357 |#1| |#2|) (-13 (-358 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|)))) (-973) (-786)) (T -357))
-((* (*1 *1 *2 *3) (-12 (-5 *1 (-357 *3 *2)) (-4 *3 (-973)) (-4 *2 (-786)))))
-(-13 (-358 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-2898 (((-3 |#2| "failed") $) 44)) (-1996 ((|#2| $) 43)) (-3142 (($ $) 30)) (-3288 (((-710) $) 34)) (-2738 (((-589 $) $) 35)) (-4060 (((-108) $) 38)) (-1511 (($ |#2| |#1|) 39)) (-3015 (($ (-1 |#1| |#1|) $) 40)) (-2859 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 31)) (-3107 ((|#2| $) 33)) (-3119 ((|#1| $) 32)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11) (($ |#2|) 45)) (-1639 (((-589 |#1|) $) 36)) (-1234 ((|#1| $ |#2|) 41)) (-1428 (($) 18 T CONST)) (-1776 (((-589 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 37)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26) (($ |#1| |#2|) 42)))
-(((-358 |#1| |#2|) (-129) (-973) (-1016)) (T -358))
-((* (*1 *1 *2 *3) (-12 (-4 *1 (-358 *2 *3)) (-4 *2 (-973)) (-4 *3 (-1016)))) (-1234 (*1 *2 *1 *3) (-12 (-4 *1 (-358 *2 *3)) (-4 *3 (-1016)) (-4 *2 (-973)))) (-3015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-358 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1016)))) (-1511 (*1 *1 *2 *3) (-12 (-4 *1 (-358 *3 *2)) (-4 *3 (-973)) (-4 *2 (-1016)))) (-4060 (*1 *2 *1) (-12 (-4 *1 (-358 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1016)) (-5 *2 (-108)))) (-1776 (*1 *2 *1) (-12 (-4 *1 (-358 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1016)) (-5 *2 (-589 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-1639 (*1 *2 *1) (-12 (-4 *1 (-358 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1016)) (-5 *2 (-589 *3)))) (-2738 (*1 *2 *1) (-12 (-4 *3 (-973)) (-4 *4 (-1016)) (-5 *2 (-589 *1)) (-4 *1 (-358 *3 *4)))) (-3288 (*1 *2 *1) (-12 (-4 *1 (-358 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1016)) (-5 *2 (-710)))) (-3107 (*1 *2 *1) (-12 (-4 *1 (-358 *3 *2)) (-4 *3 (-973)) (-4 *2 (-1016)))) (-3119 (*1 *2 *1) (-12 (-4 *1 (-358 *2 *3)) (-4 *3 (-1016)) (-4 *2 (-973)))) (-2859 (*1 *2 *1) (-12 (-4 *1 (-358 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1016)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-3142 (*1 *1 *1) (-12 (-4 *1 (-358 *2 *3)) (-4 *2 (-973)) (-4 *3 (-1016)))))
-(-13 (-107 |t#1| |t#1|) (-964 |t#2|) (-10 -8 (-15 * ($ |t#1| |t#2|)) (-15 -1234 (|t#1| $ |t#2|)) (-15 -3015 ($ (-1 |t#1| |t#1|) $)) (-15 -1511 ($ |t#2| |t#1|)) (-15 -4060 ((-108) $)) (-15 -1776 ((-589 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -1639 ((-589 |t#1|) $)) (-15 -2738 ((-589 $) $)) (-15 -3288 ((-710) $)) (-15 -3107 (|t#2| $)) (-15 -3119 (|t#1| $)) (-15 -2859 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -3142 ($ $)) (IF (|has| |t#1| (-158)) (-6 (-657 |t#1|)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 |#1|) . T) ((-657 |#1|) |has| |#1| (-158)) ((-964 |#2|) . T) ((-979 |#1|) . T) ((-1016) . T))
-((-2034 (((-1174) $) 7)) (-3976 (((-794) $) 8) (($ (-629 (-638))) 14) (($ (-589 (-306))) 13) (($ (-306)) 12) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 11)))
-(((-359) (-129)) (T -359))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-629 (-638))) (-4 *1 (-359)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-589 (-306))) (-4 *1 (-359)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-306)) (-4 *1 (-359)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) (-4 *1 (-359)))))
-(-13 (-371) (-10 -8 (-15 -3976 ($ (-629 (-638)))) (-15 -3976 ($ (-589 (-306)))) (-15 -3976 ($ (-306))) (-15 -3976 ($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))))))
-(((-563 (-794)) . T) ((-371) . T) ((-1123) . T))
-((-2898 (((-3 $ "failed") (-629 (-292 (-355)))) 21) (((-3 $ "failed") (-629 (-292 (-523)))) 19) (((-3 $ "failed") (-629 (-883 (-355)))) 17) (((-3 $ "failed") (-629 (-883 (-523)))) 15) (((-3 $ "failed") (-629 (-383 (-883 (-355))))) 13) (((-3 $ "failed") (-629 (-383 (-883 (-523))))) 11)) (-1996 (($ (-629 (-292 (-355)))) 22) (($ (-629 (-292 (-523)))) 20) (($ (-629 (-883 (-355)))) 18) (($ (-629 (-883 (-523)))) 16) (($ (-629 (-383 (-883 (-355))))) 14) (($ (-629 (-383 (-883 (-523))))) 12)) (-2034 (((-1174) $) 7)) (-3976 (((-794) $) 8) (($ (-589 (-306))) 25) (($ (-306)) 24) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 23)))
-(((-360) (-129)) (T -360))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-589 (-306))) (-4 *1 (-360)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-306)) (-4 *1 (-360)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) (-4 *1 (-360)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-629 (-292 (-355)))) (-4 *1 (-360)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-629 (-292 (-355)))) (-4 *1 (-360)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-629 (-292 (-523)))) (-4 *1 (-360)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-629 (-292 (-523)))) (-4 *1 (-360)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-629 (-883 (-355)))) (-4 *1 (-360)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-629 (-883 (-355)))) (-4 *1 (-360)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-629 (-883 (-523)))) (-4 *1 (-360)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-629 (-883 (-523)))) (-4 *1 (-360)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-629 (-383 (-883 (-355))))) (-4 *1 (-360)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-629 (-383 (-883 (-355))))) (-4 *1 (-360)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-629 (-383 (-883 (-523))))) (-4 *1 (-360)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-629 (-383 (-883 (-523))))) (-4 *1 (-360)))))
-(-13 (-371) (-10 -8 (-15 -3976 ($ (-589 (-306)))) (-15 -3976 ($ (-306))) (-15 -3976 ($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306)))))) (-15 -1996 ($ (-629 (-292 (-355))))) (-15 -2898 ((-3 $ "failed") (-629 (-292 (-355))))) (-15 -1996 ($ (-629 (-292 (-523))))) (-15 -2898 ((-3 $ "failed") (-629 (-292 (-523))))) (-15 -1996 ($ (-629 (-883 (-355))))) (-15 -2898 ((-3 $ "failed") (-629 (-883 (-355))))) (-15 -1996 ($ (-629 (-883 (-523))))) (-15 -2898 ((-3 $ "failed") (-629 (-883 (-523))))) (-15 -1996 ($ (-629 (-383 (-883 (-355)))))) (-15 -2898 ((-3 $ "failed") (-629 (-383 (-883 (-355)))))) (-15 -1996 ($ (-629 (-383 (-883 (-523)))))) (-15 -2898 ((-3 $ "failed") (-629 (-383 (-883 (-523))))))))
-(((-563 (-794)) . T) ((-371) . T) ((-1123) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-3142 (($ $) NIL)) (-3694 (($ |#1| |#2|) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-2022 ((|#2| $) NIL)) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 28)) (-1428 (($) 12 T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ |#1| $) 16) (($ $ |#1|) 19)))
-(((-361 |#1| |#2|) (-13 (-107 |#1| |#1|) (-479 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-158)) (-6 (-657 |#1|)) |%noBranch|))) (-973) (-786)) (T -361))
-NIL
-(-13 (-107 |#1| |#1|) (-479 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-158)) (-6 (-657 |#1|)) |%noBranch|)))
-((-3260 (((-108) $ $) NIL)) (-3843 (((-710) $) 59)) (-1640 (($) NIL T CONST)) (-3168 (((-3 $ "failed") $ $) 61)) (-2898 (((-3 |#1| "failed") $) NIL)) (-1996 ((|#1| $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2893 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 53)) (-3482 (((-108) $) 15)) (-3019 ((|#1| $ (-523)) NIL)) (-3831 (((-710) $ (-523)) NIL)) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-4119 (($ (-1 |#1| |#1|) $) 38)) (-3332 (($ (-1 (-710) (-710)) $) 35)) (-2475 (((-3 $ "failed") $ $) 50)) (-3841 (((-1070) $) NIL)) (-2802 (($ $ $) 26)) (-1231 (($ $ $) 24)) (-2435 (((-1034) $) NIL)) (-3286 (((-589 (-2 (|:| |gen| |#1|) (|:| -1847 (-710)))) $) 32)) (-1227 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 56)) (-3976 (((-794) $) 22) (($ |#1|) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1440 (($) 9 T CONST)) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) 41)) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) 63 (|has| |#1| (-786)))) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ |#1| (-710)) 40)) (* (($ $ $) 47) (($ |#1| $) 30) (($ $ |#1|) 28)))
-(((-362 |#1|) (-13 (-666) (-964 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-710))) (-15 -1231 ($ $ $)) (-15 -2802 ($ $ $)) (-15 -2475 ((-3 $ "failed") $ $)) (-15 -3168 ((-3 $ "failed") $ $)) (-15 -1227 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2893 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3843 ((-710) $)) (-15 -3286 ((-589 (-2 (|:| |gen| |#1|) (|:| -1847 (-710)))) $)) (-15 -3831 ((-710) $ (-523))) (-15 -3019 (|#1| $ (-523))) (-15 -3332 ($ (-1 (-710) (-710)) $)) (-15 -4119 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-786)) (-6 (-786)) |%noBranch|))) (-1016)) (T -362))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-362 *2)) (-4 *2 (-1016)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-362 *2)) (-4 *2 (-1016)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-710)) (-5 *1 (-362 *2)) (-4 *2 (-1016)))) (-1231 (*1 *1 *1 *1) (-12 (-5 *1 (-362 *2)) (-4 *2 (-1016)))) (-2802 (*1 *1 *1 *1) (-12 (-5 *1 (-362 *2)) (-4 *2 (-1016)))) (-2475 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-362 *2)) (-4 *2 (-1016)))) (-3168 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-362 *2)) (-4 *2 (-1016)))) (-1227 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-362 *3)) (|:| |rm| (-362 *3)))) (-5 *1 (-362 *3)) (-4 *3 (-1016)))) (-2893 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-362 *3)) (|:| |mm| (-362 *3)) (|:| |rm| (-362 *3)))) (-5 *1 (-362 *3)) (-4 *3 (-1016)))) (-3843 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-362 *3)) (-4 *3 (-1016)))) (-3286 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| |gen| *3) (|:| -1847 (-710))))) (-5 *1 (-362 *3)) (-4 *3 (-1016)))) (-3831 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *2 (-710)) (-5 *1 (-362 *4)) (-4 *4 (-1016)))) (-3019 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *1 (-362 *2)) (-4 *2 (-1016)))) (-3332 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-710) (-710))) (-5 *1 (-362 *3)) (-4 *3 (-1016)))) (-4119 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1016)) (-5 *1 (-362 *3)))))
-(-13 (-666) (-964 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-710))) (-15 -1231 ($ $ $)) (-15 -2802 ($ $ $)) (-15 -2475 ((-3 $ "failed") $ $)) (-15 -3168 ((-3 $ "failed") $ $)) (-15 -1227 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2893 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3843 ((-710) $)) (-15 -3286 ((-589 (-2 (|:| |gen| |#1|) (|:| -1847 (-710)))) $)) (-15 -3831 ((-710) $ (-523))) (-15 -3019 (|#1| $ (-523))) (-15 -3332 ($ (-1 (-710) (-710)) $)) (-15 -4119 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-786)) (-6 (-786)) |%noBranch|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-2898 (((-3 (-523) "failed") $) 47)) (-1996 (((-523) $) 46)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3268 (($ $ $) 54)) (-2644 (($ $ $) 53)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2469 (((-3 $ "failed") $ $) 42)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43) (($ (-523)) 48)) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 39)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4078 (((-108) $ $) 51)) (-4061 (((-108) $ $) 50)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 52)) (-4052 (((-108) $ $) 49)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-363) (-129)) (T -363))
-NIL
-(-13 (-515) (-786) (-964 (-523)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-563 (-794)) . T) ((-158) . T) ((-267) . T) ((-515) . T) ((-591 $) . T) ((-657 $) . T) ((-666) . T) ((-786) . T) ((-964 (-523)) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-4205 (((-108) $) 20)) (-1394 (((-108) $) 19)) (-2348 (($ (-1070) (-1070) (-1070)) 21)) (-1522 (((-1070) $) 16)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2427 (($ (-1070) (-1070) (-1070)) 14)) (-1704 (((-1070) $) 17)) (-3150 (((-108) $) 18)) (-2162 (((-1070) $) 15)) (-3976 (((-794) $) 12) (($ (-1070)) 13) (((-1070) $) 9)) (-4037 (((-108) $ $) 7)))
-(((-364) (-365)) (T -364))
-NIL
-(-365)
-((-3260 (((-108) $ $) 7)) (-4205 (((-108) $) 14)) (-1394 (((-108) $) 15)) (-2348 (($ (-1070) (-1070) (-1070)) 13)) (-1522 (((-1070) $) 18)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2427 (($ (-1070) (-1070) (-1070)) 20)) (-1704 (((-1070) $) 17)) (-3150 (((-108) $) 16)) (-2162 (((-1070) $) 19)) (-3976 (((-794) $) 11) (($ (-1070)) 22) (((-1070) $) 21)) (-4037 (((-108) $ $) 6)))
-(((-365) (-129)) (T -365))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1070)) (-4 *1 (-365)))) (-3976 (*1 *2 *1) (-12 (-4 *1 (-365)) (-5 *2 (-1070)))) (-2427 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1070)) (-4 *1 (-365)))) (-2162 (*1 *2 *1) (-12 (-4 *1 (-365)) (-5 *2 (-1070)))) (-1522 (*1 *2 *1) (-12 (-4 *1 (-365)) (-5 *2 (-1070)))) (-1704 (*1 *2 *1) (-12 (-4 *1 (-365)) (-5 *2 (-1070)))) (-3150 (*1 *2 *1) (-12 (-4 *1 (-365)) (-5 *2 (-108)))) (-1394 (*1 *2 *1) (-12 (-4 *1 (-365)) (-5 *2 (-108)))) (-4205 (*1 *2 *1) (-12 (-4 *1 (-365)) (-5 *2 (-108)))) (-2348 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1070)) (-4 *1 (-365)))))
-(-13 (-1016) (-10 -8 (-15 -3976 ($ (-1070))) (-15 -3976 ((-1070) $)) (-15 -2427 ($ (-1070) (-1070) (-1070))) (-15 -2162 ((-1070) $)) (-15 -1522 ((-1070) $)) (-15 -1704 ((-1070) $)) (-15 -3150 ((-108) $)) (-15 -1394 ((-108) $)) (-15 -4205 ((-108) $)) (-15 -2348 ($ (-1070) (-1070) (-1070)))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2824 (((-794) $) 50)) (-1640 (($) NIL T CONST)) (-2966 (($ $ (-852)) NIL)) (-1935 (($ $ (-852)) NIL)) (-2165 (($ $ (-852)) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-4102 (($ (-710)) 26)) (-4012 (((-710)) 17)) (-3674 (((-794) $) 52)) (-2306 (($ $ $) NIL)) (-3976 (((-794) $) NIL)) (-3377 (($ $ $ $) NIL)) (-1952 (($ $ $) NIL)) (-1428 (($) 20 T CONST)) (-4037 (((-108) $ $) 28)) (-4115 (($ $) 34) (($ $ $) 36)) (-4103 (($ $ $) 37)) (** (($ $ (-852)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 38) (($ $ |#3|) NIL) (($ |#3| $) 33)))
-(((-366 |#1| |#2| |#3|) (-13 (-684 |#3|) (-10 -8 (-15 -4012 ((-710))) (-15 -3674 ((-794) $)) (-15 -2824 ((-794) $)) (-15 -4102 ($ (-710))))) (-710) (-710) (-158)) (T -366))
-((-4012 (*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-366 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-158)))) (-3674 (*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-366 *3 *4 *5)) (-14 *3 (-710)) (-14 *4 (-710)) (-4 *5 (-158)))) (-2824 (*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-366 *3 *4 *5)) (-14 *3 (-710)) (-14 *4 (-710)) (-4 *5 (-158)))) (-4102 (*1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-366 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-158)))))
-(-13 (-684 |#3|) (-10 -8 (-15 -4012 ((-710))) (-15 -3674 ((-794) $)) (-15 -2824 ((-794) $)) (-15 -4102 ($ (-710)))))
-((-2779 (((-1070)) 10)) (-2544 (((-1059 (-1070))) 28)) (-2002 (((-1174) (-1070)) 25) (((-1174) (-364)) 24)) (-2018 (((-1174)) 26)) (-1800 (((-1059 (-1070))) 27)))
-(((-367) (-10 -7 (-15 -1800 ((-1059 (-1070)))) (-15 -2544 ((-1059 (-1070)))) (-15 -2018 ((-1174))) (-15 -2002 ((-1174) (-364))) (-15 -2002 ((-1174) (-1070))) (-15 -2779 ((-1070))))) (T -367))
-((-2779 (*1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-367)))) (-2002 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-367)))) (-2002 (*1 *2 *3) (-12 (-5 *3 (-364)) (-5 *2 (-1174)) (-5 *1 (-367)))) (-2018 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-367)))) (-2544 (*1 *2) (-12 (-5 *2 (-1059 (-1070))) (-5 *1 (-367)))) (-1800 (*1 *2) (-12 (-5 *2 (-1059 (-1070))) (-5 *1 (-367)))))
-(-10 -7 (-15 -1800 ((-1059 (-1070)))) (-15 -2544 ((-1059 (-1070)))) (-15 -2018 ((-1174))) (-15 -2002 ((-1174) (-364))) (-15 -2002 ((-1174) (-1070))) (-15 -2779 ((-1070))))
-((-1500 (((-710) (-312 |#1| |#2| |#3| |#4|)) 16)))
-(((-368 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1500 ((-710) (-312 |#1| |#2| |#3| |#4|)))) (-13 (-344) (-339)) (-1145 |#1|) (-1145 (-383 |#2|)) (-318 |#1| |#2| |#3|)) (T -368))
-((-1500 (*1 *2 *3) (-12 (-5 *3 (-312 *4 *5 *6 *7)) (-4 *4 (-13 (-344) (-339))) (-4 *5 (-1145 *4)) (-4 *6 (-1145 (-383 *5))) (-4 *7 (-318 *4 *5 *6)) (-5 *2 (-710)) (-5 *1 (-368 *4 *5 *6 *7)))))
-(-10 -7 (-15 -1500 ((-710) (-312 |#1| |#2| |#3| |#4|))))
-((-3976 (((-370) |#1|) 11)))
-(((-369 |#1|) (-10 -7 (-15 -3976 ((-370) |#1|))) (-1016)) (T -369))
-((-3976 (*1 *2 *3) (-12 (-5 *2 (-370)) (-5 *1 (-369 *3)) (-4 *3 (-1016)))))
-(-10 -7 (-15 -3976 ((-370) |#1|)))
-((-3260 (((-108) $ $) NIL)) (-3520 (((-589 (-1070)) $ (-589 (-1070))) 38)) (-1417 (((-589 (-1070)) $ (-589 (-1070))) 39)) (-2442 (((-589 (-1070)) $ (-589 (-1070))) 40)) (-2120 (((-589 (-1070)) $) 35)) (-2348 (($) 23)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3607 (((-589 (-1070)) $) 36)) (-3967 (((-589 (-1070)) $) 37)) (-3942 (((-1174) $ (-523)) 33) (((-1174) $) 34)) (-3077 (($ (-794) (-523)) 30)) (-3976 (((-794) $) 42) (($ (-794)) 25)) (-4037 (((-108) $ $) NIL)))
-(((-370) (-13 (-1016) (-10 -8 (-15 -3976 ($ (-794))) (-15 -3077 ($ (-794) (-523))) (-15 -3942 ((-1174) $ (-523))) (-15 -3942 ((-1174) $)) (-15 -3967 ((-589 (-1070)) $)) (-15 -3607 ((-589 (-1070)) $)) (-15 -2348 ($)) (-15 -2120 ((-589 (-1070)) $)) (-15 -2442 ((-589 (-1070)) $ (-589 (-1070)))) (-15 -1417 ((-589 (-1070)) $ (-589 (-1070)))) (-15 -3520 ((-589 (-1070)) $ (-589 (-1070))))))) (T -370))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-794)) (-5 *1 (-370)))) (-3077 (*1 *1 *2 *3) (-12 (-5 *2 (-794)) (-5 *3 (-523)) (-5 *1 (-370)))) (-3942 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *2 (-1174)) (-5 *1 (-370)))) (-3942 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-370)))) (-3967 (*1 *2 *1) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-370)))) (-3607 (*1 *2 *1) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-370)))) (-2348 (*1 *1) (-5 *1 (-370))) (-2120 (*1 *2 *1) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-370)))) (-2442 (*1 *2 *1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-370)))) (-1417 (*1 *2 *1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-370)))) (-3520 (*1 *2 *1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-370)))))
-(-13 (-1016) (-10 -8 (-15 -3976 ($ (-794))) (-15 -3077 ($ (-794) (-523))) (-15 -3942 ((-1174) $ (-523))) (-15 -3942 ((-1174) $)) (-15 -3967 ((-589 (-1070)) $)) (-15 -3607 ((-589 (-1070)) $)) (-15 -2348 ($)) (-15 -2120 ((-589 (-1070)) $)) (-15 -2442 ((-589 (-1070)) $ (-589 (-1070)))) (-15 -1417 ((-589 (-1070)) $ (-589 (-1070)))) (-15 -3520 ((-589 (-1070)) $ (-589 (-1070))))))
-((-2034 (((-1174) $) 7)) (-3976 (((-794) $) 8)))
-(((-371) (-129)) (T -371))
-((-2034 (*1 *2 *1) (-12 (-4 *1 (-371)) (-5 *2 (-1174)))))
-(-13 (-1123) (-563 (-794)) (-10 -8 (-15 -2034 ((-1174) $))))
-(((-563 (-794)) . T) ((-1123) . T))
-((-2898 (((-3 $ "failed") (-292 (-355))) 21) (((-3 $ "failed") (-292 (-523))) 19) (((-3 $ "failed") (-883 (-355))) 17) (((-3 $ "failed") (-883 (-523))) 15) (((-3 $ "failed") (-383 (-883 (-355)))) 13) (((-3 $ "failed") (-383 (-883 (-523)))) 11)) (-1996 (($ (-292 (-355))) 22) (($ (-292 (-523))) 20) (($ (-883 (-355))) 18) (($ (-883 (-523))) 16) (($ (-383 (-883 (-355)))) 14) (($ (-383 (-883 (-523)))) 12)) (-2034 (((-1174) $) 7)) (-3976 (((-794) $) 8) (($ (-589 (-306))) 25) (($ (-306)) 24) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 23)))
-(((-372) (-129)) (T -372))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-589 (-306))) (-4 *1 (-372)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-306)) (-4 *1 (-372)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) (-4 *1 (-372)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-292 (-355))) (-4 *1 (-372)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-292 (-355))) (-4 *1 (-372)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-292 (-523))) (-4 *1 (-372)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-292 (-523))) (-4 *1 (-372)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-883 (-355))) (-4 *1 (-372)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-883 (-355))) (-4 *1 (-372)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-883 (-523))) (-4 *1 (-372)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-883 (-523))) (-4 *1 (-372)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-383 (-883 (-355)))) (-4 *1 (-372)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-383 (-883 (-355)))) (-4 *1 (-372)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-383 (-883 (-523)))) (-4 *1 (-372)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-383 (-883 (-523)))) (-4 *1 (-372)))))
-(-13 (-371) (-10 -8 (-15 -3976 ($ (-589 (-306)))) (-15 -3976 ($ (-306))) (-15 -3976 ($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306)))))) (-15 -1996 ($ (-292 (-355)))) (-15 -2898 ((-3 $ "failed") (-292 (-355)))) (-15 -1996 ($ (-292 (-523)))) (-15 -2898 ((-3 $ "failed") (-292 (-523)))) (-15 -1996 ($ (-883 (-355)))) (-15 -2898 ((-3 $ "failed") (-883 (-355)))) (-15 -1996 ($ (-883 (-523)))) (-15 -2898 ((-3 $ "failed") (-883 (-523)))) (-15 -1996 ($ (-383 (-883 (-355))))) (-15 -2898 ((-3 $ "failed") (-383 (-883 (-355))))) (-15 -1996 ($ (-383 (-883 (-523))))) (-15 -2898 ((-3 $ "failed") (-383 (-883 (-523)))))))
-(((-563 (-794)) . T) ((-371) . T) ((-1123) . T))
-((-3789 (((-589 (-1070)) (-589 (-1070))) 9)) (-2034 (((-1174) (-364)) 27)) (-1442 (((-1020) (-1087) (-589 (-1087)) (-1090) (-589 (-1087))) 60) (((-1020) (-1087) (-589 (-3 (|:| |array| (-589 (-1087))) (|:| |scalar| (-1087)))) (-589 (-589 (-3 (|:| |array| (-589 (-1087))) (|:| |scalar| (-1087))))) (-589 (-1087)) (-1087)) 35) (((-1020) (-1087) (-589 (-3 (|:| |array| (-589 (-1087))) (|:| |scalar| (-1087)))) (-589 (-589 (-3 (|:| |array| (-589 (-1087))) (|:| |scalar| (-1087))))) (-589 (-1087))) 34)))
-(((-373) (-10 -7 (-15 -1442 ((-1020) (-1087) (-589 (-3 (|:| |array| (-589 (-1087))) (|:| |scalar| (-1087)))) (-589 (-589 (-3 (|:| |array| (-589 (-1087))) (|:| |scalar| (-1087))))) (-589 (-1087)))) (-15 -1442 ((-1020) (-1087) (-589 (-3 (|:| |array| (-589 (-1087))) (|:| |scalar| (-1087)))) (-589 (-589 (-3 (|:| |array| (-589 (-1087))) (|:| |scalar| (-1087))))) (-589 (-1087)) (-1087))) (-15 -1442 ((-1020) (-1087) (-589 (-1087)) (-1090) (-589 (-1087)))) (-15 -2034 ((-1174) (-364))) (-15 -3789 ((-589 (-1070)) (-589 (-1070)))))) (T -373))
-((-3789 (*1 *2 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-373)))) (-2034 (*1 *2 *3) (-12 (-5 *3 (-364)) (-5 *2 (-1174)) (-5 *1 (-373)))) (-1442 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-589 (-1087))) (-5 *5 (-1090)) (-5 *3 (-1087)) (-5 *2 (-1020)) (-5 *1 (-373)))) (-1442 (*1 *2 *3 *4 *5 *6 *3) (-12 (-5 *5 (-589 (-589 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-589 (-3 (|:| |array| (-589 *3)) (|:| |scalar| (-1087))))) (-5 *6 (-589 (-1087))) (-5 *3 (-1087)) (-5 *2 (-1020)) (-5 *1 (-373)))) (-1442 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-589 (-589 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-589 (-3 (|:| |array| (-589 *3)) (|:| |scalar| (-1087))))) (-5 *6 (-589 (-1087))) (-5 *3 (-1087)) (-5 *2 (-1020)) (-5 *1 (-373)))))
-(-10 -7 (-15 -1442 ((-1020) (-1087) (-589 (-3 (|:| |array| (-589 (-1087))) (|:| |scalar| (-1087)))) (-589 (-589 (-3 (|:| |array| (-589 (-1087))) (|:| |scalar| (-1087))))) (-589 (-1087)))) (-15 -1442 ((-1020) (-1087) (-589 (-3 (|:| |array| (-589 (-1087))) (|:| |scalar| (-1087)))) (-589 (-589 (-3 (|:| |array| (-589 (-1087))) (|:| |scalar| (-1087))))) (-589 (-1087)) (-1087))) (-15 -1442 ((-1020) (-1087) (-589 (-1087)) (-1090) (-589 (-1087)))) (-15 -2034 ((-1174) (-364))) (-15 -3789 ((-589 (-1070)) (-589 (-1070)))))
-((-2034 (((-1174) $) 38)) (-3976 (((-794) $) 98) (($ (-306)) 100) (($ (-589 (-306))) 99) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 97) (($ (-292 (-640))) 54) (($ (-292 (-638))) 73) (($ (-292 (-633))) 86) (($ (-271 (-292 (-640)))) 68) (($ (-271 (-292 (-638)))) 81) (($ (-271 (-292 (-633)))) 94) (($ (-292 (-523))) 104) (($ (-292 (-355))) 117) (($ (-292 (-155 (-355)))) 130) (($ (-271 (-292 (-523)))) 112) (($ (-271 (-292 (-355)))) 125) (($ (-271 (-292 (-155 (-355))))) 138)))
-(((-374 |#1| |#2| |#3| |#4|) (-13 (-371) (-10 -8 (-15 -3976 ($ (-306))) (-15 -3976 ($ (-589 (-306)))) (-15 -3976 ($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306)))))) (-15 -3976 ($ (-292 (-640)))) (-15 -3976 ($ (-292 (-638)))) (-15 -3976 ($ (-292 (-633)))) (-15 -3976 ($ (-271 (-292 (-640))))) (-15 -3976 ($ (-271 (-292 (-638))))) (-15 -3976 ($ (-271 (-292 (-633))))) (-15 -3976 ($ (-292 (-523)))) (-15 -3976 ($ (-292 (-355)))) (-15 -3976 ($ (-292 (-155 (-355))))) (-15 -3976 ($ (-271 (-292 (-523))))) (-15 -3976 ($ (-271 (-292 (-355))))) (-15 -3976 ($ (-271 (-292 (-155 (-355)))))))) (-1087) (-3 (|:| |fst| (-410)) (|:| -3164 "void")) (-589 (-1087)) (-1091)) (T -374))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-306)) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-14 *5 (-589 (-1087))) (-14 *6 (-1091)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-589 (-306))) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-14 *5 (-589 (-1087))) (-14 *6 (-1091)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-14 *5 (-589 (-1087))) (-14 *6 (-1091)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-292 (-640))) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-14 *5 (-589 (-1087))) (-14 *6 (-1091)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-292 (-638))) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-14 *5 (-589 (-1087))) (-14 *6 (-1091)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-292 (-633))) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-14 *5 (-589 (-1087))) (-14 *6 (-1091)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-271 (-292 (-640)))) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-14 *5 (-589 (-1087))) (-14 *6 (-1091)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-271 (-292 (-638)))) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-14 *5 (-589 (-1087))) (-14 *6 (-1091)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-271 (-292 (-633)))) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-14 *5 (-589 (-1087))) (-14 *6 (-1091)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-292 (-523))) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-14 *5 (-589 (-1087))) (-14 *6 (-1091)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-292 (-355))) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-14 *5 (-589 (-1087))) (-14 *6 (-1091)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-292 (-155 (-355)))) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-14 *5 (-589 (-1087))) (-14 *6 (-1091)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-271 (-292 (-523)))) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-14 *5 (-589 (-1087))) (-14 *6 (-1091)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-271 (-292 (-355)))) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-14 *5 (-589 (-1087))) (-14 *6 (-1091)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-271 (-292 (-155 (-355))))) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-14 *5 (-589 (-1087))) (-14 *6 (-1091)))))
-(-13 (-371) (-10 -8 (-15 -3976 ($ (-306))) (-15 -3976 ($ (-589 (-306)))) (-15 -3976 ($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306)))))) (-15 -3976 ($ (-292 (-640)))) (-15 -3976 ($ (-292 (-638)))) (-15 -3976 ($ (-292 (-633)))) (-15 -3976 ($ (-271 (-292 (-640))))) (-15 -3976 ($ (-271 (-292 (-638))))) (-15 -3976 ($ (-271 (-292 (-633))))) (-15 -3976 ($ (-292 (-523)))) (-15 -3976 ($ (-292 (-355)))) (-15 -3976 ($ (-292 (-155 (-355))))) (-15 -3976 ($ (-271 (-292 (-523))))) (-15 -3976 ($ (-271 (-292 (-355))))) (-15 -3976 ($ (-271 (-292 (-155 (-355))))))))
-((-3260 (((-108) $ $) NIL)) (-2396 ((|#2| $) 36)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2768 (($ (-383 |#2|)) 85)) (-3082 (((-589 (-2 (|:| -3262 (-710)) (|:| -3882 |#2|) (|:| |num| |#2|))) $) 37)) (-4024 (($ $) 32) (($ $ (-710)) 34)) (-3077 (((-383 |#2|) $) 46)) (-3985 (($ (-589 (-2 (|:| -3262 (-710)) (|:| -3882 |#2|) (|:| |num| |#2|)))) 31)) (-3976 (((-794) $) 120)) (-1943 (($ $) 33) (($ $ (-710)) 35)) (-4037 (((-108) $ $) NIL)) (-4103 (($ |#2| $) 39)))
-(((-375 |#1| |#2|) (-13 (-1016) (-564 (-383 |#2|)) (-10 -8 (-15 -4103 ($ |#2| $)) (-15 -2768 ($ (-383 |#2|))) (-15 -2396 (|#2| $)) (-15 -3082 ((-589 (-2 (|:| -3262 (-710)) (|:| -3882 |#2|) (|:| |num| |#2|))) $)) (-15 -3985 ($ (-589 (-2 (|:| -3262 (-710)) (|:| -3882 |#2|) (|:| |num| |#2|))))) (-15 -4024 ($ $)) (-15 -1943 ($ $)) (-15 -4024 ($ $ (-710))) (-15 -1943 ($ $ (-710))))) (-13 (-339) (-136)) (-1145 |#1|)) (T -375))
-((-4103 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-339) (-136))) (-5 *1 (-375 *3 *2)) (-4 *2 (-1145 *3)))) (-2768 (*1 *1 *2) (-12 (-5 *2 (-383 *4)) (-4 *4 (-1145 *3)) (-4 *3 (-13 (-339) (-136))) (-5 *1 (-375 *3 *4)))) (-2396 (*1 *2 *1) (-12 (-4 *2 (-1145 *3)) (-5 *1 (-375 *3 *2)) (-4 *3 (-13 (-339) (-136))))) (-3082 (*1 *2 *1) (-12 (-4 *3 (-13 (-339) (-136))) (-5 *2 (-589 (-2 (|:| -3262 (-710)) (|:| -3882 *4) (|:| |num| *4)))) (-5 *1 (-375 *3 *4)) (-4 *4 (-1145 *3)))) (-3985 (*1 *1 *2) (-12 (-5 *2 (-589 (-2 (|:| -3262 (-710)) (|:| -3882 *4) (|:| |num| *4)))) (-4 *4 (-1145 *3)) (-4 *3 (-13 (-339) (-136))) (-5 *1 (-375 *3 *4)))) (-4024 (*1 *1 *1) (-12 (-4 *2 (-13 (-339) (-136))) (-5 *1 (-375 *2 *3)) (-4 *3 (-1145 *2)))) (-1943 (*1 *1 *1) (-12 (-4 *2 (-13 (-339) (-136))) (-5 *1 (-375 *2 *3)) (-4 *3 (-1145 *2)))) (-4024 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *3 (-13 (-339) (-136))) (-5 *1 (-375 *3 *4)) (-4 *4 (-1145 *3)))) (-1943 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *3 (-13 (-339) (-136))) (-5 *1 (-375 *3 *4)) (-4 *4 (-1145 *3)))))
-(-13 (-1016) (-564 (-383 |#2|)) (-10 -8 (-15 -4103 ($ |#2| $)) (-15 -2768 ($ (-383 |#2|))) (-15 -2396 (|#2| $)) (-15 -3082 ((-589 (-2 (|:| -3262 (-710)) (|:| -3882 |#2|) (|:| |num| |#2|))) $)) (-15 -3985 ($ (-589 (-2 (|:| -3262 (-710)) (|:| -3882 |#2|) (|:| |num| |#2|))))) (-15 -4024 ($ $)) (-15 -1943 ($ $)) (-15 -4024 ($ $ (-710))) (-15 -1943 ($ $ (-710)))))
-((-3260 (((-108) $ $) 9 (-3255 (|has| |#1| (-817 (-523))) (|has| |#1| (-817 (-355)))))) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 15 (|has| |#1| (-817 (-355)))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 14 (|has| |#1| (-817 (-523))))) (-3841 (((-1070) $) 13 (-3255 (|has| |#1| (-817 (-523))) (|has| |#1| (-817 (-355)))))) (-2435 (((-1034) $) 12 (-3255 (|has| |#1| (-817 (-523))) (|has| |#1| (-817 (-355)))))) (-3976 (((-794) $) 11 (-3255 (|has| |#1| (-817 (-523))) (|has| |#1| (-817 (-355)))))) (-4037 (((-108) $ $) 10 (-3255 (|has| |#1| (-817 (-523))) (|has| |#1| (-817 (-355)))))))
-(((-376 |#1|) (-129) (-1123)) (T -376))
-NIL
-(-13 (-1123) (-10 -7 (IF (|has| |t#1| (-817 (-523))) (-6 (-817 (-523))) |%noBranch|) (IF (|has| |t#1| (-817 (-355))) (-6 (-817 (-355))) |%noBranch|)))
-(((-97) -3255 (|has| |#1| (-817 (-523))) (|has| |#1| (-817 (-355)))) ((-563 (-794)) -3255 (|has| |#1| (-817 (-523))) (|has| |#1| (-817 (-355)))) ((-817 (-355)) |has| |#1| (-817 (-355))) ((-817 (-523)) |has| |#1| (-817 (-523))) ((-1016) -3255 (|has| |#1| (-817 (-523))) (|has| |#1| (-817 (-355)))) ((-1123) . T))
-((-1419 (($ $) 10) (($ $ (-710)) 11)))
-(((-377 |#1|) (-10 -8 (-15 -1419 (|#1| |#1| (-710))) (-15 -1419 (|#1| |#1|))) (-378)) (T -377))
-NIL
-(-10 -8 (-15 -1419 (|#1| |#1| (-710))) (-15 -1419 (|#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-2999 (((-3 $ "failed") $ $) 19)) (-3763 (($ $) 73)) (-2105 (((-394 $) $) 72)) (-3684 (((-108) $ $) 59)) (-1640 (($) 17 T CONST)) (-2501 (($ $ $) 55)) (-4211 (((-3 $ "failed") $) 34)) (-2486 (($ $ $) 56)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 51)) (-1419 (($ $) 79) (($ $ (-710)) 78)) (-1330 (((-108) $) 71)) (-1500 (((-772 (-852)) $) 81)) (-3482 (((-108) $) 31)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 52)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-3071 (($ $) 70)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-3573 (((-394 $) $) 74)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2469 (((-3 $ "failed") $ $) 42)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 50)) (-3087 (((-710) $) 58)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 57)) (-2041 (((-3 (-710) "failed") $ $) 80)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43) (($ (-383 (-523))) 65)) (-2301 (((-3 $ "failed") $) 82)) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 39)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 69)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4125 (($ $ $) 64)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 68)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 (-523))) 67) (($ (-383 (-523)) $) 66)))
-(((-378) (-129)) (T -378))
-((-1500 (*1 *2 *1) (-12 (-4 *1 (-378)) (-5 *2 (-772 (-852))))) (-2041 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-378)) (-5 *2 (-710)))) (-1419 (*1 *1 *1) (-4 *1 (-378))) (-1419 (*1 *1 *1 *2) (-12 (-4 *1 (-378)) (-5 *2 (-710)))))
-(-13 (-339) (-134) (-10 -8 (-15 -1500 ((-772 (-852)) $)) (-15 -2041 ((-3 (-710) "failed") $ $)) (-15 -1419 ($ $)) (-15 -1419 ($ $ (-710)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-124) . T) ((-134) . T) ((-563 (-794)) . T) ((-158) . T) ((-221) . T) ((-267) . T) ((-284) . T) ((-339) . T) ((-427) . T) ((-515) . T) ((-591 #0#) . T) ((-591 $) . T) ((-657 #0#) . T) ((-657 $) . T) ((-666) . T) ((-851) . T) ((-979 #0#) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1127) . T))
-((-1565 (($ (-523) (-523)) 11) (($ (-523) (-523) (-852)) NIL)) (-2080 (((-852)) 16) (((-852) (-852)) NIL)))
-(((-379 |#1|) (-10 -8 (-15 -2080 ((-852) (-852))) (-15 -2080 ((-852))) (-15 -1565 (|#1| (-523) (-523) (-852))) (-15 -1565 (|#1| (-523) (-523)))) (-380)) (T -379))
-((-2080 (*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-379 *3)) (-4 *3 (-380)))) (-2080 (*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-379 *3)) (-4 *3 (-380)))))
-(-10 -8 (-15 -2080 ((-852) (-852))) (-15 -2080 ((-852))) (-15 -1565 (|#1| (-523) (-523) (-852))) (-15 -1565 (|#1| (-523) (-523))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3964 (((-523) $) 89)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-1756 (($ $) 87)) (-2999 (((-3 $ "failed") $ $) 19)) (-3763 (($ $) 73)) (-2105 (((-394 $) $) 72)) (-3584 (($ $) 97)) (-3684 (((-108) $ $) 59)) (-2035 (((-523) $) 114)) (-1640 (($) 17 T CONST)) (-3710 (($ $) 86)) (-2898 (((-3 (-523) "failed") $) 102) (((-3 (-383 (-523)) "failed") $) 99)) (-1996 (((-523) $) 101) (((-383 (-523)) $) 98)) (-2501 (($ $ $) 55)) (-4211 (((-3 $ "failed") $) 34)) (-2486 (($ $ $) 56)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 51)) (-1330 (((-108) $) 71)) (-2878 (((-852)) 130) (((-852) (-852)) 127 (|has| $ (-6 -4239)))) (-3702 (((-108) $) 112)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 93)) (-1500 (((-523) $) 136)) (-3482 (((-108) $) 31)) (-1324 (($ $ (-523)) 96)) (-2765 (($ $) 92)) (-4050 (((-108) $) 113)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 52)) (-3268 (($ $ $) 111) (($) 124 (-12 (-2575 (|has| $ (-6 -4239))) (-2575 (|has| $ (-6 -4231)))))) (-2644 (($ $ $) 110) (($) 123 (-12 (-2575 (|has| $ (-6 -4239))) (-2575 (|has| $ (-6 -4231)))))) (-4068 (((-523) $) 133)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-3071 (($ $) 70)) (-2026 (((-852) (-523)) 126 (|has| $ (-6 -4239)))) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-3934 (($ $) 88)) (-1250 (($ $) 90)) (-1565 (($ (-523) (-523)) 138) (($ (-523) (-523) (-852)) 137)) (-3573 (((-394 $) $) 74)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2469 (((-3 $ "failed") $ $) 42)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 50)) (-3262 (((-523) $) 134)) (-3087 (((-710) $) 58)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 57)) (-2080 (((-852)) 131) (((-852) (-852)) 128 (|has| $ (-6 -4239)))) (-3624 (((-852) (-523)) 125 (|has| $ (-6 -4239)))) (-3077 (((-355) $) 105) (((-203) $) 104) (((-823 (-355)) $) 94)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43) (($ (-383 (-523))) 65) (($ (-523)) 103) (($ (-383 (-523))) 100)) (-1698 (((-710)) 29)) (-1516 (($ $) 91)) (-2954 (((-852)) 132) (((-852) (-852)) 129 (|has| $ (-6 -4239)))) (-3912 (((-852)) 135)) (-3842 (((-108) $ $) 39)) (-3984 (($ $) 115)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 69)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4078 (((-108) $ $) 108)) (-4061 (((-108) $ $) 107)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 109)) (-4052 (((-108) $ $) 106)) (-4125 (($ $ $) 64)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 68) (($ $ (-383 (-523))) 95)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 (-523))) 67) (($ (-383 (-523)) $) 66)))
-(((-380) (-129)) (T -380))
-((-1565 (*1 *1 *2 *2) (-12 (-5 *2 (-523)) (-4 *1 (-380)))) (-1565 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-523)) (-5 *3 (-852)) (-4 *1 (-380)))) (-1500 (*1 *2 *1) (-12 (-4 *1 (-380)) (-5 *2 (-523)))) (-3912 (*1 *2) (-12 (-4 *1 (-380)) (-5 *2 (-852)))) (-3262 (*1 *2 *1) (-12 (-4 *1 (-380)) (-5 *2 (-523)))) (-4068 (*1 *2 *1) (-12 (-4 *1 (-380)) (-5 *2 (-523)))) (-2954 (*1 *2) (-12 (-4 *1 (-380)) (-5 *2 (-852)))) (-2080 (*1 *2) (-12 (-4 *1 (-380)) (-5 *2 (-852)))) (-2878 (*1 *2) (-12 (-4 *1 (-380)) (-5 *2 (-852)))) (-2954 (*1 *2 *2) (-12 (-5 *2 (-852)) (|has| *1 (-6 -4239)) (-4 *1 (-380)))) (-2080 (*1 *2 *2) (-12 (-5 *2 (-852)) (|has| *1 (-6 -4239)) (-4 *1 (-380)))) (-2878 (*1 *2 *2) (-12 (-5 *2 (-852)) (|has| *1 (-6 -4239)) (-4 *1 (-380)))) (-2026 (*1 *2 *3) (-12 (-5 *3 (-523)) (|has| *1 (-6 -4239)) (-4 *1 (-380)) (-5 *2 (-852)))) (-3624 (*1 *2 *3) (-12 (-5 *3 (-523)) (|has| *1 (-6 -4239)) (-4 *1 (-380)) (-5 *2 (-852)))) (-3268 (*1 *1) (-12 (-4 *1 (-380)) (-2575 (|has| *1 (-6 -4239))) (-2575 (|has| *1 (-6 -4231))))) (-2644 (*1 *1) (-12 (-4 *1 (-380)) (-2575 (|has| *1 (-6 -4239))) (-2575 (|has| *1 (-6 -4231))))))
-(-13 (-982) (-10 -8 (-6 -2523) (-15 -1565 ($ (-523) (-523))) (-15 -1565 ($ (-523) (-523) (-852))) (-15 -1500 ((-523) $)) (-15 -3912 ((-852))) (-15 -3262 ((-523) $)) (-15 -4068 ((-523) $)) (-15 -2954 ((-852))) (-15 -2080 ((-852))) (-15 -2878 ((-852))) (IF (|has| $ (-6 -4239)) (PROGN (-15 -2954 ((-852) (-852))) (-15 -2080 ((-852) (-852))) (-15 -2878 ((-852) (-852))) (-15 -2026 ((-852) (-523))) (-15 -3624 ((-852) (-523)))) |%noBranch|) (IF (|has| $ (-6 -4231)) |%noBranch| (IF (|has| $ (-6 -4239)) |%noBranch| (PROGN (-15 -3268 ($)) (-15 -2644 ($)))))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-124) . T) ((-136) . T) ((-563 (-794)) . T) ((-158) . T) ((-564 (-203)) . T) ((-564 (-355)) . T) ((-564 (-823 (-355))) . T) ((-221) . T) ((-267) . T) ((-284) . T) ((-339) . T) ((-427) . T) ((-515) . T) ((-591 #0#) . T) ((-591 $) . T) ((-657 #0#) . T) ((-657 $) . T) ((-666) . T) ((-730) . T) ((-731) . T) ((-733) . T) ((-734) . T) ((-784) . T) ((-786) . T) ((-817 (-355)) . T) ((-851) . T) ((-930) . T) ((-949) . T) ((-982) . T) ((-964 (-383 (-523))) . T) ((-964 (-523)) . T) ((-979 #0#) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1127) . T))
-((-3015 (((-394 |#2|) (-1 |#2| |#1|) (-394 |#1|)) 20)))
-(((-381 |#1| |#2|) (-10 -7 (-15 -3015 ((-394 |#2|) (-1 |#2| |#1|) (-394 |#1|)))) (-515) (-515)) (T -381))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-394 *5)) (-4 *5 (-515)) (-4 *6 (-515)) (-5 *2 (-394 *6)) (-5 *1 (-381 *5 *6)))))
-(-10 -7 (-15 -3015 ((-394 |#2|) (-1 |#2| |#1|) (-394 |#1|))))
-((-3015 (((-383 |#2|) (-1 |#2| |#1|) (-383 |#1|)) 13)))
-(((-382 |#1| |#2|) (-10 -7 (-15 -3015 ((-383 |#2|) (-1 |#2| |#1|) (-383 |#1|)))) (-515) (-515)) (T -382))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-383 *5)) (-4 *5 (-515)) (-4 *6 (-515)) (-5 *2 (-383 *6)) (-5 *1 (-382 *5 *6)))))
-(-10 -7 (-15 -3015 ((-383 |#2|) (-1 |#2| |#1|) (-383 |#1|))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 13)) (-3964 ((|#1| $) 21 (|has| |#1| (-284)))) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3684 (((-108) $ $) NIL)) (-2035 (((-523) $) NIL (|has| |#1| (-759)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) 17) (((-3 (-1087) "failed") $) NIL (|has| |#1| (-964 (-1087)))) (((-3 (-383 (-523)) "failed") $) 70 (|has| |#1| (-964 (-523)))) (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523))))) (-1996 ((|#1| $) 15) (((-1087) $) NIL (|has| |#1| (-964 (-1087)))) (((-383 (-523)) $) 67 (|has| |#1| (-964 (-523)))) (((-523) $) NIL (|has| |#1| (-964 (-523))))) (-2501 (($ $ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) NIL) (((-629 |#1|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) 50)) (-3461 (($) NIL (|has| |#1| (-508)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-3702 (((-108) $) NIL (|has| |#1| (-759)))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (|has| |#1| (-817 (-523)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (|has| |#1| (-817 (-355))))) (-3482 (((-108) $) 64)) (-2364 (($ $) NIL)) (-2164 ((|#1| $) 71)) (-1289 (((-3 $ "failed") $) NIL (|has| |#1| (-1063)))) (-4050 (((-108) $) NIL (|has| |#1| (-759)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| |#1| (-1063)) CONST)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 97)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3934 (($ $) NIL (|has| |#1| (-284)))) (-1250 ((|#1| $) 28 (|has| |#1| (-508)))) (-1893 (((-394 (-1083 $)) (-1083 $)) 135 (|has| |#1| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) 131 (|has| |#1| (-840)))) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-1349 (($ $ (-589 |#1|) (-589 |#1|)) NIL (|has| |#1| (-286 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-286 |#1|))) (($ $ (-271 |#1|)) NIL (|has| |#1| (-286 |#1|))) (($ $ (-589 (-271 |#1|))) NIL (|has| |#1| (-286 |#1|))) (($ $ (-589 (-1087)) (-589 |#1|)) NIL (|has| |#1| (-484 (-1087) |#1|))) (($ $ (-1087) |#1|) NIL (|has| |#1| (-484 (-1087) |#1|)))) (-3087 (((-710) $) NIL)) (-1502 (($ $ |#1|) NIL (|has| |#1| (-263 |#1| |#1|)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-4024 (($ $) NIL (|has| |#1| (-211))) (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) 63)) (-3758 (($ $) NIL)) (-2171 ((|#1| $) 73)) (-3077 (((-823 (-523)) $) NIL (|has| |#1| (-564 (-823 (-523))))) (((-823 (-355)) $) NIL (|has| |#1| (-564 (-823 (-355))))) (((-499) $) NIL (|has| |#1| (-564 (-499)))) (((-355) $) NIL (|has| |#1| (-949))) (((-203) $) NIL (|has| |#1| (-949)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) 115 (-12 (|has| $ (-134)) (|has| |#1| (-840))))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) (($ |#1|) 10) (($ (-1087)) NIL (|has| |#1| (-964 (-1087))))) (-2301 (((-3 $ "failed") $) 99 (-3255 (-12 (|has| $ (-134)) (|has| |#1| (-840))) (|has| |#1| (-134))))) (-1698 (((-710)) 100)) (-1516 ((|#1| $) 26 (|has| |#1| (-508)))) (-3842 (((-108) $ $) NIL)) (-3984 (($ $) NIL (|has| |#1| (-759)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) 22 T CONST)) (-1440 (($) 8 T CONST)) (-3342 (((-1070) $) 43 (-12 (|has| |#1| (-508)) (|has| |#1| (-767)))) (((-1070) $ (-108)) 44 (-12 (|has| |#1| (-508)) (|has| |#1| (-767)))) (((-1174) (-761) $) 45 (-12 (|has| |#1| (-508)) (|has| |#1| (-767)))) (((-1174) (-761) $ (-108)) 46 (-12 (|has| |#1| (-508)) (|has| |#1| (-767))))) (-1943 (($ $) NIL (|has| |#1| (-211))) (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) 56)) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) 24 (|has| |#1| (-786)))) (-4125 (($ $ $) 126) (($ |#1| |#1|) 52)) (-4115 (($ $) 25) (($ $ $) 55)) (-4103 (($ $ $) 53)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) 125)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 60) (($ $ $) 57) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ |#1| $) 61) (($ $ |#1|) 85)))
-(((-383 |#1|) (-13 (-921 |#1|) (-10 -7 (IF (|has| |#1| (-508)) (IF (|has| |#1| (-767)) (-6 (-767)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4235)) (IF (|has| |#1| (-427)) (IF (|has| |#1| (-6 -4246)) (-6 -4235) |%noBranch|) |%noBranch|) |%noBranch|))) (-515)) (T -383))
-NIL
-(-13 (-921 |#1|) (-10 -7 (IF (|has| |#1| (-508)) (IF (|has| |#1| (-767)) (-6 (-767)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4235)) (IF (|has| |#1| (-427)) (IF (|has| |#1| (-6 -4246)) (-6 -4235) |%noBranch|) |%noBranch|) |%noBranch|)))
-((-1711 (((-629 |#2|) (-1169 $)) NIL) (((-629 |#2|)) 18)) (-3322 (($ (-1169 |#2|) (-1169 $)) NIL) (($ (-1169 |#2|)) 26)) (-2545 (((-629 |#2|) $ (-1169 $)) NIL) (((-629 |#2|) $) 22)) (-2277 ((|#3| $) 60)) (-4053 ((|#2| (-1169 $)) NIL) ((|#2|) 20)) (-2411 (((-1169 |#2|) $ (-1169 $)) NIL) (((-629 |#2|) (-1169 $) (-1169 $)) NIL) (((-1169 |#2|) $) NIL) (((-629 |#2|) (-1169 $)) 24)) (-3077 (((-1169 |#2|) $) 11) (($ (-1169 |#2|)) 13)) (-1606 ((|#3| $) 52)))
-(((-384 |#1| |#2| |#3|) (-10 -8 (-15 -2545 ((-629 |#2|) |#1|)) (-15 -4053 (|#2|)) (-15 -1711 ((-629 |#2|))) (-15 -3077 (|#1| (-1169 |#2|))) (-15 -3077 ((-1169 |#2|) |#1|)) (-15 -3322 (|#1| (-1169 |#2|))) (-15 -2411 ((-629 |#2|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1|)) (-15 -2277 (|#3| |#1|)) (-15 -1606 (|#3| |#1|)) (-15 -1711 ((-629 |#2|) (-1169 |#1|))) (-15 -4053 (|#2| (-1169 |#1|))) (-15 -3322 (|#1| (-1169 |#2|) (-1169 |#1|))) (-15 -2411 ((-629 |#2|) (-1169 |#1|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1| (-1169 |#1|))) (-15 -2545 ((-629 |#2|) |#1| (-1169 |#1|)))) (-385 |#2| |#3|) (-158) (-1145 |#2|)) (T -384))
-((-1711 (*1 *2) (-12 (-4 *4 (-158)) (-4 *5 (-1145 *4)) (-5 *2 (-629 *4)) (-5 *1 (-384 *3 *4 *5)) (-4 *3 (-385 *4 *5)))) (-4053 (*1 *2) (-12 (-4 *4 (-1145 *2)) (-4 *2 (-158)) (-5 *1 (-384 *3 *2 *4)) (-4 *3 (-385 *2 *4)))))
-(-10 -8 (-15 -2545 ((-629 |#2|) |#1|)) (-15 -4053 (|#2|)) (-15 -1711 ((-629 |#2|))) (-15 -3077 (|#1| (-1169 |#2|))) (-15 -3077 ((-1169 |#2|) |#1|)) (-15 -3322 (|#1| (-1169 |#2|))) (-15 -2411 ((-629 |#2|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1|)) (-15 -2277 (|#3| |#1|)) (-15 -1606 (|#3| |#1|)) (-15 -1711 ((-629 |#2|) (-1169 |#1|))) (-15 -4053 (|#2| (-1169 |#1|))) (-15 -3322 (|#1| (-1169 |#2|) (-1169 |#1|))) (-15 -2411 ((-629 |#2|) (-1169 |#1|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1| (-1169 |#1|))) (-15 -2545 ((-629 |#2|) |#1| (-1169 |#1|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-1711 (((-629 |#1|) (-1169 $)) 46) (((-629 |#1|)) 61)) (-4131 ((|#1| $) 52)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3322 (($ (-1169 |#1|) (-1169 $)) 48) (($ (-1169 |#1|)) 64)) (-2545 (((-629 |#1|) $ (-1169 $)) 53) (((-629 |#1|) $) 59)) (-4211 (((-3 $ "failed") $) 34)) (-2262 (((-852)) 54)) (-3482 (((-108) $) 31)) (-2765 ((|#1| $) 51)) (-2277 ((|#2| $) 44 (|has| |#1| (-339)))) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-4053 ((|#1| (-1169 $)) 47) ((|#1|) 60)) (-2411 (((-1169 |#1|) $ (-1169 $)) 50) (((-629 |#1|) (-1169 $) (-1169 $)) 49) (((-1169 |#1|) $) 66) (((-629 |#1|) (-1169 $)) 65)) (-3077 (((-1169 |#1|) $) 63) (($ (-1169 |#1|)) 62)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 37)) (-2301 (((-3 $ "failed") $) 43 (|has| |#1| (-134)))) (-1606 ((|#2| $) 45)) (-1698 (((-710)) 29)) (-2922 (((-1169 $)) 67)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
-(((-385 |#1| |#2|) (-129) (-158) (-1145 |t#1|)) (T -385))
-((-2922 (*1 *2) (-12 (-4 *3 (-158)) (-4 *4 (-1145 *3)) (-5 *2 (-1169 *1)) (-4 *1 (-385 *3 *4)))) (-2411 (*1 *2 *1) (-12 (-4 *1 (-385 *3 *4)) (-4 *3 (-158)) (-4 *4 (-1145 *3)) (-5 *2 (-1169 *3)))) (-2411 (*1 *2 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-385 *4 *5)) (-4 *4 (-158)) (-4 *5 (-1145 *4)) (-5 *2 (-629 *4)))) (-3322 (*1 *1 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-158)) (-4 *1 (-385 *3 *4)) (-4 *4 (-1145 *3)))) (-3077 (*1 *2 *1) (-12 (-4 *1 (-385 *3 *4)) (-4 *3 (-158)) (-4 *4 (-1145 *3)) (-5 *2 (-1169 *3)))) (-3077 (*1 *1 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-158)) (-4 *1 (-385 *3 *4)) (-4 *4 (-1145 *3)))) (-1711 (*1 *2) (-12 (-4 *1 (-385 *3 *4)) (-4 *3 (-158)) (-4 *4 (-1145 *3)) (-5 *2 (-629 *3)))) (-4053 (*1 *2) (-12 (-4 *1 (-385 *2 *3)) (-4 *3 (-1145 *2)) (-4 *2 (-158)))) (-2545 (*1 *2 *1) (-12 (-4 *1 (-385 *3 *4)) (-4 *3 (-158)) (-4 *4 (-1145 *3)) (-5 *2 (-629 *3)))))
-(-13 (-346 |t#1| |t#2|) (-10 -8 (-15 -2922 ((-1169 $))) (-15 -2411 ((-1169 |t#1|) $)) (-15 -2411 ((-629 |t#1|) (-1169 $))) (-15 -3322 ($ (-1169 |t#1|))) (-15 -3077 ((-1169 |t#1|) $)) (-15 -3077 ($ (-1169 |t#1|))) (-15 -1711 ((-629 |t#1|))) (-15 -4053 (|t#1|)) (-15 -2545 ((-629 |t#1|) $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-346 |#1| |#2|) . T) ((-591 |#1|) . T) ((-591 $) . T) ((-657 |#1|) . T) ((-666) . T) ((-979 |#1|) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-2898 (((-3 |#2| "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) 27) (((-3 (-523) "failed") $) 19)) (-1996 ((|#2| $) NIL) (((-383 (-523)) $) 24) (((-523) $) 14)) (-3976 (($ |#2|) NIL) (($ (-383 (-523))) 22) (($ (-523)) 11)))
-(((-386 |#1| |#2|) (-10 -8 (-15 -1996 ((-523) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -3976 (|#1| (-523))) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -3976 (|#1| |#2|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -1996 (|#2| |#1|))) (-387 |#2|) (-1123)) (T -386))
-NIL
-(-10 -8 (-15 -1996 ((-523) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -3976 (|#1| (-523))) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -3976 (|#1| |#2|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -1996 (|#2| |#1|)))
-((-2898 (((-3 |#1| "failed") $) 7) (((-3 (-383 (-523)) "failed") $) 16 (|has| |#1| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) 13 (|has| |#1| (-964 (-523))))) (-1996 ((|#1| $) 8) (((-383 (-523)) $) 15 (|has| |#1| (-964 (-383 (-523))))) (((-523) $) 12 (|has| |#1| (-964 (-523))))) (-3976 (($ |#1|) 6) (($ (-383 (-523))) 17 (|has| |#1| (-964 (-383 (-523))))) (($ (-523)) 14 (|has| |#1| (-964 (-523))))))
-(((-387 |#1|) (-129) (-1123)) (T -387))
-NIL
-(-13 (-964 |t#1|) (-10 -7 (IF (|has| |t#1| (-964 (-523))) (-6 (-964 (-523))) |%noBranch|) (IF (|has| |t#1| (-964 (-383 (-523)))) (-6 (-964 (-383 (-523)))) |%noBranch|)))
-(((-964 (-383 (-523))) |has| |#1| (-964 (-383 (-523)))) ((-964 (-523)) |has| |#1| (-964 (-523))) ((-964 |#1|) . T))
-((-3015 (((-389 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-389 |#1| |#2| |#3| |#4|)) 33)))
-(((-388 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3015 ((-389 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-389 |#1| |#2| |#3| |#4|)))) (-284) (-921 |#1|) (-1145 |#2|) (-13 (-385 |#2| |#3|) (-964 |#2|)) (-284) (-921 |#5|) (-1145 |#6|) (-13 (-385 |#6| |#7|) (-964 |#6|))) (T -388))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-389 *5 *6 *7 *8)) (-4 *5 (-284)) (-4 *6 (-921 *5)) (-4 *7 (-1145 *6)) (-4 *8 (-13 (-385 *6 *7) (-964 *6))) (-4 *9 (-284)) (-4 *10 (-921 *9)) (-4 *11 (-1145 *10)) (-5 *2 (-389 *9 *10 *11 *12)) (-5 *1 (-388 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-13 (-385 *10 *11) (-964 *10))))))
-(-10 -7 (-15 -3015 ((-389 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-389 |#1| |#2| |#3| |#4|))))
-((-3260 (((-108) $ $) NIL)) (-1640 (($) NIL T CONST)) (-4211 (((-3 $ "failed") $) NIL)) (-4185 ((|#4| (-710) (-1169 |#4|)) 56)) (-3482 (((-108) $) NIL)) (-2164 (((-1169 |#4|) $) 17)) (-2765 ((|#2| $) 54)) (-1805 (($ $) 139)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 100)) (-4140 (($ (-1169 |#4|)) 99)) (-2435 (((-1034) $) NIL)) (-2171 ((|#1| $) 18)) (-1308 (($ $ $) NIL)) (-2306 (($ $ $) NIL)) (-3976 (((-794) $) 134)) (-2922 (((-1169 |#4|) $) 129)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1440 (($) 11 T CONST)) (-4037 (((-108) $ $) 40)) (-4125 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) 122)) (* (($ $ $) 121)))
-(((-389 |#1| |#2| |#3| |#4|) (-13 (-448) (-10 -8 (-15 -4140 ($ (-1169 |#4|))) (-15 -2922 ((-1169 |#4|) $)) (-15 -2765 (|#2| $)) (-15 -2164 ((-1169 |#4|) $)) (-15 -2171 (|#1| $)) (-15 -1805 ($ $)) (-15 -4185 (|#4| (-710) (-1169 |#4|))))) (-284) (-921 |#1|) (-1145 |#2|) (-13 (-385 |#2| |#3|) (-964 |#2|))) (T -389))
-((-4140 (*1 *1 *2) (-12 (-5 *2 (-1169 *6)) (-4 *6 (-13 (-385 *4 *5) (-964 *4))) (-4 *4 (-921 *3)) (-4 *5 (-1145 *4)) (-4 *3 (-284)) (-5 *1 (-389 *3 *4 *5 *6)))) (-2922 (*1 *2 *1) (-12 (-4 *3 (-284)) (-4 *4 (-921 *3)) (-4 *5 (-1145 *4)) (-5 *2 (-1169 *6)) (-5 *1 (-389 *3 *4 *5 *6)) (-4 *6 (-13 (-385 *4 *5) (-964 *4))))) (-2765 (*1 *2 *1) (-12 (-4 *4 (-1145 *2)) (-4 *2 (-921 *3)) (-5 *1 (-389 *3 *2 *4 *5)) (-4 *3 (-284)) (-4 *5 (-13 (-385 *2 *4) (-964 *2))))) (-2164 (*1 *2 *1) (-12 (-4 *3 (-284)) (-4 *4 (-921 *3)) (-4 *5 (-1145 *4)) (-5 *2 (-1169 *6)) (-5 *1 (-389 *3 *4 *5 *6)) (-4 *6 (-13 (-385 *4 *5) (-964 *4))))) (-2171 (*1 *2 *1) (-12 (-4 *3 (-921 *2)) (-4 *4 (-1145 *3)) (-4 *2 (-284)) (-5 *1 (-389 *2 *3 *4 *5)) (-4 *5 (-13 (-385 *3 *4) (-964 *3))))) (-1805 (*1 *1 *1) (-12 (-4 *2 (-284)) (-4 *3 (-921 *2)) (-4 *4 (-1145 *3)) (-5 *1 (-389 *2 *3 *4 *5)) (-4 *5 (-13 (-385 *3 *4) (-964 *3))))) (-4185 (*1 *2 *3 *4) (-12 (-5 *3 (-710)) (-5 *4 (-1169 *2)) (-4 *5 (-284)) (-4 *6 (-921 *5)) (-4 *2 (-13 (-385 *6 *7) (-964 *6))) (-5 *1 (-389 *5 *6 *7 *2)) (-4 *7 (-1145 *6)))))
-(-13 (-448) (-10 -8 (-15 -4140 ($ (-1169 |#4|))) (-15 -2922 ((-1169 |#4|) $)) (-15 -2765 (|#2| $)) (-15 -2164 ((-1169 |#4|) $)) (-15 -2171 (|#1| $)) (-15 -1805 ($ $)) (-15 -4185 (|#4| (-710) (-1169 |#4|)))))
-((-3260 (((-108) $ $) NIL)) (-1640 (($) NIL T CONST)) (-4211 (((-3 $ "failed") $) NIL)) (-3482 (((-108) $) NIL)) (-2765 ((|#2| $) 61)) (-1261 (($ (-1169 |#4|)) 25) (($ (-389 |#1| |#2| |#3| |#4|)) 75 (|has| |#4| (-964 |#2|)))) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 34)) (-2922 (((-1169 |#4|) $) 26)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1440 (($) 23 T CONST)) (-4037 (((-108) $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ $ $) 72)))
-(((-390 |#1| |#2| |#3| |#4| |#5|) (-13 (-666) (-10 -8 (-15 -2922 ((-1169 |#4|) $)) (-15 -2765 (|#2| $)) (-15 -1261 ($ (-1169 |#4|))) (IF (|has| |#4| (-964 |#2|)) (-15 -1261 ($ (-389 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-284) (-921 |#1|) (-1145 |#2|) (-385 |#2| |#3|) (-1169 |#4|)) (T -390))
-((-2922 (*1 *2 *1) (-12 (-4 *3 (-284)) (-4 *4 (-921 *3)) (-4 *5 (-1145 *4)) (-5 *2 (-1169 *6)) (-5 *1 (-390 *3 *4 *5 *6 *7)) (-4 *6 (-385 *4 *5)) (-14 *7 *2))) (-2765 (*1 *2 *1) (-12 (-4 *4 (-1145 *2)) (-4 *2 (-921 *3)) (-5 *1 (-390 *3 *2 *4 *5 *6)) (-4 *3 (-284)) (-4 *5 (-385 *2 *4)) (-14 *6 (-1169 *5)))) (-1261 (*1 *1 *2) (-12 (-5 *2 (-1169 *6)) (-4 *6 (-385 *4 *5)) (-4 *4 (-921 *3)) (-4 *5 (-1145 *4)) (-4 *3 (-284)) (-5 *1 (-390 *3 *4 *5 *6 *7)) (-14 *7 *2))) (-1261 (*1 *1 *2) (-12 (-5 *2 (-389 *3 *4 *5 *6)) (-4 *6 (-964 *4)) (-4 *3 (-284)) (-4 *4 (-921 *3)) (-4 *5 (-1145 *4)) (-4 *6 (-385 *4 *5)) (-14 *7 (-1169 *6)) (-5 *1 (-390 *3 *4 *5 *6 *7)))))
-(-13 (-666) (-10 -8 (-15 -2922 ((-1169 |#4|) $)) (-15 -2765 (|#2| $)) (-15 -1261 ($ (-1169 |#4|))) (IF (|has| |#4| (-964 |#2|)) (-15 -1261 ($ (-389 |#1| |#2| |#3| |#4|))) |%noBranch|)))
-((-3015 ((|#3| (-1 |#4| |#2|) |#1|) 26)))
-(((-391 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3015 (|#3| (-1 |#4| |#2|) |#1|))) (-393 |#2|) (-158) (-393 |#4|) (-158)) (T -391))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-158)) (-4 *6 (-158)) (-4 *2 (-393 *6)) (-5 *1 (-391 *4 *5 *2 *6)) (-4 *4 (-393 *5)))))
-(-10 -7 (-15 -3015 (|#3| (-1 |#4| |#2|) |#1|)))
-((-1895 (((-3 $ "failed")) 86)) (-2279 (((-1169 (-629 |#2|)) (-1169 $)) NIL) (((-1169 (-629 |#2|))) 91)) (-1563 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) 85)) (-3869 (((-3 $ "failed")) 84)) (-4067 (((-629 |#2|) (-1169 $)) NIL) (((-629 |#2|)) 102)) (-2358 (((-629 |#2|) $ (-1169 $)) NIL) (((-629 |#2|) $) 110)) (-2717 (((-1083 (-883 |#2|))) 55)) (-1772 ((|#2| (-1169 $)) NIL) ((|#2|) 106)) (-3322 (($ (-1169 |#2|) (-1169 $)) NIL) (($ (-1169 |#2|)) 113)) (-4111 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) 83)) (-3575 (((-3 $ "failed")) 75)) (-2216 (((-629 |#2|) (-1169 $)) NIL) (((-629 |#2|)) 100)) (-2225 (((-629 |#2|) $ (-1169 $)) NIL) (((-629 |#2|) $) 108)) (-2975 (((-1083 (-883 |#2|))) 54)) (-1242 ((|#2| (-1169 $)) NIL) ((|#2|) 104)) (-2411 (((-1169 |#2|) $ (-1169 $)) NIL) (((-629 |#2|) (-1169 $) (-1169 $)) NIL) (((-1169 |#2|) $) NIL) (((-629 |#2|) (-1169 $)) 112)) (-3077 (((-1169 |#2|) $) 96) (($ (-1169 |#2|)) 98)) (-1948 (((-589 (-883 |#2|)) (-1169 $)) NIL) (((-589 (-883 |#2|))) 94)) (-3817 (($ (-629 |#2|) $) 90)))
-(((-392 |#1| |#2|) (-10 -8 (-15 -3817 (|#1| (-629 |#2|) |#1|)) (-15 -2717 ((-1083 (-883 |#2|)))) (-15 -2975 ((-1083 (-883 |#2|)))) (-15 -2358 ((-629 |#2|) |#1|)) (-15 -2225 ((-629 |#2|) |#1|)) (-15 -4067 ((-629 |#2|))) (-15 -2216 ((-629 |#2|))) (-15 -1772 (|#2|)) (-15 -1242 (|#2|)) (-15 -3077 (|#1| (-1169 |#2|))) (-15 -3077 ((-1169 |#2|) |#1|)) (-15 -3322 (|#1| (-1169 |#2|))) (-15 -1948 ((-589 (-883 |#2|)))) (-15 -2279 ((-1169 (-629 |#2|)))) (-15 -2411 ((-629 |#2|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1|)) (-15 -1895 ((-3 |#1| "failed"))) (-15 -3869 ((-3 |#1| "failed"))) (-15 -3575 ((-3 |#1| "failed"))) (-15 -1563 ((-3 (-2 (|:| |particular| |#1|) (|:| -2922 (-589 |#1|))) "failed"))) (-15 -4111 ((-3 (-2 (|:| |particular| |#1|) (|:| -2922 (-589 |#1|))) "failed"))) (-15 -4067 ((-629 |#2|) (-1169 |#1|))) (-15 -2216 ((-629 |#2|) (-1169 |#1|))) (-15 -1772 (|#2| (-1169 |#1|))) (-15 -1242 (|#2| (-1169 |#1|))) (-15 -3322 (|#1| (-1169 |#2|) (-1169 |#1|))) (-15 -2411 ((-629 |#2|) (-1169 |#1|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1| (-1169 |#1|))) (-15 -2358 ((-629 |#2|) |#1| (-1169 |#1|))) (-15 -2225 ((-629 |#2|) |#1| (-1169 |#1|))) (-15 -2279 ((-1169 (-629 |#2|)) (-1169 |#1|))) (-15 -1948 ((-589 (-883 |#2|)) (-1169 |#1|)))) (-393 |#2|) (-158)) (T -392))
-((-2279 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-1169 (-629 *4))) (-5 *1 (-392 *3 *4)) (-4 *3 (-393 *4)))) (-1948 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-589 (-883 *4))) (-5 *1 (-392 *3 *4)) (-4 *3 (-393 *4)))) (-1242 (*1 *2) (-12 (-4 *2 (-158)) (-5 *1 (-392 *3 *2)) (-4 *3 (-393 *2)))) (-1772 (*1 *2) (-12 (-4 *2 (-158)) (-5 *1 (-392 *3 *2)) (-4 *3 (-393 *2)))) (-2216 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-629 *4)) (-5 *1 (-392 *3 *4)) (-4 *3 (-393 *4)))) (-4067 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-629 *4)) (-5 *1 (-392 *3 *4)) (-4 *3 (-393 *4)))) (-2975 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-1083 (-883 *4))) (-5 *1 (-392 *3 *4)) (-4 *3 (-393 *4)))) (-2717 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-1083 (-883 *4))) (-5 *1 (-392 *3 *4)) (-4 *3 (-393 *4)))))
-(-10 -8 (-15 -3817 (|#1| (-629 |#2|) |#1|)) (-15 -2717 ((-1083 (-883 |#2|)))) (-15 -2975 ((-1083 (-883 |#2|)))) (-15 -2358 ((-629 |#2|) |#1|)) (-15 -2225 ((-629 |#2|) |#1|)) (-15 -4067 ((-629 |#2|))) (-15 -2216 ((-629 |#2|))) (-15 -1772 (|#2|)) (-15 -1242 (|#2|)) (-15 -3077 (|#1| (-1169 |#2|))) (-15 -3077 ((-1169 |#2|) |#1|)) (-15 -3322 (|#1| (-1169 |#2|))) (-15 -1948 ((-589 (-883 |#2|)))) (-15 -2279 ((-1169 (-629 |#2|)))) (-15 -2411 ((-629 |#2|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1|)) (-15 -1895 ((-3 |#1| "failed"))) (-15 -3869 ((-3 |#1| "failed"))) (-15 -3575 ((-3 |#1| "failed"))) (-15 -1563 ((-3 (-2 (|:| |particular| |#1|) (|:| -2922 (-589 |#1|))) "failed"))) (-15 -4111 ((-3 (-2 (|:| |particular| |#1|) (|:| -2922 (-589 |#1|))) "failed"))) (-15 -4067 ((-629 |#2|) (-1169 |#1|))) (-15 -2216 ((-629 |#2|) (-1169 |#1|))) (-15 -1772 (|#2| (-1169 |#1|))) (-15 -1242 (|#2| (-1169 |#1|))) (-15 -3322 (|#1| (-1169 |#2|) (-1169 |#1|))) (-15 -2411 ((-629 |#2|) (-1169 |#1|) (-1169 |#1|))) (-15 -2411 ((-1169 |#2|) |#1| (-1169 |#1|))) (-15 -2358 ((-629 |#2|) |#1| (-1169 |#1|))) (-15 -2225 ((-629 |#2|) |#1| (-1169 |#1|))) (-15 -2279 ((-1169 (-629 |#2|)) (-1169 |#1|))) (-15 -1948 ((-589 (-883 |#2|)) (-1169 |#1|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-1895 (((-3 $ "failed")) 37 (|has| |#1| (-515)))) (-2999 (((-3 $ "failed") $ $) 19)) (-2279 (((-1169 (-629 |#1|)) (-1169 $)) 78) (((-1169 (-629 |#1|))) 100)) (-3513 (((-1169 $)) 81)) (-1640 (($) 17 T CONST)) (-1563 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) 40 (|has| |#1| (-515)))) (-3869 (((-3 $ "failed")) 38 (|has| |#1| (-515)))) (-4067 (((-629 |#1|) (-1169 $)) 65) (((-629 |#1|)) 92)) (-2507 ((|#1| $) 74)) (-2358 (((-629 |#1|) $ (-1169 $)) 76) (((-629 |#1|) $) 90)) (-2439 (((-3 $ "failed") $) 45 (|has| |#1| (-515)))) (-2717 (((-1083 (-883 |#1|))) 88 (|has| |#1| (-339)))) (-2966 (($ $ (-852)) 28)) (-2860 ((|#1| $) 72)) (-2119 (((-1083 |#1|) $) 42 (|has| |#1| (-515)))) (-1772 ((|#1| (-1169 $)) 67) ((|#1|) 94)) (-2196 (((-1083 |#1|) $) 63)) (-3953 (((-108)) 57)) (-3322 (($ (-1169 |#1|) (-1169 $)) 69) (($ (-1169 |#1|)) 98)) (-4211 (((-3 $ "failed") $) 47 (|has| |#1| (-515)))) (-2262 (((-852)) 80)) (-3091 (((-108)) 54)) (-1935 (($ $ (-852)) 33)) (-3562 (((-108)) 50)) (-3877 (((-108)) 48)) (-3868 (((-108)) 52)) (-4111 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) 41 (|has| |#1| (-515)))) (-3575 (((-3 $ "failed")) 39 (|has| |#1| (-515)))) (-2216 (((-629 |#1|) (-1169 $)) 66) (((-629 |#1|)) 93)) (-1870 ((|#1| $) 75)) (-2225 (((-629 |#1|) $ (-1169 $)) 77) (((-629 |#1|) $) 91)) (-3790 (((-3 $ "failed") $) 46 (|has| |#1| (-515)))) (-2975 (((-1083 (-883 |#1|))) 89 (|has| |#1| (-339)))) (-2165 (($ $ (-852)) 29)) (-1876 ((|#1| $) 73)) (-1393 (((-1083 |#1|) $) 43 (|has| |#1| (-515)))) (-1242 ((|#1| (-1169 $)) 68) ((|#1|) 95)) (-1292 (((-1083 |#1|) $) 64)) (-1519 (((-108)) 58)) (-3841 (((-1070) $) 9)) (-1279 (((-108)) 49)) (-1466 (((-108)) 51)) (-1597 (((-108)) 53)) (-2435 (((-1034) $) 10)) (-2375 (((-108)) 56)) (-1502 ((|#1| $ (-523)) 101)) (-2411 (((-1169 |#1|) $ (-1169 $)) 71) (((-629 |#1|) (-1169 $) (-1169 $)) 70) (((-1169 |#1|) $) 103) (((-629 |#1|) (-1169 $)) 102)) (-3077 (((-1169 |#1|) $) 97) (($ (-1169 |#1|)) 96)) (-1948 (((-589 (-883 |#1|)) (-1169 $)) 79) (((-589 (-883 |#1|))) 99)) (-2306 (($ $ $) 25)) (-2178 (((-108)) 62)) (-3976 (((-794) $) 11)) (-2922 (((-1169 $)) 104)) (-1842 (((-589 (-1169 |#1|))) 44 (|has| |#1| (-515)))) (-3377 (($ $ $ $) 26)) (-1363 (((-108)) 60)) (-3817 (($ (-629 |#1|) $) 87)) (-1952 (($ $ $) 24)) (-3931 (((-108)) 61)) (-3433 (((-108)) 59)) (-4001 (((-108)) 55)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 30)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
-(((-393 |#1|) (-129) (-158)) (T -393))
-((-2922 (*1 *2) (-12 (-4 *3 (-158)) (-5 *2 (-1169 *1)) (-4 *1 (-393 *3)))) (-2411 (*1 *2 *1) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-1169 *3)))) (-2411 (*1 *2 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-393 *4)) (-4 *4 (-158)) (-5 *2 (-629 *4)))) (-1502 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-4 *1 (-393 *2)) (-4 *2 (-158)))) (-2279 (*1 *2) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-1169 (-629 *3))))) (-1948 (*1 *2) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-589 (-883 *3))))) (-3322 (*1 *1 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-158)) (-4 *1 (-393 *3)))) (-3077 (*1 *2 *1) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-1169 *3)))) (-3077 (*1 *1 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-158)) (-4 *1 (-393 *3)))) (-1242 (*1 *2) (-12 (-4 *1 (-393 *2)) (-4 *2 (-158)))) (-1772 (*1 *2) (-12 (-4 *1 (-393 *2)) (-4 *2 (-158)))) (-2216 (*1 *2) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-629 *3)))) (-4067 (*1 *2) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-629 *3)))) (-2225 (*1 *2 *1) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-629 *3)))) (-2358 (*1 *2 *1) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-629 *3)))) (-2975 (*1 *2) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-4 *3 (-339)) (-5 *2 (-1083 (-883 *3))))) (-2717 (*1 *2) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-4 *3 (-339)) (-5 *2 (-1083 (-883 *3))))) (-3817 (*1 *1 *2 *1) (-12 (-5 *2 (-629 *3)) (-4 *1 (-393 *3)) (-4 *3 (-158)))))
-(-13 (-343 |t#1|) (-10 -8 (-15 -2922 ((-1169 $))) (-15 -2411 ((-1169 |t#1|) $)) (-15 -2411 ((-629 |t#1|) (-1169 $))) (-15 -1502 (|t#1| $ (-523))) (-15 -2279 ((-1169 (-629 |t#1|)))) (-15 -1948 ((-589 (-883 |t#1|)))) (-15 -3322 ($ (-1169 |t#1|))) (-15 -3077 ((-1169 |t#1|) $)) (-15 -3077 ($ (-1169 |t#1|))) (-15 -1242 (|t#1|)) (-15 -1772 (|t#1|)) (-15 -2216 ((-629 |t#1|))) (-15 -4067 ((-629 |t#1|))) (-15 -2225 ((-629 |t#1|) $)) (-15 -2358 ((-629 |t#1|) $)) (IF (|has| |t#1| (-339)) (PROGN (-15 -2975 ((-1083 (-883 |t#1|)))) (-15 -2717 ((-1083 (-883 |t#1|))))) |%noBranch|) (-15 -3817 ($ (-629 |t#1|) $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-563 (-794)) . T) ((-343 |#1|) . T) ((-591 |#1|) . T) ((-657 |#1|) . T) ((-660) . T) ((-684 |#1|) . T) ((-701) . T) ((-979 |#1|) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 42)) (-2291 (($ $) 57)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 145)) (-3950 (($ $) NIL)) (-3226 (((-108) $) 36)) (-1895 ((|#1| $) 13)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL (|has| |#1| (-1127)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-1127)))) (-3192 (($ |#1| (-523)) 31)) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) 115)) (-1996 (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) 55)) (-4211 (((-3 $ "failed") $) 130)) (-4031 (((-3 (-383 (-523)) "failed") $) 63 (|has| |#1| (-508)))) (-1310 (((-108) $) 59 (|has| |#1| (-508)))) (-1600 (((-383 (-523)) $) 61 (|has| |#1| (-508)))) (-2342 (($ |#1| (-523)) 33)) (-1330 (((-108) $) 151 (|has| |#1| (-1127)))) (-3482 (((-108) $) 43)) (-2586 (((-710) $) 38)) (-1794 (((-3 "nil" "sqfr" "irred" "prime") $ (-523)) 136)) (-3019 ((|#1| $ (-523)) 135)) (-2370 (((-523) $ (-523)) 134)) (-3823 (($ |#1| (-523)) 30)) (-3015 (($ (-1 |#1| |#1|) $) 142)) (-2205 (($ |#1| (-589 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-523))))) 58)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-3841 (((-1070) $) NIL)) (-3572 (($ |#1| (-523)) 32)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-427)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) 146 (|has| |#1| (-427)))) (-2702 (($ |#1| (-523) (-3 "nil" "sqfr" "irred" "prime")) 29)) (-3286 (((-589 (-2 (|:| -3573 |#1|) (|:| -3262 (-523)))) $) 54)) (-1311 (((-589 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-523)))) $) 12)) (-3573 (((-394 $) $) NIL (|has| |#1| (-1127)))) (-2469 (((-3 $ "failed") $ $) 137)) (-3262 (((-523) $) 131)) (-1276 ((|#1| $) 56)) (-1349 (($ $ (-589 |#1|) (-589 |#1|)) NIL (|has| |#1| (-286 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-286 |#1|))) (($ $ (-271 |#1|)) NIL (|has| |#1| (-286 |#1|))) (($ $ (-589 (-271 |#1|))) 78 (|has| |#1| (-286 |#1|))) (($ $ (-589 (-1087)) (-589 |#1|)) 84 (|has| |#1| (-484 (-1087) |#1|))) (($ $ (-1087) |#1|) NIL (|has| |#1| (-484 (-1087) |#1|))) (($ $ (-1087) $) NIL (|has| |#1| (-484 (-1087) $))) (($ $ (-589 (-1087)) (-589 $)) 85 (|has| |#1| (-484 (-1087) $))) (($ $ (-589 (-271 $))) 81 (|has| |#1| (-286 $))) (($ $ (-271 $)) NIL (|has| |#1| (-286 $))) (($ $ $ $) NIL (|has| |#1| (-286 $))) (($ $ (-589 $) (-589 $)) NIL (|has| |#1| (-286 $)))) (-1502 (($ $ |#1|) 70 (|has| |#1| (-263 |#1| |#1|))) (($ $ $) 71 (|has| |#1| (-263 $ $)))) (-4024 (($ $) NIL (|has| |#1| (-211))) (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) 141)) (-3077 (((-499) $) 27 (|has| |#1| (-564 (-499)))) (((-355) $) 91 (|has| |#1| (-949))) (((-203) $) 94 (|has| |#1| (-949)))) (-3976 (((-794) $) 113) (($ (-523)) 46) (($ $) NIL) (($ |#1|) 45) (($ (-383 (-523))) NIL (|has| |#1| (-964 (-383 (-523)))))) (-1698 (((-710)) 48)) (-3842 (((-108) $ $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 40 T CONST)) (-1440 (($) 39 T CONST)) (-1943 (($ $) NIL (|has| |#1| (-211))) (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4037 (((-108) $ $) 95)) (-4115 (($ $) 127) (($ $ $) NIL)) (-4103 (($ $ $) 139)) (** (($ $ (-852)) NIL) (($ $ (-710)) 101)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 50) (($ $ $) 49) (($ |#1| $) 51) (($ $ |#1|) NIL)))
-(((-394 |#1|) (-13 (-515) (-209 |#1|) (-37 |#1|) (-314 |#1|) (-387 |#1|) (-10 -8 (-15 -1276 (|#1| $)) (-15 -3262 ((-523) $)) (-15 -2205 ($ |#1| (-589 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-523)))))) (-15 -1311 ((-589 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-523)))) $)) (-15 -3823 ($ |#1| (-523))) (-15 -3286 ((-589 (-2 (|:| -3573 |#1|) (|:| -3262 (-523)))) $)) (-15 -3572 ($ |#1| (-523))) (-15 -2370 ((-523) $ (-523))) (-15 -3019 (|#1| $ (-523))) (-15 -1794 ((-3 "nil" "sqfr" "irred" "prime") $ (-523))) (-15 -2586 ((-710) $)) (-15 -2342 ($ |#1| (-523))) (-15 -3192 ($ |#1| (-523))) (-15 -2702 ($ |#1| (-523) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -1895 (|#1| $)) (-15 -2291 ($ $)) (-15 -3015 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-427)) (-6 (-427)) |%noBranch|) (IF (|has| |#1| (-949)) (-6 (-949)) |%noBranch|) (IF (|has| |#1| (-1127)) (-6 (-1127)) |%noBranch|) (IF (|has| |#1| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|) (IF (|has| |#1| (-508)) (PROGN (-15 -1310 ((-108) $)) (-15 -1600 ((-383 (-523)) $)) (-15 -4031 ((-3 (-383 (-523)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-263 $ $)) (-6 (-263 $ $)) |%noBranch|) (IF (|has| |#1| (-286 $)) (-6 (-286 $)) |%noBranch|) (IF (|has| |#1| (-484 (-1087) $)) (-6 (-484 (-1087) $)) |%noBranch|))) (-515)) (T -394))
-((-3015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-515)) (-5 *1 (-394 *3)))) (-1276 (*1 *2 *1) (-12 (-5 *1 (-394 *2)) (-4 *2 (-515)))) (-3262 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-394 *3)) (-4 *3 (-515)))) (-2205 (*1 *1 *2 *3) (-12 (-5 *3 (-589 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2) (|:| |xpnt| (-523))))) (-4 *2 (-515)) (-5 *1 (-394 *2)))) (-1311 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3) (|:| |xpnt| (-523))))) (-5 *1 (-394 *3)) (-4 *3 (-515)))) (-3823 (*1 *1 *2 *3) (-12 (-5 *3 (-523)) (-5 *1 (-394 *2)) (-4 *2 (-515)))) (-3286 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| -3573 *3) (|:| -3262 (-523))))) (-5 *1 (-394 *3)) (-4 *3 (-515)))) (-3572 (*1 *1 *2 *3) (-12 (-5 *3 (-523)) (-5 *1 (-394 *2)) (-4 *2 (-515)))) (-2370 (*1 *2 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-394 *3)) (-4 *3 (-515)))) (-3019 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *1 (-394 *2)) (-4 *2 (-515)))) (-1794 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-394 *4)) (-4 *4 (-515)))) (-2586 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-394 *3)) (-4 *3 (-515)))) (-2342 (*1 *1 *2 *3) (-12 (-5 *3 (-523)) (-5 *1 (-394 *2)) (-4 *2 (-515)))) (-3192 (*1 *1 *2 *3) (-12 (-5 *3 (-523)) (-5 *1 (-394 *2)) (-4 *2 (-515)))) (-2702 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-523)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-394 *2)) (-4 *2 (-515)))) (-1895 (*1 *2 *1) (-12 (-5 *1 (-394 *2)) (-4 *2 (-515)))) (-2291 (*1 *1 *1) (-12 (-5 *1 (-394 *2)) (-4 *2 (-515)))) (-1310 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-394 *3)) (-4 *3 (-508)) (-4 *3 (-515)))) (-1600 (*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-394 *3)) (-4 *3 (-508)) (-4 *3 (-515)))) (-4031 (*1 *2 *1) (|partial| -12 (-5 *2 (-383 (-523))) (-5 *1 (-394 *3)) (-4 *3 (-508)) (-4 *3 (-515)))))
-(-13 (-515) (-209 |#1|) (-37 |#1|) (-314 |#1|) (-387 |#1|) (-10 -8 (-15 -1276 (|#1| $)) (-15 -3262 ((-523) $)) (-15 -2205 ($ |#1| (-589 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-523)))))) (-15 -1311 ((-589 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-523)))) $)) (-15 -3823 ($ |#1| (-523))) (-15 -3286 ((-589 (-2 (|:| -3573 |#1|) (|:| -3262 (-523)))) $)) (-15 -3572 ($ |#1| (-523))) (-15 -2370 ((-523) $ (-523))) (-15 -3019 (|#1| $ (-523))) (-15 -1794 ((-3 "nil" "sqfr" "irred" "prime") $ (-523))) (-15 -2586 ((-710) $)) (-15 -2342 ($ |#1| (-523))) (-15 -3192 ($ |#1| (-523))) (-15 -2702 ($ |#1| (-523) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -1895 (|#1| $)) (-15 -2291 ($ $)) (-15 -3015 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-427)) (-6 (-427)) |%noBranch|) (IF (|has| |#1| (-949)) (-6 (-949)) |%noBranch|) (IF (|has| |#1| (-1127)) (-6 (-1127)) |%noBranch|) (IF (|has| |#1| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|) (IF (|has| |#1| (-508)) (PROGN (-15 -1310 ((-108) $)) (-15 -1600 ((-383 (-523)) $)) (-15 -4031 ((-3 (-383 (-523)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-263 $ $)) (-6 (-263 $ $)) |%noBranch|) (IF (|has| |#1| (-286 $)) (-6 (-286 $)) |%noBranch|) (IF (|has| |#1| (-484 (-1087) $)) (-6 (-484 (-1087) $)) |%noBranch|)))
-((-1482 (((-394 |#1|) (-394 |#1|) (-1 (-394 |#1|) |#1|)) 21)) (-2645 (((-394 |#1|) (-394 |#1|) (-394 |#1|)) 16)))
-(((-395 |#1|) (-10 -7 (-15 -1482 ((-394 |#1|) (-394 |#1|) (-1 (-394 |#1|) |#1|))) (-15 -2645 ((-394 |#1|) (-394 |#1|) (-394 |#1|)))) (-515)) (T -395))
-((-2645 (*1 *2 *2 *2) (-12 (-5 *2 (-394 *3)) (-4 *3 (-515)) (-5 *1 (-395 *3)))) (-1482 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-394 *4) *4)) (-4 *4 (-515)) (-5 *2 (-394 *4)) (-5 *1 (-395 *4)))))
-(-10 -7 (-15 -1482 ((-394 |#1|) (-394 |#1|) (-1 (-394 |#1|) |#1|))) (-15 -2645 ((-394 |#1|) (-394 |#1|) (-394 |#1|))))
-((-2895 ((|#2| |#2|) 166)) (-1706 (((-3 (|:| |%expansion| (-289 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1070)) (|:| |prob| (-1070))))) |#2| (-108)) 57)))
-(((-396 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1706 ((-3 (|:| |%expansion| (-289 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1070)) (|:| |prob| (-1070))))) |#2| (-108))) (-15 -2895 (|#2| |#2|))) (-13 (-427) (-786) (-964 (-523)) (-585 (-523))) (-13 (-27) (-1109) (-406 |#1|)) (-1087) |#2|) (T -396))
-((-2895 (*1 *2 *2) (-12 (-4 *3 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-396 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1109) (-406 *3))) (-14 *4 (-1087)) (-14 *5 *2))) (-1706 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-3 (|:| |%expansion| (-289 *5 *3 *6 *7)) (|:| |%problem| (-2 (|:| |func| (-1070)) (|:| |prob| (-1070)))))) (-5 *1 (-396 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1109) (-406 *5))) (-14 *6 (-1087)) (-14 *7 *3))))
-(-10 -7 (-15 -1706 ((-3 (|:| |%expansion| (-289 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1070)) (|:| |prob| (-1070))))) |#2| (-108))) (-15 -2895 (|#2| |#2|)))
-((-3015 ((|#4| (-1 |#3| |#1|) |#2|) 11)))
-(((-397 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3015 (|#4| (-1 |#3| |#1|) |#2|))) (-13 (-973) (-786)) (-406 |#1|) (-13 (-973) (-786)) (-406 |#3|)) (T -397))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-13 (-973) (-786))) (-4 *6 (-13 (-973) (-786))) (-4 *2 (-406 *6)) (-5 *1 (-397 *5 *4 *6 *2)) (-4 *4 (-406 *5)))))
-(-10 -7 (-15 -3015 (|#4| (-1 |#3| |#1|) |#2|)))
-((-2895 ((|#2| |#2|) 90)) (-2466 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1070)) (|:| |prob| (-1070))))) |#2| (-108) (-1070)) 48)) (-3420 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1070)) (|:| |prob| (-1070))))) |#2| (-108) (-1070)) 154)))
-(((-398 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2466 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1070)) (|:| |prob| (-1070))))) |#2| (-108) (-1070))) (-15 -3420 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1070)) (|:| |prob| (-1070))))) |#2| (-108) (-1070))) (-15 -2895 (|#2| |#2|))) (-13 (-427) (-786) (-964 (-523)) (-585 (-523))) (-13 (-27) (-1109) (-406 |#1|) (-10 -8 (-15 -3976 ($ |#3|)))) (-784) (-13 (-1147 |#2| |#3|) (-339) (-1109) (-10 -8 (-15 -4024 ($ $)) (-15 -2669 ($ $)))) (-912 |#4|) (-1087)) (T -398))
-((-2895 (*1 *2 *2) (-12 (-4 *3 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-4 *2 (-13 (-27) (-1109) (-406 *3) (-10 -8 (-15 -3976 ($ *4))))) (-4 *4 (-784)) (-4 *5 (-13 (-1147 *2 *4) (-339) (-1109) (-10 -8 (-15 -4024 ($ $)) (-15 -2669 ($ $))))) (-5 *1 (-398 *3 *2 *4 *5 *6 *7)) (-4 *6 (-912 *5)) (-14 *7 (-1087)))) (-3420 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-108)) (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-4 *3 (-13 (-27) (-1109) (-406 *6) (-10 -8 (-15 -3976 ($ *7))))) (-4 *7 (-784)) (-4 *8 (-13 (-1147 *3 *7) (-339) (-1109) (-10 -8 (-15 -4024 ($ $)) (-15 -2669 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1070)) (|:| |prob| (-1070)))))) (-5 *1 (-398 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1070)) (-4 *9 (-912 *8)) (-14 *10 (-1087)))) (-2466 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-108)) (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-4 *3 (-13 (-27) (-1109) (-406 *6) (-10 -8 (-15 -3976 ($ *7))))) (-4 *7 (-784)) (-4 *8 (-13 (-1147 *3 *7) (-339) (-1109) (-10 -8 (-15 -4024 ($ $)) (-15 -2669 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1070)) (|:| |prob| (-1070)))))) (-5 *1 (-398 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1070)) (-4 *9 (-912 *8)) (-14 *10 (-1087)))))
-(-10 -7 (-15 -2466 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1070)) (|:| |prob| (-1070))))) |#2| (-108) (-1070))) (-15 -3420 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1070)) (|:| |prob| (-1070))))) |#2| (-108) (-1070))) (-15 -2895 (|#2| |#2|)))
-((-1586 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-1830 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-3015 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
-(((-399 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3015 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1830 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1586 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1016) (-401 |#1|) (-1016) (-401 |#3|)) (T -399))
-((-1586 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1016)) (-4 *5 (-1016)) (-4 *2 (-401 *5)) (-5 *1 (-399 *6 *4 *5 *2)) (-4 *4 (-401 *6)))) (-1830 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1016)) (-4 *2 (-1016)) (-5 *1 (-399 *5 *4 *2 *6)) (-4 *4 (-401 *5)) (-4 *6 (-401 *2)))) (-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *2 (-401 *6)) (-5 *1 (-399 *5 *4 *6 *2)) (-4 *4 (-401 *5)))))
-(-10 -7 (-15 -3015 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1830 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1586 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-2054 (($) 44)) (-2073 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 40)) (-1767 (($ $ $) 39)) (-2607 (((-108) $ $) 28)) (-3843 (((-710)) 47)) (-4033 (($ (-589 |#2|)) 20) (($) NIL)) (-3461 (($) 53)) (-3268 ((|#2| $) 61)) (-2644 ((|#2| $) 59)) (-4076 (((-852) $) 55)) (-1625 (($ $ $) 35)) (-2557 (($ (-852)) 50)) (-2973 (($ $ |#2|) NIL) (($ $ $) 38)) (-2452 (((-710) (-1 (-108) |#2|) $) NIL) (((-710) |#2| $) 26)) (-3985 (($ (-589 |#2|)) 24)) (-2479 (($ $) 46)) (-3976 (((-794) $) 33)) (-1596 (((-710) $) 21)) (-2000 (($ (-589 |#2|)) 19) (($) NIL)) (-4037 (((-108) $ $) 16)) (-4052 (((-108) $ $) 13)))
-(((-400 |#1| |#2|) (-10 -8 (-15 -3843 ((-710))) (-15 -2557 (|#1| (-852))) (-15 -4076 ((-852) |#1|)) (-15 -3461 (|#1|)) (-15 -3268 (|#2| |#1|)) (-15 -2644 (|#2| |#1|)) (-15 -2054 (|#1|)) (-15 -2479 (|#1| |#1|)) (-15 -1596 ((-710) |#1|)) (-15 -4037 ((-108) |#1| |#1|)) (-15 -3976 ((-794) |#1|)) (-15 -4052 ((-108) |#1| |#1|)) (-15 -2000 (|#1|)) (-15 -2000 (|#1| (-589 |#2|))) (-15 -4033 (|#1|)) (-15 -4033 (|#1| (-589 |#2|))) (-15 -1625 (|#1| |#1| |#1|)) (-15 -2973 (|#1| |#1| |#1|)) (-15 -2973 (|#1| |#1| |#2|)) (-15 -1767 (|#1| |#1| |#1|)) (-15 -2607 ((-108) |#1| |#1|)) (-15 -2073 (|#1| |#1| |#1|)) (-15 -2073 (|#1| |#1| |#2|)) (-15 -2073 (|#1| |#2| |#1|)) (-15 -3985 (|#1| (-589 |#2|))) (-15 -2452 ((-710) |#2| |#1|)) (-15 -2452 ((-710) (-1 (-108) |#2|) |#1|))) (-401 |#2|) (-1016)) (T -400))
-((-3843 (*1 *2) (-12 (-4 *4 (-1016)) (-5 *2 (-710)) (-5 *1 (-400 *3 *4)) (-4 *3 (-401 *4)))))
-(-10 -8 (-15 -3843 ((-710))) (-15 -2557 (|#1| (-852))) (-15 -4076 ((-852) |#1|)) (-15 -3461 (|#1|)) (-15 -3268 (|#2| |#1|)) (-15 -2644 (|#2| |#1|)) (-15 -2054 (|#1|)) (-15 -2479 (|#1| |#1|)) (-15 -1596 ((-710) |#1|)) (-15 -4037 ((-108) |#1| |#1|)) (-15 -3976 ((-794) |#1|)) (-15 -4052 ((-108) |#1| |#1|)) (-15 -2000 (|#1|)) (-15 -2000 (|#1| (-589 |#2|))) (-15 -4033 (|#1|)) (-15 -4033 (|#1| (-589 |#2|))) (-15 -1625 (|#1| |#1| |#1|)) (-15 -2973 (|#1| |#1| |#1|)) (-15 -2973 (|#1| |#1| |#2|)) (-15 -1767 (|#1| |#1| |#1|)) (-15 -2607 ((-108) |#1| |#1|)) (-15 -2073 (|#1| |#1| |#1|)) (-15 -2073 (|#1| |#1| |#2|)) (-15 -2073 (|#1| |#2| |#1|)) (-15 -3985 (|#1| (-589 |#2|))) (-15 -2452 ((-710) |#2| |#1|)) (-15 -2452 ((-710) (-1 (-108) |#2|) |#1|)))
-((-3260 (((-108) $ $) 19)) (-2054 (($) 67 (|has| |#1| (-344)))) (-2073 (($ |#1| $) 82) (($ $ |#1|) 81) (($ $ $) 80)) (-1767 (($ $ $) 78)) (-2607 (((-108) $ $) 79)) (-2282 (((-108) $ (-710)) 8)) (-3843 (((-710)) 61 (|has| |#1| (-344)))) (-4033 (($ (-589 |#1|)) 74) (($) 73)) (-3627 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4248)))) (-1640 (($) 7 T CONST)) (-3917 (($ $) 58 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-1869 (($ |#1| $) 47 (|has| $ (-6 -4248))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4248)))) (-2231 (($ |#1| $) 57 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4248)))) (-3461 (($) 64 (|has| |#1| (-344)))) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-3268 ((|#1| $) 65 (|has| |#1| (-786)))) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2644 ((|#1| $) 66 (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4076 (((-852) $) 63 (|has| |#1| (-344)))) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22)) (-1625 (($ $ $) 75)) (-2349 ((|#1| $) 39)) (-3862 (($ |#1| $) 40)) (-2557 (($ (-852)) 62 (|has| |#1| (-344)))) (-2435 (((-1034) $) 21)) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-1322 ((|#1| $) 41)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-2973 (($ $ |#1|) 77) (($ $ $) 76)) (-1771 (($) 49) (($ (-589 |#1|)) 48)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3077 (((-499) $) 59 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 50)) (-2479 (($ $) 68 (|has| |#1| (-344)))) (-3976 (((-794) $) 18)) (-1596 (((-710) $) 69)) (-2000 (($ (-589 |#1|)) 72) (($) 71)) (-1245 (($ (-589 |#1|)) 42)) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20)) (-4052 (((-108) $ $) 70)) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-401 |#1|) (-129) (-1016)) (T -401))
-((-1596 (*1 *2 *1) (-12 (-4 *1 (-401 *3)) (-4 *3 (-1016)) (-5 *2 (-710)))) (-2479 (*1 *1 *1) (-12 (-4 *1 (-401 *2)) (-4 *2 (-1016)) (-4 *2 (-344)))) (-2054 (*1 *1) (-12 (-4 *1 (-401 *2)) (-4 *2 (-344)) (-4 *2 (-1016)))) (-2644 (*1 *2 *1) (-12 (-4 *1 (-401 *2)) (-4 *2 (-1016)) (-4 *2 (-786)))) (-3268 (*1 *2 *1) (-12 (-4 *1 (-401 *2)) (-4 *2 (-1016)) (-4 *2 (-786)))))
-(-13 (-207 |t#1|) (-1014 |t#1|) (-10 -8 (-6 -4248) (-15 -1596 ((-710) $)) (IF (|has| |t#1| (-344)) (PROGN (-6 (-344)) (-15 -2479 ($ $)) (-15 -2054 ($))) |%noBranch|) (IF (|has| |t#1| (-786)) (PROGN (-15 -2644 (|t#1| $)) (-15 -3268 (|t#1| $))) |%noBranch|)))
-(((-33) . T) ((-102 |#1|) . T) ((-97) . T) ((-563 (-794)) . T) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-207 |#1|) . T) ((-213 |#1|) . T) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-344) |has| |#1| (-344)) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-1014 |#1|) . T) ((-1016) . T) ((-1123) . T))
-((-4149 (((-540 |#2|) |#2| (-1087)) 36)) (-3432 (((-540 |#2|) |#2| (-1087)) 20)) (-2826 ((|#2| |#2| (-1087)) 25)))
-(((-402 |#1| |#2|) (-10 -7 (-15 -3432 ((-540 |#2|) |#2| (-1087))) (-15 -4149 ((-540 |#2|) |#2| (-1087))) (-15 -2826 (|#2| |#2| (-1087)))) (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))) (-13 (-1109) (-29 |#1|))) (T -402))
-((-2826 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *1 (-402 *4 *2)) (-4 *2 (-13 (-1109) (-29 *4))))) (-4149 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-4 *5 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *2 (-540 *3)) (-5 *1 (-402 *5 *3)) (-4 *3 (-13 (-1109) (-29 *5))))) (-3432 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-4 *5 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *2 (-540 *3)) (-5 *1 (-402 *5 *3)) (-4 *3 (-13 (-1109) (-29 *5))))))
-(-10 -7 (-15 -3432 ((-540 |#2|) |#2| (-1087))) (-15 -4149 ((-540 |#2|) |#2| (-1087))) (-15 -2826 (|#2| |#2| (-1087))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-4211 (((-3 $ "failed") $) NIL)) (-3482 (((-108) $) NIL)) (-1684 (($ |#2| |#1|) 35)) (-1653 (($ |#2| |#1|) 33)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#1|) NIL) (($ (-307 |#2|)) 25)) (-1698 (((-710)) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 10 T CONST)) (-1440 (($) 16 T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) 34)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 36) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-403 |#1| |#2|) (-13 (-37 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4235)) (IF (|has| |#1| (-6 -4235)) (-6 -4235) |%noBranch|) |%noBranch|) (-15 -3976 ($ |#1|)) (-15 -3976 ($ (-307 |#2|))) (-15 -1684 ($ |#2| |#1|)) (-15 -1653 ($ |#2| |#1|)))) (-13 (-158) (-37 (-383 (-523)))) (-13 (-786) (-21))) (T -403))
-((-3976 (*1 *1 *2) (-12 (-5 *1 (-403 *2 *3)) (-4 *2 (-13 (-158) (-37 (-383 (-523))))) (-4 *3 (-13 (-786) (-21))))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-307 *4)) (-4 *4 (-13 (-786) (-21))) (-5 *1 (-403 *3 *4)) (-4 *3 (-13 (-158) (-37 (-383 (-523))))))) (-1684 (*1 *1 *2 *3) (-12 (-5 *1 (-403 *3 *2)) (-4 *3 (-13 (-158) (-37 (-383 (-523))))) (-4 *2 (-13 (-786) (-21))))) (-1653 (*1 *1 *2 *3) (-12 (-5 *1 (-403 *3 *2)) (-4 *3 (-13 (-158) (-37 (-383 (-523))))) (-4 *2 (-13 (-786) (-21))))))
-(-13 (-37 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4235)) (IF (|has| |#1| (-6 -4235)) (-6 -4235) |%noBranch|) |%noBranch|) (-15 -3976 ($ |#1|)) (-15 -3976 ($ (-307 |#2|))) (-15 -1684 ($ |#2| |#1|)) (-15 -1653 ($ |#2| |#1|))))
-((-2669 (((-3 |#2| (-589 |#2|)) |#2| (-1087)) 109)))
-(((-404 |#1| |#2|) (-10 -7 (-15 -2669 ((-3 |#2| (-589 |#2|)) |#2| (-1087)))) (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))) (-13 (-1109) (-889) (-29 |#1|))) (T -404))
-((-2669 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-4 *5 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *2 (-3 *3 (-589 *3))) (-5 *1 (-404 *5 *3)) (-4 *3 (-13 (-1109) (-889) (-29 *5))))))
-(-10 -7 (-15 -2669 ((-3 |#2| (-589 |#2|)) |#2| (-1087))))
-((-3716 (((-589 (-1087)) $) 72)) (-3540 (((-383 (-1083 $)) $ (-562 $)) 273)) (-3834 (($ $ (-271 $)) NIL) (($ $ (-589 (-271 $))) NIL) (($ $ (-589 (-562 $)) (-589 $)) 237)) (-2898 (((-3 (-562 $) "failed") $) NIL) (((-3 (-1087) "failed") $) 75) (((-3 (-523) "failed") $) NIL) (((-3 |#2| "failed") $) 233) (((-3 (-383 (-883 |#2|)) "failed") $) 324) (((-3 (-883 |#2|) "failed") $) 235) (((-3 (-383 (-523)) "failed") $) NIL)) (-1996 (((-562 $) $) NIL) (((-1087) $) 30) (((-523) $) NIL) ((|#2| $) 231) (((-383 (-883 |#2|)) $) 305) (((-883 |#2|) $) 232) (((-383 (-523)) $) NIL)) (-1564 (((-110) (-110)) 47)) (-2364 (($ $) 87)) (-2215 (((-3 (-562 $) "failed") $) 228)) (-3526 (((-589 (-562 $)) $) 229)) (-3818 (((-3 (-589 $) "failed") $) 247)) (-3372 (((-3 (-2 (|:| |val| $) (|:| -3262 (-523))) "failed") $) 254)) (-1973 (((-3 (-589 $) "failed") $) 245)) (-2695 (((-3 (-2 (|:| -2275 (-523)) (|:| |var| (-562 $))) "failed") $) 264)) (-3719 (((-3 (-2 (|:| |var| (-562 $)) (|:| -3262 (-523))) "failed") $) 251) (((-3 (-2 (|:| |var| (-562 $)) (|:| -3262 (-523))) "failed") $ (-110)) 217) (((-3 (-2 (|:| |var| (-562 $)) (|:| -3262 (-523))) "failed") $ (-1087)) 219)) (-3084 (((-108) $) 19)) (-3095 ((|#2| $) 21)) (-1349 (($ $ (-562 $) $) NIL) (($ $ (-589 (-562 $)) (-589 $)) 236) (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-589 (-1087)) (-589 (-1 $ $))) NIL) (($ $ (-589 (-1087)) (-589 (-1 $ (-589 $)))) 96) (($ $ (-1087) (-1 $ (-589 $))) NIL) (($ $ (-1087) (-1 $ $)) NIL) (($ $ (-589 (-110)) (-589 (-1 $ $))) NIL) (($ $ (-589 (-110)) (-589 (-1 $ (-589 $)))) NIL) (($ $ (-110) (-1 $ (-589 $))) NIL) (($ $ (-110) (-1 $ $)) NIL) (($ $ (-1087)) 57) (($ $ (-589 (-1087))) 240) (($ $) 241) (($ $ (-110) $ (-1087)) 60) (($ $ (-589 (-110)) (-589 $) (-1087)) 67) (($ $ (-589 (-1087)) (-589 (-710)) (-589 (-1 $ $))) 107) (($ $ (-589 (-1087)) (-589 (-710)) (-589 (-1 $ (-589 $)))) 242) (($ $ (-1087) (-710) (-1 $ (-589 $))) 94) (($ $ (-1087) (-710) (-1 $ $)) 93)) (-1502 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-589 $)) 106)) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087)) 238)) (-3758 (($ $) 284)) (-3077 (((-823 (-523)) $) 257) (((-823 (-355)) $) 261) (($ (-394 $)) 320) (((-499) $) NIL)) (-3976 (((-794) $) 239) (($ (-562 $)) 84) (($ (-1087)) 26) (($ |#2|) NIL) (($ (-1039 |#2| (-562 $))) NIL) (($ (-383 |#2|)) 289) (($ (-883 (-383 |#2|))) 329) (($ (-383 (-883 (-383 |#2|)))) 301) (($ (-383 (-883 |#2|))) 295) (($ $) NIL) (($ (-883 |#2|)) 185) (($ (-383 (-523))) 334) (($ (-523)) NIL)) (-1698 (((-710)) 79)) (-1651 (((-108) (-110)) 41)) (-3840 (($ (-1087) $) 33) (($ (-1087) $ $) 34) (($ (-1087) $ $ $) 35) (($ (-1087) $ $ $ $) 36) (($ (-1087) (-589 $)) 39)) (* (($ (-383 (-523)) $) NIL) (($ $ (-383 (-523))) NIL) (($ |#2| $) 266) (($ $ |#2|) NIL) (($ $ $) NIL) (($ (-523) $) NIL) (($ (-710) $) NIL) (($ (-852) $) NIL)))
-(((-405 |#1| |#2|) (-10 -8 (-15 * (|#1| (-852) |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1698 ((-710))) (-15 -3976 (|#1| (-523))) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -3077 ((-499) |#1|)) (-15 -1996 ((-883 |#2|) |#1|)) (-15 -2898 ((-3 (-883 |#2|) "failed") |#1|)) (-15 -3976 (|#1| (-883 |#2|))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3976 (|#1| |#1|)) (-15 * (|#1| |#1| (-383 (-523)))) (-15 * (|#1| (-383 (-523)) |#1|)) (-15 -1996 ((-383 (-883 |#2|)) |#1|)) (-15 -2898 ((-3 (-383 (-883 |#2|)) "failed") |#1|)) (-15 -3976 (|#1| (-383 (-883 |#2|)))) (-15 -3540 ((-383 (-1083 |#1|)) |#1| (-562 |#1|))) (-15 -3976 (|#1| (-383 (-883 (-383 |#2|))))) (-15 -3976 (|#1| (-883 (-383 |#2|)))) (-15 -3976 (|#1| (-383 |#2|))) (-15 -3758 (|#1| |#1|)) (-15 -3077 (|#1| (-394 |#1|))) (-15 -1349 (|#1| |#1| (-1087) (-710) (-1 |#1| |#1|))) (-15 -1349 (|#1| |#1| (-1087) (-710) (-1 |#1| (-589 |#1|)))) (-15 -1349 (|#1| |#1| (-589 (-1087)) (-589 (-710)) (-589 (-1 |#1| (-589 |#1|))))) (-15 -1349 (|#1| |#1| (-589 (-1087)) (-589 (-710)) (-589 (-1 |#1| |#1|)))) (-15 -3372 ((-3 (-2 (|:| |val| |#1|) (|:| -3262 (-523))) "failed") |#1|)) (-15 -3719 ((-3 (-2 (|:| |var| (-562 |#1|)) (|:| -3262 (-523))) "failed") |#1| (-1087))) (-15 -3719 ((-3 (-2 (|:| |var| (-562 |#1|)) (|:| -3262 (-523))) "failed") |#1| (-110))) (-15 -2364 (|#1| |#1|)) (-15 -3976 (|#1| (-1039 |#2| (-562 |#1|)))) (-15 -2695 ((-3 (-2 (|:| -2275 (-523)) (|:| |var| (-562 |#1|))) "failed") |#1|)) (-15 -1973 ((-3 (-589 |#1|) "failed") |#1|)) (-15 -3719 ((-3 (-2 (|:| |var| (-562 |#1|)) (|:| -3262 (-523))) "failed") |#1|)) (-15 -3818 ((-3 (-589 |#1|) "failed") |#1|)) (-15 -1349 (|#1| |#1| (-589 (-110)) (-589 |#1|) (-1087))) (-15 -1349 (|#1| |#1| (-110) |#1| (-1087))) (-15 -1349 (|#1| |#1|)) (-15 -1349 (|#1| |#1| (-589 (-1087)))) (-15 -1349 (|#1| |#1| (-1087))) (-15 -3840 (|#1| (-1087) (-589 |#1|))) (-15 -3840 (|#1| (-1087) |#1| |#1| |#1| |#1|)) (-15 -3840 (|#1| (-1087) |#1| |#1| |#1|)) (-15 -3840 (|#1| (-1087) |#1| |#1|)) (-15 -3840 (|#1| (-1087) |#1|)) (-15 -3716 ((-589 (-1087)) |#1|)) (-15 -3095 (|#2| |#1|)) (-15 -3084 ((-108) |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -3976 (|#1| |#2|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -3077 ((-823 (-355)) |#1|)) (-15 -3077 ((-823 (-523)) |#1|)) (-15 -1996 ((-1087) |#1|)) (-15 -2898 ((-3 (-1087) "failed") |#1|)) (-15 -3976 (|#1| (-1087))) (-15 -1349 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -1349 (|#1| |#1| (-110) (-1 |#1| (-589 |#1|)))) (-15 -1349 (|#1| |#1| (-589 (-110)) (-589 (-1 |#1| (-589 |#1|))))) (-15 -1349 (|#1| |#1| (-589 (-110)) (-589 (-1 |#1| |#1|)))) (-15 -1349 (|#1| |#1| (-1087) (-1 |#1| |#1|))) (-15 -1349 (|#1| |#1| (-1087) (-1 |#1| (-589 |#1|)))) (-15 -1349 (|#1| |#1| (-589 (-1087)) (-589 (-1 |#1| (-589 |#1|))))) (-15 -1349 (|#1| |#1| (-589 (-1087)) (-589 (-1 |#1| |#1|)))) (-15 -1651 ((-108) (-110))) (-15 -1564 ((-110) (-110))) (-15 -3526 ((-589 (-562 |#1|)) |#1|)) (-15 -2215 ((-3 (-562 |#1|) "failed") |#1|)) (-15 -3834 (|#1| |#1| (-589 (-562 |#1|)) (-589 |#1|))) (-15 -3834 (|#1| |#1| (-589 (-271 |#1|)))) (-15 -3834 (|#1| |#1| (-271 |#1|))) (-15 -1502 (|#1| (-110) (-589 |#1|))) (-15 -1502 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -1502 (|#1| (-110) |#1| |#1| |#1|)) (-15 -1502 (|#1| (-110) |#1| |#1|)) (-15 -1502 (|#1| (-110) |#1|)) (-15 -1349 (|#1| |#1| (-589 |#1|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#1| |#1|)) (-15 -1349 (|#1| |#1| (-271 |#1|))) (-15 -1349 (|#1| |#1| (-589 (-271 |#1|)))) (-15 -1349 (|#1| |#1| (-589 (-562 |#1|)) (-589 |#1|))) (-15 -1349 (|#1| |#1| (-562 |#1|) |#1|)) (-15 -1996 ((-562 |#1|) |#1|)) (-15 -2898 ((-3 (-562 |#1|) "failed") |#1|)) (-15 -3976 (|#1| (-562 |#1|))) (-15 -3976 ((-794) |#1|))) (-406 |#2|) (-786)) (T -405))
-((-1564 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *4 (-786)) (-5 *1 (-405 *3 *4)) (-4 *3 (-406 *4)))) (-1651 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *5 (-786)) (-5 *2 (-108)) (-5 *1 (-405 *4 *5)) (-4 *4 (-406 *5)))) (-1698 (*1 *2) (-12 (-4 *4 (-786)) (-5 *2 (-710)) (-5 *1 (-405 *3 *4)) (-4 *3 (-406 *4)))))
-(-10 -8 (-15 * (|#1| (-852) |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1698 ((-710))) (-15 -3976 (|#1| (-523))) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -3077 ((-499) |#1|)) (-15 -1996 ((-883 |#2|) |#1|)) (-15 -2898 ((-3 (-883 |#2|) "failed") |#1|)) (-15 -3976 (|#1| (-883 |#2|))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3976 (|#1| |#1|)) (-15 * (|#1| |#1| (-383 (-523)))) (-15 * (|#1| (-383 (-523)) |#1|)) (-15 -1996 ((-383 (-883 |#2|)) |#1|)) (-15 -2898 ((-3 (-383 (-883 |#2|)) "failed") |#1|)) (-15 -3976 (|#1| (-383 (-883 |#2|)))) (-15 -3540 ((-383 (-1083 |#1|)) |#1| (-562 |#1|))) (-15 -3976 (|#1| (-383 (-883 (-383 |#2|))))) (-15 -3976 (|#1| (-883 (-383 |#2|)))) (-15 -3976 (|#1| (-383 |#2|))) (-15 -3758 (|#1| |#1|)) (-15 -3077 (|#1| (-394 |#1|))) (-15 -1349 (|#1| |#1| (-1087) (-710) (-1 |#1| |#1|))) (-15 -1349 (|#1| |#1| (-1087) (-710) (-1 |#1| (-589 |#1|)))) (-15 -1349 (|#1| |#1| (-589 (-1087)) (-589 (-710)) (-589 (-1 |#1| (-589 |#1|))))) (-15 -1349 (|#1| |#1| (-589 (-1087)) (-589 (-710)) (-589 (-1 |#1| |#1|)))) (-15 -3372 ((-3 (-2 (|:| |val| |#1|) (|:| -3262 (-523))) "failed") |#1|)) (-15 -3719 ((-3 (-2 (|:| |var| (-562 |#1|)) (|:| -3262 (-523))) "failed") |#1| (-1087))) (-15 -3719 ((-3 (-2 (|:| |var| (-562 |#1|)) (|:| -3262 (-523))) "failed") |#1| (-110))) (-15 -2364 (|#1| |#1|)) (-15 -3976 (|#1| (-1039 |#2| (-562 |#1|)))) (-15 -2695 ((-3 (-2 (|:| -2275 (-523)) (|:| |var| (-562 |#1|))) "failed") |#1|)) (-15 -1973 ((-3 (-589 |#1|) "failed") |#1|)) (-15 -3719 ((-3 (-2 (|:| |var| (-562 |#1|)) (|:| -3262 (-523))) "failed") |#1|)) (-15 -3818 ((-3 (-589 |#1|) "failed") |#1|)) (-15 -1349 (|#1| |#1| (-589 (-110)) (-589 |#1|) (-1087))) (-15 -1349 (|#1| |#1| (-110) |#1| (-1087))) (-15 -1349 (|#1| |#1|)) (-15 -1349 (|#1| |#1| (-589 (-1087)))) (-15 -1349 (|#1| |#1| (-1087))) (-15 -3840 (|#1| (-1087) (-589 |#1|))) (-15 -3840 (|#1| (-1087) |#1| |#1| |#1| |#1|)) (-15 -3840 (|#1| (-1087) |#1| |#1| |#1|)) (-15 -3840 (|#1| (-1087) |#1| |#1|)) (-15 -3840 (|#1| (-1087) |#1|)) (-15 -3716 ((-589 (-1087)) |#1|)) (-15 -3095 (|#2| |#1|)) (-15 -3084 ((-108) |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -3976 (|#1| |#2|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -3077 ((-823 (-355)) |#1|)) (-15 -3077 ((-823 (-523)) |#1|)) (-15 -1996 ((-1087) |#1|)) (-15 -2898 ((-3 (-1087) "failed") |#1|)) (-15 -3976 (|#1| (-1087))) (-15 -1349 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -1349 (|#1| |#1| (-110) (-1 |#1| (-589 |#1|)))) (-15 -1349 (|#1| |#1| (-589 (-110)) (-589 (-1 |#1| (-589 |#1|))))) (-15 -1349 (|#1| |#1| (-589 (-110)) (-589 (-1 |#1| |#1|)))) (-15 -1349 (|#1| |#1| (-1087) (-1 |#1| |#1|))) (-15 -1349 (|#1| |#1| (-1087) (-1 |#1| (-589 |#1|)))) (-15 -1349 (|#1| |#1| (-589 (-1087)) (-589 (-1 |#1| (-589 |#1|))))) (-15 -1349 (|#1| |#1| (-589 (-1087)) (-589 (-1 |#1| |#1|)))) (-15 -1651 ((-108) (-110))) (-15 -1564 ((-110) (-110))) (-15 -3526 ((-589 (-562 |#1|)) |#1|)) (-15 -2215 ((-3 (-562 |#1|) "failed") |#1|)) (-15 -3834 (|#1| |#1| (-589 (-562 |#1|)) (-589 |#1|))) (-15 -3834 (|#1| |#1| (-589 (-271 |#1|)))) (-15 -3834 (|#1| |#1| (-271 |#1|))) (-15 -1502 (|#1| (-110) (-589 |#1|))) (-15 -1502 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -1502 (|#1| (-110) |#1| |#1| |#1|)) (-15 -1502 (|#1| (-110) |#1| |#1|)) (-15 -1502 (|#1| (-110) |#1|)) (-15 -1349 (|#1| |#1| (-589 |#1|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#1| |#1|)) (-15 -1349 (|#1| |#1| (-271 |#1|))) (-15 -1349 (|#1| |#1| (-589 (-271 |#1|)))) (-15 -1349 (|#1| |#1| (-589 (-562 |#1|)) (-589 |#1|))) (-15 -1349 (|#1| |#1| (-562 |#1|) |#1|)) (-15 -1996 ((-562 |#1|) |#1|)) (-15 -2898 ((-3 (-562 |#1|) "failed") |#1|)) (-15 -3976 (|#1| (-562 |#1|))) (-15 -3976 ((-794) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 116 (|has| |#1| (-25)))) (-3716 (((-589 (-1087)) $) 203)) (-3540 (((-383 (-1083 $)) $ (-562 $)) 171 (|has| |#1| (-515)))) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 143 (|has| |#1| (-515)))) (-3950 (($ $) 144 (|has| |#1| (-515)))) (-3226 (((-108) $) 146 (|has| |#1| (-515)))) (-2394 (((-589 (-562 $)) $) 44)) (-2999 (((-3 $ "failed") $ $) 118 (|has| |#1| (-21)))) (-3834 (($ $ (-271 $)) 56) (($ $ (-589 (-271 $))) 55) (($ $ (-589 (-562 $)) (-589 $)) 54)) (-3763 (($ $) 163 (|has| |#1| (-515)))) (-2105 (((-394 $) $) 164 (|has| |#1| (-515)))) (-3684 (((-108) $ $) 154 (|has| |#1| (-515)))) (-1640 (($) 102 (-3255 (|has| |#1| (-1028)) (|has| |#1| (-25))) CONST)) (-2898 (((-3 (-562 $) "failed") $) 69) (((-3 (-1087) "failed") $) 216) (((-3 (-523) "failed") $) 209 (|has| |#1| (-964 (-523)))) (((-3 |#1| "failed") $) 207) (((-3 (-383 (-883 |#1|)) "failed") $) 169 (|has| |#1| (-515))) (((-3 (-883 |#1|) "failed") $) 123 (|has| |#1| (-973))) (((-3 (-383 (-523)) "failed") $) 95 (-3255 (-12 (|has| |#1| (-964 (-523))) (|has| |#1| (-515))) (|has| |#1| (-964 (-383 (-523))))))) (-1996 (((-562 $) $) 68) (((-1087) $) 215) (((-523) $) 210 (|has| |#1| (-964 (-523)))) ((|#1| $) 206) (((-383 (-883 |#1|)) $) 168 (|has| |#1| (-515))) (((-883 |#1|) $) 122 (|has| |#1| (-973))) (((-383 (-523)) $) 94 (-3255 (-12 (|has| |#1| (-964 (-523))) (|has| |#1| (-515))) (|has| |#1| (-964 (-383 (-523))))))) (-2501 (($ $ $) 158 (|has| |#1| (-515)))) (-2203 (((-629 (-523)) (-629 $)) 137 (-2819 (|has| |#1| (-585 (-523))) (|has| |#1| (-973)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 136 (-2819 (|has| |#1| (-585 (-523))) (|has| |#1| (-973)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) 135 (|has| |#1| (-973))) (((-629 |#1|) (-629 $)) 134 (|has| |#1| (-973)))) (-4211 (((-3 $ "failed") $) 105 (|has| |#1| (-1028)))) (-2486 (($ $ $) 157 (|has| |#1| (-515)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 152 (|has| |#1| (-515)))) (-1330 (((-108) $) 165 (|has| |#1| (-515)))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 212 (|has| |#1| (-817 (-523)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 211 (|has| |#1| (-817 (-355))))) (-4035 (($ $) 51) (($ (-589 $)) 50)) (-2856 (((-589 (-110)) $) 43)) (-1564 (((-110) (-110)) 42)) (-3482 (((-108) $) 103 (|has| |#1| (-1028)))) (-2126 (((-108) $) 22 (|has| $ (-964 (-523))))) (-2364 (($ $) 186 (|has| |#1| (-973)))) (-2164 (((-1039 |#1| (-562 $)) $) 187 (|has| |#1| (-973)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 161 (|has| |#1| (-515)))) (-4016 (((-1083 $) (-562 $)) 25 (|has| $ (-973)))) (-3268 (($ $ $) 13)) (-2644 (($ $ $) 14)) (-3015 (($ (-1 $ $) (-562 $)) 36)) (-2215 (((-3 (-562 $) "failed") $) 46)) (-2012 (($ (-589 $)) 150 (|has| |#1| (-515))) (($ $ $) 149 (|has| |#1| (-515)))) (-3841 (((-1070) $) 9)) (-3526 (((-589 (-562 $)) $) 45)) (-2217 (($ (-110) $) 38) (($ (-110) (-589 $)) 37)) (-3818 (((-3 (-589 $) "failed") $) 192 (|has| |#1| (-1028)))) (-3372 (((-3 (-2 (|:| |val| $) (|:| -3262 (-523))) "failed") $) 183 (|has| |#1| (-973)))) (-1973 (((-3 (-589 $) "failed") $) 190 (|has| |#1| (-25)))) (-2695 (((-3 (-2 (|:| -2275 (-523)) (|:| |var| (-562 $))) "failed") $) 189 (|has| |#1| (-25)))) (-3719 (((-3 (-2 (|:| |var| (-562 $)) (|:| -3262 (-523))) "failed") $) 191 (|has| |#1| (-1028))) (((-3 (-2 (|:| |var| (-562 $)) (|:| -3262 (-523))) "failed") $ (-110)) 185 (|has| |#1| (-973))) (((-3 (-2 (|:| |var| (-562 $)) (|:| -3262 (-523))) "failed") $ (-1087)) 184 (|has| |#1| (-973)))) (-2676 (((-108) $ (-110)) 40) (((-108) $ (-1087)) 39)) (-3071 (($ $) 107 (-3255 (|has| |#1| (-448)) (|has| |#1| (-515))))) (-1942 (((-710) $) 47)) (-2435 (((-1034) $) 10)) (-3084 (((-108) $) 205)) (-3095 ((|#1| $) 204)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 151 (|has| |#1| (-515)))) (-2056 (($ (-589 $)) 148 (|has| |#1| (-515))) (($ $ $) 147 (|has| |#1| (-515)))) (-3791 (((-108) $ $) 35) (((-108) $ (-1087)) 34)) (-3573 (((-394 $) $) 162 (|has| |#1| (-515)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 160 (|has| |#1| (-515))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 159 (|has| |#1| (-515)))) (-2469 (((-3 $ "failed") $ $) 142 (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 153 (|has| |#1| (-515)))) (-3775 (((-108) $) 23 (|has| $ (-964 (-523))))) (-1349 (($ $ (-562 $) $) 67) (($ $ (-589 (-562 $)) (-589 $)) 66) (($ $ (-589 (-271 $))) 65) (($ $ (-271 $)) 64) (($ $ $ $) 63) (($ $ (-589 $) (-589 $)) 62) (($ $ (-589 (-1087)) (-589 (-1 $ $))) 33) (($ $ (-589 (-1087)) (-589 (-1 $ (-589 $)))) 32) (($ $ (-1087) (-1 $ (-589 $))) 31) (($ $ (-1087) (-1 $ $)) 30) (($ $ (-589 (-110)) (-589 (-1 $ $))) 29) (($ $ (-589 (-110)) (-589 (-1 $ (-589 $)))) 28) (($ $ (-110) (-1 $ (-589 $))) 27) (($ $ (-110) (-1 $ $)) 26) (($ $ (-1087)) 197 (|has| |#1| (-564 (-499)))) (($ $ (-589 (-1087))) 196 (|has| |#1| (-564 (-499)))) (($ $) 195 (|has| |#1| (-564 (-499)))) (($ $ (-110) $ (-1087)) 194 (|has| |#1| (-564 (-499)))) (($ $ (-589 (-110)) (-589 $) (-1087)) 193 (|has| |#1| (-564 (-499)))) (($ $ (-589 (-1087)) (-589 (-710)) (-589 (-1 $ $))) 182 (|has| |#1| (-973))) (($ $ (-589 (-1087)) (-589 (-710)) (-589 (-1 $ (-589 $)))) 181 (|has| |#1| (-973))) (($ $ (-1087) (-710) (-1 $ (-589 $))) 180 (|has| |#1| (-973))) (($ $ (-1087) (-710) (-1 $ $)) 179 (|has| |#1| (-973)))) (-3087 (((-710) $) 155 (|has| |#1| (-515)))) (-1502 (($ (-110) $) 61) (($ (-110) $ $) 60) (($ (-110) $ $ $) 59) (($ (-110) $ $ $ $) 58) (($ (-110) (-589 $)) 57)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 156 (|has| |#1| (-515)))) (-2404 (($ $) 49) (($ $ $) 48)) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) 128 (|has| |#1| (-973))) (($ $ (-1087) (-710)) 127 (|has| |#1| (-973))) (($ $ (-589 (-1087))) 126 (|has| |#1| (-973))) (($ $ (-1087)) 125 (|has| |#1| (-973)))) (-3758 (($ $) 176 (|has| |#1| (-515)))) (-2171 (((-1039 |#1| (-562 $)) $) 177 (|has| |#1| (-515)))) (-3399 (($ $) 24 (|has| $ (-973)))) (-3077 (((-823 (-523)) $) 214 (|has| |#1| (-564 (-823 (-523))))) (((-823 (-355)) $) 213 (|has| |#1| (-564 (-823 (-355))))) (($ (-394 $)) 178 (|has| |#1| (-515))) (((-499) $) 97 (|has| |#1| (-564 (-499))))) (-1308 (($ $ $) 111 (|has| |#1| (-448)))) (-2306 (($ $ $) 112 (|has| |#1| (-448)))) (-3976 (((-794) $) 11) (($ (-562 $)) 70) (($ (-1087)) 217) (($ |#1|) 208) (($ (-1039 |#1| (-562 $))) 188 (|has| |#1| (-973))) (($ (-383 |#1|)) 174 (|has| |#1| (-515))) (($ (-883 (-383 |#1|))) 173 (|has| |#1| (-515))) (($ (-383 (-883 (-383 |#1|)))) 172 (|has| |#1| (-515))) (($ (-383 (-883 |#1|))) 170 (|has| |#1| (-515))) (($ $) 141 (|has| |#1| (-515))) (($ (-883 |#1|)) 124 (|has| |#1| (-973))) (($ (-383 (-523))) 96 (-3255 (|has| |#1| (-515)) (-12 (|has| |#1| (-964 (-523))) (|has| |#1| (-515))) (|has| |#1| (-964 (-383 (-523)))))) (($ (-523)) 93 (-3255 (|has| |#1| (-973)) (|has| |#1| (-964 (-523)))))) (-2301 (((-3 $ "failed") $) 138 (|has| |#1| (-134)))) (-1698 (((-710)) 133 (|has| |#1| (-973)))) (-4114 (($ $) 53) (($ (-589 $)) 52)) (-1651 (((-108) (-110)) 41)) (-3842 (((-108) $ $) 145 (|has| |#1| (-515)))) (-3840 (($ (-1087) $) 202) (($ (-1087) $ $) 201) (($ (-1087) $ $ $) 200) (($ (-1087) $ $ $ $) 199) (($ (-1087) (-589 $)) 198)) (-2573 (($ $ (-523)) 110 (-3255 (|has| |#1| (-448)) (|has| |#1| (-515)))) (($ $ (-710)) 104 (|has| |#1| (-1028))) (($ $ (-852)) 100 (|has| |#1| (-1028)))) (-1428 (($) 115 (|has| |#1| (-25)) CONST)) (-1440 (($) 101 (|has| |#1| (-1028)) CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) 132 (|has| |#1| (-973))) (($ $ (-1087) (-710)) 131 (|has| |#1| (-973))) (($ $ (-589 (-1087))) 130 (|has| |#1| (-973))) (($ $ (-1087)) 129 (|has| |#1| (-973)))) (-4078 (((-108) $ $) 16)) (-4061 (((-108) $ $) 17)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 15)) (-4052 (((-108) $ $) 18)) (-4125 (($ (-1039 |#1| (-562 $)) (-1039 |#1| (-562 $))) 175 (|has| |#1| (-515))) (($ $ $) 108 (-3255 (|has| |#1| (-448)) (|has| |#1| (-515))))) (-4115 (($ $ $) 120 (|has| |#1| (-21))) (($ $) 119 (|has| |#1| (-21)))) (-4103 (($ $ $) 113 (|has| |#1| (-25)))) (** (($ $ (-523)) 109 (-3255 (|has| |#1| (-448)) (|has| |#1| (-515)))) (($ $ (-710)) 106 (|has| |#1| (-1028))) (($ $ (-852)) 99 (|has| |#1| (-1028)))) (* (($ (-383 (-523)) $) 167 (|has| |#1| (-515))) (($ $ (-383 (-523))) 166 (|has| |#1| (-515))) (($ |#1| $) 140 (|has| |#1| (-158))) (($ $ |#1|) 139 (|has| |#1| (-158))) (($ (-523) $) 121 (|has| |#1| (-21))) (($ (-710) $) 117 (|has| |#1| (-25))) (($ (-852) $) 114 (|has| |#1| (-25))) (($ $ $) 98 (|has| |#1| (-1028)))))
-(((-406 |#1|) (-129) (-786)) (T -406))
-((-3084 (*1 *2 *1) (-12 (-4 *1 (-406 *3)) (-4 *3 (-786)) (-5 *2 (-108)))) (-3095 (*1 *2 *1) (-12 (-4 *1 (-406 *2)) (-4 *2 (-786)))) (-3716 (*1 *2 *1) (-12 (-4 *1 (-406 *3)) (-4 *3 (-786)) (-5 *2 (-589 (-1087))))) (-3840 (*1 *1 *2 *1) (-12 (-5 *2 (-1087)) (-4 *1 (-406 *3)) (-4 *3 (-786)))) (-3840 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1087)) (-4 *1 (-406 *3)) (-4 *3 (-786)))) (-3840 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1087)) (-4 *1 (-406 *3)) (-4 *3 (-786)))) (-3840 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1087)) (-4 *1 (-406 *3)) (-4 *3 (-786)))) (-3840 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-589 *1)) (-4 *1 (-406 *4)) (-4 *4 (-786)))) (-1349 (*1 *1 *1 *2) (-12 (-5 *2 (-1087)) (-4 *1 (-406 *3)) (-4 *3 (-786)) (-4 *3 (-564 (-499))))) (-1349 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-1087))) (-4 *1 (-406 *3)) (-4 *3 (-786)) (-4 *3 (-564 (-499))))) (-1349 (*1 *1 *1) (-12 (-4 *1 (-406 *2)) (-4 *2 (-786)) (-4 *2 (-564 (-499))))) (-1349 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1087)) (-4 *1 (-406 *4)) (-4 *4 (-786)) (-4 *4 (-564 (-499))))) (-1349 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-589 (-110))) (-5 *3 (-589 *1)) (-5 *4 (-1087)) (-4 *1 (-406 *5)) (-4 *5 (-786)) (-4 *5 (-564 (-499))))) (-3818 (*1 *2 *1) (|partial| -12 (-4 *3 (-1028)) (-4 *3 (-786)) (-5 *2 (-589 *1)) (-4 *1 (-406 *3)))) (-3719 (*1 *2 *1) (|partial| -12 (-4 *3 (-1028)) (-4 *3 (-786)) (-5 *2 (-2 (|:| |var| (-562 *1)) (|:| -3262 (-523)))) (-4 *1 (-406 *3)))) (-1973 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-786)) (-5 *2 (-589 *1)) (-4 *1 (-406 *3)))) (-2695 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-786)) (-5 *2 (-2 (|:| -2275 (-523)) (|:| |var| (-562 *1)))) (-4 *1 (-406 *3)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-1039 *3 (-562 *1))) (-4 *3 (-973)) (-4 *3 (-786)) (-4 *1 (-406 *3)))) (-2164 (*1 *2 *1) (-12 (-4 *3 (-973)) (-4 *3 (-786)) (-5 *2 (-1039 *3 (-562 *1))) (-4 *1 (-406 *3)))) (-2364 (*1 *1 *1) (-12 (-4 *1 (-406 *2)) (-4 *2 (-786)) (-4 *2 (-973)))) (-3719 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-110)) (-4 *4 (-973)) (-4 *4 (-786)) (-5 *2 (-2 (|:| |var| (-562 *1)) (|:| -3262 (-523)))) (-4 *1 (-406 *4)))) (-3719 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1087)) (-4 *4 (-973)) (-4 *4 (-786)) (-5 *2 (-2 (|:| |var| (-562 *1)) (|:| -3262 (-523)))) (-4 *1 (-406 *4)))) (-3372 (*1 *2 *1) (|partial| -12 (-4 *3 (-973)) (-4 *3 (-786)) (-5 *2 (-2 (|:| |val| *1) (|:| -3262 (-523)))) (-4 *1 (-406 *3)))) (-1349 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-589 (-1087))) (-5 *3 (-589 (-710))) (-5 *4 (-589 (-1 *1 *1))) (-4 *1 (-406 *5)) (-4 *5 (-786)) (-4 *5 (-973)))) (-1349 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-589 (-1087))) (-5 *3 (-589 (-710))) (-5 *4 (-589 (-1 *1 (-589 *1)))) (-4 *1 (-406 *5)) (-4 *5 (-786)) (-4 *5 (-973)))) (-1349 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1087)) (-5 *3 (-710)) (-5 *4 (-1 *1 (-589 *1))) (-4 *1 (-406 *5)) (-4 *5 (-786)) (-4 *5 (-973)))) (-1349 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1087)) (-5 *3 (-710)) (-5 *4 (-1 *1 *1)) (-4 *1 (-406 *5)) (-4 *5 (-786)) (-4 *5 (-973)))) (-3077 (*1 *1 *2) (-12 (-5 *2 (-394 *1)) (-4 *1 (-406 *3)) (-4 *3 (-515)) (-4 *3 (-786)))) (-2171 (*1 *2 *1) (-12 (-4 *3 (-515)) (-4 *3 (-786)) (-5 *2 (-1039 *3 (-562 *1))) (-4 *1 (-406 *3)))) (-3758 (*1 *1 *1) (-12 (-4 *1 (-406 *2)) (-4 *2 (-786)) (-4 *2 (-515)))) (-4125 (*1 *1 *2 *2) (-12 (-5 *2 (-1039 *3 (-562 *1))) (-4 *3 (-515)) (-4 *3 (-786)) (-4 *1 (-406 *3)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-383 *3)) (-4 *3 (-515)) (-4 *3 (-786)) (-4 *1 (-406 *3)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-883 (-383 *3))) (-4 *3 (-515)) (-4 *3 (-786)) (-4 *1 (-406 *3)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-383 (-883 (-383 *3)))) (-4 *3 (-515)) (-4 *3 (-786)) (-4 *1 (-406 *3)))) (-3540 (*1 *2 *1 *3) (-12 (-5 *3 (-562 *1)) (-4 *1 (-406 *4)) (-4 *4 (-786)) (-4 *4 (-515)) (-5 *2 (-383 (-1083 *1))))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-406 *3)) (-4 *3 (-786)) (-4 *3 (-1028)))))
-(-13 (-279) (-964 (-1087)) (-815 |t#1|) (-376 |t#1|) (-387 |t#1|) (-10 -8 (-15 -3084 ((-108) $)) (-15 -3095 (|t#1| $)) (-15 -3716 ((-589 (-1087)) $)) (-15 -3840 ($ (-1087) $)) (-15 -3840 ($ (-1087) $ $)) (-15 -3840 ($ (-1087) $ $ $)) (-15 -3840 ($ (-1087) $ $ $ $)) (-15 -3840 ($ (-1087) (-589 $))) (IF (|has| |t#1| (-564 (-499))) (PROGN (-6 (-564 (-499))) (-15 -1349 ($ $ (-1087))) (-15 -1349 ($ $ (-589 (-1087)))) (-15 -1349 ($ $)) (-15 -1349 ($ $ (-110) $ (-1087))) (-15 -1349 ($ $ (-589 (-110)) (-589 $) (-1087)))) |%noBranch|) (IF (|has| |t#1| (-1028)) (PROGN (-6 (-666)) (-15 ** ($ $ (-710))) (-15 -3818 ((-3 (-589 $) "failed") $)) (-15 -3719 ((-3 (-2 (|:| |var| (-562 $)) (|:| -3262 (-523))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-448)) (-6 (-448)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -1973 ((-3 (-589 $) "failed") $)) (-15 -2695 ((-3 (-2 (|:| -2275 (-523)) (|:| |var| (-562 $))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |t#1| (-973)) (PROGN (-6 (-973)) (-6 (-964 (-883 |t#1|))) (-6 (-831 (-1087))) (-6 (-353 |t#1|)) (-15 -3976 ($ (-1039 |t#1| (-562 $)))) (-15 -2164 ((-1039 |t#1| (-562 $)) $)) (-15 -2364 ($ $)) (-15 -3719 ((-3 (-2 (|:| |var| (-562 $)) (|:| -3262 (-523))) "failed") $ (-110))) (-15 -3719 ((-3 (-2 (|:| |var| (-562 $)) (|:| -3262 (-523))) "failed") $ (-1087))) (-15 -3372 ((-3 (-2 (|:| |val| $) (|:| -3262 (-523))) "failed") $)) (-15 -1349 ($ $ (-589 (-1087)) (-589 (-710)) (-589 (-1 $ $)))) (-15 -1349 ($ $ (-589 (-1087)) (-589 (-710)) (-589 (-1 $ (-589 $))))) (-15 -1349 ($ $ (-1087) (-710) (-1 $ (-589 $)))) (-15 -1349 ($ $ (-1087) (-710) (-1 $ $)))) |%noBranch|) (IF (|has| |t#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |t#1| (-134)) (-6 (-134)) |%noBranch|) (IF (|has| |t#1| (-158)) (-6 (-37 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-515)) (PROGN (-6 (-339)) (-6 (-964 (-383 (-883 |t#1|)))) (-15 -3077 ($ (-394 $))) (-15 -2171 ((-1039 |t#1| (-562 $)) $)) (-15 -3758 ($ $)) (-15 -4125 ($ (-1039 |t#1| (-562 $)) (-1039 |t#1| (-562 $)))) (-15 -3976 ($ (-383 |t#1|))) (-15 -3976 ($ (-883 (-383 |t#1|)))) (-15 -3976 ($ (-383 (-883 (-383 |t#1|))))) (-15 -3540 ((-383 (-1083 $)) $ (-562 $))) (IF (|has| |t#1| (-964 (-523))) (-6 (-964 (-383 (-523)))) |%noBranch|)) |%noBranch|)))
-(((-21) -3255 (|has| |#1| (-973)) (|has| |#1| (-515)) (|has| |#1| (-158)) (|has| |#1| (-136)) (|has| |#1| (-134)) (|has| |#1| (-21))) ((-23) -3255 (|has| |#1| (-973)) (|has| |#1| (-515)) (|has| |#1| (-158)) (|has| |#1| (-136)) (|has| |#1| (-134)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-25) -3255 (|has| |#1| (-973)) (|has| |#1| (-515)) (|has| |#1| (-158)) (|has| |#1| (-136)) (|has| |#1| (-134)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-37 #0=(-383 (-523))) |has| |#1| (-515)) ((-37 |#1|) |has| |#1| (-158)) ((-37 $) |has| |#1| (-515)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-515)) ((-107 |#1| |#1|) |has| |#1| (-158)) ((-107 $ $) |has| |#1| (-515)) ((-124) -3255 (|has| |#1| (-973)) (|has| |#1| (-515)) (|has| |#1| (-158)) (|has| |#1| (-136)) (|has| |#1| (-134)) (|has| |#1| (-21))) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) |has| |#1| (-515)) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-564 (-823 (-355))) |has| |#1| (-564 (-823 (-355)))) ((-564 (-823 (-523))) |has| |#1| (-564 (-823 (-523)))) ((-221) |has| |#1| (-515)) ((-267) |has| |#1| (-515)) ((-284) |has| |#1| (-515)) ((-286 $) . T) ((-279) . T) ((-339) |has| |#1| (-515)) ((-353 |#1|) |has| |#1| (-973)) ((-376 |#1|) . T) ((-387 |#1|) . T) ((-427) |has| |#1| (-515)) ((-448) |has| |#1| (-448)) ((-484 (-562 $) $) . T) ((-484 $ $) . T) ((-515) |has| |#1| (-515)) ((-591 #0#) |has| |#1| (-515)) ((-591 |#1|) |has| |#1| (-158)) ((-591 $) -3255 (|has| |#1| (-973)) (|has| |#1| (-515)) (|has| |#1| (-158)) (|has| |#1| (-136)) (|has| |#1| (-134))) ((-585 (-523)) -12 (|has| |#1| (-585 (-523))) (|has| |#1| (-973))) ((-585 |#1|) |has| |#1| (-973)) ((-657 #0#) |has| |#1| (-515)) ((-657 |#1|) |has| |#1| (-158)) ((-657 $) |has| |#1| (-515)) ((-666) -3255 (|has| |#1| (-1028)) (|has| |#1| (-973)) (|has| |#1| (-515)) (|has| |#1| (-448)) (|has| |#1| (-158)) (|has| |#1| (-136)) (|has| |#1| (-134))) ((-786) . T) ((-831 (-1087)) |has| |#1| (-973)) ((-817 (-355)) |has| |#1| (-817 (-355))) ((-817 (-523)) |has| |#1| (-817 (-523))) ((-815 |#1|) . T) ((-851) |has| |#1| (-515)) ((-964 (-383 (-523))) -3255 (|has| |#1| (-964 (-383 (-523)))) (-12 (|has| |#1| (-515)) (|has| |#1| (-964 (-523))))) ((-964 (-383 (-883 |#1|))) |has| |#1| (-515)) ((-964 (-523)) |has| |#1| (-964 (-523))) ((-964 (-562 $)) . T) ((-964 (-883 |#1|)) |has| |#1| (-973)) ((-964 (-1087)) . T) ((-964 |#1|) . T) ((-979 #0#) |has| |#1| (-515)) ((-979 |#1|) |has| |#1| (-158)) ((-979 $) |has| |#1| (-515)) ((-973) -3255 (|has| |#1| (-973)) (|has| |#1| (-515)) (|has| |#1| (-158)) (|has| |#1| (-136)) (|has| |#1| (-134))) ((-980) -3255 (|has| |#1| (-973)) (|has| |#1| (-515)) (|has| |#1| (-158)) (|has| |#1| (-136)) (|has| |#1| (-134))) ((-1028) -3255 (|has| |#1| (-1028)) (|has| |#1| (-973)) (|has| |#1| (-515)) (|has| |#1| (-448)) (|has| |#1| (-158)) (|has| |#1| (-136)) (|has| |#1| (-134))) ((-1016) . T) ((-1123) . T) ((-1127) |has| |#1| (-515)))
-((-2431 ((|#2| |#2| |#2|) 33)) (-1564 (((-110) (-110)) 44)) (-1531 ((|#2| |#2|) 66)) (-2959 ((|#2| |#2|) 69)) (-3959 ((|#2| |#2|) 32)) (-2985 ((|#2| |#2| |#2|) 35)) (-3558 ((|#2| |#2| |#2|) 37)) (-3198 ((|#2| |#2| |#2|) 34)) (-1278 ((|#2| |#2| |#2|) 36)) (-1651 (((-108) (-110)) 42)) (-3506 ((|#2| |#2|) 39)) (-2773 ((|#2| |#2|) 38)) (-3984 ((|#2| |#2|) 27)) (-3034 ((|#2| |#2| |#2|) 30) ((|#2| |#2|) 28)) (-3364 ((|#2| |#2| |#2|) 31)))
-(((-407 |#1| |#2|) (-10 -7 (-15 -1651 ((-108) (-110))) (-15 -1564 ((-110) (-110))) (-15 -3984 (|#2| |#2|)) (-15 -3034 (|#2| |#2|)) (-15 -3034 (|#2| |#2| |#2|)) (-15 -3364 (|#2| |#2| |#2|)) (-15 -3959 (|#2| |#2|)) (-15 -2431 (|#2| |#2| |#2|)) (-15 -3198 (|#2| |#2| |#2|)) (-15 -2985 (|#2| |#2| |#2|)) (-15 -1278 (|#2| |#2| |#2|)) (-15 -3558 (|#2| |#2| |#2|)) (-15 -2773 (|#2| |#2|)) (-15 -3506 (|#2| |#2|)) (-15 -2959 (|#2| |#2|)) (-15 -1531 (|#2| |#2|))) (-13 (-786) (-515)) (-406 |#1|)) (T -407))
-((-1531 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2)) (-4 *2 (-406 *3)))) (-2959 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2)) (-4 *2 (-406 *3)))) (-3506 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2)) (-4 *2 (-406 *3)))) (-2773 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2)) (-4 *2 (-406 *3)))) (-3558 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2)) (-4 *2 (-406 *3)))) (-1278 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2)) (-4 *2 (-406 *3)))) (-2985 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2)) (-4 *2 (-406 *3)))) (-3198 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2)) (-4 *2 (-406 *3)))) (-2431 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2)) (-4 *2 (-406 *3)))) (-3959 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2)) (-4 *2 (-406 *3)))) (-3364 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2)) (-4 *2 (-406 *3)))) (-3034 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2)) (-4 *2 (-406 *3)))) (-3034 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2)) (-4 *2 (-406 *3)))) (-3984 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2)) (-4 *2 (-406 *3)))) (-1564 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *4)) (-4 *4 (-406 *3)))) (-1651 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-108)) (-5 *1 (-407 *4 *5)) (-4 *5 (-406 *4)))))
-(-10 -7 (-15 -1651 ((-108) (-110))) (-15 -1564 ((-110) (-110))) (-15 -3984 (|#2| |#2|)) (-15 -3034 (|#2| |#2|)) (-15 -3034 (|#2| |#2| |#2|)) (-15 -3364 (|#2| |#2| |#2|)) (-15 -3959 (|#2| |#2|)) (-15 -2431 (|#2| |#2| |#2|)) (-15 -3198 (|#2| |#2| |#2|)) (-15 -2985 (|#2| |#2| |#2|)) (-15 -1278 (|#2| |#2| |#2|)) (-15 -3558 (|#2| |#2| |#2|)) (-15 -2773 (|#2| |#2|)) (-15 -3506 (|#2| |#2|)) (-15 -2959 (|#2| |#2|)) (-15 -1531 (|#2| |#2|)))
-((-2097 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1083 |#2|)) (|:| |pol2| (-1083 |#2|)) (|:| |prim| (-1083 |#2|))) |#2| |#2|) 97 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-589 (-1083 |#2|))) (|:| |prim| (-1083 |#2|))) (-589 |#2|)) 61)))
-(((-408 |#1| |#2|) (-10 -7 (-15 -2097 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-589 (-1083 |#2|))) (|:| |prim| (-1083 |#2|))) (-589 |#2|))) (IF (|has| |#2| (-27)) (-15 -2097 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1083 |#2|)) (|:| |pol2| (-1083 |#2|)) (|:| |prim| (-1083 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-515) (-786) (-136)) (-406 |#1|)) (T -408))
-((-2097 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-515) (-786) (-136))) (-5 *2 (-2 (|:| |primelt| *3) (|:| |pol1| (-1083 *3)) (|:| |pol2| (-1083 *3)) (|:| |prim| (-1083 *3)))) (-5 *1 (-408 *4 *3)) (-4 *3 (-27)) (-4 *3 (-406 *4)))) (-2097 (*1 *2 *3) (-12 (-5 *3 (-589 *5)) (-4 *5 (-406 *4)) (-4 *4 (-13 (-515) (-786) (-136))) (-5 *2 (-2 (|:| |primelt| *5) (|:| |poly| (-589 (-1083 *5))) (|:| |prim| (-1083 *5)))) (-5 *1 (-408 *4 *5)))))
-(-10 -7 (-15 -2097 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-589 (-1083 |#2|))) (|:| |prim| (-1083 |#2|))) (-589 |#2|))) (IF (|has| |#2| (-27)) (-15 -2097 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1083 |#2|)) (|:| |pol2| (-1083 |#2|)) (|:| |prim| (-1083 |#2|))) |#2| |#2|)) |%noBranch|))
-((-1975 (((-1174)) 19)) (-4094 (((-1083 (-383 (-523))) |#2| (-562 |#2|)) 41) (((-383 (-523)) |#2|) 25)))
-(((-409 |#1| |#2|) (-10 -7 (-15 -4094 ((-383 (-523)) |#2|)) (-15 -4094 ((-1083 (-383 (-523))) |#2| (-562 |#2|))) (-15 -1975 ((-1174)))) (-13 (-786) (-515) (-964 (-523))) (-406 |#1|)) (T -409))
-((-1975 (*1 *2) (-12 (-4 *3 (-13 (-786) (-515) (-964 (-523)))) (-5 *2 (-1174)) (-5 *1 (-409 *3 *4)) (-4 *4 (-406 *3)))) (-4094 (*1 *2 *3 *4) (-12 (-5 *4 (-562 *3)) (-4 *3 (-406 *5)) (-4 *5 (-13 (-786) (-515) (-964 (-523)))) (-5 *2 (-1083 (-383 (-523)))) (-5 *1 (-409 *5 *3)))) (-4094 (*1 *2 *3) (-12 (-4 *4 (-13 (-786) (-515) (-964 (-523)))) (-5 *2 (-383 (-523))) (-5 *1 (-409 *4 *3)) (-4 *3 (-406 *4)))))
-(-10 -7 (-15 -4094 ((-383 (-523)) |#2|)) (-15 -4094 ((-1083 (-383 (-523))) |#2| (-562 |#2|))) (-15 -1975 ((-1174))))
-((-1241 (((-108) $) 28)) (-1303 (((-108) $) 30)) (-3500 (((-108) $) 31)) (-2730 (((-108) $) 34)) (-1991 (((-108) $) 29)) (-2666 (((-108) $) 33)) (-3976 (((-794) $) 18) (($ (-1070)) 27) (($ (-1087)) 23) (((-1087) $) 22) (((-1020) $) 21)) (-1548 (((-108) $) 32)) (-4037 (((-108) $ $) 15)))
-(((-410) (-13 (-563 (-794)) (-10 -8 (-15 -3976 ($ (-1070))) (-15 -3976 ($ (-1087))) (-15 -3976 ((-1087) $)) (-15 -3976 ((-1020) $)) (-15 -1241 ((-108) $)) (-15 -1991 ((-108) $)) (-15 -3500 ((-108) $)) (-15 -2666 ((-108) $)) (-15 -2730 ((-108) $)) (-15 -1548 ((-108) $)) (-15 -1303 ((-108) $)) (-15 -4037 ((-108) $ $))))) (T -410))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-410)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-410)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-410)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-1020)) (-5 *1 (-410)))) (-1241 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410)))) (-1991 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410)))) (-3500 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410)))) (-2666 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410)))) (-2730 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410)))) (-1548 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410)))) (-1303 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410)))) (-4037 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410)))))
-(-13 (-563 (-794)) (-10 -8 (-15 -3976 ($ (-1070))) (-15 -3976 ($ (-1087))) (-15 -3976 ((-1087) $)) (-15 -3976 ((-1020) $)) (-15 -1241 ((-108) $)) (-15 -1991 ((-108) $)) (-15 -3500 ((-108) $)) (-15 -2666 ((-108) $)) (-15 -2730 ((-108) $)) (-15 -1548 ((-108) $)) (-15 -1303 ((-108) $)) (-15 -4037 ((-108) $ $))))
-((-2496 (((-3 (-394 (-1083 (-383 (-523)))) "failed") |#3|) 69)) (-3978 (((-394 |#3|) |#3|) 34)) (-4073 (((-3 (-394 (-1083 (-47))) "failed") |#3|) 29 (|has| |#2| (-964 (-47))))) (-2766 (((-3 (|:| |overq| (-1083 (-383 (-523)))) (|:| |overan| (-1083 (-47))) (|:| -2509 (-108))) |#3|) 37)))
-(((-411 |#1| |#2| |#3|) (-10 -7 (-15 -3978 ((-394 |#3|) |#3|)) (-15 -2496 ((-3 (-394 (-1083 (-383 (-523)))) "failed") |#3|)) (-15 -2766 ((-3 (|:| |overq| (-1083 (-383 (-523)))) (|:| |overan| (-1083 (-47))) (|:| -2509 (-108))) |#3|)) (IF (|has| |#2| (-964 (-47))) (-15 -4073 ((-3 (-394 (-1083 (-47))) "failed") |#3|)) |%noBranch|)) (-13 (-515) (-786) (-964 (-523))) (-406 |#1|) (-1145 |#2|)) (T -411))
-((-4073 (*1 *2 *3) (|partial| -12 (-4 *5 (-964 (-47))) (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-4 *5 (-406 *4)) (-5 *2 (-394 (-1083 (-47)))) (-5 *1 (-411 *4 *5 *3)) (-4 *3 (-1145 *5)))) (-2766 (*1 *2 *3) (-12 (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-4 *5 (-406 *4)) (-5 *2 (-3 (|:| |overq| (-1083 (-383 (-523)))) (|:| |overan| (-1083 (-47))) (|:| -2509 (-108)))) (-5 *1 (-411 *4 *5 *3)) (-4 *3 (-1145 *5)))) (-2496 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-4 *5 (-406 *4)) (-5 *2 (-394 (-1083 (-383 (-523))))) (-5 *1 (-411 *4 *5 *3)) (-4 *3 (-1145 *5)))) (-3978 (*1 *2 *3) (-12 (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-4 *5 (-406 *4)) (-5 *2 (-394 *3)) (-5 *1 (-411 *4 *5 *3)) (-4 *3 (-1145 *5)))))
-(-10 -7 (-15 -3978 ((-394 |#3|) |#3|)) (-15 -2496 ((-3 (-394 (-1083 (-383 (-523)))) "failed") |#3|)) (-15 -2766 ((-3 (|:| |overq| (-1083 (-383 (-523)))) (|:| |overan| (-1083 (-47))) (|:| -2509 (-108))) |#3|)) (IF (|has| |#2| (-964 (-47))) (-15 -4073 ((-3 (-394 (-1083 (-47))) "failed") |#3|)) |%noBranch|))
-((-3260 (((-108) $ $) NIL)) (-1929 (((-1070) $ (-1070)) NIL)) (-1590 (($ $ (-1070)) NIL)) (-2214 (((-1070) $) NIL)) (-3068 (((-364) (-364) (-364)) 17) (((-364) (-364)) 15)) (-3439 (($ (-364)) NIL) (($ (-364) (-1070)) NIL)) (-1522 (((-364) $) NIL)) (-3841 (((-1070) $) NIL)) (-2965 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-1608 (((-1174) (-1070)) 9)) (-2811 (((-1174) (-1070)) 10)) (-4084 (((-1174)) 11)) (-3976 (((-794) $) NIL)) (-1833 (($ $) 35)) (-4037 (((-108) $ $) NIL)))
-(((-412) (-13 (-340 (-364) (-1070)) (-10 -7 (-15 -3068 ((-364) (-364) (-364))) (-15 -3068 ((-364) (-364))) (-15 -1608 ((-1174) (-1070))) (-15 -2811 ((-1174) (-1070))) (-15 -4084 ((-1174)))))) (T -412))
-((-3068 (*1 *2 *2 *2) (-12 (-5 *2 (-364)) (-5 *1 (-412)))) (-3068 (*1 *2 *2) (-12 (-5 *2 (-364)) (-5 *1 (-412)))) (-1608 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-412)))) (-2811 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-412)))) (-4084 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-412)))))
-(-13 (-340 (-364) (-1070)) (-10 -7 (-15 -3068 ((-364) (-364) (-364))) (-15 -3068 ((-364) (-364))) (-15 -1608 ((-1174) (-1070))) (-15 -2811 ((-1174) (-1070))) (-15 -4084 ((-1174)))))
-((-3260 (((-108) $ $) NIL)) (-2027 (((-3 (|:| |fst| (-410)) (|:| -3164 "void")) $) 11)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2055 (($) 32)) (-1496 (($) 38)) (-1455 (($) 34)) (-2770 (($) 36)) (-1971 (($) 33)) (-3106 (($) 35)) (-2685 (($) 37)) (-2774 (((-108) $) 8)) (-1343 (((-589 (-883 (-523))) $) 19)) (-3985 (($ (-3 (|:| |fst| (-410)) (|:| -3164 "void")) (-589 (-1087)) (-108)) 27) (($ (-3 (|:| |fst| (-410)) (|:| -3164 "void")) (-589 (-883 (-523))) (-108)) 28)) (-3976 (((-794) $) 23) (($ (-410)) 29)) (-4037 (((-108) $ $) NIL)))
-(((-413) (-13 (-1016) (-10 -8 (-15 -3976 ((-794) $)) (-15 -3976 ($ (-410))) (-15 -2027 ((-3 (|:| |fst| (-410)) (|:| -3164 "void")) $)) (-15 -1343 ((-589 (-883 (-523))) $)) (-15 -2774 ((-108) $)) (-15 -3985 ($ (-3 (|:| |fst| (-410)) (|:| -3164 "void")) (-589 (-1087)) (-108))) (-15 -3985 ($ (-3 (|:| |fst| (-410)) (|:| -3164 "void")) (-589 (-883 (-523))) (-108))) (-15 -2055 ($)) (-15 -1971 ($)) (-15 -1455 ($)) (-15 -1496 ($)) (-15 -3106 ($)) (-15 -2770 ($)) (-15 -2685 ($))))) (T -413))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-413)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-410)) (-5 *1 (-413)))) (-2027 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-5 *1 (-413)))) (-1343 (*1 *2 *1) (-12 (-5 *2 (-589 (-883 (-523)))) (-5 *1 (-413)))) (-2774 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-413)))) (-3985 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-5 *3 (-589 (-1087))) (-5 *4 (-108)) (-5 *1 (-413)))) (-3985 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-5 *3 (-589 (-883 (-523)))) (-5 *4 (-108)) (-5 *1 (-413)))) (-2055 (*1 *1) (-5 *1 (-413))) (-1971 (*1 *1) (-5 *1 (-413))) (-1455 (*1 *1) (-5 *1 (-413))) (-1496 (*1 *1) (-5 *1 (-413))) (-3106 (*1 *1) (-5 *1 (-413))) (-2770 (*1 *1) (-5 *1 (-413))) (-2685 (*1 *1) (-5 *1 (-413))))
-(-13 (-1016) (-10 -8 (-15 -3976 ((-794) $)) (-15 -3976 ($ (-410))) (-15 -2027 ((-3 (|:| |fst| (-410)) (|:| -3164 "void")) $)) (-15 -1343 ((-589 (-883 (-523))) $)) (-15 -2774 ((-108) $)) (-15 -3985 ($ (-3 (|:| |fst| (-410)) (|:| -3164 "void")) (-589 (-1087)) (-108))) (-15 -3985 ($ (-3 (|:| |fst| (-410)) (|:| -3164 "void")) (-589 (-883 (-523))) (-108))) (-15 -2055 ($)) (-15 -1971 ($)) (-15 -1455 ($)) (-15 -1496 ($)) (-15 -3106 ($)) (-15 -2770 ($)) (-15 -2685 ($))))
-((-3260 (((-108) $ $) NIL)) (-1522 (((-1087) $) 8)) (-3841 (((-1070) $) 16)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 11)) (-4037 (((-108) $ $) 13)))
-(((-414 |#1|) (-13 (-1016) (-10 -8 (-15 -1522 ((-1087) $)))) (-1087)) (T -414))
-((-1522 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-414 *3)) (-14 *3 *2))))
-(-13 (-1016) (-10 -8 (-15 -1522 ((-1087) $))))
-((-2034 (((-1174) $) 7)) (-3976 (((-794) $) 8) (($ (-1169 (-638))) 14) (($ (-589 (-306))) 13) (($ (-306)) 12) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 11)))
-(((-415) (-129)) (T -415))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1169 (-638))) (-4 *1 (-415)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-589 (-306))) (-4 *1 (-415)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-306)) (-4 *1 (-415)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) (-4 *1 (-415)))))
-(-13 (-371) (-10 -8 (-15 -3976 ($ (-1169 (-638)))) (-15 -3976 ($ (-589 (-306)))) (-15 -3976 ($ (-306))) (-15 -3976 ($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))))))
-(((-563 (-794)) . T) ((-371) . T) ((-1123) . T))
-((-2898 (((-3 $ "failed") (-1169 (-292 (-355)))) 21) (((-3 $ "failed") (-1169 (-292 (-523)))) 19) (((-3 $ "failed") (-1169 (-883 (-355)))) 17) (((-3 $ "failed") (-1169 (-883 (-523)))) 15) (((-3 $ "failed") (-1169 (-383 (-883 (-355))))) 13) (((-3 $ "failed") (-1169 (-383 (-883 (-523))))) 11)) (-1996 (($ (-1169 (-292 (-355)))) 22) (($ (-1169 (-292 (-523)))) 20) (($ (-1169 (-883 (-355)))) 18) (($ (-1169 (-883 (-523)))) 16) (($ (-1169 (-383 (-883 (-355))))) 14) (($ (-1169 (-383 (-883 (-523))))) 12)) (-2034 (((-1174) $) 7)) (-3976 (((-794) $) 8) (($ (-589 (-306))) 25) (($ (-306)) 24) (($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) 23)))
-(((-416) (-129)) (T -416))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-589 (-306))) (-4 *1 (-416)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-306)) (-4 *1 (-416)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306))))) (-4 *1 (-416)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-1169 (-292 (-355)))) (-4 *1 (-416)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-1169 (-292 (-355)))) (-4 *1 (-416)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-1169 (-292 (-523)))) (-4 *1 (-416)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-1169 (-292 (-523)))) (-4 *1 (-416)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-1169 (-883 (-355)))) (-4 *1 (-416)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-1169 (-883 (-355)))) (-4 *1 (-416)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-1169 (-883 (-523)))) (-4 *1 (-416)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-1169 (-883 (-523)))) (-4 *1 (-416)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-1169 (-383 (-883 (-355))))) (-4 *1 (-416)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-1169 (-383 (-883 (-355))))) (-4 *1 (-416)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-1169 (-383 (-883 (-523))))) (-4 *1 (-416)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-1169 (-383 (-883 (-523))))) (-4 *1 (-416)))))
-(-13 (-371) (-10 -8 (-15 -3976 ($ (-589 (-306)))) (-15 -3976 ($ (-306))) (-15 -3976 ($ (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306)))))) (-15 -1996 ($ (-1169 (-292 (-355))))) (-15 -2898 ((-3 $ "failed") (-1169 (-292 (-355))))) (-15 -1996 ($ (-1169 (-292 (-523))))) (-15 -2898 ((-3 $ "failed") (-1169 (-292 (-523))))) (-15 -1996 ($ (-1169 (-883 (-355))))) (-15 -2898 ((-3 $ "failed") (-1169 (-883 (-355))))) (-15 -1996 ($ (-1169 (-883 (-523))))) (-15 -2898 ((-3 $ "failed") (-1169 (-883 (-523))))) (-15 -1996 ($ (-1169 (-383 (-883 (-355)))))) (-15 -2898 ((-3 $ "failed") (-1169 (-383 (-883 (-355)))))) (-15 -1996 ($ (-1169 (-383 (-883 (-523)))))) (-15 -2898 ((-3 $ "failed") (-1169 (-383 (-883 (-523))))))))
-(((-563 (-794)) . T) ((-371) . T) ((-1123) . T))
-((-1721 (((-108)) 17)) (-2855 (((-108) (-108)) 18)) (-3918 (((-108)) 13)) (-4200 (((-108) (-108)) 14)) (-2268 (((-108)) 15)) (-2790 (((-108) (-108)) 16)) (-1867 (((-852) (-852)) 21) (((-852)) 20)) (-2586 (((-710) (-589 (-2 (|:| -3573 |#1|) (|:| -1487 (-523))))) 42)) (-3741 (((-852) (-852)) 23) (((-852)) 22)) (-3652 (((-2 (|:| -1844 (-523)) (|:| -3286 (-589 |#1|))) |#1|) 62)) (-2205 (((-394 |#1|) (-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| |#1|) (|:| -3269 (-523))))))) 126)) (-1919 (((-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| |#1|) (|:| -3269 (-523)))))) |#1| (-108)) 152)) (-1398 (((-394 |#1|) |#1| (-710) (-710)) 165) (((-394 |#1|) |#1| (-589 (-710)) (-710)) 162) (((-394 |#1|) |#1| (-589 (-710))) 164) (((-394 |#1|) |#1| (-710)) 163) (((-394 |#1|) |#1|) 161)) (-1490 (((-3 |#1| "failed") (-852) |#1| (-589 (-710)) (-710) (-108)) 167) (((-3 |#1| "failed") (-852) |#1| (-589 (-710)) (-710)) 168) (((-3 |#1| "failed") (-852) |#1| (-589 (-710))) 170) (((-3 |#1| "failed") (-852) |#1| (-710)) 169) (((-3 |#1| "failed") (-852) |#1|) 171)) (-3573 (((-394 |#1|) |#1| (-710) (-710)) 160) (((-394 |#1|) |#1| (-589 (-710)) (-710)) 156) (((-394 |#1|) |#1| (-589 (-710))) 158) (((-394 |#1|) |#1| (-710)) 157) (((-394 |#1|) |#1|) 155)) (-1701 (((-108) |#1|) 37)) (-1285 (((-677 (-710)) (-589 (-2 (|:| -3573 |#1|) (|:| -1487 (-523))))) 67)) (-3132 (((-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| |#1|) (|:| -3269 (-523)))))) |#1| (-108) (-1018 (-710)) (-710)) 154)))
-(((-417 |#1|) (-10 -7 (-15 -2205 ((-394 |#1|) (-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| |#1|) (|:| -3269 (-523)))))))) (-15 -1285 ((-677 (-710)) (-589 (-2 (|:| -3573 |#1|) (|:| -1487 (-523)))))) (-15 -3741 ((-852))) (-15 -3741 ((-852) (-852))) (-15 -1867 ((-852))) (-15 -1867 ((-852) (-852))) (-15 -2586 ((-710) (-589 (-2 (|:| -3573 |#1|) (|:| -1487 (-523)))))) (-15 -3652 ((-2 (|:| -1844 (-523)) (|:| -3286 (-589 |#1|))) |#1|)) (-15 -1721 ((-108))) (-15 -2855 ((-108) (-108))) (-15 -3918 ((-108))) (-15 -4200 ((-108) (-108))) (-15 -1701 ((-108) |#1|)) (-15 -2268 ((-108))) (-15 -2790 ((-108) (-108))) (-15 -3573 ((-394 |#1|) |#1|)) (-15 -3573 ((-394 |#1|) |#1| (-710))) (-15 -3573 ((-394 |#1|) |#1| (-589 (-710)))) (-15 -3573 ((-394 |#1|) |#1| (-589 (-710)) (-710))) (-15 -3573 ((-394 |#1|) |#1| (-710) (-710))) (-15 -1398 ((-394 |#1|) |#1|)) (-15 -1398 ((-394 |#1|) |#1| (-710))) (-15 -1398 ((-394 |#1|) |#1| (-589 (-710)))) (-15 -1398 ((-394 |#1|) |#1| (-589 (-710)) (-710))) (-15 -1398 ((-394 |#1|) |#1| (-710) (-710))) (-15 -1490 ((-3 |#1| "failed") (-852) |#1|)) (-15 -1490 ((-3 |#1| "failed") (-852) |#1| (-710))) (-15 -1490 ((-3 |#1| "failed") (-852) |#1| (-589 (-710)))) (-15 -1490 ((-3 |#1| "failed") (-852) |#1| (-589 (-710)) (-710))) (-15 -1490 ((-3 |#1| "failed") (-852) |#1| (-589 (-710)) (-710) (-108))) (-15 -1919 ((-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| |#1|) (|:| -3269 (-523)))))) |#1| (-108))) (-15 -3132 ((-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| |#1|) (|:| -3269 (-523)))))) |#1| (-108) (-1018 (-710)) (-710)))) (-1145 (-523))) (T -417))
-((-3132 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-108)) (-5 *5 (-1018 (-710))) (-5 *6 (-710)) (-5 *2 (-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| *3) (|:| -3269 (-523))))))) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-1919 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-5 *2 (-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| *3) (|:| -3269 (-523))))))) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-1490 (*1 *2 *3 *2 *4 *5 *6) (|partial| -12 (-5 *3 (-852)) (-5 *4 (-589 (-710))) (-5 *5 (-710)) (-5 *6 (-108)) (-5 *1 (-417 *2)) (-4 *2 (-1145 (-523))))) (-1490 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *3 (-852)) (-5 *4 (-589 (-710))) (-5 *5 (-710)) (-5 *1 (-417 *2)) (-4 *2 (-1145 (-523))))) (-1490 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-852)) (-5 *4 (-589 (-710))) (-5 *1 (-417 *2)) (-4 *2 (-1145 (-523))))) (-1490 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-852)) (-5 *4 (-710)) (-5 *1 (-417 *2)) (-4 *2 (-1145 (-523))))) (-1490 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-852)) (-5 *1 (-417 *2)) (-4 *2 (-1145 (-523))))) (-1398 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-710)) (-5 *2 (-394 *3)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-1398 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-589 (-710))) (-5 *5 (-710)) (-5 *2 (-394 *3)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-1398 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-710))) (-5 *2 (-394 *3)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-1398 (*1 *2 *3 *4) (-12 (-5 *4 (-710)) (-5 *2 (-394 *3)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-1398 (*1 *2 *3) (-12 (-5 *2 (-394 *3)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-3573 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-710)) (-5 *2 (-394 *3)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-3573 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-589 (-710))) (-5 *5 (-710)) (-5 *2 (-394 *3)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-3573 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-710))) (-5 *2 (-394 *3)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-3573 (*1 *2 *3 *4) (-12 (-5 *4 (-710)) (-5 *2 (-394 *3)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-3573 (*1 *2 *3) (-12 (-5 *2 (-394 *3)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-2790 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-2268 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-1701 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-4200 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-3918 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-2855 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-1721 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-3652 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -1844 (-523)) (|:| -3286 (-589 *3)))) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-2586 (*1 *2 *3) (-12 (-5 *3 (-589 (-2 (|:| -3573 *4) (|:| -1487 (-523))))) (-4 *4 (-1145 (-523))) (-5 *2 (-710)) (-5 *1 (-417 *4)))) (-1867 (*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-1867 (*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-3741 (*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-3741 (*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))) (-1285 (*1 *2 *3) (-12 (-5 *3 (-589 (-2 (|:| -3573 *4) (|:| -1487 (-523))))) (-4 *4 (-1145 (-523))) (-5 *2 (-677 (-710))) (-5 *1 (-417 *4)))) (-2205 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| *4) (|:| -3269 (-523))))))) (-4 *4 (-1145 (-523))) (-5 *2 (-394 *4)) (-5 *1 (-417 *4)))))
-(-10 -7 (-15 -2205 ((-394 |#1|) (-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| |#1|) (|:| -3269 (-523)))))))) (-15 -1285 ((-677 (-710)) (-589 (-2 (|:| -3573 |#1|) (|:| -1487 (-523)))))) (-15 -3741 ((-852))) (-15 -3741 ((-852) (-852))) (-15 -1867 ((-852))) (-15 -1867 ((-852) (-852))) (-15 -2586 ((-710) (-589 (-2 (|:| -3573 |#1|) (|:| -1487 (-523)))))) (-15 -3652 ((-2 (|:| -1844 (-523)) (|:| -3286 (-589 |#1|))) |#1|)) (-15 -1721 ((-108))) (-15 -2855 ((-108) (-108))) (-15 -3918 ((-108))) (-15 -4200 ((-108) (-108))) (-15 -1701 ((-108) |#1|)) (-15 -2268 ((-108))) (-15 -2790 ((-108) (-108))) (-15 -3573 ((-394 |#1|) |#1|)) (-15 -3573 ((-394 |#1|) |#1| (-710))) (-15 -3573 ((-394 |#1|) |#1| (-589 (-710)))) (-15 -3573 ((-394 |#1|) |#1| (-589 (-710)) (-710))) (-15 -3573 ((-394 |#1|) |#1| (-710) (-710))) (-15 -1398 ((-394 |#1|) |#1|)) (-15 -1398 ((-394 |#1|) |#1| (-710))) (-15 -1398 ((-394 |#1|) |#1| (-589 (-710)))) (-15 -1398 ((-394 |#1|) |#1| (-589 (-710)) (-710))) (-15 -1398 ((-394 |#1|) |#1| (-710) (-710))) (-15 -1490 ((-3 |#1| "failed") (-852) |#1|)) (-15 -1490 ((-3 |#1| "failed") (-852) |#1| (-710))) (-15 -1490 ((-3 |#1| "failed") (-852) |#1| (-589 (-710)))) (-15 -1490 ((-3 |#1| "failed") (-852) |#1| (-589 (-710)) (-710))) (-15 -1490 ((-3 |#1| "failed") (-852) |#1| (-589 (-710)) (-710) (-108))) (-15 -1919 ((-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| |#1|) (|:| -3269 (-523)))))) |#1| (-108))) (-15 -3132 ((-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| |#1|) (|:| -3269 (-523)))))) |#1| (-108) (-1018 (-710)) (-710))))
-((-3484 (((-523) |#2|) 48) (((-523) |#2| (-710)) 47)) (-3703 (((-523) |#2|) 55)) (-3895 ((|#3| |#2|) 25)) (-2765 ((|#3| |#2| (-852)) 14)) (-3229 ((|#3| |#2|) 15)) (-3874 ((|#3| |#2|) 9)) (-1942 ((|#3| |#2|) 10)) (-2276 ((|#3| |#2| (-852)) 62) ((|#3| |#2|) 30)) (-1216 (((-523) |#2|) 57)))
-(((-418 |#1| |#2| |#3|) (-10 -7 (-15 -1216 ((-523) |#2|)) (-15 -2276 (|#3| |#2|)) (-15 -2276 (|#3| |#2| (-852))) (-15 -3703 ((-523) |#2|)) (-15 -3484 ((-523) |#2| (-710))) (-15 -3484 ((-523) |#2|)) (-15 -2765 (|#3| |#2| (-852))) (-15 -3895 (|#3| |#2|)) (-15 -3874 (|#3| |#2|)) (-15 -1942 (|#3| |#2|)) (-15 -3229 (|#3| |#2|))) (-973) (-1145 |#1|) (-13 (-380) (-964 |#1|) (-339) (-1109) (-261))) (T -418))
-((-3229 (*1 *2 *3) (-12 (-4 *4 (-973)) (-4 *2 (-13 (-380) (-964 *4) (-339) (-1109) (-261))) (-5 *1 (-418 *4 *3 *2)) (-4 *3 (-1145 *4)))) (-1942 (*1 *2 *3) (-12 (-4 *4 (-973)) (-4 *2 (-13 (-380) (-964 *4) (-339) (-1109) (-261))) (-5 *1 (-418 *4 *3 *2)) (-4 *3 (-1145 *4)))) (-3874 (*1 *2 *3) (-12 (-4 *4 (-973)) (-4 *2 (-13 (-380) (-964 *4) (-339) (-1109) (-261))) (-5 *1 (-418 *4 *3 *2)) (-4 *3 (-1145 *4)))) (-3895 (*1 *2 *3) (-12 (-4 *4 (-973)) (-4 *2 (-13 (-380) (-964 *4) (-339) (-1109) (-261))) (-5 *1 (-418 *4 *3 *2)) (-4 *3 (-1145 *4)))) (-2765 (*1 *2 *3 *4) (-12 (-5 *4 (-852)) (-4 *5 (-973)) (-4 *2 (-13 (-380) (-964 *5) (-339) (-1109) (-261))) (-5 *1 (-418 *5 *3 *2)) (-4 *3 (-1145 *5)))) (-3484 (*1 *2 *3) (-12 (-4 *4 (-973)) (-5 *2 (-523)) (-5 *1 (-418 *4 *3 *5)) (-4 *3 (-1145 *4)) (-4 *5 (-13 (-380) (-964 *4) (-339) (-1109) (-261))))) (-3484 (*1 *2 *3 *4) (-12 (-5 *4 (-710)) (-4 *5 (-973)) (-5 *2 (-523)) (-5 *1 (-418 *5 *3 *6)) (-4 *3 (-1145 *5)) (-4 *6 (-13 (-380) (-964 *5) (-339) (-1109) (-261))))) (-3703 (*1 *2 *3) (-12 (-4 *4 (-973)) (-5 *2 (-523)) (-5 *1 (-418 *4 *3 *5)) (-4 *3 (-1145 *4)) (-4 *5 (-13 (-380) (-964 *4) (-339) (-1109) (-261))))) (-2276 (*1 *2 *3 *4) (-12 (-5 *4 (-852)) (-4 *5 (-973)) (-4 *2 (-13 (-380) (-964 *5) (-339) (-1109) (-261))) (-5 *1 (-418 *5 *3 *2)) (-4 *3 (-1145 *5)))) (-2276 (*1 *2 *3) (-12 (-4 *4 (-973)) (-4 *2 (-13 (-380) (-964 *4) (-339) (-1109) (-261))) (-5 *1 (-418 *4 *3 *2)) (-4 *3 (-1145 *4)))) (-1216 (*1 *2 *3) (-12 (-4 *4 (-973)) (-5 *2 (-523)) (-5 *1 (-418 *4 *3 *5)) (-4 *3 (-1145 *4)) (-4 *5 (-13 (-380) (-964 *4) (-339) (-1109) (-261))))))
-(-10 -7 (-15 -1216 ((-523) |#2|)) (-15 -2276 (|#3| |#2|)) (-15 -2276 (|#3| |#2| (-852))) (-15 -3703 ((-523) |#2|)) (-15 -3484 ((-523) |#2| (-710))) (-15 -3484 ((-523) |#2|)) (-15 -2765 (|#3| |#2| (-852))) (-15 -3895 (|#3| |#2|)) (-15 -3874 (|#3| |#2|)) (-15 -1942 (|#3| |#2|)) (-15 -3229 (|#3| |#2|)))
-((-2683 ((|#2| (-1169 |#1|)) 36)) (-3210 ((|#2| |#2| |#1|) 49)) (-1356 ((|#2| |#2| |#1|) 41)) (-4082 ((|#2| |#2|) 38)) (-2627 (((-108) |#2|) 30)) (-1331 (((-589 |#2|) (-852) (-394 |#2|)) 17)) (-1490 ((|#2| (-852) (-394 |#2|)) 21)) (-1285 (((-677 (-710)) (-394 |#2|)) 25)))
-(((-419 |#1| |#2|) (-10 -7 (-15 -2627 ((-108) |#2|)) (-15 -2683 (|#2| (-1169 |#1|))) (-15 -4082 (|#2| |#2|)) (-15 -1356 (|#2| |#2| |#1|)) (-15 -3210 (|#2| |#2| |#1|)) (-15 -1285 ((-677 (-710)) (-394 |#2|))) (-15 -1490 (|#2| (-852) (-394 |#2|))) (-15 -1331 ((-589 |#2|) (-852) (-394 |#2|)))) (-973) (-1145 |#1|)) (T -419))
-((-1331 (*1 *2 *3 *4) (-12 (-5 *3 (-852)) (-5 *4 (-394 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-973)) (-5 *2 (-589 *6)) (-5 *1 (-419 *5 *6)))) (-1490 (*1 *2 *3 *4) (-12 (-5 *3 (-852)) (-5 *4 (-394 *2)) (-4 *2 (-1145 *5)) (-5 *1 (-419 *5 *2)) (-4 *5 (-973)))) (-1285 (*1 *2 *3) (-12 (-5 *3 (-394 *5)) (-4 *5 (-1145 *4)) (-4 *4 (-973)) (-5 *2 (-677 (-710))) (-5 *1 (-419 *4 *5)))) (-3210 (*1 *2 *2 *3) (-12 (-4 *3 (-973)) (-5 *1 (-419 *3 *2)) (-4 *2 (-1145 *3)))) (-1356 (*1 *2 *2 *3) (-12 (-4 *3 (-973)) (-5 *1 (-419 *3 *2)) (-4 *2 (-1145 *3)))) (-4082 (*1 *2 *2) (-12 (-4 *3 (-973)) (-5 *1 (-419 *3 *2)) (-4 *2 (-1145 *3)))) (-2683 (*1 *2 *3) (-12 (-5 *3 (-1169 *4)) (-4 *4 (-973)) (-4 *2 (-1145 *4)) (-5 *1 (-419 *4 *2)))) (-2627 (*1 *2 *3) (-12 (-4 *4 (-973)) (-5 *2 (-108)) (-5 *1 (-419 *4 *3)) (-4 *3 (-1145 *4)))))
-(-10 -7 (-15 -2627 ((-108) |#2|)) (-15 -2683 (|#2| (-1169 |#1|))) (-15 -4082 (|#2| |#2|)) (-15 -1356 (|#2| |#2| |#1|)) (-15 -3210 (|#2| |#2| |#1|)) (-15 -1285 ((-677 (-710)) (-394 |#2|))) (-15 -1490 (|#2| (-852) (-394 |#2|))) (-15 -1331 ((-589 |#2|) (-852) (-394 |#2|))))
-((-1750 (((-710)) 41)) (-1769 (((-710)) 23 (|has| |#1| (-380))) (((-710) (-710)) 22 (|has| |#1| (-380)))) (-3424 (((-523) |#1|) 18 (|has| |#1| (-380)))) (-2322 (((-523) |#1|) 20 (|has| |#1| (-380)))) (-3475 (((-710)) 40) (((-710) (-710)) 39)) (-1534 ((|#1| (-710) (-523)) 29)) (-1644 (((-1174)) 43)))
-(((-420 |#1|) (-10 -7 (-15 -1534 (|#1| (-710) (-523))) (-15 -3475 ((-710) (-710))) (-15 -3475 ((-710))) (-15 -1750 ((-710))) (-15 -1644 ((-1174))) (IF (|has| |#1| (-380)) (PROGN (-15 -2322 ((-523) |#1|)) (-15 -3424 ((-523) |#1|)) (-15 -1769 ((-710) (-710))) (-15 -1769 ((-710)))) |%noBranch|)) (-973)) (T -420))
-((-1769 (*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-420 *3)) (-4 *3 (-380)) (-4 *3 (-973)))) (-1769 (*1 *2 *2) (-12 (-5 *2 (-710)) (-5 *1 (-420 *3)) (-4 *3 (-380)) (-4 *3 (-973)))) (-3424 (*1 *2 *3) (-12 (-5 *2 (-523)) (-5 *1 (-420 *3)) (-4 *3 (-380)) (-4 *3 (-973)))) (-2322 (*1 *2 *3) (-12 (-5 *2 (-523)) (-5 *1 (-420 *3)) (-4 *3 (-380)) (-4 *3 (-973)))) (-1644 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-420 *3)) (-4 *3 (-973)))) (-1750 (*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-420 *3)) (-4 *3 (-973)))) (-3475 (*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-420 *3)) (-4 *3 (-973)))) (-3475 (*1 *2 *2) (-12 (-5 *2 (-710)) (-5 *1 (-420 *3)) (-4 *3 (-973)))) (-1534 (*1 *2 *3 *4) (-12 (-5 *3 (-710)) (-5 *4 (-523)) (-5 *1 (-420 *2)) (-4 *2 (-973)))))
-(-10 -7 (-15 -1534 (|#1| (-710) (-523))) (-15 -3475 ((-710) (-710))) (-15 -3475 ((-710))) (-15 -1750 ((-710))) (-15 -1644 ((-1174))) (IF (|has| |#1| (-380)) (PROGN (-15 -2322 ((-523) |#1|)) (-15 -3424 ((-523) |#1|)) (-15 -1769 ((-710) (-710))) (-15 -1769 ((-710)))) |%noBranch|))
-((-4155 (((-589 (-523)) (-523)) 61)) (-1330 (((-108) (-155 (-523))) 65)) (-3573 (((-394 (-155 (-523))) (-155 (-523))) 60)))
-(((-421) (-10 -7 (-15 -3573 ((-394 (-155 (-523))) (-155 (-523)))) (-15 -4155 ((-589 (-523)) (-523))) (-15 -1330 ((-108) (-155 (-523)))))) (T -421))
-((-1330 (*1 *2 *3) (-12 (-5 *3 (-155 (-523))) (-5 *2 (-108)) (-5 *1 (-421)))) (-4155 (*1 *2 *3) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-421)) (-5 *3 (-523)))) (-3573 (*1 *2 *3) (-12 (-5 *2 (-394 (-155 (-523)))) (-5 *1 (-421)) (-5 *3 (-155 (-523))))))
-(-10 -7 (-15 -3573 ((-394 (-155 (-523))) (-155 (-523)))) (-15 -4155 ((-589 (-523)) (-523))) (-15 -1330 ((-108) (-155 (-523)))))
-((-1789 ((|#4| |#4| (-589 |#4|)) 61)) (-4177 (((-589 |#4|) (-589 |#4|) (-1070) (-1070)) 17) (((-589 |#4|) (-589 |#4|) (-1070)) 16) (((-589 |#4|) (-589 |#4|)) 11)))
-(((-422 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1789 (|#4| |#4| (-589 |#4|))) (-15 -4177 ((-589 |#4|) (-589 |#4|))) (-15 -4177 ((-589 |#4|) (-589 |#4|) (-1070))) (-15 -4177 ((-589 |#4|) (-589 |#4|) (-1070) (-1070)))) (-284) (-732) (-786) (-880 |#1| |#2| |#3|)) (T -422))
-((-4177 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-589 *7)) (-5 *3 (-1070)) (-4 *7 (-880 *4 *5 *6)) (-4 *4 (-284)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-422 *4 *5 *6 *7)))) (-4177 (*1 *2 *2 *3) (-12 (-5 *2 (-589 *7)) (-5 *3 (-1070)) (-4 *7 (-880 *4 *5 *6)) (-4 *4 (-284)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-422 *4 *5 *6 *7)))) (-4177 (*1 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-284)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-422 *3 *4 *5 *6)))) (-1789 (*1 *2 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-880 *4 *5 *6)) (-4 *4 (-284)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-422 *4 *5 *6 *2)))))
-(-10 -7 (-15 -1789 (|#4| |#4| (-589 |#4|))) (-15 -4177 ((-589 |#4|) (-589 |#4|))) (-15 -4177 ((-589 |#4|) (-589 |#4|) (-1070))) (-15 -4177 ((-589 |#4|) (-589 |#4|) (-1070) (-1070))))
-((-1946 (((-589 (-589 |#4|)) (-589 |#4|) (-108)) 73) (((-589 (-589 |#4|)) (-589 |#4|)) 72) (((-589 (-589 |#4|)) (-589 |#4|) (-589 |#4|) (-108)) 66) (((-589 (-589 |#4|)) (-589 |#4|) (-589 |#4|)) 67)) (-1888 (((-589 (-589 |#4|)) (-589 |#4|) (-108)) 42) (((-589 (-589 |#4|)) (-589 |#4|)) 63)))
-(((-423 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1888 ((-589 (-589 |#4|)) (-589 |#4|))) (-15 -1888 ((-589 (-589 |#4|)) (-589 |#4|) (-108))) (-15 -1946 ((-589 (-589 |#4|)) (-589 |#4|) (-589 |#4|))) (-15 -1946 ((-589 (-589 |#4|)) (-589 |#4|) (-589 |#4|) (-108))) (-15 -1946 ((-589 (-589 |#4|)) (-589 |#4|))) (-15 -1946 ((-589 (-589 |#4|)) (-589 |#4|) (-108)))) (-13 (-284) (-136)) (-732) (-786) (-880 |#1| |#2| |#3|)) (T -423))
-((-1946 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-880 *5 *6 *7)) (-5 *2 (-589 (-589 *8))) (-5 *1 (-423 *5 *6 *7 *8)) (-5 *3 (-589 *8)))) (-1946 (*1 *2 *3) (-12 (-4 *4 (-13 (-284) (-136))) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-880 *4 *5 *6)) (-5 *2 (-589 (-589 *7))) (-5 *1 (-423 *4 *5 *6 *7)) (-5 *3 (-589 *7)))) (-1946 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-880 *5 *6 *7)) (-5 *2 (-589 (-589 *8))) (-5 *1 (-423 *5 *6 *7 *8)) (-5 *3 (-589 *8)))) (-1946 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-284) (-136))) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-880 *4 *5 *6)) (-5 *2 (-589 (-589 *7))) (-5 *1 (-423 *4 *5 *6 *7)) (-5 *3 (-589 *7)))) (-1888 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-880 *5 *6 *7)) (-5 *2 (-589 (-589 *8))) (-5 *1 (-423 *5 *6 *7 *8)) (-5 *3 (-589 *8)))) (-1888 (*1 *2 *3) (-12 (-4 *4 (-13 (-284) (-136))) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-880 *4 *5 *6)) (-5 *2 (-589 (-589 *7))) (-5 *1 (-423 *4 *5 *6 *7)) (-5 *3 (-589 *7)))))
-(-10 -7 (-15 -1888 ((-589 (-589 |#4|)) (-589 |#4|))) (-15 -1888 ((-589 (-589 |#4|)) (-589 |#4|) (-108))) (-15 -1946 ((-589 (-589 |#4|)) (-589 |#4|) (-589 |#4|))) (-15 -1946 ((-589 (-589 |#4|)) (-589 |#4|) (-589 |#4|) (-108))) (-15 -1946 ((-589 (-589 |#4|)) (-589 |#4|))) (-15 -1946 ((-589 (-589 |#4|)) (-589 |#4|) (-108))))
-((-2244 (((-710) |#4|) 12)) (-1753 (((-589 (-2 (|:| |totdeg| (-710)) (|:| -3764 |#4|))) |#4| (-710) (-589 (-2 (|:| |totdeg| (-710)) (|:| -3764 |#4|)))) 31)) (-1913 (((-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 38)) (-3319 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 39)) (-2219 ((|#4| |#4| (-589 |#4|)) 40)) (-4164 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-589 |#4|)) 70)) (-3555 (((-1174) |#4|) 42)) (-4021 (((-1174) (-589 |#4|)) 51)) (-3074 (((-523) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-523) (-523) (-523)) 48)) (-3159 (((-1174) (-523)) 79)) (-1649 (((-589 |#4|) (-589 |#4|)) 77)) (-3220 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-710)) (|:| -3764 |#4|)) |#4| (-710)) 25)) (-3929 (((-523) |#4|) 78)) (-3374 ((|#4| |#4|) 29)) (-2175 (((-589 |#4|) (-589 |#4|) (-523) (-523)) 56)) (-2638 (((-523) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-523) (-523) (-523) (-523)) 89)) (-2134 (((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 16)) (-1852 (((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 59)) (-1877 (((-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 58)) (-3357 (((-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 36)) (-2241 (((-108) |#2| |#2|) 57)) (-3595 (((-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 37)) (-3898 (((-108) |#2| |#2| |#2| |#2|) 60)) (-1461 ((|#4| |#4| (-589 |#4|)) 71)))
-(((-424 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1461 (|#4| |#4| (-589 |#4|))) (-15 -2219 (|#4| |#4| (-589 |#4|))) (-15 -2175 ((-589 |#4|) (-589 |#4|) (-523) (-523))) (-15 -1852 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2241 ((-108) |#2| |#2|)) (-15 -3898 ((-108) |#2| |#2| |#2| |#2|)) (-15 -3595 ((-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3357 ((-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1877 ((-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4164 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-589 |#4|))) (-15 -3374 (|#4| |#4|)) (-15 -1753 ((-589 (-2 (|:| |totdeg| (-710)) (|:| -3764 |#4|))) |#4| (-710) (-589 (-2 (|:| |totdeg| (-710)) (|:| -3764 |#4|))))) (-15 -3319 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -1913 ((-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1649 ((-589 |#4|) (-589 |#4|))) (-15 -3929 ((-523) |#4|)) (-15 -3555 ((-1174) |#4|)) (-15 -3074 ((-523) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-523) (-523) (-523))) (-15 -2638 ((-523) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-523) (-523) (-523) (-523))) (-15 -4021 ((-1174) (-589 |#4|))) (-15 -3159 ((-1174) (-523))) (-15 -2134 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3220 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-710)) (|:| -3764 |#4|)) |#4| (-710))) (-15 -2244 ((-710) |#4|))) (-427) (-732) (-786) (-880 |#1| |#2| |#3|)) (T -424))
-((-2244 (*1 *2 *3) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-710)) (-5 *1 (-424 *4 *5 *6 *3)) (-4 *3 (-880 *4 *5 *6)))) (-3220 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-710)) (|:| -3764 *4))) (-5 *5 (-710)) (-4 *4 (-880 *6 *7 *8)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786)) (-5 *2 (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4) (|:| |polj| *4))) (-5 *1 (-424 *6 *7 *8 *4)))) (-2134 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-710)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-732)) (-4 *7 (-880 *4 *5 *6)) (-4 *4 (-427)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-424 *4 *5 *6 *7)))) (-3159 (*1 *2 *3) (-12 (-5 *3 (-523)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-1174)) (-5 *1 (-424 *4 *5 *6 *7)) (-4 *7 (-880 *4 *5 *6)))) (-4021 (*1 *2 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-880 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-1174)) (-5 *1 (-424 *4 *5 *6 *7)))) (-2638 (*1 *2 *3 *4 *4 *2 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-710)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-732)) (-4 *4 (-880 *5 *6 *7)) (-4 *5 (-427)) (-4 *7 (-786)) (-5 *1 (-424 *5 *6 *7 *4)))) (-3074 (*1 *2 *3 *4 *4 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-710)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-732)) (-4 *4 (-880 *5 *6 *7)) (-4 *5 (-427)) (-4 *7 (-786)) (-5 *1 (-424 *5 *6 *7 *4)))) (-3555 (*1 *2 *3) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-1174)) (-5 *1 (-424 *4 *5 *6 *3)) (-4 *3 (-880 *4 *5 *6)))) (-3929 (*1 *2 *3) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-523)) (-5 *1 (-424 *4 *5 *6 *3)) (-4 *3 (-880 *4 *5 *6)))) (-1649 (*1 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-424 *3 *4 *5 *6)))) (-1913 (*1 *2 *2 *2) (-12 (-5 *2 (-589 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-710)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-732)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-427)) (-4 *5 (-786)) (-5 *1 (-424 *3 *4 *5 *6)))) (-3319 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-710)) (|:| |poli| *2) (|:| |polj| *2))) (-4 *5 (-732)) (-4 *2 (-880 *4 *5 *6)) (-5 *1 (-424 *4 *5 *6 *2)) (-4 *4 (-427)) (-4 *6 (-786)))) (-1753 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-589 (-2 (|:| |totdeg| (-710)) (|:| -3764 *3)))) (-5 *4 (-710)) (-4 *3 (-880 *5 *6 *7)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *1 (-424 *5 *6 *7 *3)))) (-3374 (*1 *2 *2) (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-424 *3 *4 *5 *2)) (-4 *2 (-880 *3 *4 *5)))) (-4164 (*1 *2 *3 *4) (-12 (-5 *4 (-589 *3)) (-4 *3 (-880 *5 *6 *7)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5))) (-5 *1 (-424 *5 *6 *7 *3)))) (-1877 (*1 *2 *3 *2) (-12 (-5 *2 (-589 (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-710)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *3 (-732)) (-4 *6 (-880 *4 *3 *5)) (-4 *4 (-427)) (-4 *5 (-786)) (-5 *1 (-424 *4 *3 *5 *6)))) (-3357 (*1 *2 *2) (-12 (-5 *2 (-589 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-710)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-732)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-427)) (-4 *5 (-786)) (-5 *1 (-424 *3 *4 *5 *6)))) (-3595 (*1 *2 *3 *2) (-12 (-5 *2 (-589 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-710)) (|:| |poli| *3) (|:| |polj| *3)))) (-4 *5 (-732)) (-4 *3 (-880 *4 *5 *6)) (-4 *4 (-427)) (-4 *6 (-786)) (-5 *1 (-424 *4 *5 *6 *3)))) (-3898 (*1 *2 *3 *3 *3 *3) (-12 (-4 *4 (-427)) (-4 *3 (-732)) (-4 *5 (-786)) (-5 *2 (-108)) (-5 *1 (-424 *4 *3 *5 *6)) (-4 *6 (-880 *4 *3 *5)))) (-2241 (*1 *2 *3 *3) (-12 (-4 *4 (-427)) (-4 *3 (-732)) (-4 *5 (-786)) (-5 *2 (-108)) (-5 *1 (-424 *4 *3 *5 *6)) (-4 *6 (-880 *4 *3 *5)))) (-1852 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-710)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-732)) (-4 *7 (-880 *4 *5 *6)) (-4 *4 (-427)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-424 *4 *5 *6 *7)))) (-2175 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-589 *7)) (-5 *3 (-523)) (-4 *7 (-880 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-424 *4 *5 *6 *7)))) (-2219 (*1 *2 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-880 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-424 *4 *5 *6 *2)))) (-1461 (*1 *2 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-880 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-424 *4 *5 *6 *2)))))
-(-10 -7 (-15 -1461 (|#4| |#4| (-589 |#4|))) (-15 -2219 (|#4| |#4| (-589 |#4|))) (-15 -2175 ((-589 |#4|) (-589 |#4|) (-523) (-523))) (-15 -1852 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2241 ((-108) |#2| |#2|)) (-15 -3898 ((-108) |#2| |#2| |#2| |#2|)) (-15 -3595 ((-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3357 ((-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1877 ((-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4164 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-589 |#4|))) (-15 -3374 (|#4| |#4|)) (-15 -1753 ((-589 (-2 (|:| |totdeg| (-710)) (|:| -3764 |#4|))) |#4| (-710) (-589 (-2 (|:| |totdeg| (-710)) (|:| -3764 |#4|))))) (-15 -3319 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -1913 ((-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-589 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1649 ((-589 |#4|) (-589 |#4|))) (-15 -3929 ((-523) |#4|)) (-15 -3555 ((-1174) |#4|)) (-15 -3074 ((-523) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-523) (-523) (-523))) (-15 -2638 ((-523) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-523) (-523) (-523) (-523))) (-15 -4021 ((-1174) (-589 |#4|))) (-15 -3159 ((-1174) (-523))) (-15 -2134 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3220 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-710)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-710)) (|:| -3764 |#4|)) |#4| (-710))) (-15 -2244 ((-710) |#4|)))
-((-2485 ((|#4| |#4| (-589 |#4|)) 22 (|has| |#1| (-339)))) (-3721 (((-589 |#4|) (-589 |#4|) (-1070) (-1070)) 41) (((-589 |#4|) (-589 |#4|) (-1070)) 40) (((-589 |#4|) (-589 |#4|)) 35)))
-(((-425 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3721 ((-589 |#4|) (-589 |#4|))) (-15 -3721 ((-589 |#4|) (-589 |#4|) (-1070))) (-15 -3721 ((-589 |#4|) (-589 |#4|) (-1070) (-1070))) (IF (|has| |#1| (-339)) (-15 -2485 (|#4| |#4| (-589 |#4|))) |%noBranch|)) (-427) (-732) (-786) (-880 |#1| |#2| |#3|)) (T -425))
-((-2485 (*1 *2 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-880 *4 *5 *6)) (-4 *4 (-339)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-425 *4 *5 *6 *2)))) (-3721 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-589 *7)) (-5 *3 (-1070)) (-4 *7 (-880 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-425 *4 *5 *6 *7)))) (-3721 (*1 *2 *2 *3) (-12 (-5 *2 (-589 *7)) (-5 *3 (-1070)) (-4 *7 (-880 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-425 *4 *5 *6 *7)))) (-3721 (*1 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-425 *3 *4 *5 *6)))))
-(-10 -7 (-15 -3721 ((-589 |#4|) (-589 |#4|))) (-15 -3721 ((-589 |#4|) (-589 |#4|) (-1070))) (-15 -3721 ((-589 |#4|) (-589 |#4|) (-1070) (-1070))) (IF (|has| |#1| (-339)) (-15 -2485 (|#4| |#4| (-589 |#4|))) |%noBranch|))
-((-2012 (($ $ $) 14) (($ (-589 $)) 21)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 41)) (-2056 (($ $ $) NIL) (($ (-589 $)) 22)))
-(((-426 |#1|) (-10 -8 (-15 -2701 ((-1083 |#1|) (-1083 |#1|) (-1083 |#1|))) (-15 -2012 (|#1| (-589 |#1|))) (-15 -2012 (|#1| |#1| |#1|)) (-15 -2056 (|#1| (-589 |#1|))) (-15 -2056 (|#1| |#1| |#1|))) (-427)) (T -426))
-NIL
-(-10 -8 (-15 -2701 ((-1083 |#1|) (-1083 |#1|) (-1083 |#1|))) (-15 -2012 (|#1| (-589 |#1|))) (-15 -2012 (|#1| |#1| |#1|)) (-15 -2056 (|#1| (-589 |#1|))) (-15 -2056 (|#1| |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-2469 (((-3 $ "failed") $ $) 42)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43)) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 39)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-427) (-129)) (T -427))
-((-2056 (*1 *1 *1 *1) (-4 *1 (-427))) (-2056 (*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-427)))) (-2012 (*1 *1 *1 *1) (-4 *1 (-427))) (-2012 (*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-427)))) (-2701 (*1 *2 *2 *2) (-12 (-5 *2 (-1083 *1)) (-4 *1 (-427)))))
-(-13 (-515) (-10 -8 (-15 -2056 ($ $ $)) (-15 -2056 ($ (-589 $))) (-15 -2012 ($ $ $)) (-15 -2012 ($ (-589 $))) (-15 -2701 ((-1083 $) (-1083 $) (-1083 $)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-563 (-794)) . T) ((-158) . T) ((-267) . T) ((-515) . T) ((-591 $) . T) ((-657 $) . T) ((-666) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1895 (((-3 $ "failed")) NIL (|has| (-383 (-883 |#1|)) (-515)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-2279 (((-1169 (-629 (-383 (-883 |#1|)))) (-1169 $)) NIL) (((-1169 (-629 (-383 (-883 |#1|))))) NIL)) (-3513 (((-1169 $)) NIL)) (-1640 (($) NIL T CONST)) (-1563 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) NIL)) (-3869 (((-3 $ "failed")) NIL (|has| (-383 (-883 |#1|)) (-515)))) (-4067 (((-629 (-383 (-883 |#1|))) (-1169 $)) NIL) (((-629 (-383 (-883 |#1|)))) NIL)) (-2507 (((-383 (-883 |#1|)) $) NIL)) (-2358 (((-629 (-383 (-883 |#1|))) $ (-1169 $)) NIL) (((-629 (-383 (-883 |#1|))) $) NIL)) (-2439 (((-3 $ "failed") $) NIL (|has| (-383 (-883 |#1|)) (-515)))) (-2717 (((-1083 (-883 (-383 (-883 |#1|))))) NIL (|has| (-383 (-883 |#1|)) (-339))) (((-1083 (-383 (-883 |#1|)))) 82 (|has| |#1| (-515)))) (-2966 (($ $ (-852)) NIL)) (-2860 (((-383 (-883 |#1|)) $) NIL)) (-2119 (((-1083 (-383 (-883 |#1|))) $) 80 (|has| (-383 (-883 |#1|)) (-515)))) (-1772 (((-383 (-883 |#1|)) (-1169 $)) NIL) (((-383 (-883 |#1|))) NIL)) (-2196 (((-1083 (-383 (-883 |#1|))) $) NIL)) (-3953 (((-108)) NIL)) (-3322 (($ (-1169 (-383 (-883 |#1|))) (-1169 $)) 99) (($ (-1169 (-383 (-883 |#1|)))) NIL)) (-4211 (((-3 $ "failed") $) NIL (|has| (-383 (-883 |#1|)) (-515)))) (-2262 (((-852)) NIL)) (-3091 (((-108)) NIL)) (-1935 (($ $ (-852)) NIL)) (-3562 (((-108)) NIL)) (-3877 (((-108)) NIL)) (-3868 (((-108)) NIL)) (-4111 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) NIL)) (-3575 (((-3 $ "failed")) NIL (|has| (-383 (-883 |#1|)) (-515)))) (-2216 (((-629 (-383 (-883 |#1|))) (-1169 $)) NIL) (((-629 (-383 (-883 |#1|)))) NIL)) (-1870 (((-383 (-883 |#1|)) $) NIL)) (-2225 (((-629 (-383 (-883 |#1|))) $ (-1169 $)) NIL) (((-629 (-383 (-883 |#1|))) $) NIL)) (-3790 (((-3 $ "failed") $) NIL (|has| (-383 (-883 |#1|)) (-515)))) (-2975 (((-1083 (-883 (-383 (-883 |#1|))))) NIL (|has| (-383 (-883 |#1|)) (-339))) (((-1083 (-383 (-883 |#1|)))) 81 (|has| |#1| (-515)))) (-2165 (($ $ (-852)) NIL)) (-1876 (((-383 (-883 |#1|)) $) NIL)) (-1393 (((-1083 (-383 (-883 |#1|))) $) 75 (|has| (-383 (-883 |#1|)) (-515)))) (-1242 (((-383 (-883 |#1|)) (-1169 $)) NIL) (((-383 (-883 |#1|))) NIL)) (-1292 (((-1083 (-383 (-883 |#1|))) $) NIL)) (-1519 (((-108)) NIL)) (-3841 (((-1070) $) NIL)) (-1279 (((-108)) NIL)) (-1466 (((-108)) NIL)) (-1597 (((-108)) NIL)) (-2435 (((-1034) $) NIL)) (-2264 (((-383 (-883 |#1|)) $ $) 69 (|has| |#1| (-515)))) (-1458 (((-383 (-883 |#1|)) $) 68 (|has| |#1| (-515)))) (-2841 (((-383 (-883 |#1|)) $) 91 (|has| |#1| (-515)))) (-2048 (((-1083 (-383 (-883 |#1|))) $) 86 (|has| |#1| (-515)))) (-2964 (((-383 (-883 |#1|))) 70 (|has| |#1| (-515)))) (-4093 (((-383 (-883 |#1|)) $ $) 58 (|has| |#1| (-515)))) (-2761 (((-383 (-883 |#1|)) $) 57 (|has| |#1| (-515)))) (-4007 (((-383 (-883 |#1|)) $) 90 (|has| |#1| (-515)))) (-3821 (((-1083 (-383 (-883 |#1|))) $) 85 (|has| |#1| (-515)))) (-2605 (((-383 (-883 |#1|))) 67 (|has| |#1| (-515)))) (-1956 (($) 97) (($ (-1087)) 103) (($ (-1169 (-1087))) 102) (($ (-1169 $)) 92) (($ (-1087) (-1169 $)) 101) (($ (-1169 (-1087)) (-1169 $)) 100)) (-2375 (((-108)) NIL)) (-1502 (((-383 (-883 |#1|)) $ (-523)) NIL)) (-2411 (((-1169 (-383 (-883 |#1|))) $ (-1169 $)) 94) (((-629 (-383 (-883 |#1|))) (-1169 $) (-1169 $)) NIL) (((-1169 (-383 (-883 |#1|))) $) 40) (((-629 (-383 (-883 |#1|))) (-1169 $)) NIL)) (-3077 (((-1169 (-383 (-883 |#1|))) $) NIL) (($ (-1169 (-383 (-883 |#1|)))) 37)) (-1948 (((-589 (-883 (-383 (-883 |#1|)))) (-1169 $)) NIL) (((-589 (-883 (-383 (-883 |#1|))))) NIL) (((-589 (-883 |#1|)) (-1169 $)) 95 (|has| |#1| (-515))) (((-589 (-883 |#1|))) 96 (|has| |#1| (-515)))) (-2306 (($ $ $) NIL)) (-2178 (((-108)) NIL)) (-3976 (((-794) $) NIL) (($ (-1169 (-383 (-883 |#1|)))) NIL)) (-2922 (((-1169 $)) 60)) (-1842 (((-589 (-1169 (-383 (-883 |#1|))))) NIL (|has| (-383 (-883 |#1|)) (-515)))) (-3377 (($ $ $ $) NIL)) (-1363 (((-108)) NIL)) (-3817 (($ (-629 (-383 (-883 |#1|))) $) NIL)) (-1952 (($ $ $) NIL)) (-3931 (((-108)) NIL)) (-3433 (((-108)) NIL)) (-4001 (((-108)) NIL)) (-1428 (($) NIL T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) 93)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 56) (($ $ (-383 (-883 |#1|))) NIL) (($ (-383 (-883 |#1|)) $) NIL) (($ (-1054 |#2| (-383 (-883 |#1|))) $) NIL)))
-(((-428 |#1| |#2| |#3| |#4|) (-13 (-393 (-383 (-883 |#1|))) (-591 (-1054 |#2| (-383 (-883 |#1|)))) (-10 -8 (-15 -3976 ($ (-1169 (-383 (-883 |#1|))))) (-15 -4111 ((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed"))) (-15 -1563 ((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed"))) (-15 -1956 ($)) (-15 -1956 ($ (-1087))) (-15 -1956 ($ (-1169 (-1087)))) (-15 -1956 ($ (-1169 $))) (-15 -1956 ($ (-1087) (-1169 $))) (-15 -1956 ($ (-1169 (-1087)) (-1169 $))) (IF (|has| |#1| (-515)) (PROGN (-15 -2975 ((-1083 (-383 (-883 |#1|))))) (-15 -3821 ((-1083 (-383 (-883 |#1|))) $)) (-15 -2761 ((-383 (-883 |#1|)) $)) (-15 -4007 ((-383 (-883 |#1|)) $)) (-15 -2717 ((-1083 (-383 (-883 |#1|))))) (-15 -2048 ((-1083 (-383 (-883 |#1|))) $)) (-15 -1458 ((-383 (-883 |#1|)) $)) (-15 -2841 ((-383 (-883 |#1|)) $)) (-15 -4093 ((-383 (-883 |#1|)) $ $)) (-15 -2605 ((-383 (-883 |#1|)))) (-15 -2264 ((-383 (-883 |#1|)) $ $)) (-15 -2964 ((-383 (-883 |#1|)))) (-15 -1948 ((-589 (-883 |#1|)) (-1169 $))) (-15 -1948 ((-589 (-883 |#1|))))) |%noBranch|))) (-158) (-852) (-589 (-1087)) (-1169 (-629 |#1|))) (T -428))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1169 (-383 (-883 *3)))) (-4 *3 (-158)) (-14 *6 (-1169 (-629 *3))) (-5 *1 (-428 *3 *4 *5 *6)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))))) (-4111 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-428 *3 *4 *5 *6)) (|:| -2922 (-589 (-428 *3 *4 *5 *6))))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-1563 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-428 *3 *4 *5 *6)) (|:| -2922 (-589 (-428 *3 *4 *5 *6))))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-1956 (*1 *1) (-12 (-5 *1 (-428 *2 *3 *4 *5)) (-4 *2 (-158)) (-14 *3 (-852)) (-14 *4 (-589 (-1087))) (-14 *5 (-1169 (-629 *2))))) (-1956 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 *2)) (-14 *6 (-1169 (-629 *3))))) (-1956 (*1 *1 *2) (-12 (-5 *2 (-1169 (-1087))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-1956 (*1 *1 *2) (-12 (-5 *2 (-1169 (-428 *3 *4 *5 *6))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-1956 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-428 *4 *5 *6 *7))) (-5 *1 (-428 *4 *5 *6 *7)) (-4 *4 (-158)) (-14 *5 (-852)) (-14 *6 (-589 *2)) (-14 *7 (-1169 (-629 *4))))) (-1956 (*1 *1 *2 *3) (-12 (-5 *2 (-1169 (-1087))) (-5 *3 (-1169 (-428 *4 *5 *6 *7))) (-5 *1 (-428 *4 *5 *6 *7)) (-4 *4 (-158)) (-14 *5 (-852)) (-14 *6 (-589 (-1087))) (-14 *7 (-1169 (-629 *4))))) (-2975 (*1 *2) (-12 (-5 *2 (-1083 (-383 (-883 *3)))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-3821 (*1 *2 *1) (-12 (-5 *2 (-1083 (-383 (-883 *3)))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-2761 (*1 *2 *1) (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-4007 (*1 *2 *1) (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-2717 (*1 *2) (-12 (-5 *2 (-1083 (-383 (-883 *3)))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-2048 (*1 *2 *1) (-12 (-5 *2 (-1083 (-383 (-883 *3)))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-1458 (*1 *2 *1) (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-2841 (*1 *2 *1) (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-4093 (*1 *2 *1 *1) (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-2605 (*1 *2) (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-2264 (*1 *2 *1 *1) (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-2964 (*1 *2) (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))) (-1948 (*1 *2 *3) (-12 (-5 *3 (-1169 (-428 *4 *5 *6 *7))) (-5 *2 (-589 (-883 *4))) (-5 *1 (-428 *4 *5 *6 *7)) (-4 *4 (-515)) (-4 *4 (-158)) (-14 *5 (-852)) (-14 *6 (-589 (-1087))) (-14 *7 (-1169 (-629 *4))))) (-1948 (*1 *2) (-12 (-5 *2 (-589 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))))
-(-13 (-393 (-383 (-883 |#1|))) (-591 (-1054 |#2| (-383 (-883 |#1|)))) (-10 -8 (-15 -3976 ($ (-1169 (-383 (-883 |#1|))))) (-15 -4111 ((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed"))) (-15 -1563 ((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed"))) (-15 -1956 ($)) (-15 -1956 ($ (-1087))) (-15 -1956 ($ (-1169 (-1087)))) (-15 -1956 ($ (-1169 $))) (-15 -1956 ($ (-1087) (-1169 $))) (-15 -1956 ($ (-1169 (-1087)) (-1169 $))) (IF (|has| |#1| (-515)) (PROGN (-15 -2975 ((-1083 (-383 (-883 |#1|))))) (-15 -3821 ((-1083 (-383 (-883 |#1|))) $)) (-15 -2761 ((-383 (-883 |#1|)) $)) (-15 -4007 ((-383 (-883 |#1|)) $)) (-15 -2717 ((-1083 (-383 (-883 |#1|))))) (-15 -2048 ((-1083 (-383 (-883 |#1|))) $)) (-15 -1458 ((-383 (-883 |#1|)) $)) (-15 -2841 ((-383 (-883 |#1|)) $)) (-15 -4093 ((-383 (-883 |#1|)) $ $)) (-15 -2605 ((-383 (-883 |#1|)))) (-15 -2264 ((-383 (-883 |#1|)) $ $)) (-15 -2964 ((-383 (-883 |#1|)))) (-15 -1948 ((-589 (-883 |#1|)) (-1169 $))) (-15 -1948 ((-589 (-883 |#1|))))) |%noBranch|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 13)) (-3716 (((-589 (-796 |#1|)) $) 75)) (-3540 (((-1083 $) $ (-796 |#1|)) 46) (((-1083 |#2|) $) 118)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#2| (-515)))) (-3950 (($ $) NIL (|has| |#2| (-515)))) (-3226 (((-108) $) NIL (|has| |#2| (-515)))) (-2862 (((-710) $) 21) (((-710) $ (-589 (-796 |#1|))) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-3763 (($ $) NIL (|has| |#2| (-427)))) (-2105 (((-394 $) $) NIL (|has| |#2| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#2| "failed") $) 44) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#2| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) NIL (|has| |#2| (-964 (-523)))) (((-3 (-796 |#1|) "failed") $) NIL)) (-1996 ((|#2| $) 42) (((-383 (-523)) $) NIL (|has| |#2| (-964 (-383 (-523))))) (((-523) $) NIL (|has| |#2| (-964 (-523)))) (((-796 |#1|) $) NIL)) (-2210 (($ $ $ (-796 |#1|)) NIL (|has| |#2| (-158)))) (-2095 (($ $ (-589 (-523))) 80)) (-3142 (($ $) 68)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) NIL) (((-629 |#2|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2213 (($ $) NIL (|has| |#2| (-427))) (($ $ (-796 |#1|)) NIL (|has| |#2| (-427)))) (-3127 (((-589 $) $) NIL)) (-1330 (((-108) $) NIL (|has| |#2| (-840)))) (-2067 (($ $ |#2| |#3| $) NIL)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| (-796 |#1|) (-817 (-355))) (|has| |#2| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| (-796 |#1|) (-817 (-523))) (|has| |#2| (-817 (-523)))))) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) 58)) (-3706 (($ (-1083 |#2|) (-796 |#1|)) 123) (($ (-1083 $) (-796 |#1|)) 52)) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) 59)) (-3694 (($ |#2| |#3|) 28) (($ $ (-796 |#1|) (-710)) 30) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ (-796 |#1|)) NIL)) (-2140 ((|#3| $) NIL) (((-710) $ (-796 |#1|)) 50) (((-589 (-710)) $ (-589 (-796 |#1|))) 57)) (-3268 (($ $ $) NIL (|has| |#2| (-786)))) (-2644 (($ $ $) NIL (|has| |#2| (-786)))) (-3927 (($ (-1 |#3| |#3|) $) NIL)) (-3015 (($ (-1 |#2| |#2|) $) NIL)) (-1949 (((-3 (-796 |#1|) "failed") $) 39)) (-3107 (($ $) NIL)) (-3119 ((|#2| $) 41)) (-2012 (($ (-589 $)) NIL (|has| |#2| (-427))) (($ $ $) NIL (|has| |#2| (-427)))) (-3841 (((-1070) $) NIL)) (-3818 (((-3 (-589 $) "failed") $) NIL)) (-1973 (((-3 (-589 $) "failed") $) NIL)) (-3719 (((-3 (-2 (|:| |var| (-796 |#1|)) (|:| -3262 (-710))) "failed") $) NIL)) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) 40)) (-3095 ((|#2| $) 116)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#2| (-427)))) (-2056 (($ (-589 $)) NIL (|has| |#2| (-427))) (($ $ $) 128 (|has| |#2| (-427)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-3573 (((-394 $) $) NIL (|has| |#2| (-840)))) (-2469 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-515))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-515)))) (-1349 (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-796 |#1|) |#2|) 87) (($ $ (-589 (-796 |#1|)) (-589 |#2|)) 90) (($ $ (-796 |#1|) $) 85) (($ $ (-589 (-796 |#1|)) (-589 $)) 106)) (-4053 (($ $ (-796 |#1|)) NIL (|has| |#2| (-158)))) (-4024 (($ $ (-796 |#1|)) 53) (($ $ (-589 (-796 |#1|))) NIL) (($ $ (-796 |#1|) (-710)) NIL) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-1487 ((|#3| $) 67) (((-710) $ (-796 |#1|)) 37) (((-589 (-710)) $ (-589 (-796 |#1|))) 56)) (-3077 (((-823 (-355)) $) NIL (-12 (|has| (-796 |#1|) (-564 (-823 (-355)))) (|has| |#2| (-564 (-823 (-355)))))) (((-823 (-523)) $) NIL (-12 (|has| (-796 |#1|) (-564 (-823 (-523)))) (|has| |#2| (-564 (-823 (-523)))))) (((-499) $) NIL (-12 (|has| (-796 |#1|) (-564 (-499))) (|has| |#2| (-564 (-499)))))) (-2267 ((|#2| $) 125 (|has| |#2| (-427))) (($ $ (-796 |#1|)) NIL (|has| |#2| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#2| (-840))))) (-3976 (((-794) $) 145) (($ (-523)) NIL) (($ |#2|) 86) (($ (-796 |#1|)) 31) (($ (-383 (-523))) NIL (-3255 (|has| |#2| (-37 (-383 (-523)))) (|has| |#2| (-964 (-383 (-523)))))) (($ $) NIL (|has| |#2| (-515)))) (-1639 (((-589 |#2|) $) NIL)) (-1234 ((|#2| $ |#3|) NIL) (($ $ (-796 |#1|) (-710)) NIL) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#2| (-840))) (|has| |#2| (-134))))) (-1698 (((-710)) NIL)) (-2656 (($ $ $ (-710)) NIL (|has| |#2| (-158)))) (-3842 (((-108) $ $) NIL (|has| |#2| (-515)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 17 T CONST)) (-1440 (($) 25 T CONST)) (-1943 (($ $ (-796 |#1|)) NIL) (($ $ (-589 (-796 |#1|))) NIL) (($ $ (-796 |#1|) (-710)) NIL) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-4078 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4125 (($ $ |#2|) 64 (|has| |#2| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) 111)) (** (($ $ (-852)) NIL) (($ $ (-710)) 109)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 29) (($ $ (-383 (-523))) NIL (|has| |#2| (-37 (-383 (-523))))) (($ (-383 (-523)) $) NIL (|has| |#2| (-37 (-383 (-523))))) (($ |#2| $) 63) (($ $ |#2|) NIL)))
-(((-429 |#1| |#2| |#3|) (-13 (-880 |#2| |#3| (-796 |#1|)) (-10 -8 (-15 -2095 ($ $ (-589 (-523)))))) (-589 (-1087)) (-973) (-216 (-1271 |#1|) (-710))) (T -429))
-((-2095 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-523))) (-14 *3 (-589 (-1087))) (-5 *1 (-429 *3 *4 *5)) (-4 *4 (-973)) (-4 *5 (-216 (-1271 *3) (-710))))))
-(-13 (-880 |#2| |#3| (-796 |#1|)) (-10 -8 (-15 -2095 ($ $ (-589 (-523))))))
-((-2906 (((-108) |#1| (-589 |#2|)) 69)) (-3343 (((-3 (-1169 (-589 |#2|)) "failed") (-710) |#1| (-589 |#2|)) 78)) (-2532 (((-3 (-589 |#2|) "failed") |#2| |#1| (-1169 (-589 |#2|))) 80)) (-1345 ((|#2| |#2| |#1|) 28)) (-2283 (((-710) |#2| (-589 |#2|)) 20)))
-(((-430 |#1| |#2|) (-10 -7 (-15 -1345 (|#2| |#2| |#1|)) (-15 -2283 ((-710) |#2| (-589 |#2|))) (-15 -3343 ((-3 (-1169 (-589 |#2|)) "failed") (-710) |#1| (-589 |#2|))) (-15 -2532 ((-3 (-589 |#2|) "failed") |#2| |#1| (-1169 (-589 |#2|)))) (-15 -2906 ((-108) |#1| (-589 |#2|)))) (-284) (-1145 |#1|)) (T -430))
-((-2906 (*1 *2 *3 *4) (-12 (-5 *4 (-589 *5)) (-4 *5 (-1145 *3)) (-4 *3 (-284)) (-5 *2 (-108)) (-5 *1 (-430 *3 *5)))) (-2532 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1169 (-589 *3))) (-4 *4 (-284)) (-5 *2 (-589 *3)) (-5 *1 (-430 *4 *3)) (-4 *3 (-1145 *4)))) (-3343 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-710)) (-4 *4 (-284)) (-4 *6 (-1145 *4)) (-5 *2 (-1169 (-589 *6))) (-5 *1 (-430 *4 *6)) (-5 *5 (-589 *6)))) (-2283 (*1 *2 *3 *4) (-12 (-5 *4 (-589 *3)) (-4 *3 (-1145 *5)) (-4 *5 (-284)) (-5 *2 (-710)) (-5 *1 (-430 *5 *3)))) (-1345 (*1 *2 *2 *3) (-12 (-4 *3 (-284)) (-5 *1 (-430 *3 *2)) (-4 *2 (-1145 *3)))))
-(-10 -7 (-15 -1345 (|#2| |#2| |#1|)) (-15 -2283 ((-710) |#2| (-589 |#2|))) (-15 -3343 ((-3 (-1169 (-589 |#2|)) "failed") (-710) |#1| (-589 |#2|))) (-15 -2532 ((-3 (-589 |#2|) "failed") |#2| |#1| (-1169 (-589 |#2|)))) (-15 -2906 ((-108) |#1| (-589 |#2|))))
-((-3573 (((-394 |#5|) |#5|) 24)))
-(((-431 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3573 ((-394 |#5|) |#5|))) (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $)) (-15 -2354 ((-3 $ "failed") (-1087))))) (-732) (-515) (-515) (-880 |#4| |#2| |#1|)) (T -431))
-((-3573 (*1 *2 *3) (-12 (-4 *4 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $)) (-15 -2354 ((-3 $ "failed") (-1087)))))) (-4 *5 (-732)) (-4 *7 (-515)) (-5 *2 (-394 *3)) (-5 *1 (-431 *4 *5 *6 *7 *3)) (-4 *6 (-515)) (-4 *3 (-880 *7 *5 *4)))))
-(-10 -7 (-15 -3573 ((-394 |#5|) |#5|)))
-((-1397 ((|#3|) 37)) (-2701 (((-1083 |#4|) (-1083 |#4|) (-1083 |#4|)) 33)))
-(((-432 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2701 ((-1083 |#4|) (-1083 |#4|) (-1083 |#4|))) (-15 -1397 (|#3|))) (-732) (-786) (-840) (-880 |#3| |#1| |#2|)) (T -432))
-((-1397 (*1 *2) (-12 (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-840)) (-5 *1 (-432 *3 *4 *2 *5)) (-4 *5 (-880 *2 *3 *4)))) (-2701 (*1 *2 *2 *2) (-12 (-5 *2 (-1083 *6)) (-4 *6 (-880 *5 *3 *4)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *5 (-840)) (-5 *1 (-432 *3 *4 *5 *6)))))
-(-10 -7 (-15 -2701 ((-1083 |#4|) (-1083 |#4|) (-1083 |#4|))) (-15 -1397 (|#3|)))
-((-3573 (((-394 (-1083 |#1|)) (-1083 |#1|)) 43)))
-(((-433 |#1|) (-10 -7 (-15 -3573 ((-394 (-1083 |#1|)) (-1083 |#1|)))) (-284)) (T -433))
-((-3573 (*1 *2 *3) (-12 (-4 *4 (-284)) (-5 *2 (-394 (-1083 *4))) (-5 *1 (-433 *4)) (-5 *3 (-1083 *4)))))
-(-10 -7 (-15 -3573 ((-394 (-1083 |#1|)) (-1083 |#1|))))
-((-3781 (((-51) |#2| (-1087) (-271 |#2|) (-1136 (-710))) 42) (((-51) (-1 |#2| (-523)) (-271 |#2|) (-1136 (-710))) 41) (((-51) |#2| (-1087) (-271 |#2|)) 35) (((-51) (-1 |#2| (-523)) (-271 |#2|)) 28)) (-3223 (((-51) |#2| (-1087) (-271 |#2|) (-1136 (-383 (-523))) (-383 (-523))) 80) (((-51) (-1 |#2| (-383 (-523))) (-271 |#2|) (-1136 (-383 (-523))) (-383 (-523))) 79) (((-51) |#2| (-1087) (-271 |#2|) (-1136 (-523))) 78) (((-51) (-1 |#2| (-523)) (-271 |#2|) (-1136 (-523))) 77) (((-51) |#2| (-1087) (-271 |#2|)) 72) (((-51) (-1 |#2| (-523)) (-271 |#2|)) 71)) (-3047 (((-51) |#2| (-1087) (-271 |#2|) (-1136 (-383 (-523))) (-383 (-523))) 66) (((-51) (-1 |#2| (-383 (-523))) (-271 |#2|) (-1136 (-383 (-523))) (-383 (-523))) 64)) (-3794 (((-51) |#2| (-1087) (-271 |#2|) (-1136 (-523))) 48) (((-51) (-1 |#2| (-523)) (-271 |#2|) (-1136 (-523))) 47)))
-(((-434 |#1| |#2|) (-10 -7 (-15 -3781 ((-51) (-1 |#2| (-523)) (-271 |#2|))) (-15 -3781 ((-51) |#2| (-1087) (-271 |#2|))) (-15 -3781 ((-51) (-1 |#2| (-523)) (-271 |#2|) (-1136 (-710)))) (-15 -3781 ((-51) |#2| (-1087) (-271 |#2|) (-1136 (-710)))) (-15 -3794 ((-51) (-1 |#2| (-523)) (-271 |#2|) (-1136 (-523)))) (-15 -3794 ((-51) |#2| (-1087) (-271 |#2|) (-1136 (-523)))) (-15 -3047 ((-51) (-1 |#2| (-383 (-523))) (-271 |#2|) (-1136 (-383 (-523))) (-383 (-523)))) (-15 -3047 ((-51) |#2| (-1087) (-271 |#2|) (-1136 (-383 (-523))) (-383 (-523)))) (-15 -3223 ((-51) (-1 |#2| (-523)) (-271 |#2|))) (-15 -3223 ((-51) |#2| (-1087) (-271 |#2|))) (-15 -3223 ((-51) (-1 |#2| (-523)) (-271 |#2|) (-1136 (-523)))) (-15 -3223 ((-51) |#2| (-1087) (-271 |#2|) (-1136 (-523)))) (-15 -3223 ((-51) (-1 |#2| (-383 (-523))) (-271 |#2|) (-1136 (-383 (-523))) (-383 (-523)))) (-15 -3223 ((-51) |#2| (-1087) (-271 |#2|) (-1136 (-383 (-523))) (-383 (-523))))) (-13 (-515) (-786) (-964 (-523)) (-585 (-523))) (-13 (-27) (-1109) (-406 |#1|))) (T -434))
-((-3223 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1087)) (-5 *5 (-271 *3)) (-5 *6 (-1136 (-383 (-523)))) (-5 *7 (-383 (-523))) (-4 *3 (-13 (-27) (-1109) (-406 *8))) (-4 *8 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-434 *8 *3)))) (-3223 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-383 (-523)))) (-5 *4 (-271 *8)) (-5 *5 (-1136 (-383 (-523)))) (-5 *6 (-383 (-523))) (-4 *8 (-13 (-27) (-1109) (-406 *7))) (-4 *7 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-434 *7 *8)))) (-3223 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1087)) (-5 *5 (-271 *3)) (-5 *6 (-1136 (-523))) (-4 *3 (-13 (-27) (-1109) (-406 *7))) (-4 *7 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-434 *7 *3)))) (-3223 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-523))) (-5 *4 (-271 *7)) (-5 *5 (-1136 (-523))) (-4 *7 (-13 (-27) (-1109) (-406 *6))) (-4 *6 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-434 *6 *7)))) (-3223 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1087)) (-5 *5 (-271 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *6))) (-4 *6 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-434 *6 *3)))) (-3223 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-523))) (-5 *4 (-271 *6)) (-4 *6 (-13 (-27) (-1109) (-406 *5))) (-4 *5 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-434 *5 *6)))) (-3047 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1087)) (-5 *5 (-271 *3)) (-5 *6 (-1136 (-383 (-523)))) (-5 *7 (-383 (-523))) (-4 *3 (-13 (-27) (-1109) (-406 *8))) (-4 *8 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-434 *8 *3)))) (-3047 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-383 (-523)))) (-5 *4 (-271 *8)) (-5 *5 (-1136 (-383 (-523)))) (-5 *6 (-383 (-523))) (-4 *8 (-13 (-27) (-1109) (-406 *7))) (-4 *7 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-434 *7 *8)))) (-3794 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1087)) (-5 *5 (-271 *3)) (-5 *6 (-1136 (-523))) (-4 *3 (-13 (-27) (-1109) (-406 *7))) (-4 *7 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-434 *7 *3)))) (-3794 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-523))) (-5 *4 (-271 *7)) (-5 *5 (-1136 (-523))) (-4 *7 (-13 (-27) (-1109) (-406 *6))) (-4 *6 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-434 *6 *7)))) (-3781 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1087)) (-5 *5 (-271 *3)) (-5 *6 (-1136 (-710))) (-4 *3 (-13 (-27) (-1109) (-406 *7))) (-4 *7 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-434 *7 *3)))) (-3781 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-523))) (-5 *4 (-271 *7)) (-5 *5 (-1136 (-710))) (-4 *7 (-13 (-27) (-1109) (-406 *6))) (-4 *6 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-434 *6 *7)))) (-3781 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1087)) (-5 *5 (-271 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *6))) (-4 *6 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-434 *6 *3)))) (-3781 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-523))) (-5 *4 (-271 *6)) (-4 *6 (-13 (-27) (-1109) (-406 *5))) (-4 *5 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-51)) (-5 *1 (-434 *5 *6)))))
-(-10 -7 (-15 -3781 ((-51) (-1 |#2| (-523)) (-271 |#2|))) (-15 -3781 ((-51) |#2| (-1087) (-271 |#2|))) (-15 -3781 ((-51) (-1 |#2| (-523)) (-271 |#2|) (-1136 (-710)))) (-15 -3781 ((-51) |#2| (-1087) (-271 |#2|) (-1136 (-710)))) (-15 -3794 ((-51) (-1 |#2| (-523)) (-271 |#2|) (-1136 (-523)))) (-15 -3794 ((-51) |#2| (-1087) (-271 |#2|) (-1136 (-523)))) (-15 -3047 ((-51) (-1 |#2| (-383 (-523))) (-271 |#2|) (-1136 (-383 (-523))) (-383 (-523)))) (-15 -3047 ((-51) |#2| (-1087) (-271 |#2|) (-1136 (-383 (-523))) (-383 (-523)))) (-15 -3223 ((-51) (-1 |#2| (-523)) (-271 |#2|))) (-15 -3223 ((-51) |#2| (-1087) (-271 |#2|))) (-15 -3223 ((-51) (-1 |#2| (-523)) (-271 |#2|) (-1136 (-523)))) (-15 -3223 ((-51) |#2| (-1087) (-271 |#2|) (-1136 (-523)))) (-15 -3223 ((-51) (-1 |#2| (-383 (-523))) (-271 |#2|) (-1136 (-383 (-523))) (-383 (-523)))) (-15 -3223 ((-51) |#2| (-1087) (-271 |#2|) (-1136 (-383 (-523))) (-383 (-523)))))
-((-1345 ((|#2| |#2| |#1|) 15)) (-2662 (((-589 |#2|) |#2| (-589 |#2|) |#1| (-852)) 69)) (-2606 (((-2 (|:| |plist| (-589 |#2|)) (|:| |modulo| |#1|)) |#2| (-589 |#2|) |#1| (-852)) 60)))
-(((-435 |#1| |#2|) (-10 -7 (-15 -2606 ((-2 (|:| |plist| (-589 |#2|)) (|:| |modulo| |#1|)) |#2| (-589 |#2|) |#1| (-852))) (-15 -2662 ((-589 |#2|) |#2| (-589 |#2|) |#1| (-852))) (-15 -1345 (|#2| |#2| |#1|))) (-284) (-1145 |#1|)) (T -435))
-((-1345 (*1 *2 *2 *3) (-12 (-4 *3 (-284)) (-5 *1 (-435 *3 *2)) (-4 *2 (-1145 *3)))) (-2662 (*1 *2 *3 *2 *4 *5) (-12 (-5 *2 (-589 *3)) (-5 *5 (-852)) (-4 *3 (-1145 *4)) (-4 *4 (-284)) (-5 *1 (-435 *4 *3)))) (-2606 (*1 *2 *3 *4 *5 *6) (-12 (-5 *6 (-852)) (-4 *5 (-284)) (-4 *3 (-1145 *5)) (-5 *2 (-2 (|:| |plist| (-589 *3)) (|:| |modulo| *5))) (-5 *1 (-435 *5 *3)) (-5 *4 (-589 *3)))))
-(-10 -7 (-15 -2606 ((-2 (|:| |plist| (-589 |#2|)) (|:| |modulo| |#1|)) |#2| (-589 |#2|) |#1| (-852))) (-15 -2662 ((-589 |#2|) |#2| (-589 |#2|) |#1| (-852))) (-15 -1345 (|#2| |#2| |#1|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 28)) (-1932 (($ |#3|) 25)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-3142 (($ $) 32)) (-2005 (($ |#2| |#4| $) 33)) (-3694 (($ |#2| (-653 |#3| |#4| |#5|)) 24)) (-3107 (((-653 |#3| |#4| |#5|) $) 15)) (-2626 ((|#3| $) 19)) (-2659 ((|#4| $) 17)) (-3119 ((|#2| $) 29)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-2541 (($ |#2| |#3| |#4|) 26)) (-1428 (($) 36 T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) 34)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ |#6| $) 40) (($ $ |#6|) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-436 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-657 |#6|) (-657 |#2|) (-10 -8 (-15 -3119 (|#2| $)) (-15 -3107 ((-653 |#3| |#4| |#5|) $)) (-15 -2659 (|#4| $)) (-15 -2626 (|#3| $)) (-15 -3142 ($ $)) (-15 -3694 ($ |#2| (-653 |#3| |#4| |#5|))) (-15 -1932 ($ |#3|)) (-15 -2541 ($ |#2| |#3| |#4|)) (-15 -2005 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-589 (-1087)) (-158) (-786) (-216 (-1271 |#1|) (-710)) (-1 (-108) (-2 (|:| -2557 |#3|) (|:| -3262 |#4|)) (-2 (|:| -2557 |#3|) (|:| -3262 |#4|))) (-880 |#2| |#4| (-796 |#1|))) (T -436))
-((* (*1 *1 *2 *1) (-12 (-14 *3 (-589 (-1087))) (-4 *4 (-158)) (-4 *6 (-216 (-1271 *3) (-710))) (-14 *7 (-1 (-108) (-2 (|:| -2557 *5) (|:| -3262 *6)) (-2 (|:| -2557 *5) (|:| -3262 *6)))) (-5 *1 (-436 *3 *4 *5 *6 *7 *2)) (-4 *5 (-786)) (-4 *2 (-880 *4 *6 (-796 *3))))) (-3119 (*1 *2 *1) (-12 (-14 *3 (-589 (-1087))) (-4 *5 (-216 (-1271 *3) (-710))) (-14 *6 (-1 (-108) (-2 (|:| -2557 *4) (|:| -3262 *5)) (-2 (|:| -2557 *4) (|:| -3262 *5)))) (-4 *2 (-158)) (-5 *1 (-436 *3 *2 *4 *5 *6 *7)) (-4 *4 (-786)) (-4 *7 (-880 *2 *5 (-796 *3))))) (-3107 (*1 *2 *1) (-12 (-14 *3 (-589 (-1087))) (-4 *4 (-158)) (-4 *6 (-216 (-1271 *3) (-710))) (-14 *7 (-1 (-108) (-2 (|:| -2557 *5) (|:| -3262 *6)) (-2 (|:| -2557 *5) (|:| -3262 *6)))) (-5 *2 (-653 *5 *6 *7)) (-5 *1 (-436 *3 *4 *5 *6 *7 *8)) (-4 *5 (-786)) (-4 *8 (-880 *4 *6 (-796 *3))))) (-2659 (*1 *2 *1) (-12 (-14 *3 (-589 (-1087))) (-4 *4 (-158)) (-14 *6 (-1 (-108) (-2 (|:| -2557 *5) (|:| -3262 *2)) (-2 (|:| -2557 *5) (|:| -3262 *2)))) (-4 *2 (-216 (-1271 *3) (-710))) (-5 *1 (-436 *3 *4 *5 *2 *6 *7)) (-4 *5 (-786)) (-4 *7 (-880 *4 *2 (-796 *3))))) (-2626 (*1 *2 *1) (-12 (-14 *3 (-589 (-1087))) (-4 *4 (-158)) (-4 *5 (-216 (-1271 *3) (-710))) (-14 *6 (-1 (-108) (-2 (|:| -2557 *2) (|:| -3262 *5)) (-2 (|:| -2557 *2) (|:| -3262 *5)))) (-4 *2 (-786)) (-5 *1 (-436 *3 *4 *2 *5 *6 *7)) (-4 *7 (-880 *4 *5 (-796 *3))))) (-3142 (*1 *1 *1) (-12 (-14 *2 (-589 (-1087))) (-4 *3 (-158)) (-4 *5 (-216 (-1271 *2) (-710))) (-14 *6 (-1 (-108) (-2 (|:| -2557 *4) (|:| -3262 *5)) (-2 (|:| -2557 *4) (|:| -3262 *5)))) (-5 *1 (-436 *2 *3 *4 *5 *6 *7)) (-4 *4 (-786)) (-4 *7 (-880 *3 *5 (-796 *2))))) (-3694 (*1 *1 *2 *3) (-12 (-5 *3 (-653 *5 *6 *7)) (-4 *5 (-786)) (-4 *6 (-216 (-1271 *4) (-710))) (-14 *7 (-1 (-108) (-2 (|:| -2557 *5) (|:| -3262 *6)) (-2 (|:| -2557 *5) (|:| -3262 *6)))) (-14 *4 (-589 (-1087))) (-4 *2 (-158)) (-5 *1 (-436 *4 *2 *5 *6 *7 *8)) (-4 *8 (-880 *2 *6 (-796 *4))))) (-1932 (*1 *1 *2) (-12 (-14 *3 (-589 (-1087))) (-4 *4 (-158)) (-4 *5 (-216 (-1271 *3) (-710))) (-14 *6 (-1 (-108) (-2 (|:| -2557 *2) (|:| -3262 *5)) (-2 (|:| -2557 *2) (|:| -3262 *5)))) (-5 *1 (-436 *3 *4 *2 *5 *6 *7)) (-4 *2 (-786)) (-4 *7 (-880 *4 *5 (-796 *3))))) (-2541 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-589 (-1087))) (-4 *2 (-158)) (-4 *4 (-216 (-1271 *5) (-710))) (-14 *6 (-1 (-108) (-2 (|:| -2557 *3) (|:| -3262 *4)) (-2 (|:| -2557 *3) (|:| -3262 *4)))) (-5 *1 (-436 *5 *2 *3 *4 *6 *7)) (-4 *3 (-786)) (-4 *7 (-880 *2 *4 (-796 *5))))) (-2005 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-589 (-1087))) (-4 *2 (-158)) (-4 *3 (-216 (-1271 *4) (-710))) (-14 *6 (-1 (-108) (-2 (|:| -2557 *5) (|:| -3262 *3)) (-2 (|:| -2557 *5) (|:| -3262 *3)))) (-5 *1 (-436 *4 *2 *5 *3 *6 *7)) (-4 *5 (-786)) (-4 *7 (-880 *2 *3 (-796 *4))))))
-(-13 (-657 |#6|) (-657 |#2|) (-10 -8 (-15 -3119 (|#2| $)) (-15 -3107 ((-653 |#3| |#4| |#5|) $)) (-15 -2659 (|#4| $)) (-15 -2626 (|#3| $)) (-15 -3142 ($ $)) (-15 -3694 ($ |#2| (-653 |#3| |#4| |#5|))) (-15 -1932 ($ |#3|)) (-15 -2541 ($ |#2| |#3| |#4|)) (-15 -2005 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
-((-1856 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 37)))
-(((-437 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1856 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-732) (-786) (-515) (-880 |#3| |#1| |#2|) (-13 (-964 (-383 (-523))) (-339) (-10 -8 (-15 -3976 ($ |#4|)) (-15 -2164 (|#4| $)) (-15 -2171 (|#4| $))))) (T -437))
-((-1856 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-786)) (-4 *5 (-732)) (-4 *6 (-515)) (-4 *7 (-880 *6 *5 *3)) (-5 *1 (-437 *5 *3 *6 *7 *2)) (-4 *2 (-13 (-964 (-383 (-523))) (-339) (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $)) (-15 -2171 (*7 $))))))))
-(-10 -7 (-15 -1856 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
-((-3260 (((-108) $ $) NIL)) (-3716 (((-589 |#3|) $) 41)) (-2011 (((-108) $) NIL)) (-2821 (((-108) $) NIL (|has| |#1| (-515)))) (-3400 (((-2 (|:| |under| $) (|:| -1250 $) (|:| |upper| $)) $ |#3|) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-1299 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-1619 (((-108) $) NIL (|has| |#1| (-515)))) (-2927 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3685 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2457 (((-108) $) NIL (|has| |#1| (-515)))) (-2341 (((-589 |#4|) (-589 |#4|) $) NIL (|has| |#1| (-515)))) (-3450 (((-589 |#4|) (-589 |#4|) $) NIL (|has| |#1| (-515)))) (-2898 (((-3 $ "failed") (-589 |#4|)) 47)) (-1996 (($ (-589 |#4|)) NIL)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016))))) (-2231 (($ |#4| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-3143 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-515)))) (-1830 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4248))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4248)))) (-3133 (((-589 |#4|) $) 18 (|has| $ (-6 -4248)))) (-2694 ((|#3| $) 45)) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#4|) $) 14 (|has| $ (-6 -4248)))) (-1348 (((-108) |#4| $) 26 (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016))))) (-3063 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#4| |#4|) $) 21)) (-4100 (((-589 |#3|) $) NIL)) (-2863 (((-108) |#3| $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-1916 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-515)))) (-2435 (((-1034) $) NIL)) (-2660 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-2720 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 |#4|) (-589 |#4|)) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-271 |#4|)) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-589 (-271 |#4|))) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) 39)) (-4055 (($) 17)) (-2452 (((-710) |#4| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016)))) (((-710) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) 16)) (-3077 (((-499) $) NIL (|has| |#4| (-564 (-499)))) (($ (-589 |#4|)) 49)) (-3985 (($ (-589 |#4|)) 13)) (-4135 (($ $ |#3|) NIL)) (-1318 (($ $ |#3|) NIL)) (-2023 (($ $ |#3|) NIL)) (-3976 (((-794) $) 38) (((-589 |#4|) $) 48)) (-1505 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 30)) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-438 |#1| |#2| |#3| |#4|) (-13 (-905 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3077 ($ (-589 |#4|))) (-6 -4248) (-6 -4249))) (-973) (-732) (-786) (-987 |#1| |#2| |#3|)) (T -438))
-((-3077 (*1 *1 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-438 *3 *4 *5 *6)))))
-(-13 (-905 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3077 ($ (-589 |#4|))) (-6 -4248) (-6 -4249)))
-((-1428 (($) 11)) (-1440 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
-(((-439 |#1| |#2| |#3|) (-10 -8 (-15 -1440 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -1428 (|#1|))) (-440 |#2| |#3|) (-158) (-23)) (T -439))
-NIL
-(-10 -8 (-15 -1440 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -1428 (|#1|)))
-((-3260 (((-108) $ $) 7)) (-2898 (((-3 |#1| "failed") $) 26)) (-1996 ((|#1| $) 25)) (-2996 (($ $ $) 23)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-1487 ((|#2| $) 19)) (-3976 (((-794) $) 11) (($ |#1|) 27)) (-1428 (($) 18 T CONST)) (-1440 (($) 24 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 15) (($ $ $) 13)) (-4103 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
-(((-440 |#1| |#2|) (-129) (-158) (-23)) (T -440))
-((-1440 (*1 *1) (-12 (-4 *1 (-440 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23)))) (-2996 (*1 *1 *1 *1) (-12 (-4 *1 (-440 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23)))))
-(-13 (-445 |t#1| |t#2|) (-964 |t#1|) (-10 -8 (-15 (-1440) ($) -1982) (-15 -2996 ($ $ $))))
-(((-97) . T) ((-563 (-794)) . T) ((-445 |#1| |#2|) . T) ((-964 |#1|) . T) ((-1016) . T))
-((-1383 (((-1169 (-1169 (-523))) (-1169 (-1169 (-523))) (-852)) 18)) (-2697 (((-1169 (-1169 (-523))) (-852)) 16)))
-(((-441) (-10 -7 (-15 -1383 ((-1169 (-1169 (-523))) (-1169 (-1169 (-523))) (-852))) (-15 -2697 ((-1169 (-1169 (-523))) (-852))))) (T -441))
-((-2697 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1169 (-1169 (-523)))) (-5 *1 (-441)))) (-1383 (*1 *2 *2 *3) (-12 (-5 *2 (-1169 (-1169 (-523)))) (-5 *3 (-852)) (-5 *1 (-441)))))
-(-10 -7 (-15 -1383 ((-1169 (-1169 (-523))) (-1169 (-1169 (-523))) (-852))) (-15 -2697 ((-1169 (-1169 (-523))) (-852))))
-((-1327 (((-523) (-523)) 30) (((-523)) 22)) (-1797 (((-523) (-523)) 26) (((-523)) 18)) (-2870 (((-523) (-523)) 28) (((-523)) 20)) (-2657 (((-108) (-108)) 12) (((-108)) 10)) (-3307 (((-108) (-108)) 11) (((-108)) 9)) (-2418 (((-108) (-108)) 24) (((-108)) 15)))
-(((-442) (-10 -7 (-15 -3307 ((-108))) (-15 -2657 ((-108))) (-15 -3307 ((-108) (-108))) (-15 -2657 ((-108) (-108))) (-15 -2418 ((-108))) (-15 -2870 ((-523))) (-15 -1797 ((-523))) (-15 -1327 ((-523))) (-15 -2418 ((-108) (-108))) (-15 -2870 ((-523) (-523))) (-15 -1797 ((-523) (-523))) (-15 -1327 ((-523) (-523))))) (T -442))
-((-1327 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-442)))) (-1797 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-442)))) (-2870 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-442)))) (-2418 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-442)))) (-1327 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-442)))) (-1797 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-442)))) (-2870 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-442)))) (-2418 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-442)))) (-2657 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-442)))) (-3307 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-442)))) (-2657 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-442)))) (-3307 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-442)))))
-(-10 -7 (-15 -3307 ((-108))) (-15 -2657 ((-108))) (-15 -3307 ((-108) (-108))) (-15 -2657 ((-108) (-108))) (-15 -2418 ((-108))) (-15 -2870 ((-523))) (-15 -1797 ((-523))) (-15 -1327 ((-523))) (-15 -2418 ((-108) (-108))) (-15 -2870 ((-523) (-523))) (-15 -1797 ((-523) (-523))) (-15 -1327 ((-523) (-523))))
-((-3260 (((-108) $ $) NIL)) (-3459 (((-589 (-355)) $) 28) (((-589 (-355)) $ (-589 (-355))) 95)) (-2003 (((-589 (-1011 (-355))) $) 16) (((-589 (-1011 (-355))) $ (-589 (-1011 (-355)))) 92)) (-3097 (((-589 (-589 (-874 (-203)))) (-589 (-589 (-874 (-203)))) (-589 (-805))) 44)) (-1765 (((-589 (-589 (-874 (-203)))) $) 88)) (-3195 (((-1174) $ (-874 (-203)) (-805)) 107)) (-1317 (($ $) 87) (($ (-589 (-589 (-874 (-203))))) 98) (($ (-589 (-589 (-874 (-203)))) (-589 (-805)) (-589 (-805)) (-589 (-852))) 97) (($ (-589 (-589 (-874 (-203)))) (-589 (-805)) (-589 (-805)) (-589 (-852)) (-589 (-240))) 99)) (-3841 (((-1070) $) NIL)) (-2402 (((-523) $) 69)) (-2435 (((-1034) $) NIL)) (-1335 (($) 96)) (-3886 (((-589 (-203)) (-589 (-589 (-874 (-203))))) 54)) (-2021 (((-1174) $ (-589 (-874 (-203))) (-805) (-805) (-852)) 101) (((-1174) $ (-874 (-203))) 103) (((-1174) $ (-874 (-203)) (-805) (-805) (-852)) 102)) (-3976 (((-794) $) 113) (($ (-589 (-589 (-874 (-203))))) 108)) (-2846 (((-1174) $ (-874 (-203))) 106)) (-4037 (((-108) $ $) NIL)))
-(((-443) (-13 (-1016) (-10 -8 (-15 -1335 ($)) (-15 -1317 ($ $)) (-15 -1317 ($ (-589 (-589 (-874 (-203)))))) (-15 -1317 ($ (-589 (-589 (-874 (-203)))) (-589 (-805)) (-589 (-805)) (-589 (-852)))) (-15 -1317 ($ (-589 (-589 (-874 (-203)))) (-589 (-805)) (-589 (-805)) (-589 (-852)) (-589 (-240)))) (-15 -1765 ((-589 (-589 (-874 (-203)))) $)) (-15 -2402 ((-523) $)) (-15 -2003 ((-589 (-1011 (-355))) $)) (-15 -2003 ((-589 (-1011 (-355))) $ (-589 (-1011 (-355))))) (-15 -3459 ((-589 (-355)) $)) (-15 -3459 ((-589 (-355)) $ (-589 (-355)))) (-15 -2021 ((-1174) $ (-589 (-874 (-203))) (-805) (-805) (-852))) (-15 -2021 ((-1174) $ (-874 (-203)))) (-15 -2021 ((-1174) $ (-874 (-203)) (-805) (-805) (-852))) (-15 -2846 ((-1174) $ (-874 (-203)))) (-15 -3195 ((-1174) $ (-874 (-203)) (-805))) (-15 -3976 ($ (-589 (-589 (-874 (-203)))))) (-15 -3976 ((-794) $)) (-15 -3097 ((-589 (-589 (-874 (-203)))) (-589 (-589 (-874 (-203)))) (-589 (-805)))) (-15 -3886 ((-589 (-203)) (-589 (-589 (-874 (-203))))))))) (T -443))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-443)))) (-1335 (*1 *1) (-5 *1 (-443))) (-1317 (*1 *1 *1) (-5 *1 (-443))) (-1317 (*1 *1 *2) (-12 (-5 *2 (-589 (-589 (-874 (-203))))) (-5 *1 (-443)))) (-1317 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-589 (-589 (-874 (-203))))) (-5 *3 (-589 (-805))) (-5 *4 (-589 (-852))) (-5 *1 (-443)))) (-1317 (*1 *1 *2 *3 *3 *4 *5) (-12 (-5 *2 (-589 (-589 (-874 (-203))))) (-5 *3 (-589 (-805))) (-5 *4 (-589 (-852))) (-5 *5 (-589 (-240))) (-5 *1 (-443)))) (-1765 (*1 *2 *1) (-12 (-5 *2 (-589 (-589 (-874 (-203))))) (-5 *1 (-443)))) (-2402 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-443)))) (-2003 (*1 *2 *1) (-12 (-5 *2 (-589 (-1011 (-355)))) (-5 *1 (-443)))) (-2003 (*1 *2 *1 *2) (-12 (-5 *2 (-589 (-1011 (-355)))) (-5 *1 (-443)))) (-3459 (*1 *2 *1) (-12 (-5 *2 (-589 (-355))) (-5 *1 (-443)))) (-3459 (*1 *2 *1 *2) (-12 (-5 *2 (-589 (-355))) (-5 *1 (-443)))) (-2021 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-589 (-874 (-203)))) (-5 *4 (-805)) (-5 *5 (-852)) (-5 *2 (-1174)) (-5 *1 (-443)))) (-2021 (*1 *2 *1 *3) (-12 (-5 *3 (-874 (-203))) (-5 *2 (-1174)) (-5 *1 (-443)))) (-2021 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-874 (-203))) (-5 *4 (-805)) (-5 *5 (-852)) (-5 *2 (-1174)) (-5 *1 (-443)))) (-2846 (*1 *2 *1 *3) (-12 (-5 *3 (-874 (-203))) (-5 *2 (-1174)) (-5 *1 (-443)))) (-3195 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-874 (-203))) (-5 *4 (-805)) (-5 *2 (-1174)) (-5 *1 (-443)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-589 (-589 (-874 (-203))))) (-5 *1 (-443)))) (-3097 (*1 *2 *2 *3) (-12 (-5 *2 (-589 (-589 (-874 (-203))))) (-5 *3 (-589 (-805))) (-5 *1 (-443)))) (-3886 (*1 *2 *3) (-12 (-5 *3 (-589 (-589 (-874 (-203))))) (-5 *2 (-589 (-203))) (-5 *1 (-443)))))
-(-13 (-1016) (-10 -8 (-15 -1335 ($)) (-15 -1317 ($ $)) (-15 -1317 ($ (-589 (-589 (-874 (-203)))))) (-15 -1317 ($ (-589 (-589 (-874 (-203)))) (-589 (-805)) (-589 (-805)) (-589 (-852)))) (-15 -1317 ($ (-589 (-589 (-874 (-203)))) (-589 (-805)) (-589 (-805)) (-589 (-852)) (-589 (-240)))) (-15 -1765 ((-589 (-589 (-874 (-203)))) $)) (-15 -2402 ((-523) $)) (-15 -2003 ((-589 (-1011 (-355))) $)) (-15 -2003 ((-589 (-1011 (-355))) $ (-589 (-1011 (-355))))) (-15 -3459 ((-589 (-355)) $)) (-15 -3459 ((-589 (-355)) $ (-589 (-355)))) (-15 -2021 ((-1174) $ (-589 (-874 (-203))) (-805) (-805) (-852))) (-15 -2021 ((-1174) $ (-874 (-203)))) (-15 -2021 ((-1174) $ (-874 (-203)) (-805) (-805) (-852))) (-15 -2846 ((-1174) $ (-874 (-203)))) (-15 -3195 ((-1174) $ (-874 (-203)) (-805))) (-15 -3976 ($ (-589 (-589 (-874 (-203)))))) (-15 -3976 ((-794) $)) (-15 -3097 ((-589 (-589 (-874 (-203)))) (-589 (-589 (-874 (-203)))) (-589 (-805)))) (-15 -3886 ((-589 (-203)) (-589 (-589 (-874 (-203))))))))
-((-4115 (($ $) NIL) (($ $ $) 11)))
-(((-444 |#1| |#2| |#3|) (-10 -8 (-15 -4115 (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|))) (-445 |#2| |#3|) (-158) (-23)) (T -444))
-NIL
-(-10 -8 (-15 -4115 (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-1487 ((|#2| $) 19)) (-3976 (((-794) $) 11)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 15) (($ $ $) 13)) (-4103 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
-(((-445 |#1| |#2|) (-129) (-158) (-23)) (T -445))
-((-1487 (*1 *2 *1) (-12 (-4 *1 (-445 *3 *2)) (-4 *3 (-158)) (-4 *2 (-23)))) (-1428 (*1 *1) (-12 (-4 *1 (-445 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-445 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-445 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23)))) (-4115 (*1 *1 *1) (-12 (-4 *1 (-445 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23)))) (-4103 (*1 *1 *1 *1) (-12 (-4 *1 (-445 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23)))) (-4115 (*1 *1 *1 *1) (-12 (-4 *1 (-445 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23)))))
-(-13 (-1016) (-10 -8 (-15 -1487 (|t#2| $)) (-15 (-1428) ($) -1982) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -4115 ($ $)) (-15 -4103 ($ $ $)) (-15 -4115 ($ $ $))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-1346 (((-3 (-589 (-455 |#1| |#2|)) "failed") (-589 (-455 |#1| |#2|)) (-589 (-796 |#1|))) 93)) (-1306 (((-589 (-589 (-225 |#1| |#2|))) (-589 (-225 |#1| |#2|)) (-589 (-796 |#1|))) 91)) (-3722 (((-2 (|:| |dpolys| (-589 (-225 |#1| |#2|))) (|:| |coords| (-589 (-523)))) (-589 (-225 |#1| |#2|)) (-589 (-796 |#1|))) 61)))
-(((-446 |#1| |#2| |#3|) (-10 -7 (-15 -1306 ((-589 (-589 (-225 |#1| |#2|))) (-589 (-225 |#1| |#2|)) (-589 (-796 |#1|)))) (-15 -1346 ((-3 (-589 (-455 |#1| |#2|)) "failed") (-589 (-455 |#1| |#2|)) (-589 (-796 |#1|)))) (-15 -3722 ((-2 (|:| |dpolys| (-589 (-225 |#1| |#2|))) (|:| |coords| (-589 (-523)))) (-589 (-225 |#1| |#2|)) (-589 (-796 |#1|))))) (-589 (-1087)) (-427) (-427)) (T -446))
-((-3722 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-796 *5))) (-14 *5 (-589 (-1087))) (-4 *6 (-427)) (-5 *2 (-2 (|:| |dpolys| (-589 (-225 *5 *6))) (|:| |coords| (-589 (-523))))) (-5 *1 (-446 *5 *6 *7)) (-5 *3 (-589 (-225 *5 *6))) (-4 *7 (-427)))) (-1346 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-589 (-455 *4 *5))) (-5 *3 (-589 (-796 *4))) (-14 *4 (-589 (-1087))) (-4 *5 (-427)) (-5 *1 (-446 *4 *5 *6)) (-4 *6 (-427)))) (-1306 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-796 *5))) (-14 *5 (-589 (-1087))) (-4 *6 (-427)) (-5 *2 (-589 (-589 (-225 *5 *6)))) (-5 *1 (-446 *5 *6 *7)) (-5 *3 (-589 (-225 *5 *6))) (-4 *7 (-427)))))
-(-10 -7 (-15 -1306 ((-589 (-589 (-225 |#1| |#2|))) (-589 (-225 |#1| |#2|)) (-589 (-796 |#1|)))) (-15 -1346 ((-3 (-589 (-455 |#1| |#2|)) "failed") (-589 (-455 |#1| |#2|)) (-589 (-796 |#1|)))) (-15 -3722 ((-2 (|:| |dpolys| (-589 (-225 |#1| |#2|))) (|:| |coords| (-589 (-523)))) (-589 (-225 |#1| |#2|)) (-589 (-796 |#1|)))))
-((-4211 (((-3 $ "failed") $) 11)) (-1308 (($ $ $) 20)) (-2306 (($ $ $) 21)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) 14)) (-4125 (($ $ $) 9)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) 19)))
-(((-447 |#1|) (-10 -8 (-15 -2306 (|#1| |#1| |#1|)) (-15 -1308 (|#1| |#1| |#1|)) (-15 -2573 (|#1| |#1| (-523))) (-15 ** (|#1| |#1| (-523))) (-15 -4125 (|#1| |#1| |#1|)) (-15 -4211 ((-3 |#1| "failed") |#1|)) (-15 -2573 (|#1| |#1| (-710))) (-15 ** (|#1| |#1| (-710))) (-15 -2573 (|#1| |#1| (-852))) (-15 ** (|#1| |#1| (-852)))) (-448)) (T -447))
-NIL
-(-10 -8 (-15 -2306 (|#1| |#1| |#1|)) (-15 -1308 (|#1| |#1| |#1|)) (-15 -2573 (|#1| |#1| (-523))) (-15 ** (|#1| |#1| (-523))) (-15 -4125 (|#1| |#1| |#1|)) (-15 -4211 ((-3 |#1| "failed") |#1|)) (-15 -2573 (|#1| |#1| (-710))) (-15 ** (|#1| |#1| (-710))) (-15 -2573 (|#1| |#1| (-852))) (-15 ** (|#1| |#1| (-852))))
-((-3260 (((-108) $ $) 7)) (-1640 (($) 20 T CONST)) (-4211 (((-3 $ "failed") $) 16)) (-3482 (((-108) $) 19)) (-3841 (((-1070) $) 9)) (-3071 (($ $) 27)) (-2435 (((-1034) $) 10)) (-1308 (($ $ $) 23)) (-2306 (($ $ $) 22)) (-3976 (((-794) $) 11)) (-2573 (($ $ (-852)) 13) (($ $ (-710)) 17) (($ $ (-523)) 24)) (-1440 (($) 21 T CONST)) (-4037 (((-108) $ $) 6)) (-4125 (($ $ $) 26)) (** (($ $ (-852)) 14) (($ $ (-710)) 18) (($ $ (-523)) 25)) (* (($ $ $) 15)))
-(((-448) (-129)) (T -448))
-((-3071 (*1 *1 *1) (-4 *1 (-448))) (-4125 (*1 *1 *1 *1) (-4 *1 (-448))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-448)) (-5 *2 (-523)))) (-2573 (*1 *1 *1 *2) (-12 (-4 *1 (-448)) (-5 *2 (-523)))) (-1308 (*1 *1 *1 *1) (-4 *1 (-448))) (-2306 (*1 *1 *1 *1) (-4 *1 (-448))))
-(-13 (-666) (-10 -8 (-15 -3071 ($ $)) (-15 -4125 ($ $ $)) (-15 ** ($ $ (-523))) (-15 -2573 ($ $ (-523))) (-6 -4245) (-15 -1308 ($ $ $)) (-15 -2306 ($ $ $))))
-(((-97) . T) ((-563 (-794)) . T) ((-666) . T) ((-1028) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3716 (((-589 (-1001)) $) NIL)) (-2354 (((-1087) $) 17)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-1756 (($ $ (-383 (-523))) NIL) (($ $ (-383 (-523)) (-383 (-523))) NIL)) (-2736 (((-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#1|))) $) NIL)) (-3695 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL (|has| |#1| (-339)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3584 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3684 (((-108) $ $) NIL (|has| |#1| (-339)))) (-3669 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3223 (($ (-710) (-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#1|)))) NIL)) (-3717 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) NIL T CONST)) (-2501 (($ $ $) NIL (|has| |#1| (-339)))) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2486 (($ $ $) NIL (|has| |#1| (-339)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#1| (-339)))) (-1330 (((-108) $) NIL (|has| |#1| (-339)))) (-2294 (((-108) $) NIL)) (-2188 (($) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1500 (((-383 (-523)) $) NIL) (((-383 (-523)) $ (-383 (-523))) NIL)) (-3482 (((-108) $) NIL)) (-1324 (($ $ (-523)) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3059 (($ $ (-852)) NIL) (($ $ (-383 (-523))) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-383 (-523))) NIL) (($ $ (-1001) (-383 (-523))) NIL) (($ $ (-589 (-1001)) (-589 (-383 (-523)))) NIL)) (-3015 (($ (-1 |#1| |#1|) $) 22)) (-2062 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL (|has| |#1| (-339)))) (-2669 (($ $) 26 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087)) 33 (-3255 (-12 (|has| |#1| (-15 -2669 (|#1| |#1| (-1087)))) (|has| |#1| (-15 -3716 ((-589 (-1087)) |#1|))) (|has| |#1| (-37 (-383 (-523))))) (-12 (|has| |#1| (-29 (-523))) (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-889)) (|has| |#1| (-1109))))) (($ $ (-1165 |#2|)) 27 (|has| |#1| (-37 (-383 (-523)))))) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-339)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3573 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-1361 (($ $ (-383 (-523))) NIL)) (-2469 (((-3 $ "failed") $ $) NIL (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-1847 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1349 (((-1068 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-383 (-523))))))) (-3087 (((-710) $) NIL (|has| |#1| (-339)))) (-1502 ((|#1| $ (-383 (-523))) NIL) (($ $ $) NIL (|has| (-383 (-523)) (-1028)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) 25 (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $) 13 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $ (-1165 |#2|)) 15)) (-1487 (((-383 (-523)) $) NIL)) (-3730 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3749 (($ $) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#1|) NIL (|has| |#1| (-158))) (($ (-1165 |#2|)) NIL) (($ (-1154 |#1| |#2| |#3|)) 9) (($ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $) NIL (|has| |#1| (-515)))) (-1234 ((|#1| $ (-383 (-523))) NIL)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) NIL)) (-3882 ((|#1| $) 18)) (-3768 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3743 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2523 ((|#1| $ (-383 (-523))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-383 (-523))))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-3135 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339)))) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) 24)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 23) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))))
-(((-449 |#1| |#2| |#3|) (-13 (-1150 |#1|) (-10 -8 (-15 -3976 ($ (-1165 |#2|))) (-15 -3976 ($ (-1154 |#1| |#2| |#3|))) (-15 -4024 ($ $ (-1165 |#2|))) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1165 |#2|))) |%noBranch|))) (-973) (-1087) |#1|) (T -449))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-449 *3 *4 *5)) (-4 *3 (-973)) (-14 *5 *3))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-1154 *3 *4 *5)) (-4 *3 (-973)) (-14 *4 (-1087)) (-14 *5 *3) (-5 *1 (-449 *3 *4 *5)))) (-4024 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-449 *3 *4 *5)) (-4 *3 (-973)) (-14 *5 *3))) (-2669 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-449 *3 *4 *5)) (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-14 *5 *3))))
-(-13 (-1150 |#1|) (-10 -8 (-15 -3976 ($ (-1165 |#2|))) (-15 -3976 ($ (-1154 |#1| |#2| |#3|))) (-15 -4024 ($ $ (-1165 |#2|))) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1165 |#2|))) |%noBranch|)))
-((-3260 (((-108) $ $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-2340 (($) NIL) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-1666 (((-1174) $ |#1| |#1|) NIL (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#2| $ |#1| |#2|) 18)) (-3627 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-2521 (((-3 |#2| "failed") |#1| $) 19)) (-1640 (($) NIL T CONST)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-1869 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-3 |#2| "failed") |#1| $) 16)) (-2231 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1830 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4248))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#2| $ |#1|) NIL)) (-3133 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-1798 ((|#1| $) NIL (|has| |#1| (-786)))) (-3056 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-2133 ((|#1| $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4249))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-1612 (((-589 |#1|) $) NIL)) (-2754 (((-108) |#1| $) NIL)) (-2349 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-3862 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-2909 (((-589 |#1|) $) NIL)) (-2290 (((-108) |#1| $) NIL)) (-2435 (((-1034) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-3879 ((|#2| $) NIL (|has| |#1| (-786)))) (-2660 (((-3 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) "failed") (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL)) (-2408 (($ $ |#2|) NIL (|has| $ (-6 -4249)))) (-1322 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-2720 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 (-271 |#2|))) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-3184 (((-589 |#2|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-1771 (($) NIL) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-2452 (((-710) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-710) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016)))) (((-710) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-564 (-499))))) (-3985 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-3976 (((-794) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-563 (-794))) (|has| |#2| (-563 (-794)))))) (-1245 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-1505 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-450 |#1| |#2| |#3| |#4|) (-1100 |#1| |#2|) (-1016) (-1016) (-1100 |#1| |#2|) |#2|) (T -450))
-NIL
-(-1100 |#1| |#2|)
-((-3260 (((-108) $ $) NIL)) (-2778 (((-589 (-2 (|:| -3922 $) (|:| -3439 (-589 |#4|)))) (-589 |#4|)) NIL)) (-2311 (((-589 $) (-589 |#4|)) NIL)) (-3716 (((-589 |#3|) $) NIL)) (-2011 (((-108) $) NIL)) (-2821 (((-108) $) NIL (|has| |#1| (-515)))) (-3103 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-4165 ((|#4| |#4| $) NIL)) (-3400 (((-2 (|:| |under| $) (|:| -1250 $) (|:| |upper| $)) $ |#3|) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-1299 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248))) (((-3 |#4| "failed") $ |#3|) NIL)) (-1640 (($) NIL T CONST)) (-1619 (((-108) $) 26 (|has| |#1| (-515)))) (-2927 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3685 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2457 (((-108) $) NIL (|has| |#1| (-515)))) (-3021 (((-589 |#4|) (-589 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2341 (((-589 |#4|) (-589 |#4|) $) NIL (|has| |#1| (-515)))) (-3450 (((-589 |#4|) (-589 |#4|) $) NIL (|has| |#1| (-515)))) (-2898 (((-3 $ "failed") (-589 |#4|)) NIL)) (-1996 (($ (-589 |#4|)) NIL)) (-3891 (((-3 $ "failed") $) 39)) (-3880 ((|#4| |#4| $) NIL)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016))))) (-2231 (($ |#4| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-3143 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-515)))) (-3605 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-3058 ((|#4| |#4| $) NIL)) (-1830 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4248))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4248))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3161 (((-2 (|:| -3922 (-589 |#4|)) (|:| -3439 (-589 |#4|))) $) NIL)) (-3133 (((-589 |#4|) $) 16 (|has| $ (-6 -4248)))) (-2407 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2694 ((|#3| $) 33)) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#4|) $) 17 (|has| $ (-6 -4248)))) (-1348 (((-108) |#4| $) 25 (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016))))) (-3063 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#4| |#4|) $) 21)) (-4100 (((-589 |#3|) $) NIL)) (-2863 (((-108) |#3| $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-2247 (((-3 |#4| "failed") $) 37)) (-3403 (((-589 |#4|) $) NIL)) (-3761 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1728 ((|#4| |#4| $) NIL)) (-1454 (((-108) $ $) NIL)) (-1916 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-515)))) (-2152 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2347 ((|#4| |#4| $) NIL)) (-2435 (((-1034) $) NIL)) (-3879 (((-3 |#4| "failed") $) 35)) (-2660 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-2594 (((-3 $ "failed") $ |#4|) 47)) (-1361 (($ $ |#4|) NIL)) (-2720 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 |#4|) (-589 |#4|)) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-271 |#4|)) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-589 (-271 |#4|))) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) 15)) (-4055 (($) 13)) (-1487 (((-710) $) NIL)) (-2452 (((-710) |#4| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016)))) (((-710) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) 12)) (-3077 (((-499) $) NIL (|has| |#4| (-564 (-499))))) (-3985 (($ (-589 |#4|)) 20)) (-4135 (($ $ |#3|) 42)) (-1318 (($ $ |#3|) 44)) (-3444 (($ $) NIL)) (-2023 (($ $ |#3|) NIL)) (-3976 (((-794) $) 31) (((-589 |#4|) $) 40)) (-3221 (((-710) $) NIL (|has| |#3| (-344)))) (-2459 (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3442 (((-108) $ (-1 (-108) |#4| (-589 |#4|))) NIL)) (-1505 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-2969 (((-589 |#3|) $) NIL)) (-4079 (((-108) |#3| $) NIL)) (-4037 (((-108) $ $) NIL)) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-451 |#1| |#2| |#3| |#4|) (-1117 |#1| |#2| |#3| |#4|) (-515) (-732) (-786) (-987 |#1| |#2| |#3|)) (T -451))
-NIL
-(-1117 |#1| |#2| |#3| |#4|)
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL)) (-1996 (((-523) $) NIL) (((-383 (-523)) $) NIL)) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-2188 (($) 18)) (-3482 (((-108) $) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-3077 (((-355) $) 22) (((-203) $) 25) (((-383 (-1083 (-523))) $) 19) (((-499) $) 52)) (-3976 (((-794) $) 50) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) (((-203) $) 24) (((-355) $) 21)) (-1698 (((-710)) NIL)) (-3842 (((-108) $ $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) 36 T CONST)) (-1440 (($) 11 T CONST)) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL)))
-(((-452) (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))) (-949) (-563 (-203)) (-563 (-355)) (-564 (-383 (-1083 (-523)))) (-564 (-499)) (-10 -8 (-15 -2188 ($))))) (T -452))
-((-2188 (*1 *1) (-5 *1 (-452))))
-(-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))) (-949) (-563 (-203)) (-563 (-355)) (-564 (-383 (-1083 (-523)))) (-564 (-499)) (-10 -8 (-15 -2188 ($))))
-((-3260 (((-108) $ $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-2340 (($) NIL) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-1666 (((-1174) $ |#1| |#1|) NIL (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#2| $ |#1| |#2|) 16)) (-3627 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-2521 (((-3 |#2| "failed") |#1| $) 20)) (-1640 (($) NIL T CONST)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-1869 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-3 |#2| "failed") |#1| $) 18)) (-2231 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1830 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4248))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#2| $ |#1|) NIL)) (-3133 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-1798 ((|#1| $) NIL (|has| |#1| (-786)))) (-3056 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-2133 ((|#1| $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4249))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-1612 (((-589 |#1|) $) 13)) (-2754 (((-108) |#1| $) NIL)) (-2349 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-3862 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-2909 (((-589 |#1|) $) NIL)) (-2290 (((-108) |#1| $) NIL)) (-2435 (((-1034) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-3879 ((|#2| $) NIL (|has| |#1| (-786)))) (-2660 (((-3 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) "failed") (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL)) (-2408 (($ $ |#2|) NIL (|has| $ (-6 -4249)))) (-1322 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-2720 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 (-271 |#2|))) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-3184 (((-589 |#2|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) 19)) (-1502 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-1771 (($) NIL) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-2452 (((-710) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-710) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016)))) (((-710) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-564 (-499))))) (-3985 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-3976 (((-794) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-563 (-794))) (|has| |#2| (-563 (-794)))))) (-1245 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-1505 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 11 (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-1271 (((-710) $) 15 (|has| $ (-6 -4248)))))
-(((-453 |#1| |#2| |#3|) (-13 (-1100 |#1| |#2|) (-10 -7 (-6 -4248))) (-1016) (-1016) (-1070)) (T -453))
-NIL
-(-13 (-1100 |#1| |#2|) (-10 -7 (-6 -4248)))
-((-3289 (((-523) (-523) (-523)) 7)) (-2744 (((-108) (-523) (-523) (-523) (-523)) 11)) (-1252 (((-1169 (-589 (-523))) (-710) (-710)) 23)))
-(((-454) (-10 -7 (-15 -3289 ((-523) (-523) (-523))) (-15 -2744 ((-108) (-523) (-523) (-523) (-523))) (-15 -1252 ((-1169 (-589 (-523))) (-710) (-710))))) (T -454))
-((-1252 (*1 *2 *3 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1169 (-589 (-523)))) (-5 *1 (-454)))) (-2744 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-523)) (-5 *2 (-108)) (-5 *1 (-454)))) (-3289 (*1 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-454)))))
-(-10 -7 (-15 -3289 ((-523) (-523) (-523))) (-15 -2744 ((-108) (-523) (-523) (-523) (-523))) (-15 -1252 ((-1169 (-589 (-523))) (-710) (-710))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3716 (((-589 (-796 |#1|)) $) NIL)) (-3540 (((-1083 $) $ (-796 |#1|)) NIL) (((-1083 |#2|) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#2| (-515)))) (-3950 (($ $) NIL (|has| |#2| (-515)))) (-3226 (((-108) $) NIL (|has| |#2| (-515)))) (-2862 (((-710) $) NIL) (((-710) $ (-589 (-796 |#1|))) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-3763 (($ $) NIL (|has| |#2| (-427)))) (-2105 (((-394 $) $) NIL (|has| |#2| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#2| "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#2| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) NIL (|has| |#2| (-964 (-523)))) (((-3 (-796 |#1|) "failed") $) NIL)) (-1996 ((|#2| $) NIL) (((-383 (-523)) $) NIL (|has| |#2| (-964 (-383 (-523))))) (((-523) $) NIL (|has| |#2| (-964 (-523)))) (((-796 |#1|) $) NIL)) (-2210 (($ $ $ (-796 |#1|)) NIL (|has| |#2| (-158)))) (-2095 (($ $ (-589 (-523))) NIL)) (-3142 (($ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) NIL) (((-629 |#2|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2213 (($ $) NIL (|has| |#2| (-427))) (($ $ (-796 |#1|)) NIL (|has| |#2| (-427)))) (-3127 (((-589 $) $) NIL)) (-1330 (((-108) $) NIL (|has| |#2| (-840)))) (-2067 (($ $ |#2| (-456 (-1271 |#1|) (-710)) $) NIL)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| (-796 |#1|) (-817 (-355))) (|has| |#2| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| (-796 |#1|) (-817 (-523))) (|has| |#2| (-817 (-523)))))) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) NIL)) (-3706 (($ (-1083 |#2|) (-796 |#1|)) NIL) (($ (-1083 $) (-796 |#1|)) NIL)) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-3694 (($ |#2| (-456 (-1271 |#1|) (-710))) NIL) (($ $ (-796 |#1|) (-710)) NIL) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ (-796 |#1|)) NIL)) (-2140 (((-456 (-1271 |#1|) (-710)) $) NIL) (((-710) $ (-796 |#1|)) NIL) (((-589 (-710)) $ (-589 (-796 |#1|))) NIL)) (-3268 (($ $ $) NIL (|has| |#2| (-786)))) (-2644 (($ $ $) NIL (|has| |#2| (-786)))) (-3927 (($ (-1 (-456 (-1271 |#1|) (-710)) (-456 (-1271 |#1|) (-710))) $) NIL)) (-3015 (($ (-1 |#2| |#2|) $) NIL)) (-1949 (((-3 (-796 |#1|) "failed") $) NIL)) (-3107 (($ $) NIL)) (-3119 ((|#2| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#2| (-427))) (($ $ $) NIL (|has| |#2| (-427)))) (-3841 (((-1070) $) NIL)) (-3818 (((-3 (-589 $) "failed") $) NIL)) (-1973 (((-3 (-589 $) "failed") $) NIL)) (-3719 (((-3 (-2 (|:| |var| (-796 |#1|)) (|:| -3262 (-710))) "failed") $) NIL)) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) NIL)) (-3095 ((|#2| $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#2| (-427)))) (-2056 (($ (-589 $)) NIL (|has| |#2| (-427))) (($ $ $) NIL (|has| |#2| (-427)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-3573 (((-394 $) $) NIL (|has| |#2| (-840)))) (-2469 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-515))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-515)))) (-1349 (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-796 |#1|) |#2|) NIL) (($ $ (-589 (-796 |#1|)) (-589 |#2|)) NIL) (($ $ (-796 |#1|) $) NIL) (($ $ (-589 (-796 |#1|)) (-589 $)) NIL)) (-4053 (($ $ (-796 |#1|)) NIL (|has| |#2| (-158)))) (-4024 (($ $ (-796 |#1|)) NIL) (($ $ (-589 (-796 |#1|))) NIL) (($ $ (-796 |#1|) (-710)) NIL) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-1487 (((-456 (-1271 |#1|) (-710)) $) NIL) (((-710) $ (-796 |#1|)) NIL) (((-589 (-710)) $ (-589 (-796 |#1|))) NIL)) (-3077 (((-823 (-355)) $) NIL (-12 (|has| (-796 |#1|) (-564 (-823 (-355)))) (|has| |#2| (-564 (-823 (-355)))))) (((-823 (-523)) $) NIL (-12 (|has| (-796 |#1|) (-564 (-823 (-523)))) (|has| |#2| (-564 (-823 (-523)))))) (((-499) $) NIL (-12 (|has| (-796 |#1|) (-564 (-499))) (|has| |#2| (-564 (-499)))))) (-2267 ((|#2| $) NIL (|has| |#2| (-427))) (($ $ (-796 |#1|)) NIL (|has| |#2| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#2| (-840))))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#2|) NIL) (($ (-796 |#1|)) NIL) (($ (-383 (-523))) NIL (-3255 (|has| |#2| (-37 (-383 (-523)))) (|has| |#2| (-964 (-383 (-523)))))) (($ $) NIL (|has| |#2| (-515)))) (-1639 (((-589 |#2|) $) NIL)) (-1234 ((|#2| $ (-456 (-1271 |#1|) (-710))) NIL) (($ $ (-796 |#1|) (-710)) NIL) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#2| (-840))) (|has| |#2| (-134))))) (-1698 (((-710)) NIL)) (-2656 (($ $ $ (-710)) NIL (|has| |#2| (-158)))) (-3842 (((-108) $ $) NIL (|has| |#2| (-515)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ (-796 |#1|)) NIL) (($ $ (-589 (-796 |#1|))) NIL) (($ $ (-796 |#1|) (-710)) NIL) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-4078 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4125 (($ $ |#2|) NIL (|has| |#2| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL (|has| |#2| (-37 (-383 (-523))))) (($ (-383 (-523)) $) NIL (|has| |#2| (-37 (-383 (-523))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-455 |#1| |#2|) (-13 (-880 |#2| (-456 (-1271 |#1|) (-710)) (-796 |#1|)) (-10 -8 (-15 -2095 ($ $ (-589 (-523)))))) (-589 (-1087)) (-973)) (T -455))
-((-2095 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-455 *3 *4)) (-14 *3 (-589 (-1087))) (-4 *4 (-973)))))
-(-13 (-880 |#2| (-456 (-1271 |#1|) (-710)) (-796 |#1|)) (-10 -8 (-15 -2095 ($ $ (-589 (-523))))))
-((-3260 (((-108) $ $) NIL (|has| |#2| (-1016)))) (-2388 (((-108) $) NIL (|has| |#2| (-124)))) (-1932 (($ (-852)) NIL (|has| |#2| (-973)))) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-1773 (($ $ $) NIL (|has| |#2| (-732)))) (-2999 (((-3 $ "failed") $ $) NIL (|has| |#2| (-124)))) (-2282 (((-108) $ (-710)) NIL)) (-3843 (((-710)) NIL (|has| |#2| (-344)))) (-2035 (((-523) $) NIL (|has| |#2| (-784)))) (-4101 ((|#2| $ (-523) |#2|) NIL (|has| $ (-6 -4249)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL (-12 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016)))) (((-3 (-383 (-523)) "failed") $) NIL (-12 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1016)))) (-1996 (((-523) $) NIL (-12 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016)))) (((-383 (-523)) $) NIL (-12 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016)))) ((|#2| $) NIL (|has| |#2| (-1016)))) (-2203 (((-629 (-523)) (-629 $)) NIL (-12 (|has| |#2| (-585 (-523))) (|has| |#2| (-973)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (-12 (|has| |#2| (-585 (-523))) (|has| |#2| (-973)))) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) NIL (|has| |#2| (-973))) (((-629 |#2|) (-629 $)) NIL (|has| |#2| (-973)))) (-4211 (((-3 $ "failed") $) NIL (|has| |#2| (-973)))) (-3461 (($) NIL (|has| |#2| (-344)))) (-3073 ((|#2| $ (-523) |#2|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#2| $ (-523)) 11)) (-3702 (((-108) $) NIL (|has| |#2| (-784)))) (-3133 (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-3482 (((-108) $) NIL (|has| |#2| (-973)))) (-4050 (((-108) $) NIL (|has| |#2| (-784)))) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) NIL (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-3056 (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-3063 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#2| |#2|) $) NIL)) (-4076 (((-852) $) NIL (|has| |#2| (-344)))) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#2| (-1016)))) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2557 (($ (-852)) NIL (|has| |#2| (-344)))) (-2435 (((-1034) $) NIL (|has| |#2| (-1016)))) (-3879 ((|#2| $) NIL (|has| (-523) (-786)))) (-2408 (($ $ |#2|) NIL (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#2|))) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-3184 (((-589 |#2|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#2| $ (-523) |#2|) NIL) ((|#2| $ (-523)) NIL)) (-1879 ((|#2| $ $) NIL (|has| |#2| (-973)))) (-3621 (($ (-1169 |#2|)) NIL)) (-4012 (((-126)) NIL (|has| |#2| (-339)))) (-4024 (($ $) NIL (-12 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-710)) NIL (-12 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-1087)) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1 |#2| |#2|) (-710)) NIL (|has| |#2| (-973))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-973)))) (-2452 (((-710) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248))) (((-710) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-4124 (($ $) NIL)) (-3976 (((-1169 |#2|) $) NIL) (($ (-523)) NIL (-3255 (-12 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016))) (|has| |#2| (-973)))) (($ (-383 (-523))) NIL (-12 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016)))) (($ |#2|) NIL (|has| |#2| (-1016))) (((-794) $) NIL (|has| |#2| (-563 (-794))))) (-1698 (((-710)) NIL (|has| |#2| (-973)))) (-1505 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-3984 (($ $) NIL (|has| |#2| (-784)))) (-2573 (($ $ (-710)) NIL (|has| |#2| (-973))) (($ $ (-852)) NIL (|has| |#2| (-973)))) (-1428 (($) NIL (|has| |#2| (-124)) CONST)) (-1440 (($) NIL (|has| |#2| (-973)) CONST)) (-1943 (($ $) NIL (-12 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-710)) NIL (-12 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-1087)) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1 |#2| |#2|) (-710)) NIL (|has| |#2| (-973))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-973)))) (-4078 (((-108) $ $) NIL (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-4061 (((-108) $ $) NIL (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-4037 (((-108) $ $) NIL (|has| |#2| (-1016)))) (-4070 (((-108) $ $) NIL (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-4052 (((-108) $ $) 15 (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-4125 (($ $ |#2|) NIL (|has| |#2| (-339)))) (-4115 (($ $ $) NIL (|has| |#2| (-973))) (($ $) NIL (|has| |#2| (-973)))) (-4103 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-710)) NIL (|has| |#2| (-973))) (($ $ (-852)) NIL (|has| |#2| (-973)))) (* (($ $ $) NIL (|has| |#2| (-973))) (($ (-523) $) NIL (|has| |#2| (-973))) (($ $ |#2|) NIL (|has| |#2| (-666))) (($ |#2| $) NIL (|has| |#2| (-666))) (($ (-710) $) NIL (|has| |#2| (-124))) (($ (-852) $) NIL (|has| |#2| (-25)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-456 |#1| |#2|) (-216 |#1| |#2|) (-710) (-732)) (T -456))
-NIL
-(-216 |#1| |#2|)
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2282 (((-108) $ (-710)) NIL)) (-1640 (($) NIL T CONST)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-3325 (($ $ $) 32)) (-3123 (($ $ $) 31)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2644 ((|#1| $) 26)) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2349 ((|#1| $) 27)) (-3862 (($ |#1| $) 10)) (-3850 (($ (-589 |#1|)) 12)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-1322 ((|#1| $) 23)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) 9)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1245 (($ (-589 |#1|)) 29)) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1271 (((-710) $) 21 (|has| $ (-6 -4248)))))
-(((-457 |#1|) (-13 (-898 |#1|) (-10 -8 (-15 -3850 ($ (-589 |#1|))))) (-786)) (T -457))
-((-3850 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-786)) (-5 *1 (-457 *3)))))
-(-13 (-898 |#1|) (-10 -8 (-15 -3850 ($ (-589 |#1|)))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-1830 (($ $) 69)) (-3462 (((-108) $) NIL)) (-3841 (((-1070) $) NIL)) (-4140 (((-389 |#2| (-383 |#2|) |#3| |#4|) $) 44)) (-2435 (((-1034) $) NIL)) (-4102 (((-3 |#4| "failed") $) 107)) (-2046 (($ (-389 |#2| (-383 |#2|) |#3| |#4|)) 76) (($ |#4|) 32) (($ |#1| |#1|) 115) (($ |#1| |#1| (-523)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 127)) (-3720 (((-2 (|:| -2323 (-389 |#2| (-383 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 46)) (-3976 (((-794) $) 102)) (-1428 (($) 33 T CONST)) (-4037 (((-108) $ $) 109)) (-4115 (($ $) 72) (($ $ $) NIL)) (-4103 (($ $ $) 70)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 73)))
-(((-458 |#1| |#2| |#3| |#4|) (-311 |#1| |#2| |#3| |#4|) (-339) (-1145 |#1|) (-1145 (-383 |#2|)) (-318 |#1| |#2| |#3|)) (T -458))
-NIL
-(-311 |#1| |#2| |#3| |#4|)
-((-3396 (((-523) (-589 (-523))) 30)) (-2942 ((|#1| (-589 |#1|)) 56)) (-1890 (((-589 |#1|) (-589 |#1|)) 57)) (-2476 (((-589 |#1|) (-589 |#1|)) 59)) (-2056 ((|#1| (-589 |#1|)) 58)) (-2267 (((-589 (-523)) (-589 |#1|)) 33)))
-(((-459 |#1|) (-10 -7 (-15 -2056 (|#1| (-589 |#1|))) (-15 -2942 (|#1| (-589 |#1|))) (-15 -2476 ((-589 |#1|) (-589 |#1|))) (-15 -1890 ((-589 |#1|) (-589 |#1|))) (-15 -2267 ((-589 (-523)) (-589 |#1|))) (-15 -3396 ((-523) (-589 (-523))))) (-1145 (-523))) (T -459))
-((-3396 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-523)) (-5 *1 (-459 *4)) (-4 *4 (-1145 *2)))) (-2267 (*1 *2 *3) (-12 (-5 *3 (-589 *4)) (-4 *4 (-1145 (-523))) (-5 *2 (-589 (-523))) (-5 *1 (-459 *4)))) (-1890 (*1 *2 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1145 (-523))) (-5 *1 (-459 *3)))) (-2476 (*1 *2 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1145 (-523))) (-5 *1 (-459 *3)))) (-2942 (*1 *2 *3) (-12 (-5 *3 (-589 *2)) (-5 *1 (-459 *2)) (-4 *2 (-1145 (-523))))) (-2056 (*1 *2 *3) (-12 (-5 *3 (-589 *2)) (-5 *1 (-459 *2)) (-4 *2 (-1145 (-523))))))
-(-10 -7 (-15 -2056 (|#1| (-589 |#1|))) (-15 -2942 (|#1| (-589 |#1|))) (-15 -2476 ((-589 |#1|) (-589 |#1|))) (-15 -1890 ((-589 |#1|) (-589 |#1|))) (-15 -2267 ((-589 (-523)) (-589 |#1|))) (-15 -3396 ((-523) (-589 (-523)))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3964 (((-523) $) NIL (|has| (-523) (-284)))) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-3684 (((-108) $ $) NIL)) (-2035 (((-523) $) NIL (|has| (-523) (-759)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL) (((-3 (-1087) "failed") $) NIL (|has| (-523) (-964 (-1087)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| (-523) (-964 (-523)))) (((-3 (-523) "failed") $) NIL (|has| (-523) (-964 (-523))))) (-1996 (((-523) $) NIL) (((-1087) $) NIL (|has| (-523) (-964 (-1087)))) (((-383 (-523)) $) NIL (|has| (-523) (-964 (-523)))) (((-523) $) NIL (|has| (-523) (-964 (-523))))) (-2501 (($ $ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| (-523) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| (-523) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL) (((-629 (-523)) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) NIL (|has| (-523) (-508)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-3702 (((-108) $) NIL (|has| (-523) (-759)))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (|has| (-523) (-817 (-523)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (|has| (-523) (-817 (-355))))) (-3482 (((-108) $) NIL)) (-2364 (($ $) NIL)) (-2164 (((-523) $) NIL)) (-1289 (((-3 $ "failed") $) NIL (|has| (-523) (-1063)))) (-4050 (((-108) $) NIL (|has| (-523) (-759)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3268 (($ $ $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| (-523) (-786)))) (-3015 (($ (-1 (-523) (-523)) $) NIL)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| (-523) (-1063)) CONST)) (-1469 (($ (-383 (-523))) 9)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3934 (($ $) NIL (|has| (-523) (-284))) (((-383 (-523)) $) NIL)) (-1250 (((-523) $) NIL (|has| (-523) (-508)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-1349 (($ $ (-589 (-523)) (-589 (-523))) NIL (|has| (-523) (-286 (-523)))) (($ $ (-523) (-523)) NIL (|has| (-523) (-286 (-523)))) (($ $ (-271 (-523))) NIL (|has| (-523) (-286 (-523)))) (($ $ (-589 (-271 (-523)))) NIL (|has| (-523) (-286 (-523)))) (($ $ (-589 (-1087)) (-589 (-523))) NIL (|has| (-523) (-484 (-1087) (-523)))) (($ $ (-1087) (-523)) NIL (|has| (-523) (-484 (-1087) (-523))))) (-3087 (((-710) $) NIL)) (-1502 (($ $ (-523)) NIL (|has| (-523) (-263 (-523) (-523))))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-4024 (($ $) NIL (|has| (-523) (-211))) (($ $ (-710)) NIL (|has| (-523) (-211))) (($ $ (-1087)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1 (-523) (-523)) (-710)) NIL) (($ $ (-1 (-523) (-523))) NIL)) (-3758 (($ $) NIL)) (-2171 (((-523) $) NIL)) (-3077 (((-823 (-523)) $) NIL (|has| (-523) (-564 (-823 (-523))))) (((-823 (-355)) $) NIL (|has| (-523) (-564 (-823 (-355))))) (((-499) $) NIL (|has| (-523) (-564 (-499)))) (((-355) $) NIL (|has| (-523) (-949))) (((-203) $) NIL (|has| (-523) (-949)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| (-523) (-840))))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) 8) (($ (-523)) NIL) (($ (-1087)) NIL (|has| (-523) (-964 (-1087)))) (((-383 (-523)) $) NIL) (((-932 16) $) 10)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| (-523) (-840))) (|has| (-523) (-134))))) (-1698 (((-710)) NIL)) (-1516 (((-523) $) NIL (|has| (-523) (-508)))) (-3842 (((-108) $ $) NIL)) (-3984 (($ $) NIL (|has| (-523) (-759)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $) NIL (|has| (-523) (-211))) (($ $ (-710)) NIL (|has| (-523) (-211))) (($ $ (-1087)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1 (-523) (-523)) (-710)) NIL) (($ $ (-1 (-523) (-523))) NIL)) (-4078 (((-108) $ $) NIL (|has| (-523) (-786)))) (-4061 (((-108) $ $) NIL (|has| (-523) (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| (-523) (-786)))) (-4052 (((-108) $ $) NIL (|has| (-523) (-786)))) (-4125 (($ $ $) NIL) (($ (-523) (-523)) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ (-523) $) NIL) (($ $ (-523)) NIL)))
-(((-460) (-13 (-921 (-523)) (-10 -8 (-15 -3976 ((-383 (-523)) $)) (-15 -3976 ((-932 16) $)) (-15 -3934 ((-383 (-523)) $)) (-15 -1469 ($ (-383 (-523))))))) (T -460))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-460)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-932 16)) (-5 *1 (-460)))) (-3934 (*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-460)))) (-1469 (*1 *1 *2) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-460)))))
-(-13 (-921 (-523)) (-10 -8 (-15 -3976 ((-383 (-523)) $)) (-15 -3976 ((-932 16) $)) (-15 -3934 ((-383 (-523)) $)) (-15 -1469 ($ (-383 (-523))))))
-((-3056 (((-589 |#2|) $) 23)) (-1348 (((-108) |#2| $) 28)) (-2720 (((-108) (-1 (-108) |#2|) $) 21)) (-1349 (($ $ (-589 (-271 |#2|))) 13) (($ $ (-271 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-589 |#2|) (-589 |#2|)) NIL)) (-2452 (((-710) (-1 (-108) |#2|) $) 22) (((-710) |#2| $) 26)) (-3976 (((-794) $) 37)) (-1505 (((-108) (-1 (-108) |#2|) $) 20)) (-4037 (((-108) $ $) 31)) (-1271 (((-710) $) 17)))
-(((-461 |#1| |#2|) (-10 -8 (-15 -3976 ((-794) |#1|)) (-15 -4037 ((-108) |#1| |#1|)) (-15 -1349 (|#1| |#1| (-589 |#2|) (-589 |#2|))) (-15 -1349 (|#1| |#1| |#2| |#2|)) (-15 -1349 (|#1| |#1| (-271 |#2|))) (-15 -1349 (|#1| |#1| (-589 (-271 |#2|)))) (-15 -1348 ((-108) |#2| |#1|)) (-15 -2452 ((-710) |#2| |#1|)) (-15 -3056 ((-589 |#2|) |#1|)) (-15 -2452 ((-710) (-1 (-108) |#2|) |#1|)) (-15 -2720 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1505 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1271 ((-710) |#1|))) (-462 |#2|) (-1123)) (T -461))
-NIL
-(-10 -8 (-15 -3976 ((-794) |#1|)) (-15 -4037 ((-108) |#1| |#1|)) (-15 -1349 (|#1| |#1| (-589 |#2|) (-589 |#2|))) (-15 -1349 (|#1| |#1| |#2| |#2|)) (-15 -1349 (|#1| |#1| (-271 |#2|))) (-15 -1349 (|#1| |#1| (-589 (-271 |#2|)))) (-15 -1348 ((-108) |#2| |#1|)) (-15 -2452 ((-710) |#2| |#1|)) (-15 -3056 ((-589 |#2|) |#1|)) (-15 -2452 ((-710) (-1 (-108) |#2|) |#1|)) (-15 -2720 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1505 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1271 ((-710) |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2282 (((-108) $ (-710)) 8)) (-1640 (($) 7 T CONST)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-462 |#1|) (-129) (-1123)) (T -462))
-((-3015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-462 *3)) (-4 *3 (-1123)))) (-3063 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4249)) (-4 *1 (-462 *3)) (-4 *3 (-1123)))) (-1505 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4248)) (-4 *1 (-462 *4)) (-4 *4 (-1123)) (-5 *2 (-108)))) (-2720 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4248)) (-4 *1 (-462 *4)) (-4 *4 (-1123)) (-5 *2 (-108)))) (-2452 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4248)) (-4 *1 (-462 *4)) (-4 *4 (-1123)) (-5 *2 (-710)))) (-3133 (*1 *2 *1) (-12 (|has| *1 (-6 -4248)) (-4 *1 (-462 *3)) (-4 *3 (-1123)) (-5 *2 (-589 *3)))) (-3056 (*1 *2 *1) (-12 (|has| *1 (-6 -4248)) (-4 *1 (-462 *3)) (-4 *3 (-1123)) (-5 *2 (-589 *3)))) (-2452 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4248)) (-4 *1 (-462 *3)) (-4 *3 (-1123)) (-4 *3 (-1016)) (-5 *2 (-710)))) (-1348 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4248)) (-4 *1 (-462 *3)) (-4 *3 (-1123)) (-4 *3 (-1016)) (-5 *2 (-108)))))
-(-13 (-33) (-10 -8 (IF (|has| |t#1| (-563 (-794))) (-6 (-563 (-794))) |%noBranch|) (IF (|has| |t#1| (-1016)) (-6 (-1016)) |%noBranch|) (IF (|has| |t#1| (-1016)) (IF (|has| |t#1| (-286 |t#1|)) (-6 (-286 |t#1|)) |%noBranch|) |%noBranch|) (-15 -3015 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4249)) (-15 -3063 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4248)) (PROGN (-15 -1505 ((-108) (-1 (-108) |t#1|) $)) (-15 -2720 ((-108) (-1 (-108) |t#1|) $)) (-15 -2452 ((-710) (-1 (-108) |t#1|) $)) (-15 -3133 ((-589 |t#1|) $)) (-15 -3056 ((-589 |t#1|) $)) (IF (|has| |t#1| (-1016)) (PROGN (-15 -2452 ((-710) |t#1| $)) (-15 -1348 ((-108) |t#1| $))) |%noBranch|)) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-3695 (($ $) 15)) (-3669 (($ $) 24)) (-3717 (($ $) 12)) (-3730 (($ $) 10)) (-3707 (($ $) 17)) (-3683 (($ $) 22)))
-(((-463 |#1|) (-10 -8 (-15 -3683 (|#1| |#1|)) (-15 -3707 (|#1| |#1|)) (-15 -3730 (|#1| |#1|)) (-15 -3717 (|#1| |#1|)) (-15 -3669 (|#1| |#1|)) (-15 -3695 (|#1| |#1|))) (-464)) (T -463))
-NIL
-(-10 -8 (-15 -3683 (|#1| |#1|)) (-15 -3707 (|#1| |#1|)) (-15 -3730 (|#1| |#1|)) (-15 -3717 (|#1| |#1|)) (-15 -3669 (|#1| |#1|)) (-15 -3695 (|#1| |#1|)))
-((-3695 (($ $) 11)) (-3669 (($ $) 10)) (-3717 (($ $) 9)) (-3730 (($ $) 8)) (-3707 (($ $) 7)) (-3683 (($ $) 6)))
-(((-464) (-129)) (T -464))
-((-3695 (*1 *1 *1) (-4 *1 (-464))) (-3669 (*1 *1 *1) (-4 *1 (-464))) (-3717 (*1 *1 *1) (-4 *1 (-464))) (-3730 (*1 *1 *1) (-4 *1 (-464))) (-3707 (*1 *1 *1) (-4 *1 (-464))) (-3683 (*1 *1 *1) (-4 *1 (-464))))
-(-13 (-10 -8 (-15 -3683 ($ $)) (-15 -3707 ($ $)) (-15 -3730 ($ $)) (-15 -3717 ($ $)) (-15 -3669 ($ $)) (-15 -3695 ($ $))))
-((-3573 (((-394 |#4|) |#4| (-1 (-394 |#2|) |#2|)) 42)))
-(((-465 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3573 ((-394 |#4|) |#4| (-1 (-394 |#2|) |#2|)))) (-339) (-1145 |#1|) (-13 (-339) (-136) (-664 |#1| |#2|)) (-1145 |#3|)) (T -465))
-((-3573 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-394 *6) *6)) (-4 *6 (-1145 *5)) (-4 *5 (-339)) (-4 *7 (-13 (-339) (-136) (-664 *5 *6))) (-5 *2 (-394 *3)) (-5 *1 (-465 *5 *6 *7 *3)) (-4 *3 (-1145 *7)))))
-(-10 -7 (-15 -3573 ((-394 |#4|) |#4| (-1 (-394 |#2|) |#2|))))
-((-3260 (((-108) $ $) NIL)) (-4090 (((-589 $) (-1083 $) (-1087)) NIL) (((-589 $) (-1083 $)) NIL) (((-589 $) (-883 $)) NIL)) (-3472 (($ (-1083 $) (-1087)) NIL) (($ (-1083 $)) NIL) (($ (-883 $)) NIL)) (-2388 (((-108) $) 39)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2093 (((-108) $ $) 64)) (-2394 (((-589 (-562 $)) $) 48)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3834 (($ $ (-271 $)) NIL) (($ $ (-589 (-271 $))) NIL) (($ $ (-589 (-562 $)) (-589 $)) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3584 (($ $) NIL)) (-3684 (((-108) $ $) NIL)) (-1640 (($) NIL T CONST)) (-1258 (((-589 $) (-1083 $) (-1087)) NIL) (((-589 $) (-1083 $)) NIL) (((-589 $) (-883 $)) NIL)) (-2167 (($ (-1083 $) (-1087)) NIL) (($ (-1083 $)) NIL) (($ (-883 $)) NIL)) (-2898 (((-3 (-562 $) "failed") $) NIL) (((-3 (-523) "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL)) (-1996 (((-562 $) $) NIL) (((-523) $) NIL) (((-383 (-523)) $) 50)) (-2501 (($ $ $) NIL)) (-2203 (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL) (((-629 (-523)) (-629 $)) NIL) (((-2 (|:| -2373 (-629 (-383 (-523)))) (|:| |vec| (-1169 (-383 (-523))))) (-629 $) (-1169 $)) NIL) (((-629 (-383 (-523))) (-629 $)) NIL)) (-1830 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-4035 (($ $) NIL) (($ (-589 $)) NIL)) (-2856 (((-589 (-110)) $) NIL)) (-1564 (((-110) (-110)) NIL)) (-3482 (((-108) $) 42)) (-2126 (((-108) $) NIL (|has| $ (-964 (-523))))) (-2164 (((-1039 (-523) (-562 $)) $) 37)) (-1324 (($ $ (-523)) NIL)) (-2765 (((-1083 $) (-1083 $) (-562 $)) 78) (((-1083 $) (-1083 $) (-589 (-562 $))) 55) (($ $ (-562 $)) 67) (($ $ (-589 (-562 $))) 68)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-4016 (((-1083 $) (-562 $)) 65 (|has| $ (-973)))) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3015 (($ (-1 $ $) (-562 $)) NIL)) (-2215 (((-3 (-562 $) "failed") $) NIL)) (-2012 (($ (-589 $)) NIL) (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-3526 (((-589 (-562 $)) $) NIL)) (-2217 (($ (-110) $) NIL) (($ (-110) (-589 $)) NIL)) (-2676 (((-108) $ (-110)) NIL) (((-108) $ (-1087)) NIL)) (-3071 (($ $) NIL)) (-1942 (((-710) $) NIL)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ (-589 $)) NIL) (($ $ $) NIL)) (-3791 (((-108) $ $) NIL) (((-108) $ (-1087)) NIL)) (-3573 (((-394 $) $) NIL)) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3775 (((-108) $) NIL (|has| $ (-964 (-523))))) (-1349 (($ $ (-562 $) $) NIL) (($ $ (-589 (-562 $)) (-589 $)) NIL) (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-589 (-1087)) (-589 (-1 $ $))) NIL) (($ $ (-589 (-1087)) (-589 (-1 $ (-589 $)))) NIL) (($ $ (-1087) (-1 $ (-589 $))) NIL) (($ $ (-1087) (-1 $ $)) NIL) (($ $ (-589 (-110)) (-589 (-1 $ $))) NIL) (($ $ (-589 (-110)) (-589 (-1 $ (-589 $)))) NIL) (($ $ (-110) (-1 $ (-589 $))) NIL) (($ $ (-110) (-1 $ $)) NIL)) (-3087 (((-710) $) NIL)) (-1502 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-589 $)) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2404 (($ $) NIL) (($ $ $) NIL)) (-4024 (($ $ (-710)) NIL) (($ $) 36)) (-2171 (((-1039 (-523) (-562 $)) $) 20)) (-3399 (($ $) NIL (|has| $ (-973)))) (-3077 (((-355) $) 92) (((-203) $) 100) (((-155 (-355)) $) 108)) (-3976 (((-794) $) NIL) (($ (-562 $)) NIL) (($ (-383 (-523))) NIL) (($ $) NIL) (($ (-523)) NIL) (($ (-1039 (-523) (-562 $))) 21)) (-1698 (((-710)) NIL)) (-4114 (($ $) NIL) (($ (-589 $)) NIL)) (-1651 (((-108) (-110)) 84)) (-3842 (((-108) $ $) NIL)) (-2573 (($ $ (-523)) NIL) (($ $ (-710)) NIL) (($ $ (-852)) NIL)) (-1428 (($) 10 T CONST)) (-1440 (($) 22 T CONST)) (-1943 (($ $ (-710)) NIL) (($ $) NIL)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 24)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) NIL)) (-4125 (($ $ $) 44)) (-4115 (($ $ $) NIL) (($ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-383 (-523))) NIL) (($ $ (-523)) 46) (($ $ (-710)) NIL) (($ $ (-852)) NIL)) (* (($ (-383 (-523)) $) NIL) (($ $ (-383 (-523))) NIL) (($ $ $) 27) (($ (-523) $) NIL) (($ (-710) $) NIL) (($ (-852) $) NIL)))
-(((-466) (-13 (-279) (-27) (-964 (-523)) (-964 (-383 (-523))) (-585 (-523)) (-949) (-585 (-383 (-523))) (-136) (-564 (-155 (-355))) (-211) (-10 -8 (-15 -3976 ($ (-1039 (-523) (-562 $)))) (-15 -2164 ((-1039 (-523) (-562 $)) $)) (-15 -2171 ((-1039 (-523) (-562 $)) $)) (-15 -1830 ($ $)) (-15 -2093 ((-108) $ $)) (-15 -2765 ((-1083 $) (-1083 $) (-562 $))) (-15 -2765 ((-1083 $) (-1083 $) (-589 (-562 $)))) (-15 -2765 ($ $ (-562 $))) (-15 -2765 ($ $ (-589 (-562 $))))))) (T -466))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1039 (-523) (-562 (-466)))) (-5 *1 (-466)))) (-2164 (*1 *2 *1) (-12 (-5 *2 (-1039 (-523) (-562 (-466)))) (-5 *1 (-466)))) (-2171 (*1 *2 *1) (-12 (-5 *2 (-1039 (-523) (-562 (-466)))) (-5 *1 (-466)))) (-1830 (*1 *1 *1) (-5 *1 (-466))) (-2093 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-466)))) (-2765 (*1 *2 *2 *3) (-12 (-5 *2 (-1083 (-466))) (-5 *3 (-562 (-466))) (-5 *1 (-466)))) (-2765 (*1 *2 *2 *3) (-12 (-5 *2 (-1083 (-466))) (-5 *3 (-589 (-562 (-466)))) (-5 *1 (-466)))) (-2765 (*1 *1 *1 *2) (-12 (-5 *2 (-562 (-466))) (-5 *1 (-466)))) (-2765 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-562 (-466)))) (-5 *1 (-466)))))
-(-13 (-279) (-27) (-964 (-523)) (-964 (-383 (-523))) (-585 (-523)) (-949) (-585 (-383 (-523))) (-136) (-564 (-155 (-355))) (-211) (-10 -8 (-15 -3976 ($ (-1039 (-523) (-562 $)))) (-15 -2164 ((-1039 (-523) (-562 $)) $)) (-15 -2171 ((-1039 (-523) (-562 $)) $)) (-15 -1830 ($ $)) (-15 -2093 ((-108) $ $)) (-15 -2765 ((-1083 $) (-1083 $) (-562 $))) (-15 -2765 ((-1083 $) (-1083 $) (-589 (-562 $)))) (-15 -2765 ($ $ (-562 $))) (-15 -2765 ($ $ (-589 (-562 $))))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-4159 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-786)))) (-2361 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4249))) (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| |#1| (-786))))) (-3400 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-786)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#1| $ (-523) |#1|) 25 (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) NIL (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-4091 (($ $) NIL (|has| $ (-6 -4249)))) (-4082 (($ $) NIL)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2231 (($ |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#1| $ (-523) |#1|) 22 (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) 21)) (-1894 (((-523) (-1 (-108) |#1|) $) NIL) (((-523) |#1| $) NIL (|has| |#1| (-1016))) (((-523) |#1| $ (-523)) NIL (|has| |#1| (-1016)))) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-2348 (($ (-710) |#1|) 14)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) 12 (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-3123 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-786)))) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2133 (((-523) $) 23 (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) 16 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 17) (($ (-1 |#1| |#1| |#1|) $ $) 19)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-3334 (($ |#1| $ (-523)) NIL) (($ $ $ (-523)) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-3879 ((|#1| $) NIL (|has| (-523) (-786)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2408 (($ $ |#1|) 10 (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) 13)) (-1502 ((|#1| $ (-523) |#1|) NIL) ((|#1| $ (-523)) 24) (($ $ (-1136 (-523))) NIL)) (-3725 (($ $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2580 (($ $ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) NIL)) (-2785 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-589 $)) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-1271 (((-710) $) 9 (|has| $ (-6 -4248)))))
-(((-467 |#1| |#2|) (-19 |#1|) (-1123) (-523)) (T -467))
+((-1488 (($ $) 6)) (-1409 (($ $) 7)) (** (($ $ $) 8)))
+(((-263) (-131)) (T -263))
+((** (*1 *1 *1 *1) (-4 *1 (-263))) (-1409 (*1 *1 *1) (-4 *1 (-263))) (-1488 (*1 *1 *1) (-4 *1 (-263))))
+(-13 (-10 -8 (-15 -1488 ($ $)) (-15 -1409 ($ $)) (-15 ** ($ $ $))))
+((-2477 (((-591 (-1070 |#1|)) (-1070 |#1|) |#1|) 35)) (-1323 ((|#2| |#2| |#1|) 38)) (-1546 ((|#2| |#2| |#1|) 40)) (-3359 ((|#2| |#2| |#1|) 39)))
+(((-264 |#1| |#2|) (-10 -7 (-15 -1323 (|#2| |#2| |#1|)) (-15 -3359 (|#2| |#2| |#1|)) (-15 -1546 (|#2| |#2| |#1|)) (-15 -2477 ((-591 (-1070 |#1|)) (-1070 |#1|) |#1|))) (-341) (-1162 |#1|)) (T -264))
+((-2477 (*1 *2 *3 *4) (-12 (-4 *4 (-341)) (-5 *2 (-591 (-1070 *4))) (-5 *1 (-264 *4 *5)) (-5 *3 (-1070 *4)) (-4 *5 (-1162 *4)))) (-1546 (*1 *2 *2 *3) (-12 (-4 *3 (-341)) (-5 *1 (-264 *3 *2)) (-4 *2 (-1162 *3)))) (-3359 (*1 *2 *2 *3) (-12 (-4 *3 (-341)) (-5 *1 (-264 *3 *2)) (-4 *2 (-1162 *3)))) (-1323 (*1 *2 *2 *3) (-12 (-4 *3 (-341)) (-5 *1 (-264 *3 *2)) (-4 *2 (-1162 *3)))))
+(-10 -7 (-15 -1323 (|#2| |#2| |#1|)) (-15 -3359 (|#2| |#2| |#1|)) (-15 -1546 (|#2| |#2| |#1|)) (-15 -2477 ((-591 (-1070 |#1|)) (-1070 |#1|) |#1|)))
+((-3164 ((|#2| $ |#1|) 6)))
+(((-265 |#1| |#2|) (-131) (-1018) (-1125)) (T -265))
+((-3164 (*1 *2 *1 *3) (-12 (-4 *1 (-265 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1125)))))
+(-13 (-10 -8 (-15 -3164 (|t#2| $ |t#1|))))
+((-3255 ((|#3| $ |#2| |#3|) 12)) (-3217 ((|#3| $ |#2|) 10)))
+(((-266 |#1| |#2| |#3|) (-10 -8 (-15 -3255 (|#3| |#1| |#2| |#3|)) (-15 -3217 (|#3| |#1| |#2|))) (-267 |#2| |#3|) (-1018) (-1125)) (T -266))
+NIL
+(-10 -8 (-15 -3255 (|#3| |#1| |#2| |#3|)) (-15 -3217 (|#3| |#1| |#2|)))
+((-3186 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4251)))) (-3255 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4251)))) (-3217 ((|#2| $ |#1|) 11)) (-3164 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
+(((-267 |#1| |#2|) (-131) (-1018) (-1125)) (T -267))
+((-3164 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-267 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1125)))) (-3217 (*1 *2 *1 *3) (-12 (-4 *1 (-267 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1125)))) (-3186 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-267 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1125)))) (-3255 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-267 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1125)))))
+(-13 (-265 |t#1| |t#2|) (-10 -8 (-15 -3164 (|t#2| $ |t#1| |t#2|)) (-15 -3217 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4251)) (PROGN (-15 -3186 (|t#2| $ |t#1| |t#2|)) (-15 -3255 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
+(((-265 |#1| |#2|) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 35)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 40)) (-3706 (($ $) 38)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1947 (((-108) $ $) NIL)) (-3798 (($) NIL T CONST)) (-2129 (($ $ $) 33)) (-1227 (($ |#2| |#3|) 19)) (-4163 (((-3 $ "failed") $) NIL)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2824 (((-108) $) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3940 ((|#3| $) NIL)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 20)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3557 (((-3 $ "failed") $ $) NIL)) (-1712 (((-712) $) 34)) (-3164 ((|#2| $ |#2|) 42)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 24)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-2128 (((-712)) NIL)) (-2495 (((-108) $ $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 29 T CONST)) (-4197 (($) 36 T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 37)))
+(((-268 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-286) (-10 -8 (-15 -3940 (|#3| $)) (-15 -3022 (|#2| $)) (-15 -1227 ($ |#2| |#3|)) (-15 -3557 ((-3 $ "failed") $ $)) (-15 -4163 ((-3 $ "failed") $)) (-15 -1622 ($ $)) (-15 -3164 (|#2| $ |#2|)))) (-160) (-1147 |#1|) (-23) (-1 |#2| |#2| |#3|) (-1 (-3 |#3| "failed") |#3| |#3|) (-1 (-3 |#2| "failed") |#2| |#2| |#3|)) (T -268))
+((-4163 (*1 *1 *1) (|partial| -12 (-4 *2 (-160)) (-5 *1 (-268 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1147 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-3940 (*1 *2 *1) (-12 (-4 *3 (-160)) (-4 *2 (-23)) (-5 *1 (-268 *3 *4 *2 *5 *6 *7)) (-4 *4 (-1147 *3)) (-14 *5 (-1 *4 *4 *2)) (-14 *6 (-1 (-3 *2 "failed") *2 *2)) (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2)))) (-3022 (*1 *2 *1) (-12 (-4 *2 (-1147 *3)) (-5 *1 (-268 *3 *2 *4 *5 *6 *7)) (-4 *3 (-160)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4)))) (-1227 (*1 *1 *2 *3) (-12 (-4 *4 (-160)) (-5 *1 (-268 *4 *2 *3 *5 *6 *7)) (-4 *2 (-1147 *4)) (-4 *3 (-23)) (-14 *5 (-1 *2 *2 *3)) (-14 *6 (-1 (-3 *3 "failed") *3 *3)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3557 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-160)) (-5 *1 (-268 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1147 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-1622 (*1 *1 *1) (-12 (-4 *2 (-160)) (-5 *1 (-268 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1147 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-3164 (*1 *2 *1 *2) (-12 (-4 *3 (-160)) (-5 *1 (-268 *3 *2 *4 *5 *6 *7)) (-4 *2 (-1147 *3)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4)))))
+(-13 (-286) (-10 -8 (-15 -3940 (|#3| $)) (-15 -3022 (|#2| $)) (-15 -1227 ($ |#2| |#3|)) (-15 -3557 ((-3 $ "failed") $ $)) (-15 -4163 ((-3 $ "failed") $)) (-15 -1622 ($ $)) (-15 -3164 (|#2| $ |#2|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11) (($ (-525)) 28)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-269) (-131)) (T -269))
+NIL
+(-13 (-975) (-107 $ $) (-10 -7 (-6 -4243)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 $ $) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 $) . T) ((-668) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3885 (($ (-1089) (-1089) (-1022) $) 16)) (-3721 (($ (-1089) (-591 (-897)) $) 21)) (-1586 (((-591 (-1005)) $) 9)) (-3774 (((-3 (-1022) "failed") (-1089) (-1089) $) 15)) (-3799 (((-3 (-591 (-897)) "failed") (-1089) $) 20)) (-3209 (($) 6)) (-3519 (($) 22)) (-3022 (((-796) $) 26)) (-3926 (($) 23)))
+(((-270) (-13 (-565 (-796)) (-10 -8 (-15 -3209 ($)) (-15 -1586 ((-591 (-1005)) $)) (-15 -3774 ((-3 (-1022) "failed") (-1089) (-1089) $)) (-15 -3885 ($ (-1089) (-1089) (-1022) $)) (-15 -3799 ((-3 (-591 (-897)) "failed") (-1089) $)) (-15 -3721 ($ (-1089) (-591 (-897)) $)) (-15 -3519 ($)) (-15 -3926 ($))))) (T -270))
+((-3209 (*1 *1) (-5 *1 (-270))) (-1586 (*1 *2 *1) (-12 (-5 *2 (-591 (-1005))) (-5 *1 (-270)))) (-3774 (*1 *2 *3 *3 *1) (|partial| -12 (-5 *3 (-1089)) (-5 *2 (-1022)) (-5 *1 (-270)))) (-3885 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-1089)) (-5 *3 (-1022)) (-5 *1 (-270)))) (-3799 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1089)) (-5 *2 (-591 (-897))) (-5 *1 (-270)))) (-3721 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-897))) (-5 *1 (-270)))) (-3519 (*1 *1) (-5 *1 (-270))) (-3926 (*1 *1) (-5 *1 (-270))))
+(-13 (-565 (-796)) (-10 -8 (-15 -3209 ($)) (-15 -1586 ((-591 (-1005)) $)) (-15 -3774 ((-3 (-1022) "failed") (-1089) (-1089) $)) (-15 -3885 ($ (-1089) (-1089) (-1022) $)) (-15 -3799 ((-3 (-591 (-897)) "failed") (-1089) $)) (-15 -3721 ($ (-1089) (-591 (-897)) $)) (-15 -3519 ($)) (-15 -3926 ($))))
+((-3962 (((-591 (-2 (|:| |eigval| (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|)))) (|:| |geneigvec| (-591 (-631 (-385 (-885 |#1|))))))) (-631 (-385 (-885 |#1|)))) 85)) (-1862 (((-591 (-631 (-385 (-885 |#1|)))) (-2 (|:| |eigval| (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|)))) (|:| |eigmult| (-712)) (|:| |eigvec| (-591 (-631 (-385 (-885 |#1|)))))) (-631 (-385 (-885 |#1|)))) 80) (((-591 (-631 (-385 (-885 |#1|)))) (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|))) (-631 (-385 (-885 |#1|))) (-712) (-712)) 38)) (-3703 (((-591 (-2 (|:| |eigval| (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|)))) (|:| |eigmult| (-712)) (|:| |eigvec| (-591 (-631 (-385 (-885 |#1|))))))) (-631 (-385 (-885 |#1|)))) 82)) (-1967 (((-591 (-631 (-385 (-885 |#1|)))) (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|))) (-631 (-385 (-885 |#1|)))) 62)) (-4019 (((-591 (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|)))) (-631 (-385 (-885 |#1|)))) 61)) (-3806 (((-885 |#1|) (-631 (-385 (-885 |#1|)))) 50) (((-885 |#1|) (-631 (-385 (-885 |#1|))) (-1089)) 51)))
+(((-271 |#1|) (-10 -7 (-15 -3806 ((-885 |#1|) (-631 (-385 (-885 |#1|))) (-1089))) (-15 -3806 ((-885 |#1|) (-631 (-385 (-885 |#1|))))) (-15 -4019 ((-591 (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|)))) (-631 (-385 (-885 |#1|))))) (-15 -1967 ((-591 (-631 (-385 (-885 |#1|)))) (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|))) (-631 (-385 (-885 |#1|))))) (-15 -1862 ((-591 (-631 (-385 (-885 |#1|)))) (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|))) (-631 (-385 (-885 |#1|))) (-712) (-712))) (-15 -1862 ((-591 (-631 (-385 (-885 |#1|)))) (-2 (|:| |eigval| (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|)))) (|:| |eigmult| (-712)) (|:| |eigvec| (-591 (-631 (-385 (-885 |#1|)))))) (-631 (-385 (-885 |#1|))))) (-15 -3962 ((-591 (-2 (|:| |eigval| (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|)))) (|:| |geneigvec| (-591 (-631 (-385 (-885 |#1|))))))) (-631 (-385 (-885 |#1|))))) (-15 -3703 ((-591 (-2 (|:| |eigval| (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|)))) (|:| |eigmult| (-712)) (|:| |eigvec| (-591 (-631 (-385 (-885 |#1|))))))) (-631 (-385 (-885 |#1|)))))) (-429)) (T -271))
+((-3703 (*1 *2 *3) (-12 (-4 *4 (-429)) (-5 *2 (-591 (-2 (|:| |eigval| (-3 (-385 (-885 *4)) (-1079 (-1089) (-885 *4)))) (|:| |eigmult| (-712)) (|:| |eigvec| (-591 (-631 (-385 (-885 *4)))))))) (-5 *1 (-271 *4)) (-5 *3 (-631 (-385 (-885 *4)))))) (-3962 (*1 *2 *3) (-12 (-4 *4 (-429)) (-5 *2 (-591 (-2 (|:| |eigval| (-3 (-385 (-885 *4)) (-1079 (-1089) (-885 *4)))) (|:| |geneigvec| (-591 (-631 (-385 (-885 *4)))))))) (-5 *1 (-271 *4)) (-5 *3 (-631 (-385 (-885 *4)))))) (-1862 (*1 *2 *3 *4) (-12 (-5 *3 (-2 (|:| |eigval| (-3 (-385 (-885 *5)) (-1079 (-1089) (-885 *5)))) (|:| |eigmult| (-712)) (|:| |eigvec| (-591 *4)))) (-4 *5 (-429)) (-5 *2 (-591 (-631 (-385 (-885 *5))))) (-5 *1 (-271 *5)) (-5 *4 (-631 (-385 (-885 *5)))))) (-1862 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-3 (-385 (-885 *6)) (-1079 (-1089) (-885 *6)))) (-5 *5 (-712)) (-4 *6 (-429)) (-5 *2 (-591 (-631 (-385 (-885 *6))))) (-5 *1 (-271 *6)) (-5 *4 (-631 (-385 (-885 *6)))))) (-1967 (*1 *2 *3 *4) (-12 (-5 *3 (-3 (-385 (-885 *5)) (-1079 (-1089) (-885 *5)))) (-4 *5 (-429)) (-5 *2 (-591 (-631 (-385 (-885 *5))))) (-5 *1 (-271 *5)) (-5 *4 (-631 (-385 (-885 *5)))))) (-4019 (*1 *2 *3) (-12 (-5 *3 (-631 (-385 (-885 *4)))) (-4 *4 (-429)) (-5 *2 (-591 (-3 (-385 (-885 *4)) (-1079 (-1089) (-885 *4))))) (-5 *1 (-271 *4)))) (-3806 (*1 *2 *3) (-12 (-5 *3 (-631 (-385 (-885 *4)))) (-5 *2 (-885 *4)) (-5 *1 (-271 *4)) (-4 *4 (-429)))) (-3806 (*1 *2 *3 *4) (-12 (-5 *3 (-631 (-385 (-885 *5)))) (-5 *4 (-1089)) (-5 *2 (-885 *5)) (-5 *1 (-271 *5)) (-4 *5 (-429)))))
+(-10 -7 (-15 -3806 ((-885 |#1|) (-631 (-385 (-885 |#1|))) (-1089))) (-15 -3806 ((-885 |#1|) (-631 (-385 (-885 |#1|))))) (-15 -4019 ((-591 (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|)))) (-631 (-385 (-885 |#1|))))) (-15 -1967 ((-591 (-631 (-385 (-885 |#1|)))) (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|))) (-631 (-385 (-885 |#1|))))) (-15 -1862 ((-591 (-631 (-385 (-885 |#1|)))) (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|))) (-631 (-385 (-885 |#1|))) (-712) (-712))) (-15 -1862 ((-591 (-631 (-385 (-885 |#1|)))) (-2 (|:| |eigval| (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|)))) (|:| |eigmult| (-712)) (|:| |eigvec| (-591 (-631 (-385 (-885 |#1|)))))) (-631 (-385 (-885 |#1|))))) (-15 -3962 ((-591 (-2 (|:| |eigval| (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|)))) (|:| |geneigvec| (-591 (-631 (-385 (-885 |#1|))))))) (-631 (-385 (-885 |#1|))))) (-15 -3703 ((-591 (-2 (|:| |eigval| (-3 (-385 (-885 |#1|)) (-1079 (-1089) (-885 |#1|)))) (|:| |eigmult| (-712)) (|:| |eigvec| (-591 (-631 (-385 (-885 |#1|))))))) (-631 (-385 (-885 |#1|))))))
+((-1340 (((-273 |#2|) (-1 |#2| |#1|) (-273 |#1|)) 14)))
+(((-272 |#1| |#2|) (-10 -7 (-15 -1340 ((-273 |#2|) (-1 |#2| |#1|) (-273 |#1|)))) (-1125) (-1125)) (T -272))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-273 *5)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-273 *6)) (-5 *1 (-272 *5 *6)))))
+(-10 -7 (-15 -1340 ((-273 |#2|) (-1 |#2| |#1|) (-273 |#1|))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-1800 (((-108) $) NIL (|has| |#1| (-21)))) (-2792 (($ $) 23)) (-2157 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3825 (($ $ $) 94 (|has| |#1| (-281)))) (-3798 (($) NIL (-3321 (|has| |#1| (-21)) (|has| |#1| (-668))) CONST)) (-3668 (($ $) 8 (|has| |#1| (-21)))) (-3776 (((-3 $ "failed") $) 69 (|has| |#1| (-668)))) (-3246 ((|#1| $) 22)) (-4163 (((-3 $ "failed") $) 67 (|has| |#1| (-668)))) (-2824 (((-108) $) NIL (|has| |#1| (-668)))) (-1340 (($ (-1 |#1| |#1|) $) 25)) (-3239 ((|#1| $) 9)) (-2183 (($ $) 58 (|has| |#1| (-21)))) (-3442 (((-3 $ "failed") $) 68 (|has| |#1| (-668)))) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-1622 (($ $) 71 (-3321 (|has| |#1| (-341)) (|has| |#1| (-450))))) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-3360 (((-591 $) $) 20 (|has| |#1| (-517)))) (-4132 (($ $ $) 35 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 $)) 38 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-1089) |#1|) 28 (|has| |#1| (-486 (-1089) |#1|))) (($ $ (-591 (-1089)) (-591 |#1|)) 32 (|has| |#1| (-486 (-1089) |#1|)))) (-2717 (($ |#1| |#1|) 18)) (-4224 (((-128)) 89 (|has| |#1| (-341)))) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089)) 86 (|has| |#1| (-833 (-1089))))) (-3228 (($ $ $) NIL (|has| |#1| (-450)))) (-3619 (($ $ $) NIL (|has| |#1| (-450)))) (-3022 (($ (-525)) NIL (|has| |#1| (-975))) (((-108) $) 46 (|has| |#1| (-1018))) (((-796) $) 45 (|has| |#1| (-1018)))) (-2128 (((-712)) 74 (|has| |#1| (-975)))) (-3710 (($ $ (-525)) NIL (|has| |#1| (-450))) (($ $ (-712)) NIL (|has| |#1| (-668))) (($ $ (-854)) NIL (|has| |#1| (-1030)))) (-4191 (($) 56 (|has| |#1| (-21)) CONST)) (-4197 (($) 64 (|has| |#1| (-668)) CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089))))) (-4096 (($ |#1| |#1|) 21) (((-108) $ $) 41 (|has| |#1| (-1018)))) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341))) (($ $ $) 91 (-3321 (|has| |#1| (-341)) (|has| |#1| (-450))))) (-4164 (($ |#1| $) 54 (|has| |#1| (-21))) (($ $ |#1|) 55 (|has| |#1| (-21))) (($ $ $) 53 (|has| |#1| (-21))) (($ $) 52 (|has| |#1| (-21)))) (-4156 (($ |#1| $) 49 (|has| |#1| (-25))) (($ $ |#1|) 50 (|has| |#1| (-25))) (($ $ $) 48 (|has| |#1| (-25)))) (** (($ $ (-525)) NIL (|has| |#1| (-450))) (($ $ (-712)) NIL (|has| |#1| (-668))) (($ $ (-854)) NIL (|has| |#1| (-1030)))) (* (($ $ |#1|) 62 (|has| |#1| (-1030))) (($ |#1| $) 61 (|has| |#1| (-1030))) (($ $ $) 60 (|has| |#1| (-1030))) (($ (-525) $) 76 (|has| |#1| (-21))) (($ (-712) $) NIL (|has| |#1| (-21))) (($ (-854) $) NIL (|has| |#1| (-25)))))
+(((-273 |#1|) (-13 (-1125) (-10 -8 (-15 -4096 ($ |#1| |#1|)) (-15 -2717 ($ |#1| |#1|)) (-15 -2792 ($ $)) (-15 -3239 (|#1| $)) (-15 -3246 (|#1| $)) (-15 -1340 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-486 (-1089) |#1|)) (-6 (-486 (-1089) |#1|)) |%noBranch|) (IF (|has| |#1| (-1018)) (PROGN (-6 (-1018)) (-6 (-565 (-108))) (IF (|has| |#1| (-288 |#1|)) (PROGN (-15 -4132 ($ $ $)) (-15 -4132 ($ $ (-591 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -4156 ($ |#1| $)) (-15 -4156 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2183 ($ $)) (-15 -3668 ($ $)) (-15 -4164 ($ |#1| $)) (-15 -4164 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1030)) (PROGN (-6 (-1030)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-668)) (PROGN (-6 (-668)) (-15 -3442 ((-3 $ "failed") $)) (-15 -3776 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-450)) (PROGN (-6 (-450)) (-15 -3442 ((-3 $ "failed") $)) (-15 -3776 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-975)) (PROGN (-6 (-975)) (-6 (-107 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-160)) (-6 (-659 |#1|)) |%noBranch|) (IF (|has| |#1| (-517)) (-15 -3360 ((-591 $) $)) |%noBranch|) (IF (|has| |#1| (-833 (-1089))) (-6 (-833 (-1089))) |%noBranch|) (IF (|has| |#1| (-341)) (PROGN (-6 (-1178 |#1|)) (-15 -4173 ($ $ $)) (-15 -1622 ($ $))) |%noBranch|) (IF (|has| |#1| (-281)) (-15 -3825 ($ $ $)) |%noBranch|))) (-1125)) (T -273))
+((-4096 (*1 *1 *2 *2) (-12 (-5 *1 (-273 *2)) (-4 *2 (-1125)))) (-2717 (*1 *1 *2 *2) (-12 (-5 *1 (-273 *2)) (-4 *2 (-1125)))) (-2792 (*1 *1 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-1125)))) (-3239 (*1 *2 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-1125)))) (-3246 (*1 *2 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-1125)))) (-1340 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1125)) (-5 *1 (-273 *3)))) (-4132 (*1 *1 *1 *1) (-12 (-4 *2 (-288 *2)) (-4 *2 (-1018)) (-4 *2 (-1125)) (-5 *1 (-273 *2)))) (-4132 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-273 *3))) (-4 *3 (-288 *3)) (-4 *3 (-1018)) (-4 *3 (-1125)) (-5 *1 (-273 *3)))) (-4156 (*1 *1 *2 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-25)) (-4 *2 (-1125)))) (-4156 (*1 *1 *1 *2) (-12 (-5 *1 (-273 *2)) (-4 *2 (-25)) (-4 *2 (-1125)))) (-2183 (*1 *1 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-21)) (-4 *2 (-1125)))) (-3668 (*1 *1 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-21)) (-4 *2 (-1125)))) (-4164 (*1 *1 *2 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-21)) (-4 *2 (-1125)))) (-4164 (*1 *1 *1 *2) (-12 (-5 *1 (-273 *2)) (-4 *2 (-21)) (-4 *2 (-1125)))) (-3442 (*1 *1 *1) (|partial| -12 (-5 *1 (-273 *2)) (-4 *2 (-668)) (-4 *2 (-1125)))) (-3776 (*1 *1 *1) (|partial| -12 (-5 *1 (-273 *2)) (-4 *2 (-668)) (-4 *2 (-1125)))) (-3360 (*1 *2 *1) (-12 (-5 *2 (-591 (-273 *3))) (-5 *1 (-273 *3)) (-4 *3 (-517)) (-4 *3 (-1125)))) (-3825 (*1 *1 *1 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-281)) (-4 *2 (-1125)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-273 *2)) (-4 *2 (-1030)) (-4 *2 (-1125)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-1030)) (-4 *2 (-1125)))) (-4173 (*1 *1 *1 *1) (-3321 (-12 (-5 *1 (-273 *2)) (-4 *2 (-341)) (-4 *2 (-1125))) (-12 (-5 *1 (-273 *2)) (-4 *2 (-450)) (-4 *2 (-1125))))) (-1622 (*1 *1 *1) (-3321 (-12 (-5 *1 (-273 *2)) (-4 *2 (-341)) (-4 *2 (-1125))) (-12 (-5 *1 (-273 *2)) (-4 *2 (-450)) (-4 *2 (-1125))))))
+(-13 (-1125) (-10 -8 (-15 -4096 ($ |#1| |#1|)) (-15 -2717 ($ |#1| |#1|)) (-15 -2792 ($ $)) (-15 -3239 (|#1| $)) (-15 -3246 (|#1| $)) (-15 -1340 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-486 (-1089) |#1|)) (-6 (-486 (-1089) |#1|)) |%noBranch|) (IF (|has| |#1| (-1018)) (PROGN (-6 (-1018)) (-6 (-565 (-108))) (IF (|has| |#1| (-288 |#1|)) (PROGN (-15 -4132 ($ $ $)) (-15 -4132 ($ $ (-591 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -4156 ($ |#1| $)) (-15 -4156 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2183 ($ $)) (-15 -3668 ($ $)) (-15 -4164 ($ |#1| $)) (-15 -4164 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1030)) (PROGN (-6 (-1030)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-668)) (PROGN (-6 (-668)) (-15 -3442 ((-3 $ "failed") $)) (-15 -3776 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-450)) (PROGN (-6 (-450)) (-15 -3442 ((-3 $ "failed") $)) (-15 -3776 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-975)) (PROGN (-6 (-975)) (-6 (-107 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-160)) (-6 (-659 |#1|)) |%noBranch|) (IF (|has| |#1| (-517)) (-15 -3360 ((-591 $) $)) |%noBranch|) (IF (|has| |#1| (-833 (-1089))) (-6 (-833 (-1089))) |%noBranch|) (IF (|has| |#1| (-341)) (PROGN (-6 (-1178 |#1|)) (-15 -4173 ($ $ $)) (-15 -1622 ($ $))) |%noBranch|) (IF (|has| |#1| (-281)) (-15 -3825 ($ $ $)) |%noBranch|)))
+((-3008 (((-108) $ $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-1260 (($) NIL) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-3296 (((-1176) $ |#1| |#1|) NIL (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#2| $ |#1| |#2|) NIL)) (-1797 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-2401 (((-3 |#2| "failed") |#1| $) NIL)) (-3798 (($) NIL T CONST)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3901 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-3 |#2| "failed") |#1| $) NIL)) (-3677 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-1227 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4250))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#2| $ |#1|) NIL)) (-3454 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-3630 ((|#1| $) NIL (|has| |#1| (-788)))) (-2552 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3468 ((|#1| $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4251))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-1542 (((-591 |#1|) $) NIL)) (-2484 (((-108) |#1| $) NIL)) (-1464 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-2470 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-2511 (((-591 |#1|) $) NIL)) (-2791 (((-108) |#1| $) NIL)) (-2047 (((-1036) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-3066 ((|#2| $) NIL (|has| |#1| (-788)))) (-2069 (((-3 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) "failed") (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL)) (-1941 (($ $ |#2|) NIL (|has| $ (-6 -4251)))) (-3631 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-1623 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 (-273 |#2|))) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3339 (((-591 |#2|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2311 (($) NIL) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-2064 (((-712) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-712) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018)))) (((-712) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-566 (-501))))) (-3036 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-3022 (((-796) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-565 (-796))) (|has| |#2| (-565 (-796)))))) (-1870 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-4158 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-274 |#1| |#2|) (-13 (-1102 |#1| |#2|) (-10 -7 (-6 -4250))) (-1018) (-1018)) (T -274))
+NIL
+(-13 (-1102 |#1| |#2|) (-10 -7 (-6 -4250)))
+((-1483 (((-290) (-1072) (-591 (-1072))) 16) (((-290) (-1072) (-1072)) 15) (((-290) (-591 (-1072))) 14) (((-290) (-1072)) 12)))
+(((-275) (-10 -7 (-15 -1483 ((-290) (-1072))) (-15 -1483 ((-290) (-591 (-1072)))) (-15 -1483 ((-290) (-1072) (-1072))) (-15 -1483 ((-290) (-1072) (-591 (-1072)))))) (T -275))
+((-1483 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-1072))) (-5 *3 (-1072)) (-5 *2 (-290)) (-5 *1 (-275)))) (-1483 (*1 *2 *3 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-290)) (-5 *1 (-275)))) (-1483 (*1 *2 *3) (-12 (-5 *3 (-591 (-1072))) (-5 *2 (-290)) (-5 *1 (-275)))) (-1483 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-290)) (-5 *1 (-275)))))
+(-10 -7 (-15 -1483 ((-290) (-1072))) (-15 -1483 ((-290) (-591 (-1072)))) (-15 -1483 ((-290) (-1072) (-1072))) (-15 -1483 ((-290) (-1072) (-591 (-1072)))))
+((-1340 ((|#2| (-1 |#2| |#1|) (-1072) (-564 |#1|)) 18)))
+(((-276 |#1| |#2|) (-10 -7 (-15 -1340 (|#2| (-1 |#2| |#1|) (-1072) (-564 |#1|)))) (-281) (-1125)) (T -276))
+((-1340 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1072)) (-5 *5 (-564 *6)) (-4 *6 (-281)) (-4 *2 (-1125)) (-5 *1 (-276 *6 *2)))))
+(-10 -7 (-15 -1340 (|#2| (-1 |#2| |#1|) (-1072) (-564 |#1|))))
+((-1340 ((|#2| (-1 |#2| |#1|) (-564 |#1|)) 17)))
+(((-277 |#1| |#2|) (-10 -7 (-15 -1340 (|#2| (-1 |#2| |#1|) (-564 |#1|)))) (-281) (-281)) (T -277))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-564 *5)) (-4 *5 (-281)) (-4 *2 (-281)) (-5 *1 (-277 *5 *2)))))
+(-10 -7 (-15 -1340 (|#2| (-1 |#2| |#1|) (-564 |#1|))))
+((-1412 (((-108) (-205)) 10)))
+(((-278 |#1| |#2|) (-10 -7 (-15 -1412 ((-108) (-205)))) (-205) (-205)) (T -278))
+((-1412 (*1 *2 *3) (-12 (-5 *3 (-205)) (-5 *2 (-108)) (-5 *1 (-278 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
+(-10 -7 (-15 -1412 ((-108) (-205))))
+((-2453 (((-1070 (-205)) (-294 (-205)) (-591 (-1089)) (-1013 (-781 (-205)))) 92)) (-1226 (((-1070 (-205)) (-1171 (-294 (-205))) (-591 (-1089)) (-1013 (-781 (-205)))) 106) (((-1070 (-205)) (-294 (-205)) (-591 (-1089)) (-1013 (-781 (-205)))) 61)) (-2316 (((-591 (-1072)) (-1070 (-205))) NIL)) (-3298 (((-591 (-205)) (-294 (-205)) (-1089) (-1013 (-781 (-205)))) 58)) (-1345 (((-591 (-205)) (-885 (-385 (-525))) (-1089) (-1013 (-781 (-205)))) 49)) (-2804 (((-591 (-1072)) (-591 (-205))) NIL)) (-1470 (((-205) (-1013 (-781 (-205)))) 25)) (-1596 (((-205) (-1013 (-781 (-205)))) 26)) (-4059 (((-108) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 54)) (-1300 (((-1072) (-205)) NIL)))
+(((-279) (-10 -7 (-15 -1470 ((-205) (-1013 (-781 (-205))))) (-15 -1596 ((-205) (-1013 (-781 (-205))))) (-15 -4059 ((-108) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -3298 ((-591 (-205)) (-294 (-205)) (-1089) (-1013 (-781 (-205))))) (-15 -2453 ((-1070 (-205)) (-294 (-205)) (-591 (-1089)) (-1013 (-781 (-205))))) (-15 -1226 ((-1070 (-205)) (-294 (-205)) (-591 (-1089)) (-1013 (-781 (-205))))) (-15 -1226 ((-1070 (-205)) (-1171 (-294 (-205))) (-591 (-1089)) (-1013 (-781 (-205))))) (-15 -1345 ((-591 (-205)) (-885 (-385 (-525))) (-1089) (-1013 (-781 (-205))))) (-15 -1300 ((-1072) (-205))) (-15 -2804 ((-591 (-1072)) (-591 (-205)))) (-15 -2316 ((-591 (-1072)) (-1070 (-205)))))) (T -279))
+((-2316 (*1 *2 *3) (-12 (-5 *3 (-1070 (-205))) (-5 *2 (-591 (-1072))) (-5 *1 (-279)))) (-2804 (*1 *2 *3) (-12 (-5 *3 (-591 (-205))) (-5 *2 (-591 (-1072))) (-5 *1 (-279)))) (-1300 (*1 *2 *3) (-12 (-5 *3 (-205)) (-5 *2 (-1072)) (-5 *1 (-279)))) (-1345 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-885 (-385 (-525)))) (-5 *4 (-1089)) (-5 *5 (-1013 (-781 (-205)))) (-5 *2 (-591 (-205))) (-5 *1 (-279)))) (-1226 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1171 (-294 (-205)))) (-5 *4 (-591 (-1089))) (-5 *5 (-1013 (-781 (-205)))) (-5 *2 (-1070 (-205))) (-5 *1 (-279)))) (-1226 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-294 (-205))) (-5 *4 (-591 (-1089))) (-5 *5 (-1013 (-781 (-205)))) (-5 *2 (-1070 (-205))) (-5 *1 (-279)))) (-2453 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-294 (-205))) (-5 *4 (-591 (-1089))) (-5 *5 (-1013 (-781 (-205)))) (-5 *2 (-1070 (-205))) (-5 *1 (-279)))) (-3298 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-294 (-205))) (-5 *4 (-1089)) (-5 *5 (-1013 (-781 (-205)))) (-5 *2 (-591 (-205))) (-5 *1 (-279)))) (-4059 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-108)) (-5 *1 (-279)))) (-1596 (*1 *2 *3) (-12 (-5 *3 (-1013 (-781 (-205)))) (-5 *2 (-205)) (-5 *1 (-279)))) (-1470 (*1 *2 *3) (-12 (-5 *3 (-1013 (-781 (-205)))) (-5 *2 (-205)) (-5 *1 (-279)))))
+(-10 -7 (-15 -1470 ((-205) (-1013 (-781 (-205))))) (-15 -1596 ((-205) (-1013 (-781 (-205))))) (-15 -4059 ((-108) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -3298 ((-591 (-205)) (-294 (-205)) (-1089) (-1013 (-781 (-205))))) (-15 -2453 ((-1070 (-205)) (-294 (-205)) (-591 (-1089)) (-1013 (-781 (-205))))) (-15 -1226 ((-1070 (-205)) (-294 (-205)) (-591 (-1089)) (-1013 (-781 (-205))))) (-15 -1226 ((-1070 (-205)) (-1171 (-294 (-205))) (-591 (-1089)) (-1013 (-781 (-205))))) (-15 -1345 ((-591 (-205)) (-885 (-385 (-525))) (-1089) (-1013 (-781 (-205))))) (-15 -1300 ((-1072) (-205))) (-15 -2804 ((-591 (-1072)) (-591 (-205)))) (-15 -2316 ((-591 (-1072)) (-1070 (-205)))))
+((-3374 (((-591 (-564 $)) $) 30)) (-3825 (($ $ (-273 $)) 81) (($ $ (-591 (-273 $))) 123) (($ $ (-591 (-564 $)) (-591 $)) NIL)) (-1251 (((-3 (-564 $) "failed") $) 113)) (-3528 (((-564 $) $) 112)) (-1668 (($ $) 19) (($ (-591 $)) 56)) (-2194 (((-591 (-110)) $) 38)) (-3219 (((-110) (-110)) 91)) (-2419 (((-108) $) 131)) (-1340 (($ (-1 $ $) (-564 $)) 89)) (-1405 (((-3 (-564 $) "failed") $) 93)) (-1843 (($ (-110) $) 61) (($ (-110) (-591 $)) 100)) (-1709 (((-108) $ (-110)) 117) (((-108) $ (-1089)) 116)) (-2965 (((-712) $) 46)) (-1988 (((-108) $ $) 59) (((-108) $ (-1089)) 51)) (-3451 (((-108) $) 129)) (-4132 (($ $ (-564 $) $) NIL) (($ $ (-591 (-564 $)) (-591 $)) NIL) (($ $ (-591 (-273 $))) 121) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-591 (-1089)) (-591 (-1 $ $))) 84) (($ $ (-591 (-1089)) (-591 (-1 $ (-591 $)))) NIL) (($ $ (-1089) (-1 $ (-591 $))) 69) (($ $ (-1089) (-1 $ $)) 75) (($ $ (-591 (-110)) (-591 (-1 $ $))) 83) (($ $ (-591 (-110)) (-591 (-1 $ (-591 $)))) 85) (($ $ (-110) (-1 $ (-591 $))) 71) (($ $ (-110) (-1 $ $)) 77)) (-3164 (($ (-110) $) 62) (($ (-110) $ $) 63) (($ (-110) $ $ $) 64) (($ (-110) $ $ $ $) 65) (($ (-110) (-591 $)) 109)) (-1484 (($ $) 53) (($ $ $) 119)) (-2989 (($ $) 17) (($ (-591 $)) 55)) (-2661 (((-108) (-110)) 22)))
+(((-280 |#1|) (-10 -8 (-15 -2419 ((-108) |#1|)) (-15 -3451 ((-108) |#1|)) (-15 -4132 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -4132 (|#1| |#1| (-110) (-1 |#1| (-591 |#1|)))) (-15 -4132 (|#1| |#1| (-591 (-110)) (-591 (-1 |#1| (-591 |#1|))))) (-15 -4132 (|#1| |#1| (-591 (-110)) (-591 (-1 |#1| |#1|)))) (-15 -4132 (|#1| |#1| (-1089) (-1 |#1| |#1|))) (-15 -4132 (|#1| |#1| (-1089) (-1 |#1| (-591 |#1|)))) (-15 -4132 (|#1| |#1| (-591 (-1089)) (-591 (-1 |#1| (-591 |#1|))))) (-15 -4132 (|#1| |#1| (-591 (-1089)) (-591 (-1 |#1| |#1|)))) (-15 -1988 ((-108) |#1| (-1089))) (-15 -1988 ((-108) |#1| |#1|)) (-15 -1340 (|#1| (-1 |#1| |#1|) (-564 |#1|))) (-15 -1843 (|#1| (-110) (-591 |#1|))) (-15 -1843 (|#1| (-110) |#1|)) (-15 -1709 ((-108) |#1| (-1089))) (-15 -1709 ((-108) |#1| (-110))) (-15 -2661 ((-108) (-110))) (-15 -3219 ((-110) (-110))) (-15 -2194 ((-591 (-110)) |#1|)) (-15 -3374 ((-591 (-564 |#1|)) |#1|)) (-15 -1405 ((-3 (-564 |#1|) "failed") |#1|)) (-15 -2965 ((-712) |#1|)) (-15 -1484 (|#1| |#1| |#1|)) (-15 -1484 (|#1| |#1|)) (-15 -1668 (|#1| (-591 |#1|))) (-15 -1668 (|#1| |#1|)) (-15 -2989 (|#1| (-591 |#1|))) (-15 -2989 (|#1| |#1|)) (-15 -3825 (|#1| |#1| (-591 (-564 |#1|)) (-591 |#1|))) (-15 -3825 (|#1| |#1| (-591 (-273 |#1|)))) (-15 -3825 (|#1| |#1| (-273 |#1|))) (-15 -3164 (|#1| (-110) (-591 |#1|))) (-15 -3164 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -3164 (|#1| (-110) |#1| |#1| |#1|)) (-15 -3164 (|#1| (-110) |#1| |#1|)) (-15 -3164 (|#1| (-110) |#1|)) (-15 -4132 (|#1| |#1| (-591 |#1|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#1| |#1|)) (-15 -4132 (|#1| |#1| (-273 |#1|))) (-15 -4132 (|#1| |#1| (-591 (-273 |#1|)))) (-15 -4132 (|#1| |#1| (-591 (-564 |#1|)) (-591 |#1|))) (-15 -4132 (|#1| |#1| (-564 |#1|) |#1|)) (-15 -3528 ((-564 |#1|) |#1|)) (-15 -1251 ((-3 (-564 |#1|) "failed") |#1|))) (-281)) (T -280))
+((-3219 (*1 *2 *2) (-12 (-5 *2 (-110)) (-5 *1 (-280 *3)) (-4 *3 (-281)))) (-2661 (*1 *2 *3) (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-280 *4)) (-4 *4 (-281)))))
+(-10 -8 (-15 -2419 ((-108) |#1|)) (-15 -3451 ((-108) |#1|)) (-15 -4132 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -4132 (|#1| |#1| (-110) (-1 |#1| (-591 |#1|)))) (-15 -4132 (|#1| |#1| (-591 (-110)) (-591 (-1 |#1| (-591 |#1|))))) (-15 -4132 (|#1| |#1| (-591 (-110)) (-591 (-1 |#1| |#1|)))) (-15 -4132 (|#1| |#1| (-1089) (-1 |#1| |#1|))) (-15 -4132 (|#1| |#1| (-1089) (-1 |#1| (-591 |#1|)))) (-15 -4132 (|#1| |#1| (-591 (-1089)) (-591 (-1 |#1| (-591 |#1|))))) (-15 -4132 (|#1| |#1| (-591 (-1089)) (-591 (-1 |#1| |#1|)))) (-15 -1988 ((-108) |#1| (-1089))) (-15 -1988 ((-108) |#1| |#1|)) (-15 -1340 (|#1| (-1 |#1| |#1|) (-564 |#1|))) (-15 -1843 (|#1| (-110) (-591 |#1|))) (-15 -1843 (|#1| (-110) |#1|)) (-15 -1709 ((-108) |#1| (-1089))) (-15 -1709 ((-108) |#1| (-110))) (-15 -2661 ((-108) (-110))) (-15 -3219 ((-110) (-110))) (-15 -2194 ((-591 (-110)) |#1|)) (-15 -3374 ((-591 (-564 |#1|)) |#1|)) (-15 -1405 ((-3 (-564 |#1|) "failed") |#1|)) (-15 -2965 ((-712) |#1|)) (-15 -1484 (|#1| |#1| |#1|)) (-15 -1484 (|#1| |#1|)) (-15 -1668 (|#1| (-591 |#1|))) (-15 -1668 (|#1| |#1|)) (-15 -2989 (|#1| (-591 |#1|))) (-15 -2989 (|#1| |#1|)) (-15 -3825 (|#1| |#1| (-591 (-564 |#1|)) (-591 |#1|))) (-15 -3825 (|#1| |#1| (-591 (-273 |#1|)))) (-15 -3825 (|#1| |#1| (-273 |#1|))) (-15 -3164 (|#1| (-110) (-591 |#1|))) (-15 -3164 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -3164 (|#1| (-110) |#1| |#1| |#1|)) (-15 -3164 (|#1| (-110) |#1| |#1|)) (-15 -3164 (|#1| (-110) |#1|)) (-15 -4132 (|#1| |#1| (-591 |#1|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#1| |#1|)) (-15 -4132 (|#1| |#1| (-273 |#1|))) (-15 -4132 (|#1| |#1| (-591 (-273 |#1|)))) (-15 -4132 (|#1| |#1| (-591 (-564 |#1|)) (-591 |#1|))) (-15 -4132 (|#1| |#1| (-564 |#1|) |#1|)) (-15 -3528 ((-564 |#1|) |#1|)) (-15 -1251 ((-3 (-564 |#1|) "failed") |#1|)))
+((-3008 (((-108) $ $) 7)) (-3374 (((-591 (-564 $)) $) 44)) (-3825 (($ $ (-273 $)) 56) (($ $ (-591 (-273 $))) 55) (($ $ (-591 (-564 $)) (-591 $)) 54)) (-1251 (((-3 (-564 $) "failed") $) 69)) (-3528 (((-564 $) $) 68)) (-1668 (($ $) 51) (($ (-591 $)) 50)) (-2194 (((-591 (-110)) $) 43)) (-3219 (((-110) (-110)) 42)) (-2419 (((-108) $) 22 (|has| $ (-966 (-525))))) (-2695 (((-1085 $) (-564 $)) 25 (|has| $ (-975)))) (-3741 (($ $ $) 13)) (-2478 (($ $ $) 14)) (-1340 (($ (-1 $ $) (-564 $)) 36)) (-1405 (((-3 (-564 $) "failed") $) 46)) (-2339 (((-1072) $) 9)) (-1298 (((-591 (-564 $)) $) 45)) (-1843 (($ (-110) $) 38) (($ (-110) (-591 $)) 37)) (-1709 (((-108) $ (-110)) 40) (((-108) $ (-1089)) 39)) (-2965 (((-712) $) 47)) (-2047 (((-1036) $) 10)) (-1988 (((-108) $ $) 35) (((-108) $ (-1089)) 34)) (-3451 (((-108) $) 23 (|has| $ (-966 (-525))))) (-4132 (($ $ (-564 $) $) 67) (($ $ (-591 (-564 $)) (-591 $)) 66) (($ $ (-591 (-273 $))) 65) (($ $ (-273 $)) 64) (($ $ $ $) 63) (($ $ (-591 $) (-591 $)) 62) (($ $ (-591 (-1089)) (-591 (-1 $ $))) 33) (($ $ (-591 (-1089)) (-591 (-1 $ (-591 $)))) 32) (($ $ (-1089) (-1 $ (-591 $))) 31) (($ $ (-1089) (-1 $ $)) 30) (($ $ (-591 (-110)) (-591 (-1 $ $))) 29) (($ $ (-591 (-110)) (-591 (-1 $ (-591 $)))) 28) (($ $ (-110) (-1 $ (-591 $))) 27) (($ $ (-110) (-1 $ $)) 26)) (-3164 (($ (-110) $) 61) (($ (-110) $ $) 60) (($ (-110) $ $ $) 59) (($ (-110) $ $ $ $) 58) (($ (-110) (-591 $)) 57)) (-1484 (($ $) 49) (($ $ $) 48)) (-1478 (($ $) 24 (|has| $ (-975)))) (-3022 (((-796) $) 11) (($ (-564 $)) 70)) (-2989 (($ $) 53) (($ (-591 $)) 52)) (-2661 (((-108) (-110)) 41)) (-4135 (((-108) $ $) 16)) (-4119 (((-108) $ $) 17)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 15)) (-4112 (((-108) $ $) 18)))
+(((-281) (-131)) (T -281))
+((-3164 (*1 *1 *2 *1) (-12 (-4 *1 (-281)) (-5 *2 (-110)))) (-3164 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-281)) (-5 *2 (-110)))) (-3164 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-281)) (-5 *2 (-110)))) (-3164 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-281)) (-5 *2 (-110)))) (-3164 (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-591 *1)) (-4 *1 (-281)))) (-3825 (*1 *1 *1 *2) (-12 (-5 *2 (-273 *1)) (-4 *1 (-281)))) (-3825 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-273 *1))) (-4 *1 (-281)))) (-3825 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 (-564 *1))) (-5 *3 (-591 *1)) (-4 *1 (-281)))) (-2989 (*1 *1 *1) (-4 *1 (-281))) (-2989 (*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-281)))) (-1668 (*1 *1 *1) (-4 *1 (-281))) (-1668 (*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-281)))) (-1484 (*1 *1 *1) (-4 *1 (-281))) (-1484 (*1 *1 *1 *1) (-4 *1 (-281))) (-2965 (*1 *2 *1) (-12 (-4 *1 (-281)) (-5 *2 (-712)))) (-1405 (*1 *2 *1) (|partial| -12 (-5 *2 (-564 *1)) (-4 *1 (-281)))) (-1298 (*1 *2 *1) (-12 (-5 *2 (-591 (-564 *1))) (-4 *1 (-281)))) (-3374 (*1 *2 *1) (-12 (-5 *2 (-591 (-564 *1))) (-4 *1 (-281)))) (-2194 (*1 *2 *1) (-12 (-4 *1 (-281)) (-5 *2 (-591 (-110))))) (-3219 (*1 *2 *2) (-12 (-4 *1 (-281)) (-5 *2 (-110)))) (-2661 (*1 *2 *3) (-12 (-4 *1 (-281)) (-5 *3 (-110)) (-5 *2 (-108)))) (-1709 (*1 *2 *1 *3) (-12 (-4 *1 (-281)) (-5 *3 (-110)) (-5 *2 (-108)))) (-1709 (*1 *2 *1 *3) (-12 (-4 *1 (-281)) (-5 *3 (-1089)) (-5 *2 (-108)))) (-1843 (*1 *1 *2 *1) (-12 (-4 *1 (-281)) (-5 *2 (-110)))) (-1843 (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-591 *1)) (-4 *1 (-281)))) (-1340 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-564 *1)) (-4 *1 (-281)))) (-1988 (*1 *2 *1 *1) (-12 (-4 *1 (-281)) (-5 *2 (-108)))) (-1988 (*1 *2 *1 *3) (-12 (-4 *1 (-281)) (-5 *3 (-1089)) (-5 *2 (-108)))) (-4132 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 (-1089))) (-5 *3 (-591 (-1 *1 *1))) (-4 *1 (-281)))) (-4132 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 (-1089))) (-5 *3 (-591 (-1 *1 (-591 *1)))) (-4 *1 (-281)))) (-4132 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1 *1 (-591 *1))) (-4 *1 (-281)))) (-4132 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1 *1 *1)) (-4 *1 (-281)))) (-4132 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 (-110))) (-5 *3 (-591 (-1 *1 *1))) (-4 *1 (-281)))) (-4132 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 (-110))) (-5 *3 (-591 (-1 *1 (-591 *1)))) (-4 *1 (-281)))) (-4132 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *1 (-591 *1))) (-4 *1 (-281)))) (-4132 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *1 *1)) (-4 *1 (-281)))) (-2695 (*1 *2 *3) (-12 (-5 *3 (-564 *1)) (-4 *1 (-975)) (-4 *1 (-281)) (-5 *2 (-1085 *1)))) (-1478 (*1 *1 *1) (-12 (-4 *1 (-975)) (-4 *1 (-281)))) (-3451 (*1 *2 *1) (-12 (-4 *1 (-966 (-525))) (-4 *1 (-281)) (-5 *2 (-108)))) (-2419 (*1 *2 *1) (-12 (-4 *1 (-966 (-525))) (-4 *1 (-281)) (-5 *2 (-108)))))
+(-13 (-788) (-966 (-564 $)) (-486 (-564 $) $) (-288 $) (-10 -8 (-15 -3164 ($ (-110) $)) (-15 -3164 ($ (-110) $ $)) (-15 -3164 ($ (-110) $ $ $)) (-15 -3164 ($ (-110) $ $ $ $)) (-15 -3164 ($ (-110) (-591 $))) (-15 -3825 ($ $ (-273 $))) (-15 -3825 ($ $ (-591 (-273 $)))) (-15 -3825 ($ $ (-591 (-564 $)) (-591 $))) (-15 -2989 ($ $)) (-15 -2989 ($ (-591 $))) (-15 -1668 ($ $)) (-15 -1668 ($ (-591 $))) (-15 -1484 ($ $)) (-15 -1484 ($ $ $)) (-15 -2965 ((-712) $)) (-15 -1405 ((-3 (-564 $) "failed") $)) (-15 -1298 ((-591 (-564 $)) $)) (-15 -3374 ((-591 (-564 $)) $)) (-15 -2194 ((-591 (-110)) $)) (-15 -3219 ((-110) (-110))) (-15 -2661 ((-108) (-110))) (-15 -1709 ((-108) $ (-110))) (-15 -1709 ((-108) $ (-1089))) (-15 -1843 ($ (-110) $)) (-15 -1843 ($ (-110) (-591 $))) (-15 -1340 ($ (-1 $ $) (-564 $))) (-15 -1988 ((-108) $ $)) (-15 -1988 ((-108) $ (-1089))) (-15 -4132 ($ $ (-591 (-1089)) (-591 (-1 $ $)))) (-15 -4132 ($ $ (-591 (-1089)) (-591 (-1 $ (-591 $))))) (-15 -4132 ($ $ (-1089) (-1 $ (-591 $)))) (-15 -4132 ($ $ (-1089) (-1 $ $))) (-15 -4132 ($ $ (-591 (-110)) (-591 (-1 $ $)))) (-15 -4132 ($ $ (-591 (-110)) (-591 (-1 $ (-591 $))))) (-15 -4132 ($ $ (-110) (-1 $ (-591 $)))) (-15 -4132 ($ $ (-110) (-1 $ $))) (IF (|has| $ (-975)) (PROGN (-15 -2695 ((-1085 $) (-564 $))) (-15 -1478 ($ $))) |%noBranch|) (IF (|has| $ (-966 (-525))) (PROGN (-15 -3451 ((-108) $)) (-15 -2419 ((-108) $))) |%noBranch|)))
+(((-97) . T) ((-565 (-796)) . T) ((-288 $) . T) ((-486 (-564 $) $) . T) ((-486 $ $) . T) ((-788) . T) ((-966 (-564 $)) . T) ((-1018) . T))
+((-2361 (((-591 |#1|) (-591 |#1|)) 10)))
+(((-282 |#1|) (-10 -7 (-15 -2361 ((-591 |#1|) (-591 |#1|)))) (-786)) (T -282))
+((-2361 (*1 *2 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-786)) (-5 *1 (-282 *3)))))
+(-10 -7 (-15 -2361 ((-591 |#1|) (-591 |#1|))))
+((-1340 (((-631 |#2|) (-1 |#2| |#1|) (-631 |#1|)) 17)))
+(((-283 |#1| |#2|) (-10 -7 (-15 -1340 ((-631 |#2|) (-1 |#2| |#1|) (-631 |#1|)))) (-975) (-975)) (T -283))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-631 *5)) (-4 *5 (-975)) (-4 *6 (-975)) (-5 *2 (-631 *6)) (-5 *1 (-283 *5 *6)))))
+(-10 -7 (-15 -1340 ((-631 |#2|) (-1 |#2| |#1|) (-631 |#1|))))
+((-1388 (((-1171 (-294 (-357))) (-1171 (-294 (-205)))) 105)) (-3565 (((-1013 (-781 (-205))) (-1013 (-781 (-357)))) 40)) (-2316 (((-591 (-1072)) (-1070 (-205))) 87)) (-3606 (((-294 (-357)) (-885 (-205))) 50)) (-3205 (((-205) (-885 (-205))) 46)) (-3285 (((-1072) (-357)) 169)) (-1681 (((-781 (-205)) (-781 (-357))) 34)) (-3423 (((-2 (|:| |additions| (-525)) (|:| |multiplications| (-525)) (|:| |exponentiations| (-525)) (|:| |functionCalls| (-525))) (-1171 (-294 (-205)))) 143)) (-3319 (((-964) (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))) (|:| |extra| (-964)))) 181) (((-964) (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))))) 179)) (-4057 (((-631 (-205)) (-591 (-205)) (-712)) 14)) (-2929 (((-1171 (-640)) (-591 (-205))) 94)) (-2804 (((-591 (-1072)) (-591 (-205))) 75)) (-2908 (((-3 (-294 (-205)) "failed") (-294 (-205))) 120)) (-1412 (((-108) (-205) (-1013 (-781 (-205)))) 109)) (-3304 (((-964) (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357)))) 198)) (-1470 (((-205) (-1013 (-781 (-205)))) 107)) (-1596 (((-205) (-1013 (-781 (-205)))) 108)) (-3675 (((-205) (-385 (-525))) 27)) (-3893 (((-1072) (-357)) 73)) (-3448 (((-205) (-357)) 17)) (-2750 (((-357) (-1171 (-294 (-205)))) 154)) (-2472 (((-294 (-205)) (-294 (-357))) 23)) (-3656 (((-385 (-525)) (-294 (-205))) 53)) (-1920 (((-294 (-385 (-525))) (-294 (-205))) 69)) (-3846 (((-294 (-357)) (-294 (-205))) 98)) (-3224 (((-205) (-294 (-205))) 54)) (-1992 (((-591 (-205)) (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) 64)) (-2858 (((-1013 (-781 (-205))) (-1013 (-781 (-205)))) 61)) (-1300 (((-1072) (-205)) 72)) (-1266 (((-640) (-205)) 90)) (-3124 (((-385 (-525)) (-205)) 55)) (-2320 (((-294 (-357)) (-205)) 49)) (-1408 (((-591 (-1013 (-781 (-205)))) (-591 (-1013 (-781 (-357))))) 43)) (-3690 (((-964) (-591 (-964))) 165) (((-964) (-964) (-964)) 162)) (-3602 (((-964) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) 195)))
+(((-284) (-10 -7 (-15 -3448 ((-205) (-357))) (-15 -2472 ((-294 (-205)) (-294 (-357)))) (-15 -1681 ((-781 (-205)) (-781 (-357)))) (-15 -3565 ((-1013 (-781 (-205))) (-1013 (-781 (-357))))) (-15 -1408 ((-591 (-1013 (-781 (-205)))) (-591 (-1013 (-781 (-357)))))) (-15 -3124 ((-385 (-525)) (-205))) (-15 -3656 ((-385 (-525)) (-294 (-205)))) (-15 -3224 ((-205) (-294 (-205)))) (-15 -2908 ((-3 (-294 (-205)) "failed") (-294 (-205)))) (-15 -2750 ((-357) (-1171 (-294 (-205))))) (-15 -3423 ((-2 (|:| |additions| (-525)) (|:| |multiplications| (-525)) (|:| |exponentiations| (-525)) (|:| |functionCalls| (-525))) (-1171 (-294 (-205))))) (-15 -1920 ((-294 (-385 (-525))) (-294 (-205)))) (-15 -2858 ((-1013 (-781 (-205))) (-1013 (-781 (-205))))) (-15 -1992 ((-591 (-205)) (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))))) (-15 -1266 ((-640) (-205))) (-15 -2929 ((-1171 (-640)) (-591 (-205)))) (-15 -3846 ((-294 (-357)) (-294 (-205)))) (-15 -1388 ((-1171 (-294 (-357))) (-1171 (-294 (-205))))) (-15 -1412 ((-108) (-205) (-1013 (-781 (-205))))) (-15 -1300 ((-1072) (-205))) (-15 -3893 ((-1072) (-357))) (-15 -2804 ((-591 (-1072)) (-591 (-205)))) (-15 -2316 ((-591 (-1072)) (-1070 (-205)))) (-15 -1470 ((-205) (-1013 (-781 (-205))))) (-15 -1596 ((-205) (-1013 (-781 (-205))))) (-15 -3690 ((-964) (-964) (-964))) (-15 -3690 ((-964) (-591 (-964)))) (-15 -3285 ((-1072) (-357))) (-15 -3319 ((-964) (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))))) (-15 -3319 ((-964) (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))) (|:| |extra| (-964))))) (-15 -3602 ((-964) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))) (-15 -3304 ((-964) (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357))))) (-15 -3606 ((-294 (-357)) (-885 (-205)))) (-15 -3205 ((-205) (-885 (-205)))) (-15 -2320 ((-294 (-357)) (-205))) (-15 -3675 ((-205) (-385 (-525)))) (-15 -4057 ((-631 (-205)) (-591 (-205)) (-712))))) (T -284))
+((-4057 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-205))) (-5 *4 (-712)) (-5 *2 (-631 (-205))) (-5 *1 (-284)))) (-3675 (*1 *2 *3) (-12 (-5 *3 (-385 (-525))) (-5 *2 (-205)) (-5 *1 (-284)))) (-2320 (*1 *2 *3) (-12 (-5 *3 (-205)) (-5 *2 (-294 (-357))) (-5 *1 (-284)))) (-3205 (*1 *2 *3) (-12 (-5 *3 (-885 (-205))) (-5 *2 (-205)) (-5 *1 (-284)))) (-3606 (*1 *2 *3) (-12 (-5 *3 (-885 (-205))) (-5 *2 (-294 (-357))) (-5 *1 (-284)))) (-3304 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357)))) (-5 *2 (-964)) (-5 *1 (-284)))) (-3602 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *2 (-964)) (-5 *1 (-284)))) (-3319 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))) (|:| |extra| (-964)))) (-5 *2 (-964)) (-5 *1 (-284)))) (-3319 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))))) (-5 *2 (-964)) (-5 *1 (-284)))) (-3285 (*1 *2 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1072)) (-5 *1 (-284)))) (-3690 (*1 *2 *3) (-12 (-5 *3 (-591 (-964))) (-5 *2 (-964)) (-5 *1 (-284)))) (-3690 (*1 *2 *2 *2) (-12 (-5 *2 (-964)) (-5 *1 (-284)))) (-1596 (*1 *2 *3) (-12 (-5 *3 (-1013 (-781 (-205)))) (-5 *2 (-205)) (-5 *1 (-284)))) (-1470 (*1 *2 *3) (-12 (-5 *3 (-1013 (-781 (-205)))) (-5 *2 (-205)) (-5 *1 (-284)))) (-2316 (*1 *2 *3) (-12 (-5 *3 (-1070 (-205))) (-5 *2 (-591 (-1072))) (-5 *1 (-284)))) (-2804 (*1 *2 *3) (-12 (-5 *3 (-591 (-205))) (-5 *2 (-591 (-1072))) (-5 *1 (-284)))) (-3893 (*1 *2 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1072)) (-5 *1 (-284)))) (-1300 (*1 *2 *3) (-12 (-5 *3 (-205)) (-5 *2 (-1072)) (-5 *1 (-284)))) (-1412 (*1 *2 *3 *4) (-12 (-5 *4 (-1013 (-781 (-205)))) (-5 *3 (-205)) (-5 *2 (-108)) (-5 *1 (-284)))) (-1388 (*1 *2 *3) (-12 (-5 *3 (-1171 (-294 (-205)))) (-5 *2 (-1171 (-294 (-357)))) (-5 *1 (-284)))) (-3846 (*1 *2 *3) (-12 (-5 *3 (-294 (-205))) (-5 *2 (-294 (-357))) (-5 *1 (-284)))) (-2929 (*1 *2 *3) (-12 (-5 *3 (-591 (-205))) (-5 *2 (-1171 (-640))) (-5 *1 (-284)))) (-1266 (*1 *2 *3) (-12 (-5 *3 (-205)) (-5 *2 (-640)) (-5 *1 (-284)))) (-1992 (*1 *2 *3) (-12 (-5 *3 (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) (-5 *2 (-591 (-205))) (-5 *1 (-284)))) (-2858 (*1 *2 *2) (-12 (-5 *2 (-1013 (-781 (-205)))) (-5 *1 (-284)))) (-1920 (*1 *2 *3) (-12 (-5 *3 (-294 (-205))) (-5 *2 (-294 (-385 (-525)))) (-5 *1 (-284)))) (-3423 (*1 *2 *3) (-12 (-5 *3 (-1171 (-294 (-205)))) (-5 *2 (-2 (|:| |additions| (-525)) (|:| |multiplications| (-525)) (|:| |exponentiations| (-525)) (|:| |functionCalls| (-525)))) (-5 *1 (-284)))) (-2750 (*1 *2 *3) (-12 (-5 *3 (-1171 (-294 (-205)))) (-5 *2 (-357)) (-5 *1 (-284)))) (-2908 (*1 *2 *2) (|partial| -12 (-5 *2 (-294 (-205))) (-5 *1 (-284)))) (-3224 (*1 *2 *3) (-12 (-5 *3 (-294 (-205))) (-5 *2 (-205)) (-5 *1 (-284)))) (-3656 (*1 *2 *3) (-12 (-5 *3 (-294 (-205))) (-5 *2 (-385 (-525))) (-5 *1 (-284)))) (-3124 (*1 *2 *3) (-12 (-5 *3 (-205)) (-5 *2 (-385 (-525))) (-5 *1 (-284)))) (-1408 (*1 *2 *3) (-12 (-5 *3 (-591 (-1013 (-781 (-357))))) (-5 *2 (-591 (-1013 (-781 (-205))))) (-5 *1 (-284)))) (-3565 (*1 *2 *3) (-12 (-5 *3 (-1013 (-781 (-357)))) (-5 *2 (-1013 (-781 (-205)))) (-5 *1 (-284)))) (-1681 (*1 *2 *3) (-12 (-5 *3 (-781 (-357))) (-5 *2 (-781 (-205))) (-5 *1 (-284)))) (-2472 (*1 *2 *3) (-12 (-5 *3 (-294 (-357))) (-5 *2 (-294 (-205))) (-5 *1 (-284)))) (-3448 (*1 *2 *3) (-12 (-5 *3 (-357)) (-5 *2 (-205)) (-5 *1 (-284)))))
+(-10 -7 (-15 -3448 ((-205) (-357))) (-15 -2472 ((-294 (-205)) (-294 (-357)))) (-15 -1681 ((-781 (-205)) (-781 (-357)))) (-15 -3565 ((-1013 (-781 (-205))) (-1013 (-781 (-357))))) (-15 -1408 ((-591 (-1013 (-781 (-205)))) (-591 (-1013 (-781 (-357)))))) (-15 -3124 ((-385 (-525)) (-205))) (-15 -3656 ((-385 (-525)) (-294 (-205)))) (-15 -3224 ((-205) (-294 (-205)))) (-15 -2908 ((-3 (-294 (-205)) "failed") (-294 (-205)))) (-15 -2750 ((-357) (-1171 (-294 (-205))))) (-15 -3423 ((-2 (|:| |additions| (-525)) (|:| |multiplications| (-525)) (|:| |exponentiations| (-525)) (|:| |functionCalls| (-525))) (-1171 (-294 (-205))))) (-15 -1920 ((-294 (-385 (-525))) (-294 (-205)))) (-15 -2858 ((-1013 (-781 (-205))) (-1013 (-781 (-205))))) (-15 -1992 ((-591 (-205)) (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))))) (-15 -1266 ((-640) (-205))) (-15 -2929 ((-1171 (-640)) (-591 (-205)))) (-15 -3846 ((-294 (-357)) (-294 (-205)))) (-15 -1388 ((-1171 (-294 (-357))) (-1171 (-294 (-205))))) (-15 -1412 ((-108) (-205) (-1013 (-781 (-205))))) (-15 -1300 ((-1072) (-205))) (-15 -3893 ((-1072) (-357))) (-15 -2804 ((-591 (-1072)) (-591 (-205)))) (-15 -2316 ((-591 (-1072)) (-1070 (-205)))) (-15 -1470 ((-205) (-1013 (-781 (-205))))) (-15 -1596 ((-205) (-1013 (-781 (-205))))) (-15 -3690 ((-964) (-964) (-964))) (-15 -3690 ((-964) (-591 (-964)))) (-15 -3285 ((-1072) (-357))) (-15 -3319 ((-964) (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))))) (-15 -3319 ((-964) (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))) (|:| |extra| (-964))))) (-15 -3602 ((-964) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))) (-15 -3304 ((-964) (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357))))) (-15 -3606 ((-294 (-357)) (-885 (-205)))) (-15 -3205 ((-205) (-885 (-205)))) (-15 -2320 ((-294 (-357)) (-205))) (-15 -3675 ((-205) (-385 (-525)))) (-15 -4057 ((-631 (-205)) (-591 (-205)) (-712))))
+((-1947 (((-108) $ $) 11)) (-2129 (($ $ $) 15)) (-2110 (($ $ $) 14)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 44)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 53)) (-1399 (($ $ $) 21) (($ (-591 $)) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 32) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 37)) (-2089 (((-3 $ "failed") $ $) 17)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 46)))
+(((-285 |#1|) (-10 -8 (-15 -1758 ((-3 (-591 |#1|) "failed") (-591 |#1|) |#1|)) (-15 -3375 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -3375 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3857 |#1|)) |#1| |#1|)) (-15 -2129 (|#1| |#1| |#1|)) (-15 -2110 (|#1| |#1| |#1|)) (-15 -1947 ((-108) |#1| |#1|)) (-15 -4095 ((-3 (-591 |#1|) "failed") (-591 |#1|) |#1|)) (-15 -3856 ((-2 (|:| -3482 (-591 |#1|)) (|:| -3857 |#1|)) (-591 |#1|))) (-15 -1399 (|#1| (-591 |#1|))) (-15 -1399 (|#1| |#1| |#1|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#1|))) (-286)) (T -285))
+NIL
+(-10 -8 (-15 -1758 ((-3 (-591 |#1|) "failed") (-591 |#1|) |#1|)) (-15 -3375 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -3375 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3857 |#1|)) |#1| |#1|)) (-15 -2129 (|#1| |#1| |#1|)) (-15 -2110 (|#1| |#1| |#1|)) (-15 -1947 ((-108) |#1| |#1|)) (-15 -4095 ((-3 (-591 |#1|) "failed") (-591 |#1|) |#1|)) (-15 -3856 ((-2 (|:| -3482 (-591 |#1|)) (|:| -3857 |#1|)) (-591 |#1|))) (-15 -1399 (|#1| (-591 |#1|))) (-15 -1399 (|#1| |#1| |#1|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2157 (((-3 $ "failed") $ $) 19)) (-1947 (((-108) $ $) 59)) (-3798 (($) 17 T CONST)) (-2129 (($ $ $) 55)) (-4163 (((-3 $ "failed") $) 34)) (-2110 (($ $ $) 56)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 51)) (-2824 (((-108) $) 31)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 52)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2089 (((-3 $ "failed") $ $) 42)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 50)) (-1712 (((-712) $) 58)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 57)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43)) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 39)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-286) (-131)) (T -286))
+((-1947 (*1 *2 *1 *1) (-12 (-4 *1 (-286)) (-5 *2 (-108)))) (-1712 (*1 *2 *1) (-12 (-4 *1 (-286)) (-5 *2 (-712)))) (-3999 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-286)))) (-2110 (*1 *1 *1 *1) (-4 *1 (-286))) (-2129 (*1 *1 *1 *1) (-4 *1 (-286))) (-3375 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3857 *1))) (-4 *1 (-286)))) (-3375 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-286)))) (-1758 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-591 *1)) (-4 *1 (-286)))))
+(-13 (-853) (-10 -8 (-15 -1947 ((-108) $ $)) (-15 -1712 ((-712) $)) (-15 -3999 ((-2 (|:| -2963 $) (|:| -3407 $)) $ $)) (-15 -2110 ($ $ $)) (-15 -2129 ($ $ $)) (-15 -3375 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $)) (-15 -3375 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -1758 ((-3 (-591 $) "failed") (-591 $) $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-126) . T) ((-565 (-796)) . T) ((-160) . T) ((-269) . T) ((-429) . T) ((-517) . T) ((-593 $) . T) ((-659 $) . T) ((-668) . T) ((-853) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-4132 (($ $ (-591 |#2|) (-591 |#2|)) 14) (($ $ |#2| |#2|) NIL) (($ $ (-273 |#2|)) 11) (($ $ (-591 (-273 |#2|))) NIL)))
+(((-287 |#1| |#2|) (-10 -8 (-15 -4132 (|#1| |#1| (-591 (-273 |#2|)))) (-15 -4132 (|#1| |#1| (-273 |#2|))) (-15 -4132 (|#1| |#1| |#2| |#2|)) (-15 -4132 (|#1| |#1| (-591 |#2|) (-591 |#2|)))) (-288 |#2|) (-1018)) (T -287))
+NIL
+(-10 -8 (-15 -4132 (|#1| |#1| (-591 (-273 |#2|)))) (-15 -4132 (|#1| |#1| (-273 |#2|))) (-15 -4132 (|#1| |#1| |#2| |#2|)) (-15 -4132 (|#1| |#1| (-591 |#2|) (-591 |#2|))))
+((-4132 (($ $ (-591 |#1|) (-591 |#1|)) 7) (($ $ |#1| |#1|) 6) (($ $ (-273 |#1|)) 11) (($ $ (-591 (-273 |#1|))) 10)))
+(((-288 |#1|) (-131) (-1018)) (T -288))
+((-4132 (*1 *1 *1 *2) (-12 (-5 *2 (-273 *3)) (-4 *1 (-288 *3)) (-4 *3 (-1018)))) (-4132 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-273 *3))) (-4 *1 (-288 *3)) (-4 *3 (-1018)))))
+(-13 (-486 |t#1| |t#1|) (-10 -8 (-15 -4132 ($ $ (-273 |t#1|))) (-15 -4132 ($ $ (-591 (-273 |t#1|))))))
+(((-486 |#1| |#1|) . T))
+((-4132 ((|#1| (-1 |#1| (-525)) (-1091 (-385 (-525)))) 25)))
+(((-289 |#1|) (-10 -7 (-15 -4132 (|#1| (-1 |#1| (-525)) (-1091 (-385 (-525)))))) (-37 (-385 (-525)))) (T -289))
+((-4132 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-525))) (-5 *4 (-1091 (-385 (-525)))) (-5 *1 (-289 *2)) (-4 *2 (-37 (-385 (-525)))))))
+(-10 -7 (-15 -4132 (|#1| (-1 |#1| (-525)) (-1091 (-385 (-525))))))
+((-3008 (((-108) $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 7)) (-4096 (((-108) $ $) 9)))
+(((-290) (-1018)) (T -290))
+NIL
+(-1018)
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 62)) (-1508 (((-1157 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-286)))) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-842)))) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-842)))) (-1947 (((-108) $ $) NIL)) (-3329 (((-525) $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-761)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-1157 |#1| |#2| |#3| |#4|) "failed") $) NIL) (((-3 (-1089) "failed") $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-966 (-1089)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-966 (-525)))) (((-3 (-525) "failed") $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-966 (-525)))) (((-3 (-1156 |#2| |#3| |#4|) "failed") $) 25)) (-3528 (((-1157 |#1| |#2| |#3| |#4|) $) NIL) (((-1089) $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-966 (-1089)))) (((-385 (-525)) $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-966 (-525)))) (((-525) $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-966 (-525)))) (((-1156 |#2| |#3| |#4|) $) NIL)) (-2129 (($ $ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-1157 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1171 (-1157 |#1| |#2| |#3| |#4|)))) (-631 $) (-1171 $)) NIL) (((-631 (-1157 |#1| |#2| |#3| |#4|)) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-510)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2134 (((-108) $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-761)))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-819 (-525)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-819 (-357))))) (-2824 (((-108) $) NIL)) (-2368 (($ $) NIL)) (-1738 (((-1157 |#1| |#2| |#3| |#4|) $) 21)) (-2085 (((-3 $ "failed") $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-1065)))) (-2732 (((-108) $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-761)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3741 (($ $ $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-788)))) (-2478 (($ $ $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-788)))) (-1340 (($ (-1 (-1157 |#1| |#2| |#3| |#4|) (-1157 |#1| |#2| |#3| |#4|)) $) NIL)) (-2687 (((-3 (-781 |#2|) "failed") $) 78)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-1065)) CONST)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3093 (($ $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-286)))) (-2662 (((-1157 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-510)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-842)))) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-4132 (($ $ (-591 (-1157 |#1| |#2| |#3| |#4|)) (-591 (-1157 |#1| |#2| |#3| |#4|))) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-288 (-1157 |#1| |#2| |#3| |#4|)))) (($ $ (-1157 |#1| |#2| |#3| |#4|) (-1157 |#1| |#2| |#3| |#4|)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-288 (-1157 |#1| |#2| |#3| |#4|)))) (($ $ (-273 (-1157 |#1| |#2| |#3| |#4|))) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-288 (-1157 |#1| |#2| |#3| |#4|)))) (($ $ (-591 (-273 (-1157 |#1| |#2| |#3| |#4|)))) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-288 (-1157 |#1| |#2| |#3| |#4|)))) (($ $ (-591 (-1089)) (-591 (-1157 |#1| |#2| |#3| |#4|))) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-486 (-1089) (-1157 |#1| |#2| |#3| |#4|)))) (($ $ (-1089) (-1157 |#1| |#2| |#3| |#4|)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-486 (-1089) (-1157 |#1| |#2| |#3| |#4|))))) (-1712 (((-712) $) NIL)) (-3164 (($ $ (-1157 |#1| |#2| |#3| |#4|)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-265 (-1157 |#1| |#2| |#3| |#4|) (-1157 |#1| |#2| |#3| |#4|))))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3266 (($ $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-213))) (($ $ (-712)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-213))) (($ $ (-1089)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-833 (-1089)))) (($ $ (-1 (-1157 |#1| |#2| |#3| |#4|) (-1157 |#1| |#2| |#3| |#4|)) (-712)) NIL) (($ $ (-1 (-1157 |#1| |#2| |#3| |#4|) (-1157 |#1| |#2| |#3| |#4|))) NIL)) (-2966 (($ $) NIL)) (-1754 (((-1157 |#1| |#2| |#3| |#4|) $) 17)) (-1408 (((-825 (-525)) $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-566 (-825 (-525))))) (((-825 (-357)) $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-566 (-825 (-357))))) (((-501) $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-566 (-501)))) (((-357) $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-951))) (((-205) $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-951)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| (-1157 |#1| |#2| |#3| |#4|) (-842))))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) (($ (-1157 |#1| |#2| |#3| |#4|)) 29) (($ (-1089)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-966 (-1089)))) (($ (-1156 |#2| |#3| |#4|)) 36)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| (-1157 |#1| |#2| |#3| |#4|) (-842))) (|has| (-1157 |#1| |#2| |#3| |#4|) (-136))))) (-2128 (((-712)) NIL)) (-3862 (((-1157 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-510)))) (-2495 (((-108) $ $) NIL)) (-1539 (($ $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-761)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) 41 T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-213))) (($ $ (-712)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-213))) (($ $ (-1089)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-833 (-1089)))) (($ $ (-1 (-1157 |#1| |#2| |#3| |#4|) (-1157 |#1| |#2| |#3| |#4|)) (-712)) NIL) (($ $ (-1 (-1157 |#1| |#2| |#3| |#4|) (-1157 |#1| |#2| |#3| |#4|))) NIL)) (-4135 (((-108) $ $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-788)))) (-4119 (((-108) $ $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-788)))) (-4112 (((-108) $ $) NIL (|has| (-1157 |#1| |#2| |#3| |#4|) (-788)))) (-4173 (($ $ $) 34) (($ (-1157 |#1| |#2| |#3| |#4|) (-1157 |#1| |#2| |#3| |#4|)) 31)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ (-1157 |#1| |#2| |#3| |#4|) $) 30) (($ $ (-1157 |#1| |#2| |#3| |#4|)) NIL)))
+(((-291 |#1| |#2| |#3| |#4|) (-13 (-923 (-1157 |#1| |#2| |#3| |#4|)) (-966 (-1156 |#2| |#3| |#4|)) (-10 -8 (-15 -2687 ((-3 (-781 |#2|) "failed") $)) (-15 -3022 ($ (-1156 |#2| |#3| |#4|))))) (-13 (-788) (-966 (-525)) (-587 (-525)) (-429)) (-13 (-27) (-1111) (-408 |#1|)) (-1089) |#2|) (T -291))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1156 *4 *5 *6)) (-4 *4 (-13 (-27) (-1111) (-408 *3))) (-14 *5 (-1089)) (-14 *6 *4) (-4 *3 (-13 (-788) (-966 (-525)) (-587 (-525)) (-429))) (-5 *1 (-291 *3 *4 *5 *6)))) (-2687 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-788) (-966 (-525)) (-587 (-525)) (-429))) (-5 *2 (-781 *4)) (-5 *1 (-291 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1111) (-408 *3))) (-14 *5 (-1089)) (-14 *6 *4))))
+(-13 (-923 (-1157 |#1| |#2| |#3| |#4|)) (-966 (-1156 |#2| |#3| |#4|)) (-10 -8 (-15 -2687 ((-3 (-781 |#2|) "failed") $)) (-15 -3022 ($ (-1156 |#2| |#3| |#4|)))))
+((-1340 (((-294 |#2|) (-1 |#2| |#1|) (-294 |#1|)) 13)))
+(((-292 |#1| |#2|) (-10 -7 (-15 -1340 ((-294 |#2|) (-1 |#2| |#1|) (-294 |#1|)))) (-788) (-788)) (T -292))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-294 *5)) (-4 *5 (-788)) (-4 *6 (-788)) (-5 *2 (-294 *6)) (-5 *1 (-292 *5 *6)))))
+(-10 -7 (-15 -1340 ((-294 |#2|) (-1 |#2| |#1|) (-294 |#1|))))
+((-1569 (((-51) |#2| (-273 |#2|) (-712)) 33) (((-51) |#2| (-273 |#2|)) 24) (((-51) |#2| (-712)) 28) (((-51) |#2|) 25) (((-51) (-1089)) 21)) (-3682 (((-51) |#2| (-273 |#2|) (-385 (-525))) 51) (((-51) |#2| (-273 |#2|)) 48) (((-51) |#2| (-385 (-525))) 50) (((-51) |#2|) 49) (((-51) (-1089)) 47)) (-1597 (((-51) |#2| (-273 |#2|) (-385 (-525))) 46) (((-51) |#2| (-273 |#2|)) 43) (((-51) |#2| (-385 (-525))) 45) (((-51) |#2|) 44) (((-51) (-1089)) 42)) (-1581 (((-51) |#2| (-273 |#2|) (-525)) 39) (((-51) |#2| (-273 |#2|)) 35) (((-51) |#2| (-525)) 38) (((-51) |#2|) 36) (((-51) (-1089)) 34)))
+(((-293 |#1| |#2|) (-10 -7 (-15 -1569 ((-51) (-1089))) (-15 -1569 ((-51) |#2|)) (-15 -1569 ((-51) |#2| (-712))) (-15 -1569 ((-51) |#2| (-273 |#2|))) (-15 -1569 ((-51) |#2| (-273 |#2|) (-712))) (-15 -1581 ((-51) (-1089))) (-15 -1581 ((-51) |#2|)) (-15 -1581 ((-51) |#2| (-525))) (-15 -1581 ((-51) |#2| (-273 |#2|))) (-15 -1581 ((-51) |#2| (-273 |#2|) (-525))) (-15 -1597 ((-51) (-1089))) (-15 -1597 ((-51) |#2|)) (-15 -1597 ((-51) |#2| (-385 (-525)))) (-15 -1597 ((-51) |#2| (-273 |#2|))) (-15 -1597 ((-51) |#2| (-273 |#2|) (-385 (-525)))) (-15 -3682 ((-51) (-1089))) (-15 -3682 ((-51) |#2|)) (-15 -3682 ((-51) |#2| (-385 (-525)))) (-15 -3682 ((-51) |#2| (-273 |#2|))) (-15 -3682 ((-51) |#2| (-273 |#2|) (-385 (-525))))) (-13 (-429) (-788) (-966 (-525)) (-587 (-525))) (-13 (-27) (-1111) (-408 |#1|))) (T -293))
+((-3682 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-273 *3)) (-5 *5 (-385 (-525))) (-4 *3 (-13 (-27) (-1111) (-408 *6))) (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *6 *3)))) (-3682 (*1 *2 *3 *4) (-12 (-5 *4 (-273 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5))) (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *5 *3)))) (-3682 (*1 *2 *3 *4) (-12 (-5 *4 (-385 (-525))) (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *5 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5))))) (-3682 (*1 *2 *3) (-12 (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *4 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *4))))) (-3682 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *4 *5)) (-4 *5 (-13 (-27) (-1111) (-408 *4))))) (-1597 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-273 *3)) (-5 *5 (-385 (-525))) (-4 *3 (-13 (-27) (-1111) (-408 *6))) (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *6 *3)))) (-1597 (*1 *2 *3 *4) (-12 (-5 *4 (-273 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5))) (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *5 *3)))) (-1597 (*1 *2 *3 *4) (-12 (-5 *4 (-385 (-525))) (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *5 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5))))) (-1597 (*1 *2 *3) (-12 (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *4 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *4))))) (-1597 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *4 *5)) (-4 *5 (-13 (-27) (-1111) (-408 *4))))) (-1581 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-273 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *6))) (-4 *6 (-13 (-429) (-788) (-966 *5) (-587 *5))) (-5 *5 (-525)) (-5 *2 (-51)) (-5 *1 (-293 *6 *3)))) (-1581 (*1 *2 *3 *4) (-12 (-5 *4 (-273 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5))) (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *5 *3)))) (-1581 (*1 *2 *3 *4) (-12 (-5 *4 (-525)) (-4 *5 (-13 (-429) (-788) (-966 *4) (-587 *4))) (-5 *2 (-51)) (-5 *1 (-293 *5 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5))))) (-1581 (*1 *2 *3) (-12 (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *4 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *4))))) (-1581 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *4 *5)) (-4 *5 (-13 (-27) (-1111) (-408 *4))))) (-1569 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-273 *3)) (-5 *5 (-712)) (-4 *3 (-13 (-27) (-1111) (-408 *6))) (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *6 *3)))) (-1569 (*1 *2 *3 *4) (-12 (-5 *4 (-273 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5))) (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *5 *3)))) (-1569 (*1 *2 *3 *4) (-12 (-5 *4 (-712)) (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *5 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5))))) (-1569 (*1 *2 *3) (-12 (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *4 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *4))))) (-1569 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-293 *4 *5)) (-4 *5 (-13 (-27) (-1111) (-408 *4))))))
+(-10 -7 (-15 -1569 ((-51) (-1089))) (-15 -1569 ((-51) |#2|)) (-15 -1569 ((-51) |#2| (-712))) (-15 -1569 ((-51) |#2| (-273 |#2|))) (-15 -1569 ((-51) |#2| (-273 |#2|) (-712))) (-15 -1581 ((-51) (-1089))) (-15 -1581 ((-51) |#2|)) (-15 -1581 ((-51) |#2| (-525))) (-15 -1581 ((-51) |#2| (-273 |#2|))) (-15 -1581 ((-51) |#2| (-273 |#2|) (-525))) (-15 -1597 ((-51) (-1089))) (-15 -1597 ((-51) |#2|)) (-15 -1597 ((-51) |#2| (-385 (-525)))) (-15 -1597 ((-51) |#2| (-273 |#2|))) (-15 -1597 ((-51) |#2| (-273 |#2|) (-385 (-525)))) (-15 -3682 ((-51) (-1089))) (-15 -3682 ((-51) |#2|)) (-15 -3682 ((-51) |#2| (-385 (-525)))) (-15 -3682 ((-51) |#2| (-273 |#2|))) (-15 -3682 ((-51) |#2| (-273 |#2|) (-385 (-525)))))
+((-3008 (((-108) $ $) NIL)) (-2453 (((-591 $) $ (-1089)) NIL (|has| |#1| (-517))) (((-591 $) $) NIL (|has| |#1| (-517))) (((-591 $) (-1085 $) (-1089)) NIL (|has| |#1| (-517))) (((-591 $) (-1085 $)) NIL (|has| |#1| (-517))) (((-591 $) (-885 $)) NIL (|has| |#1| (-517)))) (-3719 (($ $ (-1089)) NIL (|has| |#1| (-517))) (($ $) NIL (|has| |#1| (-517))) (($ (-1085 $) (-1089)) NIL (|has| |#1| (-517))) (($ (-1085 $)) NIL (|has| |#1| (-517))) (($ (-885 $)) NIL (|has| |#1| (-517)))) (-1800 (((-108) $) 27 (-3321 (|has| |#1| (-25)) (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975)))))) (-1507 (((-591 (-1089)) $) 348)) (-1312 (((-385 (-1085 $)) $ (-564 $)) NIL (|has| |#1| (-517)))) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-3374 (((-591 (-564 $)) $) NIL)) (-1987 (($ $) 157 (|has| |#1| (-517)))) (-3169 (($ $) 133 (|has| |#1| (-517)))) (-2329 (($ $ (-1011 $)) 218 (|has| |#1| (-517))) (($ $ (-1089)) 214 (|has| |#1| (-517)))) (-2157 (((-3 $ "failed") $ $) NIL (-3321 (|has| |#1| (-21)) (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975)))))) (-3825 (($ $ (-273 $)) NIL) (($ $ (-591 (-273 $))) 365) (($ $ (-591 (-564 $)) (-591 $)) 409)) (-1965 (((-396 (-1085 $)) (-1085 $)) 292 (-12 (|has| |#1| (-429)) (|has| |#1| (-517))))) (-1291 (($ $) NIL (|has| |#1| (-517)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-517)))) (-1361 (($ $) NIL (|has| |#1| (-517)))) (-1947 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1431 (($ $) 153 (|has| |#1| (-517)))) (-3144 (($ $) 129 (|has| |#1| (-517)))) (-3800 (($ $ (-525)) 65 (|has| |#1| (-517)))) (-1719 (($ $) 161 (|has| |#1| (-517)))) (-1321 (($ $) 137 (|has| |#1| (-517)))) (-3798 (($) NIL (-3321 (|has| |#1| (-25)) (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))) (|has| |#1| (-1030))) CONST)) (-2733 (((-591 $) $ (-1089)) NIL (|has| |#1| (-517))) (((-591 $) $) NIL (|has| |#1| (-517))) (((-591 $) (-1085 $) (-1089)) NIL (|has| |#1| (-517))) (((-591 $) (-1085 $)) NIL (|has| |#1| (-517))) (((-591 $) (-885 $)) NIL (|has| |#1| (-517)))) (-3642 (($ $ (-1089)) NIL (|has| |#1| (-517))) (($ $) NIL (|has| |#1| (-517))) (($ (-1085 $) (-1089)) 120 (|has| |#1| (-517))) (($ (-1085 $)) NIL (|has| |#1| (-517))) (($ (-885 $)) NIL (|has| |#1| (-517)))) (-1251 (((-3 (-564 $) "failed") $) 17) (((-3 (-1089) "failed") $) NIL) (((-3 |#1| "failed") $) 418) (((-3 (-47) "failed") $) 320 (-12 (|has| |#1| (-517)) (|has| |#1| (-966 (-525))))) (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-385 (-885 |#1|)) "failed") $) NIL (|has| |#1| (-517))) (((-3 (-885 |#1|) "failed") $) NIL (|has| |#1| (-975))) (((-3 (-385 (-525)) "failed") $) 46 (-3321 (-12 (|has| |#1| (-517)) (|has| |#1| (-966 (-525)))) (|has| |#1| (-966 (-385 (-525))))))) (-3528 (((-564 $) $) 11) (((-1089) $) NIL) ((|#1| $) 400) (((-47) $) NIL (-12 (|has| |#1| (-517)) (|has| |#1| (-966 (-525))))) (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-385 (-885 |#1|)) $) NIL (|has| |#1| (-517))) (((-885 |#1|) $) NIL (|has| |#1| (-975))) (((-385 (-525)) $) 303 (-3321 (-12 (|has| |#1| (-517)) (|has| |#1| (-966 (-525)))) (|has| |#1| (-966 (-385 (-525))))))) (-2129 (($ $ $) NIL (|has| |#1| (-517)))) (-3305 (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) 113 (|has| |#1| (-975))) (((-631 |#1|) (-631 $)) 103 (|has| |#1| (-975))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975)))) (((-631 (-525)) (-631 $)) NIL (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))))) (-1227 (($ $) 85 (|has| |#1| (-517)))) (-4163 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))) (|has| |#1| (-1030))))) (-2110 (($ $ $) NIL (|has| |#1| (-517)))) (-3783 (($ $ (-1011 $)) 222 (|has| |#1| (-517))) (($ $ (-1089)) 220 (|has| |#1| (-517)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#1| (-517)))) (-2744 (((-108) $) NIL (|has| |#1| (-517)))) (-2307 (($ $ $) 188 (|has| |#1| (-517)))) (-1784 (($) 123 (|has| |#1| (-517)))) (-1994 (($ $ $) 208 (|has| |#1| (-517)))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 371 (|has| |#1| (-819 (-525)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 378 (|has| |#1| (-819 (-357))))) (-1668 (($ $) NIL) (($ (-591 $)) NIL)) (-2194 (((-591 (-110)) $) NIL)) (-3219 (((-110) (-110)) 263)) (-2824 (((-108) $) 25 (-3321 (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))) (|has| |#1| (-1030))))) (-2419 (((-108) $) NIL (|has| $ (-966 (-525))))) (-2368 (($ $) 67 (|has| |#1| (-975)))) (-1738 (((-1041 |#1| (-564 $)) $) 80 (|has| |#1| (-975)))) (-2571 (((-108) $) 47 (|has| |#1| (-517)))) (-3956 (($ $ (-525)) NIL (|has| |#1| (-517)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-517)))) (-2695 (((-1085 $) (-564 $)) 264 (|has| $ (-975)))) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-1340 (($ (-1 $ $) (-564 $)) 405)) (-1405 (((-3 (-564 $) "failed") $) NIL)) (-1488 (($ $) 127 (|has| |#1| (-517)))) (-2433 (($ $) 233 (|has| |#1| (-517)))) (-1356 (($ (-591 $)) NIL (|has| |#1| (-517))) (($ $ $) NIL (|has| |#1| (-517)))) (-2339 (((-1072) $) NIL)) (-1298 (((-591 (-564 $)) $) 49)) (-1843 (($ (-110) $) NIL) (($ (-110) (-591 $)) 410)) (-3376 (((-3 (-591 $) "failed") $) NIL (|has| |#1| (-1030)))) (-3877 (((-3 (-2 (|:| |val| $) (|:| -2008 (-525))) "failed") $) NIL (|has| |#1| (-975)))) (-2010 (((-3 (-591 $) "failed") $) 413 (|has| |#1| (-25)))) (-2104 (((-3 (-2 (|:| -3482 (-525)) (|:| |var| (-564 $))) "failed") $) 417 (|has| |#1| (-25)))) (-2292 (((-3 (-2 (|:| |var| (-564 $)) (|:| -2008 (-525))) "failed") $) NIL (|has| |#1| (-1030))) (((-3 (-2 (|:| |var| (-564 $)) (|:| -2008 (-525))) "failed") $ (-110)) NIL (|has| |#1| (-975))) (((-3 (-2 (|:| |var| (-564 $)) (|:| -2008 (-525))) "failed") $ (-1089)) NIL (|has| |#1| (-975)))) (-1709 (((-108) $ (-110)) NIL) (((-108) $ (-1089)) 53)) (-1622 (($ $) NIL (-3321 (|has| |#1| (-450)) (|has| |#1| (-517))))) (-1817 (($ $ (-1089)) 237 (|has| |#1| (-517))) (($ $ (-1011 $)) 239 (|has| |#1| (-517)))) (-2965 (((-712) $) NIL)) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) 43)) (-1646 ((|#1| $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 285 (|has| |#1| (-517)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-517))) (($ $ $) NIL (|has| |#1| (-517)))) (-1988 (((-108) $ $) NIL) (((-108) $ (-1089)) NIL)) (-3992 (($ $ (-1089)) 212 (|has| |#1| (-517))) (($ $) 210 (|has| |#1| (-517)))) (-1603 (($ $) 204 (|has| |#1| (-517)))) (-1626 (((-396 (-1085 $)) (-1085 $)) 290 (-12 (|has| |#1| (-429)) (|has| |#1| (-517))))) (-1348 (((-396 $) $) NIL (|has| |#1| (-517)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-517))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-517)))) (-2089 (((-3 $ "failed") $ $) NIL (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-517)))) (-1409 (($ $) 125 (|has| |#1| (-517)))) (-3451 (((-108) $) NIL (|has| $ (-966 (-525))))) (-4132 (($ $ (-564 $) $) NIL) (($ $ (-591 (-564 $)) (-591 $)) 404) (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-591 (-1089)) (-591 (-1 $ $))) NIL) (($ $ (-591 (-1089)) (-591 (-1 $ (-591 $)))) NIL) (($ $ (-1089) (-1 $ (-591 $))) NIL) (($ $ (-1089) (-1 $ $)) NIL) (($ $ (-591 (-110)) (-591 (-1 $ $))) 358) (($ $ (-591 (-110)) (-591 (-1 $ (-591 $)))) NIL) (($ $ (-110) (-1 $ (-591 $))) NIL) (($ $ (-110) (-1 $ $)) NIL) (($ $ (-1089)) NIL (|has| |#1| (-566 (-501)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-566 (-501)))) (($ $) NIL (|has| |#1| (-566 (-501)))) (($ $ (-110) $ (-1089)) 346 (|has| |#1| (-566 (-501)))) (($ $ (-591 (-110)) (-591 $) (-1089)) 345 (|has| |#1| (-566 (-501)))) (($ $ (-591 (-1089)) (-591 (-712)) (-591 (-1 $ $))) NIL (|has| |#1| (-975))) (($ $ (-591 (-1089)) (-591 (-712)) (-591 (-1 $ (-591 $)))) NIL (|has| |#1| (-975))) (($ $ (-1089) (-712) (-1 $ (-591 $))) NIL (|has| |#1| (-975))) (($ $ (-1089) (-712) (-1 $ $)) NIL (|has| |#1| (-975)))) (-1712 (((-712) $) NIL (|has| |#1| (-517)))) (-3103 (($ $) 225 (|has| |#1| (-517)))) (-3164 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-591 $)) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-517)))) (-1484 (($ $) NIL) (($ $ $) NIL)) (-3131 (($ $) 235 (|has| |#1| (-517)))) (-3225 (($ $) 186 (|has| |#1| (-517)))) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-975))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-975))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-975))) (($ $ (-1089)) NIL (|has| |#1| (-975)))) (-2966 (($ $) 68 (|has| |#1| (-517)))) (-1754 (((-1041 |#1| (-564 $)) $) 82 (|has| |#1| (-517)))) (-1478 (($ $) 301 (|has| $ (-975)))) (-1502 (($ $) 163 (|has| |#1| (-517)))) (-1333 (($ $) 139 (|has| |#1| (-517)))) (-1996 (($ $) 159 (|has| |#1| (-517)))) (-1309 (($ $) 135 (|has| |#1| (-517)))) (-1973 (($ $) 155 (|has| |#1| (-517)))) (-3156 (($ $) 131 (|has| |#1| (-517)))) (-1408 (((-825 (-525)) $) NIL (|has| |#1| (-566 (-825 (-525))))) (((-825 (-357)) $) NIL (|has| |#1| (-566 (-825 (-357))))) (($ (-396 $)) NIL (|has| |#1| (-517))) (((-501) $) 343 (|has| |#1| (-566 (-501))))) (-3228 (($ $ $) NIL (|has| |#1| (-450)))) (-3619 (($ $ $) NIL (|has| |#1| (-450)))) (-3022 (((-796) $) 403) (($ (-564 $)) 394) (($ (-1089)) 360) (($ |#1|) 321) (($ $) NIL (|has| |#1| (-517))) (($ (-47)) 296 (-12 (|has| |#1| (-517)) (|has| |#1| (-966 (-525))))) (($ (-1041 |#1| (-564 $))) 84 (|has| |#1| (-975))) (($ (-385 |#1|)) NIL (|has| |#1| (-517))) (($ (-885 (-385 |#1|))) NIL (|has| |#1| (-517))) (($ (-385 (-885 (-385 |#1|)))) NIL (|has| |#1| (-517))) (($ (-385 (-885 |#1|))) NIL (|has| |#1| (-517))) (($ (-885 |#1|)) NIL (|has| |#1| (-975))) (($ (-385 (-525))) NIL (-3321 (|has| |#1| (-517)) (|has| |#1| (-966 (-385 (-525)))))) (($ (-525)) 34 (-3321 (|has| |#1| (-966 (-525))) (|has| |#1| (-975))))) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) NIL (|has| |#1| (-975)))) (-2989 (($ $) NIL) (($ (-591 $)) NIL)) (-2516 (($ $ $) 206 (|has| |#1| (-517)))) (-2271 (($ $ $) 192 (|has| |#1| (-517)))) (-3481 (($ $ $) 196 (|has| |#1| (-517)))) (-4123 (($ $ $) 190 (|has| |#1| (-517)))) (-1330 (($ $ $) 194 (|has| |#1| (-517)))) (-2661 (((-108) (-110)) 9)) (-1563 (($ $) 169 (|has| |#1| (-517)))) (-1371 (($ $) 145 (|has| |#1| (-517)))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1515 (($ $) 165 (|has| |#1| (-517)))) (-1346 (($ $) 141 (|has| |#1| (-517)))) (-1591 (($ $) 173 (|has| |#1| (-517)))) (-1400 (($ $) 149 (|has| |#1| (-517)))) (-2745 (($ (-1089) $) NIL) (($ (-1089) $ $) NIL) (($ (-1089) $ $ $) NIL) (($ (-1089) $ $ $ $) NIL) (($ (-1089) (-591 $)) NIL)) (-2072 (($ $) 200 (|has| |#1| (-517)))) (-1828 (($ $) 198 (|has| |#1| (-517)))) (-3277 (($ $) 175 (|has| |#1| (-517)))) (-1415 (($ $) 151 (|has| |#1| (-517)))) (-1578 (($ $) 171 (|has| |#1| (-517)))) (-1385 (($ $) 147 (|has| |#1| (-517)))) (-1527 (($ $) 167 (|has| |#1| (-517)))) (-1358 (($ $) 143 (|has| |#1| (-517)))) (-1539 (($ $) 178 (|has| |#1| (-517)))) (-3710 (($ $ (-525)) NIL (-3321 (|has| |#1| (-450)) (|has| |#1| (-517)))) (($ $ (-712)) NIL (-3321 (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))) (|has| |#1| (-1030)))) (($ $ (-854)) NIL (-3321 (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))) (|has| |#1| (-1030))))) (-4191 (($) 20 (-3321 (|has| |#1| (-25)) (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975)))) CONST)) (-2515 (($ $) 229 (|has| |#1| (-517)))) (-4197 (($) 22 (-3321 (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))) (|has| |#1| (-1030))) CONST)) (-3834 (($ $) 180 (|has| |#1| (-517))) (($ $ $) 182 (|has| |#1| (-517)))) (-3337 (($ $) 227 (|has| |#1| (-517)))) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-975))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-975))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-975))) (($ $ (-1089)) NIL (|has| |#1| (-975)))) (-1479 (($ $) 231 (|has| |#1| (-517)))) (-1617 (($ $ $) 184 (|has| |#1| (-517)))) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 77)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 76)) (-4173 (($ (-1041 |#1| (-564 $)) (-1041 |#1| (-564 $))) 94 (|has| |#1| (-517))) (($ $ $) 42 (-3321 (|has| |#1| (-450)) (|has| |#1| (-517))))) (-4164 (($ $ $) 40 (-3321 (|has| |#1| (-21)) (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))))) (($ $) 29 (-3321 (|has| |#1| (-21)) (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975)))))) (-4156 (($ $ $) 38 (-3321 (|has| |#1| (-25)) (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975)))))) (** (($ $ $) 62 (|has| |#1| (-517))) (($ $ (-385 (-525))) 298 (|has| |#1| (-517))) (($ $ (-525)) 72 (-3321 (|has| |#1| (-450)) (|has| |#1| (-517)))) (($ $ (-712)) 69 (-3321 (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))) (|has| |#1| (-1030)))) (($ $ (-854)) 74 (-3321 (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))) (|has| |#1| (-1030))))) (* (($ (-385 (-525)) $) NIL (|has| |#1| (-517))) (($ $ (-385 (-525))) NIL (|has| |#1| (-517))) (($ |#1| $) NIL (|has| |#1| (-160))) (($ $ |#1|) NIL (|has| |#1| (-160))) (($ $ $) 36 (-3321 (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))) (|has| |#1| (-1030)))) (($ (-525) $) 32 (-3321 (|has| |#1| (-21)) (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))))) (($ (-712) $) NIL (-3321 (|has| |#1| (-25)) (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))))) (($ (-854) $) NIL (-3321 (|has| |#1| (-25)) (-12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975)))))))
+(((-294 |#1|) (-13 (-408 |#1|) (-10 -8 (IF (|has| |#1| (-517)) (PROGN (-6 (-29 |#1|)) (-6 (-1111)) (-6 (-149)) (-6 (-577)) (-6 (-1053)) (-15 -1227 ($ $)) (-15 -2571 ((-108) $)) (-15 -3800 ($ $ (-525))) (IF (|has| |#1| (-429)) (PROGN (-15 -1626 ((-396 (-1085 $)) (-1085 $))) (-15 -1965 ((-396 (-1085 $)) (-1085 $)))) |%noBranch|) (IF (|has| |#1| (-966 (-525))) (-6 (-966 (-47))) |%noBranch|)) |%noBranch|))) (-788)) (T -294))
+((-1227 (*1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-517)) (-4 *2 (-788)))) (-2571 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-294 *3)) (-4 *3 (-517)) (-4 *3 (-788)))) (-3800 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-294 *3)) (-4 *3 (-517)) (-4 *3 (-788)))) (-1626 (*1 *2 *3) (-12 (-5 *2 (-396 (-1085 *1))) (-5 *1 (-294 *4)) (-5 *3 (-1085 *1)) (-4 *4 (-429)) (-4 *4 (-517)) (-4 *4 (-788)))) (-1965 (*1 *2 *3) (-12 (-5 *2 (-396 (-1085 *1))) (-5 *1 (-294 *4)) (-5 *3 (-1085 *1)) (-4 *4 (-429)) (-4 *4 (-517)) (-4 *4 (-788)))))
+(-13 (-408 |#1|) (-10 -8 (IF (|has| |#1| (-517)) (PROGN (-6 (-29 |#1|)) (-6 (-1111)) (-6 (-149)) (-6 (-577)) (-6 (-1053)) (-15 -1227 ($ $)) (-15 -2571 ((-108) $)) (-15 -3800 ($ $ (-525))) (IF (|has| |#1| (-429)) (PROGN (-15 -1626 ((-396 (-1085 $)) (-1085 $))) (-15 -1965 ((-396 (-1085 $)) (-1085 $)))) |%noBranch|) (IF (|has| |#1| (-966 (-525))) (-6 (-966 (-47))) |%noBranch|)) |%noBranch|)))
+((-1692 (((-51) |#2| (-110) (-273 |#2|) (-591 |#2|)) 88) (((-51) |#2| (-110) (-273 |#2|) (-273 |#2|)) 84) (((-51) |#2| (-110) (-273 |#2|) |#2|) 86) (((-51) (-273 |#2|) (-110) (-273 |#2|) |#2|) 87) (((-51) (-591 |#2|) (-591 (-110)) (-273 |#2|) (-591 (-273 |#2|))) 80) (((-51) (-591 |#2|) (-591 (-110)) (-273 |#2|) (-591 |#2|)) 82) (((-51) (-591 (-273 |#2|)) (-591 (-110)) (-273 |#2|) (-591 |#2|)) 83) (((-51) (-591 (-273 |#2|)) (-591 (-110)) (-273 |#2|) (-591 (-273 |#2|))) 81) (((-51) (-273 |#2|) (-110) (-273 |#2|) (-591 |#2|)) 89) (((-51) (-273 |#2|) (-110) (-273 |#2|) (-273 |#2|)) 85)))
+(((-295 |#1| |#2|) (-10 -7 (-15 -1692 ((-51) (-273 |#2|) (-110) (-273 |#2|) (-273 |#2|))) (-15 -1692 ((-51) (-273 |#2|) (-110) (-273 |#2|) (-591 |#2|))) (-15 -1692 ((-51) (-591 (-273 |#2|)) (-591 (-110)) (-273 |#2|) (-591 (-273 |#2|)))) (-15 -1692 ((-51) (-591 (-273 |#2|)) (-591 (-110)) (-273 |#2|) (-591 |#2|))) (-15 -1692 ((-51) (-591 |#2|) (-591 (-110)) (-273 |#2|) (-591 |#2|))) (-15 -1692 ((-51) (-591 |#2|) (-591 (-110)) (-273 |#2|) (-591 (-273 |#2|)))) (-15 -1692 ((-51) (-273 |#2|) (-110) (-273 |#2|) |#2|)) (-15 -1692 ((-51) |#2| (-110) (-273 |#2|) |#2|)) (-15 -1692 ((-51) |#2| (-110) (-273 |#2|) (-273 |#2|))) (-15 -1692 ((-51) |#2| (-110) (-273 |#2|) (-591 |#2|)))) (-13 (-788) (-517) (-566 (-501))) (-408 |#1|)) (T -295))
+((-1692 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-110)) (-5 *5 (-273 *3)) (-5 *6 (-591 *3)) (-4 *3 (-408 *7)) (-4 *7 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51)) (-5 *1 (-295 *7 *3)))) (-1692 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-110)) (-5 *5 (-273 *3)) (-4 *3 (-408 *6)) (-4 *6 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51)) (-5 *1 (-295 *6 *3)))) (-1692 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-110)) (-5 *5 (-273 *3)) (-4 *3 (-408 *6)) (-4 *6 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51)) (-5 *1 (-295 *6 *3)))) (-1692 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-273 *5)) (-5 *4 (-110)) (-4 *5 (-408 *6)) (-4 *6 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51)) (-5 *1 (-295 *6 *5)))) (-1692 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-591 *8)) (-5 *4 (-591 (-110))) (-5 *6 (-591 (-273 *8))) (-4 *8 (-408 *7)) (-5 *5 (-273 *8)) (-4 *7 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51)) (-5 *1 (-295 *7 *8)))) (-1692 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-591 *7)) (-5 *4 (-591 (-110))) (-5 *5 (-273 *7)) (-4 *7 (-408 *6)) (-4 *6 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51)) (-5 *1 (-295 *6 *7)))) (-1692 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-591 (-273 *8))) (-5 *4 (-591 (-110))) (-5 *5 (-273 *8)) (-5 *6 (-591 *8)) (-4 *8 (-408 *7)) (-4 *7 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51)) (-5 *1 (-295 *7 *8)))) (-1692 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-591 (-273 *7))) (-5 *4 (-591 (-110))) (-5 *5 (-273 *7)) (-4 *7 (-408 *6)) (-4 *6 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51)) (-5 *1 (-295 *6 *7)))) (-1692 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-273 *7)) (-5 *4 (-110)) (-5 *5 (-591 *7)) (-4 *7 (-408 *6)) (-4 *6 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51)) (-5 *1 (-295 *6 *7)))) (-1692 (*1 *2 *3 *4 *3 *3) (-12 (-5 *3 (-273 *6)) (-5 *4 (-110)) (-4 *6 (-408 *5)) (-4 *5 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51)) (-5 *1 (-295 *5 *6)))))
+(-10 -7 (-15 -1692 ((-51) (-273 |#2|) (-110) (-273 |#2|) (-273 |#2|))) (-15 -1692 ((-51) (-273 |#2|) (-110) (-273 |#2|) (-591 |#2|))) (-15 -1692 ((-51) (-591 (-273 |#2|)) (-591 (-110)) (-273 |#2|) (-591 (-273 |#2|)))) (-15 -1692 ((-51) (-591 (-273 |#2|)) (-591 (-110)) (-273 |#2|) (-591 |#2|))) (-15 -1692 ((-51) (-591 |#2|) (-591 (-110)) (-273 |#2|) (-591 |#2|))) (-15 -1692 ((-51) (-591 |#2|) (-591 (-110)) (-273 |#2|) (-591 (-273 |#2|)))) (-15 -1692 ((-51) (-273 |#2|) (-110) (-273 |#2|) |#2|)) (-15 -1692 ((-51) |#2| (-110) (-273 |#2|) |#2|)) (-15 -1692 ((-51) |#2| (-110) (-273 |#2|) (-273 |#2|))) (-15 -1692 ((-51) |#2| (-110) (-273 |#2|) (-591 |#2|))))
+((-3954 (((-1121 (-859)) (-294 (-525)) (-294 (-525)) (-294 (-525)) (-1 (-205) (-205)) (-1013 (-205)) (-205) (-525) (-1072)) 46) (((-1121 (-859)) (-294 (-525)) (-294 (-525)) (-294 (-525)) (-1 (-205) (-205)) (-1013 (-205)) (-205) (-525)) 47) (((-1121 (-859)) (-294 (-525)) (-294 (-525)) (-294 (-525)) (-1 (-205) (-205)) (-1013 (-205)) (-1 (-205) (-205)) (-525) (-1072)) 43) (((-1121 (-859)) (-294 (-525)) (-294 (-525)) (-294 (-525)) (-1 (-205) (-205)) (-1013 (-205)) (-1 (-205) (-205)) (-525)) 44)) (-2152 (((-1 (-205) (-205)) (-205)) 45)))
+(((-296) (-10 -7 (-15 -2152 ((-1 (-205) (-205)) (-205))) (-15 -3954 ((-1121 (-859)) (-294 (-525)) (-294 (-525)) (-294 (-525)) (-1 (-205) (-205)) (-1013 (-205)) (-1 (-205) (-205)) (-525))) (-15 -3954 ((-1121 (-859)) (-294 (-525)) (-294 (-525)) (-294 (-525)) (-1 (-205) (-205)) (-1013 (-205)) (-1 (-205) (-205)) (-525) (-1072))) (-15 -3954 ((-1121 (-859)) (-294 (-525)) (-294 (-525)) (-294 (-525)) (-1 (-205) (-205)) (-1013 (-205)) (-205) (-525))) (-15 -3954 ((-1121 (-859)) (-294 (-525)) (-294 (-525)) (-294 (-525)) (-1 (-205) (-205)) (-1013 (-205)) (-205) (-525) (-1072))))) (T -296))
+((-3954 (*1 *2 *3 *3 *3 *4 *5 *6 *7 *8) (-12 (-5 *3 (-294 (-525))) (-5 *4 (-1 (-205) (-205))) (-5 *5 (-1013 (-205))) (-5 *6 (-205)) (-5 *7 (-525)) (-5 *8 (-1072)) (-5 *2 (-1121 (-859))) (-5 *1 (-296)))) (-3954 (*1 *2 *3 *3 *3 *4 *5 *6 *7) (-12 (-5 *3 (-294 (-525))) (-5 *4 (-1 (-205) (-205))) (-5 *5 (-1013 (-205))) (-5 *6 (-205)) (-5 *7 (-525)) (-5 *2 (-1121 (-859))) (-5 *1 (-296)))) (-3954 (*1 *2 *3 *3 *3 *4 *5 *4 *6 *7) (-12 (-5 *3 (-294 (-525))) (-5 *4 (-1 (-205) (-205))) (-5 *5 (-1013 (-205))) (-5 *6 (-525)) (-5 *7 (-1072)) (-5 *2 (-1121 (-859))) (-5 *1 (-296)))) (-3954 (*1 *2 *3 *3 *3 *4 *5 *4 *6) (-12 (-5 *3 (-294 (-525))) (-5 *4 (-1 (-205) (-205))) (-5 *5 (-1013 (-205))) (-5 *6 (-525)) (-5 *2 (-1121 (-859))) (-5 *1 (-296)))) (-2152 (*1 *2 *3) (-12 (-5 *2 (-1 (-205) (-205))) (-5 *1 (-296)) (-5 *3 (-205)))))
+(-10 -7 (-15 -2152 ((-1 (-205) (-205)) (-205))) (-15 -3954 ((-1121 (-859)) (-294 (-525)) (-294 (-525)) (-294 (-525)) (-1 (-205) (-205)) (-1013 (-205)) (-1 (-205) (-205)) (-525))) (-15 -3954 ((-1121 (-859)) (-294 (-525)) (-294 (-525)) (-294 (-525)) (-1 (-205) (-205)) (-1013 (-205)) (-1 (-205) (-205)) (-525) (-1072))) (-15 -3954 ((-1121 (-859)) (-294 (-525)) (-294 (-525)) (-294 (-525)) (-1 (-205) (-205)) (-1013 (-205)) (-205) (-525))) (-15 -3954 ((-1121 (-859)) (-294 (-525)) (-294 (-525)) (-294 (-525)) (-1 (-205) (-205)) (-1013 (-205)) (-205) (-525) (-1072))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 25)) (-1507 (((-591 (-1003)) $) NIL)) (-2037 (((-1089) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-2121 (($ $ (-385 (-525))) NIL) (($ $ (-385 (-525)) (-385 (-525))) NIL)) (-1631 (((-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#1|))) $) 20)) (-1987 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL (|has| |#1| (-341)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-341)))) (-1361 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1947 (((-108) $ $) NIL (|has| |#1| (-341)))) (-1431 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3682 (($ (-712) (-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#1|)))) NIL)) (-1719 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) NIL T CONST)) (-2129 (($ $ $) NIL (|has| |#1| (-341)))) (-1710 (($ $) 32)) (-4163 (((-3 $ "failed") $) NIL)) (-2110 (($ $ $) NIL (|has| |#1| (-341)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#1| (-341)))) (-2744 (((-108) $) NIL (|has| |#1| (-341)))) (-3123 (((-108) $) NIL)) (-1784 (($) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3873 (((-385 (-525)) $) NIL) (((-385 (-525)) $ (-385 (-525))) 16)) (-2824 (((-108) $) NIL)) (-3956 (($ $ (-525)) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3111 (($ $ (-854)) NIL) (($ $ (-385 (-525))) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-385 (-525))) NIL) (($ $ (-1003) (-385 (-525))) NIL) (($ $ (-591 (-1003)) (-591 (-385 (-525)))) NIL)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-1488 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL (|has| |#1| (-341)))) (-4141 (($ $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089)) NIL (-3321 (-12 (|has| |#1| (-15 -4141 (|#1| |#1| (-1089)))) (|has| |#1| (-15 -1507 ((-591 (-1089)) |#1|))) (|has| |#1| (-37 (-385 (-525))))) (-12 (|has| |#1| (-29 (-525))) (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-891)) (|has| |#1| (-1111)))))) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-341)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-1348 (((-396 $) $) NIL (|has| |#1| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2784 (($ $ (-385 (-525))) NIL)) (-2089 (((-3 $ "failed") $ $) NIL (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-3172 (((-385 (-525)) $) 17)) (-1315 (($ (-1156 |#1| |#2| |#3|)) 11)) (-2008 (((-1156 |#1| |#2| |#3|) $) 12)) (-1409 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-4132 (((-1070 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-385 (-525))))))) (-1712 (((-712) $) NIL (|has| |#1| (-341)))) (-3164 ((|#1| $ (-385 (-525))) NIL) (($ $ $) NIL (|has| (-385 (-525)) (-1030)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (-1316 (((-385 (-525)) $) NIL)) (-1502 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3571 (($ $) 10)) (-3022 (((-796) $) 38) (($ (-525)) NIL) (($ |#1|) NIL (|has| |#1| (-160))) (($ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $) NIL (|has| |#1| (-517)))) (-2560 ((|#1| $ (-385 (-525))) 30)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) NIL)) (-1682 ((|#1| $) NIL)) (-1563 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1515 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2176 ((|#1| $ (-385 (-525))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-385 (-525))))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3277 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341)))) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 27)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 33)) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))))
+(((-297 |#1| |#2| |#3|) (-13 (-1152 |#1|) (-733) (-10 -8 (-15 -1315 ($ (-1156 |#1| |#2| |#3|))) (-15 -2008 ((-1156 |#1| |#2| |#3|) $)) (-15 -3172 ((-385 (-525)) $)))) (-13 (-341) (-788)) (-1089) |#1|) (T -297))
+((-1315 (*1 *1 *2) (-12 (-5 *2 (-1156 *3 *4 *5)) (-4 *3 (-13 (-341) (-788))) (-14 *4 (-1089)) (-14 *5 *3) (-5 *1 (-297 *3 *4 *5)))) (-2008 (*1 *2 *1) (-12 (-5 *2 (-1156 *3 *4 *5)) (-5 *1 (-297 *3 *4 *5)) (-4 *3 (-13 (-341) (-788))) (-14 *4 (-1089)) (-14 *5 *3))) (-3172 (*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-297 *3 *4 *5)) (-4 *3 (-13 (-341) (-788))) (-14 *4 (-1089)) (-14 *5 *3))))
+(-13 (-1152 |#1|) (-733) (-10 -8 (-15 -1315 ($ (-1156 |#1| |#2| |#3|))) (-15 -2008 ((-1156 |#1| |#2| |#3|) $)) (-15 -3172 ((-385 (-525)) $))))
+((-3956 (((-2 (|:| -2008 (-712)) (|:| -3482 |#1|) (|:| |radicand| (-591 |#1|))) (-396 |#1|) (-712)) 24)) (-1488 (((-591 (-2 (|:| -3482 (-712)) (|:| |logand| |#1|))) (-396 |#1|)) 28)))
+(((-298 |#1|) (-10 -7 (-15 -3956 ((-2 (|:| -2008 (-712)) (|:| -3482 |#1|) (|:| |radicand| (-591 |#1|))) (-396 |#1|) (-712))) (-15 -1488 ((-591 (-2 (|:| -3482 (-712)) (|:| |logand| |#1|))) (-396 |#1|)))) (-517)) (T -298))
+((-1488 (*1 *2 *3) (-12 (-5 *3 (-396 *4)) (-4 *4 (-517)) (-5 *2 (-591 (-2 (|:| -3482 (-712)) (|:| |logand| *4)))) (-5 *1 (-298 *4)))) (-3956 (*1 *2 *3 *4) (-12 (-5 *3 (-396 *5)) (-4 *5 (-517)) (-5 *2 (-2 (|:| -2008 (-712)) (|:| -3482 *5) (|:| |radicand| (-591 *5)))) (-5 *1 (-298 *5)) (-5 *4 (-712)))))
+(-10 -7 (-15 -3956 ((-2 (|:| -2008 (-712)) (|:| -3482 |#1|) (|:| |radicand| (-591 |#1|))) (-396 |#1|) (-712))) (-15 -1488 ((-591 (-2 (|:| -3482 (-712)) (|:| |logand| |#1|))) (-396 |#1|))))
+((-1507 (((-591 |#2|) (-1085 |#4|)) 43)) (-3784 ((|#3| (-525)) 46)) (-2615 (((-1085 |#4|) (-1085 |#3|)) 30)) (-2342 (((-1085 |#4|) (-1085 |#4|) (-525)) 56)) (-3543 (((-1085 |#3|) (-1085 |#4|)) 21)) (-1316 (((-591 (-712)) (-1085 |#4|) (-591 |#2|)) 40)) (-3527 (((-1085 |#3|) (-1085 |#4|) (-591 |#2|) (-591 |#3|)) 35)))
+(((-299 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3527 ((-1085 |#3|) (-1085 |#4|) (-591 |#2|) (-591 |#3|))) (-15 -1316 ((-591 (-712)) (-1085 |#4|) (-591 |#2|))) (-15 -1507 ((-591 |#2|) (-1085 |#4|))) (-15 -3543 ((-1085 |#3|) (-1085 |#4|))) (-15 -2615 ((-1085 |#4|) (-1085 |#3|))) (-15 -2342 ((-1085 |#4|) (-1085 |#4|) (-525))) (-15 -3784 (|#3| (-525)))) (-734) (-788) (-975) (-882 |#3| |#1| |#2|)) (T -299))
+((-3784 (*1 *2 *3) (-12 (-5 *3 (-525)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *2 (-975)) (-5 *1 (-299 *4 *5 *2 *6)) (-4 *6 (-882 *2 *4 *5)))) (-2342 (*1 *2 *2 *3) (-12 (-5 *2 (-1085 *7)) (-5 *3 (-525)) (-4 *7 (-882 *6 *4 *5)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-975)) (-5 *1 (-299 *4 *5 *6 *7)))) (-2615 (*1 *2 *3) (-12 (-5 *3 (-1085 *6)) (-4 *6 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-1085 *7)) (-5 *1 (-299 *4 *5 *6 *7)) (-4 *7 (-882 *6 *4 *5)))) (-3543 (*1 *2 *3) (-12 (-5 *3 (-1085 *7)) (-4 *7 (-882 *6 *4 *5)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-975)) (-5 *2 (-1085 *6)) (-5 *1 (-299 *4 *5 *6 *7)))) (-1507 (*1 *2 *3) (-12 (-5 *3 (-1085 *7)) (-4 *7 (-882 *6 *4 *5)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-975)) (-5 *2 (-591 *5)) (-5 *1 (-299 *4 *5 *6 *7)))) (-1316 (*1 *2 *3 *4) (-12 (-5 *3 (-1085 *8)) (-5 *4 (-591 *6)) (-4 *6 (-788)) (-4 *8 (-882 *7 *5 *6)) (-4 *5 (-734)) (-4 *7 (-975)) (-5 *2 (-591 (-712))) (-5 *1 (-299 *5 *6 *7 *8)))) (-3527 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1085 *9)) (-5 *4 (-591 *7)) (-5 *5 (-591 *8)) (-4 *7 (-788)) (-4 *8 (-975)) (-4 *9 (-882 *8 *6 *7)) (-4 *6 (-734)) (-5 *2 (-1085 *8)) (-5 *1 (-299 *6 *7 *8 *9)))))
+(-10 -7 (-15 -3527 ((-1085 |#3|) (-1085 |#4|) (-591 |#2|) (-591 |#3|))) (-15 -1316 ((-591 (-712)) (-1085 |#4|) (-591 |#2|))) (-15 -1507 ((-591 |#2|) (-1085 |#4|))) (-15 -3543 ((-1085 |#3|) (-1085 |#4|))) (-15 -2615 ((-1085 |#4|) (-1085 |#3|))) (-15 -2342 ((-1085 |#4|) (-1085 |#4|) (-525))) (-15 -3784 (|#3| (-525))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 14)) (-1631 (((-591 (-2 (|:| |gen| |#1|) (|:| -1409 (-525)))) $) 18)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3032 (((-712) $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL)) (-3528 ((|#1| $) NIL)) (-2423 ((|#1| $ (-525)) NIL)) (-3509 (((-525) $ (-525)) NIL)) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-3731 (($ (-1 |#1| |#1|) $) NIL)) (-3086 (($ (-1 (-525) (-525)) $) 10)) (-2339 (((-1072) $) NIL)) (-3792 (($ $ $) NIL (|has| (-525) (-733)))) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL) (($ |#1|) NIL)) (-2560 (((-525) |#1| $) NIL)) (-4191 (($) 15 T CONST)) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) 21 (|has| |#1| (-788)))) (-4164 (($ $) 11) (($ $ $) 20)) (-4156 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ (-525)) NIL) (($ (-525) |#1|) 19)))
+(((-300 |#1|) (-13 (-21) (-659 (-525)) (-301 |#1| (-525)) (-10 -7 (IF (|has| |#1| (-788)) (-6 (-788)) |%noBranch|))) (-1018)) (T -300))
+NIL
+(-13 (-21) (-659 (-525)) (-301 |#1| (-525)) (-10 -7 (IF (|has| |#1| (-788)) (-6 (-788)) |%noBranch|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1631 (((-591 (-2 (|:| |gen| |#1|) (|:| -1409 |#2|))) $) 27)) (-2157 (((-3 $ "failed") $ $) 19)) (-3032 (((-712) $) 28)) (-3798 (($) 17 T CONST)) (-1251 (((-3 |#1| "failed") $) 32)) (-3528 ((|#1| $) 31)) (-2423 ((|#1| $ (-525)) 25)) (-3509 ((|#2| $ (-525)) 26)) (-3731 (($ (-1 |#1| |#1|) $) 22)) (-3086 (($ (-1 |#2| |#2|) $) 23)) (-2339 (((-1072) $) 9)) (-3792 (($ $ $) 21 (|has| |#2| (-733)))) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11) (($ |#1|) 33)) (-2560 ((|#2| |#1| $) 24)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4156 (($ $ $) 14) (($ |#1| $) 30)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ |#2| |#1|) 29)))
+(((-301 |#1| |#2|) (-131) (-1018) (-126)) (T -301))
+((-4156 (*1 *1 *2 *1) (-12 (-4 *1 (-301 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-126)))) (* (*1 *1 *2 *3) (-12 (-4 *1 (-301 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-126)))) (-3032 (*1 *2 *1) (-12 (-4 *1 (-301 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-126)) (-5 *2 (-712)))) (-1631 (*1 *2 *1) (-12 (-4 *1 (-301 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-126)) (-5 *2 (-591 (-2 (|:| |gen| *3) (|:| -1409 *4)))))) (-3509 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-4 *1 (-301 *4 *2)) (-4 *4 (-1018)) (-4 *2 (-126)))) (-2423 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-4 *1 (-301 *2 *4)) (-4 *4 (-126)) (-4 *2 (-1018)))) (-2560 (*1 *2 *3 *1) (-12 (-4 *1 (-301 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-126)))) (-3086 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-301 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-126)))) (-3731 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-301 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-126)))) (-3792 (*1 *1 *1 *1) (-12 (-4 *1 (-301 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-126)) (-4 *3 (-733)))))
+(-13 (-126) (-966 |t#1|) (-10 -8 (-15 -4156 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -3032 ((-712) $)) (-15 -1631 ((-591 (-2 (|:| |gen| |t#1|) (|:| -1409 |t#2|))) $)) (-15 -3509 (|t#2| $ (-525))) (-15 -2423 (|t#1| $ (-525))) (-15 -2560 (|t#2| |t#1| $)) (-15 -3086 ($ (-1 |t#2| |t#2|) $)) (-15 -3731 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-733)) (-15 -3792 ($ $ $)) |%noBranch|)))
+(((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-966 |#1|) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1631 (((-591 (-2 (|:| |gen| |#1|) (|:| -1409 (-712)))) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3032 (((-712) $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL)) (-3528 ((|#1| $) NIL)) (-2423 ((|#1| $ (-525)) NIL)) (-3509 (((-712) $ (-525)) NIL)) (-3731 (($ (-1 |#1| |#1|) $) NIL)) (-3086 (($ (-1 (-712) (-712)) $) NIL)) (-2339 (((-1072) $) NIL)) (-3792 (($ $ $) NIL (|has| (-712) (-733)))) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL) (($ |#1|) NIL)) (-2560 (((-712) |#1| $) NIL)) (-4191 (($) NIL T CONST)) (-4096 (((-108) $ $) NIL)) (-4156 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-712) |#1|) NIL)))
+(((-302 |#1|) (-301 |#1| (-712)) (-1018)) (T -302))
+NIL
+(-301 |#1| (-712))
+((-3208 (($ $) 53)) (-2056 (($ $ |#2| |#3| $) 14)) (-4015 (($ (-1 |#3| |#3|) $) 35)) (-1634 (((-108) $) 27)) (-1646 ((|#2| $) 29)) (-2089 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 46)) (-2668 ((|#2| $) 49)) (-3654 (((-591 |#2|) $) 38)) (-1698 (($ $ $ (-712)) 23)) (-4173 (($ $ |#2|) 42)))
+(((-303 |#1| |#2| |#3|) (-10 -8 (-15 -3208 (|#1| |#1|)) (-15 -2668 (|#2| |#1|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1698 (|#1| |#1| |#1| (-712))) (-15 -2056 (|#1| |#1| |#2| |#3| |#1|)) (-15 -4015 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3654 ((-591 |#2|) |#1|)) (-15 -1646 (|#2| |#1|)) (-15 -1634 ((-108) |#1|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4173 (|#1| |#1| |#2|))) (-304 |#2| |#3|) (-975) (-733)) (T -303))
+NIL
+(-10 -8 (-15 -3208 (|#1| |#1|)) (-15 -2668 (|#2| |#1|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1698 (|#1| |#1| |#1| (-712))) (-15 -2056 (|#1| |#1| |#2| |#3| |#1|)) (-15 -4015 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3654 ((-591 |#2|) |#1|)) (-15 -1646 (|#2| |#1|)) (-15 -1634 ((-108) |#1|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4173 (|#1| |#1| |#2|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 51 (|has| |#1| (-517)))) (-3706 (($ $) 52 (|has| |#1| (-517)))) (-1715 (((-108) $) 54 (|has| |#1| (-517)))) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-1251 (((-3 (-525) "failed") $) 90 (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) 88 (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) 87)) (-3528 (((-525) $) 91 (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) 89 (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) 86)) (-1710 (($ $) 60)) (-4163 (((-3 $ "failed") $) 34)) (-3208 (($ $) 75 (|has| |#1| (-429)))) (-2056 (($ $ |#1| |#2| $) 79)) (-2824 (((-108) $) 31)) (-4010 (((-712) $) 82)) (-2202 (((-108) $) 62)) (-1480 (($ |#1| |#2|) 61)) (-2624 ((|#2| $) 81)) (-4015 (($ (-1 |#2| |#2|) $) 80)) (-1340 (($ (-1 |#1| |#1|) $) 63)) (-1661 (($ $) 65)) (-1678 ((|#1| $) 66)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-1634 (((-108) $) 85)) (-1646 ((|#1| $) 84)) (-2089 (((-3 $ "failed") $ $) 50 (|has| |#1| (-517))) (((-3 $ "failed") $ |#1|) 77 (|has| |#1| (-517)))) (-1316 ((|#2| $) 64)) (-2668 ((|#1| $) 76 (|has| |#1| (-429)))) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 49 (|has| |#1| (-517))) (($ |#1|) 47) (($ (-385 (-525))) 57 (-3321 (|has| |#1| (-966 (-385 (-525)))) (|has| |#1| (-37 (-385 (-525))))))) (-3654 (((-591 |#1|) $) 83)) (-2560 ((|#1| $ |#2|) 59)) (-1437 (((-3 $ "failed") $) 48 (|has| |#1| (-136)))) (-2128 (((-712)) 29)) (-1698 (($ $ $ (-712)) 78 (|has| |#1| (-160)))) (-2495 (((-108) $ $) 53 (|has| |#1| (-517)))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4173 (($ $ |#1|) 58 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-385 (-525)) $) 56 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 55 (|has| |#1| (-37 (-385 (-525)))))))
+(((-304 |#1| |#2|) (-131) (-975) (-733)) (T -304))
+((-1634 (*1 *2 *1) (-12 (-4 *1 (-304 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733)) (-5 *2 (-108)))) (-1646 (*1 *2 *1) (-12 (-4 *1 (-304 *2 *3)) (-4 *3 (-733)) (-4 *2 (-975)))) (-3654 (*1 *2 *1) (-12 (-4 *1 (-304 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733)) (-5 *2 (-591 *3)))) (-4010 (*1 *2 *1) (-12 (-4 *1 (-304 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733)) (-5 *2 (-712)))) (-2624 (*1 *2 *1) (-12 (-4 *1 (-304 *3 *2)) (-4 *3 (-975)) (-4 *2 (-733)))) (-4015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-304 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733)))) (-2056 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-304 *2 *3)) (-4 *2 (-975)) (-4 *3 (-733)))) (-1698 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-304 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733)) (-4 *3 (-160)))) (-2089 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-304 *2 *3)) (-4 *2 (-975)) (-4 *3 (-733)) (-4 *2 (-517)))) (-2668 (*1 *2 *1) (-12 (-4 *1 (-304 *2 *3)) (-4 *3 (-733)) (-4 *2 (-975)) (-4 *2 (-429)))) (-3208 (*1 *1 *1) (-12 (-4 *1 (-304 *2 *3)) (-4 *2 (-975)) (-4 *3 (-733)) (-4 *2 (-429)))))
+(-13 (-46 |t#1| |t#2|) (-389 |t#1|) (-10 -8 (-15 -1634 ((-108) $)) (-15 -1646 (|t#1| $)) (-15 -3654 ((-591 |t#1|) $)) (-15 -4010 ((-712) $)) (-15 -2624 (|t#2| $)) (-15 -4015 ($ (-1 |t#2| |t#2|) $)) (-15 -2056 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-160)) (-15 -1698 ($ $ $ (-712))) |%noBranch|) (IF (|has| |t#1| (-517)) (-15 -2089 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-429)) (PROGN (-15 -2668 (|t#1| $)) (-15 -3208 ($ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((-37 |#1|) |has| |#1| (-160)) ((-37 $) |has| |#1| (-517)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-385 (-525)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-269) |has| |#1| (-517)) ((-389 |#1|) . T) ((-517) |has| |#1| (-517)) ((-593 #0#) |has| |#1| (-37 (-385 (-525)))) ((-593 |#1|) . T) ((-593 $) . T) ((-659 #0#) |has| |#1| (-37 (-385 (-525)))) ((-659 |#1|) |has| |#1| (-160)) ((-659 $) |has| |#1| (-517)) ((-668) . T) ((-966 (-385 (-525))) |has| |#1| (-966 (-385 (-525)))) ((-966 (-525)) |has| |#1| (-966 (-525))) ((-966 |#1|) . T) ((-981 #0#) |has| |#1| (-37 (-385 (-525)))) ((-981 |#1|) . T) ((-981 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3203 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-788)))) (-4026 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4251))) (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| |#1| (-788))))) (-3327 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-788)))) (-3891 (((-108) $ (-712)) NIL)) (-3041 (((-108) (-108)) NIL)) (-3186 ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) NIL (|has| $ (-6 -4251)))) (-1797 (($ (-1 (-108) |#1|) $) NIL)) (-2305 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-3611 (($ $) NIL (|has| |#1| (-1018)))) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3901 (($ |#1| $) NIL (|has| |#1| (-1018))) (($ (-1 (-108) |#1|) $) NIL)) (-3677 (($ |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) NIL)) (-3004 (((-525) (-1 (-108) |#1|) $) NIL) (((-525) |#1| $) NIL (|has| |#1| (-1018))) (((-525) |#1| $ (-525)) NIL (|has| |#1| (-1018)))) (-1647 (($ $ (-525)) NIL)) (-1303 (((-712) $) NIL)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-1268 (($ (-712) |#1|) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) NIL (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2921 (($ $ $) NIL (|has| |#1| (-788))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-2131 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-788)))) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-2470 (($ $ $ (-525)) NIL) (($ |#1| $ (-525)) NIL)) (-4189 (($ |#1| $ (-525)) NIL) (($ $ $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-2860 (($ (-591 |#1|)) NIL)) (-3066 ((|#1| $) NIL (|has| (-525) (-788)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1941 (($ $ |#1|) NIL (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#1| $ (-525) |#1|) NIL) ((|#1| $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-1790 (($ $ (-1138 (-525))) NIL) (($ $ (-525)) NIL)) (-2777 (($ $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4063 (($ $ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) NIL)) (-1679 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3690 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-591 $)) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-305 |#1|) (-13 (-19 |#1|) (-261 |#1|) (-10 -8 (-15 -2860 ($ (-591 |#1|))) (-15 -1303 ((-712) $)) (-15 -1647 ($ $ (-525))) (-15 -3041 ((-108) (-108))))) (-1125)) (T -305))
+((-2860 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-5 *1 (-305 *3)))) (-1303 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-305 *3)) (-4 *3 (-1125)))) (-1647 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-305 *3)) (-4 *3 (-1125)))) (-3041 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-305 *3)) (-4 *3 (-1125)))))
+(-13 (-19 |#1|) (-261 |#1|) (-10 -8 (-15 -2860 ($ (-591 |#1|))) (-15 -1303 ((-712) $)) (-15 -1647 ($ $ (-525))) (-15 -3041 ((-108) (-108)))))
+((-2144 (((-108) $) 42)) (-2834 (((-712)) 22)) (-2569 ((|#2| $) 46) (($ $ (-854)) 104)) (-3032 (((-712)) 98)) (-4171 (($ (-1171 |#2|)) 20)) (-1751 (((-108) $) 116)) (-2771 ((|#2| $) 48) (($ $ (-854)) 102)) (-1382 (((-1085 |#2|) $) NIL) (((-1085 $) $ (-854)) 95)) (-1924 (((-1085 |#2|) $) 83)) (-3040 (((-1085 |#2|) $) 80) (((-3 (-1085 |#2|) "failed") $ $) 77)) (-2054 (($ $ (-1085 |#2|)) 53)) (-2163 (((-774 (-854))) 28) (((-854)) 43)) (-4224 (((-128)) 25)) (-1316 (((-774 (-854)) $) 30) (((-854) $) 118)) (-1608 (($) 110)) (-3572 (((-1171 |#2|) $) NIL) (((-631 |#2|) (-1171 $)) 39)) (-1437 (($ $) NIL) (((-3 $ "failed") $) 86)) (-1884 (((-108) $) 41)))
+(((-306 |#1| |#2|) (-10 -8 (-15 -1437 ((-3 |#1| "failed") |#1|)) (-15 -3032 ((-712))) (-15 -1437 (|#1| |#1|)) (-15 -3040 ((-3 (-1085 |#2|) "failed") |#1| |#1|)) (-15 -3040 ((-1085 |#2|) |#1|)) (-15 -1924 ((-1085 |#2|) |#1|)) (-15 -2054 (|#1| |#1| (-1085 |#2|))) (-15 -1751 ((-108) |#1|)) (-15 -1608 (|#1|)) (-15 -2569 (|#1| |#1| (-854))) (-15 -2771 (|#1| |#1| (-854))) (-15 -1382 ((-1085 |#1|) |#1| (-854))) (-15 -2569 (|#2| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -1316 ((-854) |#1|)) (-15 -2163 ((-854))) (-15 -1382 ((-1085 |#2|) |#1|)) (-15 -4171 (|#1| (-1171 |#2|))) (-15 -3572 ((-631 |#2|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1|)) (-15 -2834 ((-712))) (-15 -2163 ((-774 (-854)))) (-15 -1316 ((-774 (-854)) |#1|)) (-15 -2144 ((-108) |#1|)) (-15 -1884 ((-108) |#1|)) (-15 -4224 ((-128)))) (-307 |#2|) (-341)) (T -306))
+((-4224 (*1 *2) (-12 (-4 *4 (-341)) (-5 *2 (-128)) (-5 *1 (-306 *3 *4)) (-4 *3 (-307 *4)))) (-2163 (*1 *2) (-12 (-4 *4 (-341)) (-5 *2 (-774 (-854))) (-5 *1 (-306 *3 *4)) (-4 *3 (-307 *4)))) (-2834 (*1 *2) (-12 (-4 *4 (-341)) (-5 *2 (-712)) (-5 *1 (-306 *3 *4)) (-4 *3 (-307 *4)))) (-2163 (*1 *2) (-12 (-4 *4 (-341)) (-5 *2 (-854)) (-5 *1 (-306 *3 *4)) (-4 *3 (-307 *4)))) (-3032 (*1 *2) (-12 (-4 *4 (-341)) (-5 *2 (-712)) (-5 *1 (-306 *3 *4)) (-4 *3 (-307 *4)))))
+(-10 -8 (-15 -1437 ((-3 |#1| "failed") |#1|)) (-15 -3032 ((-712))) (-15 -1437 (|#1| |#1|)) (-15 -3040 ((-3 (-1085 |#2|) "failed") |#1| |#1|)) (-15 -3040 ((-1085 |#2|) |#1|)) (-15 -1924 ((-1085 |#2|) |#1|)) (-15 -2054 (|#1| |#1| (-1085 |#2|))) (-15 -1751 ((-108) |#1|)) (-15 -1608 (|#1|)) (-15 -2569 (|#1| |#1| (-854))) (-15 -2771 (|#1| |#1| (-854))) (-15 -1382 ((-1085 |#1|) |#1| (-854))) (-15 -2569 (|#2| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -1316 ((-854) |#1|)) (-15 -2163 ((-854))) (-15 -1382 ((-1085 |#2|) |#1|)) (-15 -4171 (|#1| (-1171 |#2|))) (-15 -3572 ((-631 |#2|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1|)) (-15 -2834 ((-712))) (-15 -2163 ((-774 (-854)))) (-15 -1316 ((-774 (-854)) |#1|)) (-15 -2144 ((-108) |#1|)) (-15 -1884 ((-108) |#1|)) (-15 -4224 ((-128))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2144 (((-108) $) 94)) (-2834 (((-712)) 90)) (-2569 ((|#1| $) 140) (($ $ (-854)) 137 (|has| |#1| (-346)))) (-3734 (((-1099 (-854) (-712)) (-525)) 122 (|has| |#1| (-346)))) (-2157 (((-3 $ "failed") $ $) 19)) (-1291 (($ $) 73)) (-2827 (((-396 $) $) 72)) (-1947 (((-108) $ $) 59)) (-3032 (((-712)) 112 (|has| |#1| (-346)))) (-3798 (($) 17 T CONST)) (-1251 (((-3 |#1| "failed") $) 101)) (-3528 ((|#1| $) 100)) (-4171 (($ (-1171 |#1|)) 146)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) 128 (|has| |#1| (-346)))) (-2129 (($ $ $) 55)) (-4163 (((-3 $ "failed") $) 34)) (-3377 (($) 109 (|has| |#1| (-346)))) (-2110 (($ $ $) 56)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 51)) (-3944 (($) 124 (|has| |#1| (-346)))) (-4104 (((-108) $) 125 (|has| |#1| (-346)))) (-2299 (($ $ (-712)) 87 (-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))) (($ $) 86 (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2744 (((-108) $) 71)) (-3873 (((-854) $) 127 (|has| |#1| (-346))) (((-774 (-854)) $) 84 (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2824 (((-108) $) 31)) (-4046 (($) 135 (|has| |#1| (-346)))) (-1751 (((-108) $) 134 (|has| |#1| (-346)))) (-2771 ((|#1| $) 141) (($ $ (-854)) 138 (|has| |#1| (-346)))) (-2085 (((-3 $ "failed") $) 113 (|has| |#1| (-346)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 52)) (-1382 (((-1085 |#1|) $) 145) (((-1085 $) $ (-854)) 139 (|has| |#1| (-346)))) (-3016 (((-854) $) 110 (|has| |#1| (-346)))) (-1924 (((-1085 |#1|) $) 131 (|has| |#1| (-346)))) (-3040 (((-1085 |#1|) $) 130 (|has| |#1| (-346))) (((-3 (-1085 |#1|) "failed") $ $) 129 (|has| |#1| (-346)))) (-2054 (($ $ (-1085 |#1|)) 132 (|has| |#1| (-346)))) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-1622 (($ $) 70)) (-3506 (($) 114 (|has| |#1| (-346)) CONST)) (-2226 (($ (-854)) 111 (|has| |#1| (-346)))) (-1476 (((-108) $) 93)) (-2047 (((-1036) $) 10)) (-3857 (($) 133 (|has| |#1| (-346)))) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) 121 (|has| |#1| (-346)))) (-1348 (((-396 $) $) 74)) (-2163 (((-774 (-854))) 91) (((-854)) 143)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2089 (((-3 $ "failed") $ $) 42)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 50)) (-1712 (((-712) $) 58)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 57)) (-2953 (((-712) $) 126 (|has| |#1| (-346))) (((-3 (-712) "failed") $ $) 85 (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-4224 (((-128)) 99)) (-3266 (($ $) 118 (|has| |#1| (-346))) (($ $ (-712)) 116 (|has| |#1| (-346)))) (-1316 (((-774 (-854)) $) 92) (((-854) $) 142)) (-1478 (((-1085 |#1|)) 144)) (-2616 (($) 123 (|has| |#1| (-346)))) (-1608 (($) 136 (|has| |#1| (-346)))) (-3572 (((-1171 |#1|) $) 148) (((-631 |#1|) (-1171 $)) 147)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) 120 (|has| |#1| (-346)))) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43) (($ (-385 (-525))) 65) (($ |#1|) 102)) (-1437 (($ $) 119 (|has| |#1| (-346))) (((-3 $ "failed") $) 83 (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2128 (((-712)) 29)) (-4003 (((-1171 $)) 150) (((-1171 $) (-854)) 149)) (-2495 (((-108) $ $) 39)) (-1884 (((-108) $) 95)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 69)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4227 (($ $) 89 (|has| |#1| (-346))) (($ $ (-712)) 88 (|has| |#1| (-346)))) (-4196 (($ $) 117 (|has| |#1| (-346))) (($ $ (-712)) 115 (|has| |#1| (-346)))) (-4096 (((-108) $ $) 6)) (-4173 (($ $ $) 64) (($ $ |#1|) 98)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 68)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 (-525))) 67) (($ (-385 (-525)) $) 66) (($ $ |#1|) 97) (($ |#1| $) 96)))
+(((-307 |#1|) (-131) (-341)) (T -307))
+((-4003 (*1 *2) (-12 (-4 *3 (-341)) (-5 *2 (-1171 *1)) (-4 *1 (-307 *3)))) (-4003 (*1 *2 *3) (-12 (-5 *3 (-854)) (-4 *4 (-341)) (-5 *2 (-1171 *1)) (-4 *1 (-307 *4)))) (-3572 (*1 *2 *1) (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-5 *2 (-1171 *3)))) (-3572 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-307 *4)) (-4 *4 (-341)) (-5 *2 (-631 *4)))) (-4171 (*1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-341)) (-4 *1 (-307 *3)))) (-1382 (*1 *2 *1) (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-5 *2 (-1085 *3)))) (-1478 (*1 *2) (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-5 *2 (-1085 *3)))) (-2163 (*1 *2) (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-5 *2 (-854)))) (-1316 (*1 *2 *1) (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-5 *2 (-854)))) (-2771 (*1 *2 *1) (-12 (-4 *1 (-307 *2)) (-4 *2 (-341)))) (-2569 (*1 *2 *1) (-12 (-4 *1 (-307 *2)) (-4 *2 (-341)))) (-1382 (*1 *2 *1 *3) (-12 (-5 *3 (-854)) (-4 *4 (-346)) (-4 *4 (-341)) (-5 *2 (-1085 *1)) (-4 *1 (-307 *4)))) (-2771 (*1 *1 *1 *2) (-12 (-5 *2 (-854)) (-4 *1 (-307 *3)) (-4 *3 (-341)) (-4 *3 (-346)))) (-2569 (*1 *1 *1 *2) (-12 (-5 *2 (-854)) (-4 *1 (-307 *3)) (-4 *3 (-341)) (-4 *3 (-346)))) (-1608 (*1 *1) (-12 (-4 *1 (-307 *2)) (-4 *2 (-346)) (-4 *2 (-341)))) (-4046 (*1 *1) (-12 (-4 *1 (-307 *2)) (-4 *2 (-346)) (-4 *2 (-341)))) (-1751 (*1 *2 *1) (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-4 *3 (-346)) (-5 *2 (-108)))) (-3857 (*1 *1) (-12 (-4 *1 (-307 *2)) (-4 *2 (-346)) (-4 *2 (-341)))) (-2054 (*1 *1 *1 *2) (-12 (-5 *2 (-1085 *3)) (-4 *3 (-346)) (-4 *1 (-307 *3)) (-4 *3 (-341)))) (-1924 (*1 *2 *1) (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-4 *3 (-346)) (-5 *2 (-1085 *3)))) (-3040 (*1 *2 *1) (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-4 *3 (-346)) (-5 *2 (-1085 *3)))) (-3040 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-4 *3 (-346)) (-5 *2 (-1085 *3)))))
+(-13 (-1188 |t#1|) (-966 |t#1|) (-10 -8 (-15 -4003 ((-1171 $))) (-15 -4003 ((-1171 $) (-854))) (-15 -3572 ((-1171 |t#1|) $)) (-15 -3572 ((-631 |t#1|) (-1171 $))) (-15 -4171 ($ (-1171 |t#1|))) (-15 -1382 ((-1085 |t#1|) $)) (-15 -1478 ((-1085 |t#1|))) (-15 -2163 ((-854))) (-15 -1316 ((-854) $)) (-15 -2771 (|t#1| $)) (-15 -2569 (|t#1| $)) (IF (|has| |t#1| (-346)) (PROGN (-6 (-327)) (-15 -1382 ((-1085 $) $ (-854))) (-15 -2771 ($ $ (-854))) (-15 -2569 ($ $ (-854))) (-15 -1608 ($)) (-15 -4046 ($)) (-15 -1751 ((-108) $)) (-15 -3857 ($)) (-15 -2054 ($ $ (-1085 |t#1|))) (-15 -1924 ((-1085 |t#1|) $)) (-15 -3040 ((-1085 |t#1|) $)) (-15 -3040 ((-3 (-1085 |t#1|) "failed") $ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-126) . T) ((-136) -3321 (|has| |#1| (-346)) (|has| |#1| (-136))) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) . T) ((-213) |has| |#1| (-346)) ((-223) . T) ((-269) . T) ((-286) . T) ((-1188 |#1|) . T) ((-341) . T) ((-380) -3321 (|has| |#1| (-346)) (|has| |#1| (-136))) ((-346) |has| |#1| (-346)) ((-327) |has| |#1| (-346)) ((-429) . T) ((-517) . T) ((-593 #0#) . T) ((-593 |#1|) . T) ((-593 $) . T) ((-659 #0#) . T) ((-659 |#1|) . T) ((-659 $) . T) ((-668) . T) ((-853) . T) ((-966 |#1|) . T) ((-981 #0#) . T) ((-981 |#1|) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1065) |has| |#1| (-346)) ((-1129) . T) ((-1178 |#1|) . T))
+((-3008 (((-108) $ $) NIL)) (-1449 (($ (-1088) $) 88)) (-3105 (($) 77)) (-2967 (((-1036) (-1036)) 11)) (-2331 (($) 78)) (-2321 (($) 90) (($ (-294 (-640))) 98) (($ (-294 (-642))) 94) (($ (-294 (-635))) 102) (($ (-294 (-357))) 109) (($ (-294 (-525))) 105) (($ (-294 (-157 (-357)))) 113)) (-3497 (($ (-1088) $) 89)) (-3829 (($ (-591 (-796))) 79)) (-2075 (((-1176) $) 75)) (-2135 (((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $) 27)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3286 (($ (-1036)) 51)) (-2378 (((-1022) $) 25)) (-4113 (($ (-1011 (-885 (-525))) $) 85) (($ (-1011 (-885 (-525))) (-885 (-525)) $) 86)) (-1214 (($ (-1036)) 87)) (-4071 (($ (-1088) $) 115) (($ (-1088) $ $) 116)) (-2586 (($ (-1089) (-591 (-1089))) 76)) (-3045 (($ (-1072)) 82) (($ (-591 (-1072))) 80)) (-3022 (((-796) $) 118)) (-3380 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1089)) (|:| |arrayIndex| (-591 (-885 (-525)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -2002 (-796)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1089)) (|:| |rand| (-796)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1088)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3028 (-108)) (|:| -3024 (-2 (|:| |ints2Floats?| (-108)) (|:| -2002 (-796)))))) (|:| |blockBranch| (-591 $)) (|:| |commentBranch| (-591 (-1072))) (|:| |callBranch| (-1072)) (|:| |forBranch| (-2 (|:| -1767 (-1011 (-885 (-525)))) (|:| |span| (-885 (-525))) (|:| -2234 $))) (|:| |labelBranch| (-1036)) (|:| |loopBranch| (-2 (|:| |switch| (-1088)) (|:| -2234 $))) (|:| |commonBranch| (-2 (|:| -2400 (-1089)) (|:| |contents| (-591 (-1089))))) (|:| |printBranch| (-591 (-796)))) $) 44)) (-3713 (($ (-1072)) 187)) (-4168 (($ (-591 $)) 114)) (-1545 (($ (-1089) (-1072)) 120) (($ (-1089) (-294 (-642))) 160) (($ (-1089) (-294 (-640))) 161) (($ (-1089) (-294 (-635))) 162) (($ (-1089) (-631 (-642))) 123) (($ (-1089) (-631 (-640))) 126) (($ (-1089) (-631 (-635))) 129) (($ (-1089) (-1171 (-642))) 132) (($ (-1089) (-1171 (-640))) 135) (($ (-1089) (-1171 (-635))) 138) (($ (-1089) (-631 (-294 (-642)))) 141) (($ (-1089) (-631 (-294 (-640)))) 144) (($ (-1089) (-631 (-294 (-635)))) 147) (($ (-1089) (-1171 (-294 (-642)))) 150) (($ (-1089) (-1171 (-294 (-640)))) 153) (($ (-1089) (-1171 (-294 (-635)))) 156) (($ (-1089) (-591 (-885 (-525))) (-294 (-642))) 157) (($ (-1089) (-591 (-885 (-525))) (-294 (-640))) 158) (($ (-1089) (-591 (-885 (-525))) (-294 (-635))) 159) (($ (-1089) (-294 (-525))) 184) (($ (-1089) (-294 (-357))) 185) (($ (-1089) (-294 (-157 (-357)))) 186) (($ (-1089) (-631 (-294 (-525)))) 165) (($ (-1089) (-631 (-294 (-357)))) 168) (($ (-1089) (-631 (-294 (-157 (-357))))) 171) (($ (-1089) (-1171 (-294 (-525)))) 174) (($ (-1089) (-1171 (-294 (-357)))) 177) (($ (-1089) (-1171 (-294 (-157 (-357))))) 180) (($ (-1089) (-591 (-885 (-525))) (-294 (-525))) 181) (($ (-1089) (-591 (-885 (-525))) (-294 (-357))) 182) (($ (-1089) (-591 (-885 (-525))) (-294 (-157 (-357)))) 183)) (-4096 (((-108) $ $) NIL)))
+(((-308) (-13 (-1018) (-10 -8 (-15 -3022 ((-796) $)) (-15 -4113 ($ (-1011 (-885 (-525))) $)) (-15 -4113 ($ (-1011 (-885 (-525))) (-885 (-525)) $)) (-15 -1449 ($ (-1088) $)) (-15 -3497 ($ (-1088) $)) (-15 -3286 ($ (-1036))) (-15 -1214 ($ (-1036))) (-15 -3045 ($ (-1072))) (-15 -3045 ($ (-591 (-1072)))) (-15 -3713 ($ (-1072))) (-15 -2321 ($)) (-15 -2321 ($ (-294 (-640)))) (-15 -2321 ($ (-294 (-642)))) (-15 -2321 ($ (-294 (-635)))) (-15 -2321 ($ (-294 (-357)))) (-15 -2321 ($ (-294 (-525)))) (-15 -2321 ($ (-294 (-157 (-357))))) (-15 -4071 ($ (-1088) $)) (-15 -4071 ($ (-1088) $ $)) (-15 -1545 ($ (-1089) (-1072))) (-15 -1545 ($ (-1089) (-294 (-642)))) (-15 -1545 ($ (-1089) (-294 (-640)))) (-15 -1545 ($ (-1089) (-294 (-635)))) (-15 -1545 ($ (-1089) (-631 (-642)))) (-15 -1545 ($ (-1089) (-631 (-640)))) (-15 -1545 ($ (-1089) (-631 (-635)))) (-15 -1545 ($ (-1089) (-1171 (-642)))) (-15 -1545 ($ (-1089) (-1171 (-640)))) (-15 -1545 ($ (-1089) (-1171 (-635)))) (-15 -1545 ($ (-1089) (-631 (-294 (-642))))) (-15 -1545 ($ (-1089) (-631 (-294 (-640))))) (-15 -1545 ($ (-1089) (-631 (-294 (-635))))) (-15 -1545 ($ (-1089) (-1171 (-294 (-642))))) (-15 -1545 ($ (-1089) (-1171 (-294 (-640))))) (-15 -1545 ($ (-1089) (-1171 (-294 (-635))))) (-15 -1545 ($ (-1089) (-591 (-885 (-525))) (-294 (-642)))) (-15 -1545 ($ (-1089) (-591 (-885 (-525))) (-294 (-640)))) (-15 -1545 ($ (-1089) (-591 (-885 (-525))) (-294 (-635)))) (-15 -1545 ($ (-1089) (-294 (-525)))) (-15 -1545 ($ (-1089) (-294 (-357)))) (-15 -1545 ($ (-1089) (-294 (-157 (-357))))) (-15 -1545 ($ (-1089) (-631 (-294 (-525))))) (-15 -1545 ($ (-1089) (-631 (-294 (-357))))) (-15 -1545 ($ (-1089) (-631 (-294 (-157 (-357)))))) (-15 -1545 ($ (-1089) (-1171 (-294 (-525))))) (-15 -1545 ($ (-1089) (-1171 (-294 (-357))))) (-15 -1545 ($ (-1089) (-1171 (-294 (-157 (-357)))))) (-15 -1545 ($ (-1089) (-591 (-885 (-525))) (-294 (-525)))) (-15 -1545 ($ (-1089) (-591 (-885 (-525))) (-294 (-357)))) (-15 -1545 ($ (-1089) (-591 (-885 (-525))) (-294 (-157 (-357))))) (-15 -4168 ($ (-591 $))) (-15 -3105 ($)) (-15 -2331 ($)) (-15 -3829 ($ (-591 (-796)))) (-15 -2586 ($ (-1089) (-591 (-1089)))) (-15 -2135 ((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $)) (-15 -3380 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1089)) (|:| |arrayIndex| (-591 (-885 (-525)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -2002 (-796)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1089)) (|:| |rand| (-796)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1088)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3028 (-108)) (|:| -3024 (-2 (|:| |ints2Floats?| (-108)) (|:| -2002 (-796)))))) (|:| |blockBranch| (-591 $)) (|:| |commentBranch| (-591 (-1072))) (|:| |callBranch| (-1072)) (|:| |forBranch| (-2 (|:| -1767 (-1011 (-885 (-525)))) (|:| |span| (-885 (-525))) (|:| -2234 $))) (|:| |labelBranch| (-1036)) (|:| |loopBranch| (-2 (|:| |switch| (-1088)) (|:| -2234 $))) (|:| |commonBranch| (-2 (|:| -2400 (-1089)) (|:| |contents| (-591 (-1089))))) (|:| |printBranch| (-591 (-796)))) $)) (-15 -2075 ((-1176) $)) (-15 -2378 ((-1022) $)) (-15 -2967 ((-1036) (-1036)))))) (T -308))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-308)))) (-4113 (*1 *1 *2 *1) (-12 (-5 *2 (-1011 (-885 (-525)))) (-5 *1 (-308)))) (-4113 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1011 (-885 (-525)))) (-5 *3 (-885 (-525))) (-5 *1 (-308)))) (-1449 (*1 *1 *2 *1) (-12 (-5 *2 (-1088)) (-5 *1 (-308)))) (-3497 (*1 *1 *2 *1) (-12 (-5 *2 (-1088)) (-5 *1 (-308)))) (-3286 (*1 *1 *2) (-12 (-5 *2 (-1036)) (-5 *1 (-308)))) (-1214 (*1 *1 *2) (-12 (-5 *2 (-1036)) (-5 *1 (-308)))) (-3045 (*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-308)))) (-3045 (*1 *1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-308)))) (-3713 (*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-308)))) (-2321 (*1 *1) (-5 *1 (-308))) (-2321 (*1 *1 *2) (-12 (-5 *2 (-294 (-640))) (-5 *1 (-308)))) (-2321 (*1 *1 *2) (-12 (-5 *2 (-294 (-642))) (-5 *1 (-308)))) (-2321 (*1 *1 *2) (-12 (-5 *2 (-294 (-635))) (-5 *1 (-308)))) (-2321 (*1 *1 *2) (-12 (-5 *2 (-294 (-357))) (-5 *1 (-308)))) (-2321 (*1 *1 *2) (-12 (-5 *2 (-294 (-525))) (-5 *1 (-308)))) (-2321 (*1 *1 *2) (-12 (-5 *2 (-294 (-157 (-357)))) (-5 *1 (-308)))) (-4071 (*1 *1 *2 *1) (-12 (-5 *2 (-1088)) (-5 *1 (-308)))) (-4071 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1088)) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1072)) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-294 (-642))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-294 (-640))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-294 (-635))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-642))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-640))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-635))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-642))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-640))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-635))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-294 (-642)))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-294 (-640)))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-294 (-635)))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-294 (-642)))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-294 (-640)))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-294 (-635)))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-885 (-525)))) (-5 *4 (-294 (-642))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-885 (-525)))) (-5 *4 (-294 (-640))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-885 (-525)))) (-5 *4 (-294 (-635))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-294 (-525))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-294 (-357))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-294 (-157 (-357)))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-294 (-525)))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-294 (-357)))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-294 (-157 (-357))))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-294 (-525)))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-294 (-357)))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-294 (-157 (-357))))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-885 (-525)))) (-5 *4 (-294 (-525))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-885 (-525)))) (-5 *4 (-294 (-357))) (-5 *1 (-308)))) (-1545 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-885 (-525)))) (-5 *4 (-294 (-157 (-357)))) (-5 *1 (-308)))) (-4168 (*1 *1 *2) (-12 (-5 *2 (-591 (-308))) (-5 *1 (-308)))) (-3105 (*1 *1) (-5 *1 (-308))) (-2331 (*1 *1) (-5 *1 (-308))) (-3829 (*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-308)))) (-2586 (*1 *1 *2 *3) (-12 (-5 *3 (-591 (-1089))) (-5 *2 (-1089)) (-5 *1 (-308)))) (-2135 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print"))) (-5 *1 (-308)))) (-3380 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1089)) (|:| |arrayIndex| (-591 (-885 (-525)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -2002 (-796)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1089)) (|:| |rand| (-796)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1088)) (|:| |thenClause| (-308)) (|:| |elseClause| (-308)))) (|:| |returnBranch| (-2 (|:| -3028 (-108)) (|:| -3024 (-2 (|:| |ints2Floats?| (-108)) (|:| -2002 (-796)))))) (|:| |blockBranch| (-591 (-308))) (|:| |commentBranch| (-591 (-1072))) (|:| |callBranch| (-1072)) (|:| |forBranch| (-2 (|:| -1767 (-1011 (-885 (-525)))) (|:| |span| (-885 (-525))) (|:| -2234 (-308)))) (|:| |labelBranch| (-1036)) (|:| |loopBranch| (-2 (|:| |switch| (-1088)) (|:| -2234 (-308)))) (|:| |commonBranch| (-2 (|:| -2400 (-1089)) (|:| |contents| (-591 (-1089))))) (|:| |printBranch| (-591 (-796))))) (-5 *1 (-308)))) (-2075 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-308)))) (-2378 (*1 *2 *1) (-12 (-5 *2 (-1022)) (-5 *1 (-308)))) (-2967 (*1 *2 *2) (-12 (-5 *2 (-1036)) (-5 *1 (-308)))))
+(-13 (-1018) (-10 -8 (-15 -3022 ((-796) $)) (-15 -4113 ($ (-1011 (-885 (-525))) $)) (-15 -4113 ($ (-1011 (-885 (-525))) (-885 (-525)) $)) (-15 -1449 ($ (-1088) $)) (-15 -3497 ($ (-1088) $)) (-15 -3286 ($ (-1036))) (-15 -1214 ($ (-1036))) (-15 -3045 ($ (-1072))) (-15 -3045 ($ (-591 (-1072)))) (-15 -3713 ($ (-1072))) (-15 -2321 ($)) (-15 -2321 ($ (-294 (-640)))) (-15 -2321 ($ (-294 (-642)))) (-15 -2321 ($ (-294 (-635)))) (-15 -2321 ($ (-294 (-357)))) (-15 -2321 ($ (-294 (-525)))) (-15 -2321 ($ (-294 (-157 (-357))))) (-15 -4071 ($ (-1088) $)) (-15 -4071 ($ (-1088) $ $)) (-15 -1545 ($ (-1089) (-1072))) (-15 -1545 ($ (-1089) (-294 (-642)))) (-15 -1545 ($ (-1089) (-294 (-640)))) (-15 -1545 ($ (-1089) (-294 (-635)))) (-15 -1545 ($ (-1089) (-631 (-642)))) (-15 -1545 ($ (-1089) (-631 (-640)))) (-15 -1545 ($ (-1089) (-631 (-635)))) (-15 -1545 ($ (-1089) (-1171 (-642)))) (-15 -1545 ($ (-1089) (-1171 (-640)))) (-15 -1545 ($ (-1089) (-1171 (-635)))) (-15 -1545 ($ (-1089) (-631 (-294 (-642))))) (-15 -1545 ($ (-1089) (-631 (-294 (-640))))) (-15 -1545 ($ (-1089) (-631 (-294 (-635))))) (-15 -1545 ($ (-1089) (-1171 (-294 (-642))))) (-15 -1545 ($ (-1089) (-1171 (-294 (-640))))) (-15 -1545 ($ (-1089) (-1171 (-294 (-635))))) (-15 -1545 ($ (-1089) (-591 (-885 (-525))) (-294 (-642)))) (-15 -1545 ($ (-1089) (-591 (-885 (-525))) (-294 (-640)))) (-15 -1545 ($ (-1089) (-591 (-885 (-525))) (-294 (-635)))) (-15 -1545 ($ (-1089) (-294 (-525)))) (-15 -1545 ($ (-1089) (-294 (-357)))) (-15 -1545 ($ (-1089) (-294 (-157 (-357))))) (-15 -1545 ($ (-1089) (-631 (-294 (-525))))) (-15 -1545 ($ (-1089) (-631 (-294 (-357))))) (-15 -1545 ($ (-1089) (-631 (-294 (-157 (-357)))))) (-15 -1545 ($ (-1089) (-1171 (-294 (-525))))) (-15 -1545 ($ (-1089) (-1171 (-294 (-357))))) (-15 -1545 ($ (-1089) (-1171 (-294 (-157 (-357)))))) (-15 -1545 ($ (-1089) (-591 (-885 (-525))) (-294 (-525)))) (-15 -1545 ($ (-1089) (-591 (-885 (-525))) (-294 (-357)))) (-15 -1545 ($ (-1089) (-591 (-885 (-525))) (-294 (-157 (-357))))) (-15 -4168 ($ (-591 $))) (-15 -3105 ($)) (-15 -2331 ($)) (-15 -3829 ($ (-591 (-796)))) (-15 -2586 ($ (-1089) (-591 (-1089)))) (-15 -2135 ((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $)) (-15 -3380 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1089)) (|:| |arrayIndex| (-591 (-885 (-525)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -2002 (-796)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1089)) (|:| |rand| (-796)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1088)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3028 (-108)) (|:| -3024 (-2 (|:| |ints2Floats?| (-108)) (|:| -2002 (-796)))))) (|:| |blockBranch| (-591 $)) (|:| |commentBranch| (-591 (-1072))) (|:| |callBranch| (-1072)) (|:| |forBranch| (-2 (|:| -1767 (-1011 (-885 (-525)))) (|:| |span| (-885 (-525))) (|:| -2234 $))) (|:| |labelBranch| (-1036)) (|:| |loopBranch| (-2 (|:| |switch| (-1088)) (|:| -2234 $))) (|:| |commonBranch| (-2 (|:| -2400 (-1089)) (|:| |contents| (-591 (-1089))))) (|:| |printBranch| (-591 (-796)))) $)) (-15 -2075 ((-1176) $)) (-15 -2378 ((-1022) $)) (-15 -2967 ((-1036) (-1036)))))
+((-3008 (((-108) $ $) NIL)) (-2558 (((-108) $) 11)) (-3144 (($ |#1|) 8)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3156 (($ |#1|) 9)) (-3022 (((-796) $) 17)) (-1398 ((|#1| $) 12)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 19)))
+(((-309 |#1|) (-13 (-788) (-10 -8 (-15 -3144 ($ |#1|)) (-15 -3156 ($ |#1|)) (-15 -2558 ((-108) $)) (-15 -1398 (|#1| $)))) (-788)) (T -309))
+((-3144 (*1 *1 *2) (-12 (-5 *1 (-309 *2)) (-4 *2 (-788)))) (-3156 (*1 *1 *2) (-12 (-5 *1 (-309 *2)) (-4 *2 (-788)))) (-2558 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-309 *3)) (-4 *3 (-788)))) (-1398 (*1 *2 *1) (-12 (-5 *1 (-309 *2)) (-4 *2 (-788)))))
+(-13 (-788) (-10 -8 (-15 -3144 ($ |#1|)) (-15 -3156 ($ |#1|)) (-15 -2558 ((-108) $)) (-15 -1398 (|#1| $))))
+((-2940 (((-308) (-1089) (-885 (-525))) 23)) (-3256 (((-308) (-1089) (-885 (-525))) 27)) (-3465 (((-308) (-1089) (-1011 (-885 (-525))) (-1011 (-885 (-525)))) 26) (((-308) (-1089) (-885 (-525)) (-885 (-525))) 24)) (-3547 (((-308) (-1089) (-885 (-525))) 31)))
+(((-310) (-10 -7 (-15 -2940 ((-308) (-1089) (-885 (-525)))) (-15 -3465 ((-308) (-1089) (-885 (-525)) (-885 (-525)))) (-15 -3465 ((-308) (-1089) (-1011 (-885 (-525))) (-1011 (-885 (-525))))) (-15 -3256 ((-308) (-1089) (-885 (-525)))) (-15 -3547 ((-308) (-1089) (-885 (-525)))))) (T -310))
+((-3547 (*1 *2 *3 *4) (-12 (-5 *3 (-1089)) (-5 *4 (-885 (-525))) (-5 *2 (-308)) (-5 *1 (-310)))) (-3256 (*1 *2 *3 *4) (-12 (-5 *3 (-1089)) (-5 *4 (-885 (-525))) (-5 *2 (-308)) (-5 *1 (-310)))) (-3465 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1089)) (-5 *4 (-1011 (-885 (-525)))) (-5 *2 (-308)) (-5 *1 (-310)))) (-3465 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1089)) (-5 *4 (-885 (-525))) (-5 *2 (-308)) (-5 *1 (-310)))) (-2940 (*1 *2 *3 *4) (-12 (-5 *3 (-1089)) (-5 *4 (-885 (-525))) (-5 *2 (-308)) (-5 *1 (-310)))))
+(-10 -7 (-15 -2940 ((-308) (-1089) (-885 (-525)))) (-15 -3465 ((-308) (-1089) (-885 (-525)) (-885 (-525)))) (-15 -3465 ((-308) (-1089) (-1011 (-885 (-525))) (-1011 (-885 (-525))))) (-15 -3256 ((-308) (-1089) (-885 (-525)))) (-15 -3547 ((-308) (-1089) (-885 (-525)))))
+((-1340 (((-314 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-314 |#1| |#2| |#3| |#4|)) 33)))
+(((-311 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1340 ((-314 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-314 |#1| |#2| |#3| |#4|)))) (-341) (-1147 |#1|) (-1147 (-385 |#2|)) (-320 |#1| |#2| |#3|) (-341) (-1147 |#5|) (-1147 (-385 |#6|)) (-320 |#5| |#6| |#7|)) (T -311))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-314 *5 *6 *7 *8)) (-4 *5 (-341)) (-4 *6 (-1147 *5)) (-4 *7 (-1147 (-385 *6))) (-4 *8 (-320 *5 *6 *7)) (-4 *9 (-341)) (-4 *10 (-1147 *9)) (-4 *11 (-1147 (-385 *10))) (-5 *2 (-314 *9 *10 *11 *12)) (-5 *1 (-311 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-320 *9 *10 *11)))))
+(-10 -7 (-15 -1340 ((-314 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-314 |#1| |#2| |#3| |#4|))))
+((-3406 (((-108) $) 14)))
+(((-312 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3406 ((-108) |#1|))) (-313 |#2| |#3| |#4| |#5|) (-341) (-1147 |#2|) (-1147 (-385 |#3|)) (-320 |#2| |#3| |#4|)) (T -312))
+NIL
+(-10 -8 (-15 -3406 ((-108) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-1227 (($ $) 26)) (-3406 (((-108) $) 25)) (-2339 (((-1072) $) 9)) (-1536 (((-391 |#2| (-385 |#2|) |#3| |#4|) $) 32)) (-2047 (((-1036) $) 10)) (-3857 (((-3 |#4| "failed") $) 24)) (-1705 (($ (-391 |#2| (-385 |#2|) |#3| |#4|)) 31) (($ |#4|) 30) (($ |#1| |#1|) 29) (($ |#1| |#1| (-525)) 28) (($ |#4| |#2| |#2| |#2| |#1|) 23)) (-3702 (((-2 (|:| -1247 (-391 |#2| (-385 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 27)) (-3022 (((-796) $) 11)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20)))
+(((-313 |#1| |#2| |#3| |#4|) (-131) (-341) (-1147 |t#1|) (-1147 (-385 |t#2|)) (-320 |t#1| |t#2| |t#3|)) (T -313))
+((-1536 (*1 *2 *1) (-12 (-4 *1 (-313 *3 *4 *5 *6)) (-4 *3 (-341)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-4 *6 (-320 *3 *4 *5)) (-5 *2 (-391 *4 (-385 *4) *5 *6)))) (-1705 (*1 *1 *2) (-12 (-5 *2 (-391 *4 (-385 *4) *5 *6)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-4 *6 (-320 *3 *4 *5)) (-4 *3 (-341)) (-4 *1 (-313 *3 *4 *5 *6)))) (-1705 (*1 *1 *2) (-12 (-4 *3 (-341)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-4 *1 (-313 *3 *4 *5 *2)) (-4 *2 (-320 *3 *4 *5)))) (-1705 (*1 *1 *2 *2) (-12 (-4 *2 (-341)) (-4 *3 (-1147 *2)) (-4 *4 (-1147 (-385 *3))) (-4 *1 (-313 *2 *3 *4 *5)) (-4 *5 (-320 *2 *3 *4)))) (-1705 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-525)) (-4 *2 (-341)) (-4 *4 (-1147 *2)) (-4 *5 (-1147 (-385 *4))) (-4 *1 (-313 *2 *4 *5 *6)) (-4 *6 (-320 *2 *4 *5)))) (-3702 (*1 *2 *1) (-12 (-4 *1 (-313 *3 *4 *5 *6)) (-4 *3 (-341)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-4 *6 (-320 *3 *4 *5)) (-5 *2 (-2 (|:| -1247 (-391 *4 (-385 *4) *5 *6)) (|:| |principalPart| *6))))) (-1227 (*1 *1 *1) (-12 (-4 *1 (-313 *2 *3 *4 *5)) (-4 *2 (-341)) (-4 *3 (-1147 *2)) (-4 *4 (-1147 (-385 *3))) (-4 *5 (-320 *2 *3 *4)))) (-3406 (*1 *2 *1) (-12 (-4 *1 (-313 *3 *4 *5 *6)) (-4 *3 (-341)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-4 *6 (-320 *3 *4 *5)) (-5 *2 (-108)))) (-3857 (*1 *2 *1) (|partial| -12 (-4 *1 (-313 *3 *4 *5 *2)) (-4 *3 (-341)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-4 *2 (-320 *3 *4 *5)))) (-1705 (*1 *1 *2 *3 *3 *3 *4) (-12 (-4 *4 (-341)) (-4 *3 (-1147 *4)) (-4 *5 (-1147 (-385 *3))) (-4 *1 (-313 *4 *3 *5 *2)) (-4 *2 (-320 *4 *3 *5)))))
+(-13 (-21) (-10 -8 (-15 -1536 ((-391 |t#2| (-385 |t#2|) |t#3| |t#4|) $)) (-15 -1705 ($ (-391 |t#2| (-385 |t#2|) |t#3| |t#4|))) (-15 -1705 ($ |t#4|)) (-15 -1705 ($ |t#1| |t#1|)) (-15 -1705 ($ |t#1| |t#1| (-525))) (-15 -3702 ((-2 (|:| -1247 (-391 |t#2| (-385 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -1227 ($ $)) (-15 -3406 ((-108) $)) (-15 -3857 ((-3 |t#4| "failed") $)) (-15 -1705 ($ |t#4| |t#2| |t#2| |t#2| |t#1|))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1227 (($ $) 33)) (-3406 (((-108) $) NIL)) (-2339 (((-1072) $) NIL)) (-3091 (((-1171 |#4|) $) 125)) (-1536 (((-391 |#2| (-385 |#2|) |#3| |#4|) $) 31)) (-2047 (((-1036) $) NIL)) (-3857 (((-3 |#4| "failed") $) 36)) (-1774 (((-1171 |#4|) $) 118)) (-1705 (($ (-391 |#2| (-385 |#2|) |#3| |#4|)) 41) (($ |#4|) 43) (($ |#1| |#1|) 45) (($ |#1| |#1| (-525)) 47) (($ |#4| |#2| |#2| |#2| |#1|) 49)) (-3702 (((-2 (|:| -1247 (-391 |#2| (-385 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 39)) (-3022 (((-796) $) 17)) (-4191 (($) 14 T CONST)) (-4096 (((-108) $ $) 20)) (-4164 (($ $) 27) (($ $ $) NIL)) (-4156 (($ $ $) 25)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 23)))
+(((-314 |#1| |#2| |#3| |#4|) (-13 (-313 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1774 ((-1171 |#4|) $)) (-15 -3091 ((-1171 |#4|) $)))) (-341) (-1147 |#1|) (-1147 (-385 |#2|)) (-320 |#1| |#2| |#3|)) (T -314))
+((-1774 (*1 *2 *1) (-12 (-4 *3 (-341)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-1171 *6)) (-5 *1 (-314 *3 *4 *5 *6)) (-4 *6 (-320 *3 *4 *5)))) (-3091 (*1 *2 *1) (-12 (-4 *3 (-341)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-1171 *6)) (-5 *1 (-314 *3 *4 *5 *6)) (-4 *6 (-320 *3 *4 *5)))))
+(-13 (-313 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1774 ((-1171 |#4|) $)) (-15 -3091 ((-1171 |#4|) $))))
+((-4132 (($ $ (-1089) |#2|) NIL) (($ $ (-591 (-1089)) (-591 |#2|)) 20) (($ $ (-591 (-273 |#2|))) 15) (($ $ (-273 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-591 |#2|) (-591 |#2|)) NIL)) (-3164 (($ $ |#2|) 11)))
+(((-315 |#1| |#2|) (-10 -8 (-15 -3164 (|#1| |#1| |#2|)) (-15 -4132 (|#1| |#1| (-591 |#2|) (-591 |#2|))) (-15 -4132 (|#1| |#1| |#2| |#2|)) (-15 -4132 (|#1| |#1| (-273 |#2|))) (-15 -4132 (|#1| |#1| (-591 (-273 |#2|)))) (-15 -4132 (|#1| |#1| (-591 (-1089)) (-591 |#2|))) (-15 -4132 (|#1| |#1| (-1089) |#2|))) (-316 |#2|) (-1018)) (T -315))
+NIL
+(-10 -8 (-15 -3164 (|#1| |#1| |#2|)) (-15 -4132 (|#1| |#1| (-591 |#2|) (-591 |#2|))) (-15 -4132 (|#1| |#1| |#2| |#2|)) (-15 -4132 (|#1| |#1| (-273 |#2|))) (-15 -4132 (|#1| |#1| (-591 (-273 |#2|)))) (-15 -4132 (|#1| |#1| (-591 (-1089)) (-591 |#2|))) (-15 -4132 (|#1| |#1| (-1089) |#2|)))
+((-1340 (($ (-1 |#1| |#1|) $) 6)) (-4132 (($ $ (-1089) |#1|) 17 (|has| |#1| (-486 (-1089) |#1|))) (($ $ (-591 (-1089)) (-591 |#1|)) 16 (|has| |#1| (-486 (-1089) |#1|))) (($ $ (-591 (-273 |#1|))) 15 (|has| |#1| (-288 |#1|))) (($ $ (-273 |#1|)) 14 (|has| |#1| (-288 |#1|))) (($ $ |#1| |#1|) 13 (|has| |#1| (-288 |#1|))) (($ $ (-591 |#1|) (-591 |#1|)) 12 (|has| |#1| (-288 |#1|)))) (-3164 (($ $ |#1|) 11 (|has| |#1| (-265 |#1| |#1|)))))
+(((-316 |#1|) (-131) (-1018)) (T -316))
+((-1340 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-316 *3)) (-4 *3 (-1018)))))
+(-13 (-10 -8 (-15 -1340 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-265 |t#1| |t#1|)) (-6 (-265 |t#1| $)) |%noBranch|) (IF (|has| |t#1| (-288 |t#1|)) (-6 (-288 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-486 (-1089) |t#1|)) (-6 (-486 (-1089) |t#1|)) |%noBranch|)))
+(((-265 |#1| $) |has| |#1| (-265 |#1| |#1|)) ((-288 |#1|) |has| |#1| (-288 |#1|)) ((-486 (-1089) |#1|) |has| |#1| (-486 (-1089) |#1|)) ((-486 |#1| |#1|) |has| |#1| (-288 |#1|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1507 (((-591 (-1089)) $) NIL)) (-3511 (((-108)) 89) (((-108) (-108)) 90)) (-3374 (((-591 (-564 $)) $) NIL)) (-1987 (($ $) NIL)) (-3169 (($ $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3825 (($ $ (-273 $)) NIL) (($ $ (-591 (-273 $))) NIL) (($ $ (-591 (-564 $)) (-591 $)) NIL)) (-1361 (($ $) NIL)) (-1431 (($ $) NIL)) (-3144 (($ $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-564 $) "failed") $) NIL) (((-3 |#3| "failed") $) NIL) (((-3 $ "failed") (-294 |#3|)) 71) (((-3 $ "failed") (-1089)) 95) (((-3 $ "failed") (-294 (-525))) 59 (|has| |#3| (-966 (-525)))) (((-3 $ "failed") (-385 (-885 (-525)))) 65 (|has| |#3| (-966 (-525)))) (((-3 $ "failed") (-885 (-525))) 60 (|has| |#3| (-966 (-525)))) (((-3 $ "failed") (-294 (-357))) 77 (|has| |#3| (-966 (-357)))) (((-3 $ "failed") (-385 (-885 (-357)))) 83 (|has| |#3| (-966 (-357)))) (((-3 $ "failed") (-885 (-357))) 78 (|has| |#3| (-966 (-357))))) (-3528 (((-564 $) $) NIL) ((|#3| $) NIL) (($ (-294 |#3|)) 72) (($ (-1089)) 96) (($ (-294 (-525))) 61 (|has| |#3| (-966 (-525)))) (($ (-385 (-885 (-525)))) 66 (|has| |#3| (-966 (-525)))) (($ (-885 (-525))) 62 (|has| |#3| (-966 (-525)))) (($ (-294 (-357))) 79 (|has| |#3| (-966 (-357)))) (($ (-385 (-885 (-357)))) 84 (|has| |#3| (-966 (-357)))) (($ (-885 (-357))) 80 (|has| |#3| (-966 (-357))))) (-4163 (((-3 $ "failed") $) NIL)) (-1784 (($) 10)) (-1668 (($ $) NIL) (($ (-591 $)) NIL)) (-2194 (((-591 (-110)) $) NIL)) (-3219 (((-110) (-110)) NIL)) (-2824 (((-108) $) NIL)) (-2419 (((-108) $) NIL (|has| $ (-966 (-525))))) (-2695 (((-1085 $) (-564 $)) NIL (|has| $ (-975)))) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-1340 (($ (-1 $ $) (-564 $)) NIL)) (-1405 (((-3 (-564 $) "failed") $) NIL)) (-2897 (($ $) 92)) (-1488 (($ $) NIL)) (-2339 (((-1072) $) NIL)) (-1298 (((-591 (-564 $)) $) NIL)) (-1843 (($ (-110) $) 91) (($ (-110) (-591 $)) NIL)) (-1709 (((-108) $ (-110)) NIL) (((-108) $ (-1089)) NIL)) (-2965 (((-712) $) NIL)) (-2047 (((-1036) $) NIL)) (-1988 (((-108) $ $) NIL) (((-108) $ (-1089)) NIL)) (-1409 (($ $) NIL)) (-3451 (((-108) $) NIL (|has| $ (-966 (-525))))) (-4132 (($ $ (-564 $) $) NIL) (($ $ (-591 (-564 $)) (-591 $)) NIL) (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-591 (-1089)) (-591 (-1 $ $))) NIL) (($ $ (-591 (-1089)) (-591 (-1 $ (-591 $)))) NIL) (($ $ (-1089) (-1 $ (-591 $))) NIL) (($ $ (-1089) (-1 $ $)) NIL) (($ $ (-591 (-110)) (-591 (-1 $ $))) NIL) (($ $ (-591 (-110)) (-591 (-1 $ (-591 $)))) NIL) (($ $ (-110) (-1 $ (-591 $))) NIL) (($ $ (-110) (-1 $ $)) NIL)) (-3164 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-591 $)) NIL)) (-1484 (($ $) NIL) (($ $ $) NIL)) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089)) NIL)) (-1478 (($ $) NIL (|has| $ (-975)))) (-1973 (($ $) NIL)) (-3156 (($ $) NIL)) (-3022 (((-796) $) NIL) (($ (-564 $)) NIL) (($ |#3|) NIL) (($ (-525)) NIL) (((-294 |#3|) $) 94)) (-2128 (((-712)) NIL)) (-2989 (($ $) NIL) (($ (-591 $)) NIL)) (-2661 (((-108) (-110)) NIL)) (-1371 (($ $) NIL)) (-1346 (($ $) NIL)) (-1358 (($ $) NIL)) (-1539 (($ $) NIL)) (-3710 (($ $ (-712)) NIL) (($ $ (-854)) NIL)) (-4191 (($) 93 T CONST)) (-4197 (($) 24 T CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089)) NIL)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) NIL)) (-4164 (($ $ $) NIL) (($ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-712)) NIL) (($ $ (-854)) NIL)) (* (($ |#3| $) NIL) (($ $ |#3|) NIL) (($ $ $) NIL) (($ (-525) $) NIL) (($ (-712) $) NIL) (($ (-854) $) NIL)))
+(((-317 |#1| |#2| |#3|) (-13 (-281) (-37 |#3|) (-966 |#3|) (-833 (-1089)) (-10 -8 (-15 -3528 ($ (-294 |#3|))) (-15 -1251 ((-3 $ "failed") (-294 |#3|))) (-15 -3528 ($ (-1089))) (-15 -1251 ((-3 $ "failed") (-1089))) (-15 -3022 ((-294 |#3|) $)) (IF (|has| |#3| (-966 (-525))) (PROGN (-15 -3528 ($ (-294 (-525)))) (-15 -1251 ((-3 $ "failed") (-294 (-525)))) (-15 -3528 ($ (-385 (-885 (-525))))) (-15 -1251 ((-3 $ "failed") (-385 (-885 (-525))))) (-15 -3528 ($ (-885 (-525)))) (-15 -1251 ((-3 $ "failed") (-885 (-525))))) |%noBranch|) (IF (|has| |#3| (-966 (-357))) (PROGN (-15 -3528 ($ (-294 (-357)))) (-15 -1251 ((-3 $ "failed") (-294 (-357)))) (-15 -3528 ($ (-385 (-885 (-357))))) (-15 -1251 ((-3 $ "failed") (-385 (-885 (-357))))) (-15 -3528 ($ (-885 (-357)))) (-15 -1251 ((-3 $ "failed") (-885 (-357))))) |%noBranch|) (-15 -1539 ($ $)) (-15 -1361 ($ $)) (-15 -1409 ($ $)) (-15 -1488 ($ $)) (-15 -2897 ($ $)) (-15 -3144 ($ $)) (-15 -3156 ($ $)) (-15 -3169 ($ $)) (-15 -1346 ($ $)) (-15 -1358 ($ $)) (-15 -1371 ($ $)) (-15 -1431 ($ $)) (-15 -1973 ($ $)) (-15 -1987 ($ $)) (-15 -1784 ($)) (-15 -1507 ((-591 (-1089)) $)) (-15 -3511 ((-108))) (-15 -3511 ((-108) (-108))))) (-591 (-1089)) (-591 (-1089)) (-365)) (T -317))
+((-3528 (*1 *1 *2) (-12 (-5 *2 (-294 *5)) (-4 *5 (-365)) (-5 *1 (-317 *3 *4 *5)) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-294 *5)) (-4 *5 (-365)) (-5 *1 (-317 *3 *4 *5)) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-317 *3 *4 *5)) (-14 *3 (-591 *2)) (-14 *4 (-591 *2)) (-4 *5 (-365)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-1089)) (-5 *1 (-317 *3 *4 *5)) (-14 *3 (-591 *2)) (-14 *4 (-591 *2)) (-4 *5 (-365)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-294 *5)) (-5 *1 (-317 *3 *4 *5)) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-294 (-525))) (-5 *1 (-317 *3 *4 *5)) (-4 *5 (-966 (-525))) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-294 (-525))) (-5 *1 (-317 *3 *4 *5)) (-4 *5 (-966 (-525))) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-385 (-885 (-525)))) (-5 *1 (-317 *3 *4 *5)) (-4 *5 (-966 (-525))) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-385 (-885 (-525)))) (-5 *1 (-317 *3 *4 *5)) (-4 *5 (-966 (-525))) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-885 (-525))) (-5 *1 (-317 *3 *4 *5)) (-4 *5 (-966 (-525))) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-885 (-525))) (-5 *1 (-317 *3 *4 *5)) (-4 *5 (-966 (-525))) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-294 (-357))) (-5 *1 (-317 *3 *4 *5)) (-4 *5 (-966 (-357))) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-294 (-357))) (-5 *1 (-317 *3 *4 *5)) (-4 *5 (-966 (-357))) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-385 (-885 (-357)))) (-5 *1 (-317 *3 *4 *5)) (-4 *5 (-966 (-357))) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-385 (-885 (-357)))) (-5 *1 (-317 *3 *4 *5)) (-4 *5 (-966 (-357))) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-885 (-357))) (-5 *1 (-317 *3 *4 *5)) (-4 *5 (-966 (-357))) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-885 (-357))) (-5 *1 (-317 *3 *4 *5)) (-4 *5 (-966 (-357))) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365)))) (-1539 (*1 *1 *1) (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089))) (-14 *3 (-591 (-1089))) (-4 *4 (-365)))) (-1361 (*1 *1 *1) (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089))) (-14 *3 (-591 (-1089))) (-4 *4 (-365)))) (-1409 (*1 *1 *1) (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089))) (-14 *3 (-591 (-1089))) (-4 *4 (-365)))) (-1488 (*1 *1 *1) (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089))) (-14 *3 (-591 (-1089))) (-4 *4 (-365)))) (-2897 (*1 *1 *1) (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089))) (-14 *3 (-591 (-1089))) (-4 *4 (-365)))) (-3144 (*1 *1 *1) (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089))) (-14 *3 (-591 (-1089))) (-4 *4 (-365)))) (-3156 (*1 *1 *1) (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089))) (-14 *3 (-591 (-1089))) (-4 *4 (-365)))) (-3169 (*1 *1 *1) (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089))) (-14 *3 (-591 (-1089))) (-4 *4 (-365)))) (-1346 (*1 *1 *1) (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089))) (-14 *3 (-591 (-1089))) (-4 *4 (-365)))) (-1358 (*1 *1 *1) (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089))) (-14 *3 (-591 (-1089))) (-4 *4 (-365)))) (-1371 (*1 *1 *1) (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089))) (-14 *3 (-591 (-1089))) (-4 *4 (-365)))) (-1431 (*1 *1 *1) (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089))) (-14 *3 (-591 (-1089))) (-4 *4 (-365)))) (-1973 (*1 *1 *1) (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089))) (-14 *3 (-591 (-1089))) (-4 *4 (-365)))) (-1987 (*1 *1 *1) (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089))) (-14 *3 (-591 (-1089))) (-4 *4 (-365)))) (-1784 (*1 *1) (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089))) (-14 *3 (-591 (-1089))) (-4 *4 (-365)))) (-1507 (*1 *2 *1) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-317 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-365)))) (-3511 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-317 *3 *4 *5)) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365)))) (-3511 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-317 *3 *4 *5)) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365)))))
+(-13 (-281) (-37 |#3|) (-966 |#3|) (-833 (-1089)) (-10 -8 (-15 -3528 ($ (-294 |#3|))) (-15 -1251 ((-3 $ "failed") (-294 |#3|))) (-15 -3528 ($ (-1089))) (-15 -1251 ((-3 $ "failed") (-1089))) (-15 -3022 ((-294 |#3|) $)) (IF (|has| |#3| (-966 (-525))) (PROGN (-15 -3528 ($ (-294 (-525)))) (-15 -1251 ((-3 $ "failed") (-294 (-525)))) (-15 -3528 ($ (-385 (-885 (-525))))) (-15 -1251 ((-3 $ "failed") (-385 (-885 (-525))))) (-15 -3528 ($ (-885 (-525)))) (-15 -1251 ((-3 $ "failed") (-885 (-525))))) |%noBranch|) (IF (|has| |#3| (-966 (-357))) (PROGN (-15 -3528 ($ (-294 (-357)))) (-15 -1251 ((-3 $ "failed") (-294 (-357)))) (-15 -3528 ($ (-385 (-885 (-357))))) (-15 -1251 ((-3 $ "failed") (-385 (-885 (-357))))) (-15 -3528 ($ (-885 (-357)))) (-15 -1251 ((-3 $ "failed") (-885 (-357))))) |%noBranch|) (-15 -1539 ($ $)) (-15 -1361 ($ $)) (-15 -1409 ($ $)) (-15 -1488 ($ $)) (-15 -2897 ($ $)) (-15 -3144 ($ $)) (-15 -3156 ($ $)) (-15 -3169 ($ $)) (-15 -1346 ($ $)) (-15 -1358 ($ $)) (-15 -1371 ($ $)) (-15 -1431 ($ $)) (-15 -1973 ($ $)) (-15 -1987 ($ $)) (-15 -1784 ($)) (-15 -1507 ((-591 (-1089)) $)) (-15 -3511 ((-108))) (-15 -3511 ((-108) (-108)))))
+((-1340 ((|#8| (-1 |#5| |#1|) |#4|) 19)))
+(((-318 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1340 (|#8| (-1 |#5| |#1|) |#4|))) (-1129) (-1147 |#1|) (-1147 (-385 |#2|)) (-320 |#1| |#2| |#3|) (-1129) (-1147 |#5|) (-1147 (-385 |#6|)) (-320 |#5| |#6| |#7|)) (T -318))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1129)) (-4 *8 (-1129)) (-4 *6 (-1147 *5)) (-4 *7 (-1147 (-385 *6))) (-4 *9 (-1147 *8)) (-4 *2 (-320 *8 *9 *10)) (-5 *1 (-318 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-320 *5 *6 *7)) (-4 *10 (-1147 (-385 *9))))))
+(-10 -7 (-15 -1340 (|#8| (-1 |#5| |#1|) |#4|)))
+((-3816 (((-2 (|:| |num| (-1171 |#3|)) (|:| |den| |#3|)) $) 38)) (-4171 (($ (-1171 (-385 |#3|)) (-1171 $)) NIL) (($ (-1171 (-385 |#3|))) NIL) (($ (-1171 |#3|) |#3|) 161)) (-1598 (((-1171 $) (-1171 $)) 145)) (-1205 (((-591 (-591 |#2|))) 119)) (-1565 (((-108) |#2| |#2|) 73)) (-3208 (($ $) 139)) (-1739 (((-712)) 31)) (-2101 (((-1171 $) (-1171 $)) 198)) (-1957 (((-591 (-885 |#2|)) (-1089)) 110)) (-2200 (((-108) $) 158)) (-3053 (((-108) $) 25) (((-108) $ |#2|) 29) (((-108) $ |#3|) 202)) (-2506 (((-3 |#3| "failed")) 50)) (-1892 (((-712)) 170)) (-3164 ((|#2| $ |#2| |#2|) 132)) (-3787 (((-3 |#3| "failed")) 68)) (-3266 (($ $ (-1 (-385 |#3|) (-385 |#3|)) (-712)) NIL) (($ $ (-1 (-385 |#3|) (-385 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 206) (($ $ (-591 (-1089)) (-591 (-712))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089)) NIL) (($ $ (-712)) NIL) (($ $) NIL)) (-4065 (((-1171 $) (-1171 $)) 151)) (-4206 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 66)) (-3886 (((-108)) 33)))
+(((-319 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -1205 ((-591 (-591 |#2|)))) (-15 -1957 ((-591 (-885 |#2|)) (-1089))) (-15 -4206 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -2506 ((-3 |#3| "failed"))) (-15 -3787 ((-3 |#3| "failed"))) (-15 -3164 (|#2| |#1| |#2| |#2|)) (-15 -3208 (|#1| |#1|)) (-15 -4171 (|#1| (-1171 |#3|) |#3|)) (-15 -3266 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3053 ((-108) |#1| |#3|)) (-15 -3053 ((-108) |#1| |#2|)) (-15 -3816 ((-2 (|:| |num| (-1171 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -1598 ((-1171 |#1|) (-1171 |#1|))) (-15 -2101 ((-1171 |#1|) (-1171 |#1|))) (-15 -4065 ((-1171 |#1|) (-1171 |#1|))) (-15 -3053 ((-108) |#1|)) (-15 -2200 ((-108) |#1|)) (-15 -1565 ((-108) |#2| |#2|)) (-15 -3886 ((-108))) (-15 -1892 ((-712))) (-15 -1739 ((-712))) (-15 -3266 (|#1| |#1| (-1 (-385 |#3|) (-385 |#3|)))) (-15 -3266 (|#1| |#1| (-1 (-385 |#3|) (-385 |#3|)) (-712))) (-15 -4171 (|#1| (-1171 (-385 |#3|)))) (-15 -4171 (|#1| (-1171 (-385 |#3|)) (-1171 |#1|)))) (-320 |#2| |#3| |#4|) (-1129) (-1147 |#2|) (-1147 (-385 |#3|))) (T -319))
+((-1739 (*1 *2) (-12 (-4 *4 (-1129)) (-4 *5 (-1147 *4)) (-4 *6 (-1147 (-385 *5))) (-5 *2 (-712)) (-5 *1 (-319 *3 *4 *5 *6)) (-4 *3 (-320 *4 *5 *6)))) (-1892 (*1 *2) (-12 (-4 *4 (-1129)) (-4 *5 (-1147 *4)) (-4 *6 (-1147 (-385 *5))) (-5 *2 (-712)) (-5 *1 (-319 *3 *4 *5 *6)) (-4 *3 (-320 *4 *5 *6)))) (-3886 (*1 *2) (-12 (-4 *4 (-1129)) (-4 *5 (-1147 *4)) (-4 *6 (-1147 (-385 *5))) (-5 *2 (-108)) (-5 *1 (-319 *3 *4 *5 *6)) (-4 *3 (-320 *4 *5 *6)))) (-1565 (*1 *2 *3 *3) (-12 (-4 *3 (-1129)) (-4 *5 (-1147 *3)) (-4 *6 (-1147 (-385 *5))) (-5 *2 (-108)) (-5 *1 (-319 *4 *3 *5 *6)) (-4 *4 (-320 *3 *5 *6)))) (-3787 (*1 *2) (|partial| -12 (-4 *4 (-1129)) (-4 *5 (-1147 (-385 *2))) (-4 *2 (-1147 *4)) (-5 *1 (-319 *3 *4 *2 *5)) (-4 *3 (-320 *4 *2 *5)))) (-2506 (*1 *2) (|partial| -12 (-4 *4 (-1129)) (-4 *5 (-1147 (-385 *2))) (-4 *2 (-1147 *4)) (-5 *1 (-319 *3 *4 *2 *5)) (-4 *3 (-320 *4 *2 *5)))) (-1957 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-4 *5 (-1129)) (-4 *6 (-1147 *5)) (-4 *7 (-1147 (-385 *6))) (-5 *2 (-591 (-885 *5))) (-5 *1 (-319 *4 *5 *6 *7)) (-4 *4 (-320 *5 *6 *7)))) (-1205 (*1 *2) (-12 (-4 *4 (-1129)) (-4 *5 (-1147 *4)) (-4 *6 (-1147 (-385 *5))) (-5 *2 (-591 (-591 *4))) (-5 *1 (-319 *3 *4 *5 *6)) (-4 *3 (-320 *4 *5 *6)))))
+(-10 -8 (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -1205 ((-591 (-591 |#2|)))) (-15 -1957 ((-591 (-885 |#2|)) (-1089))) (-15 -4206 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -2506 ((-3 |#3| "failed"))) (-15 -3787 ((-3 |#3| "failed"))) (-15 -3164 (|#2| |#1| |#2| |#2|)) (-15 -3208 (|#1| |#1|)) (-15 -4171 (|#1| (-1171 |#3|) |#3|)) (-15 -3266 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3053 ((-108) |#1| |#3|)) (-15 -3053 ((-108) |#1| |#2|)) (-15 -3816 ((-2 (|:| |num| (-1171 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -1598 ((-1171 |#1|) (-1171 |#1|))) (-15 -2101 ((-1171 |#1|) (-1171 |#1|))) (-15 -4065 ((-1171 |#1|) (-1171 |#1|))) (-15 -3053 ((-108) |#1|)) (-15 -2200 ((-108) |#1|)) (-15 -1565 ((-108) |#2| |#2|)) (-15 -3886 ((-108))) (-15 -1892 ((-712))) (-15 -1739 ((-712))) (-15 -3266 (|#1| |#1| (-1 (-385 |#3|) (-385 |#3|)))) (-15 -3266 (|#1| |#1| (-1 (-385 |#3|) (-385 |#3|)) (-712))) (-15 -4171 (|#1| (-1171 (-385 |#3|)))) (-15 -4171 (|#1| (-1171 (-385 |#3|)) (-1171 |#1|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3816 (((-2 (|:| |num| (-1171 |#2|)) (|:| |den| |#2|)) $) 196)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 93 (|has| (-385 |#2|) (-341)))) (-3706 (($ $) 94 (|has| (-385 |#2|) (-341)))) (-1715 (((-108) $) 96 (|has| (-385 |#2|) (-341)))) (-2796 (((-631 (-385 |#2|)) (-1171 $)) 46) (((-631 (-385 |#2|))) 61)) (-2569 (((-385 |#2|) $) 52)) (-3734 (((-1099 (-854) (-712)) (-525)) 147 (|has| (-385 |#2|) (-327)))) (-2157 (((-3 $ "failed") $ $) 19)) (-1291 (($ $) 113 (|has| (-385 |#2|) (-341)))) (-2827 (((-396 $) $) 114 (|has| (-385 |#2|) (-341)))) (-1947 (((-108) $ $) 104 (|has| (-385 |#2|) (-341)))) (-3032 (((-712)) 87 (|has| (-385 |#2|) (-346)))) (-1819 (((-108)) 213)) (-4081 (((-108) |#1|) 212) (((-108) |#2|) 211)) (-3798 (($) 17 T CONST)) (-1251 (((-3 (-525) "failed") $) 169 (|has| (-385 |#2|) (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) 167 (|has| (-385 |#2|) (-966 (-385 (-525))))) (((-3 (-385 |#2|) "failed") $) 166)) (-3528 (((-525) $) 170 (|has| (-385 |#2|) (-966 (-525)))) (((-385 (-525)) $) 168 (|has| (-385 |#2|) (-966 (-385 (-525))))) (((-385 |#2|) $) 165)) (-4171 (($ (-1171 (-385 |#2|)) (-1171 $)) 48) (($ (-1171 (-385 |#2|))) 64) (($ (-1171 |#2|) |#2|) 189)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) 153 (|has| (-385 |#2|) (-327)))) (-2129 (($ $ $) 108 (|has| (-385 |#2|) (-341)))) (-3922 (((-631 (-385 |#2|)) $ (-1171 $)) 53) (((-631 (-385 |#2|)) $) 59)) (-3305 (((-631 (-525)) (-631 $)) 164 (|has| (-385 |#2|) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 163 (|has| (-385 |#2|) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-385 |#2|))) (|:| |vec| (-1171 (-385 |#2|)))) (-631 $) (-1171 $)) 162) (((-631 (-385 |#2|)) (-631 $)) 161)) (-1598 (((-1171 $) (-1171 $)) 201)) (-1227 (($ |#3|) 158) (((-3 $ "failed") (-385 |#3|)) 155 (|has| (-385 |#2|) (-341)))) (-4163 (((-3 $ "failed") $) 34)) (-1205 (((-591 (-591 |#1|))) 182 (|has| |#1| (-346)))) (-1565 (((-108) |#1| |#1|) 217)) (-4073 (((-854)) 54)) (-3377 (($) 90 (|has| (-385 |#2|) (-346)))) (-3390 (((-108)) 210)) (-2764 (((-108) |#1|) 209) (((-108) |#2|) 208)) (-2110 (($ $ $) 107 (|has| (-385 |#2|) (-341)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 102 (|has| (-385 |#2|) (-341)))) (-3208 (($ $) 188)) (-3944 (($) 149 (|has| (-385 |#2|) (-327)))) (-4104 (((-108) $) 150 (|has| (-385 |#2|) (-327)))) (-2299 (($ $ (-712)) 141 (|has| (-385 |#2|) (-327))) (($ $) 140 (|has| (-385 |#2|) (-327)))) (-2744 (((-108) $) 115 (|has| (-385 |#2|) (-341)))) (-3873 (((-854) $) 152 (|has| (-385 |#2|) (-327))) (((-774 (-854)) $) 138 (|has| (-385 |#2|) (-327)))) (-2824 (((-108) $) 31)) (-1739 (((-712)) 220)) (-2101 (((-1171 $) (-1171 $)) 202)) (-2771 (((-385 |#2|) $) 51)) (-1957 (((-591 (-885 |#1|)) (-1089)) 183 (|has| |#1| (-341)))) (-2085 (((-3 $ "failed") $) 142 (|has| (-385 |#2|) (-327)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 111 (|has| (-385 |#2|) (-341)))) (-1382 ((|#3| $) 44 (|has| (-385 |#2|) (-341)))) (-3016 (((-854) $) 89 (|has| (-385 |#2|) (-346)))) (-1223 ((|#3| $) 156)) (-1356 (($ (-591 $)) 100 (|has| (-385 |#2|) (-341))) (($ $ $) 99 (|has| (-385 |#2|) (-341)))) (-2339 (((-1072) $) 9)) (-3112 (((-631 (-385 |#2|))) 197)) (-1890 (((-631 (-385 |#2|))) 199)) (-1622 (($ $) 116 (|has| (-385 |#2|) (-341)))) (-3988 (($ (-1171 |#2|) |#2|) 194)) (-3202 (((-631 (-385 |#2|))) 198)) (-1891 (((-631 (-385 |#2|))) 200)) (-3870 (((-2 (|:| |num| (-631 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 193)) (-1351 (((-2 (|:| |num| (-1171 |#2|)) (|:| |den| |#2|)) $) 195)) (-3026 (((-1171 $)) 206)) (-3441 (((-1171 $)) 207)) (-2200 (((-108) $) 205)) (-3053 (((-108) $) 204) (((-108) $ |#1|) 192) (((-108) $ |#2|) 191)) (-3506 (($) 143 (|has| (-385 |#2|) (-327)) CONST)) (-2226 (($ (-854)) 88 (|has| (-385 |#2|) (-346)))) (-2506 (((-3 |#2| "failed")) 185)) (-2047 (((-1036) $) 10)) (-1892 (((-712)) 219)) (-3857 (($) 160)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 101 (|has| (-385 |#2|) (-341)))) (-1399 (($ (-591 $)) 98 (|has| (-385 |#2|) (-341))) (($ $ $) 97 (|has| (-385 |#2|) (-341)))) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) 146 (|has| (-385 |#2|) (-327)))) (-1348 (((-396 $) $) 112 (|has| (-385 |#2|) (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| (-385 |#2|) (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 109 (|has| (-385 |#2|) (-341)))) (-2089 (((-3 $ "failed") $ $) 92 (|has| (-385 |#2|) (-341)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 103 (|has| (-385 |#2|) (-341)))) (-1712 (((-712) $) 105 (|has| (-385 |#2|) (-341)))) (-3164 ((|#1| $ |#1| |#1|) 187)) (-3787 (((-3 |#2| "failed")) 186)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 106 (|has| (-385 |#2|) (-341)))) (-2976 (((-385 |#2|) (-1171 $)) 47) (((-385 |#2|)) 60)) (-2953 (((-712) $) 151 (|has| (-385 |#2|) (-327))) (((-3 (-712) "failed") $ $) 139 (|has| (-385 |#2|) (-327)))) (-3266 (($ $ (-1 (-385 |#2|) (-385 |#2|)) (-712)) 123 (|has| (-385 |#2|) (-341))) (($ $ (-1 (-385 |#2|) (-385 |#2|))) 122 (|has| (-385 |#2|) (-341))) (($ $ (-1 |#2| |#2|)) 190) (($ $ (-591 (-1089)) (-591 (-712))) 130 (-3321 (-1213 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089)))) (-1213 (|has| (-385 |#2|) (-833 (-1089))) (|has| (-385 |#2|) (-341))))) (($ $ (-1089) (-712)) 131 (-3321 (-1213 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089)))) (-1213 (|has| (-385 |#2|) (-833 (-1089))) (|has| (-385 |#2|) (-341))))) (($ $ (-591 (-1089))) 132 (-3321 (-1213 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089)))) (-1213 (|has| (-385 |#2|) (-833 (-1089))) (|has| (-385 |#2|) (-341))))) (($ $ (-1089)) 133 (-3321 (-1213 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089)))) (-1213 (|has| (-385 |#2|) (-833 (-1089))) (|has| (-385 |#2|) (-341))))) (($ $ (-712)) 135 (-3321 (-1213 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-213))) (-1213 (|has| (-385 |#2|) (-213)) (|has| (-385 |#2|) (-341))) (|has| (-385 |#2|) (-327)))) (($ $) 137 (-3321 (-1213 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-213))) (-1213 (|has| (-385 |#2|) (-213)) (|has| (-385 |#2|) (-341))) (|has| (-385 |#2|) (-327))))) (-1244 (((-631 (-385 |#2|)) (-1171 $) (-1 (-385 |#2|) (-385 |#2|))) 154 (|has| (-385 |#2|) (-341)))) (-1478 ((|#3|) 159)) (-2616 (($) 148 (|has| (-385 |#2|) (-327)))) (-3572 (((-1171 (-385 |#2|)) $ (-1171 $)) 50) (((-631 (-385 |#2|)) (-1171 $) (-1171 $)) 49) (((-1171 (-385 |#2|)) $) 66) (((-631 (-385 |#2|)) (-1171 $)) 65)) (-1408 (((-1171 (-385 |#2|)) $) 63) (($ (-1171 (-385 |#2|))) 62) ((|#3| $) 171) (($ |#3|) 157)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) 145 (|has| (-385 |#2|) (-327)))) (-4065 (((-1171 $) (-1171 $)) 203)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ (-385 |#2|)) 37) (($ (-385 (-525))) 86 (-3321 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-966 (-385 (-525)))))) (($ $) 91 (|has| (-385 |#2|) (-341)))) (-1437 (($ $) 144 (|has| (-385 |#2|) (-327))) (((-3 $ "failed") $) 43 (|has| (-385 |#2|) (-136)))) (-3806 ((|#3| $) 45)) (-2128 (((-712)) 29)) (-3841 (((-108)) 216)) (-1466 (((-108) |#1|) 215) (((-108) |#2|) 214)) (-4003 (((-1171 $)) 67)) (-2495 (((-108) $ $) 95 (|has| (-385 |#2|) (-341)))) (-4206 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 184)) (-3886 (((-108)) 218)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 117 (|has| (-385 |#2|) (-341)))) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ (-1 (-385 |#2|) (-385 |#2|)) (-712)) 125 (|has| (-385 |#2|) (-341))) (($ $ (-1 (-385 |#2|) (-385 |#2|))) 124 (|has| (-385 |#2|) (-341))) (($ $ (-591 (-1089)) (-591 (-712))) 126 (-3321 (-1213 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089)))) (-1213 (|has| (-385 |#2|) (-833 (-1089))) (|has| (-385 |#2|) (-341))))) (($ $ (-1089) (-712)) 127 (-3321 (-1213 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089)))) (-1213 (|has| (-385 |#2|) (-833 (-1089))) (|has| (-385 |#2|) (-341))))) (($ $ (-591 (-1089))) 128 (-3321 (-1213 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089)))) (-1213 (|has| (-385 |#2|) (-833 (-1089))) (|has| (-385 |#2|) (-341))))) (($ $ (-1089)) 129 (-3321 (-1213 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089)))) (-1213 (|has| (-385 |#2|) (-833 (-1089))) (|has| (-385 |#2|) (-341))))) (($ $ (-712)) 134 (-3321 (-1213 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-213))) (-1213 (|has| (-385 |#2|) (-213)) (|has| (-385 |#2|) (-341))) (|has| (-385 |#2|) (-327)))) (($ $) 136 (-3321 (-1213 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-213))) (-1213 (|has| (-385 |#2|) (-213)) (|has| (-385 |#2|) (-341))) (|has| (-385 |#2|) (-327))))) (-4096 (((-108) $ $) 6)) (-4173 (($ $ $) 121 (|has| (-385 |#2|) (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 118 (|has| (-385 |#2|) (-341)))) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 |#2|)) 39) (($ (-385 |#2|) $) 38) (($ (-385 (-525)) $) 120 (|has| (-385 |#2|) (-341))) (($ $ (-385 (-525))) 119 (|has| (-385 |#2|) (-341)))))
+(((-320 |#1| |#2| |#3|) (-131) (-1129) (-1147 |t#1|) (-1147 (-385 |t#2|))) (T -320))
+((-1739 (*1 *2) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-712)))) (-1892 (*1 *2) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-712)))) (-3886 (*1 *2) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))) (-1565 (*1 *2 *3 *3) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))) (-3841 (*1 *2) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))) (-1466 (*1 *2 *3) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))) (-1466 (*1 *2 *3) (-12 (-4 *1 (-320 *4 *3 *5)) (-4 *4 (-1129)) (-4 *3 (-1147 *4)) (-4 *5 (-1147 (-385 *3))) (-5 *2 (-108)))) (-1819 (*1 *2) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))) (-4081 (*1 *2 *3) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))) (-4081 (*1 *2 *3) (-12 (-4 *1 (-320 *4 *3 *5)) (-4 *4 (-1129)) (-4 *3 (-1147 *4)) (-4 *5 (-1147 (-385 *3))) (-5 *2 (-108)))) (-3390 (*1 *2) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))) (-2764 (*1 *2 *3) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))) (-2764 (*1 *2 *3) (-12 (-4 *1 (-320 *4 *3 *5)) (-4 *4 (-1129)) (-4 *3 (-1147 *4)) (-4 *5 (-1147 (-385 *3))) (-5 *2 (-108)))) (-3441 (*1 *2) (-12 (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-1171 *1)) (-4 *1 (-320 *3 *4 *5)))) (-3026 (*1 *2) (-12 (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-1171 *1)) (-4 *1 (-320 *3 *4 *5)))) (-2200 (*1 *2 *1) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))) (-3053 (*1 *2 *1) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))) (-4065 (*1 *2 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))))) (-2101 (*1 *2 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))))) (-1598 (*1 *2 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))))) (-1891 (*1 *2) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-631 (-385 *4))))) (-1890 (*1 *2) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-631 (-385 *4))))) (-3202 (*1 *2) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-631 (-385 *4))))) (-3112 (*1 *2) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-631 (-385 *4))))) (-3816 (*1 *2 *1) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-2 (|:| |num| (-1171 *4)) (|:| |den| *4))))) (-1351 (*1 *2 *1) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-2 (|:| |num| (-1171 *4)) (|:| |den| *4))))) (-3988 (*1 *1 *2 *3) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-1147 *4)) (-4 *4 (-1129)) (-4 *1 (-320 *4 *3 *5)) (-4 *5 (-1147 (-385 *3))))) (-3870 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-320 *4 *5 *6)) (-4 *4 (-1129)) (-4 *5 (-1147 *4)) (-4 *6 (-1147 (-385 *5))) (-5 *2 (-2 (|:| |num| (-631 *5)) (|:| |den| *5))))) (-3053 (*1 *2 *1 *3) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))) (-3053 (*1 *2 *1 *3) (-12 (-4 *1 (-320 *4 *3 *5)) (-4 *4 (-1129)) (-4 *3 (-1147 *4)) (-4 *5 (-1147 (-385 *3))) (-5 *2 (-108)))) (-3266 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))))) (-4171 (*1 *1 *2 *3) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-1147 *4)) (-4 *4 (-1129)) (-4 *1 (-320 *4 *3 *5)) (-4 *5 (-1147 (-385 *3))))) (-3208 (*1 *1 *1) (-12 (-4 *1 (-320 *2 *3 *4)) (-4 *2 (-1129)) (-4 *3 (-1147 *2)) (-4 *4 (-1147 (-385 *3))))) (-3164 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-320 *2 *3 *4)) (-4 *2 (-1129)) (-4 *3 (-1147 *2)) (-4 *4 (-1147 (-385 *3))))) (-3787 (*1 *2) (|partial| -12 (-4 *1 (-320 *3 *2 *4)) (-4 *3 (-1129)) (-4 *4 (-1147 (-385 *2))) (-4 *2 (-1147 *3)))) (-2506 (*1 *2) (|partial| -12 (-4 *1 (-320 *3 *2 *4)) (-4 *3 (-1129)) (-4 *4 (-1147 (-385 *2))) (-4 *2 (-1147 *3)))) (-4206 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1147 *4)) (-4 *4 (-1129)) (-4 *6 (-1147 (-385 *5))) (-5 *2 (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5) (|:| |gd| *5))) (-4 *1 (-320 *4 *5 *6)))) (-1957 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-4 *1 (-320 *4 *5 *6)) (-4 *4 (-1129)) (-4 *5 (-1147 *4)) (-4 *6 (-1147 (-385 *5))) (-4 *4 (-341)) (-5 *2 (-591 (-885 *4))))) (-1205 (*1 *2) (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))) (-4 *3 (-346)) (-5 *2 (-591 (-591 *3))))))
+(-13 (-666 (-385 |t#2|) |t#3|) (-10 -8 (-15 -1739 ((-712))) (-15 -1892 ((-712))) (-15 -3886 ((-108))) (-15 -1565 ((-108) |t#1| |t#1|)) (-15 -3841 ((-108))) (-15 -1466 ((-108) |t#1|)) (-15 -1466 ((-108) |t#2|)) (-15 -1819 ((-108))) (-15 -4081 ((-108) |t#1|)) (-15 -4081 ((-108) |t#2|)) (-15 -3390 ((-108))) (-15 -2764 ((-108) |t#1|)) (-15 -2764 ((-108) |t#2|)) (-15 -3441 ((-1171 $))) (-15 -3026 ((-1171 $))) (-15 -2200 ((-108) $)) (-15 -3053 ((-108) $)) (-15 -4065 ((-1171 $) (-1171 $))) (-15 -2101 ((-1171 $) (-1171 $))) (-15 -1598 ((-1171 $) (-1171 $))) (-15 -1891 ((-631 (-385 |t#2|)))) (-15 -1890 ((-631 (-385 |t#2|)))) (-15 -3202 ((-631 (-385 |t#2|)))) (-15 -3112 ((-631 (-385 |t#2|)))) (-15 -3816 ((-2 (|:| |num| (-1171 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -4171 ($ (-1171 |t#2|) |t#2|)) (-15 -1351 ((-2 (|:| |num| (-1171 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -3988 ($ (-1171 |t#2|) |t#2|)) (-15 -3870 ((-2 (|:| |num| (-631 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -3053 ((-108) $ |t#1|)) (-15 -3053 ((-108) $ |t#2|)) (-15 -3266 ($ $ (-1 |t#2| |t#2|))) (-15 -4171 ($ (-1171 |t#2|) |t#2|)) (-15 -3208 ($ $)) (-15 -3164 (|t#1| $ |t#1| |t#1|)) (-15 -3787 ((-3 |t#2| "failed"))) (-15 -2506 ((-3 |t#2| "failed"))) (-15 -4206 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-341)) (-15 -1957 ((-591 (-885 |t#1|)) (-1089))) |%noBranch|) (IF (|has| |t#1| (-346)) (-15 -1205 ((-591 (-591 |t#1|)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-341))) ((-37 #1=(-385 |#2|)) . T) ((-37 $) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-341))) ((-97) . T) ((-107 #0# #0#) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-341))) ((-107 #1# #1#) . T) ((-107 $ $) . T) ((-126) . T) ((-136) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-136))) ((-138) |has| (-385 |#2|) (-138)) ((-565 (-796)) . T) ((-160) . T) ((-566 |#3|) . T) ((-211 #1#) |has| (-385 |#2|) (-341)) ((-213) -3321 (|has| (-385 |#2|) (-327)) (-12 (|has| (-385 |#2|) (-213)) (|has| (-385 |#2|) (-341)))) ((-223) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-341))) ((-269) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-341))) ((-286) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-341))) ((-341) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-341))) ((-380) |has| (-385 |#2|) (-327)) ((-346) -3321 (|has| (-385 |#2|) (-346)) (|has| (-385 |#2|) (-327))) ((-327) |has| (-385 |#2|) (-327)) ((-348 #1# |#3|) . T) ((-387 #1# |#3|) . T) ((-355 #1#) . T) ((-389 #1#) . T) ((-429) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-341))) ((-517) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-341))) ((-593 #0#) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-341))) ((-593 #1#) . T) ((-593 $) . T) ((-587 #1#) . T) ((-587 (-525)) |has| (-385 |#2|) (-587 (-525))) ((-659 #0#) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-341))) ((-659 #1#) . T) ((-659 $) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-341))) ((-666 #1# |#3|) . T) ((-668) . T) ((-833 (-1089)) -12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089)))) ((-853) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-341))) ((-966 (-385 (-525))) |has| (-385 |#2|) (-966 (-385 (-525)))) ((-966 #1#) . T) ((-966 (-525)) |has| (-385 |#2|) (-966 (-525))) ((-981 #0#) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-341))) ((-981 #1#) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1065) |has| (-385 |#2|) (-327)) ((-1129) -3321 (|has| (-385 |#2|) (-327)) (|has| (-385 |#2|) (-341))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2144 (((-108) $) NIL)) (-2834 (((-712)) NIL)) (-2569 (((-843 |#1|) $) NIL) (($ $ (-854)) NIL (|has| (-843 |#1|) (-346)))) (-3734 (((-1099 (-854) (-712)) (-525)) NIL (|has| (-843 |#1|) (-346)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3032 (((-712)) NIL (|has| (-843 |#1|) (-346)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-843 |#1|) "failed") $) NIL)) (-3528 (((-843 |#1|) $) NIL)) (-4171 (($ (-1171 (-843 |#1|))) NIL)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-843 |#1|) (-346)))) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) NIL (|has| (-843 |#1|) (-346)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-3944 (($) NIL (|has| (-843 |#1|) (-346)))) (-4104 (((-108) $) NIL (|has| (-843 |#1|) (-346)))) (-2299 (($ $ (-712)) NIL (-3321 (|has| (-843 |#1|) (-136)) (|has| (-843 |#1|) (-346)))) (($ $) NIL (-3321 (|has| (-843 |#1|) (-136)) (|has| (-843 |#1|) (-346))))) (-2744 (((-108) $) NIL)) (-3873 (((-854) $) NIL (|has| (-843 |#1|) (-346))) (((-774 (-854)) $) NIL (-3321 (|has| (-843 |#1|) (-136)) (|has| (-843 |#1|) (-346))))) (-2824 (((-108) $) NIL)) (-4046 (($) NIL (|has| (-843 |#1|) (-346)))) (-1751 (((-108) $) NIL (|has| (-843 |#1|) (-346)))) (-2771 (((-843 |#1|) $) NIL) (($ $ (-854)) NIL (|has| (-843 |#1|) (-346)))) (-2085 (((-3 $ "failed") $) NIL (|has| (-843 |#1|) (-346)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1382 (((-1085 (-843 |#1|)) $) NIL) (((-1085 $) $ (-854)) NIL (|has| (-843 |#1|) (-346)))) (-3016 (((-854) $) NIL (|has| (-843 |#1|) (-346)))) (-1924 (((-1085 (-843 |#1|)) $) NIL (|has| (-843 |#1|) (-346)))) (-3040 (((-1085 (-843 |#1|)) $) NIL (|has| (-843 |#1|) (-346))) (((-3 (-1085 (-843 |#1|)) "failed") $ $) NIL (|has| (-843 |#1|) (-346)))) (-2054 (($ $ (-1085 (-843 |#1|))) NIL (|has| (-843 |#1|) (-346)))) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| (-843 |#1|) (-346)) CONST)) (-2226 (($ (-854)) NIL (|has| (-843 |#1|) (-346)))) (-1476 (((-108) $) NIL)) (-2047 (((-1036) $) NIL)) (-3847 (((-890 (-1036))) NIL)) (-3857 (($) NIL (|has| (-843 |#1|) (-346)))) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) NIL (|has| (-843 |#1|) (-346)))) (-1348 (((-396 $) $) NIL)) (-2163 (((-774 (-854))) NIL) (((-854)) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2953 (((-712) $) NIL (|has| (-843 |#1|) (-346))) (((-3 (-712) "failed") $ $) NIL (-3321 (|has| (-843 |#1|) (-136)) (|has| (-843 |#1|) (-346))))) (-4224 (((-128)) NIL)) (-3266 (($ $) NIL (|has| (-843 |#1|) (-346))) (($ $ (-712)) NIL (|has| (-843 |#1|) (-346)))) (-1316 (((-774 (-854)) $) NIL) (((-854) $) NIL)) (-1478 (((-1085 (-843 |#1|))) NIL)) (-2616 (($) NIL (|has| (-843 |#1|) (-346)))) (-1608 (($) NIL (|has| (-843 |#1|) (-346)))) (-3572 (((-1171 (-843 |#1|)) $) NIL) (((-631 (-843 |#1|)) (-1171 $)) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (|has| (-843 |#1|) (-346)))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) (($ (-843 |#1|)) NIL)) (-1437 (($ $) NIL (|has| (-843 |#1|) (-346))) (((-3 $ "failed") $) NIL (-3321 (|has| (-843 |#1|) (-136)) (|has| (-843 |#1|) (-346))))) (-2128 (((-712)) NIL)) (-4003 (((-1171 $)) NIL) (((-1171 $) (-854)) NIL)) (-2495 (((-108) $ $) NIL)) (-1884 (((-108) $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4227 (($ $) NIL (|has| (-843 |#1|) (-346))) (($ $ (-712)) NIL (|has| (-843 |#1|) (-346)))) (-4196 (($ $) NIL (|has| (-843 |#1|) (-346))) (($ $ (-712)) NIL (|has| (-843 |#1|) (-346)))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL) (($ $ (-843 |#1|)) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ $ (-843 |#1|)) NIL) (($ (-843 |#1|) $) NIL)))
+(((-321 |#1| |#2|) (-13 (-307 (-843 |#1|)) (-10 -7 (-15 -3847 ((-890 (-1036)))))) (-854) (-854)) (T -321))
+((-3847 (*1 *2) (-12 (-5 *2 (-890 (-1036))) (-5 *1 (-321 *3 *4)) (-14 *3 (-854)) (-14 *4 (-854)))))
+(-13 (-307 (-843 |#1|)) (-10 -7 (-15 -3847 ((-890 (-1036))))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 46)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2144 (((-108) $) NIL)) (-2834 (((-712)) NIL)) (-2569 ((|#1| $) NIL) (($ $ (-854)) NIL (|has| |#1| (-346)))) (-3734 (((-1099 (-854) (-712)) (-525)) 43 (|has| |#1| (-346)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3032 (((-712)) NIL (|has| |#1| (-346)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) 115)) (-3528 ((|#1| $) 86)) (-4171 (($ (-1171 |#1|)) 104)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) 95 (|has| |#1| (-346)))) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) 98 (|has| |#1| (-346)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-3944 (($) 130 (|has| |#1| (-346)))) (-4104 (((-108) $) 49 (|has| |#1| (-346)))) (-2299 (($ $ (-712)) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))) (($ $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2744 (((-108) $) NIL)) (-3873 (((-854) $) 47 (|has| |#1| (-346))) (((-774 (-854)) $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2824 (((-108) $) NIL)) (-4046 (($) 132 (|has| |#1| (-346)))) (-1751 (((-108) $) NIL (|has| |#1| (-346)))) (-2771 ((|#1| $) NIL) (($ $ (-854)) NIL (|has| |#1| (-346)))) (-2085 (((-3 $ "failed") $) NIL (|has| |#1| (-346)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1382 (((-1085 |#1|) $) 90) (((-1085 $) $ (-854)) NIL (|has| |#1| (-346)))) (-3016 (((-854) $) 140 (|has| |#1| (-346)))) (-1924 (((-1085 |#1|) $) NIL (|has| |#1| (-346)))) (-3040 (((-1085 |#1|) $) NIL (|has| |#1| (-346))) (((-3 (-1085 |#1|) "failed") $ $) NIL (|has| |#1| (-346)))) (-2054 (($ $ (-1085 |#1|)) NIL (|has| |#1| (-346)))) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 147)) (-3506 (($) NIL (|has| |#1| (-346)) CONST)) (-2226 (($ (-854)) 71 (|has| |#1| (-346)))) (-1476 (((-108) $) 118)) (-2047 (((-1036) $) NIL)) (-3847 (((-890 (-1036))) 44)) (-3857 (($) 128 (|has| |#1| (-346)))) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) 93 (|has| |#1| (-346)))) (-1348 (((-396 $) $) NIL)) (-2163 (((-774 (-854))) 67) (((-854)) 68)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2953 (((-712) $) 131 (|has| |#1| (-346))) (((-3 (-712) "failed") $ $) 125 (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-4224 (((-128)) NIL)) (-3266 (($ $) NIL (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-1316 (((-774 (-854)) $) NIL) (((-854) $) NIL)) (-1478 (((-1085 |#1|)) 96)) (-2616 (($) 129 (|has| |#1| (-346)))) (-1608 (($) 137 (|has| |#1| (-346)))) (-3572 (((-1171 |#1|) $) 59) (((-631 |#1|) (-1171 $)) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (|has| |#1| (-346)))) (-3022 (((-796) $) 143) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) (($ |#1|) 75)) (-1437 (($ $) NIL (|has| |#1| (-346))) (((-3 $ "failed") $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2128 (((-712)) 139)) (-4003 (((-1171 $)) 117) (((-1171 $) (-854)) 73)) (-2495 (((-108) $ $) NIL)) (-1884 (((-108) $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) 32 T CONST)) (-4197 (($) 19 T CONST)) (-4227 (($ $) 81 (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-4196 (($ $) NIL (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-4096 (((-108) $ $) 48)) (-4173 (($ $ $) 145) (($ $ |#1|) 146)) (-4164 (($ $) 127) (($ $ $) NIL)) (-4156 (($ $ $) 61)) (** (($ $ (-854)) 149) (($ $ (-712)) 150) (($ $ (-525)) 148)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 77) (($ $ $) 76) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 144)))
+(((-322 |#1| |#2|) (-13 (-307 |#1|) (-10 -7 (-15 -3847 ((-890 (-1036)))))) (-327) (-1085 |#1|)) (T -322))
+((-3847 (*1 *2) (-12 (-5 *2 (-890 (-1036))) (-5 *1 (-322 *3 *4)) (-4 *3 (-327)) (-14 *4 (-1085 *3)))))
+(-13 (-307 |#1|) (-10 -7 (-15 -3847 ((-890 (-1036))))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2144 (((-108) $) NIL)) (-2834 (((-712)) NIL)) (-2569 ((|#1| $) NIL) (($ $ (-854)) NIL (|has| |#1| (-346)))) (-3734 (((-1099 (-854) (-712)) (-525)) NIL (|has| |#1| (-346)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3032 (((-712)) NIL (|has| |#1| (-346)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL)) (-3528 ((|#1| $) NIL)) (-4171 (($ (-1171 |#1|)) NIL)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-346)))) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) NIL (|has| |#1| (-346)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-3944 (($) NIL (|has| |#1| (-346)))) (-4104 (((-108) $) NIL (|has| |#1| (-346)))) (-2299 (($ $ (-712)) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))) (($ $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2744 (((-108) $) NIL)) (-3873 (((-854) $) NIL (|has| |#1| (-346))) (((-774 (-854)) $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2824 (((-108) $) NIL)) (-4046 (($) NIL (|has| |#1| (-346)))) (-1751 (((-108) $) NIL (|has| |#1| (-346)))) (-2771 ((|#1| $) NIL) (($ $ (-854)) NIL (|has| |#1| (-346)))) (-2085 (((-3 $ "failed") $) NIL (|has| |#1| (-346)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1382 (((-1085 |#1|) $) NIL) (((-1085 $) $ (-854)) NIL (|has| |#1| (-346)))) (-3016 (((-854) $) NIL (|has| |#1| (-346)))) (-1924 (((-1085 |#1|) $) NIL (|has| |#1| (-346)))) (-3040 (((-1085 |#1|) $) NIL (|has| |#1| (-346))) (((-3 (-1085 |#1|) "failed") $ $) NIL (|has| |#1| (-346)))) (-2054 (($ $ (-1085 |#1|)) NIL (|has| |#1| (-346)))) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| |#1| (-346)) CONST)) (-2226 (($ (-854)) NIL (|has| |#1| (-346)))) (-1476 (((-108) $) NIL)) (-2047 (((-1036) $) NIL)) (-3847 (((-890 (-1036))) NIL)) (-3857 (($) NIL (|has| |#1| (-346)))) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) NIL (|has| |#1| (-346)))) (-1348 (((-396 $) $) NIL)) (-2163 (((-774 (-854))) NIL) (((-854)) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2953 (((-712) $) NIL (|has| |#1| (-346))) (((-3 (-712) "failed") $ $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-4224 (((-128)) NIL)) (-3266 (($ $) NIL (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-1316 (((-774 (-854)) $) NIL) (((-854) $) NIL)) (-1478 (((-1085 |#1|)) NIL)) (-2616 (($) NIL (|has| |#1| (-346)))) (-1608 (($) NIL (|has| |#1| (-346)))) (-3572 (((-1171 |#1|) $) NIL) (((-631 |#1|) (-1171 $)) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (|has| |#1| (-346)))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) (($ |#1|) NIL)) (-1437 (($ $) NIL (|has| |#1| (-346))) (((-3 $ "failed") $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2128 (((-712)) NIL)) (-4003 (((-1171 $)) NIL) (((-1171 $) (-854)) NIL)) (-2495 (((-108) $ $) NIL)) (-1884 (((-108) $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4227 (($ $) NIL (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-4196 (($ $) NIL (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL) (($ $ |#1|) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-323 |#1| |#2|) (-13 (-307 |#1|) (-10 -7 (-15 -3847 ((-890 (-1036)))))) (-327) (-854)) (T -323))
+((-3847 (*1 *2) (-12 (-5 *2 (-890 (-1036))) (-5 *1 (-323 *3 *4)) (-4 *3 (-327)) (-14 *4 (-854)))))
+(-13 (-307 |#1|) (-10 -7 (-15 -3847 ((-890 (-1036))))))
+((-3715 (((-712) (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036)))))) 42)) (-2012 (((-890 (-1036)) (-1085 |#1|)) 85)) (-2445 (((-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))) (-1085 |#1|)) 78)) (-3445 (((-631 |#1|) (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036)))))) 86)) (-2177 (((-3 (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))) "failed") (-854)) 13)) (-4012 (((-3 (-1085 |#1|) (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036)))))) (-854)) 18)))
+(((-324 |#1|) (-10 -7 (-15 -2012 ((-890 (-1036)) (-1085 |#1|))) (-15 -2445 ((-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))) (-1085 |#1|))) (-15 -3445 ((-631 |#1|) (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))))) (-15 -3715 ((-712) (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))))) (-15 -2177 ((-3 (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))) "failed") (-854))) (-15 -4012 ((-3 (-1085 |#1|) (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036)))))) (-854)))) (-327)) (T -324))
+((-4012 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-3 (-1085 *4) (-1171 (-591 (-2 (|:| -3024 *4) (|:| -2226 (-1036))))))) (-5 *1 (-324 *4)) (-4 *4 (-327)))) (-2177 (*1 *2 *3) (|partial| -12 (-5 *3 (-854)) (-5 *2 (-1171 (-591 (-2 (|:| -3024 *4) (|:| -2226 (-1036)))))) (-5 *1 (-324 *4)) (-4 *4 (-327)))) (-3715 (*1 *2 *3) (-12 (-5 *3 (-1171 (-591 (-2 (|:| -3024 *4) (|:| -2226 (-1036)))))) (-4 *4 (-327)) (-5 *2 (-712)) (-5 *1 (-324 *4)))) (-3445 (*1 *2 *3) (-12 (-5 *3 (-1171 (-591 (-2 (|:| -3024 *4) (|:| -2226 (-1036)))))) (-4 *4 (-327)) (-5 *2 (-631 *4)) (-5 *1 (-324 *4)))) (-2445 (*1 *2 *3) (-12 (-5 *3 (-1085 *4)) (-4 *4 (-327)) (-5 *2 (-1171 (-591 (-2 (|:| -3024 *4) (|:| -2226 (-1036)))))) (-5 *1 (-324 *4)))) (-2012 (*1 *2 *3) (-12 (-5 *3 (-1085 *4)) (-4 *4 (-327)) (-5 *2 (-890 (-1036))) (-5 *1 (-324 *4)))))
+(-10 -7 (-15 -2012 ((-890 (-1036)) (-1085 |#1|))) (-15 -2445 ((-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))) (-1085 |#1|))) (-15 -3445 ((-631 |#1|) (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))))) (-15 -3715 ((-712) (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))))) (-15 -2177 ((-3 (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))) "failed") (-854))) (-15 -4012 ((-3 (-1085 |#1|) (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036)))))) (-854))))
+((-3022 ((|#1| |#3|) 86) ((|#3| |#1|) 69)))
+(((-325 |#1| |#2| |#3|) (-10 -7 (-15 -3022 (|#3| |#1|)) (-15 -3022 (|#1| |#3|))) (-307 |#2|) (-327) (-307 |#2|)) (T -325))
+((-3022 (*1 *2 *3) (-12 (-4 *4 (-327)) (-4 *2 (-307 *4)) (-5 *1 (-325 *2 *4 *3)) (-4 *3 (-307 *4)))) (-3022 (*1 *2 *3) (-12 (-4 *4 (-327)) (-4 *2 (-307 *4)) (-5 *1 (-325 *3 *4 *2)) (-4 *3 (-307 *4)))))
+(-10 -7 (-15 -3022 (|#3| |#1|)) (-15 -3022 (|#1| |#3|)))
+((-4104 (((-108) $) 52)) (-3873 (((-774 (-854)) $) 21) (((-854) $) 53)) (-2085 (((-3 $ "failed") $) 16)) (-3506 (($) 9)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 94)) (-2953 (((-3 (-712) "failed") $ $) 72) (((-712) $) 61)) (-3266 (($ $ (-712)) NIL) (($ $) 8)) (-2616 (($) 46)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) 34)) (-1437 (((-3 $ "failed") $) 40) (($ $) 39)))
+(((-326 |#1|) (-10 -8 (-15 -3873 ((-854) |#1|)) (-15 -2953 ((-712) |#1|)) (-15 -4104 ((-108) |#1|)) (-15 -2616 (|#1|)) (-15 -2265 ((-3 (-1171 |#1|) "failed") (-631 |#1|))) (-15 -1437 (|#1| |#1|)) (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -3506 (|#1|)) (-15 -2085 ((-3 |#1| "failed") |#1|)) (-15 -2953 ((-3 (-712) "failed") |#1| |#1|)) (-15 -3873 ((-774 (-854)) |#1|)) (-15 -1437 ((-3 |#1| "failed") |#1|)) (-15 -2526 ((-1085 |#1|) (-1085 |#1|) (-1085 |#1|)))) (-327)) (T -326))
+NIL
+(-10 -8 (-15 -3873 ((-854) |#1|)) (-15 -2953 ((-712) |#1|)) (-15 -4104 ((-108) |#1|)) (-15 -2616 (|#1|)) (-15 -2265 ((-3 (-1171 |#1|) "failed") (-631 |#1|))) (-15 -1437 (|#1| |#1|)) (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -3506 (|#1|)) (-15 -2085 ((-3 |#1| "failed") |#1|)) (-15 -2953 ((-3 (-712) "failed") |#1| |#1|)) (-15 -3873 ((-774 (-854)) |#1|)) (-15 -1437 ((-3 |#1| "failed") |#1|)) (-15 -2526 ((-1085 |#1|) (-1085 |#1|) (-1085 |#1|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-3734 (((-1099 (-854) (-712)) (-525)) 93)) (-2157 (((-3 $ "failed") $ $) 19)) (-1291 (($ $) 73)) (-2827 (((-396 $) $) 72)) (-1947 (((-108) $ $) 59)) (-3032 (((-712)) 103)) (-3798 (($) 17 T CONST)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) 87)) (-2129 (($ $ $) 55)) (-4163 (((-3 $ "failed") $) 34)) (-3377 (($) 106)) (-2110 (($ $ $) 56)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 51)) (-3944 (($) 91)) (-4104 (((-108) $) 90)) (-2299 (($ $) 79) (($ $ (-712)) 78)) (-2744 (((-108) $) 71)) (-3873 (((-774 (-854)) $) 81) (((-854) $) 88)) (-2824 (((-108) $) 31)) (-2085 (((-3 $ "failed") $) 102)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 52)) (-3016 (((-854) $) 105)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-1622 (($ $) 70)) (-3506 (($) 101 T CONST)) (-2226 (($ (-854)) 104)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) 94)) (-1348 (((-396 $) $) 74)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2089 (((-3 $ "failed") $ $) 42)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 50)) (-1712 (((-712) $) 58)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 57)) (-2953 (((-3 (-712) "failed") $ $) 80) (((-712) $) 89)) (-3266 (($ $ (-712)) 99) (($ $) 97)) (-2616 (($) 92)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) 95)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43) (($ (-385 (-525))) 65)) (-1437 (((-3 $ "failed") $) 82) (($ $) 96)) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 39)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 69)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ (-712)) 100) (($ $) 98)) (-4096 (((-108) $ $) 6)) (-4173 (($ $ $) 64)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 68)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 (-525))) 67) (($ (-385 (-525)) $) 66)))
+(((-327) (-131)) (T -327))
+((-1437 (*1 *1 *1) (-4 *1 (-327))) (-2265 (*1 *2 *3) (|partial| -12 (-5 *3 (-631 *1)) (-4 *1 (-327)) (-5 *2 (-1171 *1)))) (-2846 (*1 *2) (-12 (-4 *1 (-327)) (-5 *2 (-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))))) (-3734 (*1 *2 *3) (-12 (-4 *1 (-327)) (-5 *3 (-525)) (-5 *2 (-1099 (-854) (-712))))) (-2616 (*1 *1) (-4 *1 (-327))) (-3944 (*1 *1) (-4 *1 (-327))) (-4104 (*1 *2 *1) (-12 (-4 *1 (-327)) (-5 *2 (-108)))) (-2953 (*1 *2 *1) (-12 (-4 *1 (-327)) (-5 *2 (-712)))) (-3873 (*1 *2 *1) (-12 (-4 *1 (-327)) (-5 *2 (-854)))) (-2625 (*1 *2) (-12 (-4 *1 (-327)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+(-13 (-380) (-346) (-1065) (-213) (-10 -8 (-15 -1437 ($ $)) (-15 -2265 ((-3 (-1171 $) "failed") (-631 $))) (-15 -2846 ((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525)))))) (-15 -3734 ((-1099 (-854) (-712)) (-525))) (-15 -2616 ($)) (-15 -3944 ($)) (-15 -4104 ((-108) $)) (-15 -2953 ((-712) $)) (-15 -3873 ((-854) $)) (-15 -2625 ((-3 "prime" "polynomial" "normal" "cyclic")))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-126) . T) ((-136) . T) ((-565 (-796)) . T) ((-160) . T) ((-213) . T) ((-223) . T) ((-269) . T) ((-286) . T) ((-341) . T) ((-380) . T) ((-346) . T) ((-429) . T) ((-517) . T) ((-593 #0#) . T) ((-593 $) . T) ((-659 #0#) . T) ((-659 $) . T) ((-668) . T) ((-853) . T) ((-981 #0#) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1065) . T) ((-1129) . T))
+((-1426 (((-2 (|:| -4003 (-631 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-631 |#1|))) |#1|) 53)) (-3441 (((-2 (|:| -4003 (-631 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-631 |#1|)))) 51)))
+(((-328 |#1| |#2| |#3|) (-10 -7 (-15 -3441 ((-2 (|:| -4003 (-631 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-631 |#1|))))) (-15 -1426 ((-2 (|:| -4003 (-631 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-631 |#1|))) |#1|))) (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $)))) (-1147 |#1|) (-387 |#1| |#2|)) (T -328))
+((-1426 (*1 *2 *3) (-12 (-4 *3 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $))))) (-4 *4 (-1147 *3)) (-5 *2 (-2 (|:| -4003 (-631 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-631 *3)))) (-5 *1 (-328 *3 *4 *5)) (-4 *5 (-387 *3 *4)))) (-3441 (*1 *2) (-12 (-4 *3 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $))))) (-4 *4 (-1147 *3)) (-5 *2 (-2 (|:| -4003 (-631 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-631 *3)))) (-5 *1 (-328 *3 *4 *5)) (-4 *5 (-387 *3 *4)))))
+(-10 -7 (-15 -3441 ((-2 (|:| -4003 (-631 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-631 |#1|))))) (-15 -1426 ((-2 (|:| -4003 (-631 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-631 |#1|))) |#1|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2144 (((-108) $) NIL)) (-2834 (((-712)) NIL)) (-2569 (((-843 |#1|) $) NIL) (($ $ (-854)) NIL (|has| (-843 |#1|) (-346)))) (-3734 (((-1099 (-854) (-712)) (-525)) NIL (|has| (-843 |#1|) (-346)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-3715 (((-712)) NIL)) (-1947 (((-108) $ $) NIL)) (-3032 (((-712)) NIL (|has| (-843 |#1|) (-346)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-843 |#1|) "failed") $) NIL)) (-3528 (((-843 |#1|) $) NIL)) (-4171 (($ (-1171 (-843 |#1|))) NIL)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-843 |#1|) (-346)))) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) NIL (|has| (-843 |#1|) (-346)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-3944 (($) NIL (|has| (-843 |#1|) (-346)))) (-4104 (((-108) $) NIL (|has| (-843 |#1|) (-346)))) (-2299 (($ $ (-712)) NIL (-3321 (|has| (-843 |#1|) (-136)) (|has| (-843 |#1|) (-346)))) (($ $) NIL (-3321 (|has| (-843 |#1|) (-136)) (|has| (-843 |#1|) (-346))))) (-2744 (((-108) $) NIL)) (-3873 (((-854) $) NIL (|has| (-843 |#1|) (-346))) (((-774 (-854)) $) NIL (-3321 (|has| (-843 |#1|) (-136)) (|has| (-843 |#1|) (-346))))) (-2824 (((-108) $) NIL)) (-4046 (($) NIL (|has| (-843 |#1|) (-346)))) (-1751 (((-108) $) NIL (|has| (-843 |#1|) (-346)))) (-2771 (((-843 |#1|) $) NIL) (($ $ (-854)) NIL (|has| (-843 |#1|) (-346)))) (-2085 (((-3 $ "failed") $) NIL (|has| (-843 |#1|) (-346)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1382 (((-1085 (-843 |#1|)) $) NIL) (((-1085 $) $ (-854)) NIL (|has| (-843 |#1|) (-346)))) (-3016 (((-854) $) NIL (|has| (-843 |#1|) (-346)))) (-1924 (((-1085 (-843 |#1|)) $) NIL (|has| (-843 |#1|) (-346)))) (-3040 (((-1085 (-843 |#1|)) $) NIL (|has| (-843 |#1|) (-346))) (((-3 (-1085 (-843 |#1|)) "failed") $ $) NIL (|has| (-843 |#1|) (-346)))) (-2054 (($ $ (-1085 (-843 |#1|))) NIL (|has| (-843 |#1|) (-346)))) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| (-843 |#1|) (-346)) CONST)) (-2226 (($ (-854)) NIL (|has| (-843 |#1|) (-346)))) (-1476 (((-108) $) NIL)) (-2047 (((-1036) $) NIL)) (-1792 (((-1171 (-591 (-2 (|:| -3024 (-843 |#1|)) (|:| -2226 (-1036)))))) NIL)) (-2626 (((-631 (-843 |#1|))) NIL)) (-3857 (($) NIL (|has| (-843 |#1|) (-346)))) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) NIL (|has| (-843 |#1|) (-346)))) (-1348 (((-396 $) $) NIL)) (-2163 (((-774 (-854))) NIL) (((-854)) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2953 (((-712) $) NIL (|has| (-843 |#1|) (-346))) (((-3 (-712) "failed") $ $) NIL (-3321 (|has| (-843 |#1|) (-136)) (|has| (-843 |#1|) (-346))))) (-4224 (((-128)) NIL)) (-3266 (($ $) NIL (|has| (-843 |#1|) (-346))) (($ $ (-712)) NIL (|has| (-843 |#1|) (-346)))) (-1316 (((-774 (-854)) $) NIL) (((-854) $) NIL)) (-1478 (((-1085 (-843 |#1|))) NIL)) (-2616 (($) NIL (|has| (-843 |#1|) (-346)))) (-1608 (($) NIL (|has| (-843 |#1|) (-346)))) (-3572 (((-1171 (-843 |#1|)) $) NIL) (((-631 (-843 |#1|)) (-1171 $)) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (|has| (-843 |#1|) (-346)))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) (($ (-843 |#1|)) NIL)) (-1437 (($ $) NIL (|has| (-843 |#1|) (-346))) (((-3 $ "failed") $) NIL (-3321 (|has| (-843 |#1|) (-136)) (|has| (-843 |#1|) (-346))))) (-2128 (((-712)) NIL)) (-4003 (((-1171 $)) NIL) (((-1171 $) (-854)) NIL)) (-2495 (((-108) $ $) NIL)) (-1884 (((-108) $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4227 (($ $) NIL (|has| (-843 |#1|) (-346))) (($ $ (-712)) NIL (|has| (-843 |#1|) (-346)))) (-4196 (($ $) NIL (|has| (-843 |#1|) (-346))) (($ $ (-712)) NIL (|has| (-843 |#1|) (-346)))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL) (($ $ (-843 |#1|)) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ $ (-843 |#1|)) NIL) (($ (-843 |#1|) $) NIL)))
+(((-329 |#1| |#2|) (-13 (-307 (-843 |#1|)) (-10 -7 (-15 -1792 ((-1171 (-591 (-2 (|:| -3024 (-843 |#1|)) (|:| -2226 (-1036))))))) (-15 -2626 ((-631 (-843 |#1|)))) (-15 -3715 ((-712))))) (-854) (-854)) (T -329))
+((-1792 (*1 *2) (-12 (-5 *2 (-1171 (-591 (-2 (|:| -3024 (-843 *3)) (|:| -2226 (-1036)))))) (-5 *1 (-329 *3 *4)) (-14 *3 (-854)) (-14 *4 (-854)))) (-2626 (*1 *2) (-12 (-5 *2 (-631 (-843 *3))) (-5 *1 (-329 *3 *4)) (-14 *3 (-854)) (-14 *4 (-854)))) (-3715 (*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-329 *3 *4)) (-14 *3 (-854)) (-14 *4 (-854)))))
+(-13 (-307 (-843 |#1|)) (-10 -7 (-15 -1792 ((-1171 (-591 (-2 (|:| -3024 (-843 |#1|)) (|:| -2226 (-1036))))))) (-15 -2626 ((-631 (-843 |#1|)))) (-15 -3715 ((-712)))))
+((-3008 (((-108) $ $) 62)) (-1800 (((-108) $) 75)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2144 (((-108) $) NIL)) (-2834 (((-712)) NIL)) (-2569 ((|#1| $) 93) (($ $ (-854)) 91 (|has| |#1| (-346)))) (-3734 (((-1099 (-854) (-712)) (-525)) 149 (|has| |#1| (-346)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-3715 (((-712)) 90)) (-1947 (((-108) $ $) NIL)) (-3032 (((-712)) 163 (|has| |#1| (-346)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) 113)) (-3528 ((|#1| $) 92)) (-4171 (($ (-1171 |#1|)) 59)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) 189 (|has| |#1| (-346)))) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) 159 (|has| |#1| (-346)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-3944 (($) 150 (|has| |#1| (-346)))) (-4104 (((-108) $) NIL (|has| |#1| (-346)))) (-2299 (($ $ (-712)) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))) (($ $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2744 (((-108) $) NIL)) (-3873 (((-854) $) NIL (|has| |#1| (-346))) (((-774 (-854)) $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2824 (((-108) $) NIL)) (-4046 (($) 99 (|has| |#1| (-346)))) (-1751 (((-108) $) 176 (|has| |#1| (-346)))) (-2771 ((|#1| $) 95) (($ $ (-854)) 94 (|has| |#1| (-346)))) (-2085 (((-3 $ "failed") $) NIL (|has| |#1| (-346)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1382 (((-1085 |#1|) $) 190) (((-1085 $) $ (-854)) NIL (|has| |#1| (-346)))) (-3016 (((-854) $) 135 (|has| |#1| (-346)))) (-1924 (((-1085 |#1|) $) 74 (|has| |#1| (-346)))) (-3040 (((-1085 |#1|) $) 71 (|has| |#1| (-346))) (((-3 (-1085 |#1|) "failed") $ $) 83 (|has| |#1| (-346)))) (-2054 (($ $ (-1085 |#1|)) 70 (|has| |#1| (-346)))) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 193)) (-3506 (($) NIL (|has| |#1| (-346)) CONST)) (-2226 (($ (-854)) 138 (|has| |#1| (-346)))) (-1476 (((-108) $) 109)) (-2047 (((-1036) $) NIL)) (-1792 (((-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036)))))) 84)) (-2626 (((-631 |#1|)) 88)) (-3857 (($) 97 (|has| |#1| (-346)))) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) 151 (|has| |#1| (-346)))) (-1348 (((-396 $) $) NIL)) (-2163 (((-774 (-854))) NIL) (((-854)) 152)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2953 (((-712) $) NIL (|has| |#1| (-346))) (((-3 (-712) "failed") $ $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-4224 (((-128)) NIL)) (-3266 (($ $) NIL (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-1316 (((-774 (-854)) $) NIL) (((-854) $) 63)) (-1478 (((-1085 |#1|)) 153)) (-2616 (($) 134 (|has| |#1| (-346)))) (-1608 (($) NIL (|has| |#1| (-346)))) (-3572 (((-1171 |#1|) $) 107) (((-631 |#1|) (-1171 $)) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (|has| |#1| (-346)))) (-3022 (((-796) $) 125) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) (($ |#1|) 58)) (-1437 (($ $) NIL (|has| |#1| (-346))) (((-3 $ "failed") $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2128 (((-712)) 157)) (-4003 (((-1171 $)) 173) (((-1171 $) (-854)) 102)) (-2495 (((-108) $ $) NIL)) (-1884 (((-108) $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) 30 T CONST)) (-4197 (($) 22 T CONST)) (-4227 (($ $) 108 (|has| |#1| (-346))) (($ $ (-712)) 100 (|has| |#1| (-346)))) (-4196 (($ $) NIL (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-4096 (((-108) $ $) 184)) (-4173 (($ $ $) 105) (($ $ |#1|) 106)) (-4164 (($ $) 178) (($ $ $) 182)) (-4156 (($ $ $) 180)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) 139)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 187) (($ $ $) 143) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 104)))
+(((-330 |#1| |#2|) (-13 (-307 |#1|) (-10 -7 (-15 -1792 ((-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))))) (-15 -2626 ((-631 |#1|))) (-15 -3715 ((-712))))) (-327) (-3 (-1085 |#1|) (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))))) (T -330))
+((-1792 (*1 *2) (-12 (-5 *2 (-1171 (-591 (-2 (|:| -3024 *3) (|:| -2226 (-1036)))))) (-5 *1 (-330 *3 *4)) (-4 *3 (-327)) (-14 *4 (-3 (-1085 *3) *2)))) (-2626 (*1 *2) (-12 (-5 *2 (-631 *3)) (-5 *1 (-330 *3 *4)) (-4 *3 (-327)) (-14 *4 (-3 (-1085 *3) (-1171 (-591 (-2 (|:| -3024 *3) (|:| -2226 (-1036))))))))) (-3715 (*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-330 *3 *4)) (-4 *3 (-327)) (-14 *4 (-3 (-1085 *3) (-1171 (-591 (-2 (|:| -3024 *3) (|:| -2226 (-1036))))))))))
+(-13 (-307 |#1|) (-10 -7 (-15 -1792 ((-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))))) (-15 -2626 ((-631 |#1|))) (-15 -3715 ((-712)))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2144 (((-108) $) NIL)) (-2834 (((-712)) NIL)) (-2569 ((|#1| $) NIL) (($ $ (-854)) NIL (|has| |#1| (-346)))) (-3734 (((-1099 (-854) (-712)) (-525)) NIL (|has| |#1| (-346)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-3715 (((-712)) NIL)) (-1947 (((-108) $ $) NIL)) (-3032 (((-712)) NIL (|has| |#1| (-346)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL)) (-3528 ((|#1| $) NIL)) (-4171 (($ (-1171 |#1|)) NIL)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-346)))) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) NIL (|has| |#1| (-346)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-3944 (($) NIL (|has| |#1| (-346)))) (-4104 (((-108) $) NIL (|has| |#1| (-346)))) (-2299 (($ $ (-712)) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))) (($ $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2744 (((-108) $) NIL)) (-3873 (((-854) $) NIL (|has| |#1| (-346))) (((-774 (-854)) $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2824 (((-108) $) NIL)) (-4046 (($) NIL (|has| |#1| (-346)))) (-1751 (((-108) $) NIL (|has| |#1| (-346)))) (-2771 ((|#1| $) NIL) (($ $ (-854)) NIL (|has| |#1| (-346)))) (-2085 (((-3 $ "failed") $) NIL (|has| |#1| (-346)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1382 (((-1085 |#1|) $) NIL) (((-1085 $) $ (-854)) NIL (|has| |#1| (-346)))) (-3016 (((-854) $) NIL (|has| |#1| (-346)))) (-1924 (((-1085 |#1|) $) NIL (|has| |#1| (-346)))) (-3040 (((-1085 |#1|) $) NIL (|has| |#1| (-346))) (((-3 (-1085 |#1|) "failed") $ $) NIL (|has| |#1| (-346)))) (-2054 (($ $ (-1085 |#1|)) NIL (|has| |#1| (-346)))) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| |#1| (-346)) CONST)) (-2226 (($ (-854)) NIL (|has| |#1| (-346)))) (-1476 (((-108) $) NIL)) (-2047 (((-1036) $) NIL)) (-1792 (((-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036)))))) NIL)) (-2626 (((-631 |#1|)) NIL)) (-3857 (($) NIL (|has| |#1| (-346)))) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) NIL (|has| |#1| (-346)))) (-1348 (((-396 $) $) NIL)) (-2163 (((-774 (-854))) NIL) (((-854)) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2953 (((-712) $) NIL (|has| |#1| (-346))) (((-3 (-712) "failed") $ $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-4224 (((-128)) NIL)) (-3266 (($ $) NIL (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-1316 (((-774 (-854)) $) NIL) (((-854) $) NIL)) (-1478 (((-1085 |#1|)) NIL)) (-2616 (($) NIL (|has| |#1| (-346)))) (-1608 (($) NIL (|has| |#1| (-346)))) (-3572 (((-1171 |#1|) $) NIL) (((-631 |#1|) (-1171 $)) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (|has| |#1| (-346)))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) (($ |#1|) NIL)) (-1437 (($ $) NIL (|has| |#1| (-346))) (((-3 $ "failed") $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2128 (((-712)) NIL)) (-4003 (((-1171 $)) NIL) (((-1171 $) (-854)) NIL)) (-2495 (((-108) $ $) NIL)) (-1884 (((-108) $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4227 (($ $) NIL (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-4196 (($ $) NIL (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL) (($ $ |#1|) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-331 |#1| |#2|) (-13 (-307 |#1|) (-10 -7 (-15 -1792 ((-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))))) (-15 -2626 ((-631 |#1|))) (-15 -3715 ((-712))))) (-327) (-854)) (T -331))
+((-1792 (*1 *2) (-12 (-5 *2 (-1171 (-591 (-2 (|:| -3024 *3) (|:| -2226 (-1036)))))) (-5 *1 (-331 *3 *4)) (-4 *3 (-327)) (-14 *4 (-854)))) (-2626 (*1 *2) (-12 (-5 *2 (-631 *3)) (-5 *1 (-331 *3 *4)) (-4 *3 (-327)) (-14 *4 (-854)))) (-3715 (*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-331 *3 *4)) (-4 *3 (-327)) (-14 *4 (-854)))))
+(-13 (-307 |#1|) (-10 -7 (-15 -1792 ((-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))))) (-15 -2626 ((-631 |#1|))) (-15 -3715 ((-712)))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2144 (((-108) $) NIL)) (-2834 (((-712)) NIL)) (-2569 (((-843 |#1|) $) NIL) (($ $ (-854)) NIL (|has| (-843 |#1|) (-346)))) (-3734 (((-1099 (-854) (-712)) (-525)) NIL (|has| (-843 |#1|) (-346)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3032 (((-712)) NIL (|has| (-843 |#1|) (-346)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-843 |#1|) "failed") $) NIL)) (-3528 (((-843 |#1|) $) NIL)) (-4171 (($ (-1171 (-843 |#1|))) NIL)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-843 |#1|) (-346)))) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) NIL (|has| (-843 |#1|) (-346)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-3944 (($) NIL (|has| (-843 |#1|) (-346)))) (-4104 (((-108) $) NIL (|has| (-843 |#1|) (-346)))) (-2299 (($ $ (-712)) NIL (-3321 (|has| (-843 |#1|) (-136)) (|has| (-843 |#1|) (-346)))) (($ $) NIL (-3321 (|has| (-843 |#1|) (-136)) (|has| (-843 |#1|) (-346))))) (-2744 (((-108) $) NIL)) (-3873 (((-854) $) NIL (|has| (-843 |#1|) (-346))) (((-774 (-854)) $) NIL (-3321 (|has| (-843 |#1|) (-136)) (|has| (-843 |#1|) (-346))))) (-2824 (((-108) $) NIL)) (-4046 (($) NIL (|has| (-843 |#1|) (-346)))) (-1751 (((-108) $) NIL (|has| (-843 |#1|) (-346)))) (-2771 (((-843 |#1|) $) NIL) (($ $ (-854)) NIL (|has| (-843 |#1|) (-346)))) (-2085 (((-3 $ "failed") $) NIL (|has| (-843 |#1|) (-346)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1382 (((-1085 (-843 |#1|)) $) NIL) (((-1085 $) $ (-854)) NIL (|has| (-843 |#1|) (-346)))) (-3016 (((-854) $) NIL (|has| (-843 |#1|) (-346)))) (-1924 (((-1085 (-843 |#1|)) $) NIL (|has| (-843 |#1|) (-346)))) (-3040 (((-1085 (-843 |#1|)) $) NIL (|has| (-843 |#1|) (-346))) (((-3 (-1085 (-843 |#1|)) "failed") $ $) NIL (|has| (-843 |#1|) (-346)))) (-2054 (($ $ (-1085 (-843 |#1|))) NIL (|has| (-843 |#1|) (-346)))) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| (-843 |#1|) (-346)) CONST)) (-2226 (($ (-854)) NIL (|has| (-843 |#1|) (-346)))) (-1476 (((-108) $) NIL)) (-2047 (((-1036) $) NIL)) (-3857 (($) NIL (|has| (-843 |#1|) (-346)))) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) NIL (|has| (-843 |#1|) (-346)))) (-1348 (((-396 $) $) NIL)) (-2163 (((-774 (-854))) NIL) (((-854)) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2953 (((-712) $) NIL (|has| (-843 |#1|) (-346))) (((-3 (-712) "failed") $ $) NIL (-3321 (|has| (-843 |#1|) (-136)) (|has| (-843 |#1|) (-346))))) (-4224 (((-128)) NIL)) (-3266 (($ $) NIL (|has| (-843 |#1|) (-346))) (($ $ (-712)) NIL (|has| (-843 |#1|) (-346)))) (-1316 (((-774 (-854)) $) NIL) (((-854) $) NIL)) (-1478 (((-1085 (-843 |#1|))) NIL)) (-2616 (($) NIL (|has| (-843 |#1|) (-346)))) (-1608 (($) NIL (|has| (-843 |#1|) (-346)))) (-3572 (((-1171 (-843 |#1|)) $) NIL) (((-631 (-843 |#1|)) (-1171 $)) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (|has| (-843 |#1|) (-346)))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) (($ (-843 |#1|)) NIL)) (-1437 (($ $) NIL (|has| (-843 |#1|) (-346))) (((-3 $ "failed") $) NIL (-3321 (|has| (-843 |#1|) (-136)) (|has| (-843 |#1|) (-346))))) (-2128 (((-712)) NIL)) (-4003 (((-1171 $)) NIL) (((-1171 $) (-854)) NIL)) (-2495 (((-108) $ $) NIL)) (-1884 (((-108) $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4227 (($ $) NIL (|has| (-843 |#1|) (-346))) (($ $ (-712)) NIL (|has| (-843 |#1|) (-346)))) (-4196 (($ $) NIL (|has| (-843 |#1|) (-346))) (($ $ (-712)) NIL (|has| (-843 |#1|) (-346)))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL) (($ $ (-843 |#1|)) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ $ (-843 |#1|)) NIL) (($ (-843 |#1|) $) NIL)))
+(((-332 |#1| |#2|) (-307 (-843 |#1|)) (-854) (-854)) (T -332))
+NIL
+(-307 (-843 |#1|))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2144 (((-108) $) NIL)) (-2834 (((-712)) NIL)) (-2569 ((|#1| $) NIL) (($ $ (-854)) NIL (|has| |#1| (-346)))) (-3734 (((-1099 (-854) (-712)) (-525)) 120 (|has| |#1| (-346)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3032 (((-712)) 140 (|has| |#1| (-346)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) 93)) (-3528 ((|#1| $) 90)) (-4171 (($ (-1171 |#1|)) 85)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) 117 (|has| |#1| (-346)))) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) 82 (|has| |#1| (-346)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-3944 (($) 42 (|has| |#1| (-346)))) (-4104 (((-108) $) NIL (|has| |#1| (-346)))) (-2299 (($ $ (-712)) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))) (($ $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2744 (((-108) $) NIL)) (-3873 (((-854) $) NIL (|has| |#1| (-346))) (((-774 (-854)) $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2824 (((-108) $) NIL)) (-4046 (($) 121 (|has| |#1| (-346)))) (-1751 (((-108) $) 74 (|has| |#1| (-346)))) (-2771 ((|#1| $) 39) (($ $ (-854)) 43 (|has| |#1| (-346)))) (-2085 (((-3 $ "failed") $) NIL (|has| |#1| (-346)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1382 (((-1085 |#1|) $) 65) (((-1085 $) $ (-854)) NIL (|has| |#1| (-346)))) (-3016 (((-854) $) 97 (|has| |#1| (-346)))) (-1924 (((-1085 |#1|) $) NIL (|has| |#1| (-346)))) (-3040 (((-1085 |#1|) $) NIL (|has| |#1| (-346))) (((-3 (-1085 |#1|) "failed") $ $) NIL (|has| |#1| (-346)))) (-2054 (($ $ (-1085 |#1|)) NIL (|has| |#1| (-346)))) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| |#1| (-346)) CONST)) (-2226 (($ (-854)) 95 (|has| |#1| (-346)))) (-1476 (((-108) $) 142)) (-2047 (((-1036) $) NIL)) (-3857 (($) 36 (|has| |#1| (-346)))) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) 115 (|has| |#1| (-346)))) (-1348 (((-396 $) $) NIL)) (-2163 (((-774 (-854))) NIL) (((-854)) 139)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2953 (((-712) $) NIL (|has| |#1| (-346))) (((-3 (-712) "failed") $ $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-4224 (((-128)) NIL)) (-3266 (($ $) NIL (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-1316 (((-774 (-854)) $) NIL) (((-854) $) 59)) (-1478 (((-1085 |#1|)) 88)) (-2616 (($) 126 (|has| |#1| (-346)))) (-1608 (($) NIL (|has| |#1| (-346)))) (-3572 (((-1171 |#1|) $) 53) (((-631 |#1|) (-1171 $)) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (|has| |#1| (-346)))) (-3022 (((-796) $) 138) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) (($ |#1|) 87)) (-1437 (($ $) NIL (|has| |#1| (-346))) (((-3 $ "failed") $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2128 (((-712)) 144)) (-4003 (((-1171 $)) 109) (((-1171 $) (-854)) 49)) (-2495 (((-108) $ $) NIL)) (-1884 (((-108) $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) 111 T CONST)) (-4197 (($) 32 T CONST)) (-4227 (($ $) 68 (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-4196 (($ $) NIL (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-4096 (((-108) $ $) 107)) (-4173 (($ $ $) 99) (($ $ |#1|) 100)) (-4164 (($ $) 80) (($ $ $) 105)) (-4156 (($ $ $) 103)) (** (($ $ (-854)) NIL) (($ $ (-712)) 44) (($ $ (-525)) 130)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 78) (($ $ $) 56) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 76)))
+(((-333 |#1| |#2|) (-307 |#1|) (-327) (-1085 |#1|)) (T -333))
+NIL
+(-307 |#1|)
+((-3562 ((|#1| (-1085 |#2|)) 52)))
+(((-334 |#1| |#2|) (-10 -7 (-15 -3562 (|#1| (-1085 |#2|)))) (-13 (-380) (-10 -7 (-15 -3022 (|#1| |#2|)) (-15 -3016 ((-854) |#1|)) (-15 -4003 ((-1171 |#1|) (-854))) (-15 -4227 (|#1| |#1|)))) (-327)) (T -334))
+((-3562 (*1 *2 *3) (-12 (-5 *3 (-1085 *4)) (-4 *4 (-327)) (-4 *2 (-13 (-380) (-10 -7 (-15 -3022 (*2 *4)) (-15 -3016 ((-854) *2)) (-15 -4003 ((-1171 *2) (-854))) (-15 -4227 (*2 *2))))) (-5 *1 (-334 *2 *4)))))
+(-10 -7 (-15 -3562 (|#1| (-1085 |#2|))))
+((-3607 (((-890 (-1085 |#1|)) (-1085 |#1|)) 36)) (-3377 (((-1085 |#1|) (-854) (-854)) 113) (((-1085 |#1|) (-854)) 112)) (-4104 (((-108) (-1085 |#1|)) 84)) (-1355 (((-854) (-854)) 71)) (-3395 (((-854) (-854)) 74)) (-1713 (((-854) (-854)) 69)) (-1751 (((-108) (-1085 |#1|)) 88)) (-4187 (((-3 (-1085 |#1|) "failed") (-1085 |#1|)) 101)) (-2446 (((-3 (-1085 |#1|) "failed") (-1085 |#1|)) 104)) (-3387 (((-3 (-1085 |#1|) "failed") (-1085 |#1|)) 103)) (-3383 (((-3 (-1085 |#1|) "failed") (-1085 |#1|)) 102)) (-3396 (((-3 (-1085 |#1|) "failed") (-1085 |#1|)) 98)) (-3408 (((-1085 |#1|) (-1085 |#1|)) 62)) (-2095 (((-1085 |#1|) (-854)) 107)) (-4117 (((-1085 |#1|) (-854)) 110)) (-2589 (((-1085 |#1|) (-854)) 109)) (-1397 (((-1085 |#1|) (-854)) 108)) (-1334 (((-1085 |#1|) (-854)) 105)))
+(((-335 |#1|) (-10 -7 (-15 -4104 ((-108) (-1085 |#1|))) (-15 -1751 ((-108) (-1085 |#1|))) (-15 -1713 ((-854) (-854))) (-15 -1355 ((-854) (-854))) (-15 -3395 ((-854) (-854))) (-15 -1334 ((-1085 |#1|) (-854))) (-15 -2095 ((-1085 |#1|) (-854))) (-15 -1397 ((-1085 |#1|) (-854))) (-15 -2589 ((-1085 |#1|) (-854))) (-15 -4117 ((-1085 |#1|) (-854))) (-15 -3396 ((-3 (-1085 |#1|) "failed") (-1085 |#1|))) (-15 -4187 ((-3 (-1085 |#1|) "failed") (-1085 |#1|))) (-15 -3383 ((-3 (-1085 |#1|) "failed") (-1085 |#1|))) (-15 -3387 ((-3 (-1085 |#1|) "failed") (-1085 |#1|))) (-15 -2446 ((-3 (-1085 |#1|) "failed") (-1085 |#1|))) (-15 -3377 ((-1085 |#1|) (-854))) (-15 -3377 ((-1085 |#1|) (-854) (-854))) (-15 -3408 ((-1085 |#1|) (-1085 |#1|))) (-15 -3607 ((-890 (-1085 |#1|)) (-1085 |#1|)))) (-327)) (T -335))
+((-3607 (*1 *2 *3) (-12 (-4 *4 (-327)) (-5 *2 (-890 (-1085 *4))) (-5 *1 (-335 *4)) (-5 *3 (-1085 *4)))) (-3408 (*1 *2 *2) (-12 (-5 *2 (-1085 *3)) (-4 *3 (-327)) (-5 *1 (-335 *3)))) (-3377 (*1 *2 *3 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-335 *4)) (-4 *4 (-327)))) (-3377 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-335 *4)) (-4 *4 (-327)))) (-2446 (*1 *2 *2) (|partial| -12 (-5 *2 (-1085 *3)) (-4 *3 (-327)) (-5 *1 (-335 *3)))) (-3387 (*1 *2 *2) (|partial| -12 (-5 *2 (-1085 *3)) (-4 *3 (-327)) (-5 *1 (-335 *3)))) (-3383 (*1 *2 *2) (|partial| -12 (-5 *2 (-1085 *3)) (-4 *3 (-327)) (-5 *1 (-335 *3)))) (-4187 (*1 *2 *2) (|partial| -12 (-5 *2 (-1085 *3)) (-4 *3 (-327)) (-5 *1 (-335 *3)))) (-3396 (*1 *2 *2) (|partial| -12 (-5 *2 (-1085 *3)) (-4 *3 (-327)) (-5 *1 (-335 *3)))) (-4117 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-335 *4)) (-4 *4 (-327)))) (-2589 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-335 *4)) (-4 *4 (-327)))) (-1397 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-335 *4)) (-4 *4 (-327)))) (-2095 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-335 *4)) (-4 *4 (-327)))) (-1334 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-335 *4)) (-4 *4 (-327)))) (-3395 (*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-335 *3)) (-4 *3 (-327)))) (-1355 (*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-335 *3)) (-4 *3 (-327)))) (-1713 (*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-335 *3)) (-4 *3 (-327)))) (-1751 (*1 *2 *3) (-12 (-5 *3 (-1085 *4)) (-4 *4 (-327)) (-5 *2 (-108)) (-5 *1 (-335 *4)))) (-4104 (*1 *2 *3) (-12 (-5 *3 (-1085 *4)) (-4 *4 (-327)) (-5 *2 (-108)) (-5 *1 (-335 *4)))))
+(-10 -7 (-15 -4104 ((-108) (-1085 |#1|))) (-15 -1751 ((-108) (-1085 |#1|))) (-15 -1713 ((-854) (-854))) (-15 -1355 ((-854) (-854))) (-15 -3395 ((-854) (-854))) (-15 -1334 ((-1085 |#1|) (-854))) (-15 -2095 ((-1085 |#1|) (-854))) (-15 -1397 ((-1085 |#1|) (-854))) (-15 -2589 ((-1085 |#1|) (-854))) (-15 -4117 ((-1085 |#1|) (-854))) (-15 -3396 ((-3 (-1085 |#1|) "failed") (-1085 |#1|))) (-15 -4187 ((-3 (-1085 |#1|) "failed") (-1085 |#1|))) (-15 -3383 ((-3 (-1085 |#1|) "failed") (-1085 |#1|))) (-15 -3387 ((-3 (-1085 |#1|) "failed") (-1085 |#1|))) (-15 -2446 ((-3 (-1085 |#1|) "failed") (-1085 |#1|))) (-15 -3377 ((-1085 |#1|) (-854))) (-15 -3377 ((-1085 |#1|) (-854) (-854))) (-15 -3408 ((-1085 |#1|) (-1085 |#1|))) (-15 -3607 ((-890 (-1085 |#1|)) (-1085 |#1|))))
+((-2252 (((-3 (-591 |#3|) "failed") (-591 |#3|) |#3|) 34)))
+(((-336 |#1| |#2| |#3|) (-10 -7 (-15 -2252 ((-3 (-591 |#3|) "failed") (-591 |#3|) |#3|))) (-327) (-1147 |#1|) (-1147 |#2|)) (T -336))
+((-2252 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-591 *3)) (-4 *3 (-1147 *5)) (-4 *5 (-1147 *4)) (-4 *4 (-327)) (-5 *1 (-336 *4 *5 *3)))))
+(-10 -7 (-15 -2252 ((-3 (-591 |#3|) "failed") (-591 |#3|) |#3|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2144 (((-108) $) NIL)) (-2834 (((-712)) NIL)) (-2569 ((|#1| $) NIL) (($ $ (-854)) NIL (|has| |#1| (-346)))) (-3734 (((-1099 (-854) (-712)) (-525)) NIL (|has| |#1| (-346)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3032 (((-712)) NIL (|has| |#1| (-346)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL)) (-3528 ((|#1| $) NIL)) (-4171 (($ (-1171 |#1|)) NIL)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-346)))) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) NIL (|has| |#1| (-346)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-3944 (($) NIL (|has| |#1| (-346)))) (-4104 (((-108) $) NIL (|has| |#1| (-346)))) (-2299 (($ $ (-712)) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))) (($ $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2744 (((-108) $) NIL)) (-3873 (((-854) $) NIL (|has| |#1| (-346))) (((-774 (-854)) $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2824 (((-108) $) NIL)) (-4046 (($) NIL (|has| |#1| (-346)))) (-1751 (((-108) $) NIL (|has| |#1| (-346)))) (-2771 ((|#1| $) NIL) (($ $ (-854)) NIL (|has| |#1| (-346)))) (-2085 (((-3 $ "failed") $) NIL (|has| |#1| (-346)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1382 (((-1085 |#1|) $) NIL) (((-1085 $) $ (-854)) NIL (|has| |#1| (-346)))) (-3016 (((-854) $) NIL (|has| |#1| (-346)))) (-1924 (((-1085 |#1|) $) NIL (|has| |#1| (-346)))) (-3040 (((-1085 |#1|) $) NIL (|has| |#1| (-346))) (((-3 (-1085 |#1|) "failed") $ $) NIL (|has| |#1| (-346)))) (-2054 (($ $ (-1085 |#1|)) NIL (|has| |#1| (-346)))) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| |#1| (-346)) CONST)) (-2226 (($ (-854)) NIL (|has| |#1| (-346)))) (-1476 (((-108) $) NIL)) (-2047 (((-1036) $) NIL)) (-3857 (($) NIL (|has| |#1| (-346)))) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) NIL (|has| |#1| (-346)))) (-1348 (((-396 $) $) NIL)) (-2163 (((-774 (-854))) NIL) (((-854)) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2953 (((-712) $) NIL (|has| |#1| (-346))) (((-3 (-712) "failed") $ $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-4224 (((-128)) NIL)) (-3266 (($ $) NIL (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-1316 (((-774 (-854)) $) NIL) (((-854) $) NIL)) (-1478 (((-1085 |#1|)) NIL)) (-2616 (($) NIL (|has| |#1| (-346)))) (-1608 (($) NIL (|has| |#1| (-346)))) (-3572 (((-1171 |#1|) $) NIL) (((-631 |#1|) (-1171 $)) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (|has| |#1| (-346)))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) (($ |#1|) NIL)) (-1437 (($ $) NIL (|has| |#1| (-346))) (((-3 $ "failed") $) NIL (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2128 (((-712)) NIL)) (-4003 (((-1171 $)) NIL) (((-1171 $) (-854)) NIL)) (-2495 (((-108) $ $) NIL)) (-1884 (((-108) $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4227 (($ $) NIL (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-4196 (($ $) NIL (|has| |#1| (-346))) (($ $ (-712)) NIL (|has| |#1| (-346)))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL) (($ $ |#1|) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-337 |#1| |#2|) (-307 |#1|) (-327) (-854)) (T -337))
+NIL
+(-307 |#1|)
+((-2766 (((-108) (-591 (-885 |#1|))) 34)) (-3805 (((-591 (-885 |#1|)) (-591 (-885 |#1|))) 46)) (-1534 (((-3 (-591 (-885 |#1|)) "failed") (-591 (-885 |#1|))) 41)))
+(((-338 |#1| |#2|) (-10 -7 (-15 -2766 ((-108) (-591 (-885 |#1|)))) (-15 -1534 ((-3 (-591 (-885 |#1|)) "failed") (-591 (-885 |#1|)))) (-15 -3805 ((-591 (-885 |#1|)) (-591 (-885 |#1|))))) (-429) (-591 (-1089))) (T -338))
+((-3805 (*1 *2 *2) (-12 (-5 *2 (-591 (-885 *3))) (-4 *3 (-429)) (-5 *1 (-338 *3 *4)) (-14 *4 (-591 (-1089))))) (-1534 (*1 *2 *2) (|partial| -12 (-5 *2 (-591 (-885 *3))) (-4 *3 (-429)) (-5 *1 (-338 *3 *4)) (-14 *4 (-591 (-1089))))) (-2766 (*1 *2 *3) (-12 (-5 *3 (-591 (-885 *4))) (-4 *4 (-429)) (-5 *2 (-108)) (-5 *1 (-338 *4 *5)) (-14 *5 (-591 (-1089))))))
+(-10 -7 (-15 -2766 ((-108) (-591 (-885 |#1|)))) (-15 -1534 ((-3 (-591 (-885 |#1|)) "failed") (-591 (-885 |#1|)))) (-15 -3805 ((-591 (-885 |#1|)) (-591 (-885 |#1|)))))
+((-3008 (((-108) $ $) NIL)) (-3032 (((-712) $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL)) (-3528 ((|#1| $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-2824 (((-108) $) 15)) (-2423 ((|#1| $ (-525)) NIL)) (-1566 (((-525) $ (-525)) NIL)) (-3731 (($ (-1 |#1| |#1|) $) 32)) (-1954 (($ (-1 (-525) (-525)) $) 24)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 26)) (-2047 (((-1036) $) NIL)) (-3781 (((-591 (-2 (|:| |gen| |#1|) (|:| -1409 (-525)))) $) 28)) (-3228 (($ $ $) NIL)) (-3619 (($ $ $) NIL)) (-3022 (((-796) $) 38) (($ |#1|) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4197 (($) 9 T CONST)) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL) (($ |#1| (-525)) 17)) (* (($ $ $) 43) (($ |#1| $) 21) (($ $ |#1|) 19)))
+(((-339 |#1|) (-13 (-450) (-966 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-525))) (-15 -3032 ((-712) $)) (-15 -1566 ((-525) $ (-525))) (-15 -2423 (|#1| $ (-525))) (-15 -1954 ($ (-1 (-525) (-525)) $)) (-15 -3731 ($ (-1 |#1| |#1|) $)) (-15 -3781 ((-591 (-2 (|:| |gen| |#1|) (|:| -1409 (-525)))) $)))) (-1018)) (T -339))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-339 *2)) (-4 *2 (-1018)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-339 *2)) (-4 *2 (-1018)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-339 *2)) (-4 *2 (-1018)))) (-3032 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-339 *3)) (-4 *3 (-1018)))) (-1566 (*1 *2 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-339 *3)) (-4 *3 (-1018)))) (-2423 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *1 (-339 *2)) (-4 *2 (-1018)))) (-1954 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-525) (-525))) (-5 *1 (-339 *3)) (-4 *3 (-1018)))) (-3731 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-339 *3)))) (-3781 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| |gen| *3) (|:| -1409 (-525))))) (-5 *1 (-339 *3)) (-4 *3 (-1018)))))
+(-13 (-450) (-966 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-525))) (-15 -3032 ((-712) $)) (-15 -1566 ((-525) $ (-525))) (-15 -2423 (|#1| $ (-525))) (-15 -1954 ($ (-1 (-525) (-525)) $)) (-15 -3731 ($ (-1 |#1| |#1|) $)) (-15 -3781 ((-591 (-2 (|:| |gen| |#1|) (|:| -1409 (-525)))) $))))
+((-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 13)) (-3706 (($ $) 14)) (-2827 (((-396 $) $) 30)) (-2744 (((-108) $) 26)) (-1622 (($ $) 19)) (-1399 (($ $ $) 23) (($ (-591 $)) NIL)) (-1348 (((-396 $) $) 31)) (-2089 (((-3 $ "failed") $ $) 22)) (-1712 (((-712) $) 25)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 35)) (-2495 (((-108) $ $) 16)) (-4173 (($ $ $) 33)))
+(((-340 |#1|) (-10 -8 (-15 -4173 (|#1| |#1| |#1|)) (-15 -1622 (|#1| |#1|)) (-15 -2744 ((-108) |#1|)) (-15 -2827 ((-396 |#1|) |#1|)) (-15 -1348 ((-396 |#1|) |#1|)) (-15 -3999 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -1712 ((-712) |#1|)) (-15 -1399 (|#1| (-591 |#1|))) (-15 -1399 (|#1| |#1| |#1|)) (-15 -2495 ((-108) |#1| |#1|)) (-15 -3706 (|#1| |#1|)) (-15 -3450 ((-2 (|:| -2999 |#1|) (|:| -4237 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#1|))) (-341)) (T -340))
+NIL
+(-10 -8 (-15 -4173 (|#1| |#1| |#1|)) (-15 -1622 (|#1| |#1|)) (-15 -2744 ((-108) |#1|)) (-15 -2827 ((-396 |#1|) |#1|)) (-15 -1348 ((-396 |#1|) |#1|)) (-15 -3999 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -1712 ((-712) |#1|)) (-15 -1399 (|#1| (-591 |#1|))) (-15 -1399 (|#1| |#1| |#1|)) (-15 -2495 ((-108) |#1| |#1|)) (-15 -3706 (|#1| |#1|)) (-15 -3450 ((-2 (|:| -2999 |#1|) (|:| -4237 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2157 (((-3 $ "failed") $ $) 19)) (-1291 (($ $) 73)) (-2827 (((-396 $) $) 72)) (-1947 (((-108) $ $) 59)) (-3798 (($) 17 T CONST)) (-2129 (($ $ $) 55)) (-4163 (((-3 $ "failed") $) 34)) (-2110 (($ $ $) 56)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 51)) (-2744 (((-108) $) 71)) (-2824 (((-108) $) 31)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 52)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-1622 (($ $) 70)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-1348 (((-396 $) $) 74)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2089 (((-3 $ "failed") $ $) 42)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 50)) (-1712 (((-712) $) 58)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 57)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43) (($ (-385 (-525))) 65)) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 39)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 69)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4173 (($ $ $) 64)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 68)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 (-525))) 67) (($ (-385 (-525)) $) 66)))
+(((-341) (-131)) (T -341))
+((-4173 (*1 *1 *1 *1) (-4 *1 (-341))))
+(-13 (-286) (-1129) (-223) (-10 -8 (-15 -4173 ($ $ $)) (-6 -4248) (-6 -4242)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-126) . T) ((-565 (-796)) . T) ((-160) . T) ((-223) . T) ((-269) . T) ((-286) . T) ((-429) . T) ((-517) . T) ((-593 #0#) . T) ((-593 $) . T) ((-659 #0#) . T) ((-659 $) . T) ((-668) . T) ((-853) . T) ((-981 #0#) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1129) . T))
+((-3008 (((-108) $ $) 7)) (-3598 ((|#2| $ |#2|) 13)) (-3522 (($ $ (-1072)) 18)) (-1277 ((|#2| $) 14)) (-1976 (($ |#1|) 20) (($ |#1| (-1072)) 19)) (-2400 ((|#1| $) 16)) (-2339 (((-1072) $) 9)) (-3317 (((-1072) $) 15)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-2886 (($ $) 17)) (-4096 (((-108) $ $) 6)))
+(((-342 |#1| |#2|) (-131) (-1018) (-1018)) (T -342))
+((-1976 (*1 *1 *2) (-12 (-4 *1 (-342 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))) (-1976 (*1 *1 *2 *3) (-12 (-5 *3 (-1072)) (-4 *1 (-342 *2 *4)) (-4 *2 (-1018)) (-4 *4 (-1018)))) (-3522 (*1 *1 *1 *2) (-12 (-5 *2 (-1072)) (-4 *1 (-342 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018)))) (-2886 (*1 *1 *1) (-12 (-4 *1 (-342 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))) (-2400 (*1 *2 *1) (-12 (-4 *1 (-342 *2 *3)) (-4 *3 (-1018)) (-4 *2 (-1018)))) (-3317 (*1 *2 *1) (-12 (-4 *1 (-342 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-5 *2 (-1072)))) (-1277 (*1 *2 *1) (-12 (-4 *1 (-342 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1018)))) (-3598 (*1 *2 *1 *2) (-12 (-4 *1 (-342 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1018)))))
+(-13 (-1018) (-10 -8 (-15 -1976 ($ |t#1|)) (-15 -1976 ($ |t#1| (-1072))) (-15 -3522 ($ $ (-1072))) (-15 -2886 ($ $)) (-15 -2400 (|t#1| $)) (-15 -3317 ((-1072) $)) (-15 -1277 (|t#2| $)) (-15 -3598 (|t#2| $ |t#2|))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-3598 ((|#1| $ |#1|) 30)) (-3522 (($ $ (-1072)) 22)) (-2815 (((-3 |#1| "failed") $) 29)) (-1277 ((|#1| $) 27)) (-1976 (($ (-366)) 21) (($ (-366) (-1072)) 20)) (-2400 (((-366) $) 24)) (-2339 (((-1072) $) NIL)) (-3317 (((-1072) $) 25)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 19)) (-2886 (($ $) 23)) (-4096 (((-108) $ $) 18)))
+(((-343 |#1|) (-13 (-342 (-366) |#1|) (-10 -8 (-15 -2815 ((-3 |#1| "failed") $)))) (-1018)) (T -343))
+((-2815 (*1 *2 *1) (|partial| -12 (-5 *1 (-343 *2)) (-4 *2 (-1018)))))
+(-13 (-342 (-366) |#1|) (-10 -8 (-15 -2815 ((-3 |#1| "failed") $))))
+((-1593 (((-1171 (-631 |#2|)) (-1171 $)) 61)) (-4094 (((-631 |#2|) (-1171 $)) 120)) (-4011 ((|#2| $) 32)) (-3711 (((-631 |#2|) $ (-1171 $)) 123)) (-3057 (((-3 $ "failed") $) 75)) (-3996 ((|#2| $) 35)) (-3473 (((-1085 |#2|) $) 83)) (-2449 ((|#2| (-1171 $)) 106)) (-3158 (((-1085 |#2|) $) 28)) (-2772 (((-108)) 100)) (-4171 (($ (-1171 |#2|) (-1171 $)) 113)) (-4163 (((-3 $ "failed") $) 79)) (-3915 (((-108)) 95)) (-2590 (((-108)) 90)) (-2248 (((-108)) 53)) (-1548 (((-631 |#2|) (-1171 $)) 118)) (-4032 ((|#2| $) 31)) (-3793 (((-631 |#2|) $ (-1171 $)) 122)) (-1838 (((-3 $ "failed") $) 73)) (-3018 ((|#2| $) 34)) (-1858 (((-1085 |#2|) $) 82)) (-1368 ((|#2| (-1171 $)) 104)) (-2253 (((-1085 |#2|) $) 26)) (-2448 (((-108)) 99)) (-1407 (((-108)) 92)) (-3704 (((-108)) 51)) (-2688 (((-108)) 87)) (-4160 (((-108)) 101)) (-3572 (((-1171 |#2|) $ (-1171 $)) NIL) (((-631 |#2|) (-1171 $) (-1171 $)) 111)) (-1806 (((-108)) 97)) (-1640 (((-591 (-1171 |#2|))) 86)) (-2938 (((-108)) 98)) (-2826 (((-108)) 96)) (-1532 (((-108)) 46)) (-1307 (((-108)) 102)))
+(((-344 |#1| |#2|) (-10 -8 (-15 -3473 ((-1085 |#2|) |#1|)) (-15 -1858 ((-1085 |#2|) |#1|)) (-15 -1640 ((-591 (-1171 |#2|)))) (-15 -3057 ((-3 |#1| "failed") |#1|)) (-15 -1838 ((-3 |#1| "failed") |#1|)) (-15 -4163 ((-3 |#1| "failed") |#1|)) (-15 -2590 ((-108))) (-15 -1407 ((-108))) (-15 -3915 ((-108))) (-15 -3704 ((-108))) (-15 -2248 ((-108))) (-15 -2688 ((-108))) (-15 -1307 ((-108))) (-15 -4160 ((-108))) (-15 -2772 ((-108))) (-15 -2448 ((-108))) (-15 -1532 ((-108))) (-15 -2938 ((-108))) (-15 -2826 ((-108))) (-15 -1806 ((-108))) (-15 -3158 ((-1085 |#2|) |#1|)) (-15 -2253 ((-1085 |#2|) |#1|)) (-15 -4094 ((-631 |#2|) (-1171 |#1|))) (-15 -1548 ((-631 |#2|) (-1171 |#1|))) (-15 -2449 (|#2| (-1171 |#1|))) (-15 -1368 (|#2| (-1171 |#1|))) (-15 -4171 (|#1| (-1171 |#2|) (-1171 |#1|))) (-15 -3572 ((-631 |#2|) (-1171 |#1|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1| (-1171 |#1|))) (-15 -3996 (|#2| |#1|)) (-15 -3018 (|#2| |#1|)) (-15 -4011 (|#2| |#1|)) (-15 -4032 (|#2| |#1|)) (-15 -3711 ((-631 |#2|) |#1| (-1171 |#1|))) (-15 -3793 ((-631 |#2|) |#1| (-1171 |#1|))) (-15 -1593 ((-1171 (-631 |#2|)) (-1171 |#1|)))) (-345 |#2|) (-160)) (T -344))
+((-1806 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4)) (-4 *3 (-345 *4)))) (-2826 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4)) (-4 *3 (-345 *4)))) (-2938 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4)) (-4 *3 (-345 *4)))) (-1532 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4)) (-4 *3 (-345 *4)))) (-2448 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4)) (-4 *3 (-345 *4)))) (-2772 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4)) (-4 *3 (-345 *4)))) (-4160 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4)) (-4 *3 (-345 *4)))) (-1307 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4)) (-4 *3 (-345 *4)))) (-2688 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4)) (-4 *3 (-345 *4)))) (-2248 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4)) (-4 *3 (-345 *4)))) (-3704 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4)) (-4 *3 (-345 *4)))) (-3915 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4)) (-4 *3 (-345 *4)))) (-1407 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4)) (-4 *3 (-345 *4)))) (-2590 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4)) (-4 *3 (-345 *4)))) (-1640 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-591 (-1171 *4))) (-5 *1 (-344 *3 *4)) (-4 *3 (-345 *4)))))
+(-10 -8 (-15 -3473 ((-1085 |#2|) |#1|)) (-15 -1858 ((-1085 |#2|) |#1|)) (-15 -1640 ((-591 (-1171 |#2|)))) (-15 -3057 ((-3 |#1| "failed") |#1|)) (-15 -1838 ((-3 |#1| "failed") |#1|)) (-15 -4163 ((-3 |#1| "failed") |#1|)) (-15 -2590 ((-108))) (-15 -1407 ((-108))) (-15 -3915 ((-108))) (-15 -3704 ((-108))) (-15 -2248 ((-108))) (-15 -2688 ((-108))) (-15 -1307 ((-108))) (-15 -4160 ((-108))) (-15 -2772 ((-108))) (-15 -2448 ((-108))) (-15 -1532 ((-108))) (-15 -2938 ((-108))) (-15 -2826 ((-108))) (-15 -1806 ((-108))) (-15 -3158 ((-1085 |#2|) |#1|)) (-15 -2253 ((-1085 |#2|) |#1|)) (-15 -4094 ((-631 |#2|) (-1171 |#1|))) (-15 -1548 ((-631 |#2|) (-1171 |#1|))) (-15 -2449 (|#2| (-1171 |#1|))) (-15 -1368 (|#2| (-1171 |#1|))) (-15 -4171 (|#1| (-1171 |#2|) (-1171 |#1|))) (-15 -3572 ((-631 |#2|) (-1171 |#1|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1| (-1171 |#1|))) (-15 -3996 (|#2| |#1|)) (-15 -3018 (|#2| |#1|)) (-15 -4011 (|#2| |#1|)) (-15 -4032 (|#2| |#1|)) (-15 -3711 ((-631 |#2|) |#1| (-1171 |#1|))) (-15 -3793 ((-631 |#2|) |#1| (-1171 |#1|))) (-15 -1593 ((-1171 (-631 |#2|)) (-1171 |#1|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2999 (((-3 $ "failed")) 37 (|has| |#1| (-517)))) (-2157 (((-3 $ "failed") $ $) 19)) (-1593 (((-1171 (-631 |#1|)) (-1171 $)) 78)) (-2608 (((-1171 $)) 81)) (-3798 (($) 17 T CONST)) (-3160 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) 40 (|has| |#1| (-517)))) (-3624 (((-3 $ "failed")) 38 (|has| |#1| (-517)))) (-4094 (((-631 |#1|) (-1171 $)) 65)) (-4011 ((|#1| $) 74)) (-3711 (((-631 |#1|) $ (-1171 $)) 76)) (-3057 (((-3 $ "failed") $) 45 (|has| |#1| (-517)))) (-3433 (($ $ (-854)) 28)) (-3996 ((|#1| $) 72)) (-3473 (((-1085 |#1|) $) 42 (|has| |#1| (-517)))) (-2449 ((|#1| (-1171 $)) 67)) (-3158 (((-1085 |#1|) $) 63)) (-2772 (((-108)) 57)) (-4171 (($ (-1171 |#1|) (-1171 $)) 69)) (-4163 (((-3 $ "failed") $) 47 (|has| |#1| (-517)))) (-4073 (((-854)) 80)) (-3401 (((-108)) 54)) (-2462 (($ $ (-854)) 33)) (-3915 (((-108)) 50)) (-2590 (((-108)) 48)) (-2248 (((-108)) 52)) (-3121 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) 41 (|has| |#1| (-517)))) (-2659 (((-3 $ "failed")) 39 (|has| |#1| (-517)))) (-1548 (((-631 |#1|) (-1171 $)) 66)) (-4032 ((|#1| $) 75)) (-3793 (((-631 |#1|) $ (-1171 $)) 77)) (-1838 (((-3 $ "failed") $) 46 (|has| |#1| (-517)))) (-3447 (($ $ (-854)) 29)) (-3018 ((|#1| $) 73)) (-1858 (((-1085 |#1|) $) 43 (|has| |#1| (-517)))) (-1368 ((|#1| (-1171 $)) 68)) (-2253 (((-1085 |#1|) $) 64)) (-2448 (((-108)) 58)) (-2339 (((-1072) $) 9)) (-1407 (((-108)) 49)) (-3704 (((-108)) 51)) (-2688 (((-108)) 53)) (-2047 (((-1036) $) 10)) (-4160 (((-108)) 56)) (-3572 (((-1171 |#1|) $ (-1171 $)) 71) (((-631 |#1|) (-1171 $) (-1171 $)) 70)) (-2117 (((-591 (-885 |#1|)) (-1171 $)) 79)) (-3619 (($ $ $) 25)) (-1806 (((-108)) 62)) (-3022 (((-796) $) 11)) (-1640 (((-591 (-1171 |#1|))) 44 (|has| |#1| (-517)))) (-2392 (($ $ $ $) 26)) (-2938 (((-108)) 60)) (-2707 (($ $ $) 24)) (-2826 (((-108)) 61)) (-1532 (((-108)) 59)) (-1307 (((-108)) 55)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 30)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
+(((-345 |#1|) (-131) (-160)) (T -345))
+((-2608 (*1 *2) (-12 (-4 *3 (-160)) (-5 *2 (-1171 *1)) (-4 *1 (-345 *3)))) (-4073 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-854)))) (-2117 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160)) (-5 *2 (-591 (-885 *4))))) (-1593 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160)) (-5 *2 (-1171 (-631 *4))))) (-3793 (*1 *2 *1 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160)) (-5 *2 (-631 *4)))) (-3711 (*1 *2 *1 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160)) (-5 *2 (-631 *4)))) (-4032 (*1 *2 *1) (-12 (-4 *1 (-345 *2)) (-4 *2 (-160)))) (-4011 (*1 *2 *1) (-12 (-4 *1 (-345 *2)) (-4 *2 (-160)))) (-3018 (*1 *2 *1) (-12 (-4 *1 (-345 *2)) (-4 *2 (-160)))) (-3996 (*1 *2 *1) (-12 (-4 *1 (-345 *2)) (-4 *2 (-160)))) (-3572 (*1 *2 *1 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160)) (-5 *2 (-1171 *4)))) (-3572 (*1 *2 *3 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160)) (-5 *2 (-631 *4)))) (-4171 (*1 *1 *2 *3) (-12 (-5 *2 (-1171 *4)) (-5 *3 (-1171 *1)) (-4 *4 (-160)) (-4 *1 (-345 *4)))) (-1368 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *2)) (-4 *2 (-160)))) (-2449 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *2)) (-4 *2 (-160)))) (-1548 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160)) (-5 *2 (-631 *4)))) (-4094 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160)) (-5 *2 (-631 *4)))) (-2253 (*1 *2 *1) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-1085 *3)))) (-3158 (*1 *2 *1) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-1085 *3)))) (-1806 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))) (-2826 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))) (-2938 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))) (-1532 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))) (-2448 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))) (-2772 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))) (-4160 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))) (-1307 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))) (-3401 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))) (-2688 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))) (-2248 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))) (-3704 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))) (-3915 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))) (-1407 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))) (-2590 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))) (-4163 (*1 *1 *1) (|partial| -12 (-4 *1 (-345 *2)) (-4 *2 (-160)) (-4 *2 (-517)))) (-1838 (*1 *1 *1) (|partial| -12 (-4 *1 (-345 *2)) (-4 *2 (-160)) (-4 *2 (-517)))) (-3057 (*1 *1 *1) (|partial| -12 (-4 *1 (-345 *2)) (-4 *2 (-160)) (-4 *2 (-517)))) (-1640 (*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-4 *3 (-517)) (-5 *2 (-591 (-1171 *3))))) (-1858 (*1 *2 *1) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-4 *3 (-517)) (-5 *2 (-1085 *3)))) (-3473 (*1 *2 *1) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-4 *3 (-517)) (-5 *2 (-1085 *3)))) (-3121 (*1 *2) (|partial| -12 (-4 *3 (-517)) (-4 *3 (-160)) (-5 *2 (-2 (|:| |particular| *1) (|:| -4003 (-591 *1)))) (-4 *1 (-345 *3)))) (-3160 (*1 *2) (|partial| -12 (-4 *3 (-517)) (-4 *3 (-160)) (-5 *2 (-2 (|:| |particular| *1) (|:| -4003 (-591 *1)))) (-4 *1 (-345 *3)))) (-2659 (*1 *1) (|partial| -12 (-4 *1 (-345 *2)) (-4 *2 (-517)) (-4 *2 (-160)))) (-3624 (*1 *1) (|partial| -12 (-4 *1 (-345 *2)) (-4 *2 (-517)) (-4 *2 (-160)))) (-2999 (*1 *1) (|partial| -12 (-4 *1 (-345 *2)) (-4 *2 (-517)) (-4 *2 (-160)))))
+(-13 (-686 |t#1|) (-10 -8 (-15 -2608 ((-1171 $))) (-15 -4073 ((-854))) (-15 -2117 ((-591 (-885 |t#1|)) (-1171 $))) (-15 -1593 ((-1171 (-631 |t#1|)) (-1171 $))) (-15 -3793 ((-631 |t#1|) $ (-1171 $))) (-15 -3711 ((-631 |t#1|) $ (-1171 $))) (-15 -4032 (|t#1| $)) (-15 -4011 (|t#1| $)) (-15 -3018 (|t#1| $)) (-15 -3996 (|t#1| $)) (-15 -3572 ((-1171 |t#1|) $ (-1171 $))) (-15 -3572 ((-631 |t#1|) (-1171 $) (-1171 $))) (-15 -4171 ($ (-1171 |t#1|) (-1171 $))) (-15 -1368 (|t#1| (-1171 $))) (-15 -2449 (|t#1| (-1171 $))) (-15 -1548 ((-631 |t#1|) (-1171 $))) (-15 -4094 ((-631 |t#1|) (-1171 $))) (-15 -2253 ((-1085 |t#1|) $)) (-15 -3158 ((-1085 |t#1|) $)) (-15 -1806 ((-108))) (-15 -2826 ((-108))) (-15 -2938 ((-108))) (-15 -1532 ((-108))) (-15 -2448 ((-108))) (-15 -2772 ((-108))) (-15 -4160 ((-108))) (-15 -1307 ((-108))) (-15 -3401 ((-108))) (-15 -2688 ((-108))) (-15 -2248 ((-108))) (-15 -3704 ((-108))) (-15 -3915 ((-108))) (-15 -1407 ((-108))) (-15 -2590 ((-108))) (IF (|has| |t#1| (-517)) (PROGN (-15 -4163 ((-3 $ "failed") $)) (-15 -1838 ((-3 $ "failed") $)) (-15 -3057 ((-3 $ "failed") $)) (-15 -1640 ((-591 (-1171 |t#1|)))) (-15 -1858 ((-1085 |t#1|) $)) (-15 -3473 ((-1085 |t#1|) $)) (-15 -3121 ((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed"))) (-15 -3160 ((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed"))) (-15 -2659 ((-3 $ "failed"))) (-15 -3624 ((-3 $ "failed"))) (-15 -2999 ((-3 $ "failed"))) (-6 -4247)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 |#1|) . T) ((-659 |#1|) . T) ((-662) . T) ((-686 |#1|) . T) ((-703) . T) ((-981 |#1|) . T) ((-1018) . T))
+((-3008 (((-108) $ $) 7)) (-3032 (((-712)) 16)) (-3377 (($) 13)) (-3016 (((-854) $) 14)) (-2339 (((-1072) $) 9)) (-2226 (($ (-854)) 15)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4096 (((-108) $ $) 6)))
+(((-346) (-131)) (T -346))
+((-3032 (*1 *2) (-12 (-4 *1 (-346)) (-5 *2 (-712)))) (-2226 (*1 *1 *2) (-12 (-5 *2 (-854)) (-4 *1 (-346)))) (-3016 (*1 *2 *1) (-12 (-4 *1 (-346)) (-5 *2 (-854)))) (-3377 (*1 *1) (-4 *1 (-346))))
+(-13 (-1018) (-10 -8 (-15 -3032 ((-712))) (-15 -2226 ($ (-854))) (-15 -3016 ((-854) $)) (-15 -3377 ($))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-2796 (((-631 |#2|) (-1171 $)) 41)) (-4171 (($ (-1171 |#2|) (-1171 $)) 35)) (-3922 (((-631 |#2|) $ (-1171 $)) 43)) (-2976 ((|#2| (-1171 $)) 13)) (-3572 (((-1171 |#2|) $ (-1171 $)) NIL) (((-631 |#2|) (-1171 $) (-1171 $)) 25)))
+(((-347 |#1| |#2| |#3|) (-10 -8 (-15 -2796 ((-631 |#2|) (-1171 |#1|))) (-15 -2976 (|#2| (-1171 |#1|))) (-15 -4171 (|#1| (-1171 |#2|) (-1171 |#1|))) (-15 -3572 ((-631 |#2|) (-1171 |#1|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1| (-1171 |#1|))) (-15 -3922 ((-631 |#2|) |#1| (-1171 |#1|)))) (-348 |#2| |#3|) (-160) (-1147 |#2|)) (T -347))
+NIL
+(-10 -8 (-15 -2796 ((-631 |#2|) (-1171 |#1|))) (-15 -2976 (|#2| (-1171 |#1|))) (-15 -4171 (|#1| (-1171 |#2|) (-1171 |#1|))) (-15 -3572 ((-631 |#2|) (-1171 |#1|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1| (-1171 |#1|))) (-15 -3922 ((-631 |#2|) |#1| (-1171 |#1|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2796 (((-631 |#1|) (-1171 $)) 46)) (-2569 ((|#1| $) 52)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4171 (($ (-1171 |#1|) (-1171 $)) 48)) (-3922 (((-631 |#1|) $ (-1171 $)) 53)) (-4163 (((-3 $ "failed") $) 34)) (-4073 (((-854)) 54)) (-2824 (((-108) $) 31)) (-2771 ((|#1| $) 51)) (-1382 ((|#2| $) 44 (|has| |#1| (-341)))) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2976 ((|#1| (-1171 $)) 47)) (-3572 (((-1171 |#1|) $ (-1171 $)) 50) (((-631 |#1|) (-1171 $) (-1171 $)) 49)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 37)) (-1437 (((-3 $ "failed") $) 43 (|has| |#1| (-136)))) (-3806 ((|#2| $) 45)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
+(((-348 |#1| |#2|) (-131) (-160) (-1147 |t#1|)) (T -348))
+((-4073 (*1 *2) (-12 (-4 *1 (-348 *3 *4)) (-4 *3 (-160)) (-4 *4 (-1147 *3)) (-5 *2 (-854)))) (-3922 (*1 *2 *1 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-348 *4 *5)) (-4 *4 (-160)) (-4 *5 (-1147 *4)) (-5 *2 (-631 *4)))) (-2569 (*1 *2 *1) (-12 (-4 *1 (-348 *2 *3)) (-4 *3 (-1147 *2)) (-4 *2 (-160)))) (-2771 (*1 *2 *1) (-12 (-4 *1 (-348 *2 *3)) (-4 *3 (-1147 *2)) (-4 *2 (-160)))) (-3572 (*1 *2 *1 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-348 *4 *5)) (-4 *4 (-160)) (-4 *5 (-1147 *4)) (-5 *2 (-1171 *4)))) (-3572 (*1 *2 *3 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-348 *4 *5)) (-4 *4 (-160)) (-4 *5 (-1147 *4)) (-5 *2 (-631 *4)))) (-4171 (*1 *1 *2 *3) (-12 (-5 *2 (-1171 *4)) (-5 *3 (-1171 *1)) (-4 *4 (-160)) (-4 *1 (-348 *4 *5)) (-4 *5 (-1147 *4)))) (-2976 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-348 *2 *4)) (-4 *4 (-1147 *2)) (-4 *2 (-160)))) (-2796 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-348 *4 *5)) (-4 *4 (-160)) (-4 *5 (-1147 *4)) (-5 *2 (-631 *4)))) (-3806 (*1 *2 *1) (-12 (-4 *1 (-348 *3 *2)) (-4 *3 (-160)) (-4 *2 (-1147 *3)))) (-1382 (*1 *2 *1) (-12 (-4 *1 (-348 *3 *2)) (-4 *3 (-160)) (-4 *3 (-341)) (-4 *2 (-1147 *3)))))
+(-13 (-37 |t#1|) (-10 -8 (-15 -4073 ((-854))) (-15 -3922 ((-631 |t#1|) $ (-1171 $))) (-15 -2569 (|t#1| $)) (-15 -2771 (|t#1| $)) (-15 -3572 ((-1171 |t#1|) $ (-1171 $))) (-15 -3572 ((-631 |t#1|) (-1171 $) (-1171 $))) (-15 -4171 ($ (-1171 |t#1|) (-1171 $))) (-15 -2976 (|t#1| (-1171 $))) (-15 -2796 ((-631 |t#1|) (-1171 $))) (-15 -3806 (|t#2| $)) (IF (|has| |t#1| (-341)) (-15 -1382 (|t#2| $)) |%noBranch|) (IF (|has| |t#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |t#1| (-136)) (-6 (-136)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-593 |#1|) . T) ((-593 $) . T) ((-659 |#1|) . T) ((-668) . T) ((-981 |#1|) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-1526 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 23)) (-1227 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 15)) (-1340 ((|#4| (-1 |#3| |#1|) |#2|) 21)))
+(((-349 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1340 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1227 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1526 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1125) (-351 |#1|) (-1125) (-351 |#3|)) (T -349))
+((-1526 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1125)) (-4 *5 (-1125)) (-4 *2 (-351 *5)) (-5 *1 (-349 *6 *4 *5 *2)) (-4 *4 (-351 *6)))) (-1227 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1125)) (-4 *2 (-1125)) (-5 *1 (-349 *5 *4 *2 *6)) (-4 *4 (-351 *5)) (-4 *6 (-351 *2)))) (-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-4 *2 (-351 *6)) (-5 *1 (-349 *5 *4 *6 *2)) (-4 *4 (-351 *5)))))
+(-10 -7 (-15 -1340 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1227 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1526 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-3203 (((-108) (-1 (-108) |#2| |#2|) $) NIL) (((-108) $) 18)) (-4026 (($ (-1 (-108) |#2| |#2|) $) NIL) (($ $) 28)) (-3327 (($ (-1 (-108) |#2| |#2|) $) 27) (($ $) 22)) (-2617 (($ $) 25)) (-3004 (((-525) (-1 (-108) |#2|) $) NIL) (((-525) |#2| $) 11) (((-525) |#2| $ (-525)) NIL)) (-2131 (($ (-1 (-108) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
+(((-350 |#1| |#2|) (-10 -8 (-15 -4026 (|#1| |#1|)) (-15 -4026 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -3203 ((-108) |#1|)) (-15 -3327 (|#1| |#1|)) (-15 -2131 (|#1| |#1| |#1|)) (-15 -3004 ((-525) |#2| |#1| (-525))) (-15 -3004 ((-525) |#2| |#1|)) (-15 -3004 ((-525) (-1 (-108) |#2|) |#1|)) (-15 -3203 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3327 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -2617 (|#1| |#1|)) (-15 -2131 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|))) (-351 |#2|) (-1125)) (T -350))
+NIL
+(-10 -8 (-15 -4026 (|#1| |#1|)) (-15 -4026 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -3203 ((-108) |#1|)) (-15 -3327 (|#1| |#1|)) (-15 -2131 (|#1| |#1| |#1|)) (-15 -3004 ((-525) |#2| |#1| (-525))) (-15 -3004 ((-525) |#2| |#1|)) (-15 -3004 ((-525) (-1 (-108) |#2|) |#1|)) (-15 -3203 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3327 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -2617 (|#1| |#1|)) (-15 -2131 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3296 (((-1176) $ (-525) (-525)) 40 (|has| $ (-6 -4251)))) (-3203 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-788)))) (-4026 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4251))) (($ $) 88 (-12 (|has| |#1| (-788)) (|has| $ (-6 -4251))))) (-3327 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-788)))) (-3891 (((-108) $ (-712)) 8)) (-3186 ((|#1| $ (-525) |#1|) 52 (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) 58 (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4250)))) (-3798 (($) 7 T CONST)) (-2598 (($ $) 90 (|has| $ (-6 -4251)))) (-2617 (($ $) 100)) (-3098 (($ $) 78 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ |#1| $) 77 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4250)))) (-3255 ((|#1| $ (-525) |#1|) 53 (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) 51)) (-3004 (((-525) (-1 (-108) |#1|) $) 97) (((-525) |#1| $) 96 (|has| |#1| (-1018))) (((-525) |#1| $ (-525)) 95 (|has| |#1| (-1018)))) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-1268 (($ (-712) |#1|) 69)) (-2910 (((-108) $ (-712)) 9)) (-3630 (((-525) $) 43 (|has| (-525) (-788)))) (-3741 (($ $ $) 87 (|has| |#1| (-788)))) (-2131 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-788)))) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3468 (((-525) $) 44 (|has| (-525) (-788)))) (-2478 (($ $ $) 86 (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-4189 (($ |#1| $ (-525)) 60) (($ $ $ (-525)) 59)) (-2511 (((-591 (-525)) $) 46)) (-2791 (((-108) (-525) $) 47)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-3066 ((|#1| $) 42 (|has| (-525) (-788)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-1941 (($ $ |#1|) 41 (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-1615 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) 48)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ (-525) |#1|) 50) ((|#1| $ (-525)) 49) (($ $ (-1138 (-525))) 63)) (-2777 (($ $ (-525)) 62) (($ $ (-1138 (-525))) 61)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-4063 (($ $ $ (-525)) 91 (|has| $ (-6 -4251)))) (-3199 (($ $) 13)) (-1408 (((-501) $) 79 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 70)) (-3690 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-591 $)) 65)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) 84 (|has| |#1| (-788)))) (-4119 (((-108) $ $) 83 (|has| |#1| (-788)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4126 (((-108) $ $) 85 (|has| |#1| (-788)))) (-4112 (((-108) $ $) 82 (|has| |#1| (-788)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-351 |#1|) (-131) (-1125)) (T -351))
+((-2131 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-351 *3)) (-4 *3 (-1125)))) (-2617 (*1 *1 *1) (-12 (-4 *1 (-351 *2)) (-4 *2 (-1125)))) (-3327 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-351 *3)) (-4 *3 (-1125)))) (-3203 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *1 (-351 *4)) (-4 *4 (-1125)) (-5 *2 (-108)))) (-3004 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (-4 *1 (-351 *4)) (-4 *4 (-1125)) (-5 *2 (-525)))) (-3004 (*1 *2 *3 *1) (-12 (-4 *1 (-351 *3)) (-4 *3 (-1125)) (-4 *3 (-1018)) (-5 *2 (-525)))) (-3004 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-351 *3)) (-4 *3 (-1125)) (-4 *3 (-1018)))) (-2131 (*1 *1 *1 *1) (-12 (-4 *1 (-351 *2)) (-4 *2 (-1125)) (-4 *2 (-788)))) (-3327 (*1 *1 *1) (-12 (-4 *1 (-351 *2)) (-4 *2 (-1125)) (-4 *2 (-788)))) (-3203 (*1 *2 *1) (-12 (-4 *1 (-351 *3)) (-4 *3 (-1125)) (-4 *3 (-788)) (-5 *2 (-108)))) (-4063 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-525)) (|has| *1 (-6 -4251)) (-4 *1 (-351 *3)) (-4 *3 (-1125)))) (-2598 (*1 *1 *1) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-351 *2)) (-4 *2 (-1125)))) (-4026 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (|has| *1 (-6 -4251)) (-4 *1 (-351 *3)) (-4 *3 (-1125)))) (-4026 (*1 *1 *1) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-351 *2)) (-4 *2 (-1125)) (-4 *2 (-788)))))
+(-13 (-596 |t#1|) (-10 -8 (-6 -4250) (-15 -2131 ($ (-1 (-108) |t#1| |t#1|) $ $)) (-15 -2617 ($ $)) (-15 -3327 ($ (-1 (-108) |t#1| |t#1|) $)) (-15 -3203 ((-108) (-1 (-108) |t#1| |t#1|) $)) (-15 -3004 ((-525) (-1 (-108) |t#1|) $)) (IF (|has| |t#1| (-1018)) (PROGN (-15 -3004 ((-525) |t#1| $)) (-15 -3004 ((-525) |t#1| $ (-525)))) |%noBranch|) (IF (|has| |t#1| (-788)) (PROGN (-6 (-788)) (-15 -2131 ($ $ $)) (-15 -3327 ($ $)) (-15 -3203 ((-108) $))) |%noBranch|) (IF (|has| $ (-6 -4251)) (PROGN (-15 -4063 ($ $ $ (-525))) (-15 -2598 ($ $)) (-15 -4026 ($ (-1 (-108) |t#1| |t#1|) $)) (IF (|has| |t#1| (-788)) (-15 -4026 ($ $)) |%noBranch|)) |%noBranch|)))
+(((-33) . T) ((-97) -3321 (|has| |#1| (-1018)) (|has| |#1| (-788))) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-788)) (|has| |#1| (-565 (-796)))) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-265 #0=(-525) |#1|) . T) ((-267 #0# |#1|) . T) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-558 #0# |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-596 |#1|) . T) ((-788) |has| |#1| (-788)) ((-1018) -3321 (|has| |#1| (-1018)) (|has| |#1| (-788))) ((-1125) . T))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3531 (((-591 |#1|) $) 32)) (-1931 (($ $ (-712)) 33)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-1584 (((-1193 |#1| |#2|) (-1193 |#1| |#2|) $) 36)) (-2457 (($ $) 34)) (-2811 (((-1193 |#1| |#2|) (-1193 |#1| |#2|) $) 37)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-4132 (($ $ |#1| $) 31) (($ $ (-591 |#1|) (-591 $)) 30)) (-1316 (((-712) $) 38)) (-3036 (($ $ $) 29)) (-3022 (((-796) $) 11) (($ |#1|) 41) (((-1184 |#1| |#2|) $) 40) (((-1193 |#1| |#2|) $) 39)) (-3482 ((|#2| (-1193 |#1| |#2|) $) 42)) (-4191 (($) 18 T CONST)) (-4031 (($ (-616 |#1|)) 35)) (-4096 (((-108) $ $) 6)) (-4173 (($ $ |#2|) 28 (|has| |#2| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ |#2| $) 23) (($ $ |#2|) 26)))
+(((-352 |#1| |#2|) (-131) (-788) (-160)) (T -352))
+((-3482 (*1 *2 *3 *1) (-12 (-5 *3 (-1193 *4 *2)) (-4 *1 (-352 *4 *2)) (-4 *4 (-788)) (-4 *2 (-160)))) (-3022 (*1 *1 *2) (-12 (-4 *1 (-352 *2 *3)) (-4 *2 (-788)) (-4 *3 (-160)))) (-3022 (*1 *2 *1) (-12 (-4 *1 (-352 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160)) (-5 *2 (-1184 *3 *4)))) (-3022 (*1 *2 *1) (-12 (-4 *1 (-352 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160)) (-5 *2 (-1193 *3 *4)))) (-1316 (*1 *2 *1) (-12 (-4 *1 (-352 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160)) (-5 *2 (-712)))) (-2811 (*1 *2 *2 *1) (-12 (-5 *2 (-1193 *3 *4)) (-4 *1 (-352 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160)))) (-1584 (*1 *2 *2 *1) (-12 (-5 *2 (-1193 *3 *4)) (-4 *1 (-352 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160)))) (-4031 (*1 *1 *2) (-12 (-5 *2 (-616 *3)) (-4 *3 (-788)) (-4 *1 (-352 *3 *4)) (-4 *4 (-160)))) (-2457 (*1 *1 *1) (-12 (-4 *1 (-352 *2 *3)) (-4 *2 (-788)) (-4 *3 (-160)))) (-1931 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-352 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160)))) (-3531 (*1 *2 *1) (-12 (-4 *1 (-352 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160)) (-5 *2 (-591 *3)))) (-4132 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-352 *2 *3)) (-4 *2 (-788)) (-4 *3 (-160)))) (-4132 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 *4)) (-5 *3 (-591 *1)) (-4 *1 (-352 *4 *5)) (-4 *4 (-788)) (-4 *5 (-160)))))
+(-13 (-582 |t#2|) (-10 -8 (-15 -3482 (|t#2| (-1193 |t#1| |t#2|) $)) (-15 -3022 ($ |t#1|)) (-15 -3022 ((-1184 |t#1| |t#2|) $)) (-15 -3022 ((-1193 |t#1| |t#2|) $)) (-15 -1316 ((-712) $)) (-15 -2811 ((-1193 |t#1| |t#2|) (-1193 |t#1| |t#2|) $)) (-15 -1584 ((-1193 |t#1| |t#2|) (-1193 |t#1| |t#2|) $)) (-15 -4031 ($ (-616 |t#1|))) (-15 -2457 ($ $)) (-15 -1931 ($ $ (-712))) (-15 -3531 ((-591 |t#1|) $)) (-15 -4132 ($ $ |t#1| $)) (-15 -4132 ($ $ (-591 |t#1|) (-591 $)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#2| |#2|) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 |#2|) . T) ((-582 |#2|) . T) ((-659 |#2|) . T) ((-981 |#2|) . T) ((-1018) . T))
+((-3632 ((|#2| (-1 (-108) |#1| |#1|) |#2|) 24)) (-2389 ((|#2| (-1 (-108) |#1| |#1|) |#2|) 13)) (-3616 ((|#2| (-1 (-108) |#1| |#1|) |#2|) 22)))
+(((-353 |#1| |#2|) (-10 -7 (-15 -2389 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -3616 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -3632 (|#2| (-1 (-108) |#1| |#1|) |#2|))) (-1125) (-13 (-351 |#1|) (-10 -7 (-6 -4251)))) (T -353))
+((-3632 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1125)) (-5 *1 (-353 *4 *2)) (-4 *2 (-13 (-351 *4) (-10 -7 (-6 -4251)))))) (-3616 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1125)) (-5 *1 (-353 *4 *2)) (-4 *2 (-13 (-351 *4) (-10 -7 (-6 -4251)))))) (-2389 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1125)) (-5 *1 (-353 *4 *2)) (-4 *2 (-13 (-351 *4) (-10 -7 (-6 -4251)))))))
+(-10 -7 (-15 -2389 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -3616 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -3632 (|#2| (-1 (-108) |#1| |#1|) |#2|)))
+((-3305 (((-631 |#2|) (-631 $)) NIL) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) NIL) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 22) (((-631 (-525)) (-631 $)) 14)))
+(((-354 |#1| |#2|) (-10 -8 (-15 -3305 ((-631 (-525)) (-631 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-631 |#2|) (-631 |#1|)))) (-355 |#2|) (-975)) (T -354))
+NIL
+(-10 -8 (-15 -3305 ((-631 (-525)) (-631 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-631 |#2|) (-631 |#1|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-3305 (((-631 |#1|) (-631 $)) 36) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) 35) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 43 (|has| |#1| (-587 (-525)))) (((-631 (-525)) (-631 $)) 42 (|has| |#1| (-587 (-525))))) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11) (($ (-525)) 28)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-355 |#1|) (-131) (-975)) (T -355))
+NIL
+(-13 (-587 |t#1|) (-10 -7 (IF (|has| |t#1| (-587 (-525))) (-6 (-587 (-525))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 $) . T) ((-587 (-525)) |has| |#1| (-587 (-525))) ((-587 |#1|) . T) ((-668) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-4004 (((-591 (-273 (-885 (-157 |#1|)))) (-273 (-385 (-885 (-157 (-525))))) |#1|) 51) (((-591 (-273 (-885 (-157 |#1|)))) (-385 (-885 (-157 (-525)))) |#1|) 50) (((-591 (-591 (-273 (-885 (-157 |#1|))))) (-591 (-273 (-385 (-885 (-157 (-525)))))) |#1|) 47) (((-591 (-591 (-273 (-885 (-157 |#1|))))) (-591 (-385 (-885 (-157 (-525))))) |#1|) 41)) (-2274 (((-591 (-591 (-157 |#1|))) (-591 (-385 (-885 (-157 (-525))))) (-591 (-1089)) |#1|) 30) (((-591 (-157 |#1|)) (-385 (-885 (-157 (-525)))) |#1|) 18)))
+(((-356 |#1|) (-10 -7 (-15 -4004 ((-591 (-591 (-273 (-885 (-157 |#1|))))) (-591 (-385 (-885 (-157 (-525))))) |#1|)) (-15 -4004 ((-591 (-591 (-273 (-885 (-157 |#1|))))) (-591 (-273 (-385 (-885 (-157 (-525)))))) |#1|)) (-15 -4004 ((-591 (-273 (-885 (-157 |#1|)))) (-385 (-885 (-157 (-525)))) |#1|)) (-15 -4004 ((-591 (-273 (-885 (-157 |#1|)))) (-273 (-385 (-885 (-157 (-525))))) |#1|)) (-15 -2274 ((-591 (-157 |#1|)) (-385 (-885 (-157 (-525)))) |#1|)) (-15 -2274 ((-591 (-591 (-157 |#1|))) (-591 (-385 (-885 (-157 (-525))))) (-591 (-1089)) |#1|))) (-13 (-341) (-786))) (T -356))
+((-2274 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-591 (-385 (-885 (-157 (-525)))))) (-5 *4 (-591 (-1089))) (-5 *2 (-591 (-591 (-157 *5)))) (-5 *1 (-356 *5)) (-4 *5 (-13 (-341) (-786))))) (-2274 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-885 (-157 (-525))))) (-5 *2 (-591 (-157 *4))) (-5 *1 (-356 *4)) (-4 *4 (-13 (-341) (-786))))) (-4004 (*1 *2 *3 *4) (-12 (-5 *3 (-273 (-385 (-885 (-157 (-525)))))) (-5 *2 (-591 (-273 (-885 (-157 *4))))) (-5 *1 (-356 *4)) (-4 *4 (-13 (-341) (-786))))) (-4004 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-885 (-157 (-525))))) (-5 *2 (-591 (-273 (-885 (-157 *4))))) (-5 *1 (-356 *4)) (-4 *4 (-13 (-341) (-786))))) (-4004 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-273 (-385 (-885 (-157 (-525))))))) (-5 *2 (-591 (-591 (-273 (-885 (-157 *4)))))) (-5 *1 (-356 *4)) (-4 *4 (-13 (-341) (-786))))) (-4004 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-385 (-885 (-157 (-525)))))) (-5 *2 (-591 (-591 (-273 (-885 (-157 *4)))))) (-5 *1 (-356 *4)) (-4 *4 (-13 (-341) (-786))))))
+(-10 -7 (-15 -4004 ((-591 (-591 (-273 (-885 (-157 |#1|))))) (-591 (-385 (-885 (-157 (-525))))) |#1|)) (-15 -4004 ((-591 (-591 (-273 (-885 (-157 |#1|))))) (-591 (-273 (-385 (-885 (-157 (-525)))))) |#1|)) (-15 -4004 ((-591 (-273 (-885 (-157 |#1|)))) (-385 (-885 (-157 (-525)))) |#1|)) (-15 -4004 ((-591 (-273 (-885 (-157 |#1|)))) (-273 (-385 (-885 (-157 (-525))))) |#1|)) (-15 -2274 ((-591 (-157 |#1|)) (-385 (-885 (-157 (-525)))) |#1|)) (-15 -2274 ((-591 (-591 (-157 |#1|))) (-591 (-385 (-885 (-157 (-525))))) (-591 (-1089)) |#1|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 33)) (-1508 (((-525) $) 55)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2121 (($ $) 110)) (-1987 (($ $) 82)) (-3169 (($ $) 71)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1361 (($ $) 44)) (-1947 (((-108) $ $) NIL)) (-1431 (($ $) 80)) (-3144 (($ $) 69)) (-3329 (((-525) $) 64)) (-3427 (($ $ (-525)) 62)) (-1719 (($ $) NIL)) (-1321 (($ $) NIL)) (-3798 (($) NIL T CONST)) (-2562 (($ $) 112)) (-1251 (((-3 (-525) "failed") $) 189) (((-3 (-385 (-525)) "failed") $) 185)) (-3528 (((-525) $) 187) (((-385 (-525)) $) 183)) (-2129 (($ $ $) NIL)) (-1619 (((-525) $ $) 102)) (-4163 (((-3 $ "failed") $) 114)) (-2530 (((-385 (-525)) $ (-712)) 190) (((-385 (-525)) $ (-712) (-712)) 182)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2591 (((-854)) 73) (((-854) (-854)) 98 (|has| $ (-6 -4241)))) (-2134 (((-108) $) 106)) (-1784 (($) 40)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL)) (-1411 (((-1176) (-712)) 152)) (-3801 (((-1176)) 157) (((-1176) (-712)) 158)) (-2308 (((-1176)) 159) (((-1176) (-712)) 160)) (-3397 (((-1176)) 155) (((-1176) (-712)) 156)) (-3873 (((-525) $) 58)) (-2824 (((-108) $) 104)) (-3956 (($ $ (-525)) NIL)) (-1798 (($ $) 48)) (-2771 (($ $) NIL)) (-2732 (((-108) $) 35)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3741 (($ $ $) NIL) (($) NIL (-12 (-2247 (|has| $ (-6 -4233))) (-2247 (|has| $ (-6 -4241)))))) (-2478 (($ $ $) NIL) (($) 99 (-12 (-2247 (|has| $ (-6 -4233))) (-2247 (|has| $ (-6 -4241)))))) (-3855 (((-525) $) 17)) (-1714 (($) 87) (($ $) 92)) (-2897 (($) 91) (($ $) 93)) (-1488 (($ $) 83)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 116)) (-3241 (((-854) (-525)) 43 (|has| $ (-6 -4241)))) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3093 (($ $) 53)) (-2662 (($ $) 109)) (-2286 (($ (-525) (-525)) 107) (($ (-525) (-525) (-854)) 108)) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-2008 (((-525) $) 19)) (-2136 (($) 94)) (-1409 (($ $) 79)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2603 (((-854)) 100) (((-854) (-854)) 101 (|has| $ (-6 -4241)))) (-3266 (($ $ (-712)) NIL) (($ $) 115)) (-1301 (((-854) (-525)) 47 (|has| $ (-6 -4241)))) (-1502 (($ $) NIL)) (-1333 (($ $) NIL)) (-1996 (($ $) NIL)) (-1309 (($ $) NIL)) (-1973 (($ $) 81)) (-3156 (($ $) 70)) (-1408 (((-357) $) 175) (((-205) $) 177) (((-825 (-357)) $) NIL) (((-1072) $) 162) (((-501) $) 173) (($ (-205)) 181)) (-3022 (((-796) $) 164) (($ (-525)) 186) (($ $) NIL) (($ (-385 (-525))) NIL) (($ (-525)) 186) (($ (-385 (-525))) NIL) (((-205) $) 178)) (-2128 (((-712)) NIL)) (-3862 (($ $) 111)) (-3759 (((-854)) 54) (((-854) (-854)) 66 (|has| $ (-6 -4241)))) (-2672 (((-854)) 103)) (-1563 (($ $) 86)) (-1371 (($ $) 46) (($ $ $) 52)) (-2495 (((-108) $ $) NIL)) (-1515 (($ $) 84)) (-1346 (($ $) 37)) (-1591 (($ $) NIL)) (-1400 (($ $) NIL)) (-3277 (($ $) NIL)) (-1415 (($ $) NIL)) (-1578 (($ $) NIL)) (-1385 (($ $) NIL)) (-1527 (($ $) 85)) (-1358 (($ $) 49)) (-1539 (($ $) 51)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) 34 T CONST)) (-4197 (($) 38 T CONST)) (-2563 (((-1072) $) 27) (((-1072) $ (-108)) 29) (((-1176) (-763) $) 30) (((-1176) (-763) $ (-108)) 31)) (-4196 (($ $ (-712)) NIL) (($ $) NIL)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 39)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 42)) (-4173 (($ $ $) 45) (($ $ (-525)) 41)) (-4164 (($ $) 36) (($ $ $) 50)) (-4156 (($ $ $) 61)) (** (($ $ (-854)) 67) (($ $ (-712)) NIL) (($ $ (-525)) 88) (($ $ (-385 (-525))) 125) (($ $ $) 117)) (* (($ (-854) $) 65) (($ (-712) $) NIL) (($ (-525) $) 68) (($ $ $) 60) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL)))
+(((-357) (-13 (-382) (-213) (-566 (-1072)) (-769) (-565 (-205)) (-1111) (-566 (-501)) (-10 -8 (-15 -4173 ($ $ (-525))) (-15 ** ($ $ $)) (-15 -1798 ($ $)) (-15 -1619 ((-525) $ $)) (-15 -3427 ($ $ (-525))) (-15 -2530 ((-385 (-525)) $ (-712))) (-15 -2530 ((-385 (-525)) $ (-712) (-712))) (-15 -1714 ($)) (-15 -2897 ($)) (-15 -2136 ($)) (-15 -1371 ($ $ $)) (-15 -1714 ($ $)) (-15 -2897 ($ $)) (-15 -1408 ($ (-205))) (-15 -2308 ((-1176))) (-15 -2308 ((-1176) (-712))) (-15 -3397 ((-1176))) (-15 -3397 ((-1176) (-712))) (-15 -3801 ((-1176))) (-15 -3801 ((-1176) (-712))) (-15 -1411 ((-1176) (-712))) (-6 -4241) (-6 -4233)))) (T -357))
+((** (*1 *1 *1 *1) (-5 *1 (-357))) (-4173 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-357)))) (-1798 (*1 *1 *1) (-5 *1 (-357))) (-1619 (*1 *2 *1 *1) (-12 (-5 *2 (-525)) (-5 *1 (-357)))) (-3427 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-357)))) (-2530 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-5 *2 (-385 (-525))) (-5 *1 (-357)))) (-2530 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-712)) (-5 *2 (-385 (-525))) (-5 *1 (-357)))) (-1714 (*1 *1) (-5 *1 (-357))) (-2897 (*1 *1) (-5 *1 (-357))) (-2136 (*1 *1) (-5 *1 (-357))) (-1371 (*1 *1 *1 *1) (-5 *1 (-357))) (-1714 (*1 *1 *1) (-5 *1 (-357))) (-2897 (*1 *1 *1) (-5 *1 (-357))) (-1408 (*1 *1 *2) (-12 (-5 *2 (-205)) (-5 *1 (-357)))) (-2308 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-357)))) (-2308 (*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1176)) (-5 *1 (-357)))) (-3397 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-357)))) (-3397 (*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1176)) (-5 *1 (-357)))) (-3801 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-357)))) (-3801 (*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1176)) (-5 *1 (-357)))) (-1411 (*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1176)) (-5 *1 (-357)))))
+(-13 (-382) (-213) (-566 (-1072)) (-769) (-565 (-205)) (-1111) (-566 (-501)) (-10 -8 (-15 -4173 ($ $ (-525))) (-15 ** ($ $ $)) (-15 -1798 ($ $)) (-15 -1619 ((-525) $ $)) (-15 -3427 ($ $ (-525))) (-15 -2530 ((-385 (-525)) $ (-712))) (-15 -2530 ((-385 (-525)) $ (-712) (-712))) (-15 -1714 ($)) (-15 -2897 ($)) (-15 -2136 ($)) (-15 -1371 ($ $ $)) (-15 -1714 ($ $)) (-15 -2897 ($ $)) (-15 -1408 ($ (-205))) (-15 -2308 ((-1176))) (-15 -2308 ((-1176) (-712))) (-15 -3397 ((-1176))) (-15 -3397 ((-1176) (-712))) (-15 -3801 ((-1176))) (-15 -3801 ((-1176) (-712))) (-15 -1411 ((-1176) (-712))) (-6 -4241) (-6 -4233)))
+((-4039 (((-591 (-273 (-885 |#1|))) (-273 (-385 (-885 (-525)))) |#1|) 46) (((-591 (-273 (-885 |#1|))) (-385 (-885 (-525))) |#1|) 45) (((-591 (-591 (-273 (-885 |#1|)))) (-591 (-273 (-385 (-885 (-525))))) |#1|) 42) (((-591 (-591 (-273 (-885 |#1|)))) (-591 (-385 (-885 (-525)))) |#1|) 36)) (-2762 (((-591 |#1|) (-385 (-885 (-525))) |#1|) 20) (((-591 (-591 |#1|)) (-591 (-385 (-885 (-525)))) (-591 (-1089)) |#1|) 30)))
+(((-358 |#1|) (-10 -7 (-15 -4039 ((-591 (-591 (-273 (-885 |#1|)))) (-591 (-385 (-885 (-525)))) |#1|)) (-15 -4039 ((-591 (-591 (-273 (-885 |#1|)))) (-591 (-273 (-385 (-885 (-525))))) |#1|)) (-15 -4039 ((-591 (-273 (-885 |#1|))) (-385 (-885 (-525))) |#1|)) (-15 -4039 ((-591 (-273 (-885 |#1|))) (-273 (-385 (-885 (-525)))) |#1|)) (-15 -2762 ((-591 (-591 |#1|)) (-591 (-385 (-885 (-525)))) (-591 (-1089)) |#1|)) (-15 -2762 ((-591 |#1|) (-385 (-885 (-525))) |#1|))) (-13 (-786) (-341))) (T -358))
+((-2762 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-885 (-525)))) (-5 *2 (-591 *4)) (-5 *1 (-358 *4)) (-4 *4 (-13 (-786) (-341))))) (-2762 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-591 (-385 (-885 (-525))))) (-5 *4 (-591 (-1089))) (-5 *2 (-591 (-591 *5))) (-5 *1 (-358 *5)) (-4 *5 (-13 (-786) (-341))))) (-4039 (*1 *2 *3 *4) (-12 (-5 *3 (-273 (-385 (-885 (-525))))) (-5 *2 (-591 (-273 (-885 *4)))) (-5 *1 (-358 *4)) (-4 *4 (-13 (-786) (-341))))) (-4039 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-885 (-525)))) (-5 *2 (-591 (-273 (-885 *4)))) (-5 *1 (-358 *4)) (-4 *4 (-13 (-786) (-341))))) (-4039 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-273 (-385 (-885 (-525)))))) (-5 *2 (-591 (-591 (-273 (-885 *4))))) (-5 *1 (-358 *4)) (-4 *4 (-13 (-786) (-341))))) (-4039 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-385 (-885 (-525))))) (-5 *2 (-591 (-591 (-273 (-885 *4))))) (-5 *1 (-358 *4)) (-4 *4 (-13 (-786) (-341))))))
+(-10 -7 (-15 -4039 ((-591 (-591 (-273 (-885 |#1|)))) (-591 (-385 (-885 (-525)))) |#1|)) (-15 -4039 ((-591 (-591 (-273 (-885 |#1|)))) (-591 (-273 (-385 (-885 (-525))))) |#1|)) (-15 -4039 ((-591 (-273 (-885 |#1|))) (-385 (-885 (-525))) |#1|)) (-15 -4039 ((-591 (-273 (-885 |#1|))) (-273 (-385 (-885 (-525)))) |#1|)) (-15 -2762 ((-591 (-591 |#1|)) (-591 (-385 (-885 (-525)))) (-591 (-1089)) |#1|)) (-15 -2762 ((-591 |#1|) (-385 (-885 (-525))) |#1|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#2| "failed") $) 26)) (-3528 ((|#2| $) 28)) (-1710 (($ $) NIL)) (-4010 (((-712) $) 10)) (-1922 (((-591 $) $) 20)) (-2202 (((-108) $) NIL)) (-2548 (($ |#2| |#1|) 18)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-3865 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 14)) (-1661 ((|#2| $) 15)) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 45) (($ |#2|) 27)) (-3654 (((-591 |#1|) $) 17)) (-2560 ((|#1| $ |#2|) 47)) (-4191 (($) 29 T CONST)) (-1650 (((-591 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 13)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ |#1| $) 32) (($ $ |#1|) 33) (($ |#1| |#2|) 35) (($ |#2| |#1|) 36)))
+(((-359 |#1| |#2|) (-13 (-360 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|)))) (-975) (-788)) (T -359))
+((* (*1 *1 *2 *3) (-12 (-5 *1 (-359 *3 *2)) (-4 *3 (-975)) (-4 *2 (-788)))))
+(-13 (-360 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-1251 (((-3 |#2| "failed") $) 44)) (-3528 ((|#2| $) 43)) (-1710 (($ $) 30)) (-4010 (((-712) $) 34)) (-1922 (((-591 $) $) 35)) (-2202 (((-108) $) 38)) (-2548 (($ |#2| |#1|) 39)) (-1340 (($ (-1 |#1| |#1|) $) 40)) (-3865 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 31)) (-1661 ((|#2| $) 33)) (-1678 ((|#1| $) 32)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11) (($ |#2|) 45)) (-3654 (((-591 |#1|) $) 36)) (-2560 ((|#1| $ |#2|) 41)) (-4191 (($) 18 T CONST)) (-1650 (((-591 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 37)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26) (($ |#1| |#2|) 42)))
+(((-360 |#1| |#2|) (-131) (-975) (-1018)) (T -360))
+((* (*1 *1 *2 *3) (-12 (-4 *1 (-360 *2 *3)) (-4 *2 (-975)) (-4 *3 (-1018)))) (-2560 (*1 *2 *1 *3) (-12 (-4 *1 (-360 *2 *3)) (-4 *3 (-1018)) (-4 *2 (-975)))) (-1340 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-360 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1018)))) (-2548 (*1 *1 *2 *3) (-12 (-4 *1 (-360 *3 *2)) (-4 *3 (-975)) (-4 *2 (-1018)))) (-2202 (*1 *2 *1) (-12 (-4 *1 (-360 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1018)) (-5 *2 (-108)))) (-1650 (*1 *2 *1) (-12 (-4 *1 (-360 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1018)) (-5 *2 (-591 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-3654 (*1 *2 *1) (-12 (-4 *1 (-360 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1018)) (-5 *2 (-591 *3)))) (-1922 (*1 *2 *1) (-12 (-4 *3 (-975)) (-4 *4 (-1018)) (-5 *2 (-591 *1)) (-4 *1 (-360 *3 *4)))) (-4010 (*1 *2 *1) (-12 (-4 *1 (-360 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1018)) (-5 *2 (-712)))) (-1661 (*1 *2 *1) (-12 (-4 *1 (-360 *3 *2)) (-4 *3 (-975)) (-4 *2 (-1018)))) (-1678 (*1 *2 *1) (-12 (-4 *1 (-360 *2 *3)) (-4 *3 (-1018)) (-4 *2 (-975)))) (-3865 (*1 *2 *1) (-12 (-4 *1 (-360 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1018)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-1710 (*1 *1 *1) (-12 (-4 *1 (-360 *2 *3)) (-4 *2 (-975)) (-4 *3 (-1018)))))
+(-13 (-107 |t#1| |t#1|) (-966 |t#2|) (-10 -8 (-15 * ($ |t#1| |t#2|)) (-15 -2560 (|t#1| $ |t#2|)) (-15 -1340 ($ (-1 |t#1| |t#1|) $)) (-15 -2548 ($ |t#2| |t#1|)) (-15 -2202 ((-108) $)) (-15 -1650 ((-591 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -3654 ((-591 |t#1|) $)) (-15 -1922 ((-591 $) $)) (-15 -4010 ((-712) $)) (-15 -1661 (|t#2| $)) (-15 -1678 (|t#1| $)) (-15 -3865 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -1710 ($ $)) (IF (|has| |t#1| (-160)) (-6 (-659 |t#1|)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 |#1|) . T) ((-659 |#1|) |has| |#1| (-160)) ((-966 |#2|) . T) ((-981 |#1|) . T) ((-1018) . T))
+((-3178 (((-1176) $) 7)) (-3022 (((-796) $) 8) (($ (-631 (-640))) 14) (($ (-591 (-308))) 13) (($ (-308)) 12) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 11)))
+(((-361) (-131)) (T -361))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-631 (-640))) (-4 *1 (-361)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-591 (-308))) (-4 *1 (-361)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-308)) (-4 *1 (-361)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) (-4 *1 (-361)))))
+(-13 (-373) (-10 -8 (-15 -3022 ($ (-631 (-640)))) (-15 -3022 ($ (-591 (-308)))) (-15 -3022 ($ (-308))) (-15 -3022 ($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))))))
+(((-565 (-796)) . T) ((-373) . T) ((-1125) . T))
+((-1251 (((-3 $ "failed") (-631 (-294 (-357)))) 21) (((-3 $ "failed") (-631 (-294 (-525)))) 19) (((-3 $ "failed") (-631 (-885 (-357)))) 17) (((-3 $ "failed") (-631 (-885 (-525)))) 15) (((-3 $ "failed") (-631 (-385 (-885 (-357))))) 13) (((-3 $ "failed") (-631 (-385 (-885 (-525))))) 11)) (-3528 (($ (-631 (-294 (-357)))) 22) (($ (-631 (-294 (-525)))) 20) (($ (-631 (-885 (-357)))) 18) (($ (-631 (-885 (-525)))) 16) (($ (-631 (-385 (-885 (-357))))) 14) (($ (-631 (-385 (-885 (-525))))) 12)) (-3178 (((-1176) $) 7)) (-3022 (((-796) $) 8) (($ (-591 (-308))) 25) (($ (-308)) 24) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 23)))
+(((-362) (-131)) (T -362))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-591 (-308))) (-4 *1 (-362)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-308)) (-4 *1 (-362)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) (-4 *1 (-362)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-631 (-294 (-357)))) (-4 *1 (-362)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-631 (-294 (-357)))) (-4 *1 (-362)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-631 (-294 (-525)))) (-4 *1 (-362)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-631 (-294 (-525)))) (-4 *1 (-362)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-631 (-885 (-357)))) (-4 *1 (-362)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-631 (-885 (-357)))) (-4 *1 (-362)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-631 (-885 (-525)))) (-4 *1 (-362)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-631 (-885 (-525)))) (-4 *1 (-362)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-631 (-385 (-885 (-357))))) (-4 *1 (-362)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-631 (-385 (-885 (-357))))) (-4 *1 (-362)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-631 (-385 (-885 (-525))))) (-4 *1 (-362)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-631 (-385 (-885 (-525))))) (-4 *1 (-362)))))
+(-13 (-373) (-10 -8 (-15 -3022 ($ (-591 (-308)))) (-15 -3022 ($ (-308))) (-15 -3022 ($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308)))))) (-15 -3528 ($ (-631 (-294 (-357))))) (-15 -1251 ((-3 $ "failed") (-631 (-294 (-357))))) (-15 -3528 ($ (-631 (-294 (-525))))) (-15 -1251 ((-3 $ "failed") (-631 (-294 (-525))))) (-15 -3528 ($ (-631 (-885 (-357))))) (-15 -1251 ((-3 $ "failed") (-631 (-885 (-357))))) (-15 -3528 ($ (-631 (-885 (-525))))) (-15 -1251 ((-3 $ "failed") (-631 (-885 (-525))))) (-15 -3528 ($ (-631 (-385 (-885 (-357)))))) (-15 -1251 ((-3 $ "failed") (-631 (-385 (-885 (-357)))))) (-15 -3528 ($ (-631 (-385 (-885 (-525)))))) (-15 -1251 ((-3 $ "failed") (-631 (-385 (-885 (-525))))))))
+(((-565 (-796)) . T) ((-373) . T) ((-1125) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1710 (($ $) NIL)) (-1480 (($ |#1| |#2|) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-2863 ((|#2| $) NIL)) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 28)) (-4191 (($) 12 T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ |#1| $) 16) (($ $ |#1|) 19)))
+(((-363 |#1| |#2|) (-13 (-107 |#1| |#1|) (-481 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-160)) (-6 (-659 |#1|)) |%noBranch|))) (-975) (-788)) (T -363))
+NIL
+(-13 (-107 |#1| |#1|) (-481 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-160)) (-6 (-659 |#1|)) |%noBranch|)))
+((-3008 (((-108) $ $) NIL)) (-3032 (((-712) $) 59)) (-3798 (($) NIL T CONST)) (-1584 (((-3 $ "failed") $ $) 61)) (-1251 (((-3 |#1| "failed") $) NIL)) (-3528 ((|#1| $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-2504 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 53)) (-2824 (((-108) $) 15)) (-2423 ((|#1| $ (-525)) NIL)) (-1566 (((-712) $ (-525)) NIL)) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-3731 (($ (-1 |#1| |#1|) $) 38)) (-1954 (($ (-1 (-712) (-712)) $) 35)) (-2811 (((-3 $ "failed") $ $) 50)) (-2339 (((-1072) $) NIL)) (-1555 (($ $ $) 26)) (-4139 (($ $ $) 24)) (-2047 (((-1036) $) NIL)) (-3781 (((-591 (-2 (|:| |gen| |#1|) (|:| -1409 (-712)))) $) 32)) (-3999 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 56)) (-3022 (((-796) $) 22) (($ |#1|) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4197 (($) 9 T CONST)) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) 41)) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) 63 (|has| |#1| (-788)))) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ |#1| (-712)) 40)) (* (($ $ $) 47) (($ |#1| $) 30) (($ $ |#1|) 28)))
+(((-364 |#1|) (-13 (-668) (-966 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-712))) (-15 -4139 ($ $ $)) (-15 -1555 ($ $ $)) (-15 -2811 ((-3 $ "failed") $ $)) (-15 -1584 ((-3 $ "failed") $ $)) (-15 -3999 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2504 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3032 ((-712) $)) (-15 -3781 ((-591 (-2 (|:| |gen| |#1|) (|:| -1409 (-712)))) $)) (-15 -1566 ((-712) $ (-525))) (-15 -2423 (|#1| $ (-525))) (-15 -1954 ($ (-1 (-712) (-712)) $)) (-15 -3731 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-788)) (-6 (-788)) |%noBranch|))) (-1018)) (T -364))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-364 *2)) (-4 *2 (-1018)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-364 *2)) (-4 *2 (-1018)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-712)) (-5 *1 (-364 *2)) (-4 *2 (-1018)))) (-4139 (*1 *1 *1 *1) (-12 (-5 *1 (-364 *2)) (-4 *2 (-1018)))) (-1555 (*1 *1 *1 *1) (-12 (-5 *1 (-364 *2)) (-4 *2 (-1018)))) (-2811 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-364 *2)) (-4 *2 (-1018)))) (-1584 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-364 *2)) (-4 *2 (-1018)))) (-3999 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-364 *3)) (|:| |rm| (-364 *3)))) (-5 *1 (-364 *3)) (-4 *3 (-1018)))) (-2504 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-364 *3)) (|:| |mm| (-364 *3)) (|:| |rm| (-364 *3)))) (-5 *1 (-364 *3)) (-4 *3 (-1018)))) (-3032 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-364 *3)) (-4 *3 (-1018)))) (-3781 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| |gen| *3) (|:| -1409 (-712))))) (-5 *1 (-364 *3)) (-4 *3 (-1018)))) (-1566 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *2 (-712)) (-5 *1 (-364 *4)) (-4 *4 (-1018)))) (-2423 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *1 (-364 *2)) (-4 *2 (-1018)))) (-1954 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-712) (-712))) (-5 *1 (-364 *3)) (-4 *3 (-1018)))) (-3731 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-364 *3)))))
+(-13 (-668) (-966 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-712))) (-15 -4139 ($ $ $)) (-15 -1555 ($ $ $)) (-15 -2811 ((-3 $ "failed") $ $)) (-15 -1584 ((-3 $ "failed") $ $)) (-15 -3999 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2504 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3032 ((-712) $)) (-15 -3781 ((-591 (-2 (|:| |gen| |#1|) (|:| -1409 (-712)))) $)) (-15 -1566 ((-712) $ (-525))) (-15 -2423 (|#1| $ (-525))) (-15 -1954 ($ (-1 (-712) (-712)) $)) (-15 -3731 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-788)) (-6 (-788)) |%noBranch|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-1251 (((-3 (-525) "failed") $) 47)) (-3528 (((-525) $) 46)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-3741 (($ $ $) 54)) (-2478 (($ $ $) 53)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2089 (((-3 $ "failed") $ $) 42)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43) (($ (-525)) 48)) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 39)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4135 (((-108) $ $) 51)) (-4119 (((-108) $ $) 50)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 52)) (-4112 (((-108) $ $) 49)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-365) (-131)) (T -365))
+NIL
+(-13 (-517) (-788) (-966 (-525)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-126) . T) ((-565 (-796)) . T) ((-160) . T) ((-269) . T) ((-517) . T) ((-593 $) . T) ((-659 $) . T) ((-668) . T) ((-788) . T) ((-966 (-525)) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-1674 (((-108) $) 20)) (-1969 (((-108) $) 19)) (-1268 (($ (-1072) (-1072) (-1072)) 21)) (-2400 (((-1072) $) 16)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2045 (($ (-1072) (-1072) (-1072)) 14)) (-4043 (((-1072) $) 17)) (-3190 (((-108) $) 18)) (-2997 (((-1072) $) 15)) (-3022 (((-796) $) 12) (($ (-1072)) 13) (((-1072) $) 9)) (-4096 (((-108) $ $) 7)))
+(((-366) (-367)) (T -366))
+NIL
+(-367)
+((-3008 (((-108) $ $) 7)) (-1674 (((-108) $) 14)) (-1969 (((-108) $) 15)) (-1268 (($ (-1072) (-1072) (-1072)) 13)) (-2400 (((-1072) $) 18)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2045 (($ (-1072) (-1072) (-1072)) 20)) (-4043 (((-1072) $) 17)) (-3190 (((-108) $) 16)) (-2997 (((-1072) $) 19)) (-3022 (((-796) $) 11) (($ (-1072)) 22) (((-1072) $) 21)) (-4096 (((-108) $ $) 6)))
+(((-367) (-131)) (T -367))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1072)) (-4 *1 (-367)))) (-3022 (*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-1072)))) (-2045 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1072)) (-4 *1 (-367)))) (-2997 (*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-1072)))) (-2400 (*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-1072)))) (-4043 (*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-1072)))) (-3190 (*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-108)))) (-1969 (*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-108)))) (-1674 (*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-108)))) (-1268 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1072)) (-4 *1 (-367)))))
+(-13 (-1018) (-10 -8 (-15 -3022 ($ (-1072))) (-15 -3022 ((-1072) $)) (-15 -2045 ($ (-1072) (-1072) (-1072))) (-15 -2997 ((-1072) $)) (-15 -2400 ((-1072) $)) (-15 -4043 ((-1072) $)) (-15 -3190 ((-108) $)) (-15 -1969 ((-108) $)) (-15 -1674 ((-108) $)) (-15 -1268 ($ (-1072) (-1072) (-1072)))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3848 (((-796) $) 50)) (-3798 (($) NIL T CONST)) (-3433 (($ $ (-854)) NIL)) (-2462 (($ $ (-854)) NIL)) (-3447 (($ $ (-854)) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3857 (($ (-712)) 26)) (-4224 (((-712)) 17)) (-2607 (((-796) $) 52)) (-3619 (($ $ $) NIL)) (-3022 (((-796) $) NIL)) (-2392 (($ $ $ $) NIL)) (-2707 (($ $ $) NIL)) (-4191 (($) 20 T CONST)) (-4096 (((-108) $ $) 28)) (-4164 (($ $) 34) (($ $ $) 36)) (-4156 (($ $ $) 37)) (** (($ $ (-854)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 38) (($ $ |#3|) NIL) (($ |#3| $) 33)))
+(((-368 |#1| |#2| |#3|) (-13 (-686 |#3|) (-10 -8 (-15 -4224 ((-712))) (-15 -2607 ((-796) $)) (-15 -3848 ((-796) $)) (-15 -3857 ($ (-712))))) (-712) (-712) (-160)) (T -368))
+((-4224 (*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-368 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-160)))) (-2607 (*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-368 *3 *4 *5)) (-14 *3 (-712)) (-14 *4 (-712)) (-4 *5 (-160)))) (-3848 (*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-368 *3 *4 *5)) (-14 *3 (-712)) (-14 *4 (-712)) (-4 *5 (-160)))) (-3857 (*1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-368 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-160)))))
+(-13 (-686 |#3|) (-10 -8 (-15 -4224 ((-712))) (-15 -2607 ((-796) $)) (-15 -3848 ((-796) $)) (-15 -3857 ($ (-712)))))
+((-2725 (((-1072)) 10)) (-3763 (((-1061 (-1072))) 28)) (-3157 (((-1176) (-1072)) 25) (((-1176) (-366)) 24)) (-3170 (((-1176)) 26)) (-3431 (((-1061 (-1072))) 27)))
+(((-369) (-10 -7 (-15 -3431 ((-1061 (-1072)))) (-15 -3763 ((-1061 (-1072)))) (-15 -3170 ((-1176))) (-15 -3157 ((-1176) (-366))) (-15 -3157 ((-1176) (-1072))) (-15 -2725 ((-1072))))) (T -369))
+((-2725 (*1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-369)))) (-3157 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-369)))) (-3157 (*1 *2 *3) (-12 (-5 *3 (-366)) (-5 *2 (-1176)) (-5 *1 (-369)))) (-3170 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-369)))) (-3763 (*1 *2) (-12 (-5 *2 (-1061 (-1072))) (-5 *1 (-369)))) (-3431 (*1 *2) (-12 (-5 *2 (-1061 (-1072))) (-5 *1 (-369)))))
+(-10 -7 (-15 -3431 ((-1061 (-1072)))) (-15 -3763 ((-1061 (-1072)))) (-15 -3170 ((-1176))) (-15 -3157 ((-1176) (-366))) (-15 -3157 ((-1176) (-1072))) (-15 -2725 ((-1072))))
+((-3873 (((-712) (-314 |#1| |#2| |#3| |#4|)) 16)))
+(((-370 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3873 ((-712) (-314 |#1| |#2| |#3| |#4|)))) (-13 (-346) (-341)) (-1147 |#1|) (-1147 (-385 |#2|)) (-320 |#1| |#2| |#3|)) (T -370))
+((-3873 (*1 *2 *3) (-12 (-5 *3 (-314 *4 *5 *6 *7)) (-4 *4 (-13 (-346) (-341))) (-4 *5 (-1147 *4)) (-4 *6 (-1147 (-385 *5))) (-4 *7 (-320 *4 *5 *6)) (-5 *2 (-712)) (-5 *1 (-370 *4 *5 *6 *7)))))
+(-10 -7 (-15 -3873 ((-712) (-314 |#1| |#2| |#3| |#4|))))
+((-3022 (((-372) |#1|) 11)))
+(((-371 |#1|) (-10 -7 (-15 -3022 ((-372) |#1|))) (-1018)) (T -371))
+((-3022 (*1 *2 *3) (-12 (-5 *2 (-372)) (-5 *1 (-371 *3)) (-4 *3 (-1018)))))
+(-10 -7 (-15 -3022 ((-372) |#1|)))
+((-3008 (((-108) $ $) NIL)) (-2232 (((-591 (-1072)) $ (-591 (-1072))) 38)) (-3939 (((-591 (-1072)) $ (-591 (-1072))) 39)) (-3193 (((-591 (-1072)) $ (-591 (-1072))) 40)) (-3578 (((-591 (-1072)) $) 35)) (-1268 (($) 23)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2235 (((-591 (-1072)) $) 36)) (-1845 (((-591 (-1072)) $) 37)) (-3551 (((-1176) $ (-525)) 33) (((-1176) $) 34)) (-1408 (($ (-796) (-525)) 30)) (-3022 (((-796) $) 42) (($ (-796)) 25)) (-4096 (((-108) $ $) NIL)))
+(((-372) (-13 (-1018) (-10 -8 (-15 -3022 ($ (-796))) (-15 -1408 ($ (-796) (-525))) (-15 -3551 ((-1176) $ (-525))) (-15 -3551 ((-1176) $)) (-15 -1845 ((-591 (-1072)) $)) (-15 -2235 ((-591 (-1072)) $)) (-15 -1268 ($)) (-15 -3578 ((-591 (-1072)) $)) (-15 -3193 ((-591 (-1072)) $ (-591 (-1072)))) (-15 -3939 ((-591 (-1072)) $ (-591 (-1072)))) (-15 -2232 ((-591 (-1072)) $ (-591 (-1072))))))) (T -372))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-796)) (-5 *1 (-372)))) (-1408 (*1 *1 *2 *3) (-12 (-5 *2 (-796)) (-5 *3 (-525)) (-5 *1 (-372)))) (-3551 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *2 (-1176)) (-5 *1 (-372)))) (-3551 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-372)))) (-1845 (*1 *2 *1) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-372)))) (-2235 (*1 *2 *1) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-372)))) (-1268 (*1 *1) (-5 *1 (-372))) (-3578 (*1 *2 *1) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-372)))) (-3193 (*1 *2 *1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-372)))) (-3939 (*1 *2 *1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-372)))) (-2232 (*1 *2 *1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-372)))))
+(-13 (-1018) (-10 -8 (-15 -3022 ($ (-796))) (-15 -1408 ($ (-796) (-525))) (-15 -3551 ((-1176) $ (-525))) (-15 -3551 ((-1176) $)) (-15 -1845 ((-591 (-1072)) $)) (-15 -2235 ((-591 (-1072)) $)) (-15 -1268 ($)) (-15 -3578 ((-591 (-1072)) $)) (-15 -3193 ((-591 (-1072)) $ (-591 (-1072)))) (-15 -3939 ((-591 (-1072)) $ (-591 (-1072)))) (-15 -2232 ((-591 (-1072)) $ (-591 (-1072))))))
+((-3178 (((-1176) $) 7)) (-3022 (((-796) $) 8)))
+(((-373) (-131)) (T -373))
+((-3178 (*1 *2 *1) (-12 (-4 *1 (-373)) (-5 *2 (-1176)))))
+(-13 (-1125) (-565 (-796)) (-10 -8 (-15 -3178 ((-1176) $))))
+(((-565 (-796)) . T) ((-1125) . T))
+((-1251 (((-3 $ "failed") (-294 (-357))) 21) (((-3 $ "failed") (-294 (-525))) 19) (((-3 $ "failed") (-885 (-357))) 17) (((-3 $ "failed") (-885 (-525))) 15) (((-3 $ "failed") (-385 (-885 (-357)))) 13) (((-3 $ "failed") (-385 (-885 (-525)))) 11)) (-3528 (($ (-294 (-357))) 22) (($ (-294 (-525))) 20) (($ (-885 (-357))) 18) (($ (-885 (-525))) 16) (($ (-385 (-885 (-357)))) 14) (($ (-385 (-885 (-525)))) 12)) (-3178 (((-1176) $) 7)) (-3022 (((-796) $) 8) (($ (-591 (-308))) 25) (($ (-308)) 24) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 23)))
+(((-374) (-131)) (T -374))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-591 (-308))) (-4 *1 (-374)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-308)) (-4 *1 (-374)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) (-4 *1 (-374)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-294 (-357))) (-4 *1 (-374)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-294 (-357))) (-4 *1 (-374)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-294 (-525))) (-4 *1 (-374)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-294 (-525))) (-4 *1 (-374)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-885 (-357))) (-4 *1 (-374)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-885 (-357))) (-4 *1 (-374)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-885 (-525))) (-4 *1 (-374)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-885 (-525))) (-4 *1 (-374)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-385 (-885 (-357)))) (-4 *1 (-374)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-385 (-885 (-357)))) (-4 *1 (-374)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-385 (-885 (-525)))) (-4 *1 (-374)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-385 (-885 (-525)))) (-4 *1 (-374)))))
+(-13 (-373) (-10 -8 (-15 -3022 ($ (-591 (-308)))) (-15 -3022 ($ (-308))) (-15 -3022 ($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308)))))) (-15 -3528 ($ (-294 (-357)))) (-15 -1251 ((-3 $ "failed") (-294 (-357)))) (-15 -3528 ($ (-294 (-525)))) (-15 -1251 ((-3 $ "failed") (-294 (-525)))) (-15 -3528 ($ (-885 (-357)))) (-15 -1251 ((-3 $ "failed") (-885 (-357)))) (-15 -3528 ($ (-885 (-525)))) (-15 -1251 ((-3 $ "failed") (-885 (-525)))) (-15 -3528 ($ (-385 (-885 (-357))))) (-15 -1251 ((-3 $ "failed") (-385 (-885 (-357))))) (-15 -3528 ($ (-385 (-885 (-525))))) (-15 -1251 ((-3 $ "failed") (-385 (-885 (-525)))))))
+(((-565 (-796)) . T) ((-373) . T) ((-1125) . T))
+((-1629 (((-591 (-1072)) (-591 (-1072))) 9)) (-3178 (((-1176) (-366)) 27)) (-1644 (((-1022) (-1089) (-591 (-1089)) (-1092) (-591 (-1089))) 60) (((-1022) (-1089) (-591 (-3 (|:| |array| (-591 (-1089))) (|:| |scalar| (-1089)))) (-591 (-591 (-3 (|:| |array| (-591 (-1089))) (|:| |scalar| (-1089))))) (-591 (-1089)) (-1089)) 35) (((-1022) (-1089) (-591 (-3 (|:| |array| (-591 (-1089))) (|:| |scalar| (-1089)))) (-591 (-591 (-3 (|:| |array| (-591 (-1089))) (|:| |scalar| (-1089))))) (-591 (-1089))) 34)))
+(((-375) (-10 -7 (-15 -1644 ((-1022) (-1089) (-591 (-3 (|:| |array| (-591 (-1089))) (|:| |scalar| (-1089)))) (-591 (-591 (-3 (|:| |array| (-591 (-1089))) (|:| |scalar| (-1089))))) (-591 (-1089)))) (-15 -1644 ((-1022) (-1089) (-591 (-3 (|:| |array| (-591 (-1089))) (|:| |scalar| (-1089)))) (-591 (-591 (-3 (|:| |array| (-591 (-1089))) (|:| |scalar| (-1089))))) (-591 (-1089)) (-1089))) (-15 -1644 ((-1022) (-1089) (-591 (-1089)) (-1092) (-591 (-1089)))) (-15 -3178 ((-1176) (-366))) (-15 -1629 ((-591 (-1072)) (-591 (-1072)))))) (T -375))
+((-1629 (*1 *2 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-375)))) (-3178 (*1 *2 *3) (-12 (-5 *3 (-366)) (-5 *2 (-1176)) (-5 *1 (-375)))) (-1644 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-591 (-1089))) (-5 *5 (-1092)) (-5 *3 (-1089)) (-5 *2 (-1022)) (-5 *1 (-375)))) (-1644 (*1 *2 *3 *4 *5 *6 *3) (-12 (-5 *5 (-591 (-591 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-591 (-3 (|:| |array| (-591 *3)) (|:| |scalar| (-1089))))) (-5 *6 (-591 (-1089))) (-5 *3 (-1089)) (-5 *2 (-1022)) (-5 *1 (-375)))) (-1644 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-591 (-591 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-591 (-3 (|:| |array| (-591 *3)) (|:| |scalar| (-1089))))) (-5 *6 (-591 (-1089))) (-5 *3 (-1089)) (-5 *2 (-1022)) (-5 *1 (-375)))))
+(-10 -7 (-15 -1644 ((-1022) (-1089) (-591 (-3 (|:| |array| (-591 (-1089))) (|:| |scalar| (-1089)))) (-591 (-591 (-3 (|:| |array| (-591 (-1089))) (|:| |scalar| (-1089))))) (-591 (-1089)))) (-15 -1644 ((-1022) (-1089) (-591 (-3 (|:| |array| (-591 (-1089))) (|:| |scalar| (-1089)))) (-591 (-591 (-3 (|:| |array| (-591 (-1089))) (|:| |scalar| (-1089))))) (-591 (-1089)) (-1089))) (-15 -1644 ((-1022) (-1089) (-591 (-1089)) (-1092) (-591 (-1089)))) (-15 -3178 ((-1176) (-366))) (-15 -1629 ((-591 (-1072)) (-591 (-1072)))))
+((-3178 (((-1176) $) 38)) (-3022 (((-796) $) 98) (($ (-308)) 100) (($ (-591 (-308))) 99) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 97) (($ (-294 (-642))) 54) (($ (-294 (-640))) 73) (($ (-294 (-635))) 86) (($ (-273 (-294 (-642)))) 68) (($ (-273 (-294 (-640)))) 81) (($ (-273 (-294 (-635)))) 94) (($ (-294 (-525))) 104) (($ (-294 (-357))) 117) (($ (-294 (-157 (-357)))) 130) (($ (-273 (-294 (-525)))) 112) (($ (-273 (-294 (-357)))) 125) (($ (-273 (-294 (-157 (-357))))) 138)))
+(((-376 |#1| |#2| |#3| |#4|) (-13 (-373) (-10 -8 (-15 -3022 ($ (-308))) (-15 -3022 ($ (-591 (-308)))) (-15 -3022 ($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308)))))) (-15 -3022 ($ (-294 (-642)))) (-15 -3022 ($ (-294 (-640)))) (-15 -3022 ($ (-294 (-635)))) (-15 -3022 ($ (-273 (-294 (-642))))) (-15 -3022 ($ (-273 (-294 (-640))))) (-15 -3022 ($ (-273 (-294 (-635))))) (-15 -3022 ($ (-294 (-525)))) (-15 -3022 ($ (-294 (-357)))) (-15 -3022 ($ (-294 (-157 (-357))))) (-15 -3022 ($ (-273 (-294 (-525))))) (-15 -3022 ($ (-273 (-294 (-357))))) (-15 -3022 ($ (-273 (-294 (-157 (-357)))))))) (-1089) (-3 (|:| |fst| (-412)) (|:| -4170 "void")) (-591 (-1089)) (-1093)) (T -376))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-308)) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-14 *5 (-591 (-1089))) (-14 *6 (-1093)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-591 (-308))) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-14 *5 (-591 (-1089))) (-14 *6 (-1093)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-14 *5 (-591 (-1089))) (-14 *6 (-1093)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-294 (-642))) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-14 *5 (-591 (-1089))) (-14 *6 (-1093)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-294 (-640))) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-14 *5 (-591 (-1089))) (-14 *6 (-1093)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-294 (-635))) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-14 *5 (-591 (-1089))) (-14 *6 (-1093)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-273 (-294 (-642)))) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-14 *5 (-591 (-1089))) (-14 *6 (-1093)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-273 (-294 (-640)))) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-14 *5 (-591 (-1089))) (-14 *6 (-1093)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-273 (-294 (-635)))) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-14 *5 (-591 (-1089))) (-14 *6 (-1093)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-294 (-525))) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-14 *5 (-591 (-1089))) (-14 *6 (-1093)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-294 (-357))) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-14 *5 (-591 (-1089))) (-14 *6 (-1093)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-294 (-157 (-357)))) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-14 *5 (-591 (-1089))) (-14 *6 (-1093)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-273 (-294 (-525)))) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-14 *5 (-591 (-1089))) (-14 *6 (-1093)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-273 (-294 (-357)))) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-14 *5 (-591 (-1089))) (-14 *6 (-1093)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-273 (-294 (-157 (-357))))) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-14 *5 (-591 (-1089))) (-14 *6 (-1093)))))
+(-13 (-373) (-10 -8 (-15 -3022 ($ (-308))) (-15 -3022 ($ (-591 (-308)))) (-15 -3022 ($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308)))))) (-15 -3022 ($ (-294 (-642)))) (-15 -3022 ($ (-294 (-640)))) (-15 -3022 ($ (-294 (-635)))) (-15 -3022 ($ (-273 (-294 (-642))))) (-15 -3022 ($ (-273 (-294 (-640))))) (-15 -3022 ($ (-273 (-294 (-635))))) (-15 -3022 ($ (-294 (-525)))) (-15 -3022 ($ (-294 (-357)))) (-15 -3022 ($ (-294 (-157 (-357))))) (-15 -3022 ($ (-273 (-294 (-525))))) (-15 -3022 ($ (-273 (-294 (-357))))) (-15 -3022 ($ (-273 (-294 (-157 (-357))))))))
+((-3008 (((-108) $ $) NIL)) (-2877 ((|#2| $) 36)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3127 (($ (-385 |#2|)) 85)) (-1293 (((-591 (-2 (|:| -2008 (-712)) (|:| -1682 |#2|) (|:| |num| |#2|))) $) 37)) (-3266 (($ $) 32) (($ $ (-712)) 34)) (-1408 (((-385 |#2|) $) 46)) (-3036 (($ (-591 (-2 (|:| -2008 (-712)) (|:| -1682 |#2|) (|:| |num| |#2|)))) 31)) (-3022 (((-796) $) 120)) (-4196 (($ $) 33) (($ $ (-712)) 35)) (-4096 (((-108) $ $) NIL)) (-4156 (($ |#2| $) 39)))
+(((-377 |#1| |#2|) (-13 (-1018) (-566 (-385 |#2|)) (-10 -8 (-15 -4156 ($ |#2| $)) (-15 -3127 ($ (-385 |#2|))) (-15 -2877 (|#2| $)) (-15 -1293 ((-591 (-2 (|:| -2008 (-712)) (|:| -1682 |#2|) (|:| |num| |#2|))) $)) (-15 -3036 ($ (-591 (-2 (|:| -2008 (-712)) (|:| -1682 |#2|) (|:| |num| |#2|))))) (-15 -3266 ($ $)) (-15 -4196 ($ $)) (-15 -3266 ($ $ (-712))) (-15 -4196 ($ $ (-712))))) (-13 (-341) (-138)) (-1147 |#1|)) (T -377))
+((-4156 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-341) (-138))) (-5 *1 (-377 *3 *2)) (-4 *2 (-1147 *3)))) (-3127 (*1 *1 *2) (-12 (-5 *2 (-385 *4)) (-4 *4 (-1147 *3)) (-4 *3 (-13 (-341) (-138))) (-5 *1 (-377 *3 *4)))) (-2877 (*1 *2 *1) (-12 (-4 *2 (-1147 *3)) (-5 *1 (-377 *3 *2)) (-4 *3 (-13 (-341) (-138))))) (-1293 (*1 *2 *1) (-12 (-4 *3 (-13 (-341) (-138))) (-5 *2 (-591 (-2 (|:| -2008 (-712)) (|:| -1682 *4) (|:| |num| *4)))) (-5 *1 (-377 *3 *4)) (-4 *4 (-1147 *3)))) (-3036 (*1 *1 *2) (-12 (-5 *2 (-591 (-2 (|:| -2008 (-712)) (|:| -1682 *4) (|:| |num| *4)))) (-4 *4 (-1147 *3)) (-4 *3 (-13 (-341) (-138))) (-5 *1 (-377 *3 *4)))) (-3266 (*1 *1 *1) (-12 (-4 *2 (-13 (-341) (-138))) (-5 *1 (-377 *2 *3)) (-4 *3 (-1147 *2)))) (-4196 (*1 *1 *1) (-12 (-4 *2 (-13 (-341) (-138))) (-5 *1 (-377 *2 *3)) (-4 *3 (-1147 *2)))) (-3266 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *3 (-13 (-341) (-138))) (-5 *1 (-377 *3 *4)) (-4 *4 (-1147 *3)))) (-4196 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *3 (-13 (-341) (-138))) (-5 *1 (-377 *3 *4)) (-4 *4 (-1147 *3)))))
+(-13 (-1018) (-566 (-385 |#2|)) (-10 -8 (-15 -4156 ($ |#2| $)) (-15 -3127 ($ (-385 |#2|))) (-15 -2877 (|#2| $)) (-15 -1293 ((-591 (-2 (|:| -2008 (-712)) (|:| -1682 |#2|) (|:| |num| |#2|))) $)) (-15 -3036 ($ (-591 (-2 (|:| -2008 (-712)) (|:| -1682 |#2|) (|:| |num| |#2|))))) (-15 -3266 ($ $)) (-15 -4196 ($ $)) (-15 -3266 ($ $ (-712))) (-15 -4196 ($ $ (-712)))))
+((-3008 (((-108) $ $) 9 (-3321 (|has| |#1| (-819 (-525))) (|has| |#1| (-819 (-357)))))) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 15 (|has| |#1| (-819 (-357)))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 14 (|has| |#1| (-819 (-525))))) (-2339 (((-1072) $) 13 (-3321 (|has| |#1| (-819 (-525))) (|has| |#1| (-819 (-357)))))) (-2047 (((-1036) $) 12 (-3321 (|has| |#1| (-819 (-525))) (|has| |#1| (-819 (-357)))))) (-3022 (((-796) $) 11 (-3321 (|has| |#1| (-819 (-525))) (|has| |#1| (-819 (-357)))))) (-4096 (((-108) $ $) 10 (-3321 (|has| |#1| (-819 (-525))) (|has| |#1| (-819 (-357)))))))
+(((-378 |#1|) (-131) (-1125)) (T -378))
+NIL
+(-13 (-1125) (-10 -7 (IF (|has| |t#1| (-819 (-525))) (-6 (-819 (-525))) |%noBranch|) (IF (|has| |t#1| (-819 (-357))) (-6 (-819 (-357))) |%noBranch|)))
+(((-97) -3321 (|has| |#1| (-819 (-525))) (|has| |#1| (-819 (-357)))) ((-565 (-796)) -3321 (|has| |#1| (-819 (-525))) (|has| |#1| (-819 (-357)))) ((-819 (-357)) |has| |#1| (-819 (-357))) ((-819 (-525)) |has| |#1| (-819 (-525))) ((-1018) -3321 (|has| |#1| (-819 (-525))) (|has| |#1| (-819 (-357)))) ((-1125) . T))
+((-2299 (($ $) 10) (($ $ (-712)) 11)))
+(((-379 |#1|) (-10 -8 (-15 -2299 (|#1| |#1| (-712))) (-15 -2299 (|#1| |#1|))) (-380)) (T -379))
+NIL
+(-10 -8 (-15 -2299 (|#1| |#1| (-712))) (-15 -2299 (|#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2157 (((-3 $ "failed") $ $) 19)) (-1291 (($ $) 73)) (-2827 (((-396 $) $) 72)) (-1947 (((-108) $ $) 59)) (-3798 (($) 17 T CONST)) (-2129 (($ $ $) 55)) (-4163 (((-3 $ "failed") $) 34)) (-2110 (($ $ $) 56)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 51)) (-2299 (($ $) 79) (($ $ (-712)) 78)) (-2744 (((-108) $) 71)) (-3873 (((-774 (-854)) $) 81)) (-2824 (((-108) $) 31)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 52)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-1622 (($ $) 70)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-1348 (((-396 $) $) 74)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2089 (((-3 $ "failed") $ $) 42)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 50)) (-1712 (((-712) $) 58)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 57)) (-2953 (((-3 (-712) "failed") $ $) 80)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43) (($ (-385 (-525))) 65)) (-1437 (((-3 $ "failed") $) 82)) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 39)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 69)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4173 (($ $ $) 64)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 68)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 (-525))) 67) (($ (-385 (-525)) $) 66)))
+(((-380) (-131)) (T -380))
+((-3873 (*1 *2 *1) (-12 (-4 *1 (-380)) (-5 *2 (-774 (-854))))) (-2953 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-380)) (-5 *2 (-712)))) (-2299 (*1 *1 *1) (-4 *1 (-380))) (-2299 (*1 *1 *1 *2) (-12 (-4 *1 (-380)) (-5 *2 (-712)))))
+(-13 (-341) (-136) (-10 -8 (-15 -3873 ((-774 (-854)) $)) (-15 -2953 ((-3 (-712) "failed") $ $)) (-15 -2299 ($ $)) (-15 -2299 ($ $ (-712)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-126) . T) ((-136) . T) ((-565 (-796)) . T) ((-160) . T) ((-223) . T) ((-269) . T) ((-286) . T) ((-341) . T) ((-429) . T) ((-517) . T) ((-593 #0#) . T) ((-593 $) . T) ((-659 #0#) . T) ((-659 $) . T) ((-668) . T) ((-853) . T) ((-981 #0#) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1129) . T))
+((-2286 (($ (-525) (-525)) 11) (($ (-525) (-525) (-854)) NIL)) (-2603 (((-854)) 16) (((-854) (-854)) NIL)))
+(((-381 |#1|) (-10 -8 (-15 -2603 ((-854) (-854))) (-15 -2603 ((-854))) (-15 -2286 (|#1| (-525) (-525) (-854))) (-15 -2286 (|#1| (-525) (-525)))) (-382)) (T -381))
+((-2603 (*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-381 *3)) (-4 *3 (-382)))) (-2603 (*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-381 *3)) (-4 *3 (-382)))))
+(-10 -8 (-15 -2603 ((-854) (-854))) (-15 -2603 ((-854))) (-15 -2286 (|#1| (-525) (-525) (-854))) (-15 -2286 (|#1| (-525) (-525))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1508 (((-525) $) 89)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2121 (($ $) 87)) (-2157 (((-3 $ "failed") $ $) 19)) (-1291 (($ $) 73)) (-2827 (((-396 $) $) 72)) (-1361 (($ $) 97)) (-1947 (((-108) $ $) 59)) (-3329 (((-525) $) 114)) (-3798 (($) 17 T CONST)) (-2562 (($ $) 86)) (-1251 (((-3 (-525) "failed") $) 102) (((-3 (-385 (-525)) "failed") $) 99)) (-3528 (((-525) $) 101) (((-385 (-525)) $) 98)) (-2129 (($ $ $) 55)) (-4163 (((-3 $ "failed") $) 34)) (-2110 (($ $ $) 56)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 51)) (-2744 (((-108) $) 71)) (-2591 (((-854)) 130) (((-854) (-854)) 127 (|has| $ (-6 -4241)))) (-2134 (((-108) $) 112)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 93)) (-3873 (((-525) $) 136)) (-2824 (((-108) $) 31)) (-3956 (($ $ (-525)) 96)) (-2771 (($ $) 92)) (-2732 (((-108) $) 113)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 52)) (-3741 (($ $ $) 111) (($) 124 (-12 (-2247 (|has| $ (-6 -4241))) (-2247 (|has| $ (-6 -4233)))))) (-2478 (($ $ $) 110) (($) 123 (-12 (-2247 (|has| $ (-6 -4241))) (-2247 (|has| $ (-6 -4233)))))) (-3855 (((-525) $) 133)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-1622 (($ $) 70)) (-3241 (((-854) (-525)) 126 (|has| $ (-6 -4241)))) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-3093 (($ $) 88)) (-2662 (($ $) 90)) (-2286 (($ (-525) (-525)) 138) (($ (-525) (-525) (-854)) 137)) (-1348 (((-396 $) $) 74)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2089 (((-3 $ "failed") $ $) 42)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 50)) (-2008 (((-525) $) 134)) (-1712 (((-712) $) 58)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 57)) (-2603 (((-854)) 131) (((-854) (-854)) 128 (|has| $ (-6 -4241)))) (-1301 (((-854) (-525)) 125 (|has| $ (-6 -4241)))) (-1408 (((-357) $) 105) (((-205) $) 104) (((-825 (-357)) $) 94)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43) (($ (-385 (-525))) 65) (($ (-525)) 103) (($ (-385 (-525))) 100)) (-2128 (((-712)) 29)) (-3862 (($ $) 91)) (-3759 (((-854)) 132) (((-854) (-854)) 129 (|has| $ (-6 -4241)))) (-2672 (((-854)) 135)) (-2495 (((-108) $ $) 39)) (-1539 (($ $) 115)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 69)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4135 (((-108) $ $) 108)) (-4119 (((-108) $ $) 107)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 109)) (-4112 (((-108) $ $) 106)) (-4173 (($ $ $) 64)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 68) (($ $ (-385 (-525))) 95)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 (-525))) 67) (($ (-385 (-525)) $) 66)))
+(((-382) (-131)) (T -382))
+((-2286 (*1 *1 *2 *2) (-12 (-5 *2 (-525)) (-4 *1 (-382)))) (-2286 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-525)) (-5 *3 (-854)) (-4 *1 (-382)))) (-3873 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-525)))) (-2672 (*1 *2) (-12 (-4 *1 (-382)) (-5 *2 (-854)))) (-2008 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-525)))) (-3855 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-525)))) (-3759 (*1 *2) (-12 (-4 *1 (-382)) (-5 *2 (-854)))) (-2603 (*1 *2) (-12 (-4 *1 (-382)) (-5 *2 (-854)))) (-2591 (*1 *2) (-12 (-4 *1 (-382)) (-5 *2 (-854)))) (-3759 (*1 *2 *2) (-12 (-5 *2 (-854)) (|has| *1 (-6 -4241)) (-4 *1 (-382)))) (-2603 (*1 *2 *2) (-12 (-5 *2 (-854)) (|has| *1 (-6 -4241)) (-4 *1 (-382)))) (-2591 (*1 *2 *2) (-12 (-5 *2 (-854)) (|has| *1 (-6 -4241)) (-4 *1 (-382)))) (-3241 (*1 *2 *3) (-12 (-5 *3 (-525)) (|has| *1 (-6 -4241)) (-4 *1 (-382)) (-5 *2 (-854)))) (-1301 (*1 *2 *3) (-12 (-5 *3 (-525)) (|has| *1 (-6 -4241)) (-4 *1 (-382)) (-5 *2 (-854)))) (-3741 (*1 *1) (-12 (-4 *1 (-382)) (-2247 (|has| *1 (-6 -4241))) (-2247 (|has| *1 (-6 -4233))))) (-2478 (*1 *1) (-12 (-4 *1 (-382)) (-2247 (|has| *1 (-6 -4241))) (-2247 (|has| *1 (-6 -4233))))))
+(-13 (-984) (-10 -8 (-6 -2176) (-15 -2286 ($ (-525) (-525))) (-15 -2286 ($ (-525) (-525) (-854))) (-15 -3873 ((-525) $)) (-15 -2672 ((-854))) (-15 -2008 ((-525) $)) (-15 -3855 ((-525) $)) (-15 -3759 ((-854))) (-15 -2603 ((-854))) (-15 -2591 ((-854))) (IF (|has| $ (-6 -4241)) (PROGN (-15 -3759 ((-854) (-854))) (-15 -2603 ((-854) (-854))) (-15 -2591 ((-854) (-854))) (-15 -3241 ((-854) (-525))) (-15 -1301 ((-854) (-525)))) |%noBranch|) (IF (|has| $ (-6 -4233)) |%noBranch| (IF (|has| $ (-6 -4241)) |%noBranch| (PROGN (-15 -3741 ($)) (-15 -2478 ($)))))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-126) . T) ((-138) . T) ((-565 (-796)) . T) ((-160) . T) ((-566 (-205)) . T) ((-566 (-357)) . T) ((-566 (-825 (-357))) . T) ((-223) . T) ((-269) . T) ((-286) . T) ((-341) . T) ((-429) . T) ((-517) . T) ((-593 #0#) . T) ((-593 $) . T) ((-659 #0#) . T) ((-659 $) . T) ((-668) . T) ((-732) . T) ((-733) . T) ((-735) . T) ((-736) . T) ((-786) . T) ((-788) . T) ((-819 (-357)) . T) ((-853) . T) ((-932) . T) ((-951) . T) ((-984) . T) ((-966 (-385 (-525))) . T) ((-966 (-525)) . T) ((-981 #0#) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1129) . T))
+((-1340 (((-396 |#2|) (-1 |#2| |#1|) (-396 |#1|)) 20)))
+(((-383 |#1| |#2|) (-10 -7 (-15 -1340 ((-396 |#2|) (-1 |#2| |#1|) (-396 |#1|)))) (-517) (-517)) (T -383))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-396 *5)) (-4 *5 (-517)) (-4 *6 (-517)) (-5 *2 (-396 *6)) (-5 *1 (-383 *5 *6)))))
+(-10 -7 (-15 -1340 ((-396 |#2|) (-1 |#2| |#1|) (-396 |#1|))))
+((-1340 (((-385 |#2|) (-1 |#2| |#1|) (-385 |#1|)) 13)))
+(((-384 |#1| |#2|) (-10 -7 (-15 -1340 ((-385 |#2|) (-1 |#2| |#1|) (-385 |#1|)))) (-517) (-517)) (T -384))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-385 *5)) (-4 *5 (-517)) (-4 *6 (-517)) (-5 *2 (-385 *6)) (-5 *1 (-384 *5 *6)))))
+(-10 -7 (-15 -1340 ((-385 |#2|) (-1 |#2| |#1|) (-385 |#1|))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 13)) (-1508 ((|#1| $) 21 (|has| |#1| (-286)))) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1947 (((-108) $ $) NIL)) (-3329 (((-525) $) NIL (|has| |#1| (-761)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) 17) (((-3 (-1089) "failed") $) NIL (|has| |#1| (-966 (-1089)))) (((-3 (-385 (-525)) "failed") $) 70 (|has| |#1| (-966 (-525)))) (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525))))) (-3528 ((|#1| $) 15) (((-1089) $) NIL (|has| |#1| (-966 (-1089)))) (((-385 (-525)) $) 67 (|has| |#1| (-966 (-525)))) (((-525) $) NIL (|has| |#1| (-966 (-525))))) (-2129 (($ $ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) NIL) (((-631 |#1|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) 50)) (-3377 (($) NIL (|has| |#1| (-510)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2134 (((-108) $) NIL (|has| |#1| (-761)))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (|has| |#1| (-819 (-525)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (|has| |#1| (-819 (-357))))) (-2824 (((-108) $) 64)) (-2368 (($ $) NIL)) (-1738 ((|#1| $) 71)) (-2085 (((-3 $ "failed") $) NIL (|has| |#1| (-1065)))) (-2732 (((-108) $) NIL (|has| |#1| (-761)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| |#1| (-1065)) CONST)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 97)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3093 (($ $) NIL (|has| |#1| (-286)))) (-2662 ((|#1| $) 28 (|has| |#1| (-510)))) (-2916 (((-396 (-1085 $)) (-1085 $)) 135 (|has| |#1| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) 131 (|has| |#1| (-842)))) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-4132 (($ $ (-591 |#1|) (-591 |#1|)) NIL (|has| |#1| (-288 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-288 |#1|))) (($ $ (-273 |#1|)) NIL (|has| |#1| (-288 |#1|))) (($ $ (-591 (-273 |#1|))) NIL (|has| |#1| (-288 |#1|))) (($ $ (-591 (-1089)) (-591 |#1|)) NIL (|has| |#1| (-486 (-1089) |#1|))) (($ $ (-1089) |#1|) NIL (|has| |#1| (-486 (-1089) |#1|)))) (-1712 (((-712) $) NIL)) (-3164 (($ $ |#1|) NIL (|has| |#1| (-265 |#1| |#1|)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3266 (($ $) NIL (|has| |#1| (-213))) (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) 63)) (-2966 (($ $) NIL)) (-1754 ((|#1| $) 73)) (-1408 (((-825 (-525)) $) NIL (|has| |#1| (-566 (-825 (-525))))) (((-825 (-357)) $) NIL (|has| |#1| (-566 (-825 (-357))))) (((-501) $) NIL (|has| |#1| (-566 (-501)))) (((-357) $) NIL (|has| |#1| (-951))) (((-205) $) NIL (|has| |#1| (-951)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) 115 (-12 (|has| $ (-136)) (|has| |#1| (-842))))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) (($ |#1|) 10) (($ (-1089)) NIL (|has| |#1| (-966 (-1089))))) (-1437 (((-3 $ "failed") $) 99 (-3321 (-12 (|has| $ (-136)) (|has| |#1| (-842))) (|has| |#1| (-136))))) (-2128 (((-712)) 100)) (-3862 ((|#1| $) 26 (|has| |#1| (-510)))) (-2495 (((-108) $ $) NIL)) (-1539 (($ $) NIL (|has| |#1| (-761)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) 22 T CONST)) (-4197 (($) 8 T CONST)) (-2563 (((-1072) $) 43 (-12 (|has| |#1| (-510)) (|has| |#1| (-769)))) (((-1072) $ (-108)) 44 (-12 (|has| |#1| (-510)) (|has| |#1| (-769)))) (((-1176) (-763) $) 45 (-12 (|has| |#1| (-510)) (|has| |#1| (-769)))) (((-1176) (-763) $ (-108)) 46 (-12 (|has| |#1| (-510)) (|has| |#1| (-769))))) (-4196 (($ $) NIL (|has| |#1| (-213))) (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) 56)) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) 24 (|has| |#1| (-788)))) (-4173 (($ $ $) 126) (($ |#1| |#1|) 52)) (-4164 (($ $) 25) (($ $ $) 55)) (-4156 (($ $ $) 53)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) 125)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 60) (($ $ $) 57) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ |#1| $) 61) (($ $ |#1|) 85)))
+(((-385 |#1|) (-13 (-923 |#1|) (-10 -7 (IF (|has| |#1| (-510)) (IF (|has| |#1| (-769)) (-6 (-769)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4237)) (IF (|has| |#1| (-429)) (IF (|has| |#1| (-6 -4248)) (-6 -4237) |%noBranch|) |%noBranch|) |%noBranch|))) (-517)) (T -385))
+NIL
+(-13 (-923 |#1|) (-10 -7 (IF (|has| |#1| (-510)) (IF (|has| |#1| (-769)) (-6 (-769)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4237)) (IF (|has| |#1| (-429)) (IF (|has| |#1| (-6 -4248)) (-6 -4237) |%noBranch|) |%noBranch|) |%noBranch|)))
+((-2796 (((-631 |#2|) (-1171 $)) NIL) (((-631 |#2|)) 18)) (-4171 (($ (-1171 |#2|) (-1171 $)) NIL) (($ (-1171 |#2|)) 26)) (-3922 (((-631 |#2|) $ (-1171 $)) NIL) (((-631 |#2|) $) 22)) (-1382 ((|#3| $) 60)) (-2976 ((|#2| (-1171 $)) NIL) ((|#2|) 20)) (-3572 (((-1171 |#2|) $ (-1171 $)) NIL) (((-631 |#2|) (-1171 $) (-1171 $)) NIL) (((-1171 |#2|) $) NIL) (((-631 |#2|) (-1171 $)) 24)) (-1408 (((-1171 |#2|) $) 11) (($ (-1171 |#2|)) 13)) (-3806 ((|#3| $) 52)))
+(((-386 |#1| |#2| |#3|) (-10 -8 (-15 -3922 ((-631 |#2|) |#1|)) (-15 -2976 (|#2|)) (-15 -2796 ((-631 |#2|))) (-15 -1408 (|#1| (-1171 |#2|))) (-15 -1408 ((-1171 |#2|) |#1|)) (-15 -4171 (|#1| (-1171 |#2|))) (-15 -3572 ((-631 |#2|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1|)) (-15 -1382 (|#3| |#1|)) (-15 -3806 (|#3| |#1|)) (-15 -2796 ((-631 |#2|) (-1171 |#1|))) (-15 -2976 (|#2| (-1171 |#1|))) (-15 -4171 (|#1| (-1171 |#2|) (-1171 |#1|))) (-15 -3572 ((-631 |#2|) (-1171 |#1|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1| (-1171 |#1|))) (-15 -3922 ((-631 |#2|) |#1| (-1171 |#1|)))) (-387 |#2| |#3|) (-160) (-1147 |#2|)) (T -386))
+((-2796 (*1 *2) (-12 (-4 *4 (-160)) (-4 *5 (-1147 *4)) (-5 *2 (-631 *4)) (-5 *1 (-386 *3 *4 *5)) (-4 *3 (-387 *4 *5)))) (-2976 (*1 *2) (-12 (-4 *4 (-1147 *2)) (-4 *2 (-160)) (-5 *1 (-386 *3 *2 *4)) (-4 *3 (-387 *2 *4)))))
+(-10 -8 (-15 -3922 ((-631 |#2|) |#1|)) (-15 -2976 (|#2|)) (-15 -2796 ((-631 |#2|))) (-15 -1408 (|#1| (-1171 |#2|))) (-15 -1408 ((-1171 |#2|) |#1|)) (-15 -4171 (|#1| (-1171 |#2|))) (-15 -3572 ((-631 |#2|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1|)) (-15 -1382 (|#3| |#1|)) (-15 -3806 (|#3| |#1|)) (-15 -2796 ((-631 |#2|) (-1171 |#1|))) (-15 -2976 (|#2| (-1171 |#1|))) (-15 -4171 (|#1| (-1171 |#2|) (-1171 |#1|))) (-15 -3572 ((-631 |#2|) (-1171 |#1|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1| (-1171 |#1|))) (-15 -3922 ((-631 |#2|) |#1| (-1171 |#1|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2796 (((-631 |#1|) (-1171 $)) 46) (((-631 |#1|)) 61)) (-2569 ((|#1| $) 52)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4171 (($ (-1171 |#1|) (-1171 $)) 48) (($ (-1171 |#1|)) 64)) (-3922 (((-631 |#1|) $ (-1171 $)) 53) (((-631 |#1|) $) 59)) (-4163 (((-3 $ "failed") $) 34)) (-4073 (((-854)) 54)) (-2824 (((-108) $) 31)) (-2771 ((|#1| $) 51)) (-1382 ((|#2| $) 44 (|has| |#1| (-341)))) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2976 ((|#1| (-1171 $)) 47) ((|#1|) 60)) (-3572 (((-1171 |#1|) $ (-1171 $)) 50) (((-631 |#1|) (-1171 $) (-1171 $)) 49) (((-1171 |#1|) $) 66) (((-631 |#1|) (-1171 $)) 65)) (-1408 (((-1171 |#1|) $) 63) (($ (-1171 |#1|)) 62)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 37)) (-1437 (((-3 $ "failed") $) 43 (|has| |#1| (-136)))) (-3806 ((|#2| $) 45)) (-2128 (((-712)) 29)) (-4003 (((-1171 $)) 67)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
+(((-387 |#1| |#2|) (-131) (-160) (-1147 |t#1|)) (T -387))
+((-4003 (*1 *2) (-12 (-4 *3 (-160)) (-4 *4 (-1147 *3)) (-5 *2 (-1171 *1)) (-4 *1 (-387 *3 *4)))) (-3572 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-160)) (-4 *4 (-1147 *3)) (-5 *2 (-1171 *3)))) (-3572 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-387 *4 *5)) (-4 *4 (-160)) (-4 *5 (-1147 *4)) (-5 *2 (-631 *4)))) (-4171 (*1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-160)) (-4 *1 (-387 *3 *4)) (-4 *4 (-1147 *3)))) (-1408 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-160)) (-4 *4 (-1147 *3)) (-5 *2 (-1171 *3)))) (-1408 (*1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-160)) (-4 *1 (-387 *3 *4)) (-4 *4 (-1147 *3)))) (-2796 (*1 *2) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-160)) (-4 *4 (-1147 *3)) (-5 *2 (-631 *3)))) (-2976 (*1 *2) (-12 (-4 *1 (-387 *2 *3)) (-4 *3 (-1147 *2)) (-4 *2 (-160)))) (-3922 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-160)) (-4 *4 (-1147 *3)) (-5 *2 (-631 *3)))))
+(-13 (-348 |t#1| |t#2|) (-10 -8 (-15 -4003 ((-1171 $))) (-15 -3572 ((-1171 |t#1|) $)) (-15 -3572 ((-631 |t#1|) (-1171 $))) (-15 -4171 ($ (-1171 |t#1|))) (-15 -1408 ((-1171 |t#1|) $)) (-15 -1408 ($ (-1171 |t#1|))) (-15 -2796 ((-631 |t#1|))) (-15 -2976 (|t#1|)) (-15 -3922 ((-631 |t#1|) $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-348 |#1| |#2|) . T) ((-593 |#1|) . T) ((-593 $) . T) ((-659 |#1|) . T) ((-668) . T) ((-981 |#1|) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-1251 (((-3 |#2| "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) 27) (((-3 (-525) "failed") $) 19)) (-3528 ((|#2| $) NIL) (((-385 (-525)) $) 24) (((-525) $) 14)) (-3022 (($ |#2|) NIL) (($ (-385 (-525))) 22) (($ (-525)) 11)))
+(((-388 |#1| |#2|) (-10 -8 (-15 -3528 ((-525) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3022 (|#1| (-525))) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -3022 (|#1| |#2|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3528 (|#2| |#1|))) (-389 |#2|) (-1125)) (T -388))
+NIL
+(-10 -8 (-15 -3528 ((-525) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3022 (|#1| (-525))) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -3022 (|#1| |#2|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3528 (|#2| |#1|)))
+((-1251 (((-3 |#1| "failed") $) 7) (((-3 (-385 (-525)) "failed") $) 16 (|has| |#1| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) 13 (|has| |#1| (-966 (-525))))) (-3528 ((|#1| $) 8) (((-385 (-525)) $) 15 (|has| |#1| (-966 (-385 (-525))))) (((-525) $) 12 (|has| |#1| (-966 (-525))))) (-3022 (($ |#1|) 6) (($ (-385 (-525))) 17 (|has| |#1| (-966 (-385 (-525))))) (($ (-525)) 14 (|has| |#1| (-966 (-525))))))
+(((-389 |#1|) (-131) (-1125)) (T -389))
+NIL
+(-13 (-966 |t#1|) (-10 -7 (IF (|has| |t#1| (-966 (-525))) (-6 (-966 (-525))) |%noBranch|) (IF (|has| |t#1| (-966 (-385 (-525)))) (-6 (-966 (-385 (-525)))) |%noBranch|)))
+(((-966 (-385 (-525))) |has| |#1| (-966 (-385 (-525)))) ((-966 (-525)) |has| |#1| (-966 (-525))) ((-966 |#1|) . T))
+((-1340 (((-391 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-391 |#1| |#2| |#3| |#4|)) 33)))
+(((-390 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1340 ((-391 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-391 |#1| |#2| |#3| |#4|)))) (-286) (-923 |#1|) (-1147 |#2|) (-13 (-387 |#2| |#3|) (-966 |#2|)) (-286) (-923 |#5|) (-1147 |#6|) (-13 (-387 |#6| |#7|) (-966 |#6|))) (T -390))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-391 *5 *6 *7 *8)) (-4 *5 (-286)) (-4 *6 (-923 *5)) (-4 *7 (-1147 *6)) (-4 *8 (-13 (-387 *6 *7) (-966 *6))) (-4 *9 (-286)) (-4 *10 (-923 *9)) (-4 *11 (-1147 *10)) (-5 *2 (-391 *9 *10 *11 *12)) (-5 *1 (-390 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-13 (-387 *10 *11) (-966 *10))))))
+(-10 -7 (-15 -1340 ((-391 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-391 |#1| |#2| |#3| |#4|))))
+((-3008 (((-108) $ $) NIL)) (-3798 (($) NIL T CONST)) (-4163 (((-3 $ "failed") $) NIL)) (-1485 ((|#4| (-712) (-1171 |#4|)) 56)) (-2824 (((-108) $) NIL)) (-1738 (((-1171 |#4|) $) 17)) (-2771 ((|#2| $) 54)) (-2279 (($ $) 139)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 100)) (-1536 (($ (-1171 |#4|)) 99)) (-2047 (((-1036) $) NIL)) (-1754 ((|#1| $) 18)) (-3228 (($ $ $) NIL)) (-3619 (($ $ $) NIL)) (-3022 (((-796) $) 134)) (-4003 (((-1171 |#4|) $) 129)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4197 (($) 11 T CONST)) (-4096 (((-108) $ $) 40)) (-4173 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) 122)) (* (($ $ $) 121)))
+(((-391 |#1| |#2| |#3| |#4|) (-13 (-450) (-10 -8 (-15 -1536 ($ (-1171 |#4|))) (-15 -4003 ((-1171 |#4|) $)) (-15 -2771 (|#2| $)) (-15 -1738 ((-1171 |#4|) $)) (-15 -1754 (|#1| $)) (-15 -2279 ($ $)) (-15 -1485 (|#4| (-712) (-1171 |#4|))))) (-286) (-923 |#1|) (-1147 |#2|) (-13 (-387 |#2| |#3|) (-966 |#2|))) (T -391))
+((-1536 (*1 *1 *2) (-12 (-5 *2 (-1171 *6)) (-4 *6 (-13 (-387 *4 *5) (-966 *4))) (-4 *4 (-923 *3)) (-4 *5 (-1147 *4)) (-4 *3 (-286)) (-5 *1 (-391 *3 *4 *5 *6)))) (-4003 (*1 *2 *1) (-12 (-4 *3 (-286)) (-4 *4 (-923 *3)) (-4 *5 (-1147 *4)) (-5 *2 (-1171 *6)) (-5 *1 (-391 *3 *4 *5 *6)) (-4 *6 (-13 (-387 *4 *5) (-966 *4))))) (-2771 (*1 *2 *1) (-12 (-4 *4 (-1147 *2)) (-4 *2 (-923 *3)) (-5 *1 (-391 *3 *2 *4 *5)) (-4 *3 (-286)) (-4 *5 (-13 (-387 *2 *4) (-966 *2))))) (-1738 (*1 *2 *1) (-12 (-4 *3 (-286)) (-4 *4 (-923 *3)) (-4 *5 (-1147 *4)) (-5 *2 (-1171 *6)) (-5 *1 (-391 *3 *4 *5 *6)) (-4 *6 (-13 (-387 *4 *5) (-966 *4))))) (-1754 (*1 *2 *1) (-12 (-4 *3 (-923 *2)) (-4 *4 (-1147 *3)) (-4 *2 (-286)) (-5 *1 (-391 *2 *3 *4 *5)) (-4 *5 (-13 (-387 *3 *4) (-966 *3))))) (-2279 (*1 *1 *1) (-12 (-4 *2 (-286)) (-4 *3 (-923 *2)) (-4 *4 (-1147 *3)) (-5 *1 (-391 *2 *3 *4 *5)) (-4 *5 (-13 (-387 *3 *4) (-966 *3))))) (-1485 (*1 *2 *3 *4) (-12 (-5 *3 (-712)) (-5 *4 (-1171 *2)) (-4 *5 (-286)) (-4 *6 (-923 *5)) (-4 *2 (-13 (-387 *6 *7) (-966 *6))) (-5 *1 (-391 *5 *6 *7 *2)) (-4 *7 (-1147 *6)))))
+(-13 (-450) (-10 -8 (-15 -1536 ($ (-1171 |#4|))) (-15 -4003 ((-1171 |#4|) $)) (-15 -2771 (|#2| $)) (-15 -1738 ((-1171 |#4|) $)) (-15 -1754 (|#1| $)) (-15 -2279 ($ $)) (-15 -1485 (|#4| (-712) (-1171 |#4|)))))
+((-3008 (((-108) $ $) NIL)) (-3798 (($) NIL T CONST)) (-4163 (((-3 $ "failed") $) NIL)) (-2824 (((-108) $) NIL)) (-2771 ((|#2| $) 61)) (-3180 (($ (-1171 |#4|)) 25) (($ (-391 |#1| |#2| |#3| |#4|)) 75 (|has| |#4| (-966 |#2|)))) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 34)) (-4003 (((-1171 |#4|) $) 26)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4197 (($) 23 T CONST)) (-4096 (((-108) $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ $ $) 72)))
+(((-392 |#1| |#2| |#3| |#4| |#5|) (-13 (-668) (-10 -8 (-15 -4003 ((-1171 |#4|) $)) (-15 -2771 (|#2| $)) (-15 -3180 ($ (-1171 |#4|))) (IF (|has| |#4| (-966 |#2|)) (-15 -3180 ($ (-391 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-286) (-923 |#1|) (-1147 |#2|) (-387 |#2| |#3|) (-1171 |#4|)) (T -392))
+((-4003 (*1 *2 *1) (-12 (-4 *3 (-286)) (-4 *4 (-923 *3)) (-4 *5 (-1147 *4)) (-5 *2 (-1171 *6)) (-5 *1 (-392 *3 *4 *5 *6 *7)) (-4 *6 (-387 *4 *5)) (-14 *7 *2))) (-2771 (*1 *2 *1) (-12 (-4 *4 (-1147 *2)) (-4 *2 (-923 *3)) (-5 *1 (-392 *3 *2 *4 *5 *6)) (-4 *3 (-286)) (-4 *5 (-387 *2 *4)) (-14 *6 (-1171 *5)))) (-3180 (*1 *1 *2) (-12 (-5 *2 (-1171 *6)) (-4 *6 (-387 *4 *5)) (-4 *4 (-923 *3)) (-4 *5 (-1147 *4)) (-4 *3 (-286)) (-5 *1 (-392 *3 *4 *5 *6 *7)) (-14 *7 *2))) (-3180 (*1 *1 *2) (-12 (-5 *2 (-391 *3 *4 *5 *6)) (-4 *6 (-966 *4)) (-4 *3 (-286)) (-4 *4 (-923 *3)) (-4 *5 (-1147 *4)) (-4 *6 (-387 *4 *5)) (-14 *7 (-1171 *6)) (-5 *1 (-392 *3 *4 *5 *6 *7)))))
+(-13 (-668) (-10 -8 (-15 -4003 ((-1171 |#4|) $)) (-15 -2771 (|#2| $)) (-15 -3180 ($ (-1171 |#4|))) (IF (|has| |#4| (-966 |#2|)) (-15 -3180 ($ (-391 |#1| |#2| |#3| |#4|))) |%noBranch|)))
+((-1340 ((|#3| (-1 |#4| |#2|) |#1|) 26)))
+(((-393 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1340 (|#3| (-1 |#4| |#2|) |#1|))) (-395 |#2|) (-160) (-395 |#4|) (-160)) (T -393))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-160)) (-4 *6 (-160)) (-4 *2 (-395 *6)) (-5 *1 (-393 *4 *5 *2 *6)) (-4 *4 (-395 *5)))))
+(-10 -7 (-15 -1340 (|#3| (-1 |#4| |#2|) |#1|)))
+((-2999 (((-3 $ "failed")) 86)) (-1593 (((-1171 (-631 |#2|)) (-1171 $)) NIL) (((-1171 (-631 |#2|))) 91)) (-3160 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) 85)) (-3624 (((-3 $ "failed")) 84)) (-4094 (((-631 |#2|) (-1171 $)) NIL) (((-631 |#2|)) 102)) (-3711 (((-631 |#2|) $ (-1171 $)) NIL) (((-631 |#2|) $) 110)) (-2550 (((-1085 (-885 |#2|))) 55)) (-2449 ((|#2| (-1171 $)) NIL) ((|#2|) 106)) (-4171 (($ (-1171 |#2|) (-1171 $)) NIL) (($ (-1171 |#2|)) 113)) (-3121 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) 83)) (-2659 (((-3 $ "failed")) 75)) (-1548 (((-631 |#2|) (-1171 $)) NIL) (((-631 |#2|)) 100)) (-3793 (((-631 |#2|) $ (-1171 $)) NIL) (((-631 |#2|) $) 108)) (-1308 (((-1085 (-885 |#2|))) 54)) (-1368 ((|#2| (-1171 $)) NIL) ((|#2|) 104)) (-3572 (((-1171 |#2|) $ (-1171 $)) NIL) (((-631 |#2|) (-1171 $) (-1171 $)) NIL) (((-1171 |#2|) $) NIL) (((-631 |#2|) (-1171 $)) 112)) (-1408 (((-1171 |#2|) $) 96) (($ (-1171 |#2|)) 98)) (-2117 (((-591 (-885 |#2|)) (-1171 $)) NIL) (((-591 (-885 |#2|))) 94)) (-3005 (($ (-631 |#2|) $) 90)))
+(((-394 |#1| |#2|) (-10 -8 (-15 -3005 (|#1| (-631 |#2|) |#1|)) (-15 -2550 ((-1085 (-885 |#2|)))) (-15 -1308 ((-1085 (-885 |#2|)))) (-15 -3711 ((-631 |#2|) |#1|)) (-15 -3793 ((-631 |#2|) |#1|)) (-15 -4094 ((-631 |#2|))) (-15 -1548 ((-631 |#2|))) (-15 -2449 (|#2|)) (-15 -1368 (|#2|)) (-15 -1408 (|#1| (-1171 |#2|))) (-15 -1408 ((-1171 |#2|) |#1|)) (-15 -4171 (|#1| (-1171 |#2|))) (-15 -2117 ((-591 (-885 |#2|)))) (-15 -1593 ((-1171 (-631 |#2|)))) (-15 -3572 ((-631 |#2|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1|)) (-15 -2999 ((-3 |#1| "failed"))) (-15 -3624 ((-3 |#1| "failed"))) (-15 -2659 ((-3 |#1| "failed"))) (-15 -3160 ((-3 (-2 (|:| |particular| |#1|) (|:| -4003 (-591 |#1|))) "failed"))) (-15 -3121 ((-3 (-2 (|:| |particular| |#1|) (|:| -4003 (-591 |#1|))) "failed"))) (-15 -4094 ((-631 |#2|) (-1171 |#1|))) (-15 -1548 ((-631 |#2|) (-1171 |#1|))) (-15 -2449 (|#2| (-1171 |#1|))) (-15 -1368 (|#2| (-1171 |#1|))) (-15 -4171 (|#1| (-1171 |#2|) (-1171 |#1|))) (-15 -3572 ((-631 |#2|) (-1171 |#1|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1| (-1171 |#1|))) (-15 -3711 ((-631 |#2|) |#1| (-1171 |#1|))) (-15 -3793 ((-631 |#2|) |#1| (-1171 |#1|))) (-15 -1593 ((-1171 (-631 |#2|)) (-1171 |#1|))) (-15 -2117 ((-591 (-885 |#2|)) (-1171 |#1|)))) (-395 |#2|) (-160)) (T -394))
+((-1593 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-1171 (-631 *4))) (-5 *1 (-394 *3 *4)) (-4 *3 (-395 *4)))) (-2117 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-591 (-885 *4))) (-5 *1 (-394 *3 *4)) (-4 *3 (-395 *4)))) (-1368 (*1 *2) (-12 (-4 *2 (-160)) (-5 *1 (-394 *3 *2)) (-4 *3 (-395 *2)))) (-2449 (*1 *2) (-12 (-4 *2 (-160)) (-5 *1 (-394 *3 *2)) (-4 *3 (-395 *2)))) (-1548 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-631 *4)) (-5 *1 (-394 *3 *4)) (-4 *3 (-395 *4)))) (-4094 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-631 *4)) (-5 *1 (-394 *3 *4)) (-4 *3 (-395 *4)))) (-1308 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-1085 (-885 *4))) (-5 *1 (-394 *3 *4)) (-4 *3 (-395 *4)))) (-2550 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-1085 (-885 *4))) (-5 *1 (-394 *3 *4)) (-4 *3 (-395 *4)))))
+(-10 -8 (-15 -3005 (|#1| (-631 |#2|) |#1|)) (-15 -2550 ((-1085 (-885 |#2|)))) (-15 -1308 ((-1085 (-885 |#2|)))) (-15 -3711 ((-631 |#2|) |#1|)) (-15 -3793 ((-631 |#2|) |#1|)) (-15 -4094 ((-631 |#2|))) (-15 -1548 ((-631 |#2|))) (-15 -2449 (|#2|)) (-15 -1368 (|#2|)) (-15 -1408 (|#1| (-1171 |#2|))) (-15 -1408 ((-1171 |#2|) |#1|)) (-15 -4171 (|#1| (-1171 |#2|))) (-15 -2117 ((-591 (-885 |#2|)))) (-15 -1593 ((-1171 (-631 |#2|)))) (-15 -3572 ((-631 |#2|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1|)) (-15 -2999 ((-3 |#1| "failed"))) (-15 -3624 ((-3 |#1| "failed"))) (-15 -2659 ((-3 |#1| "failed"))) (-15 -3160 ((-3 (-2 (|:| |particular| |#1|) (|:| -4003 (-591 |#1|))) "failed"))) (-15 -3121 ((-3 (-2 (|:| |particular| |#1|) (|:| -4003 (-591 |#1|))) "failed"))) (-15 -4094 ((-631 |#2|) (-1171 |#1|))) (-15 -1548 ((-631 |#2|) (-1171 |#1|))) (-15 -2449 (|#2| (-1171 |#1|))) (-15 -1368 (|#2| (-1171 |#1|))) (-15 -4171 (|#1| (-1171 |#2|) (-1171 |#1|))) (-15 -3572 ((-631 |#2|) (-1171 |#1|) (-1171 |#1|))) (-15 -3572 ((-1171 |#2|) |#1| (-1171 |#1|))) (-15 -3711 ((-631 |#2|) |#1| (-1171 |#1|))) (-15 -3793 ((-631 |#2|) |#1| (-1171 |#1|))) (-15 -1593 ((-1171 (-631 |#2|)) (-1171 |#1|))) (-15 -2117 ((-591 (-885 |#2|)) (-1171 |#1|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2999 (((-3 $ "failed")) 37 (|has| |#1| (-517)))) (-2157 (((-3 $ "failed") $ $) 19)) (-1593 (((-1171 (-631 |#1|)) (-1171 $)) 78) (((-1171 (-631 |#1|))) 100)) (-2608 (((-1171 $)) 81)) (-3798 (($) 17 T CONST)) (-3160 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) 40 (|has| |#1| (-517)))) (-3624 (((-3 $ "failed")) 38 (|has| |#1| (-517)))) (-4094 (((-631 |#1|) (-1171 $)) 65) (((-631 |#1|)) 92)) (-4011 ((|#1| $) 74)) (-3711 (((-631 |#1|) $ (-1171 $)) 76) (((-631 |#1|) $) 90)) (-3057 (((-3 $ "failed") $) 45 (|has| |#1| (-517)))) (-2550 (((-1085 (-885 |#1|))) 88 (|has| |#1| (-341)))) (-3433 (($ $ (-854)) 28)) (-3996 ((|#1| $) 72)) (-3473 (((-1085 |#1|) $) 42 (|has| |#1| (-517)))) (-2449 ((|#1| (-1171 $)) 67) ((|#1|) 94)) (-3158 (((-1085 |#1|) $) 63)) (-2772 (((-108)) 57)) (-4171 (($ (-1171 |#1|) (-1171 $)) 69) (($ (-1171 |#1|)) 98)) (-4163 (((-3 $ "failed") $) 47 (|has| |#1| (-517)))) (-4073 (((-854)) 80)) (-3401 (((-108)) 54)) (-2462 (($ $ (-854)) 33)) (-3915 (((-108)) 50)) (-2590 (((-108)) 48)) (-2248 (((-108)) 52)) (-3121 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) 41 (|has| |#1| (-517)))) (-2659 (((-3 $ "failed")) 39 (|has| |#1| (-517)))) (-1548 (((-631 |#1|) (-1171 $)) 66) (((-631 |#1|)) 93)) (-4032 ((|#1| $) 75)) (-3793 (((-631 |#1|) $ (-1171 $)) 77) (((-631 |#1|) $) 91)) (-1838 (((-3 $ "failed") $) 46 (|has| |#1| (-517)))) (-1308 (((-1085 (-885 |#1|))) 89 (|has| |#1| (-341)))) (-3447 (($ $ (-854)) 29)) (-3018 ((|#1| $) 73)) (-1858 (((-1085 |#1|) $) 43 (|has| |#1| (-517)))) (-1368 ((|#1| (-1171 $)) 68) ((|#1|) 95)) (-2253 (((-1085 |#1|) $) 64)) (-2448 (((-108)) 58)) (-2339 (((-1072) $) 9)) (-1407 (((-108)) 49)) (-3704 (((-108)) 51)) (-2688 (((-108)) 53)) (-2047 (((-1036) $) 10)) (-4160 (((-108)) 56)) (-3164 ((|#1| $ (-525)) 101)) (-3572 (((-1171 |#1|) $ (-1171 $)) 71) (((-631 |#1|) (-1171 $) (-1171 $)) 70) (((-1171 |#1|) $) 103) (((-631 |#1|) (-1171 $)) 102)) (-1408 (((-1171 |#1|) $) 97) (($ (-1171 |#1|)) 96)) (-2117 (((-591 (-885 |#1|)) (-1171 $)) 79) (((-591 (-885 |#1|))) 99)) (-3619 (($ $ $) 25)) (-1806 (((-108)) 62)) (-3022 (((-796) $) 11)) (-4003 (((-1171 $)) 104)) (-1640 (((-591 (-1171 |#1|))) 44 (|has| |#1| (-517)))) (-2392 (($ $ $ $) 26)) (-2938 (((-108)) 60)) (-3005 (($ (-631 |#1|) $) 87)) (-2707 (($ $ $) 24)) (-2826 (((-108)) 61)) (-1532 (((-108)) 59)) (-1307 (((-108)) 55)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 30)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
+(((-395 |#1|) (-131) (-160)) (T -395))
+((-4003 (*1 *2) (-12 (-4 *3 (-160)) (-5 *2 (-1171 *1)) (-4 *1 (-395 *3)))) (-3572 (*1 *2 *1) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-1171 *3)))) (-3572 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-395 *4)) (-4 *4 (-160)) (-5 *2 (-631 *4)))) (-3164 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-4 *1 (-395 *2)) (-4 *2 (-160)))) (-1593 (*1 *2) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-1171 (-631 *3))))) (-2117 (*1 *2) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-591 (-885 *3))))) (-4171 (*1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-160)) (-4 *1 (-395 *3)))) (-1408 (*1 *2 *1) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-1171 *3)))) (-1408 (*1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-160)) (-4 *1 (-395 *3)))) (-1368 (*1 *2) (-12 (-4 *1 (-395 *2)) (-4 *2 (-160)))) (-2449 (*1 *2) (-12 (-4 *1 (-395 *2)) (-4 *2 (-160)))) (-1548 (*1 *2) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-631 *3)))) (-4094 (*1 *2) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-631 *3)))) (-3793 (*1 *2 *1) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-631 *3)))) (-3711 (*1 *2 *1) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-631 *3)))) (-1308 (*1 *2) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-4 *3 (-341)) (-5 *2 (-1085 (-885 *3))))) (-2550 (*1 *2) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-4 *3 (-341)) (-5 *2 (-1085 (-885 *3))))) (-3005 (*1 *1 *2 *1) (-12 (-5 *2 (-631 *3)) (-4 *1 (-395 *3)) (-4 *3 (-160)))))
+(-13 (-345 |t#1|) (-10 -8 (-15 -4003 ((-1171 $))) (-15 -3572 ((-1171 |t#1|) $)) (-15 -3572 ((-631 |t#1|) (-1171 $))) (-15 -3164 (|t#1| $ (-525))) (-15 -1593 ((-1171 (-631 |t#1|)))) (-15 -2117 ((-591 (-885 |t#1|)))) (-15 -4171 ($ (-1171 |t#1|))) (-15 -1408 ((-1171 |t#1|) $)) (-15 -1408 ($ (-1171 |t#1|))) (-15 -1368 (|t#1|)) (-15 -2449 (|t#1|)) (-15 -1548 ((-631 |t#1|))) (-15 -4094 ((-631 |t#1|))) (-15 -3793 ((-631 |t#1|) $)) (-15 -3711 ((-631 |t#1|) $)) (IF (|has| |t#1| (-341)) (PROGN (-15 -1308 ((-1085 (-885 |t#1|)))) (-15 -2550 ((-1085 (-885 |t#1|))))) |%noBranch|) (-15 -3005 ($ (-631 |t#1|) $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-126) . T) ((-565 (-796)) . T) ((-345 |#1|) . T) ((-593 |#1|) . T) ((-659 |#1|) . T) ((-662) . T) ((-686 |#1|) . T) ((-703) . T) ((-981 |#1|) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 42)) (-2861 (($ $) 57)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 145)) (-3706 (($ $) NIL)) (-1715 (((-108) $) 36)) (-2999 ((|#1| $) 13)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL (|has| |#1| (-1129)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-1129)))) (-2300 (($ |#1| (-525)) 31)) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) 115)) (-3528 (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) 55)) (-4163 (((-3 $ "failed") $) 130)) (-1511 (((-3 (-385 (-525)) "failed") $) 63 (|has| |#1| (-510)))) (-1352 (((-108) $) 59 (|has| |#1| (-510)))) (-1726 (((-385 (-525)) $) 61 (|has| |#1| (-510)))) (-3980 (($ |#1| (-525)) 33)) (-2744 (((-108) $) 151 (|has| |#1| (-1129)))) (-2824 (((-108) $) 43)) (-2808 (((-712) $) 38)) (-1946 (((-3 "nil" "sqfr" "irred" "prime") $ (-525)) 136)) (-2423 ((|#1| $ (-525)) 135)) (-3924 (((-525) $ (-525)) 134)) (-2703 (($ |#1| (-525)) 30)) (-1340 (($ (-1 |#1| |#1|) $) 142)) (-3429 (($ |#1| (-591 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-525))))) 58)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2339 (((-1072) $) NIL)) (-2518 (($ |#1| (-525)) 32)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-429)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) 146 (|has| |#1| (-429)))) (-2692 (($ |#1| (-525) (-3 "nil" "sqfr" "irred" "prime")) 29)) (-3781 (((-591 (-2 (|:| -1348 |#1|) (|:| -2008 (-525)))) $) 54)) (-1460 (((-591 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-525)))) $) 12)) (-1348 (((-396 $) $) NIL (|has| |#1| (-1129)))) (-2089 (((-3 $ "failed") $ $) 137)) (-2008 (((-525) $) 131)) (-4093 ((|#1| $) 56)) (-4132 (($ $ (-591 |#1|) (-591 |#1|)) NIL (|has| |#1| (-288 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-288 |#1|))) (($ $ (-273 |#1|)) NIL (|has| |#1| (-288 |#1|))) (($ $ (-591 (-273 |#1|))) 78 (|has| |#1| (-288 |#1|))) (($ $ (-591 (-1089)) (-591 |#1|)) 84 (|has| |#1| (-486 (-1089) |#1|))) (($ $ (-1089) |#1|) NIL (|has| |#1| (-486 (-1089) |#1|))) (($ $ (-1089) $) NIL (|has| |#1| (-486 (-1089) $))) (($ $ (-591 (-1089)) (-591 $)) 85 (|has| |#1| (-486 (-1089) $))) (($ $ (-591 (-273 $))) 81 (|has| |#1| (-288 $))) (($ $ (-273 $)) NIL (|has| |#1| (-288 $))) (($ $ $ $) NIL (|has| |#1| (-288 $))) (($ $ (-591 $) (-591 $)) NIL (|has| |#1| (-288 $)))) (-3164 (($ $ |#1|) 70 (|has| |#1| (-265 |#1| |#1|))) (($ $ $) 71 (|has| |#1| (-265 $ $)))) (-3266 (($ $) NIL (|has| |#1| (-213))) (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) 141)) (-1408 (((-501) $) 27 (|has| |#1| (-566 (-501)))) (((-357) $) 91 (|has| |#1| (-951))) (((-205) $) 94 (|has| |#1| (-951)))) (-3022 (((-796) $) 113) (($ (-525)) 46) (($ $) NIL) (($ |#1|) 45) (($ (-385 (-525))) NIL (|has| |#1| (-966 (-385 (-525)))))) (-2128 (((-712)) 48)) (-2495 (((-108) $ $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 40 T CONST)) (-4197 (($) 39 T CONST)) (-4196 (($ $) NIL (|has| |#1| (-213))) (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4096 (((-108) $ $) 95)) (-4164 (($ $) 127) (($ $ $) NIL)) (-4156 (($ $ $) 139)) (** (($ $ (-854)) NIL) (($ $ (-712)) 101)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 50) (($ $ $) 49) (($ |#1| $) 51) (($ $ |#1|) NIL)))
+(((-396 |#1|) (-13 (-517) (-211 |#1|) (-37 |#1|) (-316 |#1|) (-389 |#1|) (-10 -8 (-15 -4093 (|#1| $)) (-15 -2008 ((-525) $)) (-15 -3429 ($ |#1| (-591 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-525)))))) (-15 -1460 ((-591 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-525)))) $)) (-15 -2703 ($ |#1| (-525))) (-15 -3781 ((-591 (-2 (|:| -1348 |#1|) (|:| -2008 (-525)))) $)) (-15 -2518 ($ |#1| (-525))) (-15 -3924 ((-525) $ (-525))) (-15 -2423 (|#1| $ (-525))) (-15 -1946 ((-3 "nil" "sqfr" "irred" "prime") $ (-525))) (-15 -2808 ((-712) $)) (-15 -3980 ($ |#1| (-525))) (-15 -2300 ($ |#1| (-525))) (-15 -2692 ($ |#1| (-525) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -2999 (|#1| $)) (-15 -2861 ($ $)) (-15 -1340 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-429)) (-6 (-429)) |%noBranch|) (IF (|has| |#1| (-951)) (-6 (-951)) |%noBranch|) (IF (|has| |#1| (-1129)) (-6 (-1129)) |%noBranch|) (IF (|has| |#1| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|) (IF (|has| |#1| (-510)) (PROGN (-15 -1352 ((-108) $)) (-15 -1726 ((-385 (-525)) $)) (-15 -1511 ((-3 (-385 (-525)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-265 $ $)) (-6 (-265 $ $)) |%noBranch|) (IF (|has| |#1| (-288 $)) (-6 (-288 $)) |%noBranch|) (IF (|has| |#1| (-486 (-1089) $)) (-6 (-486 (-1089) $)) |%noBranch|))) (-517)) (T -396))
+((-1340 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-517)) (-5 *1 (-396 *3)))) (-4093 (*1 *2 *1) (-12 (-5 *1 (-396 *2)) (-4 *2 (-517)))) (-2008 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-396 *3)) (-4 *3 (-517)))) (-3429 (*1 *1 *2 *3) (-12 (-5 *3 (-591 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2) (|:| |xpnt| (-525))))) (-4 *2 (-517)) (-5 *1 (-396 *2)))) (-1460 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3) (|:| |xpnt| (-525))))) (-5 *1 (-396 *3)) (-4 *3 (-517)))) (-2703 (*1 *1 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-396 *2)) (-4 *2 (-517)))) (-3781 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| -1348 *3) (|:| -2008 (-525))))) (-5 *1 (-396 *3)) (-4 *3 (-517)))) (-2518 (*1 *1 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-396 *2)) (-4 *2 (-517)))) (-3924 (*1 *2 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-396 *3)) (-4 *3 (-517)))) (-2423 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *1 (-396 *2)) (-4 *2 (-517)))) (-1946 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-396 *4)) (-4 *4 (-517)))) (-2808 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-396 *3)) (-4 *3 (-517)))) (-3980 (*1 *1 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-396 *2)) (-4 *2 (-517)))) (-2300 (*1 *1 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-396 *2)) (-4 *2 (-517)))) (-2692 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-525)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-396 *2)) (-4 *2 (-517)))) (-2999 (*1 *2 *1) (-12 (-5 *1 (-396 *2)) (-4 *2 (-517)))) (-2861 (*1 *1 *1) (-12 (-5 *1 (-396 *2)) (-4 *2 (-517)))) (-1352 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-396 *3)) (-4 *3 (-510)) (-4 *3 (-517)))) (-1726 (*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-396 *3)) (-4 *3 (-510)) (-4 *3 (-517)))) (-1511 (*1 *2 *1) (|partial| -12 (-5 *2 (-385 (-525))) (-5 *1 (-396 *3)) (-4 *3 (-510)) (-4 *3 (-517)))))
+(-13 (-517) (-211 |#1|) (-37 |#1|) (-316 |#1|) (-389 |#1|) (-10 -8 (-15 -4093 (|#1| $)) (-15 -2008 ((-525) $)) (-15 -3429 ($ |#1| (-591 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-525)))))) (-15 -1460 ((-591 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-525)))) $)) (-15 -2703 ($ |#1| (-525))) (-15 -3781 ((-591 (-2 (|:| -1348 |#1|) (|:| -2008 (-525)))) $)) (-15 -2518 ($ |#1| (-525))) (-15 -3924 ((-525) $ (-525))) (-15 -2423 (|#1| $ (-525))) (-15 -1946 ((-3 "nil" "sqfr" "irred" "prime") $ (-525))) (-15 -2808 ((-712) $)) (-15 -3980 ($ |#1| (-525))) (-15 -2300 ($ |#1| (-525))) (-15 -2692 ($ |#1| (-525) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -2999 (|#1| $)) (-15 -2861 ($ $)) (-15 -1340 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-429)) (-6 (-429)) |%noBranch|) (IF (|has| |#1| (-951)) (-6 (-951)) |%noBranch|) (IF (|has| |#1| (-1129)) (-6 (-1129)) |%noBranch|) (IF (|has| |#1| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|) (IF (|has| |#1| (-510)) (PROGN (-15 -1352 ((-108) $)) (-15 -1726 ((-385 (-525)) $)) (-15 -1511 ((-3 (-385 (-525)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-265 $ $)) (-6 (-265 $ $)) |%noBranch|) (IF (|has| |#1| (-288 $)) (-6 (-288 $)) |%noBranch|) (IF (|has| |#1| (-486 (-1089) $)) (-6 (-486 (-1089) $)) |%noBranch|)))
+((-2960 (((-396 |#1|) (-396 |#1|) (-1 (-396 |#1|) |#1|)) 21)) (-3174 (((-396 |#1|) (-396 |#1|) (-396 |#1|)) 16)))
+(((-397 |#1|) (-10 -7 (-15 -2960 ((-396 |#1|) (-396 |#1|) (-1 (-396 |#1|) |#1|))) (-15 -3174 ((-396 |#1|) (-396 |#1|) (-396 |#1|)))) (-517)) (T -397))
+((-3174 (*1 *2 *2 *2) (-12 (-5 *2 (-396 *3)) (-4 *3 (-517)) (-5 *1 (-397 *3)))) (-2960 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-396 *4) *4)) (-4 *4 (-517)) (-5 *2 (-396 *4)) (-5 *1 (-397 *4)))))
+(-10 -7 (-15 -2960 ((-396 |#1|) (-396 |#1|) (-1 (-396 |#1|) |#1|))) (-15 -3174 ((-396 |#1|) (-396 |#1|) (-396 |#1|))))
+((-1419 ((|#2| |#2|) 166)) (-4159 (((-3 (|:| |%expansion| (-291 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1072)) (|:| |prob| (-1072))))) |#2| (-108)) 57)))
+(((-398 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4159 ((-3 (|:| |%expansion| (-291 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1072)) (|:| |prob| (-1072))))) |#2| (-108))) (-15 -1419 (|#2| |#2|))) (-13 (-429) (-788) (-966 (-525)) (-587 (-525))) (-13 (-27) (-1111) (-408 |#1|)) (-1089) |#2|) (T -398))
+((-1419 (*1 *2 *2) (-12 (-4 *3 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-398 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1111) (-408 *3))) (-14 *4 (-1089)) (-14 *5 *2))) (-4159 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-3 (|:| |%expansion| (-291 *5 *3 *6 *7)) (|:| |%problem| (-2 (|:| |func| (-1072)) (|:| |prob| (-1072)))))) (-5 *1 (-398 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1111) (-408 *5))) (-14 *6 (-1089)) (-14 *7 *3))))
+(-10 -7 (-15 -4159 ((-3 (|:| |%expansion| (-291 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1072)) (|:| |prob| (-1072))))) |#2| (-108))) (-15 -1419 (|#2| |#2|)))
+((-1340 ((|#4| (-1 |#3| |#1|) |#2|) 11)))
+(((-399 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1340 (|#4| (-1 |#3| |#1|) |#2|))) (-13 (-975) (-788)) (-408 |#1|) (-13 (-975) (-788)) (-408 |#3|)) (T -399))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-13 (-975) (-788))) (-4 *6 (-13 (-975) (-788))) (-4 *2 (-408 *6)) (-5 *1 (-399 *5 *4 *6 *2)) (-4 *4 (-408 *5)))))
+(-10 -7 (-15 -1340 (|#4| (-1 |#3| |#1|) |#2|)))
+((-1419 ((|#2| |#2|) 90)) (-4038 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1072)) (|:| |prob| (-1072))))) |#2| (-108) (-1072)) 48)) (-3269 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1072)) (|:| |prob| (-1072))))) |#2| (-108) (-1072)) 154)))
+(((-400 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -4038 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1072)) (|:| |prob| (-1072))))) |#2| (-108) (-1072))) (-15 -3269 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1072)) (|:| |prob| (-1072))))) |#2| (-108) (-1072))) (-15 -1419 (|#2| |#2|))) (-13 (-429) (-788) (-966 (-525)) (-587 (-525))) (-13 (-27) (-1111) (-408 |#1|) (-10 -8 (-15 -3022 ($ |#3|)))) (-786) (-13 (-1149 |#2| |#3|) (-341) (-1111) (-10 -8 (-15 -3266 ($ $)) (-15 -4141 ($ $)))) (-914 |#4|) (-1089)) (T -400))
+((-1419 (*1 *2 *2) (-12 (-4 *3 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-4 *2 (-13 (-27) (-1111) (-408 *3) (-10 -8 (-15 -3022 ($ *4))))) (-4 *4 (-786)) (-4 *5 (-13 (-1149 *2 *4) (-341) (-1111) (-10 -8 (-15 -3266 ($ $)) (-15 -4141 ($ $))))) (-5 *1 (-400 *3 *2 *4 *5 *6 *7)) (-4 *6 (-914 *5)) (-14 *7 (-1089)))) (-3269 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-108)) (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-4 *3 (-13 (-27) (-1111) (-408 *6) (-10 -8 (-15 -3022 ($ *7))))) (-4 *7 (-786)) (-4 *8 (-13 (-1149 *3 *7) (-341) (-1111) (-10 -8 (-15 -3266 ($ $)) (-15 -4141 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1072)) (|:| |prob| (-1072)))))) (-5 *1 (-400 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1072)) (-4 *9 (-914 *8)) (-14 *10 (-1089)))) (-4038 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-108)) (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-4 *3 (-13 (-27) (-1111) (-408 *6) (-10 -8 (-15 -3022 ($ *7))))) (-4 *7 (-786)) (-4 *8 (-13 (-1149 *3 *7) (-341) (-1111) (-10 -8 (-15 -3266 ($ $)) (-15 -4141 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1072)) (|:| |prob| (-1072)))))) (-5 *1 (-400 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1072)) (-4 *9 (-914 *8)) (-14 *10 (-1089)))))
+(-10 -7 (-15 -4038 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1072)) (|:| |prob| (-1072))))) |#2| (-108) (-1072))) (-15 -3269 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1072)) (|:| |prob| (-1072))))) |#2| (-108) (-1072))) (-15 -1419 (|#2| |#2|)))
+((-1526 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-1227 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-1340 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
+(((-401 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1340 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1227 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1526 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1018) (-403 |#1|) (-1018) (-403 |#3|)) (T -401))
+((-1526 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1018)) (-4 *5 (-1018)) (-4 *2 (-403 *5)) (-5 *1 (-401 *6 *4 *5 *2)) (-4 *4 (-403 *6)))) (-1227 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1018)) (-4 *2 (-1018)) (-5 *1 (-401 *5 *4 *2 *6)) (-4 *4 (-403 *5)) (-4 *6 (-403 *2)))) (-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-403 *6)) (-5 *1 (-401 *5 *4 *6 *2)) (-4 *4 (-403 *5)))))
+(-10 -7 (-15 -1340 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1227 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1526 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-3794 (($) 44)) (-1414 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 40)) (-3595 (($ $ $) 39)) (-3214 (((-108) $ $) 28)) (-3032 (((-712)) 47)) (-2442 (($ (-591 |#2|)) 20) (($) NIL)) (-3377 (($) 53)) (-3741 ((|#2| $) 61)) (-2478 ((|#2| $) 59)) (-3016 (((-854) $) 55)) (-3516 (($ $ $) 35)) (-2226 (($ (-854)) 50)) (-3097 (($ $ |#2|) NIL) (($ $ $) 38)) (-2064 (((-712) (-1 (-108) |#2|) $) NIL) (((-712) |#2| $) 26)) (-3036 (($ (-591 |#2|)) 24)) (-3030 (($ $) 46)) (-3022 (((-796) $) 33)) (-2512 (((-712) $) 21)) (-2973 (($ (-591 |#2|)) 19) (($) NIL)) (-4096 (((-108) $ $) 16)) (-4112 (((-108) $ $) 13)))
+(((-402 |#1| |#2|) (-10 -8 (-15 -3032 ((-712))) (-15 -2226 (|#1| (-854))) (-15 -3016 ((-854) |#1|)) (-15 -3377 (|#1|)) (-15 -3741 (|#2| |#1|)) (-15 -2478 (|#2| |#1|)) (-15 -3794 (|#1|)) (-15 -3030 (|#1| |#1|)) (-15 -2512 ((-712) |#1|)) (-15 -4096 ((-108) |#1| |#1|)) (-15 -3022 ((-796) |#1|)) (-15 -4112 ((-108) |#1| |#1|)) (-15 -2973 (|#1|)) (-15 -2973 (|#1| (-591 |#2|))) (-15 -2442 (|#1|)) (-15 -2442 (|#1| (-591 |#2|))) (-15 -3516 (|#1| |#1| |#1|)) (-15 -3097 (|#1| |#1| |#1|)) (-15 -3097 (|#1| |#1| |#2|)) (-15 -3595 (|#1| |#1| |#1|)) (-15 -3214 ((-108) |#1| |#1|)) (-15 -1414 (|#1| |#1| |#1|)) (-15 -1414 (|#1| |#1| |#2|)) (-15 -1414 (|#1| |#2| |#1|)) (-15 -3036 (|#1| (-591 |#2|))) (-15 -2064 ((-712) |#2| |#1|)) (-15 -2064 ((-712) (-1 (-108) |#2|) |#1|))) (-403 |#2|) (-1018)) (T -402))
+((-3032 (*1 *2) (-12 (-4 *4 (-1018)) (-5 *2 (-712)) (-5 *1 (-402 *3 *4)) (-4 *3 (-403 *4)))))
+(-10 -8 (-15 -3032 ((-712))) (-15 -2226 (|#1| (-854))) (-15 -3016 ((-854) |#1|)) (-15 -3377 (|#1|)) (-15 -3741 (|#2| |#1|)) (-15 -2478 (|#2| |#1|)) (-15 -3794 (|#1|)) (-15 -3030 (|#1| |#1|)) (-15 -2512 ((-712) |#1|)) (-15 -4096 ((-108) |#1| |#1|)) (-15 -3022 ((-796) |#1|)) (-15 -4112 ((-108) |#1| |#1|)) (-15 -2973 (|#1|)) (-15 -2973 (|#1| (-591 |#2|))) (-15 -2442 (|#1|)) (-15 -2442 (|#1| (-591 |#2|))) (-15 -3516 (|#1| |#1| |#1|)) (-15 -3097 (|#1| |#1| |#1|)) (-15 -3097 (|#1| |#1| |#2|)) (-15 -3595 (|#1| |#1| |#1|)) (-15 -3214 ((-108) |#1| |#1|)) (-15 -1414 (|#1| |#1| |#1|)) (-15 -1414 (|#1| |#1| |#2|)) (-15 -1414 (|#1| |#2| |#1|)) (-15 -3036 (|#1| (-591 |#2|))) (-15 -2064 ((-712) |#2| |#1|)) (-15 -2064 ((-712) (-1 (-108) |#2|) |#1|)))
+((-3008 (((-108) $ $) 19)) (-3794 (($) 67 (|has| |#1| (-346)))) (-1414 (($ |#1| $) 82) (($ $ |#1|) 81) (($ $ $) 80)) (-3595 (($ $ $) 78)) (-3214 (((-108) $ $) 79)) (-3891 (((-108) $ (-712)) 8)) (-3032 (((-712)) 61 (|has| |#1| (-346)))) (-2442 (($ (-591 |#1|)) 74) (($) 73)) (-1797 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4250)))) (-3798 (($) 7 T CONST)) (-3098 (($ $) 58 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3901 (($ |#1| $) 47 (|has| $ (-6 -4250))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4250)))) (-3677 (($ |#1| $) 57 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4250)))) (-3377 (($) 64 (|has| |#1| (-346)))) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-3741 ((|#1| $) 65 (|has| |#1| (-788)))) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-2478 ((|#1| $) 66 (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3016 (((-854) $) 63 (|has| |#1| (-346)))) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22)) (-3516 (($ $ $) 75)) (-1464 ((|#1| $) 39)) (-2470 (($ |#1| $) 40)) (-2226 (($ (-854)) 62 (|has| |#1| (-346)))) (-2047 (((-1036) $) 21)) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-3631 ((|#1| $) 41)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3097 (($ $ |#1|) 77) (($ $ $) 76)) (-2311 (($) 49) (($ (-591 |#1|)) 48)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1408 (((-501) $) 59 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 50)) (-3030 (($ $) 68 (|has| |#1| (-346)))) (-3022 (((-796) $) 18)) (-2512 (((-712) $) 69)) (-2973 (($ (-591 |#1|)) 72) (($) 71)) (-1870 (($ (-591 |#1|)) 42)) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20)) (-4112 (((-108) $ $) 70)) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-403 |#1|) (-131) (-1018)) (T -403))
+((-2512 (*1 *2 *1) (-12 (-4 *1 (-403 *3)) (-4 *3 (-1018)) (-5 *2 (-712)))) (-3030 (*1 *1 *1) (-12 (-4 *1 (-403 *2)) (-4 *2 (-1018)) (-4 *2 (-346)))) (-3794 (*1 *1) (-12 (-4 *1 (-403 *2)) (-4 *2 (-346)) (-4 *2 (-1018)))) (-2478 (*1 *2 *1) (-12 (-4 *1 (-403 *2)) (-4 *2 (-1018)) (-4 *2 (-788)))) (-3741 (*1 *2 *1) (-12 (-4 *1 (-403 *2)) (-4 *2 (-1018)) (-4 *2 (-788)))))
+(-13 (-209 |t#1|) (-1016 |t#1|) (-10 -8 (-6 -4250) (-15 -2512 ((-712) $)) (IF (|has| |t#1| (-346)) (PROGN (-6 (-346)) (-15 -3030 ($ $)) (-15 -3794 ($))) |%noBranch|) (IF (|has| |t#1| (-788)) (PROGN (-15 -2478 (|t#1| $)) (-15 -3741 (|t#1| $))) |%noBranch|)))
+(((-33) . T) ((-102 |#1|) . T) ((-97) . T) ((-565 (-796)) . T) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-209 |#1|) . T) ((-215 |#1|) . T) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-346) |has| |#1| (-346)) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-1016 |#1|) . T) ((-1018) . T) ((-1125) . T))
+((-3592 (((-542 |#2|) |#2| (-1089)) 36)) (-1360 (((-542 |#2|) |#2| (-1089)) 20)) (-3306 ((|#2| |#2| (-1089)) 25)))
+(((-404 |#1| |#2|) (-10 -7 (-15 -1360 ((-542 |#2|) |#2| (-1089))) (-15 -3592 ((-542 |#2|) |#2| (-1089))) (-15 -3306 (|#2| |#2| (-1089)))) (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))) (-13 (-1111) (-29 |#1|))) (T -404))
+((-3306 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *1 (-404 *4 *2)) (-4 *2 (-13 (-1111) (-29 *4))))) (-3592 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-4 *5 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *2 (-542 *3)) (-5 *1 (-404 *5 *3)) (-4 *3 (-13 (-1111) (-29 *5))))) (-1360 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-4 *5 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *2 (-542 *3)) (-5 *1 (-404 *5 *3)) (-4 *3 (-13 (-1111) (-29 *5))))))
+(-10 -7 (-15 -1360 ((-542 |#2|) |#2| (-1089))) (-15 -3592 ((-542 |#2|) |#2| (-1089))) (-15 -3306 (|#2| |#2| (-1089))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-4163 (((-3 $ "failed") $) NIL)) (-2824 (((-108) $) NIL)) (-1977 (($ |#2| |#1|) 35)) (-2837 (($ |#2| |#1|) 33)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#1|) NIL) (($ (-309 |#2|)) 25)) (-2128 (((-712)) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 10 T CONST)) (-4197 (($) 16 T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) 34)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 36) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-405 |#1| |#2|) (-13 (-37 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4237)) (IF (|has| |#1| (-6 -4237)) (-6 -4237) |%noBranch|) |%noBranch|) (-15 -3022 ($ |#1|)) (-15 -3022 ($ (-309 |#2|))) (-15 -1977 ($ |#2| |#1|)) (-15 -2837 ($ |#2| |#1|)))) (-13 (-160) (-37 (-385 (-525)))) (-13 (-788) (-21))) (T -405))
+((-3022 (*1 *1 *2) (-12 (-5 *1 (-405 *2 *3)) (-4 *2 (-13 (-160) (-37 (-385 (-525))))) (-4 *3 (-13 (-788) (-21))))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-309 *4)) (-4 *4 (-13 (-788) (-21))) (-5 *1 (-405 *3 *4)) (-4 *3 (-13 (-160) (-37 (-385 (-525))))))) (-1977 (*1 *1 *2 *3) (-12 (-5 *1 (-405 *3 *2)) (-4 *3 (-13 (-160) (-37 (-385 (-525))))) (-4 *2 (-13 (-788) (-21))))) (-2837 (*1 *1 *2 *3) (-12 (-5 *1 (-405 *3 *2)) (-4 *3 (-13 (-160) (-37 (-385 (-525))))) (-4 *2 (-13 (-788) (-21))))))
+(-13 (-37 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4237)) (IF (|has| |#1| (-6 -4237)) (-6 -4237) |%noBranch|) |%noBranch|) (-15 -3022 ($ |#1|)) (-15 -3022 ($ (-309 |#2|))) (-15 -1977 ($ |#2| |#1|)) (-15 -2837 ($ |#2| |#1|))))
+((-4141 (((-3 |#2| (-591 |#2|)) |#2| (-1089)) 109)))
+(((-406 |#1| |#2|) (-10 -7 (-15 -4141 ((-3 |#2| (-591 |#2|)) |#2| (-1089)))) (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))) (-13 (-1111) (-891) (-29 |#1|))) (T -406))
+((-4141 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-4 *5 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *2 (-3 *3 (-591 *3))) (-5 *1 (-406 *5 *3)) (-4 *3 (-13 (-1111) (-891) (-29 *5))))))
+(-10 -7 (-15 -4141 ((-3 |#2| (-591 |#2|)) |#2| (-1089))))
+((-1507 (((-591 (-1089)) $) 72)) (-1312 (((-385 (-1085 $)) $ (-564 $)) 273)) (-3825 (($ $ (-273 $)) NIL) (($ $ (-591 (-273 $))) NIL) (($ $ (-591 (-564 $)) (-591 $)) 237)) (-1251 (((-3 (-564 $) "failed") $) NIL) (((-3 (-1089) "failed") $) 75) (((-3 (-525) "failed") $) NIL) (((-3 |#2| "failed") $) 233) (((-3 (-385 (-885 |#2|)) "failed") $) 324) (((-3 (-885 |#2|) "failed") $) 235) (((-3 (-385 (-525)) "failed") $) NIL)) (-3528 (((-564 $) $) NIL) (((-1089) $) 30) (((-525) $) NIL) ((|#2| $) 231) (((-385 (-885 |#2|)) $) 305) (((-885 |#2|) $) 232) (((-385 (-525)) $) NIL)) (-3219 (((-110) (-110)) 47)) (-2368 (($ $) 87)) (-1405 (((-3 (-564 $) "failed") $) 228)) (-1298 (((-591 (-564 $)) $) 229)) (-3376 (((-3 (-591 $) "failed") $) 247)) (-3877 (((-3 (-2 (|:| |val| $) (|:| -2008 (-525))) "failed") $) 254)) (-2010 (((-3 (-591 $) "failed") $) 245)) (-2104 (((-3 (-2 (|:| -3482 (-525)) (|:| |var| (-564 $))) "failed") $) 264)) (-2292 (((-3 (-2 (|:| |var| (-564 $)) (|:| -2008 (-525))) "failed") $) 251) (((-3 (-2 (|:| |var| (-564 $)) (|:| -2008 (-525))) "failed") $ (-110)) 217) (((-3 (-2 (|:| |var| (-564 $)) (|:| -2008 (-525))) "failed") $ (-1089)) 219)) (-1634 (((-108) $) 19)) (-1646 ((|#2| $) 21)) (-4132 (($ $ (-564 $) $) NIL) (($ $ (-591 (-564 $)) (-591 $)) 236) (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-591 (-1089)) (-591 (-1 $ $))) NIL) (($ $ (-591 (-1089)) (-591 (-1 $ (-591 $)))) 96) (($ $ (-1089) (-1 $ (-591 $))) NIL) (($ $ (-1089) (-1 $ $)) NIL) (($ $ (-591 (-110)) (-591 (-1 $ $))) NIL) (($ $ (-591 (-110)) (-591 (-1 $ (-591 $)))) NIL) (($ $ (-110) (-1 $ (-591 $))) NIL) (($ $ (-110) (-1 $ $)) NIL) (($ $ (-1089)) 57) (($ $ (-591 (-1089))) 240) (($ $) 241) (($ $ (-110) $ (-1089)) 60) (($ $ (-591 (-110)) (-591 $) (-1089)) 67) (($ $ (-591 (-1089)) (-591 (-712)) (-591 (-1 $ $))) 107) (($ $ (-591 (-1089)) (-591 (-712)) (-591 (-1 $ (-591 $)))) 242) (($ $ (-1089) (-712) (-1 $ (-591 $))) 94) (($ $ (-1089) (-712) (-1 $ $)) 93)) (-3164 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-591 $)) 106)) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089)) 238)) (-2966 (($ $) 284)) (-1408 (((-825 (-525)) $) 257) (((-825 (-357)) $) 261) (($ (-396 $)) 320) (((-501) $) NIL)) (-3022 (((-796) $) 239) (($ (-564 $)) 84) (($ (-1089)) 26) (($ |#2|) NIL) (($ (-1041 |#2| (-564 $))) NIL) (($ (-385 |#2|)) 289) (($ (-885 (-385 |#2|))) 329) (($ (-385 (-885 (-385 |#2|)))) 301) (($ (-385 (-885 |#2|))) 295) (($ $) NIL) (($ (-885 |#2|)) 185) (($ (-385 (-525))) 334) (($ (-525)) NIL)) (-2128 (((-712)) 79)) (-2661 (((-108) (-110)) 41)) (-2745 (($ (-1089) $) 33) (($ (-1089) $ $) 34) (($ (-1089) $ $ $) 35) (($ (-1089) $ $ $ $) 36) (($ (-1089) (-591 $)) 39)) (* (($ (-385 (-525)) $) NIL) (($ $ (-385 (-525))) NIL) (($ |#2| $) 266) (($ $ |#2|) NIL) (($ $ $) NIL) (($ (-525) $) NIL) (($ (-712) $) NIL) (($ (-854) $) NIL)))
+(((-407 |#1| |#2|) (-10 -8 (-15 * (|#1| (-854) |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2128 ((-712))) (-15 -3022 (|#1| (-525))) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -1408 ((-501) |#1|)) (-15 -3528 ((-885 |#2|) |#1|)) (-15 -1251 ((-3 (-885 |#2|) "failed") |#1|)) (-15 -3022 (|#1| (-885 |#2|))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3022 (|#1| |#1|)) (-15 * (|#1| |#1| (-385 (-525)))) (-15 * (|#1| (-385 (-525)) |#1|)) (-15 -3528 ((-385 (-885 |#2|)) |#1|)) (-15 -1251 ((-3 (-385 (-885 |#2|)) "failed") |#1|)) (-15 -3022 (|#1| (-385 (-885 |#2|)))) (-15 -1312 ((-385 (-1085 |#1|)) |#1| (-564 |#1|))) (-15 -3022 (|#1| (-385 (-885 (-385 |#2|))))) (-15 -3022 (|#1| (-885 (-385 |#2|)))) (-15 -3022 (|#1| (-385 |#2|))) (-15 -2966 (|#1| |#1|)) (-15 -1408 (|#1| (-396 |#1|))) (-15 -4132 (|#1| |#1| (-1089) (-712) (-1 |#1| |#1|))) (-15 -4132 (|#1| |#1| (-1089) (-712) (-1 |#1| (-591 |#1|)))) (-15 -4132 (|#1| |#1| (-591 (-1089)) (-591 (-712)) (-591 (-1 |#1| (-591 |#1|))))) (-15 -4132 (|#1| |#1| (-591 (-1089)) (-591 (-712)) (-591 (-1 |#1| |#1|)))) (-15 -3877 ((-3 (-2 (|:| |val| |#1|) (|:| -2008 (-525))) "failed") |#1|)) (-15 -2292 ((-3 (-2 (|:| |var| (-564 |#1|)) (|:| -2008 (-525))) "failed") |#1| (-1089))) (-15 -2292 ((-3 (-2 (|:| |var| (-564 |#1|)) (|:| -2008 (-525))) "failed") |#1| (-110))) (-15 -2368 (|#1| |#1|)) (-15 -3022 (|#1| (-1041 |#2| (-564 |#1|)))) (-15 -2104 ((-3 (-2 (|:| -3482 (-525)) (|:| |var| (-564 |#1|))) "failed") |#1|)) (-15 -2010 ((-3 (-591 |#1|) "failed") |#1|)) (-15 -2292 ((-3 (-2 (|:| |var| (-564 |#1|)) (|:| -2008 (-525))) "failed") |#1|)) (-15 -3376 ((-3 (-591 |#1|) "failed") |#1|)) (-15 -4132 (|#1| |#1| (-591 (-110)) (-591 |#1|) (-1089))) (-15 -4132 (|#1| |#1| (-110) |#1| (-1089))) (-15 -4132 (|#1| |#1|)) (-15 -4132 (|#1| |#1| (-591 (-1089)))) (-15 -4132 (|#1| |#1| (-1089))) (-15 -2745 (|#1| (-1089) (-591 |#1|))) (-15 -2745 (|#1| (-1089) |#1| |#1| |#1| |#1|)) (-15 -2745 (|#1| (-1089) |#1| |#1| |#1|)) (-15 -2745 (|#1| (-1089) |#1| |#1|)) (-15 -2745 (|#1| (-1089) |#1|)) (-15 -1507 ((-591 (-1089)) |#1|)) (-15 -1646 (|#2| |#1|)) (-15 -1634 ((-108) |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3022 (|#1| |#2|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -1408 ((-825 (-357)) |#1|)) (-15 -1408 ((-825 (-525)) |#1|)) (-15 -3528 ((-1089) |#1|)) (-15 -1251 ((-3 (-1089) "failed") |#1|)) (-15 -3022 (|#1| (-1089))) (-15 -4132 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -4132 (|#1| |#1| (-110) (-1 |#1| (-591 |#1|)))) (-15 -4132 (|#1| |#1| (-591 (-110)) (-591 (-1 |#1| (-591 |#1|))))) (-15 -4132 (|#1| |#1| (-591 (-110)) (-591 (-1 |#1| |#1|)))) (-15 -4132 (|#1| |#1| (-1089) (-1 |#1| |#1|))) (-15 -4132 (|#1| |#1| (-1089) (-1 |#1| (-591 |#1|)))) (-15 -4132 (|#1| |#1| (-591 (-1089)) (-591 (-1 |#1| (-591 |#1|))))) (-15 -4132 (|#1| |#1| (-591 (-1089)) (-591 (-1 |#1| |#1|)))) (-15 -2661 ((-108) (-110))) (-15 -3219 ((-110) (-110))) (-15 -1298 ((-591 (-564 |#1|)) |#1|)) (-15 -1405 ((-3 (-564 |#1|) "failed") |#1|)) (-15 -3825 (|#1| |#1| (-591 (-564 |#1|)) (-591 |#1|))) (-15 -3825 (|#1| |#1| (-591 (-273 |#1|)))) (-15 -3825 (|#1| |#1| (-273 |#1|))) (-15 -3164 (|#1| (-110) (-591 |#1|))) (-15 -3164 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -3164 (|#1| (-110) |#1| |#1| |#1|)) (-15 -3164 (|#1| (-110) |#1| |#1|)) (-15 -3164 (|#1| (-110) |#1|)) (-15 -4132 (|#1| |#1| (-591 |#1|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#1| |#1|)) (-15 -4132 (|#1| |#1| (-273 |#1|))) (-15 -4132 (|#1| |#1| (-591 (-273 |#1|)))) (-15 -4132 (|#1| |#1| (-591 (-564 |#1|)) (-591 |#1|))) (-15 -4132 (|#1| |#1| (-564 |#1|) |#1|)) (-15 -3528 ((-564 |#1|) |#1|)) (-15 -1251 ((-3 (-564 |#1|) "failed") |#1|)) (-15 -3022 (|#1| (-564 |#1|))) (-15 -3022 ((-796) |#1|))) (-408 |#2|) (-788)) (T -407))
+((-3219 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *4 (-788)) (-5 *1 (-407 *3 *4)) (-4 *3 (-408 *4)))) (-2661 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *5 (-788)) (-5 *2 (-108)) (-5 *1 (-407 *4 *5)) (-4 *4 (-408 *5)))) (-2128 (*1 *2) (-12 (-4 *4 (-788)) (-5 *2 (-712)) (-5 *1 (-407 *3 *4)) (-4 *3 (-408 *4)))))
+(-10 -8 (-15 * (|#1| (-854) |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2128 ((-712))) (-15 -3022 (|#1| (-525))) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -1408 ((-501) |#1|)) (-15 -3528 ((-885 |#2|) |#1|)) (-15 -1251 ((-3 (-885 |#2|) "failed") |#1|)) (-15 -3022 (|#1| (-885 |#2|))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3022 (|#1| |#1|)) (-15 * (|#1| |#1| (-385 (-525)))) (-15 * (|#1| (-385 (-525)) |#1|)) (-15 -3528 ((-385 (-885 |#2|)) |#1|)) (-15 -1251 ((-3 (-385 (-885 |#2|)) "failed") |#1|)) (-15 -3022 (|#1| (-385 (-885 |#2|)))) (-15 -1312 ((-385 (-1085 |#1|)) |#1| (-564 |#1|))) (-15 -3022 (|#1| (-385 (-885 (-385 |#2|))))) (-15 -3022 (|#1| (-885 (-385 |#2|)))) (-15 -3022 (|#1| (-385 |#2|))) (-15 -2966 (|#1| |#1|)) (-15 -1408 (|#1| (-396 |#1|))) (-15 -4132 (|#1| |#1| (-1089) (-712) (-1 |#1| |#1|))) (-15 -4132 (|#1| |#1| (-1089) (-712) (-1 |#1| (-591 |#1|)))) (-15 -4132 (|#1| |#1| (-591 (-1089)) (-591 (-712)) (-591 (-1 |#1| (-591 |#1|))))) (-15 -4132 (|#1| |#1| (-591 (-1089)) (-591 (-712)) (-591 (-1 |#1| |#1|)))) (-15 -3877 ((-3 (-2 (|:| |val| |#1|) (|:| -2008 (-525))) "failed") |#1|)) (-15 -2292 ((-3 (-2 (|:| |var| (-564 |#1|)) (|:| -2008 (-525))) "failed") |#1| (-1089))) (-15 -2292 ((-3 (-2 (|:| |var| (-564 |#1|)) (|:| -2008 (-525))) "failed") |#1| (-110))) (-15 -2368 (|#1| |#1|)) (-15 -3022 (|#1| (-1041 |#2| (-564 |#1|)))) (-15 -2104 ((-3 (-2 (|:| -3482 (-525)) (|:| |var| (-564 |#1|))) "failed") |#1|)) (-15 -2010 ((-3 (-591 |#1|) "failed") |#1|)) (-15 -2292 ((-3 (-2 (|:| |var| (-564 |#1|)) (|:| -2008 (-525))) "failed") |#1|)) (-15 -3376 ((-3 (-591 |#1|) "failed") |#1|)) (-15 -4132 (|#1| |#1| (-591 (-110)) (-591 |#1|) (-1089))) (-15 -4132 (|#1| |#1| (-110) |#1| (-1089))) (-15 -4132 (|#1| |#1|)) (-15 -4132 (|#1| |#1| (-591 (-1089)))) (-15 -4132 (|#1| |#1| (-1089))) (-15 -2745 (|#1| (-1089) (-591 |#1|))) (-15 -2745 (|#1| (-1089) |#1| |#1| |#1| |#1|)) (-15 -2745 (|#1| (-1089) |#1| |#1| |#1|)) (-15 -2745 (|#1| (-1089) |#1| |#1|)) (-15 -2745 (|#1| (-1089) |#1|)) (-15 -1507 ((-591 (-1089)) |#1|)) (-15 -1646 (|#2| |#1|)) (-15 -1634 ((-108) |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3022 (|#1| |#2|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -1408 ((-825 (-357)) |#1|)) (-15 -1408 ((-825 (-525)) |#1|)) (-15 -3528 ((-1089) |#1|)) (-15 -1251 ((-3 (-1089) "failed") |#1|)) (-15 -3022 (|#1| (-1089))) (-15 -4132 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -4132 (|#1| |#1| (-110) (-1 |#1| (-591 |#1|)))) (-15 -4132 (|#1| |#1| (-591 (-110)) (-591 (-1 |#1| (-591 |#1|))))) (-15 -4132 (|#1| |#1| (-591 (-110)) (-591 (-1 |#1| |#1|)))) (-15 -4132 (|#1| |#1| (-1089) (-1 |#1| |#1|))) (-15 -4132 (|#1| |#1| (-1089) (-1 |#1| (-591 |#1|)))) (-15 -4132 (|#1| |#1| (-591 (-1089)) (-591 (-1 |#1| (-591 |#1|))))) (-15 -4132 (|#1| |#1| (-591 (-1089)) (-591 (-1 |#1| |#1|)))) (-15 -2661 ((-108) (-110))) (-15 -3219 ((-110) (-110))) (-15 -1298 ((-591 (-564 |#1|)) |#1|)) (-15 -1405 ((-3 (-564 |#1|) "failed") |#1|)) (-15 -3825 (|#1| |#1| (-591 (-564 |#1|)) (-591 |#1|))) (-15 -3825 (|#1| |#1| (-591 (-273 |#1|)))) (-15 -3825 (|#1| |#1| (-273 |#1|))) (-15 -3164 (|#1| (-110) (-591 |#1|))) (-15 -3164 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -3164 (|#1| (-110) |#1| |#1| |#1|)) (-15 -3164 (|#1| (-110) |#1| |#1|)) (-15 -3164 (|#1| (-110) |#1|)) (-15 -4132 (|#1| |#1| (-591 |#1|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#1| |#1|)) (-15 -4132 (|#1| |#1| (-273 |#1|))) (-15 -4132 (|#1| |#1| (-591 (-273 |#1|)))) (-15 -4132 (|#1| |#1| (-591 (-564 |#1|)) (-591 |#1|))) (-15 -4132 (|#1| |#1| (-564 |#1|) |#1|)) (-15 -3528 ((-564 |#1|) |#1|)) (-15 -1251 ((-3 (-564 |#1|) "failed") |#1|)) (-15 -3022 (|#1| (-564 |#1|))) (-15 -3022 ((-796) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 116 (|has| |#1| (-25)))) (-1507 (((-591 (-1089)) $) 203)) (-1312 (((-385 (-1085 $)) $ (-564 $)) 171 (|has| |#1| (-517)))) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 143 (|has| |#1| (-517)))) (-3706 (($ $) 144 (|has| |#1| (-517)))) (-1715 (((-108) $) 146 (|has| |#1| (-517)))) (-3374 (((-591 (-564 $)) $) 44)) (-2157 (((-3 $ "failed") $ $) 118 (|has| |#1| (-21)))) (-3825 (($ $ (-273 $)) 56) (($ $ (-591 (-273 $))) 55) (($ $ (-591 (-564 $)) (-591 $)) 54)) (-1291 (($ $) 163 (|has| |#1| (-517)))) (-2827 (((-396 $) $) 164 (|has| |#1| (-517)))) (-1947 (((-108) $ $) 154 (|has| |#1| (-517)))) (-3798 (($) 102 (-3321 (|has| |#1| (-1030)) (|has| |#1| (-25))) CONST)) (-1251 (((-3 (-564 $) "failed") $) 69) (((-3 (-1089) "failed") $) 216) (((-3 (-525) "failed") $) 209 (|has| |#1| (-966 (-525)))) (((-3 |#1| "failed") $) 207) (((-3 (-385 (-885 |#1|)) "failed") $) 169 (|has| |#1| (-517))) (((-3 (-885 |#1|) "failed") $) 123 (|has| |#1| (-975))) (((-3 (-385 (-525)) "failed") $) 95 (-3321 (-12 (|has| |#1| (-966 (-525))) (|has| |#1| (-517))) (|has| |#1| (-966 (-385 (-525))))))) (-3528 (((-564 $) $) 68) (((-1089) $) 215) (((-525) $) 210 (|has| |#1| (-966 (-525)))) ((|#1| $) 206) (((-385 (-885 |#1|)) $) 168 (|has| |#1| (-517))) (((-885 |#1|) $) 122 (|has| |#1| (-975))) (((-385 (-525)) $) 94 (-3321 (-12 (|has| |#1| (-966 (-525))) (|has| |#1| (-517))) (|has| |#1| (-966 (-385 (-525))))))) (-2129 (($ $ $) 158 (|has| |#1| (-517)))) (-3305 (((-631 (-525)) (-631 $)) 137 (-1213 (|has| |#1| (-587 (-525))) (|has| |#1| (-975)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 136 (-1213 (|has| |#1| (-587 (-525))) (|has| |#1| (-975)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) 135 (|has| |#1| (-975))) (((-631 |#1|) (-631 $)) 134 (|has| |#1| (-975)))) (-4163 (((-3 $ "failed") $) 105 (|has| |#1| (-1030)))) (-2110 (($ $ $) 157 (|has| |#1| (-517)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 152 (|has| |#1| (-517)))) (-2744 (((-108) $) 165 (|has| |#1| (-517)))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 212 (|has| |#1| (-819 (-525)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 211 (|has| |#1| (-819 (-357))))) (-1668 (($ $) 51) (($ (-591 $)) 50)) (-2194 (((-591 (-110)) $) 43)) (-3219 (((-110) (-110)) 42)) (-2824 (((-108) $) 103 (|has| |#1| (-1030)))) (-2419 (((-108) $) 22 (|has| $ (-966 (-525))))) (-2368 (($ $) 186 (|has| |#1| (-975)))) (-1738 (((-1041 |#1| (-564 $)) $) 187 (|has| |#1| (-975)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 161 (|has| |#1| (-517)))) (-2695 (((-1085 $) (-564 $)) 25 (|has| $ (-975)))) (-3741 (($ $ $) 13)) (-2478 (($ $ $) 14)) (-1340 (($ (-1 $ $) (-564 $)) 36)) (-1405 (((-3 (-564 $) "failed") $) 46)) (-1356 (($ (-591 $)) 150 (|has| |#1| (-517))) (($ $ $) 149 (|has| |#1| (-517)))) (-2339 (((-1072) $) 9)) (-1298 (((-591 (-564 $)) $) 45)) (-1843 (($ (-110) $) 38) (($ (-110) (-591 $)) 37)) (-3376 (((-3 (-591 $) "failed") $) 192 (|has| |#1| (-1030)))) (-3877 (((-3 (-2 (|:| |val| $) (|:| -2008 (-525))) "failed") $) 183 (|has| |#1| (-975)))) (-2010 (((-3 (-591 $) "failed") $) 190 (|has| |#1| (-25)))) (-2104 (((-3 (-2 (|:| -3482 (-525)) (|:| |var| (-564 $))) "failed") $) 189 (|has| |#1| (-25)))) (-2292 (((-3 (-2 (|:| |var| (-564 $)) (|:| -2008 (-525))) "failed") $) 191 (|has| |#1| (-1030))) (((-3 (-2 (|:| |var| (-564 $)) (|:| -2008 (-525))) "failed") $ (-110)) 185 (|has| |#1| (-975))) (((-3 (-2 (|:| |var| (-564 $)) (|:| -2008 (-525))) "failed") $ (-1089)) 184 (|has| |#1| (-975)))) (-1709 (((-108) $ (-110)) 40) (((-108) $ (-1089)) 39)) (-1622 (($ $) 107 (-3321 (|has| |#1| (-450)) (|has| |#1| (-517))))) (-2965 (((-712) $) 47)) (-2047 (((-1036) $) 10)) (-1634 (((-108) $) 205)) (-1646 ((|#1| $) 204)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 151 (|has| |#1| (-517)))) (-1399 (($ (-591 $)) 148 (|has| |#1| (-517))) (($ $ $) 147 (|has| |#1| (-517)))) (-1988 (((-108) $ $) 35) (((-108) $ (-1089)) 34)) (-1348 (((-396 $) $) 162 (|has| |#1| (-517)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 160 (|has| |#1| (-517))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 159 (|has| |#1| (-517)))) (-2089 (((-3 $ "failed") $ $) 142 (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 153 (|has| |#1| (-517)))) (-3451 (((-108) $) 23 (|has| $ (-966 (-525))))) (-4132 (($ $ (-564 $) $) 67) (($ $ (-591 (-564 $)) (-591 $)) 66) (($ $ (-591 (-273 $))) 65) (($ $ (-273 $)) 64) (($ $ $ $) 63) (($ $ (-591 $) (-591 $)) 62) (($ $ (-591 (-1089)) (-591 (-1 $ $))) 33) (($ $ (-591 (-1089)) (-591 (-1 $ (-591 $)))) 32) (($ $ (-1089) (-1 $ (-591 $))) 31) (($ $ (-1089) (-1 $ $)) 30) (($ $ (-591 (-110)) (-591 (-1 $ $))) 29) (($ $ (-591 (-110)) (-591 (-1 $ (-591 $)))) 28) (($ $ (-110) (-1 $ (-591 $))) 27) (($ $ (-110) (-1 $ $)) 26) (($ $ (-1089)) 197 (|has| |#1| (-566 (-501)))) (($ $ (-591 (-1089))) 196 (|has| |#1| (-566 (-501)))) (($ $) 195 (|has| |#1| (-566 (-501)))) (($ $ (-110) $ (-1089)) 194 (|has| |#1| (-566 (-501)))) (($ $ (-591 (-110)) (-591 $) (-1089)) 193 (|has| |#1| (-566 (-501)))) (($ $ (-591 (-1089)) (-591 (-712)) (-591 (-1 $ $))) 182 (|has| |#1| (-975))) (($ $ (-591 (-1089)) (-591 (-712)) (-591 (-1 $ (-591 $)))) 181 (|has| |#1| (-975))) (($ $ (-1089) (-712) (-1 $ (-591 $))) 180 (|has| |#1| (-975))) (($ $ (-1089) (-712) (-1 $ $)) 179 (|has| |#1| (-975)))) (-1712 (((-712) $) 155 (|has| |#1| (-517)))) (-3164 (($ (-110) $) 61) (($ (-110) $ $) 60) (($ (-110) $ $ $) 59) (($ (-110) $ $ $ $) 58) (($ (-110) (-591 $)) 57)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 156 (|has| |#1| (-517)))) (-1484 (($ $) 49) (($ $ $) 48)) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) 128 (|has| |#1| (-975))) (($ $ (-1089) (-712)) 127 (|has| |#1| (-975))) (($ $ (-591 (-1089))) 126 (|has| |#1| (-975))) (($ $ (-1089)) 125 (|has| |#1| (-975)))) (-2966 (($ $) 176 (|has| |#1| (-517)))) (-1754 (((-1041 |#1| (-564 $)) $) 177 (|has| |#1| (-517)))) (-1478 (($ $) 24 (|has| $ (-975)))) (-1408 (((-825 (-525)) $) 214 (|has| |#1| (-566 (-825 (-525))))) (((-825 (-357)) $) 213 (|has| |#1| (-566 (-825 (-357))))) (($ (-396 $)) 178 (|has| |#1| (-517))) (((-501) $) 97 (|has| |#1| (-566 (-501))))) (-3228 (($ $ $) 111 (|has| |#1| (-450)))) (-3619 (($ $ $) 112 (|has| |#1| (-450)))) (-3022 (((-796) $) 11) (($ (-564 $)) 70) (($ (-1089)) 217) (($ |#1|) 208) (($ (-1041 |#1| (-564 $))) 188 (|has| |#1| (-975))) (($ (-385 |#1|)) 174 (|has| |#1| (-517))) (($ (-885 (-385 |#1|))) 173 (|has| |#1| (-517))) (($ (-385 (-885 (-385 |#1|)))) 172 (|has| |#1| (-517))) (($ (-385 (-885 |#1|))) 170 (|has| |#1| (-517))) (($ $) 141 (|has| |#1| (-517))) (($ (-885 |#1|)) 124 (|has| |#1| (-975))) (($ (-385 (-525))) 96 (-3321 (|has| |#1| (-517)) (-12 (|has| |#1| (-966 (-525))) (|has| |#1| (-517))) (|has| |#1| (-966 (-385 (-525)))))) (($ (-525)) 93 (-3321 (|has| |#1| (-975)) (|has| |#1| (-966 (-525)))))) (-1437 (((-3 $ "failed") $) 138 (|has| |#1| (-136)))) (-2128 (((-712)) 133 (|has| |#1| (-975)))) (-2989 (($ $) 53) (($ (-591 $)) 52)) (-2661 (((-108) (-110)) 41)) (-2495 (((-108) $ $) 145 (|has| |#1| (-517)))) (-2745 (($ (-1089) $) 202) (($ (-1089) $ $) 201) (($ (-1089) $ $ $) 200) (($ (-1089) $ $ $ $) 199) (($ (-1089) (-591 $)) 198)) (-3710 (($ $ (-525)) 110 (-3321 (|has| |#1| (-450)) (|has| |#1| (-517)))) (($ $ (-712)) 104 (|has| |#1| (-1030))) (($ $ (-854)) 100 (|has| |#1| (-1030)))) (-4191 (($) 115 (|has| |#1| (-25)) CONST)) (-4197 (($) 101 (|has| |#1| (-1030)) CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) 132 (|has| |#1| (-975))) (($ $ (-1089) (-712)) 131 (|has| |#1| (-975))) (($ $ (-591 (-1089))) 130 (|has| |#1| (-975))) (($ $ (-1089)) 129 (|has| |#1| (-975)))) (-4135 (((-108) $ $) 16)) (-4119 (((-108) $ $) 17)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 15)) (-4112 (((-108) $ $) 18)) (-4173 (($ (-1041 |#1| (-564 $)) (-1041 |#1| (-564 $))) 175 (|has| |#1| (-517))) (($ $ $) 108 (-3321 (|has| |#1| (-450)) (|has| |#1| (-517))))) (-4164 (($ $ $) 120 (|has| |#1| (-21))) (($ $) 119 (|has| |#1| (-21)))) (-4156 (($ $ $) 113 (|has| |#1| (-25)))) (** (($ $ (-525)) 109 (-3321 (|has| |#1| (-450)) (|has| |#1| (-517)))) (($ $ (-712)) 106 (|has| |#1| (-1030))) (($ $ (-854)) 99 (|has| |#1| (-1030)))) (* (($ (-385 (-525)) $) 167 (|has| |#1| (-517))) (($ $ (-385 (-525))) 166 (|has| |#1| (-517))) (($ |#1| $) 140 (|has| |#1| (-160))) (($ $ |#1|) 139 (|has| |#1| (-160))) (($ (-525) $) 121 (|has| |#1| (-21))) (($ (-712) $) 117 (|has| |#1| (-25))) (($ (-854) $) 114 (|has| |#1| (-25))) (($ $ $) 98 (|has| |#1| (-1030)))))
+(((-408 |#1|) (-131) (-788)) (T -408))
+((-1634 (*1 *2 *1) (-12 (-4 *1 (-408 *3)) (-4 *3 (-788)) (-5 *2 (-108)))) (-1646 (*1 *2 *1) (-12 (-4 *1 (-408 *2)) (-4 *2 (-788)))) (-1507 (*1 *2 *1) (-12 (-4 *1 (-408 *3)) (-4 *3 (-788)) (-5 *2 (-591 (-1089))))) (-2745 (*1 *1 *2 *1) (-12 (-5 *2 (-1089)) (-4 *1 (-408 *3)) (-4 *3 (-788)))) (-2745 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1089)) (-4 *1 (-408 *3)) (-4 *3 (-788)))) (-2745 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1089)) (-4 *1 (-408 *3)) (-4 *3 (-788)))) (-2745 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1089)) (-4 *1 (-408 *3)) (-4 *3 (-788)))) (-2745 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-591 *1)) (-4 *1 (-408 *4)) (-4 *4 (-788)))) (-4132 (*1 *1 *1 *2) (-12 (-5 *2 (-1089)) (-4 *1 (-408 *3)) (-4 *3 (-788)) (-4 *3 (-566 (-501))))) (-4132 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-1089))) (-4 *1 (-408 *3)) (-4 *3 (-788)) (-4 *3 (-566 (-501))))) (-4132 (*1 *1 *1) (-12 (-4 *1 (-408 *2)) (-4 *2 (-788)) (-4 *2 (-566 (-501))))) (-4132 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1089)) (-4 *1 (-408 *4)) (-4 *4 (-788)) (-4 *4 (-566 (-501))))) (-4132 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-591 (-110))) (-5 *3 (-591 *1)) (-5 *4 (-1089)) (-4 *1 (-408 *5)) (-4 *5 (-788)) (-4 *5 (-566 (-501))))) (-3376 (*1 *2 *1) (|partial| -12 (-4 *3 (-1030)) (-4 *3 (-788)) (-5 *2 (-591 *1)) (-4 *1 (-408 *3)))) (-2292 (*1 *2 *1) (|partial| -12 (-4 *3 (-1030)) (-4 *3 (-788)) (-5 *2 (-2 (|:| |var| (-564 *1)) (|:| -2008 (-525)))) (-4 *1 (-408 *3)))) (-2010 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-788)) (-5 *2 (-591 *1)) (-4 *1 (-408 *3)))) (-2104 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-788)) (-5 *2 (-2 (|:| -3482 (-525)) (|:| |var| (-564 *1)))) (-4 *1 (-408 *3)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-1041 *3 (-564 *1))) (-4 *3 (-975)) (-4 *3 (-788)) (-4 *1 (-408 *3)))) (-1738 (*1 *2 *1) (-12 (-4 *3 (-975)) (-4 *3 (-788)) (-5 *2 (-1041 *3 (-564 *1))) (-4 *1 (-408 *3)))) (-2368 (*1 *1 *1) (-12 (-4 *1 (-408 *2)) (-4 *2 (-788)) (-4 *2 (-975)))) (-2292 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-110)) (-4 *4 (-975)) (-4 *4 (-788)) (-5 *2 (-2 (|:| |var| (-564 *1)) (|:| -2008 (-525)))) (-4 *1 (-408 *4)))) (-2292 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1089)) (-4 *4 (-975)) (-4 *4 (-788)) (-5 *2 (-2 (|:| |var| (-564 *1)) (|:| -2008 (-525)))) (-4 *1 (-408 *4)))) (-3877 (*1 *2 *1) (|partial| -12 (-4 *3 (-975)) (-4 *3 (-788)) (-5 *2 (-2 (|:| |val| *1) (|:| -2008 (-525)))) (-4 *1 (-408 *3)))) (-4132 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-591 (-1089))) (-5 *3 (-591 (-712))) (-5 *4 (-591 (-1 *1 *1))) (-4 *1 (-408 *5)) (-4 *5 (-788)) (-4 *5 (-975)))) (-4132 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-591 (-1089))) (-5 *3 (-591 (-712))) (-5 *4 (-591 (-1 *1 (-591 *1)))) (-4 *1 (-408 *5)) (-4 *5 (-788)) (-4 *5 (-975)))) (-4132 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1089)) (-5 *3 (-712)) (-5 *4 (-1 *1 (-591 *1))) (-4 *1 (-408 *5)) (-4 *5 (-788)) (-4 *5 (-975)))) (-4132 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1089)) (-5 *3 (-712)) (-5 *4 (-1 *1 *1)) (-4 *1 (-408 *5)) (-4 *5 (-788)) (-4 *5 (-975)))) (-1408 (*1 *1 *2) (-12 (-5 *2 (-396 *1)) (-4 *1 (-408 *3)) (-4 *3 (-517)) (-4 *3 (-788)))) (-1754 (*1 *2 *1) (-12 (-4 *3 (-517)) (-4 *3 (-788)) (-5 *2 (-1041 *3 (-564 *1))) (-4 *1 (-408 *3)))) (-2966 (*1 *1 *1) (-12 (-4 *1 (-408 *2)) (-4 *2 (-788)) (-4 *2 (-517)))) (-4173 (*1 *1 *2 *2) (-12 (-5 *2 (-1041 *3 (-564 *1))) (-4 *3 (-517)) (-4 *3 (-788)) (-4 *1 (-408 *3)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-385 *3)) (-4 *3 (-517)) (-4 *3 (-788)) (-4 *1 (-408 *3)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-885 (-385 *3))) (-4 *3 (-517)) (-4 *3 (-788)) (-4 *1 (-408 *3)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-385 (-885 (-385 *3)))) (-4 *3 (-517)) (-4 *3 (-788)) (-4 *1 (-408 *3)))) (-1312 (*1 *2 *1 *3) (-12 (-5 *3 (-564 *1)) (-4 *1 (-408 *4)) (-4 *4 (-788)) (-4 *4 (-517)) (-5 *2 (-385 (-1085 *1))))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-408 *3)) (-4 *3 (-788)) (-4 *3 (-1030)))))
+(-13 (-281) (-966 (-1089)) (-817 |t#1|) (-378 |t#1|) (-389 |t#1|) (-10 -8 (-15 -1634 ((-108) $)) (-15 -1646 (|t#1| $)) (-15 -1507 ((-591 (-1089)) $)) (-15 -2745 ($ (-1089) $)) (-15 -2745 ($ (-1089) $ $)) (-15 -2745 ($ (-1089) $ $ $)) (-15 -2745 ($ (-1089) $ $ $ $)) (-15 -2745 ($ (-1089) (-591 $))) (IF (|has| |t#1| (-566 (-501))) (PROGN (-6 (-566 (-501))) (-15 -4132 ($ $ (-1089))) (-15 -4132 ($ $ (-591 (-1089)))) (-15 -4132 ($ $)) (-15 -4132 ($ $ (-110) $ (-1089))) (-15 -4132 ($ $ (-591 (-110)) (-591 $) (-1089)))) |%noBranch|) (IF (|has| |t#1| (-1030)) (PROGN (-6 (-668)) (-15 ** ($ $ (-712))) (-15 -3376 ((-3 (-591 $) "failed") $)) (-15 -2292 ((-3 (-2 (|:| |var| (-564 $)) (|:| -2008 (-525))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-450)) (-6 (-450)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -2010 ((-3 (-591 $) "failed") $)) (-15 -2104 ((-3 (-2 (|:| -3482 (-525)) (|:| |var| (-564 $))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |t#1| (-975)) (PROGN (-6 (-975)) (-6 (-966 (-885 |t#1|))) (-6 (-833 (-1089))) (-6 (-355 |t#1|)) (-15 -3022 ($ (-1041 |t#1| (-564 $)))) (-15 -1738 ((-1041 |t#1| (-564 $)) $)) (-15 -2368 ($ $)) (-15 -2292 ((-3 (-2 (|:| |var| (-564 $)) (|:| -2008 (-525))) "failed") $ (-110))) (-15 -2292 ((-3 (-2 (|:| |var| (-564 $)) (|:| -2008 (-525))) "failed") $ (-1089))) (-15 -3877 ((-3 (-2 (|:| |val| $) (|:| -2008 (-525))) "failed") $)) (-15 -4132 ($ $ (-591 (-1089)) (-591 (-712)) (-591 (-1 $ $)))) (-15 -4132 ($ $ (-591 (-1089)) (-591 (-712)) (-591 (-1 $ (-591 $))))) (-15 -4132 ($ $ (-1089) (-712) (-1 $ (-591 $)))) (-15 -4132 ($ $ (-1089) (-712) (-1 $ $)))) |%noBranch|) (IF (|has| |t#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |t#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |t#1| (-160)) (-6 (-37 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-517)) (PROGN (-6 (-341)) (-6 (-966 (-385 (-885 |t#1|)))) (-15 -1408 ($ (-396 $))) (-15 -1754 ((-1041 |t#1| (-564 $)) $)) (-15 -2966 ($ $)) (-15 -4173 ($ (-1041 |t#1| (-564 $)) (-1041 |t#1| (-564 $)))) (-15 -3022 ($ (-385 |t#1|))) (-15 -3022 ($ (-885 (-385 |t#1|)))) (-15 -3022 ($ (-385 (-885 (-385 |t#1|))))) (-15 -1312 ((-385 (-1085 $)) $ (-564 $))) (IF (|has| |t#1| (-966 (-525))) (-6 (-966 (-385 (-525)))) |%noBranch|)) |%noBranch|)))
+(((-21) -3321 (|has| |#1| (-975)) (|has| |#1| (-517)) (|has| |#1| (-160)) (|has| |#1| (-138)) (|has| |#1| (-136)) (|has| |#1| (-21))) ((-23) -3321 (|has| |#1| (-975)) (|has| |#1| (-517)) (|has| |#1| (-160)) (|has| |#1| (-138)) (|has| |#1| (-136)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-25) -3321 (|has| |#1| (-975)) (|has| |#1| (-517)) (|has| |#1| (-160)) (|has| |#1| (-138)) (|has| |#1| (-136)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-37 #0=(-385 (-525))) |has| |#1| (-517)) ((-37 |#1|) |has| |#1| (-160)) ((-37 $) |has| |#1| (-517)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-517)) ((-107 |#1| |#1|) |has| |#1| (-160)) ((-107 $ $) |has| |#1| (-517)) ((-126) -3321 (|has| |#1| (-975)) (|has| |#1| (-517)) (|has| |#1| (-160)) (|has| |#1| (-138)) (|has| |#1| (-136)) (|has| |#1| (-21))) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) |has| |#1| (-517)) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-566 (-825 (-357))) |has| |#1| (-566 (-825 (-357)))) ((-566 (-825 (-525))) |has| |#1| (-566 (-825 (-525)))) ((-223) |has| |#1| (-517)) ((-269) |has| |#1| (-517)) ((-286) |has| |#1| (-517)) ((-288 $) . T) ((-281) . T) ((-341) |has| |#1| (-517)) ((-355 |#1|) |has| |#1| (-975)) ((-378 |#1|) . T) ((-389 |#1|) . T) ((-429) |has| |#1| (-517)) ((-450) |has| |#1| (-450)) ((-486 (-564 $) $) . T) ((-486 $ $) . T) ((-517) |has| |#1| (-517)) ((-593 #0#) |has| |#1| (-517)) ((-593 |#1|) |has| |#1| (-160)) ((-593 $) -3321 (|has| |#1| (-975)) (|has| |#1| (-517)) (|has| |#1| (-160)) (|has| |#1| (-138)) (|has| |#1| (-136))) ((-587 (-525)) -12 (|has| |#1| (-587 (-525))) (|has| |#1| (-975))) ((-587 |#1|) |has| |#1| (-975)) ((-659 #0#) |has| |#1| (-517)) ((-659 |#1|) |has| |#1| (-160)) ((-659 $) |has| |#1| (-517)) ((-668) -3321 (|has| |#1| (-1030)) (|has| |#1| (-975)) (|has| |#1| (-517)) (|has| |#1| (-450)) (|has| |#1| (-160)) (|has| |#1| (-138)) (|has| |#1| (-136))) ((-788) . T) ((-833 (-1089)) |has| |#1| (-975)) ((-819 (-357)) |has| |#1| (-819 (-357))) ((-819 (-525)) |has| |#1| (-819 (-525))) ((-817 |#1|) . T) ((-853) |has| |#1| (-517)) ((-966 (-385 (-525))) -3321 (|has| |#1| (-966 (-385 (-525)))) (-12 (|has| |#1| (-517)) (|has| |#1| (-966 (-525))))) ((-966 (-385 (-885 |#1|))) |has| |#1| (-517)) ((-966 (-525)) |has| |#1| (-966 (-525))) ((-966 (-564 $)) . T) ((-966 (-885 |#1|)) |has| |#1| (-975)) ((-966 (-1089)) . T) ((-966 |#1|) . T) ((-981 #0#) |has| |#1| (-517)) ((-981 |#1|) |has| |#1| (-160)) ((-981 $) |has| |#1| (-517)) ((-975) -3321 (|has| |#1| (-975)) (|has| |#1| (-517)) (|has| |#1| (-160)) (|has| |#1| (-138)) (|has| |#1| (-136))) ((-982) -3321 (|has| |#1| (-975)) (|has| |#1| (-517)) (|has| |#1| (-160)) (|has| |#1| (-138)) (|has| |#1| (-136))) ((-1030) -3321 (|has| |#1| (-1030)) (|has| |#1| (-975)) (|has| |#1| (-517)) (|has| |#1| (-450)) (|has| |#1| (-160)) (|has| |#1| (-138)) (|has| |#1| (-136))) ((-1018) . T) ((-1125) . T) ((-1129) |has| |#1| (-517)))
+((-2307 ((|#2| |#2| |#2|) 33)) (-3219 (((-110) (-110)) 44)) (-4005 ((|#2| |#2|) 66)) (-3227 ((|#2| |#2|) 69)) (-3225 ((|#2| |#2|) 32)) (-2271 ((|#2| |#2| |#2|) 35)) (-3481 ((|#2| |#2| |#2|) 37)) (-4123 ((|#2| |#2| |#2|) 34)) (-1330 ((|#2| |#2| |#2|) 36)) (-2661 (((-108) (-110)) 42)) (-2072 ((|#2| |#2|) 39)) (-1828 ((|#2| |#2|) 38)) (-1539 ((|#2| |#2|) 27)) (-3834 ((|#2| |#2| |#2|) 30) ((|#2| |#2|) 28)) (-1617 ((|#2| |#2| |#2|) 31)))
+(((-409 |#1| |#2|) (-10 -7 (-15 -2661 ((-108) (-110))) (-15 -3219 ((-110) (-110))) (-15 -1539 (|#2| |#2|)) (-15 -3834 (|#2| |#2|)) (-15 -3834 (|#2| |#2| |#2|)) (-15 -1617 (|#2| |#2| |#2|)) (-15 -3225 (|#2| |#2|)) (-15 -2307 (|#2| |#2| |#2|)) (-15 -4123 (|#2| |#2| |#2|)) (-15 -2271 (|#2| |#2| |#2|)) (-15 -1330 (|#2| |#2| |#2|)) (-15 -3481 (|#2| |#2| |#2|)) (-15 -1828 (|#2| |#2|)) (-15 -2072 (|#2| |#2|)) (-15 -3227 (|#2| |#2|)) (-15 -4005 (|#2| |#2|))) (-13 (-788) (-517)) (-408 |#1|)) (T -409))
+((-4005 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2)) (-4 *2 (-408 *3)))) (-3227 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2)) (-4 *2 (-408 *3)))) (-2072 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2)) (-4 *2 (-408 *3)))) (-1828 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2)) (-4 *2 (-408 *3)))) (-3481 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2)) (-4 *2 (-408 *3)))) (-1330 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2)) (-4 *2 (-408 *3)))) (-2271 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2)) (-4 *2 (-408 *3)))) (-4123 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2)) (-4 *2 (-408 *3)))) (-2307 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2)) (-4 *2 (-408 *3)))) (-3225 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2)) (-4 *2 (-408 *3)))) (-1617 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2)) (-4 *2 (-408 *3)))) (-3834 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2)) (-4 *2 (-408 *3)))) (-3834 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2)) (-4 *2 (-408 *3)))) (-1539 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2)) (-4 *2 (-408 *3)))) (-3219 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *4)) (-4 *4 (-408 *3)))) (-2661 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-108)) (-5 *1 (-409 *4 *5)) (-4 *5 (-408 *4)))))
+(-10 -7 (-15 -2661 ((-108) (-110))) (-15 -3219 ((-110) (-110))) (-15 -1539 (|#2| |#2|)) (-15 -3834 (|#2| |#2|)) (-15 -3834 (|#2| |#2| |#2|)) (-15 -1617 (|#2| |#2| |#2|)) (-15 -3225 (|#2| |#2|)) (-15 -2307 (|#2| |#2| |#2|)) (-15 -4123 (|#2| |#2| |#2|)) (-15 -2271 (|#2| |#2| |#2|)) (-15 -1330 (|#2| |#2| |#2|)) (-15 -3481 (|#2| |#2| |#2|)) (-15 -1828 (|#2| |#2|)) (-15 -2072 (|#2| |#2|)) (-15 -3227 (|#2| |#2|)) (-15 -4005 (|#2| |#2|)))
+((-3944 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1085 |#2|)) (|:| |pol2| (-1085 |#2|)) (|:| |prim| (-1085 |#2|))) |#2| |#2|) 97 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-591 (-1085 |#2|))) (|:| |prim| (-1085 |#2|))) (-591 |#2|)) 61)))
+(((-410 |#1| |#2|) (-10 -7 (-15 -3944 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-591 (-1085 |#2|))) (|:| |prim| (-1085 |#2|))) (-591 |#2|))) (IF (|has| |#2| (-27)) (-15 -3944 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1085 |#2|)) (|:| |pol2| (-1085 |#2|)) (|:| |prim| (-1085 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-517) (-788) (-138)) (-408 |#1|)) (T -410))
+((-3944 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-517) (-788) (-138))) (-5 *2 (-2 (|:| |primelt| *3) (|:| |pol1| (-1085 *3)) (|:| |pol2| (-1085 *3)) (|:| |prim| (-1085 *3)))) (-5 *1 (-410 *4 *3)) (-4 *3 (-27)) (-4 *3 (-408 *4)))) (-3944 (*1 *2 *3) (-12 (-5 *3 (-591 *5)) (-4 *5 (-408 *4)) (-4 *4 (-13 (-517) (-788) (-138))) (-5 *2 (-2 (|:| |primelt| *5) (|:| |poly| (-591 (-1085 *5))) (|:| |prim| (-1085 *5)))) (-5 *1 (-410 *4 *5)))))
+(-10 -7 (-15 -3944 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-591 (-1085 |#2|))) (|:| |prim| (-1085 |#2|))) (-591 |#2|))) (IF (|has| |#2| (-27)) (-15 -3944 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1085 |#2|)) (|:| |pol2| (-1085 |#2|)) (|:| |prim| (-1085 |#2|))) |#2| |#2|)) |%noBranch|))
+((-3394 (((-1176)) 19)) (-3083 (((-1085 (-385 (-525))) |#2| (-564 |#2|)) 41) (((-385 (-525)) |#2|) 25)))
+(((-411 |#1| |#2|) (-10 -7 (-15 -3083 ((-385 (-525)) |#2|)) (-15 -3083 ((-1085 (-385 (-525))) |#2| (-564 |#2|))) (-15 -3394 ((-1176)))) (-13 (-788) (-517) (-966 (-525))) (-408 |#1|)) (T -411))
+((-3394 (*1 *2) (-12 (-4 *3 (-13 (-788) (-517) (-966 (-525)))) (-5 *2 (-1176)) (-5 *1 (-411 *3 *4)) (-4 *4 (-408 *3)))) (-3083 (*1 *2 *3 *4) (-12 (-5 *4 (-564 *3)) (-4 *3 (-408 *5)) (-4 *5 (-13 (-788) (-517) (-966 (-525)))) (-5 *2 (-1085 (-385 (-525)))) (-5 *1 (-411 *5 *3)))) (-3083 (*1 *2 *3) (-12 (-4 *4 (-13 (-788) (-517) (-966 (-525)))) (-5 *2 (-385 (-525))) (-5 *1 (-411 *4 *3)) (-4 *3 (-408 *4)))))
+(-10 -7 (-15 -3083 ((-385 (-525)) |#2|)) (-15 -3083 ((-1085 (-385 (-525))) |#2| (-564 |#2|))) (-15 -3394 ((-1176))))
+((-1253 (((-108) $) 28)) (-2899 (((-108) $) 30)) (-2666 (((-108) $) 31)) (-2318 (((-108) $) 34)) (-1833 (((-108) $) 29)) (-4000 (((-108) $) 33)) (-3022 (((-796) $) 18) (($ (-1072)) 27) (($ (-1089)) 23) (((-1089) $) 22) (((-1022) $) 21)) (-1454 (((-108) $) 32)) (-4096 (((-108) $ $) 15)))
+(((-412) (-13 (-565 (-796)) (-10 -8 (-15 -3022 ($ (-1072))) (-15 -3022 ($ (-1089))) (-15 -3022 ((-1089) $)) (-15 -3022 ((-1022) $)) (-15 -1253 ((-108) $)) (-15 -1833 ((-108) $)) (-15 -2666 ((-108) $)) (-15 -4000 ((-108) $)) (-15 -2318 ((-108) $)) (-15 -1454 ((-108) $)) (-15 -2899 ((-108) $)) (-15 -4096 ((-108) $ $))))) (T -412))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-412)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-412)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-412)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-1022)) (-5 *1 (-412)))) (-1253 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))) (-1833 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))) (-2666 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))) (-4000 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))) (-2318 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))) (-1454 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))) (-2899 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))) (-4096 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))))
+(-13 (-565 (-796)) (-10 -8 (-15 -3022 ($ (-1072))) (-15 -3022 ($ (-1089))) (-15 -3022 ((-1089) $)) (-15 -3022 ((-1022) $)) (-15 -1253 ((-108) $)) (-15 -1833 ((-108) $)) (-15 -2666 ((-108) $)) (-15 -4000 ((-108) $)) (-15 -2318 ((-108) $)) (-15 -1454 ((-108) $)) (-15 -2899 ((-108) $)) (-15 -4096 ((-108) $ $))))
+((-2795 (((-3 (-396 (-1085 (-385 (-525)))) "failed") |#3|) 69)) (-2079 (((-396 |#3|) |#3|) 34)) (-2673 (((-3 (-396 (-1085 (-47))) "failed") |#3|) 29 (|has| |#2| (-966 (-47))))) (-2869 (((-3 (|:| |overq| (-1085 (-385 (-525)))) (|:| |overan| (-1085 (-47))) (|:| -2031 (-108))) |#3|) 37)))
+(((-413 |#1| |#2| |#3|) (-10 -7 (-15 -2079 ((-396 |#3|) |#3|)) (-15 -2795 ((-3 (-396 (-1085 (-385 (-525)))) "failed") |#3|)) (-15 -2869 ((-3 (|:| |overq| (-1085 (-385 (-525)))) (|:| |overan| (-1085 (-47))) (|:| -2031 (-108))) |#3|)) (IF (|has| |#2| (-966 (-47))) (-15 -2673 ((-3 (-396 (-1085 (-47))) "failed") |#3|)) |%noBranch|)) (-13 (-517) (-788) (-966 (-525))) (-408 |#1|) (-1147 |#2|)) (T -413))
+((-2673 (*1 *2 *3) (|partial| -12 (-4 *5 (-966 (-47))) (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-4 *5 (-408 *4)) (-5 *2 (-396 (-1085 (-47)))) (-5 *1 (-413 *4 *5 *3)) (-4 *3 (-1147 *5)))) (-2869 (*1 *2 *3) (-12 (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-4 *5 (-408 *4)) (-5 *2 (-3 (|:| |overq| (-1085 (-385 (-525)))) (|:| |overan| (-1085 (-47))) (|:| -2031 (-108)))) (-5 *1 (-413 *4 *5 *3)) (-4 *3 (-1147 *5)))) (-2795 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-4 *5 (-408 *4)) (-5 *2 (-396 (-1085 (-385 (-525))))) (-5 *1 (-413 *4 *5 *3)) (-4 *3 (-1147 *5)))) (-2079 (*1 *2 *3) (-12 (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-4 *5 (-408 *4)) (-5 *2 (-396 *3)) (-5 *1 (-413 *4 *5 *3)) (-4 *3 (-1147 *5)))))
+(-10 -7 (-15 -2079 ((-396 |#3|) |#3|)) (-15 -2795 ((-3 (-396 (-1085 (-385 (-525)))) "failed") |#3|)) (-15 -2869 ((-3 (|:| |overq| (-1085 (-385 (-525)))) (|:| |overan| (-1085 (-47))) (|:| -2031 (-108))) |#3|)) (IF (|has| |#2| (-966 (-47))) (-15 -2673 ((-3 (-396 (-1085 (-47))) "failed") |#3|)) |%noBranch|))
+((-3008 (((-108) $ $) NIL)) (-3598 (((-1072) $ (-1072)) NIL)) (-3522 (($ $ (-1072)) NIL)) (-1277 (((-1072) $) NIL)) (-2657 (((-366) (-366) (-366)) 17) (((-366) (-366)) 15)) (-1976 (($ (-366)) NIL) (($ (-366) (-1072)) NIL)) (-2400 (((-366) $) NIL)) (-2339 (((-1072) $) NIL)) (-3317 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2155 (((-1176) (-1072)) 9)) (-2120 (((-1176) (-1072)) 10)) (-2301 (((-1176)) 11)) (-3022 (((-796) $) NIL)) (-2886 (($ $) 35)) (-4096 (((-108) $ $) NIL)))
+(((-414) (-13 (-342 (-366) (-1072)) (-10 -7 (-15 -2657 ((-366) (-366) (-366))) (-15 -2657 ((-366) (-366))) (-15 -2155 ((-1176) (-1072))) (-15 -2120 ((-1176) (-1072))) (-15 -2301 ((-1176)))))) (T -414))
+((-2657 (*1 *2 *2 *2) (-12 (-5 *2 (-366)) (-5 *1 (-414)))) (-2657 (*1 *2 *2) (-12 (-5 *2 (-366)) (-5 *1 (-414)))) (-2155 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-414)))) (-2120 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-414)))) (-2301 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-414)))))
+(-13 (-342 (-366) (-1072)) (-10 -7 (-15 -2657 ((-366) (-366) (-366))) (-15 -2657 ((-366) (-366))) (-15 -2155 ((-1176) (-1072))) (-15 -2120 ((-1176) (-1072))) (-15 -2301 ((-1176)))))
+((-3008 (((-108) $ $) NIL)) (-1324 (((-3 (|:| |fst| (-412)) (|:| -4170 "void")) $) 11)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3985 (($) 32)) (-3488 (($) 38)) (-2294 (($) 34)) (-1299 (($) 36)) (-1750 (($) 33)) (-1267 (($) 35)) (-3946 (($) 37)) (-3275 (((-108) $) 8)) (-2721 (((-591 (-885 (-525))) $) 19)) (-3036 (($ (-3 (|:| |fst| (-412)) (|:| -4170 "void")) (-591 (-1089)) (-108)) 27) (($ (-3 (|:| |fst| (-412)) (|:| -4170 "void")) (-591 (-885 (-525))) (-108)) 28)) (-3022 (((-796) $) 23) (($ (-412)) 29)) (-4096 (((-108) $ $) NIL)))
+(((-415) (-13 (-1018) (-10 -8 (-15 -3022 ((-796) $)) (-15 -3022 ($ (-412))) (-15 -1324 ((-3 (|:| |fst| (-412)) (|:| -4170 "void")) $)) (-15 -2721 ((-591 (-885 (-525))) $)) (-15 -3275 ((-108) $)) (-15 -3036 ($ (-3 (|:| |fst| (-412)) (|:| -4170 "void")) (-591 (-1089)) (-108))) (-15 -3036 ($ (-3 (|:| |fst| (-412)) (|:| -4170 "void")) (-591 (-885 (-525))) (-108))) (-15 -3985 ($)) (-15 -1750 ($)) (-15 -2294 ($)) (-15 -3488 ($)) (-15 -1267 ($)) (-15 -1299 ($)) (-15 -3946 ($))))) (T -415))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-415)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-412)) (-5 *1 (-415)))) (-1324 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-5 *1 (-415)))) (-2721 (*1 *2 *1) (-12 (-5 *2 (-591 (-885 (-525)))) (-5 *1 (-415)))) (-3275 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-415)))) (-3036 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-5 *3 (-591 (-1089))) (-5 *4 (-108)) (-5 *1 (-415)))) (-3036 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-5 *3 (-591 (-885 (-525)))) (-5 *4 (-108)) (-5 *1 (-415)))) (-3985 (*1 *1) (-5 *1 (-415))) (-1750 (*1 *1) (-5 *1 (-415))) (-2294 (*1 *1) (-5 *1 (-415))) (-3488 (*1 *1) (-5 *1 (-415))) (-1267 (*1 *1) (-5 *1 (-415))) (-1299 (*1 *1) (-5 *1 (-415))) (-3946 (*1 *1) (-5 *1 (-415))))
+(-13 (-1018) (-10 -8 (-15 -3022 ((-796) $)) (-15 -3022 ($ (-412))) (-15 -1324 ((-3 (|:| |fst| (-412)) (|:| -4170 "void")) $)) (-15 -2721 ((-591 (-885 (-525))) $)) (-15 -3275 ((-108) $)) (-15 -3036 ($ (-3 (|:| |fst| (-412)) (|:| -4170 "void")) (-591 (-1089)) (-108))) (-15 -3036 ($ (-3 (|:| |fst| (-412)) (|:| -4170 "void")) (-591 (-885 (-525))) (-108))) (-15 -3985 ($)) (-15 -1750 ($)) (-15 -2294 ($)) (-15 -3488 ($)) (-15 -1267 ($)) (-15 -1299 ($)) (-15 -3946 ($))))
+((-3008 (((-108) $ $) NIL)) (-2400 (((-1089) $) 8)) (-2339 (((-1072) $) 16)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 11)) (-4096 (((-108) $ $) 13)))
+(((-416 |#1|) (-13 (-1018) (-10 -8 (-15 -2400 ((-1089) $)))) (-1089)) (T -416))
+((-2400 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-416 *3)) (-14 *3 *2))))
+(-13 (-1018) (-10 -8 (-15 -2400 ((-1089) $))))
+((-3178 (((-1176) $) 7)) (-3022 (((-796) $) 8) (($ (-1171 (-640))) 14) (($ (-591 (-308))) 13) (($ (-308)) 12) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 11)))
+(((-417) (-131)) (T -417))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1171 (-640))) (-4 *1 (-417)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-591 (-308))) (-4 *1 (-417)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-308)) (-4 *1 (-417)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) (-4 *1 (-417)))))
+(-13 (-373) (-10 -8 (-15 -3022 ($ (-1171 (-640)))) (-15 -3022 ($ (-591 (-308)))) (-15 -3022 ($ (-308))) (-15 -3022 ($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))))))
+(((-565 (-796)) . T) ((-373) . T) ((-1125) . T))
+((-1251 (((-3 $ "failed") (-1171 (-294 (-357)))) 21) (((-3 $ "failed") (-1171 (-294 (-525)))) 19) (((-3 $ "failed") (-1171 (-885 (-357)))) 17) (((-3 $ "failed") (-1171 (-885 (-525)))) 15) (((-3 $ "failed") (-1171 (-385 (-885 (-357))))) 13) (((-3 $ "failed") (-1171 (-385 (-885 (-525))))) 11)) (-3528 (($ (-1171 (-294 (-357)))) 22) (($ (-1171 (-294 (-525)))) 20) (($ (-1171 (-885 (-357)))) 18) (($ (-1171 (-885 (-525)))) 16) (($ (-1171 (-385 (-885 (-357))))) 14) (($ (-1171 (-385 (-885 (-525))))) 12)) (-3178 (((-1176) $) 7)) (-3022 (((-796) $) 8) (($ (-591 (-308))) 25) (($ (-308)) 24) (($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) 23)))
+(((-418) (-131)) (T -418))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-591 (-308))) (-4 *1 (-418)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-308)) (-4 *1 (-418)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308))))) (-4 *1 (-418)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-1171 (-294 (-357)))) (-4 *1 (-418)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-1171 (-294 (-357)))) (-4 *1 (-418)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-1171 (-294 (-525)))) (-4 *1 (-418)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-1171 (-294 (-525)))) (-4 *1 (-418)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-1171 (-885 (-357)))) (-4 *1 (-418)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-1171 (-885 (-357)))) (-4 *1 (-418)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-1171 (-885 (-525)))) (-4 *1 (-418)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-1171 (-885 (-525)))) (-4 *1 (-418)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-1171 (-385 (-885 (-357))))) (-4 *1 (-418)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-1171 (-385 (-885 (-357))))) (-4 *1 (-418)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-1171 (-385 (-885 (-525))))) (-4 *1 (-418)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-1171 (-385 (-885 (-525))))) (-4 *1 (-418)))))
+(-13 (-373) (-10 -8 (-15 -3022 ($ (-591 (-308)))) (-15 -3022 ($ (-308))) (-15 -3022 ($ (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308)))))) (-15 -3528 ($ (-1171 (-294 (-357))))) (-15 -1251 ((-3 $ "failed") (-1171 (-294 (-357))))) (-15 -3528 ($ (-1171 (-294 (-525))))) (-15 -1251 ((-3 $ "failed") (-1171 (-294 (-525))))) (-15 -3528 ($ (-1171 (-885 (-357))))) (-15 -1251 ((-3 $ "failed") (-1171 (-885 (-357))))) (-15 -3528 ($ (-1171 (-885 (-525))))) (-15 -1251 ((-3 $ "failed") (-1171 (-885 (-525))))) (-15 -3528 ($ (-1171 (-385 (-885 (-357)))))) (-15 -1251 ((-3 $ "failed") (-1171 (-385 (-885 (-357)))))) (-15 -3528 ($ (-1171 (-385 (-885 (-525)))))) (-15 -1251 ((-3 $ "failed") (-1171 (-385 (-885 (-525))))))))
+(((-565 (-796)) . T) ((-373) . T) ((-1125) . T))
+((-1517 (((-108)) 17)) (-2096 (((-108) (-108)) 18)) (-3031 (((-108)) 13)) (-1225 (((-108) (-108)) 14)) (-2769 (((-108)) 15)) (-3355 (((-108) (-108)) 16)) (-2239 (((-854) (-854)) 21) (((-854)) 20)) (-2808 (((-712) (-591 (-2 (|:| -1348 |#1|) (|:| -1316 (-525))))) 42)) (-1834 (((-854) (-854)) 23) (((-854)) 22)) (-2264 (((-2 (|:| -1777 (-525)) (|:| -3781 (-591 |#1|))) |#1|) 62)) (-3429 (((-396 |#1|) (-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| |#1|) (|:| -3265 (-525))))))) 126)) (-3154 (((-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| |#1|) (|:| -3265 (-525)))))) |#1| (-108)) 152)) (-3646 (((-396 |#1|) |#1| (-712) (-712)) 165) (((-396 |#1|) |#1| (-591 (-712)) (-712)) 162) (((-396 |#1|) |#1| (-591 (-712))) 164) (((-396 |#1|) |#1| (-712)) 163) (((-396 |#1|) |#1|) 161)) (-1601 (((-3 |#1| "failed") (-854) |#1| (-591 (-712)) (-712) (-108)) 167) (((-3 |#1| "failed") (-854) |#1| (-591 (-712)) (-712)) 168) (((-3 |#1| "failed") (-854) |#1| (-591 (-712))) 170) (((-3 |#1| "failed") (-854) |#1| (-712)) 169) (((-3 |#1| "failed") (-854) |#1|) 171)) (-1348 (((-396 |#1|) |#1| (-712) (-712)) 160) (((-396 |#1|) |#1| (-591 (-712)) (-712)) 156) (((-396 |#1|) |#1| (-591 (-712))) 158) (((-396 |#1|) |#1| (-712)) 157) (((-396 |#1|) |#1|) 155)) (-2405 (((-108) |#1|) 37)) (-3523 (((-679 (-712)) (-591 (-2 (|:| -1348 |#1|) (|:| -1316 (-525))))) 67)) (-1824 (((-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| |#1|) (|:| -3265 (-525)))))) |#1| (-108) (-1020 (-712)) (-712)) 154)))
+(((-419 |#1|) (-10 -7 (-15 -3429 ((-396 |#1|) (-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| |#1|) (|:| -3265 (-525)))))))) (-15 -3523 ((-679 (-712)) (-591 (-2 (|:| -1348 |#1|) (|:| -1316 (-525)))))) (-15 -1834 ((-854))) (-15 -1834 ((-854) (-854))) (-15 -2239 ((-854))) (-15 -2239 ((-854) (-854))) (-15 -2808 ((-712) (-591 (-2 (|:| -1348 |#1|) (|:| -1316 (-525)))))) (-15 -2264 ((-2 (|:| -1777 (-525)) (|:| -3781 (-591 |#1|))) |#1|)) (-15 -1517 ((-108))) (-15 -2096 ((-108) (-108))) (-15 -3031 ((-108))) (-15 -1225 ((-108) (-108))) (-15 -2405 ((-108) |#1|)) (-15 -2769 ((-108))) (-15 -3355 ((-108) (-108))) (-15 -1348 ((-396 |#1|) |#1|)) (-15 -1348 ((-396 |#1|) |#1| (-712))) (-15 -1348 ((-396 |#1|) |#1| (-591 (-712)))) (-15 -1348 ((-396 |#1|) |#1| (-591 (-712)) (-712))) (-15 -1348 ((-396 |#1|) |#1| (-712) (-712))) (-15 -3646 ((-396 |#1|) |#1|)) (-15 -3646 ((-396 |#1|) |#1| (-712))) (-15 -3646 ((-396 |#1|) |#1| (-591 (-712)))) (-15 -3646 ((-396 |#1|) |#1| (-591 (-712)) (-712))) (-15 -3646 ((-396 |#1|) |#1| (-712) (-712))) (-15 -1601 ((-3 |#1| "failed") (-854) |#1|)) (-15 -1601 ((-3 |#1| "failed") (-854) |#1| (-712))) (-15 -1601 ((-3 |#1| "failed") (-854) |#1| (-591 (-712)))) (-15 -1601 ((-3 |#1| "failed") (-854) |#1| (-591 (-712)) (-712))) (-15 -1601 ((-3 |#1| "failed") (-854) |#1| (-591 (-712)) (-712) (-108))) (-15 -3154 ((-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| |#1|) (|:| -3265 (-525)))))) |#1| (-108))) (-15 -1824 ((-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| |#1|) (|:| -3265 (-525)))))) |#1| (-108) (-1020 (-712)) (-712)))) (-1147 (-525))) (T -419))
+((-1824 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-108)) (-5 *5 (-1020 (-712))) (-5 *6 (-712)) (-5 *2 (-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| *3) (|:| -3265 (-525))))))) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-3154 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-5 *2 (-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| *3) (|:| -3265 (-525))))))) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-1601 (*1 *2 *3 *2 *4 *5 *6) (|partial| -12 (-5 *3 (-854)) (-5 *4 (-591 (-712))) (-5 *5 (-712)) (-5 *6 (-108)) (-5 *1 (-419 *2)) (-4 *2 (-1147 (-525))))) (-1601 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *3 (-854)) (-5 *4 (-591 (-712))) (-5 *5 (-712)) (-5 *1 (-419 *2)) (-4 *2 (-1147 (-525))))) (-1601 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-854)) (-5 *4 (-591 (-712))) (-5 *1 (-419 *2)) (-4 *2 (-1147 (-525))))) (-1601 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-854)) (-5 *4 (-712)) (-5 *1 (-419 *2)) (-4 *2 (-1147 (-525))))) (-1601 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-854)) (-5 *1 (-419 *2)) (-4 *2 (-1147 (-525))))) (-3646 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-712)) (-5 *2 (-396 *3)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-3646 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-591 (-712))) (-5 *5 (-712)) (-5 *2 (-396 *3)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-3646 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-712))) (-5 *2 (-396 *3)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-3646 (*1 *2 *3 *4) (-12 (-5 *4 (-712)) (-5 *2 (-396 *3)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-3646 (*1 *2 *3) (-12 (-5 *2 (-396 *3)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-1348 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-712)) (-5 *2 (-396 *3)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-1348 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-591 (-712))) (-5 *5 (-712)) (-5 *2 (-396 *3)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-1348 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-712))) (-5 *2 (-396 *3)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-1348 (*1 *2 *3 *4) (-12 (-5 *4 (-712)) (-5 *2 (-396 *3)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-1348 (*1 *2 *3) (-12 (-5 *2 (-396 *3)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-3355 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-2769 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-2405 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-1225 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-3031 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-2096 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-1517 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-2264 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -1777 (-525)) (|:| -3781 (-591 *3)))) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-2808 (*1 *2 *3) (-12 (-5 *3 (-591 (-2 (|:| -1348 *4) (|:| -1316 (-525))))) (-4 *4 (-1147 (-525))) (-5 *2 (-712)) (-5 *1 (-419 *4)))) (-2239 (*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-2239 (*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-1834 (*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-1834 (*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))) (-3523 (*1 *2 *3) (-12 (-5 *3 (-591 (-2 (|:| -1348 *4) (|:| -1316 (-525))))) (-4 *4 (-1147 (-525))) (-5 *2 (-679 (-712))) (-5 *1 (-419 *4)))) (-3429 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| *4) (|:| -3265 (-525))))))) (-4 *4 (-1147 (-525))) (-5 *2 (-396 *4)) (-5 *1 (-419 *4)))))
+(-10 -7 (-15 -3429 ((-396 |#1|) (-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| |#1|) (|:| -3265 (-525)))))))) (-15 -3523 ((-679 (-712)) (-591 (-2 (|:| -1348 |#1|) (|:| -1316 (-525)))))) (-15 -1834 ((-854))) (-15 -1834 ((-854) (-854))) (-15 -2239 ((-854))) (-15 -2239 ((-854) (-854))) (-15 -2808 ((-712) (-591 (-2 (|:| -1348 |#1|) (|:| -1316 (-525)))))) (-15 -2264 ((-2 (|:| -1777 (-525)) (|:| -3781 (-591 |#1|))) |#1|)) (-15 -1517 ((-108))) (-15 -2096 ((-108) (-108))) (-15 -3031 ((-108))) (-15 -1225 ((-108) (-108))) (-15 -2405 ((-108) |#1|)) (-15 -2769 ((-108))) (-15 -3355 ((-108) (-108))) (-15 -1348 ((-396 |#1|) |#1|)) (-15 -1348 ((-396 |#1|) |#1| (-712))) (-15 -1348 ((-396 |#1|) |#1| (-591 (-712)))) (-15 -1348 ((-396 |#1|) |#1| (-591 (-712)) (-712))) (-15 -1348 ((-396 |#1|) |#1| (-712) (-712))) (-15 -3646 ((-396 |#1|) |#1|)) (-15 -3646 ((-396 |#1|) |#1| (-712))) (-15 -3646 ((-396 |#1|) |#1| (-591 (-712)))) (-15 -3646 ((-396 |#1|) |#1| (-591 (-712)) (-712))) (-15 -3646 ((-396 |#1|) |#1| (-712) (-712))) (-15 -1601 ((-3 |#1| "failed") (-854) |#1|)) (-15 -1601 ((-3 |#1| "failed") (-854) |#1| (-712))) (-15 -1601 ((-3 |#1| "failed") (-854) |#1| (-591 (-712)))) (-15 -1601 ((-3 |#1| "failed") (-854) |#1| (-591 (-712)) (-712))) (-15 -1601 ((-3 |#1| "failed") (-854) |#1| (-591 (-712)) (-712) (-108))) (-15 -3154 ((-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| |#1|) (|:| -3265 (-525)))))) |#1| (-108))) (-15 -1824 ((-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| |#1|) (|:| -3265 (-525)))))) |#1| (-108) (-1020 (-712)) (-712))))
+((-2930 (((-525) |#2|) 48) (((-525) |#2| (-712)) 47)) (-2309 (((-525) |#2|) 55)) (-4028 ((|#3| |#2|) 25)) (-2771 ((|#3| |#2| (-854)) 14)) (-1657 ((|#3| |#2|) 15)) (-4124 ((|#3| |#2|) 9)) (-2965 ((|#3| |#2|) 10)) (-1288 ((|#3| |#2| (-854)) 62) ((|#3| |#2|) 30)) (-1497 (((-525) |#2|) 57)))
+(((-420 |#1| |#2| |#3|) (-10 -7 (-15 -1497 ((-525) |#2|)) (-15 -1288 (|#3| |#2|)) (-15 -1288 (|#3| |#2| (-854))) (-15 -2309 ((-525) |#2|)) (-15 -2930 ((-525) |#2| (-712))) (-15 -2930 ((-525) |#2|)) (-15 -2771 (|#3| |#2| (-854))) (-15 -4028 (|#3| |#2|)) (-15 -4124 (|#3| |#2|)) (-15 -2965 (|#3| |#2|)) (-15 -1657 (|#3| |#2|))) (-975) (-1147 |#1|) (-13 (-382) (-966 |#1|) (-341) (-1111) (-263))) (T -420))
+((-1657 (*1 *2 *3) (-12 (-4 *4 (-975)) (-4 *2 (-13 (-382) (-966 *4) (-341) (-1111) (-263))) (-5 *1 (-420 *4 *3 *2)) (-4 *3 (-1147 *4)))) (-2965 (*1 *2 *3) (-12 (-4 *4 (-975)) (-4 *2 (-13 (-382) (-966 *4) (-341) (-1111) (-263))) (-5 *1 (-420 *4 *3 *2)) (-4 *3 (-1147 *4)))) (-4124 (*1 *2 *3) (-12 (-4 *4 (-975)) (-4 *2 (-13 (-382) (-966 *4) (-341) (-1111) (-263))) (-5 *1 (-420 *4 *3 *2)) (-4 *3 (-1147 *4)))) (-4028 (*1 *2 *3) (-12 (-4 *4 (-975)) (-4 *2 (-13 (-382) (-966 *4) (-341) (-1111) (-263))) (-5 *1 (-420 *4 *3 *2)) (-4 *3 (-1147 *4)))) (-2771 (*1 *2 *3 *4) (-12 (-5 *4 (-854)) (-4 *5 (-975)) (-4 *2 (-13 (-382) (-966 *5) (-341) (-1111) (-263))) (-5 *1 (-420 *5 *3 *2)) (-4 *3 (-1147 *5)))) (-2930 (*1 *2 *3) (-12 (-4 *4 (-975)) (-5 *2 (-525)) (-5 *1 (-420 *4 *3 *5)) (-4 *3 (-1147 *4)) (-4 *5 (-13 (-382) (-966 *4) (-341) (-1111) (-263))))) (-2930 (*1 *2 *3 *4) (-12 (-5 *4 (-712)) (-4 *5 (-975)) (-5 *2 (-525)) (-5 *1 (-420 *5 *3 *6)) (-4 *3 (-1147 *5)) (-4 *6 (-13 (-382) (-966 *5) (-341) (-1111) (-263))))) (-2309 (*1 *2 *3) (-12 (-4 *4 (-975)) (-5 *2 (-525)) (-5 *1 (-420 *4 *3 *5)) (-4 *3 (-1147 *4)) (-4 *5 (-13 (-382) (-966 *4) (-341) (-1111) (-263))))) (-1288 (*1 *2 *3 *4) (-12 (-5 *4 (-854)) (-4 *5 (-975)) (-4 *2 (-13 (-382) (-966 *5) (-341) (-1111) (-263))) (-5 *1 (-420 *5 *3 *2)) (-4 *3 (-1147 *5)))) (-1288 (*1 *2 *3) (-12 (-4 *4 (-975)) (-4 *2 (-13 (-382) (-966 *4) (-341) (-1111) (-263))) (-5 *1 (-420 *4 *3 *2)) (-4 *3 (-1147 *4)))) (-1497 (*1 *2 *3) (-12 (-4 *4 (-975)) (-5 *2 (-525)) (-5 *1 (-420 *4 *3 *5)) (-4 *3 (-1147 *4)) (-4 *5 (-13 (-382) (-966 *4) (-341) (-1111) (-263))))))
+(-10 -7 (-15 -1497 ((-525) |#2|)) (-15 -1288 (|#3| |#2|)) (-15 -1288 (|#3| |#2| (-854))) (-15 -2309 ((-525) |#2|)) (-15 -2930 ((-525) |#2| (-712))) (-15 -2930 ((-525) |#2|)) (-15 -2771 (|#3| |#2| (-854))) (-15 -4028 (|#3| |#2|)) (-15 -4124 (|#3| |#2|)) (-15 -2965 (|#3| |#2|)) (-15 -1657 (|#3| |#2|)))
+((-3645 ((|#2| (-1171 |#1|)) 36)) (-1722 ((|#2| |#2| |#1|) 49)) (-4151 ((|#2| |#2| |#1|) 41)) (-2617 ((|#2| |#2|) 38)) (-1860 (((-108) |#2|) 30)) (-2867 (((-591 |#2|) (-854) (-396 |#2|)) 17)) (-1601 ((|#2| (-854) (-396 |#2|)) 21)) (-3523 (((-679 (-712)) (-396 |#2|)) 25)))
+(((-421 |#1| |#2|) (-10 -7 (-15 -1860 ((-108) |#2|)) (-15 -3645 (|#2| (-1171 |#1|))) (-15 -2617 (|#2| |#2|)) (-15 -4151 (|#2| |#2| |#1|)) (-15 -1722 (|#2| |#2| |#1|)) (-15 -3523 ((-679 (-712)) (-396 |#2|))) (-15 -1601 (|#2| (-854) (-396 |#2|))) (-15 -2867 ((-591 |#2|) (-854) (-396 |#2|)))) (-975) (-1147 |#1|)) (T -421))
+((-2867 (*1 *2 *3 *4) (-12 (-5 *3 (-854)) (-5 *4 (-396 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-975)) (-5 *2 (-591 *6)) (-5 *1 (-421 *5 *6)))) (-1601 (*1 *2 *3 *4) (-12 (-5 *3 (-854)) (-5 *4 (-396 *2)) (-4 *2 (-1147 *5)) (-5 *1 (-421 *5 *2)) (-4 *5 (-975)))) (-3523 (*1 *2 *3) (-12 (-5 *3 (-396 *5)) (-4 *5 (-1147 *4)) (-4 *4 (-975)) (-5 *2 (-679 (-712))) (-5 *1 (-421 *4 *5)))) (-1722 (*1 *2 *2 *3) (-12 (-4 *3 (-975)) (-5 *1 (-421 *3 *2)) (-4 *2 (-1147 *3)))) (-4151 (*1 *2 *2 *3) (-12 (-4 *3 (-975)) (-5 *1 (-421 *3 *2)) (-4 *2 (-1147 *3)))) (-2617 (*1 *2 *2) (-12 (-4 *3 (-975)) (-5 *1 (-421 *3 *2)) (-4 *2 (-1147 *3)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-975)) (-4 *2 (-1147 *4)) (-5 *1 (-421 *4 *2)))) (-1860 (*1 *2 *3) (-12 (-4 *4 (-975)) (-5 *2 (-108)) (-5 *1 (-421 *4 *3)) (-4 *3 (-1147 *4)))))
+(-10 -7 (-15 -1860 ((-108) |#2|)) (-15 -3645 (|#2| (-1171 |#1|))) (-15 -2617 (|#2| |#2|)) (-15 -4151 (|#2| |#2| |#1|)) (-15 -1722 (|#2| |#2| |#1|)) (-15 -3523 ((-679 (-712)) (-396 |#2|))) (-15 -1601 (|#2| (-854) (-396 |#2|))) (-15 -2867 ((-591 |#2|) (-854) (-396 |#2|))))
+((-3362 (((-712)) 41)) (-3952 (((-712)) 23 (|has| |#1| (-382))) (((-712) (-712)) 22 (|has| |#1| (-382)))) (-3581 (((-525) |#1|) 18 (|has| |#1| (-382)))) (-3705 (((-525) |#1|) 20 (|has| |#1| (-382)))) (-3973 (((-712)) 40) (((-712) (-712)) 39)) (-4122 ((|#1| (-712) (-525)) 29)) (-2275 (((-1176)) 43)))
+(((-422 |#1|) (-10 -7 (-15 -4122 (|#1| (-712) (-525))) (-15 -3973 ((-712) (-712))) (-15 -3973 ((-712))) (-15 -3362 ((-712))) (-15 -2275 ((-1176))) (IF (|has| |#1| (-382)) (PROGN (-15 -3705 ((-525) |#1|)) (-15 -3581 ((-525) |#1|)) (-15 -3952 ((-712) (-712))) (-15 -3952 ((-712)))) |%noBranch|)) (-975)) (T -422))
+((-3952 (*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-422 *3)) (-4 *3 (-382)) (-4 *3 (-975)))) (-3952 (*1 *2 *2) (-12 (-5 *2 (-712)) (-5 *1 (-422 *3)) (-4 *3 (-382)) (-4 *3 (-975)))) (-3581 (*1 *2 *3) (-12 (-5 *2 (-525)) (-5 *1 (-422 *3)) (-4 *3 (-382)) (-4 *3 (-975)))) (-3705 (*1 *2 *3) (-12 (-5 *2 (-525)) (-5 *1 (-422 *3)) (-4 *3 (-382)) (-4 *3 (-975)))) (-2275 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-422 *3)) (-4 *3 (-975)))) (-3362 (*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-422 *3)) (-4 *3 (-975)))) (-3973 (*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-422 *3)) (-4 *3 (-975)))) (-3973 (*1 *2 *2) (-12 (-5 *2 (-712)) (-5 *1 (-422 *3)) (-4 *3 (-975)))) (-4122 (*1 *2 *3 *4) (-12 (-5 *3 (-712)) (-5 *4 (-525)) (-5 *1 (-422 *2)) (-4 *2 (-975)))))
+(-10 -7 (-15 -4122 (|#1| (-712) (-525))) (-15 -3973 ((-712) (-712))) (-15 -3973 ((-712))) (-15 -3362 ((-712))) (-15 -2275 ((-1176))) (IF (|has| |#1| (-382)) (PROGN (-15 -3705 ((-525) |#1|)) (-15 -3581 ((-525) |#1|)) (-15 -3952 ((-712) (-712))) (-15 -3952 ((-712)))) |%noBranch|))
+((-2907 (((-591 (-525)) (-525)) 61)) (-2744 (((-108) (-157 (-525))) 65)) (-1348 (((-396 (-157 (-525))) (-157 (-525))) 60)))
+(((-423) (-10 -7 (-15 -1348 ((-396 (-157 (-525))) (-157 (-525)))) (-15 -2907 ((-591 (-525)) (-525))) (-15 -2744 ((-108) (-157 (-525)))))) (T -423))
+((-2744 (*1 *2 *3) (-12 (-5 *3 (-157 (-525))) (-5 *2 (-108)) (-5 *1 (-423)))) (-2907 (*1 *2 *3) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-423)) (-5 *3 (-525)))) (-1348 (*1 *2 *3) (-12 (-5 *2 (-396 (-157 (-525)))) (-5 *1 (-423)) (-5 *3 (-157 (-525))))))
+(-10 -7 (-15 -1348 ((-396 (-157 (-525))) (-157 (-525)))) (-15 -2907 ((-591 (-525)) (-525))) (-15 -2744 ((-108) (-157 (-525)))))
+((-2618 ((|#4| |#4| (-591 |#4|)) 61)) (-2164 (((-591 |#4|) (-591 |#4|) (-1072) (-1072)) 17) (((-591 |#4|) (-591 |#4|) (-1072)) 16) (((-591 |#4|) (-591 |#4|)) 11)))
+(((-424 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2618 (|#4| |#4| (-591 |#4|))) (-15 -2164 ((-591 |#4|) (-591 |#4|))) (-15 -2164 ((-591 |#4|) (-591 |#4|) (-1072))) (-15 -2164 ((-591 |#4|) (-591 |#4|) (-1072) (-1072)))) (-286) (-734) (-788) (-882 |#1| |#2| |#3|)) (T -424))
+((-2164 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-591 *7)) (-5 *3 (-1072)) (-4 *7 (-882 *4 *5 *6)) (-4 *4 (-286)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-424 *4 *5 *6 *7)))) (-2164 (*1 *2 *2 *3) (-12 (-5 *2 (-591 *7)) (-5 *3 (-1072)) (-4 *7 (-882 *4 *5 *6)) (-4 *4 (-286)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-424 *4 *5 *6 *7)))) (-2164 (*1 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-286)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-424 *3 *4 *5 *6)))) (-2618 (*1 *2 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-882 *4 *5 *6)) (-4 *4 (-286)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-424 *4 *5 *6 *2)))))
+(-10 -7 (-15 -2618 (|#4| |#4| (-591 |#4|))) (-15 -2164 ((-591 |#4|) (-591 |#4|))) (-15 -2164 ((-591 |#4|) (-591 |#4|) (-1072))) (-15 -2164 ((-591 |#4|) (-591 |#4|) (-1072) (-1072))))
+((-3680 (((-591 (-591 |#4|)) (-591 |#4|) (-108)) 73) (((-591 (-591 |#4|)) (-591 |#4|)) 72) (((-591 (-591 |#4|)) (-591 |#4|) (-591 |#4|) (-108)) 66) (((-591 (-591 |#4|)) (-591 |#4|) (-591 |#4|)) 67)) (-2465 (((-591 (-591 |#4|)) (-591 |#4|) (-108)) 42) (((-591 (-591 |#4|)) (-591 |#4|)) 63)))
+(((-425 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2465 ((-591 (-591 |#4|)) (-591 |#4|))) (-15 -2465 ((-591 (-591 |#4|)) (-591 |#4|) (-108))) (-15 -3680 ((-591 (-591 |#4|)) (-591 |#4|) (-591 |#4|))) (-15 -3680 ((-591 (-591 |#4|)) (-591 |#4|) (-591 |#4|) (-108))) (-15 -3680 ((-591 (-591 |#4|)) (-591 |#4|))) (-15 -3680 ((-591 (-591 |#4|)) (-591 |#4|) (-108)))) (-13 (-286) (-138)) (-734) (-788) (-882 |#1| |#2| |#3|)) (T -425))
+((-3680 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-882 *5 *6 *7)) (-5 *2 (-591 (-591 *8))) (-5 *1 (-425 *5 *6 *7 *8)) (-5 *3 (-591 *8)))) (-3680 (*1 *2 *3) (-12 (-4 *4 (-13 (-286) (-138))) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-882 *4 *5 *6)) (-5 *2 (-591 (-591 *7))) (-5 *1 (-425 *4 *5 *6 *7)) (-5 *3 (-591 *7)))) (-3680 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-882 *5 *6 *7)) (-5 *2 (-591 (-591 *8))) (-5 *1 (-425 *5 *6 *7 *8)) (-5 *3 (-591 *8)))) (-3680 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-286) (-138))) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-882 *4 *5 *6)) (-5 *2 (-591 (-591 *7))) (-5 *1 (-425 *4 *5 *6 *7)) (-5 *3 (-591 *7)))) (-2465 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-882 *5 *6 *7)) (-5 *2 (-591 (-591 *8))) (-5 *1 (-425 *5 *6 *7 *8)) (-5 *3 (-591 *8)))) (-2465 (*1 *2 *3) (-12 (-4 *4 (-13 (-286) (-138))) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-882 *4 *5 *6)) (-5 *2 (-591 (-591 *7))) (-5 *1 (-425 *4 *5 *6 *7)) (-5 *3 (-591 *7)))))
+(-10 -7 (-15 -2465 ((-591 (-591 |#4|)) (-591 |#4|))) (-15 -2465 ((-591 (-591 |#4|)) (-591 |#4|) (-108))) (-15 -3680 ((-591 (-591 |#4|)) (-591 |#4|) (-591 |#4|))) (-15 -3680 ((-591 (-591 |#4|)) (-591 |#4|) (-591 |#4|) (-108))) (-15 -3680 ((-591 (-591 |#4|)) (-591 |#4|))) (-15 -3680 ((-591 (-591 |#4|)) (-591 |#4|) (-108))))
+((-4154 (((-712) |#4|) 12)) (-3634 (((-591 (-2 (|:| |totdeg| (-712)) (|:| -1357 |#4|))) |#4| (-712) (-591 (-2 (|:| |totdeg| (-712)) (|:| -1357 |#4|)))) 31)) (-2641 (((-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 38)) (-3709 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 39)) (-1864 ((|#4| |#4| (-591 |#4|)) 40)) (-1477 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-591 |#4|)) 70)) (-1855 (((-1176) |#4|) 42)) (-3056 (((-1176) (-591 |#4|)) 51)) (-2850 (((-525) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-525) (-525) (-525)) 48)) (-3614 (((-1176) (-525)) 79)) (-2621 (((-591 |#4|) (-591 |#4|)) 77)) (-3076 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-712)) (|:| -1357 |#4|)) |#4| (-712)) 25)) (-4130 (((-525) |#4|) 78)) (-4034 ((|#4| |#4|) 29)) (-2406 (((-591 |#4|) (-591 |#4|) (-525) (-525)) 56)) (-1487 (((-525) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-525) (-525) (-525) (-525)) 89)) (-3604 (((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 16)) (-3689 (((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 59)) (-1831 (((-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 58)) (-2330 (((-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 36)) (-2211 (((-108) |#2| |#2|) 57)) (-3259 (((-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 37)) (-2507 (((-108) |#2| |#2| |#2| |#2|) 60)) (-1744 ((|#4| |#4| (-591 |#4|)) 71)))
+(((-426 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1744 (|#4| |#4| (-591 |#4|))) (-15 -1864 (|#4| |#4| (-591 |#4|))) (-15 -2406 ((-591 |#4|) (-591 |#4|) (-525) (-525))) (-15 -3689 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2211 ((-108) |#2| |#2|)) (-15 -2507 ((-108) |#2| |#2| |#2| |#2|)) (-15 -3259 ((-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2330 ((-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1831 ((-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1477 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-591 |#4|))) (-15 -4034 (|#4| |#4|)) (-15 -3634 ((-591 (-2 (|:| |totdeg| (-712)) (|:| -1357 |#4|))) |#4| (-712) (-591 (-2 (|:| |totdeg| (-712)) (|:| -1357 |#4|))))) (-15 -3709 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2641 ((-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2621 ((-591 |#4|) (-591 |#4|))) (-15 -4130 ((-525) |#4|)) (-15 -1855 ((-1176) |#4|)) (-15 -2850 ((-525) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-525) (-525) (-525))) (-15 -1487 ((-525) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-525) (-525) (-525) (-525))) (-15 -3056 ((-1176) (-591 |#4|))) (-15 -3614 ((-1176) (-525))) (-15 -3604 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3076 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-712)) (|:| -1357 |#4|)) |#4| (-712))) (-15 -4154 ((-712) |#4|))) (-429) (-734) (-788) (-882 |#1| |#2| |#3|)) (T -426))
+((-4154 (*1 *2 *3) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-712)) (-5 *1 (-426 *4 *5 *6 *3)) (-4 *3 (-882 *4 *5 *6)))) (-3076 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-712)) (|:| -1357 *4))) (-5 *5 (-712)) (-4 *4 (-882 *6 *7 *8)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788)) (-5 *2 (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4) (|:| |polj| *4))) (-5 *1 (-426 *6 *7 *8 *4)))) (-3604 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-712)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-734)) (-4 *7 (-882 *4 *5 *6)) (-4 *4 (-429)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-426 *4 *5 *6 *7)))) (-3614 (*1 *2 *3) (-12 (-5 *3 (-525)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-1176)) (-5 *1 (-426 *4 *5 *6 *7)) (-4 *7 (-882 *4 *5 *6)))) (-3056 (*1 *2 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-882 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-1176)) (-5 *1 (-426 *4 *5 *6 *7)))) (-1487 (*1 *2 *3 *4 *4 *2 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-712)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-734)) (-4 *4 (-882 *5 *6 *7)) (-4 *5 (-429)) (-4 *7 (-788)) (-5 *1 (-426 *5 *6 *7 *4)))) (-2850 (*1 *2 *3 *4 *4 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-712)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-734)) (-4 *4 (-882 *5 *6 *7)) (-4 *5 (-429)) (-4 *7 (-788)) (-5 *1 (-426 *5 *6 *7 *4)))) (-1855 (*1 *2 *3) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-1176)) (-5 *1 (-426 *4 *5 *6 *3)) (-4 *3 (-882 *4 *5 *6)))) (-4130 (*1 *2 *3) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-525)) (-5 *1 (-426 *4 *5 *6 *3)) (-4 *3 (-882 *4 *5 *6)))) (-2621 (*1 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-426 *3 *4 *5 *6)))) (-2641 (*1 *2 *2 *2) (-12 (-5 *2 (-591 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-712)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-734)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-429)) (-4 *5 (-788)) (-5 *1 (-426 *3 *4 *5 *6)))) (-3709 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-712)) (|:| |poli| *2) (|:| |polj| *2))) (-4 *5 (-734)) (-4 *2 (-882 *4 *5 *6)) (-5 *1 (-426 *4 *5 *6 *2)) (-4 *4 (-429)) (-4 *6 (-788)))) (-3634 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-591 (-2 (|:| |totdeg| (-712)) (|:| -1357 *3)))) (-5 *4 (-712)) (-4 *3 (-882 *5 *6 *7)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *1 (-426 *5 *6 *7 *3)))) (-4034 (*1 *2 *2) (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-426 *3 *4 *5 *2)) (-4 *2 (-882 *3 *4 *5)))) (-1477 (*1 *2 *3 *4) (-12 (-5 *4 (-591 *3)) (-4 *3 (-882 *5 *6 *7)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5))) (-5 *1 (-426 *5 *6 *7 *3)))) (-1831 (*1 *2 *3 *2) (-12 (-5 *2 (-591 (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-712)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *3 (-734)) (-4 *6 (-882 *4 *3 *5)) (-4 *4 (-429)) (-4 *5 (-788)) (-5 *1 (-426 *4 *3 *5 *6)))) (-2330 (*1 *2 *2) (-12 (-5 *2 (-591 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-712)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-734)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-429)) (-4 *5 (-788)) (-5 *1 (-426 *3 *4 *5 *6)))) (-3259 (*1 *2 *3 *2) (-12 (-5 *2 (-591 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-712)) (|:| |poli| *3) (|:| |polj| *3)))) (-4 *5 (-734)) (-4 *3 (-882 *4 *5 *6)) (-4 *4 (-429)) (-4 *6 (-788)) (-5 *1 (-426 *4 *5 *6 *3)))) (-2507 (*1 *2 *3 *3 *3 *3) (-12 (-4 *4 (-429)) (-4 *3 (-734)) (-4 *5 (-788)) (-5 *2 (-108)) (-5 *1 (-426 *4 *3 *5 *6)) (-4 *6 (-882 *4 *3 *5)))) (-2211 (*1 *2 *3 *3) (-12 (-4 *4 (-429)) (-4 *3 (-734)) (-4 *5 (-788)) (-5 *2 (-108)) (-5 *1 (-426 *4 *3 *5 *6)) (-4 *6 (-882 *4 *3 *5)))) (-3689 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-712)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-734)) (-4 *7 (-882 *4 *5 *6)) (-4 *4 (-429)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-426 *4 *5 *6 *7)))) (-2406 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-591 *7)) (-5 *3 (-525)) (-4 *7 (-882 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-426 *4 *5 *6 *7)))) (-1864 (*1 *2 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-882 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-426 *4 *5 *6 *2)))) (-1744 (*1 *2 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-882 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-426 *4 *5 *6 *2)))))
+(-10 -7 (-15 -1744 (|#4| |#4| (-591 |#4|))) (-15 -1864 (|#4| |#4| (-591 |#4|))) (-15 -2406 ((-591 |#4|) (-591 |#4|) (-525) (-525))) (-15 -3689 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2211 ((-108) |#2| |#2|)) (-15 -2507 ((-108) |#2| |#2| |#2| |#2|)) (-15 -3259 ((-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2330 ((-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1831 ((-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1477 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-591 |#4|))) (-15 -4034 (|#4| |#4|)) (-15 -3634 ((-591 (-2 (|:| |totdeg| (-712)) (|:| -1357 |#4|))) |#4| (-712) (-591 (-2 (|:| |totdeg| (-712)) (|:| -1357 |#4|))))) (-15 -3709 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2641 ((-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-591 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2621 ((-591 |#4|) (-591 |#4|))) (-15 -4130 ((-525) |#4|)) (-15 -1855 ((-1176) |#4|)) (-15 -2850 ((-525) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-525) (-525) (-525))) (-15 -1487 ((-525) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-525) (-525) (-525) (-525))) (-15 -3056 ((-1176) (-591 |#4|))) (-15 -3614 ((-1176) (-525))) (-15 -3604 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3076 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-712)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-712)) (|:| -1357 |#4|)) |#4| (-712))) (-15 -4154 ((-712) |#4|)))
+((-2207 ((|#4| |#4| (-591 |#4|)) 22 (|has| |#1| (-341)))) (-3805 (((-591 |#4|) (-591 |#4|) (-1072) (-1072)) 41) (((-591 |#4|) (-591 |#4|) (-1072)) 40) (((-591 |#4|) (-591 |#4|)) 35)))
+(((-427 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3805 ((-591 |#4|) (-591 |#4|))) (-15 -3805 ((-591 |#4|) (-591 |#4|) (-1072))) (-15 -3805 ((-591 |#4|) (-591 |#4|) (-1072) (-1072))) (IF (|has| |#1| (-341)) (-15 -2207 (|#4| |#4| (-591 |#4|))) |%noBranch|)) (-429) (-734) (-788) (-882 |#1| |#2| |#3|)) (T -427))
+((-2207 (*1 *2 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-882 *4 *5 *6)) (-4 *4 (-341)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-427 *4 *5 *6 *2)))) (-3805 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-591 *7)) (-5 *3 (-1072)) (-4 *7 (-882 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-427 *4 *5 *6 *7)))) (-3805 (*1 *2 *2 *3) (-12 (-5 *2 (-591 *7)) (-5 *3 (-1072)) (-4 *7 (-882 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-427 *4 *5 *6 *7)))) (-3805 (*1 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-427 *3 *4 *5 *6)))))
+(-10 -7 (-15 -3805 ((-591 |#4|) (-591 |#4|))) (-15 -3805 ((-591 |#4|) (-591 |#4|) (-1072))) (-15 -3805 ((-591 |#4|) (-591 |#4|) (-1072) (-1072))) (IF (|has| |#1| (-341)) (-15 -2207 (|#4| |#4| (-591 |#4|))) |%noBranch|))
+((-1356 (($ $ $) 14) (($ (-591 $)) 21)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 41)) (-1399 (($ $ $) NIL) (($ (-591 $)) 22)))
+(((-428 |#1|) (-10 -8 (-15 -2526 ((-1085 |#1|) (-1085 |#1|) (-1085 |#1|))) (-15 -1356 (|#1| (-591 |#1|))) (-15 -1356 (|#1| |#1| |#1|)) (-15 -1399 (|#1| (-591 |#1|))) (-15 -1399 (|#1| |#1| |#1|))) (-429)) (T -428))
+NIL
+(-10 -8 (-15 -2526 ((-1085 |#1|) (-1085 |#1|) (-1085 |#1|))) (-15 -1356 (|#1| (-591 |#1|))) (-15 -1356 (|#1| |#1| |#1|)) (-15 -1399 (|#1| (-591 |#1|))) (-15 -1399 (|#1| |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-2089 (((-3 $ "failed") $ $) 42)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43)) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 39)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-429) (-131)) (T -429))
+((-1399 (*1 *1 *1 *1) (-4 *1 (-429))) (-1399 (*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-429)))) (-1356 (*1 *1 *1 *1) (-4 *1 (-429))) (-1356 (*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-429)))) (-2526 (*1 *2 *2 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-429)))))
+(-13 (-517) (-10 -8 (-15 -1399 ($ $ $)) (-15 -1399 ($ (-591 $))) (-15 -1356 ($ $ $)) (-15 -1356 ($ (-591 $))) (-15 -2526 ((-1085 $) (-1085 $) (-1085 $)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-126) . T) ((-565 (-796)) . T) ((-160) . T) ((-269) . T) ((-517) . T) ((-593 $) . T) ((-659 $) . T) ((-668) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2999 (((-3 $ "failed")) NIL (|has| (-385 (-885 |#1|)) (-517)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1593 (((-1171 (-631 (-385 (-885 |#1|)))) (-1171 $)) NIL) (((-1171 (-631 (-385 (-885 |#1|))))) NIL)) (-2608 (((-1171 $)) NIL)) (-3798 (($) NIL T CONST)) (-3160 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) NIL)) (-3624 (((-3 $ "failed")) NIL (|has| (-385 (-885 |#1|)) (-517)))) (-4094 (((-631 (-385 (-885 |#1|))) (-1171 $)) NIL) (((-631 (-385 (-885 |#1|)))) NIL)) (-4011 (((-385 (-885 |#1|)) $) NIL)) (-3711 (((-631 (-385 (-885 |#1|))) $ (-1171 $)) NIL) (((-631 (-385 (-885 |#1|))) $) NIL)) (-3057 (((-3 $ "failed") $) NIL (|has| (-385 (-885 |#1|)) (-517)))) (-2550 (((-1085 (-885 (-385 (-885 |#1|))))) NIL (|has| (-385 (-885 |#1|)) (-341))) (((-1085 (-385 (-885 |#1|)))) 82 (|has| |#1| (-517)))) (-3433 (($ $ (-854)) NIL)) (-3996 (((-385 (-885 |#1|)) $) NIL)) (-3473 (((-1085 (-385 (-885 |#1|))) $) 80 (|has| (-385 (-885 |#1|)) (-517)))) (-2449 (((-385 (-885 |#1|)) (-1171 $)) NIL) (((-385 (-885 |#1|))) NIL)) (-3158 (((-1085 (-385 (-885 |#1|))) $) NIL)) (-2772 (((-108)) NIL)) (-4171 (($ (-1171 (-385 (-885 |#1|))) (-1171 $)) 99) (($ (-1171 (-385 (-885 |#1|)))) NIL)) (-4163 (((-3 $ "failed") $) NIL (|has| (-385 (-885 |#1|)) (-517)))) (-4073 (((-854)) NIL)) (-3401 (((-108)) NIL)) (-2462 (($ $ (-854)) NIL)) (-3915 (((-108)) NIL)) (-2590 (((-108)) NIL)) (-2248 (((-108)) NIL)) (-3121 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) NIL)) (-2659 (((-3 $ "failed")) NIL (|has| (-385 (-885 |#1|)) (-517)))) (-1548 (((-631 (-385 (-885 |#1|))) (-1171 $)) NIL) (((-631 (-385 (-885 |#1|)))) NIL)) (-4032 (((-385 (-885 |#1|)) $) NIL)) (-3793 (((-631 (-385 (-885 |#1|))) $ (-1171 $)) NIL) (((-631 (-385 (-885 |#1|))) $) NIL)) (-1838 (((-3 $ "failed") $) NIL (|has| (-385 (-885 |#1|)) (-517)))) (-1308 (((-1085 (-885 (-385 (-885 |#1|))))) NIL (|has| (-385 (-885 |#1|)) (-341))) (((-1085 (-385 (-885 |#1|)))) 81 (|has| |#1| (-517)))) (-3447 (($ $ (-854)) NIL)) (-3018 (((-385 (-885 |#1|)) $) NIL)) (-1858 (((-1085 (-385 (-885 |#1|))) $) 75 (|has| (-385 (-885 |#1|)) (-517)))) (-1368 (((-385 (-885 |#1|)) (-1171 $)) NIL) (((-385 (-885 |#1|))) NIL)) (-2253 (((-1085 (-385 (-885 |#1|))) $) NIL)) (-2448 (((-108)) NIL)) (-2339 (((-1072) $) NIL)) (-1407 (((-108)) NIL)) (-3704 (((-108)) NIL)) (-2688 (((-108)) NIL)) (-2047 (((-1036) $) NIL)) (-4200 (((-385 (-885 |#1|)) $ $) 69 (|has| |#1| (-517)))) (-1440 (((-385 (-885 |#1|)) $) 68 (|has| |#1| (-517)))) (-3984 (((-385 (-885 |#1|)) $) 91 (|has| |#1| (-517)))) (-3371 (((-1085 (-385 (-885 |#1|))) $) 86 (|has| |#1| (-517)))) (-1904 (((-385 (-885 |#1|))) 70 (|has| |#1| (-517)))) (-2925 (((-385 (-885 |#1|)) $ $) 58 (|has| |#1| (-517)))) (-3034 (((-385 (-885 |#1|)) $) 57 (|has| |#1| (-517)))) (-3916 (((-385 (-885 |#1|)) $) 90 (|has| |#1| (-517)))) (-3765 (((-1085 (-385 (-885 |#1|))) $) 85 (|has| |#1| (-517)))) (-2959 (((-385 (-885 |#1|))) 67 (|has| |#1| (-517)))) (-1742 (($) 97) (($ (-1089)) 103) (($ (-1171 (-1089))) 102) (($ (-1171 $)) 92) (($ (-1089) (-1171 $)) 101) (($ (-1171 (-1089)) (-1171 $)) 100)) (-4160 (((-108)) NIL)) (-3164 (((-385 (-885 |#1|)) $ (-525)) NIL)) (-3572 (((-1171 (-385 (-885 |#1|))) $ (-1171 $)) 94) (((-631 (-385 (-885 |#1|))) (-1171 $) (-1171 $)) NIL) (((-1171 (-385 (-885 |#1|))) $) 40) (((-631 (-385 (-885 |#1|))) (-1171 $)) NIL)) (-1408 (((-1171 (-385 (-885 |#1|))) $) NIL) (($ (-1171 (-385 (-885 |#1|)))) 37)) (-2117 (((-591 (-885 (-385 (-885 |#1|)))) (-1171 $)) NIL) (((-591 (-885 (-385 (-885 |#1|))))) NIL) (((-591 (-885 |#1|)) (-1171 $)) 95 (|has| |#1| (-517))) (((-591 (-885 |#1|))) 96 (|has| |#1| (-517)))) (-3619 (($ $ $) NIL)) (-1806 (((-108)) NIL)) (-3022 (((-796) $) NIL) (($ (-1171 (-385 (-885 |#1|)))) NIL)) (-4003 (((-1171 $)) 60)) (-1640 (((-591 (-1171 (-385 (-885 |#1|))))) NIL (|has| (-385 (-885 |#1|)) (-517)))) (-2392 (($ $ $ $) NIL)) (-2938 (((-108)) NIL)) (-3005 (($ (-631 (-385 (-885 |#1|))) $) NIL)) (-2707 (($ $ $) NIL)) (-2826 (((-108)) NIL)) (-1532 (((-108)) NIL)) (-1307 (((-108)) NIL)) (-4191 (($) NIL T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) 93)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 56) (($ $ (-385 (-885 |#1|))) NIL) (($ (-385 (-885 |#1|)) $) NIL) (($ (-1056 |#2| (-385 (-885 |#1|))) $) NIL)))
+(((-430 |#1| |#2| |#3| |#4|) (-13 (-395 (-385 (-885 |#1|))) (-593 (-1056 |#2| (-385 (-885 |#1|)))) (-10 -8 (-15 -3022 ($ (-1171 (-385 (-885 |#1|))))) (-15 -3121 ((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed"))) (-15 -3160 ((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed"))) (-15 -1742 ($)) (-15 -1742 ($ (-1089))) (-15 -1742 ($ (-1171 (-1089)))) (-15 -1742 ($ (-1171 $))) (-15 -1742 ($ (-1089) (-1171 $))) (-15 -1742 ($ (-1171 (-1089)) (-1171 $))) (IF (|has| |#1| (-517)) (PROGN (-15 -1308 ((-1085 (-385 (-885 |#1|))))) (-15 -3765 ((-1085 (-385 (-885 |#1|))) $)) (-15 -3034 ((-385 (-885 |#1|)) $)) (-15 -3916 ((-385 (-885 |#1|)) $)) (-15 -2550 ((-1085 (-385 (-885 |#1|))))) (-15 -3371 ((-1085 (-385 (-885 |#1|))) $)) (-15 -1440 ((-385 (-885 |#1|)) $)) (-15 -3984 ((-385 (-885 |#1|)) $)) (-15 -2925 ((-385 (-885 |#1|)) $ $)) (-15 -2959 ((-385 (-885 |#1|)))) (-15 -4200 ((-385 (-885 |#1|)) $ $)) (-15 -1904 ((-385 (-885 |#1|)))) (-15 -2117 ((-591 (-885 |#1|)) (-1171 $))) (-15 -2117 ((-591 (-885 |#1|))))) |%noBranch|))) (-160) (-854) (-591 (-1089)) (-1171 (-631 |#1|))) (T -430))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1171 (-385 (-885 *3)))) (-4 *3 (-160)) (-14 *6 (-1171 (-631 *3))) (-5 *1 (-430 *3 *4 *5 *6)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))))) (-3121 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-430 *3 *4 *5 *6)) (|:| -4003 (-591 (-430 *3 *4 *5 *6))))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-3160 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-430 *3 *4 *5 *6)) (|:| -4003 (-591 (-430 *3 *4 *5 *6))))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-1742 (*1 *1) (-12 (-5 *1 (-430 *2 *3 *4 *5)) (-4 *2 (-160)) (-14 *3 (-854)) (-14 *4 (-591 (-1089))) (-14 *5 (-1171 (-631 *2))))) (-1742 (*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 *2)) (-14 *6 (-1171 (-631 *3))))) (-1742 (*1 *1 *2) (-12 (-5 *2 (-1171 (-1089))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-1742 (*1 *1 *2) (-12 (-5 *2 (-1171 (-430 *3 *4 *5 *6))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-1742 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-430 *4 *5 *6 *7))) (-5 *1 (-430 *4 *5 *6 *7)) (-4 *4 (-160)) (-14 *5 (-854)) (-14 *6 (-591 *2)) (-14 *7 (-1171 (-631 *4))))) (-1742 (*1 *1 *2 *3) (-12 (-5 *2 (-1171 (-1089))) (-5 *3 (-1171 (-430 *4 *5 *6 *7))) (-5 *1 (-430 *4 *5 *6 *7)) (-4 *4 (-160)) (-14 *5 (-854)) (-14 *6 (-591 (-1089))) (-14 *7 (-1171 (-631 *4))))) (-1308 (*1 *2) (-12 (-5 *2 (-1085 (-385 (-885 *3)))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-3765 (*1 *2 *1) (-12 (-5 *2 (-1085 (-385 (-885 *3)))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-3034 (*1 *2 *1) (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-3916 (*1 *2 *1) (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-2550 (*1 *2) (-12 (-5 *2 (-1085 (-385 (-885 *3)))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-3371 (*1 *2 *1) (-12 (-5 *2 (-1085 (-385 (-885 *3)))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-1440 (*1 *2 *1) (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-3984 (*1 *2 *1) (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-2925 (*1 *2 *1 *1) (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-2959 (*1 *2) (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-4200 (*1 *2 *1 *1) (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-1904 (*1 *2) (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))) (-2117 (*1 *2 *3) (-12 (-5 *3 (-1171 (-430 *4 *5 *6 *7))) (-5 *2 (-591 (-885 *4))) (-5 *1 (-430 *4 *5 *6 *7)) (-4 *4 (-517)) (-4 *4 (-160)) (-14 *5 (-854)) (-14 *6 (-591 (-1089))) (-14 *7 (-1171 (-631 *4))))) (-2117 (*1 *2) (-12 (-5 *2 (-591 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))))
+(-13 (-395 (-385 (-885 |#1|))) (-593 (-1056 |#2| (-385 (-885 |#1|)))) (-10 -8 (-15 -3022 ($ (-1171 (-385 (-885 |#1|))))) (-15 -3121 ((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed"))) (-15 -3160 ((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed"))) (-15 -1742 ($)) (-15 -1742 ($ (-1089))) (-15 -1742 ($ (-1171 (-1089)))) (-15 -1742 ($ (-1171 $))) (-15 -1742 ($ (-1089) (-1171 $))) (-15 -1742 ($ (-1171 (-1089)) (-1171 $))) (IF (|has| |#1| (-517)) (PROGN (-15 -1308 ((-1085 (-385 (-885 |#1|))))) (-15 -3765 ((-1085 (-385 (-885 |#1|))) $)) (-15 -3034 ((-385 (-885 |#1|)) $)) (-15 -3916 ((-385 (-885 |#1|)) $)) (-15 -2550 ((-1085 (-385 (-885 |#1|))))) (-15 -3371 ((-1085 (-385 (-885 |#1|))) $)) (-15 -1440 ((-385 (-885 |#1|)) $)) (-15 -3984 ((-385 (-885 |#1|)) $)) (-15 -2925 ((-385 (-885 |#1|)) $ $)) (-15 -2959 ((-385 (-885 |#1|)))) (-15 -4200 ((-385 (-885 |#1|)) $ $)) (-15 -1904 ((-385 (-885 |#1|)))) (-15 -2117 ((-591 (-885 |#1|)) (-1171 $))) (-15 -2117 ((-591 (-885 |#1|))))) |%noBranch|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 13)) (-1507 (((-591 (-798 |#1|)) $) 75)) (-1312 (((-1085 $) $ (-798 |#1|)) 46) (((-1085 |#2|) $) 118)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#2| (-517)))) (-3706 (($ $) NIL (|has| |#2| (-517)))) (-1715 (((-108) $) NIL (|has| |#2| (-517)))) (-4090 (((-712) $) 21) (((-712) $ (-591 (-798 |#1|))) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1291 (($ $) NIL (|has| |#2| (-429)))) (-2827 (((-396 $) $) NIL (|has| |#2| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#2| "failed") $) 44) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#2| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) NIL (|has| |#2| (-966 (-525)))) (((-3 (-798 |#1|) "failed") $) NIL)) (-3528 ((|#2| $) 42) (((-385 (-525)) $) NIL (|has| |#2| (-966 (-385 (-525))))) (((-525) $) NIL (|has| |#2| (-966 (-525)))) (((-798 |#1|) $) NIL)) (-2805 (($ $ $ (-798 |#1|)) NIL (|has| |#2| (-160)))) (-1766 (($ $ (-591 (-525))) 80)) (-1710 (($ $) 68)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) NIL) (((-631 |#2|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3208 (($ $) NIL (|has| |#2| (-429))) (($ $ (-798 |#1|)) NIL (|has| |#2| (-429)))) (-1695 (((-591 $) $) NIL)) (-2744 (((-108) $) NIL (|has| |#2| (-842)))) (-2056 (($ $ |#2| |#3| $) NIL)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| (-798 |#1|) (-819 (-357))) (|has| |#2| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| (-798 |#1|) (-819 (-525))) (|has| |#2| (-819 (-525)))))) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) 58)) (-1493 (($ (-1085 |#2|) (-798 |#1|)) 123) (($ (-1085 $) (-798 |#1|)) 52)) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) 59)) (-1480 (($ |#2| |#3|) 28) (($ $ (-798 |#1|) (-712)) 30) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ (-798 |#1|)) NIL)) (-2624 ((|#3| $) NIL) (((-712) $ (-798 |#1|)) 50) (((-591 (-712)) $ (-591 (-798 |#1|))) 57)) (-3741 (($ $ $) NIL (|has| |#2| (-788)))) (-2478 (($ $ $) NIL (|has| |#2| (-788)))) (-4015 (($ (-1 |#3| |#3|) $) NIL)) (-1340 (($ (-1 |#2| |#2|) $) NIL)) (-2254 (((-3 (-798 |#1|) "failed") $) 39)) (-1661 (($ $) NIL)) (-1678 ((|#2| $) 41)) (-1356 (($ (-591 $)) NIL (|has| |#2| (-429))) (($ $ $) NIL (|has| |#2| (-429)))) (-2339 (((-1072) $) NIL)) (-3376 (((-3 (-591 $) "failed") $) NIL)) (-2010 (((-3 (-591 $) "failed") $) NIL)) (-2292 (((-3 (-2 (|:| |var| (-798 |#1|)) (|:| -2008 (-712))) "failed") $) NIL)) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) 40)) (-1646 ((|#2| $) 116)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#2| (-429)))) (-1399 (($ (-591 $)) NIL (|has| |#2| (-429))) (($ $ $) 128 (|has| |#2| (-429)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1348 (((-396 $) $) NIL (|has| |#2| (-842)))) (-2089 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-517))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-517)))) (-4132 (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-798 |#1|) |#2|) 87) (($ $ (-591 (-798 |#1|)) (-591 |#2|)) 90) (($ $ (-798 |#1|) $) 85) (($ $ (-591 (-798 |#1|)) (-591 $)) 106)) (-2976 (($ $ (-798 |#1|)) NIL (|has| |#2| (-160)))) (-3266 (($ $ (-798 |#1|)) 53) (($ $ (-591 (-798 |#1|))) NIL) (($ $ (-798 |#1|) (-712)) NIL) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-1316 ((|#3| $) 67) (((-712) $ (-798 |#1|)) 37) (((-591 (-712)) $ (-591 (-798 |#1|))) 56)) (-1408 (((-825 (-357)) $) NIL (-12 (|has| (-798 |#1|) (-566 (-825 (-357)))) (|has| |#2| (-566 (-825 (-357)))))) (((-825 (-525)) $) NIL (-12 (|has| (-798 |#1|) (-566 (-825 (-525)))) (|has| |#2| (-566 (-825 (-525)))))) (((-501) $) NIL (-12 (|has| (-798 |#1|) (-566 (-501))) (|has| |#2| (-566 (-501)))))) (-2668 ((|#2| $) 125 (|has| |#2| (-429))) (($ $ (-798 |#1|)) NIL (|has| |#2| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#2| (-842))))) (-3022 (((-796) $) 145) (($ (-525)) NIL) (($ |#2|) 86) (($ (-798 |#1|)) 31) (($ (-385 (-525))) NIL (-3321 (|has| |#2| (-37 (-385 (-525)))) (|has| |#2| (-966 (-385 (-525)))))) (($ $) NIL (|has| |#2| (-517)))) (-3654 (((-591 |#2|) $) NIL)) (-2560 ((|#2| $ |#3|) NIL) (($ $ (-798 |#1|) (-712)) NIL) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#2| (-842))) (|has| |#2| (-136))))) (-2128 (((-712)) NIL)) (-1698 (($ $ $ (-712)) NIL (|has| |#2| (-160)))) (-2495 (((-108) $ $) NIL (|has| |#2| (-517)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 17 T CONST)) (-4197 (($) 25 T CONST)) (-4196 (($ $ (-798 |#1|)) NIL) (($ $ (-591 (-798 |#1|))) NIL) (($ $ (-798 |#1|) (-712)) NIL) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-4135 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4173 (($ $ |#2|) 64 (|has| |#2| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) 111)) (** (($ $ (-854)) NIL) (($ $ (-712)) 109)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 29) (($ $ (-385 (-525))) NIL (|has| |#2| (-37 (-385 (-525))))) (($ (-385 (-525)) $) NIL (|has| |#2| (-37 (-385 (-525))))) (($ |#2| $) 63) (($ $ |#2|) NIL)))
+(((-431 |#1| |#2| |#3|) (-13 (-882 |#2| |#3| (-798 |#1|)) (-10 -8 (-15 -1766 ($ $ (-591 (-525)))))) (-591 (-1089)) (-975) (-218 (-4045 |#1|) (-712))) (T -431))
+((-1766 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-525))) (-14 *3 (-591 (-1089))) (-5 *1 (-431 *3 *4 *5)) (-4 *4 (-975)) (-4 *5 (-218 (-4045 *3) (-712))))))
+(-13 (-882 |#2| |#3| (-798 |#1|)) (-10 -8 (-15 -1766 ($ $ (-591 (-525))))))
+((-2133 (((-108) |#1| (-591 |#2|)) 69)) (-2737 (((-3 (-1171 (-591 |#2|)) "failed") (-712) |#1| (-591 |#2|)) 78)) (-2343 (((-3 (-591 |#2|) "failed") |#2| |#1| (-1171 (-591 |#2|))) 80)) (-3077 ((|#2| |#2| |#1|) 28)) (-3986 (((-712) |#2| (-591 |#2|)) 20)))
+(((-432 |#1| |#2|) (-10 -7 (-15 -3077 (|#2| |#2| |#1|)) (-15 -3986 ((-712) |#2| (-591 |#2|))) (-15 -2737 ((-3 (-1171 (-591 |#2|)) "failed") (-712) |#1| (-591 |#2|))) (-15 -2343 ((-3 (-591 |#2|) "failed") |#2| |#1| (-1171 (-591 |#2|)))) (-15 -2133 ((-108) |#1| (-591 |#2|)))) (-286) (-1147 |#1|)) (T -432))
+((-2133 (*1 *2 *3 *4) (-12 (-5 *4 (-591 *5)) (-4 *5 (-1147 *3)) (-4 *3 (-286)) (-5 *2 (-108)) (-5 *1 (-432 *3 *5)))) (-2343 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1171 (-591 *3))) (-4 *4 (-286)) (-5 *2 (-591 *3)) (-5 *1 (-432 *4 *3)) (-4 *3 (-1147 *4)))) (-2737 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-712)) (-4 *4 (-286)) (-4 *6 (-1147 *4)) (-5 *2 (-1171 (-591 *6))) (-5 *1 (-432 *4 *6)) (-5 *5 (-591 *6)))) (-3986 (*1 *2 *3 *4) (-12 (-5 *4 (-591 *3)) (-4 *3 (-1147 *5)) (-4 *5 (-286)) (-5 *2 (-712)) (-5 *1 (-432 *5 *3)))) (-3077 (*1 *2 *2 *3) (-12 (-4 *3 (-286)) (-5 *1 (-432 *3 *2)) (-4 *2 (-1147 *3)))))
+(-10 -7 (-15 -3077 (|#2| |#2| |#1|)) (-15 -3986 ((-712) |#2| (-591 |#2|))) (-15 -2737 ((-3 (-1171 (-591 |#2|)) "failed") (-712) |#1| (-591 |#2|))) (-15 -2343 ((-3 (-591 |#2|) "failed") |#2| |#1| (-1171 (-591 |#2|)))) (-15 -2133 ((-108) |#1| (-591 |#2|))))
+((-1348 (((-396 |#5|) |#5|) 24)))
+(((-433 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1348 ((-396 |#5|) |#5|))) (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $)) (-15 -2037 ((-3 $ "failed") (-1089))))) (-734) (-517) (-517) (-882 |#4| |#2| |#1|)) (T -433))
+((-1348 (*1 *2 *3) (-12 (-4 *4 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $)) (-15 -2037 ((-3 $ "failed") (-1089)))))) (-4 *5 (-734)) (-4 *7 (-517)) (-5 *2 (-396 *3)) (-5 *1 (-433 *4 *5 *6 *7 *3)) (-4 *6 (-517)) (-4 *3 (-882 *7 *5 *4)))))
+(-10 -7 (-15 -1348 ((-396 |#5|) |#5|)))
+((-3540 ((|#3|) 37)) (-2526 (((-1085 |#4|) (-1085 |#4|) (-1085 |#4|)) 33)))
+(((-434 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2526 ((-1085 |#4|) (-1085 |#4|) (-1085 |#4|))) (-15 -3540 (|#3|))) (-734) (-788) (-842) (-882 |#3| |#1| |#2|)) (T -434))
+((-3540 (*1 *2) (-12 (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-842)) (-5 *1 (-434 *3 *4 *2 *5)) (-4 *5 (-882 *2 *3 *4)))) (-2526 (*1 *2 *2 *2) (-12 (-5 *2 (-1085 *6)) (-4 *6 (-882 *5 *3 *4)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *5 (-842)) (-5 *1 (-434 *3 *4 *5 *6)))))
+(-10 -7 (-15 -2526 ((-1085 |#4|) (-1085 |#4|) (-1085 |#4|))) (-15 -3540 (|#3|)))
+((-1348 (((-396 (-1085 |#1|)) (-1085 |#1|)) 43)))
+(((-435 |#1|) (-10 -7 (-15 -1348 ((-396 (-1085 |#1|)) (-1085 |#1|)))) (-286)) (T -435))
+((-1348 (*1 *2 *3) (-12 (-4 *4 (-286)) (-5 *2 (-396 (-1085 *4))) (-5 *1 (-435 *4)) (-5 *3 (-1085 *4)))))
+(-10 -7 (-15 -1348 ((-396 (-1085 |#1|)) (-1085 |#1|))))
+((-1569 (((-51) |#2| (-1089) (-273 |#2|) (-1138 (-712))) 42) (((-51) (-1 |#2| (-525)) (-273 |#2|) (-1138 (-712))) 41) (((-51) |#2| (-1089) (-273 |#2|)) 35) (((-51) (-1 |#2| (-525)) (-273 |#2|)) 28)) (-3682 (((-51) |#2| (-1089) (-273 |#2|) (-1138 (-385 (-525))) (-385 (-525))) 80) (((-51) (-1 |#2| (-385 (-525))) (-273 |#2|) (-1138 (-385 (-525))) (-385 (-525))) 79) (((-51) |#2| (-1089) (-273 |#2|) (-1138 (-525))) 78) (((-51) (-1 |#2| (-525)) (-273 |#2|) (-1138 (-525))) 77) (((-51) |#2| (-1089) (-273 |#2|)) 72) (((-51) (-1 |#2| (-525)) (-273 |#2|)) 71)) (-1597 (((-51) |#2| (-1089) (-273 |#2|) (-1138 (-385 (-525))) (-385 (-525))) 66) (((-51) (-1 |#2| (-385 (-525))) (-273 |#2|) (-1138 (-385 (-525))) (-385 (-525))) 64)) (-1581 (((-51) |#2| (-1089) (-273 |#2|) (-1138 (-525))) 48) (((-51) (-1 |#2| (-525)) (-273 |#2|) (-1138 (-525))) 47)))
+(((-436 |#1| |#2|) (-10 -7 (-15 -1569 ((-51) (-1 |#2| (-525)) (-273 |#2|))) (-15 -1569 ((-51) |#2| (-1089) (-273 |#2|))) (-15 -1569 ((-51) (-1 |#2| (-525)) (-273 |#2|) (-1138 (-712)))) (-15 -1569 ((-51) |#2| (-1089) (-273 |#2|) (-1138 (-712)))) (-15 -1581 ((-51) (-1 |#2| (-525)) (-273 |#2|) (-1138 (-525)))) (-15 -1581 ((-51) |#2| (-1089) (-273 |#2|) (-1138 (-525)))) (-15 -1597 ((-51) (-1 |#2| (-385 (-525))) (-273 |#2|) (-1138 (-385 (-525))) (-385 (-525)))) (-15 -1597 ((-51) |#2| (-1089) (-273 |#2|) (-1138 (-385 (-525))) (-385 (-525)))) (-15 -3682 ((-51) (-1 |#2| (-525)) (-273 |#2|))) (-15 -3682 ((-51) |#2| (-1089) (-273 |#2|))) (-15 -3682 ((-51) (-1 |#2| (-525)) (-273 |#2|) (-1138 (-525)))) (-15 -3682 ((-51) |#2| (-1089) (-273 |#2|) (-1138 (-525)))) (-15 -3682 ((-51) (-1 |#2| (-385 (-525))) (-273 |#2|) (-1138 (-385 (-525))) (-385 (-525)))) (-15 -3682 ((-51) |#2| (-1089) (-273 |#2|) (-1138 (-385 (-525))) (-385 (-525))))) (-13 (-517) (-788) (-966 (-525)) (-587 (-525))) (-13 (-27) (-1111) (-408 |#1|))) (T -436))
+((-3682 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1089)) (-5 *5 (-273 *3)) (-5 *6 (-1138 (-385 (-525)))) (-5 *7 (-385 (-525))) (-4 *3 (-13 (-27) (-1111) (-408 *8))) (-4 *8 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-436 *8 *3)))) (-3682 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-385 (-525)))) (-5 *4 (-273 *8)) (-5 *5 (-1138 (-385 (-525)))) (-5 *6 (-385 (-525))) (-4 *8 (-13 (-27) (-1111) (-408 *7))) (-4 *7 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-436 *7 *8)))) (-3682 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1089)) (-5 *5 (-273 *3)) (-5 *6 (-1138 (-525))) (-4 *3 (-13 (-27) (-1111) (-408 *7))) (-4 *7 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-436 *7 *3)))) (-3682 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-525))) (-5 *4 (-273 *7)) (-5 *5 (-1138 (-525))) (-4 *7 (-13 (-27) (-1111) (-408 *6))) (-4 *6 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-436 *6 *7)))) (-3682 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1089)) (-5 *5 (-273 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *6))) (-4 *6 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-436 *6 *3)))) (-3682 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-525))) (-5 *4 (-273 *6)) (-4 *6 (-13 (-27) (-1111) (-408 *5))) (-4 *5 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-436 *5 *6)))) (-1597 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1089)) (-5 *5 (-273 *3)) (-5 *6 (-1138 (-385 (-525)))) (-5 *7 (-385 (-525))) (-4 *3 (-13 (-27) (-1111) (-408 *8))) (-4 *8 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-436 *8 *3)))) (-1597 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-385 (-525)))) (-5 *4 (-273 *8)) (-5 *5 (-1138 (-385 (-525)))) (-5 *6 (-385 (-525))) (-4 *8 (-13 (-27) (-1111) (-408 *7))) (-4 *7 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-436 *7 *8)))) (-1581 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1089)) (-5 *5 (-273 *3)) (-5 *6 (-1138 (-525))) (-4 *3 (-13 (-27) (-1111) (-408 *7))) (-4 *7 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-436 *7 *3)))) (-1581 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-525))) (-5 *4 (-273 *7)) (-5 *5 (-1138 (-525))) (-4 *7 (-13 (-27) (-1111) (-408 *6))) (-4 *6 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-436 *6 *7)))) (-1569 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1089)) (-5 *5 (-273 *3)) (-5 *6 (-1138 (-712))) (-4 *3 (-13 (-27) (-1111) (-408 *7))) (-4 *7 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-436 *7 *3)))) (-1569 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-525))) (-5 *4 (-273 *7)) (-5 *5 (-1138 (-712))) (-4 *7 (-13 (-27) (-1111) (-408 *6))) (-4 *6 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-436 *6 *7)))) (-1569 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1089)) (-5 *5 (-273 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *6))) (-4 *6 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-436 *6 *3)))) (-1569 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-525))) (-5 *4 (-273 *6)) (-4 *6 (-13 (-27) (-1111) (-408 *5))) (-4 *5 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-51)) (-5 *1 (-436 *5 *6)))))
+(-10 -7 (-15 -1569 ((-51) (-1 |#2| (-525)) (-273 |#2|))) (-15 -1569 ((-51) |#2| (-1089) (-273 |#2|))) (-15 -1569 ((-51) (-1 |#2| (-525)) (-273 |#2|) (-1138 (-712)))) (-15 -1569 ((-51) |#2| (-1089) (-273 |#2|) (-1138 (-712)))) (-15 -1581 ((-51) (-1 |#2| (-525)) (-273 |#2|) (-1138 (-525)))) (-15 -1581 ((-51) |#2| (-1089) (-273 |#2|) (-1138 (-525)))) (-15 -1597 ((-51) (-1 |#2| (-385 (-525))) (-273 |#2|) (-1138 (-385 (-525))) (-385 (-525)))) (-15 -1597 ((-51) |#2| (-1089) (-273 |#2|) (-1138 (-385 (-525))) (-385 (-525)))) (-15 -3682 ((-51) (-1 |#2| (-525)) (-273 |#2|))) (-15 -3682 ((-51) |#2| (-1089) (-273 |#2|))) (-15 -3682 ((-51) (-1 |#2| (-525)) (-273 |#2|) (-1138 (-525)))) (-15 -3682 ((-51) |#2| (-1089) (-273 |#2|) (-1138 (-525)))) (-15 -3682 ((-51) (-1 |#2| (-385 (-525))) (-273 |#2|) (-1138 (-385 (-525))) (-385 (-525)))) (-15 -3682 ((-51) |#2| (-1089) (-273 |#2|) (-1138 (-385 (-525))) (-385 (-525)))))
+((-3077 ((|#2| |#2| |#1|) 15)) (-2269 (((-591 |#2|) |#2| (-591 |#2|) |#1| (-854)) 69)) (-3101 (((-2 (|:| |plist| (-591 |#2|)) (|:| |modulo| |#1|)) |#2| (-591 |#2|) |#1| (-854)) 60)))
+(((-437 |#1| |#2|) (-10 -7 (-15 -3101 ((-2 (|:| |plist| (-591 |#2|)) (|:| |modulo| |#1|)) |#2| (-591 |#2|) |#1| (-854))) (-15 -2269 ((-591 |#2|) |#2| (-591 |#2|) |#1| (-854))) (-15 -3077 (|#2| |#2| |#1|))) (-286) (-1147 |#1|)) (T -437))
+((-3077 (*1 *2 *2 *3) (-12 (-4 *3 (-286)) (-5 *1 (-437 *3 *2)) (-4 *2 (-1147 *3)))) (-2269 (*1 *2 *3 *2 *4 *5) (-12 (-5 *2 (-591 *3)) (-5 *5 (-854)) (-4 *3 (-1147 *4)) (-4 *4 (-286)) (-5 *1 (-437 *4 *3)))) (-3101 (*1 *2 *3 *4 *5 *6) (-12 (-5 *6 (-854)) (-4 *5 (-286)) (-4 *3 (-1147 *5)) (-5 *2 (-2 (|:| |plist| (-591 *3)) (|:| |modulo| *5))) (-5 *1 (-437 *5 *3)) (-5 *4 (-591 *3)))))
+(-10 -7 (-15 -3101 ((-2 (|:| |plist| (-591 |#2|)) (|:| |modulo| |#1|)) |#2| (-591 |#2|) |#1| (-854))) (-15 -2269 ((-591 |#2|) |#2| (-591 |#2|) |#1| (-854))) (-15 -3077 (|#2| |#2| |#1|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 28)) (-2092 (($ |#3|) 25)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1710 (($ $) 32)) (-2716 (($ |#2| |#4| $) 33)) (-1480 (($ |#2| (-655 |#3| |#4| |#5|)) 24)) (-1661 (((-655 |#3| |#4| |#5|) $) 15)) (-1621 ((|#3| $) 19)) (-2006 ((|#4| $) 17)) (-1678 ((|#2| $) 29)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-3373 (($ |#2| |#3| |#4|) 26)) (-4191 (($) 36 T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) 34)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ |#6| $) 40) (($ $ |#6|) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-438 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-659 |#6|) (-659 |#2|) (-10 -8 (-15 -1678 (|#2| $)) (-15 -1661 ((-655 |#3| |#4| |#5|) $)) (-15 -2006 (|#4| $)) (-15 -1621 (|#3| $)) (-15 -1710 ($ $)) (-15 -1480 ($ |#2| (-655 |#3| |#4| |#5|))) (-15 -2092 ($ |#3|)) (-15 -3373 ($ |#2| |#3| |#4|)) (-15 -2716 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-591 (-1089)) (-160) (-788) (-218 (-4045 |#1|) (-712)) (-1 (-108) (-2 (|:| -2226 |#3|) (|:| -2008 |#4|)) (-2 (|:| -2226 |#3|) (|:| -2008 |#4|))) (-882 |#2| |#4| (-798 |#1|))) (T -438))
+((* (*1 *1 *2 *1) (-12 (-14 *3 (-591 (-1089))) (-4 *4 (-160)) (-4 *6 (-218 (-4045 *3) (-712))) (-14 *7 (-1 (-108) (-2 (|:| -2226 *5) (|:| -2008 *6)) (-2 (|:| -2226 *5) (|:| -2008 *6)))) (-5 *1 (-438 *3 *4 *5 *6 *7 *2)) (-4 *5 (-788)) (-4 *2 (-882 *4 *6 (-798 *3))))) (-1678 (*1 *2 *1) (-12 (-14 *3 (-591 (-1089))) (-4 *5 (-218 (-4045 *3) (-712))) (-14 *6 (-1 (-108) (-2 (|:| -2226 *4) (|:| -2008 *5)) (-2 (|:| -2226 *4) (|:| -2008 *5)))) (-4 *2 (-160)) (-5 *1 (-438 *3 *2 *4 *5 *6 *7)) (-4 *4 (-788)) (-4 *7 (-882 *2 *5 (-798 *3))))) (-1661 (*1 *2 *1) (-12 (-14 *3 (-591 (-1089))) (-4 *4 (-160)) (-4 *6 (-218 (-4045 *3) (-712))) (-14 *7 (-1 (-108) (-2 (|:| -2226 *5) (|:| -2008 *6)) (-2 (|:| -2226 *5) (|:| -2008 *6)))) (-5 *2 (-655 *5 *6 *7)) (-5 *1 (-438 *3 *4 *5 *6 *7 *8)) (-4 *5 (-788)) (-4 *8 (-882 *4 *6 (-798 *3))))) (-2006 (*1 *2 *1) (-12 (-14 *3 (-591 (-1089))) (-4 *4 (-160)) (-14 *6 (-1 (-108) (-2 (|:| -2226 *5) (|:| -2008 *2)) (-2 (|:| -2226 *5) (|:| -2008 *2)))) (-4 *2 (-218 (-4045 *3) (-712))) (-5 *1 (-438 *3 *4 *5 *2 *6 *7)) (-4 *5 (-788)) (-4 *7 (-882 *4 *2 (-798 *3))))) (-1621 (*1 *2 *1) (-12 (-14 *3 (-591 (-1089))) (-4 *4 (-160)) (-4 *5 (-218 (-4045 *3) (-712))) (-14 *6 (-1 (-108) (-2 (|:| -2226 *2) (|:| -2008 *5)) (-2 (|:| -2226 *2) (|:| -2008 *5)))) (-4 *2 (-788)) (-5 *1 (-438 *3 *4 *2 *5 *6 *7)) (-4 *7 (-882 *4 *5 (-798 *3))))) (-1710 (*1 *1 *1) (-12 (-14 *2 (-591 (-1089))) (-4 *3 (-160)) (-4 *5 (-218 (-4045 *2) (-712))) (-14 *6 (-1 (-108) (-2 (|:| -2226 *4) (|:| -2008 *5)) (-2 (|:| -2226 *4) (|:| -2008 *5)))) (-5 *1 (-438 *2 *3 *4 *5 *6 *7)) (-4 *4 (-788)) (-4 *7 (-882 *3 *5 (-798 *2))))) (-1480 (*1 *1 *2 *3) (-12 (-5 *3 (-655 *5 *6 *7)) (-4 *5 (-788)) (-4 *6 (-218 (-4045 *4) (-712))) (-14 *7 (-1 (-108) (-2 (|:| -2226 *5) (|:| -2008 *6)) (-2 (|:| -2226 *5) (|:| -2008 *6)))) (-14 *4 (-591 (-1089))) (-4 *2 (-160)) (-5 *1 (-438 *4 *2 *5 *6 *7 *8)) (-4 *8 (-882 *2 *6 (-798 *4))))) (-2092 (*1 *1 *2) (-12 (-14 *3 (-591 (-1089))) (-4 *4 (-160)) (-4 *5 (-218 (-4045 *3) (-712))) (-14 *6 (-1 (-108) (-2 (|:| -2226 *2) (|:| -2008 *5)) (-2 (|:| -2226 *2) (|:| -2008 *5)))) (-5 *1 (-438 *3 *4 *2 *5 *6 *7)) (-4 *2 (-788)) (-4 *7 (-882 *4 *5 (-798 *3))))) (-3373 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-591 (-1089))) (-4 *2 (-160)) (-4 *4 (-218 (-4045 *5) (-712))) (-14 *6 (-1 (-108) (-2 (|:| -2226 *3) (|:| -2008 *4)) (-2 (|:| -2226 *3) (|:| -2008 *4)))) (-5 *1 (-438 *5 *2 *3 *4 *6 *7)) (-4 *3 (-788)) (-4 *7 (-882 *2 *4 (-798 *5))))) (-2716 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-591 (-1089))) (-4 *2 (-160)) (-4 *3 (-218 (-4045 *4) (-712))) (-14 *6 (-1 (-108) (-2 (|:| -2226 *5) (|:| -2008 *3)) (-2 (|:| -2226 *5) (|:| -2008 *3)))) (-5 *1 (-438 *4 *2 *5 *3 *6 *7)) (-4 *5 (-788)) (-4 *7 (-882 *2 *3 (-798 *4))))))
+(-13 (-659 |#6|) (-659 |#2|) (-10 -8 (-15 -1678 (|#2| $)) (-15 -1661 ((-655 |#3| |#4| |#5|) $)) (-15 -2006 (|#4| $)) (-15 -1621 (|#3| $)) (-15 -1710 ($ $)) (-15 -1480 ($ |#2| (-655 |#3| |#4| |#5|))) (-15 -2092 ($ |#3|)) (-15 -3373 ($ |#2| |#3| |#4|)) (-15 -2716 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
+((-2822 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 37)))
+(((-439 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2822 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-734) (-788) (-517) (-882 |#3| |#1| |#2|) (-13 (-966 (-385 (-525))) (-341) (-10 -8 (-15 -3022 ($ |#4|)) (-15 -1738 (|#4| $)) (-15 -1754 (|#4| $))))) (T -439))
+((-2822 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-788)) (-4 *5 (-734)) (-4 *6 (-517)) (-4 *7 (-882 *6 *5 *3)) (-5 *1 (-439 *5 *3 *6 *7 *2)) (-4 *2 (-13 (-966 (-385 (-525))) (-341) (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $)) (-15 -1754 (*7 $))))))))
+(-10 -7 (-15 -2822 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
+((-3008 (((-108) $ $) NIL)) (-1507 (((-591 |#3|) $) 41)) (-1430 (((-108) $) NIL)) (-3490 (((-108) $) NIL (|has| |#1| (-517)))) (-3327 (((-2 (|:| |under| $) (|:| -2662 $) (|:| |upper| $)) $ |#3|) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-2305 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-3382 (((-108) $) NIL (|has| |#1| (-517)))) (-2438 (((-108) $ $) NIL (|has| |#1| (-517)))) (-2055 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1964 (((-108) $) NIL (|has| |#1| (-517)))) (-3853 (((-591 |#4|) (-591 |#4|) $) NIL (|has| |#1| (-517)))) (-1921 (((-591 |#4|) (-591 |#4|) $) NIL (|has| |#1| (-517)))) (-1251 (((-3 $ "failed") (-591 |#4|)) 47)) (-3528 (($ (-591 |#4|)) NIL)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018))))) (-3677 (($ |#4| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-3407 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-517)))) (-1227 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4250))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4250)))) (-3454 (((-591 |#4|) $) 18 (|has| $ (-6 -4250)))) (-2009 ((|#3| $) 45)) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#4|) $) 14 (|has| $ (-6 -4250)))) (-2141 (((-108) |#4| $) 26 (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018))))) (-3249 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#4| |#4|) $) 21)) (-3993 (((-591 |#3|) $) NIL)) (-4174 (((-108) |#3| $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-2934 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-517)))) (-2047 (((-1036) $) NIL)) (-2069 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-1623 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 |#4|) (-591 |#4|)) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-273 |#4|)) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-591 (-273 |#4|))) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) 39)) (-3209 (($) 17)) (-2064 (((-712) |#4| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018)))) (((-712) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) 16)) (-1408 (((-501) $) NIL (|has| |#4| (-566 (-501)))) (($ (-591 |#4|)) 49)) (-3036 (($ (-591 |#4|)) 13)) (-3134 (($ $ |#3|) NIL)) (-3443 (($ $ |#3|) NIL)) (-3010 (($ $ |#3|) NIL)) (-3022 (((-796) $) 38) (((-591 |#4|) $) 48)) (-4158 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 30)) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-440 |#1| |#2| |#3| |#4|) (-13 (-907 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1408 ($ (-591 |#4|))) (-6 -4250) (-6 -4251))) (-975) (-734) (-788) (-989 |#1| |#2| |#3|)) (T -440))
+((-1408 (*1 *1 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-440 *3 *4 *5 *6)))))
+(-13 (-907 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1408 ($ (-591 |#4|))) (-6 -4250) (-6 -4251)))
+((-4191 (($) 11)) (-4197 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
+(((-441 |#1| |#2| |#3|) (-10 -8 (-15 -4197 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -4191 (|#1|))) (-442 |#2| |#3|) (-160) (-23)) (T -441))
+NIL
+(-10 -8 (-15 -4197 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -4191 (|#1|)))
+((-3008 (((-108) $ $) 7)) (-1251 (((-3 |#1| "failed") $) 26)) (-3528 ((|#1| $) 25)) (-3783 (($ $ $) 23)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-1316 ((|#2| $) 19)) (-3022 (((-796) $) 11) (($ |#1|) 27)) (-4191 (($) 18 T CONST)) (-4197 (($) 24 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 15) (($ $ $) 13)) (-4156 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
+(((-442 |#1| |#2|) (-131) (-160) (-23)) (T -442))
+((-4197 (*1 *1) (-12 (-4 *1 (-442 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23)))) (-3783 (*1 *1 *1 *1) (-12 (-4 *1 (-442 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23)))))
+(-13 (-447 |t#1| |t#2|) (-966 |t#1|) (-10 -8 (-15 (-4197) ($) -2058) (-15 -3783 ($ $ $))))
+(((-97) . T) ((-565 (-796)) . T) ((-447 |#1| |#2|) . T) ((-966 |#1|) . T) ((-1018) . T))
+((-3027 (((-1171 (-1171 (-525))) (-1171 (-1171 (-525))) (-854)) 18)) (-3724 (((-1171 (-1171 (-525))) (-854)) 16)))
+(((-443) (-10 -7 (-15 -3027 ((-1171 (-1171 (-525))) (-1171 (-1171 (-525))) (-854))) (-15 -3724 ((-1171 (-1171 (-525))) (-854))))) (T -443))
+((-3724 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1171 (-1171 (-525)))) (-5 *1 (-443)))) (-3027 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 (-1171 (-525)))) (-5 *3 (-854)) (-5 *1 (-443)))))
+(-10 -7 (-15 -3027 ((-1171 (-1171 (-525))) (-1171 (-1171 (-525))) (-854))) (-15 -3724 ((-1171 (-1171 (-525))) (-854))))
+((-2418 (((-525) (-525)) 30) (((-525)) 22)) (-3537 (((-525) (-525)) 26) (((-525)) 18)) (-2061 (((-525) (-525)) 28) (((-525)) 20)) (-1807 (((-108) (-108)) 12) (((-108)) 10)) (-4035 (((-108) (-108)) 11) (((-108)) 9)) (-3230 (((-108) (-108)) 24) (((-108)) 15)))
+(((-444) (-10 -7 (-15 -4035 ((-108))) (-15 -1807 ((-108))) (-15 -4035 ((-108) (-108))) (-15 -1807 ((-108) (-108))) (-15 -3230 ((-108))) (-15 -2061 ((-525))) (-15 -3537 ((-525))) (-15 -2418 ((-525))) (-15 -3230 ((-108) (-108))) (-15 -2061 ((-525) (-525))) (-15 -3537 ((-525) (-525))) (-15 -2418 ((-525) (-525))))) (T -444))
+((-2418 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-444)))) (-3537 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-444)))) (-2061 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-444)))) (-3230 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-444)))) (-2418 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-444)))) (-3537 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-444)))) (-2061 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-444)))) (-3230 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-444)))) (-1807 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-444)))) (-4035 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-444)))) (-1807 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-444)))) (-4035 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-444)))))
+(-10 -7 (-15 -4035 ((-108))) (-15 -1807 ((-108))) (-15 -4035 ((-108) (-108))) (-15 -1807 ((-108) (-108))) (-15 -3230 ((-108))) (-15 -2061 ((-525))) (-15 -3537 ((-525))) (-15 -2418 ((-525))) (-15 -3230 ((-108) (-108))) (-15 -2061 ((-525) (-525))) (-15 -3537 ((-525) (-525))) (-15 -2418 ((-525) (-525))))
+((-3008 (((-108) $ $) NIL)) (-3331 (((-591 (-357)) $) 28) (((-591 (-357)) $ (-591 (-357))) 95)) (-4223 (((-591 (-1013 (-357))) $) 16) (((-591 (-1013 (-357))) $ (-591 (-1013 (-357)))) 92)) (-3849 (((-591 (-591 (-876 (-205)))) (-591 (-591 (-876 (-205)))) (-591 (-807))) 44)) (-2007 (((-591 (-591 (-876 (-205)))) $) 88)) (-3643 (((-1176) $ (-876 (-205)) (-807)) 107)) (-3356 (($ $) 87) (($ (-591 (-591 (-876 (-205))))) 98) (($ (-591 (-591 (-876 (-205)))) (-591 (-807)) (-591 (-807)) (-591 (-854))) 97) (($ (-591 (-591 (-876 (-205)))) (-591 (-807)) (-591 (-807)) (-591 (-854)) (-591 (-242))) 99)) (-2339 (((-1072) $) NIL)) (-2019 (((-525) $) 69)) (-2047 (((-1036) $) NIL)) (-2114 (($) 96)) (-1935 (((-591 (-205)) (-591 (-591 (-876 (-205))))) 54)) (-2705 (((-1176) $ (-591 (-876 (-205))) (-807) (-807) (-854)) 101) (((-1176) $ (-876 (-205))) 103) (((-1176) $ (-876 (-205)) (-807) (-807) (-854)) 102)) (-3022 (((-796) $) 113) (($ (-591 (-591 (-876 (-205))))) 108)) (-2561 (((-1176) $ (-876 (-205))) 106)) (-4096 (((-108) $ $) NIL)))
+(((-445) (-13 (-1018) (-10 -8 (-15 -2114 ($)) (-15 -3356 ($ $)) (-15 -3356 ($ (-591 (-591 (-876 (-205)))))) (-15 -3356 ($ (-591 (-591 (-876 (-205)))) (-591 (-807)) (-591 (-807)) (-591 (-854)))) (-15 -3356 ($ (-591 (-591 (-876 (-205)))) (-591 (-807)) (-591 (-807)) (-591 (-854)) (-591 (-242)))) (-15 -2007 ((-591 (-591 (-876 (-205)))) $)) (-15 -2019 ((-525) $)) (-15 -4223 ((-591 (-1013 (-357))) $)) (-15 -4223 ((-591 (-1013 (-357))) $ (-591 (-1013 (-357))))) (-15 -3331 ((-591 (-357)) $)) (-15 -3331 ((-591 (-357)) $ (-591 (-357)))) (-15 -2705 ((-1176) $ (-591 (-876 (-205))) (-807) (-807) (-854))) (-15 -2705 ((-1176) $ (-876 (-205)))) (-15 -2705 ((-1176) $ (-876 (-205)) (-807) (-807) (-854))) (-15 -2561 ((-1176) $ (-876 (-205)))) (-15 -3643 ((-1176) $ (-876 (-205)) (-807))) (-15 -3022 ($ (-591 (-591 (-876 (-205)))))) (-15 -3022 ((-796) $)) (-15 -3849 ((-591 (-591 (-876 (-205)))) (-591 (-591 (-876 (-205)))) (-591 (-807)))) (-15 -1935 ((-591 (-205)) (-591 (-591 (-876 (-205))))))))) (T -445))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-445)))) (-2114 (*1 *1) (-5 *1 (-445))) (-3356 (*1 *1 *1) (-5 *1 (-445))) (-3356 (*1 *1 *2) (-12 (-5 *2 (-591 (-591 (-876 (-205))))) (-5 *1 (-445)))) (-3356 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-591 (-591 (-876 (-205))))) (-5 *3 (-591 (-807))) (-5 *4 (-591 (-854))) (-5 *1 (-445)))) (-3356 (*1 *1 *2 *3 *3 *4 *5) (-12 (-5 *2 (-591 (-591 (-876 (-205))))) (-5 *3 (-591 (-807))) (-5 *4 (-591 (-854))) (-5 *5 (-591 (-242))) (-5 *1 (-445)))) (-2007 (*1 *2 *1) (-12 (-5 *2 (-591 (-591 (-876 (-205))))) (-5 *1 (-445)))) (-2019 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-445)))) (-4223 (*1 *2 *1) (-12 (-5 *2 (-591 (-1013 (-357)))) (-5 *1 (-445)))) (-4223 (*1 *2 *1 *2) (-12 (-5 *2 (-591 (-1013 (-357)))) (-5 *1 (-445)))) (-3331 (*1 *2 *1) (-12 (-5 *2 (-591 (-357))) (-5 *1 (-445)))) (-3331 (*1 *2 *1 *2) (-12 (-5 *2 (-591 (-357))) (-5 *1 (-445)))) (-2705 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-591 (-876 (-205)))) (-5 *4 (-807)) (-5 *5 (-854)) (-5 *2 (-1176)) (-5 *1 (-445)))) (-2705 (*1 *2 *1 *3) (-12 (-5 *3 (-876 (-205))) (-5 *2 (-1176)) (-5 *1 (-445)))) (-2705 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-876 (-205))) (-5 *4 (-807)) (-5 *5 (-854)) (-5 *2 (-1176)) (-5 *1 (-445)))) (-2561 (*1 *2 *1 *3) (-12 (-5 *3 (-876 (-205))) (-5 *2 (-1176)) (-5 *1 (-445)))) (-3643 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-876 (-205))) (-5 *4 (-807)) (-5 *2 (-1176)) (-5 *1 (-445)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-591 (-591 (-876 (-205))))) (-5 *1 (-445)))) (-3849 (*1 *2 *2 *3) (-12 (-5 *2 (-591 (-591 (-876 (-205))))) (-5 *3 (-591 (-807))) (-5 *1 (-445)))) (-1935 (*1 *2 *3) (-12 (-5 *3 (-591 (-591 (-876 (-205))))) (-5 *2 (-591 (-205))) (-5 *1 (-445)))))
+(-13 (-1018) (-10 -8 (-15 -2114 ($)) (-15 -3356 ($ $)) (-15 -3356 ($ (-591 (-591 (-876 (-205)))))) (-15 -3356 ($ (-591 (-591 (-876 (-205)))) (-591 (-807)) (-591 (-807)) (-591 (-854)))) (-15 -3356 ($ (-591 (-591 (-876 (-205)))) (-591 (-807)) (-591 (-807)) (-591 (-854)) (-591 (-242)))) (-15 -2007 ((-591 (-591 (-876 (-205)))) $)) (-15 -2019 ((-525) $)) (-15 -4223 ((-591 (-1013 (-357))) $)) (-15 -4223 ((-591 (-1013 (-357))) $ (-591 (-1013 (-357))))) (-15 -3331 ((-591 (-357)) $)) (-15 -3331 ((-591 (-357)) $ (-591 (-357)))) (-15 -2705 ((-1176) $ (-591 (-876 (-205))) (-807) (-807) (-854))) (-15 -2705 ((-1176) $ (-876 (-205)))) (-15 -2705 ((-1176) $ (-876 (-205)) (-807) (-807) (-854))) (-15 -2561 ((-1176) $ (-876 (-205)))) (-15 -3643 ((-1176) $ (-876 (-205)) (-807))) (-15 -3022 ($ (-591 (-591 (-876 (-205)))))) (-15 -3022 ((-796) $)) (-15 -3849 ((-591 (-591 (-876 (-205)))) (-591 (-591 (-876 (-205)))) (-591 (-807)))) (-15 -1935 ((-591 (-205)) (-591 (-591 (-876 (-205))))))))
+((-4164 (($ $) NIL) (($ $ $) 11)))
+(((-446 |#1| |#2| |#3|) (-10 -8 (-15 -4164 (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|))) (-447 |#2| |#3|) (-160) (-23)) (T -446))
+NIL
+(-10 -8 (-15 -4164 (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-1316 ((|#2| $) 19)) (-3022 (((-796) $) 11)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 15) (($ $ $) 13)) (-4156 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
+(((-447 |#1| |#2|) (-131) (-160) (-23)) (T -447))
+((-1316 (*1 *2 *1) (-12 (-4 *1 (-447 *3 *2)) (-4 *3 (-160)) (-4 *2 (-23)))) (-4191 (*1 *1) (-12 (-4 *1 (-447 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-447 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-447 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23)))) (-4164 (*1 *1 *1) (-12 (-4 *1 (-447 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23)))) (-4156 (*1 *1 *1 *1) (-12 (-4 *1 (-447 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23)))) (-4164 (*1 *1 *1 *1) (-12 (-4 *1 (-447 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23)))))
+(-13 (-1018) (-10 -8 (-15 -1316 (|t#2| $)) (-15 (-4191) ($) -2058) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -4164 ($ $)) (-15 -4156 ($ $ $)) (-15 -4164 ($ $ $))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-1874 (((-3 (-591 (-457 |#1| |#2|)) "failed") (-591 (-457 |#1| |#2|)) (-591 (-798 |#1|))) 93)) (-3067 (((-591 (-591 (-227 |#1| |#2|))) (-591 (-227 |#1| |#2|)) (-591 (-798 |#1|))) 91)) (-3981 (((-2 (|:| |dpolys| (-591 (-227 |#1| |#2|))) (|:| |coords| (-591 (-525)))) (-591 (-227 |#1| |#2|)) (-591 (-798 |#1|))) 61)))
+(((-448 |#1| |#2| |#3|) (-10 -7 (-15 -3067 ((-591 (-591 (-227 |#1| |#2|))) (-591 (-227 |#1| |#2|)) (-591 (-798 |#1|)))) (-15 -1874 ((-3 (-591 (-457 |#1| |#2|)) "failed") (-591 (-457 |#1| |#2|)) (-591 (-798 |#1|)))) (-15 -3981 ((-2 (|:| |dpolys| (-591 (-227 |#1| |#2|))) (|:| |coords| (-591 (-525)))) (-591 (-227 |#1| |#2|)) (-591 (-798 |#1|))))) (-591 (-1089)) (-429) (-429)) (T -448))
+((-3981 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-798 *5))) (-14 *5 (-591 (-1089))) (-4 *6 (-429)) (-5 *2 (-2 (|:| |dpolys| (-591 (-227 *5 *6))) (|:| |coords| (-591 (-525))))) (-5 *1 (-448 *5 *6 *7)) (-5 *3 (-591 (-227 *5 *6))) (-4 *7 (-429)))) (-1874 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-591 (-457 *4 *5))) (-5 *3 (-591 (-798 *4))) (-14 *4 (-591 (-1089))) (-4 *5 (-429)) (-5 *1 (-448 *4 *5 *6)) (-4 *6 (-429)))) (-3067 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-798 *5))) (-14 *5 (-591 (-1089))) (-4 *6 (-429)) (-5 *2 (-591 (-591 (-227 *5 *6)))) (-5 *1 (-448 *5 *6 *7)) (-5 *3 (-591 (-227 *5 *6))) (-4 *7 (-429)))))
+(-10 -7 (-15 -3067 ((-591 (-591 (-227 |#1| |#2|))) (-591 (-227 |#1| |#2|)) (-591 (-798 |#1|)))) (-15 -1874 ((-3 (-591 (-457 |#1| |#2|)) "failed") (-591 (-457 |#1| |#2|)) (-591 (-798 |#1|)))) (-15 -3981 ((-2 (|:| |dpolys| (-591 (-227 |#1| |#2|))) (|:| |coords| (-591 (-525)))) (-591 (-227 |#1| |#2|)) (-591 (-798 |#1|)))))
+((-4163 (((-3 $ "failed") $) 11)) (-3228 (($ $ $) 20)) (-3619 (($ $ $) 21)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) 14)) (-4173 (($ $ $) 9)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) 19)))
+(((-449 |#1|) (-10 -8 (-15 -3619 (|#1| |#1| |#1|)) (-15 -3228 (|#1| |#1| |#1|)) (-15 -3710 (|#1| |#1| (-525))) (-15 ** (|#1| |#1| (-525))) (-15 -4173 (|#1| |#1| |#1|)) (-15 -4163 ((-3 |#1| "failed") |#1|)) (-15 -3710 (|#1| |#1| (-712))) (-15 ** (|#1| |#1| (-712))) (-15 -3710 (|#1| |#1| (-854))) (-15 ** (|#1| |#1| (-854)))) (-450)) (T -449))
+NIL
+(-10 -8 (-15 -3619 (|#1| |#1| |#1|)) (-15 -3228 (|#1| |#1| |#1|)) (-15 -3710 (|#1| |#1| (-525))) (-15 ** (|#1| |#1| (-525))) (-15 -4173 (|#1| |#1| |#1|)) (-15 -4163 ((-3 |#1| "failed") |#1|)) (-15 -3710 (|#1| |#1| (-712))) (-15 ** (|#1| |#1| (-712))) (-15 -3710 (|#1| |#1| (-854))) (-15 ** (|#1| |#1| (-854))))
+((-3008 (((-108) $ $) 7)) (-3798 (($) 20 T CONST)) (-4163 (((-3 $ "failed") $) 16)) (-2824 (((-108) $) 19)) (-2339 (((-1072) $) 9)) (-1622 (($ $) 27)) (-2047 (((-1036) $) 10)) (-3228 (($ $ $) 23)) (-3619 (($ $ $) 22)) (-3022 (((-796) $) 11)) (-3710 (($ $ (-854)) 13) (($ $ (-712)) 17) (($ $ (-525)) 24)) (-4197 (($) 21 T CONST)) (-4096 (((-108) $ $) 6)) (-4173 (($ $ $) 26)) (** (($ $ (-854)) 14) (($ $ (-712)) 18) (($ $ (-525)) 25)) (* (($ $ $) 15)))
+(((-450) (-131)) (T -450))
+((-1622 (*1 *1 *1) (-4 *1 (-450))) (-4173 (*1 *1 *1 *1) (-4 *1 (-450))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-450)) (-5 *2 (-525)))) (-3710 (*1 *1 *1 *2) (-12 (-4 *1 (-450)) (-5 *2 (-525)))) (-3228 (*1 *1 *1 *1) (-4 *1 (-450))) (-3619 (*1 *1 *1 *1) (-4 *1 (-450))))
+(-13 (-668) (-10 -8 (-15 -1622 ($ $)) (-15 -4173 ($ $ $)) (-15 ** ($ $ (-525))) (-15 -3710 ($ $ (-525))) (-6 -4247) (-15 -3228 ($ $ $)) (-15 -3619 ($ $ $))))
+(((-97) . T) ((-565 (-796)) . T) ((-668) . T) ((-1030) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1507 (((-591 (-1003)) $) NIL)) (-2037 (((-1089) $) 17)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-2121 (($ $ (-385 (-525))) NIL) (($ $ (-385 (-525)) (-385 (-525))) NIL)) (-1631 (((-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#1|))) $) NIL)) (-1987 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL (|has| |#1| (-341)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-341)))) (-1361 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1947 (((-108) $ $) NIL (|has| |#1| (-341)))) (-1431 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3682 (($ (-712) (-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#1|)))) NIL)) (-1719 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) NIL T CONST)) (-2129 (($ $ $) NIL (|has| |#1| (-341)))) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-2110 (($ $ $) NIL (|has| |#1| (-341)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#1| (-341)))) (-2744 (((-108) $) NIL (|has| |#1| (-341)))) (-3123 (((-108) $) NIL)) (-1784 (($) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3873 (((-385 (-525)) $) NIL) (((-385 (-525)) $ (-385 (-525))) NIL)) (-2824 (((-108) $) NIL)) (-3956 (($ $ (-525)) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3111 (($ $ (-854)) NIL) (($ $ (-385 (-525))) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-385 (-525))) NIL) (($ $ (-1003) (-385 (-525))) NIL) (($ $ (-591 (-1003)) (-591 (-385 (-525)))) NIL)) (-1340 (($ (-1 |#1| |#1|) $) 22)) (-1488 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL (|has| |#1| (-341)))) (-4141 (($ $) 26 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089)) 33 (-3321 (-12 (|has| |#1| (-15 -4141 (|#1| |#1| (-1089)))) (|has| |#1| (-15 -1507 ((-591 (-1089)) |#1|))) (|has| |#1| (-37 (-385 (-525))))) (-12 (|has| |#1| (-29 (-525))) (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-891)) (|has| |#1| (-1111))))) (($ $ (-1167 |#2|)) 27 (|has| |#1| (-37 (-385 (-525)))))) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-341)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-1348 (((-396 $) $) NIL (|has| |#1| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2784 (($ $ (-385 (-525))) NIL)) (-2089 (((-3 $ "failed") $ $) NIL (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-1409 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-4132 (((-1070 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-385 (-525))))))) (-1712 (((-712) $) NIL (|has| |#1| (-341)))) (-3164 ((|#1| $ (-385 (-525))) NIL) (($ $ $) NIL (|has| (-385 (-525)) (-1030)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) 25 (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $) 13 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $ (-1167 |#2|)) 15)) (-1316 (((-385 (-525)) $) NIL)) (-1502 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3571 (($ $) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#1|) NIL (|has| |#1| (-160))) (($ (-1167 |#2|)) NIL) (($ (-1156 |#1| |#2| |#3|)) 9) (($ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $) NIL (|has| |#1| (-517)))) (-2560 ((|#1| $ (-385 (-525))) NIL)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) NIL)) (-1682 ((|#1| $) 18)) (-1563 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1515 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2176 ((|#1| $ (-385 (-525))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-385 (-525))))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3277 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341)))) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) 24)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 23) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))))
+(((-451 |#1| |#2| |#3|) (-13 (-1152 |#1|) (-10 -8 (-15 -3022 ($ (-1167 |#2|))) (-15 -3022 ($ (-1156 |#1| |#2| |#3|))) (-15 -3266 ($ $ (-1167 |#2|))) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1167 |#2|))) |%noBranch|))) (-975) (-1089) |#1|) (T -451))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-451 *3 *4 *5)) (-4 *3 (-975)) (-14 *5 *3))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-1156 *3 *4 *5)) (-4 *3 (-975)) (-14 *4 (-1089)) (-14 *5 *3) (-5 *1 (-451 *3 *4 *5)))) (-3266 (*1 *1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-451 *3 *4 *5)) (-4 *3 (-975)) (-14 *5 *3))) (-4141 (*1 *1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-451 *3 *4 *5)) (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-14 *5 *3))))
+(-13 (-1152 |#1|) (-10 -8 (-15 -3022 ($ (-1167 |#2|))) (-15 -3022 ($ (-1156 |#1| |#2| |#3|))) (-15 -3266 ($ $ (-1167 |#2|))) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1167 |#2|))) |%noBranch|)))
+((-3008 (((-108) $ $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-1260 (($) NIL) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-3296 (((-1176) $ |#1| |#1|) NIL (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#2| $ |#1| |#2|) 18)) (-1797 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-2401 (((-3 |#2| "failed") |#1| $) 19)) (-3798 (($) NIL T CONST)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3901 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-3 |#2| "failed") |#1| $) 16)) (-3677 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-1227 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4250))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#2| $ |#1|) NIL)) (-3454 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-3630 ((|#1| $) NIL (|has| |#1| (-788)))) (-2552 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3468 ((|#1| $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4251))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-1542 (((-591 |#1|) $) NIL)) (-2484 (((-108) |#1| $) NIL)) (-1464 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-2470 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-2511 (((-591 |#1|) $) NIL)) (-2791 (((-108) |#1| $) NIL)) (-2047 (((-1036) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-3066 ((|#2| $) NIL (|has| |#1| (-788)))) (-2069 (((-3 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) "failed") (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL)) (-1941 (($ $ |#2|) NIL (|has| $ (-6 -4251)))) (-3631 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-1623 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 (-273 |#2|))) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3339 (((-591 |#2|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-2311 (($) NIL) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-2064 (((-712) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-712) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018)))) (((-712) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-566 (-501))))) (-3036 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-3022 (((-796) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-565 (-796))) (|has| |#2| (-565 (-796)))))) (-1870 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-4158 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-452 |#1| |#2| |#3| |#4|) (-1102 |#1| |#2|) (-1018) (-1018) (-1102 |#1| |#2|) |#2|) (T -452))
+NIL
+(-1102 |#1| |#2|)
+((-3008 (((-108) $ $) NIL)) (-3817 (((-591 (-2 (|:| -3529 $) (|:| -1976 (-591 |#4|)))) (-591 |#4|)) NIL)) (-2113 (((-591 $) (-591 |#4|)) NIL)) (-1507 (((-591 |#3|) $) NIL)) (-1430 (((-108) $) NIL)) (-3490 (((-108) $) NIL (|has| |#1| (-517)))) (-3130 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1568 ((|#4| |#4| $) NIL)) (-3327 (((-2 (|:| |under| $) (|:| -2662 $) (|:| |upper| $)) $ |#3|) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-2305 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3798 (($) NIL T CONST)) (-3382 (((-108) $) 26 (|has| |#1| (-517)))) (-2438 (((-108) $ $) NIL (|has| |#1| (-517)))) (-2055 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1964 (((-108) $) NIL (|has| |#1| (-517)))) (-2656 (((-591 |#4|) (-591 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3853 (((-591 |#4|) (-591 |#4|) $) NIL (|has| |#1| (-517)))) (-1921 (((-591 |#4|) (-591 |#4|) $) NIL (|has| |#1| (-517)))) (-1251 (((-3 $ "failed") (-591 |#4|)) NIL)) (-3528 (($ (-591 |#4|)) NIL)) (-3078 (((-3 $ "failed") $) 39)) (-2736 ((|#4| |#4| $) NIL)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018))))) (-3677 (($ |#4| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-3407 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-517)))) (-3135 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-2933 ((|#4| |#4| $) NIL)) (-1227 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4250))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4250))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2719 (((-2 (|:| -3529 (-591 |#4|)) (|:| -1976 (-591 |#4|))) $) NIL)) (-3454 (((-591 |#4|) $) 16 (|has| $ (-6 -4250)))) (-1809 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2009 ((|#3| $) 33)) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#4|) $) 17 (|has| $ (-6 -4250)))) (-2141 (((-108) |#4| $) 25 (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018))))) (-3249 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#4| |#4|) $) 21)) (-3993 (((-591 |#3|) $) NIL)) (-4174 (((-108) |#3| $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-3708 (((-3 |#4| "failed") $) 37)) (-3280 (((-591 |#4|) $) NIL)) (-3196 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-4066 ((|#4| |#4| $) NIL)) (-2154 (((-108) $ $) NIL)) (-2934 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-517)))) (-2115 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2731 ((|#4| |#4| $) NIL)) (-2047 (((-1036) $) NIL)) (-3066 (((-3 |#4| "failed") $) 35)) (-2069 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-1554 (((-3 $ "failed") $ |#4|) 47)) (-2784 (($ $ |#4|) NIL)) (-1623 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 |#4|) (-591 |#4|)) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-273 |#4|)) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-591 (-273 |#4|))) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) 15)) (-3209 (($) 13)) (-1316 (((-712) $) NIL)) (-2064 (((-712) |#4| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018)))) (((-712) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) 12)) (-1408 (((-501) $) NIL (|has| |#4| (-566 (-501))))) (-3036 (($ (-591 |#4|)) 20)) (-3134 (($ $ |#3|) 42)) (-3443 (($ $ |#3|) 44)) (-2487 (($ $) NIL)) (-3010 (($ $ |#3|) NIL)) (-3022 (((-796) $) 31) (((-591 |#4|) $) 40)) (-3223 (((-712) $) NIL (|has| |#3| (-346)))) (-2122 (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2165 (((-108) $ (-1 (-108) |#4| (-591 |#4|))) NIL)) (-4158 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-3872 (((-591 |#3|) $) NIL)) (-1884 (((-108) |#3| $) NIL)) (-4096 (((-108) $ $) NIL)) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-453 |#1| |#2| |#3| |#4|) (-1119 |#1| |#2| |#3| |#4|) (-517) (-734) (-788) (-989 |#1| |#2| |#3|)) (T -453))
+NIL
+(-1119 |#1| |#2| |#3| |#4|)
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL)) (-3528 (((-525) $) NIL) (((-385 (-525)) $) NIL)) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-1784 (($) 18)) (-2824 (((-108) $) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-1408 (((-357) $) 22) (((-205) $) 25) (((-385 (-1085 (-525))) $) 19) (((-501) $) 52)) (-3022 (((-796) $) 50) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) (((-205) $) 24) (((-357) $) 21)) (-2128 (((-712)) NIL)) (-2495 (((-108) $ $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) 36 T CONST)) (-4197 (($) 11 T CONST)) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL)))
+(((-454) (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))) (-951) (-565 (-205)) (-565 (-357)) (-566 (-385 (-1085 (-525)))) (-566 (-501)) (-10 -8 (-15 -1784 ($))))) (T -454))
+((-1784 (*1 *1) (-5 *1 (-454))))
+(-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))) (-951) (-565 (-205)) (-565 (-357)) (-566 (-385 (-1085 (-525)))) (-566 (-501)) (-10 -8 (-15 -1784 ($))))
+((-3008 (((-108) $ $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-1260 (($) NIL) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-3296 (((-1176) $ |#1| |#1|) NIL (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#2| $ |#1| |#2|) 16)) (-1797 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-2401 (((-3 |#2| "failed") |#1| $) 20)) (-3798 (($) NIL T CONST)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3901 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-3 |#2| "failed") |#1| $) 18)) (-3677 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-1227 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4250))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#2| $ |#1|) NIL)) (-3454 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-3630 ((|#1| $) NIL (|has| |#1| (-788)))) (-2552 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3468 ((|#1| $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4251))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-1542 (((-591 |#1|) $) 13)) (-2484 (((-108) |#1| $) NIL)) (-1464 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-2470 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-2511 (((-591 |#1|) $) NIL)) (-2791 (((-108) |#1| $) NIL)) (-2047 (((-1036) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-3066 ((|#2| $) NIL (|has| |#1| (-788)))) (-2069 (((-3 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) "failed") (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL)) (-1941 (($ $ |#2|) NIL (|has| $ (-6 -4251)))) (-3631 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-1623 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 (-273 |#2|))) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3339 (((-591 |#2|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) 19)) (-3164 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2311 (($) NIL) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-2064 (((-712) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-712) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018)))) (((-712) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-566 (-501))))) (-3036 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-3022 (((-796) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-565 (-796))) (|has| |#2| (-565 (-796)))))) (-1870 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-4158 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 11 (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-4045 (((-712) $) 15 (|has| $ (-6 -4250)))))
+(((-455 |#1| |#2| |#3|) (-13 (-1102 |#1| |#2|) (-10 -7 (-6 -4250))) (-1018) (-1018) (-1072)) (T -455))
+NIL
+(-13 (-1102 |#1| |#2|) (-10 -7 (-6 -4250)))
+((-4064 (((-525) (-525) (-525)) 7)) (-3863 (((-108) (-525) (-525) (-525) (-525)) 11)) (-4070 (((-1171 (-591 (-525))) (-712) (-712)) 23)))
+(((-456) (-10 -7 (-15 -4064 ((-525) (-525) (-525))) (-15 -3863 ((-108) (-525) (-525) (-525) (-525))) (-15 -4070 ((-1171 (-591 (-525))) (-712) (-712))))) (T -456))
+((-4070 (*1 *2 *3 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1171 (-591 (-525)))) (-5 *1 (-456)))) (-3863 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-525)) (-5 *2 (-108)) (-5 *1 (-456)))) (-4064 (*1 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-456)))))
+(-10 -7 (-15 -4064 ((-525) (-525) (-525))) (-15 -3863 ((-108) (-525) (-525) (-525) (-525))) (-15 -4070 ((-1171 (-591 (-525))) (-712) (-712))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1507 (((-591 (-798 |#1|)) $) NIL)) (-1312 (((-1085 $) $ (-798 |#1|)) NIL) (((-1085 |#2|) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#2| (-517)))) (-3706 (($ $) NIL (|has| |#2| (-517)))) (-1715 (((-108) $) NIL (|has| |#2| (-517)))) (-4090 (((-712) $) NIL) (((-712) $ (-591 (-798 |#1|))) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1291 (($ $) NIL (|has| |#2| (-429)))) (-2827 (((-396 $) $) NIL (|has| |#2| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#2| "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#2| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) NIL (|has| |#2| (-966 (-525)))) (((-3 (-798 |#1|) "failed") $) NIL)) (-3528 ((|#2| $) NIL) (((-385 (-525)) $) NIL (|has| |#2| (-966 (-385 (-525))))) (((-525) $) NIL (|has| |#2| (-966 (-525)))) (((-798 |#1|) $) NIL)) (-2805 (($ $ $ (-798 |#1|)) NIL (|has| |#2| (-160)))) (-1766 (($ $ (-591 (-525))) NIL)) (-1710 (($ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) NIL) (((-631 |#2|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3208 (($ $) NIL (|has| |#2| (-429))) (($ $ (-798 |#1|)) NIL (|has| |#2| (-429)))) (-1695 (((-591 $) $) NIL)) (-2744 (((-108) $) NIL (|has| |#2| (-842)))) (-2056 (($ $ |#2| (-458 (-4045 |#1|) (-712)) $) NIL)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| (-798 |#1|) (-819 (-357))) (|has| |#2| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| (-798 |#1|) (-819 (-525))) (|has| |#2| (-819 (-525)))))) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) NIL)) (-1493 (($ (-1085 |#2|) (-798 |#1|)) NIL) (($ (-1085 $) (-798 |#1|)) NIL)) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-1480 (($ |#2| (-458 (-4045 |#1|) (-712))) NIL) (($ $ (-798 |#1|) (-712)) NIL) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ (-798 |#1|)) NIL)) (-2624 (((-458 (-4045 |#1|) (-712)) $) NIL) (((-712) $ (-798 |#1|)) NIL) (((-591 (-712)) $ (-591 (-798 |#1|))) NIL)) (-3741 (($ $ $) NIL (|has| |#2| (-788)))) (-2478 (($ $ $) NIL (|has| |#2| (-788)))) (-4015 (($ (-1 (-458 (-4045 |#1|) (-712)) (-458 (-4045 |#1|) (-712))) $) NIL)) (-1340 (($ (-1 |#2| |#2|) $) NIL)) (-2254 (((-3 (-798 |#1|) "failed") $) NIL)) (-1661 (($ $) NIL)) (-1678 ((|#2| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#2| (-429))) (($ $ $) NIL (|has| |#2| (-429)))) (-2339 (((-1072) $) NIL)) (-3376 (((-3 (-591 $) "failed") $) NIL)) (-2010 (((-3 (-591 $) "failed") $) NIL)) (-2292 (((-3 (-2 (|:| |var| (-798 |#1|)) (|:| -2008 (-712))) "failed") $) NIL)) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) NIL)) (-1646 ((|#2| $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#2| (-429)))) (-1399 (($ (-591 $)) NIL (|has| |#2| (-429))) (($ $ $) NIL (|has| |#2| (-429)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1348 (((-396 $) $) NIL (|has| |#2| (-842)))) (-2089 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-517))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-517)))) (-4132 (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-798 |#1|) |#2|) NIL) (($ $ (-591 (-798 |#1|)) (-591 |#2|)) NIL) (($ $ (-798 |#1|) $) NIL) (($ $ (-591 (-798 |#1|)) (-591 $)) NIL)) (-2976 (($ $ (-798 |#1|)) NIL (|has| |#2| (-160)))) (-3266 (($ $ (-798 |#1|)) NIL) (($ $ (-591 (-798 |#1|))) NIL) (($ $ (-798 |#1|) (-712)) NIL) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-1316 (((-458 (-4045 |#1|) (-712)) $) NIL) (((-712) $ (-798 |#1|)) NIL) (((-591 (-712)) $ (-591 (-798 |#1|))) NIL)) (-1408 (((-825 (-357)) $) NIL (-12 (|has| (-798 |#1|) (-566 (-825 (-357)))) (|has| |#2| (-566 (-825 (-357)))))) (((-825 (-525)) $) NIL (-12 (|has| (-798 |#1|) (-566 (-825 (-525)))) (|has| |#2| (-566 (-825 (-525)))))) (((-501) $) NIL (-12 (|has| (-798 |#1|) (-566 (-501))) (|has| |#2| (-566 (-501)))))) (-2668 ((|#2| $) NIL (|has| |#2| (-429))) (($ $ (-798 |#1|)) NIL (|has| |#2| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#2| (-842))))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#2|) NIL) (($ (-798 |#1|)) NIL) (($ (-385 (-525))) NIL (-3321 (|has| |#2| (-37 (-385 (-525)))) (|has| |#2| (-966 (-385 (-525)))))) (($ $) NIL (|has| |#2| (-517)))) (-3654 (((-591 |#2|) $) NIL)) (-2560 ((|#2| $ (-458 (-4045 |#1|) (-712))) NIL) (($ $ (-798 |#1|) (-712)) NIL) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#2| (-842))) (|has| |#2| (-136))))) (-2128 (((-712)) NIL)) (-1698 (($ $ $ (-712)) NIL (|has| |#2| (-160)))) (-2495 (((-108) $ $) NIL (|has| |#2| (-517)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ (-798 |#1|)) NIL) (($ $ (-591 (-798 |#1|))) NIL) (($ $ (-798 |#1|) (-712)) NIL) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-4135 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4173 (($ $ |#2|) NIL (|has| |#2| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL (|has| |#2| (-37 (-385 (-525))))) (($ (-385 (-525)) $) NIL (|has| |#2| (-37 (-385 (-525))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-457 |#1| |#2|) (-13 (-882 |#2| (-458 (-4045 |#1|) (-712)) (-798 |#1|)) (-10 -8 (-15 -1766 ($ $ (-591 (-525)))))) (-591 (-1089)) (-975)) (T -457))
+((-1766 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-457 *3 *4)) (-14 *3 (-591 (-1089))) (-4 *4 (-975)))))
+(-13 (-882 |#2| (-458 (-4045 |#1|) (-712)) (-798 |#1|)) (-10 -8 (-15 -1766 ($ $ (-591 (-525))))))
+((-3008 (((-108) $ $) NIL (|has| |#2| (-1018)))) (-1800 (((-108) $) NIL (|has| |#2| (-126)))) (-2092 (($ (-854)) NIL (|has| |#2| (-975)))) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-2593 (($ $ $) NIL (|has| |#2| (-734)))) (-2157 (((-3 $ "failed") $ $) NIL (|has| |#2| (-126)))) (-3891 (((-108) $ (-712)) NIL)) (-3032 (((-712)) NIL (|has| |#2| (-346)))) (-3329 (((-525) $) NIL (|has| |#2| (-786)))) (-3186 ((|#2| $ (-525) |#2|) NIL (|has| $ (-6 -4251)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL (-12 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018)))) (((-3 (-385 (-525)) "failed") $) NIL (-12 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1018)))) (-3528 (((-525) $) NIL (-12 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018)))) (((-385 (-525)) $) NIL (-12 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018)))) ((|#2| $) NIL (|has| |#2| (-1018)))) (-3305 (((-631 (-525)) (-631 $)) NIL (-12 (|has| |#2| (-587 (-525))) (|has| |#2| (-975)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (-12 (|has| |#2| (-587 (-525))) (|has| |#2| (-975)))) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) NIL (|has| |#2| (-975))) (((-631 |#2|) (-631 $)) NIL (|has| |#2| (-975)))) (-4163 (((-3 $ "failed") $) NIL (|has| |#2| (-975)))) (-3377 (($) NIL (|has| |#2| (-346)))) (-3255 ((|#2| $ (-525) |#2|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#2| $ (-525)) 11)) (-2134 (((-108) $) NIL (|has| |#2| (-786)))) (-3454 (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2824 (((-108) $) NIL (|has| |#2| (-975)))) (-2732 (((-108) $) NIL (|has| |#2| (-786)))) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) NIL (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-2552 (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-3249 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#2| |#2|) $) NIL)) (-3016 (((-854) $) NIL (|has| |#2| (-346)))) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#2| (-1018)))) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2226 (($ (-854)) NIL (|has| |#2| (-346)))) (-2047 (((-1036) $) NIL (|has| |#2| (-1018)))) (-3066 ((|#2| $) NIL (|has| (-525) (-788)))) (-1941 (($ $ |#2|) NIL (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#2|))) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3339 (((-591 |#2|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#2| $ (-525) |#2|) NIL) ((|#2| $ (-525)) NIL)) (-2109 ((|#2| $ $) NIL (|has| |#2| (-975)))) (-1395 (($ (-1171 |#2|)) NIL)) (-4224 (((-128)) NIL (|has| |#2| (-341)))) (-3266 (($ $) NIL (-12 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-712)) NIL (-12 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-1089)) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1 |#2| |#2|) (-712)) NIL (|has| |#2| (-975))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-975)))) (-2064 (((-712) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250))) (((-712) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3199 (($ $) NIL)) (-3022 (((-1171 |#2|) $) NIL) (($ (-525)) NIL (-3321 (-12 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018))) (|has| |#2| (-975)))) (($ (-385 (-525))) NIL (-12 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018)))) (($ |#2|) NIL (|has| |#2| (-1018))) (((-796) $) NIL (|has| |#2| (-565 (-796))))) (-2128 (((-712)) NIL (|has| |#2| (-975)))) (-4158 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-1539 (($ $) NIL (|has| |#2| (-786)))) (-3710 (($ $ (-712)) NIL (|has| |#2| (-975))) (($ $ (-854)) NIL (|has| |#2| (-975)))) (-4191 (($) NIL (|has| |#2| (-126)) CONST)) (-4197 (($) NIL (|has| |#2| (-975)) CONST)) (-4196 (($ $) NIL (-12 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-712)) NIL (-12 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-1089)) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1 |#2| |#2|) (-712)) NIL (|has| |#2| (-975))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-975)))) (-4135 (((-108) $ $) NIL (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-4119 (((-108) $ $) NIL (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-4096 (((-108) $ $) NIL (|has| |#2| (-1018)))) (-4126 (((-108) $ $) NIL (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-4112 (((-108) $ $) 15 (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-4173 (($ $ |#2|) NIL (|has| |#2| (-341)))) (-4164 (($ $ $) NIL (|has| |#2| (-975))) (($ $) NIL (|has| |#2| (-975)))) (-4156 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-712)) NIL (|has| |#2| (-975))) (($ $ (-854)) NIL (|has| |#2| (-975)))) (* (($ $ $) NIL (|has| |#2| (-975))) (($ (-525) $) NIL (|has| |#2| (-975))) (($ $ |#2|) NIL (|has| |#2| (-668))) (($ |#2| $) NIL (|has| |#2| (-668))) (($ (-712) $) NIL (|has| |#2| (-126))) (($ (-854) $) NIL (|has| |#2| (-25)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-458 |#1| |#2|) (-218 |#1| |#2|) (-712) (-734)) (T -458))
+NIL
+(-218 |#1| |#2|)
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3891 (((-108) $ (-712)) NIL)) (-3798 (($) NIL T CONST)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-2921 (($ $ $) 32)) (-2131 (($ $ $) 31)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-2478 ((|#1| $) 26)) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-1464 ((|#1| $) 27)) (-2470 (($ |#1| $) 10)) (-3330 (($ (-591 |#1|)) 12)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-3631 ((|#1| $) 23)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) 9)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-1870 (($ (-591 |#1|)) 29)) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4045 (((-712) $) 21 (|has| $ (-6 -4250)))))
+(((-459 |#1|) (-13 (-900 |#1|) (-10 -8 (-15 -3330 ($ (-591 |#1|))))) (-788)) (T -459))
+((-3330 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-788)) (-5 *1 (-459 *3)))))
+(-13 (-900 |#1|) (-10 -8 (-15 -3330 ($ (-591 |#1|)))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1227 (($ $) 69)) (-3406 (((-108) $) NIL)) (-2339 (((-1072) $) NIL)) (-1536 (((-391 |#2| (-385 |#2|) |#3| |#4|) $) 44)) (-2047 (((-1036) $) NIL)) (-3857 (((-3 |#4| "failed") $) 107)) (-1705 (($ (-391 |#2| (-385 |#2|) |#3| |#4|)) 76) (($ |#4|) 32) (($ |#1| |#1|) 115) (($ |#1| |#1| (-525)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 127)) (-3702 (((-2 (|:| -1247 (-391 |#2| (-385 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 46)) (-3022 (((-796) $) 102)) (-4191 (($) 33 T CONST)) (-4096 (((-108) $ $) 109)) (-4164 (($ $) 72) (($ $ $) NIL)) (-4156 (($ $ $) 70)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 73)))
+(((-460 |#1| |#2| |#3| |#4|) (-313 |#1| |#2| |#3| |#4|) (-341) (-1147 |#1|) (-1147 (-385 |#2|)) (-320 |#1| |#2| |#3|)) (T -460))
+NIL
+(-313 |#1| |#2| |#3| |#4|)
+((-3138 (((-525) (-591 (-525))) 30)) (-3233 ((|#1| (-591 |#1|)) 56)) (-2646 (((-591 |#1|) (-591 |#1|)) 57)) (-2920 (((-591 |#1|) (-591 |#1|)) 59)) (-1399 ((|#1| (-591 |#1|)) 58)) (-2668 (((-591 (-525)) (-591 |#1|)) 33)))
+(((-461 |#1|) (-10 -7 (-15 -1399 (|#1| (-591 |#1|))) (-15 -3233 (|#1| (-591 |#1|))) (-15 -2920 ((-591 |#1|) (-591 |#1|))) (-15 -2646 ((-591 |#1|) (-591 |#1|))) (-15 -2668 ((-591 (-525)) (-591 |#1|))) (-15 -3138 ((-525) (-591 (-525))))) (-1147 (-525))) (T -461))
+((-3138 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-525)) (-5 *1 (-461 *4)) (-4 *4 (-1147 *2)))) (-2668 (*1 *2 *3) (-12 (-5 *3 (-591 *4)) (-4 *4 (-1147 (-525))) (-5 *2 (-591 (-525))) (-5 *1 (-461 *4)))) (-2646 (*1 *2 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1147 (-525))) (-5 *1 (-461 *3)))) (-2920 (*1 *2 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1147 (-525))) (-5 *1 (-461 *3)))) (-3233 (*1 *2 *3) (-12 (-5 *3 (-591 *2)) (-5 *1 (-461 *2)) (-4 *2 (-1147 (-525))))) (-1399 (*1 *2 *3) (-12 (-5 *3 (-591 *2)) (-5 *1 (-461 *2)) (-4 *2 (-1147 (-525))))))
+(-10 -7 (-15 -1399 (|#1| (-591 |#1|))) (-15 -3233 (|#1| (-591 |#1|))) (-15 -2920 ((-591 |#1|) (-591 |#1|))) (-15 -2646 ((-591 |#1|) (-591 |#1|))) (-15 -2668 ((-591 (-525)) (-591 |#1|))) (-15 -3138 ((-525) (-591 (-525)))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1508 (((-525) $) NIL (|has| (-525) (-286)))) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1947 (((-108) $ $) NIL)) (-3329 (((-525) $) NIL (|has| (-525) (-761)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL) (((-3 (-1089) "failed") $) NIL (|has| (-525) (-966 (-1089)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| (-525) (-966 (-525)))) (((-3 (-525) "failed") $) NIL (|has| (-525) (-966 (-525))))) (-3528 (((-525) $) NIL) (((-1089) $) NIL (|has| (-525) (-966 (-1089)))) (((-385 (-525)) $) NIL (|has| (-525) (-966 (-525)))) (((-525) $) NIL (|has| (-525) (-966 (-525))))) (-2129 (($ $ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| (-525) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| (-525) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL) (((-631 (-525)) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) NIL (|has| (-525) (-510)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2134 (((-108) $) NIL (|has| (-525) (-761)))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (|has| (-525) (-819 (-525)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (|has| (-525) (-819 (-357))))) (-2824 (((-108) $) NIL)) (-2368 (($ $) NIL)) (-1738 (((-525) $) NIL)) (-2085 (((-3 $ "failed") $) NIL (|has| (-525) (-1065)))) (-2732 (((-108) $) NIL (|has| (-525) (-761)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3741 (($ $ $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| (-525) (-788)))) (-1340 (($ (-1 (-525) (-525)) $) NIL)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| (-525) (-1065)) CONST)) (-2126 (($ (-385 (-525))) 9)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3093 (($ $) NIL (|has| (-525) (-286))) (((-385 (-525)) $) NIL)) (-2662 (((-525) $) NIL (|has| (-525) (-510)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-4132 (($ $ (-591 (-525)) (-591 (-525))) NIL (|has| (-525) (-288 (-525)))) (($ $ (-525) (-525)) NIL (|has| (-525) (-288 (-525)))) (($ $ (-273 (-525))) NIL (|has| (-525) (-288 (-525)))) (($ $ (-591 (-273 (-525)))) NIL (|has| (-525) (-288 (-525)))) (($ $ (-591 (-1089)) (-591 (-525))) NIL (|has| (-525) (-486 (-1089) (-525)))) (($ $ (-1089) (-525)) NIL (|has| (-525) (-486 (-1089) (-525))))) (-1712 (((-712) $) NIL)) (-3164 (($ $ (-525)) NIL (|has| (-525) (-265 (-525) (-525))))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3266 (($ $) NIL (|has| (-525) (-213))) (($ $ (-712)) NIL (|has| (-525) (-213))) (($ $ (-1089)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1 (-525) (-525)) (-712)) NIL) (($ $ (-1 (-525) (-525))) NIL)) (-2966 (($ $) NIL)) (-1754 (((-525) $) NIL)) (-1408 (((-825 (-525)) $) NIL (|has| (-525) (-566 (-825 (-525))))) (((-825 (-357)) $) NIL (|has| (-525) (-566 (-825 (-357))))) (((-501) $) NIL (|has| (-525) (-566 (-501)))) (((-357) $) NIL (|has| (-525) (-951))) (((-205) $) NIL (|has| (-525) (-951)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| (-525) (-842))))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) 8) (($ (-525)) NIL) (($ (-1089)) NIL (|has| (-525) (-966 (-1089)))) (((-385 (-525)) $) NIL) (((-934 16) $) 10)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| (-525) (-842))) (|has| (-525) (-136))))) (-2128 (((-712)) NIL)) (-3862 (((-525) $) NIL (|has| (-525) (-510)))) (-2495 (((-108) $ $) NIL)) (-1539 (($ $) NIL (|has| (-525) (-761)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $) NIL (|has| (-525) (-213))) (($ $ (-712)) NIL (|has| (-525) (-213))) (($ $ (-1089)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1 (-525) (-525)) (-712)) NIL) (($ $ (-1 (-525) (-525))) NIL)) (-4135 (((-108) $ $) NIL (|has| (-525) (-788)))) (-4119 (((-108) $ $) NIL (|has| (-525) (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| (-525) (-788)))) (-4112 (((-108) $ $) NIL (|has| (-525) (-788)))) (-4173 (($ $ $) NIL) (($ (-525) (-525)) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ (-525) $) NIL) (($ $ (-525)) NIL)))
+(((-462) (-13 (-923 (-525)) (-10 -8 (-15 -3022 ((-385 (-525)) $)) (-15 -3022 ((-934 16) $)) (-15 -3093 ((-385 (-525)) $)) (-15 -2126 ($ (-385 (-525))))))) (T -462))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-462)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-934 16)) (-5 *1 (-462)))) (-3093 (*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-462)))) (-2126 (*1 *1 *2) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-462)))))
+(-13 (-923 (-525)) (-10 -8 (-15 -3022 ((-385 (-525)) $)) (-15 -3022 ((-934 16) $)) (-15 -3093 ((-385 (-525)) $)) (-15 -2126 ($ (-385 (-525))))))
+((-2552 (((-591 |#2|) $) 23)) (-2141 (((-108) |#2| $) 28)) (-1623 (((-108) (-1 (-108) |#2|) $) 21)) (-4132 (($ $ (-591 (-273 |#2|))) 13) (($ $ (-273 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-591 |#2|) (-591 |#2|)) NIL)) (-2064 (((-712) (-1 (-108) |#2|) $) 22) (((-712) |#2| $) 26)) (-3022 (((-796) $) 37)) (-4158 (((-108) (-1 (-108) |#2|) $) 20)) (-4096 (((-108) $ $) 31)) (-4045 (((-712) $) 17)))
+(((-463 |#1| |#2|) (-10 -8 (-15 -3022 ((-796) |#1|)) (-15 -4096 ((-108) |#1| |#1|)) (-15 -4132 (|#1| |#1| (-591 |#2|) (-591 |#2|))) (-15 -4132 (|#1| |#1| |#2| |#2|)) (-15 -4132 (|#1| |#1| (-273 |#2|))) (-15 -4132 (|#1| |#1| (-591 (-273 |#2|)))) (-15 -2141 ((-108) |#2| |#1|)) (-15 -2064 ((-712) |#2| |#1|)) (-15 -2552 ((-591 |#2|) |#1|)) (-15 -2064 ((-712) (-1 (-108) |#2|) |#1|)) (-15 -1623 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4158 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4045 ((-712) |#1|))) (-464 |#2|) (-1125)) (T -463))
+NIL
+(-10 -8 (-15 -3022 ((-796) |#1|)) (-15 -4096 ((-108) |#1| |#1|)) (-15 -4132 (|#1| |#1| (-591 |#2|) (-591 |#2|))) (-15 -4132 (|#1| |#1| |#2| |#2|)) (-15 -4132 (|#1| |#1| (-273 |#2|))) (-15 -4132 (|#1| |#1| (-591 (-273 |#2|)))) (-15 -2141 ((-108) |#2| |#1|)) (-15 -2064 ((-712) |#2| |#1|)) (-15 -2552 ((-591 |#2|) |#1|)) (-15 -2064 ((-712) (-1 (-108) |#2|) |#1|)) (-15 -1623 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4158 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4045 ((-712) |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3891 (((-108) $ (-712)) 8)) (-3798 (($) 7 T CONST)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-464 |#1|) (-131) (-1125)) (T -464))
+((-1340 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-464 *3)) (-4 *3 (-1125)))) (-3249 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4251)) (-4 *1 (-464 *3)) (-4 *3 (-1125)))) (-4158 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4250)) (-4 *1 (-464 *4)) (-4 *4 (-1125)) (-5 *2 (-108)))) (-1623 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4250)) (-4 *1 (-464 *4)) (-4 *4 (-1125)) (-5 *2 (-108)))) (-2064 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4250)) (-4 *1 (-464 *4)) (-4 *4 (-1125)) (-5 *2 (-712)))) (-3454 (*1 *2 *1) (-12 (|has| *1 (-6 -4250)) (-4 *1 (-464 *3)) (-4 *3 (-1125)) (-5 *2 (-591 *3)))) (-2552 (*1 *2 *1) (-12 (|has| *1 (-6 -4250)) (-4 *1 (-464 *3)) (-4 *3 (-1125)) (-5 *2 (-591 *3)))) (-2064 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4250)) (-4 *1 (-464 *3)) (-4 *3 (-1125)) (-4 *3 (-1018)) (-5 *2 (-712)))) (-2141 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4250)) (-4 *1 (-464 *3)) (-4 *3 (-1125)) (-4 *3 (-1018)) (-5 *2 (-108)))))
+(-13 (-33) (-10 -8 (IF (|has| |t#1| (-565 (-796))) (-6 (-565 (-796))) |%noBranch|) (IF (|has| |t#1| (-1018)) (-6 (-1018)) |%noBranch|) (IF (|has| |t#1| (-1018)) (IF (|has| |t#1| (-288 |t#1|)) (-6 (-288 |t#1|)) |%noBranch|) |%noBranch|) (-15 -1340 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4251)) (-15 -3249 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4250)) (PROGN (-15 -4158 ((-108) (-1 (-108) |t#1|) $)) (-15 -1623 ((-108) (-1 (-108) |t#1|) $)) (-15 -2064 ((-712) (-1 (-108) |t#1|) $)) (-15 -3454 ((-591 |t#1|) $)) (-15 -2552 ((-591 |t#1|) $)) (IF (|has| |t#1| (-1018)) (PROGN (-15 -2064 ((-712) |t#1| $)) (-15 -2141 ((-108) |t#1| $))) |%noBranch|)) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-1987 (($ $) 15)) (-1431 (($ $) 24)) (-1719 (($ $) 12)) (-1502 (($ $) 10)) (-1996 (($ $) 17)) (-1973 (($ $) 22)))
+(((-465 |#1|) (-10 -8 (-15 -1973 (|#1| |#1|)) (-15 -1996 (|#1| |#1|)) (-15 -1502 (|#1| |#1|)) (-15 -1719 (|#1| |#1|)) (-15 -1431 (|#1| |#1|)) (-15 -1987 (|#1| |#1|))) (-466)) (T -465))
+NIL
+(-10 -8 (-15 -1973 (|#1| |#1|)) (-15 -1996 (|#1| |#1|)) (-15 -1502 (|#1| |#1|)) (-15 -1719 (|#1| |#1|)) (-15 -1431 (|#1| |#1|)) (-15 -1987 (|#1| |#1|)))
+((-1987 (($ $) 11)) (-1431 (($ $) 10)) (-1719 (($ $) 9)) (-1502 (($ $) 8)) (-1996 (($ $) 7)) (-1973 (($ $) 6)))
+(((-466) (-131)) (T -466))
+((-1987 (*1 *1 *1) (-4 *1 (-466))) (-1431 (*1 *1 *1) (-4 *1 (-466))) (-1719 (*1 *1 *1) (-4 *1 (-466))) (-1502 (*1 *1 *1) (-4 *1 (-466))) (-1996 (*1 *1 *1) (-4 *1 (-466))) (-1973 (*1 *1 *1) (-4 *1 (-466))))
+(-13 (-10 -8 (-15 -1973 ($ $)) (-15 -1996 ($ $)) (-15 -1502 ($ $)) (-15 -1719 ($ $)) (-15 -1431 ($ $)) (-15 -1987 ($ $))))
+((-1348 (((-396 |#4|) |#4| (-1 (-396 |#2|) |#2|)) 42)))
+(((-467 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1348 ((-396 |#4|) |#4| (-1 (-396 |#2|) |#2|)))) (-341) (-1147 |#1|) (-13 (-341) (-138) (-666 |#1| |#2|)) (-1147 |#3|)) (T -467))
+((-1348 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-396 *6) *6)) (-4 *6 (-1147 *5)) (-4 *5 (-341)) (-4 *7 (-13 (-341) (-138) (-666 *5 *6))) (-5 *2 (-396 *3)) (-5 *1 (-467 *5 *6 *7 *3)) (-4 *3 (-1147 *7)))))
+(-10 -7 (-15 -1348 ((-396 |#4|) |#4| (-1 (-396 |#2|) |#2|))))
+((-3008 (((-108) $ $) NIL)) (-2453 (((-591 $) (-1085 $) (-1089)) NIL) (((-591 $) (-1085 $)) NIL) (((-591 $) (-885 $)) NIL)) (-3719 (($ (-1085 $) (-1089)) NIL) (($ (-1085 $)) NIL) (($ (-885 $)) NIL)) (-1800 (((-108) $) 39)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-1541 (((-108) $ $) 64)) (-3374 (((-591 (-564 $)) $) 48)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3825 (($ $ (-273 $)) NIL) (($ $ (-591 (-273 $))) NIL) (($ $ (-591 (-564 $)) (-591 $)) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1361 (($ $) NIL)) (-1947 (((-108) $ $) NIL)) (-3798 (($) NIL T CONST)) (-2733 (((-591 $) (-1085 $) (-1089)) NIL) (((-591 $) (-1085 $)) NIL) (((-591 $) (-885 $)) NIL)) (-3642 (($ (-1085 $) (-1089)) NIL) (($ (-1085 $)) NIL) (($ (-885 $)) NIL)) (-1251 (((-3 (-564 $) "failed") $) NIL) (((-3 (-525) "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL)) (-3528 (((-564 $) $) NIL) (((-525) $) NIL) (((-385 (-525)) $) 50)) (-2129 (($ $ $) NIL)) (-3305 (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL) (((-631 (-525)) (-631 $)) NIL) (((-2 (|:| -4057 (-631 (-385 (-525)))) (|:| |vec| (-1171 (-385 (-525))))) (-631 $) (-1171 $)) NIL) (((-631 (-385 (-525))) (-631 $)) NIL)) (-1227 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-1668 (($ $) NIL) (($ (-591 $)) NIL)) (-2194 (((-591 (-110)) $) NIL)) (-3219 (((-110) (-110)) NIL)) (-2824 (((-108) $) 42)) (-2419 (((-108) $) NIL (|has| $ (-966 (-525))))) (-1738 (((-1041 (-525) (-564 $)) $) 37)) (-3956 (($ $ (-525)) NIL)) (-2771 (((-1085 $) (-1085 $) (-564 $)) 78) (((-1085 $) (-1085 $) (-591 (-564 $))) 55) (($ $ (-564 $)) 67) (($ $ (-591 (-564 $))) 68)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-2695 (((-1085 $) (-564 $)) 65 (|has| $ (-975)))) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-1340 (($ (-1 $ $) (-564 $)) NIL)) (-1405 (((-3 (-564 $) "failed") $) NIL)) (-1356 (($ (-591 $)) NIL) (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-1298 (((-591 (-564 $)) $) NIL)) (-1843 (($ (-110) $) NIL) (($ (-110) (-591 $)) NIL)) (-1709 (((-108) $ (-110)) NIL) (((-108) $ (-1089)) NIL)) (-1622 (($ $) NIL)) (-2965 (((-712) $) NIL)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ (-591 $)) NIL) (($ $ $) NIL)) (-1988 (((-108) $ $) NIL) (((-108) $ (-1089)) NIL)) (-1348 (((-396 $) $) NIL)) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3451 (((-108) $) NIL (|has| $ (-966 (-525))))) (-4132 (($ $ (-564 $) $) NIL) (($ $ (-591 (-564 $)) (-591 $)) NIL) (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-591 (-1089)) (-591 (-1 $ $))) NIL) (($ $ (-591 (-1089)) (-591 (-1 $ (-591 $)))) NIL) (($ $ (-1089) (-1 $ (-591 $))) NIL) (($ $ (-1089) (-1 $ $)) NIL) (($ $ (-591 (-110)) (-591 (-1 $ $))) NIL) (($ $ (-591 (-110)) (-591 (-1 $ (-591 $)))) NIL) (($ $ (-110) (-1 $ (-591 $))) NIL) (($ $ (-110) (-1 $ $)) NIL)) (-1712 (((-712) $) NIL)) (-3164 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-591 $)) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-1484 (($ $) NIL) (($ $ $) NIL)) (-3266 (($ $ (-712)) NIL) (($ $) 36)) (-1754 (((-1041 (-525) (-564 $)) $) 20)) (-1478 (($ $) NIL (|has| $ (-975)))) (-1408 (((-357) $) 92) (((-205) $) 100) (((-157 (-357)) $) 108)) (-3022 (((-796) $) NIL) (($ (-564 $)) NIL) (($ (-385 (-525))) NIL) (($ $) NIL) (($ (-525)) NIL) (($ (-1041 (-525) (-564 $))) 21)) (-2128 (((-712)) NIL)) (-2989 (($ $) NIL) (($ (-591 $)) NIL)) (-2661 (((-108) (-110)) 84)) (-2495 (((-108) $ $) NIL)) (-3710 (($ $ (-525)) NIL) (($ $ (-712)) NIL) (($ $ (-854)) NIL)) (-4191 (($) 10 T CONST)) (-4197 (($) 22 T CONST)) (-4196 (($ $ (-712)) NIL) (($ $) NIL)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 24)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) NIL)) (-4173 (($ $ $) 44)) (-4164 (($ $ $) NIL) (($ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-385 (-525))) NIL) (($ $ (-525)) 46) (($ $ (-712)) NIL) (($ $ (-854)) NIL)) (* (($ (-385 (-525)) $) NIL) (($ $ (-385 (-525))) NIL) (($ $ $) 27) (($ (-525) $) NIL) (($ (-712) $) NIL) (($ (-854) $) NIL)))
+(((-468) (-13 (-281) (-27) (-966 (-525)) (-966 (-385 (-525))) (-587 (-525)) (-951) (-587 (-385 (-525))) (-138) (-566 (-157 (-357))) (-213) (-10 -8 (-15 -3022 ($ (-1041 (-525) (-564 $)))) (-15 -1738 ((-1041 (-525) (-564 $)) $)) (-15 -1754 ((-1041 (-525) (-564 $)) $)) (-15 -1227 ($ $)) (-15 -1541 ((-108) $ $)) (-15 -2771 ((-1085 $) (-1085 $) (-564 $))) (-15 -2771 ((-1085 $) (-1085 $) (-591 (-564 $)))) (-15 -2771 ($ $ (-564 $))) (-15 -2771 ($ $ (-591 (-564 $))))))) (T -468))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1041 (-525) (-564 (-468)))) (-5 *1 (-468)))) (-1738 (*1 *2 *1) (-12 (-5 *2 (-1041 (-525) (-564 (-468)))) (-5 *1 (-468)))) (-1754 (*1 *2 *1) (-12 (-5 *2 (-1041 (-525) (-564 (-468)))) (-5 *1 (-468)))) (-1227 (*1 *1 *1) (-5 *1 (-468))) (-1541 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-468)))) (-2771 (*1 *2 *2 *3) (-12 (-5 *2 (-1085 (-468))) (-5 *3 (-564 (-468))) (-5 *1 (-468)))) (-2771 (*1 *2 *2 *3) (-12 (-5 *2 (-1085 (-468))) (-5 *3 (-591 (-564 (-468)))) (-5 *1 (-468)))) (-2771 (*1 *1 *1 *2) (-12 (-5 *2 (-564 (-468))) (-5 *1 (-468)))) (-2771 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-564 (-468)))) (-5 *1 (-468)))))
+(-13 (-281) (-27) (-966 (-525)) (-966 (-385 (-525))) (-587 (-525)) (-951) (-587 (-385 (-525))) (-138) (-566 (-157 (-357))) (-213) (-10 -8 (-15 -3022 ($ (-1041 (-525) (-564 $)))) (-15 -1738 ((-1041 (-525) (-564 $)) $)) (-15 -1754 ((-1041 (-525) (-564 $)) $)) (-15 -1227 ($ $)) (-15 -1541 ((-108) $ $)) (-15 -2771 ((-1085 $) (-1085 $) (-564 $))) (-15 -2771 ((-1085 $) (-1085 $) (-591 (-564 $)))) (-15 -2771 ($ $ (-564 $))) (-15 -2771 ($ $ (-591 (-564 $))))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3203 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-788)))) (-4026 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4251))) (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| |#1| (-788))))) (-3327 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-788)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#1| $ (-525) |#1|) 25 (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) NIL (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3677 (($ |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#1| $ (-525) |#1|) 22 (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) 21)) (-3004 (((-525) (-1 (-108) |#1|) $) NIL) (((-525) |#1| $) NIL (|has| |#1| (-1018))) (((-525) |#1| $ (-525)) NIL (|has| |#1| (-1018)))) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-1268 (($ (-712) |#1|) 14)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) 12 (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2131 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-788)))) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3468 (((-525) $) 23 (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) 16 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 17) (($ (-1 |#1| |#1| |#1|) $ $) 19)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-4189 (($ |#1| $ (-525)) NIL) (($ $ $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-3066 ((|#1| $) NIL (|has| (-525) (-788)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1941 (($ $ |#1|) 10 (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) 13)) (-3164 ((|#1| $ (-525) |#1|) NIL) ((|#1| $ (-525)) 24) (($ $ (-1138 (-525))) NIL)) (-2777 (($ $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4063 (($ $ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) NIL)) (-3690 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-591 $)) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4045 (((-712) $) 9 (|has| $ (-6 -4250)))))
+(((-469 |#1| |#2|) (-19 |#1|) (-1125) (-525)) (T -469))
NIL
(-19 |#1|)
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#1| $ (-523) (-523) |#1|) NIL)) (-1205 (($ $ (-523) (-467 |#1| |#3|)) NIL)) (-2963 (($ $ (-523) (-467 |#1| |#2|)) NIL)) (-1640 (($) NIL T CONST)) (-2823 (((-467 |#1| |#3|) $ (-523)) NIL)) (-3073 ((|#1| $ (-523) (-523) |#1|) NIL)) (-3002 ((|#1| $ (-523) (-523)) NIL)) (-3133 (((-589 |#1|) $) NIL)) (-3656 (((-710) $) NIL)) (-2348 (($ (-710) (-710) |#1|) NIL)) (-3668 (((-710) $) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-1392 (((-523) $) NIL)) (-1219 (((-523) $) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2102 (((-523) $) NIL)) (-3328 (((-523) $) NIL)) (-3063 (($ (-1 |#1| |#1|) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2408 (($ $ |#1|) NIL)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#1| $ (-523) (-523)) NIL) ((|#1| $ (-523) (-523) |#1|) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) NIL)) (-2032 (((-467 |#1| |#2|) $ (-523)) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-468 |#1| |#2| |#3|) (-55 |#1| (-467 |#1| |#3|) (-467 |#1| |#2|)) (-1123) (-523) (-523)) (T -468))
-NIL
-(-55 |#1| (-467 |#1| |#3|) (-467 |#1| |#2|))
-((-2227 (((-589 (-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|)))) (-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))) (-710) (-710)) 27)) (-1311 (((-589 (-1083 |#1|)) |#1| (-710) (-710) (-710)) 34)) (-1968 (((-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))) (-589 |#3|) (-589 (-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|)))) (-710)) 85)))
-(((-469 |#1| |#2| |#3|) (-10 -7 (-15 -1311 ((-589 (-1083 |#1|)) |#1| (-710) (-710) (-710))) (-15 -2227 ((-589 (-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|)))) (-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))) (-710) (-710))) (-15 -1968 ((-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))) (-589 |#3|) (-589 (-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|)))) (-710)))) (-325) (-1145 |#1|) (-1145 |#2|)) (T -469))
-((-1968 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-589 *8)) (-5 *4 (-589 (-2 (|:| -2922 (-629 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-629 *7))))) (-5 *5 (-710)) (-4 *8 (-1145 *7)) (-4 *7 (-1145 *6)) (-4 *6 (-325)) (-5 *2 (-2 (|:| -2922 (-629 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-629 *7)))) (-5 *1 (-469 *6 *7 *8)))) (-2227 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-710)) (-4 *5 (-325)) (-4 *6 (-1145 *5)) (-5 *2 (-589 (-2 (|:| -2922 (-629 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-629 *6))))) (-5 *1 (-469 *5 *6 *7)) (-5 *3 (-2 (|:| -2922 (-629 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-629 *6)))) (-4 *7 (-1145 *6)))) (-1311 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-710)) (-4 *3 (-325)) (-4 *5 (-1145 *3)) (-5 *2 (-589 (-1083 *3))) (-5 *1 (-469 *3 *5 *6)) (-4 *6 (-1145 *5)))))
-(-10 -7 (-15 -1311 ((-589 (-1083 |#1|)) |#1| (-710) (-710) (-710))) (-15 -2227 ((-589 (-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|)))) (-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))) (-710) (-710))) (-15 -1968 ((-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))) (-589 |#3|) (-589 (-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|)))) (-710))))
-((-1860 (((-2 (|:| -2922 (-629 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-629 |#1|))) (-2 (|:| -2922 (-629 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-629 |#1|))) (-2 (|:| -2922 (-629 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-629 |#1|)))) 62)) (-1713 ((|#1| (-629 |#1|) |#1| (-710)) 25)) (-1770 (((-710) (-710) (-710)) 30)) (-2640 (((-629 |#1|) (-629 |#1|) (-629 |#1|)) 42)) (-2314 (((-629 |#1|) (-629 |#1|) (-629 |#1|) |#1|) 50) (((-629 |#1|) (-629 |#1|) (-629 |#1|)) 47)) (-3866 ((|#1| (-629 |#1|) (-629 |#1|) |#1| (-523)) 29)) (-3092 ((|#1| (-629 |#1|)) 18)))
-(((-470 |#1| |#2| |#3|) (-10 -7 (-15 -3092 (|#1| (-629 |#1|))) (-15 -1713 (|#1| (-629 |#1|) |#1| (-710))) (-15 -3866 (|#1| (-629 |#1|) (-629 |#1|) |#1| (-523))) (-15 -1770 ((-710) (-710) (-710))) (-15 -2314 ((-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -2314 ((-629 |#1|) (-629 |#1|) (-629 |#1|) |#1|)) (-15 -2640 ((-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -1860 ((-2 (|:| -2922 (-629 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-629 |#1|))) (-2 (|:| -2922 (-629 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-629 |#1|))) (-2 (|:| -2922 (-629 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-629 |#1|)))))) (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $)))) (-1145 |#1|) (-385 |#1| |#2|)) (T -470))
-((-1860 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -2922 (-629 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-629 *3)))) (-4 *3 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $))))) (-4 *4 (-1145 *3)) (-5 *1 (-470 *3 *4 *5)) (-4 *5 (-385 *3 *4)))) (-2640 (*1 *2 *2 *2) (-12 (-5 *2 (-629 *3)) (-4 *3 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $))))) (-4 *4 (-1145 *3)) (-5 *1 (-470 *3 *4 *5)) (-4 *5 (-385 *3 *4)))) (-2314 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-629 *3)) (-4 *3 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $))))) (-4 *4 (-1145 *3)) (-5 *1 (-470 *3 *4 *5)) (-4 *5 (-385 *3 *4)))) (-2314 (*1 *2 *2 *2) (-12 (-5 *2 (-629 *3)) (-4 *3 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $))))) (-4 *4 (-1145 *3)) (-5 *1 (-470 *3 *4 *5)) (-4 *5 (-385 *3 *4)))) (-1770 (*1 *2 *2 *2) (-12 (-5 *2 (-710)) (-4 *3 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $))))) (-4 *4 (-1145 *3)) (-5 *1 (-470 *3 *4 *5)) (-4 *5 (-385 *3 *4)))) (-3866 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-629 *2)) (-5 *4 (-523)) (-4 *2 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $))))) (-4 *5 (-1145 *2)) (-5 *1 (-470 *2 *5 *6)) (-4 *6 (-385 *2 *5)))) (-1713 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-629 *2)) (-5 *4 (-710)) (-4 *2 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $))))) (-4 *5 (-1145 *2)) (-5 *1 (-470 *2 *5 *6)) (-4 *6 (-385 *2 *5)))) (-3092 (*1 *2 *3) (-12 (-5 *3 (-629 *2)) (-4 *4 (-1145 *2)) (-4 *2 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $))))) (-5 *1 (-470 *2 *4 *5)) (-4 *5 (-385 *2 *4)))))
-(-10 -7 (-15 -3092 (|#1| (-629 |#1|))) (-15 -1713 (|#1| (-629 |#1|) |#1| (-710))) (-15 -3866 (|#1| (-629 |#1|) (-629 |#1|) |#1| (-523))) (-15 -1770 ((-710) (-710) (-710))) (-15 -2314 ((-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -2314 ((-629 |#1|) (-629 |#1|) (-629 |#1|) |#1|)) (-15 -2640 ((-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -1860 ((-2 (|:| -2922 (-629 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-629 |#1|))) (-2 (|:| -2922 (-629 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-629 |#1|))) (-2 (|:| -2922 (-629 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-629 |#1|))))))
-((-3260 (((-108) $ $) NIL)) (-3382 (($ $) NIL)) (-3485 (($ $ $) 35)) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-4159 (((-108) $) NIL (|has| (-108) (-786))) (((-108) (-1 (-108) (-108) (-108)) $) NIL)) (-2361 (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| (-108) (-786)))) (($ (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4249)))) (-3400 (($ $) NIL (|has| (-108) (-786))) (($ (-1 (-108) (-108) (-108)) $) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-4101 (((-108) $ (-1136 (-523)) (-108)) NIL (|has| $ (-6 -4249))) (((-108) $ (-523) (-108)) 36 (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-4091 (($ $) NIL (|has| $ (-6 -4249)))) (-4082 (($ $) NIL)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-108) (-1016))))) (-2231 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4248))) (($ (-108) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-108) (-1016))))) (-1830 (((-108) (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-108) (-108)) $ (-108)) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-108) (-108)) $ (-108) (-108)) NIL (-12 (|has| $ (-6 -4248)) (|has| (-108) (-1016))))) (-3073 (((-108) $ (-523) (-108)) NIL (|has| $ (-6 -4249)))) (-3002 (((-108) $ (-523)) NIL)) (-1894 (((-523) (-108) $ (-523)) NIL (|has| (-108) (-1016))) (((-523) (-108) $) NIL (|has| (-108) (-1016))) (((-523) (-1 (-108) (-108)) $) NIL)) (-3133 (((-589 (-108)) $) NIL (|has| $ (-6 -4248)))) (-2806 (($ $ $) 33)) (-2575 (($ $) NIL)) (-3574 (($ $ $) NIL)) (-2348 (($ (-710) (-108)) 23)) (-3853 (($ $ $) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) 8 (|has| (-523) (-786)))) (-3268 (($ $ $) NIL)) (-3123 (($ $ $) NIL (|has| (-108) (-786))) (($ (-1 (-108) (-108) (-108)) $ $) NIL)) (-3056 (((-589 (-108)) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-108) (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL)) (-3063 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-108) (-108) (-108)) $ $) 30) (($ (-1 (-108) (-108)) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-3334 (($ $ $ (-523)) NIL) (($ (-108) $ (-523)) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2435 (((-1034) $) NIL)) (-3879 (((-108) $) NIL (|has| (-523) (-786)))) (-2660 (((-3 (-108) "failed") (-1 (-108) (-108)) $) NIL)) (-2408 (($ $ (-108)) NIL (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-108)) (-589 (-108))) NIL (-12 (|has| (-108) (-286 (-108))) (|has| (-108) (-1016)))) (($ $ (-108) (-108)) NIL (-12 (|has| (-108) (-286 (-108))) (|has| (-108) (-1016)))) (($ $ (-271 (-108))) NIL (-12 (|has| (-108) (-286 (-108))) (|has| (-108) (-1016)))) (($ $ (-589 (-271 (-108)))) NIL (-12 (|has| (-108) (-286 (-108))) (|has| (-108) (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-108) (-1016))))) (-3184 (((-589 (-108)) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) 24)) (-1502 (($ $ (-1136 (-523))) NIL) (((-108) $ (-523)) 18) (((-108) $ (-523) (-108)) NIL)) (-3725 (($ $ (-1136 (-523))) NIL) (($ $ (-523)) NIL)) (-2452 (((-710) (-108) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-108) (-1016)))) (((-710) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4248)))) (-2580 (($ $ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4124 (($ $) 25)) (-3077 (((-499) $) NIL (|has| (-108) (-564 (-499))))) (-3985 (($ (-589 (-108))) NIL)) (-2785 (($ (-589 $)) NIL) (($ $ $) NIL) (($ (-108) $) NIL) (($ $ (-108)) NIL)) (-3976 (((-794) $) 22)) (-1505 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4248)))) (-2819 (($ $ $) 31)) (-2573 (($ $) NIL)) (-2526 (($ $ $) NIL)) (-2472 (($ $ $) 39)) (-2480 (($ $) 37)) (-2463 (($ $ $) 38)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 26)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 27)) (-2516 (($ $ $) NIL)) (-1271 (((-710) $) 10 (|has| $ (-6 -4248)))))
-(((-471 |#1|) (-13 (-119) (-10 -8 (-15 -2480 ($ $)) (-15 -2472 ($ $ $)) (-15 -2463 ($ $ $)))) (-523)) (T -471))
-((-2480 (*1 *1 *1) (-12 (-5 *1 (-471 *2)) (-14 *2 (-523)))) (-2472 (*1 *1 *1 *1) (-12 (-5 *1 (-471 *2)) (-14 *2 (-523)))) (-2463 (*1 *1 *1 *1) (-12 (-5 *1 (-471 *2)) (-14 *2 (-523)))))
-(-13 (-119) (-10 -8 (-15 -2480 ($ $)) (-15 -2472 ($ $ $)) (-15 -2463 ($ $ $))))
-((-2313 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1083 |#4|)) 35)) (-2719 (((-1083 |#4|) (-1 |#4| |#1|) |#2|) 31) ((|#2| (-1 |#1| |#4|) (-1083 |#4|)) 22)) (-4148 (((-3 (-629 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-629 (-1083 |#4|))) 46)) (-3354 (((-1083 (-1083 |#4|)) (-1 |#4| |#1|) |#3|) 55)))
-(((-472 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2719 (|#2| (-1 |#1| |#4|) (-1083 |#4|))) (-15 -2719 ((-1083 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -2313 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1083 |#4|))) (-15 -4148 ((-3 (-629 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-629 (-1083 |#4|)))) (-15 -3354 ((-1083 (-1083 |#4|)) (-1 |#4| |#1|) |#3|))) (-973) (-1145 |#1|) (-1145 |#2|) (-973)) (T -472))
-((-3354 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-973)) (-4 *7 (-973)) (-4 *6 (-1145 *5)) (-5 *2 (-1083 (-1083 *7))) (-5 *1 (-472 *5 *6 *4 *7)) (-4 *4 (-1145 *6)))) (-4148 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8)) (-5 *4 (-629 (-1083 *8))) (-4 *5 (-973)) (-4 *8 (-973)) (-4 *6 (-1145 *5)) (-5 *2 (-629 *6)) (-5 *1 (-472 *5 *6 *7 *8)) (-4 *7 (-1145 *6)))) (-2313 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1083 *7)) (-4 *5 (-973)) (-4 *7 (-973)) (-4 *2 (-1145 *5)) (-5 *1 (-472 *5 *2 *6 *7)) (-4 *6 (-1145 *2)))) (-2719 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-973)) (-4 *7 (-973)) (-4 *4 (-1145 *5)) (-5 *2 (-1083 *7)) (-5 *1 (-472 *5 *4 *6 *7)) (-4 *6 (-1145 *4)))) (-2719 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1083 *7)) (-4 *5 (-973)) (-4 *7 (-973)) (-4 *2 (-1145 *5)) (-5 *1 (-472 *5 *2 *6 *7)) (-4 *6 (-1145 *2)))))
-(-10 -7 (-15 -2719 (|#2| (-1 |#1| |#4|) (-1083 |#4|))) (-15 -2719 ((-1083 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -2313 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1083 |#4|))) (-15 -4148 ((-3 (-629 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-629 (-1083 |#4|)))) (-15 -3354 ((-1083 (-1083 |#4|)) (-1 |#4| |#1|) |#3|)))
-((-3260 (((-108) $ $) NIL)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2149 (((-1174) $) 18)) (-1502 (((-1070) $ (-1087)) 22)) (-3942 (((-1174) $) 14)) (-3976 (((-794) $) 20) (($ (-1070)) 19)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 8)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 7)))
-(((-473) (-13 (-786) (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 ((-1174) $)) (-15 -2149 ((-1174) $)) (-15 -3976 ($ (-1070)))))) (T -473))
-((-1502 (*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1070)) (-5 *1 (-473)))) (-3942 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-473)))) (-2149 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-473)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-473)))))
-(-13 (-786) (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 ((-1174) $)) (-15 -2149 ((-1174) $)) (-15 -3976 ($ (-1070)))))
-((-3538 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-2848 ((|#1| |#4|) 10)) (-3992 ((|#3| |#4|) 17)))
-(((-474 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2848 (|#1| |#4|)) (-15 -3992 (|#3| |#4|)) (-15 -3538 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-515) (-921 |#1|) (-349 |#1|) (-349 |#2|)) (T -474))
-((-3538 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *5 (-921 *4)) (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4))) (-5 *1 (-474 *4 *5 *6 *3)) (-4 *6 (-349 *4)) (-4 *3 (-349 *5)))) (-3992 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *5 (-921 *4)) (-4 *2 (-349 *4)) (-5 *1 (-474 *4 *5 *2 *3)) (-4 *3 (-349 *5)))) (-2848 (*1 *2 *3) (-12 (-4 *4 (-921 *2)) (-4 *2 (-515)) (-5 *1 (-474 *2 *4 *5 *3)) (-4 *5 (-349 *2)) (-4 *3 (-349 *4)))))
-(-10 -7 (-15 -2848 (|#1| |#4|)) (-15 -3992 (|#3| |#4|)) (-15 -3538 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
-((-3260 (((-108) $ $) NIL)) (-1274 (((-108) $ (-589 |#3|)) 104) (((-108) $) 105)) (-2388 (((-108) $) 148)) (-1760 (($ $ |#4|) 96) (($ $ |#4| (-589 |#3|)) 100)) (-2337 (((-1077 (-589 (-883 |#1|)) (-589 (-271 (-883 |#1|)))) (-589 |#4|)) 141 (|has| |#3| (-564 (-1087))))) (-3429 (($ $ $) 90) (($ $ |#4|) 88)) (-3482 (((-108) $) 147)) (-1282 (($ $) 108)) (-3841 (((-1070) $) NIL)) (-1625 (($ $ $) 82) (($ (-589 $)) 84)) (-2518 (((-108) |#4| $) 107)) (-3552 (((-108) $ $) 71)) (-4140 (($ (-589 |#4|)) 89)) (-2435 (((-1034) $) NIL)) (-3523 (($ (-589 |#4|)) 145)) (-3341 (((-108) $) 146)) (-3721 (($ $) 73)) (-3649 (((-589 |#4|) $) 57)) (-1958 (((-2 (|:| |mval| (-629 |#1|)) (|:| |invmval| (-629 |#1|)) (|:| |genIdeal| $)) $ (-589 |#3|)) NIL)) (-1462 (((-108) |#4| $) 76)) (-4012 (((-523) $ (-589 |#3|)) 109) (((-523) $) 110)) (-3976 (((-794) $) 144) (($ (-589 |#4|)) 85)) (-3280 (($ (-2 (|:| |mval| (-629 |#1|)) (|:| |invmval| (-629 |#1|)) (|:| |genIdeal| $))) NIL)) (-4037 (((-108) $ $) 72)) (-4103 (($ $ $) 92)) (** (($ $ (-710)) 95)) (* (($ $ $) 94)))
-(((-475 |#1| |#2| |#3| |#4|) (-13 (-1016) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-710))) (-15 -4103 ($ $ $)) (-15 -3482 ((-108) $)) (-15 -2388 ((-108) $)) (-15 -1462 ((-108) |#4| $)) (-15 -3552 ((-108) $ $)) (-15 -2518 ((-108) |#4| $)) (-15 -1274 ((-108) $ (-589 |#3|))) (-15 -1274 ((-108) $)) (-15 -1625 ($ $ $)) (-15 -1625 ($ (-589 $))) (-15 -3429 ($ $ $)) (-15 -3429 ($ $ |#4|)) (-15 -3721 ($ $)) (-15 -1958 ((-2 (|:| |mval| (-629 |#1|)) (|:| |invmval| (-629 |#1|)) (|:| |genIdeal| $)) $ (-589 |#3|))) (-15 -3280 ($ (-2 (|:| |mval| (-629 |#1|)) (|:| |invmval| (-629 |#1|)) (|:| |genIdeal| $)))) (-15 -4012 ((-523) $ (-589 |#3|))) (-15 -4012 ((-523) $)) (-15 -1282 ($ $)) (-15 -4140 ($ (-589 |#4|))) (-15 -3523 ($ (-589 |#4|))) (-15 -3341 ((-108) $)) (-15 -3649 ((-589 |#4|) $)) (-15 -3976 ($ (-589 |#4|))) (-15 -1760 ($ $ |#4|)) (-15 -1760 ($ $ |#4| (-589 |#3|))) (IF (|has| |#3| (-564 (-1087))) (-15 -2337 ((-1077 (-589 (-883 |#1|)) (-589 (-271 (-883 |#1|)))) (-589 |#4|))) |%noBranch|))) (-339) (-732) (-786) (-880 |#1| |#2| |#3|)) (T -475))
-((* (*1 *1 *1 *1) (-12 (-4 *2 (-339)) (-4 *3 (-732)) (-4 *4 (-786)) (-5 *1 (-475 *2 *3 *4 *5)) (-4 *5 (-880 *2 *3 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5)))) (-4103 (*1 *1 *1 *1) (-12 (-4 *2 (-339)) (-4 *3 (-732)) (-4 *4 (-786)) (-5 *1 (-475 *2 *3 *4 *5)) (-4 *5 (-880 *2 *3 *4)))) (-3482 (*1 *2 *1) (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108)) (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5)))) (-2388 (*1 *2 *1) (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108)) (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5)))) (-1462 (*1 *2 *3 *1) (-12 (-4 *4 (-339)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-475 *4 *5 *6 *3)) (-4 *3 (-880 *4 *5 *6)))) (-3552 (*1 *2 *1 *1) (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108)) (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5)))) (-2518 (*1 *2 *3 *1) (-12 (-4 *4 (-339)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-475 *4 *5 *6 *3)) (-4 *3 (-880 *4 *5 *6)))) (-1274 (*1 *2 *1 *3) (-12 (-5 *3 (-589 *6)) (-4 *6 (-786)) (-4 *4 (-339)) (-4 *5 (-732)) (-5 *2 (-108)) (-5 *1 (-475 *4 *5 *6 *7)) (-4 *7 (-880 *4 *5 *6)))) (-1274 (*1 *2 *1) (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108)) (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5)))) (-1625 (*1 *1 *1 *1) (-12 (-4 *2 (-339)) (-4 *3 (-732)) (-4 *4 (-786)) (-5 *1 (-475 *2 *3 *4 *5)) (-4 *5 (-880 *2 *3 *4)))) (-1625 (*1 *1 *2) (-12 (-5 *2 (-589 (-475 *3 *4 *5 *6))) (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5)))) (-3429 (*1 *1 *1 *1) (-12 (-4 *2 (-339)) (-4 *3 (-732)) (-4 *4 (-786)) (-5 *1 (-475 *2 *3 *4 *5)) (-4 *5 (-880 *2 *3 *4)))) (-3429 (*1 *1 *1 *2) (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-475 *3 *4 *5 *2)) (-4 *2 (-880 *3 *4 *5)))) (-3721 (*1 *1 *1) (-12 (-4 *2 (-339)) (-4 *3 (-732)) (-4 *4 (-786)) (-5 *1 (-475 *2 *3 *4 *5)) (-4 *5 (-880 *2 *3 *4)))) (-1958 (*1 *2 *1 *3) (-12 (-5 *3 (-589 *6)) (-4 *6 (-786)) (-4 *4 (-339)) (-4 *5 (-732)) (-5 *2 (-2 (|:| |mval| (-629 *4)) (|:| |invmval| (-629 *4)) (|:| |genIdeal| (-475 *4 *5 *6 *7)))) (-5 *1 (-475 *4 *5 *6 *7)) (-4 *7 (-880 *4 *5 *6)))) (-3280 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |mval| (-629 *3)) (|:| |invmval| (-629 *3)) (|:| |genIdeal| (-475 *3 *4 *5 *6)))) (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5)))) (-4012 (*1 *2 *1 *3) (-12 (-5 *3 (-589 *6)) (-4 *6 (-786)) (-4 *4 (-339)) (-4 *5 (-732)) (-5 *2 (-523)) (-5 *1 (-475 *4 *5 *6 *7)) (-4 *7 (-880 *4 *5 *6)))) (-4012 (*1 *2 *1) (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-523)) (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5)))) (-1282 (*1 *1 *1) (-12 (-4 *2 (-339)) (-4 *3 (-732)) (-4 *4 (-786)) (-5 *1 (-475 *2 *3 *4 *5)) (-4 *5 (-880 *2 *3 *4)))) (-4140 (*1 *1 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-475 *3 *4 *5 *6)))) (-3523 (*1 *1 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-475 *3 *4 *5 *6)))) (-3341 (*1 *2 *1) (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108)) (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5)))) (-3649 (*1 *2 *1) (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *6)) (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-475 *3 *4 *5 *6)))) (-1760 (*1 *1 *1 *2) (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-475 *3 *4 *5 *2)) (-4 *2 (-880 *3 *4 *5)))) (-1760 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-589 *6)) (-4 *6 (-786)) (-4 *4 (-339)) (-4 *5 (-732)) (-5 *1 (-475 *4 *5 *6 *2)) (-4 *2 (-880 *4 *5 *6)))) (-2337 (*1 *2 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-880 *4 *5 *6)) (-4 *6 (-564 (-1087))) (-4 *4 (-339)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-1077 (-589 (-883 *4)) (-589 (-271 (-883 *4))))) (-5 *1 (-475 *4 *5 *6 *7)))))
-(-13 (-1016) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-710))) (-15 -4103 ($ $ $)) (-15 -3482 ((-108) $)) (-15 -2388 ((-108) $)) (-15 -1462 ((-108) |#4| $)) (-15 -3552 ((-108) $ $)) (-15 -2518 ((-108) |#4| $)) (-15 -1274 ((-108) $ (-589 |#3|))) (-15 -1274 ((-108) $)) (-15 -1625 ($ $ $)) (-15 -1625 ($ (-589 $))) (-15 -3429 ($ $ $)) (-15 -3429 ($ $ |#4|)) (-15 -3721 ($ $)) (-15 -1958 ((-2 (|:| |mval| (-629 |#1|)) (|:| |invmval| (-629 |#1|)) (|:| |genIdeal| $)) $ (-589 |#3|))) (-15 -3280 ($ (-2 (|:| |mval| (-629 |#1|)) (|:| |invmval| (-629 |#1|)) (|:| |genIdeal| $)))) (-15 -4012 ((-523) $ (-589 |#3|))) (-15 -4012 ((-523) $)) (-15 -1282 ($ $)) (-15 -4140 ($ (-589 |#4|))) (-15 -3523 ($ (-589 |#4|))) (-15 -3341 ((-108) $)) (-15 -3649 ((-589 |#4|) $)) (-15 -3976 ($ (-589 |#4|))) (-15 -1760 ($ $ |#4|)) (-15 -1760 ($ $ |#4| (-589 |#3|))) (IF (|has| |#3| (-564 (-1087))) (-15 -2337 ((-1077 (-589 (-883 |#1|)) (-589 (-271 (-883 |#1|)))) (-589 |#4|))) |%noBranch|)))
-((-3760 (((-108) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523))))) 149)) (-2815 (((-108) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523))))) 150)) (-4133 (((-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523))))) 108)) (-1330 (((-108) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523))))) NIL)) (-3246 (((-589 (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523))))) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523))))) 152)) (-2603 (((-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))) (-589 (-796 |#1|))) 164)))
-(((-476 |#1| |#2|) (-10 -7 (-15 -3760 ((-108) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))))) (-15 -2815 ((-108) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))))) (-15 -1330 ((-108) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))))) (-15 -4133 ((-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))))) (-15 -3246 ((-589 (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523))))) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))))) (-15 -2603 ((-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))) (-589 (-796 |#1|))))) (-589 (-1087)) (-710)) (T -476))
-((-2603 (*1 *2 *2 *3) (-12 (-5 *2 (-475 (-383 (-523)) (-218 *5 (-710)) (-796 *4) (-225 *4 (-383 (-523))))) (-5 *3 (-589 (-796 *4))) (-14 *4 (-589 (-1087))) (-14 *5 (-710)) (-5 *1 (-476 *4 *5)))) (-3246 (*1 *2 *3) (-12 (-14 *4 (-589 (-1087))) (-14 *5 (-710)) (-5 *2 (-589 (-475 (-383 (-523)) (-218 *5 (-710)) (-796 *4) (-225 *4 (-383 (-523)))))) (-5 *1 (-476 *4 *5)) (-5 *3 (-475 (-383 (-523)) (-218 *5 (-710)) (-796 *4) (-225 *4 (-383 (-523))))))) (-4133 (*1 *2 *2) (-12 (-5 *2 (-475 (-383 (-523)) (-218 *4 (-710)) (-796 *3) (-225 *3 (-383 (-523))))) (-14 *3 (-589 (-1087))) (-14 *4 (-710)) (-5 *1 (-476 *3 *4)))) (-1330 (*1 *2 *3) (-12 (-5 *3 (-475 (-383 (-523)) (-218 *5 (-710)) (-796 *4) (-225 *4 (-383 (-523))))) (-14 *4 (-589 (-1087))) (-14 *5 (-710)) (-5 *2 (-108)) (-5 *1 (-476 *4 *5)))) (-2815 (*1 *2 *3) (-12 (-5 *3 (-475 (-383 (-523)) (-218 *5 (-710)) (-796 *4) (-225 *4 (-383 (-523))))) (-14 *4 (-589 (-1087))) (-14 *5 (-710)) (-5 *2 (-108)) (-5 *1 (-476 *4 *5)))) (-3760 (*1 *2 *3) (-12 (-5 *3 (-475 (-383 (-523)) (-218 *5 (-710)) (-796 *4) (-225 *4 (-383 (-523))))) (-14 *4 (-589 (-1087))) (-14 *5 (-710)) (-5 *2 (-108)) (-5 *1 (-476 *4 *5)))))
-(-10 -7 (-15 -3760 ((-108) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))))) (-15 -2815 ((-108) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))))) (-15 -1330 ((-108) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))))) (-15 -4133 ((-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))))) (-15 -3246 ((-589 (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523))))) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))))) (-15 -2603 ((-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))) (-475 (-383 (-523)) (-218 |#2| (-710)) (-796 |#1|) (-225 |#1| (-383 (-523)))) (-589 (-796 |#1|)))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-3142 (($ $) NIL)) (-3694 (($ |#1| |#2|) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-2022 ((|#2| $) NIL)) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-1428 (($) 12 T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) 11) (($ $ $) 24)) (-4103 (($ $ $) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 18)))
-(((-477 |#1| |#2|) (-13 (-21) (-479 |#1| |#2|)) (-21) (-786)) (T -477))
-NIL
-(-13 (-21) (-479 |#1| |#2|))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 12)) (-1640 (($) NIL T CONST)) (-3142 (($ $) 28)) (-3694 (($ |#1| |#2|) 25)) (-3015 (($ (-1 |#1| |#1|) $) 27)) (-2022 ((|#2| $) NIL)) (-3119 ((|#1| $) 29)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-1428 (($) 10 T CONST)) (-4037 (((-108) $ $) NIL)) (-4103 (($ $ $) 18)) (* (($ (-852) $) NIL) (($ (-710) $) 23)))
-(((-478 |#1| |#2|) (-13 (-23) (-479 |#1| |#2|)) (-23) (-786)) (T -478))
-NIL
-(-13 (-23) (-479 |#1| |#2|))
-((-3260 (((-108) $ $) 7)) (-3142 (($ $) 13)) (-3694 (($ |#1| |#2|) 16)) (-3015 (($ (-1 |#1| |#1|) $) 17)) (-2022 ((|#2| $) 14)) (-3119 ((|#1| $) 15)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-4037 (((-108) $ $) 6)))
-(((-479 |#1| |#2|) (-129) (-1016) (-786)) (T -479))
-((-3015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-479 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-786)))) (-3694 (*1 *1 *2 *3) (-12 (-4 *1 (-479 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-786)))) (-3119 (*1 *2 *1) (-12 (-4 *1 (-479 *2 *3)) (-4 *3 (-786)) (-4 *2 (-1016)))) (-2022 (*1 *2 *1) (-12 (-4 *1 (-479 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-786)))) (-3142 (*1 *1 *1) (-12 (-4 *1 (-479 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-786)))))
-(-13 (-1016) (-10 -8 (-15 -3015 ($ (-1 |t#1| |t#1|) $)) (-15 -3694 ($ |t#1| |t#2|)) (-15 -3119 (|t#1| $)) (-15 -2022 (|t#2| $)) (-15 -3142 ($ $))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1640 (($) NIL T CONST)) (-3142 (($ $) NIL)) (-3694 (($ |#1| |#2|) NIL)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-2022 ((|#2| $) NIL)) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-1428 (($) NIL T CONST)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 13)) (-4103 (($ $ $) NIL)) (* (($ (-710) $) NIL) (($ (-852) $) NIL)))
-(((-480 |#1| |#2|) (-13 (-731) (-479 |#1| |#2|)) (-731) (-786)) (T -480))
-NIL
-(-13 (-731) (-479 |#1| |#2|))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1773 (($ $ $) 16)) (-2999 (((-3 $ "failed") $ $) 13)) (-1640 (($) NIL T CONST)) (-3142 (($ $) NIL)) (-3694 (($ |#1| |#2|) NIL)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-2022 ((|#2| $) NIL)) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL)) (-1428 (($) NIL T CONST)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) NIL)) (-4103 (($ $ $) NIL)) (* (($ (-710) $) NIL) (($ (-852) $) NIL)))
-(((-481 |#1| |#2|) (-13 (-732) (-479 |#1| |#2|)) (-732) (-786)) (T -481))
-NIL
-(-13 (-732) (-479 |#1| |#2|))
-((-3260 (((-108) $ $) NIL)) (-3142 (($ $) 25)) (-3694 (($ |#1| |#2|) 22)) (-3015 (($ (-1 |#1| |#1|) $) 24)) (-2022 ((|#2| $) 27)) (-3119 ((|#1| $) 26)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 21)) (-4037 (((-108) $ $) 14)))
-(((-482 |#1| |#2|) (-479 |#1| |#2|) (-1016) (-786)) (T -482))
-NIL
-(-479 |#1| |#2|)
-((-1349 (($ $ (-589 |#2|) (-589 |#3|)) NIL) (($ $ |#2| |#3|) 12)))
-(((-483 |#1| |#2| |#3|) (-10 -8 (-15 -1349 (|#1| |#1| |#2| |#3|)) (-15 -1349 (|#1| |#1| (-589 |#2|) (-589 |#3|)))) (-484 |#2| |#3|) (-1016) (-1123)) (T -483))
-NIL
-(-10 -8 (-15 -1349 (|#1| |#1| |#2| |#3|)) (-15 -1349 (|#1| |#1| (-589 |#2|) (-589 |#3|))))
-((-1349 (($ $ (-589 |#1|) (-589 |#2|)) 7) (($ $ |#1| |#2|) 6)))
-(((-484 |#1| |#2|) (-129) (-1016) (-1123)) (T -484))
-((-1349 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 *4)) (-5 *3 (-589 *5)) (-4 *1 (-484 *4 *5)) (-4 *4 (-1016)) (-4 *5 (-1123)))) (-1349 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-484 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1123)))))
-(-13 (-10 -8 (-15 -1349 ($ $ |t#1| |t#2|)) (-15 -1349 ($ $ (-589 |t#1|) (-589 |t#2|)))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 16)) (-2736 (((-589 (-2 (|:| |gen| |#1|) (|:| -1847 |#2|))) $) 18)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3843 (((-710) $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL)) (-1996 ((|#1| $) NIL)) (-3019 ((|#1| $ (-523)) 23)) (-2616 ((|#2| $ (-523)) 21)) (-4119 (($ (-1 |#1| |#1|) $) 46)) (-1562 (($ (-1 |#2| |#2|) $) 43)) (-3841 (((-1070) $) NIL)) (-3544 (($ $ $) 53 (|has| |#2| (-731)))) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 42) (($ |#1|) NIL)) (-1234 ((|#2| |#1| $) 49)) (-1428 (($) 11 T CONST)) (-4037 (((-108) $ $) 29)) (-4103 (($ $ $) 27) (($ |#1| $) 25)) (* (($ (-852) $) NIL) (($ (-710) $) 36) (($ |#2| |#1|) 31)))
-(((-485 |#1| |#2| |#3|) (-299 |#1| |#2|) (-1016) (-124) |#2|) (T -485))
-NIL
-(-299 |#1| |#2|)
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-4159 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-786)))) (-2361 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4249))) (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| |#1| (-786))))) (-3400 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-786)))) (-2282 (((-108) $ (-710)) NIL)) (-2622 (((-108) (-108)) 24)) (-4101 ((|#1| $ (-523) |#1|) 27 (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) NIL (|has| $ (-6 -4249)))) (-3627 (($ (-1 (-108) |#1|) $) 51)) (-1299 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-4091 (($ $) NIL (|has| $ (-6 -4249)))) (-4082 (($ $) NIL)) (-2543 (($ $) 55 (|has| |#1| (-1016)))) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-1869 (($ |#1| $) NIL (|has| |#1| (-1016))) (($ (-1 (-108) |#1|) $) 43)) (-2231 (($ |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) NIL)) (-1894 (((-523) (-1 (-108) |#1|) $) NIL) (((-523) |#1| $) NIL (|has| |#1| (-1016))) (((-523) |#1| $ (-523)) NIL (|has| |#1| (-1016)))) (-2772 (($ $ (-523)) 13)) (-3608 (((-710) $) 11)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-2348 (($ (-710) |#1|) 22)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) 20 (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-3325 (($ $ $) NIL (|has| |#1| (-786))) (($ (-1 (-108) |#1| |#1|) $ $) 34)) (-3123 (($ (-1 (-108) |#1| |#1|) $ $) 35) (($ $ $) NIL (|has| |#1| (-786)))) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2133 (((-523) $) 19 (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-3862 (($ $ $ (-523)) 50) (($ |#1| $ (-523)) 36)) (-3334 (($ |#1| $ (-523)) NIL) (($ $ $ (-523)) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2674 (($ (-589 |#1|)) 28)) (-3879 ((|#1| $) NIL (|has| (-523) (-786)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2408 (($ $ |#1|) 18 (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 39)) (-1410 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) 14)) (-1502 ((|#1| $ (-523) |#1|) NIL) ((|#1| $ (-523)) 32) (($ $ (-1136 (-523))) NIL)) (-1314 (($ $ (-1136 (-523))) 49) (($ $ (-523)) 44)) (-3725 (($ $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2580 (($ $ $ (-523)) 40 (|has| $ (-6 -4249)))) (-4124 (($ $) 31)) (-3077 (((-499) $) NIL (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) NIL)) (-1622 (($ $ $) 41) (($ $ |#1|) 38)) (-2785 (($ $ |#1|) NIL) (($ |#1| $) 37) (($ $ $) NIL) (($ (-589 $)) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-1271 (((-710) $) 15 (|has| $ (-6 -4248)))))
-(((-486 |#1| |#2|) (-13 (-19 |#1|) (-259 |#1|) (-10 -8 (-15 -2674 ($ (-589 |#1|))) (-15 -3608 ((-710) $)) (-15 -2772 ($ $ (-523))) (-15 -2622 ((-108) (-108))))) (-1123) (-523)) (T -486))
-((-2674 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-5 *1 (-486 *3 *4)) (-14 *4 (-523)))) (-3608 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-486 *3 *4)) (-4 *3 (-1123)) (-14 *4 (-523)))) (-2772 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-486 *3 *4)) (-4 *3 (-1123)) (-14 *4 *2))) (-2622 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-486 *3 *4)) (-4 *3 (-1123)) (-14 *4 (-523)))))
-(-13 (-19 |#1|) (-259 |#1|) (-10 -8 (-15 -2674 ($ (-589 |#1|))) (-15 -3608 ((-710) $)) (-15 -2772 ($ $ (-523))) (-15 -2622 ((-108) (-108)))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-3867 (((-108) $) NIL)) (-4154 (((-710)) NIL)) (-4131 (((-536 |#1|) $) NIL) (($ $ (-852)) NIL (|has| (-536 |#1|) (-344)))) (-2794 (((-1097 (-852) (-710)) (-523)) NIL (|has| (-536 |#1|) (-344)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-3843 (((-710)) NIL (|has| (-536 |#1|) (-344)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-536 |#1|) "failed") $) NIL)) (-1996 (((-536 |#1|) $) NIL)) (-3322 (($ (-1169 (-536 |#1|))) NIL)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-536 |#1|) (-344)))) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) NIL (|has| (-536 |#1|) (-344)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-2097 (($) NIL (|has| (-536 |#1|) (-344)))) (-1200 (((-108) $) NIL (|has| (-536 |#1|) (-344)))) (-1419 (($ $ (-710)) NIL (-3255 (|has| (-536 |#1|) (-134)) (|has| (-536 |#1|) (-344)))) (($ $) NIL (-3255 (|has| (-536 |#1|) (-134)) (|has| (-536 |#1|) (-344))))) (-1330 (((-108) $) NIL)) (-1500 (((-852) $) NIL (|has| (-536 |#1|) (-344))) (((-772 (-852)) $) NIL (-3255 (|has| (-536 |#1|) (-134)) (|has| (-536 |#1|) (-344))))) (-3482 (((-108) $) NIL)) (-2842 (($) NIL (|has| (-536 |#1|) (-344)))) (-4077 (((-108) $) NIL (|has| (-536 |#1|) (-344)))) (-2765 (((-536 |#1|) $) NIL) (($ $ (-852)) NIL (|has| (-536 |#1|) (-344)))) (-1289 (((-3 $ "failed") $) NIL (|has| (-536 |#1|) (-344)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2277 (((-1083 (-536 |#1|)) $) NIL) (((-1083 $) $ (-852)) NIL (|has| (-536 |#1|) (-344)))) (-4076 (((-852) $) NIL (|has| (-536 |#1|) (-344)))) (-1573 (((-1083 (-536 |#1|)) $) NIL (|has| (-536 |#1|) (-344)))) (-3102 (((-1083 (-536 |#1|)) $) NIL (|has| (-536 |#1|) (-344))) (((-3 (-1083 (-536 |#1|)) "failed") $ $) NIL (|has| (-536 |#1|) (-344)))) (-2163 (($ $ (-1083 (-536 |#1|))) NIL (|has| (-536 |#1|) (-344)))) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| (-536 |#1|) (-344)) CONST)) (-2557 (($ (-852)) NIL (|has| (-536 |#1|) (-344)))) (-4203 (((-108) $) NIL)) (-2435 (((-1034) $) NIL)) (-4102 (($) NIL (|has| (-536 |#1|) (-344)))) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) NIL (|has| (-536 |#1|) (-344)))) (-3573 (((-394 $) $) NIL)) (-3718 (((-772 (-852))) NIL) (((-852)) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2041 (((-710) $) NIL (|has| (-536 |#1|) (-344))) (((-3 (-710) "failed") $ $) NIL (-3255 (|has| (-536 |#1|) (-134)) (|has| (-536 |#1|) (-344))))) (-4012 (((-126)) NIL)) (-4024 (($ $) NIL (|has| (-536 |#1|) (-344))) (($ $ (-710)) NIL (|has| (-536 |#1|) (-344)))) (-1487 (((-772 (-852)) $) NIL) (((-852) $) NIL)) (-3399 (((-1083 (-536 |#1|))) NIL)) (-2315 (($) NIL (|has| (-536 |#1|) (-344)))) (-2233 (($) NIL (|has| (-536 |#1|) (-344)))) (-2411 (((-1169 (-536 |#1|)) $) NIL) (((-629 (-536 |#1|)) (-1169 $)) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (|has| (-536 |#1|) (-344)))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) (($ (-536 |#1|)) NIL)) (-2301 (($ $) NIL (|has| (-536 |#1|) (-344))) (((-3 $ "failed") $) NIL (-3255 (|has| (-536 |#1|) (-134)) (|has| (-536 |#1|) (-344))))) (-1698 (((-710)) NIL)) (-2922 (((-1169 $)) NIL) (((-1169 $) (-852)) NIL)) (-3842 (((-108) $ $) NIL)) (-4079 (((-108) $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1732 (($ $) NIL (|has| (-536 |#1|) (-344))) (($ $ (-710)) NIL (|has| (-536 |#1|) (-344)))) (-1943 (($ $) NIL (|has| (-536 |#1|) (-344))) (($ $ (-710)) NIL (|has| (-536 |#1|) (-344)))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL) (($ $ (-536 |#1|)) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ $ (-536 |#1|)) NIL) (($ (-536 |#1|) $) NIL)))
-(((-487 |#1| |#2|) (-305 (-536 |#1|)) (-852) (-852)) (T -487))
-NIL
-(-305 (-536 |#1|))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#1| $ (-523) (-523) |#1|) 33)) (-1205 (($ $ (-523) |#4|) NIL)) (-2963 (($ $ (-523) |#5|) NIL)) (-1640 (($) NIL T CONST)) (-2823 ((|#4| $ (-523)) NIL)) (-3073 ((|#1| $ (-523) (-523) |#1|) 32)) (-3002 ((|#1| $ (-523) (-523)) 30)) (-3133 (((-589 |#1|) $) NIL)) (-3656 (((-710) $) 26)) (-2348 (($ (-710) (-710) |#1|) 23)) (-3668 (((-710) $) 28)) (-1344 (((-108) $ (-710)) NIL)) (-1392 (((-523) $) 24)) (-1219 (((-523) $) 25)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2102 (((-523) $) 27)) (-3328 (((-523) $) 29)) (-3063 (($ (-1 |#1| |#1|) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) 36 (|has| |#1| (-1016)))) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2408 (($ $ |#1|) NIL)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) 14)) (-4055 (($) 15)) (-1502 ((|#1| $ (-523) (-523)) 31) ((|#1| $ (-523) (-523) |#1|) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) NIL)) (-2032 ((|#5| $ (-523)) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-488 |#1| |#2| |#3| |#4| |#5|) (-55 |#1| |#4| |#5|) (-1123) (-523) (-523) (-349 |#1|) (-349 |#1|)) (T -488))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#1| $ (-525) (-525) |#1|) NIL)) (-2775 (($ $ (-525) (-469 |#1| |#3|)) NIL)) (-1743 (($ $ (-525) (-469 |#1| |#2|)) NIL)) (-3798 (($) NIL T CONST)) (-3725 (((-469 |#1| |#3|) $ (-525)) NIL)) (-3255 ((|#1| $ (-525) (-525) |#1|) NIL)) (-3217 ((|#1| $ (-525) (-525)) NIL)) (-3454 (((-591 |#1|) $) NIL)) (-2281 (((-712) $) NIL)) (-1268 (($ (-712) (-712) |#1|) NIL)) (-2296 (((-712) $) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-1755 (((-525) $) NIL)) (-1639 (((-525) $) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4230 (((-525) $) NIL)) (-2631 (((-525) $) NIL)) (-3249 (($ (-1 |#1| |#1|) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-1941 (($ $ |#1|) NIL)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#1| $ (-525) (-525)) NIL) ((|#1| $ (-525) (-525) |#1|) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) NIL)) (-1793 (((-469 |#1| |#2|) $ (-525)) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-470 |#1| |#2| |#3|) (-55 |#1| (-469 |#1| |#3|) (-469 |#1| |#2|)) (-1125) (-525) (-525)) (T -470))
+NIL
+(-55 |#1| (-469 |#1| |#3|) (-469 |#1| |#2|))
+((-2894 (((-591 (-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|)))) (-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))) (-712) (-712)) 27)) (-1460 (((-591 (-1085 |#1|)) |#1| (-712) (-712) (-712)) 34)) (-2714 (((-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))) (-591 |#3|) (-591 (-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|)))) (-712)) 85)))
+(((-471 |#1| |#2| |#3|) (-10 -7 (-15 -1460 ((-591 (-1085 |#1|)) |#1| (-712) (-712) (-712))) (-15 -2894 ((-591 (-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|)))) (-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))) (-712) (-712))) (-15 -2714 ((-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))) (-591 |#3|) (-591 (-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|)))) (-712)))) (-327) (-1147 |#1|) (-1147 |#2|)) (T -471))
+((-2714 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-591 *8)) (-5 *4 (-591 (-2 (|:| -4003 (-631 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-631 *7))))) (-5 *5 (-712)) (-4 *8 (-1147 *7)) (-4 *7 (-1147 *6)) (-4 *6 (-327)) (-5 *2 (-2 (|:| -4003 (-631 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-631 *7)))) (-5 *1 (-471 *6 *7 *8)))) (-2894 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-712)) (-4 *5 (-327)) (-4 *6 (-1147 *5)) (-5 *2 (-591 (-2 (|:| -4003 (-631 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-631 *6))))) (-5 *1 (-471 *5 *6 *7)) (-5 *3 (-2 (|:| -4003 (-631 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-631 *6)))) (-4 *7 (-1147 *6)))) (-1460 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-712)) (-4 *3 (-327)) (-4 *5 (-1147 *3)) (-5 *2 (-591 (-1085 *3))) (-5 *1 (-471 *3 *5 *6)) (-4 *6 (-1147 *5)))))
+(-10 -7 (-15 -1460 ((-591 (-1085 |#1|)) |#1| (-712) (-712) (-712))) (-15 -2894 ((-591 (-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|)))) (-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))) (-712) (-712))) (-15 -2714 ((-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))) (-591 |#3|) (-591 (-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|)))) (-712))))
+((-3074 (((-2 (|:| -4003 (-631 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-631 |#1|))) (-2 (|:| -4003 (-631 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-631 |#1|))) (-2 (|:| -4003 (-631 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-631 |#1|)))) 62)) (-2962 ((|#1| (-631 |#1|) |#1| (-712)) 25)) (-2172 (((-712) (-712) (-712)) 30)) (-1825 (((-631 |#1|) (-631 |#1|) (-631 |#1|)) 42)) (-2474 (((-631 |#1|) (-631 |#1|) (-631 |#1|) |#1|) 50) (((-631 |#1|) (-631 |#1|) (-631 |#1|)) 47)) (-2057 ((|#1| (-631 |#1|) (-631 |#1|) |#1| (-525)) 29)) (-3499 ((|#1| (-631 |#1|)) 18)))
+(((-472 |#1| |#2| |#3|) (-10 -7 (-15 -3499 (|#1| (-631 |#1|))) (-15 -2962 (|#1| (-631 |#1|) |#1| (-712))) (-15 -2057 (|#1| (-631 |#1|) (-631 |#1|) |#1| (-525))) (-15 -2172 ((-712) (-712) (-712))) (-15 -2474 ((-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -2474 ((-631 |#1|) (-631 |#1|) (-631 |#1|) |#1|)) (-15 -1825 ((-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -3074 ((-2 (|:| -4003 (-631 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-631 |#1|))) (-2 (|:| -4003 (-631 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-631 |#1|))) (-2 (|:| -4003 (-631 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-631 |#1|)))))) (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $)))) (-1147 |#1|) (-387 |#1| |#2|)) (T -472))
+((-3074 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -4003 (-631 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-631 *3)))) (-4 *3 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $))))) (-4 *4 (-1147 *3)) (-5 *1 (-472 *3 *4 *5)) (-4 *5 (-387 *3 *4)))) (-1825 (*1 *2 *2 *2) (-12 (-5 *2 (-631 *3)) (-4 *3 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $))))) (-4 *4 (-1147 *3)) (-5 *1 (-472 *3 *4 *5)) (-4 *5 (-387 *3 *4)))) (-2474 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-631 *3)) (-4 *3 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $))))) (-4 *4 (-1147 *3)) (-5 *1 (-472 *3 *4 *5)) (-4 *5 (-387 *3 *4)))) (-2474 (*1 *2 *2 *2) (-12 (-5 *2 (-631 *3)) (-4 *3 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $))))) (-4 *4 (-1147 *3)) (-5 *1 (-472 *3 *4 *5)) (-4 *5 (-387 *3 *4)))) (-2172 (*1 *2 *2 *2) (-12 (-5 *2 (-712)) (-4 *3 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $))))) (-4 *4 (-1147 *3)) (-5 *1 (-472 *3 *4 *5)) (-4 *5 (-387 *3 *4)))) (-2057 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-631 *2)) (-5 *4 (-525)) (-4 *2 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $))))) (-4 *5 (-1147 *2)) (-5 *1 (-472 *2 *5 *6)) (-4 *6 (-387 *2 *5)))) (-2962 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-631 *2)) (-5 *4 (-712)) (-4 *2 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $))))) (-4 *5 (-1147 *2)) (-5 *1 (-472 *2 *5 *6)) (-4 *6 (-387 *2 *5)))) (-3499 (*1 *2 *3) (-12 (-5 *3 (-631 *2)) (-4 *4 (-1147 *2)) (-4 *2 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $))))) (-5 *1 (-472 *2 *4 *5)) (-4 *5 (-387 *2 *4)))))
+(-10 -7 (-15 -3499 (|#1| (-631 |#1|))) (-15 -2962 (|#1| (-631 |#1|) |#1| (-712))) (-15 -2057 (|#1| (-631 |#1|) (-631 |#1|) |#1| (-525))) (-15 -2172 ((-712) (-712) (-712))) (-15 -2474 ((-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -2474 ((-631 |#1|) (-631 |#1|) (-631 |#1|) |#1|)) (-15 -1825 ((-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -3074 ((-2 (|:| -4003 (-631 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-631 |#1|))) (-2 (|:| -4003 (-631 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-631 |#1|))) (-2 (|:| -4003 (-631 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-631 |#1|))))))
+((-3008 (((-108) $ $) NIL)) (-1917 (($ $) NIL)) (-3931 (($ $ $) 35)) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3203 (((-108) $) NIL (|has| (-108) (-788))) (((-108) (-1 (-108) (-108) (-108)) $) NIL)) (-4026 (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| (-108) (-788)))) (($ (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4251)))) (-3327 (($ $) NIL (|has| (-108) (-788))) (($ (-1 (-108) (-108) (-108)) $) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-3186 (((-108) $ (-1138 (-525)) (-108)) NIL (|has| $ (-6 -4251))) (((-108) $ (-525) (-108)) 36 (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-108) (-1018))))) (-3677 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4250))) (($ (-108) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-108) (-1018))))) (-1227 (((-108) (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-108) (-108)) $ (-108)) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-108) (-108)) $ (-108) (-108)) NIL (-12 (|has| $ (-6 -4250)) (|has| (-108) (-1018))))) (-3255 (((-108) $ (-525) (-108)) NIL (|has| $ (-6 -4251)))) (-3217 (((-108) $ (-525)) NIL)) (-3004 (((-525) (-108) $ (-525)) NIL (|has| (-108) (-1018))) (((-525) (-108) $) NIL (|has| (-108) (-1018))) (((-525) (-1 (-108) (-108)) $) NIL)) (-3454 (((-591 (-108)) $) NIL (|has| $ (-6 -4250)))) (-1209 (($ $ $) 33)) (-2247 (($ $) NIL)) (-2580 (($ $ $) NIL)) (-1268 (($ (-712) (-108)) 23)) (-3661 (($ $ $) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) 8 (|has| (-525) (-788)))) (-3741 (($ $ $) NIL)) (-2131 (($ $ $) NIL (|has| (-108) (-788))) (($ (-1 (-108) (-108) (-108)) $ $) NIL)) (-2552 (((-591 (-108)) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-108) (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL)) (-3249 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-108) (-108) (-108)) $ $) 30) (($ (-1 (-108) (-108)) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-4189 (($ $ $ (-525)) NIL) (($ (-108) $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL)) (-3066 (((-108) $) NIL (|has| (-525) (-788)))) (-2069 (((-3 (-108) "failed") (-1 (-108) (-108)) $) NIL)) (-1941 (($ $ (-108)) NIL (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-108)) (-591 (-108))) NIL (-12 (|has| (-108) (-288 (-108))) (|has| (-108) (-1018)))) (($ $ (-108) (-108)) NIL (-12 (|has| (-108) (-288 (-108))) (|has| (-108) (-1018)))) (($ $ (-273 (-108))) NIL (-12 (|has| (-108) (-288 (-108))) (|has| (-108) (-1018)))) (($ $ (-591 (-273 (-108)))) NIL (-12 (|has| (-108) (-288 (-108))) (|has| (-108) (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-108) (-1018))))) (-3339 (((-591 (-108)) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) 24)) (-3164 (($ $ (-1138 (-525))) NIL) (((-108) $ (-525)) 18) (((-108) $ (-525) (-108)) NIL)) (-2777 (($ $ (-1138 (-525))) NIL) (($ $ (-525)) NIL)) (-2064 (((-712) (-108) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-108) (-1018)))) (((-712) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4250)))) (-4063 (($ $ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3199 (($ $) 25)) (-1408 (((-501) $) NIL (|has| (-108) (-566 (-501))))) (-3036 (($ (-591 (-108))) NIL)) (-3690 (($ (-591 $)) NIL) (($ $ $) NIL) (($ (-108) $) NIL) (($ $ (-108)) NIL)) (-3022 (((-796) $) 22)) (-4158 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4250)))) (-1213 (($ $ $) 31)) (-3710 (($ $) NIL)) (-3625 (($ $ $) NIL)) (-2201 (($ $ $) 39)) (-2213 (($ $) 37)) (-2191 (($ $ $) 38)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 26)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 27)) (-3613 (($ $ $) NIL)) (-4045 (((-712) $) 10 (|has| $ (-6 -4250)))))
+(((-473 |#1|) (-13 (-119) (-10 -8 (-15 -2213 ($ $)) (-15 -2201 ($ $ $)) (-15 -2191 ($ $ $)))) (-525)) (T -473))
+((-2213 (*1 *1 *1) (-12 (-5 *1 (-473 *2)) (-14 *2 (-525)))) (-2201 (*1 *1 *1 *1) (-12 (-5 *1 (-473 *2)) (-14 *2 (-525)))) (-2191 (*1 *1 *1 *1) (-12 (-5 *1 (-473 *2)) (-14 *2 (-525)))))
+(-13 (-119) (-10 -8 (-15 -2213 ($ $)) (-15 -2201 ($ $ $)) (-15 -2191 ($ $ $))))
+((-2348 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1085 |#4|)) 35)) (-1469 (((-1085 |#4|) (-1 |#4| |#1|) |#2|) 31) ((|#2| (-1 |#1| |#4|) (-1085 |#4|)) 22)) (-3510 (((-3 (-631 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-631 (-1085 |#4|))) 46)) (-3837 (((-1085 (-1085 |#4|)) (-1 |#4| |#1|) |#3|) 55)))
+(((-474 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1469 (|#2| (-1 |#1| |#4|) (-1085 |#4|))) (-15 -1469 ((-1085 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -2348 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1085 |#4|))) (-15 -3510 ((-3 (-631 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-631 (-1085 |#4|)))) (-15 -3837 ((-1085 (-1085 |#4|)) (-1 |#4| |#1|) |#3|))) (-975) (-1147 |#1|) (-1147 |#2|) (-975)) (T -474))
+((-3837 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-975)) (-4 *7 (-975)) (-4 *6 (-1147 *5)) (-5 *2 (-1085 (-1085 *7))) (-5 *1 (-474 *5 *6 *4 *7)) (-4 *4 (-1147 *6)))) (-3510 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8)) (-5 *4 (-631 (-1085 *8))) (-4 *5 (-975)) (-4 *8 (-975)) (-4 *6 (-1147 *5)) (-5 *2 (-631 *6)) (-5 *1 (-474 *5 *6 *7 *8)) (-4 *7 (-1147 *6)))) (-2348 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1085 *7)) (-4 *5 (-975)) (-4 *7 (-975)) (-4 *2 (-1147 *5)) (-5 *1 (-474 *5 *2 *6 *7)) (-4 *6 (-1147 *2)))) (-1469 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-975)) (-4 *7 (-975)) (-4 *4 (-1147 *5)) (-5 *2 (-1085 *7)) (-5 *1 (-474 *5 *4 *6 *7)) (-4 *6 (-1147 *4)))) (-1469 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1085 *7)) (-4 *5 (-975)) (-4 *7 (-975)) (-4 *2 (-1147 *5)) (-5 *1 (-474 *5 *2 *6 *7)) (-4 *6 (-1147 *2)))))
+(-10 -7 (-15 -1469 (|#2| (-1 |#1| |#4|) (-1085 |#4|))) (-15 -1469 ((-1085 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -2348 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1085 |#4|))) (-15 -3510 ((-3 (-631 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-631 (-1085 |#4|)))) (-15 -3837 ((-1085 (-1085 |#4|)) (-1 |#4| |#1|) |#3|)))
+((-3008 (((-108) $ $) NIL)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3600 (((-1176) $) 18)) (-3164 (((-1072) $ (-1089)) 22)) (-3551 (((-1176) $) 14)) (-3022 (((-796) $) 20) (($ (-1072)) 19)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 8)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 7)))
+(((-475) (-13 (-788) (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 ((-1176) $)) (-15 -3600 ((-1176) $)) (-15 -3022 ($ (-1072)))))) (T -475))
+((-3164 (*1 *2 *1 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-1072)) (-5 *1 (-475)))) (-3551 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-475)))) (-3600 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-475)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-475)))))
+(-13 (-788) (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 ((-1176) $)) (-15 -3600 ((-1176) $)) (-15 -3022 ($ (-1072)))))
+((-2004 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-2835 ((|#1| |#4|) 10)) (-3890 ((|#3| |#4|) 17)))
+(((-476 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2835 (|#1| |#4|)) (-15 -3890 (|#3| |#4|)) (-15 -2004 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-517) (-923 |#1|) (-351 |#1|) (-351 |#2|)) (T -476))
+((-2004 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *5 (-923 *4)) (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4))) (-5 *1 (-476 *4 *5 *6 *3)) (-4 *6 (-351 *4)) (-4 *3 (-351 *5)))) (-3890 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *5 (-923 *4)) (-4 *2 (-351 *4)) (-5 *1 (-476 *4 *5 *2 *3)) (-4 *3 (-351 *5)))) (-2835 (*1 *2 *3) (-12 (-4 *4 (-923 *2)) (-4 *2 (-517)) (-5 *1 (-476 *2 *4 *5 *3)) (-4 *5 (-351 *2)) (-4 *3 (-351 *4)))))
+(-10 -7 (-15 -2835 (|#1| |#4|)) (-15 -3890 (|#3| |#4|)) (-15 -2004 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
+((-3008 (((-108) $ $) NIL)) (-2371 (((-108) $ (-591 |#3|)) 104) (((-108) $) 105)) (-1800 (((-108) $) 148)) (-1295 (($ $ |#4|) 96) (($ $ |#4| (-591 |#3|)) 100)) (-3432 (((-1079 (-591 (-885 |#1|)) (-591 (-273 (-885 |#1|)))) (-591 |#4|)) 141 (|has| |#3| (-566 (-1089))))) (-2963 (($ $ $) 90) (($ $ |#4|) 88)) (-2824 (((-108) $) 147)) (-1979 (($ $) 108)) (-2339 (((-1072) $) NIL)) (-3516 (($ $ $) 82) (($ (-591 $)) 84)) (-1510 (((-108) |#4| $) 107)) (-1412 (((-108) $ $) 71)) (-1536 (($ (-591 |#4|)) 89)) (-2047 (((-1036) $) NIL)) (-3500 (($ (-591 |#4|)) 145)) (-2414 (((-108) $) 146)) (-3805 (($ $) 73)) (-3942 (((-591 |#4|) $) 57)) (-2021 (((-2 (|:| |mval| (-631 |#1|)) (|:| |invmval| (-631 |#1|)) (|:| |genIdeal| $)) $ (-591 |#3|)) NIL)) (-1907 (((-108) |#4| $) 76)) (-4224 (((-525) $ (-591 |#3|)) 109) (((-525) $) 110)) (-3022 (((-796) $) 144) (($ (-591 |#4|)) 85)) (-2080 (($ (-2 (|:| |mval| (-631 |#1|)) (|:| |invmval| (-631 |#1|)) (|:| |genIdeal| $))) NIL)) (-4096 (((-108) $ $) 72)) (-4156 (($ $ $) 92)) (** (($ $ (-712)) 95)) (* (($ $ $) 94)))
+(((-477 |#1| |#2| |#3| |#4|) (-13 (-1018) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-712))) (-15 -4156 ($ $ $)) (-15 -2824 ((-108) $)) (-15 -1800 ((-108) $)) (-15 -1907 ((-108) |#4| $)) (-15 -1412 ((-108) $ $)) (-15 -1510 ((-108) |#4| $)) (-15 -2371 ((-108) $ (-591 |#3|))) (-15 -2371 ((-108) $)) (-15 -3516 ($ $ $)) (-15 -3516 ($ (-591 $))) (-15 -2963 ($ $ $)) (-15 -2963 ($ $ |#4|)) (-15 -3805 ($ $)) (-15 -2021 ((-2 (|:| |mval| (-631 |#1|)) (|:| |invmval| (-631 |#1|)) (|:| |genIdeal| $)) $ (-591 |#3|))) (-15 -2080 ($ (-2 (|:| |mval| (-631 |#1|)) (|:| |invmval| (-631 |#1|)) (|:| |genIdeal| $)))) (-15 -4224 ((-525) $ (-591 |#3|))) (-15 -4224 ((-525) $)) (-15 -1979 ($ $)) (-15 -1536 ($ (-591 |#4|))) (-15 -3500 ($ (-591 |#4|))) (-15 -2414 ((-108) $)) (-15 -3942 ((-591 |#4|) $)) (-15 -3022 ($ (-591 |#4|))) (-15 -1295 ($ $ |#4|)) (-15 -1295 ($ $ |#4| (-591 |#3|))) (IF (|has| |#3| (-566 (-1089))) (-15 -3432 ((-1079 (-591 (-885 |#1|)) (-591 (-273 (-885 |#1|)))) (-591 |#4|))) |%noBranch|))) (-341) (-734) (-788) (-882 |#1| |#2| |#3|)) (T -477))
+((* (*1 *1 *1 *1) (-12 (-4 *2 (-341)) (-4 *3 (-734)) (-4 *4 (-788)) (-5 *1 (-477 *2 *3 *4 *5)) (-4 *5 (-882 *2 *3 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5)))) (-4156 (*1 *1 *1 *1) (-12 (-4 *2 (-341)) (-4 *3 (-734)) (-4 *4 (-788)) (-5 *1 (-477 *2 *3 *4 *5)) (-4 *5 (-882 *2 *3 *4)))) (-2824 (*1 *2 *1) (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108)) (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5)))) (-1800 (*1 *2 *1) (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108)) (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5)))) (-1907 (*1 *2 *3 *1) (-12 (-4 *4 (-341)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-477 *4 *5 *6 *3)) (-4 *3 (-882 *4 *5 *6)))) (-1412 (*1 *2 *1 *1) (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108)) (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5)))) (-1510 (*1 *2 *3 *1) (-12 (-4 *4 (-341)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-477 *4 *5 *6 *3)) (-4 *3 (-882 *4 *5 *6)))) (-2371 (*1 *2 *1 *3) (-12 (-5 *3 (-591 *6)) (-4 *6 (-788)) (-4 *4 (-341)) (-4 *5 (-734)) (-5 *2 (-108)) (-5 *1 (-477 *4 *5 *6 *7)) (-4 *7 (-882 *4 *5 *6)))) (-2371 (*1 *2 *1) (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108)) (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5)))) (-3516 (*1 *1 *1 *1) (-12 (-4 *2 (-341)) (-4 *3 (-734)) (-4 *4 (-788)) (-5 *1 (-477 *2 *3 *4 *5)) (-4 *5 (-882 *2 *3 *4)))) (-3516 (*1 *1 *2) (-12 (-5 *2 (-591 (-477 *3 *4 *5 *6))) (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5)))) (-2963 (*1 *1 *1 *1) (-12 (-4 *2 (-341)) (-4 *3 (-734)) (-4 *4 (-788)) (-5 *1 (-477 *2 *3 *4 *5)) (-4 *5 (-882 *2 *3 *4)))) (-2963 (*1 *1 *1 *2) (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-477 *3 *4 *5 *2)) (-4 *2 (-882 *3 *4 *5)))) (-3805 (*1 *1 *1) (-12 (-4 *2 (-341)) (-4 *3 (-734)) (-4 *4 (-788)) (-5 *1 (-477 *2 *3 *4 *5)) (-4 *5 (-882 *2 *3 *4)))) (-2021 (*1 *2 *1 *3) (-12 (-5 *3 (-591 *6)) (-4 *6 (-788)) (-4 *4 (-341)) (-4 *5 (-734)) (-5 *2 (-2 (|:| |mval| (-631 *4)) (|:| |invmval| (-631 *4)) (|:| |genIdeal| (-477 *4 *5 *6 *7)))) (-5 *1 (-477 *4 *5 *6 *7)) (-4 *7 (-882 *4 *5 *6)))) (-2080 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |mval| (-631 *3)) (|:| |invmval| (-631 *3)) (|:| |genIdeal| (-477 *3 *4 *5 *6)))) (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5)))) (-4224 (*1 *2 *1 *3) (-12 (-5 *3 (-591 *6)) (-4 *6 (-788)) (-4 *4 (-341)) (-4 *5 (-734)) (-5 *2 (-525)) (-5 *1 (-477 *4 *5 *6 *7)) (-4 *7 (-882 *4 *5 *6)))) (-4224 (*1 *2 *1) (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-525)) (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5)))) (-1979 (*1 *1 *1) (-12 (-4 *2 (-341)) (-4 *3 (-734)) (-4 *4 (-788)) (-5 *1 (-477 *2 *3 *4 *5)) (-4 *5 (-882 *2 *3 *4)))) (-1536 (*1 *1 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-477 *3 *4 *5 *6)))) (-3500 (*1 *1 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-477 *3 *4 *5 *6)))) (-2414 (*1 *2 *1) (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108)) (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5)))) (-3942 (*1 *2 *1) (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *6)) (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-477 *3 *4 *5 *6)))) (-1295 (*1 *1 *1 *2) (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-477 *3 *4 *5 *2)) (-4 *2 (-882 *3 *4 *5)))) (-1295 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-591 *6)) (-4 *6 (-788)) (-4 *4 (-341)) (-4 *5 (-734)) (-5 *1 (-477 *4 *5 *6 *2)) (-4 *2 (-882 *4 *5 *6)))) (-3432 (*1 *2 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-882 *4 *5 *6)) (-4 *6 (-566 (-1089))) (-4 *4 (-341)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-1079 (-591 (-885 *4)) (-591 (-273 (-885 *4))))) (-5 *1 (-477 *4 *5 *6 *7)))))
+(-13 (-1018) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-712))) (-15 -4156 ($ $ $)) (-15 -2824 ((-108) $)) (-15 -1800 ((-108) $)) (-15 -1907 ((-108) |#4| $)) (-15 -1412 ((-108) $ $)) (-15 -1510 ((-108) |#4| $)) (-15 -2371 ((-108) $ (-591 |#3|))) (-15 -2371 ((-108) $)) (-15 -3516 ($ $ $)) (-15 -3516 ($ (-591 $))) (-15 -2963 ($ $ $)) (-15 -2963 ($ $ |#4|)) (-15 -3805 ($ $)) (-15 -2021 ((-2 (|:| |mval| (-631 |#1|)) (|:| |invmval| (-631 |#1|)) (|:| |genIdeal| $)) $ (-591 |#3|))) (-15 -2080 ($ (-2 (|:| |mval| (-631 |#1|)) (|:| |invmval| (-631 |#1|)) (|:| |genIdeal| $)))) (-15 -4224 ((-525) $ (-591 |#3|))) (-15 -4224 ((-525) $)) (-15 -1979 ($ $)) (-15 -1536 ($ (-591 |#4|))) (-15 -3500 ($ (-591 |#4|))) (-15 -2414 ((-108) $)) (-15 -3942 ((-591 |#4|) $)) (-15 -3022 ($ (-591 |#4|))) (-15 -1295 ($ $ |#4|)) (-15 -1295 ($ $ |#4| (-591 |#3|))) (IF (|has| |#3| (-566 (-1089))) (-15 -3432 ((-1079 (-591 (-885 |#1|)) (-591 (-273 (-885 |#1|)))) (-591 |#4|))) |%noBranch|)))
+((-3119 (((-108) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525))))) 149)) (-1451 (((-108) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525))))) 150)) (-1238 (((-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525))))) 108)) (-2744 (((-108) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525))))) NIL)) (-1635 (((-591 (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525))))) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525))))) 152)) (-2611 (((-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))) (-591 (-798 |#1|))) 164)))
+(((-478 |#1| |#2|) (-10 -7 (-15 -3119 ((-108) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))))) (-15 -1451 ((-108) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))))) (-15 -2744 ((-108) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))))) (-15 -1238 ((-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))))) (-15 -1635 ((-591 (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525))))) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))))) (-15 -2611 ((-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))) (-591 (-798 |#1|))))) (-591 (-1089)) (-712)) (T -478))
+((-2611 (*1 *2 *2 *3) (-12 (-5 *2 (-477 (-385 (-525)) (-220 *5 (-712)) (-798 *4) (-227 *4 (-385 (-525))))) (-5 *3 (-591 (-798 *4))) (-14 *4 (-591 (-1089))) (-14 *5 (-712)) (-5 *1 (-478 *4 *5)))) (-1635 (*1 *2 *3) (-12 (-14 *4 (-591 (-1089))) (-14 *5 (-712)) (-5 *2 (-591 (-477 (-385 (-525)) (-220 *5 (-712)) (-798 *4) (-227 *4 (-385 (-525)))))) (-5 *1 (-478 *4 *5)) (-5 *3 (-477 (-385 (-525)) (-220 *5 (-712)) (-798 *4) (-227 *4 (-385 (-525))))))) (-1238 (*1 *2 *2) (-12 (-5 *2 (-477 (-385 (-525)) (-220 *4 (-712)) (-798 *3) (-227 *3 (-385 (-525))))) (-14 *3 (-591 (-1089))) (-14 *4 (-712)) (-5 *1 (-478 *3 *4)))) (-2744 (*1 *2 *3) (-12 (-5 *3 (-477 (-385 (-525)) (-220 *5 (-712)) (-798 *4) (-227 *4 (-385 (-525))))) (-14 *4 (-591 (-1089))) (-14 *5 (-712)) (-5 *2 (-108)) (-5 *1 (-478 *4 *5)))) (-1451 (*1 *2 *3) (-12 (-5 *3 (-477 (-385 (-525)) (-220 *5 (-712)) (-798 *4) (-227 *4 (-385 (-525))))) (-14 *4 (-591 (-1089))) (-14 *5 (-712)) (-5 *2 (-108)) (-5 *1 (-478 *4 *5)))) (-3119 (*1 *2 *3) (-12 (-5 *3 (-477 (-385 (-525)) (-220 *5 (-712)) (-798 *4) (-227 *4 (-385 (-525))))) (-14 *4 (-591 (-1089))) (-14 *5 (-712)) (-5 *2 (-108)) (-5 *1 (-478 *4 *5)))))
+(-10 -7 (-15 -3119 ((-108) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))))) (-15 -1451 ((-108) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))))) (-15 -2744 ((-108) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))))) (-15 -1238 ((-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))))) (-15 -1635 ((-591 (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525))))) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))))) (-15 -2611 ((-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))) (-477 (-385 (-525)) (-220 |#2| (-712)) (-798 |#1|) (-227 |#1| (-385 (-525)))) (-591 (-798 |#1|)))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1710 (($ $) NIL)) (-1480 (($ |#1| |#2|) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-2863 ((|#2| $) NIL)) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4191 (($) 12 T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) 11) (($ $ $) 24)) (-4156 (($ $ $) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 18)))
+(((-479 |#1| |#2|) (-13 (-21) (-481 |#1| |#2|)) (-21) (-788)) (T -479))
+NIL
+(-13 (-21) (-481 |#1| |#2|))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 12)) (-3798 (($) NIL T CONST)) (-1710 (($ $) 28)) (-1480 (($ |#1| |#2|) 25)) (-1340 (($ (-1 |#1| |#1|) $) 27)) (-2863 ((|#2| $) NIL)) (-1678 ((|#1| $) 29)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4191 (($) 10 T CONST)) (-4096 (((-108) $ $) NIL)) (-4156 (($ $ $) 18)) (* (($ (-854) $) NIL) (($ (-712) $) 23)))
+(((-480 |#1| |#2|) (-13 (-23) (-481 |#1| |#2|)) (-23) (-788)) (T -480))
+NIL
+(-13 (-23) (-481 |#1| |#2|))
+((-3008 (((-108) $ $) 7)) (-1710 (($ $) 13)) (-1480 (($ |#1| |#2|) 16)) (-1340 (($ (-1 |#1| |#1|) $) 17)) (-2863 ((|#2| $) 14)) (-1678 ((|#1| $) 15)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4096 (((-108) $ $) 6)))
+(((-481 |#1| |#2|) (-131) (-1018) (-788)) (T -481))
+((-1340 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-481 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-788)))) (-1480 (*1 *1 *2 *3) (-12 (-4 *1 (-481 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-788)))) (-1678 (*1 *2 *1) (-12 (-4 *1 (-481 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1018)))) (-2863 (*1 *2 *1) (-12 (-4 *1 (-481 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-788)))) (-1710 (*1 *1 *1) (-12 (-4 *1 (-481 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-788)))))
+(-13 (-1018) (-10 -8 (-15 -1340 ($ (-1 |t#1| |t#1|) $)) (-15 -1480 ($ |t#1| |t#2|)) (-15 -1678 (|t#1| $)) (-15 -2863 (|t#2| $)) (-15 -1710 ($ $))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3798 (($) NIL T CONST)) (-1710 (($ $) NIL)) (-1480 (($ |#1| |#2|) NIL)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-2863 ((|#2| $) NIL)) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4191 (($) NIL T CONST)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 13)) (-4156 (($ $ $) NIL)) (* (($ (-712) $) NIL) (($ (-854) $) NIL)))
+(((-482 |#1| |#2|) (-13 (-733) (-481 |#1| |#2|)) (-733) (-788)) (T -482))
+NIL
+(-13 (-733) (-481 |#1| |#2|))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2593 (($ $ $) 16)) (-2157 (((-3 $ "failed") $ $) 13)) (-3798 (($) NIL T CONST)) (-1710 (($ $) NIL)) (-1480 (($ |#1| |#2|) NIL)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-2863 ((|#2| $) NIL)) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL)) (-4191 (($) NIL T CONST)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) NIL)) (-4156 (($ $ $) NIL)) (* (($ (-712) $) NIL) (($ (-854) $) NIL)))
+(((-483 |#1| |#2|) (-13 (-734) (-481 |#1| |#2|)) (-734) (-788)) (T -483))
+NIL
+(-13 (-734) (-481 |#1| |#2|))
+((-3008 (((-108) $ $) NIL)) (-1710 (($ $) 25)) (-1480 (($ |#1| |#2|) 22)) (-1340 (($ (-1 |#1| |#1|) $) 24)) (-2863 ((|#2| $) 27)) (-1678 ((|#1| $) 26)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 21)) (-4096 (((-108) $ $) 14)))
+(((-484 |#1| |#2|) (-481 |#1| |#2|) (-1018) (-788)) (T -484))
+NIL
+(-481 |#1| |#2|)
+((-4132 (($ $ (-591 |#2|) (-591 |#3|)) NIL) (($ $ |#2| |#3|) 12)))
+(((-485 |#1| |#2| |#3|) (-10 -8 (-15 -4132 (|#1| |#1| |#2| |#3|)) (-15 -4132 (|#1| |#1| (-591 |#2|) (-591 |#3|)))) (-486 |#2| |#3|) (-1018) (-1125)) (T -485))
+NIL
+(-10 -8 (-15 -4132 (|#1| |#1| |#2| |#3|)) (-15 -4132 (|#1| |#1| (-591 |#2|) (-591 |#3|))))
+((-4132 (($ $ (-591 |#1|) (-591 |#2|)) 7) (($ $ |#1| |#2|) 6)))
+(((-486 |#1| |#2|) (-131) (-1018) (-1125)) (T -486))
+((-4132 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 *4)) (-5 *3 (-591 *5)) (-4 *1 (-486 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-1125)))) (-4132 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-486 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1125)))))
+(-13 (-10 -8 (-15 -4132 ($ $ |t#1| |t#2|)) (-15 -4132 ($ $ (-591 |t#1|) (-591 |t#2|)))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 16)) (-1631 (((-591 (-2 (|:| |gen| |#1|) (|:| -1409 |#2|))) $) 18)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3032 (((-712) $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL)) (-3528 ((|#1| $) NIL)) (-2423 ((|#1| $ (-525)) 23)) (-3509 ((|#2| $ (-525)) 21)) (-3731 (($ (-1 |#1| |#1|) $) 46)) (-3086 (($ (-1 |#2| |#2|) $) 43)) (-2339 (((-1072) $) NIL)) (-3792 (($ $ $) 53 (|has| |#2| (-733)))) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 42) (($ |#1|) NIL)) (-2560 ((|#2| |#1| $) 49)) (-4191 (($) 11 T CONST)) (-4096 (((-108) $ $) 29)) (-4156 (($ $ $) 27) (($ |#1| $) 25)) (* (($ (-854) $) NIL) (($ (-712) $) 36) (($ |#2| |#1|) 31)))
+(((-487 |#1| |#2| |#3|) (-301 |#1| |#2|) (-1018) (-126) |#2|) (T -487))
+NIL
+(-301 |#1| |#2|)
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3203 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-788)))) (-4026 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4251))) (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| |#1| (-788))))) (-3327 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-788)))) (-3891 (((-108) $ (-712)) NIL)) (-3041 (((-108) (-108)) 25)) (-3186 ((|#1| $ (-525) |#1|) 28 (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) NIL (|has| $ (-6 -4251)))) (-1797 (($ (-1 (-108) |#1|) $) 52)) (-2305 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-3611 (($ $) 56 (|has| |#1| (-1018)))) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3901 (($ |#1| $) NIL (|has| |#1| (-1018))) (($ (-1 (-108) |#1|) $) 44)) (-3677 (($ |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) NIL)) (-3004 (((-525) (-1 (-108) |#1|) $) NIL) (((-525) |#1| $) NIL (|has| |#1| (-1018))) (((-525) |#1| $ (-525)) NIL (|has| |#1| (-1018)))) (-1647 (($ $ (-525)) 13)) (-1303 (((-712) $) 11)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-1268 (($ (-712) |#1|) 23)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) 21 (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2921 (($ $ $) NIL (|has| |#1| (-788))) (($ (-1 (-108) |#1| |#1|) $ $) 35)) (-2131 (($ (-1 (-108) |#1| |#1|) $ $) 36) (($ $ $) NIL (|has| |#1| (-788)))) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3468 (((-525) $) 20 (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-2470 (($ $ $ (-525)) 51) (($ |#1| $ (-525)) 37)) (-4189 (($ |#1| $ (-525)) NIL) (($ $ $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-2860 (($ (-591 |#1|)) 29)) (-3066 ((|#1| $) NIL (|has| (-525) (-788)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1941 (($ $ |#1|) 19 (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 40)) (-1615 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) 16)) (-3164 ((|#1| $ (-525) |#1|) NIL) ((|#1| $ (-525)) 33) (($ $ (-1138 (-525))) NIL)) (-1790 (($ $ (-1138 (-525))) 50) (($ $ (-525)) 45)) (-2777 (($ $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4063 (($ $ $ (-525)) 41 (|has| $ (-6 -4251)))) (-3199 (($ $) 32)) (-1408 (((-501) $) NIL (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) NIL)) (-1679 (($ $ $) 42) (($ $ |#1|) 39)) (-3690 (($ $ |#1|) NIL) (($ |#1| $) 38) (($ $ $) NIL) (($ (-591 $)) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4045 (((-712) $) 17 (|has| $ (-6 -4250)))))
+(((-488 |#1| |#2|) (-13 (-19 |#1|) (-261 |#1|) (-10 -8 (-15 -2860 ($ (-591 |#1|))) (-15 -1303 ((-712) $)) (-15 -1647 ($ $ (-525))) (-15 -3041 ((-108) (-108))))) (-1125) (-525)) (T -488))
+((-2860 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-5 *1 (-488 *3 *4)) (-14 *4 (-525)))) (-1303 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-488 *3 *4)) (-4 *3 (-1125)) (-14 *4 (-525)))) (-1647 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-488 *3 *4)) (-4 *3 (-1125)) (-14 *4 *2))) (-3041 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-488 *3 *4)) (-4 *3 (-1125)) (-14 *4 (-525)))))
+(-13 (-19 |#1|) (-261 |#1|) (-10 -8 (-15 -2860 ($ (-591 |#1|))) (-15 -1303 ((-712) $)) (-15 -1647 ($ $ (-525))) (-15 -3041 ((-108) (-108)))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2144 (((-108) $) NIL)) (-2834 (((-712)) NIL)) (-2569 (((-538 |#1|) $) NIL) (($ $ (-854)) NIL (|has| (-538 |#1|) (-346)))) (-3734 (((-1099 (-854) (-712)) (-525)) NIL (|has| (-538 |#1|) (-346)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3032 (((-712)) NIL (|has| (-538 |#1|) (-346)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-538 |#1|) "failed") $) NIL)) (-3528 (((-538 |#1|) $) NIL)) (-4171 (($ (-1171 (-538 |#1|))) NIL)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-538 |#1|) (-346)))) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) NIL (|has| (-538 |#1|) (-346)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-3944 (($) NIL (|has| (-538 |#1|) (-346)))) (-4104 (((-108) $) NIL (|has| (-538 |#1|) (-346)))) (-2299 (($ $ (-712)) NIL (-3321 (|has| (-538 |#1|) (-136)) (|has| (-538 |#1|) (-346)))) (($ $) NIL (-3321 (|has| (-538 |#1|) (-136)) (|has| (-538 |#1|) (-346))))) (-2744 (((-108) $) NIL)) (-3873 (((-854) $) NIL (|has| (-538 |#1|) (-346))) (((-774 (-854)) $) NIL (-3321 (|has| (-538 |#1|) (-136)) (|has| (-538 |#1|) (-346))))) (-2824 (((-108) $) NIL)) (-4046 (($) NIL (|has| (-538 |#1|) (-346)))) (-1751 (((-108) $) NIL (|has| (-538 |#1|) (-346)))) (-2771 (((-538 |#1|) $) NIL) (($ $ (-854)) NIL (|has| (-538 |#1|) (-346)))) (-2085 (((-3 $ "failed") $) NIL (|has| (-538 |#1|) (-346)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1382 (((-1085 (-538 |#1|)) $) NIL) (((-1085 $) $ (-854)) NIL (|has| (-538 |#1|) (-346)))) (-3016 (((-854) $) NIL (|has| (-538 |#1|) (-346)))) (-1924 (((-1085 (-538 |#1|)) $) NIL (|has| (-538 |#1|) (-346)))) (-3040 (((-1085 (-538 |#1|)) $) NIL (|has| (-538 |#1|) (-346))) (((-3 (-1085 (-538 |#1|)) "failed") $ $) NIL (|has| (-538 |#1|) (-346)))) (-2054 (($ $ (-1085 (-538 |#1|))) NIL (|has| (-538 |#1|) (-346)))) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| (-538 |#1|) (-346)) CONST)) (-2226 (($ (-854)) NIL (|has| (-538 |#1|) (-346)))) (-1476 (((-108) $) NIL)) (-2047 (((-1036) $) NIL)) (-3857 (($) NIL (|has| (-538 |#1|) (-346)))) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) NIL (|has| (-538 |#1|) (-346)))) (-1348 (((-396 $) $) NIL)) (-2163 (((-774 (-854))) NIL) (((-854)) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2953 (((-712) $) NIL (|has| (-538 |#1|) (-346))) (((-3 (-712) "failed") $ $) NIL (-3321 (|has| (-538 |#1|) (-136)) (|has| (-538 |#1|) (-346))))) (-4224 (((-128)) NIL)) (-3266 (($ $) NIL (|has| (-538 |#1|) (-346))) (($ $ (-712)) NIL (|has| (-538 |#1|) (-346)))) (-1316 (((-774 (-854)) $) NIL) (((-854) $) NIL)) (-1478 (((-1085 (-538 |#1|))) NIL)) (-2616 (($) NIL (|has| (-538 |#1|) (-346)))) (-1608 (($) NIL (|has| (-538 |#1|) (-346)))) (-3572 (((-1171 (-538 |#1|)) $) NIL) (((-631 (-538 |#1|)) (-1171 $)) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (|has| (-538 |#1|) (-346)))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) (($ (-538 |#1|)) NIL)) (-1437 (($ $) NIL (|has| (-538 |#1|) (-346))) (((-3 $ "failed") $) NIL (-3321 (|has| (-538 |#1|) (-136)) (|has| (-538 |#1|) (-346))))) (-2128 (((-712)) NIL)) (-4003 (((-1171 $)) NIL) (((-1171 $) (-854)) NIL)) (-2495 (((-108) $ $) NIL)) (-1884 (((-108) $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4227 (($ $) NIL (|has| (-538 |#1|) (-346))) (($ $ (-712)) NIL (|has| (-538 |#1|) (-346)))) (-4196 (($ $) NIL (|has| (-538 |#1|) (-346))) (($ $ (-712)) NIL (|has| (-538 |#1|) (-346)))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL) (($ $ (-538 |#1|)) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ $ (-538 |#1|)) NIL) (($ (-538 |#1|) $) NIL)))
+(((-489 |#1| |#2|) (-307 (-538 |#1|)) (-854) (-854)) (T -489))
+NIL
+(-307 (-538 |#1|))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#1| $ (-525) (-525) |#1|) 35)) (-2775 (($ $ (-525) |#4|) NIL)) (-1743 (($ $ (-525) |#5|) NIL)) (-3798 (($) NIL T CONST)) (-3725 ((|#4| $ (-525)) NIL)) (-3255 ((|#1| $ (-525) (-525) |#1|) 34)) (-3217 ((|#1| $ (-525) (-525)) 32)) (-3454 (((-591 |#1|) $) NIL)) (-2281 (((-712) $) 28)) (-1268 (($ (-712) (-712) |#1|) 25)) (-2296 (((-712) $) 30)) (-2910 (((-108) $ (-712)) NIL)) (-1755 (((-525) $) 26)) (-1639 (((-525) $) 27)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4230 (((-525) $) 29)) (-2631 (((-525) $) 31)) (-3249 (($ (-1 |#1| |#1|) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) 38 (|has| |#1| (-1018)))) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-1941 (($ $ |#1|) NIL)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) 14)) (-3209 (($) 16)) (-3164 ((|#1| $ (-525) (-525)) 33) ((|#1| $ (-525) (-525) |#1|) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) NIL)) (-1793 ((|#5| $ (-525)) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-490 |#1| |#2| |#3| |#4| |#5|) (-55 |#1| |#4| |#5|) (-1125) (-525) (-525) (-351 |#1|) (-351 |#1|)) (T -490))
NIL
(-55 |#1| |#4| |#5|)
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2058 ((|#1| $) NIL)) (-3972 ((|#1| $) NIL)) (-3548 (($ $) NIL)) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-3117 (($ $ (-523)) 59 (|has| $ (-6 -4249)))) (-4159 (((-108) $) NIL (|has| |#1| (-786))) (((-108) (-1 (-108) |#1| |#1|) $) NIL)) (-2361 (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| |#1| (-786)))) (($ (-1 (-108) |#1| |#1|) $) 57 (|has| $ (-6 -4249)))) (-3400 (($ $) NIL (|has| |#1| (-786))) (($ (-1 (-108) |#1| |#1|) $) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-3365 ((|#1| $ |#1|) NIL (|has| $ (-6 -4249)))) (-3546 (($ $ $) 23 (|has| $ (-6 -4249)))) (-2535 ((|#1| $ |#1|) NIL (|has| $ (-6 -4249)))) (-1957 ((|#1| $ |#1|) 21 (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4249))) ((|#1| $ "first" |#1|) 22 (|has| $ (-6 -4249))) (($ $ "rest" $) 24 (|has| $ (-6 -4249))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) NIL (|has| $ (-6 -4249))) ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) NIL (|has| $ (-6 -4249)))) (-3627 (($ (-1 (-108) |#1|) $) NIL)) (-1299 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-3962 ((|#1| $) NIL)) (-1640 (($) NIL T CONST)) (-4091 (($ $) 28 (|has| $ (-6 -4249)))) (-4082 (($ $) 29)) (-3891 (($ $) 18) (($ $ (-710)) 32)) (-2543 (($ $) 55 (|has| |#1| (-1016)))) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-1869 (($ |#1| $) NIL (|has| |#1| (-1016))) (($ (-1 (-108) |#1|) $) NIL)) (-2231 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3073 ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) NIL)) (-2527 (((-108) $) NIL)) (-1894 (((-523) |#1| $ (-523)) NIL (|has| |#1| (-1016))) (((-523) |#1| $) NIL (|has| |#1| (-1016))) (((-523) (-1 (-108) |#1|) $) NIL)) (-3133 (((-589 |#1|) $) 27 (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) NIL)) (-3339 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2348 (($ (-710) |#1|) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) 31 (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-3325 (($ $ $) NIL (|has| |#1| (-786))) (($ (-1 (-108) |#1| |#1|) $ $) 58)) (-3123 (($ $ $) NIL (|has| |#1| (-786))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 53 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3745 (($ |#1|) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-2112 (((-589 |#1|) $) NIL)) (-3391 (((-108) $) NIL)) (-3841 (((-1070) $) 51 (|has| |#1| (-1016)))) (-2247 ((|#1| $) NIL) (($ $ (-710)) NIL)) (-3862 (($ $ $ (-523)) NIL) (($ |#1| $ (-523)) NIL)) (-3334 (($ $ $ (-523)) NIL) (($ |#1| $ (-523)) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-3879 ((|#1| $) 13) (($ $ (-710)) NIL)) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2408 (($ $ |#1|) NIL (|has| $ (-6 -4249)))) (-3214 (((-108) $) NIL)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 12)) (-1410 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) NIL)) (-3163 (((-108) $) 17)) (-4055 (($) 16)) (-1502 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1136 (-523))) NIL) ((|#1| $ (-523)) NIL) ((|#1| $ (-523) |#1|) NIL)) (-2981 (((-523) $ $) NIL)) (-1314 (($ $ (-1136 (-523))) NIL) (($ $ (-523)) NIL)) (-3725 (($ $ (-1136 (-523))) NIL) (($ $ (-523)) NIL)) (-2837 (((-108) $) 34)) (-2238 (($ $) NIL)) (-4198 (($ $) NIL (|has| $ (-6 -4249)))) (-3647 (((-710) $) NIL)) (-2801 (($ $) 36)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2580 (($ $ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4124 (($ $) 35)) (-3077 (((-499) $) NIL (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 26)) (-1622 (($ $ $) 54) (($ $ |#1|) NIL)) (-2785 (($ $ $) NIL) (($ |#1| $) 10) (($ (-589 $)) NIL) (($ $ |#1|) NIL)) (-3976 (((-794) $) 46 (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) NIL)) (-4004 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) 48 (|has| |#1| (-1016)))) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-1271 (((-710) $) 9 (|has| $ (-6 -4248)))))
-(((-489 |#1| |#2|) (-609 |#1|) (-1123) (-523)) (T -489))
-NIL
-(-609 |#1|)
-((-1561 ((|#4| |#4|) 27)) (-2262 (((-710) |#4|) 32)) (-2534 (((-710) |#4|) 33)) (-3392 (((-589 |#3|) |#4|) 40 (|has| |#3| (-6 -4249)))) (-3714 (((-3 |#4| "failed") |#4|) 51)) (-4011 ((|#4| |#4|) 44)) (-1273 ((|#1| |#4|) 43)))
-(((-490 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1561 (|#4| |#4|)) (-15 -2262 ((-710) |#4|)) (-15 -2534 ((-710) |#4|)) (IF (|has| |#3| (-6 -4249)) (-15 -3392 ((-589 |#3|) |#4|)) |%noBranch|) (-15 -1273 (|#1| |#4|)) (-15 -4011 (|#4| |#4|)) (-15 -3714 ((-3 |#4| "failed") |#4|))) (-339) (-349 |#1|) (-349 |#1|) (-627 |#1| |#2| |#3|)) (T -490))
-((-3714 (*1 *2 *2) (|partial| -12 (-4 *3 (-339)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *1 (-490 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))) (-4011 (*1 *2 *2) (-12 (-4 *3 (-339)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *1 (-490 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))) (-1273 (*1 *2 *3) (-12 (-4 *4 (-349 *2)) (-4 *5 (-349 *2)) (-4 *2 (-339)) (-5 *1 (-490 *2 *4 *5 *3)) (-4 *3 (-627 *2 *4 *5)))) (-3392 (*1 *2 *3) (-12 (|has| *6 (-6 -4249)) (-4 *4 (-339)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4)) (-5 *2 (-589 *6)) (-5 *1 (-490 *4 *5 *6 *3)) (-4 *3 (-627 *4 *5 *6)))) (-2534 (*1 *2 *3) (-12 (-4 *4 (-339)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4)) (-5 *2 (-710)) (-5 *1 (-490 *4 *5 *6 *3)) (-4 *3 (-627 *4 *5 *6)))) (-2262 (*1 *2 *3) (-12 (-4 *4 (-339)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4)) (-5 *2 (-710)) (-5 *1 (-490 *4 *5 *6 *3)) (-4 *3 (-627 *4 *5 *6)))) (-1561 (*1 *2 *2) (-12 (-4 *3 (-339)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *1 (-490 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))))
-(-10 -7 (-15 -1561 (|#4| |#4|)) (-15 -2262 ((-710) |#4|)) (-15 -2534 ((-710) |#4|)) (IF (|has| |#3| (-6 -4249)) (-15 -3392 ((-589 |#3|) |#4|)) |%noBranch|) (-15 -1273 (|#1| |#4|)) (-15 -4011 (|#4| |#4|)) (-15 -3714 ((-3 |#4| "failed") |#4|)))
-((-1561 ((|#8| |#4|) 20)) (-3392 (((-589 |#3|) |#4|) 29 (|has| |#7| (-6 -4249)))) (-3714 (((-3 |#8| "failed") |#4|) 23)))
-(((-491 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1561 (|#8| |#4|)) (-15 -3714 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4249)) (-15 -3392 ((-589 |#3|) |#4|)) |%noBranch|)) (-515) (-349 |#1|) (-349 |#1|) (-627 |#1| |#2| |#3|) (-921 |#1|) (-349 |#5|) (-349 |#5|) (-627 |#5| |#6| |#7|)) (T -491))
-((-3392 (*1 *2 *3) (-12 (|has| *9 (-6 -4249)) (-4 *4 (-515)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4)) (-4 *7 (-921 *4)) (-4 *8 (-349 *7)) (-4 *9 (-349 *7)) (-5 *2 (-589 *6)) (-5 *1 (-491 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-627 *4 *5 *6)) (-4 *10 (-627 *7 *8 *9)))) (-3714 (*1 *2 *3) (|partial| -12 (-4 *4 (-515)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4)) (-4 *7 (-921 *4)) (-4 *2 (-627 *7 *8 *9)) (-5 *1 (-491 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-627 *4 *5 *6)) (-4 *8 (-349 *7)) (-4 *9 (-349 *7)))) (-1561 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4)) (-4 *7 (-921 *4)) (-4 *2 (-627 *7 *8 *9)) (-5 *1 (-491 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-627 *4 *5 *6)) (-4 *8 (-349 *7)) (-4 *9 (-349 *7)))))
-(-10 -7 (-15 -1561 (|#8| |#4|)) (-15 -3714 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4249)) (-15 -3392 ((-589 |#3|) |#4|)) |%noBranch|))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2448 (($ (-710) (-710)) NIL)) (-3594 (($ $ $) NIL)) (-1659 (($ (-554 |#1| |#3|)) NIL) (($ $) NIL)) (-2624 (((-108) $) NIL)) (-3152 (($ $ (-523) (-523)) 12)) (-3808 (($ $ (-523) (-523)) NIL)) (-1499 (($ $ (-523) (-523) (-523) (-523)) NIL)) (-2748 (($ $) NIL)) (-2108 (((-108) $) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-3704 (($ $ (-523) (-523) $) NIL)) (-4101 ((|#1| $ (-523) (-523) |#1|) NIL) (($ $ (-589 (-523)) (-589 (-523)) $) NIL)) (-1205 (($ $ (-523) (-554 |#1| |#3|)) NIL)) (-2963 (($ $ (-523) (-554 |#1| |#2|)) NIL)) (-1370 (($ (-710) |#1|) NIL)) (-1640 (($) NIL T CONST)) (-1561 (($ $) 21 (|has| |#1| (-284)))) (-2823 (((-554 |#1| |#3|) $ (-523)) NIL)) (-2262 (((-710) $) 24 (|has| |#1| (-515)))) (-3073 ((|#1| $ (-523) (-523) |#1|) NIL)) (-3002 ((|#1| $ (-523) (-523)) NIL)) (-3133 (((-589 |#1|) $) NIL)) (-2534 (((-710) $) 26 (|has| |#1| (-515)))) (-3392 (((-589 (-554 |#1| |#2|)) $) 29 (|has| |#1| (-515)))) (-3656 (((-710) $) NIL)) (-2348 (($ (-710) (-710) |#1|) NIL)) (-3668 (((-710) $) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-2082 ((|#1| $) 19 (|has| |#1| (-6 (-4250 "*"))))) (-1392 (((-523) $) 10)) (-1219 (((-523) $) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2102 (((-523) $) 11)) (-3328 (((-523) $) NIL)) (-3078 (($ (-589 (-589 |#1|))) NIL)) (-3063 (($ (-1 |#1| |#1|) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3522 (((-589 (-589 |#1|)) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-3714 (((-3 $ "failed") $) 33 (|has| |#1| (-339)))) (-1880 (($ $ $) NIL)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2408 (($ $ |#1|) NIL)) (-2469 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#1| $ (-523) (-523)) NIL) ((|#1| $ (-523) (-523) |#1|) NIL) (($ $ (-589 (-523)) (-589 (-523))) NIL)) (-2148 (($ (-589 |#1|)) NIL) (($ (-589 $)) NIL)) (-2395 (((-108) $) NIL)) (-1273 ((|#1| $) 17 (|has| |#1| (-6 (-4250 "*"))))) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) NIL)) (-2032 (((-554 |#1| |#2|) $ (-523)) NIL)) (-3976 (($ (-554 |#1| |#2|)) NIL) (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-2791 (((-108) $) NIL)) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339)))) (-4115 (($ $ $) NIL) (($ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-523) $) NIL) (((-554 |#1| |#2|) $ (-554 |#1| |#2|)) NIL) (((-554 |#1| |#3|) (-554 |#1| |#3|) $) NIL)) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-492 |#1| |#2| |#3|) (-627 |#1| (-554 |#1| |#3|) (-554 |#1| |#2|)) (-973) (-523) (-523)) (T -492))
-NIL
-(-627 |#1| (-554 |#1| |#3|) (-554 |#1| |#2|))
-((-2232 (((-1083 |#1|) (-710)) 76)) (-4131 (((-1169 |#1|) (-1169 |#1|) (-852)) 69)) (-2286 (((-1174) (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))) |#1|) 84)) (-4110 (((-1169 |#1|) (-1169 |#1|) (-710)) 36)) (-3461 (((-1169 |#1|) (-852)) 71)) (-2261 (((-1169 |#1|) (-1169 |#1|) (-523)) 24)) (-3764 (((-1083 |#1|) (-1169 |#1|)) 77)) (-2842 (((-1169 |#1|) (-852)) 95)) (-4077 (((-108) (-1169 |#1|)) 80)) (-2765 (((-1169 |#1|) (-1169 |#1|) (-852)) 62)) (-2277 (((-1083 |#1|) (-1169 |#1|)) 89)) (-4076 (((-852) (-1169 |#1|)) 59)) (-3071 (((-1169 |#1|) (-1169 |#1|)) 30)) (-2557 (((-1169 |#1|) (-852) (-852)) 97)) (-2901 (((-1169 |#1|) (-1169 |#1|) (-1034) (-1034)) 23)) (-3838 (((-1169 |#1|) (-1169 |#1|) (-710) (-1034)) 37)) (-2922 (((-1169 (-1169 |#1|)) (-852)) 94)) (-4125 (((-1169 |#1|) (-1169 |#1|) (-1169 |#1|)) 81)) (** (((-1169 |#1|) (-1169 |#1|) (-523)) 45)) (* (((-1169 |#1|) (-1169 |#1|) (-1169 |#1|)) 25)))
-(((-493 |#1|) (-10 -7 (-15 -2286 ((-1174) (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))) |#1|)) (-15 -3461 ((-1169 |#1|) (-852))) (-15 -2557 ((-1169 |#1|) (-852) (-852))) (-15 -3764 ((-1083 |#1|) (-1169 |#1|))) (-15 -2232 ((-1083 |#1|) (-710))) (-15 -3838 ((-1169 |#1|) (-1169 |#1|) (-710) (-1034))) (-15 -4110 ((-1169 |#1|) (-1169 |#1|) (-710))) (-15 -2901 ((-1169 |#1|) (-1169 |#1|) (-1034) (-1034))) (-15 -2261 ((-1169 |#1|) (-1169 |#1|) (-523))) (-15 ** ((-1169 |#1|) (-1169 |#1|) (-523))) (-15 * ((-1169 |#1|) (-1169 |#1|) (-1169 |#1|))) (-15 -4125 ((-1169 |#1|) (-1169 |#1|) (-1169 |#1|))) (-15 -2765 ((-1169 |#1|) (-1169 |#1|) (-852))) (-15 -4131 ((-1169 |#1|) (-1169 |#1|) (-852))) (-15 -3071 ((-1169 |#1|) (-1169 |#1|))) (-15 -4076 ((-852) (-1169 |#1|))) (-15 -4077 ((-108) (-1169 |#1|))) (-15 -2922 ((-1169 (-1169 |#1|)) (-852))) (-15 -2842 ((-1169 |#1|) (-852))) (-15 -2277 ((-1083 |#1|) (-1169 |#1|)))) (-325)) (T -493))
-((-2277 (*1 *2 *3) (-12 (-5 *3 (-1169 *4)) (-4 *4 (-325)) (-5 *2 (-1083 *4)) (-5 *1 (-493 *4)))) (-2842 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1169 *4)) (-5 *1 (-493 *4)) (-4 *4 (-325)))) (-2922 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1169 (-1169 *4))) (-5 *1 (-493 *4)) (-4 *4 (-325)))) (-4077 (*1 *2 *3) (-12 (-5 *3 (-1169 *4)) (-4 *4 (-325)) (-5 *2 (-108)) (-5 *1 (-493 *4)))) (-4076 (*1 *2 *3) (-12 (-5 *3 (-1169 *4)) (-4 *4 (-325)) (-5 *2 (-852)) (-5 *1 (-493 *4)))) (-3071 (*1 *2 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-325)) (-5 *1 (-493 *3)))) (-4131 (*1 *2 *2 *3) (-12 (-5 *2 (-1169 *4)) (-5 *3 (-852)) (-4 *4 (-325)) (-5 *1 (-493 *4)))) (-2765 (*1 *2 *2 *3) (-12 (-5 *2 (-1169 *4)) (-5 *3 (-852)) (-4 *4 (-325)) (-5 *1 (-493 *4)))) (-4125 (*1 *2 *2 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-325)) (-5 *1 (-493 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-325)) (-5 *1 (-493 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1169 *4)) (-5 *3 (-523)) (-4 *4 (-325)) (-5 *1 (-493 *4)))) (-2261 (*1 *2 *2 *3) (-12 (-5 *2 (-1169 *4)) (-5 *3 (-523)) (-4 *4 (-325)) (-5 *1 (-493 *4)))) (-2901 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1169 *4)) (-5 *3 (-1034)) (-4 *4 (-325)) (-5 *1 (-493 *4)))) (-4110 (*1 *2 *2 *3) (-12 (-5 *2 (-1169 *4)) (-5 *3 (-710)) (-4 *4 (-325)) (-5 *1 (-493 *4)))) (-3838 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1169 *5)) (-5 *3 (-710)) (-5 *4 (-1034)) (-4 *5 (-325)) (-5 *1 (-493 *5)))) (-2232 (*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1083 *4)) (-5 *1 (-493 *4)) (-4 *4 (-325)))) (-3764 (*1 *2 *3) (-12 (-5 *3 (-1169 *4)) (-4 *4 (-325)) (-5 *2 (-1083 *4)) (-5 *1 (-493 *4)))) (-2557 (*1 *2 *3 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1169 *4)) (-5 *1 (-493 *4)) (-4 *4 (-325)))) (-3461 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1169 *4)) (-5 *1 (-493 *4)) (-4 *4 (-325)))) (-2286 (*1 *2 *3 *4) (-12 (-5 *3 (-1169 (-589 (-2 (|:| -2058 *4) (|:| -2557 (-1034)))))) (-4 *4 (-325)) (-5 *2 (-1174)) (-5 *1 (-493 *4)))))
-(-10 -7 (-15 -2286 ((-1174) (-1169 (-589 (-2 (|:| -2058 |#1|) (|:| -2557 (-1034))))) |#1|)) (-15 -3461 ((-1169 |#1|) (-852))) (-15 -2557 ((-1169 |#1|) (-852) (-852))) (-15 -3764 ((-1083 |#1|) (-1169 |#1|))) (-15 -2232 ((-1083 |#1|) (-710))) (-15 -3838 ((-1169 |#1|) (-1169 |#1|) (-710) (-1034))) (-15 -4110 ((-1169 |#1|) (-1169 |#1|) (-710))) (-15 -2901 ((-1169 |#1|) (-1169 |#1|) (-1034) (-1034))) (-15 -2261 ((-1169 |#1|) (-1169 |#1|) (-523))) (-15 ** ((-1169 |#1|) (-1169 |#1|) (-523))) (-15 * ((-1169 |#1|) (-1169 |#1|) (-1169 |#1|))) (-15 -4125 ((-1169 |#1|) (-1169 |#1|) (-1169 |#1|))) (-15 -2765 ((-1169 |#1|) (-1169 |#1|) (-852))) (-15 -4131 ((-1169 |#1|) (-1169 |#1|) (-852))) (-15 -3071 ((-1169 |#1|) (-1169 |#1|))) (-15 -4076 ((-852) (-1169 |#1|))) (-15 -4077 ((-108) (-1169 |#1|))) (-15 -2922 ((-1169 (-1169 |#1|)) (-852))) (-15 -2842 ((-1169 |#1|) (-852))) (-15 -2277 ((-1083 |#1|) (-1169 |#1|))))
-((-1266 (((-1 |#1| |#1|) |#1|) 11)) (-1481 (((-1 |#1| |#1|)) 10)))
-(((-494 |#1|) (-10 -7 (-15 -1481 ((-1 |#1| |#1|))) (-15 -1266 ((-1 |#1| |#1|) |#1|))) (-13 (-666) (-25))) (T -494))
-((-1266 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-494 *3)) (-4 *3 (-13 (-666) (-25))))) (-1481 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-494 *3)) (-4 *3 (-13 (-666) (-25))))))
-(-10 -7 (-15 -1481 ((-1 |#1| |#1|))) (-15 -1266 ((-1 |#1| |#1|) |#1|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1773 (($ $ $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-3142 (($ $) NIL)) (-3694 (($ (-710) |#1|) NIL)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3015 (($ (-1 (-710) (-710)) $) NIL)) (-2022 ((|#1| $) NIL)) (-3119 (((-710) $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 20)) (-1428 (($) NIL T CONST)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) NIL)) (-4103 (($ $ $) NIL)) (* (($ (-710) $) NIL) (($ (-852) $) NIL)))
-(((-495 |#1|) (-13 (-732) (-479 (-710) |#1|)) (-786)) (T -495))
-NIL
-(-13 (-732) (-479 (-710) |#1|))
-((-4046 (((-589 |#2|) (-1083 |#1|) |#3|) 83)) (-1911 (((-589 (-2 (|:| |outval| |#2|) (|:| |outmult| (-523)) (|:| |outvect| (-589 (-629 |#2|))))) (-629 |#1|) |#3| (-1 (-394 (-1083 |#1|)) (-1083 |#1|))) 100)) (-3833 (((-1083 |#1|) (-629 |#1|)) 95)))
-(((-496 |#1| |#2| |#3|) (-10 -7 (-15 -3833 ((-1083 |#1|) (-629 |#1|))) (-15 -4046 ((-589 |#2|) (-1083 |#1|) |#3|)) (-15 -1911 ((-589 (-2 (|:| |outval| |#2|) (|:| |outmult| (-523)) (|:| |outvect| (-589 (-629 |#2|))))) (-629 |#1|) |#3| (-1 (-394 (-1083 |#1|)) (-1083 |#1|))))) (-339) (-339) (-13 (-339) (-784))) (T -496))
-((-1911 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-629 *6)) (-5 *5 (-1 (-394 (-1083 *6)) (-1083 *6))) (-4 *6 (-339)) (-5 *2 (-589 (-2 (|:| |outval| *7) (|:| |outmult| (-523)) (|:| |outvect| (-589 (-629 *7)))))) (-5 *1 (-496 *6 *7 *4)) (-4 *7 (-339)) (-4 *4 (-13 (-339) (-784))))) (-4046 (*1 *2 *3 *4) (-12 (-5 *3 (-1083 *5)) (-4 *5 (-339)) (-5 *2 (-589 *6)) (-5 *1 (-496 *5 *6 *4)) (-4 *6 (-339)) (-4 *4 (-13 (-339) (-784))))) (-3833 (*1 *2 *3) (-12 (-5 *3 (-629 *4)) (-4 *4 (-339)) (-5 *2 (-1083 *4)) (-5 *1 (-496 *4 *5 *6)) (-4 *5 (-339)) (-4 *6 (-13 (-339) (-784))))))
-(-10 -7 (-15 -3833 ((-1083 |#1|) (-629 |#1|))) (-15 -4046 ((-589 |#2|) (-1083 |#1|) |#3|)) (-15 -1911 ((-589 (-2 (|:| |outval| |#2|) (|:| |outmult| (-523)) (|:| |outvect| (-589 (-629 |#2|))))) (-629 |#1|) |#3| (-1 (-394 (-1083 |#1|)) (-1083 |#1|)))))
-((-2327 (((-779 (-523))) 12)) (-2335 (((-779 (-523))) 14)) (-2195 (((-772 (-523))) 9)))
-(((-497) (-10 -7 (-15 -2195 ((-772 (-523)))) (-15 -2327 ((-779 (-523)))) (-15 -2335 ((-779 (-523)))))) (T -497))
-((-2335 (*1 *2) (-12 (-5 *2 (-779 (-523))) (-5 *1 (-497)))) (-2327 (*1 *2) (-12 (-5 *2 (-779 (-523))) (-5 *1 (-497)))) (-2195 (*1 *2) (-12 (-5 *2 (-772 (-523))) (-5 *1 (-497)))))
-(-10 -7 (-15 -2195 ((-772 (-523)))) (-15 -2327 ((-779 (-523)))) (-15 -2335 ((-779 (-523)))))
-((-1529 (((-499) (-1087)) 15)) (-2090 ((|#1| (-499)) 20)))
-(((-498 |#1|) (-10 -7 (-15 -1529 ((-499) (-1087))) (-15 -2090 (|#1| (-499)))) (-1123)) (T -498))
-((-2090 (*1 *2 *3) (-12 (-5 *3 (-499)) (-5 *1 (-498 *2)) (-4 *2 (-1123)))) (-1529 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-499)) (-5 *1 (-498 *4)) (-4 *4 (-1123)))))
-(-10 -7 (-15 -1529 ((-499) (-1087))) (-15 -2090 (|#1| (-499))))
-((-3260 (((-108) $ $) NIL)) (-1443 (((-1070) $) 46)) (-1972 (((-108) $) 43)) (-3854 (((-1087) $) 44)) (-1372 (((-108) $) 41)) (-1984 (((-1070) $) 42)) (-2297 (((-108) $) NIL)) (-1652 (((-108) $) NIL)) (-1818 (((-108) $) NIL)) (-3841 (((-1070) $) NIL)) (-3496 (($ $ (-589 (-1087))) 20)) (-2090 (((-51) $) 22)) (-3500 (((-108) $) NIL)) (-3878 (((-523) $) NIL)) (-2435 (((-1034) $) NIL)) (-1843 (($ $ (-589 (-1087)) (-1087)) 58)) (-3111 (((-108) $) NIL)) (-1565 (((-203) $) NIL)) (-3590 (($ $) 38)) (-3483 (((-794) $) NIL)) (-1747 (((-108) $ $) NIL)) (-1502 (($ $ (-523)) NIL) (($ $ (-589 (-523))) NIL)) (-3644 (((-589 $) $) 28)) (-3326 (((-1087) (-589 $)) 47)) (-3077 (($ (-589 $)) 51) (($ (-1070)) NIL) (($ (-1087)) 18) (($ (-523)) 8) (($ (-203)) 25) (($ (-794)) NIL) (((-1020) $) 11) (($ (-1020)) 12)) (-3638 (((-1087) (-1087) (-589 $)) 50)) (-3976 (((-794) $) NIL)) (-3770 (($ $) 49)) (-3755 (($ $) 48)) (-1293 (($ $ (-589 $)) 55)) (-1501 (((-108) $) 27)) (-1428 (($) 9 T CONST)) (-1440 (($) 10 T CONST)) (-4037 (((-108) $ $) 59)) (-4125 (($ $ $) 64)) (-4103 (($ $ $) 60)) (** (($ $ (-710)) 63) (($ $ (-523)) 62)) (* (($ $ $) 61)) (-1271 (((-523) $) NIL)))
-(((-499) (-13 (-1019 (-1070) (-1087) (-523) (-203) (-794)) (-564 (-1020)) (-10 -8 (-15 -2090 ((-51) $)) (-15 -3077 ($ (-1020))) (-15 -1293 ($ $ (-589 $))) (-15 -1843 ($ $ (-589 (-1087)) (-1087))) (-15 -3496 ($ $ (-589 (-1087)))) (-15 -4103 ($ $ $)) (-15 * ($ $ $)) (-15 -4125 ($ $ $)) (-15 ** ($ $ (-710))) (-15 ** ($ $ (-523))) (-15 0 ($) -1982) (-15 1 ($) -1982) (-15 -3590 ($ $)) (-15 -1443 ((-1070) $)) (-15 -3326 ((-1087) (-589 $))) (-15 -3638 ((-1087) (-1087) (-589 $)))))) (T -499))
-((-2090 (*1 *2 *1) (-12 (-5 *2 (-51)) (-5 *1 (-499)))) (-3077 (*1 *1 *2) (-12 (-5 *2 (-1020)) (-5 *1 (-499)))) (-1293 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-499))) (-5 *1 (-499)))) (-1843 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 (-1087))) (-5 *3 (-1087)) (-5 *1 (-499)))) (-3496 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-499)))) (-4103 (*1 *1 *1 *1) (-5 *1 (-499))) (* (*1 *1 *1 *1) (-5 *1 (-499))) (-4125 (*1 *1 *1 *1) (-5 *1 (-499))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-499)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-499)))) (-1428 (*1 *1) (-5 *1 (-499))) (-1440 (*1 *1) (-5 *1 (-499))) (-3590 (*1 *1 *1) (-5 *1 (-499))) (-1443 (*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-499)))) (-3326 (*1 *2 *3) (-12 (-5 *3 (-589 (-499))) (-5 *2 (-1087)) (-5 *1 (-499)))) (-3638 (*1 *2 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-499))) (-5 *1 (-499)))))
-(-13 (-1019 (-1070) (-1087) (-523) (-203) (-794)) (-564 (-1020)) (-10 -8 (-15 -2090 ((-51) $)) (-15 -3077 ($ (-1020))) (-15 -1293 ($ $ (-589 $))) (-15 -1843 ($ $ (-589 (-1087)) (-1087))) (-15 -3496 ($ $ (-589 (-1087)))) (-15 -4103 ($ $ $)) (-15 * ($ $ $)) (-15 -4125 ($ $ $)) (-15 ** ($ $ (-710))) (-15 ** ($ $ (-523))) (-15 (-1428) ($) -1982) (-15 (-1440) ($) -1982) (-15 -3590 ($ $)) (-15 -1443 ((-1070) $)) (-15 -3326 ((-1087) (-589 $))) (-15 -3638 ((-1087) (-1087) (-589 $)))))
-((-2378 ((|#2| |#2|) 17)) (-4191 ((|#2| |#2|) 13)) (-1438 ((|#2| |#2| (-523) (-523)) 20)) (-1762 ((|#2| |#2|) 15)))
-(((-500 |#1| |#2|) (-10 -7 (-15 -4191 (|#2| |#2|)) (-15 -1762 (|#2| |#2|)) (-15 -2378 (|#2| |#2|)) (-15 -1438 (|#2| |#2| (-523) (-523)))) (-13 (-515) (-136)) (-1160 |#1|)) (T -500))
-((-1438 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-523)) (-4 *4 (-13 (-515) (-136))) (-5 *1 (-500 *4 *2)) (-4 *2 (-1160 *4)))) (-2378 (*1 *2 *2) (-12 (-4 *3 (-13 (-515) (-136))) (-5 *1 (-500 *3 *2)) (-4 *2 (-1160 *3)))) (-1762 (*1 *2 *2) (-12 (-4 *3 (-13 (-515) (-136))) (-5 *1 (-500 *3 *2)) (-4 *2 (-1160 *3)))) (-4191 (*1 *2 *2) (-12 (-4 *3 (-13 (-515) (-136))) (-5 *1 (-500 *3 *2)) (-4 *2 (-1160 *3)))))
-(-10 -7 (-15 -4191 (|#2| |#2|)) (-15 -1762 (|#2| |#2|)) (-15 -2378 (|#2| |#2|)) (-15 -1438 (|#2| |#2| (-523) (-523))))
-((-2932 (((-589 (-271 (-883 |#2|))) (-589 |#2|) (-589 (-1087))) 32)) (-2642 (((-589 |#2|) (-883 |#1|) |#3|) 53) (((-589 |#2|) (-1083 |#1|) |#3|) 52)) (-4023 (((-589 (-589 |#2|)) (-589 (-883 |#1|)) (-589 (-883 |#1|)) (-589 (-1087)) |#3|) 88)))
-(((-501 |#1| |#2| |#3|) (-10 -7 (-15 -2642 ((-589 |#2|) (-1083 |#1|) |#3|)) (-15 -2642 ((-589 |#2|) (-883 |#1|) |#3|)) (-15 -4023 ((-589 (-589 |#2|)) (-589 (-883 |#1|)) (-589 (-883 |#1|)) (-589 (-1087)) |#3|)) (-15 -2932 ((-589 (-271 (-883 |#2|))) (-589 |#2|) (-589 (-1087))))) (-427) (-339) (-13 (-339) (-784))) (T -501))
-((-2932 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *6)) (-5 *4 (-589 (-1087))) (-4 *6 (-339)) (-5 *2 (-589 (-271 (-883 *6)))) (-5 *1 (-501 *5 *6 *7)) (-4 *5 (-427)) (-4 *7 (-13 (-339) (-784))))) (-4023 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-589 (-883 *6))) (-5 *4 (-589 (-1087))) (-4 *6 (-427)) (-5 *2 (-589 (-589 *7))) (-5 *1 (-501 *6 *7 *5)) (-4 *7 (-339)) (-4 *5 (-13 (-339) (-784))))) (-2642 (*1 *2 *3 *4) (-12 (-5 *3 (-883 *5)) (-4 *5 (-427)) (-5 *2 (-589 *6)) (-5 *1 (-501 *5 *6 *4)) (-4 *6 (-339)) (-4 *4 (-13 (-339) (-784))))) (-2642 (*1 *2 *3 *4) (-12 (-5 *3 (-1083 *5)) (-4 *5 (-427)) (-5 *2 (-589 *6)) (-5 *1 (-501 *5 *6 *4)) (-4 *6 (-339)) (-4 *4 (-13 (-339) (-784))))))
-(-10 -7 (-15 -2642 ((-589 |#2|) (-1083 |#1|) |#3|)) (-15 -2642 ((-589 |#2|) (-883 |#1|) |#3|)) (-15 -4023 ((-589 (-589 |#2|)) (-589 (-883 |#1|)) (-589 (-883 |#1|)) (-589 (-1087)) |#3|)) (-15 -2932 ((-589 (-271 (-883 |#2|))) (-589 |#2|) (-589 (-1087)))))
-((-1345 ((|#2| |#2| |#1|) 17)) (-4166 ((|#2| (-589 |#2|)) 27)) (-3247 ((|#2| (-589 |#2|)) 46)))
-(((-502 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4166 (|#2| (-589 |#2|))) (-15 -3247 (|#2| (-589 |#2|))) (-15 -1345 (|#2| |#2| |#1|))) (-284) (-1145 |#1|) |#1| (-1 |#1| |#1| (-710))) (T -502))
-((-1345 (*1 *2 *2 *3) (-12 (-4 *3 (-284)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-710))) (-5 *1 (-502 *3 *2 *4 *5)) (-4 *2 (-1145 *3)))) (-3247 (*1 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-1145 *4)) (-5 *1 (-502 *4 *2 *5 *6)) (-4 *4 (-284)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-710))))) (-4166 (*1 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-1145 *4)) (-5 *1 (-502 *4 *2 *5 *6)) (-4 *4 (-284)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-710))))))
-(-10 -7 (-15 -4166 (|#2| (-589 |#2|))) (-15 -3247 (|#2| (-589 |#2|))) (-15 -1345 (|#2| |#2| |#1|)))
-((-3573 (((-394 (-1083 |#4|)) (-1083 |#4|) (-1 (-394 (-1083 |#3|)) (-1083 |#3|))) 79) (((-394 |#4|) |#4| (-1 (-394 (-1083 |#3|)) (-1083 |#3|))) 169)))
-(((-503 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3573 ((-394 |#4|) |#4| (-1 (-394 (-1083 |#3|)) (-1083 |#3|)))) (-15 -3573 ((-394 (-1083 |#4|)) (-1083 |#4|) (-1 (-394 (-1083 |#3|)) (-1083 |#3|))))) (-786) (-732) (-13 (-284) (-136)) (-880 |#3| |#2| |#1|)) (T -503))
-((-3573 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-394 (-1083 *7)) (-1083 *7))) (-4 *7 (-13 (-284) (-136))) (-4 *5 (-786)) (-4 *6 (-732)) (-4 *8 (-880 *7 *6 *5)) (-5 *2 (-394 (-1083 *8))) (-5 *1 (-503 *5 *6 *7 *8)) (-5 *3 (-1083 *8)))) (-3573 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-394 (-1083 *7)) (-1083 *7))) (-4 *7 (-13 (-284) (-136))) (-4 *5 (-786)) (-4 *6 (-732)) (-5 *2 (-394 *3)) (-5 *1 (-503 *5 *6 *7 *3)) (-4 *3 (-880 *7 *6 *5)))))
-(-10 -7 (-15 -3573 ((-394 |#4|) |#4| (-1 (-394 (-1083 |#3|)) (-1083 |#3|)))) (-15 -3573 ((-394 (-1083 |#4|)) (-1083 |#4|) (-1 (-394 (-1083 |#3|)) (-1083 |#3|)))))
-((-2378 ((|#4| |#4|) 74)) (-4191 ((|#4| |#4|) 70)) (-1438 ((|#4| |#4| (-523) (-523)) 76)) (-1762 ((|#4| |#4|) 72)))
-(((-504 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4191 (|#4| |#4|)) (-15 -1762 (|#4| |#4|)) (-15 -2378 (|#4| |#4|)) (-15 -1438 (|#4| |#4| (-523) (-523)))) (-13 (-339) (-344) (-564 (-523))) (-1145 |#1|) (-664 |#1| |#2|) (-1160 |#3|)) (T -504))
-((-1438 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-523)) (-4 *4 (-13 (-339) (-344) (-564 *3))) (-4 *5 (-1145 *4)) (-4 *6 (-664 *4 *5)) (-5 *1 (-504 *4 *5 *6 *2)) (-4 *2 (-1160 *6)))) (-2378 (*1 *2 *2) (-12 (-4 *3 (-13 (-339) (-344) (-564 (-523)))) (-4 *4 (-1145 *3)) (-4 *5 (-664 *3 *4)) (-5 *1 (-504 *3 *4 *5 *2)) (-4 *2 (-1160 *5)))) (-1762 (*1 *2 *2) (-12 (-4 *3 (-13 (-339) (-344) (-564 (-523)))) (-4 *4 (-1145 *3)) (-4 *5 (-664 *3 *4)) (-5 *1 (-504 *3 *4 *5 *2)) (-4 *2 (-1160 *5)))) (-4191 (*1 *2 *2) (-12 (-4 *3 (-13 (-339) (-344) (-564 (-523)))) (-4 *4 (-1145 *3)) (-4 *5 (-664 *3 *4)) (-5 *1 (-504 *3 *4 *5 *2)) (-4 *2 (-1160 *5)))))
-(-10 -7 (-15 -4191 (|#4| |#4|)) (-15 -1762 (|#4| |#4|)) (-15 -2378 (|#4| |#4|)) (-15 -1438 (|#4| |#4| (-523) (-523))))
-((-2378 ((|#2| |#2|) 27)) (-4191 ((|#2| |#2|) 23)) (-1438 ((|#2| |#2| (-523) (-523)) 29)) (-1762 ((|#2| |#2|) 25)))
-(((-505 |#1| |#2|) (-10 -7 (-15 -4191 (|#2| |#2|)) (-15 -1762 (|#2| |#2|)) (-15 -2378 (|#2| |#2|)) (-15 -1438 (|#2| |#2| (-523) (-523)))) (-13 (-339) (-344) (-564 (-523))) (-1160 |#1|)) (T -505))
-((-1438 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-523)) (-4 *4 (-13 (-339) (-344) (-564 *3))) (-5 *1 (-505 *4 *2)) (-4 *2 (-1160 *4)))) (-2378 (*1 *2 *2) (-12 (-4 *3 (-13 (-339) (-344) (-564 (-523)))) (-5 *1 (-505 *3 *2)) (-4 *2 (-1160 *3)))) (-1762 (*1 *2 *2) (-12 (-4 *3 (-13 (-339) (-344) (-564 (-523)))) (-5 *1 (-505 *3 *2)) (-4 *2 (-1160 *3)))) (-4191 (*1 *2 *2) (-12 (-4 *3 (-13 (-339) (-344) (-564 (-523)))) (-5 *1 (-505 *3 *2)) (-4 *2 (-1160 *3)))))
-(-10 -7 (-15 -4191 (|#2| |#2|)) (-15 -1762 (|#2| |#2|)) (-15 -2378 (|#2| |#2|)) (-15 -1438 (|#2| |#2| (-523) (-523))))
-((-3257 (((-3 (-523) "failed") |#2| |#1| (-1 (-3 (-523) "failed") |#1|)) 14) (((-3 (-523) "failed") |#2| |#1| (-523) (-1 (-3 (-523) "failed") |#1|)) 13) (((-3 (-523) "failed") |#2| (-523) (-1 (-3 (-523) "failed") |#1|)) 26)))
-(((-506 |#1| |#2|) (-10 -7 (-15 -3257 ((-3 (-523) "failed") |#2| (-523) (-1 (-3 (-523) "failed") |#1|))) (-15 -3257 ((-3 (-523) "failed") |#2| |#1| (-523) (-1 (-3 (-523) "failed") |#1|))) (-15 -3257 ((-3 (-523) "failed") |#2| |#1| (-1 (-3 (-523) "failed") |#1|)))) (-973) (-1145 |#1|)) (T -506))
-((-3257 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-523) "failed") *4)) (-4 *4 (-973)) (-5 *2 (-523)) (-5 *1 (-506 *4 *3)) (-4 *3 (-1145 *4)))) (-3257 (*1 *2 *3 *4 *2 *5) (|partial| -12 (-5 *5 (-1 (-3 (-523) "failed") *4)) (-4 *4 (-973)) (-5 *2 (-523)) (-5 *1 (-506 *4 *3)) (-4 *3 (-1145 *4)))) (-3257 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *4 (-1 (-3 (-523) "failed") *5)) (-4 *5 (-973)) (-5 *2 (-523)) (-5 *1 (-506 *5 *3)) (-4 *3 (-1145 *5)))))
-(-10 -7 (-15 -3257 ((-3 (-523) "failed") |#2| (-523) (-1 (-3 (-523) "failed") |#1|))) (-15 -3257 ((-3 (-523) "failed") |#2| |#1| (-523) (-1 (-3 (-523) "failed") |#1|))) (-15 -3257 ((-3 (-523) "failed") |#2| |#1| (-1 (-3 (-523) "failed") |#1|))))
-((-3333 (($ $ $) 79)) (-2105 (((-394 $) $) 47)) (-2898 (((-3 (-523) "failed") $) 59)) (-1996 (((-523) $) 37)) (-4031 (((-3 (-383 (-523)) "failed") $) 74)) (-1310 (((-108) $) 24)) (-1600 (((-383 (-523)) $) 72)) (-1330 (((-108) $) 50)) (-1872 (($ $ $ $) 86)) (-3702 (((-108) $) 16)) (-4080 (($ $ $) 57)) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 69)) (-1289 (((-3 $ "failed") $) 64)) (-3541 (($ $) 23)) (-1694 (($ $ $) 84)) (-4105 (($) 60)) (-1763 (($ $) 53)) (-3573 (((-394 $) $) 45)) (-3775 (((-108) $) 14)) (-3087 (((-710) $) 28)) (-4024 (($ $ (-710)) NIL) (($ $) 10)) (-4124 (($ $) 17)) (-3077 (((-523) $) NIL) (((-499) $) 36) (((-823 (-523)) $) 40) (((-355) $) 31) (((-203) $) 33)) (-1698 (((-710)) 8)) (-3505 (((-108) $ $) 20)) (-1475 (($ $ $) 55)))
-(((-507 |#1|) (-10 -8 (-15 -1694 (|#1| |#1| |#1|)) (-15 -1872 (|#1| |#1| |#1| |#1|)) (-15 -3541 (|#1| |#1|)) (-15 -4124 (|#1| |#1|)) (-15 -4031 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1600 ((-383 (-523)) |#1|)) (-15 -1310 ((-108) |#1|)) (-15 -3333 (|#1| |#1| |#1|)) (-15 -3505 ((-108) |#1| |#1|)) (-15 -3775 ((-108) |#1|)) (-15 -4105 (|#1|)) (-15 -1289 ((-3 |#1| "failed") |#1|)) (-15 -3077 ((-203) |#1|)) (-15 -3077 ((-355) |#1|)) (-15 -4080 (|#1| |#1| |#1|)) (-15 -1763 (|#1| |#1|)) (-15 -1475 (|#1| |#1| |#1|)) (-15 -2483 ((-820 (-523) |#1|) |#1| (-823 (-523)) (-820 (-523) |#1|))) (-15 -3077 ((-823 (-523)) |#1|)) (-15 -3077 ((-499) |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -3077 ((-523) |#1|)) (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -3702 ((-108) |#1|)) (-15 -3087 ((-710) |#1|)) (-15 -3573 ((-394 |#1|) |#1|)) (-15 -2105 ((-394 |#1|) |#1|)) (-15 -1330 ((-108) |#1|)) (-15 -1698 ((-710)))) (-508)) (T -507))
-((-1698 (*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-507 *3)) (-4 *3 (-508)))))
-(-10 -8 (-15 -1694 (|#1| |#1| |#1|)) (-15 -1872 (|#1| |#1| |#1| |#1|)) (-15 -3541 (|#1| |#1|)) (-15 -4124 (|#1| |#1|)) (-15 -4031 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1600 ((-383 (-523)) |#1|)) (-15 -1310 ((-108) |#1|)) (-15 -3333 (|#1| |#1| |#1|)) (-15 -3505 ((-108) |#1| |#1|)) (-15 -3775 ((-108) |#1|)) (-15 -4105 (|#1|)) (-15 -1289 ((-3 |#1| "failed") |#1|)) (-15 -3077 ((-203) |#1|)) (-15 -3077 ((-355) |#1|)) (-15 -4080 (|#1| |#1| |#1|)) (-15 -1763 (|#1| |#1|)) (-15 -1475 (|#1| |#1| |#1|)) (-15 -2483 ((-820 (-523) |#1|) |#1| (-823 (-523)) (-820 (-523) |#1|))) (-15 -3077 ((-823 (-523)) |#1|)) (-15 -3077 ((-499) |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -3077 ((-523) |#1|)) (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -3702 ((-108) |#1|)) (-15 -3087 ((-710) |#1|)) (-15 -3573 ((-394 |#1|) |#1|)) (-15 -2105 ((-394 |#1|) |#1|)) (-15 -1330 ((-108) |#1|)) (-15 -1698 ((-710))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-3333 (($ $ $) 85)) (-2999 (((-3 $ "failed") $ $) 19)) (-1746 (($ $ $ $) 73)) (-3763 (($ $) 51)) (-2105 (((-394 $) $) 52)) (-3684 (((-108) $ $) 125)) (-2035 (((-523) $) 114)) (-3565 (($ $ $) 88)) (-1640 (($) 17 T CONST)) (-2898 (((-3 (-523) "failed") $) 106)) (-1996 (((-523) $) 105)) (-2501 (($ $ $) 129)) (-2203 (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 104) (((-629 (-523)) (-629 $)) 103)) (-4211 (((-3 $ "failed") $) 34)) (-4031 (((-3 (-383 (-523)) "failed") $) 82)) (-1310 (((-108) $) 84)) (-1600 (((-383 (-523)) $) 83)) (-3461 (($) 81) (($ $) 80)) (-2486 (($ $ $) 128)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 123)) (-1330 (((-108) $) 53)) (-1872 (($ $ $ $) 71)) (-3389 (($ $ $) 86)) (-3702 (((-108) $) 116)) (-4080 (($ $ $) 97)) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 100)) (-3482 (((-108) $) 31)) (-2126 (((-108) $) 92)) (-1289 (((-3 $ "failed") $) 94)) (-4050 (((-108) $) 115)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 132)) (-2728 (($ $ $ $) 72)) (-3268 (($ $ $) 117)) (-2644 (($ $ $) 118)) (-3541 (($ $) 75)) (-3229 (($ $) 89)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-1694 (($ $ $) 70)) (-4105 (($) 93 T CONST)) (-2142 (($ $) 77)) (-2435 (((-1034) $) 10) (($ $) 79)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-1763 (($ $) 98)) (-3573 (((-394 $) $) 50)) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 131) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 130)) (-2469 (((-3 $ "failed") $ $) 42)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 124)) (-3775 (((-108) $) 91)) (-3087 (((-710) $) 126)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 127)) (-4024 (($ $ (-710)) 111) (($ $) 109)) (-3012 (($ $) 76)) (-4124 (($ $) 78)) (-3077 (((-523) $) 108) (((-499) $) 102) (((-823 (-523)) $) 101) (((-355) $) 96) (((-203) $) 95)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43) (($ (-523)) 107)) (-1698 (((-710)) 29)) (-3505 (((-108) $ $) 87)) (-1475 (($ $ $) 99)) (-3912 (($) 90)) (-3842 (((-108) $ $) 39)) (-3348 (($ $ $ $) 74)) (-3984 (($ $) 113)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ (-710)) 112) (($ $) 110)) (-4078 (((-108) $ $) 120)) (-4061 (((-108) $ $) 121)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 119)) (-4052 (((-108) $ $) 122)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-508) (-129)) (T -508))
-((-2126 (*1 *2 *1) (-12 (-4 *1 (-508)) (-5 *2 (-108)))) (-3775 (*1 *2 *1) (-12 (-4 *1 (-508)) (-5 *2 (-108)))) (-3912 (*1 *1) (-4 *1 (-508))) (-3229 (*1 *1 *1) (-4 *1 (-508))) (-3565 (*1 *1 *1 *1) (-4 *1 (-508))) (-3505 (*1 *2 *1 *1) (-12 (-4 *1 (-508)) (-5 *2 (-108)))) (-3389 (*1 *1 *1 *1) (-4 *1 (-508))) (-3333 (*1 *1 *1 *1) (-4 *1 (-508))) (-1310 (*1 *2 *1) (-12 (-4 *1 (-508)) (-5 *2 (-108)))) (-1600 (*1 *2 *1) (-12 (-4 *1 (-508)) (-5 *2 (-383 (-523))))) (-4031 (*1 *2 *1) (|partial| -12 (-4 *1 (-508)) (-5 *2 (-383 (-523))))) (-3461 (*1 *1) (-4 *1 (-508))) (-3461 (*1 *1 *1) (-4 *1 (-508))) (-2435 (*1 *1 *1) (-4 *1 (-508))) (-4124 (*1 *1 *1) (-4 *1 (-508))) (-2142 (*1 *1 *1) (-4 *1 (-508))) (-3012 (*1 *1 *1) (-4 *1 (-508))) (-3541 (*1 *1 *1) (-4 *1 (-508))) (-3348 (*1 *1 *1 *1 *1) (-4 *1 (-508))) (-1746 (*1 *1 *1 *1 *1) (-4 *1 (-508))) (-2728 (*1 *1 *1 *1 *1) (-4 *1 (-508))) (-1872 (*1 *1 *1 *1 *1) (-4 *1 (-508))) (-1694 (*1 *1 *1 *1) (-4 *1 (-508))))
-(-13 (-1127) (-284) (-759) (-211) (-564 (-523)) (-964 (-523)) (-585 (-523)) (-564 (-499)) (-564 (-823 (-523))) (-817 (-523)) (-132) (-949) (-136) (-1063) (-10 -8 (-15 -2126 ((-108) $)) (-15 -3775 ((-108) $)) (-6 -4247) (-15 -3912 ($)) (-15 -3229 ($ $)) (-15 -3565 ($ $ $)) (-15 -3505 ((-108) $ $)) (-15 -3389 ($ $ $)) (-15 -3333 ($ $ $)) (-15 -1310 ((-108) $)) (-15 -1600 ((-383 (-523)) $)) (-15 -4031 ((-3 (-383 (-523)) "failed") $)) (-15 -3461 ($)) (-15 -3461 ($ $)) (-15 -2435 ($ $)) (-15 -4124 ($ $)) (-15 -2142 ($ $)) (-15 -3012 ($ $)) (-15 -3541 ($ $)) (-15 -3348 ($ $ $ $)) (-15 -1746 ($ $ $ $)) (-15 -2728 ($ $ $ $)) (-15 -1872 ($ $ $ $)) (-15 -1694 ($ $ $)) (-6 -4246)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-136) . T) ((-563 (-794)) . T) ((-132) . T) ((-158) . T) ((-564 (-203)) . T) ((-564 (-355)) . T) ((-564 (-499)) . T) ((-564 (-523)) . T) ((-564 (-823 (-523))) . T) ((-211) . T) ((-267) . T) ((-284) . T) ((-427) . T) ((-515) . T) ((-591 $) . T) ((-585 (-523)) . T) ((-657 $) . T) ((-666) . T) ((-730) . T) ((-731) . T) ((-733) . T) ((-734) . T) ((-759) . T) ((-784) . T) ((-786) . T) ((-817 (-523)) . T) ((-851) . T) ((-949) . T) ((-964 (-523)) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1063) . T) ((-1127) . T))
-((-3260 (((-108) $ $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-2340 (($) NIL) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-1666 (((-1174) $ |#1| |#1|) NIL (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#2| $ |#1| |#2|) NIL)) (-3627 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-2521 (((-3 |#2| "failed") |#1| $) NIL)) (-1640 (($) NIL T CONST)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-1869 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-3 |#2| "failed") |#1| $) NIL)) (-2231 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1830 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4248))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#2| $ |#1|) NIL)) (-3133 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-1798 ((|#1| $) NIL (|has| |#1| (-786)))) (-3056 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-2133 ((|#1| $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4249))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-1612 (((-589 |#1|) $) NIL)) (-2754 (((-108) |#1| $) NIL)) (-2349 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-3862 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-2909 (((-589 |#1|) $) NIL)) (-2290 (((-108) |#1| $) NIL)) (-2435 (((-1034) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-3879 ((|#2| $) NIL (|has| |#1| (-786)))) (-2660 (((-3 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) "failed") (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL)) (-2408 (($ $ |#2|) NIL (|has| $ (-6 -4249)))) (-1322 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-2720 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 (-271 |#2|))) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-3184 (((-589 |#2|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-1771 (($) NIL) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-2452 (((-710) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-710) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016)))) (((-710) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-564 (-499))))) (-3985 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-3976 (((-794) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-563 (-794))) (|has| |#2| (-563 (-794)))))) (-1245 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-1505 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-509 |#1| |#2| |#3|) (-13 (-1100 |#1| |#2|) (-10 -7 (-6 -4248))) (-1016) (-1016) (-13 (-1100 |#1| |#2|) (-10 -7 (-6 -4248)))) (T -509))
-NIL
-(-13 (-1100 |#1| |#2|) (-10 -7 (-6 -4248)))
-((-1915 (((-540 |#2|) |#2| (-562 |#2|) (-562 |#2|) (-1 (-1083 |#2|) (-1083 |#2|))) 51)))
-(((-510 |#1| |#2|) (-10 -7 (-15 -1915 ((-540 |#2|) |#2| (-562 |#2|) (-562 |#2|) (-1 (-1083 |#2|) (-1083 |#2|))))) (-13 (-786) (-515)) (-13 (-27) (-406 |#1|))) (T -510))
-((-1915 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-562 *3)) (-5 *5 (-1 (-1083 *3) (-1083 *3))) (-4 *3 (-13 (-27) (-406 *6))) (-4 *6 (-13 (-786) (-515))) (-5 *2 (-540 *3)) (-5 *1 (-510 *6 *3)))))
-(-10 -7 (-15 -1915 ((-540 |#2|) |#2| (-562 |#2|) (-562 |#2|) (-1 (-1083 |#2|) (-1083 |#2|)))))
-((-2872 (((-540 |#5|) |#5| (-1 |#3| |#3|)) 198)) (-3773 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 194)) (-4030 (((-540 |#5|) |#5| (-1 |#3| |#3|)) 201)))
-(((-511 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4030 ((-540 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2872 ((-540 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3773 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|)))) (-13 (-786) (-515) (-964 (-523))) (-13 (-27) (-406 |#1|)) (-1145 |#2|) (-1145 (-383 |#3|)) (-318 |#2| |#3| |#4|)) (T -511))
-((-3773 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-13 (-27) (-406 *4))) (-4 *4 (-13 (-786) (-515) (-964 (-523)))) (-4 *7 (-1145 (-383 *6))) (-5 *1 (-511 *4 *5 *6 *7 *2)) (-4 *2 (-318 *5 *6 *7)))) (-2872 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1145 *6)) (-4 *6 (-13 (-27) (-406 *5))) (-4 *5 (-13 (-786) (-515) (-964 (-523)))) (-4 *8 (-1145 (-383 *7))) (-5 *2 (-540 *3)) (-5 *1 (-511 *5 *6 *7 *8 *3)) (-4 *3 (-318 *6 *7 *8)))) (-4030 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1145 *6)) (-4 *6 (-13 (-27) (-406 *5))) (-4 *5 (-13 (-786) (-515) (-964 (-523)))) (-4 *8 (-1145 (-383 *7))) (-5 *2 (-540 *3)) (-5 *1 (-511 *5 *6 *7 *8 *3)) (-4 *3 (-318 *6 *7 *8)))))
-(-10 -7 (-15 -4030 ((-540 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2872 ((-540 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3773 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
-((-1533 (((-108) (-523) (-523)) 10)) (-3916 (((-523) (-523)) 7)) (-3907 (((-523) (-523) (-523)) 8)))
-(((-512) (-10 -7 (-15 -3916 ((-523) (-523))) (-15 -3907 ((-523) (-523) (-523))) (-15 -1533 ((-108) (-523) (-523))))) (T -512))
-((-1533 (*1 *2 *3 *3) (-12 (-5 *3 (-523)) (-5 *2 (-108)) (-5 *1 (-512)))) (-3907 (*1 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-512)))) (-3916 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-512)))))
-(-10 -7 (-15 -3916 ((-523) (-523))) (-15 -3907 ((-523) (-523) (-523))) (-15 -1533 ((-108) (-523) (-523))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-1237 ((|#1| $) 61)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-3695 (($ $) 91)) (-2608 (($ $) 74)) (-1773 ((|#1| $) 62)) (-2999 (((-3 $ "failed") $ $) 19)) (-3584 (($ $) 73)) (-3669 (($ $) 90)) (-2588 (($ $) 75)) (-3717 (($ $) 89)) (-2629 (($ $) 76)) (-1640 (($) 17 T CONST)) (-2898 (((-3 (-523) "failed") $) 69)) (-1996 (((-523) $) 68)) (-4211 (((-3 $ "failed") $) 34)) (-3009 (($ |#1| |#1|) 66)) (-3702 (((-108) $) 60)) (-2188 (($) 101)) (-3482 (((-108) $) 31)) (-1324 (($ $ (-523)) 72)) (-4050 (((-108) $) 59)) (-3268 (($ $ $) 107)) (-2644 (($ $ $) 106)) (-2062 (($ $) 98)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-3742 (($ |#1| |#1|) 67) (($ |#1|) 65) (($ (-383 (-523))) 64)) (-2508 ((|#1| $) 63)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-2469 (((-3 $ "failed") $ $) 42)) (-1847 (($ $) 99)) (-3730 (($ $) 88)) (-2641 (($ $) 77)) (-3707 (($ $) 87)) (-2617 (($ $) 78)) (-3683 (($ $) 86)) (-2598 (($ $) 79)) (-1350 (((-108) $ |#1|) 58)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43) (($ (-523)) 70)) (-1698 (((-710)) 29)) (-3768 (($ $) 97)) (-2680 (($ $) 85)) (-3842 (((-108) $ $) 39)) (-3743 (($ $) 96)) (-2655 (($ $) 84)) (-3793 (($ $) 95)) (-3645 (($ $) 83)) (-3135 (($ $) 94)) (-3657 (($ $) 82)) (-3780 (($ $) 93)) (-3632 (($ $) 81)) (-3756 (($ $) 92)) (-2667 (($ $) 80)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4078 (((-108) $ $) 104)) (-4061 (((-108) $ $) 103)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 105)) (-4052 (((-108) $ $) 102)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ $) 100) (($ $ (-383 (-523))) 71)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-513 |#1|) (-129) (-13 (-380) (-1109))) (T -513))
-((-3742 (*1 *1 *2 *2) (-12 (-4 *1 (-513 *2)) (-4 *2 (-13 (-380) (-1109))))) (-3009 (*1 *1 *2 *2) (-12 (-4 *1 (-513 *2)) (-4 *2 (-13 (-380) (-1109))))) (-3742 (*1 *1 *2) (-12 (-4 *1 (-513 *2)) (-4 *2 (-13 (-380) (-1109))))) (-3742 (*1 *1 *2) (-12 (-5 *2 (-383 (-523))) (-4 *1 (-513 *3)) (-4 *3 (-13 (-380) (-1109))))) (-2508 (*1 *2 *1) (-12 (-4 *1 (-513 *2)) (-4 *2 (-13 (-380) (-1109))))) (-1773 (*1 *2 *1) (-12 (-4 *1 (-513 *2)) (-4 *2 (-13 (-380) (-1109))))) (-1237 (*1 *2 *1) (-12 (-4 *1 (-513 *2)) (-4 *2 (-13 (-380) (-1109))))) (-3702 (*1 *2 *1) (-12 (-4 *1 (-513 *3)) (-4 *3 (-13 (-380) (-1109))) (-5 *2 (-108)))) (-4050 (*1 *2 *1) (-12 (-4 *1 (-513 *3)) (-4 *3 (-13 (-380) (-1109))) (-5 *2 (-108)))) (-1350 (*1 *2 *1 *3) (-12 (-4 *1 (-513 *3)) (-4 *3 (-13 (-380) (-1109))) (-5 *2 (-108)))))
-(-13 (-427) (-786) (-1109) (-930) (-964 (-523)) (-10 -8 (-6 -2523) (-15 -3742 ($ |t#1| |t#1|)) (-15 -3009 ($ |t#1| |t#1|)) (-15 -3742 ($ |t#1|)) (-15 -3742 ($ (-383 (-523)))) (-15 -2508 (|t#1| $)) (-15 -1773 (|t#1| $)) (-15 -1237 (|t#1| $)) (-15 -3702 ((-108) $)) (-15 -4050 ((-108) $)) (-15 -1350 ((-108) $ |t#1|))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-34) . T) ((-91) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-563 (-794)) . T) ((-158) . T) ((-261) . T) ((-267) . T) ((-427) . T) ((-464) . T) ((-515) . T) ((-591 $) . T) ((-657 $) . T) ((-666) . T) ((-786) . T) ((-930) . T) ((-964 (-523)) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1109) . T) ((-1112) . T))
-((-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 9)) (-3950 (($ $) 11)) (-3226 (((-108) $) 18)) (-4211 (((-3 $ "failed") $) 16)) (-3842 (((-108) $ $) 20)))
-(((-514 |#1|) (-10 -8 (-15 -3226 ((-108) |#1|)) (-15 -3842 ((-108) |#1| |#1|)) (-15 -3950 (|#1| |#1|)) (-15 -3001 ((-2 (|:| -1895 |#1|) (|:| -4235 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -4211 ((-3 |#1| "failed") |#1|))) (-515)) (T -514))
-NIL
-(-10 -8 (-15 -3226 ((-108) |#1|)) (-15 -3842 ((-108) |#1| |#1|)) (-15 -3950 (|#1| |#1|)) (-15 -3001 ((-2 (|:| -1895 |#1|) (|:| -4235 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -4211 ((-3 |#1| "failed") |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2469 (((-3 $ "failed") $ $) 42)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43)) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 39)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-515) (-129)) (T -515))
-((-2469 (*1 *1 *1 *1) (|partial| -4 *1 (-515))) (-3001 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -1895 *1) (|:| -4235 *1) (|:| |associate| *1))) (-4 *1 (-515)))) (-3950 (*1 *1 *1) (-4 *1 (-515))) (-3842 (*1 *2 *1 *1) (-12 (-4 *1 (-515)) (-5 *2 (-108)))) (-3226 (*1 *2 *1) (-12 (-4 *1 (-515)) (-5 *2 (-108)))))
-(-13 (-158) (-37 $) (-267) (-10 -8 (-15 -2469 ((-3 $ "failed") $ $)) (-15 -3001 ((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $)) (-15 -3950 ($ $)) (-15 -3842 ((-108) $ $)) (-15 -3226 ((-108) $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-563 (-794)) . T) ((-158) . T) ((-267) . T) ((-591 $) . T) ((-657 $) . T) ((-666) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-1688 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1087) (-589 |#2|)) 37)) (-3596 (((-540 |#2|) |#2| (-1087)) 62)) (-2732 (((-3 |#2| "failed") |#2| (-1087)) 154)) (-3733 (((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1087) (-562 |#2|) (-589 (-562 |#2|))) 157)) (-2415 (((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1087) |#2|) 40)))
-(((-516 |#1| |#2|) (-10 -7 (-15 -2415 ((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1087) |#2|)) (-15 -1688 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1087) (-589 |#2|))) (-15 -2732 ((-3 |#2| "failed") |#2| (-1087))) (-15 -3596 ((-540 |#2|) |#2| (-1087))) (-15 -3733 ((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1087) (-562 |#2|) (-589 (-562 |#2|))))) (-13 (-427) (-786) (-136) (-964 (-523)) (-585 (-523))) (-13 (-27) (-1109) (-406 |#1|))) (T -516))
-((-3733 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1087)) (-5 *6 (-589 (-562 *3))) (-5 *5 (-562 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *7))) (-4 *7 (-13 (-427) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *2 (-2 (|:| -3699 *3) (|:| |coeff| *3))) (-5 *1 (-516 *7 *3)))) (-3596 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-4 *5 (-13 (-427) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *2 (-540 *3)) (-5 *1 (-516 *5 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5))))) (-2732 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1087)) (-4 *4 (-13 (-427) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *1 (-516 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *4))))) (-1688 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1087)) (-5 *5 (-589 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *6))) (-4 *6 (-13 (-427) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-516 *6 *3)))) (-2415 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1087)) (-4 *5 (-13 (-427) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *2 (-2 (|:| -3699 *3) (|:| |coeff| *3))) (-5 *1 (-516 *5 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5))))))
-(-10 -7 (-15 -2415 ((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1087) |#2|)) (-15 -1688 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1087) (-589 |#2|))) (-15 -2732 ((-3 |#2| "failed") |#2| (-1087))) (-15 -3596 ((-540 |#2|) |#2| (-1087))) (-15 -3733 ((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1087) (-562 |#2|) (-589 (-562 |#2|)))))
-((-2105 (((-394 |#1|) |#1|) 18)) (-3573 (((-394 |#1|) |#1|) 33)) (-3376 (((-3 |#1| "failed") |#1|) 44)) (-2495 (((-394 |#1|) |#1|) 51)))
-(((-517 |#1|) (-10 -7 (-15 -3573 ((-394 |#1|) |#1|)) (-15 -2105 ((-394 |#1|) |#1|)) (-15 -2495 ((-394 |#1|) |#1|)) (-15 -3376 ((-3 |#1| "failed") |#1|))) (-508)) (T -517))
-((-3376 (*1 *2 *2) (|partial| -12 (-5 *1 (-517 *2)) (-4 *2 (-508)))) (-2495 (*1 *2 *3) (-12 (-5 *2 (-394 *3)) (-5 *1 (-517 *3)) (-4 *3 (-508)))) (-2105 (*1 *2 *3) (-12 (-5 *2 (-394 *3)) (-5 *1 (-517 *3)) (-4 *3 (-508)))) (-3573 (*1 *2 *3) (-12 (-5 *2 (-394 *3)) (-5 *1 (-517 *3)) (-4 *3 (-508)))))
-(-10 -7 (-15 -3573 ((-394 |#1|) |#1|)) (-15 -2105 ((-394 |#1|) |#1|)) (-15 -2495 ((-394 |#1|) |#1|)) (-15 -3376 ((-3 |#1| "failed") |#1|)))
-((-2517 (($) 9)) (-4178 (((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 35)) (-1612 (((-589 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) $) 32)) (-3862 (($ (-2 (|:| -2402 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) 29)) (-1420 (($ (-589 (-2 (|:| -2402 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) 27)) (-2746 (((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 39)) (-3184 (((-589 (-2 (|:| -2402 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $) 37)) (-2321 (((-1174)) 12)))
-(((-518) (-10 -8 (-15 -2517 ($)) (-15 -2321 ((-1174))) (-15 -1612 ((-589 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) $)) (-15 -1420 ($ (-589 (-2 (|:| -2402 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))))) (-15 -3862 ($ (-2 (|:| -2402 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-15 -4178 ((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3184 ((-589 (-2 (|:| -2402 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $)) (-15 -2746 ((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))))) (T -518))
-((-2746 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *1 (-518)))) (-3184 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| -2402 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-5 *1 (-518)))) (-4178 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *1 (-518)))) (-3862 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2402 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) (-5 *1 (-518)))) (-1420 (*1 *1 *2) (-12 (-5 *2 (-589 (-2 (|:| -2402 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-5 *1 (-518)))) (-1612 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-5 *1 (-518)))) (-2321 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-518)))) (-2517 (*1 *1) (-5 *1 (-518))))
-(-10 -8 (-15 -2517 ($)) (-15 -2321 ((-1174))) (-15 -1612 ((-589 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) $)) (-15 -1420 ($ (-589 (-2 (|:| -2402 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))))) (-15 -3862 ($ (-2 (|:| -2402 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-15 -4178 ((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3184 ((-589 (-2 (|:| -2402 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $)) (-15 -2746 ((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1068 (-203))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -3487 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))))
-((-3540 (((-1083 (-383 (-1083 |#2|))) |#2| (-562 |#2|) (-562 |#2|) (-1083 |#2|)) 32)) (-1664 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-562 |#2|) (-562 |#2|) (-589 |#2|) (-562 |#2|) |#2| (-383 (-1083 |#2|))) 100) (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-562 |#2|) (-562 |#2|) (-589 |#2|) |#2| (-1083 |#2|)) 110)) (-1230 (((-540 |#2|) |#2| (-562 |#2|) (-562 |#2|) (-562 |#2|) |#2| (-383 (-1083 |#2|))) 80) (((-540 |#2|) |#2| (-562 |#2|) (-562 |#2|) |#2| (-1083 |#2|)) 52)) (-2651 (((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-562 |#2|) (-562 |#2|) |#2| (-562 |#2|) |#2| (-383 (-1083 |#2|))) 87) (((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-562 |#2|) (-562 |#2|) |#2| |#2| (-1083 |#2|)) 109)) (-2144 (((-3 |#2| "failed") |#2| |#2| (-562 |#2|) (-562 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1087)) (-562 |#2|) |#2| (-383 (-1083 |#2|))) 105) (((-3 |#2| "failed") |#2| |#2| (-562 |#2|) (-562 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1087)) |#2| (-1083 |#2|)) 111)) (-1722 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2922 (-589 |#2|))) |#3| |#2| (-562 |#2|) (-562 |#2|) (-562 |#2|) |#2| (-383 (-1083 |#2|))) 128 (|has| |#3| (-599 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2922 (-589 |#2|))) |#3| |#2| (-562 |#2|) (-562 |#2|) |#2| (-1083 |#2|)) 127 (|has| |#3| (-599 |#2|)))) (-3706 ((|#2| (-1083 (-383 (-1083 |#2|))) (-562 |#2|) |#2|) 50)) (-1816 (((-1083 (-383 (-1083 |#2|))) (-1083 |#2|) (-562 |#2|)) 31)))
-(((-519 |#1| |#2| |#3|) (-10 -7 (-15 -1230 ((-540 |#2|) |#2| (-562 |#2|) (-562 |#2|) |#2| (-1083 |#2|))) (-15 -1230 ((-540 |#2|) |#2| (-562 |#2|) (-562 |#2|) (-562 |#2|) |#2| (-383 (-1083 |#2|)))) (-15 -2651 ((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-562 |#2|) (-562 |#2|) |#2| |#2| (-1083 |#2|))) (-15 -2651 ((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-562 |#2|) (-562 |#2|) |#2| (-562 |#2|) |#2| (-383 (-1083 |#2|)))) (-15 -1664 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-562 |#2|) (-562 |#2|) (-589 |#2|) |#2| (-1083 |#2|))) (-15 -1664 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-562 |#2|) (-562 |#2|) (-589 |#2|) (-562 |#2|) |#2| (-383 (-1083 |#2|)))) (-15 -2144 ((-3 |#2| "failed") |#2| |#2| (-562 |#2|) (-562 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1087)) |#2| (-1083 |#2|))) (-15 -2144 ((-3 |#2| "failed") |#2| |#2| (-562 |#2|) (-562 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1087)) (-562 |#2|) |#2| (-383 (-1083 |#2|)))) (-15 -3540 ((-1083 (-383 (-1083 |#2|))) |#2| (-562 |#2|) (-562 |#2|) (-1083 |#2|))) (-15 -3706 (|#2| (-1083 (-383 (-1083 |#2|))) (-562 |#2|) |#2|)) (-15 -1816 ((-1083 (-383 (-1083 |#2|))) (-1083 |#2|) (-562 |#2|))) (IF (|has| |#3| (-599 |#2|)) (PROGN (-15 -1722 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2922 (-589 |#2|))) |#3| |#2| (-562 |#2|) (-562 |#2|) |#2| (-1083 |#2|))) (-15 -1722 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2922 (-589 |#2|))) |#3| |#2| (-562 |#2|) (-562 |#2|) (-562 |#2|) |#2| (-383 (-1083 |#2|))))) |%noBranch|)) (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))) (-13 (-406 |#1|) (-27) (-1109)) (-1016)) (T -519))
-((-1722 (*1 *2 *3 *4 *5 *5 *5 *4 *6) (-12 (-5 *5 (-562 *4)) (-5 *6 (-383 (-1083 *4))) (-4 *4 (-13 (-406 *7) (-27) (-1109))) (-4 *7 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4)))) (-5 *1 (-519 *7 *4 *3)) (-4 *3 (-599 *4)) (-4 *3 (-1016)))) (-1722 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *5 (-562 *4)) (-5 *6 (-1083 *4)) (-4 *4 (-13 (-406 *7) (-27) (-1109))) (-4 *7 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4)))) (-5 *1 (-519 *7 *4 *3)) (-4 *3 (-599 *4)) (-4 *3 (-1016)))) (-1816 (*1 *2 *3 *4) (-12 (-5 *4 (-562 *6)) (-4 *6 (-13 (-406 *5) (-27) (-1109))) (-4 *5 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *2 (-1083 (-383 (-1083 *6)))) (-5 *1 (-519 *5 *6 *7)) (-5 *3 (-1083 *6)) (-4 *7 (-1016)))) (-3706 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1083 (-383 (-1083 *2)))) (-5 *4 (-562 *2)) (-4 *2 (-13 (-406 *5) (-27) (-1109))) (-4 *5 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *1 (-519 *5 *2 *6)) (-4 *6 (-1016)))) (-3540 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-562 *3)) (-4 *3 (-13 (-406 *6) (-27) (-1109))) (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *2 (-1083 (-383 (-1083 *3)))) (-5 *1 (-519 *6 *3 *7)) (-5 *5 (-1083 *3)) (-4 *7 (-1016)))) (-2144 (*1 *2 *2 *2 *3 *3 *4 *3 *2 *5) (|partial| -12 (-5 *3 (-562 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1087))) (-5 *5 (-383 (-1083 *2))) (-4 *2 (-13 (-406 *6) (-27) (-1109))) (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *1 (-519 *6 *2 *7)) (-4 *7 (-1016)))) (-2144 (*1 *2 *2 *2 *3 *3 *4 *2 *5) (|partial| -12 (-5 *3 (-562 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1087))) (-5 *5 (-1083 *2)) (-4 *2 (-13 (-406 *6) (-27) (-1109))) (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *1 (-519 *6 *2 *7)) (-4 *7 (-1016)))) (-1664 (*1 *2 *3 *4 *4 *5 *4 *3 *6) (|partial| -12 (-5 *4 (-562 *3)) (-5 *5 (-589 *3)) (-5 *6 (-383 (-1083 *3))) (-4 *3 (-13 (-406 *7) (-27) (-1109))) (-4 *7 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-519 *7 *3 *8)) (-4 *8 (-1016)))) (-1664 (*1 *2 *3 *4 *4 *5 *3 *6) (|partial| -12 (-5 *4 (-562 *3)) (-5 *5 (-589 *3)) (-5 *6 (-1083 *3)) (-4 *3 (-13 (-406 *7) (-27) (-1109))) (-4 *7 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-519 *7 *3 *8)) (-4 *8 (-1016)))) (-2651 (*1 *2 *3 *4 *4 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-562 *3)) (-5 *5 (-383 (-1083 *3))) (-4 *3 (-13 (-406 *6) (-27) (-1109))) (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *2 (-2 (|:| -3699 *3) (|:| |coeff| *3))) (-5 *1 (-519 *6 *3 *7)) (-4 *7 (-1016)))) (-2651 (*1 *2 *3 *4 *4 *3 *3 *5) (|partial| -12 (-5 *4 (-562 *3)) (-5 *5 (-1083 *3)) (-4 *3 (-13 (-406 *6) (-27) (-1109))) (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *2 (-2 (|:| -3699 *3) (|:| |coeff| *3))) (-5 *1 (-519 *6 *3 *7)) (-4 *7 (-1016)))) (-1230 (*1 *2 *3 *4 *4 *4 *3 *5) (-12 (-5 *4 (-562 *3)) (-5 *5 (-383 (-1083 *3))) (-4 *3 (-13 (-406 *6) (-27) (-1109))) (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *2 (-540 *3)) (-5 *1 (-519 *6 *3 *7)) (-4 *7 (-1016)))) (-1230 (*1 *2 *3 *4 *4 *3 *5) (-12 (-5 *4 (-562 *3)) (-5 *5 (-1083 *3)) (-4 *3 (-13 (-406 *6) (-27) (-1109))) (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *2 (-540 *3)) (-5 *1 (-519 *6 *3 *7)) (-4 *7 (-1016)))))
-(-10 -7 (-15 -1230 ((-540 |#2|) |#2| (-562 |#2|) (-562 |#2|) |#2| (-1083 |#2|))) (-15 -1230 ((-540 |#2|) |#2| (-562 |#2|) (-562 |#2|) (-562 |#2|) |#2| (-383 (-1083 |#2|)))) (-15 -2651 ((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-562 |#2|) (-562 |#2|) |#2| |#2| (-1083 |#2|))) (-15 -2651 ((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-562 |#2|) (-562 |#2|) |#2| (-562 |#2|) |#2| (-383 (-1083 |#2|)))) (-15 -1664 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-562 |#2|) (-562 |#2|) (-589 |#2|) |#2| (-1083 |#2|))) (-15 -1664 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-562 |#2|) (-562 |#2|) (-589 |#2|) (-562 |#2|) |#2| (-383 (-1083 |#2|)))) (-15 -2144 ((-3 |#2| "failed") |#2| |#2| (-562 |#2|) (-562 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1087)) |#2| (-1083 |#2|))) (-15 -2144 ((-3 |#2| "failed") |#2| |#2| (-562 |#2|) (-562 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1087)) (-562 |#2|) |#2| (-383 (-1083 |#2|)))) (-15 -3540 ((-1083 (-383 (-1083 |#2|))) |#2| (-562 |#2|) (-562 |#2|) (-1083 |#2|))) (-15 -3706 (|#2| (-1083 (-383 (-1083 |#2|))) (-562 |#2|) |#2|)) (-15 -1816 ((-1083 (-383 (-1083 |#2|))) (-1083 |#2|) (-562 |#2|))) (IF (|has| |#3| (-599 |#2|)) (PROGN (-15 -1722 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2922 (-589 |#2|))) |#3| |#2| (-562 |#2|) (-562 |#2|) |#2| (-1083 |#2|))) (-15 -1722 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2922 (-589 |#2|))) |#3| |#2| (-562 |#2|) (-562 |#2|) (-562 |#2|) |#2| (-383 (-1083 |#2|))))) |%noBranch|))
-((-4213 (((-523) (-523) (-710)) 66)) (-4219 (((-523) (-523)) 65)) (-1631 (((-523) (-523)) 64)) (-3966 (((-523) (-523)) 69)) (-3846 (((-523) (-523) (-523)) 49)) (-1212 (((-523) (-523) (-523)) 46)) (-2222 (((-383 (-523)) (-523)) 20)) (-2390 (((-523) (-523)) 21)) (-2437 (((-523) (-523)) 58)) (-2166 (((-523) (-523)) 32)) (-3174 (((-589 (-523)) (-523)) 63)) (-1968 (((-523) (-523) (-523) (-523) (-523)) 44)) (-3896 (((-383 (-523)) (-523)) 41)))
-(((-520) (-10 -7 (-15 -3896 ((-383 (-523)) (-523))) (-15 -1968 ((-523) (-523) (-523) (-523) (-523))) (-15 -3174 ((-589 (-523)) (-523))) (-15 -2166 ((-523) (-523))) (-15 -2437 ((-523) (-523))) (-15 -2390 ((-523) (-523))) (-15 -2222 ((-383 (-523)) (-523))) (-15 -1212 ((-523) (-523) (-523))) (-15 -3846 ((-523) (-523) (-523))) (-15 -3966 ((-523) (-523))) (-15 -1631 ((-523) (-523))) (-15 -4219 ((-523) (-523))) (-15 -4213 ((-523) (-523) (-710))))) (T -520))
-((-4213 (*1 *2 *2 *3) (-12 (-5 *2 (-523)) (-5 *3 (-710)) (-5 *1 (-520)))) (-4219 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))) (-1631 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))) (-3966 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))) (-3846 (*1 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))) (-1212 (*1 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))) (-2222 (*1 *2 *3) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-520)) (-5 *3 (-523)))) (-2390 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))) (-2437 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))) (-2166 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))) (-3174 (*1 *2 *3) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-520)) (-5 *3 (-523)))) (-1968 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))) (-3896 (*1 *2 *3) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-520)) (-5 *3 (-523)))))
-(-10 -7 (-15 -3896 ((-383 (-523)) (-523))) (-15 -1968 ((-523) (-523) (-523) (-523) (-523))) (-15 -3174 ((-589 (-523)) (-523))) (-15 -2166 ((-523) (-523))) (-15 -2437 ((-523) (-523))) (-15 -2390 ((-523) (-523))) (-15 -2222 ((-383 (-523)) (-523))) (-15 -1212 ((-523) (-523) (-523))) (-15 -3846 ((-523) (-523) (-523))) (-15 -3966 ((-523) (-523))) (-15 -1631 ((-523) (-523))) (-15 -4219 ((-523) (-523))) (-15 -4213 ((-523) (-523) (-710))))
-((-3456 (((-2 (|:| |answer| |#4|) (|:| -3251 |#4|)) |#4| (-1 |#2| |#2|)) 52)))
-(((-521 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3456 ((-2 (|:| |answer| |#4|) (|:| -3251 |#4|)) |#4| (-1 |#2| |#2|)))) (-339) (-1145 |#1|) (-1145 (-383 |#2|)) (-318 |#1| |#2| |#3|)) (T -521))
-((-3456 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-339)) (-4 *7 (-1145 (-383 *6))) (-5 *2 (-2 (|:| |answer| *3) (|:| -3251 *3))) (-5 *1 (-521 *5 *6 *7 *3)) (-4 *3 (-318 *5 *6 *7)))))
-(-10 -7 (-15 -3456 ((-2 (|:| |answer| |#4|) (|:| -3251 |#4|)) |#4| (-1 |#2| |#2|))))
-((-3456 (((-2 (|:| |answer| (-383 |#2|)) (|:| -3251 (-383 |#2|)) (|:| |specpart| (-383 |#2|)) (|:| |polypart| |#2|)) (-383 |#2|) (-1 |#2| |#2|)) 18)))
-(((-522 |#1| |#2|) (-10 -7 (-15 -3456 ((-2 (|:| |answer| (-383 |#2|)) (|:| -3251 (-383 |#2|)) (|:| |specpart| (-383 |#2|)) (|:| |polypart| |#2|)) (-383 |#2|) (-1 |#2| |#2|)))) (-339) (-1145 |#1|)) (T -522))
-((-3456 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-339)) (-5 *2 (-2 (|:| |answer| (-383 *6)) (|:| -3251 (-383 *6)) (|:| |specpart| (-383 *6)) (|:| |polypart| *6))) (-5 *1 (-522 *5 *6)) (-5 *3 (-383 *6)))))
-(-10 -7 (-15 -3456 ((-2 (|:| |answer| (-383 |#2|)) (|:| -3251 (-383 |#2|)) (|:| |specpart| (-383 |#2|)) (|:| |polypart| |#2|)) (-383 |#2|) (-1 |#2| |#2|))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 25)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 87)) (-3950 (($ $) 88)) (-3226 (((-108) $) NIL)) (-3333 (($ $ $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1746 (($ $ $ $) 42)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-2035 (((-523) $) NIL)) (-3565 (($ $ $) 81)) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL)) (-1996 (((-523) $) NIL)) (-2501 (($ $ $) 80)) (-2203 (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 61) (((-629 (-523)) (-629 $)) 57)) (-4211 (((-3 $ "failed") $) 84)) (-4031 (((-3 (-383 (-523)) "failed") $) NIL)) (-1310 (((-108) $) NIL)) (-1600 (((-383 (-523)) $) NIL)) (-3461 (($) 63) (($ $) 64)) (-2486 (($ $ $) 79)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-1872 (($ $ $ $) NIL)) (-3389 (($ $ $) 54)) (-3702 (((-108) $) NIL)) (-4080 (($ $ $) NIL)) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL)) (-3482 (((-108) $) 26)) (-2126 (((-108) $) 74)) (-1289 (((-3 $ "failed") $) NIL)) (-4050 (((-108) $) 34)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2728 (($ $ $ $) 43)) (-3268 (($ $ $) 76)) (-2644 (($ $ $) 75)) (-3541 (($ $) NIL)) (-3229 (($ $) 40)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) 53)) (-1694 (($ $ $) NIL)) (-4105 (($) NIL T CONST)) (-2142 (($ $) 31)) (-2435 (((-1034) $) NIL) (($ $) 33)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 118)) (-2056 (($ $ $) 85) (($ (-589 $)) NIL)) (-1763 (($ $) NIL)) (-3573 (((-394 $) $) 104)) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL)) (-2469 (((-3 $ "failed") $ $) 83)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3775 (((-108) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 78)) (-4024 (($ $ (-710)) NIL) (($ $) NIL)) (-3012 (($ $) 32)) (-4124 (($ $) 30)) (-3077 (((-523) $) 39) (((-499) $) 51) (((-823 (-523)) $) NIL) (((-355) $) 46) (((-203) $) 48) (((-1070) $) 52)) (-3976 (((-794) $) 37) (($ (-523)) 38) (($ $) NIL) (($ (-523)) 38)) (-1698 (((-710)) NIL)) (-3505 (((-108) $ $) NIL)) (-1475 (($ $ $) NIL)) (-3912 (($) 29)) (-3842 (((-108) $ $) NIL)) (-3348 (($ $ $ $) 41)) (-3984 (($ $) 62)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 27 T CONST)) (-1440 (($) 28 T CONST)) (-3342 (((-1070) $) 20) (((-1070) $ (-108)) 22) (((-1174) (-761) $) 23) (((-1174) (-761) $ (-108)) 24)) (-1943 (($ $ (-710)) NIL) (($ $) NIL)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 65)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 66)) (-4115 (($ $) 67) (($ $ $) 69)) (-4103 (($ $ $) 68)) (** (($ $ (-852)) NIL) (($ $ (-710)) 73)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 71) (($ $ $) 70)))
-(((-523) (-13 (-508) (-564 (-1070)) (-767) (-10 -8 (-15 -3461 ($ $)) (-6 -4235) (-6 -4240) (-6 -4236) (-6 -4230)))) (T -523))
-((-3461 (*1 *1 *1) (-5 *1 (-523))))
-(-13 (-508) (-564 (-1070)) (-767) (-10 -8 (-15 -3461 ($ $)) (-6 -4235) (-6 -4240) (-6 -4236) (-6 -4230)))
-((-3359 (((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))) (|:| |extra| (-962))) (-708) (-985)) 108) (((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))) (|:| |extra| (-962))) (-708)) 110)) (-2669 (((-3 (-962) "failed") (-292 (-355)) (-1009 (-779 (-355))) (-1087)) 172) (((-3 (-962) "failed") (-292 (-355)) (-1009 (-779 (-355))) (-1070)) 171) (((-962) (-292 (-355)) (-589 (-1011 (-779 (-355)))) (-355) (-355) (-985)) 176) (((-962) (-292 (-355)) (-589 (-1011 (-779 (-355)))) (-355) (-355)) 177) (((-962) (-292 (-355)) (-589 (-1011 (-779 (-355)))) (-355)) 178) (((-962) (-292 (-355)) (-589 (-1011 (-779 (-355))))) 179) (((-962) (-292 (-355)) (-1011 (-779 (-355)))) 167) (((-962) (-292 (-355)) (-1011 (-779 (-355))) (-355)) 166) (((-962) (-292 (-355)) (-1011 (-779 (-355))) (-355) (-355)) 162) (((-962) (-708)) 155) (((-962) (-292 (-355)) (-1011 (-779 (-355))) (-355) (-355) (-985)) 161)))
-(((-524) (-10 -7 (-15 -2669 ((-962) (-292 (-355)) (-1011 (-779 (-355))) (-355) (-355) (-985))) (-15 -2669 ((-962) (-708))) (-15 -2669 ((-962) (-292 (-355)) (-1011 (-779 (-355))) (-355) (-355))) (-15 -2669 ((-962) (-292 (-355)) (-1011 (-779 (-355))) (-355))) (-15 -2669 ((-962) (-292 (-355)) (-1011 (-779 (-355))))) (-15 -2669 ((-962) (-292 (-355)) (-589 (-1011 (-779 (-355)))))) (-15 -2669 ((-962) (-292 (-355)) (-589 (-1011 (-779 (-355)))) (-355))) (-15 -2669 ((-962) (-292 (-355)) (-589 (-1011 (-779 (-355)))) (-355) (-355))) (-15 -2669 ((-962) (-292 (-355)) (-589 (-1011 (-779 (-355)))) (-355) (-355) (-985))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))) (|:| |extra| (-962))) (-708))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))) (|:| |extra| (-962))) (-708) (-985))) (-15 -2669 ((-3 (-962) "failed") (-292 (-355)) (-1009 (-779 (-355))) (-1070))) (-15 -2669 ((-3 (-962) "failed") (-292 (-355)) (-1009 (-779 (-355))) (-1087))))) (T -524))
-((-2669 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-292 (-355))) (-5 *4 (-1009 (-779 (-355)))) (-5 *5 (-1087)) (-5 *2 (-962)) (-5 *1 (-524)))) (-2669 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-292 (-355))) (-5 *4 (-1009 (-779 (-355)))) (-5 *5 (-1070)) (-5 *2 (-962)) (-5 *1 (-524)))) (-3359 (*1 *2 *3 *4) (-12 (-5 *3 (-708)) (-5 *4 (-985)) (-5 *2 (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))) (|:| |extra| (-962)))) (-5 *1 (-524)))) (-3359 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))) (|:| |extra| (-962)))) (-5 *1 (-524)))) (-2669 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-292 (-355))) (-5 *4 (-589 (-1011 (-779 (-355))))) (-5 *5 (-355)) (-5 *6 (-985)) (-5 *2 (-962)) (-5 *1 (-524)))) (-2669 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-292 (-355))) (-5 *4 (-589 (-1011 (-779 (-355))))) (-5 *5 (-355)) (-5 *2 (-962)) (-5 *1 (-524)))) (-2669 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-292 (-355))) (-5 *4 (-589 (-1011 (-779 (-355))))) (-5 *5 (-355)) (-5 *2 (-962)) (-5 *1 (-524)))) (-2669 (*1 *2 *3 *4) (-12 (-5 *3 (-292 (-355))) (-5 *4 (-589 (-1011 (-779 (-355))))) (-5 *2 (-962)) (-5 *1 (-524)))) (-2669 (*1 *2 *3 *4) (-12 (-5 *3 (-292 (-355))) (-5 *4 (-1011 (-779 (-355)))) (-5 *2 (-962)) (-5 *1 (-524)))) (-2669 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-292 (-355))) (-5 *4 (-1011 (-779 (-355)))) (-5 *5 (-355)) (-5 *2 (-962)) (-5 *1 (-524)))) (-2669 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-292 (-355))) (-5 *4 (-1011 (-779 (-355)))) (-5 *5 (-355)) (-5 *2 (-962)) (-5 *1 (-524)))) (-2669 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-962)) (-5 *1 (-524)))) (-2669 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-292 (-355))) (-5 *4 (-1011 (-779 (-355)))) (-5 *5 (-355)) (-5 *6 (-985)) (-5 *2 (-962)) (-5 *1 (-524)))))
-(-10 -7 (-15 -2669 ((-962) (-292 (-355)) (-1011 (-779 (-355))) (-355) (-355) (-985))) (-15 -2669 ((-962) (-708))) (-15 -2669 ((-962) (-292 (-355)) (-1011 (-779 (-355))) (-355) (-355))) (-15 -2669 ((-962) (-292 (-355)) (-1011 (-779 (-355))) (-355))) (-15 -2669 ((-962) (-292 (-355)) (-1011 (-779 (-355))))) (-15 -2669 ((-962) (-292 (-355)) (-589 (-1011 (-779 (-355)))))) (-15 -2669 ((-962) (-292 (-355)) (-589 (-1011 (-779 (-355)))) (-355))) (-15 -2669 ((-962) (-292 (-355)) (-589 (-1011 (-779 (-355)))) (-355) (-355))) (-15 -2669 ((-962) (-292 (-355)) (-589 (-1011 (-779 (-355)))) (-355) (-355) (-985))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))) (|:| |extra| (-962))) (-708))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))) (|:| |extra| (-962))) (-708) (-985))) (-15 -2669 ((-3 (-962) "failed") (-292 (-355)) (-1009 (-779 (-355))) (-1070))) (-15 -2669 ((-3 (-962) "failed") (-292 (-355)) (-1009 (-779 (-355))) (-1087))))
-((-3785 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-562 |#2|) (-562 |#2|) (-589 |#2|)) 183)) (-1641 (((-540 |#2|) |#2| (-562 |#2|) (-562 |#2|)) 98)) (-1536 (((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-562 |#2|) (-562 |#2|) |#2|) 179)) (-2389 (((-3 |#2| "failed") |#2| |#2| |#2| (-562 |#2|) (-562 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1087))) 188)) (-3672 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2922 (-589 |#2|))) |#3| |#2| (-562 |#2|) (-562 |#2|) (-1087)) 196 (|has| |#3| (-599 |#2|)))))
-(((-525 |#1| |#2| |#3|) (-10 -7 (-15 -1641 ((-540 |#2|) |#2| (-562 |#2|) (-562 |#2|))) (-15 -1536 ((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-562 |#2|) (-562 |#2|) |#2|)) (-15 -3785 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-562 |#2|) (-562 |#2|) (-589 |#2|))) (-15 -2389 ((-3 |#2| "failed") |#2| |#2| |#2| (-562 |#2|) (-562 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1087)))) (IF (|has| |#3| (-599 |#2|)) (-15 -3672 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2922 (-589 |#2|))) |#3| |#2| (-562 |#2|) (-562 |#2|) (-1087))) |%noBranch|)) (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))) (-13 (-406 |#1|) (-27) (-1109)) (-1016)) (T -525))
-((-3672 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *5 (-562 *4)) (-5 *6 (-1087)) (-4 *4 (-13 (-406 *7) (-27) (-1109))) (-4 *7 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4)))) (-5 *1 (-525 *7 *4 *3)) (-4 *3 (-599 *4)) (-4 *3 (-1016)))) (-2389 (*1 *2 *2 *2 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-562 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1087))) (-4 *2 (-13 (-406 *5) (-27) (-1109))) (-4 *5 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *1 (-525 *5 *2 *6)) (-4 *6 (-1016)))) (-3785 (*1 *2 *3 *4 *4 *5) (|partial| -12 (-5 *4 (-562 *3)) (-5 *5 (-589 *3)) (-4 *3 (-13 (-406 *6) (-27) (-1109))) (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-525 *6 *3 *7)) (-4 *7 (-1016)))) (-1536 (*1 *2 *3 *4 *4 *3) (|partial| -12 (-5 *4 (-562 *3)) (-4 *3 (-13 (-406 *5) (-27) (-1109))) (-4 *5 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *2 (-2 (|:| -3699 *3) (|:| |coeff| *3))) (-5 *1 (-525 *5 *3 *6)) (-4 *6 (-1016)))) (-1641 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-562 *3)) (-4 *3 (-13 (-406 *5) (-27) (-1109))) (-4 *5 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523)))) (-5 *2 (-540 *3)) (-5 *1 (-525 *5 *3 *6)) (-4 *6 (-1016)))))
-(-10 -7 (-15 -1641 ((-540 |#2|) |#2| (-562 |#2|) (-562 |#2|))) (-15 -1536 ((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-562 |#2|) (-562 |#2|) |#2|)) (-15 -3785 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-562 |#2|) (-562 |#2|) (-589 |#2|))) (-15 -2389 ((-3 |#2| "failed") |#2| |#2| |#2| (-562 |#2|) (-562 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1087)))) (IF (|has| |#3| (-599 |#2|)) (-15 -3672 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2922 (-589 |#2|))) |#3| |#2| (-562 |#2|) (-562 |#2|) (-1087))) |%noBranch|))
-((-3370 (((-2 (|:| -2653 |#2|) (|:| |nconst| |#2|)) |#2| (-1087)) 64)) (-2902 (((-3 |#2| "failed") |#2| (-1087) (-779 |#2|) (-779 |#2|)) 163 (-12 (|has| |#2| (-1051)) (|has| |#1| (-564 (-823 (-523)))) (|has| |#1| (-817 (-523))))) (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1087)) 138 (-12 (|has| |#2| (-575)) (|has| |#1| (-564 (-823 (-523)))) (|has| |#1| (-817 (-523)))))) (-2786 (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1087)) 147 (-12 (|has| |#2| (-575)) (|has| |#1| (-564 (-823 (-523)))) (|has| |#1| (-817 (-523)))))))
-(((-526 |#1| |#2|) (-10 -7 (-15 -3370 ((-2 (|:| -2653 |#2|) (|:| |nconst| |#2|)) |#2| (-1087))) (IF (|has| |#1| (-564 (-823 (-523)))) (IF (|has| |#1| (-817 (-523))) (PROGN (IF (|has| |#2| (-575)) (PROGN (-15 -2786 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1087))) (-15 -2902 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1087)))) |%noBranch|) (IF (|has| |#2| (-1051)) (-15 -2902 ((-3 |#2| "failed") |#2| (-1087) (-779 |#2|) (-779 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|)) (-13 (-786) (-964 (-523)) (-427) (-585 (-523))) (-13 (-27) (-1109) (-406 |#1|))) (T -526))
-((-2902 (*1 *2 *2 *3 *4 *4) (|partial| -12 (-5 *3 (-1087)) (-5 *4 (-779 *2)) (-4 *2 (-1051)) (-4 *2 (-13 (-27) (-1109) (-406 *5))) (-4 *5 (-564 (-823 (-523)))) (-4 *5 (-817 (-523))) (-4 *5 (-13 (-786) (-964 (-523)) (-427) (-585 (-523)))) (-5 *1 (-526 *5 *2)))) (-2902 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1087)) (-4 *5 (-564 (-823 (-523)))) (-4 *5 (-817 (-523))) (-4 *5 (-13 (-786) (-964 (-523)) (-427) (-585 (-523)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-526 *5 *3)) (-4 *3 (-575)) (-4 *3 (-13 (-27) (-1109) (-406 *5))))) (-2786 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1087)) (-4 *5 (-564 (-823 (-523)))) (-4 *5 (-817 (-523))) (-4 *5 (-13 (-786) (-964 (-523)) (-427) (-585 (-523)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-526 *5 *3)) (-4 *3 (-575)) (-4 *3 (-13 (-27) (-1109) (-406 *5))))) (-3370 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-4 *5 (-13 (-786) (-964 (-523)) (-427) (-585 (-523)))) (-5 *2 (-2 (|:| -2653 *3) (|:| |nconst| *3))) (-5 *1 (-526 *5 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5))))))
-(-10 -7 (-15 -3370 ((-2 (|:| -2653 |#2|) (|:| |nconst| |#2|)) |#2| (-1087))) (IF (|has| |#1| (-564 (-823 (-523)))) (IF (|has| |#1| (-817 (-523))) (PROGN (IF (|has| |#2| (-575)) (PROGN (-15 -2786 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1087))) (-15 -2902 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1087)))) |%noBranch|) (IF (|has| |#2| (-1051)) (-15 -2902 ((-3 |#2| "failed") |#2| (-1087) (-779 |#2|) (-779 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
-((-2129 (((-3 (-2 (|:| |mainpart| (-383 |#2|)) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| (-383 |#2|)) (|:| |logand| (-383 |#2|)))))) "failed") (-383 |#2|) (-589 (-383 |#2|))) 41)) (-2669 (((-540 (-383 |#2|)) (-383 |#2|)) 28)) (-3769 (((-3 (-383 |#2|) "failed") (-383 |#2|)) 17)) (-3383 (((-3 (-2 (|:| -3699 (-383 |#2|)) (|:| |coeff| (-383 |#2|))) "failed") (-383 |#2|) (-383 |#2|)) 48)))
-(((-527 |#1| |#2|) (-10 -7 (-15 -2669 ((-540 (-383 |#2|)) (-383 |#2|))) (-15 -3769 ((-3 (-383 |#2|) "failed") (-383 |#2|))) (-15 -3383 ((-3 (-2 (|:| -3699 (-383 |#2|)) (|:| |coeff| (-383 |#2|))) "failed") (-383 |#2|) (-383 |#2|))) (-15 -2129 ((-3 (-2 (|:| |mainpart| (-383 |#2|)) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| (-383 |#2|)) (|:| |logand| (-383 |#2|)))))) "failed") (-383 |#2|) (-589 (-383 |#2|))))) (-13 (-339) (-136) (-964 (-523))) (-1145 |#1|)) (T -527))
-((-2129 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-589 (-383 *6))) (-5 *3 (-383 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-13 (-339) (-136) (-964 (-523)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-527 *5 *6)))) (-3383 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-339) (-136) (-964 (-523)))) (-4 *5 (-1145 *4)) (-5 *2 (-2 (|:| -3699 (-383 *5)) (|:| |coeff| (-383 *5)))) (-5 *1 (-527 *4 *5)) (-5 *3 (-383 *5)))) (-3769 (*1 *2 *2) (|partial| -12 (-5 *2 (-383 *4)) (-4 *4 (-1145 *3)) (-4 *3 (-13 (-339) (-136) (-964 (-523)))) (-5 *1 (-527 *3 *4)))) (-2669 (*1 *2 *3) (-12 (-4 *4 (-13 (-339) (-136) (-964 (-523)))) (-4 *5 (-1145 *4)) (-5 *2 (-540 (-383 *5))) (-5 *1 (-527 *4 *5)) (-5 *3 (-383 *5)))))
-(-10 -7 (-15 -2669 ((-540 (-383 |#2|)) (-383 |#2|))) (-15 -3769 ((-3 (-383 |#2|) "failed") (-383 |#2|))) (-15 -3383 ((-3 (-2 (|:| -3699 (-383 |#2|)) (|:| |coeff| (-383 |#2|))) "failed") (-383 |#2|) (-383 |#2|))) (-15 -2129 ((-3 (-2 (|:| |mainpart| (-383 |#2|)) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| (-383 |#2|)) (|:| |logand| (-383 |#2|)))))) "failed") (-383 |#2|) (-589 (-383 |#2|)))))
-((-3144 (((-3 (-523) "failed") |#1|) 14)) (-3500 (((-108) |#1|) 13)) (-3878 (((-523) |#1|) 9)))
-(((-528 |#1|) (-10 -7 (-15 -3878 ((-523) |#1|)) (-15 -3500 ((-108) |#1|)) (-15 -3144 ((-3 (-523) "failed") |#1|))) (-964 (-523))) (T -528))
-((-3144 (*1 *2 *3) (|partial| -12 (-5 *2 (-523)) (-5 *1 (-528 *3)) (-4 *3 (-964 *2)))) (-3500 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-528 *3)) (-4 *3 (-964 (-523))))) (-3878 (*1 *2 *3) (-12 (-5 *2 (-523)) (-5 *1 (-528 *3)) (-4 *3 (-964 *2)))))
-(-10 -7 (-15 -3878 ((-523) |#1|)) (-15 -3500 ((-108) |#1|)) (-15 -3144 ((-3 (-523) "failed") |#1|)))
-((-2132 (((-3 (-2 (|:| |mainpart| (-383 (-883 |#1|))) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| (-383 (-883 |#1|))) (|:| |logand| (-383 (-883 |#1|))))))) "failed") (-383 (-883 |#1|)) (-1087) (-589 (-383 (-883 |#1|)))) 48)) (-3432 (((-540 (-383 (-883 |#1|))) (-383 (-883 |#1|)) (-1087)) 28)) (-2618 (((-3 (-383 (-883 |#1|)) "failed") (-383 (-883 |#1|)) (-1087)) 23)) (-3292 (((-3 (-2 (|:| -3699 (-383 (-883 |#1|))) (|:| |coeff| (-383 (-883 |#1|)))) "failed") (-383 (-883 |#1|)) (-1087) (-383 (-883 |#1|))) 35)))
-(((-529 |#1|) (-10 -7 (-15 -3432 ((-540 (-383 (-883 |#1|))) (-383 (-883 |#1|)) (-1087))) (-15 -2618 ((-3 (-383 (-883 |#1|)) "failed") (-383 (-883 |#1|)) (-1087))) (-15 -2132 ((-3 (-2 (|:| |mainpart| (-383 (-883 |#1|))) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| (-383 (-883 |#1|))) (|:| |logand| (-383 (-883 |#1|))))))) "failed") (-383 (-883 |#1|)) (-1087) (-589 (-383 (-883 |#1|))))) (-15 -3292 ((-3 (-2 (|:| -3699 (-383 (-883 |#1|))) (|:| |coeff| (-383 (-883 |#1|)))) "failed") (-383 (-883 |#1|)) (-1087) (-383 (-883 |#1|))))) (-13 (-515) (-964 (-523)) (-136))) (T -529))
-((-3292 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1087)) (-4 *5 (-13 (-515) (-964 (-523)) (-136))) (-5 *2 (-2 (|:| -3699 (-383 (-883 *5))) (|:| |coeff| (-383 (-883 *5))))) (-5 *1 (-529 *5)) (-5 *3 (-383 (-883 *5))))) (-2132 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1087)) (-5 *5 (-589 (-383 (-883 *6)))) (-5 *3 (-383 (-883 *6))) (-4 *6 (-13 (-515) (-964 (-523)) (-136))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-529 *6)))) (-2618 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-383 (-883 *4))) (-5 *3 (-1087)) (-4 *4 (-13 (-515) (-964 (-523)) (-136))) (-5 *1 (-529 *4)))) (-3432 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-4 *5 (-13 (-515) (-964 (-523)) (-136))) (-5 *2 (-540 (-383 (-883 *5)))) (-5 *1 (-529 *5)) (-5 *3 (-383 (-883 *5))))))
-(-10 -7 (-15 -3432 ((-540 (-383 (-883 |#1|))) (-383 (-883 |#1|)) (-1087))) (-15 -2618 ((-3 (-383 (-883 |#1|)) "failed") (-383 (-883 |#1|)) (-1087))) (-15 -2132 ((-3 (-2 (|:| |mainpart| (-383 (-883 |#1|))) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| (-383 (-883 |#1|))) (|:| |logand| (-383 (-883 |#1|))))))) "failed") (-383 (-883 |#1|)) (-1087) (-589 (-383 (-883 |#1|))))) (-15 -3292 ((-3 (-2 (|:| -3699 (-383 (-883 |#1|))) (|:| |coeff| (-383 (-883 |#1|)))) "failed") (-383 (-883 |#1|)) (-1087) (-383 (-883 |#1|)))))
-((-3260 (((-108) $ $) 59)) (-2388 (((-108) $) 36)) (-1237 ((|#1| $) 30)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) 63)) (-3695 (($ $) 123)) (-2608 (($ $) 103)) (-1773 ((|#1| $) 28)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3584 (($ $) NIL)) (-3669 (($ $) 125)) (-2588 (($ $) 99)) (-3717 (($ $) 127)) (-2629 (($ $) 107)) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) 78)) (-1996 (((-523) $) 80)) (-4211 (((-3 $ "failed") $) 62)) (-3009 (($ |#1| |#1|) 26)) (-3702 (((-108) $) 33)) (-2188 (($) 89)) (-3482 (((-108) $) 43)) (-1324 (($ $ (-523)) NIL)) (-4050 (((-108) $) 34)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-2062 (($ $) 91)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3742 (($ |#1| |#1|) 20) (($ |#1|) 25) (($ (-383 (-523))) 77)) (-2508 ((|#1| $) 27)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) 65) (($ (-589 $)) NIL)) (-2469 (((-3 $ "failed") $ $) 64)) (-1847 (($ $) 93)) (-3730 (($ $) 131)) (-2641 (($ $) 105)) (-3707 (($ $) 133)) (-2617 (($ $) 109)) (-3683 (($ $) 129)) (-2598 (($ $) 101)) (-1350 (((-108) $ |#1|) 31)) (-3976 (((-794) $) 85) (($ (-523)) 67) (($ $) NIL) (($ (-523)) 67)) (-1698 (((-710)) 87)) (-3768 (($ $) 145)) (-2680 (($ $) 115)) (-3842 (((-108) $ $) NIL)) (-3743 (($ $) 143)) (-2655 (($ $) 111)) (-3793 (($ $) 141)) (-3645 (($ $) 121)) (-3135 (($ $) 139)) (-3657 (($ $) 119)) (-3780 (($ $) 137)) (-3632 (($ $) 117)) (-3756 (($ $) 135)) (-2667 (($ $) 113)) (-2573 (($ $ (-852)) 55) (($ $ (-710)) NIL)) (-1428 (($) 21 T CONST)) (-1440 (($) 10 T CONST)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 37)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 35)) (-4115 (($ $) 41) (($ $ $) 42)) (-4103 (($ $ $) 40)) (** (($ $ (-852)) 54) (($ $ (-710)) NIL) (($ $ $) 95) (($ $ (-383 (-523))) 147)) (* (($ (-852) $) 51) (($ (-710) $) NIL) (($ (-523) $) 50) (($ $ $) 48)))
-(((-530 |#1|) (-513 |#1|) (-13 (-380) (-1109))) (T -530))
-NIL
-(-513 |#1|)
-((-3908 (((-3 (-589 (-1083 (-523))) "failed") (-589 (-1083 (-523))) (-1083 (-523))) 24)))
-(((-531) (-10 -7 (-15 -3908 ((-3 (-589 (-1083 (-523))) "failed") (-589 (-1083 (-523))) (-1083 (-523)))))) (T -531))
-((-3908 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-589 (-1083 (-523)))) (-5 *3 (-1083 (-523))) (-5 *1 (-531)))))
-(-10 -7 (-15 -3908 ((-3 (-589 (-1083 (-523))) "failed") (-589 (-1083 (-523))) (-1083 (-523)))))
-((-2945 (((-589 (-562 |#2|)) (-589 (-562 |#2|)) (-1087)) 19)) (-1325 (((-589 (-562 |#2|)) (-589 |#2|) (-1087)) 23)) (-2073 (((-589 (-562 |#2|)) (-589 (-562 |#2|)) (-589 (-562 |#2|))) 11)) (-4179 ((|#2| |#2| (-1087)) 54 (|has| |#1| (-515)))) (-3277 ((|#2| |#2| (-1087)) 78 (-12 (|has| |#2| (-261)) (|has| |#1| (-427))))) (-3715 (((-562 |#2|) (-562 |#2|) (-589 (-562 |#2|)) (-1087)) 25)) (-2987 (((-562 |#2|) (-589 (-562 |#2|))) 24)) (-1947 (((-540 |#2|) |#2| (-1087) (-1 (-540 |#2|) |#2| (-1087)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1087))) 103 (-12 (|has| |#2| (-261)) (|has| |#2| (-575)) (|has| |#2| (-964 (-1087))) (|has| |#1| (-564 (-823 (-523)))) (|has| |#1| (-427)) (|has| |#1| (-817 (-523)))))))
-(((-532 |#1| |#2|) (-10 -7 (-15 -2945 ((-589 (-562 |#2|)) (-589 (-562 |#2|)) (-1087))) (-15 -2987 ((-562 |#2|) (-589 (-562 |#2|)))) (-15 -3715 ((-562 |#2|) (-562 |#2|) (-589 (-562 |#2|)) (-1087))) (-15 -2073 ((-589 (-562 |#2|)) (-589 (-562 |#2|)) (-589 (-562 |#2|)))) (-15 -1325 ((-589 (-562 |#2|)) (-589 |#2|) (-1087))) (IF (|has| |#1| (-515)) (-15 -4179 (|#2| |#2| (-1087))) |%noBranch|) (IF (|has| |#1| (-427)) (IF (|has| |#2| (-261)) (PROGN (-15 -3277 (|#2| |#2| (-1087))) (IF (|has| |#1| (-564 (-823 (-523)))) (IF (|has| |#1| (-817 (-523))) (IF (|has| |#2| (-575)) (IF (|has| |#2| (-964 (-1087))) (-15 -1947 ((-540 |#2|) |#2| (-1087) (-1 (-540 |#2|) |#2| (-1087)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1087)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|)) (-786) (-406 |#1|)) (T -532))
-((-1947 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-1 (-540 *3) *3 (-1087))) (-5 *6 (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3 (-1087))) (-4 *3 (-261)) (-4 *3 (-575)) (-4 *3 (-964 *4)) (-4 *3 (-406 *7)) (-5 *4 (-1087)) (-4 *7 (-564 (-823 (-523)))) (-4 *7 (-427)) (-4 *7 (-817 (-523))) (-4 *7 (-786)) (-5 *2 (-540 *3)) (-5 *1 (-532 *7 *3)))) (-3277 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-427)) (-4 *4 (-786)) (-5 *1 (-532 *4 *2)) (-4 *2 (-261)) (-4 *2 (-406 *4)))) (-4179 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-515)) (-4 *4 (-786)) (-5 *1 (-532 *4 *2)) (-4 *2 (-406 *4)))) (-1325 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *6)) (-5 *4 (-1087)) (-4 *6 (-406 *5)) (-4 *5 (-786)) (-5 *2 (-589 (-562 *6))) (-5 *1 (-532 *5 *6)))) (-2073 (*1 *2 *2 *2) (-12 (-5 *2 (-589 (-562 *4))) (-4 *4 (-406 *3)) (-4 *3 (-786)) (-5 *1 (-532 *3 *4)))) (-3715 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-589 (-562 *6))) (-5 *4 (-1087)) (-5 *2 (-562 *6)) (-4 *6 (-406 *5)) (-4 *5 (-786)) (-5 *1 (-532 *5 *6)))) (-2987 (*1 *2 *3) (-12 (-5 *3 (-589 (-562 *5))) (-4 *4 (-786)) (-5 *2 (-562 *5)) (-5 *1 (-532 *4 *5)) (-4 *5 (-406 *4)))) (-2945 (*1 *2 *2 *3) (-12 (-5 *2 (-589 (-562 *5))) (-5 *3 (-1087)) (-4 *5 (-406 *4)) (-4 *4 (-786)) (-5 *1 (-532 *4 *5)))))
-(-10 -7 (-15 -2945 ((-589 (-562 |#2|)) (-589 (-562 |#2|)) (-1087))) (-15 -2987 ((-562 |#2|) (-589 (-562 |#2|)))) (-15 -3715 ((-562 |#2|) (-562 |#2|) (-589 (-562 |#2|)) (-1087))) (-15 -2073 ((-589 (-562 |#2|)) (-589 (-562 |#2|)) (-589 (-562 |#2|)))) (-15 -1325 ((-589 (-562 |#2|)) (-589 |#2|) (-1087))) (IF (|has| |#1| (-515)) (-15 -4179 (|#2| |#2| (-1087))) |%noBranch|) (IF (|has| |#1| (-427)) (IF (|has| |#2| (-261)) (PROGN (-15 -3277 (|#2| |#2| (-1087))) (IF (|has| |#1| (-564 (-823 (-523)))) (IF (|has| |#1| (-817 (-523))) (IF (|has| |#2| (-575)) (IF (|has| |#2| (-964 (-1087))) (-15 -1947 ((-540 |#2|) |#2| (-1087) (-1 (-540 |#2|) |#2| (-1087)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1087)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|))
-((-3734 (((-2 (|:| |answer| (-540 (-383 |#2|))) (|:| |a0| |#1|)) (-383 |#2|) (-1 |#2| |#2|) (-1 (-3 (-589 |#1|) "failed") (-523) |#1| |#1|)) 171)) (-2911 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-383 |#2|)) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| (-383 |#2|)) (|:| |logand| (-383 |#2|))))))) (|:| |a0| |#1|)) "failed") (-383 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3699 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-589 (-383 |#2|))) 147)) (-1305 (((-3 (-2 (|:| |mainpart| (-383 |#2|)) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| (-383 |#2|)) (|:| |logand| (-383 |#2|)))))) "failed") (-383 |#2|) (-1 |#2| |#2|) (-589 (-383 |#2|))) 144)) (-1643 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3699 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 132)) (-1223 (((-2 (|:| |answer| (-540 (-383 |#2|))) (|:| |a0| |#1|)) (-383 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3699 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 157)) (-4085 (((-3 (-2 (|:| -3699 (-383 |#2|)) (|:| |coeff| (-383 |#2|))) "failed") (-383 |#2|) (-1 |#2| |#2|) (-383 |#2|)) 174)) (-2677 (((-3 (-2 (|:| |answer| (-383 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3699 (-383 |#2|)) (|:| |coeff| (-383 |#2|))) "failed") (-383 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3699 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-383 |#2|)) 177)) (-1808 (((-2 (|:| |ir| (-540 (-383 |#2|))) (|:| |specpart| (-383 |#2|)) (|:| |polypart| |#2|)) (-383 |#2|) (-1 |#2| |#2|)) 83)) (-3022 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 89)) (-3426 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-383 |#2|)) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| (-383 |#2|)) (|:| |logand| (-383 |#2|))))))) (|:| |a0| |#1|)) "failed") (-383 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2438 |#1|) (|:| |sol?| (-108))) (-523) |#1|) (-589 (-383 |#2|))) 151)) (-2070 (((-3 (-570 |#1| |#2|) "failed") (-570 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2438 |#1|) (|:| |sol?| (-108))) (-523) |#1|)) 136)) (-1809 (((-2 (|:| |answer| (-540 (-383 |#2|))) (|:| |a0| |#1|)) (-383 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2438 |#1|) (|:| |sol?| (-108))) (-523) |#1|)) 161)) (-2384 (((-3 (-2 (|:| |answer| (-383 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3699 (-383 |#2|)) (|:| |coeff| (-383 |#2|))) "failed") (-383 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2438 |#1|) (|:| |sol?| (-108))) (-523) |#1|) (-383 |#2|)) 182)))
-(((-533 |#1| |#2|) (-10 -7 (-15 -1223 ((-2 (|:| |answer| (-540 (-383 |#2|))) (|:| |a0| |#1|)) (-383 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3699 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -1809 ((-2 (|:| |answer| (-540 (-383 |#2|))) (|:| |a0| |#1|)) (-383 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2438 |#1|) (|:| |sol?| (-108))) (-523) |#1|))) (-15 -3734 ((-2 (|:| |answer| (-540 (-383 |#2|))) (|:| |a0| |#1|)) (-383 |#2|) (-1 |#2| |#2|) (-1 (-3 (-589 |#1|) "failed") (-523) |#1| |#1|))) (-15 -2677 ((-3 (-2 (|:| |answer| (-383 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3699 (-383 |#2|)) (|:| |coeff| (-383 |#2|))) "failed") (-383 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3699 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-383 |#2|))) (-15 -2384 ((-3 (-2 (|:| |answer| (-383 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3699 (-383 |#2|)) (|:| |coeff| (-383 |#2|))) "failed") (-383 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2438 |#1|) (|:| |sol?| (-108))) (-523) |#1|) (-383 |#2|))) (-15 -2911 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-383 |#2|)) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| (-383 |#2|)) (|:| |logand| (-383 |#2|))))))) (|:| |a0| |#1|)) "failed") (-383 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3699 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-589 (-383 |#2|)))) (-15 -3426 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-383 |#2|)) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| (-383 |#2|)) (|:| |logand| (-383 |#2|))))))) (|:| |a0| |#1|)) "failed") (-383 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2438 |#1|) (|:| |sol?| (-108))) (-523) |#1|) (-589 (-383 |#2|)))) (-15 -4085 ((-3 (-2 (|:| -3699 (-383 |#2|)) (|:| |coeff| (-383 |#2|))) "failed") (-383 |#2|) (-1 |#2| |#2|) (-383 |#2|))) (-15 -1305 ((-3 (-2 (|:| |mainpart| (-383 |#2|)) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| (-383 |#2|)) (|:| |logand| (-383 |#2|)))))) "failed") (-383 |#2|) (-1 |#2| |#2|) (-589 (-383 |#2|)))) (-15 -1643 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3699 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -2070 ((-3 (-570 |#1| |#2|) "failed") (-570 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2438 |#1|) (|:| |sol?| (-108))) (-523) |#1|))) (-15 -1808 ((-2 (|:| |ir| (-540 (-383 |#2|))) (|:| |specpart| (-383 |#2|)) (|:| |polypart| |#2|)) (-383 |#2|) (-1 |#2| |#2|))) (-15 -3022 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-339) (-1145 |#1|)) (T -533))
-((-3022 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1145 *5)) (-4 *5 (-339)) (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3))) (-5 *1 (-533 *5 *3)))) (-1808 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-339)) (-5 *2 (-2 (|:| |ir| (-540 (-383 *6))) (|:| |specpart| (-383 *6)) (|:| |polypart| *6))) (-5 *1 (-533 *5 *6)) (-5 *3 (-383 *6)))) (-2070 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-570 *4 *5)) (-5 *3 (-1 (-2 (|:| |ans| *4) (|:| -2438 *4) (|:| |sol?| (-108))) (-523) *4)) (-4 *4 (-339)) (-4 *5 (-1145 *4)) (-5 *1 (-533 *4 *5)))) (-1643 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -3699 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-339)) (-5 *1 (-533 *4 *2)) (-4 *2 (-1145 *4)))) (-1305 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-589 (-383 *7))) (-4 *7 (-1145 *6)) (-5 *3 (-383 *7)) (-4 *6 (-339)) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-533 *6 *7)))) (-4085 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-339)) (-5 *2 (-2 (|:| -3699 (-383 *6)) (|:| |coeff| (-383 *6)))) (-5 *1 (-533 *5 *6)) (-5 *3 (-383 *6)))) (-3426 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-2 (|:| |ans| *7) (|:| -2438 *7) (|:| |sol?| (-108))) (-523) *7)) (-5 *6 (-589 (-383 *8))) (-4 *7 (-339)) (-4 *8 (-1145 *7)) (-5 *3 (-383 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-533 *7 *8)))) (-2911 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -3699 *7) (|:| |coeff| *7)) "failed") *7)) (-5 *6 (-589 (-383 *8))) (-4 *7 (-339)) (-4 *8 (-1145 *7)) (-5 *3 (-383 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-533 *7 *8)))) (-2384 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -2438 *6) (|:| |sol?| (-108))) (-523) *6)) (-4 *6 (-339)) (-4 *7 (-1145 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-383 *7)) (|:| |a0| *6)) (-2 (|:| -3699 (-383 *7)) (|:| |coeff| (-383 *7))) "failed")) (-5 *1 (-533 *6 *7)) (-5 *3 (-383 *7)))) (-2677 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -3699 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-339)) (-4 *7 (-1145 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-383 *7)) (|:| |a0| *6)) (-2 (|:| -3699 (-383 *7)) (|:| |coeff| (-383 *7))) "failed")) (-5 *1 (-533 *6 *7)) (-5 *3 (-383 *7)))) (-3734 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-589 *6) "failed") (-523) *6 *6)) (-4 *6 (-339)) (-4 *7 (-1145 *6)) (-5 *2 (-2 (|:| |answer| (-540 (-383 *7))) (|:| |a0| *6))) (-5 *1 (-533 *6 *7)) (-5 *3 (-383 *7)))) (-1809 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -2438 *6) (|:| |sol?| (-108))) (-523) *6)) (-4 *6 (-339)) (-4 *7 (-1145 *6)) (-5 *2 (-2 (|:| |answer| (-540 (-383 *7))) (|:| |a0| *6))) (-5 *1 (-533 *6 *7)) (-5 *3 (-383 *7)))) (-1223 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -3699 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-339)) (-4 *7 (-1145 *6)) (-5 *2 (-2 (|:| |answer| (-540 (-383 *7))) (|:| |a0| *6))) (-5 *1 (-533 *6 *7)) (-5 *3 (-383 *7)))))
-(-10 -7 (-15 -1223 ((-2 (|:| |answer| (-540 (-383 |#2|))) (|:| |a0| |#1|)) (-383 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3699 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -1809 ((-2 (|:| |answer| (-540 (-383 |#2|))) (|:| |a0| |#1|)) (-383 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2438 |#1|) (|:| |sol?| (-108))) (-523) |#1|))) (-15 -3734 ((-2 (|:| |answer| (-540 (-383 |#2|))) (|:| |a0| |#1|)) (-383 |#2|) (-1 |#2| |#2|) (-1 (-3 (-589 |#1|) "failed") (-523) |#1| |#1|))) (-15 -2677 ((-3 (-2 (|:| |answer| (-383 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3699 (-383 |#2|)) (|:| |coeff| (-383 |#2|))) "failed") (-383 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3699 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-383 |#2|))) (-15 -2384 ((-3 (-2 (|:| |answer| (-383 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3699 (-383 |#2|)) (|:| |coeff| (-383 |#2|))) "failed") (-383 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2438 |#1|) (|:| |sol?| (-108))) (-523) |#1|) (-383 |#2|))) (-15 -2911 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-383 |#2|)) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| (-383 |#2|)) (|:| |logand| (-383 |#2|))))))) (|:| |a0| |#1|)) "failed") (-383 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3699 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-589 (-383 |#2|)))) (-15 -3426 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-383 |#2|)) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| (-383 |#2|)) (|:| |logand| (-383 |#2|))))))) (|:| |a0| |#1|)) "failed") (-383 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2438 |#1|) (|:| |sol?| (-108))) (-523) |#1|) (-589 (-383 |#2|)))) (-15 -4085 ((-3 (-2 (|:| -3699 (-383 |#2|)) (|:| |coeff| (-383 |#2|))) "failed") (-383 |#2|) (-1 |#2| |#2|) (-383 |#2|))) (-15 -1305 ((-3 (-2 (|:| |mainpart| (-383 |#2|)) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| (-383 |#2|)) (|:| |logand| (-383 |#2|)))))) "failed") (-383 |#2|) (-1 |#2| |#2|) (-589 (-383 |#2|)))) (-15 -1643 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3699 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -2070 ((-3 (-570 |#1| |#2|) "failed") (-570 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2438 |#1|) (|:| |sol?| (-108))) (-523) |#1|))) (-15 -1808 ((-2 (|:| |ir| (-540 (-383 |#2|))) (|:| |specpart| (-383 |#2|)) (|:| |polypart| |#2|)) (-383 |#2|) (-1 |#2| |#2|))) (-15 -3022 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
-((-4216 (((-3 |#2| "failed") |#2| (-1087) (-1087)) 10)))
-(((-534 |#1| |#2|) (-10 -7 (-15 -4216 ((-3 |#2| "failed") |#2| (-1087) (-1087)))) (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))) (-13 (-1109) (-889) (-1051) (-29 |#1|))) (T -534))
-((-4216 (*1 *2 *2 *3 *3) (|partial| -12 (-5 *3 (-1087)) (-4 *4 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *1 (-534 *4 *2)) (-4 *2 (-13 (-1109) (-889) (-1051) (-29 *4))))))
-(-10 -7 (-15 -4216 ((-3 |#2| "failed") |#2| (-1087) (-1087))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3584 (($ $ (-523)) 66)) (-3684 (((-108) $ $) NIL)) (-1640 (($) NIL T CONST)) (-2938 (($ (-1083 (-523)) (-523)) 72)) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) 58)) (-1729 (($ $) 34)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1500 (((-710) $) 15)) (-3482 (((-108) $) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3014 (((-523)) 29)) (-2385 (((-523) $) 32)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1361 (($ $ (-523)) 21)) (-2469 (((-3 $ "failed") $ $) 59)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) 16)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 61)) (-2080 (((-1068 (-523)) $) 18)) (-3749 (($ $) 23)) (-3976 (((-794) $) 87) (($ (-523)) 52) (($ $) NIL)) (-1698 (((-710)) 14)) (-3842 (((-108) $ $) NIL)) (-2523 (((-523) $ (-523)) 36)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 35 T CONST)) (-1440 (($) 19 T CONST)) (-4037 (((-108) $ $) 39)) (-4115 (($ $) 51) (($ $ $) 37)) (-4103 (($ $ $) 50)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 54) (($ $ $) 55)))
-(((-535 |#1| |#2|) (-800 |#1|) (-523) (-108)) (T -535))
-NIL
-(-800 |#1|)
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 21)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-3867 (((-108) $) NIL)) (-4154 (((-710)) NIL)) (-4131 (($ $ (-852)) NIL (|has| $ (-344))) (($ $) NIL)) (-2794 (((-1097 (-852) (-710)) (-523)) 47)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-3843 (((-710)) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 $ "failed") $) 75)) (-1996 (($ $) 74)) (-3322 (($ (-1169 $)) 73)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) 44)) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) 32)) (-3461 (($) NIL)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-2097 (($) 49)) (-1200 (((-108) $) NIL)) (-1419 (($ $) NIL) (($ $ (-710)) NIL)) (-1330 (((-108) $) NIL)) (-1500 (((-772 (-852)) $) NIL) (((-852) $) NIL)) (-3482 (((-108) $) NIL)) (-2842 (($) 37 (|has| $ (-344)))) (-4077 (((-108) $) NIL (|has| $ (-344)))) (-2765 (($ $ (-852)) NIL (|has| $ (-344))) (($ $) NIL)) (-1289 (((-3 $ "failed") $) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2277 (((-1083 $) $ (-852)) NIL (|has| $ (-344))) (((-1083 $) $) 83)) (-4076 (((-852) $) 55)) (-1573 (((-1083 $) $) NIL (|has| $ (-344)))) (-3102 (((-3 (-1083 $) "failed") $ $) NIL (|has| $ (-344))) (((-1083 $) $) NIL (|has| $ (-344)))) (-2163 (($ $ (-1083 $)) NIL (|has| $ (-344)))) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL T CONST)) (-2557 (($ (-852)) 48)) (-4203 (((-108) $) 67)) (-2435 (((-1034) $) NIL)) (-4102 (($) 19 (|has| $ (-344)))) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) 42)) (-3573 (((-394 $) $) NIL)) (-3718 (((-852)) 66) (((-772 (-852))) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2041 (((-3 (-710) "failed") $ $) NIL) (((-710) $) NIL)) (-4012 (((-126)) NIL)) (-4024 (($ $ (-710)) NIL) (($ $) NIL)) (-1487 (((-852) $) 65) (((-772 (-852)) $) NIL)) (-3399 (((-1083 $)) 82)) (-2315 (($) 54)) (-2233 (($) 38 (|has| $ (-344)))) (-2411 (((-629 $) (-1169 $)) NIL) (((-1169 $) $) 71)) (-3077 (((-523) $) 28)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) 30) (($ $) NIL) (($ (-383 (-523))) NIL)) (-2301 (((-3 $ "failed") $) NIL) (($ $) 84)) (-1698 (((-710)) 39)) (-2922 (((-1169 $) (-852)) 77) (((-1169 $)) 76)) (-3842 (((-108) $ $) NIL)) (-4079 (((-108) $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) 22 T CONST)) (-1440 (($) 18 T CONST)) (-1732 (($ $ (-710)) NIL (|has| $ (-344))) (($ $) NIL (|has| $ (-344)))) (-1943 (($ $ (-710)) NIL) (($ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) 26)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 61) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL)))
-(((-536 |#1|) (-13 (-325) (-305 $) (-564 (-523))) (-852)) (T -536))
-NIL
-(-13 (-325) (-305 $) (-564 (-523)))
-((-2085 (((-1174) (-1070)) 10)))
-(((-537) (-10 -7 (-15 -2085 ((-1174) (-1070))))) (T -537))
-((-2085 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-537)))))
-(-10 -7 (-15 -2085 ((-1174) (-1070))))
-((-1380 (((-540 |#2|) (-540 |#2|)) 40)) (-1276 (((-589 |#2|) (-540 |#2|)) 42)) (-2843 ((|#2| (-540 |#2|)) 48)))
-(((-538 |#1| |#2|) (-10 -7 (-15 -1380 ((-540 |#2|) (-540 |#2|))) (-15 -1276 ((-589 |#2|) (-540 |#2|))) (-15 -2843 (|#2| (-540 |#2|)))) (-13 (-427) (-964 (-523)) (-786) (-585 (-523))) (-13 (-29 |#1|) (-1109))) (T -538))
-((-2843 (*1 *2 *3) (-12 (-5 *3 (-540 *2)) (-4 *2 (-13 (-29 *4) (-1109))) (-5 *1 (-538 *4 *2)) (-4 *4 (-13 (-427) (-964 (-523)) (-786) (-585 (-523)))))) (-1276 (*1 *2 *3) (-12 (-5 *3 (-540 *5)) (-4 *5 (-13 (-29 *4) (-1109))) (-4 *4 (-13 (-427) (-964 (-523)) (-786) (-585 (-523)))) (-5 *2 (-589 *5)) (-5 *1 (-538 *4 *5)))) (-1380 (*1 *2 *2) (-12 (-5 *2 (-540 *4)) (-4 *4 (-13 (-29 *3) (-1109))) (-4 *3 (-13 (-427) (-964 (-523)) (-786) (-585 (-523)))) (-5 *1 (-538 *3 *4)))))
-(-10 -7 (-15 -1380 ((-540 |#2|) (-540 |#2|))) (-15 -1276 ((-589 |#2|) (-540 |#2|))) (-15 -2843 (|#2| (-540 |#2|))))
-((-3015 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) 44) (((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed")) 11) (((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3699 |#1|) (|:| |coeff| |#1|)) "failed")) 35) (((-540 |#2|) (-1 |#2| |#1|) (-540 |#1|)) 30)))
-(((-539 |#1| |#2|) (-10 -7 (-15 -3015 ((-540 |#2|) (-1 |#2| |#1|) (-540 |#1|))) (-15 -3015 ((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3699 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -3015 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -3015 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")))) (-339) (-339)) (T -539))
-((-3015 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| |mainpart| *5) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| *5) (|:| |logand| *5))))) "failed")) (-4 *5 (-339)) (-4 *6 (-339)) (-5 *2 (-2 (|:| |mainpart| *6) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| *6) (|:| |logand| *6)))))) (-5 *1 (-539 *5 *6)))) (-3015 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed")) (-4 *5 (-339)) (-4 *2 (-339)) (-5 *1 (-539 *5 *2)))) (-3015 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -3699 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-339)) (-4 *6 (-339)) (-5 *2 (-2 (|:| -3699 *6) (|:| |coeff| *6))) (-5 *1 (-539 *5 *6)))) (-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-540 *5)) (-4 *5 (-339)) (-4 *6 (-339)) (-5 *2 (-540 *6)) (-5 *1 (-539 *5 *6)))))
-(-10 -7 (-15 -3015 ((-540 |#2|) (-1 |#2| |#1|) (-540 |#1|))) (-15 -3015 ((-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3699 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -3015 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -3015 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed"))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) 69)) (-1996 ((|#1| $) NIL)) (-3699 ((|#1| $) 26)) (-1222 (((-589 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 28)) (-1224 (($ |#1| (-589 (-2 (|:| |scalar| (-383 (-523))) (|:| |coeff| (-1083 |#1|)) (|:| |logand| (-1083 |#1|)))) (-589 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 24)) (-3251 (((-589 (-2 (|:| |scalar| (-383 (-523))) (|:| |coeff| (-1083 |#1|)) (|:| |logand| (-1083 |#1|)))) $) 27)) (-3841 (((-1070) $) NIL)) (-1777 (($ |#1| |#1|) 33) (($ |#1| (-1087)) 44 (|has| |#1| (-964 (-1087))))) (-2435 (((-1034) $) NIL)) (-2933 (((-108) $) 30)) (-4024 ((|#1| $ (-1 |#1| |#1|)) 81) ((|#1| $ (-1087)) 82 (|has| |#1| (-831 (-1087))))) (-3976 (((-794) $) 96) (($ |#1|) 25)) (-1428 (($) 16 T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) 15) (($ $ $) NIL)) (-4103 (($ $ $) 78)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 14) (($ (-383 (-523)) $) 36) (($ $ (-383 (-523))) NIL)))
-(((-540 |#1|) (-13 (-657 (-383 (-523))) (-964 |#1|) (-10 -8 (-15 -1224 ($ |#1| (-589 (-2 (|:| |scalar| (-383 (-523))) (|:| |coeff| (-1083 |#1|)) (|:| |logand| (-1083 |#1|)))) (-589 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -3699 (|#1| $)) (-15 -3251 ((-589 (-2 (|:| |scalar| (-383 (-523))) (|:| |coeff| (-1083 |#1|)) (|:| |logand| (-1083 |#1|)))) $)) (-15 -1222 ((-589 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -2933 ((-108) $)) (-15 -1777 ($ |#1| |#1|)) (-15 -4024 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-831 (-1087))) (-15 -4024 (|#1| $ (-1087))) |%noBranch|) (IF (|has| |#1| (-964 (-1087))) (-15 -1777 ($ |#1| (-1087))) |%noBranch|))) (-339)) (T -540))
-((-1224 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-589 (-2 (|:| |scalar| (-383 (-523))) (|:| |coeff| (-1083 *2)) (|:| |logand| (-1083 *2))))) (-5 *4 (-589 (-2 (|:| |integrand| *2) (|:| |intvar| *2)))) (-4 *2 (-339)) (-5 *1 (-540 *2)))) (-3699 (*1 *2 *1) (-12 (-5 *1 (-540 *2)) (-4 *2 (-339)))) (-3251 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| |scalar| (-383 (-523))) (|:| |coeff| (-1083 *3)) (|:| |logand| (-1083 *3))))) (-5 *1 (-540 *3)) (-4 *3 (-339)))) (-1222 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-540 *3)) (-4 *3 (-339)))) (-2933 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-540 *3)) (-4 *3 (-339)))) (-1777 (*1 *1 *2 *2) (-12 (-5 *1 (-540 *2)) (-4 *2 (-339)))) (-4024 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-540 *2)) (-4 *2 (-339)))) (-4024 (*1 *2 *1 *3) (-12 (-4 *2 (-339)) (-4 *2 (-831 *3)) (-5 *1 (-540 *2)) (-5 *3 (-1087)))) (-1777 (*1 *1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *1 (-540 *2)) (-4 *2 (-964 *3)) (-4 *2 (-339)))))
-(-13 (-657 (-383 (-523))) (-964 |#1|) (-10 -8 (-15 -1224 ($ |#1| (-589 (-2 (|:| |scalar| (-383 (-523))) (|:| |coeff| (-1083 |#1|)) (|:| |logand| (-1083 |#1|)))) (-589 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -3699 (|#1| $)) (-15 -3251 ((-589 (-2 (|:| |scalar| (-383 (-523))) (|:| |coeff| (-1083 |#1|)) (|:| |logand| (-1083 |#1|)))) $)) (-15 -1222 ((-589 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -2933 ((-108) $)) (-15 -1777 ($ |#1| |#1|)) (-15 -4024 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-831 (-1087))) (-15 -4024 (|#1| $ (-1087))) |%noBranch|) (IF (|has| |#1| (-964 (-1087))) (-15 -1777 ($ |#1| (-1087))) |%noBranch|)))
-((-2703 (((-108) |#1|) 16)) (-1861 (((-3 |#1| "failed") |#1|) 14)) (-2253 (((-2 (|:| -3912 |#1|) (|:| -3262 (-710))) |#1|) 31) (((-3 |#1| "failed") |#1| (-710)) 18)) (-3301 (((-108) |#1| (-710)) 19)) (-4032 ((|#1| |#1|) 32)) (-1374 ((|#1| |#1| (-710)) 34)))
-(((-541 |#1|) (-10 -7 (-15 -3301 ((-108) |#1| (-710))) (-15 -2253 ((-3 |#1| "failed") |#1| (-710))) (-15 -2253 ((-2 (|:| -3912 |#1|) (|:| -3262 (-710))) |#1|)) (-15 -1374 (|#1| |#1| (-710))) (-15 -2703 ((-108) |#1|)) (-15 -1861 ((-3 |#1| "failed") |#1|)) (-15 -4032 (|#1| |#1|))) (-508)) (T -541))
-((-4032 (*1 *2 *2) (-12 (-5 *1 (-541 *2)) (-4 *2 (-508)))) (-1861 (*1 *2 *2) (|partial| -12 (-5 *1 (-541 *2)) (-4 *2 (-508)))) (-2703 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-541 *3)) (-4 *3 (-508)))) (-1374 (*1 *2 *2 *3) (-12 (-5 *3 (-710)) (-5 *1 (-541 *2)) (-4 *2 (-508)))) (-2253 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -3912 *3) (|:| -3262 (-710)))) (-5 *1 (-541 *3)) (-4 *3 (-508)))) (-2253 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-710)) (-5 *1 (-541 *2)) (-4 *2 (-508)))) (-3301 (*1 *2 *3 *4) (-12 (-5 *4 (-710)) (-5 *2 (-108)) (-5 *1 (-541 *3)) (-4 *3 (-508)))))
-(-10 -7 (-15 -3301 ((-108) |#1| (-710))) (-15 -2253 ((-3 |#1| "failed") |#1| (-710))) (-15 -2253 ((-2 (|:| -3912 |#1|) (|:| -3262 (-710))) |#1|)) (-15 -1374 (|#1| |#1| (-710))) (-15 -2703 ((-108) |#1|)) (-15 -1861 ((-3 |#1| "failed") |#1|)) (-15 -4032 (|#1| |#1|)))
-((-3299 (((-1083 |#1|) (-852)) 27)))
-(((-542 |#1|) (-10 -7 (-15 -3299 ((-1083 |#1|) (-852)))) (-325)) (T -542))
-((-3299 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-542 *4)) (-4 *4 (-325)))))
-(-10 -7 (-15 -3299 ((-1083 |#1|) (-852))))
-((-1380 (((-540 (-383 (-883 |#1|))) (-540 (-383 (-883 |#1|)))) 27)) (-2669 (((-3 (-292 |#1|) (-589 (-292 |#1|))) (-383 (-883 |#1|)) (-1087)) 33 (|has| |#1| (-136)))) (-1276 (((-589 (-292 |#1|)) (-540 (-383 (-883 |#1|)))) 19)) (-2826 (((-292 |#1|) (-383 (-883 |#1|)) (-1087)) 31 (|has| |#1| (-136)))) (-2843 (((-292 |#1|) (-540 (-383 (-883 |#1|)))) 21)))
-(((-543 |#1|) (-10 -7 (-15 -1380 ((-540 (-383 (-883 |#1|))) (-540 (-383 (-883 |#1|))))) (-15 -1276 ((-589 (-292 |#1|)) (-540 (-383 (-883 |#1|))))) (-15 -2843 ((-292 |#1|) (-540 (-383 (-883 |#1|))))) (IF (|has| |#1| (-136)) (PROGN (-15 -2669 ((-3 (-292 |#1|) (-589 (-292 |#1|))) (-383 (-883 |#1|)) (-1087))) (-15 -2826 ((-292 |#1|) (-383 (-883 |#1|)) (-1087)))) |%noBranch|)) (-13 (-427) (-964 (-523)) (-786) (-585 (-523)))) (T -543))
-((-2826 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-1087)) (-4 *5 (-136)) (-4 *5 (-13 (-427) (-964 (-523)) (-786) (-585 (-523)))) (-5 *2 (-292 *5)) (-5 *1 (-543 *5)))) (-2669 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-1087)) (-4 *5 (-136)) (-4 *5 (-13 (-427) (-964 (-523)) (-786) (-585 (-523)))) (-5 *2 (-3 (-292 *5) (-589 (-292 *5)))) (-5 *1 (-543 *5)))) (-2843 (*1 *2 *3) (-12 (-5 *3 (-540 (-383 (-883 *4)))) (-4 *4 (-13 (-427) (-964 (-523)) (-786) (-585 (-523)))) (-5 *2 (-292 *4)) (-5 *1 (-543 *4)))) (-1276 (*1 *2 *3) (-12 (-5 *3 (-540 (-383 (-883 *4)))) (-4 *4 (-13 (-427) (-964 (-523)) (-786) (-585 (-523)))) (-5 *2 (-589 (-292 *4))) (-5 *1 (-543 *4)))) (-1380 (*1 *2 *2) (-12 (-5 *2 (-540 (-383 (-883 *3)))) (-4 *3 (-13 (-427) (-964 (-523)) (-786) (-585 (-523)))) (-5 *1 (-543 *3)))))
-(-10 -7 (-15 -1380 ((-540 (-383 (-883 |#1|))) (-540 (-383 (-883 |#1|))))) (-15 -1276 ((-589 (-292 |#1|)) (-540 (-383 (-883 |#1|))))) (-15 -2843 ((-292 |#1|) (-540 (-383 (-883 |#1|))))) (IF (|has| |#1| (-136)) (PROGN (-15 -2669 ((-3 (-292 |#1|) (-589 (-292 |#1|))) (-383 (-883 |#1|)) (-1087))) (-15 -2826 ((-292 |#1|) (-383 (-883 |#1|)) (-1087)))) |%noBranch|))
-((-3739 (((-589 (-629 (-523))) (-589 (-523)) (-589 (-836 (-523)))) 46) (((-589 (-629 (-523))) (-589 (-523))) 47) (((-629 (-523)) (-589 (-523)) (-836 (-523))) 42)) (-1296 (((-710) (-589 (-523))) 40)))
-(((-544) (-10 -7 (-15 -1296 ((-710) (-589 (-523)))) (-15 -3739 ((-629 (-523)) (-589 (-523)) (-836 (-523)))) (-15 -3739 ((-589 (-629 (-523))) (-589 (-523)))) (-15 -3739 ((-589 (-629 (-523))) (-589 (-523)) (-589 (-836 (-523))))))) (T -544))
-((-3739 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-523))) (-5 *4 (-589 (-836 (-523)))) (-5 *2 (-589 (-629 (-523)))) (-5 *1 (-544)))) (-3739 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-589 (-629 (-523)))) (-5 *1 (-544)))) (-3739 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-523))) (-5 *4 (-836 (-523))) (-5 *2 (-629 (-523))) (-5 *1 (-544)))) (-1296 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-710)) (-5 *1 (-544)))))
-(-10 -7 (-15 -1296 ((-710) (-589 (-523)))) (-15 -3739 ((-629 (-523)) (-589 (-523)) (-836 (-523)))) (-15 -3739 ((-589 (-629 (-523))) (-589 (-523)))) (-15 -3739 ((-589 (-629 (-523))) (-589 (-523)) (-589 (-836 (-523))))))
-((-3124 (((-589 |#5|) |#5| (-108)) 73)) (-1277 (((-108) |#5| (-589 |#5|)) 30)))
-(((-545 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3124 ((-589 |#5|) |#5| (-108))) (-15 -1277 ((-108) |#5| (-589 |#5|)))) (-13 (-284) (-136)) (-732) (-786) (-987 |#1| |#2| |#3|) (-1025 |#1| |#2| |#3| |#4|)) (T -545))
-((-1277 (*1 *2 *3 *4) (-12 (-5 *4 (-589 *3)) (-4 *3 (-1025 *5 *6 *7 *8)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-987 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-545 *5 *6 *7 *8 *3)))) (-3124 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-987 *5 *6 *7)) (-5 *2 (-589 *3)) (-5 *1 (-545 *5 *6 *7 *8 *3)) (-4 *3 (-1025 *5 *6 *7 *8)))))
-(-10 -7 (-15 -3124 ((-589 |#5|) |#5| (-108))) (-15 -1277 ((-108) |#5| (-589 |#5|))))
-((-3260 (((-108) $ $) NIL (|has| (-133) (-1016)))) (-3440 (($ $) 34)) (-2889 (($ $) NIL)) (-1865 (($ $ (-133)) NIL) (($ $ (-130)) NIL)) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-3436 (((-108) $ $) 51)) (-3411 (((-108) $ $ (-523)) 46)) (-1380 (((-589 $) $ (-133)) 60) (((-589 $) $ (-130)) 61)) (-4159 (((-108) (-1 (-108) (-133) (-133)) $) NIL) (((-108) $) NIL (|has| (-133) (-786)))) (-2361 (($ (-1 (-108) (-133) (-133)) $) NIL (|has| $ (-6 -4249))) (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| (-133) (-786))))) (-3400 (($ (-1 (-108) (-133) (-133)) $) NIL) (($ $) NIL (|has| (-133) (-786)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 (((-133) $ (-523) (-133)) 45 (|has| $ (-6 -4249))) (((-133) $ (-1136 (-523)) (-133)) NIL (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-2589 (($ $ (-133)) 64) (($ $ (-130)) 65)) (-4091 (($ $) NIL (|has| $ (-6 -4249)))) (-4082 (($ $) NIL)) (-2925 (($ $ (-1136 (-523)) $) 44)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016))))) (-2231 (($ (-133) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016)))) (($ (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248)))) (-1830 (((-133) (-1 (-133) (-133) (-133)) $ (-133) (-133)) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016)))) (((-133) (-1 (-133) (-133) (-133)) $ (-133)) NIL (|has| $ (-6 -4248))) (((-133) (-1 (-133) (-133) (-133)) $) NIL (|has| $ (-6 -4248)))) (-3073 (((-133) $ (-523) (-133)) NIL (|has| $ (-6 -4249)))) (-3002 (((-133) $ (-523)) NIL)) (-3458 (((-108) $ $) 72)) (-1894 (((-523) (-1 (-108) (-133)) $) NIL) (((-523) (-133) $) NIL (|has| (-133) (-1016))) (((-523) (-133) $ (-523)) 48 (|has| (-133) (-1016))) (((-523) $ $ (-523)) 47) (((-523) (-130) $ (-523)) 50)) (-3133 (((-589 (-133)) $) NIL (|has| $ (-6 -4248)))) (-2348 (($ (-710) (-133)) 9)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) 28 (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (|has| (-133) (-786)))) (-3123 (($ (-1 (-108) (-133) (-133)) $ $) NIL) (($ $ $) NIL (|has| (-133) (-786)))) (-3056 (((-589 (-133)) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-133) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016))))) (-2133 (((-523) $) 42 (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| (-133) (-786)))) (-1221 (((-108) $ $ (-133)) 73)) (-3312 (((-710) $ $ (-133)) 70)) (-3063 (($ (-1 (-133) (-133)) $) 33 (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-133) (-133)) $) NIL) (($ (-1 (-133) (-133) (-133)) $ $) NIL)) (-1593 (($ $) 37)) (-4017 (($ $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-2599 (($ $ (-133)) 62) (($ $ (-130)) 63)) (-3841 (((-1070) $) 38 (|has| (-133) (-1016)))) (-3334 (($ (-133) $ (-523)) NIL) (($ $ $ (-523)) 23)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2435 (((-523) $) 69) (((-1034) $) NIL (|has| (-133) (-1016)))) (-3879 (((-133) $) NIL (|has| (-523) (-786)))) (-2660 (((-3 (-133) "failed") (-1 (-108) (-133)) $) NIL)) (-2408 (($ $ (-133)) NIL (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-133)))) NIL (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016)))) (($ $ (-271 (-133))) NIL (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016)))) (($ $ (-133) (-133)) NIL (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016)))) (($ $ (-589 (-133)) (-589 (-133))) NIL (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) (-133) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016))))) (-3184 (((-589 (-133)) $) NIL)) (-3163 (((-108) $) 12)) (-4055 (($) 10)) (-1502 (((-133) $ (-523) (-133)) NIL) (((-133) $ (-523)) 52) (($ $ (-1136 (-523))) 21) (($ $ $) NIL)) (-3725 (($ $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-2452 (((-710) (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248))) (((-710) (-133) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016))))) (-2580 (($ $ $ (-523)) 66 (|has| $ (-6 -4249)))) (-4124 (($ $) 17)) (-3077 (((-499) $) NIL (|has| (-133) (-564 (-499))))) (-3985 (($ (-589 (-133))) NIL)) (-2785 (($ $ (-133)) NIL) (($ (-133) $) NIL) (($ $ $) 16) (($ (-589 $)) 67)) (-3976 (($ (-133)) NIL) (((-794) $) 27 (|has| (-133) (-563 (-794))))) (-1505 (((-108) (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) NIL (|has| (-133) (-786)))) (-4061 (((-108) $ $) NIL (|has| (-133) (-786)))) (-4037 (((-108) $ $) 14 (|has| (-133) (-1016)))) (-4070 (((-108) $ $) NIL (|has| (-133) (-786)))) (-4052 (((-108) $ $) 15 (|has| (-133) (-786)))) (-1271 (((-710) $) 13 (|has| $ (-6 -4248)))))
-(((-546 |#1|) (-13 (-1056) (-10 -8 (-15 -2435 ((-523) $)))) (-523)) (T -546))
-((-2435 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-546 *3)) (-14 *3 *2))))
-(-13 (-1056) (-10 -8 (-15 -2435 ((-523) $))))
-((-3903 (((-2 (|:| |num| |#4|) (|:| |den| (-523))) |#4| |#2|) 23) (((-2 (|:| |num| |#4|) (|:| |den| (-523))) |#4| |#2| (-1011 |#4|)) 32)))
-(((-547 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3903 ((-2 (|:| |num| |#4|) (|:| |den| (-523))) |#4| |#2| (-1011 |#4|))) (-15 -3903 ((-2 (|:| |num| |#4|) (|:| |den| (-523))) |#4| |#2|))) (-732) (-786) (-515) (-880 |#3| |#1| |#2|)) (T -547))
-((-3903 (*1 *2 *3 *4) (-12 (-4 *5 (-732)) (-4 *4 (-786)) (-4 *6 (-515)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-523)))) (-5 *1 (-547 *5 *4 *6 *3)) (-4 *3 (-880 *6 *5 *4)))) (-3903 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1011 *3)) (-4 *3 (-880 *7 *6 *4)) (-4 *6 (-732)) (-4 *4 (-786)) (-4 *7 (-515)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-523)))) (-5 *1 (-547 *6 *4 *7 *3)))))
-(-10 -7 (-15 -3903 ((-2 (|:| |num| |#4|) (|:| |den| (-523))) |#4| |#2| (-1011 |#4|))) (-15 -3903 ((-2 (|:| |num| |#4|) (|:| |den| (-523))) |#4| |#2|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 63)) (-3716 (((-589 (-1001)) $) NIL)) (-2354 (((-1087) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-1756 (($ $ (-523)) 54) (($ $ (-523) (-523)) 55)) (-2736 (((-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))) $) 60)) (-3979 (($ $) 100)) (-2999 (((-3 $ "failed") $ $) NIL)) (-4039 (((-794) (-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))) (-953 (-779 (-523))) (-1087) |#1| (-383 (-523))) 215)) (-3223 (($ (-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|)))) 34)) (-1640 (($) NIL T CONST)) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2294 (((-108) $) NIL)) (-1500 (((-523) $) 58) (((-523) $ (-523)) 59)) (-3482 (((-108) $) NIL)) (-3059 (($ $ (-852)) 76)) (-2950 (($ (-1 |#1| (-523)) $) 73)) (-4060 (((-108) $) 25)) (-3694 (($ |#1| (-523)) 22) (($ $ (-1001) (-523)) NIL) (($ $ (-589 (-1001)) (-589 (-523))) NIL)) (-3015 (($ (-1 |#1| |#1|) $) 67)) (-1571 (($ (-953 (-779 (-523))) (-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|)))) 13)) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2669 (($ $) 112 (|has| |#1| (-37 (-383 (-523)))))) (-2814 (((-3 $ "failed") $ $ (-108)) 99)) (-3109 (($ $ $) 108)) (-2435 (((-1034) $) NIL)) (-2228 (((-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))) $) 15)) (-3827 (((-953 (-779 (-523))) $) 14)) (-1361 (($ $ (-523)) 45)) (-2469 (((-3 $ "failed") $ $) NIL (|has| |#1| (-515)))) (-1349 (((-1068 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-523)))))) (-1502 ((|#1| $ (-523)) 57) (($ $ $) NIL (|has| (-523) (-1028)))) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-523) |#1|)))) (($ $) 70 (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (-1487 (((-523) $) NIL)) (-3749 (($ $) 46)) (-3976 (((-794) $) NIL) (($ (-523)) 28) (($ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $) NIL (|has| |#1| (-515))) (($ |#1|) 27 (|has| |#1| (-158)))) (-1234 ((|#1| $ (-523)) 56)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) 37)) (-3882 ((|#1| $) NIL)) (-2519 (($ $) 180 (|has| |#1| (-37 (-383 (-523)))))) (-1478 (($ $) 156 (|has| |#1| (-37 (-383 (-523)))))) (-1203 (($ $) 177 (|has| |#1| (-37 (-383 (-523)))))) (-1418 (($ $) 153 (|has| |#1| (-37 (-383 (-523)))))) (-3591 (($ $) 182 (|has| |#1| (-37 (-383 (-523)))))) (-2493 (($ $) 159 (|has| |#1| (-37 (-383 (-523)))))) (-2091 (($ $ (-383 (-523))) 146 (|has| |#1| (-37 (-383 (-523)))))) (-3335 (($ $ |#1|) 121 (|has| |#1| (-37 (-383 (-523)))))) (-1538 (($ $) 150 (|has| |#1| (-37 (-383 (-523)))))) (-1909 (($ $) 148 (|has| |#1| (-37 (-383 (-523)))))) (-1592 (($ $) 183 (|has| |#1| (-37 (-383 (-523)))))) (-2602 (($ $) 160 (|has| |#1| (-37 (-383 (-523)))))) (-1432 (($ $) 181 (|has| |#1| (-37 (-383 (-523)))))) (-2884 (($ $) 158 (|has| |#1| (-37 (-383 (-523)))))) (-2068 (($ $) 178 (|has| |#1| (-37 (-383 (-523)))))) (-3535 (($ $) 154 (|has| |#1| (-37 (-383 (-523)))))) (-4147 (($ $) 188 (|has| |#1| (-37 (-383 (-523)))))) (-2086 (($ $) 168 (|has| |#1| (-37 (-383 (-523)))))) (-1558 (($ $) 185 (|has| |#1| (-37 (-383 (-523)))))) (-1635 (($ $) 163 (|has| |#1| (-37 (-383 (-523)))))) (-3406 (($ $) 192 (|has| |#1| (-37 (-383 (-523)))))) (-1354 (($ $) 172 (|has| |#1| (-37 (-383 (-523)))))) (-1658 (($ $) 194 (|has| |#1| (-37 (-383 (-523)))))) (-3355 (($ $) 174 (|has| |#1| (-37 (-383 (-523)))))) (-2647 (($ $) 190 (|has| |#1| (-37 (-383 (-523)))))) (-1922 (($ $) 170 (|has| |#1| (-37 (-383 (-523)))))) (-1873 (($ $) 187 (|has| |#1| (-37 (-383 (-523)))))) (-3819 (($ $) 166 (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2523 ((|#1| $ (-523)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-523)))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 29 T CONST)) (-1440 (($) 38 T CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-523) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (-4037 (((-108) $ $) 65)) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339)))) (-4115 (($ $) 84) (($ $ $) 64)) (-4103 (($ $ $) 81)) (** (($ $ (-852)) NIL) (($ $ (-710)) 103)) (* (($ (-852) $) 89) (($ (-710) $) 87) (($ (-523) $) 85) (($ $ $) 95) (($ $ |#1|) NIL) (($ |#1| $) 115) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))))
-(((-548 |#1|) (-13 (-1147 |#1| (-523)) (-10 -8 (-15 -1571 ($ (-953 (-779 (-523))) (-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))))) (-15 -3827 ((-953 (-779 (-523))) $)) (-15 -2228 ((-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))) $)) (-15 -3223 ($ (-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))))) (-15 -4060 ((-108) $)) (-15 -2950 ($ (-1 |#1| (-523)) $)) (-15 -2814 ((-3 $ "failed") $ $ (-108))) (-15 -3979 ($ $)) (-15 -3109 ($ $ $)) (-15 -4039 ((-794) (-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))) (-953 (-779 (-523))) (-1087) |#1| (-383 (-523)))) (IF (|has| |#1| (-37 (-383 (-523)))) (PROGN (-15 -2669 ($ $)) (-15 -3335 ($ $ |#1|)) (-15 -2091 ($ $ (-383 (-523)))) (-15 -1909 ($ $)) (-15 -1538 ($ $)) (-15 -1418 ($ $)) (-15 -3535 ($ $)) (-15 -1478 ($ $)) (-15 -2884 ($ $)) (-15 -2493 ($ $)) (-15 -2602 ($ $)) (-15 -1635 ($ $)) (-15 -3819 ($ $)) (-15 -2086 ($ $)) (-15 -1922 ($ $)) (-15 -1354 ($ $)) (-15 -3355 ($ $)) (-15 -1203 ($ $)) (-15 -2068 ($ $)) (-15 -2519 ($ $)) (-15 -1432 ($ $)) (-15 -3591 ($ $)) (-15 -1592 ($ $)) (-15 -1558 ($ $)) (-15 -1873 ($ $)) (-15 -4147 ($ $)) (-15 -2647 ($ $)) (-15 -3406 ($ $)) (-15 -1658 ($ $))) |%noBranch|))) (-973)) (T -548))
-((-4060 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-548 *3)) (-4 *3 (-973)))) (-1571 (*1 *1 *2 *3) (-12 (-5 *2 (-953 (-779 (-523)))) (-5 *3 (-1068 (-2 (|:| |k| (-523)) (|:| |c| *4)))) (-4 *4 (-973)) (-5 *1 (-548 *4)))) (-3827 (*1 *2 *1) (-12 (-5 *2 (-953 (-779 (-523)))) (-5 *1 (-548 *3)) (-4 *3 (-973)))) (-2228 (*1 *2 *1) (-12 (-5 *2 (-1068 (-2 (|:| |k| (-523)) (|:| |c| *3)))) (-5 *1 (-548 *3)) (-4 *3 (-973)))) (-3223 (*1 *1 *2) (-12 (-5 *2 (-1068 (-2 (|:| |k| (-523)) (|:| |c| *3)))) (-4 *3 (-973)) (-5 *1 (-548 *3)))) (-2950 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-523))) (-4 *3 (-973)) (-5 *1 (-548 *3)))) (-2814 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-108)) (-5 *1 (-548 *3)) (-4 *3 (-973)))) (-3979 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-973)))) (-3109 (*1 *1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-973)))) (-4039 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-1068 (-2 (|:| |k| (-523)) (|:| |c| *6)))) (-5 *4 (-953 (-779 (-523)))) (-5 *5 (-1087)) (-5 *7 (-383 (-523))) (-4 *6 (-973)) (-5 *2 (-794)) (-5 *1 (-548 *6)))) (-2669 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-3335 (*1 *1 *1 *2) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-2091 (*1 *1 *1 *2) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-548 *3)) (-4 *3 (-37 *2)) (-4 *3 (-973)))) (-1909 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-1538 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-1418 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-3535 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-1478 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-2884 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-2493 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-2602 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-1635 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-3819 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-2086 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-1922 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-1354 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-3355 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-1203 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-2068 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-2519 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-1432 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-3591 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-1592 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-1558 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-1873 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-4147 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-2647 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-3406 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))) (-1658 (*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(-13 (-1147 |#1| (-523)) (-10 -8 (-15 -1571 ($ (-953 (-779 (-523))) (-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))))) (-15 -3827 ((-953 (-779 (-523))) $)) (-15 -2228 ((-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))) $)) (-15 -3223 ($ (-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))))) (-15 -4060 ((-108) $)) (-15 -2950 ($ (-1 |#1| (-523)) $)) (-15 -2814 ((-3 $ "failed") $ $ (-108))) (-15 -3979 ($ $)) (-15 -3109 ($ $ $)) (-15 -4039 ((-794) (-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))) (-953 (-779 (-523))) (-1087) |#1| (-383 (-523)))) (IF (|has| |#1| (-37 (-383 (-523)))) (PROGN (-15 -2669 ($ $)) (-15 -3335 ($ $ |#1|)) (-15 -2091 ($ $ (-383 (-523)))) (-15 -1909 ($ $)) (-15 -1538 ($ $)) (-15 -1418 ($ $)) (-15 -3535 ($ $)) (-15 -1478 ($ $)) (-15 -2884 ($ $)) (-15 -2493 ($ $)) (-15 -2602 ($ $)) (-15 -1635 ($ $)) (-15 -3819 ($ $)) (-15 -2086 ($ $)) (-15 -1922 ($ $)) (-15 -1354 ($ $)) (-15 -3355 ($ $)) (-15 -1203 ($ $)) (-15 -2068 ($ $)) (-15 -2519 ($ $)) (-15 -1432 ($ $)) (-15 -3591 ($ $)) (-15 -1592 ($ $)) (-15 -1558 ($ $)) (-15 -1873 ($ $)) (-15 -4147 ($ $)) (-15 -2647 ($ $)) (-15 -3406 ($ $)) (-15 -1658 ($ $))) |%noBranch|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3223 (($ (-1068 |#1|)) 9)) (-1640 (($) NIL T CONST)) (-4211 (((-3 $ "failed") $) 42)) (-2294 (((-108) $) 52)) (-1500 (((-710) $) 55) (((-710) $ (-710)) 54)) (-3482 (((-108) $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2469 (((-3 $ "failed") $ $) 44 (|has| |#1| (-515)))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL (|has| |#1| (-515)))) (-1639 (((-1068 |#1|) $) 23)) (-1698 (((-710)) 51)) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 10 T CONST)) (-1440 (($) 14 T CONST)) (-4037 (((-108) $ $) 22)) (-4115 (($ $) 30) (($ $ $) 16)) (-4103 (($ $ $) 25)) (** (($ $ (-852)) NIL) (($ $ (-710)) 49)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 34) (($ $ $) 28) (($ |#1| $) 37) (($ $ |#1|) 38) (($ $ (-523)) 36)))
-(((-549 |#1|) (-13 (-973) (-10 -8 (-15 -1639 ((-1068 |#1|) $)) (-15 -3223 ($ (-1068 |#1|))) (-15 -2294 ((-108) $)) (-15 -1500 ((-710) $)) (-15 -1500 ((-710) $ (-710))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-523))) (IF (|has| |#1| (-515)) (-6 (-515)) |%noBranch|))) (-973)) (T -549))
-((-1639 (*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-549 *3)) (-4 *3 (-973)))) (-3223 (*1 *1 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-549 *3)))) (-2294 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-549 *3)) (-4 *3 (-973)))) (-1500 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-549 *3)) (-4 *3 (-973)))) (-1500 (*1 *2 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-549 *3)) (-4 *3 (-973)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-549 *2)) (-4 *2 (-973)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-549 *2)) (-4 *2 (-973)))) (* (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-549 *3)) (-4 *3 (-973)))))
-(-13 (-973) (-10 -8 (-15 -1639 ((-1068 |#1|) $)) (-15 -3223 ($ (-1068 |#1|))) (-15 -2294 ((-108) $)) (-15 -1500 ((-710) $)) (-15 -1500 ((-710) $ (-710))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-523))) (IF (|has| |#1| (-515)) (-6 (-515)) |%noBranch|)))
-((-3015 (((-553 |#2|) (-1 |#2| |#1|) (-553 |#1|)) 15)))
-(((-550 |#1| |#2|) (-10 -7 (-15 -3015 ((-553 |#2|) (-1 |#2| |#1|) (-553 |#1|)))) (-1123) (-1123)) (T -550))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-553 *5)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-553 *6)) (-5 *1 (-550 *5 *6)))))
-(-10 -7 (-15 -3015 ((-553 |#2|) (-1 |#2| |#1|) (-553 |#1|))))
-((-3015 (((-1068 |#3|) (-1 |#3| |#1| |#2|) (-553 |#1|) (-1068 |#2|)) 20) (((-1068 |#3|) (-1 |#3| |#1| |#2|) (-1068 |#1|) (-553 |#2|)) 19) (((-553 |#3|) (-1 |#3| |#1| |#2|) (-553 |#1|) (-553 |#2|)) 18)))
-(((-551 |#1| |#2| |#3|) (-10 -7 (-15 -3015 ((-553 |#3|) (-1 |#3| |#1| |#2|) (-553 |#1|) (-553 |#2|))) (-15 -3015 ((-1068 |#3|) (-1 |#3| |#1| |#2|) (-1068 |#1|) (-553 |#2|))) (-15 -3015 ((-1068 |#3|) (-1 |#3| |#1| |#2|) (-553 |#1|) (-1068 |#2|)))) (-1123) (-1123) (-1123)) (T -551))
-((-3015 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-553 *6)) (-5 *5 (-1068 *7)) (-4 *6 (-1123)) (-4 *7 (-1123)) (-4 *8 (-1123)) (-5 *2 (-1068 *8)) (-5 *1 (-551 *6 *7 *8)))) (-3015 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1068 *6)) (-5 *5 (-553 *7)) (-4 *6 (-1123)) (-4 *7 (-1123)) (-4 *8 (-1123)) (-5 *2 (-1068 *8)) (-5 *1 (-551 *6 *7 *8)))) (-3015 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-553 *6)) (-5 *5 (-553 *7)) (-4 *6 (-1123)) (-4 *7 (-1123)) (-4 *8 (-1123)) (-5 *2 (-553 *8)) (-5 *1 (-551 *6 *7 *8)))))
-(-10 -7 (-15 -3015 ((-553 |#3|) (-1 |#3| |#1| |#2|) (-553 |#1|) (-553 |#2|))) (-15 -3015 ((-1068 |#3|) (-1 |#3| |#1| |#2|) (-1068 |#1|) (-553 |#2|))) (-15 -3015 ((-1068 |#3|) (-1 |#3| |#1| |#2|) (-553 |#1|) (-1068 |#2|))))
-((-1708 ((|#3| |#3| (-589 (-562 |#3|)) (-589 (-1087))) 55)) (-2399 (((-155 |#2|) |#3|) 117)) (-2726 ((|#3| (-155 |#2|)) 44)) (-1977 ((|#2| |#3|) 19)) (-2191 ((|#3| |#2|) 33)))
-(((-552 |#1| |#2| |#3|) (-10 -7 (-15 -2726 (|#3| (-155 |#2|))) (-15 -1977 (|#2| |#3|)) (-15 -2191 (|#3| |#2|)) (-15 -2399 ((-155 |#2|) |#3|)) (-15 -1708 (|#3| |#3| (-589 (-562 |#3|)) (-589 (-1087))))) (-13 (-515) (-786)) (-13 (-406 |#1|) (-930) (-1109)) (-13 (-406 (-155 |#1|)) (-930) (-1109))) (T -552))
-((-1708 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-589 (-562 *2))) (-5 *4 (-589 (-1087))) (-4 *2 (-13 (-406 (-155 *5)) (-930) (-1109))) (-4 *5 (-13 (-515) (-786))) (-5 *1 (-552 *5 *6 *2)) (-4 *6 (-13 (-406 *5) (-930) (-1109))))) (-2399 (*1 *2 *3) (-12 (-4 *4 (-13 (-515) (-786))) (-5 *2 (-155 *5)) (-5 *1 (-552 *4 *5 *3)) (-4 *5 (-13 (-406 *4) (-930) (-1109))) (-4 *3 (-13 (-406 (-155 *4)) (-930) (-1109))))) (-2191 (*1 *2 *3) (-12 (-4 *4 (-13 (-515) (-786))) (-4 *2 (-13 (-406 (-155 *4)) (-930) (-1109))) (-5 *1 (-552 *4 *3 *2)) (-4 *3 (-13 (-406 *4) (-930) (-1109))))) (-1977 (*1 *2 *3) (-12 (-4 *4 (-13 (-515) (-786))) (-4 *2 (-13 (-406 *4) (-930) (-1109))) (-5 *1 (-552 *4 *2 *3)) (-4 *3 (-13 (-406 (-155 *4)) (-930) (-1109))))) (-2726 (*1 *2 *3) (-12 (-5 *3 (-155 *5)) (-4 *5 (-13 (-406 *4) (-930) (-1109))) (-4 *4 (-13 (-515) (-786))) (-4 *2 (-13 (-406 (-155 *4)) (-930) (-1109))) (-5 *1 (-552 *4 *5 *2)))))
-(-10 -7 (-15 -2726 (|#3| (-155 |#2|))) (-15 -1977 (|#2| |#3|)) (-15 -2191 (|#3| |#2|)) (-15 -2399 ((-155 |#2|) |#3|)) (-15 -1708 (|#3| |#3| (-589 (-562 |#3|)) (-589 (-1087)))))
-((-1299 (($ (-1 (-108) |#1|) $) 17)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-1252 (($ (-1 |#1| |#1|) |#1|) 9)) (-1284 (($ (-1 (-108) |#1|) $) 13)) (-1291 (($ (-1 (-108) |#1|) $) 15)) (-3985 (((-1068 |#1|) $) 18)) (-3976 (((-794) $) NIL)))
-(((-553 |#1|) (-13 (-563 (-794)) (-10 -8 (-15 -3015 ($ (-1 |#1| |#1|) $)) (-15 -1284 ($ (-1 (-108) |#1|) $)) (-15 -1291 ($ (-1 (-108) |#1|) $)) (-15 -1299 ($ (-1 (-108) |#1|) $)) (-15 -1252 ($ (-1 |#1| |#1|) |#1|)) (-15 -3985 ((-1068 |#1|) $)))) (-1123)) (T -553))
-((-3015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1123)) (-5 *1 (-553 *3)))) (-1284 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1123)) (-5 *1 (-553 *3)))) (-1291 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1123)) (-5 *1 (-553 *3)))) (-1299 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1123)) (-5 *1 (-553 *3)))) (-1252 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1123)) (-5 *1 (-553 *3)))) (-3985 (*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-553 *3)) (-4 *3 (-1123)))))
-(-13 (-563 (-794)) (-10 -8 (-15 -3015 ($ (-1 |#1| |#1|) $)) (-15 -1284 ($ (-1 (-108) |#1|) $)) (-15 -1291 ($ (-1 (-108) |#1|) $)) (-15 -1299 ($ (-1 (-108) |#1|) $)) (-15 -1252 ($ (-1 |#1| |#1|) |#1|)) (-15 -3985 ((-1068 |#1|) $))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2448 (($ (-710)) NIL (|has| |#1| (-23)))) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-4159 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-786)))) (-2361 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4249))) (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| |#1| (-786))))) (-3400 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-786)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) NIL (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-4091 (($ $) NIL (|has| $ (-6 -4249)))) (-4082 (($ $) NIL)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2231 (($ |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) NIL)) (-1894 (((-523) (-1 (-108) |#1|) $) NIL) (((-523) |#1| $) NIL (|has| |#1| (-1016))) (((-523) |#1| $ (-523)) NIL (|has| |#1| (-1016)))) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-3677 (((-629 |#1|) $ $) NIL (|has| |#1| (-973)))) (-2348 (($ (-710) |#1|) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) NIL (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-3123 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-786)))) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2581 ((|#1| $) NIL (-12 (|has| |#1| (-930)) (|has| |#1| (-973))))) (-4042 (((-108) $ (-710)) NIL)) (-3229 ((|#1| $) NIL (-12 (|has| |#1| (-930)) (|has| |#1| (-973))))) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-3334 (($ |#1| $ (-523)) NIL) (($ $ $ (-523)) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-3879 ((|#1| $) NIL (|has| (-523) (-786)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2408 (($ $ |#1|) NIL (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#1| $ (-523) |#1|) NIL) ((|#1| $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-1879 ((|#1| $ $) NIL (|has| |#1| (-973)))) (-3725 (($ $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-1707 (($ $ $) NIL (|has| |#1| (-973)))) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2580 (($ $ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) NIL)) (-2785 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-589 $)) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4115 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-4103 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-523) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-666))) (($ $ |#1|) NIL (|has| |#1| (-666)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-554 |#1| |#2|) (-1167 |#1|) (-1123) (-523)) (T -554))
-NIL
-(-1167 |#1|)
-((-1666 (((-1174) $ |#2| |#2|) 36)) (-1798 ((|#2| $) 23)) (-2133 ((|#2| $) 21)) (-3063 (($ (-1 |#3| |#3|) $) 32)) (-3015 (($ (-1 |#3| |#3|) $) 30)) (-3879 ((|#3| $) 26)) (-2408 (($ $ |#3|) 33)) (-1410 (((-108) |#3| $) 17)) (-3184 (((-589 |#3|) $) 15)) (-1502 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
-(((-555 |#1| |#2| |#3|) (-10 -8 (-15 -1666 ((-1174) |#1| |#2| |#2|)) (-15 -2408 (|#1| |#1| |#3|)) (-15 -3879 (|#3| |#1|)) (-15 -1798 (|#2| |#1|)) (-15 -2133 (|#2| |#1|)) (-15 -1410 ((-108) |#3| |#1|)) (-15 -3184 ((-589 |#3|) |#1|)) (-15 -1502 (|#3| |#1| |#2|)) (-15 -1502 (|#3| |#1| |#2| |#3|)) (-15 -3063 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3015 (|#1| (-1 |#3| |#3|) |#1|))) (-556 |#2| |#3|) (-1016) (-1123)) (T -555))
-NIL
-(-10 -8 (-15 -1666 ((-1174) |#1| |#2| |#2|)) (-15 -2408 (|#1| |#1| |#3|)) (-15 -3879 (|#3| |#1|)) (-15 -1798 (|#2| |#1|)) (-15 -2133 (|#2| |#1|)) (-15 -1410 ((-108) |#3| |#1|)) (-15 -3184 ((-589 |#3|) |#1|)) (-15 -1502 (|#3| |#1| |#2|)) (-15 -1502 (|#3| |#1| |#2| |#3|)) (-15 -3063 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3015 (|#1| (-1 |#3| |#3|) |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#2| (-1016)))) (-1666 (((-1174) $ |#1| |#1|) 40 (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) 8)) (-4101 ((|#2| $ |#1| |#2|) 52 (|has| $ (-6 -4249)))) (-1640 (($) 7 T CONST)) (-3073 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4249)))) (-3002 ((|#2| $ |#1|) 51)) (-3133 (((-589 |#2|) $) 30 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-1798 ((|#1| $) 43 (|has| |#1| (-786)))) (-3056 (((-589 |#2|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#2| $) 27 (-12 (|has| |#2| (-1016)) (|has| $ (-6 -4248))))) (-2133 ((|#1| $) 44 (|has| |#1| (-786)))) (-3063 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#2| |#2|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#2| (-1016)))) (-2909 (((-589 |#1|) $) 46)) (-2290 (((-108) |#1| $) 47)) (-2435 (((-1034) $) 21 (|has| |#2| (-1016)))) (-3879 ((|#2| $) 42 (|has| |#1| (-786)))) (-2408 (($ $ |#2|) 41 (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#2|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#2|))) 26 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) 25 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) 23 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))) (-2391 (((-108) $ $) 14)) (-1410 (((-108) |#2| $) 45 (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-3184 (((-589 |#2|) $) 48)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#2| $ |#1| |#2|) 50) ((|#2| $ |#1|) 49)) (-2452 (((-710) (-1 (-108) |#2|) $) 31 (|has| $ (-6 -4248))) (((-710) |#2| $) 28 (-12 (|has| |#2| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3976 (((-794) $) 18 (|has| |#2| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#2|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#2| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-556 |#1| |#2|) (-129) (-1016) (-1123)) (T -556))
-((-3184 (*1 *2 *1) (-12 (-4 *1 (-556 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1123)) (-5 *2 (-589 *4)))) (-2290 (*1 *2 *3 *1) (-12 (-4 *1 (-556 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1123)) (-5 *2 (-108)))) (-2909 (*1 *2 *1) (-12 (-4 *1 (-556 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1123)) (-5 *2 (-589 *3)))) (-1410 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4248)) (-4 *1 (-556 *4 *3)) (-4 *4 (-1016)) (-4 *3 (-1123)) (-4 *3 (-1016)) (-5 *2 (-108)))) (-2133 (*1 *2 *1) (-12 (-4 *1 (-556 *2 *3)) (-4 *3 (-1123)) (-4 *2 (-1016)) (-4 *2 (-786)))) (-1798 (*1 *2 *1) (-12 (-4 *1 (-556 *2 *3)) (-4 *3 (-1123)) (-4 *2 (-1016)) (-4 *2 (-786)))) (-3879 (*1 *2 *1) (-12 (-4 *1 (-556 *3 *2)) (-4 *3 (-1016)) (-4 *3 (-786)) (-4 *2 (-1123)))) (-2408 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-556 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1123)))) (-1666 (*1 *2 *1 *3 *3) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-556 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1123)) (-5 *2 (-1174)))))
-(-13 (-462 |t#2|) (-265 |t#1| |t#2|) (-10 -8 (-15 -3184 ((-589 |t#2|) $)) (-15 -2290 ((-108) |t#1| $)) (-15 -2909 ((-589 |t#1|) $)) (IF (|has| |t#2| (-1016)) (IF (|has| $ (-6 -4248)) (-15 -1410 ((-108) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-786)) (PROGN (-15 -2133 (|t#1| $)) (-15 -1798 (|t#1| $)) (-15 -3879 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4249)) (PROGN (-15 -2408 ($ $ |t#2|)) (-15 -1666 ((-1174) $ |t#1| |t#1|))) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#2| (-1016)) ((-563 (-794)) -3255 (|has| |#2| (-1016)) (|has| |#2| (-563 (-794)))) ((-263 |#1| |#2|) . T) ((-265 |#1| |#2|) . T) ((-286 |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((-462 |#2|) . T) ((-484 |#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((-1016) |has| |#2| (-1016)) ((-1123) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1895 (((-3 $ "failed")) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-2999 (((-3 $ "failed") $ $) NIL)) (-2279 (((-1169 (-629 |#1|))) NIL (|has| |#2| (-393 |#1|))) (((-1169 (-629 |#1|)) (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-3513 (((-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-1640 (($) NIL T CONST)) (-1563 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-3869 (((-3 $ "failed")) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-4067 (((-629 |#1|)) NIL (|has| |#2| (-393 |#1|))) (((-629 |#1|) (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-2507 ((|#1| $) NIL (|has| |#2| (-343 |#1|)))) (-2358 (((-629 |#1|) $) NIL (|has| |#2| (-393 |#1|))) (((-629 |#1|) $ (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-2439 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-2717 (((-1083 (-883 |#1|))) NIL (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-339))))) (-2966 (($ $ (-852)) NIL)) (-2860 ((|#1| $) NIL (|has| |#2| (-343 |#1|)))) (-2119 (((-1083 |#1|) $) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-1772 ((|#1|) NIL (|has| |#2| (-393 |#1|))) ((|#1| (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-2196 (((-1083 |#1|) $) NIL (|has| |#2| (-343 |#1|)))) (-3953 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-3322 (($ (-1169 |#1|)) NIL (|has| |#2| (-393 |#1|))) (($ (-1169 |#1|) (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-4211 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-2262 (((-852)) NIL (|has| |#2| (-343 |#1|)))) (-3091 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-1935 (($ $ (-852)) NIL)) (-3562 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-3877 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-3868 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-4111 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-3575 (((-3 $ "failed")) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-2216 (((-629 |#1|)) NIL (|has| |#2| (-393 |#1|))) (((-629 |#1|) (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-1870 ((|#1| $) NIL (|has| |#2| (-343 |#1|)))) (-2225 (((-629 |#1|) $) NIL (|has| |#2| (-393 |#1|))) (((-629 |#1|) $ (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-3790 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-2975 (((-1083 (-883 |#1|))) NIL (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-339))))) (-2165 (($ $ (-852)) NIL)) (-1876 ((|#1| $) NIL (|has| |#2| (-343 |#1|)))) (-1393 (((-1083 |#1|) $) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-1242 ((|#1|) NIL (|has| |#2| (-393 |#1|))) ((|#1| (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-1292 (((-1083 |#1|) $) NIL (|has| |#2| (-343 |#1|)))) (-1519 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-3841 (((-1070) $) NIL)) (-1279 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-1466 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-1597 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-2435 (((-1034) $) NIL)) (-2375 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-1502 ((|#1| $ (-523)) NIL (|has| |#2| (-393 |#1|)))) (-2411 (((-629 |#1|) (-1169 $)) NIL (|has| |#2| (-393 |#1|))) (((-1169 |#1|) $) NIL (|has| |#2| (-393 |#1|))) (((-629 |#1|) (-1169 $) (-1169 $)) NIL (|has| |#2| (-343 |#1|))) (((-1169 |#1|) $ (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-3077 (($ (-1169 |#1|)) NIL (|has| |#2| (-393 |#1|))) (((-1169 |#1|) $) NIL (|has| |#2| (-393 |#1|)))) (-1948 (((-589 (-883 |#1|))) NIL (|has| |#2| (-393 |#1|))) (((-589 (-883 |#1|)) (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-2306 (($ $ $) NIL)) (-2178 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-3976 (((-794) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-2922 (((-1169 $)) NIL (|has| |#2| (-393 |#1|)))) (-1842 (((-589 (-1169 |#1|))) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-3377 (($ $ $ $) NIL)) (-1363 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-3817 (($ (-629 |#1|) $) NIL (|has| |#2| (-393 |#1|)))) (-1952 (($ $ $) NIL)) (-3931 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-3433 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-4001 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-1428 (($) NIL T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) 24)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 20) (($ $ |#1|) 19) (($ |#1| $) NIL)))
-(((-557 |#1| |#2|) (-13 (-684 |#1|) (-563 |#2|) (-10 -8 (-15 -3976 ($ |#2|)) (IF (|has| |#2| (-393 |#1|)) (-6 (-393 |#1|)) |%noBranch|) (IF (|has| |#2| (-343 |#1|)) (-6 (-343 |#1|)) |%noBranch|))) (-158) (-684 |#1|)) (T -557))
-((-3976 (*1 *1 *2) (-12 (-4 *3 (-158)) (-5 *1 (-557 *3 *2)) (-4 *2 (-684 *3)))))
-(-13 (-684 |#1|) (-563 |#2|) (-10 -8 (-15 -3976 ($ |#2|)) (IF (|has| |#2| (-393 |#1|)) (-6 (-393 |#1|)) |%noBranch|) (IF (|has| |#2| (-343 |#1|)) (-6 (-343 |#1|)) |%noBranch|)))
-((-3260 (((-108) $ $) NIL)) (-1929 (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $ (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) 33)) (-2340 (($ (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) NIL) (($) NIL)) (-1666 (((-1174) $ (-1070) (-1070)) NIL (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#1| $ (-1070) |#1|) 43)) (-3627 (($ (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248)))) (-2521 (((-3 |#1| "failed") (-1070) $) 46)) (-1640 (($) NIL T CONST)) (-1590 (($ $ (-1070)) 24)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016))))) (-1869 (((-3 |#1| "failed") (-1070) $) 47) (($ (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248))) (($ (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $) NIL (|has| $ (-6 -4248)))) (-2231 (($ (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248))) (($ (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016))))) (-1830 (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248))) (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $ (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) NIL (|has| $ (-6 -4248))) (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $ (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016))))) (-2214 (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $) 32)) (-3073 ((|#1| $ (-1070) |#1|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-1070)) NIL)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248))) (((-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248)))) (-1924 (($ $) 48)) (-3439 (($ (-364)) 22) (($ (-364) (-1070)) 21)) (-1522 (((-364) $) 34)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-1070) $) NIL (|has| (-1070) (-786)))) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248))) (((-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) (((-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016))))) (-2133 (((-1070) $) NIL (|has| (-1070) (-786)))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249))) (($ (-1 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-1612 (((-589 (-1070)) $) 39)) (-2754 (((-108) (-1070) $) NIL)) (-2965 (((-1070) $) 35)) (-2349 (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $) NIL)) (-3862 (($ (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $) NIL)) (-2909 (((-589 (-1070)) $) NIL)) (-2290 (((-108) (-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3879 ((|#1| $) NIL (|has| (-1070) (-786)))) (-2660 (((-3 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) "failed") (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL)) (-2408 (($ $ |#1|) NIL (|has| $ (-6 -4249)))) (-1322 (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $) NIL)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) NIL (-12 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)))) (($ $ (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) NIL (-12 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)))) (($ $ (-271 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) NIL (-12 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)))) (($ $ (-589 (-271 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))))) NIL (-12 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) 37)) (-1502 ((|#1| $ (-1070) |#1|) NIL) ((|#1| $ (-1070)) 42)) (-1771 (($ (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) NIL) (($) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) (((-710) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)))) (((-710) (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-564 (-499))))) (-3985 (($ (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) NIL)) (-3976 (((-794) $) 20)) (-1833 (($ $) 25)) (-1245 (($ (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) NIL)) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 19)) (-1271 (((-710) $) 41 (|has| $ (-6 -4248)))))
-(((-558 |#1|) (-13 (-340 (-364) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) (-1100 (-1070) |#1|) (-10 -8 (-6 -4248) (-15 -1924 ($ $)))) (-1016)) (T -558))
-((-1924 (*1 *1 *1) (-12 (-5 *1 (-558 *2)) (-4 *2 (-1016)))))
-(-13 (-340 (-364) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) (-1100 (-1070) |#1|) (-10 -8 (-6 -4248) (-15 -1924 ($ $))))
-((-1348 (((-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) $) 15)) (-1612 (((-589 |#2|) $) 19)) (-2754 (((-108) |#2| $) 12)))
-(((-559 |#1| |#2| |#3|) (-10 -8 (-15 -1612 ((-589 |#2|) |#1|)) (-15 -2754 ((-108) |#2| |#1|)) (-15 -1348 ((-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) |#1|))) (-560 |#2| |#3|) (-1016) (-1016)) (T -559))
-NIL
-(-10 -8 (-15 -1612 ((-589 |#2|) |#1|)) (-15 -2754 ((-108) |#2| |#1|)) (-15 -1348 ((-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) |#1|)))
-((-3260 (((-108) $ $) 19 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (-2282 (((-108) $ (-710)) 8)) (-3627 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 45 (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 55 (|has| $ (-6 -4248)))) (-2521 (((-3 |#2| "failed") |#1| $) 61)) (-1640 (($) 7 T CONST)) (-3917 (($ $) 58 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248))))) (-1869 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 47 (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 46 (|has| $ (-6 -4248))) (((-3 |#2| "failed") |#1| $) 62)) (-2231 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 54 (|has| $ (-6 -4248)))) (-1830 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 56 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248)))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 53 (|has| $ (-6 -4248))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 52 (|has| $ (-6 -4248)))) (-3133 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 30 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (-1612 (((-589 |#1|) $) 63)) (-2754 (((-108) |#1| $) 64)) (-2349 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 39)) (-3862 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 40)) (-2435 (((-1034) $) 21 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (-2660 (((-3 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) "failed") (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 51)) (-1322 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 41)) (-2720 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))))) 26 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 25 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 24 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 23 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1771 (($) 49) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 48)) (-2452 (((-710) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 31 (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3077 (((-499) $) 59 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-564 (-499))))) (-3985 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 50)) (-3976 (((-794) $) 18 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-563 (-794))))) (-1245 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 42)) (-1505 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-560 |#1| |#2|) (-129) (-1016) (-1016)) (T -560))
-((-2754 (*1 *2 *3 *1) (-12 (-4 *1 (-560 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-5 *2 (-108)))) (-1612 (*1 *2 *1) (-12 (-4 *1 (-560 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-5 *2 (-589 *3)))) (-1869 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-560 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1016)))) (-2521 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-560 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1016)))))
-(-13 (-207 (-2 (|:| -2402 |t#1|) (|:| -2746 |t#2|))) (-10 -8 (-15 -2754 ((-108) |t#1| $)) (-15 -1612 ((-589 |t#1|) $)) (-15 -1869 ((-3 |t#2| "failed") |t#1| $)) (-15 -2521 ((-3 |t#2| "failed") |t#1| $))))
-(((-33) . T) ((-102 #0=(-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T) ((-97) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) ((-563 (-794)) -3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-563 (-794)))) ((-140 #0#) . T) ((-564 (-499)) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-564 (-499))) ((-207 #0#) . T) ((-213 #0#) . T) ((-286 #0#) -12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))) ((-462 #0#) . T) ((-484 #0# #0#) -12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))) ((-1016) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) ((-1123) . T))
-((-2711 (((-562 |#2|) |#1|) 15)) (-3947 (((-3 |#1| "failed") (-562 |#2|)) 19)))
-(((-561 |#1| |#2|) (-10 -7 (-15 -2711 ((-562 |#2|) |#1|)) (-15 -3947 ((-3 |#1| "failed") (-562 |#2|)))) (-786) (-786)) (T -561))
-((-3947 (*1 *2 *3) (|partial| -12 (-5 *3 (-562 *4)) (-4 *4 (-786)) (-4 *2 (-786)) (-5 *1 (-561 *2 *4)))) (-2711 (*1 *2 *3) (-12 (-5 *2 (-562 *4)) (-5 *1 (-561 *3 *4)) (-4 *3 (-786)) (-4 *4 (-786)))))
-(-10 -7 (-15 -2711 ((-562 |#2|) |#1|)) (-15 -3947 ((-3 |#1| "failed") (-562 |#2|))))
-((-3260 (((-108) $ $) NIL)) (-4158 (((-3 (-1087) "failed") $) 37)) (-4025 (((-1174) $ (-710)) 26)) (-1894 (((-710) $) 25)) (-1564 (((-110) $) 12)) (-1522 (((-1087) $) 20)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2217 (($ (-110) (-589 |#1|) (-710)) 30) (($ (-1087)) 31)) (-2676 (((-108) $ (-110)) 18) (((-108) $ (-1087)) 16)) (-1942 (((-710) $) 22)) (-2435 (((-1034) $) NIL)) (-3077 (((-823 (-523)) $) 77 (|has| |#1| (-564 (-823 (-523))))) (((-823 (-355)) $) 84 (|has| |#1| (-564 (-823 (-355))))) (((-499) $) 69 (|has| |#1| (-564 (-499))))) (-3976 (((-794) $) 55)) (-2947 (((-589 |#1|) $) 24)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 41)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 42)))
-(((-562 |#1|) (-13 (-125) (-815 |#1|) (-10 -8 (-15 -1522 ((-1087) $)) (-15 -1564 ((-110) $)) (-15 -2947 ((-589 |#1|) $)) (-15 -1942 ((-710) $)) (-15 -2217 ($ (-110) (-589 |#1|) (-710))) (-15 -2217 ($ (-1087))) (-15 -4158 ((-3 (-1087) "failed") $)) (-15 -2676 ((-108) $ (-110))) (-15 -2676 ((-108) $ (-1087))) (IF (|has| |#1| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|))) (-786)) (T -562))
-((-1522 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-562 *3)) (-4 *3 (-786)))) (-1564 (*1 *2 *1) (-12 (-5 *2 (-110)) (-5 *1 (-562 *3)) (-4 *3 (-786)))) (-2947 (*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-562 *3)) (-4 *3 (-786)))) (-1942 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-562 *3)) (-4 *3 (-786)))) (-2217 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-110)) (-5 *3 (-589 *5)) (-5 *4 (-710)) (-4 *5 (-786)) (-5 *1 (-562 *5)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-562 *3)) (-4 *3 (-786)))) (-4158 (*1 *2 *1) (|partial| -12 (-5 *2 (-1087)) (-5 *1 (-562 *3)) (-4 *3 (-786)))) (-2676 (*1 *2 *1 *3) (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-562 *4)) (-4 *4 (-786)))) (-2676 (*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-108)) (-5 *1 (-562 *4)) (-4 *4 (-786)))))
-(-13 (-125) (-815 |#1|) (-10 -8 (-15 -1522 ((-1087) $)) (-15 -1564 ((-110) $)) (-15 -2947 ((-589 |#1|) $)) (-15 -1942 ((-710) $)) (-15 -2217 ($ (-110) (-589 |#1|) (-710))) (-15 -2217 ($ (-1087))) (-15 -4158 ((-3 (-1087) "failed") $)) (-15 -2676 ((-108) $ (-110))) (-15 -2676 ((-108) $ (-1087))) (IF (|has| |#1| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|)))
-((-3976 ((|#1| $) 6)))
-(((-563 |#1|) (-129) (-1123)) (T -563))
-((-3976 (*1 *2 *1) (-12 (-4 *1 (-563 *2)) (-4 *2 (-1123)))))
-(-13 (-10 -8 (-15 -3976 (|t#1| $))))
-((-3077 ((|#1| $) 6)))
-(((-564 |#1|) (-129) (-1123)) (T -564))
-((-3077 (*1 *2 *1) (-12 (-4 *1 (-564 *2)) (-4 *2 (-1123)))))
-(-13 (-10 -8 (-15 -3077 (|t#1| $))))
-((-3167 (((-3 (-1083 (-383 |#2|)) "failed") (-383 |#2|) (-383 |#2|) (-383 |#2|) (-1 (-394 |#2|) |#2|)) 15) (((-3 (-1083 (-383 |#2|)) "failed") (-383 |#2|) (-383 |#2|) (-383 |#2|)) 16)))
-(((-565 |#1| |#2|) (-10 -7 (-15 -3167 ((-3 (-1083 (-383 |#2|)) "failed") (-383 |#2|) (-383 |#2|) (-383 |#2|))) (-15 -3167 ((-3 (-1083 (-383 |#2|)) "failed") (-383 |#2|) (-383 |#2|) (-383 |#2|) (-1 (-394 |#2|) |#2|)))) (-13 (-136) (-27) (-964 (-523)) (-964 (-383 (-523)))) (-1145 |#1|)) (T -565))
-((-3167 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 (-394 *6) *6)) (-4 *6 (-1145 *5)) (-4 *5 (-13 (-136) (-27) (-964 (-523)) (-964 (-383 (-523))))) (-5 *2 (-1083 (-383 *6))) (-5 *1 (-565 *5 *6)) (-5 *3 (-383 *6)))) (-3167 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-136) (-27) (-964 (-523)) (-964 (-383 (-523))))) (-4 *5 (-1145 *4)) (-5 *2 (-1083 (-383 *5))) (-5 *1 (-565 *4 *5)) (-5 *3 (-383 *5)))))
-(-10 -7 (-15 -3167 ((-3 (-1083 (-383 |#2|)) "failed") (-383 |#2|) (-383 |#2|) (-383 |#2|))) (-15 -3167 ((-3 (-1083 (-383 |#2|)) "failed") (-383 |#2|) (-383 |#2|) (-383 |#2|) (-1 (-394 |#2|) |#2|))))
-((-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#2|) 10)))
-(((-566 |#1| |#2|) (-10 -8 (-15 -3976 (|#1| |#2|)) (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|))) (-567 |#2|) (-973)) (T -566))
-NIL
-(-10 -8 (-15 -3976 (|#1| |#2|)) (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 36)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ |#1| $) 37)))
-(((-567 |#1|) (-129) (-973)) (T -567))
-((-3976 (*1 *1 *2) (-12 (-4 *1 (-567 *2)) (-4 *2 (-973)))))
-(-13 (-973) (-591 |t#1|) (-10 -8 (-15 -3976 ($ |t#1|))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 |#1|) . T) ((-591 $) . T) ((-666) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2035 (((-523) $) NIL (|has| |#1| (-784)))) (-1640 (($) NIL T CONST)) (-4211 (((-3 $ "failed") $) NIL)) (-3702 (((-108) $) NIL (|has| |#1| (-784)))) (-3482 (((-108) $) NIL)) (-2164 ((|#1| $) 13)) (-4050 (((-108) $) NIL (|has| |#1| (-784)))) (-3268 (($ $ $) NIL (|has| |#1| (-784)))) (-2644 (($ $ $) NIL (|has| |#1| (-784)))) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2171 ((|#3| $) 15)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#2|) NIL)) (-1698 (((-710)) 20)) (-3984 (($ $) NIL (|has| |#1| (-784)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) 12 T CONST)) (-4078 (((-108) $ $) NIL (|has| |#1| (-784)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-784)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| |#1| (-784)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-784)))) (-4125 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 17) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-568 |#1| |#2| |#3|) (-13 (-37 |#2|) (-10 -8 (IF (|has| |#1| (-784)) (-6 (-784)) |%noBranch|) (-15 -4125 ($ $ |#3|)) (-15 -4125 ($ |#1| |#3|)) (-15 -2164 (|#1| $)) (-15 -2171 (|#3| $)))) (-37 |#2|) (-158) (|SubsetCategory| (-666) |#2|)) (T -568))
-((-4125 (*1 *1 *1 *2) (-12 (-4 *4 (-158)) (-5 *1 (-568 *3 *4 *2)) (-4 *3 (-37 *4)) (-4 *2 (|SubsetCategory| (-666) *4)))) (-4125 (*1 *1 *2 *3) (-12 (-4 *4 (-158)) (-5 *1 (-568 *2 *4 *3)) (-4 *2 (-37 *4)) (-4 *3 (|SubsetCategory| (-666) *4)))) (-2164 (*1 *2 *1) (-12 (-4 *3 (-158)) (-4 *2 (-37 *3)) (-5 *1 (-568 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-666) *3)))) (-2171 (*1 *2 *1) (-12 (-4 *4 (-158)) (-4 *2 (|SubsetCategory| (-666) *4)) (-5 *1 (-568 *3 *4 *2)) (-4 *3 (-37 *4)))))
-(-13 (-37 |#2|) (-10 -8 (IF (|has| |#1| (-784)) (-6 (-784)) |%noBranch|) (-15 -4125 ($ $ |#3|)) (-15 -4125 ($ |#1| |#3|)) (-15 -2164 (|#1| $)) (-15 -2171 (|#3| $))))
-((-3682 ((|#2| |#2| (-1087) (-1087)) 18)))
-(((-569 |#1| |#2|) (-10 -7 (-15 -3682 (|#2| |#2| (-1087) (-1087)))) (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))) (-13 (-1109) (-889) (-29 |#1|))) (T -569))
-((-3682 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523)))) (-5 *1 (-569 *4 *2)) (-4 *2 (-13 (-1109) (-889) (-29 *4))))))
-(-10 -7 (-15 -3682 (|#2| |#2| (-1087) (-1087))))
-((-3260 (((-108) $ $) 56)) (-2388 (((-108) $) 52)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2919 ((|#1| $) 49)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3684 (((-108) $ $) NIL (|has| |#1| (-339)))) (-3340 (((-2 (|:| -2396 $) (|:| -3082 (-383 |#2|))) (-383 |#2|)) 97 (|has| |#1| (-339)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) 85) (((-3 |#2| "failed") $) 81)) (-1996 (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-2501 (($ $ $) NIL (|has| |#1| (-339)))) (-3142 (($ $) 24)) (-4211 (((-3 $ "failed") $) 75)) (-2486 (($ $ $) NIL (|has| |#1| (-339)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#1| (-339)))) (-1500 (((-523) $) 19)) (-3482 (((-108) $) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-4060 (((-108) $) 36)) (-3694 (($ |#1| (-523)) 21)) (-3119 ((|#1| $) 51)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-339)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) 87 (|has| |#1| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 100 (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-2469 (((-3 $ "failed") $ $) 79)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-3087 (((-710) $) 99 (|has| |#1| (-339)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 98 (|has| |#1| (-339)))) (-4024 (($ $ (-1 |#2| |#2|)) 66) (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-710)) NIL (|has| |#2| (-211))) (($ $) NIL (|has| |#2| (-211)))) (-1487 (((-523) $) 34)) (-3077 (((-383 |#2|) $) 42)) (-3976 (((-794) $) 62) (($ (-523)) 32) (($ $) NIL) (($ (-383 (-523))) NIL (|has| |#1| (-964 (-383 (-523))))) (($ |#1|) 31) (($ |#2|) 22)) (-1234 ((|#1| $ (-523)) 63)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 9 T CONST)) (-1440 (($) 12 T CONST)) (-1943 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-710)) NIL (|has| |#2| (-211))) (($ $) NIL (|has| |#2| (-211)))) (-4037 (((-108) $ $) 17)) (-4115 (($ $) 46) (($ $ $) NIL)) (-4103 (($ $ $) 76)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 26) (($ $ $) 44)))
-(((-570 |#1| |#2|) (-13 (-209 |#2|) (-515) (-564 (-383 |#2|)) (-387 |#1|) (-964 |#2|) (-10 -8 (-15 -4060 ((-108) $)) (-15 -1487 ((-523) $)) (-15 -1500 ((-523) $)) (-15 -3142 ($ $)) (-15 -3119 (|#1| $)) (-15 -2919 (|#1| $)) (-15 -1234 (|#1| $ (-523))) (-15 -3694 ($ |#1| (-523))) (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-134)) (-6 (-134)) |%noBranch|) (IF (|has| |#1| (-339)) (PROGN (-6 (-284)) (-15 -3340 ((-2 (|:| -2396 $) (|:| -3082 (-383 |#2|))) (-383 |#2|)))) |%noBranch|))) (-515) (-1145 |#1|)) (T -570))
-((-4060 (*1 *2 *1) (-12 (-4 *3 (-515)) (-5 *2 (-108)) (-5 *1 (-570 *3 *4)) (-4 *4 (-1145 *3)))) (-1487 (*1 *2 *1) (-12 (-4 *3 (-515)) (-5 *2 (-523)) (-5 *1 (-570 *3 *4)) (-4 *4 (-1145 *3)))) (-1500 (*1 *2 *1) (-12 (-4 *3 (-515)) (-5 *2 (-523)) (-5 *1 (-570 *3 *4)) (-4 *4 (-1145 *3)))) (-3142 (*1 *1 *1) (-12 (-4 *2 (-515)) (-5 *1 (-570 *2 *3)) (-4 *3 (-1145 *2)))) (-3119 (*1 *2 *1) (-12 (-4 *2 (-515)) (-5 *1 (-570 *2 *3)) (-4 *3 (-1145 *2)))) (-2919 (*1 *2 *1) (-12 (-4 *2 (-515)) (-5 *1 (-570 *2 *3)) (-4 *3 (-1145 *2)))) (-1234 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-4 *2 (-515)) (-5 *1 (-570 *2 *4)) (-4 *4 (-1145 *2)))) (-3694 (*1 *1 *2 *3) (-12 (-5 *3 (-523)) (-4 *2 (-515)) (-5 *1 (-570 *2 *4)) (-4 *4 (-1145 *2)))) (-3340 (*1 *2 *3) (-12 (-4 *4 (-339)) (-4 *4 (-515)) (-4 *5 (-1145 *4)) (-5 *2 (-2 (|:| -2396 (-570 *4 *5)) (|:| -3082 (-383 *5)))) (-5 *1 (-570 *4 *5)) (-5 *3 (-383 *5)))))
-(-13 (-209 |#2|) (-515) (-564 (-383 |#2|)) (-387 |#1|) (-964 |#2|) (-10 -8 (-15 -4060 ((-108) $)) (-15 -1487 ((-523) $)) (-15 -1500 ((-523) $)) (-15 -3142 ($ $)) (-15 -3119 (|#1| $)) (-15 -2919 (|#1| $)) (-15 -1234 (|#1| $ (-523))) (-15 -3694 ($ |#1| (-523))) (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-134)) (-6 (-134)) |%noBranch|) (IF (|has| |#1| (-339)) (PROGN (-6 (-284)) (-15 -3340 ((-2 (|:| -2396 $) (|:| -3082 (-383 |#2|))) (-383 |#2|)))) |%noBranch|)))
-((-2311 (((-589 |#6|) (-589 |#4|) (-108)) 47)) (-2643 ((|#6| |#6|) 40)))
-(((-571 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2643 (|#6| |#6|)) (-15 -2311 ((-589 |#6|) (-589 |#4|) (-108)))) (-427) (-732) (-786) (-987 |#1| |#2| |#3|) (-992 |#1| |#2| |#3| |#4|) (-1025 |#1| |#2| |#3| |#4|)) (T -571))
-((-2311 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-589 *10)) (-5 *1 (-571 *5 *6 *7 *8 *9 *10)) (-4 *9 (-992 *5 *6 *7 *8)) (-4 *10 (-1025 *5 *6 *7 *8)))) (-2643 (*1 *2 *2) (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *1 (-571 *3 *4 *5 *6 *7 *2)) (-4 *7 (-992 *3 *4 *5 *6)) (-4 *2 (-1025 *3 *4 *5 *6)))))
-(-10 -7 (-15 -2643 (|#6| |#6|)) (-15 -2311 ((-589 |#6|) (-589 |#4|) (-108))))
-((-1850 (((-108) |#3| (-710) (-589 |#3|)) 23)) (-2910 (((-3 (-2 (|:| |polfac| (-589 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-589 (-1083 |#3|)))) "failed") |#3| (-589 (-1083 |#3|)) (-2 (|:| |contp| |#3|) (|:| -3286 (-589 (-2 (|:| |irr| |#4|) (|:| -3269 (-523)))))) (-589 |#3|) (-589 |#1|) (-589 |#3|)) 55)))
-(((-572 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1850 ((-108) |#3| (-710) (-589 |#3|))) (-15 -2910 ((-3 (-2 (|:| |polfac| (-589 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-589 (-1083 |#3|)))) "failed") |#3| (-589 (-1083 |#3|)) (-2 (|:| |contp| |#3|) (|:| -3286 (-589 (-2 (|:| |irr| |#4|) (|:| -3269 (-523)))))) (-589 |#3|) (-589 |#1|) (-589 |#3|)))) (-786) (-732) (-284) (-880 |#3| |#2| |#1|)) (T -572))
-((-2910 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -3286 (-589 (-2 (|:| |irr| *10) (|:| -3269 (-523))))))) (-5 *6 (-589 *3)) (-5 *7 (-589 *8)) (-4 *8 (-786)) (-4 *3 (-284)) (-4 *10 (-880 *3 *9 *8)) (-4 *9 (-732)) (-5 *2 (-2 (|:| |polfac| (-589 *10)) (|:| |correct| *3) (|:| |corrfact| (-589 (-1083 *3))))) (-5 *1 (-572 *8 *9 *3 *10)) (-5 *4 (-589 (-1083 *3))))) (-1850 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-710)) (-5 *5 (-589 *3)) (-4 *3 (-284)) (-4 *6 (-786)) (-4 *7 (-732)) (-5 *2 (-108)) (-5 *1 (-572 *6 *7 *3 *8)) (-4 *8 (-880 *3 *7 *6)))))
-(-10 -7 (-15 -1850 ((-108) |#3| (-710) (-589 |#3|))) (-15 -2910 ((-3 (-2 (|:| |polfac| (-589 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-589 (-1083 |#3|)))) "failed") |#3| (-589 (-1083 |#3|)) (-2 (|:| |contp| |#3|) (|:| -3286 (-589 (-2 (|:| |irr| |#4|) (|:| -3269 (-523)))))) (-589 |#3|) (-589 |#1|) (-589 |#3|))))
-((-3260 (((-108) $ $) NIL)) (-1304 (((-589 |#1|) $) NIL)) (-1640 (($) NIL T CONST)) (-4211 (((-3 $ "failed") $) NIL)) (-3482 (((-108) $) NIL)) (-2471 (($ $) 67)) (-2062 (((-607 |#1| |#2|) $) 52)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 70)) (-1979 (((-589 (-271 |#2|)) $ $) 33)) (-2435 (((-1034) $) NIL)) (-1847 (($ (-607 |#1| |#2|)) 48)) (-1308 (($ $ $) NIL)) (-2306 (($ $ $) NIL)) (-3976 (((-794) $) 58) (((-1182 |#1| |#2|) $) NIL) (((-1187 |#1| |#2|) $) 66)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1440 (($) 53 T CONST)) (-2047 (((-589 (-2 (|:| |k| (-614 |#1|)) (|:| |c| |#2|))) $) 31)) (-2515 (((-589 (-607 |#1| |#2|)) (-589 |#1|)) 65)) (-1776 (((-589 (-2 (|:| |k| (-824 |#1|)) (|:| |c| |#2|))) $) 37)) (-4037 (((-108) $ $) 54)) (-4125 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ $ $) 44)))
-(((-573 |#1| |#2| |#3|) (-13 (-448) (-10 -8 (-15 -1847 ($ (-607 |#1| |#2|))) (-15 -2062 ((-607 |#1| |#2|) $)) (-15 -1776 ((-589 (-2 (|:| |k| (-824 |#1|)) (|:| |c| |#2|))) $)) (-15 -3976 ((-1182 |#1| |#2|) $)) (-15 -3976 ((-1187 |#1| |#2|) $)) (-15 -2471 ($ $)) (-15 -1304 ((-589 |#1|) $)) (-15 -2515 ((-589 (-607 |#1| |#2|)) (-589 |#1|))) (-15 -2047 ((-589 (-2 (|:| |k| (-614 |#1|)) (|:| |c| |#2|))) $)) (-15 -1979 ((-589 (-271 |#2|)) $ $)))) (-786) (-13 (-158) (-657 (-383 (-523)))) (-852)) (T -573))
-((-1847 (*1 *1 *2) (-12 (-5 *2 (-607 *3 *4)) (-4 *3 (-786)) (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-5 *1 (-573 *3 *4 *5)) (-14 *5 (-852)))) (-2062 (*1 *2 *1) (-12 (-5 *2 (-607 *3 *4)) (-5 *1 (-573 *3 *4 *5)) (-4 *3 (-786)) (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-14 *5 (-852)))) (-1776 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| |k| (-824 *3)) (|:| |c| *4)))) (-5 *1 (-573 *3 *4 *5)) (-4 *3 (-786)) (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-14 *5 (-852)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-1182 *3 *4)) (-5 *1 (-573 *3 *4 *5)) (-4 *3 (-786)) (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-14 *5 (-852)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-1187 *3 *4)) (-5 *1 (-573 *3 *4 *5)) (-4 *3 (-786)) (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-14 *5 (-852)))) (-2471 (*1 *1 *1) (-12 (-5 *1 (-573 *2 *3 *4)) (-4 *2 (-786)) (-4 *3 (-13 (-158) (-657 (-383 (-523))))) (-14 *4 (-852)))) (-1304 (*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-573 *3 *4 *5)) (-4 *3 (-786)) (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-14 *5 (-852)))) (-2515 (*1 *2 *3) (-12 (-5 *3 (-589 *4)) (-4 *4 (-786)) (-5 *2 (-589 (-607 *4 *5))) (-5 *1 (-573 *4 *5 *6)) (-4 *5 (-13 (-158) (-657 (-383 (-523))))) (-14 *6 (-852)))) (-2047 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| |k| (-614 *3)) (|:| |c| *4)))) (-5 *1 (-573 *3 *4 *5)) (-4 *3 (-786)) (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-14 *5 (-852)))) (-1979 (*1 *2 *1 *1) (-12 (-5 *2 (-589 (-271 *4))) (-5 *1 (-573 *3 *4 *5)) (-4 *3 (-786)) (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-14 *5 (-852)))))
-(-13 (-448) (-10 -8 (-15 -1847 ($ (-607 |#1| |#2|))) (-15 -2062 ((-607 |#1| |#2|) $)) (-15 -1776 ((-589 (-2 (|:| |k| (-824 |#1|)) (|:| |c| |#2|))) $)) (-15 -3976 ((-1182 |#1| |#2|) $)) (-15 -3976 ((-1187 |#1| |#2|) $)) (-15 -2471 ($ $)) (-15 -1304 ((-589 |#1|) $)) (-15 -2515 ((-589 (-607 |#1| |#2|)) (-589 |#1|))) (-15 -2047 ((-589 (-2 (|:| |k| (-614 |#1|)) (|:| |c| |#2|))) $)) (-15 -1979 ((-589 (-271 |#2|)) $ $))))
-((-2311 (((-589 (-1058 |#1| (-495 (-796 |#2|)) (-796 |#2|) (-719 |#1| (-796 |#2|)))) (-589 (-719 |#1| (-796 |#2|))) (-108)) 72) (((-589 (-970 |#1| |#2|)) (-589 (-719 |#1| (-796 |#2|))) (-108)) 58)) (-2758 (((-108) (-589 (-719 |#1| (-796 |#2|)))) 23)) (-1412 (((-589 (-1058 |#1| (-495 (-796 |#2|)) (-796 |#2|) (-719 |#1| (-796 |#2|)))) (-589 (-719 |#1| (-796 |#2|))) (-108)) 71)) (-1882 (((-589 (-970 |#1| |#2|)) (-589 (-719 |#1| (-796 |#2|))) (-108)) 57)) (-3721 (((-589 (-719 |#1| (-796 |#2|))) (-589 (-719 |#1| (-796 |#2|)))) 27)) (-1217 (((-3 (-589 (-719 |#1| (-796 |#2|))) "failed") (-589 (-719 |#1| (-796 |#2|)))) 26)))
-(((-574 |#1| |#2|) (-10 -7 (-15 -2758 ((-108) (-589 (-719 |#1| (-796 |#2|))))) (-15 -1217 ((-3 (-589 (-719 |#1| (-796 |#2|))) "failed") (-589 (-719 |#1| (-796 |#2|))))) (-15 -3721 ((-589 (-719 |#1| (-796 |#2|))) (-589 (-719 |#1| (-796 |#2|))))) (-15 -1882 ((-589 (-970 |#1| |#2|)) (-589 (-719 |#1| (-796 |#2|))) (-108))) (-15 -1412 ((-589 (-1058 |#1| (-495 (-796 |#2|)) (-796 |#2|) (-719 |#1| (-796 |#2|)))) (-589 (-719 |#1| (-796 |#2|))) (-108))) (-15 -2311 ((-589 (-970 |#1| |#2|)) (-589 (-719 |#1| (-796 |#2|))) (-108))) (-15 -2311 ((-589 (-1058 |#1| (-495 (-796 |#2|)) (-796 |#2|) (-719 |#1| (-796 |#2|)))) (-589 (-719 |#1| (-796 |#2|))) (-108)))) (-427) (-589 (-1087))) (T -574))
-((-2311 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-719 *5 (-796 *6)))) (-5 *4 (-108)) (-4 *5 (-427)) (-14 *6 (-589 (-1087))) (-5 *2 (-589 (-1058 *5 (-495 (-796 *6)) (-796 *6) (-719 *5 (-796 *6))))) (-5 *1 (-574 *5 *6)))) (-2311 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-719 *5 (-796 *6)))) (-5 *4 (-108)) (-4 *5 (-427)) (-14 *6 (-589 (-1087))) (-5 *2 (-589 (-970 *5 *6))) (-5 *1 (-574 *5 *6)))) (-1412 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-719 *5 (-796 *6)))) (-5 *4 (-108)) (-4 *5 (-427)) (-14 *6 (-589 (-1087))) (-5 *2 (-589 (-1058 *5 (-495 (-796 *6)) (-796 *6) (-719 *5 (-796 *6))))) (-5 *1 (-574 *5 *6)))) (-1882 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-719 *5 (-796 *6)))) (-5 *4 (-108)) (-4 *5 (-427)) (-14 *6 (-589 (-1087))) (-5 *2 (-589 (-970 *5 *6))) (-5 *1 (-574 *5 *6)))) (-3721 (*1 *2 *2) (-12 (-5 *2 (-589 (-719 *3 (-796 *4)))) (-4 *3 (-427)) (-14 *4 (-589 (-1087))) (-5 *1 (-574 *3 *4)))) (-1217 (*1 *2 *2) (|partial| -12 (-5 *2 (-589 (-719 *3 (-796 *4)))) (-4 *3 (-427)) (-14 *4 (-589 (-1087))) (-5 *1 (-574 *3 *4)))) (-2758 (*1 *2 *3) (-12 (-5 *3 (-589 (-719 *4 (-796 *5)))) (-4 *4 (-427)) (-14 *5 (-589 (-1087))) (-5 *2 (-108)) (-5 *1 (-574 *4 *5)))))
-(-10 -7 (-15 -2758 ((-108) (-589 (-719 |#1| (-796 |#2|))))) (-15 -1217 ((-3 (-589 (-719 |#1| (-796 |#2|))) "failed") (-589 (-719 |#1| (-796 |#2|))))) (-15 -3721 ((-589 (-719 |#1| (-796 |#2|))) (-589 (-719 |#1| (-796 |#2|))))) (-15 -1882 ((-589 (-970 |#1| |#2|)) (-589 (-719 |#1| (-796 |#2|))) (-108))) (-15 -1412 ((-589 (-1058 |#1| (-495 (-796 |#2|)) (-796 |#2|) (-719 |#1| (-796 |#2|)))) (-589 (-719 |#1| (-796 |#2|))) (-108))) (-15 -2311 ((-589 (-970 |#1| |#2|)) (-589 (-719 |#1| (-796 |#2|))) (-108))) (-15 -2311 ((-589 (-1058 |#1| (-495 (-796 |#2|)) (-796 |#2|) (-719 |#1| (-796 |#2|)))) (-589 (-719 |#1| (-796 |#2|))) (-108))))
-((-3695 (($ $) 38)) (-2608 (($ $) 21)) (-3669 (($ $) 37)) (-2588 (($ $) 22)) (-3717 (($ $) 36)) (-2629 (($ $) 23)) (-2188 (($) 48)) (-2062 (($ $) 45)) (-2652 (($ $) 17)) (-1777 (($ $ (-1009 $)) 7) (($ $ (-1087)) 6)) (-1847 (($ $) 46)) (-2028 (($ $) 15)) (-2550 (($ $) 16)) (-3730 (($ $) 35)) (-2641 (($ $) 24)) (-3707 (($ $) 34)) (-2617 (($ $) 25)) (-3683 (($ $) 33)) (-2598 (($ $) 26)) (-3768 (($ $) 44)) (-2680 (($ $) 32)) (-3743 (($ $) 43)) (-2655 (($ $) 31)) (-3793 (($ $) 42)) (-3645 (($ $) 30)) (-3135 (($ $) 41)) (-3657 (($ $) 29)) (-3780 (($ $) 40)) (-3632 (($ $) 28)) (-3756 (($ $) 39)) (-2667 (($ $) 27)) (-1692 (($ $) 19)) (-2409 (($ $) 20)) (-3625 (($ $) 18)) (** (($ $ $) 47)))
-(((-575) (-129)) (T -575))
-((-2409 (*1 *1 *1) (-4 *1 (-575))) (-1692 (*1 *1 *1) (-4 *1 (-575))) (-3625 (*1 *1 *1) (-4 *1 (-575))) (-2652 (*1 *1 *1) (-4 *1 (-575))) (-2550 (*1 *1 *1) (-4 *1 (-575))) (-2028 (*1 *1 *1) (-4 *1 (-575))))
-(-13 (-889) (-1109) (-10 -8 (-15 -2409 ($ $)) (-15 -1692 ($ $)) (-15 -3625 ($ $)) (-15 -2652 ($ $)) (-15 -2550 ($ $)) (-15 -2028 ($ $))))
-(((-34) . T) ((-91) . T) ((-261) . T) ((-464) . T) ((-889) . T) ((-1109) . T) ((-1112) . T))
-((-1564 (((-110) (-110)) 83)) (-2652 ((|#2| |#2|) 30)) (-1777 ((|#2| |#2| (-1009 |#2|)) 79) ((|#2| |#2| (-1087)) 52)) (-2028 ((|#2| |#2|) 29)) (-2550 ((|#2| |#2|) 31)) (-1651 (((-108) (-110)) 34)) (-1692 ((|#2| |#2|) 26)) (-2409 ((|#2| |#2|) 28)) (-3625 ((|#2| |#2|) 27)))
-(((-576 |#1| |#2|) (-10 -7 (-15 -1651 ((-108) (-110))) (-15 -1564 ((-110) (-110))) (-15 -2409 (|#2| |#2|)) (-15 -1692 (|#2| |#2|)) (-15 -3625 (|#2| |#2|)) (-15 -2652 (|#2| |#2|)) (-15 -2028 (|#2| |#2|)) (-15 -2550 (|#2| |#2|)) (-15 -1777 (|#2| |#2| (-1087))) (-15 -1777 (|#2| |#2| (-1009 |#2|)))) (-13 (-786) (-515)) (-13 (-406 |#1|) (-930) (-1109))) (T -576))
-((-1777 (*1 *2 *2 *3) (-12 (-5 *3 (-1009 *2)) (-4 *2 (-13 (-406 *4) (-930) (-1109))) (-4 *4 (-13 (-786) (-515))) (-5 *1 (-576 *4 *2)))) (-1777 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-786) (-515))) (-5 *1 (-576 *4 *2)) (-4 *2 (-13 (-406 *4) (-930) (-1109))))) (-2550 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-576 *3 *2)) (-4 *2 (-13 (-406 *3) (-930) (-1109))))) (-2028 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-576 *3 *2)) (-4 *2 (-13 (-406 *3) (-930) (-1109))))) (-2652 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-576 *3 *2)) (-4 *2 (-13 (-406 *3) (-930) (-1109))))) (-3625 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-576 *3 *2)) (-4 *2 (-13 (-406 *3) (-930) (-1109))))) (-1692 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-576 *3 *2)) (-4 *2 (-13 (-406 *3) (-930) (-1109))))) (-2409 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-576 *3 *2)) (-4 *2 (-13 (-406 *3) (-930) (-1109))))) (-1564 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-786) (-515))) (-5 *1 (-576 *3 *4)) (-4 *4 (-13 (-406 *3) (-930) (-1109))))) (-1651 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-108)) (-5 *1 (-576 *4 *5)) (-4 *5 (-13 (-406 *4) (-930) (-1109))))))
-(-10 -7 (-15 -1651 ((-108) (-110))) (-15 -1564 ((-110) (-110))) (-15 -2409 (|#2| |#2|)) (-15 -1692 (|#2| |#2|)) (-15 -3625 (|#2| |#2|)) (-15 -2652 (|#2| |#2|)) (-15 -2028 (|#2| |#2|)) (-15 -2550 (|#2| |#2|)) (-15 -1777 (|#2| |#2| (-1087))) (-15 -1777 (|#2| |#2| (-1009 |#2|))))
-((-1903 (((-455 |#1| |#2|) (-225 |#1| |#2|)) 53)) (-2610 (((-589 (-225 |#1| |#2|)) (-589 (-455 |#1| |#2|))) 68)) (-1884 (((-455 |#1| |#2|) (-589 (-455 |#1| |#2|)) (-796 |#1|)) 70) (((-455 |#1| |#2|) (-589 (-455 |#1| |#2|)) (-589 (-455 |#1| |#2|)) (-796 |#1|)) 69)) (-2871 (((-2 (|:| |gblist| (-589 (-225 |#1| |#2|))) (|:| |gvlist| (-589 (-523)))) (-589 (-455 |#1| |#2|))) 108)) (-3120 (((-589 (-455 |#1| |#2|)) (-796 |#1|) (-589 (-455 |#1| |#2|)) (-589 (-455 |#1| |#2|))) 83)) (-2565 (((-2 (|:| |glbase| (-589 (-225 |#1| |#2|))) (|:| |glval| (-589 (-523)))) (-589 (-225 |#1| |#2|))) 118)) (-2063 (((-1169 |#2|) (-455 |#1| |#2|) (-589 (-455 |#1| |#2|))) 58)) (-2160 (((-589 (-455 |#1| |#2|)) (-589 (-455 |#1| |#2|))) 41)) (-1298 (((-225 |#1| |#2|) (-225 |#1| |#2|) (-589 (-225 |#1| |#2|))) 50)) (-1494 (((-225 |#1| |#2|) (-589 |#2|) (-225 |#1| |#2|) (-589 (-225 |#1| |#2|))) 91)))
-(((-577 |#1| |#2|) (-10 -7 (-15 -2871 ((-2 (|:| |gblist| (-589 (-225 |#1| |#2|))) (|:| |gvlist| (-589 (-523)))) (-589 (-455 |#1| |#2|)))) (-15 -2565 ((-2 (|:| |glbase| (-589 (-225 |#1| |#2|))) (|:| |glval| (-589 (-523)))) (-589 (-225 |#1| |#2|)))) (-15 -2610 ((-589 (-225 |#1| |#2|)) (-589 (-455 |#1| |#2|)))) (-15 -1884 ((-455 |#1| |#2|) (-589 (-455 |#1| |#2|)) (-589 (-455 |#1| |#2|)) (-796 |#1|))) (-15 -1884 ((-455 |#1| |#2|) (-589 (-455 |#1| |#2|)) (-796 |#1|))) (-15 -2160 ((-589 (-455 |#1| |#2|)) (-589 (-455 |#1| |#2|)))) (-15 -2063 ((-1169 |#2|) (-455 |#1| |#2|) (-589 (-455 |#1| |#2|)))) (-15 -1494 ((-225 |#1| |#2|) (-589 |#2|) (-225 |#1| |#2|) (-589 (-225 |#1| |#2|)))) (-15 -3120 ((-589 (-455 |#1| |#2|)) (-796 |#1|) (-589 (-455 |#1| |#2|)) (-589 (-455 |#1| |#2|)))) (-15 -1298 ((-225 |#1| |#2|) (-225 |#1| |#2|) (-589 (-225 |#1| |#2|)))) (-15 -1903 ((-455 |#1| |#2|) (-225 |#1| |#2|)))) (-589 (-1087)) (-427)) (T -577))
-((-1903 (*1 *2 *3) (-12 (-5 *3 (-225 *4 *5)) (-14 *4 (-589 (-1087))) (-4 *5 (-427)) (-5 *2 (-455 *4 *5)) (-5 *1 (-577 *4 *5)))) (-1298 (*1 *2 *2 *3) (-12 (-5 *3 (-589 (-225 *4 *5))) (-5 *2 (-225 *4 *5)) (-14 *4 (-589 (-1087))) (-4 *5 (-427)) (-5 *1 (-577 *4 *5)))) (-3120 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-589 (-455 *4 *5))) (-5 *3 (-796 *4)) (-14 *4 (-589 (-1087))) (-4 *5 (-427)) (-5 *1 (-577 *4 *5)))) (-1494 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-589 *6)) (-5 *4 (-589 (-225 *5 *6))) (-4 *6 (-427)) (-5 *2 (-225 *5 *6)) (-14 *5 (-589 (-1087))) (-5 *1 (-577 *5 *6)))) (-2063 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-455 *5 *6))) (-5 *3 (-455 *5 *6)) (-14 *5 (-589 (-1087))) (-4 *6 (-427)) (-5 *2 (-1169 *6)) (-5 *1 (-577 *5 *6)))) (-2160 (*1 *2 *2) (-12 (-5 *2 (-589 (-455 *3 *4))) (-14 *3 (-589 (-1087))) (-4 *4 (-427)) (-5 *1 (-577 *3 *4)))) (-1884 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-455 *5 *6))) (-5 *4 (-796 *5)) (-14 *5 (-589 (-1087))) (-5 *2 (-455 *5 *6)) (-5 *1 (-577 *5 *6)) (-4 *6 (-427)))) (-1884 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-589 (-455 *5 *6))) (-5 *4 (-796 *5)) (-14 *5 (-589 (-1087))) (-5 *2 (-455 *5 *6)) (-5 *1 (-577 *5 *6)) (-4 *6 (-427)))) (-2610 (*1 *2 *3) (-12 (-5 *3 (-589 (-455 *4 *5))) (-14 *4 (-589 (-1087))) (-4 *5 (-427)) (-5 *2 (-589 (-225 *4 *5))) (-5 *1 (-577 *4 *5)))) (-2565 (*1 *2 *3) (-12 (-14 *4 (-589 (-1087))) (-4 *5 (-427)) (-5 *2 (-2 (|:| |glbase| (-589 (-225 *4 *5))) (|:| |glval| (-589 (-523))))) (-5 *1 (-577 *4 *5)) (-5 *3 (-589 (-225 *4 *5))))) (-2871 (*1 *2 *3) (-12 (-5 *3 (-589 (-455 *4 *5))) (-14 *4 (-589 (-1087))) (-4 *5 (-427)) (-5 *2 (-2 (|:| |gblist| (-589 (-225 *4 *5))) (|:| |gvlist| (-589 (-523))))) (-5 *1 (-577 *4 *5)))))
-(-10 -7 (-15 -2871 ((-2 (|:| |gblist| (-589 (-225 |#1| |#2|))) (|:| |gvlist| (-589 (-523)))) (-589 (-455 |#1| |#2|)))) (-15 -2565 ((-2 (|:| |glbase| (-589 (-225 |#1| |#2|))) (|:| |glval| (-589 (-523)))) (-589 (-225 |#1| |#2|)))) (-15 -2610 ((-589 (-225 |#1| |#2|)) (-589 (-455 |#1| |#2|)))) (-15 -1884 ((-455 |#1| |#2|) (-589 (-455 |#1| |#2|)) (-589 (-455 |#1| |#2|)) (-796 |#1|))) (-15 -1884 ((-455 |#1| |#2|) (-589 (-455 |#1| |#2|)) (-796 |#1|))) (-15 -2160 ((-589 (-455 |#1| |#2|)) (-589 (-455 |#1| |#2|)))) (-15 -2063 ((-1169 |#2|) (-455 |#1| |#2|) (-589 (-455 |#1| |#2|)))) (-15 -1494 ((-225 |#1| |#2|) (-589 |#2|) (-225 |#1| |#2|) (-589 (-225 |#1| |#2|)))) (-15 -3120 ((-589 (-455 |#1| |#2|)) (-796 |#1|) (-589 (-455 |#1| |#2|)) (-589 (-455 |#1| |#2|)))) (-15 -1298 ((-225 |#1| |#2|) (-225 |#1| |#2|) (-589 (-225 |#1| |#2|)))) (-15 -1903 ((-455 |#1| |#2|) (-225 |#1| |#2|))))
-((-3260 (((-108) $ $) NIL (-3255 (|has| (-51) (-1016)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1016))))) (-2340 (($) NIL) (($ (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))))) NIL)) (-1666 (((-1174) $ (-1070) (-1070)) NIL (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 (((-51) $ (-1070) (-51)) 16) (((-51) $ (-1087) (-51)) 17)) (-3627 (($ (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248)))) (-2521 (((-3 (-51) "failed") (-1070) $) NIL)) (-1640 (($) NIL T CONST)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1016))))) (-1869 (($ (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) $) NIL (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-3 (-51) "failed") (-1070) $) NIL)) (-2231 (($ (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1016)))) (($ (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248)))) (-1830 (((-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) $ (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1016)))) (((-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) $ (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) NIL (|has| $ (-6 -4248))) (((-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248)))) (-3073 (((-51) $ (-1070) (-51)) NIL (|has| $ (-6 -4249)))) (-3002 (((-51) $ (-1070)) NIL)) (-3133 (((-589 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-589 (-51)) $) NIL (|has| $ (-6 -4248)))) (-1924 (($ $) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-1070) $) NIL (|has| (-1070) (-786)))) (-3056 (((-589 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-589 (-51)) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1016)))) (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-51) (-1016))))) (-2133 (((-1070) $) NIL (|has| (-1070) (-786)))) (-3063 (($ (-1 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4249))) (($ (-1 (-51) (-51)) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) $) NIL) (($ (-1 (-51) (-51)) $) NIL) (($ (-1 (-51) (-51) (-51)) $ $) NIL)) (-3998 (($ (-364)) 9)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (-3255 (|has| (-51) (-1016)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1016))))) (-1612 (((-589 (-1070)) $) NIL)) (-2754 (((-108) (-1070) $) NIL)) (-2349 (((-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) $) NIL)) (-3862 (($ (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) $) NIL)) (-2909 (((-589 (-1070)) $) NIL)) (-2290 (((-108) (-1070) $) NIL)) (-2435 (((-1034) $) NIL (-3255 (|has| (-51) (-1016)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1016))))) (-3879 (((-51) $) NIL (|has| (-1070) (-786)))) (-2660 (((-3 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) "failed") (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) $) NIL)) (-2408 (($ $ (-51)) NIL (|has| $ (-6 -4249)))) (-1322 (((-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) $) NIL)) (-2720 (((-108) (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))))) NIL (-12 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))))) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1016)))) (($ $ (-271 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))))) NIL (-12 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))))) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1016)))) (($ $ (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) NIL (-12 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))))) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1016)))) (($ $ (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))))) NIL (-12 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))))) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1016)))) (($ $ (-589 (-51)) (-589 (-51))) NIL (-12 (|has| (-51) (-286 (-51))) (|has| (-51) (-1016)))) (($ $ (-51) (-51)) NIL (-12 (|has| (-51) (-286 (-51))) (|has| (-51) (-1016)))) (($ $ (-271 (-51))) NIL (-12 (|has| (-51) (-286 (-51))) (|has| (-51) (-1016)))) (($ $ (-589 (-271 (-51)))) NIL (-12 (|has| (-51) (-286 (-51))) (|has| (-51) (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-51) (-1016))))) (-3184 (((-589 (-51)) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 (((-51) $ (-1070)) 14) (((-51) $ (-1070) (-51)) NIL) (((-51) $ (-1087)) 15)) (-1771 (($) NIL) (($ (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))))) NIL)) (-2452 (((-710) (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1016)))) (((-710) (-51) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-51) (-1016)))) (((-710) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-564 (-499))))) (-3985 (($ (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))))) NIL)) (-3976 (((-794) $) NIL (-3255 (|has| (-51) (-563 (-794))) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-563 (-794)))))) (-1245 (($ (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))))) NIL)) (-1505 (((-108) (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (-3255 (|has| (-51) (-1016)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 (-51))) (-1016))))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-578) (-13 (-1100 (-1070) (-51)) (-10 -8 (-15 -3998 ($ (-364))) (-15 -1924 ($ $)) (-15 -1502 ((-51) $ (-1087))) (-15 -4101 ((-51) $ (-1087) (-51)))))) (T -578))
-((-3998 (*1 *1 *2) (-12 (-5 *2 (-364)) (-5 *1 (-578)))) (-1924 (*1 *1 *1) (-5 *1 (-578))) (-1502 (*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-51)) (-5 *1 (-578)))) (-4101 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-51)) (-5 *3 (-1087)) (-5 *1 (-578)))))
-(-13 (-1100 (-1070) (-51)) (-10 -8 (-15 -3998 ($ (-364))) (-15 -1924 ($ $)) (-15 -1502 ((-51) $ (-1087))) (-15 -4101 ((-51) $ (-1087) (-51)))))
-((-4125 (($ $ |#2|) 10)))
-(((-579 |#1| |#2|) (-10 -8 (-15 -4125 (|#1| |#1| |#2|))) (-580 |#2|) (-158)) (T -579))
-NIL
-(-10 -8 (-15 -4125 (|#1| |#1| |#2|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3985 (($ $ $) 29)) (-3976 (((-794) $) 11)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4125 (($ $ |#1|) 28 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
-(((-580 |#1|) (-129) (-158)) (T -580))
-((-3985 (*1 *1 *1 *1) (-12 (-4 *1 (-580 *2)) (-4 *2 (-158)))) (-4125 (*1 *1 *1 *2) (-12 (-4 *1 (-580 *2)) (-4 *2 (-158)) (-4 *2 (-339)))))
-(-13 (-657 |t#1|) (-10 -8 (-6 |NullSquare|) (-6 |JacobiIdentity|) (-15 -3985 ($ $ $)) (IF (|has| |t#1| (-339)) (-15 -4125 ($ $ |t#1|)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 |#1|) . T) ((-657 |#1|) . T) ((-979 |#1|) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1895 (((-3 $ "failed")) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-2999 (((-3 $ "failed") $ $) NIL)) (-2279 (((-1169 (-629 |#1|))) NIL (|has| |#2| (-393 |#1|))) (((-1169 (-629 |#1|)) (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-3513 (((-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-1640 (($) NIL T CONST)) (-1563 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-3869 (((-3 $ "failed")) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-4067 (((-629 |#1|)) NIL (|has| |#2| (-393 |#1|))) (((-629 |#1|) (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-2507 ((|#1| $) NIL (|has| |#2| (-343 |#1|)))) (-2358 (((-629 |#1|) $) NIL (|has| |#2| (-393 |#1|))) (((-629 |#1|) $ (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-2439 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-2717 (((-1083 (-883 |#1|))) NIL (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-339))))) (-2966 (($ $ (-852)) NIL)) (-2860 ((|#1| $) NIL (|has| |#2| (-343 |#1|)))) (-2119 (((-1083 |#1|) $) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-1772 ((|#1|) NIL (|has| |#2| (-393 |#1|))) ((|#1| (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-2196 (((-1083 |#1|) $) NIL (|has| |#2| (-343 |#1|)))) (-3953 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-3322 (($ (-1169 |#1|)) NIL (|has| |#2| (-393 |#1|))) (($ (-1169 |#1|) (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-4211 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-2262 (((-852)) NIL (|has| |#2| (-343 |#1|)))) (-3091 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-1935 (($ $ (-852)) NIL)) (-3562 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-3877 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-3868 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-4111 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-3575 (((-3 $ "failed")) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-2216 (((-629 |#1|)) NIL (|has| |#2| (-393 |#1|))) (((-629 |#1|) (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-1870 ((|#1| $) NIL (|has| |#2| (-343 |#1|)))) (-2225 (((-629 |#1|) $) NIL (|has| |#2| (-393 |#1|))) (((-629 |#1|) $ (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-3790 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-2975 (((-1083 (-883 |#1|))) NIL (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-339))))) (-2165 (($ $ (-852)) NIL)) (-1876 ((|#1| $) NIL (|has| |#2| (-343 |#1|)))) (-1393 (((-1083 |#1|) $) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-1242 ((|#1|) NIL (|has| |#2| (-393 |#1|))) ((|#1| (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-1292 (((-1083 |#1|) $) NIL (|has| |#2| (-343 |#1|)))) (-1519 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-3841 (((-1070) $) NIL)) (-1279 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-1466 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-1597 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-2435 (((-1034) $) NIL)) (-2375 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-1502 ((|#1| $ (-523)) NIL (|has| |#2| (-393 |#1|)))) (-2411 (((-629 |#1|) (-1169 $)) NIL (|has| |#2| (-393 |#1|))) (((-1169 |#1|) $) NIL (|has| |#2| (-393 |#1|))) (((-629 |#1|) (-1169 $) (-1169 $)) NIL (|has| |#2| (-343 |#1|))) (((-1169 |#1|) $ (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-3077 (($ (-1169 |#1|)) NIL (|has| |#2| (-393 |#1|))) (((-1169 |#1|) $) NIL (|has| |#2| (-393 |#1|)))) (-1948 (((-589 (-883 |#1|))) NIL (|has| |#2| (-393 |#1|))) (((-589 (-883 |#1|)) (-1169 $)) NIL (|has| |#2| (-343 |#1|)))) (-2306 (($ $ $) NIL)) (-2178 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-3976 (((-794) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-2922 (((-1169 $)) NIL (|has| |#2| (-393 |#1|)))) (-1842 (((-589 (-1169 |#1|))) NIL (-3255 (-12 (|has| |#2| (-343 |#1|)) (|has| |#1| (-515))) (-12 (|has| |#2| (-393 |#1|)) (|has| |#1| (-515)))))) (-3377 (($ $ $ $) NIL)) (-1363 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-3817 (($ (-629 |#1|) $) NIL (|has| |#2| (-393 |#1|)))) (-1952 (($ $ $) NIL)) (-3931 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-3433 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-4001 (((-108)) NIL (|has| |#2| (-343 |#1|)))) (-1428 (($) 15 T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) 17)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 11) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-581 |#1| |#2|) (-13 (-684 |#1|) (-563 |#2|) (-10 -8 (-15 -3976 ($ |#2|)) (IF (|has| |#2| (-393 |#1|)) (-6 (-393 |#1|)) |%noBranch|) (IF (|has| |#2| (-343 |#1|)) (-6 (-343 |#1|)) |%noBranch|))) (-158) (-684 |#1|)) (T -581))
-((-3976 (*1 *1 *2) (-12 (-4 *3 (-158)) (-5 *1 (-581 *3 *2)) (-4 *2 (-684 *3)))))
-(-13 (-684 |#1|) (-563 |#2|) (-10 -8 (-15 -3976 ($ |#2|)) (IF (|has| |#2| (-393 |#1|)) (-6 (-393 |#1|)) |%noBranch|) (IF (|has| |#2| (-343 |#1|)) (-6 (-343 |#1|)) |%noBranch|)))
-((-2743 (((-3 (-779 |#2|) "failed") |#2| (-271 |#2|) (-1070)) 82) (((-3 (-779 |#2|) (-2 (|:| |leftHandLimit| (-3 (-779 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-779 |#2|) "failed"))) "failed") |#2| (-271 (-779 |#2|))) 104)) (-1792 (((-3 (-772 |#2|) "failed") |#2| (-271 (-772 |#2|))) 109)))
-(((-582 |#1| |#2|) (-10 -7 (-15 -2743 ((-3 (-779 |#2|) (-2 (|:| |leftHandLimit| (-3 (-779 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-779 |#2|) "failed"))) "failed") |#2| (-271 (-779 |#2|)))) (-15 -1792 ((-3 (-772 |#2|) "failed") |#2| (-271 (-772 |#2|)))) (-15 -2743 ((-3 (-779 |#2|) "failed") |#2| (-271 |#2|) (-1070)))) (-13 (-427) (-786) (-964 (-523)) (-585 (-523))) (-13 (-27) (-1109) (-406 |#1|))) (T -582))
-((-2743 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-271 *3)) (-5 *5 (-1070)) (-4 *3 (-13 (-27) (-1109) (-406 *6))) (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-779 *3)) (-5 *1 (-582 *6 *3)))) (-1792 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-271 (-772 *3))) (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-772 *3)) (-5 *1 (-582 *5 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5))))) (-2743 (*1 *2 *3 *4) (-12 (-5 *4 (-271 (-779 *3))) (-4 *3 (-13 (-27) (-1109) (-406 *5))) (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-3 (-779 *3) (-2 (|:| |leftHandLimit| (-3 (-779 *3) "failed")) (|:| |rightHandLimit| (-3 (-779 *3) "failed"))) "failed")) (-5 *1 (-582 *5 *3)))))
-(-10 -7 (-15 -2743 ((-3 (-779 |#2|) (-2 (|:| |leftHandLimit| (-3 (-779 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-779 |#2|) "failed"))) "failed") |#2| (-271 (-779 |#2|)))) (-15 -1792 ((-3 (-772 |#2|) "failed") |#2| (-271 (-772 |#2|)))) (-15 -2743 ((-3 (-779 |#2|) "failed") |#2| (-271 |#2|) (-1070))))
-((-2743 (((-3 (-779 (-383 (-883 |#1|))) "failed") (-383 (-883 |#1|)) (-271 (-383 (-883 |#1|))) (-1070)) 80) (((-3 (-779 (-383 (-883 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-779 (-383 (-883 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-779 (-383 (-883 |#1|))) "failed"))) "failed") (-383 (-883 |#1|)) (-271 (-383 (-883 |#1|)))) 20) (((-3 (-779 (-383 (-883 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-779 (-383 (-883 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-779 (-383 (-883 |#1|))) "failed"))) "failed") (-383 (-883 |#1|)) (-271 (-779 (-883 |#1|)))) 35)) (-1792 (((-772 (-383 (-883 |#1|))) (-383 (-883 |#1|)) (-271 (-383 (-883 |#1|)))) 23) (((-772 (-383 (-883 |#1|))) (-383 (-883 |#1|)) (-271 (-772 (-883 |#1|)))) 43)))
-(((-583 |#1|) (-10 -7 (-15 -2743 ((-3 (-779 (-383 (-883 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-779 (-383 (-883 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-779 (-383 (-883 |#1|))) "failed"))) "failed") (-383 (-883 |#1|)) (-271 (-779 (-883 |#1|))))) (-15 -2743 ((-3 (-779 (-383 (-883 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-779 (-383 (-883 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-779 (-383 (-883 |#1|))) "failed"))) "failed") (-383 (-883 |#1|)) (-271 (-383 (-883 |#1|))))) (-15 -1792 ((-772 (-383 (-883 |#1|))) (-383 (-883 |#1|)) (-271 (-772 (-883 |#1|))))) (-15 -1792 ((-772 (-383 (-883 |#1|))) (-383 (-883 |#1|)) (-271 (-383 (-883 |#1|))))) (-15 -2743 ((-3 (-779 (-383 (-883 |#1|))) "failed") (-383 (-883 |#1|)) (-271 (-383 (-883 |#1|))) (-1070)))) (-427)) (T -583))
-((-2743 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-271 (-383 (-883 *6)))) (-5 *5 (-1070)) (-5 *3 (-383 (-883 *6))) (-4 *6 (-427)) (-5 *2 (-779 *3)) (-5 *1 (-583 *6)))) (-1792 (*1 *2 *3 *4) (-12 (-5 *4 (-271 (-383 (-883 *5)))) (-5 *3 (-383 (-883 *5))) (-4 *5 (-427)) (-5 *2 (-772 *3)) (-5 *1 (-583 *5)))) (-1792 (*1 *2 *3 *4) (-12 (-5 *4 (-271 (-772 (-883 *5)))) (-4 *5 (-427)) (-5 *2 (-772 (-383 (-883 *5)))) (-5 *1 (-583 *5)) (-5 *3 (-383 (-883 *5))))) (-2743 (*1 *2 *3 *4) (-12 (-5 *4 (-271 (-383 (-883 *5)))) (-5 *3 (-383 (-883 *5))) (-4 *5 (-427)) (-5 *2 (-3 (-779 *3) (-2 (|:| |leftHandLimit| (-3 (-779 *3) "failed")) (|:| |rightHandLimit| (-3 (-779 *3) "failed"))) "failed")) (-5 *1 (-583 *5)))) (-2743 (*1 *2 *3 *4) (-12 (-5 *4 (-271 (-779 (-883 *5)))) (-4 *5 (-427)) (-5 *2 (-3 (-779 (-383 (-883 *5))) (-2 (|:| |leftHandLimit| (-3 (-779 (-383 (-883 *5))) "failed")) (|:| |rightHandLimit| (-3 (-779 (-383 (-883 *5))) "failed"))) "failed")) (-5 *1 (-583 *5)) (-5 *3 (-383 (-883 *5))))))
-(-10 -7 (-15 -2743 ((-3 (-779 (-383 (-883 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-779 (-383 (-883 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-779 (-383 (-883 |#1|))) "failed"))) "failed") (-383 (-883 |#1|)) (-271 (-779 (-883 |#1|))))) (-15 -2743 ((-3 (-779 (-383 (-883 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-779 (-383 (-883 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-779 (-383 (-883 |#1|))) "failed"))) "failed") (-383 (-883 |#1|)) (-271 (-383 (-883 |#1|))))) (-15 -1792 ((-772 (-383 (-883 |#1|))) (-383 (-883 |#1|)) (-271 (-772 (-883 |#1|))))) (-15 -1792 ((-772 (-383 (-883 |#1|))) (-383 (-883 |#1|)) (-271 (-383 (-883 |#1|))))) (-15 -2743 ((-3 (-779 (-383 (-883 |#1|))) "failed") (-383 (-883 |#1|)) (-271 (-383 (-883 |#1|))) (-1070))))
-((-1491 (((-3 (-1169 (-383 |#1|)) "failed") (-1169 |#2|) |#2|) 57 (-2575 (|has| |#1| (-339)))) (((-3 (-1169 |#1|) "failed") (-1169 |#2|) |#2|) 42 (|has| |#1| (-339)))) (-1503 (((-108) (-1169 |#2|)) 30)) (-3267 (((-3 (-1169 |#1|) "failed") (-1169 |#2|)) 33)))
-(((-584 |#1| |#2|) (-10 -7 (-15 -1503 ((-108) (-1169 |#2|))) (-15 -3267 ((-3 (-1169 |#1|) "failed") (-1169 |#2|))) (IF (|has| |#1| (-339)) (-15 -1491 ((-3 (-1169 |#1|) "failed") (-1169 |#2|) |#2|)) (-15 -1491 ((-3 (-1169 (-383 |#1|)) "failed") (-1169 |#2|) |#2|)))) (-515) (-585 |#1|)) (T -584))
-((-1491 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1169 *4)) (-4 *4 (-585 *5)) (-2575 (-4 *5 (-339))) (-4 *5 (-515)) (-5 *2 (-1169 (-383 *5))) (-5 *1 (-584 *5 *4)))) (-1491 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1169 *4)) (-4 *4 (-585 *5)) (-4 *5 (-339)) (-4 *5 (-515)) (-5 *2 (-1169 *5)) (-5 *1 (-584 *5 *4)))) (-3267 (*1 *2 *3) (|partial| -12 (-5 *3 (-1169 *5)) (-4 *5 (-585 *4)) (-4 *4 (-515)) (-5 *2 (-1169 *4)) (-5 *1 (-584 *4 *5)))) (-1503 (*1 *2 *3) (-12 (-5 *3 (-1169 *5)) (-4 *5 (-585 *4)) (-4 *4 (-515)) (-5 *2 (-108)) (-5 *1 (-584 *4 *5)))))
-(-10 -7 (-15 -1503 ((-108) (-1169 |#2|))) (-15 -3267 ((-3 (-1169 |#1|) "failed") (-1169 |#2|))) (IF (|has| |#1| (-339)) (-15 -1491 ((-3 (-1169 |#1|) "failed") (-1169 |#2|) |#2|)) (-15 -1491 ((-3 (-1169 (-383 |#1|)) "failed") (-1169 |#2|) |#2|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-2203 (((-629 |#1|) (-629 $)) 36) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) 35)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11) (($ (-523)) 28)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-585 |#1|) (-129) (-973)) (T -585))
-((-2203 (*1 *2 *3) (-12 (-5 *3 (-629 *1)) (-4 *1 (-585 *4)) (-4 *4 (-973)) (-5 *2 (-629 *4)))) (-2203 (*1 *2 *3 *4) (-12 (-5 *3 (-629 *1)) (-5 *4 (-1169 *1)) (-4 *1 (-585 *5)) (-4 *5 (-973)) (-5 *2 (-2 (|:| -2373 (-629 *5)) (|:| |vec| (-1169 *5)))))))
-(-13 (-973) (-10 -8 (-15 -2203 ((-629 |t#1|) (-629 $))) (-15 -2203 ((-2 (|:| -2373 (-629 |t#1|)) (|:| |vec| (-1169 |t#1|))) (-629 $) (-1169 $)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 $) . T) ((-666) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3312 ((|#2| (-589 |#1|) (-589 |#2|) |#1| (-1 |#2| |#1|)) 18) (((-1 |#2| |#1|) (-589 |#1|) (-589 |#2|) (-1 |#2| |#1|)) 19) ((|#2| (-589 |#1|) (-589 |#2|) |#1| |#2|) 16) (((-1 |#2| |#1|) (-589 |#1|) (-589 |#2|) |#2|) 17) ((|#2| (-589 |#1|) (-589 |#2|) |#1|) 10) (((-1 |#2| |#1|) (-589 |#1|) (-589 |#2|)) 12)))
-(((-586 |#1| |#2|) (-10 -7 (-15 -3312 ((-1 |#2| |#1|) (-589 |#1|) (-589 |#2|))) (-15 -3312 (|#2| (-589 |#1|) (-589 |#2|) |#1|)) (-15 -3312 ((-1 |#2| |#1|) (-589 |#1|) (-589 |#2|) |#2|)) (-15 -3312 (|#2| (-589 |#1|) (-589 |#2|) |#1| |#2|)) (-15 -3312 ((-1 |#2| |#1|) (-589 |#1|) (-589 |#2|) (-1 |#2| |#1|))) (-15 -3312 (|#2| (-589 |#1|) (-589 |#2|) |#1| (-1 |#2| |#1|)))) (-1016) (-1123)) (T -586))
-((-3312 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-589 *5)) (-5 *4 (-589 *2)) (-5 *6 (-1 *2 *5)) (-4 *5 (-1016)) (-4 *2 (-1123)) (-5 *1 (-586 *5 *2)))) (-3312 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-589 *5)) (-5 *4 (-589 *6)) (-4 *5 (-1016)) (-4 *6 (-1123)) (-5 *1 (-586 *5 *6)))) (-3312 (*1 *2 *3 *4 *5 *2) (-12 (-5 *3 (-589 *5)) (-5 *4 (-589 *2)) (-4 *5 (-1016)) (-4 *2 (-1123)) (-5 *1 (-586 *5 *2)))) (-3312 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-589 *6)) (-5 *4 (-589 *5)) (-4 *6 (-1016)) (-4 *5 (-1123)) (-5 *2 (-1 *5 *6)) (-5 *1 (-586 *6 *5)))) (-3312 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-589 *5)) (-5 *4 (-589 *2)) (-4 *5 (-1016)) (-4 *2 (-1123)) (-5 *1 (-586 *5 *2)))) (-3312 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *5)) (-5 *4 (-589 *6)) (-4 *5 (-1016)) (-4 *6 (-1123)) (-5 *2 (-1 *6 *5)) (-5 *1 (-586 *5 *6)))))
-(-10 -7 (-15 -3312 ((-1 |#2| |#1|) (-589 |#1|) (-589 |#2|))) (-15 -3312 (|#2| (-589 |#1|) (-589 |#2|) |#1|)) (-15 -3312 ((-1 |#2| |#1|) (-589 |#1|) (-589 |#2|) |#2|)) (-15 -3312 (|#2| (-589 |#1|) (-589 |#2|) |#1| |#2|)) (-15 -3312 ((-1 |#2| |#1|) (-589 |#1|) (-589 |#2|) (-1 |#2| |#1|))) (-15 -3312 (|#2| (-589 |#1|) (-589 |#2|) |#1| (-1 |#2| |#1|))))
-((-1586 (((-589 |#2|) (-1 |#2| |#1| |#2|) (-589 |#1|) |#2|) 16)) (-1830 ((|#2| (-1 |#2| |#1| |#2|) (-589 |#1|) |#2|) 18)) (-3015 (((-589 |#2|) (-1 |#2| |#1|) (-589 |#1|)) 13)))
-(((-587 |#1| |#2|) (-10 -7 (-15 -1586 ((-589 |#2|) (-1 |#2| |#1| |#2|) (-589 |#1|) |#2|)) (-15 -1830 (|#2| (-1 |#2| |#1| |#2|) (-589 |#1|) |#2|)) (-15 -3015 ((-589 |#2|) (-1 |#2| |#1|) (-589 |#1|)))) (-1123) (-1123)) (T -587))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-589 *5)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-589 *6)) (-5 *1 (-587 *5 *6)))) (-1830 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-589 *5)) (-4 *5 (-1123)) (-4 *2 (-1123)) (-5 *1 (-587 *5 *2)))) (-1586 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-589 *6)) (-4 *6 (-1123)) (-4 *5 (-1123)) (-5 *2 (-589 *5)) (-5 *1 (-587 *6 *5)))))
-(-10 -7 (-15 -1586 ((-589 |#2|) (-1 |#2| |#1| |#2|) (-589 |#1|) |#2|)) (-15 -1830 (|#2| (-1 |#2| |#1| |#2|) (-589 |#1|) |#2|)) (-15 -3015 ((-589 |#2|) (-1 |#2| |#1|) (-589 |#1|))))
-((-3015 (((-589 |#3|) (-1 |#3| |#1| |#2|) (-589 |#1|) (-589 |#2|)) 13)))
-(((-588 |#1| |#2| |#3|) (-10 -7 (-15 -3015 ((-589 |#3|) (-1 |#3| |#1| |#2|) (-589 |#1|) (-589 |#2|)))) (-1123) (-1123) (-1123)) (T -588))
-((-3015 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-589 *6)) (-5 *5 (-589 *7)) (-4 *6 (-1123)) (-4 *7 (-1123)) (-4 *8 (-1123)) (-5 *2 (-589 *8)) (-5 *1 (-588 *6 *7 *8)))))
-(-10 -7 (-15 -3015 ((-589 |#3|) (-1 |#3| |#1| |#2|) (-589 |#1|) (-589 |#2|))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2058 ((|#1| $) NIL)) (-3972 ((|#1| $) NIL)) (-3548 (($ $) NIL)) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-3117 (($ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4159 (((-108) $) NIL (|has| |#1| (-786))) (((-108) (-1 (-108) |#1| |#1|) $) NIL)) (-2361 (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| |#1| (-786)))) (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3400 (($ $) NIL (|has| |#1| (-786))) (($ (-1 (-108) |#1| |#1|) $) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-3365 ((|#1| $ |#1|) NIL (|has| $ (-6 -4249)))) (-3546 (($ $ $) NIL (|has| $ (-6 -4249)))) (-2535 ((|#1| $ |#1|) NIL (|has| $ (-6 -4249)))) (-1957 ((|#1| $ |#1|) NIL (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4249))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4249))) (($ $ "rest" $) NIL (|has| $ (-6 -4249))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) NIL (|has| $ (-6 -4249))) ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) NIL (|has| $ (-6 -4249)))) (-3805 (($ $ $) 32 (|has| |#1| (-1016)))) (-3795 (($ $ $) 34 (|has| |#1| (-1016)))) (-3779 (($ $ $) 37 (|has| |#1| (-1016)))) (-3627 (($ (-1 (-108) |#1|) $) NIL)) (-1299 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-3962 ((|#1| $) NIL)) (-1640 (($) NIL T CONST)) (-4091 (($ $) NIL (|has| $ (-6 -4249)))) (-4082 (($ $) NIL)) (-3891 (($ $) NIL) (($ $ (-710)) NIL)) (-2543 (($ $) NIL (|has| |#1| (-1016)))) (-3917 (($ $) 31 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-1869 (($ |#1| $) NIL (|has| |#1| (-1016))) (($ (-1 (-108) |#1|) $) NIL)) (-2231 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3073 ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) NIL)) (-2527 (((-108) $) NIL)) (-1894 (((-523) |#1| $ (-523)) NIL (|has| |#1| (-1016))) (((-523) |#1| $) NIL (|has| |#1| (-1016))) (((-523) (-1 (-108) |#1|) $) NIL)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1401 (((-108) $) 9)) (-1378 (((-589 $) $) NIL)) (-3339 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2500 (($) 7)) (-2348 (($ (-710) |#1|) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) NIL (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-3325 (($ $ $) NIL (|has| |#1| (-786))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-3123 (($ $ $) NIL (|has| |#1| (-786))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 33 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3745 (($ |#1|) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-2112 (((-589 |#1|) $) NIL)) (-3391 (((-108) $) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2247 ((|#1| $) NIL) (($ $ (-710)) NIL)) (-3862 (($ $ $ (-523)) NIL) (($ |#1| $ (-523)) NIL)) (-3334 (($ $ $ (-523)) NIL) (($ |#1| $ (-523)) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-3879 ((|#1| $) NIL) (($ $ (-710)) NIL)) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2408 (($ $ |#1|) NIL (|has| $ (-6 -4249)))) (-3214 (((-108) $) NIL)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1136 (-523))) NIL) ((|#1| $ (-523)) 36) ((|#1| $ (-523) |#1|) NIL)) (-2981 (((-523) $ $) NIL)) (-1314 (($ $ (-1136 (-523))) NIL) (($ $ (-523)) NIL)) (-3725 (($ $ (-1136 (-523))) NIL) (($ $ (-523)) NIL)) (-2837 (((-108) $) NIL)) (-2238 (($ $) NIL)) (-4198 (($ $) NIL (|has| $ (-6 -4249)))) (-3647 (((-710) $) NIL)) (-2801 (($ $) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2580 (($ $ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) 45 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) NIL)) (-4019 (($ |#1| $) 10)) (-1622 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2785 (($ $ $) 30) (($ |#1| $) NIL) (($ (-589 $)) NIL) (($ $ |#1|) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) NIL)) (-4004 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1407 (($ $ $) 11)) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-3342 (((-1070) $) 26 (|has| |#1| (-767))) (((-1070) $ (-108)) 27 (|has| |#1| (-767))) (((-1174) (-761) $) 28 (|has| |#1| (-767))) (((-1174) (-761) $ (-108)) 29 (|has| |#1| (-767)))) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-589 |#1|) (-13 (-609 |#1|) (-10 -8 (-15 -2500 ($)) (-15 -1401 ((-108) $)) (-15 -4019 ($ |#1| $)) (-15 -1407 ($ $ $)) (IF (|has| |#1| (-1016)) (PROGN (-15 -3805 ($ $ $)) (-15 -3795 ($ $ $)) (-15 -3779 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-767)) (-6 (-767)) |%noBranch|))) (-1123)) (T -589))
-((-2500 (*1 *1) (-12 (-5 *1 (-589 *2)) (-4 *2 (-1123)))) (-1401 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-589 *3)) (-4 *3 (-1123)))) (-4019 (*1 *1 *2 *1) (-12 (-5 *1 (-589 *2)) (-4 *2 (-1123)))) (-1407 (*1 *1 *1 *1) (-12 (-5 *1 (-589 *2)) (-4 *2 (-1123)))) (-3805 (*1 *1 *1 *1) (-12 (-5 *1 (-589 *2)) (-4 *2 (-1016)) (-4 *2 (-1123)))) (-3795 (*1 *1 *1 *1) (-12 (-5 *1 (-589 *2)) (-4 *2 (-1016)) (-4 *2 (-1123)))) (-3779 (*1 *1 *1 *1) (-12 (-5 *1 (-589 *2)) (-4 *2 (-1016)) (-4 *2 (-1123)))))
-(-13 (-609 |#1|) (-10 -8 (-15 -2500 ($)) (-15 -1401 ((-108) $)) (-15 -4019 ($ |#1| $)) (-15 -1407 ($ $ $)) (IF (|has| |#1| (-1016)) (PROGN (-15 -3805 ($ $ $)) (-15 -3795 ($ $ $)) (-15 -3779 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-767)) (-6 (-767)) |%noBranch|)))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-3905 (($ |#1| |#1| $) 43)) (-2282 (((-108) $ (-710)) NIL)) (-3627 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-2543 (($ $) 45)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-1869 (($ |#1| $) 52 (|has| $ (-6 -4248))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4248)))) (-2231 (($ |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4248)))) (-3133 (((-589 |#1|) $) 9 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3063 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 37)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2349 ((|#1| $) 46)) (-3862 (($ |#1| $) 26) (($ |#1| $ (-710)) 42)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1322 ((|#1| $) 48)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) 21)) (-4055 (($) 25)) (-3404 (((-108) $) 50)) (-1207 (((-589 (-2 (|:| -2746 |#1|) (|:| -2452 (-710)))) $) 59)) (-1771 (($) 23) (($ (-589 |#1|)) 18)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) 56 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) 19)) (-3077 (((-499) $) 34 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) NIL)) (-3976 (((-794) $) 14 (|has| |#1| (-563 (-794))))) (-1245 (($ (-589 |#1|)) 22)) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 61 (|has| |#1| (-1016)))) (-1271 (((-710) $) 16 (|has| $ (-6 -4248)))))
-(((-590 |#1|) (-13 (-634 |#1|) (-10 -8 (-6 -4248) (-15 -3404 ((-108) $)) (-15 -3905 ($ |#1| |#1| $)))) (-1016)) (T -590))
-((-3404 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-590 *3)) (-4 *3 (-1016)))) (-3905 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-590 *2)) (-4 *2 (-1016)))))
-(-13 (-634 |#1|) (-10 -8 (-6 -4248) (-15 -3404 ((-108) $)) (-15 -3905 ($ |#1| |#1| $))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ |#1| $) 23)))
-(((-591 |#1|) (-129) (-980)) (T -591))
-((* (*1 *1 *2 *1) (-12 (-4 *1 (-591 *2)) (-4 *2 (-980)))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3024 ((|#1| $) NIL)) (-3161 ((|#1| $) NIL)) (-3970 (($ $) NIL)) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3463 (($ $ (-525)) 59 (|has| $ (-6 -4251)))) (-3203 (((-108) $) NIL (|has| |#1| (-788))) (((-108) (-1 (-108) |#1| |#1|) $) NIL)) (-4026 (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| |#1| (-788)))) (($ (-1 (-108) |#1| |#1|) $) 57 (|has| $ (-6 -4251)))) (-3327 (($ $) NIL (|has| |#1| (-788))) (($ (-1 (-108) |#1| |#1|) $) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-1780 ((|#1| $ |#1|) NIL (|has| $ (-6 -4251)))) (-2146 (($ $ $) 23 (|has| $ (-6 -4251)))) (-2640 ((|#1| $ |#1|) NIL (|has| $ (-6 -4251)))) (-1901 ((|#1| $ |#1|) 21 (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4251))) ((|#1| $ "first" |#1|) 22 (|has| $ (-6 -4251))) (($ $ "rest" $) 24 (|has| $ (-6 -4251))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) NIL (|has| $ (-6 -4251))) ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) NIL (|has| $ (-6 -4251)))) (-1797 (($ (-1 (-108) |#1|) $) NIL)) (-2305 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3149 ((|#1| $) NIL)) (-3798 (($) NIL T CONST)) (-2598 (($ $) 28 (|has| $ (-6 -4251)))) (-2617 (($ $) 29)) (-3078 (($ $) 18) (($ $ (-712)) 32)) (-3611 (($ $) 55 (|has| |#1| (-1018)))) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3901 (($ |#1| $) NIL (|has| |#1| (-1018))) (($ (-1 (-108) |#1|) $) NIL)) (-3677 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3255 ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) NIL)) (-3629 (((-108) $) NIL)) (-3004 (((-525) |#1| $ (-525)) NIL (|has| |#1| (-1018))) (((-525) |#1| $) NIL (|has| |#1| (-1018))) (((-525) (-1 (-108) |#1|) $) NIL)) (-3454 (((-591 |#1|) $) 27 (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) NIL)) (-2148 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-1268 (($ (-712) |#1|) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) 31 (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2921 (($ $ $) NIL (|has| |#1| (-788))) (($ (-1 (-108) |#1| |#1|) $ $) 58)) (-2131 (($ $ $) NIL (|has| |#1| (-788))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 53 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2932 (($ |#1|) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2599 (((-591 |#1|) $) NIL)) (-1203 (((-108) $) NIL)) (-2339 (((-1072) $) 51 (|has| |#1| (-1018)))) (-3708 ((|#1| $) NIL) (($ $ (-712)) NIL)) (-2470 (($ $ $ (-525)) NIL) (($ |#1| $ (-525)) NIL)) (-4189 (($ $ $ (-525)) NIL) (($ |#1| $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-3066 ((|#1| $) 13) (($ $ (-712)) NIL)) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1941 (($ $ |#1|) NIL (|has| $ (-6 -4251)))) (-3566 (((-108) $) NIL)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 12)) (-1615 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) NIL)) (-3028 (((-108) $) 17)) (-3209 (($) 16)) (-3164 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1138 (-525))) NIL) ((|#1| $ (-525)) NIL) ((|#1| $ (-525) |#1|) NIL)) (-3505 (((-525) $ $) NIL)) (-1790 (($ $ (-1138 (-525))) NIL) (($ $ (-525)) NIL)) (-2777 (($ $ (-1138 (-525))) NIL) (($ $ (-525)) NIL)) (-2237 (((-108) $) 34)) (-3820 (($ $) NIL)) (-2609 (($ $) NIL (|has| $ (-6 -4251)))) (-3641 (((-712) $) NIL)) (-1387 (($ $) 36)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4063 (($ $ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3199 (($ $) 35)) (-1408 (((-501) $) NIL (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 26)) (-1679 (($ $ $) 54) (($ $ |#1|) NIL)) (-3690 (($ $ $) NIL) (($ |#1| $) 10) (($ (-591 $)) NIL) (($ $ |#1|) NIL)) (-3022 (((-796) $) 46 (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) NIL)) (-1632 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) 48 (|has| |#1| (-1018)))) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4045 (((-712) $) 9 (|has| $ (-6 -4250)))))
+(((-491 |#1| |#2|) (-611 |#1|) (-1125) (-525)) (T -491))
+NIL
+(-611 |#1|)
+((-2753 ((|#4| |#4|) 27)) (-4073 (((-712) |#4|) 32)) (-2482 (((-712) |#4|) 33)) (-2634 (((-591 |#3|) |#4|) 40 (|has| |#3| (-6 -4251)))) (-1914 (((-3 |#4| "failed") |#4|) 51)) (-4193 ((|#4| |#4|) 44)) (-2238 ((|#1| |#4|) 43)))
+(((-492 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2753 (|#4| |#4|)) (-15 -4073 ((-712) |#4|)) (-15 -2482 ((-712) |#4|)) (IF (|has| |#3| (-6 -4251)) (-15 -2634 ((-591 |#3|) |#4|)) |%noBranch|) (-15 -2238 (|#1| |#4|)) (-15 -4193 (|#4| |#4|)) (-15 -1914 ((-3 |#4| "failed") |#4|))) (-341) (-351 |#1|) (-351 |#1|) (-629 |#1| |#2| |#3|)) (T -492))
+((-1914 (*1 *2 *2) (|partial| -12 (-4 *3 (-341)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *1 (-492 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))) (-4193 (*1 *2 *2) (-12 (-4 *3 (-341)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *1 (-492 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))) (-2238 (*1 *2 *3) (-12 (-4 *4 (-351 *2)) (-4 *5 (-351 *2)) (-4 *2 (-341)) (-5 *1 (-492 *2 *4 *5 *3)) (-4 *3 (-629 *2 *4 *5)))) (-2634 (*1 *2 *3) (-12 (|has| *6 (-6 -4251)) (-4 *4 (-341)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4)) (-5 *2 (-591 *6)) (-5 *1 (-492 *4 *5 *6 *3)) (-4 *3 (-629 *4 *5 *6)))) (-2482 (*1 *2 *3) (-12 (-4 *4 (-341)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4)) (-5 *2 (-712)) (-5 *1 (-492 *4 *5 *6 *3)) (-4 *3 (-629 *4 *5 *6)))) (-4073 (*1 *2 *3) (-12 (-4 *4 (-341)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4)) (-5 *2 (-712)) (-5 *1 (-492 *4 *5 *6 *3)) (-4 *3 (-629 *4 *5 *6)))) (-2753 (*1 *2 *2) (-12 (-4 *3 (-341)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *1 (-492 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))))
+(-10 -7 (-15 -2753 (|#4| |#4|)) (-15 -4073 ((-712) |#4|)) (-15 -2482 ((-712) |#4|)) (IF (|has| |#3| (-6 -4251)) (-15 -2634 ((-591 |#3|) |#4|)) |%noBranch|) (-15 -2238 (|#1| |#4|)) (-15 -4193 (|#4| |#4|)) (-15 -1914 ((-3 |#4| "failed") |#4|)))
+((-2753 ((|#8| |#4|) 20)) (-2634 (((-591 |#3|) |#4|) 29 (|has| |#7| (-6 -4251)))) (-1914 (((-3 |#8| "failed") |#4|) 23)))
+(((-493 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2753 (|#8| |#4|)) (-15 -1914 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4251)) (-15 -2634 ((-591 |#3|) |#4|)) |%noBranch|)) (-517) (-351 |#1|) (-351 |#1|) (-629 |#1| |#2| |#3|) (-923 |#1|) (-351 |#5|) (-351 |#5|) (-629 |#5| |#6| |#7|)) (T -493))
+((-2634 (*1 *2 *3) (-12 (|has| *9 (-6 -4251)) (-4 *4 (-517)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4)) (-4 *7 (-923 *4)) (-4 *8 (-351 *7)) (-4 *9 (-351 *7)) (-5 *2 (-591 *6)) (-5 *1 (-493 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-629 *4 *5 *6)) (-4 *10 (-629 *7 *8 *9)))) (-1914 (*1 *2 *3) (|partial| -12 (-4 *4 (-517)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4)) (-4 *7 (-923 *4)) (-4 *2 (-629 *7 *8 *9)) (-5 *1 (-493 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-629 *4 *5 *6)) (-4 *8 (-351 *7)) (-4 *9 (-351 *7)))) (-2753 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4)) (-4 *7 (-923 *4)) (-4 *2 (-629 *7 *8 *9)) (-5 *1 (-493 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-629 *4 *5 *6)) (-4 *8 (-351 *7)) (-4 *9 (-351 *7)))))
+(-10 -7 (-15 -2753 (|#8| |#4|)) (-15 -1914 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4251)) (-15 -2634 ((-591 |#3|) |#4|)) |%noBranch|))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-2168 (($ (-712) (-712)) NIL)) (-1753 (($ $ $) NIL)) (-1278 (($ (-556 |#1| |#3|)) NIL) (($ $) NIL)) (-1290 (((-108) $) NIL)) (-1364 (($ $ (-525) (-525)) 12)) (-2913 (($ $ (-525) (-525)) NIL)) (-3737 (($ $ (-525) (-525) (-525) (-525)) NIL)) (-2231 (($ $) NIL)) (-3079 (((-108) $) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-3768 (($ $ (-525) (-525) $) NIL)) (-3186 ((|#1| $ (-525) (-525) |#1|) NIL) (($ $ (-591 (-525)) (-591 (-525)) $) NIL)) (-2775 (($ $ (-525) (-556 |#1| |#3|)) NIL)) (-1743 (($ $ (-525) (-556 |#1| |#2|)) NIL)) (-1504 (($ (-712) |#1|) NIL)) (-3798 (($) NIL T CONST)) (-2753 (($ $) 21 (|has| |#1| (-286)))) (-3725 (((-556 |#1| |#3|) $ (-525)) NIL)) (-4073 (((-712) $) 24 (|has| |#1| (-517)))) (-3255 ((|#1| $ (-525) (-525) |#1|) NIL)) (-3217 ((|#1| $ (-525) (-525)) NIL)) (-3454 (((-591 |#1|) $) NIL)) (-2482 (((-712) $) 26 (|has| |#1| (-517)))) (-2634 (((-591 (-556 |#1| |#2|)) $) 29 (|has| |#1| (-517)))) (-2281 (((-712) $) NIL)) (-1268 (($ (-712) (-712) |#1|) NIL)) (-2296 (((-712) $) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-2807 ((|#1| $) 19 (|has| |#1| (-6 (-4252 "*"))))) (-1755 (((-525) $) 10)) (-1639 (((-525) $) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4230 (((-525) $) 11)) (-2631 (((-525) $) NIL)) (-3393 (($ (-591 (-591 |#1|))) NIL)) (-3249 (($ (-1 |#1| |#1|) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3349 (((-591 (-591 |#1|)) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-1914 (((-3 $ "failed") $) 33 (|has| |#1| (-341)))) (-2208 (($ $ $) NIL)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-1941 (($ $ |#1|) NIL)) (-2089 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#1| $ (-525) (-525)) NIL) ((|#1| $ (-525) (-525) |#1|) NIL) (($ $ (-591 (-525)) (-591 (-525))) NIL)) (-3487 (($ (-591 |#1|)) NIL) (($ (-591 $)) NIL)) (-2740 (((-108) $) NIL)) (-2238 ((|#1| $) 17 (|has| |#1| (-6 (-4252 "*"))))) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) NIL)) (-1793 (((-556 |#1| |#2|) $ (-525)) NIL)) (-3022 (($ (-556 |#1| |#2|)) NIL) (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3489 (((-108) $) NIL)) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341)))) (-4164 (($ $ $) NIL) (($ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-525) $) NIL) (((-556 |#1| |#2|) $ (-556 |#1| |#2|)) NIL) (((-556 |#1| |#3|) (-556 |#1| |#3|) $) NIL)) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-494 |#1| |#2| |#3|) (-629 |#1| (-556 |#1| |#3|) (-556 |#1| |#2|)) (-975) (-525) (-525)) (T -494))
+NIL
+(-629 |#1| (-556 |#1| |#3|) (-556 |#1| |#2|))
+((-1433 (((-1085 |#1|) (-712)) 76)) (-2569 (((-1171 |#1|) (-1171 |#1|) (-854)) 69)) (-4172 (((-1176) (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))) |#1|) 84)) (-2956 (((-1171 |#1|) (-1171 |#1|) (-712)) 36)) (-3377 (((-1171 |#1|) (-854)) 71)) (-4084 (((-1171 |#1|) (-1171 |#1|) (-525)) 24)) (-1357 (((-1085 |#1|) (-1171 |#1|)) 77)) (-4046 (((-1171 |#1|) (-854)) 95)) (-1751 (((-108) (-1171 |#1|)) 80)) (-2771 (((-1171 |#1|) (-1171 |#1|) (-854)) 62)) (-1382 (((-1085 |#1|) (-1171 |#1|)) 89)) (-3016 (((-854) (-1171 |#1|)) 59)) (-1622 (((-1171 |#1|) (-1171 |#1|)) 30)) (-2226 (((-1171 |#1|) (-854) (-854)) 97)) (-3399 (((-1171 |#1|) (-1171 |#1|) (-1036) (-1036)) 23)) (-3905 (((-1171 |#1|) (-1171 |#1|) (-712) (-1036)) 37)) (-4003 (((-1171 (-1171 |#1|)) (-854)) 94)) (-4173 (((-1171 |#1|) (-1171 |#1|) (-1171 |#1|)) 81)) (** (((-1171 |#1|) (-1171 |#1|) (-525)) 45)) (* (((-1171 |#1|) (-1171 |#1|) (-1171 |#1|)) 25)))
+(((-495 |#1|) (-10 -7 (-15 -4172 ((-1176) (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))) |#1|)) (-15 -3377 ((-1171 |#1|) (-854))) (-15 -2226 ((-1171 |#1|) (-854) (-854))) (-15 -1357 ((-1085 |#1|) (-1171 |#1|))) (-15 -1433 ((-1085 |#1|) (-712))) (-15 -3905 ((-1171 |#1|) (-1171 |#1|) (-712) (-1036))) (-15 -2956 ((-1171 |#1|) (-1171 |#1|) (-712))) (-15 -3399 ((-1171 |#1|) (-1171 |#1|) (-1036) (-1036))) (-15 -4084 ((-1171 |#1|) (-1171 |#1|) (-525))) (-15 ** ((-1171 |#1|) (-1171 |#1|) (-525))) (-15 * ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -4173 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -2771 ((-1171 |#1|) (-1171 |#1|) (-854))) (-15 -2569 ((-1171 |#1|) (-1171 |#1|) (-854))) (-15 -1622 ((-1171 |#1|) (-1171 |#1|))) (-15 -3016 ((-854) (-1171 |#1|))) (-15 -1751 ((-108) (-1171 |#1|))) (-15 -4003 ((-1171 (-1171 |#1|)) (-854))) (-15 -4046 ((-1171 |#1|) (-854))) (-15 -1382 ((-1085 |#1|) (-1171 |#1|)))) (-327)) (T -495))
+((-1382 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-327)) (-5 *2 (-1085 *4)) (-5 *1 (-495 *4)))) (-4046 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1171 *4)) (-5 *1 (-495 *4)) (-4 *4 (-327)))) (-4003 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1171 (-1171 *4))) (-5 *1 (-495 *4)) (-4 *4 (-327)))) (-1751 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-327)) (-5 *2 (-108)) (-5 *1 (-495 *4)))) (-3016 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-327)) (-5 *2 (-854)) (-5 *1 (-495 *4)))) (-1622 (*1 *2 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-327)) (-5 *1 (-495 *3)))) (-2569 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 *4)) (-5 *3 (-854)) (-4 *4 (-327)) (-5 *1 (-495 *4)))) (-2771 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 *4)) (-5 *3 (-854)) (-4 *4 (-327)) (-5 *1 (-495 *4)))) (-4173 (*1 *2 *2 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-327)) (-5 *1 (-495 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-327)) (-5 *1 (-495 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1171 *4)) (-5 *3 (-525)) (-4 *4 (-327)) (-5 *1 (-495 *4)))) (-4084 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 *4)) (-5 *3 (-525)) (-4 *4 (-327)) (-5 *1 (-495 *4)))) (-3399 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1171 *4)) (-5 *3 (-1036)) (-4 *4 (-327)) (-5 *1 (-495 *4)))) (-2956 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 *4)) (-5 *3 (-712)) (-4 *4 (-327)) (-5 *1 (-495 *4)))) (-3905 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1171 *5)) (-5 *3 (-712)) (-5 *4 (-1036)) (-4 *5 (-327)) (-5 *1 (-495 *5)))) (-1433 (*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1085 *4)) (-5 *1 (-495 *4)) (-4 *4 (-327)))) (-1357 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-327)) (-5 *2 (-1085 *4)) (-5 *1 (-495 *4)))) (-2226 (*1 *2 *3 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1171 *4)) (-5 *1 (-495 *4)) (-4 *4 (-327)))) (-3377 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1171 *4)) (-5 *1 (-495 *4)) (-4 *4 (-327)))) (-4172 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 (-591 (-2 (|:| -3024 *4) (|:| -2226 (-1036)))))) (-4 *4 (-327)) (-5 *2 (-1176)) (-5 *1 (-495 *4)))))
+(-10 -7 (-15 -4172 ((-1176) (-1171 (-591 (-2 (|:| -3024 |#1|) (|:| -2226 (-1036))))) |#1|)) (-15 -3377 ((-1171 |#1|) (-854))) (-15 -2226 ((-1171 |#1|) (-854) (-854))) (-15 -1357 ((-1085 |#1|) (-1171 |#1|))) (-15 -1433 ((-1085 |#1|) (-712))) (-15 -3905 ((-1171 |#1|) (-1171 |#1|) (-712) (-1036))) (-15 -2956 ((-1171 |#1|) (-1171 |#1|) (-712))) (-15 -3399 ((-1171 |#1|) (-1171 |#1|) (-1036) (-1036))) (-15 -4084 ((-1171 |#1|) (-1171 |#1|) (-525))) (-15 ** ((-1171 |#1|) (-1171 |#1|) (-525))) (-15 * ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -4173 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -2771 ((-1171 |#1|) (-1171 |#1|) (-854))) (-15 -2569 ((-1171 |#1|) (-1171 |#1|) (-854))) (-15 -1622 ((-1171 |#1|) (-1171 |#1|))) (-15 -3016 ((-854) (-1171 |#1|))) (-15 -1751 ((-108) (-1171 |#1|))) (-15 -4003 ((-1171 (-1171 |#1|)) (-854))) (-15 -4046 ((-1171 |#1|) (-854))) (-15 -1382 ((-1085 |#1|) (-1171 |#1|))))
+((-4086 (((-1 |#1| |#1|) |#1|) 11)) (-2864 (((-1 |#1| |#1|)) 10)))
+(((-496 |#1|) (-10 -7 (-15 -2864 ((-1 |#1| |#1|))) (-15 -4086 ((-1 |#1| |#1|) |#1|))) (-13 (-668) (-25))) (T -496))
+((-4086 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-496 *3)) (-4 *3 (-13 (-668) (-25))))) (-2864 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-496 *3)) (-4 *3 (-13 (-668) (-25))))))
+(-10 -7 (-15 -2864 ((-1 |#1| |#1|))) (-15 -4086 ((-1 |#1| |#1|) |#1|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2593 (($ $ $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1710 (($ $) NIL)) (-1480 (($ (-712) |#1|) NIL)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-1340 (($ (-1 (-712) (-712)) $) NIL)) (-2863 ((|#1| $) NIL)) (-1678 (((-712) $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 20)) (-4191 (($) NIL T CONST)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) NIL)) (-4156 (($ $ $) NIL)) (* (($ (-712) $) NIL) (($ (-854) $) NIL)))
+(((-497 |#1|) (-13 (-734) (-481 (-712) |#1|)) (-788)) (T -497))
+NIL
+(-13 (-734) (-481 (-712) |#1|))
+((-4146 (((-591 |#2|) (-1085 |#1|) |#3|) 83)) (-2517 (((-591 (-2 (|:| |outval| |#2|) (|:| |outmult| (-525)) (|:| |outvect| (-591 (-631 |#2|))))) (-631 |#1|) |#3| (-1 (-396 (-1085 |#1|)) (-1085 |#1|))) 100)) (-1984 (((-1085 |#1|) (-631 |#1|)) 95)))
+(((-498 |#1| |#2| |#3|) (-10 -7 (-15 -1984 ((-1085 |#1|) (-631 |#1|))) (-15 -4146 ((-591 |#2|) (-1085 |#1|) |#3|)) (-15 -2517 ((-591 (-2 (|:| |outval| |#2|) (|:| |outmult| (-525)) (|:| |outvect| (-591 (-631 |#2|))))) (-631 |#1|) |#3| (-1 (-396 (-1085 |#1|)) (-1085 |#1|))))) (-341) (-341) (-13 (-341) (-786))) (T -498))
+((-2517 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-631 *6)) (-5 *5 (-1 (-396 (-1085 *6)) (-1085 *6))) (-4 *6 (-341)) (-5 *2 (-591 (-2 (|:| |outval| *7) (|:| |outmult| (-525)) (|:| |outvect| (-591 (-631 *7)))))) (-5 *1 (-498 *6 *7 *4)) (-4 *7 (-341)) (-4 *4 (-13 (-341) (-786))))) (-4146 (*1 *2 *3 *4) (-12 (-5 *3 (-1085 *5)) (-4 *5 (-341)) (-5 *2 (-591 *6)) (-5 *1 (-498 *5 *6 *4)) (-4 *6 (-341)) (-4 *4 (-13 (-341) (-786))))) (-1984 (*1 *2 *3) (-12 (-5 *3 (-631 *4)) (-4 *4 (-341)) (-5 *2 (-1085 *4)) (-5 *1 (-498 *4 *5 *6)) (-4 *5 (-341)) (-4 *6 (-13 (-341) (-786))))))
+(-10 -7 (-15 -1984 ((-1085 |#1|) (-631 |#1|))) (-15 -4146 ((-591 |#2|) (-1085 |#1|) |#3|)) (-15 -2517 ((-591 (-2 (|:| |outval| |#2|) (|:| |outmult| (-525)) (|:| |outvect| (-591 (-631 |#2|))))) (-631 |#1|) |#3| (-1 (-396 (-1085 |#1|)) (-1085 |#1|)))))
+((-3207 (((-781 (-525))) 12)) (-3213 (((-781 (-525))) 14)) (-1799 (((-774 (-525))) 9)))
+(((-499) (-10 -7 (-15 -1799 ((-774 (-525)))) (-15 -3207 ((-781 (-525)))) (-15 -3213 ((-781 (-525)))))) (T -499))
+((-3213 (*1 *2) (-12 (-5 *2 (-781 (-525))) (-5 *1 (-499)))) (-3207 (*1 *2) (-12 (-5 *2 (-781 (-525))) (-5 *1 (-499)))) (-1799 (*1 *2) (-12 (-5 *2 (-774 (-525))) (-5 *1 (-499)))))
+(-10 -7 (-15 -1799 ((-774 (-525)))) (-15 -3207 ((-781 (-525)))) (-15 -3213 ((-781 (-525)))))
+((-3743 (((-501) (-1089)) 15)) (-4183 ((|#1| (-501)) 20)))
+(((-500 |#1|) (-10 -7 (-15 -3743 ((-501) (-1089))) (-15 -4183 (|#1| (-501)))) (-1125)) (T -500))
+((-4183 (*1 *2 *3) (-12 (-5 *3 (-501)) (-5 *1 (-500 *2)) (-4 *2 (-1125)))) (-3743 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-501)) (-5 *1 (-500 *4)) (-4 *4 (-1125)))))
+(-10 -7 (-15 -3743 ((-501) (-1089))) (-15 -4183 (|#1| (-501))))
+((-3008 (((-108) $ $) NIL)) (-2987 (((-1072) $) 46)) (-1896 (((-108) $) 43)) (-1599 (((-1089) $) 44)) (-1721 (((-108) $) 41)) (-1432 (((-1072) $) 42)) (-1261 (((-108) $) NIL)) (-2754 (((-108) $) NIL)) (-3738 (((-108) $) NIL)) (-2339 (((-1072) $) NIL)) (-2690 (($ $ (-591 (-1089))) 20)) (-4183 (((-51) $) 22)) (-2666 (((-108) $) NIL)) (-1624 (((-525) $) NIL)) (-2047 (((-1036) $) NIL)) (-1245 (($ $ (-591 (-1089)) (-1089)) 58)) (-1663 (((-108) $) NIL)) (-2286 (((-205) $) NIL)) (-2090 (($ $) 38)) (-2002 (((-796) $) NIL)) (-1317 (((-108) $ $) NIL)) (-3164 (($ $ (-525)) NIL) (($ $ (-591 (-525))) NIL)) (-1434 (((-591 $) $) 28)) (-1206 (((-1089) (-591 $)) 47)) (-1408 (($ (-591 $)) 51) (($ (-1072)) NIL) (($ (-1089)) 18) (($ (-525)) 8) (($ (-205)) 25) (($ (-796)) NIL) (((-1022) $) 11) (($ (-1022)) 12)) (-2236 (((-1089) (-1089) (-591 $)) 50)) (-3022 (((-796) $) NIL)) (-2957 (($ $) 49)) (-2943 (($ $) 48)) (-2344 (($ $ (-591 $)) 55)) (-3880 (((-108) $) 27)) (-4191 (($) 9 T CONST)) (-4197 (($) 10 T CONST)) (-4096 (((-108) $ $) 59)) (-4173 (($ $ $) 64)) (-4156 (($ $ $) 60)) (** (($ $ (-712)) 63) (($ $ (-525)) 62)) (* (($ $ $) 61)) (-4045 (((-525) $) NIL)))
+(((-501) (-13 (-1021 (-1072) (-1089) (-525) (-205) (-796)) (-566 (-1022)) (-10 -8 (-15 -4183 ((-51) $)) (-15 -1408 ($ (-1022))) (-15 -2344 ($ $ (-591 $))) (-15 -1245 ($ $ (-591 (-1089)) (-1089))) (-15 -2690 ($ $ (-591 (-1089)))) (-15 -4156 ($ $ $)) (-15 * ($ $ $)) (-15 -4173 ($ $ $)) (-15 ** ($ $ (-712))) (-15 ** ($ $ (-525))) (-15 0 ($) -2058) (-15 1 ($) -2058) (-15 -2090 ($ $)) (-15 -2987 ((-1072) $)) (-15 -1206 ((-1089) (-591 $))) (-15 -2236 ((-1089) (-1089) (-591 $)))))) (T -501))
+((-4183 (*1 *2 *1) (-12 (-5 *2 (-51)) (-5 *1 (-501)))) (-1408 (*1 *1 *2) (-12 (-5 *2 (-1022)) (-5 *1 (-501)))) (-2344 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-501))) (-5 *1 (-501)))) (-1245 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 (-1089))) (-5 *3 (-1089)) (-5 *1 (-501)))) (-2690 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-501)))) (-4156 (*1 *1 *1 *1) (-5 *1 (-501))) (* (*1 *1 *1 *1) (-5 *1 (-501))) (-4173 (*1 *1 *1 *1) (-5 *1 (-501))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-501)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-501)))) (-4191 (*1 *1) (-5 *1 (-501))) (-4197 (*1 *1) (-5 *1 (-501))) (-2090 (*1 *1 *1) (-5 *1 (-501))) (-2987 (*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-501)))) (-1206 (*1 *2 *3) (-12 (-5 *3 (-591 (-501))) (-5 *2 (-1089)) (-5 *1 (-501)))) (-2236 (*1 *2 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-501))) (-5 *1 (-501)))))
+(-13 (-1021 (-1072) (-1089) (-525) (-205) (-796)) (-566 (-1022)) (-10 -8 (-15 -4183 ((-51) $)) (-15 -1408 ($ (-1022))) (-15 -2344 ($ $ (-591 $))) (-15 -1245 ($ $ (-591 (-1089)) (-1089))) (-15 -2690 ($ $ (-591 (-1089)))) (-15 -4156 ($ $ $)) (-15 * ($ $ $)) (-15 -4173 ($ $ $)) (-15 ** ($ $ (-712))) (-15 ** ($ $ (-525))) (-15 (-4191) ($) -2058) (-15 (-4197) ($) -2058) (-15 -2090 ($ $)) (-15 -2987 ((-1072) $)) (-15 -1206 ((-1089) (-591 $))) (-15 -2236 ((-1089) (-1089) (-591 $)))))
+((-2604 ((|#2| |#2|) 17)) (-3617 ((|#2| |#2|) 13)) (-2602 ((|#2| |#2| (-525) (-525)) 20)) (-1441 ((|#2| |#2|) 15)))
+(((-502 |#1| |#2|) (-10 -7 (-15 -3617 (|#2| |#2|)) (-15 -1441 (|#2| |#2|)) (-15 -2604 (|#2| |#2|)) (-15 -2602 (|#2| |#2| (-525) (-525)))) (-13 (-517) (-138)) (-1162 |#1|)) (T -502))
+((-2602 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-525)) (-4 *4 (-13 (-517) (-138))) (-5 *1 (-502 *4 *2)) (-4 *2 (-1162 *4)))) (-2604 (*1 *2 *2) (-12 (-4 *3 (-13 (-517) (-138))) (-5 *1 (-502 *3 *2)) (-4 *2 (-1162 *3)))) (-1441 (*1 *2 *2) (-12 (-4 *3 (-13 (-517) (-138))) (-5 *1 (-502 *3 *2)) (-4 *2 (-1162 *3)))) (-3617 (*1 *2 *2) (-12 (-4 *3 (-13 (-517) (-138))) (-5 *1 (-502 *3 *2)) (-4 *2 (-1162 *3)))))
+(-10 -7 (-15 -3617 (|#2| |#2|)) (-15 -1441 (|#2| |#2|)) (-15 -2604 (|#2| |#2|)) (-15 -2602 (|#2| |#2| (-525) (-525))))
+((-2594 (((-591 (-273 (-885 |#2|))) (-591 |#2|) (-591 (-1089))) 32)) (-1990 (((-591 |#2|) (-885 |#1|) |#3|) 53) (((-591 |#2|) (-1085 |#1|) |#3|) 52)) (-3191 (((-591 (-591 |#2|)) (-591 (-885 |#1|)) (-591 (-885 |#1|)) (-591 (-1089)) |#3|) 88)))
+(((-503 |#1| |#2| |#3|) (-10 -7 (-15 -1990 ((-591 |#2|) (-1085 |#1|) |#3|)) (-15 -1990 ((-591 |#2|) (-885 |#1|) |#3|)) (-15 -3191 ((-591 (-591 |#2|)) (-591 (-885 |#1|)) (-591 (-885 |#1|)) (-591 (-1089)) |#3|)) (-15 -2594 ((-591 (-273 (-885 |#2|))) (-591 |#2|) (-591 (-1089))))) (-429) (-341) (-13 (-341) (-786))) (T -503))
+((-2594 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *6)) (-5 *4 (-591 (-1089))) (-4 *6 (-341)) (-5 *2 (-591 (-273 (-885 *6)))) (-5 *1 (-503 *5 *6 *7)) (-4 *5 (-429)) (-4 *7 (-13 (-341) (-786))))) (-3191 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-591 (-885 *6))) (-5 *4 (-591 (-1089))) (-4 *6 (-429)) (-5 *2 (-591 (-591 *7))) (-5 *1 (-503 *6 *7 *5)) (-4 *7 (-341)) (-4 *5 (-13 (-341) (-786))))) (-1990 (*1 *2 *3 *4) (-12 (-5 *3 (-885 *5)) (-4 *5 (-429)) (-5 *2 (-591 *6)) (-5 *1 (-503 *5 *6 *4)) (-4 *6 (-341)) (-4 *4 (-13 (-341) (-786))))) (-1990 (*1 *2 *3 *4) (-12 (-5 *3 (-1085 *5)) (-4 *5 (-429)) (-5 *2 (-591 *6)) (-5 *1 (-503 *5 *6 *4)) (-4 *6 (-341)) (-4 *4 (-13 (-341) (-786))))))
+(-10 -7 (-15 -1990 ((-591 |#2|) (-1085 |#1|) |#3|)) (-15 -1990 ((-591 |#2|) (-885 |#1|) |#3|)) (-15 -3191 ((-591 (-591 |#2|)) (-591 (-885 |#1|)) (-591 (-885 |#1|)) (-591 (-1089)) |#3|)) (-15 -2594 ((-591 (-273 (-885 |#2|))) (-591 |#2|) (-591 (-1089)))))
+((-3077 ((|#2| |#2| |#1|) 17)) (-1675 ((|#2| (-591 |#2|)) 27)) (-1814 ((|#2| (-591 |#2|)) 46)))
+(((-504 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1675 (|#2| (-591 |#2|))) (-15 -1814 (|#2| (-591 |#2|))) (-15 -3077 (|#2| |#2| |#1|))) (-286) (-1147 |#1|) |#1| (-1 |#1| |#1| (-712))) (T -504))
+((-3077 (*1 *2 *2 *3) (-12 (-4 *3 (-286)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-712))) (-5 *1 (-504 *3 *2 *4 *5)) (-4 *2 (-1147 *3)))) (-1814 (*1 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-1147 *4)) (-5 *1 (-504 *4 *2 *5 *6)) (-4 *4 (-286)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-712))))) (-1675 (*1 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-1147 *4)) (-5 *1 (-504 *4 *2 *5 *6)) (-4 *4 (-286)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-712))))))
+(-10 -7 (-15 -1675 (|#2| (-591 |#2|))) (-15 -1814 (|#2| (-591 |#2|))) (-15 -3077 (|#2| |#2| |#1|)))
+((-1348 (((-396 (-1085 |#4|)) (-1085 |#4|) (-1 (-396 (-1085 |#3|)) (-1085 |#3|))) 79) (((-396 |#4|) |#4| (-1 (-396 (-1085 |#3|)) (-1085 |#3|))) 169)))
+(((-505 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1348 ((-396 |#4|) |#4| (-1 (-396 (-1085 |#3|)) (-1085 |#3|)))) (-15 -1348 ((-396 (-1085 |#4|)) (-1085 |#4|) (-1 (-396 (-1085 |#3|)) (-1085 |#3|))))) (-788) (-734) (-13 (-286) (-138)) (-882 |#3| |#2| |#1|)) (T -505))
+((-1348 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-396 (-1085 *7)) (-1085 *7))) (-4 *7 (-13 (-286) (-138))) (-4 *5 (-788)) (-4 *6 (-734)) (-4 *8 (-882 *7 *6 *5)) (-5 *2 (-396 (-1085 *8))) (-5 *1 (-505 *5 *6 *7 *8)) (-5 *3 (-1085 *8)))) (-1348 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-396 (-1085 *7)) (-1085 *7))) (-4 *7 (-13 (-286) (-138))) (-4 *5 (-788)) (-4 *6 (-734)) (-5 *2 (-396 *3)) (-5 *1 (-505 *5 *6 *7 *3)) (-4 *3 (-882 *7 *6 *5)))))
+(-10 -7 (-15 -1348 ((-396 |#4|) |#4| (-1 (-396 (-1085 |#3|)) (-1085 |#3|)))) (-15 -1348 ((-396 (-1085 |#4|)) (-1085 |#4|) (-1 (-396 (-1085 |#3|)) (-1085 |#3|)))))
+((-2604 ((|#4| |#4|) 74)) (-3617 ((|#4| |#4|) 70)) (-2602 ((|#4| |#4| (-525) (-525)) 76)) (-1441 ((|#4| |#4|) 72)))
+(((-506 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3617 (|#4| |#4|)) (-15 -1441 (|#4| |#4|)) (-15 -2604 (|#4| |#4|)) (-15 -2602 (|#4| |#4| (-525) (-525)))) (-13 (-341) (-346) (-566 (-525))) (-1147 |#1|) (-666 |#1| |#2|) (-1162 |#3|)) (T -506))
+((-2602 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-525)) (-4 *4 (-13 (-341) (-346) (-566 *3))) (-4 *5 (-1147 *4)) (-4 *6 (-666 *4 *5)) (-5 *1 (-506 *4 *5 *6 *2)) (-4 *2 (-1162 *6)))) (-2604 (*1 *2 *2) (-12 (-4 *3 (-13 (-341) (-346) (-566 (-525)))) (-4 *4 (-1147 *3)) (-4 *5 (-666 *3 *4)) (-5 *1 (-506 *3 *4 *5 *2)) (-4 *2 (-1162 *5)))) (-1441 (*1 *2 *2) (-12 (-4 *3 (-13 (-341) (-346) (-566 (-525)))) (-4 *4 (-1147 *3)) (-4 *5 (-666 *3 *4)) (-5 *1 (-506 *3 *4 *5 *2)) (-4 *2 (-1162 *5)))) (-3617 (*1 *2 *2) (-12 (-4 *3 (-13 (-341) (-346) (-566 (-525)))) (-4 *4 (-1147 *3)) (-4 *5 (-666 *3 *4)) (-5 *1 (-506 *3 *4 *5 *2)) (-4 *2 (-1162 *5)))))
+(-10 -7 (-15 -3617 (|#4| |#4|)) (-15 -1441 (|#4| |#4|)) (-15 -2604 (|#4| |#4|)) (-15 -2602 (|#4| |#4| (-525) (-525))))
+((-2604 ((|#2| |#2|) 27)) (-3617 ((|#2| |#2|) 23)) (-2602 ((|#2| |#2| (-525) (-525)) 29)) (-1441 ((|#2| |#2|) 25)))
+(((-507 |#1| |#2|) (-10 -7 (-15 -3617 (|#2| |#2|)) (-15 -1441 (|#2| |#2|)) (-15 -2604 (|#2| |#2|)) (-15 -2602 (|#2| |#2| (-525) (-525)))) (-13 (-341) (-346) (-566 (-525))) (-1162 |#1|)) (T -507))
+((-2602 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-525)) (-4 *4 (-13 (-341) (-346) (-566 *3))) (-5 *1 (-507 *4 *2)) (-4 *2 (-1162 *4)))) (-2604 (*1 *2 *2) (-12 (-4 *3 (-13 (-341) (-346) (-566 (-525)))) (-5 *1 (-507 *3 *2)) (-4 *2 (-1162 *3)))) (-1441 (*1 *2 *2) (-12 (-4 *3 (-13 (-341) (-346) (-566 (-525)))) (-5 *1 (-507 *3 *2)) (-4 *2 (-1162 *3)))) (-3617 (*1 *2 *2) (-12 (-4 *3 (-13 (-341) (-346) (-566 (-525)))) (-5 *1 (-507 *3 *2)) (-4 *2 (-1162 *3)))))
+(-10 -7 (-15 -3617 (|#2| |#2|)) (-15 -1441 (|#2| |#2|)) (-15 -2604 (|#2| |#2|)) (-15 -2602 (|#2| |#2| (-525) (-525))))
+((-1313 (((-3 (-525) "failed") |#2| |#1| (-1 (-3 (-525) "failed") |#1|)) 14) (((-3 (-525) "failed") |#2| |#1| (-525) (-1 (-3 (-525) "failed") |#1|)) 13) (((-3 (-525) "failed") |#2| (-525) (-1 (-3 (-525) "failed") |#1|)) 26)))
+(((-508 |#1| |#2|) (-10 -7 (-15 -1313 ((-3 (-525) "failed") |#2| (-525) (-1 (-3 (-525) "failed") |#1|))) (-15 -1313 ((-3 (-525) "failed") |#2| |#1| (-525) (-1 (-3 (-525) "failed") |#1|))) (-15 -1313 ((-3 (-525) "failed") |#2| |#1| (-1 (-3 (-525) "failed") |#1|)))) (-975) (-1147 |#1|)) (T -508))
+((-1313 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-525) "failed") *4)) (-4 *4 (-975)) (-5 *2 (-525)) (-5 *1 (-508 *4 *3)) (-4 *3 (-1147 *4)))) (-1313 (*1 *2 *3 *4 *2 *5) (|partial| -12 (-5 *5 (-1 (-3 (-525) "failed") *4)) (-4 *4 (-975)) (-5 *2 (-525)) (-5 *1 (-508 *4 *3)) (-4 *3 (-1147 *4)))) (-1313 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *4 (-1 (-3 (-525) "failed") *5)) (-4 *5 (-975)) (-5 *2 (-525)) (-5 *1 (-508 *5 *3)) (-4 *3 (-1147 *5)))))
+(-10 -7 (-15 -1313 ((-3 (-525) "failed") |#2| (-525) (-1 (-3 (-525) "failed") |#1|))) (-15 -1313 ((-3 (-525) "failed") |#2| |#1| (-525) (-1 (-3 (-525) "failed") |#1|))) (-15 -1313 ((-3 (-525) "failed") |#2| |#1| (-1 (-3 (-525) "failed") |#1|))))
+((-3391 (($ $ $) 79)) (-2827 (((-396 $) $) 47)) (-1251 (((-3 (-525) "failed") $) 59)) (-3528 (((-525) $) 37)) (-1511 (((-3 (-385 (-525)) "failed") $) 74)) (-1352 (((-108) $) 24)) (-1726 (((-385 (-525)) $) 72)) (-2744 (((-108) $) 50)) (-2467 (($ $ $ $) 86)) (-2134 (((-108) $) 16)) (-1994 (($ $ $) 57)) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 69)) (-2085 (((-3 $ "failed") $) 64)) (-3291 (($ $) 23)) (-2885 (($ $ $) 84)) (-3506 (($) 60)) (-1603 (($ $) 53)) (-1348 (((-396 $) $) 45)) (-3451 (((-108) $) 14)) (-1712 (((-712) $) 28)) (-3266 (($ $ (-712)) NIL) (($ $) 10)) (-3199 (($ $) 17)) (-1408 (((-525) $) NIL) (((-501) $) 36) (((-825 (-525)) $) 40) (((-357) $) 31) (((-205) $) 33)) (-2128 (((-712)) 8)) (-1932 (((-108) $ $) 20)) (-2516 (($ $ $) 55)))
+(((-509 |#1|) (-10 -8 (-15 -2885 (|#1| |#1| |#1|)) (-15 -2467 (|#1| |#1| |#1| |#1|)) (-15 -3291 (|#1| |#1|)) (-15 -3199 (|#1| |#1|)) (-15 -1511 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -1726 ((-385 (-525)) |#1|)) (-15 -1352 ((-108) |#1|)) (-15 -3391 (|#1| |#1| |#1|)) (-15 -1932 ((-108) |#1| |#1|)) (-15 -3451 ((-108) |#1|)) (-15 -3506 (|#1|)) (-15 -2085 ((-3 |#1| "failed") |#1|)) (-15 -1408 ((-205) |#1|)) (-15 -1408 ((-357) |#1|)) (-15 -1994 (|#1| |#1| |#1|)) (-15 -1603 (|#1| |#1|)) (-15 -2516 (|#1| |#1| |#1|)) (-15 -2011 ((-822 (-525) |#1|) |#1| (-825 (-525)) (-822 (-525) |#1|))) (-15 -1408 ((-825 (-525)) |#1|)) (-15 -1408 ((-501) |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -1408 ((-525) |#1|)) (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -2134 ((-108) |#1|)) (-15 -1712 ((-712) |#1|)) (-15 -1348 ((-396 |#1|) |#1|)) (-15 -2827 ((-396 |#1|) |#1|)) (-15 -2744 ((-108) |#1|)) (-15 -2128 ((-712)))) (-510)) (T -509))
+((-2128 (*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-509 *3)) (-4 *3 (-510)))))
+(-10 -8 (-15 -2885 (|#1| |#1| |#1|)) (-15 -2467 (|#1| |#1| |#1| |#1|)) (-15 -3291 (|#1| |#1|)) (-15 -3199 (|#1| |#1|)) (-15 -1511 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -1726 ((-385 (-525)) |#1|)) (-15 -1352 ((-108) |#1|)) (-15 -3391 (|#1| |#1| |#1|)) (-15 -1932 ((-108) |#1| |#1|)) (-15 -3451 ((-108) |#1|)) (-15 -3506 (|#1|)) (-15 -2085 ((-3 |#1| "failed") |#1|)) (-15 -1408 ((-205) |#1|)) (-15 -1408 ((-357) |#1|)) (-15 -1994 (|#1| |#1| |#1|)) (-15 -1603 (|#1| |#1|)) (-15 -2516 (|#1| |#1| |#1|)) (-15 -2011 ((-822 (-525) |#1|) |#1| (-825 (-525)) (-822 (-525) |#1|))) (-15 -1408 ((-825 (-525)) |#1|)) (-15 -1408 ((-501) |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -1408 ((-525) |#1|)) (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -2134 ((-108) |#1|)) (-15 -1712 ((-712) |#1|)) (-15 -1348 ((-396 |#1|) |#1|)) (-15 -2827 ((-396 |#1|) |#1|)) (-15 -2744 ((-108) |#1|)) (-15 -2128 ((-712))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-3391 (($ $ $) 85)) (-2157 (((-3 $ "failed") $ $) 19)) (-1737 (($ $ $ $) 73)) (-1291 (($ $) 51)) (-2827 (((-396 $) $) 52)) (-1947 (((-108) $ $) 125)) (-3329 (((-525) $) 114)) (-3427 (($ $ $) 88)) (-3798 (($) 17 T CONST)) (-1251 (((-3 (-525) "failed") $) 106)) (-3528 (((-525) $) 105)) (-2129 (($ $ $) 129)) (-3305 (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 104) (((-631 (-525)) (-631 $)) 103)) (-4163 (((-3 $ "failed") $) 34)) (-1511 (((-3 (-385 (-525)) "failed") $) 82)) (-1352 (((-108) $) 84)) (-1726 (((-385 (-525)) $) 83)) (-3377 (($) 81) (($ $) 80)) (-2110 (($ $ $) 128)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 123)) (-2744 (((-108) $) 53)) (-2467 (($ $ $ $) 71)) (-3046 (($ $ $) 86)) (-2134 (((-108) $) 116)) (-1994 (($ $ $) 97)) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 100)) (-2824 (((-108) $) 31)) (-2419 (((-108) $) 92)) (-2085 (((-3 $ "failed") $) 94)) (-2732 (((-108) $) 115)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 132)) (-3989 (($ $ $ $) 72)) (-3741 (($ $ $) 117)) (-2478 (($ $ $) 118)) (-3291 (($ $) 75)) (-1657 (($ $) 89)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-2885 (($ $ $) 70)) (-3506 (($) 93 T CONST)) (-1699 (($ $) 77)) (-2047 (((-1036) $) 10) (($ $) 79)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-1603 (($ $) 98)) (-1348 (((-396 $) $) 50)) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 131) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 130)) (-2089 (((-3 $ "failed") $ $) 42)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 124)) (-3451 (((-108) $) 91)) (-1712 (((-712) $) 126)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 127)) (-3266 (($ $ (-712)) 111) (($ $) 109)) (-4140 (($ $) 76)) (-3199 (($ $) 78)) (-1408 (((-525) $) 108) (((-501) $) 102) (((-825 (-525)) $) 101) (((-357) $) 96) (((-205) $) 95)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43) (($ (-525)) 107)) (-2128 (((-712)) 29)) (-1932 (((-108) $ $) 87)) (-2516 (($ $ $) 99)) (-2672 (($) 90)) (-2495 (((-108) $ $) 39)) (-1938 (($ $ $ $) 74)) (-1539 (($ $) 113)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ (-712)) 112) (($ $) 110)) (-4135 (((-108) $ $) 120)) (-4119 (((-108) $ $) 121)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 119)) (-4112 (((-108) $ $) 122)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-510) (-131)) (T -510))
+((-2419 (*1 *2 *1) (-12 (-4 *1 (-510)) (-5 *2 (-108)))) (-3451 (*1 *2 *1) (-12 (-4 *1 (-510)) (-5 *2 (-108)))) (-2672 (*1 *1) (-4 *1 (-510))) (-1657 (*1 *1 *1) (-4 *1 (-510))) (-3427 (*1 *1 *1 *1) (-4 *1 (-510))) (-1932 (*1 *2 *1 *1) (-12 (-4 *1 (-510)) (-5 *2 (-108)))) (-3046 (*1 *1 *1 *1) (-4 *1 (-510))) (-3391 (*1 *1 *1 *1) (-4 *1 (-510))) (-1352 (*1 *2 *1) (-12 (-4 *1 (-510)) (-5 *2 (-108)))) (-1726 (*1 *2 *1) (-12 (-4 *1 (-510)) (-5 *2 (-385 (-525))))) (-1511 (*1 *2 *1) (|partial| -12 (-4 *1 (-510)) (-5 *2 (-385 (-525))))) (-3377 (*1 *1) (-4 *1 (-510))) (-3377 (*1 *1 *1) (-4 *1 (-510))) (-2047 (*1 *1 *1) (-4 *1 (-510))) (-3199 (*1 *1 *1) (-4 *1 (-510))) (-1699 (*1 *1 *1) (-4 *1 (-510))) (-4140 (*1 *1 *1) (-4 *1 (-510))) (-3291 (*1 *1 *1) (-4 *1 (-510))) (-1938 (*1 *1 *1 *1 *1) (-4 *1 (-510))) (-1737 (*1 *1 *1 *1 *1) (-4 *1 (-510))) (-3989 (*1 *1 *1 *1 *1) (-4 *1 (-510))) (-2467 (*1 *1 *1 *1 *1) (-4 *1 (-510))) (-2885 (*1 *1 *1 *1) (-4 *1 (-510))))
+(-13 (-1129) (-286) (-761) (-213) (-566 (-525)) (-966 (-525)) (-587 (-525)) (-566 (-501)) (-566 (-825 (-525))) (-819 (-525)) (-134) (-951) (-138) (-1065) (-10 -8 (-15 -2419 ((-108) $)) (-15 -3451 ((-108) $)) (-6 -4249) (-15 -2672 ($)) (-15 -1657 ($ $)) (-15 -3427 ($ $ $)) (-15 -1932 ((-108) $ $)) (-15 -3046 ($ $ $)) (-15 -3391 ($ $ $)) (-15 -1352 ((-108) $)) (-15 -1726 ((-385 (-525)) $)) (-15 -1511 ((-3 (-385 (-525)) "failed") $)) (-15 -3377 ($)) (-15 -3377 ($ $)) (-15 -2047 ($ $)) (-15 -3199 ($ $)) (-15 -1699 ($ $)) (-15 -4140 ($ $)) (-15 -3291 ($ $)) (-15 -1938 ($ $ $ $)) (-15 -1737 ($ $ $ $)) (-15 -3989 ($ $ $ $)) (-15 -2467 ($ $ $ $)) (-15 -2885 ($ $ $)) (-6 -4248)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-126) . T) ((-138) . T) ((-565 (-796)) . T) ((-134) . T) ((-160) . T) ((-566 (-205)) . T) ((-566 (-357)) . T) ((-566 (-501)) . T) ((-566 (-525)) . T) ((-566 (-825 (-525))) . T) ((-213) . T) ((-269) . T) ((-286) . T) ((-429) . T) ((-517) . T) ((-593 $) . T) ((-587 (-525)) . T) ((-659 $) . T) ((-668) . T) ((-732) . T) ((-733) . T) ((-735) . T) ((-736) . T) ((-761) . T) ((-786) . T) ((-788) . T) ((-819 (-525)) . T) ((-853) . T) ((-951) . T) ((-966 (-525)) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1065) . T) ((-1129) . T))
+((-3008 (((-108) $ $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-1260 (($) NIL) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-3296 (((-1176) $ |#1| |#1|) NIL (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#2| $ |#1| |#2|) NIL)) (-1797 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-2401 (((-3 |#2| "failed") |#1| $) NIL)) (-3798 (($) NIL T CONST)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3901 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-3 |#2| "failed") |#1| $) NIL)) (-3677 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-1227 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4250))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#2| $ |#1|) NIL)) (-3454 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-3630 ((|#1| $) NIL (|has| |#1| (-788)))) (-2552 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3468 ((|#1| $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4251))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-1542 (((-591 |#1|) $) NIL)) (-2484 (((-108) |#1| $) NIL)) (-1464 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-2470 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-2511 (((-591 |#1|) $) NIL)) (-2791 (((-108) |#1| $) NIL)) (-2047 (((-1036) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-3066 ((|#2| $) NIL (|has| |#1| (-788)))) (-2069 (((-3 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) "failed") (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL)) (-1941 (($ $ |#2|) NIL (|has| $ (-6 -4251)))) (-3631 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-1623 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 (-273 |#2|))) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3339 (((-591 |#2|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2311 (($) NIL) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-2064 (((-712) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-712) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018)))) (((-712) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-566 (-501))))) (-3036 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-3022 (((-796) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-565 (-796))) (|has| |#2| (-565 (-796)))))) (-1870 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-4158 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-511 |#1| |#2| |#3|) (-13 (-1102 |#1| |#2|) (-10 -7 (-6 -4250))) (-1018) (-1018) (-13 (-1102 |#1| |#2|) (-10 -7 (-6 -4250)))) (T -511))
+NIL
+(-13 (-1102 |#1| |#2|) (-10 -7 (-6 -4250)))
+((-2838 (((-542 |#2|) |#2| (-564 |#2|) (-564 |#2|) (-1 (-1085 |#2|) (-1085 |#2|))) 51)))
+(((-512 |#1| |#2|) (-10 -7 (-15 -2838 ((-542 |#2|) |#2| (-564 |#2|) (-564 |#2|) (-1 (-1085 |#2|) (-1085 |#2|))))) (-13 (-788) (-517)) (-13 (-27) (-408 |#1|))) (T -512))
+((-2838 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-564 *3)) (-5 *5 (-1 (-1085 *3) (-1085 *3))) (-4 *3 (-13 (-27) (-408 *6))) (-4 *6 (-13 (-788) (-517))) (-5 *2 (-542 *3)) (-5 *1 (-512 *6 *3)))))
+(-10 -7 (-15 -2838 ((-542 |#2|) |#2| (-564 |#2|) (-564 |#2|) (-1 (-1085 |#2|) (-1085 |#2|)))))
+((-2351 (((-542 |#5|) |#5| (-1 |#3| |#3|)) 198)) (-3287 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 194)) (-1448 (((-542 |#5|) |#5| (-1 |#3| |#3|)) 201)))
+(((-513 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1448 ((-542 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2351 ((-542 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3287 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|)))) (-13 (-788) (-517) (-966 (-525))) (-13 (-27) (-408 |#1|)) (-1147 |#2|) (-1147 (-385 |#3|)) (-320 |#2| |#3| |#4|)) (T -513))
+((-3287 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-13 (-27) (-408 *4))) (-4 *4 (-13 (-788) (-517) (-966 (-525)))) (-4 *7 (-1147 (-385 *6))) (-5 *1 (-513 *4 *5 *6 *7 *2)) (-4 *2 (-320 *5 *6 *7)))) (-2351 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1147 *6)) (-4 *6 (-13 (-27) (-408 *5))) (-4 *5 (-13 (-788) (-517) (-966 (-525)))) (-4 *8 (-1147 (-385 *7))) (-5 *2 (-542 *3)) (-5 *1 (-513 *5 *6 *7 *8 *3)) (-4 *3 (-320 *6 *7 *8)))) (-1448 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1147 *6)) (-4 *6 (-13 (-27) (-408 *5))) (-4 *5 (-13 (-788) (-517) (-966 (-525)))) (-4 *8 (-1147 (-385 *7))) (-5 *2 (-542 *3)) (-5 *1 (-513 *5 *6 *7 *8 *3)) (-4 *3 (-320 *6 *7 *8)))))
+(-10 -7 (-15 -1448 ((-542 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2351 ((-542 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3287 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
+((-4062 (((-108) (-525) (-525)) 10)) (-2849 (((-525) (-525)) 7)) (-2082 (((-525) (-525) (-525)) 8)))
+(((-514) (-10 -7 (-15 -2849 ((-525) (-525))) (-15 -2082 ((-525) (-525) (-525))) (-15 -4062 ((-108) (-525) (-525))))) (T -514))
+((-4062 (*1 *2 *3 *3) (-12 (-5 *3 (-525)) (-5 *2 (-108)) (-5 *1 (-514)))) (-2082 (*1 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-514)))) (-2849 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-514)))))
+(-10 -7 (-15 -2849 ((-525) (-525))) (-15 -2082 ((-525) (-525) (-525))) (-15 -4062 ((-108) (-525) (-525))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2289 ((|#1| $) 61)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-1987 (($ $) 91)) (-3169 (($ $) 74)) (-2593 ((|#1| $) 62)) (-2157 (((-3 $ "failed") $ $) 19)) (-1361 (($ $) 73)) (-1431 (($ $) 90)) (-3144 (($ $) 75)) (-1719 (($ $) 89)) (-1321 (($ $) 76)) (-3798 (($) 17 T CONST)) (-1251 (((-3 (-525) "failed") $) 69)) (-3528 (((-525) $) 68)) (-4163 (((-3 $ "failed") $) 34)) (-2188 (($ |#1| |#1|) 66)) (-2134 (((-108) $) 60)) (-1784 (($) 101)) (-2824 (((-108) $) 31)) (-3956 (($ $ (-525)) 72)) (-2732 (((-108) $) 59)) (-3741 (($ $ $) 107)) (-2478 (($ $ $) 106)) (-1488 (($ $) 98)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-3270 (($ |#1| |#1|) 67) (($ |#1|) 65) (($ (-385 (-525))) 64)) (-4125 ((|#1| $) 63)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-2089 (((-3 $ "failed") $ $) 42)) (-1409 (($ $) 99)) (-1502 (($ $) 88)) (-1333 (($ $) 77)) (-1996 (($ $) 87)) (-1309 (($ $) 78)) (-1973 (($ $) 86)) (-3156 (($ $) 79)) (-2277 (((-108) $ |#1|) 58)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43) (($ (-525)) 70)) (-2128 (((-712)) 29)) (-1563 (($ $) 97)) (-1371 (($ $) 85)) (-2495 (((-108) $ $) 39)) (-1515 (($ $) 96)) (-1346 (($ $) 84)) (-1591 (($ $) 95)) (-1400 (($ $) 83)) (-3277 (($ $) 94)) (-1415 (($ $) 82)) (-1578 (($ $) 93)) (-1385 (($ $) 81)) (-1527 (($ $) 92)) (-1358 (($ $) 80)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4135 (((-108) $ $) 104)) (-4119 (((-108) $ $) 103)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 105)) (-4112 (((-108) $ $) 102)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ $) 100) (($ $ (-385 (-525))) 71)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-515 |#1|) (-131) (-13 (-382) (-1111))) (T -515))
+((-3270 (*1 *1 *2 *2) (-12 (-4 *1 (-515 *2)) (-4 *2 (-13 (-382) (-1111))))) (-2188 (*1 *1 *2 *2) (-12 (-4 *1 (-515 *2)) (-4 *2 (-13 (-382) (-1111))))) (-3270 (*1 *1 *2) (-12 (-4 *1 (-515 *2)) (-4 *2 (-13 (-382) (-1111))))) (-3270 (*1 *1 *2) (-12 (-5 *2 (-385 (-525))) (-4 *1 (-515 *3)) (-4 *3 (-13 (-382) (-1111))))) (-4125 (*1 *2 *1) (-12 (-4 *1 (-515 *2)) (-4 *2 (-13 (-382) (-1111))))) (-2593 (*1 *2 *1) (-12 (-4 *1 (-515 *2)) (-4 *2 (-13 (-382) (-1111))))) (-2289 (*1 *2 *1) (-12 (-4 *1 (-515 *2)) (-4 *2 (-13 (-382) (-1111))))) (-2134 (*1 *2 *1) (-12 (-4 *1 (-515 *3)) (-4 *3 (-13 (-382) (-1111))) (-5 *2 (-108)))) (-2732 (*1 *2 *1) (-12 (-4 *1 (-515 *3)) (-4 *3 (-13 (-382) (-1111))) (-5 *2 (-108)))) (-2277 (*1 *2 *1 *3) (-12 (-4 *1 (-515 *3)) (-4 *3 (-13 (-382) (-1111))) (-5 *2 (-108)))))
+(-13 (-429) (-788) (-1111) (-932) (-966 (-525)) (-10 -8 (-6 -2176) (-15 -3270 ($ |t#1| |t#1|)) (-15 -2188 ($ |t#1| |t#1|)) (-15 -3270 ($ |t#1|)) (-15 -3270 ($ (-385 (-525)))) (-15 -4125 (|t#1| $)) (-15 -2593 (|t#1| $)) (-15 -2289 (|t#1| $)) (-15 -2134 ((-108) $)) (-15 -2732 ((-108) $)) (-15 -2277 ((-108) $ |t#1|))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-34) . T) ((-91) . T) ((-97) . T) ((-107 $ $) . T) ((-126) . T) ((-565 (-796)) . T) ((-160) . T) ((-263) . T) ((-269) . T) ((-429) . T) ((-466) . T) ((-517) . T) ((-593 $) . T) ((-659 $) . T) ((-668) . T) ((-788) . T) ((-932) . T) ((-966 (-525)) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1111) . T) ((-1114) . T))
+((-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 9)) (-3706 (($ $) 11)) (-1715 (((-108) $) 18)) (-4163 (((-3 $ "failed") $) 16)) (-2495 (((-108) $ $) 20)))
+(((-516 |#1|) (-10 -8 (-15 -1715 ((-108) |#1|)) (-15 -2495 ((-108) |#1| |#1|)) (-15 -3706 (|#1| |#1|)) (-15 -3450 ((-2 (|:| -2999 |#1|) (|:| -4237 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -4163 ((-3 |#1| "failed") |#1|))) (-517)) (T -516))
+NIL
+(-10 -8 (-15 -1715 ((-108) |#1|)) (-15 -2495 ((-108) |#1| |#1|)) (-15 -3706 (|#1| |#1|)) (-15 -3450 ((-2 (|:| -2999 |#1|) (|:| -4237 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -4163 ((-3 |#1| "failed") |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2089 (((-3 $ "failed") $ $) 42)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43)) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 39)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-517) (-131)) (T -517))
+((-2089 (*1 *1 *1 *1) (|partial| -4 *1 (-517))) (-3450 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -2999 *1) (|:| -4237 *1) (|:| |associate| *1))) (-4 *1 (-517)))) (-3706 (*1 *1 *1) (-4 *1 (-517))) (-2495 (*1 *2 *1 *1) (-12 (-4 *1 (-517)) (-5 *2 (-108)))) (-1715 (*1 *2 *1) (-12 (-4 *1 (-517)) (-5 *2 (-108)))))
+(-13 (-160) (-37 $) (-269) (-10 -8 (-15 -2089 ((-3 $ "failed") $ $)) (-15 -3450 ((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $)) (-15 -3706 ($ $)) (-15 -2495 ((-108) $ $)) (-15 -1715 ((-108) $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-126) . T) ((-565 (-796)) . T) ((-160) . T) ((-269) . T) ((-593 $) . T) ((-659 $) . T) ((-668) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3736 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1089) (-591 |#2|)) 37)) (-3334 (((-542 |#2|) |#2| (-1089)) 62)) (-2585 (((-3 |#2| "failed") |#2| (-1089)) 154)) (-3183 (((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1089) (-564 |#2|) (-591 (-564 |#2|))) 157)) (-2823 (((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1089) |#2|) 40)))
+(((-518 |#1| |#2|) (-10 -7 (-15 -2823 ((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1089) |#2|)) (-15 -3736 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1089) (-591 |#2|))) (-15 -2585 ((-3 |#2| "failed") |#2| (-1089))) (-15 -3334 ((-542 |#2|) |#2| (-1089))) (-15 -3183 ((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1089) (-564 |#2|) (-591 (-564 |#2|))))) (-13 (-429) (-788) (-138) (-966 (-525)) (-587 (-525))) (-13 (-27) (-1111) (-408 |#1|))) (T -518))
+((-3183 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1089)) (-5 *6 (-591 (-564 *3))) (-5 *5 (-564 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *7))) (-4 *7 (-13 (-429) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *2 (-2 (|:| -3060 *3) (|:| |coeff| *3))) (-5 *1 (-518 *7 *3)))) (-3334 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-4 *5 (-13 (-429) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *2 (-542 *3)) (-5 *1 (-518 *5 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5))))) (-2585 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1089)) (-4 *4 (-13 (-429) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *1 (-518 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *4))))) (-3736 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1089)) (-5 *5 (-591 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *6))) (-4 *6 (-13 (-429) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-518 *6 *3)))) (-2823 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1089)) (-4 *5 (-13 (-429) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *2 (-2 (|:| -3060 *3) (|:| |coeff| *3))) (-5 *1 (-518 *5 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5))))))
+(-10 -7 (-15 -2823 ((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1089) |#2|)) (-15 -3736 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1089) (-591 |#2|))) (-15 -2585 ((-3 |#2| "failed") |#2| (-1089))) (-15 -3334 ((-542 |#2|) |#2| (-1089))) (-15 -3183 ((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1089) (-564 |#2|) (-591 (-564 |#2|)))))
+((-2827 (((-396 |#1|) |#1|) 18)) (-1348 (((-396 |#1|) |#1|) 33)) (-2302 (((-3 |#1| "failed") |#1|) 44)) (-2629 (((-396 |#1|) |#1|) 51)))
+(((-519 |#1|) (-10 -7 (-15 -1348 ((-396 |#1|) |#1|)) (-15 -2827 ((-396 |#1|) |#1|)) (-15 -2629 ((-396 |#1|) |#1|)) (-15 -2302 ((-3 |#1| "failed") |#1|))) (-510)) (T -519))
+((-2302 (*1 *2 *2) (|partial| -12 (-5 *1 (-519 *2)) (-4 *2 (-510)))) (-2629 (*1 *2 *3) (-12 (-5 *2 (-396 *3)) (-5 *1 (-519 *3)) (-4 *3 (-510)))) (-2827 (*1 *2 *3) (-12 (-5 *2 (-396 *3)) (-5 *1 (-519 *3)) (-4 *3 (-510)))) (-1348 (*1 *2 *3) (-12 (-5 *2 (-396 *3)) (-5 *1 (-519 *3)) (-4 *3 (-510)))))
+(-10 -7 (-15 -1348 ((-396 |#1|) |#1|)) (-15 -2827 ((-396 |#1|) |#1|)) (-15 -2629 ((-396 |#1|) |#1|)) (-15 -2302 ((-3 |#1| "failed") |#1|)))
+((-1341 (($) 9)) (-2649 (((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 35)) (-1542 (((-591 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) $) 32)) (-2470 (($ (-2 (|:| -2019 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) 29)) (-2436 (($ (-591 (-2 (|:| -2019 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) 27)) (-1221 (((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 39)) (-3339 (((-591 (-2 (|:| -2019 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $) 37)) (-3555 (((-1176)) 12)))
+(((-520) (-10 -8 (-15 -1341 ($)) (-15 -3555 ((-1176))) (-15 -1542 ((-591 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) $)) (-15 -2436 ($ (-591 (-2 (|:| -2019 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))))) (-15 -2470 ($ (-2 (|:| -2019 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-15 -2649 ((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -3339 ((-591 (-2 (|:| -2019 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $)) (-15 -1221 ((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))))) (T -520))
+((-1221 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *1 (-520)))) (-3339 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| -2019 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-5 *1 (-520)))) (-2649 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *1 (-520)))) (-2470 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2019 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) (-5 *1 (-520)))) (-2436 (*1 *1 *2) (-12 (-5 *2 (-591 (-2 (|:| -2019 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-5 *1 (-520)))) (-1542 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-5 *1 (-520)))) (-3555 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-520)))) (-1341 (*1 *1) (-5 *1 (-520))))
+(-10 -8 (-15 -1341 ($)) (-15 -3555 ((-1176))) (-15 -1542 ((-591 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) $)) (-15 -2436 ($ (-591 (-2 (|:| -2019 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))))) (-15 -2470 ($ (-2 (|:| -2019 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-15 -2649 ((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -3339 ((-591 (-2 (|:| -2019 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $)) (-15 -1221 ((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1070 (-205))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1767 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))))
+((-1312 (((-1085 (-385 (-1085 |#2|))) |#2| (-564 |#2|) (-564 |#2|) (-1085 |#2|)) 32)) (-1808 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-564 |#2|) (-564 |#2|) (-591 |#2|) (-564 |#2|) |#2| (-385 (-1085 |#2|))) 100) (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-564 |#2|) (-564 |#2|) (-591 |#2|) |#2| (-1085 |#2|)) 110)) (-4079 (((-542 |#2|) |#2| (-564 |#2|) (-564 |#2|) (-564 |#2|) |#2| (-385 (-1085 |#2|))) 80) (((-542 |#2|) |#2| (-564 |#2|) (-564 |#2|) |#2| (-1085 |#2|)) 52)) (-3372 (((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-564 |#2|) (-564 |#2|) |#2| (-564 |#2|) |#2| (-385 (-1085 |#2|))) 87) (((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-564 |#2|) (-564 |#2|) |#2| |#2| (-1085 |#2|)) 109)) (-1665 (((-3 |#2| "failed") |#2| |#2| (-564 |#2|) (-564 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1089)) (-564 |#2|) |#2| (-385 (-1085 |#2|))) 105) (((-3 |#2| "failed") |#2| |#2| (-564 |#2|) (-564 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1089)) |#2| (-1085 |#2|)) 111)) (-1618 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4003 (-591 |#2|))) |#3| |#2| (-564 |#2|) (-564 |#2|) (-564 |#2|) |#2| (-385 (-1085 |#2|))) 128 (|has| |#3| (-601 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4003 (-591 |#2|))) |#3| |#2| (-564 |#2|) (-564 |#2|) |#2| (-1085 |#2|)) 127 (|has| |#3| (-601 |#2|)))) (-1493 ((|#2| (-1085 (-385 (-1085 |#2|))) (-564 |#2|) |#2|) 50)) (-1223 (((-1085 (-385 (-1085 |#2|))) (-1085 |#2|) (-564 |#2|)) 31)))
+(((-521 |#1| |#2| |#3|) (-10 -7 (-15 -4079 ((-542 |#2|) |#2| (-564 |#2|) (-564 |#2|) |#2| (-1085 |#2|))) (-15 -4079 ((-542 |#2|) |#2| (-564 |#2|) (-564 |#2|) (-564 |#2|) |#2| (-385 (-1085 |#2|)))) (-15 -3372 ((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-564 |#2|) (-564 |#2|) |#2| |#2| (-1085 |#2|))) (-15 -3372 ((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-564 |#2|) (-564 |#2|) |#2| (-564 |#2|) |#2| (-385 (-1085 |#2|)))) (-15 -1808 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-564 |#2|) (-564 |#2|) (-591 |#2|) |#2| (-1085 |#2|))) (-15 -1808 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-564 |#2|) (-564 |#2|) (-591 |#2|) (-564 |#2|) |#2| (-385 (-1085 |#2|)))) (-15 -1665 ((-3 |#2| "failed") |#2| |#2| (-564 |#2|) (-564 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1089)) |#2| (-1085 |#2|))) (-15 -1665 ((-3 |#2| "failed") |#2| |#2| (-564 |#2|) (-564 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1089)) (-564 |#2|) |#2| (-385 (-1085 |#2|)))) (-15 -1312 ((-1085 (-385 (-1085 |#2|))) |#2| (-564 |#2|) (-564 |#2|) (-1085 |#2|))) (-15 -1493 (|#2| (-1085 (-385 (-1085 |#2|))) (-564 |#2|) |#2|)) (-15 -1223 ((-1085 (-385 (-1085 |#2|))) (-1085 |#2|) (-564 |#2|))) (IF (|has| |#3| (-601 |#2|)) (PROGN (-15 -1618 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4003 (-591 |#2|))) |#3| |#2| (-564 |#2|) (-564 |#2|) |#2| (-1085 |#2|))) (-15 -1618 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4003 (-591 |#2|))) |#3| |#2| (-564 |#2|) (-564 |#2|) (-564 |#2|) |#2| (-385 (-1085 |#2|))))) |%noBranch|)) (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))) (-13 (-408 |#1|) (-27) (-1111)) (-1018)) (T -521))
+((-1618 (*1 *2 *3 *4 *5 *5 *5 *4 *6) (-12 (-5 *5 (-564 *4)) (-5 *6 (-385 (-1085 *4))) (-4 *4 (-13 (-408 *7) (-27) (-1111))) (-4 *7 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4)))) (-5 *1 (-521 *7 *4 *3)) (-4 *3 (-601 *4)) (-4 *3 (-1018)))) (-1618 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *5 (-564 *4)) (-5 *6 (-1085 *4)) (-4 *4 (-13 (-408 *7) (-27) (-1111))) (-4 *7 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4)))) (-5 *1 (-521 *7 *4 *3)) (-4 *3 (-601 *4)) (-4 *3 (-1018)))) (-1223 (*1 *2 *3 *4) (-12 (-5 *4 (-564 *6)) (-4 *6 (-13 (-408 *5) (-27) (-1111))) (-4 *5 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *2 (-1085 (-385 (-1085 *6)))) (-5 *1 (-521 *5 *6 *7)) (-5 *3 (-1085 *6)) (-4 *7 (-1018)))) (-1493 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1085 (-385 (-1085 *2)))) (-5 *4 (-564 *2)) (-4 *2 (-13 (-408 *5) (-27) (-1111))) (-4 *5 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *1 (-521 *5 *2 *6)) (-4 *6 (-1018)))) (-1312 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-564 *3)) (-4 *3 (-13 (-408 *6) (-27) (-1111))) (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *2 (-1085 (-385 (-1085 *3)))) (-5 *1 (-521 *6 *3 *7)) (-5 *5 (-1085 *3)) (-4 *7 (-1018)))) (-1665 (*1 *2 *2 *2 *3 *3 *4 *3 *2 *5) (|partial| -12 (-5 *3 (-564 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1089))) (-5 *5 (-385 (-1085 *2))) (-4 *2 (-13 (-408 *6) (-27) (-1111))) (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *1 (-521 *6 *2 *7)) (-4 *7 (-1018)))) (-1665 (*1 *2 *2 *2 *3 *3 *4 *2 *5) (|partial| -12 (-5 *3 (-564 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1089))) (-5 *5 (-1085 *2)) (-4 *2 (-13 (-408 *6) (-27) (-1111))) (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *1 (-521 *6 *2 *7)) (-4 *7 (-1018)))) (-1808 (*1 *2 *3 *4 *4 *5 *4 *3 *6) (|partial| -12 (-5 *4 (-564 *3)) (-5 *5 (-591 *3)) (-5 *6 (-385 (-1085 *3))) (-4 *3 (-13 (-408 *7) (-27) (-1111))) (-4 *7 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-521 *7 *3 *8)) (-4 *8 (-1018)))) (-1808 (*1 *2 *3 *4 *4 *5 *3 *6) (|partial| -12 (-5 *4 (-564 *3)) (-5 *5 (-591 *3)) (-5 *6 (-1085 *3)) (-4 *3 (-13 (-408 *7) (-27) (-1111))) (-4 *7 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-521 *7 *3 *8)) (-4 *8 (-1018)))) (-3372 (*1 *2 *3 *4 *4 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-564 *3)) (-5 *5 (-385 (-1085 *3))) (-4 *3 (-13 (-408 *6) (-27) (-1111))) (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *2 (-2 (|:| -3060 *3) (|:| |coeff| *3))) (-5 *1 (-521 *6 *3 *7)) (-4 *7 (-1018)))) (-3372 (*1 *2 *3 *4 *4 *3 *3 *5) (|partial| -12 (-5 *4 (-564 *3)) (-5 *5 (-1085 *3)) (-4 *3 (-13 (-408 *6) (-27) (-1111))) (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *2 (-2 (|:| -3060 *3) (|:| |coeff| *3))) (-5 *1 (-521 *6 *3 *7)) (-4 *7 (-1018)))) (-4079 (*1 *2 *3 *4 *4 *4 *3 *5) (-12 (-5 *4 (-564 *3)) (-5 *5 (-385 (-1085 *3))) (-4 *3 (-13 (-408 *6) (-27) (-1111))) (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *2 (-542 *3)) (-5 *1 (-521 *6 *3 *7)) (-4 *7 (-1018)))) (-4079 (*1 *2 *3 *4 *4 *3 *5) (-12 (-5 *4 (-564 *3)) (-5 *5 (-1085 *3)) (-4 *3 (-13 (-408 *6) (-27) (-1111))) (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *2 (-542 *3)) (-5 *1 (-521 *6 *3 *7)) (-4 *7 (-1018)))))
+(-10 -7 (-15 -4079 ((-542 |#2|) |#2| (-564 |#2|) (-564 |#2|) |#2| (-1085 |#2|))) (-15 -4079 ((-542 |#2|) |#2| (-564 |#2|) (-564 |#2|) (-564 |#2|) |#2| (-385 (-1085 |#2|)))) (-15 -3372 ((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-564 |#2|) (-564 |#2|) |#2| |#2| (-1085 |#2|))) (-15 -3372 ((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-564 |#2|) (-564 |#2|) |#2| (-564 |#2|) |#2| (-385 (-1085 |#2|)))) (-15 -1808 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-564 |#2|) (-564 |#2|) (-591 |#2|) |#2| (-1085 |#2|))) (-15 -1808 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-564 |#2|) (-564 |#2|) (-591 |#2|) (-564 |#2|) |#2| (-385 (-1085 |#2|)))) (-15 -1665 ((-3 |#2| "failed") |#2| |#2| (-564 |#2|) (-564 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1089)) |#2| (-1085 |#2|))) (-15 -1665 ((-3 |#2| "failed") |#2| |#2| (-564 |#2|) (-564 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1089)) (-564 |#2|) |#2| (-385 (-1085 |#2|)))) (-15 -1312 ((-1085 (-385 (-1085 |#2|))) |#2| (-564 |#2|) (-564 |#2|) (-1085 |#2|))) (-15 -1493 (|#2| (-1085 (-385 (-1085 |#2|))) (-564 |#2|) |#2|)) (-15 -1223 ((-1085 (-385 (-1085 |#2|))) (-1085 |#2|) (-564 |#2|))) (IF (|has| |#3| (-601 |#2|)) (PROGN (-15 -1618 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4003 (-591 |#2|))) |#3| |#2| (-564 |#2|) (-564 |#2|) |#2| (-1085 |#2|))) (-15 -1618 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4003 (-591 |#2|))) |#3| |#2| (-564 |#2|) (-564 |#2|) (-564 |#2|) |#2| (-385 (-1085 |#2|))))) |%noBranch|))
+((-2528 (((-525) (-525) (-712)) 66)) (-3007 (((-525) (-525)) 65)) (-2531 (((-525) (-525)) 64)) (-1707 (((-525) (-525)) 69)) (-1630 (((-525) (-525) (-525)) 49)) (-1254 (((-525) (-525) (-525)) 46)) (-3520 (((-385 (-525)) (-525)) 20)) (-3361 (((-525) (-525)) 21)) (-2901 (((-525) (-525)) 58)) (-3546 (((-525) (-525)) 32)) (-3684 (((-591 (-525)) (-525)) 63)) (-2714 (((-525) (-525) (-525) (-525) (-525)) 44)) (-4105 (((-385 (-525)) (-525)) 41)))
+(((-522) (-10 -7 (-15 -4105 ((-385 (-525)) (-525))) (-15 -2714 ((-525) (-525) (-525) (-525) (-525))) (-15 -3684 ((-591 (-525)) (-525))) (-15 -3546 ((-525) (-525))) (-15 -2901 ((-525) (-525))) (-15 -3361 ((-525) (-525))) (-15 -3520 ((-385 (-525)) (-525))) (-15 -1254 ((-525) (-525) (-525))) (-15 -1630 ((-525) (-525) (-525))) (-15 -1707 ((-525) (-525))) (-15 -2531 ((-525) (-525))) (-15 -3007 ((-525) (-525))) (-15 -2528 ((-525) (-525) (-712))))) (T -522))
+((-2528 (*1 *2 *2 *3) (-12 (-5 *2 (-525)) (-5 *3 (-712)) (-5 *1 (-522)))) (-3007 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))) (-2531 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))) (-1707 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))) (-1630 (*1 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))) (-1254 (*1 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))) (-3520 (*1 *2 *3) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-522)) (-5 *3 (-525)))) (-3361 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))) (-2901 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))) (-3546 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))) (-3684 (*1 *2 *3) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-522)) (-5 *3 (-525)))) (-2714 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))) (-4105 (*1 *2 *3) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-522)) (-5 *3 (-525)))))
+(-10 -7 (-15 -4105 ((-385 (-525)) (-525))) (-15 -2714 ((-525) (-525) (-525) (-525) (-525))) (-15 -3684 ((-591 (-525)) (-525))) (-15 -3546 ((-525) (-525))) (-15 -2901 ((-525) (-525))) (-15 -3361 ((-525) (-525))) (-15 -3520 ((-385 (-525)) (-525))) (-15 -1254 ((-525) (-525) (-525))) (-15 -1630 ((-525) (-525) (-525))) (-15 -1707 ((-525) (-525))) (-15 -2531 ((-525) (-525))) (-15 -3007 ((-525) (-525))) (-15 -2528 ((-525) (-525) (-712))))
+((-3276 (((-2 (|:| |answer| |#4|) (|:| -3802 |#4|)) |#4| (-1 |#2| |#2|)) 52)))
+(((-523 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3276 ((-2 (|:| |answer| |#4|) (|:| -3802 |#4|)) |#4| (-1 |#2| |#2|)))) (-341) (-1147 |#1|) (-1147 (-385 |#2|)) (-320 |#1| |#2| |#3|)) (T -523))
+((-3276 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-341)) (-4 *7 (-1147 (-385 *6))) (-5 *2 (-2 (|:| |answer| *3) (|:| -3802 *3))) (-5 *1 (-523 *5 *6 *7 *3)) (-4 *3 (-320 *5 *6 *7)))))
+(-10 -7 (-15 -3276 ((-2 (|:| |answer| |#4|) (|:| -3802 |#4|)) |#4| (-1 |#2| |#2|))))
+((-3276 (((-2 (|:| |answer| (-385 |#2|)) (|:| -3802 (-385 |#2|)) (|:| |specpart| (-385 |#2|)) (|:| |polypart| |#2|)) (-385 |#2|) (-1 |#2| |#2|)) 18)))
+(((-524 |#1| |#2|) (-10 -7 (-15 -3276 ((-2 (|:| |answer| (-385 |#2|)) (|:| -3802 (-385 |#2|)) (|:| |specpart| (-385 |#2|)) (|:| |polypart| |#2|)) (-385 |#2|) (-1 |#2| |#2|)))) (-341) (-1147 |#1|)) (T -524))
+((-3276 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-341)) (-5 *2 (-2 (|:| |answer| (-385 *6)) (|:| -3802 (-385 *6)) (|:| |specpart| (-385 *6)) (|:| |polypart| *6))) (-5 *1 (-524 *5 *6)) (-5 *3 (-385 *6)))))
+(-10 -7 (-15 -3276 ((-2 (|:| |answer| (-385 |#2|)) (|:| -3802 (-385 |#2|)) (|:| |specpart| (-385 |#2|)) (|:| |polypart| |#2|)) (-385 |#2|) (-1 |#2| |#2|))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 25)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 87)) (-3706 (($ $) 88)) (-1715 (((-108) $) NIL)) (-3391 (($ $ $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1737 (($ $ $ $) 42)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3329 (((-525) $) NIL)) (-3427 (($ $ $) 81)) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL)) (-3528 (((-525) $) NIL)) (-2129 (($ $ $) 80)) (-3305 (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 61) (((-631 (-525)) (-631 $)) 57)) (-4163 (((-3 $ "failed") $) 84)) (-1511 (((-3 (-385 (-525)) "failed") $) NIL)) (-1352 (((-108) $) NIL)) (-1726 (((-385 (-525)) $) NIL)) (-3377 (($) 63) (($ $) 64)) (-2110 (($ $ $) 79)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2467 (($ $ $ $) NIL)) (-3046 (($ $ $) 54)) (-2134 (((-108) $) NIL)) (-1994 (($ $ $) NIL)) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL)) (-2824 (((-108) $) 26)) (-2419 (((-108) $) 74)) (-2085 (((-3 $ "failed") $) NIL)) (-2732 (((-108) $) 34)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3989 (($ $ $ $) 43)) (-3741 (($ $ $) 76)) (-2478 (($ $ $) 75)) (-3291 (($ $) NIL)) (-1657 (($ $) 40)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) 53)) (-2885 (($ $ $) NIL)) (-3506 (($) NIL T CONST)) (-1699 (($ $) 31)) (-2047 (((-1036) $) NIL) (($ $) 33)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 118)) (-1399 (($ $ $) 85) (($ (-591 $)) NIL)) (-1603 (($ $) NIL)) (-1348 (((-396 $) $) 104)) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL)) (-2089 (((-3 $ "failed") $ $) 83)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3451 (((-108) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 78)) (-3266 (($ $ (-712)) NIL) (($ $) NIL)) (-4140 (($ $) 32)) (-3199 (($ $) 30)) (-1408 (((-525) $) 39) (((-501) $) 51) (((-825 (-525)) $) NIL) (((-357) $) 46) (((-205) $) 48) (((-1072) $) 52)) (-3022 (((-796) $) 37) (($ (-525)) 38) (($ $) NIL) (($ (-525)) 38)) (-2128 (((-712)) NIL)) (-1932 (((-108) $ $) NIL)) (-2516 (($ $ $) NIL)) (-2672 (($) 29)) (-2495 (((-108) $ $) NIL)) (-1938 (($ $ $ $) 41)) (-1539 (($ $) 62)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 27 T CONST)) (-4197 (($) 28 T CONST)) (-2563 (((-1072) $) 20) (((-1072) $ (-108)) 22) (((-1176) (-763) $) 23) (((-1176) (-763) $ (-108)) 24)) (-4196 (($ $ (-712)) NIL) (($ $) NIL)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 65)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 66)) (-4164 (($ $) 67) (($ $ $) 69)) (-4156 (($ $ $) 68)) (** (($ $ (-854)) NIL) (($ $ (-712)) 73)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 71) (($ $ $) 70)))
+(((-525) (-13 (-510) (-566 (-1072)) (-769) (-10 -8 (-15 -3377 ($ $)) (-6 -4237) (-6 -4242) (-6 -4238) (-6 -4232)))) (T -525))
+((-3377 (*1 *1 *1) (-5 *1 (-525))))
+(-13 (-510) (-566 (-1072)) (-769) (-10 -8 (-15 -3377 ($ $)) (-6 -4237) (-6 -4242) (-6 -4238) (-6 -4232)))
+((-2432 (((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))) (|:| |extra| (-964))) (-710) (-987)) 108) (((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))) (|:| |extra| (-964))) (-710)) 110)) (-4141 (((-3 (-964) "failed") (-294 (-357)) (-1011 (-781 (-357))) (-1089)) 172) (((-3 (-964) "failed") (-294 (-357)) (-1011 (-781 (-357))) (-1072)) 171) (((-964) (-294 (-357)) (-591 (-1013 (-781 (-357)))) (-357) (-357) (-987)) 176) (((-964) (-294 (-357)) (-591 (-1013 (-781 (-357)))) (-357) (-357)) 177) (((-964) (-294 (-357)) (-591 (-1013 (-781 (-357)))) (-357)) 178) (((-964) (-294 (-357)) (-591 (-1013 (-781 (-357))))) 179) (((-964) (-294 (-357)) (-1013 (-781 (-357)))) 167) (((-964) (-294 (-357)) (-1013 (-781 (-357))) (-357)) 166) (((-964) (-294 (-357)) (-1013 (-781 (-357))) (-357) (-357)) 162) (((-964) (-710)) 155) (((-964) (-294 (-357)) (-1013 (-781 (-357))) (-357) (-357) (-987)) 161)))
+(((-526) (-10 -7 (-15 -4141 ((-964) (-294 (-357)) (-1013 (-781 (-357))) (-357) (-357) (-987))) (-15 -4141 ((-964) (-710))) (-15 -4141 ((-964) (-294 (-357)) (-1013 (-781 (-357))) (-357) (-357))) (-15 -4141 ((-964) (-294 (-357)) (-1013 (-781 (-357))) (-357))) (-15 -4141 ((-964) (-294 (-357)) (-1013 (-781 (-357))))) (-15 -4141 ((-964) (-294 (-357)) (-591 (-1013 (-781 (-357)))))) (-15 -4141 ((-964) (-294 (-357)) (-591 (-1013 (-781 (-357)))) (-357))) (-15 -4141 ((-964) (-294 (-357)) (-591 (-1013 (-781 (-357)))) (-357) (-357))) (-15 -4141 ((-964) (-294 (-357)) (-591 (-1013 (-781 (-357)))) (-357) (-357) (-987))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))) (|:| |extra| (-964))) (-710))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))) (|:| |extra| (-964))) (-710) (-987))) (-15 -4141 ((-3 (-964) "failed") (-294 (-357)) (-1011 (-781 (-357))) (-1072))) (-15 -4141 ((-3 (-964) "failed") (-294 (-357)) (-1011 (-781 (-357))) (-1089))))) (T -526))
+((-4141 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-294 (-357))) (-5 *4 (-1011 (-781 (-357)))) (-5 *5 (-1089)) (-5 *2 (-964)) (-5 *1 (-526)))) (-4141 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-294 (-357))) (-5 *4 (-1011 (-781 (-357)))) (-5 *5 (-1072)) (-5 *2 (-964)) (-5 *1 (-526)))) (-2432 (*1 *2 *3 *4) (-12 (-5 *3 (-710)) (-5 *4 (-987)) (-5 *2 (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))) (|:| |extra| (-964)))) (-5 *1 (-526)))) (-2432 (*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))) (|:| |extra| (-964)))) (-5 *1 (-526)))) (-4141 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-294 (-357))) (-5 *4 (-591 (-1013 (-781 (-357))))) (-5 *5 (-357)) (-5 *6 (-987)) (-5 *2 (-964)) (-5 *1 (-526)))) (-4141 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-294 (-357))) (-5 *4 (-591 (-1013 (-781 (-357))))) (-5 *5 (-357)) (-5 *2 (-964)) (-5 *1 (-526)))) (-4141 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-294 (-357))) (-5 *4 (-591 (-1013 (-781 (-357))))) (-5 *5 (-357)) (-5 *2 (-964)) (-5 *1 (-526)))) (-4141 (*1 *2 *3 *4) (-12 (-5 *3 (-294 (-357))) (-5 *4 (-591 (-1013 (-781 (-357))))) (-5 *2 (-964)) (-5 *1 (-526)))) (-4141 (*1 *2 *3 *4) (-12 (-5 *3 (-294 (-357))) (-5 *4 (-1013 (-781 (-357)))) (-5 *2 (-964)) (-5 *1 (-526)))) (-4141 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-294 (-357))) (-5 *4 (-1013 (-781 (-357)))) (-5 *5 (-357)) (-5 *2 (-964)) (-5 *1 (-526)))) (-4141 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-294 (-357))) (-5 *4 (-1013 (-781 (-357)))) (-5 *5 (-357)) (-5 *2 (-964)) (-5 *1 (-526)))) (-4141 (*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-964)) (-5 *1 (-526)))) (-4141 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-294 (-357))) (-5 *4 (-1013 (-781 (-357)))) (-5 *5 (-357)) (-5 *6 (-987)) (-5 *2 (-964)) (-5 *1 (-526)))))
+(-10 -7 (-15 -4141 ((-964) (-294 (-357)) (-1013 (-781 (-357))) (-357) (-357) (-987))) (-15 -4141 ((-964) (-710))) (-15 -4141 ((-964) (-294 (-357)) (-1013 (-781 (-357))) (-357) (-357))) (-15 -4141 ((-964) (-294 (-357)) (-1013 (-781 (-357))) (-357))) (-15 -4141 ((-964) (-294 (-357)) (-1013 (-781 (-357))))) (-15 -4141 ((-964) (-294 (-357)) (-591 (-1013 (-781 (-357)))))) (-15 -4141 ((-964) (-294 (-357)) (-591 (-1013 (-781 (-357)))) (-357))) (-15 -4141 ((-964) (-294 (-357)) (-591 (-1013 (-781 (-357)))) (-357) (-357))) (-15 -4141 ((-964) (-294 (-357)) (-591 (-1013 (-781 (-357)))) (-357) (-357) (-987))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))) (|:| |extra| (-964))) (-710))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))) (|:| |extra| (-964))) (-710) (-987))) (-15 -4141 ((-3 (-964) "failed") (-294 (-357)) (-1011 (-781 (-357))) (-1072))) (-15 -4141 ((-3 (-964) "failed") (-294 (-357)) (-1011 (-781 (-357))) (-1089))))
+((-2384 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-564 |#2|) (-564 |#2|) (-591 |#2|)) 183)) (-3899 (((-542 |#2|) |#2| (-564 |#2|) (-564 |#2|)) 98)) (-4220 (((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-564 |#2|) (-564 |#2|) |#2|) 179)) (-3271 (((-3 |#2| "failed") |#2| |#2| |#2| (-564 |#2|) (-564 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1089))) 188)) (-2388 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4003 (-591 |#2|))) |#3| |#2| (-564 |#2|) (-564 |#2|) (-1089)) 196 (|has| |#3| (-601 |#2|)))))
+(((-527 |#1| |#2| |#3|) (-10 -7 (-15 -3899 ((-542 |#2|) |#2| (-564 |#2|) (-564 |#2|))) (-15 -4220 ((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-564 |#2|) (-564 |#2|) |#2|)) (-15 -2384 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-564 |#2|) (-564 |#2|) (-591 |#2|))) (-15 -3271 ((-3 |#2| "failed") |#2| |#2| |#2| (-564 |#2|) (-564 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1089)))) (IF (|has| |#3| (-601 |#2|)) (-15 -2388 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4003 (-591 |#2|))) |#3| |#2| (-564 |#2|) (-564 |#2|) (-1089))) |%noBranch|)) (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))) (-13 (-408 |#1|) (-27) (-1111)) (-1018)) (T -527))
+((-2388 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *5 (-564 *4)) (-5 *6 (-1089)) (-4 *4 (-13 (-408 *7) (-27) (-1111))) (-4 *7 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4)))) (-5 *1 (-527 *7 *4 *3)) (-4 *3 (-601 *4)) (-4 *3 (-1018)))) (-3271 (*1 *2 *2 *2 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-564 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1089))) (-4 *2 (-13 (-408 *5) (-27) (-1111))) (-4 *5 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *1 (-527 *5 *2 *6)) (-4 *6 (-1018)))) (-2384 (*1 *2 *3 *4 *4 *5) (|partial| -12 (-5 *4 (-564 *3)) (-5 *5 (-591 *3)) (-4 *3 (-13 (-408 *6) (-27) (-1111))) (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-527 *6 *3 *7)) (-4 *7 (-1018)))) (-4220 (*1 *2 *3 *4 *4 *3) (|partial| -12 (-5 *4 (-564 *3)) (-4 *3 (-13 (-408 *5) (-27) (-1111))) (-4 *5 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *2 (-2 (|:| -3060 *3) (|:| |coeff| *3))) (-5 *1 (-527 *5 *3 *6)) (-4 *6 (-1018)))) (-3899 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-564 *3)) (-4 *3 (-13 (-408 *5) (-27) (-1111))) (-4 *5 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525)))) (-5 *2 (-542 *3)) (-5 *1 (-527 *5 *3 *6)) (-4 *6 (-1018)))))
+(-10 -7 (-15 -3899 ((-542 |#2|) |#2| (-564 |#2|) (-564 |#2|))) (-15 -4220 ((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-564 |#2|) (-564 |#2|) |#2|)) (-15 -2384 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-564 |#2|) (-564 |#2|) (-591 |#2|))) (-15 -3271 ((-3 |#2| "failed") |#2| |#2| |#2| (-564 |#2|) (-564 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1089)))) (IF (|has| |#3| (-601 |#2|)) (-15 -2388 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4003 (-591 |#2|))) |#3| |#2| (-564 |#2|) (-564 |#2|) (-1089))) |%noBranch|))
+((-3618 (((-2 (|:| -3440 |#2|) (|:| |nconst| |#2|)) |#2| (-1089)) 64)) (-3508 (((-3 |#2| "failed") |#2| (-1089) (-781 |#2|) (-781 |#2|)) 163 (-12 (|has| |#2| (-1053)) (|has| |#1| (-566 (-825 (-525)))) (|has| |#1| (-819 (-525))))) (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1089)) 138 (-12 (|has| |#2| (-577)) (|has| |#1| (-566 (-825 (-525)))) (|has| |#1| (-819 (-525)))))) (-1512 (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1089)) 147 (-12 (|has| |#2| (-577)) (|has| |#1| (-566 (-825 (-525)))) (|has| |#1| (-819 (-525)))))))
+(((-528 |#1| |#2|) (-10 -7 (-15 -3618 ((-2 (|:| -3440 |#2|) (|:| |nconst| |#2|)) |#2| (-1089))) (IF (|has| |#1| (-566 (-825 (-525)))) (IF (|has| |#1| (-819 (-525))) (PROGN (IF (|has| |#2| (-577)) (PROGN (-15 -1512 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1089))) (-15 -3508 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1089)))) |%noBranch|) (IF (|has| |#2| (-1053)) (-15 -3508 ((-3 |#2| "failed") |#2| (-1089) (-781 |#2|) (-781 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|)) (-13 (-788) (-966 (-525)) (-429) (-587 (-525))) (-13 (-27) (-1111) (-408 |#1|))) (T -528))
+((-3508 (*1 *2 *2 *3 *4 *4) (|partial| -12 (-5 *3 (-1089)) (-5 *4 (-781 *2)) (-4 *2 (-1053)) (-4 *2 (-13 (-27) (-1111) (-408 *5))) (-4 *5 (-566 (-825 (-525)))) (-4 *5 (-819 (-525))) (-4 *5 (-13 (-788) (-966 (-525)) (-429) (-587 (-525)))) (-5 *1 (-528 *5 *2)))) (-3508 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1089)) (-4 *5 (-566 (-825 (-525)))) (-4 *5 (-819 (-525))) (-4 *5 (-13 (-788) (-966 (-525)) (-429) (-587 (-525)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-528 *5 *3)) (-4 *3 (-577)) (-4 *3 (-13 (-27) (-1111) (-408 *5))))) (-1512 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1089)) (-4 *5 (-566 (-825 (-525)))) (-4 *5 (-819 (-525))) (-4 *5 (-13 (-788) (-966 (-525)) (-429) (-587 (-525)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-528 *5 *3)) (-4 *3 (-577)) (-4 *3 (-13 (-27) (-1111) (-408 *5))))) (-3618 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-4 *5 (-13 (-788) (-966 (-525)) (-429) (-587 (-525)))) (-5 *2 (-2 (|:| -3440 *3) (|:| |nconst| *3))) (-5 *1 (-528 *5 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5))))))
+(-10 -7 (-15 -3618 ((-2 (|:| -3440 |#2|) (|:| |nconst| |#2|)) |#2| (-1089))) (IF (|has| |#1| (-566 (-825 (-525)))) (IF (|has| |#1| (-819 (-525))) (PROGN (IF (|has| |#2| (-577)) (PROGN (-15 -1512 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1089))) (-15 -3508 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1089)))) |%noBranch|) (IF (|has| |#2| (-1053)) (-15 -3508 ((-3 |#2| "failed") |#2| (-1089) (-781 |#2|) (-781 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
+((-1499 (((-3 (-2 (|:| |mainpart| (-385 |#2|)) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| (-385 |#2|)) (|:| |logand| (-385 |#2|)))))) "failed") (-385 |#2|) (-591 (-385 |#2|))) 41)) (-4141 (((-542 (-385 |#2|)) (-385 |#2|)) 28)) (-1636 (((-3 (-385 |#2|) "failed") (-385 |#2|)) 17)) (-2554 (((-3 (-2 (|:| -3060 (-385 |#2|)) (|:| |coeff| (-385 |#2|))) "failed") (-385 |#2|) (-385 |#2|)) 48)))
+(((-529 |#1| |#2|) (-10 -7 (-15 -4141 ((-542 (-385 |#2|)) (-385 |#2|))) (-15 -1636 ((-3 (-385 |#2|) "failed") (-385 |#2|))) (-15 -2554 ((-3 (-2 (|:| -3060 (-385 |#2|)) (|:| |coeff| (-385 |#2|))) "failed") (-385 |#2|) (-385 |#2|))) (-15 -1499 ((-3 (-2 (|:| |mainpart| (-385 |#2|)) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| (-385 |#2|)) (|:| |logand| (-385 |#2|)))))) "failed") (-385 |#2|) (-591 (-385 |#2|))))) (-13 (-341) (-138) (-966 (-525))) (-1147 |#1|)) (T -529))
+((-1499 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-591 (-385 *6))) (-5 *3 (-385 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-13 (-341) (-138) (-966 (-525)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-529 *5 *6)))) (-2554 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-341) (-138) (-966 (-525)))) (-4 *5 (-1147 *4)) (-5 *2 (-2 (|:| -3060 (-385 *5)) (|:| |coeff| (-385 *5)))) (-5 *1 (-529 *4 *5)) (-5 *3 (-385 *5)))) (-1636 (*1 *2 *2) (|partial| -12 (-5 *2 (-385 *4)) (-4 *4 (-1147 *3)) (-4 *3 (-13 (-341) (-138) (-966 (-525)))) (-5 *1 (-529 *3 *4)))) (-4141 (*1 *2 *3) (-12 (-4 *4 (-13 (-341) (-138) (-966 (-525)))) (-4 *5 (-1147 *4)) (-5 *2 (-542 (-385 *5))) (-5 *1 (-529 *4 *5)) (-5 *3 (-385 *5)))))
+(-10 -7 (-15 -4141 ((-542 (-385 |#2|)) (-385 |#2|))) (-15 -1636 ((-3 (-385 |#2|) "failed") (-385 |#2|))) (-15 -2554 ((-3 (-2 (|:| -3060 (-385 |#2|)) (|:| |coeff| (-385 |#2|))) "failed") (-385 |#2|) (-385 |#2|))) (-15 -1499 ((-3 (-2 (|:| |mainpart| (-385 |#2|)) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| (-385 |#2|)) (|:| |logand| (-385 |#2|)))))) "failed") (-385 |#2|) (-591 (-385 |#2|)))))
+((-3526 (((-3 (-525) "failed") |#1|) 14)) (-2666 (((-108) |#1|) 13)) (-1624 (((-525) |#1|) 9)))
+(((-530 |#1|) (-10 -7 (-15 -1624 ((-525) |#1|)) (-15 -2666 ((-108) |#1|)) (-15 -3526 ((-3 (-525) "failed") |#1|))) (-966 (-525))) (T -530))
+((-3526 (*1 *2 *3) (|partial| -12 (-5 *2 (-525)) (-5 *1 (-530 *3)) (-4 *3 (-966 *2)))) (-2666 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-530 *3)) (-4 *3 (-966 (-525))))) (-1624 (*1 *2 *3) (-12 (-5 *2 (-525)) (-5 *1 (-530 *3)) (-4 *3 (-966 *2)))))
+(-10 -7 (-15 -1624 ((-525) |#1|)) (-15 -2666 ((-108) |#1|)) (-15 -3526 ((-3 (-525) "failed") |#1|)))
+((-3310 (((-3 (-2 (|:| |mainpart| (-385 (-885 |#1|))) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| (-385 (-885 |#1|))) (|:| |logand| (-385 (-885 |#1|))))))) "failed") (-385 (-885 |#1|)) (-1089) (-591 (-385 (-885 |#1|)))) 48)) (-1360 (((-542 (-385 (-885 |#1|))) (-385 (-885 |#1|)) (-1089)) 28)) (-3626 (((-3 (-385 (-885 |#1|)) "failed") (-385 (-885 |#1|)) (-1089)) 23)) (-2501 (((-3 (-2 (|:| -3060 (-385 (-885 |#1|))) (|:| |coeff| (-385 (-885 |#1|)))) "failed") (-385 (-885 |#1|)) (-1089) (-385 (-885 |#1|))) 35)))
+(((-531 |#1|) (-10 -7 (-15 -1360 ((-542 (-385 (-885 |#1|))) (-385 (-885 |#1|)) (-1089))) (-15 -3626 ((-3 (-385 (-885 |#1|)) "failed") (-385 (-885 |#1|)) (-1089))) (-15 -3310 ((-3 (-2 (|:| |mainpart| (-385 (-885 |#1|))) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| (-385 (-885 |#1|))) (|:| |logand| (-385 (-885 |#1|))))))) "failed") (-385 (-885 |#1|)) (-1089) (-591 (-385 (-885 |#1|))))) (-15 -2501 ((-3 (-2 (|:| -3060 (-385 (-885 |#1|))) (|:| |coeff| (-385 (-885 |#1|)))) "failed") (-385 (-885 |#1|)) (-1089) (-385 (-885 |#1|))))) (-13 (-517) (-966 (-525)) (-138))) (T -531))
+((-2501 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1089)) (-4 *5 (-13 (-517) (-966 (-525)) (-138))) (-5 *2 (-2 (|:| -3060 (-385 (-885 *5))) (|:| |coeff| (-385 (-885 *5))))) (-5 *1 (-531 *5)) (-5 *3 (-385 (-885 *5))))) (-3310 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1089)) (-5 *5 (-591 (-385 (-885 *6)))) (-5 *3 (-385 (-885 *6))) (-4 *6 (-13 (-517) (-966 (-525)) (-138))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-531 *6)))) (-3626 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-385 (-885 *4))) (-5 *3 (-1089)) (-4 *4 (-13 (-517) (-966 (-525)) (-138))) (-5 *1 (-531 *4)))) (-1360 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-4 *5 (-13 (-517) (-966 (-525)) (-138))) (-5 *2 (-542 (-385 (-885 *5)))) (-5 *1 (-531 *5)) (-5 *3 (-385 (-885 *5))))))
+(-10 -7 (-15 -1360 ((-542 (-385 (-885 |#1|))) (-385 (-885 |#1|)) (-1089))) (-15 -3626 ((-3 (-385 (-885 |#1|)) "failed") (-385 (-885 |#1|)) (-1089))) (-15 -3310 ((-3 (-2 (|:| |mainpart| (-385 (-885 |#1|))) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| (-385 (-885 |#1|))) (|:| |logand| (-385 (-885 |#1|))))))) "failed") (-385 (-885 |#1|)) (-1089) (-591 (-385 (-885 |#1|))))) (-15 -2501 ((-3 (-2 (|:| -3060 (-385 (-885 |#1|))) (|:| |coeff| (-385 (-885 |#1|)))) "failed") (-385 (-885 |#1|)) (-1089) (-385 (-885 |#1|)))))
+((-3008 (((-108) $ $) 59)) (-1800 (((-108) $) 36)) (-2289 ((|#1| $) 30)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) 63)) (-1987 (($ $) 123)) (-3169 (($ $) 103)) (-2593 ((|#1| $) 28)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1361 (($ $) NIL)) (-1431 (($ $) 125)) (-3144 (($ $) 99)) (-1719 (($ $) 127)) (-1321 (($ $) 107)) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) 78)) (-3528 (((-525) $) 80)) (-4163 (((-3 $ "failed") $) 62)) (-2188 (($ |#1| |#1|) 26)) (-2134 (((-108) $) 33)) (-1784 (($) 89)) (-2824 (((-108) $) 43)) (-3956 (($ $ (-525)) NIL)) (-2732 (((-108) $) 34)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-1488 (($ $) 91)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-3270 (($ |#1| |#1|) 20) (($ |#1|) 25) (($ (-385 (-525))) 77)) (-4125 ((|#1| $) 27)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) 65) (($ (-591 $)) NIL)) (-2089 (((-3 $ "failed") $ $) 64)) (-1409 (($ $) 93)) (-1502 (($ $) 131)) (-1333 (($ $) 105)) (-1996 (($ $) 133)) (-1309 (($ $) 109)) (-1973 (($ $) 129)) (-3156 (($ $) 101)) (-2277 (((-108) $ |#1|) 31)) (-3022 (((-796) $) 85) (($ (-525)) 67) (($ $) NIL) (($ (-525)) 67)) (-2128 (((-712)) 87)) (-1563 (($ $) 145)) (-1371 (($ $) 115)) (-2495 (((-108) $ $) NIL)) (-1515 (($ $) 143)) (-1346 (($ $) 111)) (-1591 (($ $) 141)) (-1400 (($ $) 121)) (-3277 (($ $) 139)) (-1415 (($ $) 119)) (-1578 (($ $) 137)) (-1385 (($ $) 117)) (-1527 (($ $) 135)) (-1358 (($ $) 113)) (-3710 (($ $ (-854)) 55) (($ $ (-712)) NIL)) (-4191 (($) 21 T CONST)) (-4197 (($) 10 T CONST)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 37)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 35)) (-4164 (($ $) 41) (($ $ $) 42)) (-4156 (($ $ $) 40)) (** (($ $ (-854)) 54) (($ $ (-712)) NIL) (($ $ $) 95) (($ $ (-385 (-525))) 147)) (* (($ (-854) $) 51) (($ (-712) $) NIL) (($ (-525) $) 50) (($ $ $) 48)))
+(((-532 |#1|) (-515 |#1|) (-13 (-382) (-1111))) (T -532))
+NIL
+(-515 |#1|)
+((-2252 (((-3 (-591 (-1085 (-525))) "failed") (-591 (-1085 (-525))) (-1085 (-525))) 24)))
+(((-533) (-10 -7 (-15 -2252 ((-3 (-591 (-1085 (-525))) "failed") (-591 (-1085 (-525))) (-1085 (-525)))))) (T -533))
+((-2252 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-591 (-1085 (-525)))) (-5 *3 (-1085 (-525))) (-5 *1 (-533)))))
+(-10 -7 (-15 -2252 ((-3 (-591 (-1085 (-525))) "failed") (-591 (-1085 (-525))) (-1085 (-525)))))
+((-3194 (((-591 (-564 |#2|)) (-591 (-564 |#2|)) (-1089)) 19)) (-4041 (((-591 (-564 |#2|)) (-591 |#2|) (-1089)) 23)) (-1414 (((-591 (-564 |#2|)) (-591 (-564 |#2|)) (-591 (-564 |#2|))) 11)) (-2280 ((|#2| |#2| (-1089)) 54 (|has| |#1| (-517)))) (-1820 ((|#2| |#2| (-1089)) 78 (-12 (|has| |#2| (-263)) (|has| |#1| (-429))))) (-2028 (((-564 |#2|) (-564 |#2|) (-591 (-564 |#2|)) (-1089)) 25)) (-2567 (((-564 |#2|) (-591 (-564 |#2|))) 24)) (-3875 (((-542 |#2|) |#2| (-1089) (-1 (-542 |#2|) |#2| (-1089)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1089))) 103 (-12 (|has| |#2| (-263)) (|has| |#2| (-577)) (|has| |#2| (-966 (-1089))) (|has| |#1| (-566 (-825 (-525)))) (|has| |#1| (-429)) (|has| |#1| (-819 (-525)))))))
+(((-534 |#1| |#2|) (-10 -7 (-15 -3194 ((-591 (-564 |#2|)) (-591 (-564 |#2|)) (-1089))) (-15 -2567 ((-564 |#2|) (-591 (-564 |#2|)))) (-15 -2028 ((-564 |#2|) (-564 |#2|) (-591 (-564 |#2|)) (-1089))) (-15 -1414 ((-591 (-564 |#2|)) (-591 (-564 |#2|)) (-591 (-564 |#2|)))) (-15 -4041 ((-591 (-564 |#2|)) (-591 |#2|) (-1089))) (IF (|has| |#1| (-517)) (-15 -2280 (|#2| |#2| (-1089))) |%noBranch|) (IF (|has| |#1| (-429)) (IF (|has| |#2| (-263)) (PROGN (-15 -1820 (|#2| |#2| (-1089))) (IF (|has| |#1| (-566 (-825 (-525)))) (IF (|has| |#1| (-819 (-525))) (IF (|has| |#2| (-577)) (IF (|has| |#2| (-966 (-1089))) (-15 -3875 ((-542 |#2|) |#2| (-1089) (-1 (-542 |#2|) |#2| (-1089)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1089)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|)) (-788) (-408 |#1|)) (T -534))
+((-3875 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-1 (-542 *3) *3 (-1089))) (-5 *6 (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3 (-1089))) (-4 *3 (-263)) (-4 *3 (-577)) (-4 *3 (-966 *4)) (-4 *3 (-408 *7)) (-5 *4 (-1089)) (-4 *7 (-566 (-825 (-525)))) (-4 *7 (-429)) (-4 *7 (-819 (-525))) (-4 *7 (-788)) (-5 *2 (-542 *3)) (-5 *1 (-534 *7 *3)))) (-1820 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-429)) (-4 *4 (-788)) (-5 *1 (-534 *4 *2)) (-4 *2 (-263)) (-4 *2 (-408 *4)))) (-2280 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-517)) (-4 *4 (-788)) (-5 *1 (-534 *4 *2)) (-4 *2 (-408 *4)))) (-4041 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *6)) (-5 *4 (-1089)) (-4 *6 (-408 *5)) (-4 *5 (-788)) (-5 *2 (-591 (-564 *6))) (-5 *1 (-534 *5 *6)))) (-1414 (*1 *2 *2 *2) (-12 (-5 *2 (-591 (-564 *4))) (-4 *4 (-408 *3)) (-4 *3 (-788)) (-5 *1 (-534 *3 *4)))) (-2028 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-591 (-564 *6))) (-5 *4 (-1089)) (-5 *2 (-564 *6)) (-4 *6 (-408 *5)) (-4 *5 (-788)) (-5 *1 (-534 *5 *6)))) (-2567 (*1 *2 *3) (-12 (-5 *3 (-591 (-564 *5))) (-4 *4 (-788)) (-5 *2 (-564 *5)) (-5 *1 (-534 *4 *5)) (-4 *5 (-408 *4)))) (-3194 (*1 *2 *2 *3) (-12 (-5 *2 (-591 (-564 *5))) (-5 *3 (-1089)) (-4 *5 (-408 *4)) (-4 *4 (-788)) (-5 *1 (-534 *4 *5)))))
+(-10 -7 (-15 -3194 ((-591 (-564 |#2|)) (-591 (-564 |#2|)) (-1089))) (-15 -2567 ((-564 |#2|) (-591 (-564 |#2|)))) (-15 -2028 ((-564 |#2|) (-564 |#2|) (-591 (-564 |#2|)) (-1089))) (-15 -1414 ((-591 (-564 |#2|)) (-591 (-564 |#2|)) (-591 (-564 |#2|)))) (-15 -4041 ((-591 (-564 |#2|)) (-591 |#2|) (-1089))) (IF (|has| |#1| (-517)) (-15 -2280 (|#2| |#2| (-1089))) |%noBranch|) (IF (|has| |#1| (-429)) (IF (|has| |#2| (-263)) (PROGN (-15 -1820 (|#2| |#2| (-1089))) (IF (|has| |#1| (-566 (-825 (-525)))) (IF (|has| |#1| (-819 (-525))) (IF (|has| |#2| (-577)) (IF (|has| |#2| (-966 (-1089))) (-15 -3875 ((-542 |#2|) |#2| (-1089) (-1 (-542 |#2|) |#2| (-1089)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1089)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|))
+((-1242 (((-2 (|:| |answer| (-542 (-385 |#2|))) (|:| |a0| |#1|)) (-385 |#2|) (-1 |#2| |#2|) (-1 (-3 (-591 |#1|) "failed") (-525) |#1| |#1|)) 172)) (-1428 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-385 |#2|)) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| (-385 |#2|)) (|:| |logand| (-385 |#2|))))))) (|:| |a0| |#1|)) "failed") (-385 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3060 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-591 (-385 |#2|))) 148)) (-2983 (((-3 (-2 (|:| |mainpart| (-385 |#2|)) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| (-385 |#2|)) (|:| |logand| (-385 |#2|)))))) "failed") (-385 |#2|) (-1 |#2| |#2|) (-591 (-385 |#2|))) 145)) (-2195 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3060 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 133)) (-1821 (((-2 (|:| |answer| (-542 (-385 |#2|))) (|:| |a0| |#1|)) (-385 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3060 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 158)) (-3696 (((-3 (-2 (|:| -3060 (-385 |#2|)) (|:| |coeff| (-385 |#2|))) "failed") (-385 |#2|) (-1 |#2| |#2|) (-385 |#2|)) 175)) (-1842 (((-3 (-2 (|:| |answer| (-385 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3060 (-385 |#2|)) (|:| |coeff| (-385 |#2|))) "failed") (-385 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3060 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-385 |#2|)) 178)) (-1462 (((-2 (|:| |ir| (-542 (-385 |#2|))) (|:| |specpart| (-385 |#2|)) (|:| |polypart| |#2|)) (-385 |#2|) (-1 |#2| |#2|)) 84)) (-2774 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 90)) (-2669 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-385 |#2|)) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| (-385 |#2|)) (|:| |logand| (-385 |#2|))))))) (|:| |a0| |#1|)) "failed") (-385 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3400 |#1|) (|:| |sol?| (-108))) (-525) |#1|) (-591 (-385 |#2|))) 152)) (-3717 (((-3 (-572 |#1| |#2|) "failed") (-572 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3400 |#1|) (|:| |sol?| (-108))) (-525) |#1|)) 137)) (-1550 (((-2 (|:| |answer| (-542 (-385 |#2|))) (|:| |a0| |#1|)) (-385 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3400 |#1|) (|:| |sol?| (-108))) (-525) |#1|)) 162)) (-3218 (((-3 (-2 (|:| |answer| (-385 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3060 (-385 |#2|)) (|:| |coeff| (-385 |#2|))) "failed") (-385 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3400 |#1|) (|:| |sol?| (-108))) (-525) |#1|) (-385 |#2|)) 183)))
+(((-535 |#1| |#2|) (-10 -7 (-15 -1821 ((-2 (|:| |answer| (-542 (-385 |#2|))) (|:| |a0| |#1|)) (-385 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3060 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -1550 ((-2 (|:| |answer| (-542 (-385 |#2|))) (|:| |a0| |#1|)) (-385 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3400 |#1|) (|:| |sol?| (-108))) (-525) |#1|))) (-15 -1242 ((-2 (|:| |answer| (-542 (-385 |#2|))) (|:| |a0| |#1|)) (-385 |#2|) (-1 |#2| |#2|) (-1 (-3 (-591 |#1|) "failed") (-525) |#1| |#1|))) (-15 -1842 ((-3 (-2 (|:| |answer| (-385 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3060 (-385 |#2|)) (|:| |coeff| (-385 |#2|))) "failed") (-385 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3060 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-385 |#2|))) (-15 -3218 ((-3 (-2 (|:| |answer| (-385 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3060 (-385 |#2|)) (|:| |coeff| (-385 |#2|))) "failed") (-385 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3400 |#1|) (|:| |sol?| (-108))) (-525) |#1|) (-385 |#2|))) (-15 -1428 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-385 |#2|)) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| (-385 |#2|)) (|:| |logand| (-385 |#2|))))))) (|:| |a0| |#1|)) "failed") (-385 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3060 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-591 (-385 |#2|)))) (-15 -2669 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-385 |#2|)) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| (-385 |#2|)) (|:| |logand| (-385 |#2|))))))) (|:| |a0| |#1|)) "failed") (-385 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3400 |#1|) (|:| |sol?| (-108))) (-525) |#1|) (-591 (-385 |#2|)))) (-15 -3696 ((-3 (-2 (|:| -3060 (-385 |#2|)) (|:| |coeff| (-385 |#2|))) "failed") (-385 |#2|) (-1 |#2| |#2|) (-385 |#2|))) (-15 -2983 ((-3 (-2 (|:| |mainpart| (-385 |#2|)) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| (-385 |#2|)) (|:| |logand| (-385 |#2|)))))) "failed") (-385 |#2|) (-1 |#2| |#2|) (-591 (-385 |#2|)))) (-15 -2195 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3060 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -3717 ((-3 (-572 |#1| |#2|) "failed") (-572 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3400 |#1|) (|:| |sol?| (-108))) (-525) |#1|))) (-15 -1462 ((-2 (|:| |ir| (-542 (-385 |#2|))) (|:| |specpart| (-385 |#2|)) (|:| |polypart| |#2|)) (-385 |#2|) (-1 |#2| |#2|))) (-15 -2774 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-341) (-1147 |#1|)) (T -535))
+((-2774 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1147 *5)) (-4 *5 (-341)) (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3))) (-5 *1 (-535 *5 *3)))) (-1462 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-341)) (-5 *2 (-2 (|:| |ir| (-542 (-385 *6))) (|:| |specpart| (-385 *6)) (|:| |polypart| *6))) (-5 *1 (-535 *5 *6)) (-5 *3 (-385 *6)))) (-3717 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-572 *4 *5)) (-5 *3 (-1 (-2 (|:| |ans| *4) (|:| -3400 *4) (|:| |sol?| (-108))) (-525) *4)) (-4 *4 (-341)) (-4 *5 (-1147 *4)) (-5 *1 (-535 *4 *5)))) (-2195 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -3060 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-341)) (-5 *1 (-535 *4 *2)) (-4 *2 (-1147 *4)))) (-2983 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-591 (-385 *7))) (-4 *7 (-1147 *6)) (-5 *3 (-385 *7)) (-4 *6 (-341)) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-535 *6 *7)))) (-3696 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-341)) (-5 *2 (-2 (|:| -3060 (-385 *6)) (|:| |coeff| (-385 *6)))) (-5 *1 (-535 *5 *6)) (-5 *3 (-385 *6)))) (-2669 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-2 (|:| |ans| *7) (|:| -3400 *7) (|:| |sol?| (-108))) (-525) *7)) (-5 *6 (-591 (-385 *8))) (-4 *7 (-341)) (-4 *8 (-1147 *7)) (-5 *3 (-385 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-535 *7 *8)))) (-1428 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -3060 *7) (|:| |coeff| *7)) "failed") *7)) (-5 *6 (-591 (-385 *8))) (-4 *7 (-341)) (-4 *8 (-1147 *7)) (-5 *3 (-385 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-535 *7 *8)))) (-3218 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -3400 *6) (|:| |sol?| (-108))) (-525) *6)) (-4 *6 (-341)) (-4 *7 (-1147 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-385 *7)) (|:| |a0| *6)) (-2 (|:| -3060 (-385 *7)) (|:| |coeff| (-385 *7))) "failed")) (-5 *1 (-535 *6 *7)) (-5 *3 (-385 *7)))) (-1842 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -3060 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-341)) (-4 *7 (-1147 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-385 *7)) (|:| |a0| *6)) (-2 (|:| -3060 (-385 *7)) (|:| |coeff| (-385 *7))) "failed")) (-5 *1 (-535 *6 *7)) (-5 *3 (-385 *7)))) (-1242 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-591 *6) "failed") (-525) *6 *6)) (-4 *6 (-341)) (-4 *7 (-1147 *6)) (-5 *2 (-2 (|:| |answer| (-542 (-385 *7))) (|:| |a0| *6))) (-5 *1 (-535 *6 *7)) (-5 *3 (-385 *7)))) (-1550 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -3400 *6) (|:| |sol?| (-108))) (-525) *6)) (-4 *6 (-341)) (-4 *7 (-1147 *6)) (-5 *2 (-2 (|:| |answer| (-542 (-385 *7))) (|:| |a0| *6))) (-5 *1 (-535 *6 *7)) (-5 *3 (-385 *7)))) (-1821 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -3060 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-341)) (-4 *7 (-1147 *6)) (-5 *2 (-2 (|:| |answer| (-542 (-385 *7))) (|:| |a0| *6))) (-5 *1 (-535 *6 *7)) (-5 *3 (-385 *7)))))
+(-10 -7 (-15 -1821 ((-2 (|:| |answer| (-542 (-385 |#2|))) (|:| |a0| |#1|)) (-385 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3060 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -1550 ((-2 (|:| |answer| (-542 (-385 |#2|))) (|:| |a0| |#1|)) (-385 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3400 |#1|) (|:| |sol?| (-108))) (-525) |#1|))) (-15 -1242 ((-2 (|:| |answer| (-542 (-385 |#2|))) (|:| |a0| |#1|)) (-385 |#2|) (-1 |#2| |#2|) (-1 (-3 (-591 |#1|) "failed") (-525) |#1| |#1|))) (-15 -1842 ((-3 (-2 (|:| |answer| (-385 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3060 (-385 |#2|)) (|:| |coeff| (-385 |#2|))) "failed") (-385 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3060 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-385 |#2|))) (-15 -3218 ((-3 (-2 (|:| |answer| (-385 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3060 (-385 |#2|)) (|:| |coeff| (-385 |#2|))) "failed") (-385 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3400 |#1|) (|:| |sol?| (-108))) (-525) |#1|) (-385 |#2|))) (-15 -1428 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-385 |#2|)) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| (-385 |#2|)) (|:| |logand| (-385 |#2|))))))) (|:| |a0| |#1|)) "failed") (-385 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3060 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-591 (-385 |#2|)))) (-15 -2669 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-385 |#2|)) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| (-385 |#2|)) (|:| |logand| (-385 |#2|))))))) (|:| |a0| |#1|)) "failed") (-385 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3400 |#1|) (|:| |sol?| (-108))) (-525) |#1|) (-591 (-385 |#2|)))) (-15 -3696 ((-3 (-2 (|:| -3060 (-385 |#2|)) (|:| |coeff| (-385 |#2|))) "failed") (-385 |#2|) (-1 |#2| |#2|) (-385 |#2|))) (-15 -2983 ((-3 (-2 (|:| |mainpart| (-385 |#2|)) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| (-385 |#2|)) (|:| |logand| (-385 |#2|)))))) "failed") (-385 |#2|) (-1 |#2| |#2|) (-591 (-385 |#2|)))) (-15 -2195 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3060 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -3717 ((-3 (-572 |#1| |#2|) "failed") (-572 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3400 |#1|) (|:| |sol?| (-108))) (-525) |#1|))) (-15 -1462 ((-2 (|:| |ir| (-542 (-385 |#2|))) (|:| |specpart| (-385 |#2|)) (|:| |polypart| |#2|)) (-385 |#2|) (-1 |#2| |#2|))) (-15 -2774 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
+((-2851 (((-3 |#2| "failed") |#2| (-1089) (-1089)) 10)))
+(((-536 |#1| |#2|) (-10 -7 (-15 -2851 ((-3 |#2| "failed") |#2| (-1089) (-1089)))) (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))) (-13 (-1111) (-891) (-1053) (-29 |#1|))) (T -536))
+((-2851 (*1 *2 *2 *3 *3) (|partial| -12 (-5 *3 (-1089)) (-4 *4 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *1 (-536 *4 *2)) (-4 *2 (-13 (-1111) (-891) (-1053) (-29 *4))))))
+(-10 -7 (-15 -2851 ((-3 |#2| "failed") |#2| (-1089) (-1089))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1361 (($ $ (-525)) 66)) (-1947 (((-108) $ $) NIL)) (-3798 (($) NIL T CONST)) (-3069 (($ (-1085 (-525)) (-525)) 72)) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) 58)) (-4136 (($ $) 34)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-3873 (((-712) $) 15)) (-2824 (((-108) $) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3940 (((-525)) 29)) (-1289 (((-525) $) 32)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2784 (($ $ (-525)) 21)) (-2089 (((-3 $ "failed") $ $) 59)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) 16)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 61)) (-2603 (((-1070 (-525)) $) 18)) (-3571 (($ $) 23)) (-3022 (((-796) $) 87) (($ (-525)) 52) (($ $) NIL)) (-2128 (((-712)) 14)) (-2495 (((-108) $ $) NIL)) (-2176 (((-525) $ (-525)) 36)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 35 T CONST)) (-4197 (($) 19 T CONST)) (-4096 (((-108) $ $) 39)) (-4164 (($ $) 51) (($ $ $) 37)) (-4156 (($ $ $) 50)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 54) (($ $ $) 55)))
+(((-537 |#1| |#2|) (-802 |#1|) (-525) (-108)) (T -537))
+NIL
+(-802 |#1|)
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 21)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2144 (((-108) $) NIL)) (-2834 (((-712)) NIL)) (-2569 (($ $ (-854)) NIL (|has| $ (-346))) (($ $) NIL)) (-3734 (((-1099 (-854) (-712)) (-525)) 47)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3032 (((-712)) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 $ "failed") $) 75)) (-3528 (($ $) 74)) (-4171 (($ (-1171 $)) 73)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) 44)) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) 32)) (-3377 (($) NIL)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-3944 (($) 49)) (-4104 (((-108) $) NIL)) (-2299 (($ $) NIL) (($ $ (-712)) NIL)) (-2744 (((-108) $) NIL)) (-3873 (((-774 (-854)) $) NIL) (((-854) $) NIL)) (-2824 (((-108) $) NIL)) (-4046 (($) 37 (|has| $ (-346)))) (-1751 (((-108) $) NIL (|has| $ (-346)))) (-2771 (($ $ (-854)) NIL (|has| $ (-346))) (($ $) NIL)) (-2085 (((-3 $ "failed") $) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1382 (((-1085 $) $ (-854)) NIL (|has| $ (-346))) (((-1085 $) $) 83)) (-3016 (((-854) $) 55)) (-1924 (((-1085 $) $) NIL (|has| $ (-346)))) (-3040 (((-3 (-1085 $) "failed") $ $) NIL (|has| $ (-346))) (((-1085 $) $) NIL (|has| $ (-346)))) (-2054 (($ $ (-1085 $)) NIL (|has| $ (-346)))) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL T CONST)) (-2226 (($ (-854)) 48)) (-1476 (((-108) $) 67)) (-2047 (((-1036) $) NIL)) (-3857 (($) 19 (|has| $ (-346)))) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) 42)) (-1348 (((-396 $) $) NIL)) (-2163 (((-854)) 66) (((-774 (-854))) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2953 (((-3 (-712) "failed") $ $) NIL) (((-712) $) NIL)) (-4224 (((-128)) NIL)) (-3266 (($ $ (-712)) NIL) (($ $) NIL)) (-1316 (((-854) $) 65) (((-774 (-854)) $) NIL)) (-1478 (((-1085 $)) 82)) (-2616 (($) 54)) (-1608 (($) 38 (|has| $ (-346)))) (-3572 (((-631 $) (-1171 $)) NIL) (((-1171 $) $) 71)) (-1408 (((-525) $) 28)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) 30) (($ $) NIL) (($ (-385 (-525))) NIL)) (-1437 (((-3 $ "failed") $) NIL) (($ $) 84)) (-2128 (((-712)) 39)) (-4003 (((-1171 $) (-854)) 77) (((-1171 $)) 76)) (-2495 (((-108) $ $) NIL)) (-1884 (((-108) $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) 22 T CONST)) (-4197 (($) 18 T CONST)) (-4227 (($ $ (-712)) NIL (|has| $ (-346))) (($ $) NIL (|has| $ (-346)))) (-4196 (($ $ (-712)) NIL) (($ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) 26)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 61) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL)))
+(((-538 |#1|) (-13 (-327) (-307 $) (-566 (-525))) (-854)) (T -538))
+NIL
+(-13 (-327) (-307 $) (-566 (-525)))
+((-2975 (((-1176) (-1072)) 10)))
+(((-539) (-10 -7 (-15 -2975 ((-1176) (-1072))))) (T -539))
+((-2975 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-539)))))
+(-10 -7 (-15 -2975 ((-1176) (-1072))))
+((-2787 (((-542 |#2|) (-542 |#2|)) 40)) (-4093 (((-591 |#2|) (-542 |#2|)) 42)) (-4109 ((|#2| (-542 |#2|)) 48)))
+(((-540 |#1| |#2|) (-10 -7 (-15 -2787 ((-542 |#2|) (-542 |#2|))) (-15 -4093 ((-591 |#2|) (-542 |#2|))) (-15 -4109 (|#2| (-542 |#2|)))) (-13 (-429) (-966 (-525)) (-788) (-587 (-525))) (-13 (-29 |#1|) (-1111))) (T -540))
+((-4109 (*1 *2 *3) (-12 (-5 *3 (-542 *2)) (-4 *2 (-13 (-29 *4) (-1111))) (-5 *1 (-540 *4 *2)) (-4 *4 (-13 (-429) (-966 (-525)) (-788) (-587 (-525)))))) (-4093 (*1 *2 *3) (-12 (-5 *3 (-542 *5)) (-4 *5 (-13 (-29 *4) (-1111))) (-4 *4 (-13 (-429) (-966 (-525)) (-788) (-587 (-525)))) (-5 *2 (-591 *5)) (-5 *1 (-540 *4 *5)))) (-2787 (*1 *2 *2) (-12 (-5 *2 (-542 *4)) (-4 *4 (-13 (-29 *3) (-1111))) (-4 *3 (-13 (-429) (-966 (-525)) (-788) (-587 (-525)))) (-5 *1 (-540 *3 *4)))))
+(-10 -7 (-15 -2787 ((-542 |#2|) (-542 |#2|))) (-15 -4093 ((-591 |#2|) (-542 |#2|))) (-15 -4109 (|#2| (-542 |#2|))))
+((-1340 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) 44) (((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed")) 11) (((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3060 |#1|) (|:| |coeff| |#1|)) "failed")) 35) (((-542 |#2|) (-1 |#2| |#1|) (-542 |#1|)) 30)))
+(((-541 |#1| |#2|) (-10 -7 (-15 -1340 ((-542 |#2|) (-1 |#2| |#1|) (-542 |#1|))) (-15 -1340 ((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3060 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -1340 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -1340 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")))) (-341) (-341)) (T -541))
+((-1340 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| |mainpart| *5) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| *5) (|:| |logand| *5))))) "failed")) (-4 *5 (-341)) (-4 *6 (-341)) (-5 *2 (-2 (|:| |mainpart| *6) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| *6) (|:| |logand| *6)))))) (-5 *1 (-541 *5 *6)))) (-1340 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed")) (-4 *5 (-341)) (-4 *2 (-341)) (-5 *1 (-541 *5 *2)))) (-1340 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -3060 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-341)) (-4 *6 (-341)) (-5 *2 (-2 (|:| -3060 *6) (|:| |coeff| *6))) (-5 *1 (-541 *5 *6)))) (-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-542 *5)) (-4 *5 (-341)) (-4 *6 (-341)) (-5 *2 (-542 *6)) (-5 *1 (-541 *5 *6)))))
+(-10 -7 (-15 -1340 ((-542 |#2|) (-1 |#2| |#1|) (-542 |#1|))) (-15 -1340 ((-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3060 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -1340 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -1340 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed"))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) 69)) (-3528 ((|#1| $) NIL)) (-3060 ((|#1| $) 26)) (-1759 (((-591 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 28)) (-3824 (($ |#1| (-591 (-2 (|:| |scalar| (-385 (-525))) (|:| |coeff| (-1085 |#1|)) (|:| |logand| (-1085 |#1|)))) (-591 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 24)) (-3802 (((-591 (-2 (|:| |scalar| (-385 (-525))) (|:| |coeff| (-1085 |#1|)) (|:| |logand| (-1085 |#1|)))) $) 27)) (-2339 (((-1072) $) NIL)) (-1817 (($ |#1| |#1|) 33) (($ |#1| (-1089)) 44 (|has| |#1| (-966 (-1089))))) (-2047 (((-1036) $) NIL)) (-2677 (((-108) $) 30)) (-3266 ((|#1| $ (-1 |#1| |#1|)) 81) ((|#1| $ (-1089)) 82 (|has| |#1| (-833 (-1089))))) (-3022 (((-796) $) 96) (($ |#1|) 25)) (-4191 (($) 16 T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) 15) (($ $ $) NIL)) (-4156 (($ $ $) 78)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 14) (($ (-385 (-525)) $) 36) (($ $ (-385 (-525))) NIL)))
+(((-542 |#1|) (-13 (-659 (-385 (-525))) (-966 |#1|) (-10 -8 (-15 -3824 ($ |#1| (-591 (-2 (|:| |scalar| (-385 (-525))) (|:| |coeff| (-1085 |#1|)) (|:| |logand| (-1085 |#1|)))) (-591 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -3060 (|#1| $)) (-15 -3802 ((-591 (-2 (|:| |scalar| (-385 (-525))) (|:| |coeff| (-1085 |#1|)) (|:| |logand| (-1085 |#1|)))) $)) (-15 -1759 ((-591 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -2677 ((-108) $)) (-15 -1817 ($ |#1| |#1|)) (-15 -3266 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-833 (-1089))) (-15 -3266 (|#1| $ (-1089))) |%noBranch|) (IF (|has| |#1| (-966 (-1089))) (-15 -1817 ($ |#1| (-1089))) |%noBranch|))) (-341)) (T -542))
+((-3824 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-591 (-2 (|:| |scalar| (-385 (-525))) (|:| |coeff| (-1085 *2)) (|:| |logand| (-1085 *2))))) (-5 *4 (-591 (-2 (|:| |integrand| *2) (|:| |intvar| *2)))) (-4 *2 (-341)) (-5 *1 (-542 *2)))) (-3060 (*1 *2 *1) (-12 (-5 *1 (-542 *2)) (-4 *2 (-341)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| |scalar| (-385 (-525))) (|:| |coeff| (-1085 *3)) (|:| |logand| (-1085 *3))))) (-5 *1 (-542 *3)) (-4 *3 (-341)))) (-1759 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-542 *3)) (-4 *3 (-341)))) (-2677 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-542 *3)) (-4 *3 (-341)))) (-1817 (*1 *1 *2 *2) (-12 (-5 *1 (-542 *2)) (-4 *2 (-341)))) (-3266 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-542 *2)) (-4 *2 (-341)))) (-3266 (*1 *2 *1 *3) (-12 (-4 *2 (-341)) (-4 *2 (-833 *3)) (-5 *1 (-542 *2)) (-5 *3 (-1089)))) (-1817 (*1 *1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *1 (-542 *2)) (-4 *2 (-966 *3)) (-4 *2 (-341)))))
+(-13 (-659 (-385 (-525))) (-966 |#1|) (-10 -8 (-15 -3824 ($ |#1| (-591 (-2 (|:| |scalar| (-385 (-525))) (|:| |coeff| (-1085 |#1|)) (|:| |logand| (-1085 |#1|)))) (-591 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -3060 (|#1| $)) (-15 -3802 ((-591 (-2 (|:| |scalar| (-385 (-525))) (|:| |coeff| (-1085 |#1|)) (|:| |logand| (-1085 |#1|)))) $)) (-15 -1759 ((-591 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -2677 ((-108) $)) (-15 -1817 ($ |#1| |#1|)) (-15 -3266 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-833 (-1089))) (-15 -3266 (|#1| $ (-1089))) |%noBranch|) (IF (|has| |#1| (-966 (-1089))) (-15 -1817 ($ |#1| (-1089))) |%noBranch|)))
+((-2898 (((-108) |#1|) 16)) (-3139 (((-3 |#1| "failed") |#1|) 14)) (-2119 (((-2 (|:| -2672 |#1|) (|:| -2008 (-712))) |#1|) 31) (((-3 |#1| "failed") |#1| (-712)) 18)) (-2147 (((-108) |#1| (-712)) 19)) (-1558 ((|#1| |#1|) 32)) (-3903 ((|#1| |#1| (-712)) 34)))
+(((-543 |#1|) (-10 -7 (-15 -2147 ((-108) |#1| (-712))) (-15 -2119 ((-3 |#1| "failed") |#1| (-712))) (-15 -2119 ((-2 (|:| -2672 |#1|) (|:| -2008 (-712))) |#1|)) (-15 -3903 (|#1| |#1| (-712))) (-15 -2898 ((-108) |#1|)) (-15 -3139 ((-3 |#1| "failed") |#1|)) (-15 -1558 (|#1| |#1|))) (-510)) (T -543))
+((-1558 (*1 *2 *2) (-12 (-5 *1 (-543 *2)) (-4 *2 (-510)))) (-3139 (*1 *2 *2) (|partial| -12 (-5 *1 (-543 *2)) (-4 *2 (-510)))) (-2898 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-543 *3)) (-4 *3 (-510)))) (-3903 (*1 *2 *2 *3) (-12 (-5 *3 (-712)) (-5 *1 (-543 *2)) (-4 *2 (-510)))) (-2119 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -2672 *3) (|:| -2008 (-712)))) (-5 *1 (-543 *3)) (-4 *3 (-510)))) (-2119 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-712)) (-5 *1 (-543 *2)) (-4 *2 (-510)))) (-2147 (*1 *2 *3 *4) (-12 (-5 *4 (-712)) (-5 *2 (-108)) (-5 *1 (-543 *3)) (-4 *3 (-510)))))
+(-10 -7 (-15 -2147 ((-108) |#1| (-712))) (-15 -2119 ((-3 |#1| "failed") |#1| (-712))) (-15 -2119 ((-2 (|:| -2672 |#1|) (|:| -2008 (-712))) |#1|)) (-15 -3903 (|#1| |#1| (-712))) (-15 -2898 ((-108) |#1|)) (-15 -3139 ((-3 |#1| "failed") |#1|)) (-15 -1558 (|#1| |#1|)))
+((-1959 (((-1085 |#1|) (-854)) 27)))
+(((-544 |#1|) (-10 -7 (-15 -1959 ((-1085 |#1|) (-854)))) (-327)) (T -544))
+((-1959 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-544 *4)) (-4 *4 (-327)))))
+(-10 -7 (-15 -1959 ((-1085 |#1|) (-854))))
+((-2787 (((-542 (-385 (-885 |#1|))) (-542 (-385 (-885 |#1|)))) 27)) (-4141 (((-3 (-294 |#1|) (-591 (-294 |#1|))) (-385 (-885 |#1|)) (-1089)) 33 (|has| |#1| (-138)))) (-4093 (((-591 (-294 |#1|)) (-542 (-385 (-885 |#1|)))) 19)) (-3306 (((-294 |#1|) (-385 (-885 |#1|)) (-1089)) 31 (|has| |#1| (-138)))) (-4109 (((-294 |#1|) (-542 (-385 (-885 |#1|)))) 21)))
+(((-545 |#1|) (-10 -7 (-15 -2787 ((-542 (-385 (-885 |#1|))) (-542 (-385 (-885 |#1|))))) (-15 -4093 ((-591 (-294 |#1|)) (-542 (-385 (-885 |#1|))))) (-15 -4109 ((-294 |#1|) (-542 (-385 (-885 |#1|))))) (IF (|has| |#1| (-138)) (PROGN (-15 -4141 ((-3 (-294 |#1|) (-591 (-294 |#1|))) (-385 (-885 |#1|)) (-1089))) (-15 -3306 ((-294 |#1|) (-385 (-885 |#1|)) (-1089)))) |%noBranch|)) (-13 (-429) (-966 (-525)) (-788) (-587 (-525)))) (T -545))
+((-3306 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-1089)) (-4 *5 (-138)) (-4 *5 (-13 (-429) (-966 (-525)) (-788) (-587 (-525)))) (-5 *2 (-294 *5)) (-5 *1 (-545 *5)))) (-4141 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-1089)) (-4 *5 (-138)) (-4 *5 (-13 (-429) (-966 (-525)) (-788) (-587 (-525)))) (-5 *2 (-3 (-294 *5) (-591 (-294 *5)))) (-5 *1 (-545 *5)))) (-4109 (*1 *2 *3) (-12 (-5 *3 (-542 (-385 (-885 *4)))) (-4 *4 (-13 (-429) (-966 (-525)) (-788) (-587 (-525)))) (-5 *2 (-294 *4)) (-5 *1 (-545 *4)))) (-4093 (*1 *2 *3) (-12 (-5 *3 (-542 (-385 (-885 *4)))) (-4 *4 (-13 (-429) (-966 (-525)) (-788) (-587 (-525)))) (-5 *2 (-591 (-294 *4))) (-5 *1 (-545 *4)))) (-2787 (*1 *2 *2) (-12 (-5 *2 (-542 (-385 (-885 *3)))) (-4 *3 (-13 (-429) (-966 (-525)) (-788) (-587 (-525)))) (-5 *1 (-545 *3)))))
+(-10 -7 (-15 -2787 ((-542 (-385 (-885 |#1|))) (-542 (-385 (-885 |#1|))))) (-15 -4093 ((-591 (-294 |#1|)) (-542 (-385 (-885 |#1|))))) (-15 -4109 ((-294 |#1|) (-542 (-385 (-885 |#1|))))) (IF (|has| |#1| (-138)) (PROGN (-15 -4141 ((-3 (-294 |#1|) (-591 (-294 |#1|))) (-385 (-885 |#1|)) (-1089))) (-15 -3306 ((-294 |#1|) (-385 (-885 |#1|)) (-1089)))) |%noBranch|))
+((-1613 (((-591 (-631 (-525))) (-591 (-525)) (-591 (-838 (-525)))) 46) (((-591 (-631 (-525))) (-591 (-525))) 47) (((-631 (-525)) (-591 (-525)) (-838 (-525))) 42)) (-2551 (((-712) (-591 (-525))) 40)))
+(((-546) (-10 -7 (-15 -2551 ((-712) (-591 (-525)))) (-15 -1613 ((-631 (-525)) (-591 (-525)) (-838 (-525)))) (-15 -1613 ((-591 (-631 (-525))) (-591 (-525)))) (-15 -1613 ((-591 (-631 (-525))) (-591 (-525)) (-591 (-838 (-525))))))) (T -546))
+((-1613 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-525))) (-5 *4 (-591 (-838 (-525)))) (-5 *2 (-591 (-631 (-525)))) (-5 *1 (-546)))) (-1613 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-591 (-631 (-525)))) (-5 *1 (-546)))) (-1613 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-525))) (-5 *4 (-838 (-525))) (-5 *2 (-631 (-525))) (-5 *1 (-546)))) (-2551 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-712)) (-5 *1 (-546)))))
+(-10 -7 (-15 -2551 ((-712) (-591 (-525)))) (-15 -1613 ((-631 (-525)) (-591 (-525)) (-838 (-525)))) (-15 -1613 ((-591 (-631 (-525))) (-591 (-525)))) (-15 -1613 ((-591 (-631 (-525))) (-591 (-525)) (-591 (-838 (-525))))))
+((-2270 (((-591 |#5|) |#5| (-108)) 73)) (-2541 (((-108) |#5| (-591 |#5|)) 30)))
+(((-547 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2270 ((-591 |#5|) |#5| (-108))) (-15 -2541 ((-108) |#5| (-591 |#5|)))) (-13 (-286) (-138)) (-734) (-788) (-989 |#1| |#2| |#3|) (-1027 |#1| |#2| |#3| |#4|)) (T -547))
+((-2541 (*1 *2 *3 *4) (-12 (-5 *4 (-591 *3)) (-4 *3 (-1027 *5 *6 *7 *8)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-989 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-547 *5 *6 *7 *8 *3)))) (-2270 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-989 *5 *6 *7)) (-5 *2 (-591 *3)) (-5 *1 (-547 *5 *6 *7 *8 *3)) (-4 *3 (-1027 *5 *6 *7 *8)))))
+(-10 -7 (-15 -2270 ((-591 |#5|) |#5| (-108))) (-15 -2541 ((-108) |#5| (-591 |#5|))))
+((-3008 (((-108) $ $) NIL (|has| (-135) (-1018)))) (-3747 (($ $) 34)) (-3845 (($ $) NIL)) (-1963 (($ $ (-135)) NIL) (($ $ (-132)) NIL)) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3247 (((-108) $ $) 51)) (-3232 (((-108) $ $ (-525)) 46)) (-2787 (((-591 $) $ (-135)) 60) (((-591 $) $ (-132)) 61)) (-3203 (((-108) (-1 (-108) (-135) (-135)) $) NIL) (((-108) $) NIL (|has| (-135) (-788)))) (-4026 (($ (-1 (-108) (-135) (-135)) $) NIL (|has| $ (-6 -4251))) (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| (-135) (-788))))) (-3327 (($ (-1 (-108) (-135) (-135)) $) NIL) (($ $) NIL (|has| (-135) (-788)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 (((-135) $ (-525) (-135)) 45 (|has| $ (-6 -4251))) (((-135) $ (-1138 (-525)) (-135)) NIL (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-2502 (($ $ (-135)) 64) (($ $ (-132)) 65)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-4128 (($ $ (-1138 (-525)) $) 44)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018))))) (-3677 (($ (-135) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018)))) (($ (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250)))) (-1227 (((-135) (-1 (-135) (-135) (-135)) $ (-135) (-135)) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018)))) (((-135) (-1 (-135) (-135) (-135)) $ (-135)) NIL (|has| $ (-6 -4250))) (((-135) (-1 (-135) (-135) (-135)) $) NIL (|has| $ (-6 -4250)))) (-3255 (((-135) $ (-525) (-135)) NIL (|has| $ (-6 -4251)))) (-3217 (((-135) $ (-525)) NIL)) (-3258 (((-108) $ $) 72)) (-3004 (((-525) (-1 (-108) (-135)) $) NIL) (((-525) (-135) $) NIL (|has| (-135) (-1018))) (((-525) (-135) $ (-525)) 48 (|has| (-135) (-1018))) (((-525) $ $ (-525)) 47) (((-525) (-132) $ (-525)) 50)) (-3454 (((-591 (-135)) $) NIL (|has| $ (-6 -4250)))) (-1268 (($ (-712) (-135)) 9)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) 28 (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (|has| (-135) (-788)))) (-2131 (($ (-1 (-108) (-135) (-135)) $ $) NIL) (($ $ $) NIL (|has| (-135) (-788)))) (-2552 (((-591 (-135)) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-135) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018))))) (-3468 (((-525) $) 42 (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| (-135) (-788)))) (-4008 (((-108) $ $ (-135)) 73)) (-3163 (((-712) $ $ (-135)) 70)) (-3249 (($ (-1 (-135) (-135)) $) 33 (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-135) (-135)) $) NIL) (($ (-1 (-135) (-135) (-135)) $ $) NIL)) (-2107 (($ $) 37)) (-2814 (($ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2513 (($ $ (-135)) 62) (($ $ (-132)) 63)) (-2339 (((-1072) $) 38 (|has| (-135) (-1018)))) (-4189 (($ (-135) $ (-525)) NIL) (($ $ $ (-525)) 23)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-525) $) 69) (((-1036) $) NIL (|has| (-135) (-1018)))) (-3066 (((-135) $) NIL (|has| (-525) (-788)))) (-2069 (((-3 (-135) "failed") (-1 (-108) (-135)) $) NIL)) (-1941 (($ $ (-135)) NIL (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-135)))) NIL (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018)))) (($ $ (-273 (-135))) NIL (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018)))) (($ $ (-135) (-135)) NIL (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018)))) (($ $ (-591 (-135)) (-591 (-135))) NIL (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) (-135) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018))))) (-3339 (((-591 (-135)) $) NIL)) (-3028 (((-108) $) 12)) (-3209 (($) 10)) (-3164 (((-135) $ (-525) (-135)) NIL) (((-135) $ (-525)) 52) (($ $ (-1138 (-525))) 21) (($ $ $) NIL)) (-2777 (($ $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-2064 (((-712) (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250))) (((-712) (-135) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018))))) (-4063 (($ $ $ (-525)) 66 (|has| $ (-6 -4251)))) (-3199 (($ $) 17)) (-1408 (((-501) $) NIL (|has| (-135) (-566 (-501))))) (-3036 (($ (-591 (-135))) NIL)) (-3690 (($ $ (-135)) NIL) (($ (-135) $) NIL) (($ $ $) 16) (($ (-591 $)) 67)) (-3022 (($ (-135)) NIL) (((-796) $) 27 (|has| (-135) (-565 (-796))))) (-4158 (((-108) (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) NIL (|has| (-135) (-788)))) (-4119 (((-108) $ $) NIL (|has| (-135) (-788)))) (-4096 (((-108) $ $) 14 (|has| (-135) (-1018)))) (-4126 (((-108) $ $) NIL (|has| (-135) (-788)))) (-4112 (((-108) $ $) 15 (|has| (-135) (-788)))) (-4045 (((-712) $) 13 (|has| $ (-6 -4250)))))
+(((-548 |#1|) (-13 (-1058) (-10 -8 (-15 -2047 ((-525) $)))) (-525)) (T -548))
+((-2047 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-548 *3)) (-14 *3 *2))))
+(-13 (-1058) (-10 -8 (-15 -2047 ((-525) $))))
+((-2161 (((-2 (|:| |num| |#4|) (|:| |den| (-525))) |#4| |#2|) 23) (((-2 (|:| |num| |#4|) (|:| |den| (-525))) |#4| |#2| (-1013 |#4|)) 32)))
+(((-549 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2161 ((-2 (|:| |num| |#4|) (|:| |den| (-525))) |#4| |#2| (-1013 |#4|))) (-15 -2161 ((-2 (|:| |num| |#4|) (|:| |den| (-525))) |#4| |#2|))) (-734) (-788) (-517) (-882 |#3| |#1| |#2|)) (T -549))
+((-2161 (*1 *2 *3 *4) (-12 (-4 *5 (-734)) (-4 *4 (-788)) (-4 *6 (-517)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-525)))) (-5 *1 (-549 *5 *4 *6 *3)) (-4 *3 (-882 *6 *5 *4)))) (-2161 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1013 *3)) (-4 *3 (-882 *7 *6 *4)) (-4 *6 (-734)) (-4 *4 (-788)) (-4 *7 (-517)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-525)))) (-5 *1 (-549 *6 *4 *7 *3)))))
+(-10 -7 (-15 -2161 ((-2 (|:| |num| |#4|) (|:| |den| (-525))) |#4| |#2| (-1013 |#4|))) (-15 -2161 ((-2 (|:| |num| |#4|) (|:| |den| (-525))) |#4| |#2|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 63)) (-1507 (((-591 (-1003)) $) NIL)) (-2037 (((-1089) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-2121 (($ $ (-525)) 54) (($ $ (-525) (-525)) 55)) (-1631 (((-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))) $) 60)) (-2212 (($ $) 100)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1848 (((-796) (-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))) (-955 (-781 (-525))) (-1089) |#1| (-385 (-525))) 215)) (-3682 (($ (-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|)))) 34)) (-3798 (($) NIL T CONST)) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3123 (((-108) $) NIL)) (-3873 (((-525) $) 58) (((-525) $ (-525)) 59)) (-2824 (((-108) $) NIL)) (-3111 (($ $ (-854)) 76)) (-3264 (($ (-1 |#1| (-525)) $) 73)) (-2202 (((-108) $) 25)) (-1480 (($ |#1| (-525)) 22) (($ $ (-1003) (-525)) NIL) (($ $ (-591 (-1003)) (-591 (-525))) NIL)) (-1340 (($ (-1 |#1| |#1|) $) 67)) (-1693 (($ (-955 (-781 (-525))) (-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|)))) 13)) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-4141 (($ $) 112 (|has| |#1| (-37 (-385 (-525)))))) (-2630 (((-3 $ "failed") $ $ (-108)) 99)) (-1456 (($ $ $) 108)) (-2047 (((-1036) $) NIL)) (-3054 (((-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))) $) 15)) (-3257 (((-955 (-781 (-525))) $) 14)) (-2784 (($ $ (-525)) 45)) (-2089 (((-3 $ "failed") $ $) NIL (|has| |#1| (-517)))) (-4132 (((-1070 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-525)))))) (-3164 ((|#1| $ (-525)) 57) (($ $ $) NIL (|has| (-525) (-1030)))) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-525) |#1|)))) (($ $) 70 (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (-1316 (((-525) $) NIL)) (-3571 (($ $) 46)) (-3022 (((-796) $) NIL) (($ (-525)) 28) (($ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $) NIL (|has| |#1| (-517))) (($ |#1|) 27 (|has| |#1| (-160)))) (-2560 ((|#1| $ (-525)) 56)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) 37)) (-1682 ((|#1| $) NIL)) (-1687 (($ $) 180 (|has| |#1| (-37 (-385 (-525)))))) (-2596 (($ $) 156 (|has| |#1| (-37 (-385 (-525)))))) (-2539 (($ $) 177 (|has| |#1| (-37 (-385 (-525)))))) (-2158 (($ $) 153 (|has| |#1| (-37 (-385 (-525)))))) (-1258 (($ $) 182 (|has| |#1| (-37 (-385 (-525)))))) (-4165 (($ $) 159 (|has| |#1| (-37 (-385 (-525)))))) (-1331 (($ $ (-385 (-525))) 146 (|has| |#1| (-37 (-385 (-525)))))) (-3564 (($ $ |#1|) 121 (|has| |#1| (-37 (-385 (-525)))))) (-2632 (($ $) 150 (|has| |#1| (-37 (-385 (-525)))))) (-4155 (($ $) 148 (|has| |#1| (-37 (-385 (-525)))))) (-3861 (($ $) 183 (|has| |#1| (-37 (-385 (-525)))))) (-3714 (($ $) 160 (|has| |#1| (-37 (-385 (-525)))))) (-3718 (($ $) 181 (|has| |#1| (-37 (-385 (-525)))))) (-2197 (($ $) 158 (|has| |#1| (-37 (-385 (-525)))))) (-2175 (($ $) 178 (|has| |#1| (-37 (-385 (-525)))))) (-1557 (($ $) 154 (|has| |#1| (-37 (-385 (-525)))))) (-3421 (($ $) 188 (|has| |#1| (-37 (-385 (-525)))))) (-3061 (($ $) 168 (|has| |#1| (-37 (-385 (-525)))))) (-4208 (($ $) 185 (|has| |#1| (-37 (-385 (-525)))))) (-1835 (($ $) 163 (|has| |#1| (-37 (-385 (-525)))))) (-3644 (($ $) 192 (|has| |#1| (-37 (-385 (-525)))))) (-4036 (($ $) 172 (|has| |#1| (-37 (-385 (-525)))))) (-3234 (($ $) 194 (|has| |#1| (-37 (-385 (-525)))))) (-3997 (($ $) 174 (|has| |#1| (-37 (-385 (-525)))))) (-3248 (($ $) 190 (|has| |#1| (-37 (-385 (-525)))))) (-1609 (($ $) 170 (|has| |#1| (-37 (-385 (-525)))))) (-2674 (($ $) 187 (|has| |#1| (-37 (-385 (-525)))))) (-3477 (($ $) 166 (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-2176 ((|#1| $ (-525)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-525)))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 29 T CONST)) (-4197 (($) 38 T CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-525) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (-4096 (((-108) $ $) 65)) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341)))) (-4164 (($ $) 84) (($ $ $) 64)) (-4156 (($ $ $) 81)) (** (($ $ (-854)) NIL) (($ $ (-712)) 103)) (* (($ (-854) $) 89) (($ (-712) $) 87) (($ (-525) $) 85) (($ $ $) 95) (($ $ |#1|) NIL) (($ |#1| $) 115) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))))
+(((-550 |#1|) (-13 (-1149 |#1| (-525)) (-10 -8 (-15 -1693 ($ (-955 (-781 (-525))) (-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))))) (-15 -3257 ((-955 (-781 (-525))) $)) (-15 -3054 ((-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))) $)) (-15 -3682 ($ (-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))))) (-15 -2202 ((-108) $)) (-15 -3264 ($ (-1 |#1| (-525)) $)) (-15 -2630 ((-3 $ "failed") $ $ (-108))) (-15 -2212 ($ $)) (-15 -1456 ($ $ $)) (-15 -1848 ((-796) (-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))) (-955 (-781 (-525))) (-1089) |#1| (-385 (-525)))) (IF (|has| |#1| (-37 (-385 (-525)))) (PROGN (-15 -4141 ($ $)) (-15 -3564 ($ $ |#1|)) (-15 -1331 ($ $ (-385 (-525)))) (-15 -4155 ($ $)) (-15 -2632 ($ $)) (-15 -2158 ($ $)) (-15 -1557 ($ $)) (-15 -2596 ($ $)) (-15 -2197 ($ $)) (-15 -4165 ($ $)) (-15 -3714 ($ $)) (-15 -1835 ($ $)) (-15 -3477 ($ $)) (-15 -3061 ($ $)) (-15 -1609 ($ $)) (-15 -4036 ($ $)) (-15 -3997 ($ $)) (-15 -2539 ($ $)) (-15 -2175 ($ $)) (-15 -1687 ($ $)) (-15 -3718 ($ $)) (-15 -1258 ($ $)) (-15 -3861 ($ $)) (-15 -4208 ($ $)) (-15 -2674 ($ $)) (-15 -3421 ($ $)) (-15 -3248 ($ $)) (-15 -3644 ($ $)) (-15 -3234 ($ $))) |%noBranch|))) (-975)) (T -550))
+((-2202 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-550 *3)) (-4 *3 (-975)))) (-1693 (*1 *1 *2 *3) (-12 (-5 *2 (-955 (-781 (-525)))) (-5 *3 (-1070 (-2 (|:| |k| (-525)) (|:| |c| *4)))) (-4 *4 (-975)) (-5 *1 (-550 *4)))) (-3257 (*1 *2 *1) (-12 (-5 *2 (-955 (-781 (-525)))) (-5 *1 (-550 *3)) (-4 *3 (-975)))) (-3054 (*1 *2 *1) (-12 (-5 *2 (-1070 (-2 (|:| |k| (-525)) (|:| |c| *3)))) (-5 *1 (-550 *3)) (-4 *3 (-975)))) (-3682 (*1 *1 *2) (-12 (-5 *2 (-1070 (-2 (|:| |k| (-525)) (|:| |c| *3)))) (-4 *3 (-975)) (-5 *1 (-550 *3)))) (-3264 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-525))) (-4 *3 (-975)) (-5 *1 (-550 *3)))) (-2630 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-108)) (-5 *1 (-550 *3)) (-4 *3 (-975)))) (-2212 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-975)))) (-1456 (*1 *1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-975)))) (-1848 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-1070 (-2 (|:| |k| (-525)) (|:| |c| *6)))) (-5 *4 (-955 (-781 (-525)))) (-5 *5 (-1089)) (-5 *7 (-385 (-525))) (-4 *6 (-975)) (-5 *2 (-796)) (-5 *1 (-550 *6)))) (-4141 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-3564 (*1 *1 *1 *2) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-1331 (*1 *1 *1 *2) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-550 *3)) (-4 *3 (-37 *2)) (-4 *3 (-975)))) (-4155 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-2632 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-2158 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-1557 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-2596 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-2197 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-4165 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-3714 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-1835 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-3477 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-3061 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-1609 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-4036 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-3997 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-2539 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-2175 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-1687 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-3718 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-1258 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-3861 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-4208 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-2674 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-3421 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-3248 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-3644 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))) (-3234 (*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(-13 (-1149 |#1| (-525)) (-10 -8 (-15 -1693 ($ (-955 (-781 (-525))) (-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))))) (-15 -3257 ((-955 (-781 (-525))) $)) (-15 -3054 ((-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))) $)) (-15 -3682 ($ (-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))))) (-15 -2202 ((-108) $)) (-15 -3264 ($ (-1 |#1| (-525)) $)) (-15 -2630 ((-3 $ "failed") $ $ (-108))) (-15 -2212 ($ $)) (-15 -1456 ($ $ $)) (-15 -1848 ((-796) (-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))) (-955 (-781 (-525))) (-1089) |#1| (-385 (-525)))) (IF (|has| |#1| (-37 (-385 (-525)))) (PROGN (-15 -4141 ($ $)) (-15 -3564 ($ $ |#1|)) (-15 -1331 ($ $ (-385 (-525)))) (-15 -4155 ($ $)) (-15 -2632 ($ $)) (-15 -2158 ($ $)) (-15 -1557 ($ $)) (-15 -2596 ($ $)) (-15 -2197 ($ $)) (-15 -4165 ($ $)) (-15 -3714 ($ $)) (-15 -1835 ($ $)) (-15 -3477 ($ $)) (-15 -3061 ($ $)) (-15 -1609 ($ $)) (-15 -4036 ($ $)) (-15 -3997 ($ $)) (-15 -2539 ($ $)) (-15 -2175 ($ $)) (-15 -1687 ($ $)) (-15 -3718 ($ $)) (-15 -1258 ($ $)) (-15 -3861 ($ $)) (-15 -4208 ($ $)) (-15 -2674 ($ $)) (-15 -3421 ($ $)) (-15 -3248 ($ $)) (-15 -3644 ($ $)) (-15 -3234 ($ $))) |%noBranch|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-3682 (($ (-1070 |#1|)) 9)) (-3798 (($) NIL T CONST)) (-4163 (((-3 $ "failed") $) 42)) (-3123 (((-108) $) 52)) (-3873 (((-712) $) 55) (((-712) $ (-712)) 54)) (-2824 (((-108) $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2089 (((-3 $ "failed") $ $) 44 (|has| |#1| (-517)))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL (|has| |#1| (-517)))) (-3654 (((-1070 |#1|) $) 23)) (-2128 (((-712)) 51)) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 10 T CONST)) (-4197 (($) 14 T CONST)) (-4096 (((-108) $ $) 22)) (-4164 (($ $) 30) (($ $ $) 16)) (-4156 (($ $ $) 25)) (** (($ $ (-854)) NIL) (($ $ (-712)) 49)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 34) (($ $ $) 28) (($ |#1| $) 37) (($ $ |#1|) 38) (($ $ (-525)) 36)))
+(((-551 |#1|) (-13 (-975) (-10 -8 (-15 -3654 ((-1070 |#1|) $)) (-15 -3682 ($ (-1070 |#1|))) (-15 -3123 ((-108) $)) (-15 -3873 ((-712) $)) (-15 -3873 ((-712) $ (-712))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-525))) (IF (|has| |#1| (-517)) (-6 (-517)) |%noBranch|))) (-975)) (T -551))
+((-3654 (*1 *2 *1) (-12 (-5 *2 (-1070 *3)) (-5 *1 (-551 *3)) (-4 *3 (-975)))) (-3682 (*1 *1 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-551 *3)))) (-3123 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-551 *3)) (-4 *3 (-975)))) (-3873 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-551 *3)) (-4 *3 (-975)))) (-3873 (*1 *2 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-551 *3)) (-4 *3 (-975)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-551 *2)) (-4 *2 (-975)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-551 *2)) (-4 *2 (-975)))) (* (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-551 *3)) (-4 *3 (-975)))))
+(-13 (-975) (-10 -8 (-15 -3654 ((-1070 |#1|) $)) (-15 -3682 ($ (-1070 |#1|))) (-15 -3123 ((-108) $)) (-15 -3873 ((-712) $)) (-15 -3873 ((-712) $ (-712))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-525))) (IF (|has| |#1| (-517)) (-6 (-517)) |%noBranch|)))
+((-1340 (((-555 |#2|) (-1 |#2| |#1|) (-555 |#1|)) 15)))
+(((-552 |#1| |#2|) (-10 -7 (-15 -1340 ((-555 |#2|) (-1 |#2| |#1|) (-555 |#1|)))) (-1125) (-1125)) (T -552))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-555 *5)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-555 *6)) (-5 *1 (-552 *5 *6)))))
+(-10 -7 (-15 -1340 ((-555 |#2|) (-1 |#2| |#1|) (-555 |#1|))))
+((-1340 (((-1070 |#3|) (-1 |#3| |#1| |#2|) (-555 |#1|) (-1070 |#2|)) 20) (((-1070 |#3|) (-1 |#3| |#1| |#2|) (-1070 |#1|) (-555 |#2|)) 19) (((-555 |#3|) (-1 |#3| |#1| |#2|) (-555 |#1|) (-555 |#2|)) 18)))
+(((-553 |#1| |#2| |#3|) (-10 -7 (-15 -1340 ((-555 |#3|) (-1 |#3| |#1| |#2|) (-555 |#1|) (-555 |#2|))) (-15 -1340 ((-1070 |#3|) (-1 |#3| |#1| |#2|) (-1070 |#1|) (-555 |#2|))) (-15 -1340 ((-1070 |#3|) (-1 |#3| |#1| |#2|) (-555 |#1|) (-1070 |#2|)))) (-1125) (-1125) (-1125)) (T -553))
+((-1340 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-555 *6)) (-5 *5 (-1070 *7)) (-4 *6 (-1125)) (-4 *7 (-1125)) (-4 *8 (-1125)) (-5 *2 (-1070 *8)) (-5 *1 (-553 *6 *7 *8)))) (-1340 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1070 *6)) (-5 *5 (-555 *7)) (-4 *6 (-1125)) (-4 *7 (-1125)) (-4 *8 (-1125)) (-5 *2 (-1070 *8)) (-5 *1 (-553 *6 *7 *8)))) (-1340 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-555 *6)) (-5 *5 (-555 *7)) (-4 *6 (-1125)) (-4 *7 (-1125)) (-4 *8 (-1125)) (-5 *2 (-555 *8)) (-5 *1 (-553 *6 *7 *8)))))
+(-10 -7 (-15 -1340 ((-555 |#3|) (-1 |#3| |#1| |#2|) (-555 |#1|) (-555 |#2|))) (-15 -1340 ((-1070 |#3|) (-1 |#3| |#1| |#2|) (-1070 |#1|) (-555 |#2|))) (-15 -1340 ((-1070 |#3|) (-1 |#3| |#1| |#2|) (-555 |#1|) (-1070 |#2|))))
+((-2498 ((|#3| |#3| (-591 (-564 |#3|)) (-591 (-1089))) 55)) (-3153 (((-157 |#2|) |#3|) 117)) (-3672 ((|#3| (-157 |#2|)) 44)) (-3586 ((|#2| |#3|) 19)) (-2670 ((|#3| |#2|) 33)))
+(((-554 |#1| |#2| |#3|) (-10 -7 (-15 -3672 (|#3| (-157 |#2|))) (-15 -3586 (|#2| |#3|)) (-15 -2670 (|#3| |#2|)) (-15 -3153 ((-157 |#2|) |#3|)) (-15 -2498 (|#3| |#3| (-591 (-564 |#3|)) (-591 (-1089))))) (-13 (-517) (-788)) (-13 (-408 |#1|) (-932) (-1111)) (-13 (-408 (-157 |#1|)) (-932) (-1111))) (T -554))
+((-2498 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-591 (-564 *2))) (-5 *4 (-591 (-1089))) (-4 *2 (-13 (-408 (-157 *5)) (-932) (-1111))) (-4 *5 (-13 (-517) (-788))) (-5 *1 (-554 *5 *6 *2)) (-4 *6 (-13 (-408 *5) (-932) (-1111))))) (-3153 (*1 *2 *3) (-12 (-4 *4 (-13 (-517) (-788))) (-5 *2 (-157 *5)) (-5 *1 (-554 *4 *5 *3)) (-4 *5 (-13 (-408 *4) (-932) (-1111))) (-4 *3 (-13 (-408 (-157 *4)) (-932) (-1111))))) (-2670 (*1 *2 *3) (-12 (-4 *4 (-13 (-517) (-788))) (-4 *2 (-13 (-408 (-157 *4)) (-932) (-1111))) (-5 *1 (-554 *4 *3 *2)) (-4 *3 (-13 (-408 *4) (-932) (-1111))))) (-3586 (*1 *2 *3) (-12 (-4 *4 (-13 (-517) (-788))) (-4 *2 (-13 (-408 *4) (-932) (-1111))) (-5 *1 (-554 *4 *2 *3)) (-4 *3 (-13 (-408 (-157 *4)) (-932) (-1111))))) (-3672 (*1 *2 *3) (-12 (-5 *3 (-157 *5)) (-4 *5 (-13 (-408 *4) (-932) (-1111))) (-4 *4 (-13 (-517) (-788))) (-4 *2 (-13 (-408 (-157 *4)) (-932) (-1111))) (-5 *1 (-554 *4 *5 *2)))))
+(-10 -7 (-15 -3672 (|#3| (-157 |#2|))) (-15 -3586 (|#2| |#3|)) (-15 -2670 (|#3| |#2|)) (-15 -3153 ((-157 |#2|) |#3|)) (-15 -2498 (|#3| |#3| (-591 (-564 |#3|)) (-591 (-1089)))))
+((-2305 (($ (-1 (-108) |#1|) $) 17)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-4070 (($ (-1 |#1| |#1|) |#1|) 9)) (-4101 (($ (-1 (-108) |#1|) $) 13)) (-4108 (($ (-1 (-108) |#1|) $) 15)) (-3036 (((-1070 |#1|) $) 18)) (-3022 (((-796) $) NIL)))
+(((-555 |#1|) (-13 (-565 (-796)) (-10 -8 (-15 -1340 ($ (-1 |#1| |#1|) $)) (-15 -4101 ($ (-1 (-108) |#1|) $)) (-15 -4108 ($ (-1 (-108) |#1|) $)) (-15 -2305 ($ (-1 (-108) |#1|) $)) (-15 -4070 ($ (-1 |#1| |#1|) |#1|)) (-15 -3036 ((-1070 |#1|) $)))) (-1125)) (T -555))
+((-1340 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1125)) (-5 *1 (-555 *3)))) (-4101 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1125)) (-5 *1 (-555 *3)))) (-4108 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1125)) (-5 *1 (-555 *3)))) (-2305 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1125)) (-5 *1 (-555 *3)))) (-4070 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1125)) (-5 *1 (-555 *3)))) (-3036 (*1 *2 *1) (-12 (-5 *2 (-1070 *3)) (-5 *1 (-555 *3)) (-4 *3 (-1125)))))
+(-13 (-565 (-796)) (-10 -8 (-15 -1340 ($ (-1 |#1| |#1|) $)) (-15 -4101 ($ (-1 (-108) |#1|) $)) (-15 -4108 ($ (-1 (-108) |#1|) $)) (-15 -2305 ($ (-1 (-108) |#1|) $)) (-15 -4070 ($ (-1 |#1| |#1|) |#1|)) (-15 -3036 ((-1070 |#1|) $))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-2168 (($ (-712)) NIL (|has| |#1| (-23)))) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3203 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-788)))) (-4026 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4251))) (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| |#1| (-788))))) (-3327 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-788)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) NIL (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3677 (($ |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) NIL)) (-3004 (((-525) (-1 (-108) |#1|) $) NIL) (((-525) |#1| $) NIL (|has| |#1| (-1018))) (((-525) |#1| $ (-525)) NIL (|has| |#1| (-1018)))) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2166 (((-631 |#1|) $ $) NIL (|has| |#1| (-975)))) (-1268 (($ (-712) |#1|) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) NIL (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2131 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-788)))) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4131 ((|#1| $) NIL (-12 (|has| |#1| (-932)) (|has| |#1| (-975))))) (-3971 (((-108) $ (-712)) NIL)) (-1657 ((|#1| $) NIL (-12 (|has| |#1| (-932)) (|has| |#1| (-975))))) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-4189 (($ |#1| $ (-525)) NIL) (($ $ $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-3066 ((|#1| $) NIL (|has| (-525) (-788)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1941 (($ $ |#1|) NIL (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#1| $ (-525) |#1|) NIL) ((|#1| $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-2109 ((|#1| $ $) NIL (|has| |#1| (-975)))) (-2777 (($ $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-4210 (($ $ $) NIL (|has| |#1| (-975)))) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4063 (($ $ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) NIL)) (-3690 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-591 $)) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4164 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-4156 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-525) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-668))) (($ $ |#1|) NIL (|has| |#1| (-668)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-556 |#1| |#2|) (-1169 |#1|) (-1125) (-525)) (T -556))
+NIL
+(-1169 |#1|)
+((-3296 (((-1176) $ |#2| |#2|) 36)) (-3630 ((|#2| $) 23)) (-3468 ((|#2| $) 21)) (-3249 (($ (-1 |#3| |#3|) $) 32)) (-1340 (($ (-1 |#3| |#3|) $) 30)) (-3066 ((|#3| $) 26)) (-1941 (($ $ |#3|) 33)) (-1615 (((-108) |#3| $) 17)) (-3339 (((-591 |#3|) $) 15)) (-3164 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
+(((-557 |#1| |#2| |#3|) (-10 -8 (-15 -3296 ((-1176) |#1| |#2| |#2|)) (-15 -1941 (|#1| |#1| |#3|)) (-15 -3066 (|#3| |#1|)) (-15 -3630 (|#2| |#1|)) (-15 -3468 (|#2| |#1|)) (-15 -1615 ((-108) |#3| |#1|)) (-15 -3339 ((-591 |#3|) |#1|)) (-15 -3164 (|#3| |#1| |#2|)) (-15 -3164 (|#3| |#1| |#2| |#3|)) (-15 -3249 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1340 (|#1| (-1 |#3| |#3|) |#1|))) (-558 |#2| |#3|) (-1018) (-1125)) (T -557))
+NIL
+(-10 -8 (-15 -3296 ((-1176) |#1| |#2| |#2|)) (-15 -1941 (|#1| |#1| |#3|)) (-15 -3066 (|#3| |#1|)) (-15 -3630 (|#2| |#1|)) (-15 -3468 (|#2| |#1|)) (-15 -1615 ((-108) |#3| |#1|)) (-15 -3339 ((-591 |#3|) |#1|)) (-15 -3164 (|#3| |#1| |#2|)) (-15 -3164 (|#3| |#1| |#2| |#3|)) (-15 -3249 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1340 (|#1| (-1 |#3| |#3|) |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#2| (-1018)))) (-3296 (((-1176) $ |#1| |#1|) 40 (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) 8)) (-3186 ((|#2| $ |#1| |#2|) 52 (|has| $ (-6 -4251)))) (-3798 (($) 7 T CONST)) (-3255 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4251)))) (-3217 ((|#2| $ |#1|) 51)) (-3454 (((-591 |#2|) $) 30 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-3630 ((|#1| $) 43 (|has| |#1| (-788)))) (-2552 (((-591 |#2|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#2| $) 27 (-12 (|has| |#2| (-1018)) (|has| $ (-6 -4250))))) (-3468 ((|#1| $) 44 (|has| |#1| (-788)))) (-3249 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#2| |#2|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#2| (-1018)))) (-2511 (((-591 |#1|) $) 46)) (-2791 (((-108) |#1| $) 47)) (-2047 (((-1036) $) 21 (|has| |#2| (-1018)))) (-3066 ((|#2| $) 42 (|has| |#1| (-788)))) (-1941 (($ $ |#2|) 41 (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#2|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#2|))) 26 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) 25 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) 23 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))) (-3493 (((-108) $ $) 14)) (-1615 (((-108) |#2| $) 45 (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3339 (((-591 |#2|) $) 48)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#2| $ |#1| |#2|) 50) ((|#2| $ |#1|) 49)) (-2064 (((-712) (-1 (-108) |#2|) $) 31 (|has| $ (-6 -4250))) (((-712) |#2| $) 28 (-12 (|has| |#2| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-3022 (((-796) $) 18 (|has| |#2| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#2|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#2| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-558 |#1| |#2|) (-131) (-1018) (-1125)) (T -558))
+((-3339 (*1 *2 *1) (-12 (-4 *1 (-558 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1125)) (-5 *2 (-591 *4)))) (-2791 (*1 *2 *3 *1) (-12 (-4 *1 (-558 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1125)) (-5 *2 (-108)))) (-2511 (*1 *2 *1) (-12 (-4 *1 (-558 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1125)) (-5 *2 (-591 *3)))) (-1615 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4250)) (-4 *1 (-558 *4 *3)) (-4 *4 (-1018)) (-4 *3 (-1125)) (-4 *3 (-1018)) (-5 *2 (-108)))) (-3468 (*1 *2 *1) (-12 (-4 *1 (-558 *2 *3)) (-4 *3 (-1125)) (-4 *2 (-1018)) (-4 *2 (-788)))) (-3630 (*1 *2 *1) (-12 (-4 *1 (-558 *2 *3)) (-4 *3 (-1125)) (-4 *2 (-1018)) (-4 *2 (-788)))) (-3066 (*1 *2 *1) (-12 (-4 *1 (-558 *3 *2)) (-4 *3 (-1018)) (-4 *3 (-788)) (-4 *2 (-1125)))) (-1941 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-558 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1125)))) (-3296 (*1 *2 *1 *3 *3) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-558 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1125)) (-5 *2 (-1176)))))
+(-13 (-464 |t#2|) (-267 |t#1| |t#2|) (-10 -8 (-15 -3339 ((-591 |t#2|) $)) (-15 -2791 ((-108) |t#1| $)) (-15 -2511 ((-591 |t#1|) $)) (IF (|has| |t#2| (-1018)) (IF (|has| $ (-6 -4250)) (-15 -1615 ((-108) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-788)) (PROGN (-15 -3468 (|t#1| $)) (-15 -3630 (|t#1| $)) (-15 -3066 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4251)) (PROGN (-15 -1941 ($ $ |t#2|)) (-15 -3296 ((-1176) $ |t#1| |t#1|))) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#2| (-1018)) ((-565 (-796)) -3321 (|has| |#2| (-1018)) (|has| |#2| (-565 (-796)))) ((-265 |#1| |#2|) . T) ((-267 |#1| |#2|) . T) ((-288 |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((-464 |#2|) . T) ((-486 |#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((-1018) |has| |#2| (-1018)) ((-1125) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2999 (((-3 $ "failed")) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1593 (((-1171 (-631 |#1|))) NIL (|has| |#2| (-395 |#1|))) (((-1171 (-631 |#1|)) (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-2608 (((-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-3798 (($) NIL T CONST)) (-3160 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-3624 (((-3 $ "failed")) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-4094 (((-631 |#1|)) NIL (|has| |#2| (-395 |#1|))) (((-631 |#1|) (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-4011 ((|#1| $) NIL (|has| |#2| (-345 |#1|)))) (-3711 (((-631 |#1|) $) NIL (|has| |#2| (-395 |#1|))) (((-631 |#1|) $ (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-3057 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-2550 (((-1085 (-885 |#1|))) NIL (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-341))))) (-3433 (($ $ (-854)) NIL)) (-3996 ((|#1| $) NIL (|has| |#2| (-345 |#1|)))) (-3473 (((-1085 |#1|) $) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-2449 ((|#1|) NIL (|has| |#2| (-395 |#1|))) ((|#1| (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-3158 (((-1085 |#1|) $) NIL (|has| |#2| (-345 |#1|)))) (-2772 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-4171 (($ (-1171 |#1|)) NIL (|has| |#2| (-395 |#1|))) (($ (-1171 |#1|) (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-4163 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-4073 (((-854)) NIL (|has| |#2| (-345 |#1|)))) (-3401 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-2462 (($ $ (-854)) NIL)) (-3915 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-2590 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-2248 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-3121 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-2659 (((-3 $ "failed")) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-1548 (((-631 |#1|)) NIL (|has| |#2| (-395 |#1|))) (((-631 |#1|) (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-4032 ((|#1| $) NIL (|has| |#2| (-345 |#1|)))) (-3793 (((-631 |#1|) $) NIL (|has| |#2| (-395 |#1|))) (((-631 |#1|) $ (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-1838 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-1308 (((-1085 (-885 |#1|))) NIL (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-341))))) (-3447 (($ $ (-854)) NIL)) (-3018 ((|#1| $) NIL (|has| |#2| (-345 |#1|)))) (-1858 (((-1085 |#1|) $) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-1368 ((|#1|) NIL (|has| |#2| (-395 |#1|))) ((|#1| (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-2253 (((-1085 |#1|) $) NIL (|has| |#2| (-345 |#1|)))) (-2448 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-2339 (((-1072) $) NIL)) (-1407 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-3704 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-2688 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-2047 (((-1036) $) NIL)) (-4160 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-3164 ((|#1| $ (-525)) NIL (|has| |#2| (-395 |#1|)))) (-3572 (((-631 |#1|) (-1171 $)) NIL (|has| |#2| (-395 |#1|))) (((-1171 |#1|) $) NIL (|has| |#2| (-395 |#1|))) (((-631 |#1|) (-1171 $) (-1171 $)) NIL (|has| |#2| (-345 |#1|))) (((-1171 |#1|) $ (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-1408 (($ (-1171 |#1|)) NIL (|has| |#2| (-395 |#1|))) (((-1171 |#1|) $) NIL (|has| |#2| (-395 |#1|)))) (-2117 (((-591 (-885 |#1|))) NIL (|has| |#2| (-395 |#1|))) (((-591 (-885 |#1|)) (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-3619 (($ $ $) NIL)) (-1806 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-3022 (((-796) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-4003 (((-1171 $)) NIL (|has| |#2| (-395 |#1|)))) (-1640 (((-591 (-1171 |#1|))) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-2392 (($ $ $ $) NIL)) (-2938 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-3005 (($ (-631 |#1|) $) NIL (|has| |#2| (-395 |#1|)))) (-2707 (($ $ $) NIL)) (-2826 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-1532 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-1307 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-4191 (($) NIL T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) 24)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 20) (($ $ |#1|) 19) (($ |#1| $) NIL)))
+(((-559 |#1| |#2|) (-13 (-686 |#1|) (-565 |#2|) (-10 -8 (-15 -3022 ($ |#2|)) (IF (|has| |#2| (-395 |#1|)) (-6 (-395 |#1|)) |%noBranch|) (IF (|has| |#2| (-345 |#1|)) (-6 (-345 |#1|)) |%noBranch|))) (-160) (-686 |#1|)) (T -559))
+((-3022 (*1 *1 *2) (-12 (-4 *3 (-160)) (-5 *1 (-559 *3 *2)) (-4 *2 (-686 *3)))))
+(-13 (-686 |#1|) (-565 |#2|) (-10 -8 (-15 -3022 ($ |#2|)) (IF (|has| |#2| (-395 |#1|)) (-6 (-395 |#1|)) |%noBranch|) (IF (|has| |#2| (-345 |#1|)) (-6 (-345 |#1|)) |%noBranch|)))
+((-3008 (((-108) $ $) NIL)) (-3598 (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $ (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) 33)) (-1260 (($ (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) NIL) (($) NIL)) (-3296 (((-1176) $ (-1072) (-1072)) NIL (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#1| $ (-1072) |#1|) 43)) (-1797 (($ (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250)))) (-2401 (((-3 |#1| "failed") (-1072) $) 46)) (-3798 (($) NIL T CONST)) (-3522 (($ $ (-1072)) 24)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018))))) (-3901 (((-3 |#1| "failed") (-1072) $) 47) (($ (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250))) (($ (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $) NIL (|has| $ (-6 -4250)))) (-3677 (($ (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250))) (($ (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018))))) (-1227 (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250))) (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $ (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) NIL (|has| $ (-6 -4250))) (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $ (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018))))) (-1277 (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $) 32)) (-3255 ((|#1| $ (-1072) |#1|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-1072)) NIL)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250))) (((-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250)))) (-1829 (($ $) 48)) (-1976 (($ (-366)) 22) (($ (-366) (-1072)) 21)) (-2400 (((-366) $) 34)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-1072) $) NIL (|has| (-1072) (-788)))) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250))) (((-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) (((-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018))))) (-3468 (((-1072) $) NIL (|has| (-1072) (-788)))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251))) (($ (-1 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-1542 (((-591 (-1072)) $) 39)) (-2484 (((-108) (-1072) $) NIL)) (-3317 (((-1072) $) 35)) (-1464 (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $) NIL)) (-2470 (($ (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $) NIL)) (-2511 (((-591 (-1072)) $) NIL)) (-2791 (((-108) (-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3066 ((|#1| $) NIL (|has| (-1072) (-788)))) (-2069 (((-3 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) "failed") (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL)) (-1941 (($ $ |#1|) NIL (|has| $ (-6 -4251)))) (-3631 (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $) NIL)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) NIL (-12 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)))) (($ $ (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) NIL (-12 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)))) (($ $ (-273 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) NIL (-12 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)))) (($ $ (-591 (-273 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))))) NIL (-12 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) 37)) (-3164 ((|#1| $ (-1072) |#1|) NIL) ((|#1| $ (-1072)) 42)) (-2311 (($ (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) NIL) (($) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) (((-712) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)))) (((-712) (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-566 (-501))))) (-3036 (($ (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) NIL)) (-3022 (((-796) $) 20)) (-2886 (($ $) 25)) (-1870 (($ (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) NIL)) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 19)) (-4045 (((-712) $) 41 (|has| $ (-6 -4250)))))
+(((-560 |#1|) (-13 (-342 (-366) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) (-1102 (-1072) |#1|) (-10 -8 (-6 -4250) (-15 -1829 ($ $)))) (-1018)) (T -560))
+((-1829 (*1 *1 *1) (-12 (-5 *1 (-560 *2)) (-4 *2 (-1018)))))
+(-13 (-342 (-366) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) (-1102 (-1072) |#1|) (-10 -8 (-6 -4250) (-15 -1829 ($ $))))
+((-2141 (((-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) $) 15)) (-1542 (((-591 |#2|) $) 19)) (-2484 (((-108) |#2| $) 12)))
+(((-561 |#1| |#2| |#3|) (-10 -8 (-15 -1542 ((-591 |#2|) |#1|)) (-15 -2484 ((-108) |#2| |#1|)) (-15 -2141 ((-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) |#1|))) (-562 |#2| |#3|) (-1018) (-1018)) (T -561))
+NIL
+(-10 -8 (-15 -1542 ((-591 |#2|) |#1|)) (-15 -2484 ((-108) |#2| |#1|)) (-15 -2141 ((-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) |#1|)))
+((-3008 (((-108) $ $) 19 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (-3891 (((-108) $ (-712)) 8)) (-1797 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 45 (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 55 (|has| $ (-6 -4250)))) (-2401 (((-3 |#2| "failed") |#1| $) 61)) (-3798 (($) 7 T CONST)) (-3098 (($ $) 58 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250))))) (-3901 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 47 (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 46 (|has| $ (-6 -4250))) (((-3 |#2| "failed") |#1| $) 62)) (-3677 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 54 (|has| $ (-6 -4250)))) (-1227 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 56 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250)))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 53 (|has| $ (-6 -4250))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 52 (|has| $ (-6 -4250)))) (-3454 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 30 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (-1542 (((-591 |#1|) $) 63)) (-2484 (((-108) |#1| $) 64)) (-1464 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 39)) (-2470 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 40)) (-2047 (((-1036) $) 21 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (-2069 (((-3 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) "failed") (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 51)) (-3631 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 41)) (-1623 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))))) 26 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 25 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 24 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 23 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-2311 (($) 49) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 48)) (-2064 (((-712) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 31 (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1408 (((-501) $) 59 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-566 (-501))))) (-3036 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 50)) (-3022 (((-796) $) 18 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-565 (-796))))) (-1870 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 42)) (-4158 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-562 |#1| |#2|) (-131) (-1018) (-1018)) (T -562))
+((-2484 (*1 *2 *3 *1) (-12 (-4 *1 (-562 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-5 *2 (-108)))) (-1542 (*1 *2 *1) (-12 (-4 *1 (-562 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-5 *2 (-591 *3)))) (-3901 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-562 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1018)))) (-2401 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-562 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1018)))))
+(-13 (-209 (-2 (|:| -2019 |t#1|) (|:| -1221 |t#2|))) (-10 -8 (-15 -2484 ((-108) |t#1| $)) (-15 -1542 ((-591 |t#1|) $)) (-15 -3901 ((-3 |t#2| "failed") |t#1| $)) (-15 -2401 ((-3 |t#2| "failed") |t#1| $))))
+(((-33) . T) ((-102 #0=(-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T) ((-97) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) ((-565 (-796)) -3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-565 (-796)))) ((-142 #0#) . T) ((-566 (-501)) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-566 (-501))) ((-209 #0#) . T) ((-215 #0#) . T) ((-288 #0#) -12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))) ((-464 #0#) . T) ((-486 #0# #0#) -12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))) ((-1018) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) ((-1125) . T))
+((-3574 (((-564 |#2|) |#1|) 15)) (-3455 (((-3 |#1| "failed") (-564 |#2|)) 19)))
+(((-563 |#1| |#2|) (-10 -7 (-15 -3574 ((-564 |#2|) |#1|)) (-15 -3455 ((-3 |#1| "failed") (-564 |#2|)))) (-788) (-788)) (T -563))
+((-3455 (*1 *2 *3) (|partial| -12 (-5 *3 (-564 *4)) (-4 *4 (-788)) (-4 *2 (-788)) (-5 *1 (-563 *2 *4)))) (-3574 (*1 *2 *3) (-12 (-5 *2 (-564 *4)) (-5 *1 (-563 *3 *4)) (-4 *3 (-788)) (-4 *4 (-788)))))
+(-10 -7 (-15 -3574 ((-564 |#2|) |#1|)) (-15 -3455 ((-3 |#1| "failed") (-564 |#2|))))
+((-3008 (((-108) $ $) NIL)) (-3148 (((-3 (-1089) "failed") $) 37)) (-1231 (((-1176) $ (-712)) 26)) (-3004 (((-712) $) 25)) (-3219 (((-110) $) 12)) (-2400 (((-1089) $) 20)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-1843 (($ (-110) (-591 |#1|) (-712)) 30) (($ (-1089)) 31)) (-1709 (((-108) $ (-110)) 18) (((-108) $ (-1089)) 16)) (-2965 (((-712) $) 22)) (-2047 (((-1036) $) NIL)) (-1408 (((-825 (-525)) $) 77 (|has| |#1| (-566 (-825 (-525))))) (((-825 (-357)) $) 84 (|has| |#1| (-566 (-825 (-357))))) (((-501) $) 69 (|has| |#1| (-566 (-501))))) (-3022 (((-796) $) 55)) (-1398 (((-591 |#1|) $) 24)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 41)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 42)))
+(((-564 |#1|) (-13 (-127) (-817 |#1|) (-10 -8 (-15 -2400 ((-1089) $)) (-15 -3219 ((-110) $)) (-15 -1398 ((-591 |#1|) $)) (-15 -2965 ((-712) $)) (-15 -1843 ($ (-110) (-591 |#1|) (-712))) (-15 -1843 ($ (-1089))) (-15 -3148 ((-3 (-1089) "failed") $)) (-15 -1709 ((-108) $ (-110))) (-15 -1709 ((-108) $ (-1089))) (IF (|has| |#1| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|))) (-788)) (T -564))
+((-2400 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-564 *3)) (-4 *3 (-788)))) (-3219 (*1 *2 *1) (-12 (-5 *2 (-110)) (-5 *1 (-564 *3)) (-4 *3 (-788)))) (-1398 (*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-564 *3)) (-4 *3 (-788)))) (-2965 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-564 *3)) (-4 *3 (-788)))) (-1843 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-110)) (-5 *3 (-591 *5)) (-5 *4 (-712)) (-4 *5 (-788)) (-5 *1 (-564 *5)))) (-1843 (*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-564 *3)) (-4 *3 (-788)))) (-3148 (*1 *2 *1) (|partial| -12 (-5 *2 (-1089)) (-5 *1 (-564 *3)) (-4 *3 (-788)))) (-1709 (*1 *2 *1 *3) (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-564 *4)) (-4 *4 (-788)))) (-1709 (*1 *2 *1 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-108)) (-5 *1 (-564 *4)) (-4 *4 (-788)))))
+(-13 (-127) (-817 |#1|) (-10 -8 (-15 -2400 ((-1089) $)) (-15 -3219 ((-110) $)) (-15 -1398 ((-591 |#1|) $)) (-15 -2965 ((-712) $)) (-15 -1843 ($ (-110) (-591 |#1|) (-712))) (-15 -1843 ($ (-1089))) (-15 -3148 ((-3 (-1089) "failed") $)) (-15 -1709 ((-108) $ (-110))) (-15 -1709 ((-108) $ (-1089))) (IF (|has| |#1| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|)))
+((-3022 ((|#1| $) 6)))
+(((-565 |#1|) (-131) (-1125)) (T -565))
+((-3022 (*1 *2 *1) (-12 (-4 *1 (-565 *2)) (-4 *2 (-1125)))))
+(-13 (-10 -8 (-15 -3022 (|t#1| $))))
+((-1408 ((|#1| $) 6)))
+(((-566 |#1|) (-131) (-1125)) (T -566))
+((-1408 (*1 *2 *1) (-12 (-4 *1 (-566 *2)) (-4 *2 (-1125)))))
+(-13 (-10 -8 (-15 -1408 (|t#1| $))))
+((-1401 (((-3 (-1085 (-385 |#2|)) "failed") (-385 |#2|) (-385 |#2|) (-385 |#2|) (-1 (-396 |#2|) |#2|)) 15) (((-3 (-1085 (-385 |#2|)) "failed") (-385 |#2|) (-385 |#2|) (-385 |#2|)) 16)))
+(((-567 |#1| |#2|) (-10 -7 (-15 -1401 ((-3 (-1085 (-385 |#2|)) "failed") (-385 |#2|) (-385 |#2|) (-385 |#2|))) (-15 -1401 ((-3 (-1085 (-385 |#2|)) "failed") (-385 |#2|) (-385 |#2|) (-385 |#2|) (-1 (-396 |#2|) |#2|)))) (-13 (-138) (-27) (-966 (-525)) (-966 (-385 (-525)))) (-1147 |#1|)) (T -567))
+((-1401 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 (-396 *6) *6)) (-4 *6 (-1147 *5)) (-4 *5 (-13 (-138) (-27) (-966 (-525)) (-966 (-385 (-525))))) (-5 *2 (-1085 (-385 *6))) (-5 *1 (-567 *5 *6)) (-5 *3 (-385 *6)))) (-1401 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-138) (-27) (-966 (-525)) (-966 (-385 (-525))))) (-4 *5 (-1147 *4)) (-5 *2 (-1085 (-385 *5))) (-5 *1 (-567 *4 *5)) (-5 *3 (-385 *5)))))
+(-10 -7 (-15 -1401 ((-3 (-1085 (-385 |#2|)) "failed") (-385 |#2|) (-385 |#2|) (-385 |#2|))) (-15 -1401 ((-3 (-1085 (-385 |#2|)) "failed") (-385 |#2|) (-385 |#2|) (-385 |#2|) (-1 (-396 |#2|) |#2|))))
+((-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#2|) 10)))
+(((-568 |#1| |#2|) (-10 -8 (-15 -3022 (|#1| |#2|)) (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|))) (-569 |#2|) (-975)) (T -568))
+NIL
+(-10 -8 (-15 -3022 (|#1| |#2|)) (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 36)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ |#1| $) 37)))
+(((-569 |#1|) (-131) (-975)) (T -569))
+((-3022 (*1 *1 *2) (-12 (-4 *1 (-569 *2)) (-4 *2 (-975)))))
+(-13 (-975) (-593 |t#1|) (-10 -8 (-15 -3022 ($ |t#1|))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 |#1|) . T) ((-593 $) . T) ((-668) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3329 (((-525) $) NIL (|has| |#1| (-786)))) (-3798 (($) NIL T CONST)) (-4163 (((-3 $ "failed") $) NIL)) (-2134 (((-108) $) NIL (|has| |#1| (-786)))) (-2824 (((-108) $) NIL)) (-1738 ((|#1| $) 13)) (-2732 (((-108) $) NIL (|has| |#1| (-786)))) (-3741 (($ $ $) NIL (|has| |#1| (-786)))) (-2478 (($ $ $) NIL (|has| |#1| (-786)))) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1754 ((|#3| $) 15)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#2|) NIL)) (-2128 (((-712)) 20)) (-1539 (($ $) NIL (|has| |#1| (-786)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) 12 T CONST)) (-4135 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4173 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 17) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-570 |#1| |#2| |#3|) (-13 (-37 |#2|) (-10 -8 (IF (|has| |#1| (-786)) (-6 (-786)) |%noBranch|) (-15 -4173 ($ $ |#3|)) (-15 -4173 ($ |#1| |#3|)) (-15 -1738 (|#1| $)) (-15 -1754 (|#3| $)))) (-37 |#2|) (-160) (|SubsetCategory| (-668) |#2|)) (T -570))
+((-4173 (*1 *1 *1 *2) (-12 (-4 *4 (-160)) (-5 *1 (-570 *3 *4 *2)) (-4 *3 (-37 *4)) (-4 *2 (|SubsetCategory| (-668) *4)))) (-4173 (*1 *1 *2 *3) (-12 (-4 *4 (-160)) (-5 *1 (-570 *2 *4 *3)) (-4 *2 (-37 *4)) (-4 *3 (|SubsetCategory| (-668) *4)))) (-1738 (*1 *2 *1) (-12 (-4 *3 (-160)) (-4 *2 (-37 *3)) (-5 *1 (-570 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-668) *3)))) (-1754 (*1 *2 *1) (-12 (-4 *4 (-160)) (-4 *2 (|SubsetCategory| (-668) *4)) (-5 *1 (-570 *3 *4 *2)) (-4 *3 (-37 *4)))))
+(-13 (-37 |#2|) (-10 -8 (IF (|has| |#1| (-786)) (-6 (-786)) |%noBranch|) (-15 -4173 ($ $ |#3|)) (-15 -4173 ($ |#1| |#3|)) (-15 -1738 (|#1| $)) (-15 -1754 (|#3| $))))
+((-1859 ((|#2| |#2| (-1089) (-1089)) 18)))
+(((-571 |#1| |#2|) (-10 -7 (-15 -1859 (|#2| |#2| (-1089) (-1089)))) (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))) (-13 (-1111) (-891) (-29 |#1|))) (T -571))
+((-1859 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525)))) (-5 *1 (-571 *4 *2)) (-4 *2 (-13 (-1111) (-891) (-29 *4))))))
+(-10 -7 (-15 -1859 (|#2| |#2| (-1089) (-1089))))
+((-3008 (((-108) $ $) 56)) (-1800 (((-108) $) 52)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-3655 ((|#1| $) 49)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1947 (((-108) $ $) NIL (|has| |#1| (-341)))) (-2288 (((-2 (|:| -2877 $) (|:| -1293 (-385 |#2|))) (-385 |#2|)) 97 (|has| |#1| (-341)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) 85) (((-3 |#2| "failed") $) 81)) (-3528 (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-2129 (($ $ $) NIL (|has| |#1| (-341)))) (-1710 (($ $) 24)) (-4163 (((-3 $ "failed") $) 75)) (-2110 (($ $ $) NIL (|has| |#1| (-341)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#1| (-341)))) (-3873 (((-525) $) 19)) (-2824 (((-108) $) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-2202 (((-108) $) 36)) (-1480 (($ |#1| (-525)) 21)) (-1678 ((|#1| $) 51)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-341)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) 87 (|has| |#1| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 100 (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2089 (((-3 $ "failed") $ $) 79)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-1712 (((-712) $) 99 (|has| |#1| (-341)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 98 (|has| |#1| (-341)))) (-3266 (($ $ (-1 |#2| |#2|)) 66) (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-712)) NIL (|has| |#2| (-213))) (($ $) NIL (|has| |#2| (-213)))) (-1316 (((-525) $) 34)) (-1408 (((-385 |#2|) $) 42)) (-3022 (((-796) $) 62) (($ (-525)) 32) (($ $) NIL) (($ (-385 (-525))) NIL (|has| |#1| (-966 (-385 (-525))))) (($ |#1|) 31) (($ |#2|) 22)) (-2560 ((|#1| $ (-525)) 63)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 9 T CONST)) (-4197 (($) 12 T CONST)) (-4196 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-712)) NIL (|has| |#2| (-213))) (($ $) NIL (|has| |#2| (-213)))) (-4096 (((-108) $ $) 17)) (-4164 (($ $) 46) (($ $ $) NIL)) (-4156 (($ $ $) 76)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 26) (($ $ $) 44)))
+(((-572 |#1| |#2|) (-13 (-211 |#2|) (-517) (-566 (-385 |#2|)) (-389 |#1|) (-966 |#2|) (-10 -8 (-15 -2202 ((-108) $)) (-15 -1316 ((-525) $)) (-15 -3873 ((-525) $)) (-15 -1710 ($ $)) (-15 -1678 (|#1| $)) (-15 -3655 (|#1| $)) (-15 -2560 (|#1| $ (-525))) (-15 -1480 ($ |#1| (-525))) (IF (|has| |#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-341)) (PROGN (-6 (-286)) (-15 -2288 ((-2 (|:| -2877 $) (|:| -1293 (-385 |#2|))) (-385 |#2|)))) |%noBranch|))) (-517) (-1147 |#1|)) (T -572))
+((-2202 (*1 *2 *1) (-12 (-4 *3 (-517)) (-5 *2 (-108)) (-5 *1 (-572 *3 *4)) (-4 *4 (-1147 *3)))) (-1316 (*1 *2 *1) (-12 (-4 *3 (-517)) (-5 *2 (-525)) (-5 *1 (-572 *3 *4)) (-4 *4 (-1147 *3)))) (-3873 (*1 *2 *1) (-12 (-4 *3 (-517)) (-5 *2 (-525)) (-5 *1 (-572 *3 *4)) (-4 *4 (-1147 *3)))) (-1710 (*1 *1 *1) (-12 (-4 *2 (-517)) (-5 *1 (-572 *2 *3)) (-4 *3 (-1147 *2)))) (-1678 (*1 *2 *1) (-12 (-4 *2 (-517)) (-5 *1 (-572 *2 *3)) (-4 *3 (-1147 *2)))) (-3655 (*1 *2 *1) (-12 (-4 *2 (-517)) (-5 *1 (-572 *2 *3)) (-4 *3 (-1147 *2)))) (-2560 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-4 *2 (-517)) (-5 *1 (-572 *2 *4)) (-4 *4 (-1147 *2)))) (-1480 (*1 *1 *2 *3) (-12 (-5 *3 (-525)) (-4 *2 (-517)) (-5 *1 (-572 *2 *4)) (-4 *4 (-1147 *2)))) (-2288 (*1 *2 *3) (-12 (-4 *4 (-341)) (-4 *4 (-517)) (-4 *5 (-1147 *4)) (-5 *2 (-2 (|:| -2877 (-572 *4 *5)) (|:| -1293 (-385 *5)))) (-5 *1 (-572 *4 *5)) (-5 *3 (-385 *5)))))
+(-13 (-211 |#2|) (-517) (-566 (-385 |#2|)) (-389 |#1|) (-966 |#2|) (-10 -8 (-15 -2202 ((-108) $)) (-15 -1316 ((-525) $)) (-15 -3873 ((-525) $)) (-15 -1710 ($ $)) (-15 -1678 (|#1| $)) (-15 -3655 (|#1| $)) (-15 -2560 (|#1| $ (-525))) (-15 -1480 ($ |#1| (-525))) (IF (|has| |#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-341)) (PROGN (-6 (-286)) (-15 -2288 ((-2 (|:| -2877 $) (|:| -1293 (-385 |#2|))) (-385 |#2|)))) |%noBranch|)))
+((-2113 (((-591 |#6|) (-591 |#4|) (-108)) 47)) (-3392 ((|#6| |#6|) 40)))
+(((-573 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3392 (|#6| |#6|)) (-15 -2113 ((-591 |#6|) (-591 |#4|) (-108)))) (-429) (-734) (-788) (-989 |#1| |#2| |#3|) (-994 |#1| |#2| |#3| |#4|) (-1027 |#1| |#2| |#3| |#4|)) (T -573))
+((-2113 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-591 *10)) (-5 *1 (-573 *5 *6 *7 *8 *9 *10)) (-4 *9 (-994 *5 *6 *7 *8)) (-4 *10 (-1027 *5 *6 *7 *8)))) (-3392 (*1 *2 *2) (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *1 (-573 *3 *4 *5 *6 *7 *2)) (-4 *7 (-994 *3 *4 *5 *6)) (-4 *2 (-1027 *3 *4 *5 *6)))))
+(-10 -7 (-15 -3392 (|#6| |#6|)) (-15 -2113 ((-591 |#6|) (-591 |#4|) (-108))))
+((-3521 (((-108) |#3| (-712) (-591 |#3|)) 23)) (-2667 (((-3 (-2 (|:| |polfac| (-591 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-591 (-1085 |#3|)))) "failed") |#3| (-591 (-1085 |#3|)) (-2 (|:| |contp| |#3|) (|:| -3781 (-591 (-2 (|:| |irr| |#4|) (|:| -3265 (-525)))))) (-591 |#3|) (-591 |#1|) (-591 |#3|)) 55)))
+(((-574 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3521 ((-108) |#3| (-712) (-591 |#3|))) (-15 -2667 ((-3 (-2 (|:| |polfac| (-591 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-591 (-1085 |#3|)))) "failed") |#3| (-591 (-1085 |#3|)) (-2 (|:| |contp| |#3|) (|:| -3781 (-591 (-2 (|:| |irr| |#4|) (|:| -3265 (-525)))))) (-591 |#3|) (-591 |#1|) (-591 |#3|)))) (-788) (-734) (-286) (-882 |#3| |#2| |#1|)) (T -574))
+((-2667 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -3781 (-591 (-2 (|:| |irr| *10) (|:| -3265 (-525))))))) (-5 *6 (-591 *3)) (-5 *7 (-591 *8)) (-4 *8 (-788)) (-4 *3 (-286)) (-4 *10 (-882 *3 *9 *8)) (-4 *9 (-734)) (-5 *2 (-2 (|:| |polfac| (-591 *10)) (|:| |correct| *3) (|:| |corrfact| (-591 (-1085 *3))))) (-5 *1 (-574 *8 *9 *3 *10)) (-5 *4 (-591 (-1085 *3))))) (-3521 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-712)) (-5 *5 (-591 *3)) (-4 *3 (-286)) (-4 *6 (-788)) (-4 *7 (-734)) (-5 *2 (-108)) (-5 *1 (-574 *6 *7 *3 *8)) (-4 *8 (-882 *3 *7 *6)))))
+(-10 -7 (-15 -3521 ((-108) |#3| (-712) (-591 |#3|))) (-15 -2667 ((-3 (-2 (|:| |polfac| (-591 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-591 (-1085 |#3|)))) "failed") |#3| (-591 (-1085 |#3|)) (-2 (|:| |contp| |#3|) (|:| -3781 (-591 (-2 (|:| |irr| |#4|) (|:| -3265 (-525)))))) (-591 |#3|) (-591 |#1|) (-591 |#3|))))
+((-3008 (((-108) $ $) NIL)) (-3531 (((-591 |#1|) $) NIL)) (-3798 (($) NIL T CONST)) (-4163 (((-3 $ "failed") $) NIL)) (-2824 (((-108) $) NIL)) (-2457 (($ $) 67)) (-1488 (((-609 |#1| |#2|) $) 52)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 70)) (-3831 (((-591 (-273 |#2|)) $ $) 33)) (-2047 (((-1036) $) NIL)) (-1409 (($ (-609 |#1| |#2|)) 48)) (-3228 (($ $ $) NIL)) (-3619 (($ $ $) NIL)) (-3022 (((-796) $) 58) (((-1184 |#1| |#2|) $) NIL) (((-1189 |#1| |#2|) $) 66)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4197 (($) 53 T CONST)) (-1936 (((-591 (-2 (|:| |k| (-616 |#1|)) (|:| |c| |#2|))) $) 31)) (-2555 (((-591 (-609 |#1| |#2|)) (-591 |#1|)) 65)) (-1650 (((-591 (-2 (|:| |k| (-826 |#1|)) (|:| |c| |#2|))) $) 37)) (-4096 (((-108) $ $) 54)) (-4173 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ $ $) 44)))
+(((-575 |#1| |#2| |#3|) (-13 (-450) (-10 -8 (-15 -1409 ($ (-609 |#1| |#2|))) (-15 -1488 ((-609 |#1| |#2|) $)) (-15 -1650 ((-591 (-2 (|:| |k| (-826 |#1|)) (|:| |c| |#2|))) $)) (-15 -3022 ((-1184 |#1| |#2|) $)) (-15 -3022 ((-1189 |#1| |#2|) $)) (-15 -2457 ($ $)) (-15 -3531 ((-591 |#1|) $)) (-15 -2555 ((-591 (-609 |#1| |#2|)) (-591 |#1|))) (-15 -1936 ((-591 (-2 (|:| |k| (-616 |#1|)) (|:| |c| |#2|))) $)) (-15 -3831 ((-591 (-273 |#2|)) $ $)))) (-788) (-13 (-160) (-659 (-385 (-525)))) (-854)) (T -575))
+((-1409 (*1 *1 *2) (-12 (-5 *2 (-609 *3 *4)) (-4 *3 (-788)) (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-5 *1 (-575 *3 *4 *5)) (-14 *5 (-854)))) (-1488 (*1 *2 *1) (-12 (-5 *2 (-609 *3 *4)) (-5 *1 (-575 *3 *4 *5)) (-4 *3 (-788)) (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-14 *5 (-854)))) (-1650 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| |k| (-826 *3)) (|:| |c| *4)))) (-5 *1 (-575 *3 *4 *5)) (-4 *3 (-788)) (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-14 *5 (-854)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-1184 *3 *4)) (-5 *1 (-575 *3 *4 *5)) (-4 *3 (-788)) (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-14 *5 (-854)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-1189 *3 *4)) (-5 *1 (-575 *3 *4 *5)) (-4 *3 (-788)) (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-14 *5 (-854)))) (-2457 (*1 *1 *1) (-12 (-5 *1 (-575 *2 *3 *4)) (-4 *2 (-788)) (-4 *3 (-13 (-160) (-659 (-385 (-525))))) (-14 *4 (-854)))) (-3531 (*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-575 *3 *4 *5)) (-4 *3 (-788)) (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-14 *5 (-854)))) (-2555 (*1 *2 *3) (-12 (-5 *3 (-591 *4)) (-4 *4 (-788)) (-5 *2 (-591 (-609 *4 *5))) (-5 *1 (-575 *4 *5 *6)) (-4 *5 (-13 (-160) (-659 (-385 (-525))))) (-14 *6 (-854)))) (-1936 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| |k| (-616 *3)) (|:| |c| *4)))) (-5 *1 (-575 *3 *4 *5)) (-4 *3 (-788)) (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-14 *5 (-854)))) (-3831 (*1 *2 *1 *1) (-12 (-5 *2 (-591 (-273 *4))) (-5 *1 (-575 *3 *4 *5)) (-4 *3 (-788)) (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-14 *5 (-854)))))
+(-13 (-450) (-10 -8 (-15 -1409 ($ (-609 |#1| |#2|))) (-15 -1488 ((-609 |#1| |#2|) $)) (-15 -1650 ((-591 (-2 (|:| |k| (-826 |#1|)) (|:| |c| |#2|))) $)) (-15 -3022 ((-1184 |#1| |#2|) $)) (-15 -3022 ((-1189 |#1| |#2|) $)) (-15 -2457 ($ $)) (-15 -3531 ((-591 |#1|) $)) (-15 -2555 ((-591 (-609 |#1| |#2|)) (-591 |#1|))) (-15 -1936 ((-591 (-2 (|:| |k| (-616 |#1|)) (|:| |c| |#2|))) $)) (-15 -3831 ((-591 (-273 |#2|)) $ $))))
+((-2113 (((-591 (-1060 |#1| (-497 (-798 |#2|)) (-798 |#2|) (-721 |#1| (-798 |#2|)))) (-591 (-721 |#1| (-798 |#2|))) (-108)) 72) (((-591 (-972 |#1| |#2|)) (-591 (-721 |#1| (-798 |#2|))) (-108)) 58)) (-2766 (((-108) (-591 (-721 |#1| (-798 |#2|)))) 23)) (-1998 (((-591 (-1060 |#1| (-497 (-798 |#2|)) (-798 |#2|) (-721 |#1| (-798 |#2|)))) (-591 (-721 |#1| (-798 |#2|))) (-108)) 71)) (-3777 (((-591 (-972 |#1| |#2|)) (-591 (-721 |#1| (-798 |#2|))) (-108)) 57)) (-3805 (((-591 (-721 |#1| (-798 |#2|))) (-591 (-721 |#1| (-798 |#2|)))) 27)) (-1534 (((-3 (-591 (-721 |#1| (-798 |#2|))) "failed") (-591 (-721 |#1| (-798 |#2|)))) 26)))
+(((-576 |#1| |#2|) (-10 -7 (-15 -2766 ((-108) (-591 (-721 |#1| (-798 |#2|))))) (-15 -1534 ((-3 (-591 (-721 |#1| (-798 |#2|))) "failed") (-591 (-721 |#1| (-798 |#2|))))) (-15 -3805 ((-591 (-721 |#1| (-798 |#2|))) (-591 (-721 |#1| (-798 |#2|))))) (-15 -3777 ((-591 (-972 |#1| |#2|)) (-591 (-721 |#1| (-798 |#2|))) (-108))) (-15 -1998 ((-591 (-1060 |#1| (-497 (-798 |#2|)) (-798 |#2|) (-721 |#1| (-798 |#2|)))) (-591 (-721 |#1| (-798 |#2|))) (-108))) (-15 -2113 ((-591 (-972 |#1| |#2|)) (-591 (-721 |#1| (-798 |#2|))) (-108))) (-15 -2113 ((-591 (-1060 |#1| (-497 (-798 |#2|)) (-798 |#2|) (-721 |#1| (-798 |#2|)))) (-591 (-721 |#1| (-798 |#2|))) (-108)))) (-429) (-591 (-1089))) (T -576))
+((-2113 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-721 *5 (-798 *6)))) (-5 *4 (-108)) (-4 *5 (-429)) (-14 *6 (-591 (-1089))) (-5 *2 (-591 (-1060 *5 (-497 (-798 *6)) (-798 *6) (-721 *5 (-798 *6))))) (-5 *1 (-576 *5 *6)))) (-2113 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-721 *5 (-798 *6)))) (-5 *4 (-108)) (-4 *5 (-429)) (-14 *6 (-591 (-1089))) (-5 *2 (-591 (-972 *5 *6))) (-5 *1 (-576 *5 *6)))) (-1998 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-721 *5 (-798 *6)))) (-5 *4 (-108)) (-4 *5 (-429)) (-14 *6 (-591 (-1089))) (-5 *2 (-591 (-1060 *5 (-497 (-798 *6)) (-798 *6) (-721 *5 (-798 *6))))) (-5 *1 (-576 *5 *6)))) (-3777 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-721 *5 (-798 *6)))) (-5 *4 (-108)) (-4 *5 (-429)) (-14 *6 (-591 (-1089))) (-5 *2 (-591 (-972 *5 *6))) (-5 *1 (-576 *5 *6)))) (-3805 (*1 *2 *2) (-12 (-5 *2 (-591 (-721 *3 (-798 *4)))) (-4 *3 (-429)) (-14 *4 (-591 (-1089))) (-5 *1 (-576 *3 *4)))) (-1534 (*1 *2 *2) (|partial| -12 (-5 *2 (-591 (-721 *3 (-798 *4)))) (-4 *3 (-429)) (-14 *4 (-591 (-1089))) (-5 *1 (-576 *3 *4)))) (-2766 (*1 *2 *3) (-12 (-5 *3 (-591 (-721 *4 (-798 *5)))) (-4 *4 (-429)) (-14 *5 (-591 (-1089))) (-5 *2 (-108)) (-5 *1 (-576 *4 *5)))))
+(-10 -7 (-15 -2766 ((-108) (-591 (-721 |#1| (-798 |#2|))))) (-15 -1534 ((-3 (-591 (-721 |#1| (-798 |#2|))) "failed") (-591 (-721 |#1| (-798 |#2|))))) (-15 -3805 ((-591 (-721 |#1| (-798 |#2|))) (-591 (-721 |#1| (-798 |#2|))))) (-15 -3777 ((-591 (-972 |#1| |#2|)) (-591 (-721 |#1| (-798 |#2|))) (-108))) (-15 -1998 ((-591 (-1060 |#1| (-497 (-798 |#2|)) (-798 |#2|) (-721 |#1| (-798 |#2|)))) (-591 (-721 |#1| (-798 |#2|))) (-108))) (-15 -2113 ((-591 (-972 |#1| |#2|)) (-591 (-721 |#1| (-798 |#2|))) (-108))) (-15 -2113 ((-591 (-1060 |#1| (-497 (-798 |#2|)) (-798 |#2|) (-721 |#1| (-798 |#2|)))) (-591 (-721 |#1| (-798 |#2|))) (-108))))
+((-1987 (($ $) 38)) (-3169 (($ $) 21)) (-1431 (($ $) 37)) (-3144 (($ $) 22)) (-1719 (($ $) 36)) (-1321 (($ $) 23)) (-1784 (($) 48)) (-1488 (($ $) 45)) (-2433 (($ $) 17)) (-1817 (($ $ (-1011 $)) 7) (($ $ (-1089)) 6)) (-1409 (($ $) 46)) (-3103 (($ $) 15)) (-3131 (($ $) 16)) (-1502 (($ $) 35)) (-1333 (($ $) 24)) (-1996 (($ $) 34)) (-1309 (($ $) 25)) (-1973 (($ $) 33)) (-3156 (($ $) 26)) (-1563 (($ $) 44)) (-1371 (($ $) 32)) (-1515 (($ $) 43)) (-1346 (($ $) 31)) (-1591 (($ $) 42)) (-1400 (($ $) 30)) (-3277 (($ $) 41)) (-1415 (($ $) 29)) (-1578 (($ $) 40)) (-1385 (($ $) 28)) (-1527 (($ $) 39)) (-1358 (($ $) 27)) (-2515 (($ $) 19)) (-3337 (($ $) 20)) (-1479 (($ $) 18)) (** (($ $ $) 47)))
+(((-577) (-131)) (T -577))
+((-3337 (*1 *1 *1) (-4 *1 (-577))) (-2515 (*1 *1 *1) (-4 *1 (-577))) (-1479 (*1 *1 *1) (-4 *1 (-577))) (-2433 (*1 *1 *1) (-4 *1 (-577))) (-3131 (*1 *1 *1) (-4 *1 (-577))) (-3103 (*1 *1 *1) (-4 *1 (-577))))
+(-13 (-891) (-1111) (-10 -8 (-15 -3337 ($ $)) (-15 -2515 ($ $)) (-15 -1479 ($ $)) (-15 -2433 ($ $)) (-15 -3131 ($ $)) (-15 -3103 ($ $))))
+(((-34) . T) ((-91) . T) ((-263) . T) ((-466) . T) ((-891) . T) ((-1111) . T) ((-1114) . T))
+((-3219 (((-110) (-110)) 83)) (-2433 ((|#2| |#2|) 30)) (-1817 ((|#2| |#2| (-1011 |#2|)) 79) ((|#2| |#2| (-1089)) 52)) (-3103 ((|#2| |#2|) 29)) (-3131 ((|#2| |#2|) 31)) (-2661 (((-108) (-110)) 34)) (-2515 ((|#2| |#2|) 26)) (-3337 ((|#2| |#2|) 28)) (-1479 ((|#2| |#2|) 27)))
+(((-578 |#1| |#2|) (-10 -7 (-15 -2661 ((-108) (-110))) (-15 -3219 ((-110) (-110))) (-15 -3337 (|#2| |#2|)) (-15 -2515 (|#2| |#2|)) (-15 -1479 (|#2| |#2|)) (-15 -2433 (|#2| |#2|)) (-15 -3103 (|#2| |#2|)) (-15 -3131 (|#2| |#2|)) (-15 -1817 (|#2| |#2| (-1089))) (-15 -1817 (|#2| |#2| (-1011 |#2|)))) (-13 (-788) (-517)) (-13 (-408 |#1|) (-932) (-1111))) (T -578))
+((-1817 (*1 *2 *2 *3) (-12 (-5 *3 (-1011 *2)) (-4 *2 (-13 (-408 *4) (-932) (-1111))) (-4 *4 (-13 (-788) (-517))) (-5 *1 (-578 *4 *2)))) (-1817 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-788) (-517))) (-5 *1 (-578 *4 *2)) (-4 *2 (-13 (-408 *4) (-932) (-1111))))) (-3131 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-578 *3 *2)) (-4 *2 (-13 (-408 *3) (-932) (-1111))))) (-3103 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-578 *3 *2)) (-4 *2 (-13 (-408 *3) (-932) (-1111))))) (-2433 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-578 *3 *2)) (-4 *2 (-13 (-408 *3) (-932) (-1111))))) (-1479 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-578 *3 *2)) (-4 *2 (-13 (-408 *3) (-932) (-1111))))) (-2515 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-578 *3 *2)) (-4 *2 (-13 (-408 *3) (-932) (-1111))))) (-3337 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-578 *3 *2)) (-4 *2 (-13 (-408 *3) (-932) (-1111))))) (-3219 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-788) (-517))) (-5 *1 (-578 *3 *4)) (-4 *4 (-13 (-408 *3) (-932) (-1111))))) (-2661 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-108)) (-5 *1 (-578 *4 *5)) (-4 *5 (-13 (-408 *4) (-932) (-1111))))))
+(-10 -7 (-15 -2661 ((-108) (-110))) (-15 -3219 ((-110) (-110))) (-15 -3337 (|#2| |#2|)) (-15 -2515 (|#2| |#2|)) (-15 -1479 (|#2| |#2|)) (-15 -2433 (|#2| |#2|)) (-15 -3103 (|#2| |#2|)) (-15 -3131 (|#2| |#2|)) (-15 -1817 (|#2| |#2| (-1089))) (-15 -1817 (|#2| |#2| (-1011 |#2|))))
+((-1691 (((-457 |#1| |#2|) (-227 |#1| |#2|)) 53)) (-1423 (((-591 (-227 |#1| |#2|)) (-591 (-457 |#1| |#2|))) 68)) (-4022 (((-457 |#1| |#2|) (-591 (-457 |#1| |#2|)) (-798 |#1|)) 70) (((-457 |#1| |#2|) (-591 (-457 |#1| |#2|)) (-591 (-457 |#1| |#2|)) (-798 |#1|)) 69)) (-2192 (((-2 (|:| |gblist| (-591 (-227 |#1| |#2|))) (|:| |gvlist| (-591 (-525)))) (-591 (-457 |#1| |#2|))) 108)) (-3657 (((-591 (-457 |#1| |#2|)) (-798 |#1|) (-591 (-457 |#1| |#2|)) (-591 (-457 |#1| |#2|))) 83)) (-3994 (((-2 (|:| |glbase| (-591 (-227 |#1| |#2|))) (|:| |glval| (-591 (-525)))) (-591 (-227 |#1| |#2|))) 118)) (-2789 (((-1171 |#2|) (-457 |#1| |#2|) (-591 (-457 |#1| |#2|))) 58)) (-1826 (((-591 (-457 |#1| |#2|)) (-591 (-457 |#1| |#2|))) 41)) (-2706 (((-227 |#1| |#2|) (-227 |#1| |#2|) (-591 (-227 |#1| |#2|))) 50)) (-3309 (((-227 |#1| |#2|) (-591 |#2|) (-227 |#1| |#2|) (-591 (-227 |#1| |#2|))) 91)))
+(((-579 |#1| |#2|) (-10 -7 (-15 -2192 ((-2 (|:| |gblist| (-591 (-227 |#1| |#2|))) (|:| |gvlist| (-591 (-525)))) (-591 (-457 |#1| |#2|)))) (-15 -3994 ((-2 (|:| |glbase| (-591 (-227 |#1| |#2|))) (|:| |glval| (-591 (-525)))) (-591 (-227 |#1| |#2|)))) (-15 -1423 ((-591 (-227 |#1| |#2|)) (-591 (-457 |#1| |#2|)))) (-15 -4022 ((-457 |#1| |#2|) (-591 (-457 |#1| |#2|)) (-591 (-457 |#1| |#2|)) (-798 |#1|))) (-15 -4022 ((-457 |#1| |#2|) (-591 (-457 |#1| |#2|)) (-798 |#1|))) (-15 -1826 ((-591 (-457 |#1| |#2|)) (-591 (-457 |#1| |#2|)))) (-15 -2789 ((-1171 |#2|) (-457 |#1| |#2|) (-591 (-457 |#1| |#2|)))) (-15 -3309 ((-227 |#1| |#2|) (-591 |#2|) (-227 |#1| |#2|) (-591 (-227 |#1| |#2|)))) (-15 -3657 ((-591 (-457 |#1| |#2|)) (-798 |#1|) (-591 (-457 |#1| |#2|)) (-591 (-457 |#1| |#2|)))) (-15 -2706 ((-227 |#1| |#2|) (-227 |#1| |#2|) (-591 (-227 |#1| |#2|)))) (-15 -1691 ((-457 |#1| |#2|) (-227 |#1| |#2|)))) (-591 (-1089)) (-429)) (T -579))
+((-1691 (*1 *2 *3) (-12 (-5 *3 (-227 *4 *5)) (-14 *4 (-591 (-1089))) (-4 *5 (-429)) (-5 *2 (-457 *4 *5)) (-5 *1 (-579 *4 *5)))) (-2706 (*1 *2 *2 *3) (-12 (-5 *3 (-591 (-227 *4 *5))) (-5 *2 (-227 *4 *5)) (-14 *4 (-591 (-1089))) (-4 *5 (-429)) (-5 *1 (-579 *4 *5)))) (-3657 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-591 (-457 *4 *5))) (-5 *3 (-798 *4)) (-14 *4 (-591 (-1089))) (-4 *5 (-429)) (-5 *1 (-579 *4 *5)))) (-3309 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-591 *6)) (-5 *4 (-591 (-227 *5 *6))) (-4 *6 (-429)) (-5 *2 (-227 *5 *6)) (-14 *5 (-591 (-1089))) (-5 *1 (-579 *5 *6)))) (-2789 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-457 *5 *6))) (-5 *3 (-457 *5 *6)) (-14 *5 (-591 (-1089))) (-4 *6 (-429)) (-5 *2 (-1171 *6)) (-5 *1 (-579 *5 *6)))) (-1826 (*1 *2 *2) (-12 (-5 *2 (-591 (-457 *3 *4))) (-14 *3 (-591 (-1089))) (-4 *4 (-429)) (-5 *1 (-579 *3 *4)))) (-4022 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-457 *5 *6))) (-5 *4 (-798 *5)) (-14 *5 (-591 (-1089))) (-5 *2 (-457 *5 *6)) (-5 *1 (-579 *5 *6)) (-4 *6 (-429)))) (-4022 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-591 (-457 *5 *6))) (-5 *4 (-798 *5)) (-14 *5 (-591 (-1089))) (-5 *2 (-457 *5 *6)) (-5 *1 (-579 *5 *6)) (-4 *6 (-429)))) (-1423 (*1 *2 *3) (-12 (-5 *3 (-591 (-457 *4 *5))) (-14 *4 (-591 (-1089))) (-4 *5 (-429)) (-5 *2 (-591 (-227 *4 *5))) (-5 *1 (-579 *4 *5)))) (-3994 (*1 *2 *3) (-12 (-14 *4 (-591 (-1089))) (-4 *5 (-429)) (-5 *2 (-2 (|:| |glbase| (-591 (-227 *4 *5))) (|:| |glval| (-591 (-525))))) (-5 *1 (-579 *4 *5)) (-5 *3 (-591 (-227 *4 *5))))) (-2192 (*1 *2 *3) (-12 (-5 *3 (-591 (-457 *4 *5))) (-14 *4 (-591 (-1089))) (-4 *5 (-429)) (-5 *2 (-2 (|:| |gblist| (-591 (-227 *4 *5))) (|:| |gvlist| (-591 (-525))))) (-5 *1 (-579 *4 *5)))))
+(-10 -7 (-15 -2192 ((-2 (|:| |gblist| (-591 (-227 |#1| |#2|))) (|:| |gvlist| (-591 (-525)))) (-591 (-457 |#1| |#2|)))) (-15 -3994 ((-2 (|:| |glbase| (-591 (-227 |#1| |#2|))) (|:| |glval| (-591 (-525)))) (-591 (-227 |#1| |#2|)))) (-15 -1423 ((-591 (-227 |#1| |#2|)) (-591 (-457 |#1| |#2|)))) (-15 -4022 ((-457 |#1| |#2|) (-591 (-457 |#1| |#2|)) (-591 (-457 |#1| |#2|)) (-798 |#1|))) (-15 -4022 ((-457 |#1| |#2|) (-591 (-457 |#1| |#2|)) (-798 |#1|))) (-15 -1826 ((-591 (-457 |#1| |#2|)) (-591 (-457 |#1| |#2|)))) (-15 -2789 ((-1171 |#2|) (-457 |#1| |#2|) (-591 (-457 |#1| |#2|)))) (-15 -3309 ((-227 |#1| |#2|) (-591 |#2|) (-227 |#1| |#2|) (-591 (-227 |#1| |#2|)))) (-15 -3657 ((-591 (-457 |#1| |#2|)) (-798 |#1|) (-591 (-457 |#1| |#2|)) (-591 (-457 |#1| |#2|)))) (-15 -2706 ((-227 |#1| |#2|) (-227 |#1| |#2|) (-591 (-227 |#1| |#2|)))) (-15 -1691 ((-457 |#1| |#2|) (-227 |#1| |#2|))))
+((-3008 (((-108) $ $) NIL (-3321 (|has| (-51) (-1018)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1018))))) (-1260 (($) NIL) (($ (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))))) NIL)) (-3296 (((-1176) $ (-1072) (-1072)) NIL (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 (((-51) $ (-1072) (-51)) 16) (((-51) $ (-1089) (-51)) 17)) (-1797 (($ (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250)))) (-2401 (((-3 (-51) "failed") (-1072) $) NIL)) (-3798 (($) NIL T CONST)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1018))))) (-3901 (($ (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) $) NIL (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-3 (-51) "failed") (-1072) $) NIL)) (-3677 (($ (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1018)))) (($ (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250)))) (-1227 (((-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) $ (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1018)))) (((-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) $ (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) NIL (|has| $ (-6 -4250))) (((-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250)))) (-3255 (((-51) $ (-1072) (-51)) NIL (|has| $ (-6 -4251)))) (-3217 (((-51) $ (-1072)) NIL)) (-3454 (((-591 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-591 (-51)) $) NIL (|has| $ (-6 -4250)))) (-1829 (($ $) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-1072) $) NIL (|has| (-1072) (-788)))) (-2552 (((-591 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-591 (-51)) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1018)))) (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-51) (-1018))))) (-3468 (((-1072) $) NIL (|has| (-1072) (-788)))) (-3249 (($ (-1 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4251))) (($ (-1 (-51) (-51)) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) $) NIL) (($ (-1 (-51) (-51)) $) NIL) (($ (-1 (-51) (-51) (-51)) $ $) NIL)) (-2394 (($ (-366)) 9)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (-3321 (|has| (-51) (-1018)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1018))))) (-1542 (((-591 (-1072)) $) NIL)) (-2484 (((-108) (-1072) $) NIL)) (-1464 (((-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) $) NIL)) (-2470 (($ (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) $) NIL)) (-2511 (((-591 (-1072)) $) NIL)) (-2791 (((-108) (-1072) $) NIL)) (-2047 (((-1036) $) NIL (-3321 (|has| (-51) (-1018)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1018))))) (-3066 (((-51) $) NIL (|has| (-1072) (-788)))) (-2069 (((-3 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) "failed") (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) $) NIL)) (-1941 (($ $ (-51)) NIL (|has| $ (-6 -4251)))) (-3631 (((-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) $) NIL)) (-1623 (((-108) (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))))) NIL (-12 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))))) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1018)))) (($ $ (-273 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))))) NIL (-12 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))))) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1018)))) (($ $ (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) NIL (-12 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))))) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1018)))) (($ $ (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))))) NIL (-12 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))))) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1018)))) (($ $ (-591 (-51)) (-591 (-51))) NIL (-12 (|has| (-51) (-288 (-51))) (|has| (-51) (-1018)))) (($ $ (-51) (-51)) NIL (-12 (|has| (-51) (-288 (-51))) (|has| (-51) (-1018)))) (($ $ (-273 (-51))) NIL (-12 (|has| (-51) (-288 (-51))) (|has| (-51) (-1018)))) (($ $ (-591 (-273 (-51)))) NIL (-12 (|has| (-51) (-288 (-51))) (|has| (-51) (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-51) (-1018))))) (-3339 (((-591 (-51)) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 (((-51) $ (-1072)) 14) (((-51) $ (-1072) (-51)) NIL) (((-51) $ (-1089)) 15)) (-2311 (($) NIL) (($ (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))))) NIL)) (-2064 (((-712) (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1018)))) (((-712) (-51) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-51) (-1018)))) (((-712) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-566 (-501))))) (-3036 (($ (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))))) NIL)) (-3022 (((-796) $) NIL (-3321 (|has| (-51) (-565 (-796))) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-565 (-796)))))) (-1870 (($ (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))))) NIL)) (-4158 (((-108) (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (-3321 (|has| (-51) (-1018)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 (-51))) (-1018))))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-580) (-13 (-1102 (-1072) (-51)) (-10 -8 (-15 -2394 ($ (-366))) (-15 -1829 ($ $)) (-15 -3164 ((-51) $ (-1089))) (-15 -3186 ((-51) $ (-1089) (-51)))))) (T -580))
+((-2394 (*1 *1 *2) (-12 (-5 *2 (-366)) (-5 *1 (-580)))) (-1829 (*1 *1 *1) (-5 *1 (-580))) (-3164 (*1 *2 *1 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-51)) (-5 *1 (-580)))) (-3186 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-51)) (-5 *3 (-1089)) (-5 *1 (-580)))))
+(-13 (-1102 (-1072) (-51)) (-10 -8 (-15 -2394 ($ (-366))) (-15 -1829 ($ $)) (-15 -3164 ((-51) $ (-1089))) (-15 -3186 ((-51) $ (-1089) (-51)))))
+((-4173 (($ $ |#2|) 10)))
+(((-581 |#1| |#2|) (-10 -8 (-15 -4173 (|#1| |#1| |#2|))) (-582 |#2|) (-160)) (T -581))
+NIL
+(-10 -8 (-15 -4173 (|#1| |#1| |#2|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3036 (($ $ $) 29)) (-3022 (((-796) $) 11)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4173 (($ $ |#1|) 28 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
+(((-582 |#1|) (-131) (-160)) (T -582))
+((-3036 (*1 *1 *1 *1) (-12 (-4 *1 (-582 *2)) (-4 *2 (-160)))) (-4173 (*1 *1 *1 *2) (-12 (-4 *1 (-582 *2)) (-4 *2 (-160)) (-4 *2 (-341)))))
+(-13 (-659 |t#1|) (-10 -8 (-6 |NullSquare|) (-6 |JacobiIdentity|) (-15 -3036 ($ $ $)) (IF (|has| |t#1| (-341)) (-15 -4173 ($ $ |t#1|)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 |#1|) . T) ((-659 |#1|) . T) ((-981 |#1|) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2999 (((-3 $ "failed")) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1593 (((-1171 (-631 |#1|))) NIL (|has| |#2| (-395 |#1|))) (((-1171 (-631 |#1|)) (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-2608 (((-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-3798 (($) NIL T CONST)) (-3160 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-3624 (((-3 $ "failed")) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-4094 (((-631 |#1|)) NIL (|has| |#2| (-395 |#1|))) (((-631 |#1|) (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-4011 ((|#1| $) NIL (|has| |#2| (-345 |#1|)))) (-3711 (((-631 |#1|) $) NIL (|has| |#2| (-395 |#1|))) (((-631 |#1|) $ (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-3057 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-2550 (((-1085 (-885 |#1|))) NIL (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-341))))) (-3433 (($ $ (-854)) NIL)) (-3996 ((|#1| $) NIL (|has| |#2| (-345 |#1|)))) (-3473 (((-1085 |#1|) $) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-2449 ((|#1|) NIL (|has| |#2| (-395 |#1|))) ((|#1| (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-3158 (((-1085 |#1|) $) NIL (|has| |#2| (-345 |#1|)))) (-2772 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-4171 (($ (-1171 |#1|)) NIL (|has| |#2| (-395 |#1|))) (($ (-1171 |#1|) (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-4163 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-4073 (((-854)) NIL (|has| |#2| (-345 |#1|)))) (-3401 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-2462 (($ $ (-854)) NIL)) (-3915 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-2590 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-2248 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-3121 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-2659 (((-3 $ "failed")) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-1548 (((-631 |#1|)) NIL (|has| |#2| (-395 |#1|))) (((-631 |#1|) (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-4032 ((|#1| $) NIL (|has| |#2| (-345 |#1|)))) (-3793 (((-631 |#1|) $) NIL (|has| |#2| (-395 |#1|))) (((-631 |#1|) $ (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-1838 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-1308 (((-1085 (-885 |#1|))) NIL (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-341))))) (-3447 (($ $ (-854)) NIL)) (-3018 ((|#1| $) NIL (|has| |#2| (-345 |#1|)))) (-1858 (((-1085 |#1|) $) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-1368 ((|#1|) NIL (|has| |#2| (-395 |#1|))) ((|#1| (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-2253 (((-1085 |#1|) $) NIL (|has| |#2| (-345 |#1|)))) (-2448 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-2339 (((-1072) $) NIL)) (-1407 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-3704 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-2688 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-2047 (((-1036) $) NIL)) (-4160 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-3164 ((|#1| $ (-525)) NIL (|has| |#2| (-395 |#1|)))) (-3572 (((-631 |#1|) (-1171 $)) NIL (|has| |#2| (-395 |#1|))) (((-1171 |#1|) $) NIL (|has| |#2| (-395 |#1|))) (((-631 |#1|) (-1171 $) (-1171 $)) NIL (|has| |#2| (-345 |#1|))) (((-1171 |#1|) $ (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-1408 (($ (-1171 |#1|)) NIL (|has| |#2| (-395 |#1|))) (((-1171 |#1|) $) NIL (|has| |#2| (-395 |#1|)))) (-2117 (((-591 (-885 |#1|))) NIL (|has| |#2| (-395 |#1|))) (((-591 (-885 |#1|)) (-1171 $)) NIL (|has| |#2| (-345 |#1|)))) (-3619 (($ $ $) NIL)) (-1806 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-3022 (((-796) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-4003 (((-1171 $)) NIL (|has| |#2| (-395 |#1|)))) (-1640 (((-591 (-1171 |#1|))) NIL (-3321 (-12 (|has| |#2| (-345 |#1|)) (|has| |#1| (-517))) (-12 (|has| |#2| (-395 |#1|)) (|has| |#1| (-517)))))) (-2392 (($ $ $ $) NIL)) (-2938 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-3005 (($ (-631 |#1|) $) NIL (|has| |#2| (-395 |#1|)))) (-2707 (($ $ $) NIL)) (-2826 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-1532 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-1307 (((-108)) NIL (|has| |#2| (-345 |#1|)))) (-4191 (($) 15 T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) 17)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 11) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-583 |#1| |#2|) (-13 (-686 |#1|) (-565 |#2|) (-10 -8 (-15 -3022 ($ |#2|)) (IF (|has| |#2| (-395 |#1|)) (-6 (-395 |#1|)) |%noBranch|) (IF (|has| |#2| (-345 |#1|)) (-6 (-345 |#1|)) |%noBranch|))) (-160) (-686 |#1|)) (T -583))
+((-3022 (*1 *1 *2) (-12 (-4 *3 (-160)) (-5 *1 (-583 *3 *2)) (-4 *2 (-686 *3)))))
+(-13 (-686 |#1|) (-565 |#2|) (-10 -8 (-15 -3022 ($ |#2|)) (IF (|has| |#2| (-395 |#1|)) (-6 (-395 |#1|)) |%noBranch|) (IF (|has| |#2| (-345 |#1|)) (-6 (-345 |#1|)) |%noBranch|)))
+((-3726 (((-3 (-781 |#2|) "failed") |#2| (-273 |#2|) (-1072)) 82) (((-3 (-781 |#2|) (-2 (|:| |leftHandLimit| (-3 (-781 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-781 |#2|) "failed"))) "failed") |#2| (-273 (-781 |#2|))) 104)) (-1658 (((-3 (-774 |#2|) "failed") |#2| (-273 (-774 |#2|))) 109)))
+(((-584 |#1| |#2|) (-10 -7 (-15 -3726 ((-3 (-781 |#2|) (-2 (|:| |leftHandLimit| (-3 (-781 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-781 |#2|) "failed"))) "failed") |#2| (-273 (-781 |#2|)))) (-15 -1658 ((-3 (-774 |#2|) "failed") |#2| (-273 (-774 |#2|)))) (-15 -3726 ((-3 (-781 |#2|) "failed") |#2| (-273 |#2|) (-1072)))) (-13 (-429) (-788) (-966 (-525)) (-587 (-525))) (-13 (-27) (-1111) (-408 |#1|))) (T -584))
+((-3726 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-273 *3)) (-5 *5 (-1072)) (-4 *3 (-13 (-27) (-1111) (-408 *6))) (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-781 *3)) (-5 *1 (-584 *6 *3)))) (-1658 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-273 (-774 *3))) (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-774 *3)) (-5 *1 (-584 *5 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5))))) (-3726 (*1 *2 *3 *4) (-12 (-5 *4 (-273 (-781 *3))) (-4 *3 (-13 (-27) (-1111) (-408 *5))) (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-3 (-781 *3) (-2 (|:| |leftHandLimit| (-3 (-781 *3) "failed")) (|:| |rightHandLimit| (-3 (-781 *3) "failed"))) "failed")) (-5 *1 (-584 *5 *3)))))
+(-10 -7 (-15 -3726 ((-3 (-781 |#2|) (-2 (|:| |leftHandLimit| (-3 (-781 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-781 |#2|) "failed"))) "failed") |#2| (-273 (-781 |#2|)))) (-15 -1658 ((-3 (-774 |#2|) "failed") |#2| (-273 (-774 |#2|)))) (-15 -3726 ((-3 (-781 |#2|) "failed") |#2| (-273 |#2|) (-1072))))
+((-3726 (((-3 (-781 (-385 (-885 |#1|))) "failed") (-385 (-885 |#1|)) (-273 (-385 (-885 |#1|))) (-1072)) 80) (((-3 (-781 (-385 (-885 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-781 (-385 (-885 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-781 (-385 (-885 |#1|))) "failed"))) "failed") (-385 (-885 |#1|)) (-273 (-385 (-885 |#1|)))) 20) (((-3 (-781 (-385 (-885 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-781 (-385 (-885 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-781 (-385 (-885 |#1|))) "failed"))) "failed") (-385 (-885 |#1|)) (-273 (-781 (-885 |#1|)))) 35)) (-1658 (((-774 (-385 (-885 |#1|))) (-385 (-885 |#1|)) (-273 (-385 (-885 |#1|)))) 23) (((-774 (-385 (-885 |#1|))) (-385 (-885 |#1|)) (-273 (-774 (-885 |#1|)))) 43)))
+(((-585 |#1|) (-10 -7 (-15 -3726 ((-3 (-781 (-385 (-885 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-781 (-385 (-885 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-781 (-385 (-885 |#1|))) "failed"))) "failed") (-385 (-885 |#1|)) (-273 (-781 (-885 |#1|))))) (-15 -3726 ((-3 (-781 (-385 (-885 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-781 (-385 (-885 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-781 (-385 (-885 |#1|))) "failed"))) "failed") (-385 (-885 |#1|)) (-273 (-385 (-885 |#1|))))) (-15 -1658 ((-774 (-385 (-885 |#1|))) (-385 (-885 |#1|)) (-273 (-774 (-885 |#1|))))) (-15 -1658 ((-774 (-385 (-885 |#1|))) (-385 (-885 |#1|)) (-273 (-385 (-885 |#1|))))) (-15 -3726 ((-3 (-781 (-385 (-885 |#1|))) "failed") (-385 (-885 |#1|)) (-273 (-385 (-885 |#1|))) (-1072)))) (-429)) (T -585))
+((-3726 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-273 (-385 (-885 *6)))) (-5 *5 (-1072)) (-5 *3 (-385 (-885 *6))) (-4 *6 (-429)) (-5 *2 (-781 *3)) (-5 *1 (-585 *6)))) (-1658 (*1 *2 *3 *4) (-12 (-5 *4 (-273 (-385 (-885 *5)))) (-5 *3 (-385 (-885 *5))) (-4 *5 (-429)) (-5 *2 (-774 *3)) (-5 *1 (-585 *5)))) (-1658 (*1 *2 *3 *4) (-12 (-5 *4 (-273 (-774 (-885 *5)))) (-4 *5 (-429)) (-5 *2 (-774 (-385 (-885 *5)))) (-5 *1 (-585 *5)) (-5 *3 (-385 (-885 *5))))) (-3726 (*1 *2 *3 *4) (-12 (-5 *4 (-273 (-385 (-885 *5)))) (-5 *3 (-385 (-885 *5))) (-4 *5 (-429)) (-5 *2 (-3 (-781 *3) (-2 (|:| |leftHandLimit| (-3 (-781 *3) "failed")) (|:| |rightHandLimit| (-3 (-781 *3) "failed"))) "failed")) (-5 *1 (-585 *5)))) (-3726 (*1 *2 *3 *4) (-12 (-5 *4 (-273 (-781 (-885 *5)))) (-4 *5 (-429)) (-5 *2 (-3 (-781 (-385 (-885 *5))) (-2 (|:| |leftHandLimit| (-3 (-781 (-385 (-885 *5))) "failed")) (|:| |rightHandLimit| (-3 (-781 (-385 (-885 *5))) "failed"))) "failed")) (-5 *1 (-585 *5)) (-5 *3 (-385 (-885 *5))))))
+(-10 -7 (-15 -3726 ((-3 (-781 (-385 (-885 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-781 (-385 (-885 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-781 (-385 (-885 |#1|))) "failed"))) "failed") (-385 (-885 |#1|)) (-273 (-781 (-885 |#1|))))) (-15 -3726 ((-3 (-781 (-385 (-885 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-781 (-385 (-885 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-781 (-385 (-885 |#1|))) "failed"))) "failed") (-385 (-885 |#1|)) (-273 (-385 (-885 |#1|))))) (-15 -1658 ((-774 (-385 (-885 |#1|))) (-385 (-885 |#1|)) (-273 (-774 (-885 |#1|))))) (-15 -1658 ((-774 (-385 (-885 |#1|))) (-385 (-885 |#1|)) (-273 (-385 (-885 |#1|))))) (-15 -3726 ((-3 (-781 (-385 (-885 |#1|))) "failed") (-385 (-885 |#1|)) (-273 (-385 (-885 |#1|))) (-1072))))
+((-1729 (((-3 (-1171 (-385 |#1|)) "failed") (-1171 |#2|) |#2|) 57 (-2247 (|has| |#1| (-341)))) (((-3 (-1171 |#1|) "failed") (-1171 |#2|) |#2|) 42 (|has| |#1| (-341)))) (-4021 (((-108) (-1171 |#2|)) 30)) (-3254 (((-3 (-1171 |#1|) "failed") (-1171 |#2|)) 33)))
+(((-586 |#1| |#2|) (-10 -7 (-15 -4021 ((-108) (-1171 |#2|))) (-15 -3254 ((-3 (-1171 |#1|) "failed") (-1171 |#2|))) (IF (|has| |#1| (-341)) (-15 -1729 ((-3 (-1171 |#1|) "failed") (-1171 |#2|) |#2|)) (-15 -1729 ((-3 (-1171 (-385 |#1|)) "failed") (-1171 |#2|) |#2|)))) (-517) (-587 |#1|)) (T -586))
+((-1729 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1171 *4)) (-4 *4 (-587 *5)) (-2247 (-4 *5 (-341))) (-4 *5 (-517)) (-5 *2 (-1171 (-385 *5))) (-5 *1 (-586 *5 *4)))) (-1729 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1171 *4)) (-4 *4 (-587 *5)) (-4 *5 (-341)) (-4 *5 (-517)) (-5 *2 (-1171 *5)) (-5 *1 (-586 *5 *4)))) (-3254 (*1 *2 *3) (|partial| -12 (-5 *3 (-1171 *5)) (-4 *5 (-587 *4)) (-4 *4 (-517)) (-5 *2 (-1171 *4)) (-5 *1 (-586 *4 *5)))) (-4021 (*1 *2 *3) (-12 (-5 *3 (-1171 *5)) (-4 *5 (-587 *4)) (-4 *4 (-517)) (-5 *2 (-108)) (-5 *1 (-586 *4 *5)))))
+(-10 -7 (-15 -4021 ((-108) (-1171 |#2|))) (-15 -3254 ((-3 (-1171 |#1|) "failed") (-1171 |#2|))) (IF (|has| |#1| (-341)) (-15 -1729 ((-3 (-1171 |#1|) "failed") (-1171 |#2|) |#2|)) (-15 -1729 ((-3 (-1171 (-385 |#1|)) "failed") (-1171 |#2|) |#2|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-3305 (((-631 |#1|) (-631 $)) 36) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) 35)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11) (($ (-525)) 28)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-587 |#1|) (-131) (-975)) (T -587))
+((-3305 (*1 *2 *3) (-12 (-5 *3 (-631 *1)) (-4 *1 (-587 *4)) (-4 *4 (-975)) (-5 *2 (-631 *4)))) (-3305 (*1 *2 *3 *4) (-12 (-5 *3 (-631 *1)) (-5 *4 (-1171 *1)) (-4 *1 (-587 *5)) (-4 *5 (-975)) (-5 *2 (-2 (|:| -4057 (-631 *5)) (|:| |vec| (-1171 *5)))))))
+(-13 (-975) (-10 -8 (-15 -3305 ((-631 |t#1|) (-631 $))) (-15 -3305 ((-2 (|:| -4057 (-631 |t#1|)) (|:| |vec| (-1171 |t#1|))) (-631 $) (-1171 $)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 $) . T) ((-668) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3163 ((|#2| (-591 |#1|) (-591 |#2|) |#1| (-1 |#2| |#1|)) 18) (((-1 |#2| |#1|) (-591 |#1|) (-591 |#2|) (-1 |#2| |#1|)) 19) ((|#2| (-591 |#1|) (-591 |#2|) |#1| |#2|) 16) (((-1 |#2| |#1|) (-591 |#1|) (-591 |#2|) |#2|) 17) ((|#2| (-591 |#1|) (-591 |#2|) |#1|) 10) (((-1 |#2| |#1|) (-591 |#1|) (-591 |#2|)) 12)))
+(((-588 |#1| |#2|) (-10 -7 (-15 -3163 ((-1 |#2| |#1|) (-591 |#1|) (-591 |#2|))) (-15 -3163 (|#2| (-591 |#1|) (-591 |#2|) |#1|)) (-15 -3163 ((-1 |#2| |#1|) (-591 |#1|) (-591 |#2|) |#2|)) (-15 -3163 (|#2| (-591 |#1|) (-591 |#2|) |#1| |#2|)) (-15 -3163 ((-1 |#2| |#1|) (-591 |#1|) (-591 |#2|) (-1 |#2| |#1|))) (-15 -3163 (|#2| (-591 |#1|) (-591 |#2|) |#1| (-1 |#2| |#1|)))) (-1018) (-1125)) (T -588))
+((-3163 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-591 *5)) (-5 *4 (-591 *2)) (-5 *6 (-1 *2 *5)) (-4 *5 (-1018)) (-4 *2 (-1125)) (-5 *1 (-588 *5 *2)))) (-3163 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-591 *5)) (-5 *4 (-591 *6)) (-4 *5 (-1018)) (-4 *6 (-1125)) (-5 *1 (-588 *5 *6)))) (-3163 (*1 *2 *3 *4 *5 *2) (-12 (-5 *3 (-591 *5)) (-5 *4 (-591 *2)) (-4 *5 (-1018)) (-4 *2 (-1125)) (-5 *1 (-588 *5 *2)))) (-3163 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-591 *6)) (-5 *4 (-591 *5)) (-4 *6 (-1018)) (-4 *5 (-1125)) (-5 *2 (-1 *5 *6)) (-5 *1 (-588 *6 *5)))) (-3163 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-591 *5)) (-5 *4 (-591 *2)) (-4 *5 (-1018)) (-4 *2 (-1125)) (-5 *1 (-588 *5 *2)))) (-3163 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *5)) (-5 *4 (-591 *6)) (-4 *5 (-1018)) (-4 *6 (-1125)) (-5 *2 (-1 *6 *5)) (-5 *1 (-588 *5 *6)))))
+(-10 -7 (-15 -3163 ((-1 |#2| |#1|) (-591 |#1|) (-591 |#2|))) (-15 -3163 (|#2| (-591 |#1|) (-591 |#2|) |#1|)) (-15 -3163 ((-1 |#2| |#1|) (-591 |#1|) (-591 |#2|) |#2|)) (-15 -3163 (|#2| (-591 |#1|) (-591 |#2|) |#1| |#2|)) (-15 -3163 ((-1 |#2| |#1|) (-591 |#1|) (-591 |#2|) (-1 |#2| |#1|))) (-15 -3163 (|#2| (-591 |#1|) (-591 |#2|) |#1| (-1 |#2| |#1|))))
+((-1526 (((-591 |#2|) (-1 |#2| |#1| |#2|) (-591 |#1|) |#2|) 16)) (-1227 ((|#2| (-1 |#2| |#1| |#2|) (-591 |#1|) |#2|) 18)) (-1340 (((-591 |#2|) (-1 |#2| |#1|) (-591 |#1|)) 13)))
+(((-589 |#1| |#2|) (-10 -7 (-15 -1526 ((-591 |#2|) (-1 |#2| |#1| |#2|) (-591 |#1|) |#2|)) (-15 -1227 (|#2| (-1 |#2| |#1| |#2|) (-591 |#1|) |#2|)) (-15 -1340 ((-591 |#2|) (-1 |#2| |#1|) (-591 |#1|)))) (-1125) (-1125)) (T -589))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-591 *5)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-591 *6)) (-5 *1 (-589 *5 *6)))) (-1227 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-591 *5)) (-4 *5 (-1125)) (-4 *2 (-1125)) (-5 *1 (-589 *5 *2)))) (-1526 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-591 *6)) (-4 *6 (-1125)) (-4 *5 (-1125)) (-5 *2 (-591 *5)) (-5 *1 (-589 *6 *5)))))
+(-10 -7 (-15 -1526 ((-591 |#2|) (-1 |#2| |#1| |#2|) (-591 |#1|) |#2|)) (-15 -1227 (|#2| (-1 |#2| |#1| |#2|) (-591 |#1|) |#2|)) (-15 -1340 ((-591 |#2|) (-1 |#2| |#1|) (-591 |#1|))))
+((-1340 (((-591 |#3|) (-1 |#3| |#1| |#2|) (-591 |#1|) (-591 |#2|)) 13)))
+(((-590 |#1| |#2| |#3|) (-10 -7 (-15 -1340 ((-591 |#3|) (-1 |#3| |#1| |#2|) (-591 |#1|) (-591 |#2|)))) (-1125) (-1125) (-1125)) (T -590))
+((-1340 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-591 *6)) (-5 *5 (-591 *7)) (-4 *6 (-1125)) (-4 *7 (-1125)) (-4 *8 (-1125)) (-5 *2 (-591 *8)) (-5 *1 (-590 *6 *7 *8)))))
+(-10 -7 (-15 -1340 ((-591 |#3|) (-1 |#3| |#1| |#2|) (-591 |#1|) (-591 |#2|))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3024 ((|#1| $) NIL)) (-3161 ((|#1| $) NIL)) (-3970 (($ $) NIL)) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3463 (($ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3203 (((-108) $) NIL (|has| |#1| (-788))) (((-108) (-1 (-108) |#1| |#1|) $) NIL)) (-4026 (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| |#1| (-788)))) (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-3327 (($ $) NIL (|has| |#1| (-788))) (($ (-1 (-108) |#1| |#1|) $) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-1780 ((|#1| $ |#1|) NIL (|has| $ (-6 -4251)))) (-2146 (($ $ $) NIL (|has| $ (-6 -4251)))) (-2640 ((|#1| $ |#1|) NIL (|has| $ (-6 -4251)))) (-1901 ((|#1| $ |#1|) NIL (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4251))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4251))) (($ $ "rest" $) NIL (|has| $ (-6 -4251))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) NIL (|has| $ (-6 -4251))) ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) NIL (|has| $ (-6 -4251)))) (-2992 (($ $ $) 32 (|has| |#1| (-1018)))) (-2980 (($ $ $) 34 (|has| |#1| (-1018)))) (-2968 (($ $ $) 37 (|has| |#1| (-1018)))) (-1797 (($ (-1 (-108) |#1|) $) NIL)) (-2305 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3149 ((|#1| $) NIL)) (-3798 (($) NIL T CONST)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-3078 (($ $) NIL) (($ $ (-712)) NIL)) (-3611 (($ $) NIL (|has| |#1| (-1018)))) (-3098 (($ $) 31 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3901 (($ |#1| $) NIL (|has| |#1| (-1018))) (($ (-1 (-108) |#1|) $) NIL)) (-3677 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3255 ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) NIL)) (-3629 (((-108) $) NIL)) (-3004 (((-525) |#1| $ (-525)) NIL (|has| |#1| (-1018))) (((-525) |#1| $) NIL (|has| |#1| (-1018))) (((-525) (-1 (-108) |#1|) $) NIL)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-4177 (((-108) $) 9)) (-4120 (((-591 $) $) NIL)) (-2148 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-2137 (($) 7)) (-1268 (($ (-712) |#1|) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) NIL (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2921 (($ $ $) NIL (|has| |#1| (-788))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-2131 (($ $ $) NIL (|has| |#1| (-788))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 33 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2932 (($ |#1|) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2599 (((-591 |#1|) $) NIL)) (-1203 (((-108) $) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-3708 ((|#1| $) NIL) (($ $ (-712)) NIL)) (-2470 (($ $ $ (-525)) NIL) (($ |#1| $ (-525)) NIL)) (-4189 (($ $ $ (-525)) NIL) (($ |#1| $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-3066 ((|#1| $) NIL) (($ $ (-712)) NIL)) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1941 (($ $ |#1|) NIL (|has| $ (-6 -4251)))) (-3566 (((-108) $) NIL)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1138 (-525))) NIL) ((|#1| $ (-525)) 36) ((|#1| $ (-525) |#1|) NIL)) (-3505 (((-525) $ $) NIL)) (-1790 (($ $ (-1138 (-525))) NIL) (($ $ (-525)) NIL)) (-2777 (($ $ (-1138 (-525))) NIL) (($ $ (-525)) NIL)) (-2237 (((-108) $) NIL)) (-3820 (($ $) NIL)) (-2609 (($ $) NIL (|has| $ (-6 -4251)))) (-3641 (((-712) $) NIL)) (-1387 (($ $) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4063 (($ $ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) 45 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) NIL)) (-1684 (($ |#1| $) 10)) (-1679 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3690 (($ $ $) 30) (($ |#1| $) NIL) (($ (-591 $)) NIL) (($ $ |#1|) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) NIL)) (-1632 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4169 (($ $ $) 11)) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-2563 (((-1072) $) 26 (|has| |#1| (-769))) (((-1072) $ (-108)) 27 (|has| |#1| (-769))) (((-1176) (-763) $) 28 (|has| |#1| (-769))) (((-1176) (-763) $ (-108)) 29 (|has| |#1| (-769)))) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-591 |#1|) (-13 (-611 |#1|) (-10 -8 (-15 -2137 ($)) (-15 -4177 ((-108) $)) (-15 -1684 ($ |#1| $)) (-15 -4169 ($ $ $)) (IF (|has| |#1| (-1018)) (PROGN (-15 -2992 ($ $ $)) (-15 -2980 ($ $ $)) (-15 -2968 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-769)) (-6 (-769)) |%noBranch|))) (-1125)) (T -591))
+((-2137 (*1 *1) (-12 (-5 *1 (-591 *2)) (-4 *2 (-1125)))) (-4177 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-591 *3)) (-4 *3 (-1125)))) (-1684 (*1 *1 *2 *1) (-12 (-5 *1 (-591 *2)) (-4 *2 (-1125)))) (-4169 (*1 *1 *1 *1) (-12 (-5 *1 (-591 *2)) (-4 *2 (-1125)))) (-2992 (*1 *1 *1 *1) (-12 (-5 *1 (-591 *2)) (-4 *2 (-1018)) (-4 *2 (-1125)))) (-2980 (*1 *1 *1 *1) (-12 (-5 *1 (-591 *2)) (-4 *2 (-1018)) (-4 *2 (-1125)))) (-2968 (*1 *1 *1 *1) (-12 (-5 *1 (-591 *2)) (-4 *2 (-1018)) (-4 *2 (-1125)))))
+(-13 (-611 |#1|) (-10 -8 (-15 -2137 ($)) (-15 -4177 ((-108) $)) (-15 -1684 ($ |#1| $)) (-15 -4169 ($ $ $)) (IF (|has| |#1| (-1018)) (PROGN (-15 -2992 ($ $ $)) (-15 -2980 ($ $ $)) (-15 -2968 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-769)) (-6 (-769)) |%noBranch|)))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3088 (($ |#1| |#1| $) 43)) (-3891 (((-108) $ (-712)) NIL)) (-1797 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-3611 (($ $) 45)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3901 (($ |#1| $) 52 (|has| $ (-6 -4250))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4250)))) (-3677 (($ |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4250)))) (-3454 (((-591 |#1|) $) 9 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3249 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 37)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-1464 ((|#1| $) 46)) (-2470 (($ |#1| $) 26) (($ |#1| $ (-712)) 42)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-3631 ((|#1| $) 48)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) 21)) (-3209 (($) 25)) (-3370 (((-108) $) 50)) (-2945 (((-591 (-2 (|:| -1221 |#1|) (|:| -2064 (-712)))) $) 59)) (-2311 (($) 23) (($ (-591 |#1|)) 18)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) 56 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) 19)) (-1408 (((-501) $) 34 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) NIL)) (-3022 (((-796) $) 14 (|has| |#1| (-565 (-796))))) (-1870 (($ (-591 |#1|)) 22)) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 61 (|has| |#1| (-1018)))) (-4045 (((-712) $) 16 (|has| $ (-6 -4250)))))
+(((-592 |#1|) (-13 (-636 |#1|) (-10 -8 (-6 -4250) (-15 -3370 ((-108) $)) (-15 -3088 ($ |#1| |#1| $)))) (-1018)) (T -592))
+((-3370 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-592 *3)) (-4 *3 (-1018)))) (-3088 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-1018)))))
+(-13 (-636 |#1|) (-10 -8 (-6 -4250) (-15 -3370 ((-108) $)) (-15 -3088 ($ |#1| |#1| $))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ |#1| $) 23)))
+(((-593 |#1|) (-131) (-982)) (T -593))
+((* (*1 *1 *2 *1) (-12 (-4 *1 (-593 *2)) (-4 *2 (-982)))))
(-13 (-21) (-10 -8 (-15 * ($ |t#1| $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-3843 (((-710) $) 15)) (-3050 (($ $ |#1|) 56)) (-4091 (($ $) 32)) (-4082 (($ $) 31)) (-2898 (((-3 |#1| "failed") $) 48)) (-1996 ((|#1| $) NIL)) (-1408 (($ |#1| |#2| $) 63) (($ $ $) 64)) (-3204 (((-794) $ (-1 (-794) (-794) (-794)) (-1 (-794) (-794) (-794)) (-523)) 46)) (-3019 ((|#1| $ (-523)) 30)) (-3831 ((|#2| $ (-523)) 29)) (-4119 (($ (-1 |#1| |#1|) $) 34)) (-3332 (($ (-1 |#2| |#2|) $) 38)) (-2664 (($) 10)) (-3642 (($ |#1| |#2|) 22)) (-3560 (($ (-589 (-2 (|:| |gen| |#1|) (|:| -1847 |#2|)))) 23)) (-2270 (((-589 (-2 (|:| |gen| |#1|) (|:| -1847 |#2|))) $) 13)) (-1448 (($ |#1| $) 57)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2675 (((-108) $ $) 60)) (-3976 (((-794) $) 19) (($ |#1|) 16)) (-4037 (((-108) $ $) 25)))
-(((-592 |#1| |#2| |#3|) (-13 (-1016) (-964 |#1|) (-10 -8 (-15 -3204 ((-794) $ (-1 (-794) (-794) (-794)) (-1 (-794) (-794) (-794)) (-523))) (-15 -2270 ((-589 (-2 (|:| |gen| |#1|) (|:| -1847 |#2|))) $)) (-15 -3642 ($ |#1| |#2|)) (-15 -3560 ($ (-589 (-2 (|:| |gen| |#1|) (|:| -1847 |#2|))))) (-15 -3831 (|#2| $ (-523))) (-15 -3019 (|#1| $ (-523))) (-15 -4082 ($ $)) (-15 -4091 ($ $)) (-15 -3843 ((-710) $)) (-15 -2664 ($)) (-15 -3050 ($ $ |#1|)) (-15 -1448 ($ |#1| $)) (-15 -1408 ($ |#1| |#2| $)) (-15 -1408 ($ $ $)) (-15 -2675 ((-108) $ $)) (-15 -3332 ($ (-1 |#2| |#2|) $)) (-15 -4119 ($ (-1 |#1| |#1|) $)))) (-1016) (-23) |#2|) (T -592))
-((-3204 (*1 *2 *1 *3 *3 *4) (-12 (-5 *3 (-1 (-794) (-794) (-794))) (-5 *4 (-523)) (-5 *2 (-794)) (-5 *1 (-592 *5 *6 *7)) (-4 *5 (-1016)) (-4 *6 (-23)) (-14 *7 *6))) (-2270 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| |gen| *3) (|:| -1847 *4)))) (-5 *1 (-592 *3 *4 *5)) (-4 *3 (-1016)) (-4 *4 (-23)) (-14 *5 *4))) (-3642 (*1 *1 *2 *3) (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23)) (-14 *4 *3))) (-3560 (*1 *1 *2) (-12 (-5 *2 (-589 (-2 (|:| |gen| *3) (|:| -1847 *4)))) (-4 *3 (-1016)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-592 *3 *4 *5)))) (-3831 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-4 *2 (-23)) (-5 *1 (-592 *4 *2 *5)) (-4 *4 (-1016)) (-14 *5 *2))) (-3019 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-4 *2 (-1016)) (-5 *1 (-592 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-4082 (*1 *1 *1) (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23)) (-14 *4 *3))) (-4091 (*1 *1 *1) (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23)) (-14 *4 *3))) (-3843 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-592 *3 *4 *5)) (-4 *3 (-1016)) (-4 *4 (-23)) (-14 *5 *4))) (-2664 (*1 *1) (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23)) (-14 *4 *3))) (-3050 (*1 *1 *1 *2) (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23)) (-14 *4 *3))) (-1448 (*1 *1 *2 *1) (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23)) (-14 *4 *3))) (-1408 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23)) (-14 *4 *3))) (-1408 (*1 *1 *1 *1) (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23)) (-14 *4 *3))) (-2675 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-592 *3 *4 *5)) (-4 *3 (-1016)) (-4 *4 (-23)) (-14 *5 *4))) (-3332 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-592 *3 *4 *5)) (-4 *3 (-1016)))) (-4119 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1016)) (-5 *1 (-592 *3 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))))
-(-13 (-1016) (-964 |#1|) (-10 -8 (-15 -3204 ((-794) $ (-1 (-794) (-794) (-794)) (-1 (-794) (-794) (-794)) (-523))) (-15 -2270 ((-589 (-2 (|:| |gen| |#1|) (|:| -1847 |#2|))) $)) (-15 -3642 ($ |#1| |#2|)) (-15 -3560 ($ (-589 (-2 (|:| |gen| |#1|) (|:| -1847 |#2|))))) (-15 -3831 (|#2| $ (-523))) (-15 -3019 (|#1| $ (-523))) (-15 -4082 ($ $)) (-15 -4091 ($ $)) (-15 -3843 ((-710) $)) (-15 -2664 ($)) (-15 -3050 ($ $ |#1|)) (-15 -1448 ($ |#1| $)) (-15 -1408 ($ |#1| |#2| $)) (-15 -1408 ($ $ $)) (-15 -2675 ((-108) $ $)) (-15 -3332 ($ (-1 |#2| |#2|) $)) (-15 -4119 ($ (-1 |#1| |#1|) $))))
-((-2133 (((-523) $) 24)) (-3334 (($ |#2| $ (-523)) 22) (($ $ $ (-523)) NIL)) (-2909 (((-589 (-523)) $) 12)) (-2290 (((-108) (-523) $) 15)) (-2785 (($ $ |#2|) 19) (($ |#2| $) 20) (($ $ $) NIL) (($ (-589 $)) NIL)))
-(((-593 |#1| |#2|) (-10 -8 (-15 -3334 (|#1| |#1| |#1| (-523))) (-15 -3334 (|#1| |#2| |#1| (-523))) (-15 -2785 (|#1| (-589 |#1|))) (-15 -2785 (|#1| |#1| |#1|)) (-15 -2785 (|#1| |#2| |#1|)) (-15 -2785 (|#1| |#1| |#2|)) (-15 -2133 ((-523) |#1|)) (-15 -2909 ((-589 (-523)) |#1|)) (-15 -2290 ((-108) (-523) |#1|))) (-594 |#2|) (-1123)) (T -593))
-NIL
-(-10 -8 (-15 -3334 (|#1| |#1| |#1| (-523))) (-15 -3334 (|#1| |#2| |#1| (-523))) (-15 -2785 (|#1| (-589 |#1|))) (-15 -2785 (|#1| |#1| |#1|)) (-15 -2785 (|#1| |#2| |#1|)) (-15 -2785 (|#1| |#1| |#2|)) (-15 -2133 ((-523) |#1|)) (-15 -2909 ((-589 (-523)) |#1|)) (-15 -2290 ((-108) (-523) |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-1666 (((-1174) $ (-523) (-523)) 40 (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) 8)) (-4101 ((|#1| $ (-523) |#1|) 52 (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) 58 (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4248)))) (-1640 (($) 7 T CONST)) (-3917 (($ $) 78 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ |#1| $) 77 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4248)))) (-3073 ((|#1| $ (-523) |#1|) 53 (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) 51)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-2348 (($ (-710) |#1|) 69)) (-1344 (((-108) $ (-710)) 9)) (-1798 (((-523) $) 43 (|has| (-523) (-786)))) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2133 (((-523) $) 44 (|has| (-523) (-786)))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-3334 (($ |#1| $ (-523)) 60) (($ $ $ (-523)) 59)) (-2909 (((-589 (-523)) $) 46)) (-2290 (((-108) (-523) $) 47)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-3879 ((|#1| $) 42 (|has| (-523) (-786)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-2408 (($ $ |#1|) 41 (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-1410 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) 48)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ (-523) |#1|) 50) ((|#1| $ (-523)) 49) (($ $ (-1136 (-523))) 63)) (-3725 (($ $ (-523)) 62) (($ $ (-1136 (-523))) 61)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3077 (((-499) $) 79 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 70)) (-2785 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-589 $)) 65)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-594 |#1|) (-129) (-1123)) (T -594))
-((-2348 (*1 *1 *2 *3) (-12 (-5 *2 (-710)) (-4 *1 (-594 *3)) (-4 *3 (-1123)))) (-2785 (*1 *1 *1 *2) (-12 (-4 *1 (-594 *2)) (-4 *2 (-1123)))) (-2785 (*1 *1 *2 *1) (-12 (-4 *1 (-594 *2)) (-4 *2 (-1123)))) (-2785 (*1 *1 *1 *1) (-12 (-4 *1 (-594 *2)) (-4 *2 (-1123)))) (-2785 (*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-594 *3)) (-4 *3 (-1123)))) (-3015 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-594 *3)) (-4 *3 (-1123)))) (-1502 (*1 *1 *1 *2) (-12 (-5 *2 (-1136 (-523))) (-4 *1 (-594 *3)) (-4 *3 (-1123)))) (-3725 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-594 *3)) (-4 *3 (-1123)))) (-3725 (*1 *1 *1 *2) (-12 (-5 *2 (-1136 (-523))) (-4 *1 (-594 *3)) (-4 *3 (-1123)))) (-3334 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-523)) (-4 *1 (-594 *2)) (-4 *2 (-1123)))) (-3334 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-594 *3)) (-4 *3 (-1123)))) (-4101 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-1136 (-523))) (|has| *1 (-6 -4249)) (-4 *1 (-594 *2)) (-4 *2 (-1123)))))
-(-13 (-556 (-523) |t#1|) (-140 |t#1|) (-10 -8 (-15 -2348 ($ (-710) |t#1|)) (-15 -2785 ($ $ |t#1|)) (-15 -2785 ($ |t#1| $)) (-15 -2785 ($ $ $)) (-15 -2785 ($ (-589 $))) (-15 -3015 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -1502 ($ $ (-1136 (-523)))) (-15 -3725 ($ $ (-523))) (-15 -3725 ($ $ (-1136 (-523)))) (-15 -3334 ($ |t#1| $ (-523))) (-15 -3334 ($ $ $ (-523))) (IF (|has| $ (-6 -4249)) (-15 -4101 (|t#1| $ (-1136 (-523)) |t#1|)) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-263 #0=(-523) |#1|) . T) ((-265 #0# |#1|) . T) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-556 #0# |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-3911 (((-3 |#2| "failed") |#3| |#2| (-1087) |#2| (-589 |#2|)) 160) (((-3 (-2 (|:| |particular| |#2|) (|:| -2922 (-589 |#2|))) "failed") |#3| |#2| (-1087)) 44)))
-(((-595 |#1| |#2| |#3|) (-10 -7 (-15 -3911 ((-3 (-2 (|:| |particular| |#2|) (|:| -2922 (-589 |#2|))) "failed") |#3| |#2| (-1087))) (-15 -3911 ((-3 |#2| "failed") |#3| |#2| (-1087) |#2| (-589 |#2|)))) (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)) (-13 (-29 |#1|) (-1109) (-889)) (-599 |#2|)) (T -595))
-((-3911 (*1 *2 *3 *2 *4 *2 *5) (|partial| -12 (-5 *4 (-1087)) (-5 *5 (-589 *2)) (-4 *2 (-13 (-29 *6) (-1109) (-889))) (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *1 (-595 *6 *2 *3)) (-4 *3 (-599 *2)))) (-3911 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1087)) (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-4 *4 (-13 (-29 *6) (-1109) (-889))) (-5 *2 (-2 (|:| |particular| *4) (|:| -2922 (-589 *4)))) (-5 *1 (-595 *6 *4 *3)) (-4 *3 (-599 *4)))))
-(-10 -7 (-15 -3911 ((-3 (-2 (|:| |particular| |#2|) (|:| -2922 (-589 |#2|))) "failed") |#3| |#2| (-1087))) (-15 -3911 ((-3 |#2| "failed") |#3| |#2| (-1087) |#2| (-589 |#2|))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3069 (($ $) NIL (|has| |#1| (-339)))) (-2170 (($ $ $) NIL (|has| |#1| (-339)))) (-2044 (($ $ (-710)) NIL (|has| |#1| (-339)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-2346 (($ $ $) NIL (|has| |#1| (-339)))) (-3183 (($ $ $) NIL (|has| |#1| (-339)))) (-2561 (($ $ $) NIL (|has| |#1| (-339)))) (-3248 (($ $ $) NIL (|has| |#1| (-339)))) (-3525 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-1527 (((-3 $ "failed") $ $) NIL (|has| |#1| (-339)))) (-2566 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) NIL)) (-1996 (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) NIL)) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2213 (($ $) NIL (|has| |#1| (-427)))) (-3482 (((-108) $) NIL)) (-3694 (($ |#1| (-710)) NIL)) (-2386 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-515)))) (-3585 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-515)))) (-2140 (((-710) $) NIL)) (-2136 (($ $ $) NIL (|has| |#1| (-339)))) (-1290 (($ $ $) NIL (|has| |#1| (-339)))) (-2138 (($ $ $) NIL (|has| |#1| (-339)))) (-1787 (($ $ $) NIL (|has| |#1| (-339)))) (-1404 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-3904 (((-3 $ "failed") $ $) NIL (|has| |#1| (-339)))) (-3986 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2469 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515)))) (-1502 ((|#1| $ |#1|) NIL)) (-1476 (($ $ $) NIL (|has| |#1| (-339)))) (-1487 (((-710) $) NIL)) (-2267 ((|#1| $) NIL (|has| |#1| (-427)))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ (-383 (-523))) NIL (|has| |#1| (-964 (-383 (-523))))) (($ |#1|) NIL)) (-1639 (((-589 |#1|) $) NIL)) (-1234 ((|#1| $ (-710)) NIL)) (-1698 (((-710)) NIL)) (-3817 ((|#1| $ |#1| |#1|) NIL)) (-1910 (($ $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($) NIL)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-596 |#1|) (-599 |#1|) (-211)) (T -596))
-NIL
-(-599 |#1|)
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3069 (($ $) NIL (|has| |#1| (-339)))) (-2170 (($ $ $) NIL (|has| |#1| (-339)))) (-2044 (($ $ (-710)) NIL (|has| |#1| (-339)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-2346 (($ $ $) NIL (|has| |#1| (-339)))) (-3183 (($ $ $) NIL (|has| |#1| (-339)))) (-2561 (($ $ $) NIL (|has| |#1| (-339)))) (-3248 (($ $ $) NIL (|has| |#1| (-339)))) (-3525 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-1527 (((-3 $ "failed") $ $) NIL (|has| |#1| (-339)))) (-2566 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) NIL)) (-1996 (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) NIL)) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2213 (($ $) NIL (|has| |#1| (-427)))) (-3482 (((-108) $) NIL)) (-3694 (($ |#1| (-710)) NIL)) (-2386 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-515)))) (-3585 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-515)))) (-2140 (((-710) $) NIL)) (-2136 (($ $ $) NIL (|has| |#1| (-339)))) (-1290 (($ $ $) NIL (|has| |#1| (-339)))) (-2138 (($ $ $) NIL (|has| |#1| (-339)))) (-1787 (($ $ $) NIL (|has| |#1| (-339)))) (-1404 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-3904 (((-3 $ "failed") $ $) NIL (|has| |#1| (-339)))) (-3986 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2469 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515)))) (-1502 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-1476 (($ $ $) NIL (|has| |#1| (-339)))) (-1487 (((-710) $) NIL)) (-2267 ((|#1| $) NIL (|has| |#1| (-427)))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ (-383 (-523))) NIL (|has| |#1| (-964 (-383 (-523))))) (($ |#1|) NIL)) (-1639 (((-589 |#1|) $) NIL)) (-1234 ((|#1| $ (-710)) NIL)) (-1698 (((-710)) NIL)) (-3817 ((|#1| $ |#1| |#1|) NIL)) (-1910 (($ $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($) NIL)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-597 |#1| |#2|) (-13 (-599 |#1|) (-263 |#2| |#2|)) (-211) (-13 (-591 |#1|) (-10 -8 (-15 -4024 ($ $))))) (T -597))
-NIL
-(-13 (-599 |#1|) (-263 |#2| |#2|))
-((-3069 (($ $) 26)) (-1910 (($ $) 24)) (-1943 (($) 12)))
-(((-598 |#1| |#2|) (-10 -8 (-15 -3069 (|#1| |#1|)) (-15 -1910 (|#1| |#1|)) (-15 -1943 (|#1|))) (-599 |#2|) (-973)) (T -598))
-NIL
-(-10 -8 (-15 -3069 (|#1| |#1|)) (-15 -1910 (|#1| |#1|)) (-15 -1943 (|#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3069 (($ $) 82 (|has| |#1| (-339)))) (-2170 (($ $ $) 84 (|has| |#1| (-339)))) (-2044 (($ $ (-710)) 83 (|has| |#1| (-339)))) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-2346 (($ $ $) 45 (|has| |#1| (-339)))) (-3183 (($ $ $) 46 (|has| |#1| (-339)))) (-2561 (($ $ $) 48 (|has| |#1| (-339)))) (-3248 (($ $ $) 43 (|has| |#1| (-339)))) (-3525 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 42 (|has| |#1| (-339)))) (-1527 (((-3 $ "failed") $ $) 44 (|has| |#1| (-339)))) (-2566 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 47 (|has| |#1| (-339)))) (-2898 (((-3 (-523) "failed") $) 74 (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) 72 (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) 69)) (-1996 (((-523) $) 75 (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) 73 (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) 68)) (-3142 (($ $) 64)) (-4211 (((-3 $ "failed") $) 34)) (-2213 (($ $) 55 (|has| |#1| (-427)))) (-3482 (((-108) $) 31)) (-3694 (($ |#1| (-710)) 62)) (-2386 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 57 (|has| |#1| (-515)))) (-3585 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 58 (|has| |#1| (-515)))) (-2140 (((-710) $) 66)) (-2136 (($ $ $) 52 (|has| |#1| (-339)))) (-1290 (($ $ $) 53 (|has| |#1| (-339)))) (-2138 (($ $ $) 41 (|has| |#1| (-339)))) (-1787 (($ $ $) 50 (|has| |#1| (-339)))) (-1404 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 49 (|has| |#1| (-339)))) (-3904 (((-3 $ "failed") $ $) 51 (|has| |#1| (-339)))) (-3986 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 54 (|has| |#1| (-339)))) (-3119 ((|#1| $) 65)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2469 (((-3 $ "failed") $ |#1|) 59 (|has| |#1| (-515)))) (-1502 ((|#1| $ |#1|) 87)) (-1476 (($ $ $) 81 (|has| |#1| (-339)))) (-1487 (((-710) $) 67)) (-2267 ((|#1| $) 56 (|has| |#1| (-427)))) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ (-383 (-523))) 71 (|has| |#1| (-964 (-383 (-523))))) (($ |#1|) 70)) (-1639 (((-589 |#1|) $) 61)) (-1234 ((|#1| $ (-710)) 63)) (-1698 (((-710)) 29)) (-3817 ((|#1| $ |#1| |#1|) 60)) (-1910 (($ $) 85)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($) 86)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 77) (($ |#1| $) 76)))
-(((-599 |#1|) (-129) (-973)) (T -599))
-((-1943 (*1 *1) (-12 (-4 *1 (-599 *2)) (-4 *2 (-973)))) (-1910 (*1 *1 *1) (-12 (-4 *1 (-599 *2)) (-4 *2 (-973)))) (-2170 (*1 *1 *1 *1) (-12 (-4 *1 (-599 *2)) (-4 *2 (-973)) (-4 *2 (-339)))) (-2044 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-599 *3)) (-4 *3 (-973)) (-4 *3 (-339)))) (-3069 (*1 *1 *1) (-12 (-4 *1 (-599 *2)) (-4 *2 (-973)) (-4 *2 (-339)))) (-1476 (*1 *1 *1 *1) (-12 (-4 *1 (-599 *2)) (-4 *2 (-973)) (-4 *2 (-339)))))
-(-13 (-788 |t#1|) (-263 |t#1| |t#1|) (-10 -8 (-15 -1943 ($)) (-15 -1910 ($ $)) (IF (|has| |t#1| (-339)) (PROGN (-15 -2170 ($ $ $)) (-15 -2044 ($ $ (-710))) (-15 -3069 ($ $)) (-15 -1476 ($ $ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) |has| |#1| (-158)) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-563 (-794)) . T) ((-263 |#1| |#1|) . T) ((-387 |#1|) . T) ((-591 |#1|) . T) ((-591 $) . T) ((-657 |#1|) |has| |#1| (-158)) ((-666) . T) ((-964 (-383 (-523))) |has| |#1| (-964 (-383 (-523)))) ((-964 (-523)) |has| |#1| (-964 (-523))) ((-964 |#1|) . T) ((-979 |#1|) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-788 |#1|) . T))
-((-1283 (((-589 (-596 (-383 |#2|))) (-596 (-383 |#2|))) 74 (|has| |#1| (-27)))) (-3573 (((-589 (-596 (-383 |#2|))) (-596 (-383 |#2|))) 73 (|has| |#1| (-27))) (((-589 (-596 (-383 |#2|))) (-596 (-383 |#2|)) (-1 (-589 |#1|) |#2|)) 17)))
-(((-600 |#1| |#2|) (-10 -7 (-15 -3573 ((-589 (-596 (-383 |#2|))) (-596 (-383 |#2|)) (-1 (-589 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3573 ((-589 (-596 (-383 |#2|))) (-596 (-383 |#2|)))) (-15 -1283 ((-589 (-596 (-383 |#2|))) (-596 (-383 |#2|))))) |%noBranch|)) (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))) (-1145 |#1|)) (T -600))
-((-1283 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-4 *5 (-1145 *4)) (-5 *2 (-589 (-596 (-383 *5)))) (-5 *1 (-600 *4 *5)) (-5 *3 (-596 (-383 *5))))) (-3573 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-4 *5 (-1145 *4)) (-5 *2 (-589 (-596 (-383 *5)))) (-5 *1 (-600 *4 *5)) (-5 *3 (-596 (-383 *5))))) (-3573 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-589 *5) *6)) (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-4 *6 (-1145 *5)) (-5 *2 (-589 (-596 (-383 *6)))) (-5 *1 (-600 *5 *6)) (-5 *3 (-596 (-383 *6))))))
-(-10 -7 (-15 -3573 ((-589 (-596 (-383 |#2|))) (-596 (-383 |#2|)) (-1 (-589 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3573 ((-589 (-596 (-383 |#2|))) (-596 (-383 |#2|)))) (-15 -1283 ((-589 (-596 (-383 |#2|))) (-596 (-383 |#2|))))) |%noBranch|))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3069 (($ $) NIL (|has| |#1| (-339)))) (-2170 (($ $ $) 28 (|has| |#1| (-339)))) (-2044 (($ $ (-710)) 31 (|has| |#1| (-339)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-2346 (($ $ $) NIL (|has| |#1| (-339)))) (-3183 (($ $ $) NIL (|has| |#1| (-339)))) (-2561 (($ $ $) NIL (|has| |#1| (-339)))) (-3248 (($ $ $) NIL (|has| |#1| (-339)))) (-3525 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-1527 (((-3 $ "failed") $ $) NIL (|has| |#1| (-339)))) (-2566 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) NIL)) (-1996 (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) NIL)) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2213 (($ $) NIL (|has| |#1| (-427)))) (-3482 (((-108) $) NIL)) (-3694 (($ |#1| (-710)) NIL)) (-2386 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-515)))) (-3585 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-515)))) (-2140 (((-710) $) NIL)) (-2136 (($ $ $) NIL (|has| |#1| (-339)))) (-1290 (($ $ $) NIL (|has| |#1| (-339)))) (-2138 (($ $ $) NIL (|has| |#1| (-339)))) (-1787 (($ $ $) NIL (|has| |#1| (-339)))) (-1404 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-3904 (((-3 $ "failed") $ $) NIL (|has| |#1| (-339)))) (-3986 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2469 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515)))) (-1502 ((|#1| $ |#1|) 24)) (-1476 (($ $ $) 33 (|has| |#1| (-339)))) (-1487 (((-710) $) NIL)) (-2267 ((|#1| $) NIL (|has| |#1| (-427)))) (-3976 (((-794) $) 20) (($ (-523)) NIL) (($ (-383 (-523))) NIL (|has| |#1| (-964 (-383 (-523))))) (($ |#1|) NIL)) (-1639 (((-589 |#1|) $) NIL)) (-1234 ((|#1| $ (-710)) NIL)) (-1698 (((-710)) NIL)) (-3817 ((|#1| $ |#1| |#1|) 23)) (-1910 (($ $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 21 T CONST)) (-1440 (($) 8 T CONST)) (-1943 (($) NIL)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-601 |#1| |#2|) (-599 |#1|) (-973) (-1 |#1| |#1|)) (T -601))
-NIL
-(-599 |#1|)
-((-2170 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 59)) (-2044 ((|#2| |#2| (-710) (-1 |#1| |#1|)) 40)) (-1476 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 61)))
-(((-602 |#1| |#2|) (-10 -7 (-15 -2170 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -2044 (|#2| |#2| (-710) (-1 |#1| |#1|))) (-15 -1476 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-339) (-599 |#1|)) (T -602))
-((-1476 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-339)) (-5 *1 (-602 *4 *2)) (-4 *2 (-599 *4)))) (-2044 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-710)) (-5 *4 (-1 *5 *5)) (-4 *5 (-339)) (-5 *1 (-602 *5 *2)) (-4 *2 (-599 *5)))) (-2170 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-339)) (-5 *1 (-602 *4 *2)) (-4 *2 (-599 *4)))))
-(-10 -7 (-15 -2170 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -2044 (|#2| |#2| (-710) (-1 |#1| |#1|))) (-15 -1476 (|#2| |#2| |#2| (-1 |#1| |#1|))))
-((-2526 (($ $ $) 9)))
-(((-603 |#1|) (-10 -8 (-15 -2526 (|#1| |#1| |#1|))) (-604)) (T -603))
-NIL
-(-10 -8 (-15 -2526 (|#1| |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-3382 (($ $) 10)) (-2526 (($ $ $) 8)) (-4037 (((-108) $ $) 6)) (-2516 (($ $ $) 9)))
-(((-604) (-129)) (T -604))
-((-3382 (*1 *1 *1) (-4 *1 (-604))) (-2516 (*1 *1 *1 *1) (-4 *1 (-604))) (-2526 (*1 *1 *1 *1) (-4 *1 (-604))))
-(-13 (-97) (-10 -8 (-15 -3382 ($ $)) (-15 -2516 ($ $ $)) (-15 -2526 ($ $ $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-3032 (((-712) $) 15)) (-2319 (($ $ |#1|) 56)) (-2598 (($ $) 32)) (-2617 (($ $) 31)) (-1251 (((-3 |#1| "failed") $) 48)) (-3528 ((|#1| $) NIL)) (-3676 (($ |#1| |#2| $) 63) (($ $ $) 64)) (-2927 (((-796) $ (-1 (-796) (-796) (-796)) (-1 (-796) (-796) (-796)) (-525)) 46)) (-2423 ((|#1| $ (-525)) 30)) (-1566 ((|#2| $ (-525)) 29)) (-3731 (($ (-1 |#1| |#1|) $) 34)) (-1954 (($ (-1 |#2| |#2|) $) 38)) (-3766 (($) 10)) (-1999 (($ |#1| |#2|) 22)) (-3681 (($ (-591 (-2 (|:| |gen| |#1|) (|:| -1409 |#2|)))) 23)) (-2926 (((-591 (-2 (|:| |gen| |#1|) (|:| -1409 |#2|))) $) 13)) (-1723 (($ |#1| $) 57)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2979 (((-108) $ $) 60)) (-3022 (((-796) $) 19) (($ |#1|) 16)) (-4096 (((-108) $ $) 25)))
+(((-594 |#1| |#2| |#3|) (-13 (-1018) (-966 |#1|) (-10 -8 (-15 -2927 ((-796) $ (-1 (-796) (-796) (-796)) (-1 (-796) (-796) (-796)) (-525))) (-15 -2926 ((-591 (-2 (|:| |gen| |#1|) (|:| -1409 |#2|))) $)) (-15 -1999 ($ |#1| |#2|)) (-15 -3681 ($ (-591 (-2 (|:| |gen| |#1|) (|:| -1409 |#2|))))) (-15 -1566 (|#2| $ (-525))) (-15 -2423 (|#1| $ (-525))) (-15 -2617 ($ $)) (-15 -2598 ($ $)) (-15 -3032 ((-712) $)) (-15 -3766 ($)) (-15 -2319 ($ $ |#1|)) (-15 -1723 ($ |#1| $)) (-15 -3676 ($ |#1| |#2| $)) (-15 -3676 ($ $ $)) (-15 -2979 ((-108) $ $)) (-15 -1954 ($ (-1 |#2| |#2|) $)) (-15 -3731 ($ (-1 |#1| |#1|) $)))) (-1018) (-23) |#2|) (T -594))
+((-2927 (*1 *2 *1 *3 *3 *4) (-12 (-5 *3 (-1 (-796) (-796) (-796))) (-5 *4 (-525)) (-5 *2 (-796)) (-5 *1 (-594 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-23)) (-14 *7 *6))) (-2926 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| |gen| *3) (|:| -1409 *4)))) (-5 *1 (-594 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-23)) (-14 *5 *4))) (-1999 (*1 *1 *2 *3) (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23)) (-14 *4 *3))) (-3681 (*1 *1 *2) (-12 (-5 *2 (-591 (-2 (|:| |gen| *3) (|:| -1409 *4)))) (-4 *3 (-1018)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-594 *3 *4 *5)))) (-1566 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-4 *2 (-23)) (-5 *1 (-594 *4 *2 *5)) (-4 *4 (-1018)) (-14 *5 *2))) (-2423 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-4 *2 (-1018)) (-5 *1 (-594 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-2617 (*1 *1 *1) (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23)) (-14 *4 *3))) (-2598 (*1 *1 *1) (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23)) (-14 *4 *3))) (-3032 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-594 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-23)) (-14 *5 *4))) (-3766 (*1 *1) (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23)) (-14 *4 *3))) (-2319 (*1 *1 *1 *2) (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23)) (-14 *4 *3))) (-1723 (*1 *1 *2 *1) (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23)) (-14 *4 *3))) (-3676 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23)) (-14 *4 *3))) (-3676 (*1 *1 *1 *1) (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23)) (-14 *4 *3))) (-2979 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-594 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-23)) (-14 *5 *4))) (-1954 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-594 *3 *4 *5)) (-4 *3 (-1018)))) (-3731 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-594 *3 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))))
+(-13 (-1018) (-966 |#1|) (-10 -8 (-15 -2927 ((-796) $ (-1 (-796) (-796) (-796)) (-1 (-796) (-796) (-796)) (-525))) (-15 -2926 ((-591 (-2 (|:| |gen| |#1|) (|:| -1409 |#2|))) $)) (-15 -1999 ($ |#1| |#2|)) (-15 -3681 ($ (-591 (-2 (|:| |gen| |#1|) (|:| -1409 |#2|))))) (-15 -1566 (|#2| $ (-525))) (-15 -2423 (|#1| $ (-525))) (-15 -2617 ($ $)) (-15 -2598 ($ $)) (-15 -3032 ((-712) $)) (-15 -3766 ($)) (-15 -2319 ($ $ |#1|)) (-15 -1723 ($ |#1| $)) (-15 -3676 ($ |#1| |#2| $)) (-15 -3676 ($ $ $)) (-15 -2979 ((-108) $ $)) (-15 -1954 ($ (-1 |#2| |#2|) $)) (-15 -3731 ($ (-1 |#1| |#1|) $))))
+((-3468 (((-525) $) 24)) (-4189 (($ |#2| $ (-525)) 22) (($ $ $ (-525)) NIL)) (-2511 (((-591 (-525)) $) 12)) (-2791 (((-108) (-525) $) 15)) (-3690 (($ $ |#2|) 19) (($ |#2| $) 20) (($ $ $) NIL) (($ (-591 $)) NIL)))
+(((-595 |#1| |#2|) (-10 -8 (-15 -4189 (|#1| |#1| |#1| (-525))) (-15 -4189 (|#1| |#2| |#1| (-525))) (-15 -3690 (|#1| (-591 |#1|))) (-15 -3690 (|#1| |#1| |#1|)) (-15 -3690 (|#1| |#2| |#1|)) (-15 -3690 (|#1| |#1| |#2|)) (-15 -3468 ((-525) |#1|)) (-15 -2511 ((-591 (-525)) |#1|)) (-15 -2791 ((-108) (-525) |#1|))) (-596 |#2|) (-1125)) (T -595))
+NIL
+(-10 -8 (-15 -4189 (|#1| |#1| |#1| (-525))) (-15 -4189 (|#1| |#2| |#1| (-525))) (-15 -3690 (|#1| (-591 |#1|))) (-15 -3690 (|#1| |#1| |#1|)) (-15 -3690 (|#1| |#2| |#1|)) (-15 -3690 (|#1| |#1| |#2|)) (-15 -3468 ((-525) |#1|)) (-15 -2511 ((-591 (-525)) |#1|)) (-15 -2791 ((-108) (-525) |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3296 (((-1176) $ (-525) (-525)) 40 (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) 8)) (-3186 ((|#1| $ (-525) |#1|) 52 (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) 58 (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4250)))) (-3798 (($) 7 T CONST)) (-3098 (($ $) 78 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ |#1| $) 77 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4250)))) (-3255 ((|#1| $ (-525) |#1|) 53 (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) 51)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-1268 (($ (-712) |#1|) 69)) (-2910 (((-108) $ (-712)) 9)) (-3630 (((-525) $) 43 (|has| (-525) (-788)))) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3468 (((-525) $) 44 (|has| (-525) (-788)))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-4189 (($ |#1| $ (-525)) 60) (($ $ $ (-525)) 59)) (-2511 (((-591 (-525)) $) 46)) (-2791 (((-108) (-525) $) 47)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-3066 ((|#1| $) 42 (|has| (-525) (-788)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-1941 (($ $ |#1|) 41 (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-1615 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) 48)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ (-525) |#1|) 50) ((|#1| $ (-525)) 49) (($ $ (-1138 (-525))) 63)) (-2777 (($ $ (-525)) 62) (($ $ (-1138 (-525))) 61)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1408 (((-501) $) 79 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 70)) (-3690 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-591 $)) 65)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-596 |#1|) (-131) (-1125)) (T -596))
+((-1268 (*1 *1 *2 *3) (-12 (-5 *2 (-712)) (-4 *1 (-596 *3)) (-4 *3 (-1125)))) (-3690 (*1 *1 *1 *2) (-12 (-4 *1 (-596 *2)) (-4 *2 (-1125)))) (-3690 (*1 *1 *2 *1) (-12 (-4 *1 (-596 *2)) (-4 *2 (-1125)))) (-3690 (*1 *1 *1 *1) (-12 (-4 *1 (-596 *2)) (-4 *2 (-1125)))) (-3690 (*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-596 *3)) (-4 *3 (-1125)))) (-1340 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-596 *3)) (-4 *3 (-1125)))) (-3164 (*1 *1 *1 *2) (-12 (-5 *2 (-1138 (-525))) (-4 *1 (-596 *3)) (-4 *3 (-1125)))) (-2777 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-596 *3)) (-4 *3 (-1125)))) (-2777 (*1 *1 *1 *2) (-12 (-5 *2 (-1138 (-525))) (-4 *1 (-596 *3)) (-4 *3 (-1125)))) (-4189 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-525)) (-4 *1 (-596 *2)) (-4 *2 (-1125)))) (-4189 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-596 *3)) (-4 *3 (-1125)))) (-3186 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-1138 (-525))) (|has| *1 (-6 -4251)) (-4 *1 (-596 *2)) (-4 *2 (-1125)))))
+(-13 (-558 (-525) |t#1|) (-142 |t#1|) (-10 -8 (-15 -1268 ($ (-712) |t#1|)) (-15 -3690 ($ $ |t#1|)) (-15 -3690 ($ |t#1| $)) (-15 -3690 ($ $ $)) (-15 -3690 ($ (-591 $))) (-15 -1340 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -3164 ($ $ (-1138 (-525)))) (-15 -2777 ($ $ (-525))) (-15 -2777 ($ $ (-1138 (-525)))) (-15 -4189 ($ |t#1| $ (-525))) (-15 -4189 ($ $ $ (-525))) (IF (|has| $ (-6 -4251)) (-15 -3186 (|t#1| $ (-1138 (-525)) |t#1|)) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-265 #0=(-525) |#1|) . T) ((-267 #0# |#1|) . T) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-558 #0# |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-4039 (((-3 |#2| "failed") |#3| |#2| (-1089) |#2| (-591 |#2|)) 160) (((-3 (-2 (|:| |particular| |#2|) (|:| -4003 (-591 |#2|))) "failed") |#3| |#2| (-1089)) 44)))
+(((-597 |#1| |#2| |#3|) (-10 -7 (-15 -4039 ((-3 (-2 (|:| |particular| |#2|) (|:| -4003 (-591 |#2|))) "failed") |#3| |#2| (-1089))) (-15 -4039 ((-3 |#2| "failed") |#3| |#2| (-1089) |#2| (-591 |#2|)))) (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)) (-13 (-29 |#1|) (-1111) (-891)) (-601 |#2|)) (T -597))
+((-4039 (*1 *2 *3 *2 *4 *2 *5) (|partial| -12 (-5 *4 (-1089)) (-5 *5 (-591 *2)) (-4 *2 (-13 (-29 *6) (-1111) (-891))) (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *1 (-597 *6 *2 *3)) (-4 *3 (-601 *2)))) (-4039 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1089)) (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-4 *4 (-13 (-29 *6) (-1111) (-891))) (-5 *2 (-2 (|:| |particular| *4) (|:| -4003 (-591 *4)))) (-5 *1 (-597 *6 *4 *3)) (-4 *3 (-601 *4)))))
+(-10 -7 (-15 -4039 ((-3 (-2 (|:| |particular| |#2|) (|:| -4003 (-591 |#2|))) "failed") |#3| |#2| (-1089))) (-15 -4039 ((-3 |#2| "failed") |#3| |#2| (-1089) |#2| (-591 |#2|))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2612 (($ $) NIL (|has| |#1| (-341)))) (-3987 (($ $ $) NIL (|has| |#1| (-341)))) (-1335 (($ $ (-712)) NIL (|has| |#1| (-341)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-2559 (($ $ $) NIL (|has| |#1| (-341)))) (-1956 (($ $ $) NIL (|has| |#1| (-341)))) (-3556 (($ $ $) NIL (|has| |#1| (-341)))) (-3315 (($ $ $) NIL (|has| |#1| (-341)))) (-3830 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2220 (((-3 $ "failed") $ $) NIL (|has| |#1| (-341)))) (-2162 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) NIL)) (-3528 (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) NIL)) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3208 (($ $) NIL (|has| |#1| (-429)))) (-2824 (((-108) $) NIL)) (-1480 (($ |#1| (-712)) NIL)) (-1455 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-517)))) (-3242 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-517)))) (-2624 (((-712) $) NIL)) (-3975 (($ $ $) NIL (|has| |#1| (-341)))) (-2173 (($ $ $) NIL (|has| |#1| (-341)))) (-2332 (($ $ $) NIL (|has| |#1| (-341)))) (-2352 (($ $ $) NIL (|has| |#1| (-341)))) (-2372 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-1779 (((-3 $ "failed") $ $) NIL (|has| |#1| (-341)))) (-1702 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2089 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517)))) (-3164 ((|#1| $ |#1|) NIL)) (-2577 (($ $ $) NIL (|has| |#1| (-341)))) (-1316 (((-712) $) NIL)) (-2668 ((|#1| $) NIL (|has| |#1| (-429)))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ (-385 (-525))) NIL (|has| |#1| (-966 (-385 (-525))))) (($ |#1|) NIL)) (-3654 (((-591 |#1|) $) NIL)) (-2560 ((|#1| $ (-712)) NIL)) (-2128 (((-712)) NIL)) (-3005 ((|#1| $ |#1| |#1|) NIL)) (-4212 (($ $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($) NIL)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-598 |#1|) (-601 |#1|) (-213)) (T -598))
+NIL
+(-601 |#1|)
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2612 (($ $) NIL (|has| |#1| (-341)))) (-3987 (($ $ $) NIL (|has| |#1| (-341)))) (-1335 (($ $ (-712)) NIL (|has| |#1| (-341)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-2559 (($ $ $) NIL (|has| |#1| (-341)))) (-1956 (($ $ $) NIL (|has| |#1| (-341)))) (-3556 (($ $ $) NIL (|has| |#1| (-341)))) (-3315 (($ $ $) NIL (|has| |#1| (-341)))) (-3830 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2220 (((-3 $ "failed") $ $) NIL (|has| |#1| (-341)))) (-2162 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) NIL)) (-3528 (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) NIL)) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3208 (($ $) NIL (|has| |#1| (-429)))) (-2824 (((-108) $) NIL)) (-1480 (($ |#1| (-712)) NIL)) (-1455 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-517)))) (-3242 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-517)))) (-2624 (((-712) $) NIL)) (-3975 (($ $ $) NIL (|has| |#1| (-341)))) (-2173 (($ $ $) NIL (|has| |#1| (-341)))) (-2332 (($ $ $) NIL (|has| |#1| (-341)))) (-2352 (($ $ $) NIL (|has| |#1| (-341)))) (-2372 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-1779 (((-3 $ "failed") $ $) NIL (|has| |#1| (-341)))) (-1702 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2089 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517)))) (-3164 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-2577 (($ $ $) NIL (|has| |#1| (-341)))) (-1316 (((-712) $) NIL)) (-2668 ((|#1| $) NIL (|has| |#1| (-429)))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ (-385 (-525))) NIL (|has| |#1| (-966 (-385 (-525))))) (($ |#1|) NIL)) (-3654 (((-591 |#1|) $) NIL)) (-2560 ((|#1| $ (-712)) NIL)) (-2128 (((-712)) NIL)) (-3005 ((|#1| $ |#1| |#1|) NIL)) (-4212 (($ $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($) NIL)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-599 |#1| |#2|) (-13 (-601 |#1|) (-265 |#2| |#2|)) (-213) (-13 (-593 |#1|) (-10 -8 (-15 -3266 ($ $))))) (T -599))
+NIL
+(-13 (-601 |#1|) (-265 |#2| |#2|))
+((-2612 (($ $) 26)) (-4212 (($ $) 24)) (-4196 (($) 12)))
+(((-600 |#1| |#2|) (-10 -8 (-15 -2612 (|#1| |#1|)) (-15 -4212 (|#1| |#1|)) (-15 -4196 (|#1|))) (-601 |#2|) (-975)) (T -600))
+NIL
+(-10 -8 (-15 -2612 (|#1| |#1|)) (-15 -4212 (|#1| |#1|)) (-15 -4196 (|#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2612 (($ $) 82 (|has| |#1| (-341)))) (-3987 (($ $ $) 84 (|has| |#1| (-341)))) (-1335 (($ $ (-712)) 83 (|has| |#1| (-341)))) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-2559 (($ $ $) 45 (|has| |#1| (-341)))) (-1956 (($ $ $) 46 (|has| |#1| (-341)))) (-3556 (($ $ $) 48 (|has| |#1| (-341)))) (-3315 (($ $ $) 43 (|has| |#1| (-341)))) (-3830 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 42 (|has| |#1| (-341)))) (-2220 (((-3 $ "failed") $ $) 44 (|has| |#1| (-341)))) (-2162 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 47 (|has| |#1| (-341)))) (-1251 (((-3 (-525) "failed") $) 74 (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) 72 (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) 69)) (-3528 (((-525) $) 75 (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) 73 (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) 68)) (-1710 (($ $) 64)) (-4163 (((-3 $ "failed") $) 34)) (-3208 (($ $) 55 (|has| |#1| (-429)))) (-2824 (((-108) $) 31)) (-1480 (($ |#1| (-712)) 62)) (-1455 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 57 (|has| |#1| (-517)))) (-3242 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 58 (|has| |#1| (-517)))) (-2624 (((-712) $) 66)) (-3975 (($ $ $) 52 (|has| |#1| (-341)))) (-2173 (($ $ $) 53 (|has| |#1| (-341)))) (-2332 (($ $ $) 41 (|has| |#1| (-341)))) (-2352 (($ $ $) 50 (|has| |#1| (-341)))) (-2372 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 49 (|has| |#1| (-341)))) (-1779 (((-3 $ "failed") $ $) 51 (|has| |#1| (-341)))) (-1702 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 54 (|has| |#1| (-341)))) (-1678 ((|#1| $) 65)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2089 (((-3 $ "failed") $ |#1|) 59 (|has| |#1| (-517)))) (-3164 ((|#1| $ |#1|) 87)) (-2577 (($ $ $) 81 (|has| |#1| (-341)))) (-1316 (((-712) $) 67)) (-2668 ((|#1| $) 56 (|has| |#1| (-429)))) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ (-385 (-525))) 71 (|has| |#1| (-966 (-385 (-525))))) (($ |#1|) 70)) (-3654 (((-591 |#1|) $) 61)) (-2560 ((|#1| $ (-712)) 63)) (-2128 (((-712)) 29)) (-3005 ((|#1| $ |#1| |#1|) 60)) (-4212 (($ $) 85)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($) 86)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 77) (($ |#1| $) 76)))
+(((-601 |#1|) (-131) (-975)) (T -601))
+((-4196 (*1 *1) (-12 (-4 *1 (-601 *2)) (-4 *2 (-975)))) (-4212 (*1 *1 *1) (-12 (-4 *1 (-601 *2)) (-4 *2 (-975)))) (-3987 (*1 *1 *1 *1) (-12 (-4 *1 (-601 *2)) (-4 *2 (-975)) (-4 *2 (-341)))) (-1335 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-601 *3)) (-4 *3 (-975)) (-4 *3 (-341)))) (-2612 (*1 *1 *1) (-12 (-4 *1 (-601 *2)) (-4 *2 (-975)) (-4 *2 (-341)))) (-2577 (*1 *1 *1 *1) (-12 (-4 *1 (-601 *2)) (-4 *2 (-975)) (-4 *2 (-341)))))
+(-13 (-790 |t#1|) (-265 |t#1| |t#1|) (-10 -8 (-15 -4196 ($)) (-15 -4212 ($ $)) (IF (|has| |t#1| (-341)) (PROGN (-15 -3987 ($ $ $)) (-15 -1335 ($ $ (-712))) (-15 -2612 ($ $)) (-15 -2577 ($ $ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) |has| |#1| (-160)) ((-97) . T) ((-107 |#1| |#1|) . T) ((-126) . T) ((-565 (-796)) . T) ((-265 |#1| |#1|) . T) ((-389 |#1|) . T) ((-593 |#1|) . T) ((-593 $) . T) ((-659 |#1|) |has| |#1| (-160)) ((-668) . T) ((-966 (-385 (-525))) |has| |#1| (-966 (-385 (-525)))) ((-966 (-525)) |has| |#1| (-966 (-525))) ((-966 |#1|) . T) ((-981 |#1|) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-790 |#1|) . T))
+((-3403 (((-591 (-598 (-385 |#2|))) (-598 (-385 |#2|))) 74 (|has| |#1| (-27)))) (-1348 (((-591 (-598 (-385 |#2|))) (-598 (-385 |#2|))) 73 (|has| |#1| (-27))) (((-591 (-598 (-385 |#2|))) (-598 (-385 |#2|)) (-1 (-591 |#1|) |#2|)) 17)))
+(((-602 |#1| |#2|) (-10 -7 (-15 -1348 ((-591 (-598 (-385 |#2|))) (-598 (-385 |#2|)) (-1 (-591 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1348 ((-591 (-598 (-385 |#2|))) (-598 (-385 |#2|)))) (-15 -3403 ((-591 (-598 (-385 |#2|))) (-598 (-385 |#2|))))) |%noBranch|)) (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))) (-1147 |#1|)) (T -602))
+((-3403 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-4 *5 (-1147 *4)) (-5 *2 (-591 (-598 (-385 *5)))) (-5 *1 (-602 *4 *5)) (-5 *3 (-598 (-385 *5))))) (-1348 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-4 *5 (-1147 *4)) (-5 *2 (-591 (-598 (-385 *5)))) (-5 *1 (-602 *4 *5)) (-5 *3 (-598 (-385 *5))))) (-1348 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-591 *5) *6)) (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-4 *6 (-1147 *5)) (-5 *2 (-591 (-598 (-385 *6)))) (-5 *1 (-602 *5 *6)) (-5 *3 (-598 (-385 *6))))))
+(-10 -7 (-15 -1348 ((-591 (-598 (-385 |#2|))) (-598 (-385 |#2|)) (-1 (-591 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1348 ((-591 (-598 (-385 |#2|))) (-598 (-385 |#2|)))) (-15 -3403 ((-591 (-598 (-385 |#2|))) (-598 (-385 |#2|))))) |%noBranch|))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2612 (($ $) NIL (|has| |#1| (-341)))) (-3987 (($ $ $) 28 (|has| |#1| (-341)))) (-1335 (($ $ (-712)) 31 (|has| |#1| (-341)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-2559 (($ $ $) NIL (|has| |#1| (-341)))) (-1956 (($ $ $) NIL (|has| |#1| (-341)))) (-3556 (($ $ $) NIL (|has| |#1| (-341)))) (-3315 (($ $ $) NIL (|has| |#1| (-341)))) (-3830 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2220 (((-3 $ "failed") $ $) NIL (|has| |#1| (-341)))) (-2162 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) NIL)) (-3528 (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) NIL)) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3208 (($ $) NIL (|has| |#1| (-429)))) (-2824 (((-108) $) NIL)) (-1480 (($ |#1| (-712)) NIL)) (-1455 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-517)))) (-3242 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-517)))) (-2624 (((-712) $) NIL)) (-3975 (($ $ $) NIL (|has| |#1| (-341)))) (-2173 (($ $ $) NIL (|has| |#1| (-341)))) (-2332 (($ $ $) NIL (|has| |#1| (-341)))) (-2352 (($ $ $) NIL (|has| |#1| (-341)))) (-2372 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-1779 (((-3 $ "failed") $ $) NIL (|has| |#1| (-341)))) (-1702 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2089 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517)))) (-3164 ((|#1| $ |#1|) 24)) (-2577 (($ $ $) 33 (|has| |#1| (-341)))) (-1316 (((-712) $) NIL)) (-2668 ((|#1| $) NIL (|has| |#1| (-429)))) (-3022 (((-796) $) 20) (($ (-525)) NIL) (($ (-385 (-525))) NIL (|has| |#1| (-966 (-385 (-525))))) (($ |#1|) NIL)) (-3654 (((-591 |#1|) $) NIL)) (-2560 ((|#1| $ (-712)) NIL)) (-2128 (((-712)) NIL)) (-3005 ((|#1| $ |#1| |#1|) 23)) (-4212 (($ $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 21 T CONST)) (-4197 (($) 8 T CONST)) (-4196 (($) NIL)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-603 |#1| |#2|) (-601 |#1|) (-975) (-1 |#1| |#1|)) (T -603))
+NIL
+(-601 |#1|)
+((-3987 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 59)) (-1335 ((|#2| |#2| (-712) (-1 |#1| |#1|)) 40)) (-2577 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 61)))
+(((-604 |#1| |#2|) (-10 -7 (-15 -3987 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -1335 (|#2| |#2| (-712) (-1 |#1| |#1|))) (-15 -2577 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-341) (-601 |#1|)) (T -604))
+((-2577 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-341)) (-5 *1 (-604 *4 *2)) (-4 *2 (-601 *4)))) (-1335 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-712)) (-5 *4 (-1 *5 *5)) (-4 *5 (-341)) (-5 *1 (-604 *5 *2)) (-4 *2 (-601 *5)))) (-3987 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-341)) (-5 *1 (-604 *4 *2)) (-4 *2 (-601 *4)))))
+(-10 -7 (-15 -3987 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -1335 (|#2| |#2| (-712) (-1 |#1| |#1|))) (-15 -2577 (|#2| |#2| |#2| (-1 |#1| |#1|))))
+((-3625 (($ $ $) 9)))
+(((-605 |#1|) (-10 -8 (-15 -3625 (|#1| |#1| |#1|))) (-606)) (T -605))
+NIL
+(-10 -8 (-15 -3625 (|#1| |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1917 (($ $) 10)) (-3625 (($ $ $) 8)) (-4096 (((-108) $ $) 6)) (-3613 (($ $ $) 9)))
+(((-606) (-131)) (T -606))
+((-1917 (*1 *1 *1) (-4 *1 (-606))) (-3613 (*1 *1 *1 *1) (-4 *1 (-606))) (-3625 (*1 *1 *1 *1) (-4 *1 (-606))))
+(-13 (-97) (-10 -8 (-15 -1917 ($ $)) (-15 -3613 ($ $ $)) (-15 -3625 ($ $ $))))
(((-97) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 15)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-2164 ((|#1| $) 21)) (-3268 (($ $ $) NIL (|has| |#1| (-730)))) (-2644 (($ $ $) NIL (|has| |#1| (-730)))) (-3841 (((-1070) $) 46)) (-2435 (((-1034) $) NIL)) (-2171 ((|#3| $) 22)) (-3976 (((-794) $) 42)) (-1428 (($) 10 T CONST)) (-4078 (((-108) $ $) NIL (|has| |#1| (-730)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-730)))) (-4037 (((-108) $ $) 20)) (-4070 (((-108) $ $) NIL (|has| |#1| (-730)))) (-4052 (((-108) $ $) 24 (|has| |#1| (-730)))) (-4125 (($ $ |#3|) 34) (($ |#1| |#3|) 35)) (-4115 (($ $) 17) (($ $ $) NIL)) (-4103 (($ $ $) 27)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 30) (($ |#2| $) 32) (($ $ |#2|) NIL)))
-(((-605 |#1| |#2| |#3|) (-13 (-657 |#2|) (-10 -8 (IF (|has| |#1| (-730)) (-6 (-730)) |%noBranch|) (-15 -4125 ($ $ |#3|)) (-15 -4125 ($ |#1| |#3|)) (-15 -2164 (|#1| $)) (-15 -2171 (|#3| $)))) (-657 |#2|) (-158) (|SubsetCategory| (-666) |#2|)) (T -605))
-((-4125 (*1 *1 *1 *2) (-12 (-4 *4 (-158)) (-5 *1 (-605 *3 *4 *2)) (-4 *3 (-657 *4)) (-4 *2 (|SubsetCategory| (-666) *4)))) (-4125 (*1 *1 *2 *3) (-12 (-4 *4 (-158)) (-5 *1 (-605 *2 *4 *3)) (-4 *2 (-657 *4)) (-4 *3 (|SubsetCategory| (-666) *4)))) (-2164 (*1 *2 *1) (-12 (-4 *3 (-158)) (-4 *2 (-657 *3)) (-5 *1 (-605 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-666) *3)))) (-2171 (*1 *2 *1) (-12 (-4 *4 (-158)) (-4 *2 (|SubsetCategory| (-666) *4)) (-5 *1 (-605 *3 *4 *2)) (-4 *3 (-657 *4)))))
-(-13 (-657 |#2|) (-10 -8 (IF (|has| |#1| (-730)) (-6 (-730)) |%noBranch|) (-15 -4125 ($ $ |#3|)) (-15 -4125 ($ |#1| |#3|)) (-15 -2164 (|#1| $)) (-15 -2171 (|#3| $))))
-((-1210 (((-3 (-589 (-1083 |#1|)) "failed") (-589 (-1083 |#1|)) (-1083 |#1|)) 33)))
-(((-606 |#1|) (-10 -7 (-15 -1210 ((-3 (-589 (-1083 |#1|)) "failed") (-589 (-1083 |#1|)) (-1083 |#1|)))) (-840)) (T -606))
-((-1210 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-589 (-1083 *4))) (-5 *3 (-1083 *4)) (-4 *4 (-840)) (-5 *1 (-606 *4)))))
-(-10 -7 (-15 -1210 ((-3 (-589 (-1083 |#1|)) "failed") (-589 (-1083 |#1|)) (-1083 |#1|))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1304 (((-589 |#1|) $) 82)) (-3944 (($ $ (-710)) 90)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-3168 (((-1191 |#1| |#2|) (-1191 |#1| |#2|) $) 48)) (-2898 (((-3 (-614 |#1|) "failed") $) NIL)) (-1996 (((-614 |#1|) $) NIL)) (-3142 (($ $) 89)) (-3288 (((-710) $) NIL)) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-1511 (($ (-614 |#1|) |#2|) 68)) (-2471 (($ $) 86)) (-3015 (($ (-1 |#2| |#2|) $) NIL)) (-2475 (((-1191 |#1| |#2|) (-1191 |#1| |#2|) $) 47)) (-2859 (((-2 (|:| |k| (-614 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3107 (((-614 |#1|) $) NIL)) (-3119 ((|#2| $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-1349 (($ $ |#1| $) 30) (($ $ (-589 |#1|) (-589 $)) 32)) (-1487 (((-710) $) 88)) (-3985 (($ $ $) 20) (($ (-614 |#1|) (-614 |#1|)) 77) (($ (-614 |#1|) $) 75) (($ $ (-614 |#1|)) 76)) (-3976 (((-794) $) NIL) (($ |#1|) 74) (((-1182 |#1| |#2|) $) 58) (((-1191 |#1| |#2|) $) 41) (($ (-614 |#1|)) 25)) (-1639 (((-589 |#2|) $) NIL)) (-1234 ((|#2| $ (-614 |#1|)) NIL)) (-2275 ((|#2| (-1191 |#1| |#2|) $) 43)) (-1428 (($) 23 T CONST)) (-1776 (((-589 (-2 (|:| |k| (-614 |#1|)) (|:| |c| |#2|))) $) NIL)) (-1287 (((-3 $ "failed") (-1182 |#1| |#2|)) 60)) (-4066 (($ (-614 |#1|)) 14)) (-4037 (((-108) $ $) 44)) (-4125 (($ $ |#2|) NIL (|has| |#2| (-339)))) (-4115 (($ $) 66) (($ $ $) NIL)) (-4103 (($ $ $) 29)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ |#2| $) 28) (($ $ |#2|) NIL) (($ |#2| (-614 |#1|)) NIL)))
-(((-607 |#1| |#2|) (-13 (-350 |#1| |#2|) (-358 |#2| (-614 |#1|)) (-10 -8 (-15 -1287 ((-3 $ "failed") (-1182 |#1| |#2|))) (-15 -3985 ($ (-614 |#1|) (-614 |#1|))) (-15 -3985 ($ (-614 |#1|) $)) (-15 -3985 ($ $ (-614 |#1|))))) (-786) (-158)) (T -607))
-((-1287 (*1 *1 *2) (|partial| -12 (-5 *2 (-1182 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158)) (-5 *1 (-607 *3 *4)))) (-3985 (*1 *1 *2 *2) (-12 (-5 *2 (-614 *3)) (-4 *3 (-786)) (-5 *1 (-607 *3 *4)) (-4 *4 (-158)))) (-3985 (*1 *1 *2 *1) (-12 (-5 *2 (-614 *3)) (-4 *3 (-786)) (-5 *1 (-607 *3 *4)) (-4 *4 (-158)))) (-3985 (*1 *1 *1 *2) (-12 (-5 *2 (-614 *3)) (-4 *3 (-786)) (-5 *1 (-607 *3 *4)) (-4 *4 (-158)))))
-(-13 (-350 |#1| |#2|) (-358 |#2| (-614 |#1|)) (-10 -8 (-15 -1287 ((-3 $ "failed") (-1182 |#1| |#2|))) (-15 -3985 ($ (-614 |#1|) (-614 |#1|))) (-15 -3985 ($ (-614 |#1|) $)) (-15 -3985 ($ $ (-614 |#1|)))))
-((-4159 (((-108) $) NIL) (((-108) (-1 (-108) |#2| |#2|) $) 50)) (-2361 (($ $) NIL) (($ (-1 (-108) |#2| |#2|) $) 12)) (-3627 (($ (-1 (-108) |#2|) $) 28)) (-4091 (($ $) 56)) (-2543 (($ $) 64)) (-1869 (($ |#2| $) NIL) (($ (-1 (-108) |#2|) $) 37)) (-1830 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 51) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 53)) (-1894 (((-523) |#2| $ (-523)) 61) (((-523) |#2| $) NIL) (((-523) (-1 (-108) |#2|) $) 47)) (-2348 (($ (-710) |#2|) 54)) (-3325 (($ $ $) NIL) (($ (-1 (-108) |#2| |#2|) $ $) 30)) (-3123 (($ $ $) NIL) (($ (-1 (-108) |#2| |#2|) $ $) 24)) (-3015 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 55)) (-3745 (($ |#2|) 15)) (-3862 (($ $ $ (-523)) 36) (($ |#2| $ (-523)) 34)) (-2660 (((-3 |#2| "failed") (-1 (-108) |#2|) $) 46)) (-1314 (($ $ (-1136 (-523))) 44) (($ $ (-523)) 38)) (-2580 (($ $ $ (-523)) 60)) (-4124 (($ $) 58)) (-4052 (((-108) $ $) 66)))
-(((-608 |#1| |#2|) (-10 -8 (-15 -3745 (|#1| |#2|)) (-15 -1314 (|#1| |#1| (-523))) (-15 -1314 (|#1| |#1| (-1136 (-523)))) (-15 -1869 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3862 (|#1| |#2| |#1| (-523))) (-15 -3862 (|#1| |#1| |#1| (-523))) (-15 -3325 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -3627 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1869 (|#1| |#2| |#1|)) (-15 -2543 (|#1| |#1|)) (-15 -3325 (|#1| |#1| |#1|)) (-15 -3123 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -4159 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -1894 ((-523) (-1 (-108) |#2|) |#1|)) (-15 -1894 ((-523) |#2| |#1|)) (-15 -1894 ((-523) |#2| |#1| (-523))) (-15 -3123 (|#1| |#1| |#1|)) (-15 -4159 ((-108) |#1|)) (-15 -2580 (|#1| |#1| |#1| (-523))) (-15 -4091 (|#1| |#1|)) (-15 -2361 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -2361 (|#1| |#1|)) (-15 -4052 ((-108) |#1| |#1|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2660 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -2348 (|#1| (-710) |#2|)) (-15 -3015 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4124 (|#1| |#1|))) (-609 |#2|) (-1123)) (T -608))
-NIL
-(-10 -8 (-15 -3745 (|#1| |#2|)) (-15 -1314 (|#1| |#1| (-523))) (-15 -1314 (|#1| |#1| (-1136 (-523)))) (-15 -1869 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3862 (|#1| |#2| |#1| (-523))) (-15 -3862 (|#1| |#1| |#1| (-523))) (-15 -3325 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -3627 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1869 (|#1| |#2| |#1|)) (-15 -2543 (|#1| |#1|)) (-15 -3325 (|#1| |#1| |#1|)) (-15 -3123 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -4159 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -1894 ((-523) (-1 (-108) |#2|) |#1|)) (-15 -1894 ((-523) |#2| |#1|)) (-15 -1894 ((-523) |#2| |#1| (-523))) (-15 -3123 (|#1| |#1| |#1|)) (-15 -4159 ((-108) |#1|)) (-15 -2580 (|#1| |#1| |#1| (-523))) (-15 -4091 (|#1| |#1|)) (-15 -2361 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -2361 (|#1| |#1|)) (-15 -4052 ((-108) |#1| |#1|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1830 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2660 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -2348 (|#1| (-710) |#2|)) (-15 -3015 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4124 (|#1| |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2058 ((|#1| $) 48)) (-3972 ((|#1| $) 65)) (-3548 (($ $) 67)) (-1666 (((-1174) $ (-523) (-523)) 97 (|has| $ (-6 -4249)))) (-3117 (($ $ (-523)) 52 (|has| $ (-6 -4249)))) (-4159 (((-108) $) 142 (|has| |#1| (-786))) (((-108) (-1 (-108) |#1| |#1|) $) 136)) (-2361 (($ $) 146 (-12 (|has| |#1| (-786)) (|has| $ (-6 -4249)))) (($ (-1 (-108) |#1| |#1|) $) 145 (|has| $ (-6 -4249)))) (-3400 (($ $) 141 (|has| |#1| (-786))) (($ (-1 (-108) |#1| |#1|) $) 135)) (-2282 (((-108) $ (-710)) 8)) (-3365 ((|#1| $ |#1|) 39 (|has| $ (-6 -4249)))) (-3546 (($ $ $) 56 (|has| $ (-6 -4249)))) (-2535 ((|#1| $ |#1|) 54 (|has| $ (-6 -4249)))) (-1957 ((|#1| $ |#1|) 58 (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4249))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4249))) (($ $ "rest" $) 55 (|has| $ (-6 -4249))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) 117 (|has| $ (-6 -4249))) ((|#1| $ (-523) |#1|) 86 (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) 41 (|has| $ (-6 -4249)))) (-3627 (($ (-1 (-108) |#1|) $) 129)) (-1299 (($ (-1 (-108) |#1|) $) 102 (|has| $ (-6 -4248)))) (-3962 ((|#1| $) 66)) (-1640 (($) 7 T CONST)) (-4091 (($ $) 144 (|has| $ (-6 -4249)))) (-4082 (($ $) 134)) (-3891 (($ $) 73) (($ $ (-710)) 71)) (-2543 (($ $) 131 (|has| |#1| (-1016)))) (-3917 (($ $) 99 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-1869 (($ |#1| $) 130 (|has| |#1| (-1016))) (($ (-1 (-108) |#1|) $) 125)) (-2231 (($ (-1 (-108) |#1|) $) 103 (|has| $ (-6 -4248))) (($ |#1| $) 100 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3073 ((|#1| $ (-523) |#1|) 85 (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) 87)) (-2527 (((-108) $) 83)) (-1894 (((-523) |#1| $ (-523)) 139 (|has| |#1| (-1016))) (((-523) |#1| $) 138 (|has| |#1| (-1016))) (((-523) (-1 (-108) |#1|) $) 137)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) 50)) (-3339 (((-108) $ $) 42 (|has| |#1| (-1016)))) (-2348 (($ (-710) |#1|) 108)) (-1344 (((-108) $ (-710)) 9)) (-1798 (((-523) $) 95 (|has| (-523) (-786)))) (-3268 (($ $ $) 147 (|has| |#1| (-786)))) (-3325 (($ $ $) 132 (|has| |#1| (-786))) (($ (-1 (-108) |#1| |#1|) $ $) 128)) (-3123 (($ $ $) 140 (|has| |#1| (-786))) (($ (-1 (-108) |#1| |#1|) $ $) 133)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2133 (((-523) $) 94 (|has| (-523) (-786)))) (-2644 (($ $ $) 148 (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-3745 (($ |#1|) 122)) (-4042 (((-108) $ (-710)) 10)) (-2112 (((-589 |#1|) $) 45)) (-3391 (((-108) $) 49)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2247 ((|#1| $) 70) (($ $ (-710)) 68)) (-3862 (($ $ $ (-523)) 127) (($ |#1| $ (-523)) 126)) (-3334 (($ $ $ (-523)) 116) (($ |#1| $ (-523)) 115)) (-2909 (((-589 (-523)) $) 92)) (-2290 (((-108) (-523) $) 91)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-3879 ((|#1| $) 76) (($ $ (-710)) 74)) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 106)) (-2408 (($ $ |#1|) 96 (|has| $ (-6 -4249)))) (-3214 (((-108) $) 84)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-1410 (((-108) |#1| $) 93 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) 90)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1136 (-523))) 112) ((|#1| $ (-523)) 89) ((|#1| $ (-523) |#1|) 88)) (-2981 (((-523) $ $) 44)) (-1314 (($ $ (-1136 (-523))) 124) (($ $ (-523)) 123)) (-3725 (($ $ (-1136 (-523))) 114) (($ $ (-523)) 113)) (-2837 (((-108) $) 46)) (-2238 (($ $) 62)) (-4198 (($ $) 59 (|has| $ (-6 -4249)))) (-3647 (((-710) $) 63)) (-2801 (($ $) 64)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2580 (($ $ $ (-523)) 143 (|has| $ (-6 -4249)))) (-4124 (($ $) 13)) (-3077 (((-499) $) 98 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 107)) (-1622 (($ $ $) 61) (($ $ |#1|) 60)) (-2785 (($ $ $) 78) (($ |#1| $) 77) (($ (-589 $)) 110) (($ $ |#1|) 109)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) 51)) (-4004 (((-108) $ $) 43 (|has| |#1| (-1016)))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) 150 (|has| |#1| (-786)))) (-4061 (((-108) $ $) 151 (|has| |#1| (-786)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-4070 (((-108) $ $) 149 (|has| |#1| (-786)))) (-4052 (((-108) $ $) 152 (|has| |#1| (-786)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-609 |#1|) (-129) (-1123)) (T -609))
-((-3745 (*1 *1 *2) (-12 (-4 *1 (-609 *2)) (-4 *2 (-1123)))))
-(-13 (-1061 |t#1|) (-349 |t#1|) (-259 |t#1|) (-10 -8 (-15 -3745 ($ |t#1|))))
-(((-33) . T) ((-97) -3255 (|has| |#1| (-1016)) (|has| |#1| (-786))) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-786)) (|has| |#1| (-563 (-794)))) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-263 #0=(-523) |#1|) . T) ((-265 #0# |#1|) . T) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-259 |#1|) . T) ((-349 |#1|) . T) ((-462 |#1|) . T) ((-556 #0# |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-594 |#1|) . T) ((-786) |has| |#1| (-786)) ((-938 |#1|) . T) ((-1016) -3255 (|has| |#1| (-1016)) (|has| |#1| (-786))) ((-1061 |#1|) . T) ((-1123) . T) ((-1157 |#1|) . T))
-((-3911 (((-589 (-2 (|:| |particular| (-3 (-1169 |#1|) "failed")) (|:| -2922 (-589 (-1169 |#1|))))) (-589 (-589 |#1|)) (-589 (-1169 |#1|))) 22) (((-589 (-2 (|:| |particular| (-3 (-1169 |#1|) "failed")) (|:| -2922 (-589 (-1169 |#1|))))) (-629 |#1|) (-589 (-1169 |#1|))) 21) (((-2 (|:| |particular| (-3 (-1169 |#1|) "failed")) (|:| -2922 (-589 (-1169 |#1|)))) (-589 (-589 |#1|)) (-1169 |#1|)) 18) (((-2 (|:| |particular| (-3 (-1169 |#1|) "failed")) (|:| -2922 (-589 (-1169 |#1|)))) (-629 |#1|) (-1169 |#1|)) 14)) (-2262 (((-710) (-629 |#1|) (-1169 |#1|)) 30)) (-1795 (((-3 (-1169 |#1|) "failed") (-629 |#1|) (-1169 |#1|)) 24)) (-2096 (((-108) (-629 |#1|) (-1169 |#1|)) 27)))
-(((-610 |#1|) (-10 -7 (-15 -3911 ((-2 (|:| |particular| (-3 (-1169 |#1|) "failed")) (|:| -2922 (-589 (-1169 |#1|)))) (-629 |#1|) (-1169 |#1|))) (-15 -3911 ((-2 (|:| |particular| (-3 (-1169 |#1|) "failed")) (|:| -2922 (-589 (-1169 |#1|)))) (-589 (-589 |#1|)) (-1169 |#1|))) (-15 -3911 ((-589 (-2 (|:| |particular| (-3 (-1169 |#1|) "failed")) (|:| -2922 (-589 (-1169 |#1|))))) (-629 |#1|) (-589 (-1169 |#1|)))) (-15 -3911 ((-589 (-2 (|:| |particular| (-3 (-1169 |#1|) "failed")) (|:| -2922 (-589 (-1169 |#1|))))) (-589 (-589 |#1|)) (-589 (-1169 |#1|)))) (-15 -1795 ((-3 (-1169 |#1|) "failed") (-629 |#1|) (-1169 |#1|))) (-15 -2096 ((-108) (-629 |#1|) (-1169 |#1|))) (-15 -2262 ((-710) (-629 |#1|) (-1169 |#1|)))) (-339)) (T -610))
-((-2262 (*1 *2 *3 *4) (-12 (-5 *3 (-629 *5)) (-5 *4 (-1169 *5)) (-4 *5 (-339)) (-5 *2 (-710)) (-5 *1 (-610 *5)))) (-2096 (*1 *2 *3 *4) (-12 (-5 *3 (-629 *5)) (-5 *4 (-1169 *5)) (-4 *5 (-339)) (-5 *2 (-108)) (-5 *1 (-610 *5)))) (-1795 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1169 *4)) (-5 *3 (-629 *4)) (-4 *4 (-339)) (-5 *1 (-610 *4)))) (-3911 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-589 *5))) (-4 *5 (-339)) (-5 *2 (-589 (-2 (|:| |particular| (-3 (-1169 *5) "failed")) (|:| -2922 (-589 (-1169 *5)))))) (-5 *1 (-610 *5)) (-5 *4 (-589 (-1169 *5))))) (-3911 (*1 *2 *3 *4) (-12 (-5 *3 (-629 *5)) (-4 *5 (-339)) (-5 *2 (-589 (-2 (|:| |particular| (-3 (-1169 *5) "failed")) (|:| -2922 (-589 (-1169 *5)))))) (-5 *1 (-610 *5)) (-5 *4 (-589 (-1169 *5))))) (-3911 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-589 *5))) (-4 *5 (-339)) (-5 *2 (-2 (|:| |particular| (-3 (-1169 *5) "failed")) (|:| -2922 (-589 (-1169 *5))))) (-5 *1 (-610 *5)) (-5 *4 (-1169 *5)))) (-3911 (*1 *2 *3 *4) (-12 (-5 *3 (-629 *5)) (-4 *5 (-339)) (-5 *2 (-2 (|:| |particular| (-3 (-1169 *5) "failed")) (|:| -2922 (-589 (-1169 *5))))) (-5 *1 (-610 *5)) (-5 *4 (-1169 *5)))))
-(-10 -7 (-15 -3911 ((-2 (|:| |particular| (-3 (-1169 |#1|) "failed")) (|:| -2922 (-589 (-1169 |#1|)))) (-629 |#1|) (-1169 |#1|))) (-15 -3911 ((-2 (|:| |particular| (-3 (-1169 |#1|) "failed")) (|:| -2922 (-589 (-1169 |#1|)))) (-589 (-589 |#1|)) (-1169 |#1|))) (-15 -3911 ((-589 (-2 (|:| |particular| (-3 (-1169 |#1|) "failed")) (|:| -2922 (-589 (-1169 |#1|))))) (-629 |#1|) (-589 (-1169 |#1|)))) (-15 -3911 ((-589 (-2 (|:| |particular| (-3 (-1169 |#1|) "failed")) (|:| -2922 (-589 (-1169 |#1|))))) (-589 (-589 |#1|)) (-589 (-1169 |#1|)))) (-15 -1795 ((-3 (-1169 |#1|) "failed") (-629 |#1|) (-1169 |#1|))) (-15 -2096 ((-108) (-629 |#1|) (-1169 |#1|))) (-15 -2262 ((-710) (-629 |#1|) (-1169 |#1|))))
-((-3911 (((-589 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2922 (-589 |#3|)))) |#4| (-589 |#3|)) 47) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2922 (-589 |#3|))) |#4| |#3|) 45)) (-2262 (((-710) |#4| |#3|) 17)) (-1795 (((-3 |#3| "failed") |#4| |#3|) 20)) (-2096 (((-108) |#4| |#3|) 13)))
-(((-611 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3911 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2922 (-589 |#3|))) |#4| |#3|)) (-15 -3911 ((-589 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2922 (-589 |#3|)))) |#4| (-589 |#3|))) (-15 -1795 ((-3 |#3| "failed") |#4| |#3|)) (-15 -2096 ((-108) |#4| |#3|)) (-15 -2262 ((-710) |#4| |#3|))) (-339) (-13 (-349 |#1|) (-10 -7 (-6 -4249))) (-13 (-349 |#1|) (-10 -7 (-6 -4249))) (-627 |#1| |#2| |#3|)) (T -611))
-((-2262 (*1 *2 *3 *4) (-12 (-4 *5 (-339)) (-4 *6 (-13 (-349 *5) (-10 -7 (-6 -4249)))) (-4 *4 (-13 (-349 *5) (-10 -7 (-6 -4249)))) (-5 *2 (-710)) (-5 *1 (-611 *5 *6 *4 *3)) (-4 *3 (-627 *5 *6 *4)))) (-2096 (*1 *2 *3 *4) (-12 (-4 *5 (-339)) (-4 *6 (-13 (-349 *5) (-10 -7 (-6 -4249)))) (-4 *4 (-13 (-349 *5) (-10 -7 (-6 -4249)))) (-5 *2 (-108)) (-5 *1 (-611 *5 *6 *4 *3)) (-4 *3 (-627 *5 *6 *4)))) (-1795 (*1 *2 *3 *2) (|partial| -12 (-4 *4 (-339)) (-4 *5 (-13 (-349 *4) (-10 -7 (-6 -4249)))) (-4 *2 (-13 (-349 *4) (-10 -7 (-6 -4249)))) (-5 *1 (-611 *4 *5 *2 *3)) (-4 *3 (-627 *4 *5 *2)))) (-3911 (*1 *2 *3 *4) (-12 (-4 *5 (-339)) (-4 *6 (-13 (-349 *5) (-10 -7 (-6 -4249)))) (-4 *7 (-13 (-349 *5) (-10 -7 (-6 -4249)))) (-5 *2 (-589 (-2 (|:| |particular| (-3 *7 "failed")) (|:| -2922 (-589 *7))))) (-5 *1 (-611 *5 *6 *7 *3)) (-5 *4 (-589 *7)) (-4 *3 (-627 *5 *6 *7)))) (-3911 (*1 *2 *3 *4) (-12 (-4 *5 (-339)) (-4 *6 (-13 (-349 *5) (-10 -7 (-6 -4249)))) (-4 *4 (-13 (-349 *5) (-10 -7 (-6 -4249)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4)))) (-5 *1 (-611 *5 *6 *4 *3)) (-4 *3 (-627 *5 *6 *4)))))
-(-10 -7 (-15 -3911 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2922 (-589 |#3|))) |#4| |#3|)) (-15 -3911 ((-589 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2922 (-589 |#3|)))) |#4| (-589 |#3|))) (-15 -1795 ((-3 |#3| "failed") |#4| |#3|)) (-15 -2096 ((-108) |#4| |#3|)) (-15 -2262 ((-710) |#4| |#3|)))
-((-2762 (((-2 (|:| |particular| (-3 (-1169 (-383 |#4|)) "failed")) (|:| -2922 (-589 (-1169 (-383 |#4|))))) (-589 |#4|) (-589 |#3|)) 45)))
-(((-612 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2762 ((-2 (|:| |particular| (-3 (-1169 (-383 |#4|)) "failed")) (|:| -2922 (-589 (-1169 (-383 |#4|))))) (-589 |#4|) (-589 |#3|)))) (-515) (-732) (-786) (-880 |#1| |#2| |#3|)) (T -612))
-((-2762 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *8)) (-5 *4 (-589 *7)) (-4 *7 (-786)) (-4 *8 (-880 *5 *6 *7)) (-4 *5 (-515)) (-4 *6 (-732)) (-5 *2 (-2 (|:| |particular| (-3 (-1169 (-383 *8)) "failed")) (|:| -2922 (-589 (-1169 (-383 *8)))))) (-5 *1 (-612 *5 *6 *7 *8)))))
-(-10 -7 (-15 -2762 ((-2 (|:| |particular| (-3 (-1169 (-383 |#4|)) "failed")) (|:| -2922 (-589 (-1169 (-383 |#4|))))) (-589 |#4|) (-589 |#3|))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1895 (((-3 $ "failed")) NIL (|has| |#2| (-515)))) (-4131 ((|#2| $) NIL)) (-2624 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2279 (((-1169 (-629 |#2|))) NIL) (((-1169 (-629 |#2|)) (-1169 $)) NIL)) (-2108 (((-108) $) NIL)) (-3513 (((-1169 $)) 37)) (-2282 (((-108) $ (-710)) NIL)) (-1370 (($ |#2|) NIL)) (-1640 (($) NIL T CONST)) (-1561 (($ $) NIL (|has| |#2| (-284)))) (-2823 (((-218 |#1| |#2|) $ (-523)) NIL)) (-1563 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) NIL (|has| |#2| (-515)))) (-3869 (((-3 $ "failed")) NIL (|has| |#2| (-515)))) (-4067 (((-629 |#2|)) NIL) (((-629 |#2|) (-1169 $)) NIL)) (-2507 ((|#2| $) NIL)) (-2358 (((-629 |#2|) $) NIL) (((-629 |#2|) $ (-1169 $)) NIL)) (-2439 (((-3 $ "failed") $) NIL (|has| |#2| (-515)))) (-2717 (((-1083 (-883 |#2|))) NIL (|has| |#2| (-339)))) (-2966 (($ $ (-852)) NIL)) (-2860 ((|#2| $) NIL)) (-2119 (((-1083 |#2|) $) NIL (|has| |#2| (-515)))) (-1772 ((|#2|) NIL) ((|#2| (-1169 $)) NIL)) (-2196 (((-1083 |#2|) $) NIL)) (-3953 (((-108)) NIL)) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#2| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#2| (-964 (-383 (-523))))) (((-3 |#2| "failed") $) NIL)) (-1996 (((-523) $) NIL (|has| |#2| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#2| (-964 (-383 (-523))))) ((|#2| $) NIL)) (-3322 (($ (-1169 |#2|)) NIL) (($ (-1169 |#2|) (-1169 $)) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) NIL) (((-629 |#2|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2262 (((-710) $) NIL (|has| |#2| (-515))) (((-852)) 38)) (-3002 ((|#2| $ (-523) (-523)) NIL)) (-3091 (((-108)) NIL)) (-1935 (($ $ (-852)) NIL)) (-3133 (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-3482 (((-108) $) NIL)) (-2534 (((-710) $) NIL (|has| |#2| (-515)))) (-3392 (((-589 (-218 |#1| |#2|)) $) NIL (|has| |#2| (-515)))) (-3656 (((-710) $) NIL)) (-3562 (((-108)) NIL)) (-3668 (((-710) $) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-2082 ((|#2| $) NIL (|has| |#2| (-6 (-4250 "*"))))) (-1392 (((-523) $) NIL)) (-1219 (((-523) $) NIL)) (-3056 (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-2102 (((-523) $) NIL)) (-3328 (((-523) $) NIL)) (-3078 (($ (-589 (-589 |#2|))) NIL)) (-3063 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-3522 (((-589 (-589 |#2|)) $) NIL)) (-3877 (((-108)) NIL)) (-3868 (((-108)) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-4111 (((-3 (-2 (|:| |particular| $) (|:| -2922 (-589 $))) "failed")) NIL (|has| |#2| (-515)))) (-3575 (((-3 $ "failed")) NIL (|has| |#2| (-515)))) (-2216 (((-629 |#2|)) NIL) (((-629 |#2|) (-1169 $)) NIL)) (-1870 ((|#2| $) NIL)) (-2225 (((-629 |#2|) $) NIL) (((-629 |#2|) $ (-1169 $)) NIL)) (-3790 (((-3 $ "failed") $) NIL (|has| |#2| (-515)))) (-2975 (((-1083 (-883 |#2|))) NIL (|has| |#2| (-339)))) (-2165 (($ $ (-852)) NIL)) (-1876 ((|#2| $) NIL)) (-1393 (((-1083 |#2|) $) NIL (|has| |#2| (-515)))) (-1242 ((|#2|) NIL) ((|#2| (-1169 $)) NIL)) (-1292 (((-1083 |#2|) $) NIL)) (-1519 (((-108)) NIL)) (-3841 (((-1070) $) NIL)) (-1279 (((-108)) NIL)) (-1466 (((-108)) NIL)) (-1597 (((-108)) NIL)) (-3714 (((-3 $ "failed") $) NIL (|has| |#2| (-339)))) (-2435 (((-1034) $) NIL)) (-2375 (((-108)) NIL)) (-2469 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-515)))) (-2720 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#2|))) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#2| $ (-523) (-523) |#2|) NIL) ((|#2| $ (-523) (-523)) 22) ((|#2| $ (-523)) NIL)) (-4024 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-710)) NIL (|has| |#2| (-211))) (($ $) NIL (|has| |#2| (-211)))) (-3092 ((|#2| $) NIL)) (-2148 (($ (-589 |#2|)) NIL)) (-2395 (((-108) $) NIL)) (-4088 (((-218 |#1| |#2|) $) NIL)) (-1273 ((|#2| $) NIL (|has| |#2| (-6 (-4250 "*"))))) (-2452 (((-710) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248))) (((-710) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-4124 (($ $) NIL)) (-2411 (((-629 |#2|) (-1169 $)) NIL) (((-1169 |#2|) $) NIL) (((-629 |#2|) (-1169 $) (-1169 $)) NIL) (((-1169 |#2|) $ (-1169 $)) 25)) (-3077 (($ (-1169 |#2|)) NIL) (((-1169 |#2|) $) NIL)) (-1948 (((-589 (-883 |#2|))) NIL) (((-589 (-883 |#2|)) (-1169 $)) NIL)) (-2306 (($ $ $) NIL)) (-2178 (((-108)) NIL)) (-2032 (((-218 |#1| |#2|) $ (-523)) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ (-383 (-523))) NIL (|has| |#2| (-964 (-383 (-523))))) (($ |#2|) NIL) (((-629 |#2|) $) NIL)) (-1698 (((-710)) NIL)) (-2922 (((-1169 $)) 36)) (-1842 (((-589 (-1169 |#2|))) NIL (|has| |#2| (-515)))) (-3377 (($ $ $ $) NIL)) (-1363 (((-108)) NIL)) (-3817 (($ (-629 |#2|) $) NIL)) (-1505 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-2791 (((-108) $) NIL)) (-1952 (($ $ $) NIL)) (-3931 (((-108)) NIL)) (-3433 (((-108)) NIL)) (-4001 (((-108)) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-710)) NIL (|has| |#2| (-211))) (($ $) NIL (|has| |#2| (-211)))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ |#2|) NIL (|has| |#2| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#2| (-339)))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-218 |#1| |#2|) $ (-218 |#1| |#2|)) NIL) (((-218 |#1| |#2|) (-218 |#1| |#2|) $) NIL)) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-613 |#1| |#2|) (-13 (-1037 |#1| |#2| (-218 |#1| |#2|) (-218 |#1| |#2|)) (-563 (-629 |#2|)) (-393 |#2|)) (-852) (-158)) (T -613))
-NIL
-(-13 (-1037 |#1| |#2| (-218 |#1| |#2|) (-218 |#1| |#2|)) (-563 (-629 |#2|)) (-393 |#2|))
-((-3260 (((-108) $ $) NIL)) (-1304 (((-589 |#1|) $) NIL)) (-2438 (($ $) 52)) (-1936 (((-108) $) NIL)) (-2898 (((-3 |#1| "failed") $) NIL)) (-1996 ((|#1| $) NIL)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-1272 (((-3 $ "failed") (-758 |#1|)) 23)) (-2153 (((-108) (-758 |#1|)) 15)) (-2200 (($ (-758 |#1|)) 24)) (-2269 (((-108) $ $) 30)) (-3229 (((-852) $) 37)) (-2428 (($ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3573 (((-589 $) (-758 |#1|)) 17)) (-3976 (((-794) $) 43) (($ |#1|) 34) (((-758 |#1|) $) 39) (((-618 |#1|) $) 44)) (-2991 (((-57 (-589 $)) (-589 |#1|) (-852)) 57)) (-2010 (((-589 $) (-589 |#1|) (-852)) 60)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 53)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 38)))
-(((-614 |#1|) (-13 (-786) (-964 |#1|) (-10 -8 (-15 -1936 ((-108) $)) (-15 -2428 ($ $)) (-15 -2438 ($ $)) (-15 -3229 ((-852) $)) (-15 -2269 ((-108) $ $)) (-15 -3976 ((-758 |#1|) $)) (-15 -3976 ((-618 |#1|) $)) (-15 -3573 ((-589 $) (-758 |#1|))) (-15 -2153 ((-108) (-758 |#1|))) (-15 -2200 ($ (-758 |#1|))) (-15 -1272 ((-3 $ "failed") (-758 |#1|))) (-15 -1304 ((-589 |#1|) $)) (-15 -2991 ((-57 (-589 $)) (-589 |#1|) (-852))) (-15 -2010 ((-589 $) (-589 |#1|) (-852))))) (-786)) (T -614))
-((-1936 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-614 *3)) (-4 *3 (-786)))) (-2428 (*1 *1 *1) (-12 (-5 *1 (-614 *2)) (-4 *2 (-786)))) (-2438 (*1 *1 *1) (-12 (-5 *1 (-614 *2)) (-4 *2 (-786)))) (-3229 (*1 *2 *1) (-12 (-5 *2 (-852)) (-5 *1 (-614 *3)) (-4 *3 (-786)))) (-2269 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-614 *3)) (-4 *3 (-786)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-758 *3)) (-5 *1 (-614 *3)) (-4 *3 (-786)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-618 *3)) (-5 *1 (-614 *3)) (-4 *3 (-786)))) (-3573 (*1 *2 *3) (-12 (-5 *3 (-758 *4)) (-4 *4 (-786)) (-5 *2 (-589 (-614 *4))) (-5 *1 (-614 *4)))) (-2153 (*1 *2 *3) (-12 (-5 *3 (-758 *4)) (-4 *4 (-786)) (-5 *2 (-108)) (-5 *1 (-614 *4)))) (-2200 (*1 *1 *2) (-12 (-5 *2 (-758 *3)) (-4 *3 (-786)) (-5 *1 (-614 *3)))) (-1272 (*1 *1 *2) (|partial| -12 (-5 *2 (-758 *3)) (-4 *3 (-786)) (-5 *1 (-614 *3)))) (-1304 (*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-614 *3)) (-4 *3 (-786)))) (-2991 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *5)) (-5 *4 (-852)) (-4 *5 (-786)) (-5 *2 (-57 (-589 (-614 *5)))) (-5 *1 (-614 *5)))) (-2010 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *5)) (-5 *4 (-852)) (-4 *5 (-786)) (-5 *2 (-589 (-614 *5))) (-5 *1 (-614 *5)))))
-(-13 (-786) (-964 |#1|) (-10 -8 (-15 -1936 ((-108) $)) (-15 -2428 ($ $)) (-15 -2438 ($ $)) (-15 -3229 ((-852) $)) (-15 -2269 ((-108) $ $)) (-15 -3976 ((-758 |#1|) $)) (-15 -3976 ((-618 |#1|) $)) (-15 -3573 ((-589 $) (-758 |#1|))) (-15 -2153 ((-108) (-758 |#1|))) (-15 -2200 ($ (-758 |#1|))) (-15 -1272 ((-3 $ "failed") (-758 |#1|))) (-15 -1304 ((-589 |#1|) $)) (-15 -2991 ((-57 (-589 $)) (-589 |#1|) (-852))) (-15 -2010 ((-589 $) (-589 |#1|) (-852)))))
-((-2058 ((|#2| $) 76)) (-3548 (($ $) 96)) (-2282 (((-108) $ (-710)) 26)) (-3891 (($ $) 85) (($ $ (-710)) 88)) (-2527 (((-108) $) 97)) (-1378 (((-589 $) $) 72)) (-3339 (((-108) $ $) 71)) (-1344 (((-108) $ (-710)) 24)) (-1798 (((-523) $) 46)) (-2133 (((-523) $) 45)) (-4042 (((-108) $ (-710)) 22)) (-3391 (((-108) $) 74)) (-2247 ((|#2| $) 89) (($ $ (-710)) 92)) (-3334 (($ $ $ (-523)) 62) (($ |#2| $ (-523)) 61)) (-2909 (((-589 (-523)) $) 44)) (-2290 (((-108) (-523) $) 42)) (-3879 ((|#2| $) NIL) (($ $ (-710)) 84)) (-1361 (($ $ (-523)) 100)) (-3214 (((-108) $) 99)) (-2720 (((-108) (-1 (-108) |#2|) $) 32)) (-3184 (((-589 |#2|) $) 33)) (-1502 ((|#2| $ "value") NIL) ((|#2| $ "first") 83) (($ $ "rest") 87) ((|#2| $ "last") 95) (($ $ (-1136 (-523))) 58) ((|#2| $ (-523)) 40) ((|#2| $ (-523) |#2|) 41)) (-2981 (((-523) $ $) 70)) (-3725 (($ $ (-1136 (-523))) 57) (($ $ (-523)) 51)) (-2837 (((-108) $) 66)) (-2238 (($ $) 81)) (-3647 (((-710) $) 80)) (-2801 (($ $) 79)) (-3985 (($ (-589 |#2|)) 37)) (-3749 (($ $) 101)) (-2464 (((-589 $) $) 69)) (-4004 (((-108) $ $) 68)) (-1505 (((-108) (-1 (-108) |#2|) $) 31)) (-4037 (((-108) $ $) 18)) (-1271 (((-710) $) 29)))
-(((-615 |#1| |#2|) (-10 -8 (-15 -3749 (|#1| |#1|)) (-15 -1361 (|#1| |#1| (-523))) (-15 -2527 ((-108) |#1|)) (-15 -3214 ((-108) |#1|)) (-15 -1502 (|#2| |#1| (-523) |#2|)) (-15 -1502 (|#2| |#1| (-523))) (-15 -3184 ((-589 |#2|) |#1|)) (-15 -2290 ((-108) (-523) |#1|)) (-15 -2909 ((-589 (-523)) |#1|)) (-15 -2133 ((-523) |#1|)) (-15 -1798 ((-523) |#1|)) (-15 -3985 (|#1| (-589 |#2|))) (-15 -1502 (|#1| |#1| (-1136 (-523)))) (-15 -3725 (|#1| |#1| (-523))) (-15 -3725 (|#1| |#1| (-1136 (-523)))) (-15 -3334 (|#1| |#2| |#1| (-523))) (-15 -3334 (|#1| |#1| |#1| (-523))) (-15 -2238 (|#1| |#1|)) (-15 -3647 ((-710) |#1|)) (-15 -2801 (|#1| |#1|)) (-15 -3548 (|#1| |#1|)) (-15 -2247 (|#1| |#1| (-710))) (-15 -1502 (|#2| |#1| "last")) (-15 -2247 (|#2| |#1|)) (-15 -3891 (|#1| |#1| (-710))) (-15 -1502 (|#1| |#1| "rest")) (-15 -3891 (|#1| |#1|)) (-15 -3879 (|#1| |#1| (-710))) (-15 -1502 (|#2| |#1| "first")) (-15 -3879 (|#2| |#1|)) (-15 -3339 ((-108) |#1| |#1|)) (-15 -4004 ((-108) |#1| |#1|)) (-15 -2981 ((-523) |#1| |#1|)) (-15 -2837 ((-108) |#1|)) (-15 -1502 (|#2| |#1| "value")) (-15 -2058 (|#2| |#1|)) (-15 -3391 ((-108) |#1|)) (-15 -1378 ((-589 |#1|) |#1|)) (-15 -2464 ((-589 |#1|) |#1|)) (-15 -4037 ((-108) |#1| |#1|)) (-15 -2720 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1505 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1271 ((-710) |#1|)) (-15 -2282 ((-108) |#1| (-710))) (-15 -1344 ((-108) |#1| (-710))) (-15 -4042 ((-108) |#1| (-710)))) (-616 |#2|) (-1123)) (T -615))
-NIL
-(-10 -8 (-15 -3749 (|#1| |#1|)) (-15 -1361 (|#1| |#1| (-523))) (-15 -2527 ((-108) |#1|)) (-15 -3214 ((-108) |#1|)) (-15 -1502 (|#2| |#1| (-523) |#2|)) (-15 -1502 (|#2| |#1| (-523))) (-15 -3184 ((-589 |#2|) |#1|)) (-15 -2290 ((-108) (-523) |#1|)) (-15 -2909 ((-589 (-523)) |#1|)) (-15 -2133 ((-523) |#1|)) (-15 -1798 ((-523) |#1|)) (-15 -3985 (|#1| (-589 |#2|))) (-15 -1502 (|#1| |#1| (-1136 (-523)))) (-15 -3725 (|#1| |#1| (-523))) (-15 -3725 (|#1| |#1| (-1136 (-523)))) (-15 -3334 (|#1| |#2| |#1| (-523))) (-15 -3334 (|#1| |#1| |#1| (-523))) (-15 -2238 (|#1| |#1|)) (-15 -3647 ((-710) |#1|)) (-15 -2801 (|#1| |#1|)) (-15 -3548 (|#1| |#1|)) (-15 -2247 (|#1| |#1| (-710))) (-15 -1502 (|#2| |#1| "last")) (-15 -2247 (|#2| |#1|)) (-15 -3891 (|#1| |#1| (-710))) (-15 -1502 (|#1| |#1| "rest")) (-15 -3891 (|#1| |#1|)) (-15 -3879 (|#1| |#1| (-710))) (-15 -1502 (|#2| |#1| "first")) (-15 -3879 (|#2| |#1|)) (-15 -3339 ((-108) |#1| |#1|)) (-15 -4004 ((-108) |#1| |#1|)) (-15 -2981 ((-523) |#1| |#1|)) (-15 -2837 ((-108) |#1|)) (-15 -1502 (|#2| |#1| "value")) (-15 -2058 (|#2| |#1|)) (-15 -3391 ((-108) |#1|)) (-15 -1378 ((-589 |#1|) |#1|)) (-15 -2464 ((-589 |#1|) |#1|)) (-15 -4037 ((-108) |#1| |#1|)) (-15 -2720 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1505 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1271 ((-710) |#1|)) (-15 -2282 ((-108) |#1| (-710))) (-15 -1344 ((-108) |#1| (-710))) (-15 -4042 ((-108) |#1| (-710))))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2058 ((|#1| $) 48)) (-3972 ((|#1| $) 65)) (-3548 (($ $) 67)) (-1666 (((-1174) $ (-523) (-523)) 97 (|has| $ (-6 -4249)))) (-3117 (($ $ (-523)) 52 (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) 8)) (-3365 ((|#1| $ |#1|) 39 (|has| $ (-6 -4249)))) (-3546 (($ $ $) 56 (|has| $ (-6 -4249)))) (-2535 ((|#1| $ |#1|) 54 (|has| $ (-6 -4249)))) (-1957 ((|#1| $ |#1|) 58 (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4249))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4249))) (($ $ "rest" $) 55 (|has| $ (-6 -4249))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) 117 (|has| $ (-6 -4249))) ((|#1| $ (-523) |#1|) 86 (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) 41 (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) |#1|) $) 102)) (-3962 ((|#1| $) 66)) (-1640 (($) 7 T CONST)) (-2177 (($ $) 124)) (-3891 (($ $) 73) (($ $ (-710)) 71)) (-3917 (($ $) 99 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ |#1| $) 100 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#1|) $) 103)) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3073 ((|#1| $ (-523) |#1|) 85 (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) 87)) (-2527 (((-108) $) 83)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-3609 (((-710) $) 123)) (-1378 (((-589 $) $) 50)) (-3339 (((-108) $ $) 42 (|has| |#1| (-1016)))) (-2348 (($ (-710) |#1|) 108)) (-1344 (((-108) $ (-710)) 9)) (-1798 (((-523) $) 95 (|has| (-523) (-786)))) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2133 (((-523) $) 94 (|has| (-523) (-786)))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-4042 (((-108) $ (-710)) 10)) (-2112 (((-589 |#1|) $) 45)) (-3391 (((-108) $) 49)) (-3438 (($ $) 126)) (-3457 (((-108) $) 127)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2247 ((|#1| $) 70) (($ $ (-710)) 68)) (-3334 (($ $ $ (-523)) 116) (($ |#1| $ (-523)) 115)) (-2909 (((-589 (-523)) $) 92)) (-2290 (((-108) (-523) $) 91)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-3803 ((|#1| $) 125)) (-3879 ((|#1| $) 76) (($ $ (-710)) 74)) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 106)) (-2408 (($ $ |#1|) 96 (|has| $ (-6 -4249)))) (-1361 (($ $ (-523)) 122)) (-3214 (((-108) $) 84)) (-3300 (((-108) $) 128)) (-1796 (((-108) $) 129)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-1410 (((-108) |#1| $) 93 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) 90)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1136 (-523))) 112) ((|#1| $ (-523)) 89) ((|#1| $ (-523) |#1|) 88)) (-2981 (((-523) $ $) 44)) (-3725 (($ $ (-1136 (-523))) 114) (($ $ (-523)) 113)) (-2837 (((-108) $) 46)) (-2238 (($ $) 62)) (-4198 (($ $) 59 (|has| $ (-6 -4249)))) (-3647 (((-710) $) 63)) (-2801 (($ $) 64)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3077 (((-499) $) 98 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 107)) (-1622 (($ $ $) 61 (|has| $ (-6 -4249))) (($ $ |#1|) 60 (|has| $ (-6 -4249)))) (-2785 (($ $ $) 78) (($ |#1| $) 77) (($ (-589 $)) 110) (($ $ |#1|) 109)) (-3749 (($ $) 121)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) 51)) (-4004 (((-108) $ $) 43 (|has| |#1| (-1016)))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-616 |#1|) (-129) (-1123)) (T -616))
-((-2231 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-616 *3)) (-4 *3 (-1123)))) (-1299 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-616 *3)) (-4 *3 (-1123)))) (-1796 (*1 *2 *1) (-12 (-4 *1 (-616 *3)) (-4 *3 (-1123)) (-5 *2 (-108)))) (-3300 (*1 *2 *1) (-12 (-4 *1 (-616 *3)) (-4 *3 (-1123)) (-5 *2 (-108)))) (-3457 (*1 *2 *1) (-12 (-4 *1 (-616 *3)) (-4 *3 (-1123)) (-5 *2 (-108)))) (-3438 (*1 *1 *1) (-12 (-4 *1 (-616 *2)) (-4 *2 (-1123)))) (-3803 (*1 *2 *1) (-12 (-4 *1 (-616 *2)) (-4 *2 (-1123)))) (-2177 (*1 *1 *1) (-12 (-4 *1 (-616 *2)) (-4 *2 (-1123)))) (-3609 (*1 *2 *1) (-12 (-4 *1 (-616 *3)) (-4 *3 (-1123)) (-5 *2 (-710)))) (-1361 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-616 *3)) (-4 *3 (-1123)))) (-3749 (*1 *1 *1) (-12 (-4 *1 (-616 *2)) (-4 *2 (-1123)))))
-(-13 (-1061 |t#1|) (-10 -8 (-15 -2231 ($ (-1 (-108) |t#1|) $)) (-15 -1299 ($ (-1 (-108) |t#1|) $)) (-15 -1796 ((-108) $)) (-15 -3300 ((-108) $)) (-15 -3457 ((-108) $)) (-15 -3438 ($ $)) (-15 -3803 (|t#1| $)) (-15 -2177 ($ $)) (-15 -3609 ((-710) $)) (-15 -1361 ($ $ (-523))) (-15 -3749 ($ $))))
-(((-33) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-263 #0=(-523) |#1|) . T) ((-265 #0# |#1|) . T) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-556 #0# |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-594 |#1|) . T) ((-938 |#1|) . T) ((-1016) |has| |#1| (-1016)) ((-1061 |#1|) . T) ((-1123) . T) ((-1157 |#1|) . T))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1430 (($ (-710) (-710) (-710)) 34 (|has| |#1| (-973)))) (-2282 (((-108) $ (-710)) NIL)) (-2920 ((|#1| $ (-710) (-710) (-710) |#1|) 29)) (-1640 (($) NIL T CONST)) (-1408 (($ $ $) 38 (|has| |#1| (-973)))) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3041 (((-1169 (-710)) $) 11)) (-1987 (($ (-1087) $ $) 24)) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2658 (($ (-710)) 36 (|has| |#1| (-973)))) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#1| $ (-710) (-710) (-710)) 27)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) NIL)) (-3985 (($ (-589 (-589 (-589 |#1|)))) 45)) (-3976 (($ (-888 (-888 (-888 |#1|)))) 17) (((-888 (-888 (-888 |#1|))) $) 14) (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-617 |#1|) (-13 (-462 |#1|) (-10 -8 (IF (|has| |#1| (-973)) (PROGN (-15 -1430 ($ (-710) (-710) (-710))) (-15 -2658 ($ (-710))) (-15 -1408 ($ $ $))) |%noBranch|) (-15 -3985 ($ (-589 (-589 (-589 |#1|))))) (-15 -1502 (|#1| $ (-710) (-710) (-710))) (-15 -2920 (|#1| $ (-710) (-710) (-710) |#1|)) (-15 -3976 ($ (-888 (-888 (-888 |#1|))))) (-15 -3976 ((-888 (-888 (-888 |#1|))) $)) (-15 -1987 ($ (-1087) $ $)) (-15 -3041 ((-1169 (-710)) $)))) (-1016)) (T -617))
-((-1430 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-710)) (-5 *1 (-617 *3)) (-4 *3 (-973)) (-4 *3 (-1016)))) (-2658 (*1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-617 *3)) (-4 *3 (-973)) (-4 *3 (-1016)))) (-1408 (*1 *1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-973)) (-4 *2 (-1016)))) (-3985 (*1 *1 *2) (-12 (-5 *2 (-589 (-589 (-589 *3)))) (-4 *3 (-1016)) (-5 *1 (-617 *3)))) (-1502 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-710)) (-5 *1 (-617 *2)) (-4 *2 (-1016)))) (-2920 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-710)) (-5 *1 (-617 *2)) (-4 *2 (-1016)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-888 (-888 (-888 *3)))) (-4 *3 (-1016)) (-5 *1 (-617 *3)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-888 (-888 (-888 *3)))) (-5 *1 (-617 *3)) (-4 *3 (-1016)))) (-1987 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-617 *3)) (-4 *3 (-1016)))) (-3041 (*1 *2 *1) (-12 (-5 *2 (-1169 (-710))) (-5 *1 (-617 *3)) (-4 *3 (-1016)))))
-(-13 (-462 |#1|) (-10 -8 (IF (|has| |#1| (-973)) (PROGN (-15 -1430 ($ (-710) (-710) (-710))) (-15 -2658 ($ (-710))) (-15 -1408 ($ $ $))) |%noBranch|) (-15 -3985 ($ (-589 (-589 (-589 |#1|))))) (-15 -1502 (|#1| $ (-710) (-710) (-710))) (-15 -2920 (|#1| $ (-710) (-710) (-710) |#1|)) (-15 -3976 ($ (-888 (-888 (-888 |#1|))))) (-15 -3976 ((-888 (-888 (-888 |#1|))) $)) (-15 -1987 ($ (-1087) $ $)) (-15 -3041 ((-1169 (-710)) $))))
-((-3260 (((-108) $ $) NIL)) (-1304 (((-589 |#1|) $) 14)) (-2438 (($ $) 18)) (-1936 (((-108) $) 19)) (-2898 (((-3 |#1| "failed") $) 22)) (-1996 ((|#1| $) 20)) (-3891 (($ $) 36)) (-2471 (($ $) 24)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-2269 (((-108) $ $) 42)) (-3229 (((-852) $) 38)) (-2428 (($ $) 17)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3879 ((|#1| $) 35)) (-3976 (((-794) $) 31) (($ |#1|) 23) (((-758 |#1|) $) 27)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 12)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 40)) (* (($ $ $) 34)))
-(((-618 |#1|) (-13 (-786) (-964 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3976 ((-758 |#1|) $)) (-15 -3879 (|#1| $)) (-15 -2428 ($ $)) (-15 -3229 ((-852) $)) (-15 -2269 ((-108) $ $)) (-15 -2471 ($ $)) (-15 -3891 ($ $)) (-15 -1936 ((-108) $)) (-15 -2438 ($ $)) (-15 -1304 ((-589 |#1|) $)))) (-786)) (T -618))
-((* (*1 *1 *1 *1) (-12 (-5 *1 (-618 *2)) (-4 *2 (-786)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-758 *3)) (-5 *1 (-618 *3)) (-4 *3 (-786)))) (-3879 (*1 *2 *1) (-12 (-5 *1 (-618 *2)) (-4 *2 (-786)))) (-2428 (*1 *1 *1) (-12 (-5 *1 (-618 *2)) (-4 *2 (-786)))) (-3229 (*1 *2 *1) (-12 (-5 *2 (-852)) (-5 *1 (-618 *3)) (-4 *3 (-786)))) (-2269 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-618 *3)) (-4 *3 (-786)))) (-2471 (*1 *1 *1) (-12 (-5 *1 (-618 *2)) (-4 *2 (-786)))) (-3891 (*1 *1 *1) (-12 (-5 *1 (-618 *2)) (-4 *2 (-786)))) (-1936 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-618 *3)) (-4 *3 (-786)))) (-2438 (*1 *1 *1) (-12 (-5 *1 (-618 *2)) (-4 *2 (-786)))) (-1304 (*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-618 *3)) (-4 *3 (-786)))))
-(-13 (-786) (-964 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3976 ((-758 |#1|) $)) (-15 -3879 (|#1| $)) (-15 -2428 ($ $)) (-15 -3229 ((-852) $)) (-15 -2269 ((-108) $ $)) (-15 -2471 ($ $)) (-15 -3891 ($ $)) (-15 -1936 ((-108) $)) (-15 -2438 ($ $)) (-15 -1304 ((-589 |#1|) $))))
-((-1504 ((|#1| (-1 |#1| (-710) |#1|) (-710) |#1|) 11)) (-1761 ((|#1| (-1 |#1| |#1|) (-710) |#1|) 9)))
-(((-619 |#1|) (-10 -7 (-15 -1761 (|#1| (-1 |#1| |#1|) (-710) |#1|)) (-15 -1504 (|#1| (-1 |#1| (-710) |#1|) (-710) |#1|))) (-1016)) (T -619))
-((-1504 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-710) *2)) (-5 *4 (-710)) (-4 *2 (-1016)) (-5 *1 (-619 *2)))) (-1761 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-710)) (-4 *2 (-1016)) (-5 *1 (-619 *2)))))
-(-10 -7 (-15 -1761 (|#1| (-1 |#1| |#1|) (-710) |#1|)) (-15 -1504 (|#1| (-1 |#1| (-710) |#1|) (-710) |#1|)))
-((-3283 ((|#2| |#1| |#2|) 9)) (-3272 ((|#1| |#1| |#2|) 8)))
-(((-620 |#1| |#2|) (-10 -7 (-15 -3272 (|#1| |#1| |#2|)) (-15 -3283 (|#2| |#1| |#2|))) (-1016) (-1016)) (T -620))
-((-3283 (*1 *2 *3 *2) (-12 (-5 *1 (-620 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1016)))) (-3272 (*1 *2 *2 *3) (-12 (-5 *1 (-620 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))))
-(-10 -7 (-15 -3272 (|#1| |#1| |#2|)) (-15 -3283 (|#2| |#1| |#2|)))
-((-3804 ((|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|) 11)))
-(((-621 |#1| |#2| |#3|) (-10 -7 (-15 -3804 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|))) (-1016) (-1016) (-1016)) (T -621))
-((-3804 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *2 (-1016)) (-5 *1 (-621 *5 *6 *2)))))
-(-10 -7 (-15 -3804 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|)))
-((-1504 (((-1 |#1| (-710) |#1|) (-1 |#1| (-710) |#1|)) 23)) (-2092 (((-1 |#1|) |#1|) 8)) (-2323 ((|#1| |#1|) 16)) (-1897 (((-589 |#1|) (-1 (-589 |#1|) (-589 |#1|)) (-523)) 15) ((|#1| (-1 |#1| |#1|)) 11)) (-3976 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-710)) 20)))
-(((-622 |#1|) (-10 -7 (-15 -2092 ((-1 |#1|) |#1|)) (-15 -3976 ((-1 |#1|) |#1|)) (-15 -1897 (|#1| (-1 |#1| |#1|))) (-15 -1897 ((-589 |#1|) (-1 (-589 |#1|) (-589 |#1|)) (-523))) (-15 -2323 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-710))) (-15 -1504 ((-1 |#1| (-710) |#1|) (-1 |#1| (-710) |#1|)))) (-1016)) (T -622))
-((-1504 (*1 *2 *2) (-12 (-5 *2 (-1 *3 (-710) *3)) (-4 *3 (-1016)) (-5 *1 (-622 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-710)) (-4 *4 (-1016)) (-5 *1 (-622 *4)))) (-2323 (*1 *2 *2) (-12 (-5 *1 (-622 *2)) (-4 *2 (-1016)))) (-1897 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-589 *5) (-589 *5))) (-5 *4 (-523)) (-5 *2 (-589 *5)) (-5 *1 (-622 *5)) (-4 *5 (-1016)))) (-1897 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-622 *2)) (-4 *2 (-1016)))) (-3976 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-622 *3)) (-4 *3 (-1016)))) (-2092 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-622 *3)) (-4 *3 (-1016)))))
-(-10 -7 (-15 -2092 ((-1 |#1|) |#1|)) (-15 -3976 ((-1 |#1|) |#1|)) (-15 -1897 (|#1| (-1 |#1| |#1|))) (-15 -1897 ((-589 |#1|) (-1 (-589 |#1|) (-589 |#1|)) (-523))) (-15 -2323 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-710))) (-15 -1504 ((-1 |#1| (-710) |#1|) (-1 |#1| (-710) |#1|))))
-((-2563 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-3892 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-1982 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-2653 (((-1 |#2| |#1|) |#2|) 11)))
-(((-623 |#1| |#2|) (-10 -7 (-15 -2653 ((-1 |#2| |#1|) |#2|)) (-15 -3892 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -1982 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -2563 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1016) (-1016)) (T -623))
-((-2563 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-5 *2 (-1 *5 *4)) (-5 *1 (-623 *4 *5)))) (-1982 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1016)) (-5 *2 (-1 *5 *4)) (-5 *1 (-623 *4 *5)) (-4 *4 (-1016)))) (-3892 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-5 *2 (-1 *5)) (-5 *1 (-623 *4 *5)))) (-2653 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-623 *4 *3)) (-4 *4 (-1016)) (-4 *3 (-1016)))))
-(-10 -7 (-15 -2653 ((-1 |#2| |#1|) |#2|)) (-15 -3892 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -1982 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -2563 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
-((-3211 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-2989 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-2646 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-2220 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-3665 (((-1 |#3| |#1| |#2|) (-1 |#3| |#2|)) 15)) (* (((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)) 21)))
-(((-624 |#1| |#2| |#3|) (-10 -7 (-15 -2989 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -2646 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2220 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -3665 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3211 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)))) (-1016) (-1016) (-1016)) (T -624))
-((* (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-1 *7 *5)) (-5 *1 (-624 *5 *6 *7)))) (-3211 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-624 *4 *5 *6)))) (-3665 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-624 *4 *5 *6)) (-4 *4 (-1016)))) (-2220 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1016)) (-4 *6 (-1016)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-624 *4 *5 *6)) (-4 *5 (-1016)))) (-2646 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-5 *2 (-1 *6 *5)) (-5 *1 (-624 *4 *5 *6)))) (-2989 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1016)) (-4 *4 (-1016)) (-4 *6 (-1016)) (-5 *2 (-1 *6 *5)) (-5 *1 (-624 *5 *4 *6)))))
-(-10 -7 (-15 -2989 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -2646 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2220 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -3665 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3211 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
-((-1830 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-3015 (((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|) 37) ((|#8| (-1 |#5| |#1|) |#4|) 31)))
-(((-625 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3015 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -3015 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -1830 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|))) (-973) (-349 |#1|) (-349 |#1|) (-627 |#1| |#2| |#3|) (-973) (-349 |#5|) (-349 |#5|) (-627 |#5| |#6| |#7|)) (T -625))
-((-1830 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-973)) (-4 *2 (-973)) (-4 *6 (-349 *5)) (-4 *7 (-349 *5)) (-4 *8 (-349 *2)) (-4 *9 (-349 *2)) (-5 *1 (-625 *5 *6 *7 *4 *2 *8 *9 *10)) (-4 *4 (-627 *5 *6 *7)) (-4 *10 (-627 *2 *8 *9)))) (-3015 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-973)) (-4 *8 (-973)) (-4 *6 (-349 *5)) (-4 *7 (-349 *5)) (-4 *2 (-627 *8 *9 *10)) (-5 *1 (-625 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-627 *5 *6 *7)) (-4 *9 (-349 *8)) (-4 *10 (-349 *8)))) (-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-973)) (-4 *8 (-973)) (-4 *6 (-349 *5)) (-4 *7 (-349 *5)) (-4 *2 (-627 *8 *9 *10)) (-5 *1 (-625 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-627 *5 *6 *7)) (-4 *9 (-349 *8)) (-4 *10 (-349 *8)))))
-(-10 -7 (-15 -3015 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -3015 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -1830 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
-((-2448 (($ (-710) (-710)) 33)) (-3594 (($ $ $) 56)) (-1659 (($ |#3|) 52) (($ $) 53)) (-2624 (((-108) $) 28)) (-3152 (($ $ (-523) (-523)) 58)) (-3808 (($ $ (-523) (-523)) 59)) (-1499 (($ $ (-523) (-523) (-523) (-523)) 63)) (-2748 (($ $) 54)) (-2108 (((-108) $) 14)) (-3704 (($ $ (-523) (-523) $) 64)) (-4101 ((|#2| $ (-523) (-523) |#2|) NIL) (($ $ (-589 (-523)) (-589 (-523)) $) 62)) (-1370 (($ (-710) |#2|) 39)) (-3078 (($ (-589 (-589 |#2|))) 37)) (-3522 (((-589 (-589 |#2|)) $) 57)) (-1880 (($ $ $) 55)) (-2469 (((-3 $ "failed") $ |#2|) 91)) (-1502 ((|#2| $ (-523) (-523)) NIL) ((|#2| $ (-523) (-523) |#2|) NIL) (($ $ (-589 (-523)) (-589 (-523))) 61)) (-2148 (($ (-589 |#2|)) 40) (($ (-589 $)) 42)) (-2395 (((-108) $) 24)) (-3976 (($ |#4|) 47) (((-794) $) NIL)) (-2791 (((-108) $) 30)) (-4125 (($ $ |#2|) 93)) (-4115 (($ $ $) 68) (($ $) 71)) (-4103 (($ $ $) 66)) (** (($ $ (-710)) 80) (($ $ (-523)) 96)) (* (($ $ $) 77) (($ |#2| $) 73) (($ $ |#2|) 74) (($ (-523) $) 76) ((|#4| $ |#4|) 84) ((|#3| |#3| $) 88)))
-(((-626 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3976 ((-794) |#1|)) (-15 ** (|#1| |#1| (-523))) (-15 -4125 (|#1| |#1| |#2|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-710))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-523) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|)) (-15 -4115 (|#1| |#1| |#1|)) (-15 -4103 (|#1| |#1| |#1|)) (-15 -3704 (|#1| |#1| (-523) (-523) |#1|)) (-15 -1499 (|#1| |#1| (-523) (-523) (-523) (-523))) (-15 -3808 (|#1| |#1| (-523) (-523))) (-15 -3152 (|#1| |#1| (-523) (-523))) (-15 -4101 (|#1| |#1| (-589 (-523)) (-589 (-523)) |#1|)) (-15 -1502 (|#1| |#1| (-589 (-523)) (-589 (-523)))) (-15 -3522 ((-589 (-589 |#2|)) |#1|)) (-15 -3594 (|#1| |#1| |#1|)) (-15 -1880 (|#1| |#1| |#1|)) (-15 -2748 (|#1| |#1|)) (-15 -1659 (|#1| |#1|)) (-15 -1659 (|#1| |#3|)) (-15 -3976 (|#1| |#4|)) (-15 -2148 (|#1| (-589 |#1|))) (-15 -2148 (|#1| (-589 |#2|))) (-15 -1370 (|#1| (-710) |#2|)) (-15 -3078 (|#1| (-589 (-589 |#2|)))) (-15 -2448 (|#1| (-710) (-710))) (-15 -2791 ((-108) |#1|)) (-15 -2624 ((-108) |#1|)) (-15 -2395 ((-108) |#1|)) (-15 -2108 ((-108) |#1|)) (-15 -4101 (|#2| |#1| (-523) (-523) |#2|)) (-15 -1502 (|#2| |#1| (-523) (-523) |#2|)) (-15 -1502 (|#2| |#1| (-523) (-523)))) (-627 |#2| |#3| |#4|) (-973) (-349 |#2|) (-349 |#2|)) (T -626))
-NIL
-(-10 -8 (-15 -3976 ((-794) |#1|)) (-15 ** (|#1| |#1| (-523))) (-15 -4125 (|#1| |#1| |#2|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-710))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-523) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|)) (-15 -4115 (|#1| |#1| |#1|)) (-15 -4103 (|#1| |#1| |#1|)) (-15 -3704 (|#1| |#1| (-523) (-523) |#1|)) (-15 -1499 (|#1| |#1| (-523) (-523) (-523) (-523))) (-15 -3808 (|#1| |#1| (-523) (-523))) (-15 -3152 (|#1| |#1| (-523) (-523))) (-15 -4101 (|#1| |#1| (-589 (-523)) (-589 (-523)) |#1|)) (-15 -1502 (|#1| |#1| (-589 (-523)) (-589 (-523)))) (-15 -3522 ((-589 (-589 |#2|)) |#1|)) (-15 -3594 (|#1| |#1| |#1|)) (-15 -1880 (|#1| |#1| |#1|)) (-15 -2748 (|#1| |#1|)) (-15 -1659 (|#1| |#1|)) (-15 -1659 (|#1| |#3|)) (-15 -3976 (|#1| |#4|)) (-15 -2148 (|#1| (-589 |#1|))) (-15 -2148 (|#1| (-589 |#2|))) (-15 -1370 (|#1| (-710) |#2|)) (-15 -3078 (|#1| (-589 (-589 |#2|)))) (-15 -2448 (|#1| (-710) (-710))) (-15 -2791 ((-108) |#1|)) (-15 -2624 ((-108) |#1|)) (-15 -2395 ((-108) |#1|)) (-15 -2108 ((-108) |#1|)) (-15 -4101 (|#2| |#1| (-523) (-523) |#2|)) (-15 -1502 (|#2| |#1| (-523) (-523) |#2|)) (-15 -1502 (|#2| |#1| (-523) (-523))))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2448 (($ (-710) (-710)) 97)) (-3594 (($ $ $) 87)) (-1659 (($ |#2|) 91) (($ $) 90)) (-2624 (((-108) $) 99)) (-3152 (($ $ (-523) (-523)) 83)) (-3808 (($ $ (-523) (-523)) 82)) (-1499 (($ $ (-523) (-523) (-523) (-523)) 81)) (-2748 (($ $) 89)) (-2108 (((-108) $) 101)) (-2282 (((-108) $ (-710)) 8)) (-3704 (($ $ (-523) (-523) $) 80)) (-4101 ((|#1| $ (-523) (-523) |#1|) 44) (($ $ (-589 (-523)) (-589 (-523)) $) 84)) (-1205 (($ $ (-523) |#2|) 42)) (-2963 (($ $ (-523) |#3|) 41)) (-1370 (($ (-710) |#1|) 95)) (-1640 (($) 7 T CONST)) (-1561 (($ $) 67 (|has| |#1| (-284)))) (-2823 ((|#2| $ (-523)) 46)) (-2262 (((-710) $) 66 (|has| |#1| (-515)))) (-3073 ((|#1| $ (-523) (-523) |#1|) 43)) (-3002 ((|#1| $ (-523) (-523)) 48)) (-3133 (((-589 |#1|) $) 30)) (-2534 (((-710) $) 65 (|has| |#1| (-515)))) (-3392 (((-589 |#3|) $) 64 (|has| |#1| (-515)))) (-3656 (((-710) $) 51)) (-2348 (($ (-710) (-710) |#1|) 57)) (-3668 (((-710) $) 50)) (-1344 (((-108) $ (-710)) 9)) (-2082 ((|#1| $) 62 (|has| |#1| (-6 (-4250 "*"))))) (-1392 (((-523) $) 55)) (-1219 (((-523) $) 53)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2102 (((-523) $) 54)) (-3328 (((-523) $) 52)) (-3078 (($ (-589 (-589 |#1|))) 96)) (-3063 (($ (-1 |#1| |#1|) $) 34)) (-3015 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-3522 (((-589 (-589 |#1|)) $) 86)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-3714 (((-3 $ "failed") $) 61 (|has| |#1| (-339)))) (-1880 (($ $ $) 88)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-2408 (($ $ |#1|) 56)) (-2469 (((-3 $ "failed") $ |#1|) 69 (|has| |#1| (-515)))) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ (-523) (-523)) 49) ((|#1| $ (-523) (-523) |#1|) 47) (($ $ (-589 (-523)) (-589 (-523))) 85)) (-2148 (($ (-589 |#1|)) 94) (($ (-589 $)) 93)) (-2395 (((-108) $) 100)) (-1273 ((|#1| $) 63 (|has| |#1| (-6 (-4250 "*"))))) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-2032 ((|#3| $ (-523)) 45)) (-3976 (($ |#3|) 92) (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-2791 (((-108) $) 98)) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-4125 (($ $ |#1|) 68 (|has| |#1| (-339)))) (-4115 (($ $ $) 78) (($ $) 77)) (-4103 (($ $ $) 79)) (** (($ $ (-710)) 70) (($ $ (-523)) 60 (|has| |#1| (-339)))) (* (($ $ $) 76) (($ |#1| $) 75) (($ $ |#1|) 74) (($ (-523) $) 73) ((|#3| $ |#3|) 72) ((|#2| |#2| $) 71)) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-627 |#1| |#2| |#3|) (-129) (-973) (-349 |t#1|) (-349 |t#1|)) (T -627))
-((-2108 (*1 *2 *1) (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *2 (-108)))) (-2395 (*1 *2 *1) (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *2 (-108)))) (-2624 (*1 *2 *1) (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *2 (-108)))) (-2791 (*1 *2 *1) (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *2 (-108)))) (-2448 (*1 *1 *2 *2) (-12 (-5 *2 (-710)) (-4 *3 (-973)) (-4 *1 (-627 *3 *4 *5)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-3078 (*1 *1 *2) (-12 (-5 *2 (-589 (-589 *3))) (-4 *3 (-973)) (-4 *1 (-627 *3 *4 *5)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-1370 (*1 *1 *2 *3) (-12 (-5 *2 (-710)) (-4 *3 (-973)) (-4 *1 (-627 *3 *4 *5)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-2148 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-973)) (-4 *1 (-627 *3 *4 *5)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-2148 (*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *3 (-973)) (-4 *1 (-627 *3 *4 *5)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-3976 (*1 *1 *2) (-12 (-4 *3 (-973)) (-4 *1 (-627 *3 *4 *2)) (-4 *4 (-349 *3)) (-4 *2 (-349 *3)))) (-1659 (*1 *1 *2) (-12 (-4 *3 (-973)) (-4 *1 (-627 *3 *2 *4)) (-4 *2 (-349 *3)) (-4 *4 (-349 *3)))) (-1659 (*1 *1 *1) (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)))) (-2748 (*1 *1 *1) (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)))) (-1880 (*1 *1 *1 *1) (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)))) (-3594 (*1 *1 *1 *1) (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)))) (-3522 (*1 *2 *1) (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *2 (-589 (-589 *3))))) (-1502 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-589 (-523))) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-4101 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-589 (-523))) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-3152 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-523)) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-3808 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-523)) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-1499 (*1 *1 *1 *2 *2 *2 *2) (-12 (-5 *2 (-523)) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-3704 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-523)) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-4103 (*1 *1 *1 *1) (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)))) (-4115 (*1 *1 *1 *1) (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)))) (-4115 (*1 *1 *1) (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)))) (* (*1 *1 *1 *1) (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-523)) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-627 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *2 (-349 *3)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-627 *3 *2 *4)) (-4 *3 (-973)) (-4 *2 (-349 *3)) (-4 *4 (-349 *3)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))) (-2469 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)) (-4 *2 (-515)))) (-4125 (*1 *1 *1 *2) (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)) (-4 *2 (-339)))) (-1561 (*1 *1 *1) (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)) (-4 *2 (-284)))) (-2262 (*1 *2 *1) (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-4 *3 (-515)) (-5 *2 (-710)))) (-2534 (*1 *2 *1) (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-4 *3 (-515)) (-5 *2 (-710)))) (-3392 (*1 *2 *1) (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-4 *3 (-515)) (-5 *2 (-589 *5)))) (-1273 (*1 *2 *1) (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)) (|has| *2 (-6 (-4250 "*"))) (-4 *2 (-973)))) (-2082 (*1 *2 *1) (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)) (|has| *2 (-6 (-4250 "*"))) (-4 *2 (-973)))) (-3714 (*1 *1 *1) (|partial| -12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2)) (-4 *2 (-339)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-4 *3 (-339)))))
-(-13 (-55 |t#1| |t#2| |t#3|) (-10 -8 (-6 -4249) (-6 -4248) (-15 -2108 ((-108) $)) (-15 -2395 ((-108) $)) (-15 -2624 ((-108) $)) (-15 -2791 ((-108) $)) (-15 -2448 ($ (-710) (-710))) (-15 -3078 ($ (-589 (-589 |t#1|)))) (-15 -1370 ($ (-710) |t#1|)) (-15 -2148 ($ (-589 |t#1|))) (-15 -2148 ($ (-589 $))) (-15 -3976 ($ |t#3|)) (-15 -1659 ($ |t#2|)) (-15 -1659 ($ $)) (-15 -2748 ($ $)) (-15 -1880 ($ $ $)) (-15 -3594 ($ $ $)) (-15 -3522 ((-589 (-589 |t#1|)) $)) (-15 -1502 ($ $ (-589 (-523)) (-589 (-523)))) (-15 -4101 ($ $ (-589 (-523)) (-589 (-523)) $)) (-15 -3152 ($ $ (-523) (-523))) (-15 -3808 ($ $ (-523) (-523))) (-15 -1499 ($ $ (-523) (-523) (-523) (-523))) (-15 -3704 ($ $ (-523) (-523) $)) (-15 -4103 ($ $ $)) (-15 -4115 ($ $ $)) (-15 -4115 ($ $)) (-15 * ($ $ $)) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 * ($ (-523) $)) (-15 * (|t#3| $ |t#3|)) (-15 * (|t#2| |t#2| $)) (-15 ** ($ $ (-710))) (IF (|has| |t#1| (-515)) (-15 -2469 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-339)) (-15 -4125 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-284)) (-15 -1561 ($ $)) |%noBranch|) (IF (|has| |t#1| (-515)) (PROGN (-15 -2262 ((-710) $)) (-15 -2534 ((-710) $)) (-15 -3392 ((-589 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4250 "*"))) (PROGN (-15 -1273 (|t#1| $)) (-15 -2082 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-339)) (PROGN (-15 -3714 ((-3 $ "failed") $)) (-15 ** ($ $ (-523)))) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-1016) |has| |#1| (-1016)) ((-55 |#1| |#2| |#3|) . T) ((-1123) . T))
-((-1561 ((|#4| |#4|) 70 (|has| |#1| (-284)))) (-2262 (((-710) |#4|) 72 (|has| |#1| (-515)))) (-2534 (((-710) |#4|) 74 (|has| |#1| (-515)))) (-3392 (((-589 |#3|) |#4|) 81 (|has| |#1| (-515)))) (-2807 (((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|) 101 (|has| |#1| (-284)))) (-2082 ((|#1| |#4|) 35)) (-4074 (((-3 |#4| "failed") |#4|) 64 (|has| |#1| (-515)))) (-3714 (((-3 |#4| "failed") |#4|) 78 (|has| |#1| (-339)))) (-2905 ((|#4| |#4|) 57 (|has| |#1| (-515)))) (-3480 ((|#4| |#4| |#1| (-523) (-523)) 43)) (-2449 ((|#4| |#4| (-523) (-523)) 38)) (-2382 ((|#4| |#4| |#1| (-523) (-523)) 48)) (-1273 ((|#1| |#4|) 76)) (-1910 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 60 (|has| |#1| (-515)))))
-(((-628 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1273 (|#1| |#4|)) (-15 -2082 (|#1| |#4|)) (-15 -2449 (|#4| |#4| (-523) (-523))) (-15 -3480 (|#4| |#4| |#1| (-523) (-523))) (-15 -2382 (|#4| |#4| |#1| (-523) (-523))) (IF (|has| |#1| (-515)) (PROGN (-15 -2262 ((-710) |#4|)) (-15 -2534 ((-710) |#4|)) (-15 -3392 ((-589 |#3|) |#4|)) (-15 -2905 (|#4| |#4|)) (-15 -4074 ((-3 |#4| "failed") |#4|)) (-15 -1910 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-284)) (PROGN (-15 -1561 (|#4| |#4|)) (-15 -2807 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-339)) (-15 -3714 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-158) (-349 |#1|) (-349 |#1|) (-627 |#1| |#2| |#3|)) (T -628))
-((-3714 (*1 *2 *2) (|partial| -12 (-4 *3 (-339)) (-4 *3 (-158)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *1 (-628 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))) (-2807 (*1 *2 *3 *3) (-12 (-4 *3 (-284)) (-4 *3 (-158)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-628 *3 *4 *5 *6)) (-4 *6 (-627 *3 *4 *5)))) (-1561 (*1 *2 *2) (-12 (-4 *3 (-284)) (-4 *3 (-158)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *1 (-628 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))) (-1910 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *4 (-158)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4))) (-5 *1 (-628 *4 *5 *6 *3)) (-4 *3 (-627 *4 *5 *6)))) (-4074 (*1 *2 *2) (|partial| -12 (-4 *3 (-515)) (-4 *3 (-158)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *1 (-628 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))) (-2905 (*1 *2 *2) (-12 (-4 *3 (-515)) (-4 *3 (-158)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *1 (-628 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))) (-3392 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *4 (-158)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4)) (-5 *2 (-589 *6)) (-5 *1 (-628 *4 *5 *6 *3)) (-4 *3 (-627 *4 *5 *6)))) (-2534 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *4 (-158)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4)) (-5 *2 (-710)) (-5 *1 (-628 *4 *5 *6 *3)) (-4 *3 (-627 *4 *5 *6)))) (-2262 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *4 (-158)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4)) (-5 *2 (-710)) (-5 *1 (-628 *4 *5 *6 *3)) (-4 *3 (-627 *4 *5 *6)))) (-2382 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-523)) (-4 *3 (-158)) (-4 *5 (-349 *3)) (-4 *6 (-349 *3)) (-5 *1 (-628 *3 *5 *6 *2)) (-4 *2 (-627 *3 *5 *6)))) (-3480 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-523)) (-4 *3 (-158)) (-4 *5 (-349 *3)) (-4 *6 (-349 *3)) (-5 *1 (-628 *3 *5 *6 *2)) (-4 *2 (-627 *3 *5 *6)))) (-2449 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-523)) (-4 *4 (-158)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4)) (-5 *1 (-628 *4 *5 *6 *2)) (-4 *2 (-627 *4 *5 *6)))) (-2082 (*1 *2 *3) (-12 (-4 *4 (-349 *2)) (-4 *5 (-349 *2)) (-4 *2 (-158)) (-5 *1 (-628 *2 *4 *5 *3)) (-4 *3 (-627 *2 *4 *5)))) (-1273 (*1 *2 *3) (-12 (-4 *4 (-349 *2)) (-4 *5 (-349 *2)) (-4 *2 (-158)) (-5 *1 (-628 *2 *4 *5 *3)) (-4 *3 (-627 *2 *4 *5)))))
-(-10 -7 (-15 -1273 (|#1| |#4|)) (-15 -2082 (|#1| |#4|)) (-15 -2449 (|#4| |#4| (-523) (-523))) (-15 -3480 (|#4| |#4| |#1| (-523) (-523))) (-15 -2382 (|#4| |#4| |#1| (-523) (-523))) (IF (|has| |#1| (-515)) (PROGN (-15 -2262 ((-710) |#4|)) (-15 -2534 ((-710) |#4|)) (-15 -3392 ((-589 |#3|) |#4|)) (-15 -2905 (|#4| |#4|)) (-15 -4074 ((-3 |#4| "failed") |#4|)) (-15 -1910 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-284)) (PROGN (-15 -1561 (|#4| |#4|)) (-15 -2807 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-339)) (-15 -3714 ((-3 |#4| "failed") |#4|)) |%noBranch|))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2448 (($ (-710) (-710)) 46)) (-3594 (($ $ $) NIL)) (-1659 (($ (-1169 |#1|)) NIL) (($ $) NIL)) (-2624 (((-108) $) NIL)) (-3152 (($ $ (-523) (-523)) 12)) (-3808 (($ $ (-523) (-523)) NIL)) (-1499 (($ $ (-523) (-523) (-523) (-523)) NIL)) (-2748 (($ $) NIL)) (-2108 (((-108) $) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-3704 (($ $ (-523) (-523) $) NIL)) (-4101 ((|#1| $ (-523) (-523) |#1|) NIL) (($ $ (-589 (-523)) (-589 (-523)) $) NIL)) (-1205 (($ $ (-523) (-1169 |#1|)) NIL)) (-2963 (($ $ (-523) (-1169 |#1|)) NIL)) (-1370 (($ (-710) |#1|) 22)) (-1640 (($) NIL T CONST)) (-1561 (($ $) 31 (|has| |#1| (-284)))) (-2823 (((-1169 |#1|) $ (-523)) NIL)) (-2262 (((-710) $) 33 (|has| |#1| (-515)))) (-3073 ((|#1| $ (-523) (-523) |#1|) 50)) (-3002 ((|#1| $ (-523) (-523)) NIL)) (-3133 (((-589 |#1|) $) NIL)) (-2534 (((-710) $) 35 (|has| |#1| (-515)))) (-3392 (((-589 (-1169 |#1|)) $) 38 (|has| |#1| (-515)))) (-3656 (((-710) $) 20)) (-2348 (($ (-710) (-710) |#1|) 16)) (-3668 (((-710) $) 21)) (-1344 (((-108) $ (-710)) NIL)) (-2082 ((|#1| $) 29 (|has| |#1| (-6 (-4250 "*"))))) (-1392 (((-523) $) 9)) (-1219 (((-523) $) 10)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2102 (((-523) $) 11)) (-3328 (((-523) $) 47)) (-3078 (($ (-589 (-589 |#1|))) NIL)) (-3063 (($ (-1 |#1| |#1|) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3522 (((-589 (-589 |#1|)) $) 59)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-3714 (((-3 $ "failed") $) 42 (|has| |#1| (-339)))) (-1880 (($ $ $) NIL)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2408 (($ $ |#1|) NIL)) (-2469 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#1| $ (-523) (-523)) NIL) ((|#1| $ (-523) (-523) |#1|) NIL) (($ $ (-589 (-523)) (-589 (-523))) NIL)) (-2148 (($ (-589 |#1|)) NIL) (($ (-589 $)) NIL) (($ (-1169 |#1|)) 51)) (-2395 (((-108) $) NIL)) (-1273 ((|#1| $) 27 (|has| |#1| (-6 (-4250 "*"))))) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) NIL)) (-3077 (((-499) $) 63 (|has| |#1| (-564 (-499))))) (-2032 (((-1169 |#1|) $ (-523)) NIL)) (-3976 (($ (-1169 |#1|)) NIL) (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-2791 (((-108) $) NIL)) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339)))) (-4115 (($ $ $) NIL) (($ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-710)) 23) (($ $ (-523)) 45 (|has| |#1| (-339)))) (* (($ $ $) 13) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-523) $) NIL) (((-1169 |#1|) $ (-1169 |#1|)) NIL) (((-1169 |#1|) (-1169 |#1|) $) NIL)) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-629 |#1|) (-13 (-627 |#1| (-1169 |#1|) (-1169 |#1|)) (-10 -8 (-15 -2148 ($ (-1169 |#1|))) (IF (|has| |#1| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|) (IF (|has| |#1| (-339)) (-15 -3714 ((-3 $ "failed") $)) |%noBranch|))) (-973)) (T -629))
-((-3714 (*1 *1 *1) (|partial| -12 (-5 *1 (-629 *2)) (-4 *2 (-339)) (-4 *2 (-973)))) (-2148 (*1 *1 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-973)) (-5 *1 (-629 *3)))))
-(-13 (-627 |#1| (-1169 |#1|) (-1169 |#1|)) (-10 -8 (-15 -2148 ($ (-1169 |#1|))) (IF (|has| |#1| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|) (IF (|has| |#1| (-339)) (-15 -3714 ((-3 $ "failed") $)) |%noBranch|)))
-((-1581 (((-629 |#1|) (-629 |#1|) (-629 |#1|) (-629 |#1|)) 25)) (-1914 (((-629 |#1|) (-629 |#1|) (-629 |#1|) |#1|) 21)) (-2955 (((-629 |#1|) (-629 |#1|) (-629 |#1|) (-629 |#1|) (-629 |#1|) (-710)) 26)) (-1959 (((-629 |#1|) (-629 |#1|) (-629 |#1|) (-629 |#1|)) 14)) (-1930 (((-629 |#1|) (-629 |#1|) (-629 |#1|) (-629 |#1|)) 18) (((-629 |#1|) (-629 |#1|) (-629 |#1|)) 16)) (-3290 (((-629 |#1|) (-629 |#1|) |#1| (-629 |#1|)) 20)) (-4204 (((-629 |#1|) (-629 |#1|) (-629 |#1|)) 12)) (** (((-629 |#1|) (-629 |#1|) (-710)) 30)))
-(((-630 |#1|) (-10 -7 (-15 -4204 ((-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -1959 ((-629 |#1|) (-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -1930 ((-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -1930 ((-629 |#1|) (-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -3290 ((-629 |#1|) (-629 |#1|) |#1| (-629 |#1|))) (-15 -1914 ((-629 |#1|) (-629 |#1|) (-629 |#1|) |#1|)) (-15 -1581 ((-629 |#1|) (-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -2955 ((-629 |#1|) (-629 |#1|) (-629 |#1|) (-629 |#1|) (-629 |#1|) (-710))) (-15 ** ((-629 |#1|) (-629 |#1|) (-710)))) (-973)) (T -630))
-((** (*1 *2 *2 *3) (-12 (-5 *2 (-629 *4)) (-5 *3 (-710)) (-4 *4 (-973)) (-5 *1 (-630 *4)))) (-2955 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-629 *4)) (-5 *3 (-710)) (-4 *4 (-973)) (-5 *1 (-630 *4)))) (-1581 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-630 *3)))) (-1914 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-630 *3)))) (-3290 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-630 *3)))) (-1930 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-630 *3)))) (-1930 (*1 *2 *2 *2) (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-630 *3)))) (-1959 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-630 *3)))) (-4204 (*1 *2 *2 *2) (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-630 *3)))))
-(-10 -7 (-15 -4204 ((-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -1959 ((-629 |#1|) (-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -1930 ((-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -1930 ((-629 |#1|) (-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -3290 ((-629 |#1|) (-629 |#1|) |#1| (-629 |#1|))) (-15 -1914 ((-629 |#1|) (-629 |#1|) (-629 |#1|) |#1|)) (-15 -1581 ((-629 |#1|) (-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -2955 ((-629 |#1|) (-629 |#1|) (-629 |#1|) (-629 |#1|) (-629 |#1|) (-710))) (-15 ** ((-629 |#1|) (-629 |#1|) (-710))))
-((-1336 ((|#2| |#2| |#4|) 25)) (-2296 (((-629 |#2|) |#3| |#4|) 31)) (-2076 (((-629 |#2|) |#2| |#4|) 30)) (-1828 (((-1169 |#2|) |#2| |#4|) 16)) (-3157 ((|#2| |#3| |#4|) 24)) (-1967 (((-629 |#2|) |#3| |#4| (-710) (-710)) 38)) (-2816 (((-629 |#2|) |#2| |#4| (-710)) 37)))
-(((-631 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1828 ((-1169 |#2|) |#2| |#4|)) (-15 -3157 (|#2| |#3| |#4|)) (-15 -1336 (|#2| |#2| |#4|)) (-15 -2076 ((-629 |#2|) |#2| |#4|)) (-15 -2816 ((-629 |#2|) |#2| |#4| (-710))) (-15 -2296 ((-629 |#2|) |#3| |#4|)) (-15 -1967 ((-629 |#2|) |#3| |#4| (-710) (-710)))) (-1016) (-831 |#1|) (-349 |#2|) (-13 (-349 |#1|) (-10 -7 (-6 -4248)))) (T -631))
-((-1967 (*1 *2 *3 *4 *5 *5) (-12 (-5 *5 (-710)) (-4 *6 (-1016)) (-4 *7 (-831 *6)) (-5 *2 (-629 *7)) (-5 *1 (-631 *6 *7 *3 *4)) (-4 *3 (-349 *7)) (-4 *4 (-13 (-349 *6) (-10 -7 (-6 -4248)))))) (-2296 (*1 *2 *3 *4) (-12 (-4 *5 (-1016)) (-4 *6 (-831 *5)) (-5 *2 (-629 *6)) (-5 *1 (-631 *5 *6 *3 *4)) (-4 *3 (-349 *6)) (-4 *4 (-13 (-349 *5) (-10 -7 (-6 -4248)))))) (-2816 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-710)) (-4 *6 (-1016)) (-4 *3 (-831 *6)) (-5 *2 (-629 *3)) (-5 *1 (-631 *6 *3 *7 *4)) (-4 *7 (-349 *3)) (-4 *4 (-13 (-349 *6) (-10 -7 (-6 -4248)))))) (-2076 (*1 *2 *3 *4) (-12 (-4 *5 (-1016)) (-4 *3 (-831 *5)) (-5 *2 (-629 *3)) (-5 *1 (-631 *5 *3 *6 *4)) (-4 *6 (-349 *3)) (-4 *4 (-13 (-349 *5) (-10 -7 (-6 -4248)))))) (-1336 (*1 *2 *2 *3) (-12 (-4 *4 (-1016)) (-4 *2 (-831 *4)) (-5 *1 (-631 *4 *2 *5 *3)) (-4 *5 (-349 *2)) (-4 *3 (-13 (-349 *4) (-10 -7 (-6 -4248)))))) (-3157 (*1 *2 *3 *4) (-12 (-4 *5 (-1016)) (-4 *2 (-831 *5)) (-5 *1 (-631 *5 *2 *3 *4)) (-4 *3 (-349 *2)) (-4 *4 (-13 (-349 *5) (-10 -7 (-6 -4248)))))) (-1828 (*1 *2 *3 *4) (-12 (-4 *5 (-1016)) (-4 *3 (-831 *5)) (-5 *2 (-1169 *3)) (-5 *1 (-631 *5 *3 *6 *4)) (-4 *6 (-349 *3)) (-4 *4 (-13 (-349 *5) (-10 -7 (-6 -4248)))))))
-(-10 -7 (-15 -1828 ((-1169 |#2|) |#2| |#4|)) (-15 -3157 (|#2| |#3| |#4|)) (-15 -1336 (|#2| |#2| |#4|)) (-15 -2076 ((-629 |#2|) |#2| |#4|)) (-15 -2816 ((-629 |#2|) |#2| |#4| (-710))) (-15 -2296 ((-629 |#2|) |#3| |#4|)) (-15 -1967 ((-629 |#2|) |#3| |#4| (-710) (-710))))
-((-3538 (((-2 (|:| |num| (-629 |#1|)) (|:| |den| |#1|)) (-629 |#2|)) 20)) (-2848 ((|#1| (-629 |#2|)) 9)) (-3992 (((-629 |#1|) (-629 |#2|)) 18)))
-(((-632 |#1| |#2|) (-10 -7 (-15 -2848 (|#1| (-629 |#2|))) (-15 -3992 ((-629 |#1|) (-629 |#2|))) (-15 -3538 ((-2 (|:| |num| (-629 |#1|)) (|:| |den| |#1|)) (-629 |#2|)))) (-515) (-921 |#1|)) (T -632))
-((-3538 (*1 *2 *3) (-12 (-5 *3 (-629 *5)) (-4 *5 (-921 *4)) (-4 *4 (-515)) (-5 *2 (-2 (|:| |num| (-629 *4)) (|:| |den| *4))) (-5 *1 (-632 *4 *5)))) (-3992 (*1 *2 *3) (-12 (-5 *3 (-629 *5)) (-4 *5 (-921 *4)) (-4 *4 (-515)) (-5 *2 (-629 *4)) (-5 *1 (-632 *4 *5)))) (-2848 (*1 *2 *3) (-12 (-5 *3 (-629 *4)) (-4 *4 (-921 *2)) (-4 *2 (-515)) (-5 *1 (-632 *2 *4)))))
-(-10 -7 (-15 -2848 (|#1| (-629 |#2|))) (-15 -3992 ((-629 |#1|) (-629 |#2|))) (-15 -3538 ((-2 (|:| |num| (-629 |#1|)) (|:| |den| |#1|)) (-629 |#2|))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-1711 (((-629 (-638))) NIL) (((-629 (-638)) (-1169 $)) NIL)) (-4131 (((-638) $) NIL)) (-3695 (($ $) NIL (|has| (-638) (-1109)))) (-2608 (($ $) NIL (|has| (-638) (-1109)))) (-2794 (((-1097 (-852) (-710)) (-523)) NIL (|has| (-638) (-325)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (-12 (|has| (-638) (-284)) (|has| (-638) (-840))))) (-3763 (($ $) NIL (-3255 (-12 (|has| (-638) (-284)) (|has| (-638) (-840))) (|has| (-638) (-339))))) (-2105 (((-394 $) $) NIL (-3255 (-12 (|has| (-638) (-284)) (|has| (-638) (-840))) (|has| (-638) (-339))))) (-3584 (($ $) NIL (-12 (|has| (-638) (-930)) (|has| (-638) (-1109))))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (-12 (|has| (-638) (-284)) (|has| (-638) (-840))))) (-3684 (((-108) $ $) NIL (|has| (-638) (-284)))) (-3843 (((-710)) NIL (|has| (-638) (-344)))) (-3669 (($ $) NIL (|has| (-638) (-1109)))) (-2588 (($ $) NIL (|has| (-638) (-1109)))) (-3717 (($ $) NIL (|has| (-638) (-1109)))) (-2629 (($ $) NIL (|has| (-638) (-1109)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL) (((-3 (-638) "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL (|has| (-638) (-964 (-383 (-523)))))) (-1996 (((-523) $) NIL) (((-638) $) NIL) (((-383 (-523)) $) NIL (|has| (-638) (-964 (-383 (-523)))))) (-3322 (($ (-1169 (-638))) NIL) (($ (-1169 (-638)) (-1169 $)) NIL)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-638) (-325)))) (-2501 (($ $ $) NIL (|has| (-638) (-284)))) (-2545 (((-629 (-638)) $) NIL) (((-629 (-638)) $ (-1169 $)) NIL)) (-2203 (((-629 (-638)) (-629 $)) NIL) (((-2 (|:| -2373 (-629 (-638))) (|:| |vec| (-1169 (-638)))) (-629 $) (-1169 $)) NIL) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| (-638) (-585 (-523)))) (((-629 (-523)) (-629 $)) NIL (|has| (-638) (-585 (-523))))) (-1830 (((-3 $ "failed") (-383 (-1083 (-638)))) NIL (|has| (-638) (-339))) (($ (-1083 (-638))) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3597 (((-638) $) 29)) (-4031 (((-3 (-383 (-523)) "failed") $) NIL (|has| (-638) (-508)))) (-1310 (((-108) $) NIL (|has| (-638) (-508)))) (-1600 (((-383 (-523)) $) NIL (|has| (-638) (-508)))) (-2262 (((-852)) NIL)) (-3461 (($) NIL (|has| (-638) (-344)))) (-2486 (($ $ $) NIL (|has| (-638) (-284)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| (-638) (-284)))) (-2097 (($) NIL (|has| (-638) (-325)))) (-1200 (((-108) $) NIL (|has| (-638) (-325)))) (-1419 (($ $) NIL (|has| (-638) (-325))) (($ $ (-710)) NIL (|has| (-638) (-325)))) (-1330 (((-108) $) NIL (-3255 (-12 (|has| (-638) (-284)) (|has| (-638) (-840))) (|has| (-638) (-339))))) (-2757 (((-2 (|:| |r| (-638)) (|:| |phi| (-638))) $) NIL (-12 (|has| (-638) (-982)) (|has| (-638) (-1109))))) (-2188 (($) NIL (|has| (-638) (-1109)))) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (|has| (-638) (-817 (-355)))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (|has| (-638) (-817 (-523))))) (-1500 (((-772 (-852)) $) NIL (|has| (-638) (-325))) (((-852) $) NIL (|has| (-638) (-325)))) (-3482 (((-108) $) NIL)) (-1324 (($ $ (-523)) NIL (-12 (|has| (-638) (-930)) (|has| (-638) (-1109))))) (-2765 (((-638) $) NIL)) (-1289 (((-3 $ "failed") $) NIL (|has| (-638) (-325)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| (-638) (-284)))) (-2277 (((-1083 (-638)) $) NIL (|has| (-638) (-339)))) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3015 (($ (-1 (-638) (-638)) $) NIL)) (-4076 (((-852) $) NIL (|has| (-638) (-344)))) (-2062 (($ $) NIL (|has| (-638) (-1109)))) (-1816 (((-1083 (-638)) $) NIL)) (-2012 (($ (-589 $)) NIL (|has| (-638) (-284))) (($ $ $) NIL (|has| (-638) (-284)))) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL (|has| (-638) (-339)))) (-4105 (($) NIL (|has| (-638) (-325)) CONST)) (-2557 (($ (-852)) NIL (|has| (-638) (-344)))) (-3564 (($) NIL)) (-3610 (((-638) $) 31)) (-2435 (((-1034) $) NIL)) (-4102 (($) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| (-638) (-284)))) (-2056 (($ (-589 $)) NIL (|has| (-638) (-284))) (($ $ $) NIL (|has| (-638) (-284)))) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) NIL (|has| (-638) (-325)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (-12 (|has| (-638) (-284)) (|has| (-638) (-840))))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (-12 (|has| (-638) (-284)) (|has| (-638) (-840))))) (-3573 (((-394 $) $) NIL (-3255 (-12 (|has| (-638) (-284)) (|has| (-638) (-840))) (|has| (-638) (-339))))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-638) (-284))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| (-638) (-284)))) (-2469 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-638)) NIL (|has| (-638) (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| (-638) (-284)))) (-1847 (($ $) NIL (|has| (-638) (-1109)))) (-1349 (($ $ (-1087) (-638)) NIL (|has| (-638) (-484 (-1087) (-638)))) (($ $ (-589 (-1087)) (-589 (-638))) NIL (|has| (-638) (-484 (-1087) (-638)))) (($ $ (-589 (-271 (-638)))) NIL (|has| (-638) (-286 (-638)))) (($ $ (-271 (-638))) NIL (|has| (-638) (-286 (-638)))) (($ $ (-638) (-638)) NIL (|has| (-638) (-286 (-638)))) (($ $ (-589 (-638)) (-589 (-638))) NIL (|has| (-638) (-286 (-638))))) (-3087 (((-710) $) NIL (|has| (-638) (-284)))) (-1502 (($ $ (-638)) NIL (|has| (-638) (-263 (-638) (-638))))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| (-638) (-284)))) (-4053 (((-638)) NIL) (((-638) (-1169 $)) NIL)) (-2041 (((-3 (-710) "failed") $ $) NIL (|has| (-638) (-325))) (((-710) $) NIL (|has| (-638) (-325)))) (-4024 (($ $ (-1 (-638) (-638))) NIL) (($ $ (-1 (-638) (-638)) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-638) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-638) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-638) (-831 (-1087)))) (($ $ (-1087)) NIL (|has| (-638) (-831 (-1087)))) (($ $ (-710)) NIL (|has| (-638) (-211))) (($ $) NIL (|has| (-638) (-211)))) (-1718 (((-629 (-638)) (-1169 $) (-1 (-638) (-638))) NIL (|has| (-638) (-339)))) (-3399 (((-1083 (-638))) NIL)) (-3730 (($ $) NIL (|has| (-638) (-1109)))) (-2641 (($ $) NIL (|has| (-638) (-1109)))) (-2315 (($) NIL (|has| (-638) (-325)))) (-3707 (($ $) NIL (|has| (-638) (-1109)))) (-2617 (($ $) NIL (|has| (-638) (-1109)))) (-3683 (($ $) NIL (|has| (-638) (-1109)))) (-2598 (($ $) NIL (|has| (-638) (-1109)))) (-2411 (((-629 (-638)) (-1169 $)) NIL) (((-1169 (-638)) $) NIL) (((-629 (-638)) (-1169 $) (-1169 $)) NIL) (((-1169 (-638)) $ (-1169 $)) NIL)) (-3077 (((-499) $) NIL (|has| (-638) (-564 (-499)))) (((-155 (-203)) $) NIL (|has| (-638) (-949))) (((-155 (-355)) $) NIL (|has| (-638) (-949))) (((-823 (-355)) $) NIL (|has| (-638) (-564 (-823 (-355))))) (((-823 (-523)) $) NIL (|has| (-638) (-564 (-823 (-523))))) (($ (-1083 (-638))) NIL) (((-1083 (-638)) $) NIL) (($ (-1169 (-638))) NIL) (((-1169 (-638)) $) NIL)) (-1308 (($ $) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-3255 (-12 (|has| (-638) (-284)) (|has| $ (-134)) (|has| (-638) (-840))) (|has| (-638) (-325))))) (-2531 (($ (-638) (-638)) 12)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-523)) NIL) (($ (-638)) NIL) (($ (-155 (-355))) 13) (($ (-155 (-523))) 19) (($ (-155 (-638))) 28) (($ (-155 (-640))) 25) (((-155 (-355)) $) 33) (($ (-383 (-523))) NIL (-3255 (|has| (-638) (-964 (-383 (-523)))) (|has| (-638) (-339))))) (-2301 (($ $) NIL (|has| (-638) (-325))) (((-3 $ "failed") $) NIL (-3255 (-12 (|has| (-638) (-284)) (|has| $ (-134)) (|has| (-638) (-840))) (|has| (-638) (-134))))) (-1606 (((-1083 (-638)) $) NIL)) (-1698 (((-710)) NIL)) (-2922 (((-1169 $)) NIL)) (-3768 (($ $) NIL (|has| (-638) (-1109)))) (-2680 (($ $) NIL (|has| (-638) (-1109)))) (-3842 (((-108) $ $) NIL)) (-3743 (($ $) NIL (|has| (-638) (-1109)))) (-2655 (($ $) NIL (|has| (-638) (-1109)))) (-3793 (($ $) NIL (|has| (-638) (-1109)))) (-3645 (($ $) NIL (|has| (-638) (-1109)))) (-2947 (((-638) $) NIL (|has| (-638) (-1109)))) (-3135 (($ $) NIL (|has| (-638) (-1109)))) (-3657 (($ $) NIL (|has| (-638) (-1109)))) (-3780 (($ $) NIL (|has| (-638) (-1109)))) (-3632 (($ $) NIL (|has| (-638) (-1109)))) (-3756 (($ $) NIL (|has| (-638) (-1109)))) (-2667 (($ $) NIL (|has| (-638) (-1109)))) (-3984 (($ $) NIL (|has| (-638) (-982)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| (-638) (-339)))) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ (-1 (-638) (-638))) NIL) (($ $ (-1 (-638) (-638)) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-638) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-638) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-638) (-831 (-1087)))) (($ $ (-1087)) NIL (|has| (-638) (-831 (-1087)))) (($ $ (-710)) NIL (|has| (-638) (-211))) (($ $) NIL (|has| (-638) (-211)))) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL (|has| (-638) (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ $) NIL (|has| (-638) (-1109))) (($ $ (-383 (-523))) NIL (-12 (|has| (-638) (-930)) (|has| (-638) (-1109)))) (($ $ (-523)) NIL (|has| (-638) (-339)))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ (-638) $) NIL) (($ $ (-638)) NIL) (($ (-383 (-523)) $) NIL (|has| (-638) (-339))) (($ $ (-383 (-523))) NIL (|has| (-638) (-339)))))
-(((-633) (-13 (-363) (-152 (-638)) (-10 -8 (-15 -3976 ($ (-155 (-355)))) (-15 -3976 ($ (-155 (-523)))) (-15 -3976 ($ (-155 (-638)))) (-15 -3976 ($ (-155 (-640)))) (-15 -3976 ((-155 (-355)) $))))) (T -633))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-155 (-355))) (-5 *1 (-633)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-155 (-523))) (-5 *1 (-633)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-155 (-638))) (-5 *1 (-633)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-155 (-640))) (-5 *1 (-633)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-155 (-355))) (-5 *1 (-633)))))
-(-13 (-363) (-152 (-638)) (-10 -8 (-15 -3976 ($ (-155 (-355)))) (-15 -3976 ($ (-155 (-523)))) (-15 -3976 ($ (-155 (-638)))) (-15 -3976 ($ (-155 (-640)))) (-15 -3976 ((-155 (-355)) $))))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2282 (((-108) $ (-710)) 8)) (-3627 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4248)))) (-1640 (($) 7 T CONST)) (-2543 (($ $) 62)) (-3917 (($ $) 58 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-1869 (($ |#1| $) 47 (|has| $ (-6 -4248))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4248)))) (-2231 (($ |#1| $) 57 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4248)))) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2349 ((|#1| $) 39)) (-3862 (($ |#1| $) 40) (($ |#1| $ (-710)) 63)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-1322 ((|#1| $) 41)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1207 (((-589 (-2 (|:| -2746 |#1|) (|:| -2452 (-710)))) $) 61)) (-1771 (($) 49) (($ (-589 |#1|)) 48)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3077 (((-499) $) 59 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 50)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1245 (($ (-589 |#1|)) 42)) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-634 |#1|) (-129) (-1016)) (T -634))
-((-3862 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-710)) (-4 *1 (-634 *2)) (-4 *2 (-1016)))) (-2543 (*1 *1 *1) (-12 (-4 *1 (-634 *2)) (-4 *2 (-1016)))) (-1207 (*1 *2 *1) (-12 (-4 *1 (-634 *3)) (-4 *3 (-1016)) (-5 *2 (-589 (-2 (|:| -2746 *3) (|:| -2452 (-710))))))))
-(-13 (-213 |t#1|) (-10 -8 (-15 -3862 ($ |t#1| $ (-710))) (-15 -2543 ($ $)) (-15 -1207 ((-589 (-2 (|:| -2746 |t#1|) (|:| -2452 (-710)))) $))))
-(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-213 |#1|) . T) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-3762 (((-589 |#1|) (-589 (-2 (|:| -3573 |#1|) (|:| -1487 (-523)))) (-523)) 47)) (-4096 ((|#1| |#1| (-523)) 46)) (-2056 ((|#1| |#1| |#1| (-523)) 36)) (-3573 (((-589 |#1|) |#1| (-523)) 39)) (-1599 ((|#1| |#1| (-523) |#1| (-523)) 32)) (-1715 (((-589 (-2 (|:| -3573 |#1|) (|:| -1487 (-523)))) |#1| (-523)) 45)))
-(((-635 |#1|) (-10 -7 (-15 -2056 (|#1| |#1| |#1| (-523))) (-15 -4096 (|#1| |#1| (-523))) (-15 -3573 ((-589 |#1|) |#1| (-523))) (-15 -1715 ((-589 (-2 (|:| -3573 |#1|) (|:| -1487 (-523)))) |#1| (-523))) (-15 -3762 ((-589 |#1|) (-589 (-2 (|:| -3573 |#1|) (|:| -1487 (-523)))) (-523))) (-15 -1599 (|#1| |#1| (-523) |#1| (-523)))) (-1145 (-523))) (T -635))
-((-1599 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-523)) (-5 *1 (-635 *2)) (-4 *2 (-1145 *3)))) (-3762 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-2 (|:| -3573 *5) (|:| -1487 (-523))))) (-5 *4 (-523)) (-4 *5 (-1145 *4)) (-5 *2 (-589 *5)) (-5 *1 (-635 *5)))) (-1715 (*1 *2 *3 *4) (-12 (-5 *4 (-523)) (-5 *2 (-589 (-2 (|:| -3573 *3) (|:| -1487 *4)))) (-5 *1 (-635 *3)) (-4 *3 (-1145 *4)))) (-3573 (*1 *2 *3 *4) (-12 (-5 *4 (-523)) (-5 *2 (-589 *3)) (-5 *1 (-635 *3)) (-4 *3 (-1145 *4)))) (-4096 (*1 *2 *2 *3) (-12 (-5 *3 (-523)) (-5 *1 (-635 *2)) (-4 *2 (-1145 *3)))) (-2056 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-523)) (-5 *1 (-635 *2)) (-4 *2 (-1145 *3)))))
-(-10 -7 (-15 -2056 (|#1| |#1| |#1| (-523))) (-15 -4096 (|#1| |#1| (-523))) (-15 -3573 ((-589 |#1|) |#1| (-523))) (-15 -1715 ((-589 (-2 (|:| -3573 |#1|) (|:| -1487 (-523)))) |#1| (-523))) (-15 -3762 ((-589 |#1|) (-589 (-2 (|:| -3573 |#1|) (|:| -1487 (-523)))) (-523))) (-15 -1599 (|#1| |#1| (-523) |#1| (-523))))
-((-1697 (((-1 (-874 (-203)) (-203) (-203)) (-1 (-203) (-203) (-203)) (-1 (-203) (-203) (-203)) (-1 (-203) (-203) (-203)) (-1 (-203) (-203) (-203) (-203))) 17)) (-2339 (((-1047 (-203)) (-1047 (-203)) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-203)) (-1011 (-203)) (-589 (-240))) 40) (((-1047 (-203)) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-203)) (-1011 (-203)) (-589 (-240))) 42) (((-1047 (-203)) (-1 (-203) (-203) (-203)) (-1 (-203) (-203) (-203)) (-1 (-203) (-203) (-203)) (-3 (-1 (-203) (-203) (-203) (-203)) "undefined") (-1011 (-203)) (-1011 (-203)) (-589 (-240))) 44)) (-1918 (((-1047 (-203)) (-292 (-523)) (-292 (-523)) (-292 (-523)) (-1 (-203) (-203)) (-1011 (-203)) (-589 (-240))) NIL)) (-1655 (((-1047 (-203)) (-1 (-203) (-203) (-203)) (-3 (-1 (-203) (-203) (-203) (-203)) "undefined") (-1011 (-203)) (-1011 (-203)) (-589 (-240))) 45)))
-(((-636) (-10 -7 (-15 -2339 ((-1047 (-203)) (-1 (-203) (-203) (-203)) (-1 (-203) (-203) (-203)) (-1 (-203) (-203) (-203)) (-3 (-1 (-203) (-203) (-203) (-203)) "undefined") (-1011 (-203)) (-1011 (-203)) (-589 (-240)))) (-15 -2339 ((-1047 (-203)) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-203)) (-1011 (-203)) (-589 (-240)))) (-15 -2339 ((-1047 (-203)) (-1047 (-203)) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-203)) (-1011 (-203)) (-589 (-240)))) (-15 -1655 ((-1047 (-203)) (-1 (-203) (-203) (-203)) (-3 (-1 (-203) (-203) (-203) (-203)) "undefined") (-1011 (-203)) (-1011 (-203)) (-589 (-240)))) (-15 -1918 ((-1047 (-203)) (-292 (-523)) (-292 (-523)) (-292 (-523)) (-1 (-203) (-203)) (-1011 (-203)) (-589 (-240)))) (-15 -1697 ((-1 (-874 (-203)) (-203) (-203)) (-1 (-203) (-203) (-203)) (-1 (-203) (-203) (-203)) (-1 (-203) (-203) (-203)) (-1 (-203) (-203) (-203) (-203)))))) (T -636))
-((-1697 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-1 (-203) (-203) (-203))) (-5 *4 (-1 (-203) (-203) (-203) (-203))) (-5 *2 (-1 (-874 (-203)) (-203) (-203))) (-5 *1 (-636)))) (-1918 (*1 *2 *3 *3 *3 *4 *5 *6) (-12 (-5 *3 (-292 (-523))) (-5 *4 (-1 (-203) (-203))) (-5 *5 (-1011 (-203))) (-5 *6 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-636)))) (-1655 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-203) (-203) (-203))) (-5 *4 (-3 (-1 (-203) (-203) (-203) (-203)) "undefined")) (-5 *5 (-1011 (-203))) (-5 *6 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-636)))) (-2339 (*1 *2 *2 *3 *4 *4 *5) (-12 (-5 *2 (-1047 (-203))) (-5 *3 (-1 (-874 (-203)) (-203) (-203))) (-5 *4 (-1011 (-203))) (-5 *5 (-589 (-240))) (-5 *1 (-636)))) (-2339 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-874 (-203)) (-203) (-203))) (-5 *4 (-1011 (-203))) (-5 *5 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-636)))) (-2339 (*1 *2 *3 *3 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-203) (-203) (-203))) (-5 *4 (-3 (-1 (-203) (-203) (-203) (-203)) "undefined")) (-5 *5 (-1011 (-203))) (-5 *6 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-636)))))
-(-10 -7 (-15 -2339 ((-1047 (-203)) (-1 (-203) (-203) (-203)) (-1 (-203) (-203) (-203)) (-1 (-203) (-203) (-203)) (-3 (-1 (-203) (-203) (-203) (-203)) "undefined") (-1011 (-203)) (-1011 (-203)) (-589 (-240)))) (-15 -2339 ((-1047 (-203)) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-203)) (-1011 (-203)) (-589 (-240)))) (-15 -2339 ((-1047 (-203)) (-1047 (-203)) (-1 (-874 (-203)) (-203) (-203)) (-1011 (-203)) (-1011 (-203)) (-589 (-240)))) (-15 -1655 ((-1047 (-203)) (-1 (-203) (-203) (-203)) (-3 (-1 (-203) (-203) (-203) (-203)) "undefined") (-1011 (-203)) (-1011 (-203)) (-589 (-240)))) (-15 -1918 ((-1047 (-203)) (-292 (-523)) (-292 (-523)) (-292 (-523)) (-1 (-203) (-203)) (-1011 (-203)) (-589 (-240)))) (-15 -1697 ((-1 (-874 (-203)) (-203) (-203)) (-1 (-203) (-203) (-203)) (-1 (-203) (-203) (-203)) (-1 (-203) (-203) (-203)) (-1 (-203) (-203) (-203) (-203)))))
-((-3573 (((-394 (-1083 |#4|)) (-1083 |#4|)) 73) (((-394 |#4|) |#4|) 222)))
-(((-637 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3573 ((-394 |#4|) |#4|)) (-15 -3573 ((-394 (-1083 |#4|)) (-1083 |#4|)))) (-786) (-732) (-325) (-880 |#3| |#2| |#1|)) (T -637))
-((-3573 (*1 *2 *3) (-12 (-4 *4 (-786)) (-4 *5 (-732)) (-4 *6 (-325)) (-4 *7 (-880 *6 *5 *4)) (-5 *2 (-394 (-1083 *7))) (-5 *1 (-637 *4 *5 *6 *7)) (-5 *3 (-1083 *7)))) (-3573 (*1 *2 *3) (-12 (-4 *4 (-786)) (-4 *5 (-732)) (-4 *6 (-325)) (-5 *2 (-394 *3)) (-5 *1 (-637 *4 *5 *6 *3)) (-4 *3 (-880 *6 *5 *4)))))
-(-10 -7 (-15 -3573 ((-394 |#4|) |#4|)) (-15 -3573 ((-394 (-1083 |#4|)) (-1083 |#4|))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 84)) (-3964 (((-523) $) 30)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-1756 (($ $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3584 (($ $) NIL)) (-3684 (((-108) $ $) NIL)) (-2035 (((-523) $) NIL)) (-1640 (($) NIL T CONST)) (-3710 (($ $) NIL)) (-2898 (((-3 (-523) "failed") $) 73) (((-3 (-383 (-523)) "failed") $) 26) (((-3 (-355) "failed") $) 70)) (-1996 (((-523) $) 75) (((-383 (-523)) $) 67) (((-355) $) 68)) (-2501 (($ $ $) 96)) (-4211 (((-3 $ "failed") $) 87)) (-2486 (($ $ $) 95)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-2878 (((-852)) 77) (((-852) (-852)) 76)) (-3702 (((-108) $) NIL)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL)) (-1500 (((-523) $) NIL)) (-3482 (((-108) $) NIL)) (-1324 (($ $ (-523)) NIL)) (-2765 (($ $) NIL)) (-4050 (((-108) $) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3452 (((-523) (-523)) 81) (((-523)) 82)) (-3268 (($ $ $) NIL) (($) NIL (-12 (-2575 (|has| $ (-6 -4231))) (-2575 (|has| $ (-6 -4239)))))) (-1886 (((-523) (-523)) 79) (((-523)) 80)) (-2644 (($ $ $) NIL) (($) NIL (-12 (-2575 (|has| $ (-6 -4231))) (-2575 (|has| $ (-6 -4239)))))) (-4068 (((-523) $) 16)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 91)) (-2026 (((-852) (-523)) NIL (|has| $ (-6 -4239)))) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3934 (($ $) NIL)) (-1250 (($ $) NIL)) (-1565 (($ (-523) (-523)) NIL) (($ (-523) (-523) (-852)) NIL)) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) 92)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3262 (((-523) $) 22)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 94)) (-2080 (((-852)) NIL) (((-852) (-852)) NIL (|has| $ (-6 -4239)))) (-3624 (((-852) (-523)) NIL (|has| $ (-6 -4239)))) (-3077 (((-355) $) NIL) (((-203) $) NIL) (((-823 (-355)) $) NIL)) (-3976 (((-794) $) 52) (($ (-523)) 63) (($ $) NIL) (($ (-383 (-523))) 66) (($ (-523)) 63) (($ (-383 (-523))) 66) (($ (-355)) 60) (((-355) $) 50) (($ (-640)) 55)) (-1698 (((-710)) 103)) (-4054 (($ (-523) (-523) (-852)) 44)) (-1516 (($ $) NIL)) (-2954 (((-852)) NIL) (((-852) (-852)) NIL (|has| $ (-6 -4239)))) (-3912 (((-852)) 35) (((-852) (-852)) 78)) (-3842 (((-108) $ $) NIL)) (-3984 (($ $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) 32 T CONST)) (-1440 (($) 17 T CONST)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 83)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 101)) (-4125 (($ $ $) 65)) (-4115 (($ $) 99) (($ $ $) 100)) (-4103 (($ $ $) 98)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL) (($ $ (-383 (-523))) 90)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 97) (($ $ $) 88) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL)))
-(((-638) (-13 (-380) (-363) (-339) (-964 (-355)) (-964 (-383 (-523))) (-136) (-10 -8 (-15 -2878 ((-852) (-852))) (-15 -2878 ((-852))) (-15 -3912 ((-852) (-852))) (-15 -3912 ((-852))) (-15 -1886 ((-523) (-523))) (-15 -1886 ((-523))) (-15 -3452 ((-523) (-523))) (-15 -3452 ((-523))) (-15 -3976 ((-355) $)) (-15 -3976 ($ (-640))) (-15 -4068 ((-523) $)) (-15 -3262 ((-523) $)) (-15 -4054 ($ (-523) (-523) (-852)))))) (T -638))
-((-3912 (*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-638)))) (-3262 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-638)))) (-4068 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-638)))) (-2878 (*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-638)))) (-2878 (*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-638)))) (-3912 (*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-638)))) (-1886 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-638)))) (-1886 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-638)))) (-3452 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-638)))) (-3452 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-638)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-355)) (-5 *1 (-638)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-640)) (-5 *1 (-638)))) (-4054 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-523)) (-5 *3 (-852)) (-5 *1 (-638)))))
-(-13 (-380) (-363) (-339) (-964 (-355)) (-964 (-383 (-523))) (-136) (-10 -8 (-15 -2878 ((-852) (-852))) (-15 -2878 ((-852))) (-15 -3912 ((-852) (-852))) (-15 -3912 ((-852))) (-15 -1886 ((-523) (-523))) (-15 -1886 ((-523))) (-15 -3452 ((-523) (-523))) (-15 -3452 ((-523))) (-15 -3976 ((-355) $)) (-15 -3976 ($ (-640))) (-15 -4068 ((-523) $)) (-15 -3262 ((-523) $)) (-15 -4054 ($ (-523) (-523) (-852)))))
-((-2619 (((-629 |#1|) (-629 |#1|) |#1| |#1|) 65)) (-1561 (((-629 |#1|) (-629 |#1|) |#1|) 48)) (-2121 (((-629 |#1|) (-629 |#1|) |#1|) 66)) (-3981 (((-629 |#1|) (-629 |#1|)) 49)) (-2807 (((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|) 64)))
-(((-639 |#1|) (-10 -7 (-15 -3981 ((-629 |#1|) (-629 |#1|))) (-15 -1561 ((-629 |#1|) (-629 |#1|) |#1|)) (-15 -2121 ((-629 |#1|) (-629 |#1|) |#1|)) (-15 -2619 ((-629 |#1|) (-629 |#1|) |#1| |#1|)) (-15 -2807 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|))) (-284)) (T -639))
-((-2807 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-639 *3)) (-4 *3 (-284)))) (-2619 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-629 *3)) (-4 *3 (-284)) (-5 *1 (-639 *3)))) (-2121 (*1 *2 *2 *3) (-12 (-5 *2 (-629 *3)) (-4 *3 (-284)) (-5 *1 (-639 *3)))) (-1561 (*1 *2 *2 *3) (-12 (-5 *2 (-629 *3)) (-4 *3 (-284)) (-5 *1 (-639 *3)))) (-3981 (*1 *2 *2) (-12 (-5 *2 (-629 *3)) (-4 *3 (-284)) (-5 *1 (-639 *3)))))
-(-10 -7 (-15 -3981 ((-629 |#1|) (-629 |#1|))) (-15 -1561 ((-629 |#1|) (-629 |#1|) |#1|)) (-15 -2121 ((-629 |#1|) (-629 |#1|) |#1|)) (-15 -2619 ((-629 |#1|) (-629 |#1|) |#1| |#1|)) (-15 -2807 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-3333 (($ $ $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1746 (($ $ $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-2035 (((-523) $) NIL)) (-3565 (($ $ $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) 27)) (-1996 (((-523) $) 25)) (-2501 (($ $ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-4031 (((-3 (-383 (-523)) "failed") $) NIL)) (-1310 (((-108) $) NIL)) (-1600 (((-383 (-523)) $) NIL)) (-3461 (($ $) NIL) (($) NIL)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-1872 (($ $ $ $) NIL)) (-3389 (($ $ $) NIL)) (-3702 (((-108) $) NIL)) (-4080 (($ $ $) NIL)) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL)) (-3482 (((-108) $) NIL)) (-2126 (((-108) $) NIL)) (-1289 (((-3 $ "failed") $) NIL)) (-4050 (((-108) $) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2728 (($ $ $ $) NIL)) (-3268 (($ $ $) NIL)) (-3088 (((-852) (-852)) 10) (((-852)) 9)) (-2644 (($ $ $) NIL)) (-3541 (($ $) NIL)) (-3229 (($ $) NIL)) (-2012 (($ (-589 $)) NIL) (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-1694 (($ $ $) NIL)) (-4105 (($) NIL T CONST)) (-2142 (($ $) NIL)) (-2435 (((-1034) $) NIL) (($ $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ (-589 $)) NIL) (($ $ $) NIL)) (-1763 (($ $) NIL)) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3775 (((-108) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-4024 (($ $) NIL) (($ $ (-710)) NIL)) (-3012 (($ $) NIL)) (-4124 (($ $) NIL)) (-3077 (((-203) $) NIL) (((-355) $) NIL) (((-823 (-523)) $) NIL) (((-499) $) NIL) (((-523) $) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) 24) (($ $) NIL) (($ (-523)) 24) (((-292 $) (-292 (-523))) 18)) (-1698 (((-710)) NIL)) (-3505 (((-108) $ $) NIL)) (-1475 (($ $ $) NIL)) (-3912 (($) NIL)) (-3842 (((-108) $ $) NIL)) (-3348 (($ $ $ $) NIL)) (-3984 (($ $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $) NIL) (($ $ (-710)) NIL)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL)))
-(((-640) (-13 (-363) (-508) (-10 -8 (-15 -3088 ((-852) (-852))) (-15 -3088 ((-852))) (-15 -3976 ((-292 $) (-292 (-523))))))) (T -640))
-((-3088 (*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-640)))) (-3088 (*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-640)))) (-3976 (*1 *2 *3) (-12 (-5 *3 (-292 (-523))) (-5 *2 (-292 (-640))) (-5 *1 (-640)))))
-(-13 (-363) (-508) (-10 -8 (-15 -3088 ((-852) (-852))) (-15 -3088 ((-852))) (-15 -3976 ((-292 $) (-292 (-523))))))
-((-3070 (((-1 |#4| |#2| |#3|) |#1| (-1087) (-1087)) 19)) (-2234 (((-1 |#4| |#2| |#3|) (-1087)) 12)))
-(((-641 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2234 ((-1 |#4| |#2| |#3|) (-1087))) (-15 -3070 ((-1 |#4| |#2| |#3|) |#1| (-1087) (-1087)))) (-564 (-499)) (-1123) (-1123) (-1123)) (T -641))
-((-3070 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1087)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-641 *3 *5 *6 *7)) (-4 *3 (-564 (-499))) (-4 *5 (-1123)) (-4 *6 (-1123)) (-4 *7 (-1123)))) (-2234 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-641 *4 *5 *6 *7)) (-4 *4 (-564 (-499))) (-4 *5 (-1123)) (-4 *6 (-1123)) (-4 *7 (-1123)))))
-(-10 -7 (-15 -2234 ((-1 |#4| |#2| |#3|) (-1087))) (-15 -3070 ((-1 |#4| |#2| |#3|) |#1| (-1087) (-1087))))
-((-3260 (((-108) $ $) NIL)) (-4025 (((-1174) $ (-710)) 14)) (-1894 (((-710) $) 12)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 18) ((|#1| $) 15) (($ |#1|) 23)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 25)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 24)))
-(((-642 |#1|) (-13 (-125) (-563 |#1|) (-10 -8 (-15 -3976 ($ |#1|)))) (-1016)) (T -642))
-((-3976 (*1 *1 *2) (-12 (-5 *1 (-642 *2)) (-4 *2 (-1016)))))
-(-13 (-125) (-563 |#1|) (-10 -8 (-15 -3976 ($ |#1|))))
-((-3700 (((-1 (-203) (-203) (-203)) |#1| (-1087) (-1087)) 34) (((-1 (-203) (-203)) |#1| (-1087)) 39)))
-(((-643 |#1|) (-10 -7 (-15 -3700 ((-1 (-203) (-203)) |#1| (-1087))) (-15 -3700 ((-1 (-203) (-203) (-203)) |#1| (-1087) (-1087)))) (-564 (-499))) (T -643))
-((-3700 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1087)) (-5 *2 (-1 (-203) (-203) (-203))) (-5 *1 (-643 *3)) (-4 *3 (-564 (-499))))) (-3700 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-5 *2 (-1 (-203) (-203))) (-5 *1 (-643 *3)) (-4 *3 (-564 (-499))))))
-(-10 -7 (-15 -3700 ((-1 (-203) (-203)) |#1| (-1087))) (-15 -3700 ((-1 (-203) (-203) (-203)) |#1| (-1087) (-1087))))
-((-1843 (((-1087) |#1| (-1087) (-589 (-1087))) 9) (((-1087) |#1| (-1087) (-1087) (-1087)) 12) (((-1087) |#1| (-1087) (-1087)) 11) (((-1087) |#1| (-1087)) 10)))
-(((-644 |#1|) (-10 -7 (-15 -1843 ((-1087) |#1| (-1087))) (-15 -1843 ((-1087) |#1| (-1087) (-1087))) (-15 -1843 ((-1087) |#1| (-1087) (-1087) (-1087))) (-15 -1843 ((-1087) |#1| (-1087) (-589 (-1087))))) (-564 (-499))) (T -644))
-((-1843 (*1 *2 *3 *2 *4) (-12 (-5 *4 (-589 (-1087))) (-5 *2 (-1087)) (-5 *1 (-644 *3)) (-4 *3 (-564 (-499))))) (-1843 (*1 *2 *3 *2 *2 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-644 *3)) (-4 *3 (-564 (-499))))) (-1843 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-644 *3)) (-4 *3 (-564 (-499))))) (-1843 (*1 *2 *3 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-644 *3)) (-4 *3 (-564 (-499))))))
-(-10 -7 (-15 -1843 ((-1087) |#1| (-1087))) (-15 -1843 ((-1087) |#1| (-1087) (-1087))) (-15 -1843 ((-1087) |#1| (-1087) (-1087) (-1087))) (-15 -1843 ((-1087) |#1| (-1087) (-589 (-1087)))))
-((-1342 (((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) 9)))
-(((-645 |#1| |#2|) (-10 -7 (-15 -1342 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|))) (-1123) (-1123)) (T -645))
-((-1342 (*1 *2 *3 *4) (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4))) (-5 *1 (-645 *3 *4)) (-4 *3 (-1123)) (-4 *4 (-1123)))))
-(-10 -7 (-15 -1342 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|)))
-((-4041 (((-1 |#3| |#2|) (-1087)) 11)) (-3070 (((-1 |#3| |#2|) |#1| (-1087)) 21)))
-(((-646 |#1| |#2| |#3|) (-10 -7 (-15 -4041 ((-1 |#3| |#2|) (-1087))) (-15 -3070 ((-1 |#3| |#2|) |#1| (-1087)))) (-564 (-499)) (-1123) (-1123)) (T -646))
-((-3070 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-5 *2 (-1 *6 *5)) (-5 *1 (-646 *3 *5 *6)) (-4 *3 (-564 (-499))) (-4 *5 (-1123)) (-4 *6 (-1123)))) (-4041 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1 *6 *5)) (-5 *1 (-646 *4 *5 *6)) (-4 *4 (-564 (-499))) (-4 *5 (-1123)) (-4 *6 (-1123)))))
-(-10 -7 (-15 -4041 ((-1 |#3| |#2|) (-1087))) (-15 -3070 ((-1 |#3| |#2|) |#1| (-1087))))
-((-2087 (((-3 (-589 (-1083 |#4|)) "failed") (-1083 |#4|) (-589 |#2|) (-589 (-1083 |#4|)) (-589 |#3|) (-589 |#4|) (-589 (-589 (-2 (|:| -1998 (-710)) (|:| |pcoef| |#4|)))) (-589 (-710)) (-1169 (-589 (-1083 |#3|))) |#3|) 62)) (-3011 (((-3 (-589 (-1083 |#4|)) "failed") (-1083 |#4|) (-589 |#2|) (-589 (-1083 |#3|)) (-589 |#3|) (-589 |#4|) (-589 (-710)) |#3|) 75)) (-3481 (((-3 (-589 (-1083 |#4|)) "failed") (-1083 |#4|) (-589 |#2|) (-589 |#3|) (-589 (-710)) (-589 (-1083 |#4|)) (-1169 (-589 (-1083 |#3|))) |#3|) 34)))
-(((-647 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3481 ((-3 (-589 (-1083 |#4|)) "failed") (-1083 |#4|) (-589 |#2|) (-589 |#3|) (-589 (-710)) (-589 (-1083 |#4|)) (-1169 (-589 (-1083 |#3|))) |#3|)) (-15 -3011 ((-3 (-589 (-1083 |#4|)) "failed") (-1083 |#4|) (-589 |#2|) (-589 (-1083 |#3|)) (-589 |#3|) (-589 |#4|) (-589 (-710)) |#3|)) (-15 -2087 ((-3 (-589 (-1083 |#4|)) "failed") (-1083 |#4|) (-589 |#2|) (-589 (-1083 |#4|)) (-589 |#3|) (-589 |#4|) (-589 (-589 (-2 (|:| -1998 (-710)) (|:| |pcoef| |#4|)))) (-589 (-710)) (-1169 (-589 (-1083 |#3|))) |#3|))) (-732) (-786) (-284) (-880 |#3| |#1| |#2|)) (T -647))
-((-2087 (*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10) (|partial| -12 (-5 *2 (-589 (-1083 *13))) (-5 *3 (-1083 *13)) (-5 *4 (-589 *12)) (-5 *5 (-589 *10)) (-5 *6 (-589 *13)) (-5 *7 (-589 (-589 (-2 (|:| -1998 (-710)) (|:| |pcoef| *13))))) (-5 *8 (-589 (-710))) (-5 *9 (-1169 (-589 (-1083 *10)))) (-4 *12 (-786)) (-4 *10 (-284)) (-4 *13 (-880 *10 *11 *12)) (-4 *11 (-732)) (-5 *1 (-647 *11 *12 *10 *13)))) (-3011 (*1 *2 *3 *4 *5 *6 *7 *8 *9) (|partial| -12 (-5 *4 (-589 *11)) (-5 *5 (-589 (-1083 *9))) (-5 *6 (-589 *9)) (-5 *7 (-589 *12)) (-5 *8 (-589 (-710))) (-4 *11 (-786)) (-4 *9 (-284)) (-4 *12 (-880 *9 *10 *11)) (-4 *10 (-732)) (-5 *2 (-589 (-1083 *12))) (-5 *1 (-647 *10 *11 *9 *12)) (-5 *3 (-1083 *12)))) (-3481 (*1 *2 *3 *4 *5 *6 *2 *7 *8) (|partial| -12 (-5 *2 (-589 (-1083 *11))) (-5 *3 (-1083 *11)) (-5 *4 (-589 *10)) (-5 *5 (-589 *8)) (-5 *6 (-589 (-710))) (-5 *7 (-1169 (-589 (-1083 *8)))) (-4 *10 (-786)) (-4 *8 (-284)) (-4 *11 (-880 *8 *9 *10)) (-4 *9 (-732)) (-5 *1 (-647 *9 *10 *8 *11)))))
-(-10 -7 (-15 -3481 ((-3 (-589 (-1083 |#4|)) "failed") (-1083 |#4|) (-589 |#2|) (-589 |#3|) (-589 (-710)) (-589 (-1083 |#4|)) (-1169 (-589 (-1083 |#3|))) |#3|)) (-15 -3011 ((-3 (-589 (-1083 |#4|)) "failed") (-1083 |#4|) (-589 |#2|) (-589 (-1083 |#3|)) (-589 |#3|) (-589 |#4|) (-589 (-710)) |#3|)) (-15 -2087 ((-3 (-589 (-1083 |#4|)) "failed") (-1083 |#4|) (-589 |#2|) (-589 (-1083 |#4|)) (-589 |#3|) (-589 |#4|) (-589 (-589 (-2 (|:| -1998 (-710)) (|:| |pcoef| |#4|)))) (-589 (-710)) (-1169 (-589 (-1083 |#3|))) |#3|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3142 (($ $) 41)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3694 (($ |#1| (-710)) 39)) (-2140 (((-710) $) 43)) (-3119 ((|#1| $) 42)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-1487 (((-710) $) 44)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 38 (|has| |#1| (-158)))) (-1234 ((|#1| $ (-710)) 40)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 46) (($ |#1| $) 45)))
-(((-648 |#1|) (-129) (-973)) (T -648))
-((-1487 (*1 *2 *1) (-12 (-4 *1 (-648 *3)) (-4 *3 (-973)) (-5 *2 (-710)))) (-2140 (*1 *2 *1) (-12 (-4 *1 (-648 *3)) (-4 *3 (-973)) (-5 *2 (-710)))) (-3119 (*1 *2 *1) (-12 (-4 *1 (-648 *2)) (-4 *2 (-973)))) (-3142 (*1 *1 *1) (-12 (-4 *1 (-648 *2)) (-4 *2 (-973)))) (-1234 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-4 *1 (-648 *2)) (-4 *2 (-973)))) (-3694 (*1 *1 *2 *3) (-12 (-5 *3 (-710)) (-4 *1 (-648 *2)) (-4 *2 (-973)))))
-(-13 (-973) (-107 |t#1| |t#1|) (-10 -8 (IF (|has| |t#1| (-158)) (-6 (-37 |t#1|)) |%noBranch|) (-15 -1487 ((-710) $)) (-15 -2140 ((-710) $)) (-15 -3119 (|t#1| $)) (-15 -3142 ($ $)) (-15 -1234 (|t#1| $ (-710))) (-15 -3694 ($ |t#1| (-710)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) |has| |#1| (-158)) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 |#1|) . T) ((-591 $) . T) ((-657 |#1|) |has| |#1| (-158)) ((-666) . T) ((-979 |#1|) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3015 ((|#6| (-1 |#4| |#1|) |#3|) 23)))
-(((-649 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3015 (|#6| (-1 |#4| |#1|) |#3|))) (-515) (-1145 |#1|) (-1145 (-383 |#2|)) (-515) (-1145 |#4|) (-1145 (-383 |#5|))) (T -649))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-515)) (-4 *7 (-515)) (-4 *6 (-1145 *5)) (-4 *2 (-1145 (-383 *8))) (-5 *1 (-649 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1145 (-383 *6))) (-4 *8 (-1145 *7)))))
-(-10 -7 (-15 -3015 (|#6| (-1 |#4| |#1|) |#3|)))
-((-3260 (((-108) $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2782 (((-1070) (-794)) 31)) (-3942 (((-1174) (-1070)) 28)) (-1479 (((-1070) (-794)) 24)) (-1332 (((-1070) (-794)) 25)) (-3976 (((-794) $) NIL) (((-1070) (-794)) 23)) (-4037 (((-108) $ $) NIL)))
-(((-650) (-13 (-1016) (-10 -7 (-15 -3976 ((-1070) (-794))) (-15 -1479 ((-1070) (-794))) (-15 -1332 ((-1070) (-794))) (-15 -2782 ((-1070) (-794))) (-15 -3942 ((-1174) (-1070)))))) (T -650))
-((-3976 (*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1070)) (-5 *1 (-650)))) (-1479 (*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1070)) (-5 *1 (-650)))) (-1332 (*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1070)) (-5 *1 (-650)))) (-2782 (*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1070)) (-5 *1 (-650)))) (-3942 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-650)))))
-(-13 (-1016) (-10 -7 (-15 -3976 ((-1070) (-794))) (-15 -1479 ((-1070) (-794))) (-15 -1332 ((-1070) (-794))) (-15 -2782 ((-1070) (-794))) (-15 -3942 ((-1174) (-1070)))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-1640 (($) NIL T CONST)) (-2501 (($ $ $) NIL)) (-1830 (($ |#1| |#2|) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-3482 (((-108) $) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3014 ((|#2| $) NIL)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2206 (((-3 $ "failed") $ $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) ((|#1| $) NIL)) (-1698 (((-710)) NIL)) (-3842 (((-108) $ $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL)))
-(((-651 |#1| |#2| |#3| |#4| |#5|) (-13 (-339) (-10 -8 (-15 -3014 (|#2| $)) (-15 -3976 (|#1| $)) (-15 -1830 ($ |#1| |#2|)) (-15 -2206 ((-3 $ "failed") $ $)))) (-158) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -651))
-((-3014 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-651 *3 *2 *4 *5 *6)) (-4 *3 (-158)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-3976 (*1 *2 *1) (-12 (-4 *2 (-158)) (-5 *1 (-651 *2 *3 *4 *5 *6)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-1830 (*1 *1 *2 *3) (-12 (-5 *1 (-651 *2 *3 *4 *5 *6)) (-4 *2 (-158)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-2206 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-651 *2 *3 *4 *5 *6)) (-4 *2 (-158)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
-(-13 (-339) (-10 -8 (-15 -3014 (|#2| $)) (-15 -3976 (|#1| $)) (-15 -1830 ($ |#1| |#2|)) (-15 -2206 ((-3 $ "failed") $ $))))
-((-3260 (((-108) $ $) 78)) (-2388 (((-108) $) 30)) (-1288 (((-1169 |#1|) $ (-710)) NIL)) (-3716 (((-589 (-1001)) $) NIL)) (-2115 (($ (-1083 |#1|)) NIL)) (-3540 (((-1083 $) $ (-1001)) NIL) (((-1083 |#1|) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-2862 (((-710) $) NIL) (((-710) $ (-589 (-1001))) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3712 (($ $ $) NIL (|has| |#1| (-515)))) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3763 (($ $) NIL (|has| |#1| (-427)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3684 (((-108) $ $) NIL (|has| |#1| (-339)))) (-3843 (((-710)) 47 (|has| |#1| (-344)))) (-2891 (($ $ (-710)) NIL)) (-1544 (($ $ (-710)) NIL)) (-3655 ((|#2| |#2|) 44)) (-3340 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-427)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-1001) "failed") $) NIL)) (-1996 ((|#1| $) NIL) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-1001) $) NIL)) (-2210 (($ $ $ (-1001)) NIL (|has| |#1| (-158))) ((|#1| $ $) NIL (|has| |#1| (-158)))) (-2501 (($ $ $) NIL (|has| |#1| (-339)))) (-3142 (($ $) 34)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) NIL) (((-629 |#1|) (-629 $)) NIL)) (-1830 (($ |#2|) 42)) (-4211 (((-3 $ "failed") $) 86)) (-3461 (($) 51 (|has| |#1| (-344)))) (-2486 (($ $ $) NIL (|has| |#1| (-339)))) (-1365 (($ $ $) NIL)) (-3547 (($ $ $) NIL (|has| |#1| (-515)))) (-1579 (((-2 (|:| -2275 |#1|) (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-515)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#1| (-339)))) (-2213 (($ $) NIL (|has| |#1| (-427))) (($ $ (-1001)) NIL (|has| |#1| (-427)))) (-3127 (((-589 $) $) NIL)) (-1330 (((-108) $) NIL (|has| |#1| (-840)))) (-3269 (((-888 $)) 80)) (-2067 (($ $ |#1| (-710) $) NIL)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| (-1001) (-817 (-355))) (|has| |#1| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| (-1001) (-817 (-523))) (|has| |#1| (-817 (-523)))))) (-1500 (((-710) $ $) NIL (|has| |#1| (-515)))) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) NIL)) (-1289 (((-3 $ "failed") $) NIL (|has| |#1| (-1063)))) (-3706 (($ (-1083 |#1|) (-1001)) NIL) (($ (-1083 $) (-1001)) NIL)) (-3059 (($ $ (-710)) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-710)) 77) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ (-1001)) NIL) (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-3014 ((|#2|) 45)) (-2140 (((-710) $) NIL) (((-710) $ (-1001)) NIL) (((-589 (-710)) $ (-589 (-1001))) NIL)) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3927 (($ (-1 (-710) (-710)) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-1489 (((-1083 |#1|) $) NIL)) (-1949 (((-3 (-1001) "failed") $) NIL)) (-4076 (((-852) $) NIL (|has| |#1| (-344)))) (-1816 ((|#2| $) 41)) (-3107 (($ $) NIL)) (-3119 ((|#1| $) 28)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-3841 (((-1070) $) NIL)) (-3809 (((-2 (|:| -3429 $) (|:| -3143 $)) $ (-710)) NIL)) (-3818 (((-3 (-589 $) "failed") $) NIL)) (-1973 (((-3 (-589 $) "failed") $) NIL)) (-3719 (((-3 (-2 (|:| |var| (-1001)) (|:| -3262 (-710))) "failed") $) NIL)) (-2669 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-4105 (($) NIL (|has| |#1| (-1063)) CONST)) (-2557 (($ (-852)) NIL (|has| |#1| (-344)))) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) NIL)) (-3095 ((|#1| $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-427)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-3902 (($ $) 79 (|has| |#1| (-325)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3573 (((-394 $) $) NIL (|has| |#1| (-840)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-2469 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515))) (((-3 $ "failed") $ $) 85 (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-1349 (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-1001) |#1|) NIL) (($ $ (-589 (-1001)) (-589 |#1|)) NIL) (($ $ (-1001) $) NIL) (($ $ (-589 (-1001)) (-589 $)) NIL)) (-3087 (((-710) $) NIL (|has| |#1| (-339)))) (-1502 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-383 $) (-383 $) (-383 $)) NIL (|has| |#1| (-515))) ((|#1| (-383 $) |#1|) NIL (|has| |#1| (-339))) (((-383 $) $ (-383 $)) NIL (|has| |#1| (-515)))) (-1451 (((-3 $ "failed") $ (-710)) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 87 (|has| |#1| (-339)))) (-4053 (($ $ (-1001)) NIL (|has| |#1| (-158))) ((|#1| $) NIL (|has| |#1| (-158)))) (-4024 (($ $ (-1001)) NIL) (($ $ (-589 (-1001))) NIL) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL) (($ $ (-710)) NIL) (($ $) NIL) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-1487 (((-710) $) 32) (((-710) $ (-1001)) NIL) (((-589 (-710)) $ (-589 (-1001))) NIL)) (-3077 (((-823 (-355)) $) NIL (-12 (|has| (-1001) (-564 (-823 (-355)))) (|has| |#1| (-564 (-823 (-355)))))) (((-823 (-523)) $) NIL (-12 (|has| (-1001) (-564 (-823 (-523)))) (|has| |#1| (-564 (-823 (-523)))))) (((-499) $) NIL (-12 (|has| (-1001) (-564 (-499))) (|has| |#1| (-564 (-499)))))) (-2267 ((|#1| $) NIL (|has| |#1| (-427))) (($ $ (-1001)) NIL (|has| |#1| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#1| (-840))))) (-1853 (((-888 $)) 36)) (-2670 (((-3 $ "failed") $ $) NIL (|has| |#1| (-515))) (((-3 (-383 $) "failed") (-383 $) $) NIL (|has| |#1| (-515)))) (-3976 (((-794) $) 61) (($ (-523)) NIL) (($ |#1|) 58) (($ (-1001)) NIL) (($ |#2|) 68) (($ (-383 (-523))) NIL (-3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-964 (-383 (-523)))))) (($ $) NIL (|has| |#1| (-515)))) (-1639 (((-589 |#1|) $) NIL)) (-1234 ((|#1| $ (-710)) 63) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#1| (-840))) (|has| |#1| (-134))))) (-1698 (((-710)) NIL)) (-2656 (($ $ $ (-710)) NIL (|has| |#1| (-158)))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 20 T CONST)) (-3028 (((-1169 |#1|) $) 75)) (-2751 (($ (-1169 |#1|)) 50)) (-1440 (($) 8 T CONST)) (-1943 (($ $ (-1001)) NIL) (($ $ (-589 (-1001))) NIL) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL) (($ $ (-710)) NIL) (($ $) NIL) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4223 (((-1169 |#1|) $) NIL)) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) 69)) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339)))) (-4115 (($ $) 72) (($ $ $) NIL)) (-4103 (($ $ $) 33)) (** (($ $ (-852)) NIL) (($ $ (-710)) 81)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 57) (($ $ $) 74) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) 55) (($ $ |#1|) NIL)))
-(((-652 |#1| |#2|) (-13 (-1145 |#1|) (-10 -8 (-15 -3655 (|#2| |#2|)) (-15 -3014 (|#2|)) (-15 -1830 ($ |#2|)) (-15 -1816 (|#2| $)) (-15 -3976 ($ |#2|)) (-15 -3028 ((-1169 |#1|) $)) (-15 -2751 ($ (-1169 |#1|))) (-15 -4223 ((-1169 |#1|) $)) (-15 -3269 ((-888 $))) (-15 -1853 ((-888 $))) (IF (|has| |#1| (-325)) (-15 -3902 ($ $)) |%noBranch|) (IF (|has| |#1| (-344)) (-6 (-344)) |%noBranch|))) (-973) (-1145 |#1|)) (T -652))
-((-3655 (*1 *2 *2) (-12 (-4 *3 (-973)) (-5 *1 (-652 *3 *2)) (-4 *2 (-1145 *3)))) (-3014 (*1 *2) (-12 (-4 *2 (-1145 *3)) (-5 *1 (-652 *3 *2)) (-4 *3 (-973)))) (-1830 (*1 *1 *2) (-12 (-4 *3 (-973)) (-5 *1 (-652 *3 *2)) (-4 *2 (-1145 *3)))) (-1816 (*1 *2 *1) (-12 (-4 *2 (-1145 *3)) (-5 *1 (-652 *3 *2)) (-4 *3 (-973)))) (-3976 (*1 *1 *2) (-12 (-4 *3 (-973)) (-5 *1 (-652 *3 *2)) (-4 *2 (-1145 *3)))) (-3028 (*1 *2 *1) (-12 (-4 *3 (-973)) (-5 *2 (-1169 *3)) (-5 *1 (-652 *3 *4)) (-4 *4 (-1145 *3)))) (-2751 (*1 *1 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-973)) (-5 *1 (-652 *3 *4)) (-4 *4 (-1145 *3)))) (-4223 (*1 *2 *1) (-12 (-4 *3 (-973)) (-5 *2 (-1169 *3)) (-5 *1 (-652 *3 *4)) (-4 *4 (-1145 *3)))) (-3269 (*1 *2) (-12 (-4 *3 (-973)) (-5 *2 (-888 (-652 *3 *4))) (-5 *1 (-652 *3 *4)) (-4 *4 (-1145 *3)))) (-1853 (*1 *2) (-12 (-4 *3 (-973)) (-5 *2 (-888 (-652 *3 *4))) (-5 *1 (-652 *3 *4)) (-4 *4 (-1145 *3)))) (-3902 (*1 *1 *1) (-12 (-4 *2 (-325)) (-4 *2 (-973)) (-5 *1 (-652 *2 *3)) (-4 *3 (-1145 *2)))))
-(-13 (-1145 |#1|) (-10 -8 (-15 -3655 (|#2| |#2|)) (-15 -3014 (|#2|)) (-15 -1830 ($ |#2|)) (-15 -1816 (|#2| $)) (-15 -3976 ($ |#2|)) (-15 -3028 ((-1169 |#1|) $)) (-15 -2751 ($ (-1169 |#1|))) (-15 -4223 ((-1169 |#1|) $)) (-15 -3269 ((-888 $))) (-15 -1853 ((-888 $))) (IF (|has| |#1| (-325)) (-15 -3902 ($ $)) |%noBranch|) (IF (|has| |#1| (-344)) (-6 (-344)) |%noBranch|)))
-((-3260 (((-108) $ $) NIL)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2557 ((|#1| $) 13)) (-2435 (((-1034) $) NIL)) (-3262 ((|#2| $) 12)) (-3985 (($ |#1| |#2|) 16)) (-3976 (((-794) $) NIL) (($ (-2 (|:| -2557 |#1|) (|:| -3262 |#2|))) 15) (((-2 (|:| -2557 |#1|) (|:| -3262 |#2|)) $) 14)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 11)))
-(((-653 |#1| |#2| |#3|) (-13 (-786) (-10 -8 (-15 -3262 (|#2| $)) (-15 -2557 (|#1| $)) (-15 -3976 ($ (-2 (|:| -2557 |#1|) (|:| -3262 |#2|)))) (-15 -3976 ((-2 (|:| -2557 |#1|) (|:| -3262 |#2|)) $)) (-15 -3985 ($ |#1| |#2|)))) (-786) (-1016) (-1 (-108) (-2 (|:| -2557 |#1|) (|:| -3262 |#2|)) (-2 (|:| -2557 |#1|) (|:| -3262 |#2|)))) (T -653))
-((-3262 (*1 *2 *1) (-12 (-4 *2 (-1016)) (-5 *1 (-653 *3 *2 *4)) (-4 *3 (-786)) (-14 *4 (-1 (-108) (-2 (|:| -2557 *3) (|:| -3262 *2)) (-2 (|:| -2557 *3) (|:| -3262 *2)))))) (-2557 (*1 *2 *1) (-12 (-4 *2 (-786)) (-5 *1 (-653 *2 *3 *4)) (-4 *3 (-1016)) (-14 *4 (-1 (-108) (-2 (|:| -2557 *2) (|:| -3262 *3)) (-2 (|:| -2557 *2) (|:| -3262 *3)))))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2557 *3) (|:| -3262 *4))) (-4 *3 (-786)) (-4 *4 (-1016)) (-5 *1 (-653 *3 *4 *5)) (-14 *5 (-1 (-108) *2 *2)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -2557 *3) (|:| -3262 *4))) (-5 *1 (-653 *3 *4 *5)) (-4 *3 (-786)) (-4 *4 (-1016)) (-14 *5 (-1 (-108) *2 *2)))) (-3985 (*1 *1 *2 *3) (-12 (-5 *1 (-653 *2 *3 *4)) (-4 *2 (-786)) (-4 *3 (-1016)) (-14 *4 (-1 (-108) (-2 (|:| -2557 *2) (|:| -3262 *3)) (-2 (|:| -2557 *2) (|:| -3262 *3)))))))
-(-13 (-786) (-10 -8 (-15 -3262 (|#2| $)) (-15 -2557 (|#1| $)) (-15 -3976 ($ (-2 (|:| -2557 |#1|) (|:| -3262 |#2|)))) (-15 -3976 ((-2 (|:| -2557 |#1|) (|:| -3262 |#2|)) $)) (-15 -3985 ($ |#1| |#2|))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 59)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) 89) (((-3 (-110) "failed") $) 95)) (-1996 ((|#1| $) NIL) (((-110) $) 39)) (-4211 (((-3 $ "failed") $) 90)) (-3576 ((|#2| (-110) |#2|) 82)) (-3482 (((-108) $) NIL)) (-1963 (($ |#1| (-337 (-110))) 14)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-1218 (($ $ (-1 |#2| |#2|)) 58)) (-2356 (($ $ (-1 |#2| |#2|)) 44)) (-1502 ((|#2| $ |#2|) 33)) (-4172 ((|#1| |#1|) 100 (|has| |#1| (-158)))) (-3976 (((-794) $) 66) (($ (-523)) 18) (($ |#1|) 17) (($ (-110)) 23)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) 37)) (-1910 (($ $) 99 (|has| |#1| (-158))) (($ $ $) 103 (|has| |#1| (-158)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 21 T CONST)) (-1440 (($) 9 T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) 48) (($ $ $) NIL)) (-4103 (($ $ $) 73)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ (-110) (-523)) NIL) (($ $ (-523)) 57)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 98) (($ $ $) 50) (($ |#1| $) 96 (|has| |#1| (-158))) (($ $ |#1|) 97 (|has| |#1| (-158)))))
-(((-654 |#1| |#2|) (-13 (-973) (-964 |#1|) (-964 (-110)) (-263 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-134)) (-6 (-134)) |%noBranch|) (IF (|has| |#1| (-158)) (PROGN (-6 (-37 |#1|)) (-15 -1910 ($ $)) (-15 -1910 ($ $ $)) (-15 -4172 (|#1| |#1|))) |%noBranch|) (-15 -2356 ($ $ (-1 |#2| |#2|))) (-15 -1218 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-110) (-523))) (-15 ** ($ $ (-523))) (-15 -3576 (|#2| (-110) |#2|)) (-15 -1963 ($ |#1| (-337 (-110)))))) (-973) (-591 |#1|)) (T -654))
-((-1910 (*1 *1 *1) (-12 (-4 *2 (-158)) (-4 *2 (-973)) (-5 *1 (-654 *2 *3)) (-4 *3 (-591 *2)))) (-1910 (*1 *1 *1 *1) (-12 (-4 *2 (-158)) (-4 *2 (-973)) (-5 *1 (-654 *2 *3)) (-4 *3 (-591 *2)))) (-4172 (*1 *2 *2) (-12 (-4 *2 (-158)) (-4 *2 (-973)) (-5 *1 (-654 *2 *3)) (-4 *3 (-591 *2)))) (-2356 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-591 *3)) (-4 *3 (-973)) (-5 *1 (-654 *3 *4)))) (-1218 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-591 *3)) (-4 *3 (-973)) (-5 *1 (-654 *3 *4)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-523)) (-4 *4 (-973)) (-5 *1 (-654 *4 *5)) (-4 *5 (-591 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-4 *3 (-973)) (-5 *1 (-654 *3 *4)) (-4 *4 (-591 *3)))) (-3576 (*1 *2 *3 *2) (-12 (-5 *3 (-110)) (-4 *4 (-973)) (-5 *1 (-654 *4 *2)) (-4 *2 (-591 *4)))) (-1963 (*1 *1 *2 *3) (-12 (-5 *3 (-337 (-110))) (-4 *2 (-973)) (-5 *1 (-654 *2 *4)) (-4 *4 (-591 *2)))))
-(-13 (-973) (-964 |#1|) (-964 (-110)) (-263 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-134)) (-6 (-134)) |%noBranch|) (IF (|has| |#1| (-158)) (PROGN (-6 (-37 |#1|)) (-15 -1910 ($ $)) (-15 -1910 ($ $ $)) (-15 -4172 (|#1| |#1|))) |%noBranch|) (-15 -2356 ($ $ (-1 |#2| |#2|))) (-15 -1218 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-110) (-523))) (-15 ** ($ $ (-523))) (-15 -3576 (|#2| (-110) |#2|)) (-15 -1963 ($ |#1| (-337 (-110))))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 33)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-1830 (($ |#1| |#2|) 25)) (-4211 (((-3 $ "failed") $) 48)) (-3482 (((-108) $) 35)) (-3014 ((|#2| $) 12)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 49)) (-2435 (((-1034) $) NIL)) (-2206 (((-3 $ "failed") $ $) 47)) (-3976 (((-794) $) 24) (($ (-523)) 19) ((|#1| $) 13)) (-1698 (((-710)) 28)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 16 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 38)) (-4115 (($ $) 43) (($ $ $) 37)) (-4103 (($ $ $) 40)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 21) (($ $ $) 20)))
-(((-655 |#1| |#2| |#3| |#4| |#5|) (-13 (-973) (-10 -8 (-15 -3014 (|#2| $)) (-15 -3976 (|#1| $)) (-15 -1830 ($ |#1| |#2|)) (-15 -2206 ((-3 $ "failed") $ $)) (-15 -4211 ((-3 $ "failed") $)) (-15 -3071 ($ $)))) (-158) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -655))
-((-4211 (*1 *1 *1) (|partial| -12 (-5 *1 (-655 *2 *3 *4 *5 *6)) (-4 *2 (-158)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3014 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-655 *3 *2 *4 *5 *6)) (-4 *3 (-158)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-3976 (*1 *2 *1) (-12 (-4 *2 (-158)) (-5 *1 (-655 *2 *3 *4 *5 *6)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-1830 (*1 *1 *2 *3) (-12 (-5 *1 (-655 *2 *3 *4 *5 *6)) (-4 *2 (-158)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-2206 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-655 *2 *3 *4 *5 *6)) (-4 *2 (-158)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3071 (*1 *1 *1) (-12 (-5 *1 (-655 *2 *3 *4 *5 *6)) (-4 *2 (-158)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
-(-13 (-973) (-10 -8 (-15 -3014 (|#2| $)) (-15 -3976 (|#1| $)) (-15 -1830 ($ |#1| |#2|)) (-15 -2206 ((-3 $ "failed") $ $)) (-15 -4211 ((-3 $ "failed") $)) (-15 -3071 ($ $))))
-((* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ |#2| $) NIL) (($ $ |#2|) 9)))
-(((-656 |#1| |#2|) (-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-852) |#1|))) (-657 |#2|) (-158)) (T -656))
-NIL
-(-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-852) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
-(((-657 |#1|) (-129) (-158)) (T -657))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 15)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1738 ((|#1| $) 21)) (-3741 (($ $ $) NIL (|has| |#1| (-732)))) (-2478 (($ $ $) NIL (|has| |#1| (-732)))) (-2339 (((-1072) $) 46)) (-2047 (((-1036) $) NIL)) (-1754 ((|#3| $) 22)) (-3022 (((-796) $) 42)) (-4191 (($) 10 T CONST)) (-4135 (((-108) $ $) NIL (|has| |#1| (-732)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-732)))) (-4096 (((-108) $ $) 20)) (-4126 (((-108) $ $) NIL (|has| |#1| (-732)))) (-4112 (((-108) $ $) 24 (|has| |#1| (-732)))) (-4173 (($ $ |#3|) 34) (($ |#1| |#3|) 35)) (-4164 (($ $) 17) (($ $ $) NIL)) (-4156 (($ $ $) 27)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 30) (($ |#2| $) 32) (($ $ |#2|) NIL)))
+(((-607 |#1| |#2| |#3|) (-13 (-659 |#2|) (-10 -8 (IF (|has| |#1| (-732)) (-6 (-732)) |%noBranch|) (-15 -4173 ($ $ |#3|)) (-15 -4173 ($ |#1| |#3|)) (-15 -1738 (|#1| $)) (-15 -1754 (|#3| $)))) (-659 |#2|) (-160) (|SubsetCategory| (-668) |#2|)) (T -607))
+((-4173 (*1 *1 *1 *2) (-12 (-4 *4 (-160)) (-5 *1 (-607 *3 *4 *2)) (-4 *3 (-659 *4)) (-4 *2 (|SubsetCategory| (-668) *4)))) (-4173 (*1 *1 *2 *3) (-12 (-4 *4 (-160)) (-5 *1 (-607 *2 *4 *3)) (-4 *2 (-659 *4)) (-4 *3 (|SubsetCategory| (-668) *4)))) (-1738 (*1 *2 *1) (-12 (-4 *3 (-160)) (-4 *2 (-659 *3)) (-5 *1 (-607 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-668) *3)))) (-1754 (*1 *2 *1) (-12 (-4 *4 (-160)) (-4 *2 (|SubsetCategory| (-668) *4)) (-5 *1 (-607 *3 *4 *2)) (-4 *3 (-659 *4)))))
+(-13 (-659 |#2|) (-10 -8 (IF (|has| |#1| (-732)) (-6 (-732)) |%noBranch|) (-15 -4173 ($ $ |#3|)) (-15 -4173 ($ |#1| |#3|)) (-15 -1738 (|#1| $)) (-15 -1754 (|#3| $))))
+((-3175 (((-3 (-591 (-1085 |#1|)) "failed") (-591 (-1085 |#1|)) (-1085 |#1|)) 33)))
+(((-608 |#1|) (-10 -7 (-15 -3175 ((-3 (-591 (-1085 |#1|)) "failed") (-591 (-1085 |#1|)) (-1085 |#1|)))) (-842)) (T -608))
+((-3175 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-591 (-1085 *4))) (-5 *3 (-1085 *4)) (-4 *4 (-842)) (-5 *1 (-608 *4)))))
+(-10 -7 (-15 -3175 ((-3 (-591 (-1085 |#1|)) "failed") (-591 (-1085 |#1|)) (-1085 |#1|))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3531 (((-591 |#1|) $) 82)) (-1931 (($ $ (-712)) 90)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1584 (((-1193 |#1| |#2|) (-1193 |#1| |#2|) $) 48)) (-1251 (((-3 (-616 |#1|) "failed") $) NIL)) (-3528 (((-616 |#1|) $) NIL)) (-1710 (($ $) 89)) (-4010 (((-712) $) NIL)) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-2548 (($ (-616 |#1|) |#2|) 68)) (-2457 (($ $) 86)) (-1340 (($ (-1 |#2| |#2|) $) NIL)) (-2811 (((-1193 |#1| |#2|) (-1193 |#1| |#2|) $) 47)) (-3865 (((-2 (|:| |k| (-616 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1661 (((-616 |#1|) $) NIL)) (-1678 ((|#2| $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-4132 (($ $ |#1| $) 30) (($ $ (-591 |#1|) (-591 $)) 32)) (-1316 (((-712) $) 88)) (-3036 (($ $ $) 20) (($ (-616 |#1|) (-616 |#1|)) 77) (($ (-616 |#1|) $) 75) (($ $ (-616 |#1|)) 76)) (-3022 (((-796) $) NIL) (($ |#1|) 74) (((-1184 |#1| |#2|) $) 58) (((-1193 |#1| |#2|) $) 41) (($ (-616 |#1|)) 25)) (-3654 (((-591 |#2|) $) NIL)) (-2560 ((|#2| $ (-616 |#1|)) NIL)) (-3482 ((|#2| (-1193 |#1| |#2|) $) 43)) (-4191 (($) 23 T CONST)) (-1650 (((-591 (-2 (|:| |k| (-616 |#1|)) (|:| |c| |#2|))) $) NIL)) (-3769 (((-3 $ "failed") (-1184 |#1| |#2|)) 60)) (-4031 (($ (-616 |#1|)) 14)) (-4096 (((-108) $ $) 44)) (-4173 (($ $ |#2|) NIL (|has| |#2| (-341)))) (-4164 (($ $) 66) (($ $ $) NIL)) (-4156 (($ $ $) 29)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ |#2| $) 28) (($ $ |#2|) NIL) (($ |#2| (-616 |#1|)) NIL)))
+(((-609 |#1| |#2|) (-13 (-352 |#1| |#2|) (-360 |#2| (-616 |#1|)) (-10 -8 (-15 -3769 ((-3 $ "failed") (-1184 |#1| |#2|))) (-15 -3036 ($ (-616 |#1|) (-616 |#1|))) (-15 -3036 ($ (-616 |#1|) $)) (-15 -3036 ($ $ (-616 |#1|))))) (-788) (-160)) (T -609))
+((-3769 (*1 *1 *2) (|partial| -12 (-5 *2 (-1184 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160)) (-5 *1 (-609 *3 *4)))) (-3036 (*1 *1 *2 *2) (-12 (-5 *2 (-616 *3)) (-4 *3 (-788)) (-5 *1 (-609 *3 *4)) (-4 *4 (-160)))) (-3036 (*1 *1 *2 *1) (-12 (-5 *2 (-616 *3)) (-4 *3 (-788)) (-5 *1 (-609 *3 *4)) (-4 *4 (-160)))) (-3036 (*1 *1 *1 *2) (-12 (-5 *2 (-616 *3)) (-4 *3 (-788)) (-5 *1 (-609 *3 *4)) (-4 *4 (-160)))))
+(-13 (-352 |#1| |#2|) (-360 |#2| (-616 |#1|)) (-10 -8 (-15 -3769 ((-3 $ "failed") (-1184 |#1| |#2|))) (-15 -3036 ($ (-616 |#1|) (-616 |#1|))) (-15 -3036 ($ (-616 |#1|) $)) (-15 -3036 ($ $ (-616 |#1|)))))
+((-3203 (((-108) $) NIL) (((-108) (-1 (-108) |#2| |#2|) $) 50)) (-4026 (($ $) NIL) (($ (-1 (-108) |#2| |#2|) $) 12)) (-1797 (($ (-1 (-108) |#2|) $) 28)) (-2598 (($ $) 56)) (-3611 (($ $) 64)) (-3901 (($ |#2| $) NIL) (($ (-1 (-108) |#2|) $) 37)) (-1227 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 51) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 53)) (-3004 (((-525) |#2| $ (-525)) 61) (((-525) |#2| $) NIL) (((-525) (-1 (-108) |#2|) $) 47)) (-1268 (($ (-712) |#2|) 54)) (-2921 (($ $ $) NIL) (($ (-1 (-108) |#2| |#2|) $ $) 30)) (-2131 (($ $ $) NIL) (($ (-1 (-108) |#2| |#2|) $ $) 24)) (-1340 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 55)) (-2932 (($ |#2|) 15)) (-2470 (($ $ $ (-525)) 36) (($ |#2| $ (-525)) 34)) (-2069 (((-3 |#2| "failed") (-1 (-108) |#2|) $) 46)) (-1790 (($ $ (-1138 (-525))) 44) (($ $ (-525)) 38)) (-4063 (($ $ $ (-525)) 60)) (-3199 (($ $) 58)) (-4112 (((-108) $ $) 66)))
+(((-610 |#1| |#2|) (-10 -8 (-15 -2932 (|#1| |#2|)) (-15 -1790 (|#1| |#1| (-525))) (-15 -1790 (|#1| |#1| (-1138 (-525)))) (-15 -3901 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -2470 (|#1| |#2| |#1| (-525))) (-15 -2470 (|#1| |#1| |#1| (-525))) (-15 -2921 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -1797 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3901 (|#1| |#2| |#1|)) (-15 -3611 (|#1| |#1|)) (-15 -2921 (|#1| |#1| |#1|)) (-15 -2131 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -3203 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3004 ((-525) (-1 (-108) |#2|) |#1|)) (-15 -3004 ((-525) |#2| |#1|)) (-15 -3004 ((-525) |#2| |#1| (-525))) (-15 -2131 (|#1| |#1| |#1|)) (-15 -3203 ((-108) |#1|)) (-15 -4063 (|#1| |#1| |#1| (-525))) (-15 -2598 (|#1| |#1|)) (-15 -4026 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -4026 (|#1| |#1|)) (-15 -4112 ((-108) |#1| |#1|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2069 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -1268 (|#1| (-712) |#2|)) (-15 -1340 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3199 (|#1| |#1|))) (-611 |#2|) (-1125)) (T -610))
+NIL
+(-10 -8 (-15 -2932 (|#1| |#2|)) (-15 -1790 (|#1| |#1| (-525))) (-15 -1790 (|#1| |#1| (-1138 (-525)))) (-15 -3901 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -2470 (|#1| |#2| |#1| (-525))) (-15 -2470 (|#1| |#1| |#1| (-525))) (-15 -2921 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -1797 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3901 (|#1| |#2| |#1|)) (-15 -3611 (|#1| |#1|)) (-15 -2921 (|#1| |#1| |#1|)) (-15 -2131 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -3203 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3004 ((-525) (-1 (-108) |#2|) |#1|)) (-15 -3004 ((-525) |#2| |#1|)) (-15 -3004 ((-525) |#2| |#1| (-525))) (-15 -2131 (|#1| |#1| |#1|)) (-15 -3203 ((-108) |#1|)) (-15 -4063 (|#1| |#1| |#1| (-525))) (-15 -2598 (|#1| |#1|)) (-15 -4026 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -4026 (|#1| |#1|)) (-15 -4112 ((-108) |#1| |#1|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1227 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2069 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -1268 (|#1| (-712) |#2|)) (-15 -1340 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3199 (|#1| |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3024 ((|#1| $) 48)) (-3161 ((|#1| $) 65)) (-3970 (($ $) 67)) (-3296 (((-1176) $ (-525) (-525)) 97 (|has| $ (-6 -4251)))) (-3463 (($ $ (-525)) 52 (|has| $ (-6 -4251)))) (-3203 (((-108) $) 142 (|has| |#1| (-788))) (((-108) (-1 (-108) |#1| |#1|) $) 136)) (-4026 (($ $) 146 (-12 (|has| |#1| (-788)) (|has| $ (-6 -4251)))) (($ (-1 (-108) |#1| |#1|) $) 145 (|has| $ (-6 -4251)))) (-3327 (($ $) 141 (|has| |#1| (-788))) (($ (-1 (-108) |#1| |#1|) $) 135)) (-3891 (((-108) $ (-712)) 8)) (-1780 ((|#1| $ |#1|) 39 (|has| $ (-6 -4251)))) (-2146 (($ $ $) 56 (|has| $ (-6 -4251)))) (-2640 ((|#1| $ |#1|) 54 (|has| $ (-6 -4251)))) (-1901 ((|#1| $ |#1|) 58 (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4251))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4251))) (($ $ "rest" $) 55 (|has| $ (-6 -4251))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) 117 (|has| $ (-6 -4251))) ((|#1| $ (-525) |#1|) 86 (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) 41 (|has| $ (-6 -4251)))) (-1797 (($ (-1 (-108) |#1|) $) 129)) (-2305 (($ (-1 (-108) |#1|) $) 102 (|has| $ (-6 -4250)))) (-3149 ((|#1| $) 66)) (-3798 (($) 7 T CONST)) (-2598 (($ $) 144 (|has| $ (-6 -4251)))) (-2617 (($ $) 134)) (-3078 (($ $) 73) (($ $ (-712)) 71)) (-3611 (($ $) 131 (|has| |#1| (-1018)))) (-3098 (($ $) 99 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3901 (($ |#1| $) 130 (|has| |#1| (-1018))) (($ (-1 (-108) |#1|) $) 125)) (-3677 (($ (-1 (-108) |#1|) $) 103 (|has| $ (-6 -4250))) (($ |#1| $) 100 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3255 ((|#1| $ (-525) |#1|) 85 (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) 87)) (-3629 (((-108) $) 83)) (-3004 (((-525) |#1| $ (-525)) 139 (|has| |#1| (-1018))) (((-525) |#1| $) 138 (|has| |#1| (-1018))) (((-525) (-1 (-108) |#1|) $) 137)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) 50)) (-2148 (((-108) $ $) 42 (|has| |#1| (-1018)))) (-1268 (($ (-712) |#1|) 108)) (-2910 (((-108) $ (-712)) 9)) (-3630 (((-525) $) 95 (|has| (-525) (-788)))) (-3741 (($ $ $) 147 (|has| |#1| (-788)))) (-2921 (($ $ $) 132 (|has| |#1| (-788))) (($ (-1 (-108) |#1| |#1|) $ $) 128)) (-2131 (($ $ $) 140 (|has| |#1| (-788))) (($ (-1 (-108) |#1| |#1|) $ $) 133)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3468 (((-525) $) 94 (|has| (-525) (-788)))) (-2478 (($ $ $) 148 (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-2932 (($ |#1|) 122)) (-3971 (((-108) $ (-712)) 10)) (-2599 (((-591 |#1|) $) 45)) (-1203 (((-108) $) 49)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-3708 ((|#1| $) 70) (($ $ (-712)) 68)) (-2470 (($ $ $ (-525)) 127) (($ |#1| $ (-525)) 126)) (-4189 (($ $ $ (-525)) 116) (($ |#1| $ (-525)) 115)) (-2511 (((-591 (-525)) $) 92)) (-2791 (((-108) (-525) $) 91)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-3066 ((|#1| $) 76) (($ $ (-712)) 74)) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 106)) (-1941 (($ $ |#1|) 96 (|has| $ (-6 -4251)))) (-3566 (((-108) $) 84)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-1615 (((-108) |#1| $) 93 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) 90)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1138 (-525))) 112) ((|#1| $ (-525)) 89) ((|#1| $ (-525) |#1|) 88)) (-3505 (((-525) $ $) 44)) (-1790 (($ $ (-1138 (-525))) 124) (($ $ (-525)) 123)) (-2777 (($ $ (-1138 (-525))) 114) (($ $ (-525)) 113)) (-2237 (((-108) $) 46)) (-3820 (($ $) 62)) (-2609 (($ $) 59 (|has| $ (-6 -4251)))) (-3641 (((-712) $) 63)) (-1387 (($ $) 64)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-4063 (($ $ $ (-525)) 143 (|has| $ (-6 -4251)))) (-3199 (($ $) 13)) (-1408 (((-501) $) 98 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 107)) (-1679 (($ $ $) 61) (($ $ |#1|) 60)) (-3690 (($ $ $) 78) (($ |#1| $) 77) (($ (-591 $)) 110) (($ $ |#1|) 109)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) 51)) (-1632 (((-108) $ $) 43 (|has| |#1| (-1018)))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) 150 (|has| |#1| (-788)))) (-4119 (((-108) $ $) 151 (|has| |#1| (-788)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4126 (((-108) $ $) 149 (|has| |#1| (-788)))) (-4112 (((-108) $ $) 152 (|has| |#1| (-788)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-611 |#1|) (-131) (-1125)) (T -611))
+((-2932 (*1 *1 *2) (-12 (-4 *1 (-611 *2)) (-4 *2 (-1125)))))
+(-13 (-1063 |t#1|) (-351 |t#1|) (-261 |t#1|) (-10 -8 (-15 -2932 ($ |t#1|))))
+(((-33) . T) ((-97) -3321 (|has| |#1| (-1018)) (|has| |#1| (-788))) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-788)) (|has| |#1| (-565 (-796)))) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-265 #0=(-525) |#1|) . T) ((-267 #0# |#1|) . T) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-261 |#1|) . T) ((-351 |#1|) . T) ((-464 |#1|) . T) ((-558 #0# |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-596 |#1|) . T) ((-788) |has| |#1| (-788)) ((-940 |#1|) . T) ((-1018) -3321 (|has| |#1| (-1018)) (|has| |#1| (-788))) ((-1063 |#1|) . T) ((-1125) . T) ((-1159 |#1|) . T))
+((-4039 (((-591 (-2 (|:| |particular| (-3 (-1171 |#1|) "failed")) (|:| -4003 (-591 (-1171 |#1|))))) (-591 (-591 |#1|)) (-591 (-1171 |#1|))) 22) (((-591 (-2 (|:| |particular| (-3 (-1171 |#1|) "failed")) (|:| -4003 (-591 (-1171 |#1|))))) (-631 |#1|) (-591 (-1171 |#1|))) 21) (((-2 (|:| |particular| (-3 (-1171 |#1|) "failed")) (|:| -4003 (-591 (-1171 |#1|)))) (-591 (-591 |#1|)) (-1171 |#1|)) 18) (((-2 (|:| |particular| (-3 (-1171 |#1|) "failed")) (|:| -4003 (-591 (-1171 |#1|)))) (-631 |#1|) (-1171 |#1|)) 14)) (-4073 (((-712) (-631 |#1|) (-1171 |#1|)) 30)) (-2044 (((-3 (-1171 |#1|) "failed") (-631 |#1|) (-1171 |#1|)) 24)) (-3832 (((-108) (-631 |#1|) (-1171 |#1|)) 27)))
+(((-612 |#1|) (-10 -7 (-15 -4039 ((-2 (|:| |particular| (-3 (-1171 |#1|) "failed")) (|:| -4003 (-591 (-1171 |#1|)))) (-631 |#1|) (-1171 |#1|))) (-15 -4039 ((-2 (|:| |particular| (-3 (-1171 |#1|) "failed")) (|:| -4003 (-591 (-1171 |#1|)))) (-591 (-591 |#1|)) (-1171 |#1|))) (-15 -4039 ((-591 (-2 (|:| |particular| (-3 (-1171 |#1|) "failed")) (|:| -4003 (-591 (-1171 |#1|))))) (-631 |#1|) (-591 (-1171 |#1|)))) (-15 -4039 ((-591 (-2 (|:| |particular| (-3 (-1171 |#1|) "failed")) (|:| -4003 (-591 (-1171 |#1|))))) (-591 (-591 |#1|)) (-591 (-1171 |#1|)))) (-15 -2044 ((-3 (-1171 |#1|) "failed") (-631 |#1|) (-1171 |#1|))) (-15 -3832 ((-108) (-631 |#1|) (-1171 |#1|))) (-15 -4073 ((-712) (-631 |#1|) (-1171 |#1|)))) (-341)) (T -612))
+((-4073 (*1 *2 *3 *4) (-12 (-5 *3 (-631 *5)) (-5 *4 (-1171 *5)) (-4 *5 (-341)) (-5 *2 (-712)) (-5 *1 (-612 *5)))) (-3832 (*1 *2 *3 *4) (-12 (-5 *3 (-631 *5)) (-5 *4 (-1171 *5)) (-4 *5 (-341)) (-5 *2 (-108)) (-5 *1 (-612 *5)))) (-2044 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1171 *4)) (-5 *3 (-631 *4)) (-4 *4 (-341)) (-5 *1 (-612 *4)))) (-4039 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-591 *5))) (-4 *5 (-341)) (-5 *2 (-591 (-2 (|:| |particular| (-3 (-1171 *5) "failed")) (|:| -4003 (-591 (-1171 *5)))))) (-5 *1 (-612 *5)) (-5 *4 (-591 (-1171 *5))))) (-4039 (*1 *2 *3 *4) (-12 (-5 *3 (-631 *5)) (-4 *5 (-341)) (-5 *2 (-591 (-2 (|:| |particular| (-3 (-1171 *5) "failed")) (|:| -4003 (-591 (-1171 *5)))))) (-5 *1 (-612 *5)) (-5 *4 (-591 (-1171 *5))))) (-4039 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-591 *5))) (-4 *5 (-341)) (-5 *2 (-2 (|:| |particular| (-3 (-1171 *5) "failed")) (|:| -4003 (-591 (-1171 *5))))) (-5 *1 (-612 *5)) (-5 *4 (-1171 *5)))) (-4039 (*1 *2 *3 *4) (-12 (-5 *3 (-631 *5)) (-4 *5 (-341)) (-5 *2 (-2 (|:| |particular| (-3 (-1171 *5) "failed")) (|:| -4003 (-591 (-1171 *5))))) (-5 *1 (-612 *5)) (-5 *4 (-1171 *5)))))
+(-10 -7 (-15 -4039 ((-2 (|:| |particular| (-3 (-1171 |#1|) "failed")) (|:| -4003 (-591 (-1171 |#1|)))) (-631 |#1|) (-1171 |#1|))) (-15 -4039 ((-2 (|:| |particular| (-3 (-1171 |#1|) "failed")) (|:| -4003 (-591 (-1171 |#1|)))) (-591 (-591 |#1|)) (-1171 |#1|))) (-15 -4039 ((-591 (-2 (|:| |particular| (-3 (-1171 |#1|) "failed")) (|:| -4003 (-591 (-1171 |#1|))))) (-631 |#1|) (-591 (-1171 |#1|)))) (-15 -4039 ((-591 (-2 (|:| |particular| (-3 (-1171 |#1|) "failed")) (|:| -4003 (-591 (-1171 |#1|))))) (-591 (-591 |#1|)) (-591 (-1171 |#1|)))) (-15 -2044 ((-3 (-1171 |#1|) "failed") (-631 |#1|) (-1171 |#1|))) (-15 -3832 ((-108) (-631 |#1|) (-1171 |#1|))) (-15 -4073 ((-712) (-631 |#1|) (-1171 |#1|))))
+((-4039 (((-591 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4003 (-591 |#3|)))) |#4| (-591 |#3|)) 47) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4003 (-591 |#3|))) |#4| |#3|) 45)) (-4073 (((-712) |#4| |#3|) 17)) (-2044 (((-3 |#3| "failed") |#4| |#3|) 20)) (-3832 (((-108) |#4| |#3|) 13)))
+(((-613 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4039 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4003 (-591 |#3|))) |#4| |#3|)) (-15 -4039 ((-591 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4003 (-591 |#3|)))) |#4| (-591 |#3|))) (-15 -2044 ((-3 |#3| "failed") |#4| |#3|)) (-15 -3832 ((-108) |#4| |#3|)) (-15 -4073 ((-712) |#4| |#3|))) (-341) (-13 (-351 |#1|) (-10 -7 (-6 -4251))) (-13 (-351 |#1|) (-10 -7 (-6 -4251))) (-629 |#1| |#2| |#3|)) (T -613))
+((-4073 (*1 *2 *3 *4) (-12 (-4 *5 (-341)) (-4 *6 (-13 (-351 *5) (-10 -7 (-6 -4251)))) (-4 *4 (-13 (-351 *5) (-10 -7 (-6 -4251)))) (-5 *2 (-712)) (-5 *1 (-613 *5 *6 *4 *3)) (-4 *3 (-629 *5 *6 *4)))) (-3832 (*1 *2 *3 *4) (-12 (-4 *5 (-341)) (-4 *6 (-13 (-351 *5) (-10 -7 (-6 -4251)))) (-4 *4 (-13 (-351 *5) (-10 -7 (-6 -4251)))) (-5 *2 (-108)) (-5 *1 (-613 *5 *6 *4 *3)) (-4 *3 (-629 *5 *6 *4)))) (-2044 (*1 *2 *3 *2) (|partial| -12 (-4 *4 (-341)) (-4 *5 (-13 (-351 *4) (-10 -7 (-6 -4251)))) (-4 *2 (-13 (-351 *4) (-10 -7 (-6 -4251)))) (-5 *1 (-613 *4 *5 *2 *3)) (-4 *3 (-629 *4 *5 *2)))) (-4039 (*1 *2 *3 *4) (-12 (-4 *5 (-341)) (-4 *6 (-13 (-351 *5) (-10 -7 (-6 -4251)))) (-4 *7 (-13 (-351 *5) (-10 -7 (-6 -4251)))) (-5 *2 (-591 (-2 (|:| |particular| (-3 *7 "failed")) (|:| -4003 (-591 *7))))) (-5 *1 (-613 *5 *6 *7 *3)) (-5 *4 (-591 *7)) (-4 *3 (-629 *5 *6 *7)))) (-4039 (*1 *2 *3 *4) (-12 (-4 *5 (-341)) (-4 *6 (-13 (-351 *5) (-10 -7 (-6 -4251)))) (-4 *4 (-13 (-351 *5) (-10 -7 (-6 -4251)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4)))) (-5 *1 (-613 *5 *6 *4 *3)) (-4 *3 (-629 *5 *6 *4)))))
+(-10 -7 (-15 -4039 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4003 (-591 |#3|))) |#4| |#3|)) (-15 -4039 ((-591 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4003 (-591 |#3|)))) |#4| (-591 |#3|))) (-15 -2044 ((-3 |#3| "failed") |#4| |#3|)) (-15 -3832 ((-108) |#4| |#3|)) (-15 -4073 ((-712) |#4| |#3|)))
+((-3104 (((-2 (|:| |particular| (-3 (-1171 (-385 |#4|)) "failed")) (|:| -4003 (-591 (-1171 (-385 |#4|))))) (-591 |#4|) (-591 |#3|)) 45)))
+(((-614 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3104 ((-2 (|:| |particular| (-3 (-1171 (-385 |#4|)) "failed")) (|:| -4003 (-591 (-1171 (-385 |#4|))))) (-591 |#4|) (-591 |#3|)))) (-517) (-734) (-788) (-882 |#1| |#2| |#3|)) (T -614))
+((-3104 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *8)) (-5 *4 (-591 *7)) (-4 *7 (-788)) (-4 *8 (-882 *5 *6 *7)) (-4 *5 (-517)) (-4 *6 (-734)) (-5 *2 (-2 (|:| |particular| (-3 (-1171 (-385 *8)) "failed")) (|:| -4003 (-591 (-1171 (-385 *8)))))) (-5 *1 (-614 *5 *6 *7 *8)))))
+(-10 -7 (-15 -3104 ((-2 (|:| |particular| (-3 (-1171 (-385 |#4|)) "failed")) (|:| -4003 (-591 (-1171 (-385 |#4|))))) (-591 |#4|) (-591 |#3|))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2999 (((-3 $ "failed")) NIL (|has| |#2| (-517)))) (-2569 ((|#2| $) NIL)) (-1290 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1593 (((-1171 (-631 |#2|))) NIL) (((-1171 (-631 |#2|)) (-1171 $)) NIL)) (-3079 (((-108) $) NIL)) (-2608 (((-1171 $)) 37)) (-3891 (((-108) $ (-712)) NIL)) (-1504 (($ |#2|) NIL)) (-3798 (($) NIL T CONST)) (-2753 (($ $) NIL (|has| |#2| (-286)))) (-3725 (((-220 |#1| |#2|) $ (-525)) NIL)) (-3160 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) NIL (|has| |#2| (-517)))) (-3624 (((-3 $ "failed")) NIL (|has| |#2| (-517)))) (-4094 (((-631 |#2|)) NIL) (((-631 |#2|) (-1171 $)) NIL)) (-4011 ((|#2| $) NIL)) (-3711 (((-631 |#2|) $) NIL) (((-631 |#2|) $ (-1171 $)) NIL)) (-3057 (((-3 $ "failed") $) NIL (|has| |#2| (-517)))) (-2550 (((-1085 (-885 |#2|))) NIL (|has| |#2| (-341)))) (-3433 (($ $ (-854)) NIL)) (-3996 ((|#2| $) NIL)) (-3473 (((-1085 |#2|) $) NIL (|has| |#2| (-517)))) (-2449 ((|#2|) NIL) ((|#2| (-1171 $)) NIL)) (-3158 (((-1085 |#2|) $) NIL)) (-2772 (((-108)) NIL)) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#2| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#2| (-966 (-385 (-525))))) (((-3 |#2| "failed") $) NIL)) (-3528 (((-525) $) NIL (|has| |#2| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#2| (-966 (-385 (-525))))) ((|#2| $) NIL)) (-4171 (($ (-1171 |#2|)) NIL) (($ (-1171 |#2|) (-1171 $)) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) NIL) (((-631 |#2|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-4073 (((-712) $) NIL (|has| |#2| (-517))) (((-854)) 38)) (-3217 ((|#2| $ (-525) (-525)) NIL)) (-3401 (((-108)) NIL)) (-2462 (($ $ (-854)) NIL)) (-3454 (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2824 (((-108) $) NIL)) (-2482 (((-712) $) NIL (|has| |#2| (-517)))) (-2634 (((-591 (-220 |#1| |#2|)) $) NIL (|has| |#2| (-517)))) (-2281 (((-712) $) NIL)) (-3915 (((-108)) NIL)) (-2296 (((-712) $) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-2807 ((|#2| $) NIL (|has| |#2| (-6 (-4252 "*"))))) (-1755 (((-525) $) NIL)) (-1639 (((-525) $) NIL)) (-2552 (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-4230 (((-525) $) NIL)) (-2631 (((-525) $) NIL)) (-3393 (($ (-591 (-591 |#2|))) NIL)) (-3249 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-3349 (((-591 (-591 |#2|)) $) NIL)) (-2590 (((-108)) NIL)) (-2248 (((-108)) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-3121 (((-3 (-2 (|:| |particular| $) (|:| -4003 (-591 $))) "failed")) NIL (|has| |#2| (-517)))) (-2659 (((-3 $ "failed")) NIL (|has| |#2| (-517)))) (-1548 (((-631 |#2|)) NIL) (((-631 |#2|) (-1171 $)) NIL)) (-4032 ((|#2| $) NIL)) (-3793 (((-631 |#2|) $) NIL) (((-631 |#2|) $ (-1171 $)) NIL)) (-1838 (((-3 $ "failed") $) NIL (|has| |#2| (-517)))) (-1308 (((-1085 (-885 |#2|))) NIL (|has| |#2| (-341)))) (-3447 (($ $ (-854)) NIL)) (-3018 ((|#2| $) NIL)) (-1858 (((-1085 |#2|) $) NIL (|has| |#2| (-517)))) (-1368 ((|#2|) NIL) ((|#2| (-1171 $)) NIL)) (-2253 (((-1085 |#2|) $) NIL)) (-2448 (((-108)) NIL)) (-2339 (((-1072) $) NIL)) (-1407 (((-108)) NIL)) (-3704 (((-108)) NIL)) (-2688 (((-108)) NIL)) (-1914 (((-3 $ "failed") $) NIL (|has| |#2| (-341)))) (-2047 (((-1036) $) NIL)) (-4160 (((-108)) NIL)) (-2089 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-517)))) (-1623 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#2|))) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#2| $ (-525) (-525) |#2|) NIL) ((|#2| $ (-525) (-525)) 22) ((|#2| $ (-525)) NIL)) (-3266 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-712)) NIL (|has| |#2| (-213))) (($ $) NIL (|has| |#2| (-213)))) (-3499 ((|#2| $) NIL)) (-3487 (($ (-591 |#2|)) NIL)) (-2740 (((-108) $) NIL)) (-4067 (((-220 |#1| |#2|) $) NIL)) (-2238 ((|#2| $) NIL (|has| |#2| (-6 (-4252 "*"))))) (-2064 (((-712) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250))) (((-712) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3199 (($ $) NIL)) (-3572 (((-631 |#2|) (-1171 $)) NIL) (((-1171 |#2|) $) NIL) (((-631 |#2|) (-1171 $) (-1171 $)) NIL) (((-1171 |#2|) $ (-1171 $)) 25)) (-1408 (($ (-1171 |#2|)) NIL) (((-1171 |#2|) $) NIL)) (-2117 (((-591 (-885 |#2|))) NIL) (((-591 (-885 |#2|)) (-1171 $)) NIL)) (-3619 (($ $ $) NIL)) (-1806 (((-108)) NIL)) (-1793 (((-220 |#1| |#2|) $ (-525)) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ (-385 (-525))) NIL (|has| |#2| (-966 (-385 (-525))))) (($ |#2|) NIL) (((-631 |#2|) $) NIL)) (-2128 (((-712)) NIL)) (-4003 (((-1171 $)) 36)) (-1640 (((-591 (-1171 |#2|))) NIL (|has| |#2| (-517)))) (-2392 (($ $ $ $) NIL)) (-2938 (((-108)) NIL)) (-3005 (($ (-631 |#2|) $) NIL)) (-4158 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-3489 (((-108) $) NIL)) (-2707 (($ $ $) NIL)) (-2826 (((-108)) NIL)) (-1532 (((-108)) NIL)) (-1307 (((-108)) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-712)) NIL (|has| |#2| (-213))) (($ $) NIL (|has| |#2| (-213)))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ |#2|) NIL (|has| |#2| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#2| (-341)))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-220 |#1| |#2|) $ (-220 |#1| |#2|)) NIL) (((-220 |#1| |#2|) (-220 |#1| |#2|) $) NIL)) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-615 |#1| |#2|) (-13 (-1039 |#1| |#2| (-220 |#1| |#2|) (-220 |#1| |#2|)) (-565 (-631 |#2|)) (-395 |#2|)) (-854) (-160)) (T -615))
+NIL
+(-13 (-1039 |#1| |#2| (-220 |#1| |#2|) (-220 |#1| |#2|)) (-565 (-631 |#2|)) (-395 |#2|))
+((-3008 (((-108) $ $) NIL)) (-3531 (((-591 |#1|) $) NIL)) (-3400 (($ $) 52)) (-2600 (((-108) $) NIL)) (-1251 (((-3 |#1| "failed") $) NIL)) (-3528 ((|#1| $) NIL)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2050 (((-3 $ "failed") (-760 |#1|)) 23)) (-2240 (((-108) (-760 |#1|)) 15)) (-1708 (($ (-760 |#1|)) 24)) (-2843 (((-108) $ $) 30)) (-1657 (((-854) $) 37)) (-3388 (($ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1348 (((-591 $) (-760 |#1|)) 17)) (-3022 (((-796) $) 43) (($ |#1|) 34) (((-760 |#1|) $) 39) (((-620 |#1|) $) 44)) (-1849 (((-57 (-591 $)) (-591 |#1|) (-854)) 57)) (-1273 (((-591 $) (-591 |#1|) (-854)) 60)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 53)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 38)))
+(((-616 |#1|) (-13 (-788) (-966 |#1|) (-10 -8 (-15 -2600 ((-108) $)) (-15 -3388 ($ $)) (-15 -3400 ($ $)) (-15 -1657 ((-854) $)) (-15 -2843 ((-108) $ $)) (-15 -3022 ((-760 |#1|) $)) (-15 -3022 ((-620 |#1|) $)) (-15 -1348 ((-591 $) (-760 |#1|))) (-15 -2240 ((-108) (-760 |#1|))) (-15 -1708 ($ (-760 |#1|))) (-15 -2050 ((-3 $ "failed") (-760 |#1|))) (-15 -3531 ((-591 |#1|) $)) (-15 -1849 ((-57 (-591 $)) (-591 |#1|) (-854))) (-15 -1273 ((-591 $) (-591 |#1|) (-854))))) (-788)) (T -616))
+((-2600 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-616 *3)) (-4 *3 (-788)))) (-3388 (*1 *1 *1) (-12 (-5 *1 (-616 *2)) (-4 *2 (-788)))) (-3400 (*1 *1 *1) (-12 (-5 *1 (-616 *2)) (-4 *2 (-788)))) (-1657 (*1 *2 *1) (-12 (-5 *2 (-854)) (-5 *1 (-616 *3)) (-4 *3 (-788)))) (-2843 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-616 *3)) (-4 *3 (-788)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-760 *3)) (-5 *1 (-616 *3)) (-4 *3 (-788)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-620 *3)) (-5 *1 (-616 *3)) (-4 *3 (-788)))) (-1348 (*1 *2 *3) (-12 (-5 *3 (-760 *4)) (-4 *4 (-788)) (-5 *2 (-591 (-616 *4))) (-5 *1 (-616 *4)))) (-2240 (*1 *2 *3) (-12 (-5 *3 (-760 *4)) (-4 *4 (-788)) (-5 *2 (-108)) (-5 *1 (-616 *4)))) (-1708 (*1 *1 *2) (-12 (-5 *2 (-760 *3)) (-4 *3 (-788)) (-5 *1 (-616 *3)))) (-2050 (*1 *1 *2) (|partial| -12 (-5 *2 (-760 *3)) (-4 *3 (-788)) (-5 *1 (-616 *3)))) (-3531 (*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-616 *3)) (-4 *3 (-788)))) (-1849 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *5)) (-5 *4 (-854)) (-4 *5 (-788)) (-5 *2 (-57 (-591 (-616 *5)))) (-5 *1 (-616 *5)))) (-1273 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *5)) (-5 *4 (-854)) (-4 *5 (-788)) (-5 *2 (-591 (-616 *5))) (-5 *1 (-616 *5)))))
+(-13 (-788) (-966 |#1|) (-10 -8 (-15 -2600 ((-108) $)) (-15 -3388 ($ $)) (-15 -3400 ($ $)) (-15 -1657 ((-854) $)) (-15 -2843 ((-108) $ $)) (-15 -3022 ((-760 |#1|) $)) (-15 -3022 ((-620 |#1|) $)) (-15 -1348 ((-591 $) (-760 |#1|))) (-15 -2240 ((-108) (-760 |#1|))) (-15 -1708 ($ (-760 |#1|))) (-15 -2050 ((-3 $ "failed") (-760 |#1|))) (-15 -3531 ((-591 |#1|) $)) (-15 -1849 ((-57 (-591 $)) (-591 |#1|) (-854))) (-15 -1273 ((-591 $) (-591 |#1|) (-854)))))
+((-3024 ((|#2| $) 76)) (-3970 (($ $) 96)) (-3891 (((-108) $ (-712)) 26)) (-3078 (($ $) 85) (($ $ (-712)) 88)) (-3629 (((-108) $) 97)) (-4120 (((-591 $) $) 72)) (-2148 (((-108) $ $) 71)) (-2910 (((-108) $ (-712)) 24)) (-3630 (((-525) $) 46)) (-3468 (((-525) $) 45)) (-3971 (((-108) $ (-712)) 22)) (-1203 (((-108) $) 74)) (-3708 ((|#2| $) 89) (($ $ (-712)) 92)) (-4189 (($ $ $ (-525)) 62) (($ |#2| $ (-525)) 61)) (-2511 (((-591 (-525)) $) 44)) (-2791 (((-108) (-525) $) 42)) (-3066 ((|#2| $) NIL) (($ $ (-712)) 84)) (-2784 (($ $ (-525)) 100)) (-3566 (((-108) $) 99)) (-1623 (((-108) (-1 (-108) |#2|) $) 32)) (-3339 (((-591 |#2|) $) 33)) (-3164 ((|#2| $ "value") NIL) ((|#2| $ "first") 83) (($ $ "rest") 87) ((|#2| $ "last") 95) (($ $ (-1138 (-525))) 58) ((|#2| $ (-525)) 40) ((|#2| $ (-525) |#2|) 41)) (-3505 (((-525) $ $) 70)) (-2777 (($ $ (-1138 (-525))) 57) (($ $ (-525)) 51)) (-2237 (((-108) $) 66)) (-3820 (($ $) 81)) (-3641 (((-712) $) 80)) (-1387 (($ $) 79)) (-3036 (($ (-591 |#2|)) 37)) (-3571 (($ $) 101)) (-3860 (((-591 $) $) 69)) (-1632 (((-108) $ $) 68)) (-4158 (((-108) (-1 (-108) |#2|) $) 31)) (-4096 (((-108) $ $) 18)) (-4045 (((-712) $) 29)))
+(((-617 |#1| |#2|) (-10 -8 (-15 -3571 (|#1| |#1|)) (-15 -2784 (|#1| |#1| (-525))) (-15 -3629 ((-108) |#1|)) (-15 -3566 ((-108) |#1|)) (-15 -3164 (|#2| |#1| (-525) |#2|)) (-15 -3164 (|#2| |#1| (-525))) (-15 -3339 ((-591 |#2|) |#1|)) (-15 -2791 ((-108) (-525) |#1|)) (-15 -2511 ((-591 (-525)) |#1|)) (-15 -3468 ((-525) |#1|)) (-15 -3630 ((-525) |#1|)) (-15 -3036 (|#1| (-591 |#2|))) (-15 -3164 (|#1| |#1| (-1138 (-525)))) (-15 -2777 (|#1| |#1| (-525))) (-15 -2777 (|#1| |#1| (-1138 (-525)))) (-15 -4189 (|#1| |#2| |#1| (-525))) (-15 -4189 (|#1| |#1| |#1| (-525))) (-15 -3820 (|#1| |#1|)) (-15 -3641 ((-712) |#1|)) (-15 -1387 (|#1| |#1|)) (-15 -3970 (|#1| |#1|)) (-15 -3708 (|#1| |#1| (-712))) (-15 -3164 (|#2| |#1| "last")) (-15 -3708 (|#2| |#1|)) (-15 -3078 (|#1| |#1| (-712))) (-15 -3164 (|#1| |#1| "rest")) (-15 -3078 (|#1| |#1|)) (-15 -3066 (|#1| |#1| (-712))) (-15 -3164 (|#2| |#1| "first")) (-15 -3066 (|#2| |#1|)) (-15 -2148 ((-108) |#1| |#1|)) (-15 -1632 ((-108) |#1| |#1|)) (-15 -3505 ((-525) |#1| |#1|)) (-15 -2237 ((-108) |#1|)) (-15 -3164 (|#2| |#1| "value")) (-15 -3024 (|#2| |#1|)) (-15 -1203 ((-108) |#1|)) (-15 -4120 ((-591 |#1|) |#1|)) (-15 -3860 ((-591 |#1|) |#1|)) (-15 -4096 ((-108) |#1| |#1|)) (-15 -1623 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4158 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4045 ((-712) |#1|)) (-15 -3891 ((-108) |#1| (-712))) (-15 -2910 ((-108) |#1| (-712))) (-15 -3971 ((-108) |#1| (-712)))) (-618 |#2|) (-1125)) (T -617))
+NIL
+(-10 -8 (-15 -3571 (|#1| |#1|)) (-15 -2784 (|#1| |#1| (-525))) (-15 -3629 ((-108) |#1|)) (-15 -3566 ((-108) |#1|)) (-15 -3164 (|#2| |#1| (-525) |#2|)) (-15 -3164 (|#2| |#1| (-525))) (-15 -3339 ((-591 |#2|) |#1|)) (-15 -2791 ((-108) (-525) |#1|)) (-15 -2511 ((-591 (-525)) |#1|)) (-15 -3468 ((-525) |#1|)) (-15 -3630 ((-525) |#1|)) (-15 -3036 (|#1| (-591 |#2|))) (-15 -3164 (|#1| |#1| (-1138 (-525)))) (-15 -2777 (|#1| |#1| (-525))) (-15 -2777 (|#1| |#1| (-1138 (-525)))) (-15 -4189 (|#1| |#2| |#1| (-525))) (-15 -4189 (|#1| |#1| |#1| (-525))) (-15 -3820 (|#1| |#1|)) (-15 -3641 ((-712) |#1|)) (-15 -1387 (|#1| |#1|)) (-15 -3970 (|#1| |#1|)) (-15 -3708 (|#1| |#1| (-712))) (-15 -3164 (|#2| |#1| "last")) (-15 -3708 (|#2| |#1|)) (-15 -3078 (|#1| |#1| (-712))) (-15 -3164 (|#1| |#1| "rest")) (-15 -3078 (|#1| |#1|)) (-15 -3066 (|#1| |#1| (-712))) (-15 -3164 (|#2| |#1| "first")) (-15 -3066 (|#2| |#1|)) (-15 -2148 ((-108) |#1| |#1|)) (-15 -1632 ((-108) |#1| |#1|)) (-15 -3505 ((-525) |#1| |#1|)) (-15 -2237 ((-108) |#1|)) (-15 -3164 (|#2| |#1| "value")) (-15 -3024 (|#2| |#1|)) (-15 -1203 ((-108) |#1|)) (-15 -4120 ((-591 |#1|) |#1|)) (-15 -3860 ((-591 |#1|) |#1|)) (-15 -4096 ((-108) |#1| |#1|)) (-15 -1623 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4158 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -4045 ((-712) |#1|)) (-15 -3891 ((-108) |#1| (-712))) (-15 -2910 ((-108) |#1| (-712))) (-15 -3971 ((-108) |#1| (-712))))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3024 ((|#1| $) 48)) (-3161 ((|#1| $) 65)) (-3970 (($ $) 67)) (-3296 (((-1176) $ (-525) (-525)) 97 (|has| $ (-6 -4251)))) (-3463 (($ $ (-525)) 52 (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) 8)) (-1780 ((|#1| $ |#1|) 39 (|has| $ (-6 -4251)))) (-2146 (($ $ $) 56 (|has| $ (-6 -4251)))) (-2640 ((|#1| $ |#1|) 54 (|has| $ (-6 -4251)))) (-1901 ((|#1| $ |#1|) 58 (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4251))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4251))) (($ $ "rest" $) 55 (|has| $ (-6 -4251))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) 117 (|has| $ (-6 -4251))) ((|#1| $ (-525) |#1|) 86 (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) 41 (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) |#1|) $) 102)) (-3149 ((|#1| $) 66)) (-3798 (($) 7 T CONST)) (-1745 (($ $) 124)) (-3078 (($ $) 73) (($ $ (-712)) 71)) (-3098 (($ $) 99 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ |#1| $) 100 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#1|) $) 103)) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3255 ((|#1| $ (-525) |#1|) 85 (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) 87)) (-3629 (((-108) $) 83)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-1450 (((-712) $) 123)) (-4120 (((-591 $) $) 50)) (-2148 (((-108) $ $) 42 (|has| |#1| (-1018)))) (-1268 (($ (-712) |#1|) 108)) (-2910 (((-108) $ (-712)) 9)) (-3630 (((-525) $) 95 (|has| (-525) (-788)))) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3468 (((-525) $) 94 (|has| (-525) (-788)))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-3971 (((-108) $ (-712)) 10)) (-2599 (((-591 |#1|) $) 45)) (-1203 (((-108) $) 49)) (-3539 (($ $) 126)) (-3313 (((-108) $) 127)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-3708 ((|#1| $) 70) (($ $ (-712)) 68)) (-4189 (($ $ $ (-525)) 116) (($ |#1| $ (-525)) 115)) (-2511 (((-591 (-525)) $) 92)) (-2791 (((-108) (-525) $) 91)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-3669 ((|#1| $) 125)) (-3066 ((|#1| $) 76) (($ $ (-712)) 74)) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 106)) (-1941 (($ $ |#1|) 96 (|has| $ (-6 -4251)))) (-2784 (($ $ (-525)) 122)) (-3566 (((-108) $) 84)) (-2036 (((-108) $) 128)) (-3437 (((-108) $) 129)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-1615 (((-108) |#1| $) 93 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) 90)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1138 (-525))) 112) ((|#1| $ (-525)) 89) ((|#1| $ (-525) |#1|) 88)) (-3505 (((-525) $ $) 44)) (-2777 (($ $ (-1138 (-525))) 114) (($ $ (-525)) 113)) (-2237 (((-108) $) 46)) (-3820 (($ $) 62)) (-2609 (($ $) 59 (|has| $ (-6 -4251)))) (-3641 (((-712) $) 63)) (-1387 (($ $) 64)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1408 (((-501) $) 98 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 107)) (-1679 (($ $ $) 61 (|has| $ (-6 -4251))) (($ $ |#1|) 60 (|has| $ (-6 -4251)))) (-3690 (($ $ $) 78) (($ |#1| $) 77) (($ (-591 $)) 110) (($ $ |#1|) 109)) (-3571 (($ $) 121)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) 51)) (-1632 (((-108) $ $) 43 (|has| |#1| (-1018)))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-618 |#1|) (-131) (-1125)) (T -618))
+((-3677 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-618 *3)) (-4 *3 (-1125)))) (-2305 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-618 *3)) (-4 *3 (-1125)))) (-3437 (*1 *2 *1) (-12 (-4 *1 (-618 *3)) (-4 *3 (-1125)) (-5 *2 (-108)))) (-2036 (*1 *2 *1) (-12 (-4 *1 (-618 *3)) (-4 *3 (-1125)) (-5 *2 (-108)))) (-3313 (*1 *2 *1) (-12 (-4 *1 (-618 *3)) (-4 *3 (-1125)) (-5 *2 (-108)))) (-3539 (*1 *1 *1) (-12 (-4 *1 (-618 *2)) (-4 *2 (-1125)))) (-3669 (*1 *2 *1) (-12 (-4 *1 (-618 *2)) (-4 *2 (-1125)))) (-1745 (*1 *1 *1) (-12 (-4 *1 (-618 *2)) (-4 *2 (-1125)))) (-1450 (*1 *2 *1) (-12 (-4 *1 (-618 *3)) (-4 *3 (-1125)) (-5 *2 (-712)))) (-2784 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-618 *3)) (-4 *3 (-1125)))) (-3571 (*1 *1 *1) (-12 (-4 *1 (-618 *2)) (-4 *2 (-1125)))))
+(-13 (-1063 |t#1|) (-10 -8 (-15 -3677 ($ (-1 (-108) |t#1|) $)) (-15 -2305 ($ (-1 (-108) |t#1|) $)) (-15 -3437 ((-108) $)) (-15 -2036 ((-108) $)) (-15 -3313 ((-108) $)) (-15 -3539 ($ $)) (-15 -3669 (|t#1| $)) (-15 -1745 ($ $)) (-15 -1450 ((-712) $)) (-15 -2784 ($ $ (-525))) (-15 -3571 ($ $))))
+(((-33) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-265 #0=(-525) |#1|) . T) ((-267 #0# |#1|) . T) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-558 #0# |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-596 |#1|) . T) ((-940 |#1|) . T) ((-1018) |has| |#1| (-1018)) ((-1063 |#1|) . T) ((-1125) . T) ((-1159 |#1|) . T))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3465 (($ (-712) (-712) (-712)) 34 (|has| |#1| (-975)))) (-3891 (((-108) $ (-712)) NIL)) (-3814 ((|#1| $ (-712) (-712) (-712) |#1|) 29)) (-3798 (($) NIL T CONST)) (-3676 (($ $ $) 38 (|has| |#1| (-975)))) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-2568 (((-1171 (-712)) $) 11)) (-1612 (($ (-1089) $ $) 24)) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-1905 (($ (-712)) 36 (|has| |#1| (-975)))) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#1| $ (-712) (-712) (-712)) 27)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) NIL)) (-3036 (($ (-591 (-591 (-591 |#1|)))) 45)) (-3022 (($ (-890 (-890 (-890 |#1|)))) 17) (((-890 (-890 (-890 |#1|))) $) 14) (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-619 |#1|) (-13 (-464 |#1|) (-10 -8 (IF (|has| |#1| (-975)) (PROGN (-15 -3465 ($ (-712) (-712) (-712))) (-15 -1905 ($ (-712))) (-15 -3676 ($ $ $))) |%noBranch|) (-15 -3036 ($ (-591 (-591 (-591 |#1|))))) (-15 -3164 (|#1| $ (-712) (-712) (-712))) (-15 -3814 (|#1| $ (-712) (-712) (-712) |#1|)) (-15 -3022 ($ (-890 (-890 (-890 |#1|))))) (-15 -3022 ((-890 (-890 (-890 |#1|))) $)) (-15 -1612 ($ (-1089) $ $)) (-15 -2568 ((-1171 (-712)) $)))) (-1018)) (T -619))
+((-3465 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-712)) (-5 *1 (-619 *3)) (-4 *3 (-975)) (-4 *3 (-1018)))) (-1905 (*1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-619 *3)) (-4 *3 (-975)) (-4 *3 (-1018)))) (-3676 (*1 *1 *1 *1) (-12 (-5 *1 (-619 *2)) (-4 *2 (-975)) (-4 *2 (-1018)))) (-3036 (*1 *1 *2) (-12 (-5 *2 (-591 (-591 (-591 *3)))) (-4 *3 (-1018)) (-5 *1 (-619 *3)))) (-3164 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-712)) (-5 *1 (-619 *2)) (-4 *2 (-1018)))) (-3814 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-712)) (-5 *1 (-619 *2)) (-4 *2 (-1018)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-890 (-890 (-890 *3)))) (-4 *3 (-1018)) (-5 *1 (-619 *3)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-890 (-890 (-890 *3)))) (-5 *1 (-619 *3)) (-4 *3 (-1018)))) (-1612 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-619 *3)) (-4 *3 (-1018)))) (-2568 (*1 *2 *1) (-12 (-5 *2 (-1171 (-712))) (-5 *1 (-619 *3)) (-4 *3 (-1018)))))
+(-13 (-464 |#1|) (-10 -8 (IF (|has| |#1| (-975)) (PROGN (-15 -3465 ($ (-712) (-712) (-712))) (-15 -1905 ($ (-712))) (-15 -3676 ($ $ $))) |%noBranch|) (-15 -3036 ($ (-591 (-591 (-591 |#1|))))) (-15 -3164 (|#1| $ (-712) (-712) (-712))) (-15 -3814 (|#1| $ (-712) (-712) (-712) |#1|)) (-15 -3022 ($ (-890 (-890 (-890 |#1|))))) (-15 -3022 ((-890 (-890 (-890 |#1|))) $)) (-15 -1612 ($ (-1089) $ $)) (-15 -2568 ((-1171 (-712)) $))))
+((-3008 (((-108) $ $) NIL)) (-3531 (((-591 |#1|) $) 14)) (-3400 (($ $) 18)) (-2600 (((-108) $) 19)) (-1251 (((-3 |#1| "failed") $) 22)) (-3528 ((|#1| $) 20)) (-3078 (($ $) 36)) (-2457 (($ $) 24)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2843 (((-108) $ $) 42)) (-1657 (((-854) $) 38)) (-3388 (($ $) 17)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3066 ((|#1| $) 35)) (-3022 (((-796) $) 31) (($ |#1|) 23) (((-760 |#1|) $) 27)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 12)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 40)) (* (($ $ $) 34)))
+(((-620 |#1|) (-13 (-788) (-966 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3022 ((-760 |#1|) $)) (-15 -3066 (|#1| $)) (-15 -3388 ($ $)) (-15 -1657 ((-854) $)) (-15 -2843 ((-108) $ $)) (-15 -2457 ($ $)) (-15 -3078 ($ $)) (-15 -2600 ((-108) $)) (-15 -3400 ($ $)) (-15 -3531 ((-591 |#1|) $)))) (-788)) (T -620))
+((* (*1 *1 *1 *1) (-12 (-5 *1 (-620 *2)) (-4 *2 (-788)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-760 *3)) (-5 *1 (-620 *3)) (-4 *3 (-788)))) (-3066 (*1 *2 *1) (-12 (-5 *1 (-620 *2)) (-4 *2 (-788)))) (-3388 (*1 *1 *1) (-12 (-5 *1 (-620 *2)) (-4 *2 (-788)))) (-1657 (*1 *2 *1) (-12 (-5 *2 (-854)) (-5 *1 (-620 *3)) (-4 *3 (-788)))) (-2843 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-620 *3)) (-4 *3 (-788)))) (-2457 (*1 *1 *1) (-12 (-5 *1 (-620 *2)) (-4 *2 (-788)))) (-3078 (*1 *1 *1) (-12 (-5 *1 (-620 *2)) (-4 *2 (-788)))) (-2600 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-620 *3)) (-4 *3 (-788)))) (-3400 (*1 *1 *1) (-12 (-5 *1 (-620 *2)) (-4 *2 (-788)))) (-3531 (*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-620 *3)) (-4 *3 (-788)))))
+(-13 (-788) (-966 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3022 ((-760 |#1|) $)) (-15 -3066 (|#1| $)) (-15 -3388 ($ $)) (-15 -1657 ((-854) $)) (-15 -2843 ((-108) $ $)) (-15 -2457 ($ $)) (-15 -3078 ($ $)) (-15 -2600 ((-108) $)) (-15 -3400 ($ $)) (-15 -3531 ((-591 |#1|) $))))
+((-4076 ((|#1| (-1 |#1| (-712) |#1|) (-712) |#1|) 11)) (-1327 ((|#1| (-1 |#1| |#1|) (-712) |#1|) 9)))
+(((-621 |#1|) (-10 -7 (-15 -1327 (|#1| (-1 |#1| |#1|) (-712) |#1|)) (-15 -4076 (|#1| (-1 |#1| (-712) |#1|) (-712) |#1|))) (-1018)) (T -621))
+((-4076 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-712) *2)) (-5 *4 (-712)) (-4 *2 (-1018)) (-5 *1 (-621 *2)))) (-1327 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-712)) (-4 *2 (-1018)) (-5 *1 (-621 *2)))))
+(-10 -7 (-15 -1327 (|#1| (-1 |#1| |#1|) (-712) |#1|)) (-15 -4076 (|#1| (-1 |#1| (-712) |#1|) (-712) |#1|)))
+((-3128 ((|#2| |#1| |#2|) 9)) (-3120 ((|#1| |#1| |#2|) 8)))
+(((-622 |#1| |#2|) (-10 -7 (-15 -3120 (|#1| |#1| |#2|)) (-15 -3128 (|#2| |#1| |#2|))) (-1018) (-1018)) (T -622))
+((-3128 (*1 *2 *3 *2) (-12 (-5 *1 (-622 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1018)))) (-3120 (*1 *2 *2 *3) (-12 (-5 *1 (-622 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))))
+(-10 -7 (-15 -3120 (|#1| |#1| |#2|)) (-15 -3128 (|#2| |#1| |#2|)))
+((-2285 ((|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|) 11)))
+(((-623 |#1| |#2| |#3|) (-10 -7 (-15 -2285 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|))) (-1018) (-1018) (-1018)) (T -623))
+((-2285 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1018)) (-5 *1 (-623 *5 *6 *2)))))
+(-10 -7 (-15 -2285 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|)))
+((-4076 (((-1 |#1| (-712) |#1|) (-1 |#1| (-712) |#1|)) 23)) (-1443 (((-1 |#1|) |#1|) 8)) (-1247 ((|#1| |#1|) 16)) (-1204 (((-591 |#1|) (-1 (-591 |#1|) (-591 |#1|)) (-525)) 15) ((|#1| (-1 |#1| |#1|)) 11)) (-3022 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-712)) 20)))
+(((-624 |#1|) (-10 -7 (-15 -1443 ((-1 |#1|) |#1|)) (-15 -3022 ((-1 |#1|) |#1|)) (-15 -1204 (|#1| (-1 |#1| |#1|))) (-15 -1204 ((-591 |#1|) (-1 (-591 |#1|) (-591 |#1|)) (-525))) (-15 -1247 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-712))) (-15 -4076 ((-1 |#1| (-712) |#1|) (-1 |#1| (-712) |#1|)))) (-1018)) (T -624))
+((-4076 (*1 *2 *2) (-12 (-5 *2 (-1 *3 (-712) *3)) (-4 *3 (-1018)) (-5 *1 (-624 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-712)) (-4 *4 (-1018)) (-5 *1 (-624 *4)))) (-1247 (*1 *2 *2) (-12 (-5 *1 (-624 *2)) (-4 *2 (-1018)))) (-1204 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-591 *5) (-591 *5))) (-5 *4 (-525)) (-5 *2 (-591 *5)) (-5 *1 (-624 *5)) (-4 *5 (-1018)))) (-1204 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-624 *2)) (-4 *2 (-1018)))) (-3022 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-624 *3)) (-4 *3 (-1018)))) (-1443 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-624 *3)) (-4 *3 (-1018)))))
+(-10 -7 (-15 -1443 ((-1 |#1|) |#1|)) (-15 -3022 ((-1 |#1|) |#1|)) (-15 -1204 (|#1| (-1 |#1| |#1|))) (-15 -1204 ((-591 |#1|) (-1 (-591 |#1|) (-591 |#1|)) (-525))) (-15 -1247 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-712))) (-15 -4076 ((-1 |#1| (-712) |#1|) (-1 |#1| (-712) |#1|))))
+((-3785 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-3760 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-2058 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-3440 (((-1 |#2| |#1|) |#2|) 11)))
+(((-625 |#1| |#2|) (-10 -7 (-15 -3440 ((-1 |#2| |#1|) |#2|)) (-15 -3760 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2058 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -3785 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1018) (-1018)) (T -625))
+((-3785 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-5 *2 (-1 *5 *4)) (-5 *1 (-625 *4 *5)))) (-2058 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1018)) (-5 *2 (-1 *5 *4)) (-5 *1 (-625 *4 *5)) (-4 *4 (-1018)))) (-3760 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-5 *2 (-1 *5)) (-5 *1 (-625 *4 *5)))) (-3440 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-625 *4 *3)) (-4 *4 (-1018)) (-4 *3 (-1018)))))
+(-10 -7 (-15 -3440 ((-1 |#2| |#1|) |#2|)) (-15 -3760 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2058 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -3785 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
+((-1898 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-1501 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-3212 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-3289 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-3795 (((-1 |#3| |#1| |#2|) (-1 |#3| |#2|)) 15)) (* (((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)) 21)))
+(((-626 |#1| |#2| |#3|) (-10 -7 (-15 -1501 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -3212 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -3289 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -3795 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -1898 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)))) (-1018) (-1018) (-1018)) (T -626))
+((* (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-1 *7 *5)) (-5 *1 (-626 *5 *6 *7)))) (-1898 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-626 *4 *5 *6)))) (-3795 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-626 *4 *5 *6)) (-4 *4 (-1018)))) (-3289 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1018)) (-4 *6 (-1018)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-626 *4 *5 *6)) (-4 *5 (-1018)))) (-3212 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-1 *6 *5)) (-5 *1 (-626 *4 *5 *6)))) (-1501 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1018)) (-4 *4 (-1018)) (-4 *6 (-1018)) (-5 *2 (-1 *6 *5)) (-5 *1 (-626 *5 *4 *6)))))
+(-10 -7 (-15 -1501 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -3212 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -3289 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -3795 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -1898 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
+((-1227 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-1340 (((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|) 37) ((|#8| (-1 |#5| |#1|) |#4|) 31)))
+(((-627 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1340 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -1340 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -1227 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|))) (-975) (-351 |#1|) (-351 |#1|) (-629 |#1| |#2| |#3|) (-975) (-351 |#5|) (-351 |#5|) (-629 |#5| |#6| |#7|)) (T -627))
+((-1227 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-975)) (-4 *2 (-975)) (-4 *6 (-351 *5)) (-4 *7 (-351 *5)) (-4 *8 (-351 *2)) (-4 *9 (-351 *2)) (-5 *1 (-627 *5 *6 *7 *4 *2 *8 *9 *10)) (-4 *4 (-629 *5 *6 *7)) (-4 *10 (-629 *2 *8 *9)))) (-1340 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-975)) (-4 *8 (-975)) (-4 *6 (-351 *5)) (-4 *7 (-351 *5)) (-4 *2 (-629 *8 *9 *10)) (-5 *1 (-627 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-629 *5 *6 *7)) (-4 *9 (-351 *8)) (-4 *10 (-351 *8)))) (-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-975)) (-4 *8 (-975)) (-4 *6 (-351 *5)) (-4 *7 (-351 *5)) (-4 *2 (-629 *8 *9 *10)) (-5 *1 (-627 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-629 *5 *6 *7)) (-4 *9 (-351 *8)) (-4 *10 (-351 *8)))))
+(-10 -7 (-15 -1340 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -1340 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -1227 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
+((-2168 (($ (-712) (-712)) 33)) (-1753 (($ $ $) 56)) (-1278 (($ |#3|) 52) (($ $) 53)) (-1290 (((-108) $) 28)) (-1364 (($ $ (-525) (-525)) 58)) (-2913 (($ $ (-525) (-525)) 59)) (-3737 (($ $ (-525) (-525) (-525) (-525)) 63)) (-2231 (($ $) 54)) (-3079 (((-108) $) 14)) (-3768 (($ $ (-525) (-525) $) 64)) (-3186 ((|#2| $ (-525) (-525) |#2|) NIL) (($ $ (-591 (-525)) (-591 (-525)) $) 62)) (-1504 (($ (-712) |#2|) 39)) (-3393 (($ (-591 (-591 |#2|))) 37)) (-3349 (((-591 (-591 |#2|)) $) 57)) (-2208 (($ $ $) 55)) (-2089 (((-3 $ "failed") $ |#2|) 91)) (-3164 ((|#2| $ (-525) (-525)) NIL) ((|#2| $ (-525) (-525) |#2|) NIL) (($ $ (-591 (-525)) (-591 (-525))) 61)) (-3487 (($ (-591 |#2|)) 40) (($ (-591 $)) 42)) (-2740 (((-108) $) 24)) (-3022 (($ |#4|) 47) (((-796) $) NIL)) (-3489 (((-108) $) 30)) (-4173 (($ $ |#2|) 93)) (-4164 (($ $ $) 68) (($ $) 71)) (-4156 (($ $ $) 66)) (** (($ $ (-712)) 80) (($ $ (-525)) 96)) (* (($ $ $) 77) (($ |#2| $) 73) (($ $ |#2|) 74) (($ (-525) $) 76) ((|#4| $ |#4|) 84) ((|#3| |#3| $) 88)))
+(((-628 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3022 ((-796) |#1|)) (-15 ** (|#1| |#1| (-525))) (-15 -4173 (|#1| |#1| |#2|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-712))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-525) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|)) (-15 -4164 (|#1| |#1| |#1|)) (-15 -4156 (|#1| |#1| |#1|)) (-15 -3768 (|#1| |#1| (-525) (-525) |#1|)) (-15 -3737 (|#1| |#1| (-525) (-525) (-525) (-525))) (-15 -2913 (|#1| |#1| (-525) (-525))) (-15 -1364 (|#1| |#1| (-525) (-525))) (-15 -3186 (|#1| |#1| (-591 (-525)) (-591 (-525)) |#1|)) (-15 -3164 (|#1| |#1| (-591 (-525)) (-591 (-525)))) (-15 -3349 ((-591 (-591 |#2|)) |#1|)) (-15 -1753 (|#1| |#1| |#1|)) (-15 -2208 (|#1| |#1| |#1|)) (-15 -2231 (|#1| |#1|)) (-15 -1278 (|#1| |#1|)) (-15 -1278 (|#1| |#3|)) (-15 -3022 (|#1| |#4|)) (-15 -3487 (|#1| (-591 |#1|))) (-15 -3487 (|#1| (-591 |#2|))) (-15 -1504 (|#1| (-712) |#2|)) (-15 -3393 (|#1| (-591 (-591 |#2|)))) (-15 -2168 (|#1| (-712) (-712))) (-15 -3489 ((-108) |#1|)) (-15 -1290 ((-108) |#1|)) (-15 -2740 ((-108) |#1|)) (-15 -3079 ((-108) |#1|)) (-15 -3186 (|#2| |#1| (-525) (-525) |#2|)) (-15 -3164 (|#2| |#1| (-525) (-525) |#2|)) (-15 -3164 (|#2| |#1| (-525) (-525)))) (-629 |#2| |#3| |#4|) (-975) (-351 |#2|) (-351 |#2|)) (T -628))
+NIL
+(-10 -8 (-15 -3022 ((-796) |#1|)) (-15 ** (|#1| |#1| (-525))) (-15 -4173 (|#1| |#1| |#2|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-712))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-525) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|)) (-15 -4164 (|#1| |#1| |#1|)) (-15 -4156 (|#1| |#1| |#1|)) (-15 -3768 (|#1| |#1| (-525) (-525) |#1|)) (-15 -3737 (|#1| |#1| (-525) (-525) (-525) (-525))) (-15 -2913 (|#1| |#1| (-525) (-525))) (-15 -1364 (|#1| |#1| (-525) (-525))) (-15 -3186 (|#1| |#1| (-591 (-525)) (-591 (-525)) |#1|)) (-15 -3164 (|#1| |#1| (-591 (-525)) (-591 (-525)))) (-15 -3349 ((-591 (-591 |#2|)) |#1|)) (-15 -1753 (|#1| |#1| |#1|)) (-15 -2208 (|#1| |#1| |#1|)) (-15 -2231 (|#1| |#1|)) (-15 -1278 (|#1| |#1|)) (-15 -1278 (|#1| |#3|)) (-15 -3022 (|#1| |#4|)) (-15 -3487 (|#1| (-591 |#1|))) (-15 -3487 (|#1| (-591 |#2|))) (-15 -1504 (|#1| (-712) |#2|)) (-15 -3393 (|#1| (-591 (-591 |#2|)))) (-15 -2168 (|#1| (-712) (-712))) (-15 -3489 ((-108) |#1|)) (-15 -1290 ((-108) |#1|)) (-15 -2740 ((-108) |#1|)) (-15 -3079 ((-108) |#1|)) (-15 -3186 (|#2| |#1| (-525) (-525) |#2|)) (-15 -3164 (|#2| |#1| (-525) (-525) |#2|)) (-15 -3164 (|#2| |#1| (-525) (-525))))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-2168 (($ (-712) (-712)) 97)) (-1753 (($ $ $) 87)) (-1278 (($ |#2|) 91) (($ $) 90)) (-1290 (((-108) $) 99)) (-1364 (($ $ (-525) (-525)) 83)) (-2913 (($ $ (-525) (-525)) 82)) (-3737 (($ $ (-525) (-525) (-525) (-525)) 81)) (-2231 (($ $) 89)) (-3079 (((-108) $) 101)) (-3891 (((-108) $ (-712)) 8)) (-3768 (($ $ (-525) (-525) $) 80)) (-3186 ((|#1| $ (-525) (-525) |#1|) 44) (($ $ (-591 (-525)) (-591 (-525)) $) 84)) (-2775 (($ $ (-525) |#2|) 42)) (-1743 (($ $ (-525) |#3|) 41)) (-1504 (($ (-712) |#1|) 95)) (-3798 (($) 7 T CONST)) (-2753 (($ $) 67 (|has| |#1| (-286)))) (-3725 ((|#2| $ (-525)) 46)) (-4073 (((-712) $) 66 (|has| |#1| (-517)))) (-3255 ((|#1| $ (-525) (-525) |#1|) 43)) (-3217 ((|#1| $ (-525) (-525)) 48)) (-3454 (((-591 |#1|) $) 30)) (-2482 (((-712) $) 65 (|has| |#1| (-517)))) (-2634 (((-591 |#3|) $) 64 (|has| |#1| (-517)))) (-2281 (((-712) $) 51)) (-1268 (($ (-712) (-712) |#1|) 57)) (-2296 (((-712) $) 50)) (-2910 (((-108) $ (-712)) 9)) (-2807 ((|#1| $) 62 (|has| |#1| (-6 (-4252 "*"))))) (-1755 (((-525) $) 55)) (-1639 (((-525) $) 53)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-4230 (((-525) $) 54)) (-2631 (((-525) $) 52)) (-3393 (($ (-591 (-591 |#1|))) 96)) (-3249 (($ (-1 |#1| |#1|) $) 34)) (-1340 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-3349 (((-591 (-591 |#1|)) $) 86)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-1914 (((-3 $ "failed") $) 61 (|has| |#1| (-341)))) (-2208 (($ $ $) 88)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-1941 (($ $ |#1|) 56)) (-2089 (((-3 $ "failed") $ |#1|) 69 (|has| |#1| (-517)))) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ (-525) (-525)) 49) ((|#1| $ (-525) (-525) |#1|) 47) (($ $ (-591 (-525)) (-591 (-525))) 85)) (-3487 (($ (-591 |#1|)) 94) (($ (-591 $)) 93)) (-2740 (((-108) $) 100)) (-2238 ((|#1| $) 63 (|has| |#1| (-6 (-4252 "*"))))) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1793 ((|#3| $ (-525)) 45)) (-3022 (($ |#3|) 92) (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-3489 (((-108) $) 98)) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4173 (($ $ |#1|) 68 (|has| |#1| (-341)))) (-4164 (($ $ $) 78) (($ $) 77)) (-4156 (($ $ $) 79)) (** (($ $ (-712)) 70) (($ $ (-525)) 60 (|has| |#1| (-341)))) (* (($ $ $) 76) (($ |#1| $) 75) (($ $ |#1|) 74) (($ (-525) $) 73) ((|#3| $ |#3|) 72) ((|#2| |#2| $) 71)) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-629 |#1| |#2| |#3|) (-131) (-975) (-351 |t#1|) (-351 |t#1|)) (T -629))
+((-3079 (*1 *2 *1) (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *2 (-108)))) (-2740 (*1 *2 *1) (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *2 (-108)))) (-1290 (*1 *2 *1) (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *2 (-108)))) (-3489 (*1 *2 *1) (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *2 (-108)))) (-2168 (*1 *1 *2 *2) (-12 (-5 *2 (-712)) (-4 *3 (-975)) (-4 *1 (-629 *3 *4 *5)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-3393 (*1 *1 *2) (-12 (-5 *2 (-591 (-591 *3))) (-4 *3 (-975)) (-4 *1 (-629 *3 *4 *5)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-1504 (*1 *1 *2 *3) (-12 (-5 *2 (-712)) (-4 *3 (-975)) (-4 *1 (-629 *3 *4 *5)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-3487 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-975)) (-4 *1 (-629 *3 *4 *5)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-3487 (*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *3 (-975)) (-4 *1 (-629 *3 *4 *5)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-3022 (*1 *1 *2) (-12 (-4 *3 (-975)) (-4 *1 (-629 *3 *4 *2)) (-4 *4 (-351 *3)) (-4 *2 (-351 *3)))) (-1278 (*1 *1 *2) (-12 (-4 *3 (-975)) (-4 *1 (-629 *3 *2 *4)) (-4 *2 (-351 *3)) (-4 *4 (-351 *3)))) (-1278 (*1 *1 *1) (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)))) (-2231 (*1 *1 *1) (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)))) (-2208 (*1 *1 *1 *1) (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)))) (-1753 (*1 *1 *1 *1) (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)))) (-3349 (*1 *2 *1) (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *2 (-591 (-591 *3))))) (-3164 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-591 (-525))) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-3186 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-591 (-525))) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-1364 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-525)) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-2913 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-525)) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-3737 (*1 *1 *1 *2 *2 *2 *2) (-12 (-5 *2 (-525)) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-3768 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-525)) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-4156 (*1 *1 *1 *1) (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)))) (-4164 (*1 *1 *1 *1) (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)))) (-4164 (*1 *1 *1) (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)))) (* (*1 *1 *1 *1) (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-525)) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-629 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *2 (-351 *3)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-629 *3 *2 *4)) (-4 *3 (-975)) (-4 *2 (-351 *3)) (-4 *4 (-351 *3)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))) (-2089 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)) (-4 *2 (-517)))) (-4173 (*1 *1 *1 *2) (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)) (-4 *2 (-341)))) (-2753 (*1 *1 *1) (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)) (-4 *2 (-286)))) (-4073 (*1 *2 *1) (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-4 *3 (-517)) (-5 *2 (-712)))) (-2482 (*1 *2 *1) (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-4 *3 (-517)) (-5 *2 (-712)))) (-2634 (*1 *2 *1) (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-4 *3 (-517)) (-5 *2 (-591 *5)))) (-2238 (*1 *2 *1) (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)) (|has| *2 (-6 (-4252 "*"))) (-4 *2 (-975)))) (-2807 (*1 *2 *1) (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)) (|has| *2 (-6 (-4252 "*"))) (-4 *2 (-975)))) (-1914 (*1 *1 *1) (|partial| -12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2)) (-4 *2 (-341)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-4 *3 (-341)))))
+(-13 (-55 |t#1| |t#2| |t#3|) (-10 -8 (-6 -4251) (-6 -4250) (-15 -3079 ((-108) $)) (-15 -2740 ((-108) $)) (-15 -1290 ((-108) $)) (-15 -3489 ((-108) $)) (-15 -2168 ($ (-712) (-712))) (-15 -3393 ($ (-591 (-591 |t#1|)))) (-15 -1504 ($ (-712) |t#1|)) (-15 -3487 ($ (-591 |t#1|))) (-15 -3487 ($ (-591 $))) (-15 -3022 ($ |t#3|)) (-15 -1278 ($ |t#2|)) (-15 -1278 ($ $)) (-15 -2231 ($ $)) (-15 -2208 ($ $ $)) (-15 -1753 ($ $ $)) (-15 -3349 ((-591 (-591 |t#1|)) $)) (-15 -3164 ($ $ (-591 (-525)) (-591 (-525)))) (-15 -3186 ($ $ (-591 (-525)) (-591 (-525)) $)) (-15 -1364 ($ $ (-525) (-525))) (-15 -2913 ($ $ (-525) (-525))) (-15 -3737 ($ $ (-525) (-525) (-525) (-525))) (-15 -3768 ($ $ (-525) (-525) $)) (-15 -4156 ($ $ $)) (-15 -4164 ($ $ $)) (-15 -4164 ($ $)) (-15 * ($ $ $)) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 * ($ (-525) $)) (-15 * (|t#3| $ |t#3|)) (-15 * (|t#2| |t#2| $)) (-15 ** ($ $ (-712))) (IF (|has| |t#1| (-517)) (-15 -2089 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-341)) (-15 -4173 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-286)) (-15 -2753 ($ $)) |%noBranch|) (IF (|has| |t#1| (-517)) (PROGN (-15 -4073 ((-712) $)) (-15 -2482 ((-712) $)) (-15 -2634 ((-591 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4252 "*"))) (PROGN (-15 -2238 (|t#1| $)) (-15 -2807 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-341)) (PROGN (-15 -1914 ((-3 $ "failed") $)) (-15 ** ($ $ (-525)))) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-1018) |has| |#1| (-1018)) ((-55 |#1| |#2| |#3|) . T) ((-1125) . T))
+((-2753 ((|#4| |#4|) 70 (|has| |#1| (-286)))) (-4073 (((-712) |#4|) 72 (|has| |#1| (-517)))) (-2482 (((-712) |#4|) 74 (|has| |#1| (-517)))) (-2634 (((-591 |#3|) |#4|) 81 (|has| |#1| (-517)))) (-3548 (((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|) 101 (|has| |#1| (-286)))) (-2807 ((|#1| |#4|) 35)) (-2800 (((-3 |#4| "failed") |#4|) 64 (|has| |#1| (-517)))) (-1914 (((-3 |#4| "failed") |#4|) 78 (|has| |#1| (-341)))) (-3947 ((|#4| |#4|) 57 (|has| |#1| (-517)))) (-2575 ((|#4| |#4| |#1| (-525) (-525)) 43)) (-3344 ((|#4| |#4| (-525) (-525)) 38)) (-2988 ((|#4| |#4| |#1| (-525) (-525)) 48)) (-2238 ((|#1| |#4|) 76)) (-4212 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 60 (|has| |#1| (-517)))))
+(((-630 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2238 (|#1| |#4|)) (-15 -2807 (|#1| |#4|)) (-15 -3344 (|#4| |#4| (-525) (-525))) (-15 -2575 (|#4| |#4| |#1| (-525) (-525))) (-15 -2988 (|#4| |#4| |#1| (-525) (-525))) (IF (|has| |#1| (-517)) (PROGN (-15 -4073 ((-712) |#4|)) (-15 -2482 ((-712) |#4|)) (-15 -2634 ((-591 |#3|) |#4|)) (-15 -3947 (|#4| |#4|)) (-15 -2800 ((-3 |#4| "failed") |#4|)) (-15 -4212 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-286)) (PROGN (-15 -2753 (|#4| |#4|)) (-15 -3548 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-341)) (-15 -1914 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-160) (-351 |#1|) (-351 |#1|) (-629 |#1| |#2| |#3|)) (T -630))
+((-1914 (*1 *2 *2) (|partial| -12 (-4 *3 (-341)) (-4 *3 (-160)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *1 (-630 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))) (-3548 (*1 *2 *3 *3) (-12 (-4 *3 (-286)) (-4 *3 (-160)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-630 *3 *4 *5 *6)) (-4 *6 (-629 *3 *4 *5)))) (-2753 (*1 *2 *2) (-12 (-4 *3 (-286)) (-4 *3 (-160)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *1 (-630 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))) (-4212 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *4 (-160)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4))) (-5 *1 (-630 *4 *5 *6 *3)) (-4 *3 (-629 *4 *5 *6)))) (-2800 (*1 *2 *2) (|partial| -12 (-4 *3 (-517)) (-4 *3 (-160)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *1 (-630 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))) (-3947 (*1 *2 *2) (-12 (-4 *3 (-517)) (-4 *3 (-160)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *1 (-630 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))) (-2634 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *4 (-160)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4)) (-5 *2 (-591 *6)) (-5 *1 (-630 *4 *5 *6 *3)) (-4 *3 (-629 *4 *5 *6)))) (-2482 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *4 (-160)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4)) (-5 *2 (-712)) (-5 *1 (-630 *4 *5 *6 *3)) (-4 *3 (-629 *4 *5 *6)))) (-4073 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *4 (-160)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4)) (-5 *2 (-712)) (-5 *1 (-630 *4 *5 *6 *3)) (-4 *3 (-629 *4 *5 *6)))) (-2988 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-525)) (-4 *3 (-160)) (-4 *5 (-351 *3)) (-4 *6 (-351 *3)) (-5 *1 (-630 *3 *5 *6 *2)) (-4 *2 (-629 *3 *5 *6)))) (-2575 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-525)) (-4 *3 (-160)) (-4 *5 (-351 *3)) (-4 *6 (-351 *3)) (-5 *1 (-630 *3 *5 *6 *2)) (-4 *2 (-629 *3 *5 *6)))) (-3344 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-525)) (-4 *4 (-160)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4)) (-5 *1 (-630 *4 *5 *6 *2)) (-4 *2 (-629 *4 *5 *6)))) (-2807 (*1 *2 *3) (-12 (-4 *4 (-351 *2)) (-4 *5 (-351 *2)) (-4 *2 (-160)) (-5 *1 (-630 *2 *4 *5 *3)) (-4 *3 (-629 *2 *4 *5)))) (-2238 (*1 *2 *3) (-12 (-4 *4 (-351 *2)) (-4 *5 (-351 *2)) (-4 *2 (-160)) (-5 *1 (-630 *2 *4 *5 *3)) (-4 *3 (-629 *2 *4 *5)))))
+(-10 -7 (-15 -2238 (|#1| |#4|)) (-15 -2807 (|#1| |#4|)) (-15 -3344 (|#4| |#4| (-525) (-525))) (-15 -2575 (|#4| |#4| |#1| (-525) (-525))) (-15 -2988 (|#4| |#4| |#1| (-525) (-525))) (IF (|has| |#1| (-517)) (PROGN (-15 -4073 ((-712) |#4|)) (-15 -2482 ((-712) |#4|)) (-15 -2634 ((-591 |#3|) |#4|)) (-15 -3947 (|#4| |#4|)) (-15 -2800 ((-3 |#4| "failed") |#4|)) (-15 -4212 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-286)) (PROGN (-15 -2753 (|#4| |#4|)) (-15 -3548 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-341)) (-15 -1914 ((-3 |#4| "failed") |#4|)) |%noBranch|))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-2168 (($ (-712) (-712)) 46)) (-1753 (($ $ $) NIL)) (-1278 (($ (-1171 |#1|)) NIL) (($ $) NIL)) (-1290 (((-108) $) NIL)) (-1364 (($ $ (-525) (-525)) 12)) (-2913 (($ $ (-525) (-525)) NIL)) (-3737 (($ $ (-525) (-525) (-525) (-525)) NIL)) (-2231 (($ $) NIL)) (-3079 (((-108) $) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-3768 (($ $ (-525) (-525) $) NIL)) (-3186 ((|#1| $ (-525) (-525) |#1|) NIL) (($ $ (-591 (-525)) (-591 (-525)) $) NIL)) (-2775 (($ $ (-525) (-1171 |#1|)) NIL)) (-1743 (($ $ (-525) (-1171 |#1|)) NIL)) (-1504 (($ (-712) |#1|) 22)) (-3798 (($) NIL T CONST)) (-2753 (($ $) 31 (|has| |#1| (-286)))) (-3725 (((-1171 |#1|) $ (-525)) NIL)) (-4073 (((-712) $) 33 (|has| |#1| (-517)))) (-3255 ((|#1| $ (-525) (-525) |#1|) 50)) (-3217 ((|#1| $ (-525) (-525)) NIL)) (-3454 (((-591 |#1|) $) NIL)) (-2482 (((-712) $) 35 (|has| |#1| (-517)))) (-2634 (((-591 (-1171 |#1|)) $) 38 (|has| |#1| (-517)))) (-2281 (((-712) $) 20)) (-1268 (($ (-712) (-712) |#1|) 16)) (-2296 (((-712) $) 21)) (-2910 (((-108) $ (-712)) NIL)) (-2807 ((|#1| $) 29 (|has| |#1| (-6 (-4252 "*"))))) (-1755 (((-525) $) 9)) (-1639 (((-525) $) 10)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4230 (((-525) $) 11)) (-2631 (((-525) $) 47)) (-3393 (($ (-591 (-591 |#1|))) NIL)) (-3249 (($ (-1 |#1| |#1|) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3349 (((-591 (-591 |#1|)) $) 59)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-1914 (((-3 $ "failed") $) 42 (|has| |#1| (-341)))) (-2208 (($ $ $) NIL)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-1941 (($ $ |#1|) NIL)) (-2089 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#1| $ (-525) (-525)) NIL) ((|#1| $ (-525) (-525) |#1|) NIL) (($ $ (-591 (-525)) (-591 (-525))) NIL)) (-3487 (($ (-591 |#1|)) NIL) (($ (-591 $)) NIL) (($ (-1171 |#1|)) 51)) (-2740 (((-108) $) NIL)) (-2238 ((|#1| $) 27 (|has| |#1| (-6 (-4252 "*"))))) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) NIL)) (-1408 (((-501) $) 63 (|has| |#1| (-566 (-501))))) (-1793 (((-1171 |#1|) $ (-525)) NIL)) (-3022 (($ (-1171 |#1|)) NIL) (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3489 (((-108) $) NIL)) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341)))) (-4164 (($ $ $) NIL) (($ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-712)) 23) (($ $ (-525)) 45 (|has| |#1| (-341)))) (* (($ $ $) 13) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-525) $) NIL) (((-1171 |#1|) $ (-1171 |#1|)) NIL) (((-1171 |#1|) (-1171 |#1|) $) NIL)) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-631 |#1|) (-13 (-629 |#1| (-1171 |#1|) (-1171 |#1|)) (-10 -8 (-15 -3487 ($ (-1171 |#1|))) (IF (|has| |#1| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|) (IF (|has| |#1| (-341)) (-15 -1914 ((-3 $ "failed") $)) |%noBranch|))) (-975)) (T -631))
+((-1914 (*1 *1 *1) (|partial| -12 (-5 *1 (-631 *2)) (-4 *2 (-341)) (-4 *2 (-975)))) (-3487 (*1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-975)) (-5 *1 (-631 *3)))))
+(-13 (-629 |#1| (-1171 |#1|) (-1171 |#1|)) (-10 -8 (-15 -3487 ($ (-1171 |#1|))) (IF (|has| |#1| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|) (IF (|has| |#1| (-341)) (-15 -1914 ((-3 $ "failed") $)) |%noBranch|)))
+((-2189 (((-631 |#1|) (-631 |#1|) (-631 |#1|) (-631 |#1|)) 25)) (-2739 (((-631 |#1|) (-631 |#1|) (-631 |#1|) |#1|) 21)) (-2679 (((-631 |#1|) (-631 |#1|) (-631 |#1|) (-631 |#1|) (-631 |#1|) (-712)) 26)) (-3420 (((-631 |#1|) (-631 |#1|) (-631 |#1|) (-631 |#1|)) 14)) (-3744 (((-631 |#1|) (-631 |#1|) (-631 |#1|) (-631 |#1|)) 18) (((-631 |#1|) (-631 |#1|) (-631 |#1|)) 16)) (-4133 (((-631 |#1|) (-631 |#1|) |#1| (-631 |#1|)) 20)) (-1580 (((-631 |#1|) (-631 |#1|) (-631 |#1|)) 12)) (** (((-631 |#1|) (-631 |#1|) (-712)) 30)))
+(((-632 |#1|) (-10 -7 (-15 -1580 ((-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -3420 ((-631 |#1|) (-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -3744 ((-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -3744 ((-631 |#1|) (-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -4133 ((-631 |#1|) (-631 |#1|) |#1| (-631 |#1|))) (-15 -2739 ((-631 |#1|) (-631 |#1|) (-631 |#1|) |#1|)) (-15 -2189 ((-631 |#1|) (-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -2679 ((-631 |#1|) (-631 |#1|) (-631 |#1|) (-631 |#1|) (-631 |#1|) (-712))) (-15 ** ((-631 |#1|) (-631 |#1|) (-712)))) (-975)) (T -632))
+((** (*1 *2 *2 *3) (-12 (-5 *2 (-631 *4)) (-5 *3 (-712)) (-4 *4 (-975)) (-5 *1 (-632 *4)))) (-2679 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-631 *4)) (-5 *3 (-712)) (-4 *4 (-975)) (-5 *1 (-632 *4)))) (-2189 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-632 *3)))) (-2739 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-632 *3)))) (-4133 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-632 *3)))) (-3744 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-632 *3)))) (-3744 (*1 *2 *2 *2) (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-632 *3)))) (-3420 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-632 *3)))) (-1580 (*1 *2 *2 *2) (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-632 *3)))))
+(-10 -7 (-15 -1580 ((-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -3420 ((-631 |#1|) (-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -3744 ((-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -3744 ((-631 |#1|) (-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -4133 ((-631 |#1|) (-631 |#1|) |#1| (-631 |#1|))) (-15 -2739 ((-631 |#1|) (-631 |#1|) (-631 |#1|) |#1|)) (-15 -2189 ((-631 |#1|) (-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -2679 ((-631 |#1|) (-631 |#1|) (-631 |#1|) (-631 |#1|) (-631 |#1|) (-712))) (-15 ** ((-631 |#1|) (-631 |#1|) (-712))))
+((-2283 ((|#2| |#2| |#4|) 25)) (-1228 (((-631 |#2|) |#3| |#4|) 31)) (-4114 (((-631 |#2|) |#2| |#4|) 30)) (-2693 (((-1171 |#2|) |#2| |#4|) 16)) (-3365 ((|#2| |#3| |#4|) 24)) (-2545 (((-631 |#2|) |#3| |#4| (-712) (-712)) 38)) (-1559 (((-631 |#2|) |#2| |#4| (-712)) 37)))
+(((-633 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2693 ((-1171 |#2|) |#2| |#4|)) (-15 -3365 (|#2| |#3| |#4|)) (-15 -2283 (|#2| |#2| |#4|)) (-15 -4114 ((-631 |#2|) |#2| |#4|)) (-15 -1559 ((-631 |#2|) |#2| |#4| (-712))) (-15 -1228 ((-631 |#2|) |#3| |#4|)) (-15 -2545 ((-631 |#2|) |#3| |#4| (-712) (-712)))) (-1018) (-833 |#1|) (-351 |#2|) (-13 (-351 |#1|) (-10 -7 (-6 -4250)))) (T -633))
+((-2545 (*1 *2 *3 *4 *5 *5) (-12 (-5 *5 (-712)) (-4 *6 (-1018)) (-4 *7 (-833 *6)) (-5 *2 (-631 *7)) (-5 *1 (-633 *6 *7 *3 *4)) (-4 *3 (-351 *7)) (-4 *4 (-13 (-351 *6) (-10 -7 (-6 -4250)))))) (-1228 (*1 *2 *3 *4) (-12 (-4 *5 (-1018)) (-4 *6 (-833 *5)) (-5 *2 (-631 *6)) (-5 *1 (-633 *5 *6 *3 *4)) (-4 *3 (-351 *6)) (-4 *4 (-13 (-351 *5) (-10 -7 (-6 -4250)))))) (-1559 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-712)) (-4 *6 (-1018)) (-4 *3 (-833 *6)) (-5 *2 (-631 *3)) (-5 *1 (-633 *6 *3 *7 *4)) (-4 *7 (-351 *3)) (-4 *4 (-13 (-351 *6) (-10 -7 (-6 -4250)))))) (-4114 (*1 *2 *3 *4) (-12 (-4 *5 (-1018)) (-4 *3 (-833 *5)) (-5 *2 (-631 *3)) (-5 *1 (-633 *5 *3 *6 *4)) (-4 *6 (-351 *3)) (-4 *4 (-13 (-351 *5) (-10 -7 (-6 -4250)))))) (-2283 (*1 *2 *2 *3) (-12 (-4 *4 (-1018)) (-4 *2 (-833 *4)) (-5 *1 (-633 *4 *2 *5 *3)) (-4 *5 (-351 *2)) (-4 *3 (-13 (-351 *4) (-10 -7 (-6 -4250)))))) (-3365 (*1 *2 *3 *4) (-12 (-4 *5 (-1018)) (-4 *2 (-833 *5)) (-5 *1 (-633 *5 *2 *3 *4)) (-4 *3 (-351 *2)) (-4 *4 (-13 (-351 *5) (-10 -7 (-6 -4250)))))) (-2693 (*1 *2 *3 *4) (-12 (-4 *5 (-1018)) (-4 *3 (-833 *5)) (-5 *2 (-1171 *3)) (-5 *1 (-633 *5 *3 *6 *4)) (-4 *6 (-351 *3)) (-4 *4 (-13 (-351 *5) (-10 -7 (-6 -4250)))))))
+(-10 -7 (-15 -2693 ((-1171 |#2|) |#2| |#4|)) (-15 -3365 (|#2| |#3| |#4|)) (-15 -2283 (|#2| |#2| |#4|)) (-15 -4114 ((-631 |#2|) |#2| |#4|)) (-15 -1559 ((-631 |#2|) |#2| |#4| (-712))) (-15 -1228 ((-631 |#2|) |#3| |#4|)) (-15 -2545 ((-631 |#2|) |#3| |#4| (-712) (-712))))
+((-2004 (((-2 (|:| |num| (-631 |#1|)) (|:| |den| |#1|)) (-631 |#2|)) 20)) (-2835 ((|#1| (-631 |#2|)) 9)) (-3890 (((-631 |#1|) (-631 |#2|)) 18)))
+(((-634 |#1| |#2|) (-10 -7 (-15 -2835 (|#1| (-631 |#2|))) (-15 -3890 ((-631 |#1|) (-631 |#2|))) (-15 -2004 ((-2 (|:| |num| (-631 |#1|)) (|:| |den| |#1|)) (-631 |#2|)))) (-517) (-923 |#1|)) (T -634))
+((-2004 (*1 *2 *3) (-12 (-5 *3 (-631 *5)) (-4 *5 (-923 *4)) (-4 *4 (-517)) (-5 *2 (-2 (|:| |num| (-631 *4)) (|:| |den| *4))) (-5 *1 (-634 *4 *5)))) (-3890 (*1 *2 *3) (-12 (-5 *3 (-631 *5)) (-4 *5 (-923 *4)) (-4 *4 (-517)) (-5 *2 (-631 *4)) (-5 *1 (-634 *4 *5)))) (-2835 (*1 *2 *3) (-12 (-5 *3 (-631 *4)) (-4 *4 (-923 *2)) (-4 *2 (-517)) (-5 *1 (-634 *2 *4)))))
+(-10 -7 (-15 -2835 (|#1| (-631 |#2|))) (-15 -3890 ((-631 |#1|) (-631 |#2|))) (-15 -2004 ((-2 (|:| |num| (-631 |#1|)) (|:| |den| |#1|)) (-631 |#2|))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2796 (((-631 (-640))) NIL) (((-631 (-640)) (-1171 $)) NIL)) (-2569 (((-640) $) NIL)) (-1987 (($ $) NIL (|has| (-640) (-1111)))) (-3169 (($ $) NIL (|has| (-640) (-1111)))) (-3734 (((-1099 (-854) (-712)) (-525)) NIL (|has| (-640) (-327)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (-12 (|has| (-640) (-286)) (|has| (-640) (-842))))) (-1291 (($ $) NIL (-3321 (-12 (|has| (-640) (-286)) (|has| (-640) (-842))) (|has| (-640) (-341))))) (-2827 (((-396 $) $) NIL (-3321 (-12 (|has| (-640) (-286)) (|has| (-640) (-842))) (|has| (-640) (-341))))) (-1361 (($ $) NIL (-12 (|has| (-640) (-932)) (|has| (-640) (-1111))))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (-12 (|has| (-640) (-286)) (|has| (-640) (-842))))) (-1947 (((-108) $ $) NIL (|has| (-640) (-286)))) (-3032 (((-712)) NIL (|has| (-640) (-346)))) (-1431 (($ $) NIL (|has| (-640) (-1111)))) (-3144 (($ $) NIL (|has| (-640) (-1111)))) (-1719 (($ $) NIL (|has| (-640) (-1111)))) (-1321 (($ $) NIL (|has| (-640) (-1111)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL) (((-3 (-640) "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL (|has| (-640) (-966 (-385 (-525)))))) (-3528 (((-525) $) NIL) (((-640) $) NIL) (((-385 (-525)) $) NIL (|has| (-640) (-966 (-385 (-525)))))) (-4171 (($ (-1171 (-640))) NIL) (($ (-1171 (-640)) (-1171 $)) NIL)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-640) (-327)))) (-2129 (($ $ $) NIL (|has| (-640) (-286)))) (-3922 (((-631 (-640)) $) NIL) (((-631 (-640)) $ (-1171 $)) NIL)) (-3305 (((-631 (-640)) (-631 $)) NIL) (((-2 (|:| -4057 (-631 (-640))) (|:| |vec| (-1171 (-640)))) (-631 $) (-1171 $)) NIL) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| (-640) (-587 (-525)))) (((-631 (-525)) (-631 $)) NIL (|has| (-640) (-587 (-525))))) (-1227 (((-3 $ "failed") (-385 (-1085 (-640)))) NIL (|has| (-640) (-341))) (($ (-1085 (-640))) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-1373 (((-640) $) 29)) (-1511 (((-3 (-385 (-525)) "failed") $) NIL (|has| (-640) (-510)))) (-1352 (((-108) $) NIL (|has| (-640) (-510)))) (-1726 (((-385 (-525)) $) NIL (|has| (-640) (-510)))) (-4073 (((-854)) NIL)) (-3377 (($) NIL (|has| (-640) (-346)))) (-2110 (($ $ $) NIL (|has| (-640) (-286)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| (-640) (-286)))) (-3944 (($) NIL (|has| (-640) (-327)))) (-4104 (((-108) $) NIL (|has| (-640) (-327)))) (-2299 (($ $) NIL (|has| (-640) (-327))) (($ $ (-712)) NIL (|has| (-640) (-327)))) (-2744 (((-108) $) NIL (-3321 (-12 (|has| (-640) (-286)) (|has| (-640) (-842))) (|has| (-640) (-341))))) (-2694 (((-2 (|:| |r| (-640)) (|:| |phi| (-640))) $) NIL (-12 (|has| (-640) (-984)) (|has| (-640) (-1111))))) (-1784 (($) NIL (|has| (-640) (-1111)))) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (|has| (-640) (-819 (-357)))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (|has| (-640) (-819 (-525))))) (-3873 (((-774 (-854)) $) NIL (|has| (-640) (-327))) (((-854) $) NIL (|has| (-640) (-327)))) (-2824 (((-108) $) NIL)) (-3956 (($ $ (-525)) NIL (-12 (|has| (-640) (-932)) (|has| (-640) (-1111))))) (-2771 (((-640) $) NIL)) (-2085 (((-3 $ "failed") $) NIL (|has| (-640) (-327)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| (-640) (-286)))) (-1382 (((-1085 (-640)) $) NIL (|has| (-640) (-341)))) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-1340 (($ (-1 (-640) (-640)) $) NIL)) (-3016 (((-854) $) NIL (|has| (-640) (-346)))) (-1488 (($ $) NIL (|has| (-640) (-1111)))) (-1223 (((-1085 (-640)) $) NIL)) (-1356 (($ (-591 $)) NIL (|has| (-640) (-286))) (($ $ $) NIL (|has| (-640) (-286)))) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL (|has| (-640) (-341)))) (-3506 (($) NIL (|has| (-640) (-327)) CONST)) (-2226 (($ (-854)) NIL (|has| (-640) (-346)))) (-2171 (($) NIL)) (-1386 (((-640) $) 31)) (-2047 (((-1036) $) NIL)) (-3857 (($) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| (-640) (-286)))) (-1399 (($ (-591 $)) NIL (|has| (-640) (-286))) (($ $ $) NIL (|has| (-640) (-286)))) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) NIL (|has| (-640) (-327)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (-12 (|has| (-640) (-286)) (|has| (-640) (-842))))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (-12 (|has| (-640) (-286)) (|has| (-640) (-842))))) (-1348 (((-396 $) $) NIL (-3321 (-12 (|has| (-640) (-286)) (|has| (-640) (-842))) (|has| (-640) (-341))))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-640) (-286))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| (-640) (-286)))) (-2089 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-640)) NIL (|has| (-640) (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| (-640) (-286)))) (-1409 (($ $) NIL (|has| (-640) (-1111)))) (-4132 (($ $ (-1089) (-640)) NIL (|has| (-640) (-486 (-1089) (-640)))) (($ $ (-591 (-1089)) (-591 (-640))) NIL (|has| (-640) (-486 (-1089) (-640)))) (($ $ (-591 (-273 (-640)))) NIL (|has| (-640) (-288 (-640)))) (($ $ (-273 (-640))) NIL (|has| (-640) (-288 (-640)))) (($ $ (-640) (-640)) NIL (|has| (-640) (-288 (-640)))) (($ $ (-591 (-640)) (-591 (-640))) NIL (|has| (-640) (-288 (-640))))) (-1712 (((-712) $) NIL (|has| (-640) (-286)))) (-3164 (($ $ (-640)) NIL (|has| (-640) (-265 (-640) (-640))))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| (-640) (-286)))) (-2976 (((-640)) NIL) (((-640) (-1171 $)) NIL)) (-2953 (((-3 (-712) "failed") $ $) NIL (|has| (-640) (-327))) (((-712) $) NIL (|has| (-640) (-327)))) (-3266 (($ $ (-1 (-640) (-640))) NIL) (($ $ (-1 (-640) (-640)) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-640) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-640) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-640) (-833 (-1089)))) (($ $ (-1089)) NIL (|has| (-640) (-833 (-1089)))) (($ $ (-712)) NIL (|has| (-640) (-213))) (($ $) NIL (|has| (-640) (-213)))) (-1244 (((-631 (-640)) (-1171 $) (-1 (-640) (-640))) NIL (|has| (-640) (-341)))) (-1478 (((-1085 (-640))) NIL)) (-1502 (($ $) NIL (|has| (-640) (-1111)))) (-1333 (($ $) NIL (|has| (-640) (-1111)))) (-2616 (($) NIL (|has| (-640) (-327)))) (-1996 (($ $) NIL (|has| (-640) (-1111)))) (-1309 (($ $) NIL (|has| (-640) (-1111)))) (-1973 (($ $) NIL (|has| (-640) (-1111)))) (-3156 (($ $) NIL (|has| (-640) (-1111)))) (-3572 (((-631 (-640)) (-1171 $)) NIL) (((-1171 (-640)) $) NIL) (((-631 (-640)) (-1171 $) (-1171 $)) NIL) (((-1171 (-640)) $ (-1171 $)) NIL)) (-1408 (((-501) $) NIL (|has| (-640) (-566 (-501)))) (((-157 (-205)) $) NIL (|has| (-640) (-951))) (((-157 (-357)) $) NIL (|has| (-640) (-951))) (((-825 (-357)) $) NIL (|has| (-640) (-566 (-825 (-357))))) (((-825 (-525)) $) NIL (|has| (-640) (-566 (-825 (-525))))) (($ (-1085 (-640))) NIL) (((-1085 (-640)) $) NIL) (($ (-1171 (-640))) NIL) (((-1171 (-640)) $) NIL)) (-3228 (($ $) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-3321 (-12 (|has| (-640) (-286)) (|has| $ (-136)) (|has| (-640) (-842))) (|has| (-640) (-327))))) (-2182 (($ (-640) (-640)) 12)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-525)) NIL) (($ (-640)) NIL) (($ (-157 (-357))) 13) (($ (-157 (-525))) 19) (($ (-157 (-640))) 28) (($ (-157 (-642))) 25) (((-157 (-357)) $) 33) (($ (-385 (-525))) NIL (-3321 (|has| (-640) (-966 (-385 (-525)))) (|has| (-640) (-341))))) (-1437 (($ $) NIL (|has| (-640) (-327))) (((-3 $ "failed") $) NIL (-3321 (-12 (|has| (-640) (-286)) (|has| $ (-136)) (|has| (-640) (-842))) (|has| (-640) (-136))))) (-3806 (((-1085 (-640)) $) NIL)) (-2128 (((-712)) NIL)) (-4003 (((-1171 $)) NIL)) (-1563 (($ $) NIL (|has| (-640) (-1111)))) (-1371 (($ $) NIL (|has| (-640) (-1111)))) (-2495 (((-108) $ $) NIL)) (-1515 (($ $) NIL (|has| (-640) (-1111)))) (-1346 (($ $) NIL (|has| (-640) (-1111)))) (-1591 (($ $) NIL (|has| (-640) (-1111)))) (-1400 (($ $) NIL (|has| (-640) (-1111)))) (-1398 (((-640) $) NIL (|has| (-640) (-1111)))) (-3277 (($ $) NIL (|has| (-640) (-1111)))) (-1415 (($ $) NIL (|has| (-640) (-1111)))) (-1578 (($ $) NIL (|has| (-640) (-1111)))) (-1385 (($ $) NIL (|has| (-640) (-1111)))) (-1527 (($ $) NIL (|has| (-640) (-1111)))) (-1358 (($ $) NIL (|has| (-640) (-1111)))) (-1539 (($ $) NIL (|has| (-640) (-984)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| (-640) (-341)))) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ (-1 (-640) (-640))) NIL) (($ $ (-1 (-640) (-640)) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-640) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-640) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-640) (-833 (-1089)))) (($ $ (-1089)) NIL (|has| (-640) (-833 (-1089)))) (($ $ (-712)) NIL (|has| (-640) (-213))) (($ $) NIL (|has| (-640) (-213)))) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL (|has| (-640) (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ $) NIL (|has| (-640) (-1111))) (($ $ (-385 (-525))) NIL (-12 (|has| (-640) (-932)) (|has| (-640) (-1111)))) (($ $ (-525)) NIL (|has| (-640) (-341)))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ (-640) $) NIL) (($ $ (-640)) NIL) (($ (-385 (-525)) $) NIL (|has| (-640) (-341))) (($ $ (-385 (-525))) NIL (|has| (-640) (-341)))))
+(((-635) (-13 (-365) (-154 (-640)) (-10 -8 (-15 -3022 ($ (-157 (-357)))) (-15 -3022 ($ (-157 (-525)))) (-15 -3022 ($ (-157 (-640)))) (-15 -3022 ($ (-157 (-642)))) (-15 -3022 ((-157 (-357)) $))))) (T -635))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-157 (-357))) (-5 *1 (-635)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-157 (-525))) (-5 *1 (-635)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-157 (-640))) (-5 *1 (-635)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-157 (-642))) (-5 *1 (-635)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-157 (-357))) (-5 *1 (-635)))))
+(-13 (-365) (-154 (-640)) (-10 -8 (-15 -3022 ($ (-157 (-357)))) (-15 -3022 ($ (-157 (-525)))) (-15 -3022 ($ (-157 (-640)))) (-15 -3022 ($ (-157 (-642)))) (-15 -3022 ((-157 (-357)) $))))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3891 (((-108) $ (-712)) 8)) (-1797 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4250)))) (-3798 (($) 7 T CONST)) (-3611 (($ $) 62)) (-3098 (($ $) 58 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3901 (($ |#1| $) 47 (|has| $ (-6 -4250))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4250)))) (-3677 (($ |#1| $) 57 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4250)))) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-1464 ((|#1| $) 39)) (-2470 (($ |#1| $) 40) (($ |#1| $ (-712)) 63)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-3631 ((|#1| $) 41)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-2945 (((-591 (-2 (|:| -1221 |#1|) (|:| -2064 (-712)))) $) 61)) (-2311 (($) 49) (($ (-591 |#1|)) 48)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1408 (((-501) $) 59 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 50)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-1870 (($ (-591 |#1|)) 42)) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-636 |#1|) (-131) (-1018)) (T -636))
+((-2470 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-712)) (-4 *1 (-636 *2)) (-4 *2 (-1018)))) (-3611 (*1 *1 *1) (-12 (-4 *1 (-636 *2)) (-4 *2 (-1018)))) (-2945 (*1 *2 *1) (-12 (-4 *1 (-636 *3)) (-4 *3 (-1018)) (-5 *2 (-591 (-2 (|:| -1221 *3) (|:| -2064 (-712))))))))
+(-13 (-215 |t#1|) (-10 -8 (-15 -2470 ($ |t#1| $ (-712))) (-15 -3611 ($ $)) (-15 -2945 ((-591 (-2 (|:| -1221 |t#1|) (|:| -2064 (-712)))) $))))
+(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-215 |#1|) . T) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-3237 (((-591 |#1|) (-591 (-2 (|:| -1348 |#1|) (|:| -1316 (-525)))) (-525)) 47)) (-2034 ((|#1| |#1| (-525)) 46)) (-1399 ((|#1| |#1| |#1| (-525)) 36)) (-1348 (((-591 |#1|) |#1| (-525)) 39)) (-1571 ((|#1| |#1| (-525) |#1| (-525)) 32)) (-3038 (((-591 (-2 (|:| -1348 |#1|) (|:| -1316 (-525)))) |#1| (-525)) 45)))
+(((-637 |#1|) (-10 -7 (-15 -1399 (|#1| |#1| |#1| (-525))) (-15 -2034 (|#1| |#1| (-525))) (-15 -1348 ((-591 |#1|) |#1| (-525))) (-15 -3038 ((-591 (-2 (|:| -1348 |#1|) (|:| -1316 (-525)))) |#1| (-525))) (-15 -3237 ((-591 |#1|) (-591 (-2 (|:| -1348 |#1|) (|:| -1316 (-525)))) (-525))) (-15 -1571 (|#1| |#1| (-525) |#1| (-525)))) (-1147 (-525))) (T -637))
+((-1571 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-637 *2)) (-4 *2 (-1147 *3)))) (-3237 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-2 (|:| -1348 *5) (|:| -1316 (-525))))) (-5 *4 (-525)) (-4 *5 (-1147 *4)) (-5 *2 (-591 *5)) (-5 *1 (-637 *5)))) (-3038 (*1 *2 *3 *4) (-12 (-5 *4 (-525)) (-5 *2 (-591 (-2 (|:| -1348 *3) (|:| -1316 *4)))) (-5 *1 (-637 *3)) (-4 *3 (-1147 *4)))) (-1348 (*1 *2 *3 *4) (-12 (-5 *4 (-525)) (-5 *2 (-591 *3)) (-5 *1 (-637 *3)) (-4 *3 (-1147 *4)))) (-2034 (*1 *2 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-637 *2)) (-4 *2 (-1147 *3)))) (-1399 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-637 *2)) (-4 *2 (-1147 *3)))))
+(-10 -7 (-15 -1399 (|#1| |#1| |#1| (-525))) (-15 -2034 (|#1| |#1| (-525))) (-15 -1348 ((-591 |#1|) |#1| (-525))) (-15 -3038 ((-591 (-2 (|:| -1348 |#1|) (|:| -1316 (-525)))) |#1| (-525))) (-15 -3237 ((-591 |#1|) (-591 (-2 (|:| -1348 |#1|) (|:| -1316 (-525)))) (-525))) (-15 -1571 (|#1| |#1| (-525) |#1| (-525))))
+((-2038 (((-1 (-876 (-205)) (-205) (-205)) (-1 (-205) (-205) (-205)) (-1 (-205) (-205) (-205)) (-1 (-205) (-205) (-205)) (-1 (-205) (-205) (-205) (-205))) 17)) (-3687 (((-1049 (-205)) (-1049 (-205)) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-205)) (-1013 (-205)) (-591 (-242))) 40) (((-1049 (-205)) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-205)) (-1013 (-205)) (-591 (-242))) 42) (((-1049 (-205)) (-1 (-205) (-205) (-205)) (-1 (-205) (-205) (-205)) (-1 (-205) (-205) (-205)) (-3 (-1 (-205) (-205) (-205) (-205)) "undefined") (-1013 (-205)) (-1013 (-205)) (-591 (-242))) 44)) (-3102 (((-1049 (-205)) (-294 (-525)) (-294 (-525)) (-294 (-525)) (-1 (-205) (-205)) (-1013 (-205)) (-591 (-242))) NIL)) (-2995 (((-1049 (-205)) (-1 (-205) (-205) (-205)) (-3 (-1 (-205) (-205) (-205) (-205)) "undefined") (-1013 (-205)) (-1013 (-205)) (-591 (-242))) 45)))
+(((-638) (-10 -7 (-15 -3687 ((-1049 (-205)) (-1 (-205) (-205) (-205)) (-1 (-205) (-205) (-205)) (-1 (-205) (-205) (-205)) (-3 (-1 (-205) (-205) (-205) (-205)) "undefined") (-1013 (-205)) (-1013 (-205)) (-591 (-242)))) (-15 -3687 ((-1049 (-205)) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-205)) (-1013 (-205)) (-591 (-242)))) (-15 -3687 ((-1049 (-205)) (-1049 (-205)) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-205)) (-1013 (-205)) (-591 (-242)))) (-15 -2995 ((-1049 (-205)) (-1 (-205) (-205) (-205)) (-3 (-1 (-205) (-205) (-205) (-205)) "undefined") (-1013 (-205)) (-1013 (-205)) (-591 (-242)))) (-15 -3102 ((-1049 (-205)) (-294 (-525)) (-294 (-525)) (-294 (-525)) (-1 (-205) (-205)) (-1013 (-205)) (-591 (-242)))) (-15 -2038 ((-1 (-876 (-205)) (-205) (-205)) (-1 (-205) (-205) (-205)) (-1 (-205) (-205) (-205)) (-1 (-205) (-205) (-205)) (-1 (-205) (-205) (-205) (-205)))))) (T -638))
+((-2038 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-1 (-205) (-205) (-205))) (-5 *4 (-1 (-205) (-205) (-205) (-205))) (-5 *2 (-1 (-876 (-205)) (-205) (-205))) (-5 *1 (-638)))) (-3102 (*1 *2 *3 *3 *3 *4 *5 *6) (-12 (-5 *3 (-294 (-525))) (-5 *4 (-1 (-205) (-205))) (-5 *5 (-1013 (-205))) (-5 *6 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-638)))) (-2995 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-205) (-205) (-205))) (-5 *4 (-3 (-1 (-205) (-205) (-205) (-205)) "undefined")) (-5 *5 (-1013 (-205))) (-5 *6 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-638)))) (-3687 (*1 *2 *2 *3 *4 *4 *5) (-12 (-5 *2 (-1049 (-205))) (-5 *3 (-1 (-876 (-205)) (-205) (-205))) (-5 *4 (-1013 (-205))) (-5 *5 (-591 (-242))) (-5 *1 (-638)))) (-3687 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-876 (-205)) (-205) (-205))) (-5 *4 (-1013 (-205))) (-5 *5 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-638)))) (-3687 (*1 *2 *3 *3 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-205) (-205) (-205))) (-5 *4 (-3 (-1 (-205) (-205) (-205) (-205)) "undefined")) (-5 *5 (-1013 (-205))) (-5 *6 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-638)))))
+(-10 -7 (-15 -3687 ((-1049 (-205)) (-1 (-205) (-205) (-205)) (-1 (-205) (-205) (-205)) (-1 (-205) (-205) (-205)) (-3 (-1 (-205) (-205) (-205) (-205)) "undefined") (-1013 (-205)) (-1013 (-205)) (-591 (-242)))) (-15 -3687 ((-1049 (-205)) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-205)) (-1013 (-205)) (-591 (-242)))) (-15 -3687 ((-1049 (-205)) (-1049 (-205)) (-1 (-876 (-205)) (-205) (-205)) (-1013 (-205)) (-1013 (-205)) (-591 (-242)))) (-15 -2995 ((-1049 (-205)) (-1 (-205) (-205) (-205)) (-3 (-1 (-205) (-205) (-205) (-205)) "undefined") (-1013 (-205)) (-1013 (-205)) (-591 (-242)))) (-15 -3102 ((-1049 (-205)) (-294 (-525)) (-294 (-525)) (-294 (-525)) (-1 (-205) (-205)) (-1013 (-205)) (-591 (-242)))) (-15 -2038 ((-1 (-876 (-205)) (-205) (-205)) (-1 (-205) (-205) (-205)) (-1 (-205) (-205) (-205)) (-1 (-205) (-205) (-205)) (-1 (-205) (-205) (-205) (-205)))))
+((-1348 (((-396 (-1085 |#4|)) (-1085 |#4|)) 73) (((-396 |#4|) |#4|) 222)))
+(((-639 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1348 ((-396 |#4|) |#4|)) (-15 -1348 ((-396 (-1085 |#4|)) (-1085 |#4|)))) (-788) (-734) (-327) (-882 |#3| |#2| |#1|)) (T -639))
+((-1348 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-734)) (-4 *6 (-327)) (-4 *7 (-882 *6 *5 *4)) (-5 *2 (-396 (-1085 *7))) (-5 *1 (-639 *4 *5 *6 *7)) (-5 *3 (-1085 *7)))) (-1348 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-734)) (-4 *6 (-327)) (-5 *2 (-396 *3)) (-5 *1 (-639 *4 *5 *6 *3)) (-4 *3 (-882 *6 *5 *4)))))
+(-10 -7 (-15 -1348 ((-396 |#4|) |#4|)) (-15 -1348 ((-396 (-1085 |#4|)) (-1085 |#4|))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 84)) (-1508 (((-525) $) 30)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2121 (($ $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1361 (($ $) NIL)) (-1947 (((-108) $ $) NIL)) (-3329 (((-525) $) NIL)) (-3798 (($) NIL T CONST)) (-2562 (($ $) NIL)) (-1251 (((-3 (-525) "failed") $) 73) (((-3 (-385 (-525)) "failed") $) 26) (((-3 (-357) "failed") $) 70)) (-3528 (((-525) $) 75) (((-385 (-525)) $) 67) (((-357) $) 68)) (-2129 (($ $ $) 96)) (-4163 (((-3 $ "failed") $) 87)) (-2110 (($ $ $) 95)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2591 (((-854)) 77) (((-854) (-854)) 76)) (-2134 (((-108) $) NIL)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL)) (-3873 (((-525) $) NIL)) (-2824 (((-108) $) NIL)) (-3956 (($ $ (-525)) NIL)) (-2771 (($ $) NIL)) (-2732 (((-108) $) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3446 (((-525) (-525)) 81) (((-525)) 82)) (-3741 (($ $ $) NIL) (($) NIL (-12 (-2247 (|has| $ (-6 -4233))) (-2247 (|has| $ (-6 -4241)))))) (-4138 (((-525) (-525)) 79) (((-525)) 80)) (-2478 (($ $ $) NIL) (($) NIL (-12 (-2247 (|has| $ (-6 -4233))) (-2247 (|has| $ (-6 -4241)))))) (-3855 (((-525) $) 16)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 91)) (-3241 (((-854) (-525)) NIL (|has| $ (-6 -4241)))) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3093 (($ $) NIL)) (-2662 (($ $) NIL)) (-2286 (($ (-525) (-525)) NIL) (($ (-525) (-525) (-854)) NIL)) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) 92)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-2008 (((-525) $) 22)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 94)) (-2603 (((-854)) NIL) (((-854) (-854)) NIL (|has| $ (-6 -4241)))) (-1301 (((-854) (-525)) NIL (|has| $ (-6 -4241)))) (-1408 (((-357) $) NIL) (((-205) $) NIL) (((-825 (-357)) $) NIL)) (-3022 (((-796) $) 52) (($ (-525)) 63) (($ $) NIL) (($ (-385 (-525))) 66) (($ (-525)) 63) (($ (-385 (-525))) 66) (($ (-357)) 60) (((-357) $) 50) (($ (-642)) 55)) (-2128 (((-712)) 103)) (-3108 (($ (-525) (-525) (-854)) 44)) (-3862 (($ $) NIL)) (-3759 (((-854)) NIL) (((-854) (-854)) NIL (|has| $ (-6 -4241)))) (-2672 (((-854)) 35) (((-854) (-854)) 78)) (-2495 (((-108) $ $) NIL)) (-1539 (($ $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) 32 T CONST)) (-4197 (($) 17 T CONST)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 83)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 101)) (-4173 (($ $ $) 65)) (-4164 (($ $) 99) (($ $ $) 100)) (-4156 (($ $ $) 98)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL) (($ $ (-385 (-525))) 90)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 97) (($ $ $) 88) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL)))
+(((-640) (-13 (-382) (-365) (-341) (-966 (-357)) (-966 (-385 (-525))) (-138) (-10 -8 (-15 -2591 ((-854) (-854))) (-15 -2591 ((-854))) (-15 -2672 ((-854) (-854))) (-15 -2672 ((-854))) (-15 -4138 ((-525) (-525))) (-15 -4138 ((-525))) (-15 -3446 ((-525) (-525))) (-15 -3446 ((-525))) (-15 -3022 ((-357) $)) (-15 -3022 ($ (-642))) (-15 -3855 ((-525) $)) (-15 -2008 ((-525) $)) (-15 -3108 ($ (-525) (-525) (-854)))))) (T -640))
+((-2672 (*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-640)))) (-2008 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-640)))) (-3855 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-640)))) (-2591 (*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-640)))) (-2591 (*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-640)))) (-2672 (*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-640)))) (-4138 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-640)))) (-4138 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-640)))) (-3446 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-640)))) (-3446 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-640)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-357)) (-5 *1 (-640)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-642)) (-5 *1 (-640)))) (-3108 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-525)) (-5 *3 (-854)) (-5 *1 (-640)))))
+(-13 (-382) (-365) (-341) (-966 (-357)) (-966 (-385 (-525))) (-138) (-10 -8 (-15 -2591 ((-854) (-854))) (-15 -2591 ((-854))) (-15 -2672 ((-854) (-854))) (-15 -2672 ((-854))) (-15 -4138 ((-525) (-525))) (-15 -4138 ((-525))) (-15 -3446 ((-525) (-525))) (-15 -3446 ((-525))) (-15 -3022 ((-357) $)) (-15 -3022 ($ (-642))) (-15 -3855 ((-525) $)) (-15 -2008 ((-525) $)) (-15 -3108 ($ (-525) (-525) (-854)))))
+((-3809 (((-631 |#1|) (-631 |#1|) |#1| |#1|) 65)) (-2753 (((-631 |#1|) (-631 |#1|) |#1|) 48)) (-3685 (((-631 |#1|) (-631 |#1|) |#1|) 66)) (-2454 (((-631 |#1|) (-631 |#1|)) 49)) (-3548 (((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|) 64)))
+(((-641 |#1|) (-10 -7 (-15 -2454 ((-631 |#1|) (-631 |#1|))) (-15 -2753 ((-631 |#1|) (-631 |#1|) |#1|)) (-15 -3685 ((-631 |#1|) (-631 |#1|) |#1|)) (-15 -3809 ((-631 |#1|) (-631 |#1|) |#1| |#1|)) (-15 -3548 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|))) (-286)) (T -641))
+((-3548 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-641 *3)) (-4 *3 (-286)))) (-3809 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-631 *3)) (-4 *3 (-286)) (-5 *1 (-641 *3)))) (-3685 (*1 *2 *2 *3) (-12 (-5 *2 (-631 *3)) (-4 *3 (-286)) (-5 *1 (-641 *3)))) (-2753 (*1 *2 *2 *3) (-12 (-5 *2 (-631 *3)) (-4 *3 (-286)) (-5 *1 (-641 *3)))) (-2454 (*1 *2 *2) (-12 (-5 *2 (-631 *3)) (-4 *3 (-286)) (-5 *1 (-641 *3)))))
+(-10 -7 (-15 -2454 ((-631 |#1|) (-631 |#1|))) (-15 -2753 ((-631 |#1|) (-631 |#1|) |#1|)) (-15 -3685 ((-631 |#1|) (-631 |#1|) |#1|)) (-15 -3809 ((-631 |#1|) (-631 |#1|) |#1| |#1|)) (-15 -3548 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-3391 (($ $ $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1737 (($ $ $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3329 (((-525) $) NIL)) (-3427 (($ $ $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) 27)) (-3528 (((-525) $) 25)) (-2129 (($ $ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-1511 (((-3 (-385 (-525)) "failed") $) NIL)) (-1352 (((-108) $) NIL)) (-1726 (((-385 (-525)) $) NIL)) (-3377 (($ $) NIL) (($) NIL)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2467 (($ $ $ $) NIL)) (-3046 (($ $ $) NIL)) (-2134 (((-108) $) NIL)) (-1994 (($ $ $) NIL)) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL)) (-2824 (((-108) $) NIL)) (-2419 (((-108) $) NIL)) (-2085 (((-3 $ "failed") $) NIL)) (-2732 (((-108) $) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3989 (($ $ $ $) NIL)) (-3741 (($ $ $) NIL)) (-1850 (((-854) (-854)) 10) (((-854)) 9)) (-2478 (($ $ $) NIL)) (-3291 (($ $) NIL)) (-1657 (($ $) NIL)) (-1356 (($ (-591 $)) NIL) (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2885 (($ $ $) NIL)) (-3506 (($) NIL T CONST)) (-1699 (($ $) NIL)) (-2047 (((-1036) $) NIL) (($ $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ (-591 $)) NIL) (($ $ $) NIL)) (-1603 (($ $) NIL)) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3451 (((-108) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3266 (($ $) NIL) (($ $ (-712)) NIL)) (-4140 (($ $) NIL)) (-3199 (($ $) NIL)) (-1408 (((-205) $) NIL) (((-357) $) NIL) (((-825 (-525)) $) NIL) (((-501) $) NIL) (((-525) $) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) 24) (($ $) NIL) (($ (-525)) 24) (((-294 $) (-294 (-525))) 18)) (-2128 (((-712)) NIL)) (-1932 (((-108) $ $) NIL)) (-2516 (($ $ $) NIL)) (-2672 (($) NIL)) (-2495 (((-108) $ $) NIL)) (-1938 (($ $ $ $) NIL)) (-1539 (($ $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $) NIL) (($ $ (-712)) NIL)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL)))
+(((-642) (-13 (-365) (-510) (-10 -8 (-15 -1850 ((-854) (-854))) (-15 -1850 ((-854))) (-15 -3022 ((-294 $) (-294 (-525))))))) (T -642))
+((-1850 (*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-642)))) (-1850 (*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-642)))) (-3022 (*1 *2 *3) (-12 (-5 *3 (-294 (-525))) (-5 *2 (-294 (-642))) (-5 *1 (-642)))))
+(-13 (-365) (-510) (-10 -8 (-15 -1850 ((-854) (-854))) (-15 -1850 ((-854))) (-15 -3022 ((-294 $) (-294 (-525))))))
+((-2680 (((-1 |#4| |#2| |#3|) |#1| (-1089) (-1089)) 19)) (-1830 (((-1 |#4| |#2| |#3|) (-1089)) 12)))
+(((-643 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1830 ((-1 |#4| |#2| |#3|) (-1089))) (-15 -2680 ((-1 |#4| |#2| |#3|) |#1| (-1089) (-1089)))) (-566 (-501)) (-1125) (-1125) (-1125)) (T -643))
+((-2680 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1089)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-643 *3 *5 *6 *7)) (-4 *3 (-566 (-501))) (-4 *5 (-1125)) (-4 *6 (-1125)) (-4 *7 (-1125)))) (-1830 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-643 *4 *5 *6 *7)) (-4 *4 (-566 (-501))) (-4 *5 (-1125)) (-4 *6 (-1125)) (-4 *7 (-1125)))))
+(-10 -7 (-15 -1830 ((-1 |#4| |#2| |#3|) (-1089))) (-15 -2680 ((-1 |#4| |#2| |#3|) |#1| (-1089) (-1089))))
+((-3008 (((-108) $ $) NIL)) (-1231 (((-1176) $ (-712)) 14)) (-3004 (((-712) $) 12)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 18) ((|#1| $) 15) (($ |#1|) 23)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 25)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 24)))
+(((-644 |#1|) (-13 (-127) (-565 |#1|) (-10 -8 (-15 -3022 ($ |#1|)))) (-1018)) (T -644))
+((-3022 (*1 *1 *2) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1018)))))
+(-13 (-127) (-565 |#1|) (-10 -8 (-15 -3022 ($ |#1|))))
+((-1865 (((-1 (-205) (-205) (-205)) |#1| (-1089) (-1089)) 34) (((-1 (-205) (-205)) |#1| (-1089)) 39)))
+(((-645 |#1|) (-10 -7 (-15 -1865 ((-1 (-205) (-205)) |#1| (-1089))) (-15 -1865 ((-1 (-205) (-205) (-205)) |#1| (-1089) (-1089)))) (-566 (-501))) (T -645))
+((-1865 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1089)) (-5 *2 (-1 (-205) (-205) (-205))) (-5 *1 (-645 *3)) (-4 *3 (-566 (-501))))) (-1865 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-5 *2 (-1 (-205) (-205))) (-5 *1 (-645 *3)) (-4 *3 (-566 (-501))))))
+(-10 -7 (-15 -1865 ((-1 (-205) (-205)) |#1| (-1089))) (-15 -1865 ((-1 (-205) (-205) (-205)) |#1| (-1089) (-1089))))
+((-1245 (((-1089) |#1| (-1089) (-591 (-1089))) 9) (((-1089) |#1| (-1089) (-1089) (-1089)) 12) (((-1089) |#1| (-1089) (-1089)) 11) (((-1089) |#1| (-1089)) 10)))
+(((-646 |#1|) (-10 -7 (-15 -1245 ((-1089) |#1| (-1089))) (-15 -1245 ((-1089) |#1| (-1089) (-1089))) (-15 -1245 ((-1089) |#1| (-1089) (-1089) (-1089))) (-15 -1245 ((-1089) |#1| (-1089) (-591 (-1089))))) (-566 (-501))) (T -646))
+((-1245 (*1 *2 *3 *2 *4) (-12 (-5 *4 (-591 (-1089))) (-5 *2 (-1089)) (-5 *1 (-646 *3)) (-4 *3 (-566 (-501))))) (-1245 (*1 *2 *3 *2 *2 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-646 *3)) (-4 *3 (-566 (-501))))) (-1245 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-646 *3)) (-4 *3 (-566 (-501))))) (-1245 (*1 *2 *3 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-646 *3)) (-4 *3 (-566 (-501))))))
+(-10 -7 (-15 -1245 ((-1089) |#1| (-1089))) (-15 -1245 ((-1089) |#1| (-1089) (-1089))) (-15 -1245 ((-1089) |#1| (-1089) (-1089) (-1089))) (-15 -1245 ((-1089) |#1| (-1089) (-591 (-1089)))))
+((-2370 (((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) 9)))
+(((-647 |#1| |#2|) (-10 -7 (-15 -2370 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|))) (-1125) (-1125)) (T -647))
+((-2370 (*1 *2 *3 *4) (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4))) (-5 *1 (-647 *3 *4)) (-4 *3 (-1125)) (-4 *4 (-1125)))))
+(-10 -7 (-15 -2370 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|)))
+((-3910 (((-1 |#3| |#2|) (-1089)) 11)) (-2680 (((-1 |#3| |#2|) |#1| (-1089)) 21)))
+(((-648 |#1| |#2| |#3|) (-10 -7 (-15 -3910 ((-1 |#3| |#2|) (-1089))) (-15 -2680 ((-1 |#3| |#2|) |#1| (-1089)))) (-566 (-501)) (-1125) (-1125)) (T -648))
+((-2680 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-5 *2 (-1 *6 *5)) (-5 *1 (-648 *3 *5 *6)) (-4 *3 (-566 (-501))) (-4 *5 (-1125)) (-4 *6 (-1125)))) (-3910 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-1 *6 *5)) (-5 *1 (-648 *4 *5 *6)) (-4 *4 (-566 (-501))) (-4 *5 (-1125)) (-4 *6 (-1125)))))
+(-10 -7 (-15 -3910 ((-1 |#3| |#2|) (-1089))) (-15 -2680 ((-1 |#3| |#2|) |#1| (-1089))))
+((-3137 (((-3 (-591 (-1085 |#4|)) "failed") (-1085 |#4|) (-591 |#2|) (-591 (-1085 |#4|)) (-591 |#3|) (-591 |#4|) (-591 (-591 (-2 (|:| -4100 (-712)) (|:| |pcoef| |#4|)))) (-591 (-712)) (-1171 (-591 (-1085 |#3|))) |#3|) 62)) (-3637 (((-3 (-591 (-1085 |#4|)) "failed") (-1085 |#4|) (-591 |#2|) (-591 (-1085 |#3|)) (-591 |#3|) (-591 |#4|) (-591 (-712)) |#3|) 75)) (-2720 (((-3 (-591 (-1085 |#4|)) "failed") (-1085 |#4|) (-591 |#2|) (-591 |#3|) (-591 (-712)) (-591 (-1085 |#4|)) (-1171 (-591 (-1085 |#3|))) |#3|) 34)))
+(((-649 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2720 ((-3 (-591 (-1085 |#4|)) "failed") (-1085 |#4|) (-591 |#2|) (-591 |#3|) (-591 (-712)) (-591 (-1085 |#4|)) (-1171 (-591 (-1085 |#3|))) |#3|)) (-15 -3637 ((-3 (-591 (-1085 |#4|)) "failed") (-1085 |#4|) (-591 |#2|) (-591 (-1085 |#3|)) (-591 |#3|) (-591 |#4|) (-591 (-712)) |#3|)) (-15 -3137 ((-3 (-591 (-1085 |#4|)) "failed") (-1085 |#4|) (-591 |#2|) (-591 (-1085 |#4|)) (-591 |#3|) (-591 |#4|) (-591 (-591 (-2 (|:| -4100 (-712)) (|:| |pcoef| |#4|)))) (-591 (-712)) (-1171 (-591 (-1085 |#3|))) |#3|))) (-734) (-788) (-286) (-882 |#3| |#1| |#2|)) (T -649))
+((-3137 (*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10) (|partial| -12 (-5 *2 (-591 (-1085 *13))) (-5 *3 (-1085 *13)) (-5 *4 (-591 *12)) (-5 *5 (-591 *10)) (-5 *6 (-591 *13)) (-5 *7 (-591 (-591 (-2 (|:| -4100 (-712)) (|:| |pcoef| *13))))) (-5 *8 (-591 (-712))) (-5 *9 (-1171 (-591 (-1085 *10)))) (-4 *12 (-788)) (-4 *10 (-286)) (-4 *13 (-882 *10 *11 *12)) (-4 *11 (-734)) (-5 *1 (-649 *11 *12 *10 *13)))) (-3637 (*1 *2 *3 *4 *5 *6 *7 *8 *9) (|partial| -12 (-5 *4 (-591 *11)) (-5 *5 (-591 (-1085 *9))) (-5 *6 (-591 *9)) (-5 *7 (-591 *12)) (-5 *8 (-591 (-712))) (-4 *11 (-788)) (-4 *9 (-286)) (-4 *12 (-882 *9 *10 *11)) (-4 *10 (-734)) (-5 *2 (-591 (-1085 *12))) (-5 *1 (-649 *10 *11 *9 *12)) (-5 *3 (-1085 *12)))) (-2720 (*1 *2 *3 *4 *5 *6 *2 *7 *8) (|partial| -12 (-5 *2 (-591 (-1085 *11))) (-5 *3 (-1085 *11)) (-5 *4 (-591 *10)) (-5 *5 (-591 *8)) (-5 *6 (-591 (-712))) (-5 *7 (-1171 (-591 (-1085 *8)))) (-4 *10 (-788)) (-4 *8 (-286)) (-4 *11 (-882 *8 *9 *10)) (-4 *9 (-734)) (-5 *1 (-649 *9 *10 *8 *11)))))
+(-10 -7 (-15 -2720 ((-3 (-591 (-1085 |#4|)) "failed") (-1085 |#4|) (-591 |#2|) (-591 |#3|) (-591 (-712)) (-591 (-1085 |#4|)) (-1171 (-591 (-1085 |#3|))) |#3|)) (-15 -3637 ((-3 (-591 (-1085 |#4|)) "failed") (-1085 |#4|) (-591 |#2|) (-591 (-1085 |#3|)) (-591 |#3|) (-591 |#4|) (-591 (-712)) |#3|)) (-15 -3137 ((-3 (-591 (-1085 |#4|)) "failed") (-1085 |#4|) (-591 |#2|) (-591 (-1085 |#4|)) (-591 |#3|) (-591 |#4|) (-591 (-591 (-2 (|:| -4100 (-712)) (|:| |pcoef| |#4|)))) (-591 (-712)) (-1171 (-591 (-1085 |#3|))) |#3|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-1710 (($ $) 41)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-1480 (($ |#1| (-712)) 39)) (-2624 (((-712) $) 43)) (-1678 ((|#1| $) 42)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-1316 (((-712) $) 44)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 38 (|has| |#1| (-160)))) (-2560 ((|#1| $ (-712)) 40)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 46) (($ |#1| $) 45)))
+(((-650 |#1|) (-131) (-975)) (T -650))
+((-1316 (*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-975)) (-5 *2 (-712)))) (-2624 (*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-975)) (-5 *2 (-712)))) (-1678 (*1 *2 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-975)))) (-1710 (*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-975)))) (-2560 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-4 *1 (-650 *2)) (-4 *2 (-975)))) (-1480 (*1 *1 *2 *3) (-12 (-5 *3 (-712)) (-4 *1 (-650 *2)) (-4 *2 (-975)))))
+(-13 (-975) (-107 |t#1| |t#1|) (-10 -8 (IF (|has| |t#1| (-160)) (-6 (-37 |t#1|)) |%noBranch|) (-15 -1316 ((-712) $)) (-15 -2624 ((-712) $)) (-15 -1678 (|t#1| $)) (-15 -1710 ($ $)) (-15 -2560 (|t#1| $ (-712))) (-15 -1480 ($ |t#1| (-712)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) |has| |#1| (-160)) ((-97) . T) ((-107 |#1| |#1|) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 |#1|) . T) ((-593 $) . T) ((-659 |#1|) |has| |#1| (-160)) ((-668) . T) ((-981 |#1|) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-1340 ((|#6| (-1 |#4| |#1|) |#3|) 23)))
+(((-651 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1340 (|#6| (-1 |#4| |#1|) |#3|))) (-517) (-1147 |#1|) (-1147 (-385 |#2|)) (-517) (-1147 |#4|) (-1147 (-385 |#5|))) (T -651))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-517)) (-4 *7 (-517)) (-4 *6 (-1147 *5)) (-4 *2 (-1147 (-385 *8))) (-5 *1 (-651 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1147 (-385 *6))) (-4 *8 (-1147 *7)))))
+(-10 -7 (-15 -1340 (|#6| (-1 |#4| |#1|) |#3|)))
+((-3008 (((-108) $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3166 (((-1072) (-796)) 31)) (-3551 (((-1176) (-1072)) 28)) (-2696 (((-1072) (-796)) 24)) (-3023 (((-1072) (-796)) 25)) (-3022 (((-796) $) NIL) (((-1072) (-796)) 23)) (-4096 (((-108) $ $) NIL)))
+(((-652) (-13 (-1018) (-10 -7 (-15 -3022 ((-1072) (-796))) (-15 -2696 ((-1072) (-796))) (-15 -3023 ((-1072) (-796))) (-15 -3166 ((-1072) (-796))) (-15 -3551 ((-1176) (-1072)))))) (T -652))
+((-3022 (*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1072)) (-5 *1 (-652)))) (-2696 (*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1072)) (-5 *1 (-652)))) (-3023 (*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1072)) (-5 *1 (-652)))) (-3166 (*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1072)) (-5 *1 (-652)))) (-3551 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-652)))))
+(-13 (-1018) (-10 -7 (-15 -3022 ((-1072) (-796))) (-15 -2696 ((-1072) (-796))) (-15 -3023 ((-1072) (-796))) (-15 -3166 ((-1072) (-796))) (-15 -3551 ((-1176) (-1072)))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3798 (($) NIL T CONST)) (-2129 (($ $ $) NIL)) (-1227 (($ |#1| |#2|) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2824 (((-108) $) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3940 ((|#2| $) NIL)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3557 (((-3 $ "failed") $ $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) ((|#1| $) NIL)) (-2128 (((-712)) NIL)) (-2495 (((-108) $ $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL)))
+(((-653 |#1| |#2| |#3| |#4| |#5|) (-13 (-341) (-10 -8 (-15 -3940 (|#2| $)) (-15 -3022 (|#1| $)) (-15 -1227 ($ |#1| |#2|)) (-15 -3557 ((-3 $ "failed") $ $)))) (-160) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -653))
+((-3940 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-653 *3 *2 *4 *5 *6)) (-4 *3 (-160)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-3022 (*1 *2 *1) (-12 (-4 *2 (-160)) (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-1227 (*1 *1 *2 *3) (-12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-160)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3557 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-160)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
+(-13 (-341) (-10 -8 (-15 -3940 (|#2| $)) (-15 -3022 (|#1| $)) (-15 -1227 ($ |#1| |#2|)) (-15 -3557 ((-3 $ "failed") $ $))))
+((-3008 (((-108) $ $) 78)) (-1800 (((-108) $) 30)) (-3928 (((-1171 |#1|) $ (-712)) NIL)) (-1507 (((-591 (-1003)) $) NIL)) (-1390 (($ (-1085 |#1|)) NIL)) (-1312 (((-1085 $) $ (-1003)) NIL) (((-1085 |#1|) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-4090 (((-712) $) NIL) (((-712) $ (-591 (-1003))) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-2944 (($ $ $) NIL (|has| |#1| (-517)))) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1291 (($ $) NIL (|has| |#1| (-429)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1947 (((-108) $ $) NIL (|has| |#1| (-341)))) (-3032 (((-712)) 47 (|has| |#1| (-346)))) (-2229 (($ $ (-712)) NIL)) (-3159 (($ $ (-712)) NIL)) (-1716 ((|#2| |#2|) 44)) (-2288 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-429)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-1003) "failed") $) NIL)) (-3528 ((|#1| $) NIL) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-1003) $) NIL)) (-2805 (($ $ $ (-1003)) NIL (|has| |#1| (-160))) ((|#1| $ $) NIL (|has| |#1| (-160)))) (-2129 (($ $ $) NIL (|has| |#1| (-341)))) (-1710 (($ $) 34)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) NIL) (((-631 |#1|) (-631 $)) NIL)) (-1227 (($ |#2|) 42)) (-4163 (((-3 $ "failed") $) 86)) (-3377 (($) 51 (|has| |#1| (-346)))) (-2110 (($ $ $) NIL (|has| |#1| (-341)))) (-3106 (($ $ $) NIL)) (-2273 (($ $ $) NIL (|has| |#1| (-517)))) (-3867 (((-2 (|:| -3482 |#1|) (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-517)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#1| (-341)))) (-3208 (($ $) NIL (|has| |#1| (-429))) (($ $ (-1003)) NIL (|has| |#1| (-429)))) (-1695 (((-591 $) $) NIL)) (-2744 (((-108) $) NIL (|has| |#1| (-842)))) (-3265 (((-890 $)) 80)) (-2056 (($ $ |#1| (-712) $) NIL)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| (-1003) (-819 (-357))) (|has| |#1| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| (-1003) (-819 (-525))) (|has| |#1| (-819 (-525)))))) (-3873 (((-712) $ $) NIL (|has| |#1| (-517)))) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) NIL)) (-2085 (((-3 $ "failed") $) NIL (|has| |#1| (-1065)))) (-1493 (($ (-1085 |#1|) (-1003)) NIL) (($ (-1085 $) (-1003)) NIL)) (-3111 (($ $ (-712)) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-712)) 77) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ (-1003)) NIL) (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3940 ((|#2|) 45)) (-2624 (((-712) $) NIL) (((-712) $ (-1003)) NIL) (((-591 (-712)) $ (-591 (-1003))) NIL)) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-4015 (($ (-1 (-712) (-712)) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-1525 (((-1085 |#1|) $) NIL)) (-2254 (((-3 (-1003) "failed") $) NIL)) (-3016 (((-854) $) NIL (|has| |#1| (-346)))) (-1223 ((|#2| $) 41)) (-1661 (($ $) NIL)) (-1678 ((|#1| $) 28)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2339 (((-1072) $) NIL)) (-3070 (((-2 (|:| -2963 $) (|:| -3407 $)) $ (-712)) NIL)) (-3376 (((-3 (-591 $) "failed") $) NIL)) (-2010 (((-3 (-591 $) "failed") $) NIL)) (-2292 (((-3 (-2 (|:| |var| (-1003)) (|:| -2008 (-712))) "failed") $) NIL)) (-4141 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3506 (($) NIL (|has| |#1| (-1065)) CONST)) (-2226 (($ (-854)) NIL (|has| |#1| (-346)))) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) NIL)) (-1646 ((|#1| $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-429)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2985 (($ $) 79 (|has| |#1| (-327)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1348 (((-396 $) $) NIL (|has| |#1| (-842)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2089 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517))) (((-3 $ "failed") $ $) 85 (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-4132 (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-1003) |#1|) NIL) (($ $ (-591 (-1003)) (-591 |#1|)) NIL) (($ $ (-1003) $) NIL) (($ $ (-591 (-1003)) (-591 $)) NIL)) (-1712 (((-712) $) NIL (|has| |#1| (-341)))) (-3164 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-385 $) (-385 $) (-385 $)) NIL (|has| |#1| (-517))) ((|#1| (-385 $) |#1|) NIL (|has| |#1| (-341))) (((-385 $) $ (-385 $)) NIL (|has| |#1| (-517)))) (-3579 (((-3 $ "failed") $ (-712)) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 87 (|has| |#1| (-341)))) (-2976 (($ $ (-1003)) NIL (|has| |#1| (-160))) ((|#1| $) NIL (|has| |#1| (-160)))) (-3266 (($ $ (-1003)) NIL) (($ $ (-591 (-1003))) NIL) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL) (($ $ (-712)) NIL) (($ $) NIL) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-1316 (((-712) $) 32) (((-712) $ (-1003)) NIL) (((-591 (-712)) $ (-591 (-1003))) NIL)) (-1408 (((-825 (-357)) $) NIL (-12 (|has| (-1003) (-566 (-825 (-357)))) (|has| |#1| (-566 (-825 (-357)))))) (((-825 (-525)) $) NIL (-12 (|has| (-1003) (-566 (-825 (-525)))) (|has| |#1| (-566 (-825 (-525)))))) (((-501) $) NIL (-12 (|has| (-1003) (-566 (-501))) (|has| |#1| (-566 (-501)))))) (-2668 ((|#1| $) NIL (|has| |#1| (-429))) (($ $ (-1003)) NIL (|has| |#1| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#1| (-842))))) (-3796 (((-890 $)) 36)) (-2413 (((-3 $ "failed") $ $) NIL (|has| |#1| (-517))) (((-3 (-385 $) "failed") (-385 $) $) NIL (|has| |#1| (-517)))) (-3022 (((-796) $) 61) (($ (-525)) NIL) (($ |#1|) 58) (($ (-1003)) NIL) (($ |#2|) 68) (($ (-385 (-525))) NIL (-3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-966 (-385 (-525)))))) (($ $) NIL (|has| |#1| (-517)))) (-3654 (((-591 |#1|) $) NIL)) (-2560 ((|#1| $ (-712)) 63) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#1| (-842))) (|has| |#1| (-136))))) (-2128 (((-712)) NIL)) (-1698 (($ $ $ (-712)) NIL (|has| |#1| (-160)))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 20 T CONST)) (-1985 (((-1171 |#1|) $) 75)) (-2460 (($ (-1171 |#1|)) 50)) (-4197 (($) 8 T CONST)) (-4196 (($ $ (-1003)) NIL) (($ $ (-591 (-1003))) NIL) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL) (($ $ (-712)) NIL) (($ $) NIL) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1248 (((-1171 |#1|) $) NIL)) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) 69)) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341)))) (-4164 (($ $) 72) (($ $ $) NIL)) (-4156 (($ $ $) 33)) (** (($ $ (-854)) NIL) (($ $ (-712)) 81)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 57) (($ $ $) 74) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) 55) (($ $ |#1|) NIL)))
+(((-654 |#1| |#2|) (-13 (-1147 |#1|) (-10 -8 (-15 -1716 (|#2| |#2|)) (-15 -3940 (|#2|)) (-15 -1227 ($ |#2|)) (-15 -1223 (|#2| $)) (-15 -3022 ($ |#2|)) (-15 -1985 ((-1171 |#1|) $)) (-15 -2460 ($ (-1171 |#1|))) (-15 -1248 ((-1171 |#1|) $)) (-15 -3265 ((-890 $))) (-15 -3796 ((-890 $))) (IF (|has| |#1| (-327)) (-15 -2985 ($ $)) |%noBranch|) (IF (|has| |#1| (-346)) (-6 (-346)) |%noBranch|))) (-975) (-1147 |#1|)) (T -654))
+((-1716 (*1 *2 *2) (-12 (-4 *3 (-975)) (-5 *1 (-654 *3 *2)) (-4 *2 (-1147 *3)))) (-3940 (*1 *2) (-12 (-4 *2 (-1147 *3)) (-5 *1 (-654 *3 *2)) (-4 *3 (-975)))) (-1227 (*1 *1 *2) (-12 (-4 *3 (-975)) (-5 *1 (-654 *3 *2)) (-4 *2 (-1147 *3)))) (-1223 (*1 *2 *1) (-12 (-4 *2 (-1147 *3)) (-5 *1 (-654 *3 *2)) (-4 *3 (-975)))) (-3022 (*1 *1 *2) (-12 (-4 *3 (-975)) (-5 *1 (-654 *3 *2)) (-4 *2 (-1147 *3)))) (-1985 (*1 *2 *1) (-12 (-4 *3 (-975)) (-5 *2 (-1171 *3)) (-5 *1 (-654 *3 *4)) (-4 *4 (-1147 *3)))) (-2460 (*1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-975)) (-5 *1 (-654 *3 *4)) (-4 *4 (-1147 *3)))) (-1248 (*1 *2 *1) (-12 (-4 *3 (-975)) (-5 *2 (-1171 *3)) (-5 *1 (-654 *3 *4)) (-4 *4 (-1147 *3)))) (-3265 (*1 *2) (-12 (-4 *3 (-975)) (-5 *2 (-890 (-654 *3 *4))) (-5 *1 (-654 *3 *4)) (-4 *4 (-1147 *3)))) (-3796 (*1 *2) (-12 (-4 *3 (-975)) (-5 *2 (-890 (-654 *3 *4))) (-5 *1 (-654 *3 *4)) (-4 *4 (-1147 *3)))) (-2985 (*1 *1 *1) (-12 (-4 *2 (-327)) (-4 *2 (-975)) (-5 *1 (-654 *2 *3)) (-4 *3 (-1147 *2)))))
+(-13 (-1147 |#1|) (-10 -8 (-15 -1716 (|#2| |#2|)) (-15 -3940 (|#2|)) (-15 -1227 ($ |#2|)) (-15 -1223 (|#2| $)) (-15 -3022 ($ |#2|)) (-15 -1985 ((-1171 |#1|) $)) (-15 -2460 ($ (-1171 |#1|))) (-15 -1248 ((-1171 |#1|) $)) (-15 -3265 ((-890 $))) (-15 -3796 ((-890 $))) (IF (|has| |#1| (-327)) (-15 -2985 ($ $)) |%noBranch|) (IF (|has| |#1| (-346)) (-6 (-346)) |%noBranch|)))
+((-3008 (((-108) $ $) NIL)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2226 ((|#1| $) 13)) (-2047 (((-1036) $) NIL)) (-2008 ((|#2| $) 12)) (-3036 (($ |#1| |#2|) 16)) (-3022 (((-796) $) NIL) (($ (-2 (|:| -2226 |#1|) (|:| -2008 |#2|))) 15) (((-2 (|:| -2226 |#1|) (|:| -2008 |#2|)) $) 14)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 11)))
+(((-655 |#1| |#2| |#3|) (-13 (-788) (-10 -8 (-15 -2008 (|#2| $)) (-15 -2226 (|#1| $)) (-15 -3022 ($ (-2 (|:| -2226 |#1|) (|:| -2008 |#2|)))) (-15 -3022 ((-2 (|:| -2226 |#1|) (|:| -2008 |#2|)) $)) (-15 -3036 ($ |#1| |#2|)))) (-788) (-1018) (-1 (-108) (-2 (|:| -2226 |#1|) (|:| -2008 |#2|)) (-2 (|:| -2226 |#1|) (|:| -2008 |#2|)))) (T -655))
+((-2008 (*1 *2 *1) (-12 (-4 *2 (-1018)) (-5 *1 (-655 *3 *2 *4)) (-4 *3 (-788)) (-14 *4 (-1 (-108) (-2 (|:| -2226 *3) (|:| -2008 *2)) (-2 (|:| -2226 *3) (|:| -2008 *2)))))) (-2226 (*1 *2 *1) (-12 (-4 *2 (-788)) (-5 *1 (-655 *2 *3 *4)) (-4 *3 (-1018)) (-14 *4 (-1 (-108) (-2 (|:| -2226 *2) (|:| -2008 *3)) (-2 (|:| -2226 *2) (|:| -2008 *3)))))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2226 *3) (|:| -2008 *4))) (-4 *3 (-788)) (-4 *4 (-1018)) (-5 *1 (-655 *3 *4 *5)) (-14 *5 (-1 (-108) *2 *2)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -2226 *3) (|:| -2008 *4))) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-788)) (-4 *4 (-1018)) (-14 *5 (-1 (-108) *2 *2)))) (-3036 (*1 *1 *2 *3) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-788)) (-4 *3 (-1018)) (-14 *4 (-1 (-108) (-2 (|:| -2226 *2) (|:| -2008 *3)) (-2 (|:| -2226 *2) (|:| -2008 *3)))))))
+(-13 (-788) (-10 -8 (-15 -2008 (|#2| $)) (-15 -2226 (|#1| $)) (-15 -3022 ($ (-2 (|:| -2226 |#1|) (|:| -2008 |#2|)))) (-15 -3022 ((-2 (|:| -2226 |#1|) (|:| -2008 |#2|)) $)) (-15 -3036 ($ |#1| |#2|))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 59)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) 89) (((-3 (-110) "failed") $) 95)) (-3528 ((|#1| $) NIL) (((-110) $) 39)) (-4163 (((-3 $ "failed") $) 90)) (-2742 ((|#2| (-110) |#2|) 82)) (-2824 (((-108) $) NIL)) (-3969 (($ |#1| (-339 (-110))) 14)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1600 (($ $ (-1 |#2| |#2|)) 58)) (-3502 (($ $ (-1 |#2| |#2|)) 44)) (-3164 ((|#2| $ |#2|) 33)) (-3567 ((|#1| |#1|) 100 (|has| |#1| (-160)))) (-3022 (((-796) $) 66) (($ (-525)) 18) (($ |#1|) 17) (($ (-110)) 23)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) 37)) (-4212 (($ $) 99 (|has| |#1| (-160))) (($ $ $) 103 (|has| |#1| (-160)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 21 T CONST)) (-4197 (($) 9 T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) 48) (($ $ $) NIL)) (-4156 (($ $ $) 73)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ (-110) (-525)) NIL) (($ $ (-525)) 57)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 98) (($ $ $) 50) (($ |#1| $) 96 (|has| |#1| (-160))) (($ $ |#1|) 97 (|has| |#1| (-160)))))
+(((-656 |#1| |#2|) (-13 (-975) (-966 |#1|) (-966 (-110)) (-265 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-160)) (PROGN (-6 (-37 |#1|)) (-15 -4212 ($ $)) (-15 -4212 ($ $ $)) (-15 -3567 (|#1| |#1|))) |%noBranch|) (-15 -3502 ($ $ (-1 |#2| |#2|))) (-15 -1600 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-110) (-525))) (-15 ** ($ $ (-525))) (-15 -2742 (|#2| (-110) |#2|)) (-15 -3969 ($ |#1| (-339 (-110)))))) (-975) (-593 |#1|)) (T -656))
+((-4212 (*1 *1 *1) (-12 (-4 *2 (-160)) (-4 *2 (-975)) (-5 *1 (-656 *2 *3)) (-4 *3 (-593 *2)))) (-4212 (*1 *1 *1 *1) (-12 (-4 *2 (-160)) (-4 *2 (-975)) (-5 *1 (-656 *2 *3)) (-4 *3 (-593 *2)))) (-3567 (*1 *2 *2) (-12 (-4 *2 (-160)) (-4 *2 (-975)) (-5 *1 (-656 *2 *3)) (-4 *3 (-593 *2)))) (-3502 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-593 *3)) (-4 *3 (-975)) (-5 *1 (-656 *3 *4)))) (-1600 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-593 *3)) (-4 *3 (-975)) (-5 *1 (-656 *3 *4)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-525)) (-4 *4 (-975)) (-5 *1 (-656 *4 *5)) (-4 *5 (-593 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-4 *3 (-975)) (-5 *1 (-656 *3 *4)) (-4 *4 (-593 *3)))) (-2742 (*1 *2 *3 *2) (-12 (-5 *3 (-110)) (-4 *4 (-975)) (-5 *1 (-656 *4 *2)) (-4 *2 (-593 *4)))) (-3969 (*1 *1 *2 *3) (-12 (-5 *3 (-339 (-110))) (-4 *2 (-975)) (-5 *1 (-656 *2 *4)) (-4 *4 (-593 *2)))))
+(-13 (-975) (-966 |#1|) (-966 (-110)) (-265 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-160)) (PROGN (-6 (-37 |#1|)) (-15 -4212 ($ $)) (-15 -4212 ($ $ $)) (-15 -3567 (|#1| |#1|))) |%noBranch|) (-15 -3502 ($ $ (-1 |#2| |#2|))) (-15 -1600 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-110) (-525))) (-15 ** ($ $ (-525))) (-15 -2742 (|#2| (-110) |#2|)) (-15 -3969 ($ |#1| (-339 (-110))))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 33)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1227 (($ |#1| |#2|) 25)) (-4163 (((-3 $ "failed") $) 48)) (-2824 (((-108) $) 35)) (-3940 ((|#2| $) 12)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 49)) (-2047 (((-1036) $) NIL)) (-3557 (((-3 $ "failed") $ $) 47)) (-3022 (((-796) $) 24) (($ (-525)) 19) ((|#1| $) 13)) (-2128 (((-712)) 28)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 16 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 38)) (-4164 (($ $) 43) (($ $ $) 37)) (-4156 (($ $ $) 40)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 21) (($ $ $) 20)))
+(((-657 |#1| |#2| |#3| |#4| |#5|) (-13 (-975) (-10 -8 (-15 -3940 (|#2| $)) (-15 -3022 (|#1| $)) (-15 -1227 ($ |#1| |#2|)) (-15 -3557 ((-3 $ "failed") $ $)) (-15 -4163 ((-3 $ "failed") $)) (-15 -1622 ($ $)))) (-160) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -657))
+((-4163 (*1 *1 *1) (|partial| -12 (-5 *1 (-657 *2 *3 *4 *5 *6)) (-4 *2 (-160)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3940 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-657 *3 *2 *4 *5 *6)) (-4 *3 (-160)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-3022 (*1 *2 *1) (-12 (-4 *2 (-160)) (-5 *1 (-657 *2 *3 *4 *5 *6)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-1227 (*1 *1 *2 *3) (-12 (-5 *1 (-657 *2 *3 *4 *5 *6)) (-4 *2 (-160)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3557 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-657 *2 *3 *4 *5 *6)) (-4 *2 (-160)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-1622 (*1 *1 *1) (-12 (-5 *1 (-657 *2 *3 *4 *5 *6)) (-4 *2 (-160)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
+(-13 (-975) (-10 -8 (-15 -3940 (|#2| $)) (-15 -3022 (|#1| $)) (-15 -1227 ($ |#1| |#2|)) (-15 -3557 ((-3 $ "failed") $ $)) (-15 -4163 ((-3 $ "failed") $)) (-15 -1622 ($ $))))
+((* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ |#2| $) NIL) (($ $ |#2|) 9)))
+(((-658 |#1| |#2|) (-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-854) |#1|))) (-659 |#2|) (-160)) (T -658))
+NIL
+(-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-854) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
+(((-659 |#1|) (-131) (-160)) (T -659))
NIL
(-13 (-107 |t#1| |t#1|))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 |#1|) . T) ((-979 |#1|) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-3565 (($ |#1|) 17) (($ $ |#1|) 20)) (-1254 (($ |#1|) 18) (($ $ |#1|) 21)) (-1640 (($) NIL T CONST)) (-4211 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-3482 (((-108) $) NIL)) (-3611 (($ |#1| |#1| |#1| |#1|) 8)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 16)) (-2435 (((-1034) $) NIL)) (-1349 ((|#1| $ |#1|) 24) (((-772 |#1|) $ (-772 |#1|)) 32)) (-1308 (($ $ $) NIL)) (-2306 (($ $ $) NIL)) (-3976 (((-794) $) 39)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1440 (($) 9 T CONST)) (-4037 (((-108) $ $) 44)) (-4125 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ $ $) 14)))
-(((-658 |#1|) (-13 (-448) (-10 -8 (-15 -3611 ($ |#1| |#1| |#1| |#1|)) (-15 -3565 ($ |#1|)) (-15 -1254 ($ |#1|)) (-15 -4211 ($)) (-15 -3565 ($ $ |#1|)) (-15 -1254 ($ $ |#1|)) (-15 -4211 ($ $)) (-15 -1349 (|#1| $ |#1|)) (-15 -1349 ((-772 |#1|) $ (-772 |#1|))))) (-339)) (T -658))
-((-3611 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339)))) (-3565 (*1 *1 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339)))) (-1254 (*1 *1 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339)))) (-4211 (*1 *1) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339)))) (-3565 (*1 *1 *1 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339)))) (-1254 (*1 *1 *1 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339)))) (-4211 (*1 *1 *1) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339)))) (-1349 (*1 *2 *1 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339)))) (-1349 (*1 *2 *1 *2) (-12 (-5 *2 (-772 *3)) (-4 *3 (-339)) (-5 *1 (-658 *3)))))
-(-13 (-448) (-10 -8 (-15 -3611 ($ |#1| |#1| |#1| |#1|)) (-15 -3565 ($ |#1|)) (-15 -1254 ($ |#1|)) (-15 -4211 ($)) (-15 -3565 ($ $ |#1|)) (-15 -1254 ($ $ |#1|)) (-15 -4211 ($ $)) (-15 -1349 (|#1| $ |#1|)) (-15 -1349 ((-772 |#1|) $ (-772 |#1|)))))
-((-2966 (($ $ (-852)) 12)) (-2165 (($ $ (-852)) 13)) (** (($ $ (-852)) 10)))
-(((-659 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-852))) (-15 -2165 (|#1| |#1| (-852))) (-15 -2966 (|#1| |#1| (-852)))) (-660)) (T -659))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-852))) (-15 -2165 (|#1| |#1| (-852))) (-15 -2966 (|#1| |#1| (-852))))
-((-3260 (((-108) $ $) 7)) (-2966 (($ $ (-852)) 15)) (-2165 (($ $ (-852)) 14)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-4037 (((-108) $ $) 6)) (** (($ $ (-852)) 13)) (* (($ $ $) 16)))
-(((-660) (-129)) (T -660))
-((* (*1 *1 *1 *1) (-4 *1 (-660))) (-2966 (*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-852)))) (-2165 (*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-852)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-852)))))
-(-13 (-1016) (-10 -8 (-15 * ($ $ $)) (-15 -2966 ($ $ (-852))) (-15 -2165 ($ $ (-852))) (-15 ** ($ $ (-852)))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-2966 (($ $ (-852)) NIL) (($ $ (-710)) 17)) (-3482 (((-108) $) 10)) (-2165 (($ $ (-852)) NIL) (($ $ (-710)) 18)) (** (($ $ (-852)) NIL) (($ $ (-710)) 15)))
-(((-661 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-710))) (-15 -2165 (|#1| |#1| (-710))) (-15 -2966 (|#1| |#1| (-710))) (-15 -3482 ((-108) |#1|)) (-15 ** (|#1| |#1| (-852))) (-15 -2165 (|#1| |#1| (-852))) (-15 -2966 (|#1| |#1| (-852)))) (-662)) (T -661))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-710))) (-15 -2165 (|#1| |#1| (-710))) (-15 -2966 (|#1| |#1| (-710))) (-15 -3482 ((-108) |#1|)) (-15 ** (|#1| |#1| (-852))) (-15 -2165 (|#1| |#1| (-852))) (-15 -2966 (|#1| |#1| (-852))))
-((-3260 (((-108) $ $) 7)) (-2439 (((-3 $ "failed") $) 17)) (-2966 (($ $ (-852)) 15) (($ $ (-710)) 22)) (-4211 (((-3 $ "failed") $) 19)) (-3482 (((-108) $) 23)) (-3790 (((-3 $ "failed") $) 18)) (-2165 (($ $ (-852)) 14) (($ $ (-710)) 21)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-1440 (($) 24 T CONST)) (-4037 (((-108) $ $) 6)) (** (($ $ (-852)) 13) (($ $ (-710)) 20)) (* (($ $ $) 16)))
-(((-662) (-129)) (T -662))
-((-1440 (*1 *1) (-4 *1 (-662))) (-3482 (*1 *2 *1) (-12 (-4 *1 (-662)) (-5 *2 (-108)))) (-2966 (*1 *1 *1 *2) (-12 (-4 *1 (-662)) (-5 *2 (-710)))) (-2165 (*1 *1 *1 *2) (-12 (-4 *1 (-662)) (-5 *2 (-710)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-662)) (-5 *2 (-710)))) (-4211 (*1 *1 *1) (|partial| -4 *1 (-662))) (-3790 (*1 *1 *1) (|partial| -4 *1 (-662))) (-2439 (*1 *1 *1) (|partial| -4 *1 (-662))))
-(-13 (-660) (-10 -8 (-15 (-1440) ($) -1982) (-15 -3482 ((-108) $)) (-15 -2966 ($ $ (-710))) (-15 -2165 ($ $ (-710))) (-15 ** ($ $ (-710))) (-15 -4211 ((-3 $ "failed") $)) (-15 -3790 ((-3 $ "failed") $)) (-15 -2439 ((-3 $ "failed") $))))
-(((-97) . T) ((-563 (-794)) . T) ((-660) . T) ((-1016) . T))
-((-3843 (((-710)) 35)) (-2898 (((-3 (-523) "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-1996 (((-523) $) NIL) (((-383 (-523)) $) NIL) ((|#2| $) 22)) (-1830 (($ |#3|) NIL) (((-3 $ "failed") (-383 |#3|)) 45)) (-4211 (((-3 $ "failed") $) 65)) (-3461 (($) 39)) (-2765 ((|#2| $) 20)) (-4102 (($) 17)) (-4024 (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-1 |#2| |#2|)) 53) (($ $ (-589 (-1087)) (-589 (-710))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087)) NIL) (($ $ (-710)) NIL) (($ $) NIL)) (-1718 (((-629 |#2|) (-1169 $) (-1 |#2| |#2|)) 60)) (-3077 (((-1169 |#2|) $) NIL) (($ (-1169 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-1606 ((|#3| $) 32)) (-2922 (((-1169 $)) 29)))
-(((-663 |#1| |#2| |#3|) (-10 -8 (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -3461 (|#1|)) (-15 -3843 ((-710))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -1718 ((-629 |#2|) (-1169 |#1|) (-1 |#2| |#2|))) (-15 -1830 ((-3 |#1| "failed") (-383 |#3|))) (-15 -3077 (|#1| |#3|)) (-15 -1830 (|#1| |#3|)) (-15 -4102 (|#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -3077 (|#3| |#1|)) (-15 -3077 (|#1| (-1169 |#2|))) (-15 -3077 ((-1169 |#2|) |#1|)) (-15 -2922 ((-1169 |#1|))) (-15 -1606 (|#3| |#1|)) (-15 -2765 (|#2| |#1|)) (-15 -4211 ((-3 |#1| "failed") |#1|))) (-664 |#2| |#3|) (-158) (-1145 |#2|)) (T -663))
-((-3843 (*1 *2) (-12 (-4 *4 (-158)) (-4 *5 (-1145 *4)) (-5 *2 (-710)) (-5 *1 (-663 *3 *4 *5)) (-4 *3 (-664 *4 *5)))))
-(-10 -8 (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -3461 (|#1|)) (-15 -3843 ((-710))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -1718 ((-629 |#2|) (-1169 |#1|) (-1 |#2| |#2|))) (-15 -1830 ((-3 |#1| "failed") (-383 |#3|))) (-15 -3077 (|#1| |#3|)) (-15 -1830 (|#1| |#3|)) (-15 -4102 (|#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -3077 (|#3| |#1|)) (-15 -3077 (|#1| (-1169 |#2|))) (-15 -3077 ((-1169 |#2|) |#1|)) (-15 -2922 ((-1169 |#1|))) (-15 -1606 (|#3| |#1|)) (-15 -2765 (|#2| |#1|)) (-15 -4211 ((-3 |#1| "failed") |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 93 (|has| |#1| (-339)))) (-3950 (($ $) 94 (|has| |#1| (-339)))) (-3226 (((-108) $) 96 (|has| |#1| (-339)))) (-1711 (((-629 |#1|) (-1169 $)) 46) (((-629 |#1|)) 61)) (-4131 ((|#1| $) 52)) (-2794 (((-1097 (-852) (-710)) (-523)) 147 (|has| |#1| (-325)))) (-2999 (((-3 $ "failed") $ $) 19)) (-3763 (($ $) 113 (|has| |#1| (-339)))) (-2105 (((-394 $) $) 114 (|has| |#1| (-339)))) (-3684 (((-108) $ $) 104 (|has| |#1| (-339)))) (-3843 (((-710)) 87 (|has| |#1| (-344)))) (-1640 (($) 17 T CONST)) (-2898 (((-3 (-523) "failed") $) 169 (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) 167 (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) 166)) (-1996 (((-523) $) 170 (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) 168 (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) 165)) (-3322 (($ (-1169 |#1|) (-1169 $)) 48) (($ (-1169 |#1|)) 64)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) 153 (|has| |#1| (-325)))) (-2501 (($ $ $) 108 (|has| |#1| (-339)))) (-2545 (((-629 |#1|) $ (-1169 $)) 53) (((-629 |#1|) $) 59)) (-2203 (((-629 (-523)) (-629 $)) 164 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 163 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) 162) (((-629 |#1|) (-629 $)) 161)) (-1830 (($ |#2|) 158) (((-3 $ "failed") (-383 |#2|)) 155 (|has| |#1| (-339)))) (-4211 (((-3 $ "failed") $) 34)) (-2262 (((-852)) 54)) (-3461 (($) 90 (|has| |#1| (-344)))) (-2486 (($ $ $) 107 (|has| |#1| (-339)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 102 (|has| |#1| (-339)))) (-2097 (($) 149 (|has| |#1| (-325)))) (-1200 (((-108) $) 150 (|has| |#1| (-325)))) (-1419 (($ $ (-710)) 141 (|has| |#1| (-325))) (($ $) 140 (|has| |#1| (-325)))) (-1330 (((-108) $) 115 (|has| |#1| (-339)))) (-1500 (((-852) $) 152 (|has| |#1| (-325))) (((-772 (-852)) $) 138 (|has| |#1| (-325)))) (-3482 (((-108) $) 31)) (-2765 ((|#1| $) 51)) (-1289 (((-3 $ "failed") $) 142 (|has| |#1| (-325)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 111 (|has| |#1| (-339)))) (-2277 ((|#2| $) 44 (|has| |#1| (-339)))) (-4076 (((-852) $) 89 (|has| |#1| (-344)))) (-1816 ((|#2| $) 156)) (-2012 (($ (-589 $)) 100 (|has| |#1| (-339))) (($ $ $) 99 (|has| |#1| (-339)))) (-3841 (((-1070) $) 9)) (-3071 (($ $) 116 (|has| |#1| (-339)))) (-4105 (($) 143 (|has| |#1| (-325)) CONST)) (-2557 (($ (-852)) 88 (|has| |#1| (-344)))) (-2435 (((-1034) $) 10)) (-4102 (($) 160)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 101 (|has| |#1| (-339)))) (-2056 (($ (-589 $)) 98 (|has| |#1| (-339))) (($ $ $) 97 (|has| |#1| (-339)))) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) 146 (|has| |#1| (-325)))) (-3573 (((-394 $) $) 112 (|has| |#1| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 109 (|has| |#1| (-339)))) (-2469 (((-3 $ "failed") $ $) 92 (|has| |#1| (-339)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 103 (|has| |#1| (-339)))) (-3087 (((-710) $) 105 (|has| |#1| (-339)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 106 (|has| |#1| (-339)))) (-4053 ((|#1| (-1169 $)) 47) ((|#1|) 60)) (-2041 (((-710) $) 151 (|has| |#1| (-325))) (((-3 (-710) "failed") $ $) 139 (|has| |#1| (-325)))) (-4024 (($ $) 137 (-3255 (-2819 (|has| |#1| (-211)) (|has| |#1| (-339))) (|has| |#1| (-325)))) (($ $ (-710)) 135 (-3255 (-2819 (|has| |#1| (-211)) (|has| |#1| (-339))) (|has| |#1| (-325)))) (($ $ (-1087)) 133 (-2819 (|has| |#1| (-831 (-1087))) (|has| |#1| (-339)))) (($ $ (-589 (-1087))) 132 (-2819 (|has| |#1| (-831 (-1087))) (|has| |#1| (-339)))) (($ $ (-1087) (-710)) 131 (-2819 (|has| |#1| (-831 (-1087))) (|has| |#1| (-339)))) (($ $ (-589 (-1087)) (-589 (-710))) 130 (-2819 (|has| |#1| (-831 (-1087))) (|has| |#1| (-339)))) (($ $ (-1 |#1| |#1|) (-710)) 123 (|has| |#1| (-339))) (($ $ (-1 |#1| |#1|)) 122 (|has| |#1| (-339)))) (-1718 (((-629 |#1|) (-1169 $) (-1 |#1| |#1|)) 154 (|has| |#1| (-339)))) (-3399 ((|#2|) 159)) (-2315 (($) 148 (|has| |#1| (-325)))) (-2411 (((-1169 |#1|) $ (-1169 $)) 50) (((-629 |#1|) (-1169 $) (-1169 $)) 49) (((-1169 |#1|) $) 66) (((-629 |#1|) (-1169 $)) 65)) (-3077 (((-1169 |#1|) $) 63) (($ (-1169 |#1|)) 62) ((|#2| $) 171) (($ |#2|) 157)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) 145 (|has| |#1| (-325)))) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 37) (($ $) 91 (|has| |#1| (-339))) (($ (-383 (-523))) 86 (-3255 (|has| |#1| (-339)) (|has| |#1| (-964 (-383 (-523))))))) (-2301 (($ $) 144 (|has| |#1| (-325))) (((-3 $ "failed") $) 43 (|has| |#1| (-134)))) (-1606 ((|#2| $) 45)) (-1698 (((-710)) 29)) (-2922 (((-1169 $)) 67)) (-3842 (((-108) $ $) 95 (|has| |#1| (-339)))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 117 (|has| |#1| (-339)))) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $) 136 (-3255 (-2819 (|has| |#1| (-211)) (|has| |#1| (-339))) (|has| |#1| (-325)))) (($ $ (-710)) 134 (-3255 (-2819 (|has| |#1| (-211)) (|has| |#1| (-339))) (|has| |#1| (-325)))) (($ $ (-1087)) 129 (-2819 (|has| |#1| (-831 (-1087))) (|has| |#1| (-339)))) (($ $ (-589 (-1087))) 128 (-2819 (|has| |#1| (-831 (-1087))) (|has| |#1| (-339)))) (($ $ (-1087) (-710)) 127 (-2819 (|has| |#1| (-831 (-1087))) (|has| |#1| (-339)))) (($ $ (-589 (-1087)) (-589 (-710))) 126 (-2819 (|has| |#1| (-831 (-1087))) (|has| |#1| (-339)))) (($ $ (-1 |#1| |#1|) (-710)) 125 (|has| |#1| (-339))) (($ $ (-1 |#1| |#1|)) 124 (|has| |#1| (-339)))) (-4037 (((-108) $ $) 6)) (-4125 (($ $ $) 121 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 118 (|has| |#1| (-339)))) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38) (($ (-383 (-523)) $) 120 (|has| |#1| (-339))) (($ $ (-383 (-523))) 119 (|has| |#1| (-339)))))
-(((-664 |#1| |#2|) (-129) (-158) (-1145 |t#1|)) (T -664))
-((-4102 (*1 *1) (-12 (-4 *2 (-158)) (-4 *1 (-664 *2 *3)) (-4 *3 (-1145 *2)))) (-3399 (*1 *2) (-12 (-4 *1 (-664 *3 *2)) (-4 *3 (-158)) (-4 *2 (-1145 *3)))) (-1830 (*1 *1 *2) (-12 (-4 *3 (-158)) (-4 *1 (-664 *3 *2)) (-4 *2 (-1145 *3)))) (-3077 (*1 *1 *2) (-12 (-4 *3 (-158)) (-4 *1 (-664 *3 *2)) (-4 *2 (-1145 *3)))) (-1816 (*1 *2 *1) (-12 (-4 *1 (-664 *3 *2)) (-4 *3 (-158)) (-4 *2 (-1145 *3)))) (-1830 (*1 *1 *2) (|partial| -12 (-5 *2 (-383 *4)) (-4 *4 (-1145 *3)) (-4 *3 (-339)) (-4 *3 (-158)) (-4 *1 (-664 *3 *4)))) (-1718 (*1 *2 *3 *4) (-12 (-5 *3 (-1169 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-339)) (-4 *1 (-664 *5 *6)) (-4 *5 (-158)) (-4 *6 (-1145 *5)) (-5 *2 (-629 *5)))))
-(-13 (-385 |t#1| |t#2|) (-158) (-564 |t#2|) (-387 |t#1|) (-353 |t#1|) (-10 -8 (-15 -4102 ($)) (-15 -3399 (|t#2|)) (-15 -1830 ($ |t#2|)) (-15 -3077 ($ |t#2|)) (-15 -1816 (|t#2| $)) (IF (|has| |t#1| (-344)) (-6 (-344)) |%noBranch|) (IF (|has| |t#1| (-339)) (PROGN (-6 (-339)) (-6 (-209 |t#1|)) (-15 -1830 ((-3 $ "failed") (-383 |t#2|))) (-15 -1718 ((-629 |t#1|) (-1169 $) (-1 |t#1| |t#1|)))) |%noBranch|) (IF (|has| |t#1| (-325)) (-6 (-325)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-37 |#1|) . T) ((-37 $) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-97) . T) ((-107 #0# #0#) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-124) . T) ((-134) -3255 (|has| |#1| (-325)) (|has| |#1| (-134))) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) . T) ((-564 |#2|) . T) ((-209 |#1|) |has| |#1| (-339)) ((-211) -3255 (|has| |#1| (-325)) (-12 (|has| |#1| (-211)) (|has| |#1| (-339)))) ((-221) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-267) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-284) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-339) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-378) |has| |#1| (-325)) ((-344) -3255 (|has| |#1| (-344)) (|has| |#1| (-325))) ((-325) |has| |#1| (-325)) ((-346 |#1| |#2|) . T) ((-385 |#1| |#2|) . T) ((-353 |#1|) . T) ((-387 |#1|) . T) ((-427) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-515) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-591 #0#) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-591 |#1|) . T) ((-591 $) . T) ((-585 (-523)) |has| |#1| (-585 (-523))) ((-585 |#1|) . T) ((-657 #0#) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-657 |#1|) . T) ((-657 $) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-666) . T) ((-831 (-1087)) -12 (|has| |#1| (-339)) (|has| |#1| (-831 (-1087)))) ((-851) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-964 (-383 (-523))) |has| |#1| (-964 (-383 (-523)))) ((-964 (-523)) |has| |#1| (-964 (-523))) ((-964 |#1|) . T) ((-979 #0#) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))) ((-979 |#1|) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1063) |has| |#1| (-325)) ((-1127) -3255 (|has| |#1| (-325)) (|has| |#1| (-339))))
-((-1640 (($) 14)) (-4211 (((-3 $ "failed") $) 16)) (-3482 (((-108) $) 13)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) 9)) (** (($ $ (-852)) NIL) (($ $ (-710)) 20)))
-(((-665 |#1|) (-10 -8 (-15 -4211 ((-3 |#1| "failed") |#1|)) (-15 -2573 (|#1| |#1| (-710))) (-15 ** (|#1| |#1| (-710))) (-15 -3482 ((-108) |#1|)) (-15 -1640 (|#1|)) (-15 -2573 (|#1| |#1| (-852))) (-15 ** (|#1| |#1| (-852)))) (-666)) (T -665))
-NIL
-(-10 -8 (-15 -4211 ((-3 |#1| "failed") |#1|)) (-15 -2573 (|#1| |#1| (-710))) (-15 ** (|#1| |#1| (-710))) (-15 -3482 ((-108) |#1|)) (-15 -1640 (|#1|)) (-15 -2573 (|#1| |#1| (-852))) (-15 ** (|#1| |#1| (-852))))
-((-3260 (((-108) $ $) 7)) (-1640 (($) 20 T CONST)) (-4211 (((-3 $ "failed") $) 16)) (-3482 (((-108) $) 19)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-2573 (($ $ (-852)) 13) (($ $ (-710)) 17)) (-1440 (($) 21 T CONST)) (-4037 (((-108) $ $) 6)) (** (($ $ (-852)) 14) (($ $ (-710)) 18)) (* (($ $ $) 15)))
-(((-666) (-129)) (T -666))
-((-1440 (*1 *1) (-4 *1 (-666))) (-1640 (*1 *1) (-4 *1 (-666))) (-3482 (*1 *2 *1) (-12 (-4 *1 (-666)) (-5 *2 (-108)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-666)) (-5 *2 (-710)))) (-2573 (*1 *1 *1 *2) (-12 (-4 *1 (-666)) (-5 *2 (-710)))) (-4211 (*1 *1 *1) (|partial| -4 *1 (-666))))
-(-13 (-1028) (-10 -8 (-15 (-1440) ($) -1982) (-15 -1640 ($) -1982) (-15 -3482 ((-108) $)) (-15 ** ($ $ (-710))) (-15 -2573 ($ $ (-710))) (-15 -4211 ((-3 $ "failed") $))))
-(((-97) . T) ((-563 (-794)) . T) ((-1028) . T) ((-1016) . T))
-((-2979 (((-2 (|:| -2031 (-394 |#2|)) (|:| |special| (-394 |#2|))) |#2| (-1 |#2| |#2|)) 38)) (-1380 (((-2 (|:| -2031 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-3253 ((|#2| (-383 |#2|) (-1 |#2| |#2|)) 13)) (-3720 (((-2 (|:| |poly| |#2|) (|:| -2031 (-383 |#2|)) (|:| |special| (-383 |#2|))) (-383 |#2|) (-1 |#2| |#2|)) 47)))
-(((-667 |#1| |#2|) (-10 -7 (-15 -1380 ((-2 (|:| -2031 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -2979 ((-2 (|:| -2031 (-394 |#2|)) (|:| |special| (-394 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3253 (|#2| (-383 |#2|) (-1 |#2| |#2|))) (-15 -3720 ((-2 (|:| |poly| |#2|) (|:| -2031 (-383 |#2|)) (|:| |special| (-383 |#2|))) (-383 |#2|) (-1 |#2| |#2|)))) (-339) (-1145 |#1|)) (T -667))
-((-3720 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-339)) (-5 *2 (-2 (|:| |poly| *6) (|:| -2031 (-383 *6)) (|:| |special| (-383 *6)))) (-5 *1 (-667 *5 *6)) (-5 *3 (-383 *6)))) (-3253 (*1 *2 *3 *4) (-12 (-5 *3 (-383 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1145 *5)) (-5 *1 (-667 *5 *2)) (-4 *5 (-339)))) (-2979 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1145 *5)) (-4 *5 (-339)) (-5 *2 (-2 (|:| -2031 (-394 *3)) (|:| |special| (-394 *3)))) (-5 *1 (-667 *5 *3)))) (-1380 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1145 *5)) (-4 *5 (-339)) (-5 *2 (-2 (|:| -2031 *3) (|:| |special| *3))) (-5 *1 (-667 *5 *3)))))
-(-10 -7 (-15 -1380 ((-2 (|:| -2031 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -2979 ((-2 (|:| -2031 (-394 |#2|)) (|:| |special| (-394 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3253 (|#2| (-383 |#2|) (-1 |#2| |#2|))) (-15 -3720 ((-2 (|:| |poly| |#2|) (|:| -2031 (-383 |#2|)) (|:| |special| (-383 |#2|))) (-383 |#2|) (-1 |#2| |#2|))))
-((-1739 ((|#7| (-589 |#5|) |#6|) NIL)) (-3015 ((|#7| (-1 |#5| |#4|) |#6|) 26)))
-(((-668 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -3015 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -1739 (|#7| (-589 |#5|) |#6|))) (-786) (-732) (-732) (-973) (-973) (-880 |#4| |#2| |#1|) (-880 |#5| |#3| |#1|)) (T -668))
-((-1739 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *9)) (-4 *9 (-973)) (-4 *5 (-786)) (-4 *6 (-732)) (-4 *8 (-973)) (-4 *2 (-880 *9 *7 *5)) (-5 *1 (-668 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-732)) (-4 *4 (-880 *8 *6 *5)))) (-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-973)) (-4 *9 (-973)) (-4 *5 (-786)) (-4 *6 (-732)) (-4 *2 (-880 *9 *7 *5)) (-5 *1 (-668 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-732)) (-4 *4 (-880 *8 *6 *5)))))
-(-10 -7 (-15 -3015 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -1739 (|#7| (-589 |#5|) |#6|)))
-((-3015 ((|#7| (-1 |#2| |#1|) |#6|) 28)))
-(((-669 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -3015 (|#7| (-1 |#2| |#1|) |#6|))) (-786) (-786) (-732) (-732) (-973) (-880 |#5| |#3| |#1|) (-880 |#5| |#4| |#2|)) (T -669))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-786)) (-4 *6 (-786)) (-4 *7 (-732)) (-4 *9 (-973)) (-4 *2 (-880 *9 *8 *6)) (-5 *1 (-669 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-732)) (-4 *4 (-880 *9 *7 *5)))))
-(-10 -7 (-15 -3015 (|#7| (-1 |#2| |#1|) |#6|)))
-((-3573 (((-394 |#4|) |#4|) 41)))
-(((-670 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3573 ((-394 |#4|) |#4|))) (-732) (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $)) (-15 -2354 ((-3 $ "failed") (-1087))))) (-284) (-880 (-883 |#3|) |#1| |#2|)) (T -670))
-((-3573 (*1 *2 *3) (-12 (-4 *4 (-732)) (-4 *5 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $)) (-15 -2354 ((-3 $ "failed") (-1087)))))) (-4 *6 (-284)) (-5 *2 (-394 *3)) (-5 *1 (-670 *4 *5 *6 *3)) (-4 *3 (-880 (-883 *6) *4 *5)))))
-(-10 -7 (-15 -3573 ((-394 |#4|) |#4|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3716 (((-589 (-796 |#1|)) $) NIL)) (-3540 (((-1083 $) $ (-796 |#1|)) NIL) (((-1083 |#2|) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#2| (-515)))) (-3950 (($ $) NIL (|has| |#2| (-515)))) (-3226 (((-108) $) NIL (|has| |#2| (-515)))) (-2862 (((-710) $) NIL) (((-710) $ (-589 (-796 |#1|))) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-3763 (($ $) NIL (|has| |#2| (-427)))) (-2105 (((-394 $) $) NIL (|has| |#2| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#2| "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#2| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) NIL (|has| |#2| (-964 (-523)))) (((-3 (-796 |#1|) "failed") $) NIL)) (-1996 ((|#2| $) NIL) (((-383 (-523)) $) NIL (|has| |#2| (-964 (-383 (-523))))) (((-523) $) NIL (|has| |#2| (-964 (-523)))) (((-796 |#1|) $) NIL)) (-2210 (($ $ $ (-796 |#1|)) NIL (|has| |#2| (-158)))) (-3142 (($ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) NIL) (((-629 |#2|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2213 (($ $) NIL (|has| |#2| (-427))) (($ $ (-796 |#1|)) NIL (|has| |#2| (-427)))) (-3127 (((-589 $) $) NIL)) (-1330 (((-108) $) NIL (|has| |#2| (-840)))) (-2067 (($ $ |#2| (-495 (-796 |#1|)) $) NIL)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| (-796 |#1|) (-817 (-355))) (|has| |#2| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| (-796 |#1|) (-817 (-523))) (|has| |#2| (-817 (-523)))))) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) NIL)) (-3706 (($ (-1083 |#2|) (-796 |#1|)) NIL) (($ (-1083 $) (-796 |#1|)) NIL)) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-3694 (($ |#2| (-495 (-796 |#1|))) NIL) (($ $ (-796 |#1|) (-710)) NIL) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ (-796 |#1|)) NIL)) (-2140 (((-495 (-796 |#1|)) $) NIL) (((-710) $ (-796 |#1|)) NIL) (((-589 (-710)) $ (-589 (-796 |#1|))) NIL)) (-3268 (($ $ $) NIL (|has| |#2| (-786)))) (-2644 (($ $ $) NIL (|has| |#2| (-786)))) (-3927 (($ (-1 (-495 (-796 |#1|)) (-495 (-796 |#1|))) $) NIL)) (-3015 (($ (-1 |#2| |#2|) $) NIL)) (-1949 (((-3 (-796 |#1|) "failed") $) NIL)) (-3107 (($ $) NIL)) (-3119 ((|#2| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#2| (-427))) (($ $ $) NIL (|has| |#2| (-427)))) (-3841 (((-1070) $) NIL)) (-3818 (((-3 (-589 $) "failed") $) NIL)) (-1973 (((-3 (-589 $) "failed") $) NIL)) (-3719 (((-3 (-2 (|:| |var| (-796 |#1|)) (|:| -3262 (-710))) "failed") $) NIL)) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) NIL)) (-3095 ((|#2| $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#2| (-427)))) (-2056 (($ (-589 $)) NIL (|has| |#2| (-427))) (($ $ $) NIL (|has| |#2| (-427)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-3573 (((-394 $) $) NIL (|has| |#2| (-840)))) (-2469 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-515))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-515)))) (-1349 (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-796 |#1|) |#2|) NIL) (($ $ (-589 (-796 |#1|)) (-589 |#2|)) NIL) (($ $ (-796 |#1|) $) NIL) (($ $ (-589 (-796 |#1|)) (-589 $)) NIL)) (-4053 (($ $ (-796 |#1|)) NIL (|has| |#2| (-158)))) (-4024 (($ $ (-796 |#1|)) NIL) (($ $ (-589 (-796 |#1|))) NIL) (($ $ (-796 |#1|) (-710)) NIL) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-1487 (((-495 (-796 |#1|)) $) NIL) (((-710) $ (-796 |#1|)) NIL) (((-589 (-710)) $ (-589 (-796 |#1|))) NIL)) (-3077 (((-823 (-355)) $) NIL (-12 (|has| (-796 |#1|) (-564 (-823 (-355)))) (|has| |#2| (-564 (-823 (-355)))))) (((-823 (-523)) $) NIL (-12 (|has| (-796 |#1|) (-564 (-823 (-523)))) (|has| |#2| (-564 (-823 (-523)))))) (((-499) $) NIL (-12 (|has| (-796 |#1|) (-564 (-499))) (|has| |#2| (-564 (-499)))))) (-2267 ((|#2| $) NIL (|has| |#2| (-427))) (($ $ (-796 |#1|)) NIL (|has| |#2| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#2| (-840))))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#2|) NIL) (($ (-796 |#1|)) NIL) (($ $) NIL (|has| |#2| (-515))) (($ (-383 (-523))) NIL (-3255 (|has| |#2| (-37 (-383 (-523)))) (|has| |#2| (-964 (-383 (-523))))))) (-1639 (((-589 |#2|) $) NIL)) (-1234 ((|#2| $ (-495 (-796 |#1|))) NIL) (($ $ (-796 |#1|) (-710)) NIL) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#2| (-840))) (|has| |#2| (-134))))) (-1698 (((-710)) NIL)) (-2656 (($ $ $ (-710)) NIL (|has| |#2| (-158)))) (-3842 (((-108) $ $) NIL (|has| |#2| (-515)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ (-796 |#1|)) NIL) (($ $ (-589 (-796 |#1|))) NIL) (($ $ (-796 |#1|) (-710)) NIL) (($ $ (-589 (-796 |#1|)) (-589 (-710))) NIL)) (-4078 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4125 (($ $ |#2|) NIL (|has| |#2| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL (|has| |#2| (-37 (-383 (-523))))) (($ (-383 (-523)) $) NIL (|has| |#2| (-37 (-383 (-523))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-671 |#1| |#2|) (-880 |#2| (-495 (-796 |#1|)) (-796 |#1|)) (-589 (-1087)) (-973)) (T -671))
-NIL
-(-880 |#2| (-495 (-796 |#1|)) (-796 |#1|))
-((-2956 (((-2 (|:| -1773 (-883 |#3|)) (|:| -2508 (-883 |#3|))) |#4|) 14)) (-3802 ((|#4| |#4| |#2|) 33)) (-3126 ((|#4| (-383 (-883 |#3|)) |#2|) 64)) (-3670 ((|#4| (-1083 (-883 |#3|)) |#2|) 77)) (-3024 ((|#4| (-1083 |#4|) |#2|) 51)) (-1923 ((|#4| |#4| |#2|) 54)) (-3573 (((-394 |#4|) |#4|) 40)))
-(((-672 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2956 ((-2 (|:| -1773 (-883 |#3|)) (|:| -2508 (-883 |#3|))) |#4|)) (-15 -1923 (|#4| |#4| |#2|)) (-15 -3024 (|#4| (-1083 |#4|) |#2|)) (-15 -3802 (|#4| |#4| |#2|)) (-15 -3670 (|#4| (-1083 (-883 |#3|)) |#2|)) (-15 -3126 (|#4| (-383 (-883 |#3|)) |#2|)) (-15 -3573 ((-394 |#4|) |#4|))) (-732) (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $)))) (-515) (-880 (-383 (-883 |#3|)) |#1| |#2|)) (T -672))
-((-3573 (*1 *2 *3) (-12 (-4 *4 (-732)) (-4 *5 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $))))) (-4 *6 (-515)) (-5 *2 (-394 *3)) (-5 *1 (-672 *4 *5 *6 *3)) (-4 *3 (-880 (-383 (-883 *6)) *4 *5)))) (-3126 (*1 *2 *3 *4) (-12 (-4 *6 (-515)) (-4 *2 (-880 *3 *5 *4)) (-5 *1 (-672 *5 *4 *6 *2)) (-5 *3 (-383 (-883 *6))) (-4 *5 (-732)) (-4 *4 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $))))))) (-3670 (*1 *2 *3 *4) (-12 (-5 *3 (-1083 (-883 *6))) (-4 *6 (-515)) (-4 *2 (-880 (-383 (-883 *6)) *5 *4)) (-5 *1 (-672 *5 *4 *6 *2)) (-4 *5 (-732)) (-4 *4 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $))))))) (-3802 (*1 *2 *2 *3) (-12 (-4 *4 (-732)) (-4 *3 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $))))) (-4 *5 (-515)) (-5 *1 (-672 *4 *3 *5 *2)) (-4 *2 (-880 (-383 (-883 *5)) *4 *3)))) (-3024 (*1 *2 *3 *4) (-12 (-5 *3 (-1083 *2)) (-4 *2 (-880 (-383 (-883 *6)) *5 *4)) (-5 *1 (-672 *5 *4 *6 *2)) (-4 *5 (-732)) (-4 *4 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $))))) (-4 *6 (-515)))) (-1923 (*1 *2 *2 *3) (-12 (-4 *4 (-732)) (-4 *3 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $))))) (-4 *5 (-515)) (-5 *1 (-672 *4 *3 *5 *2)) (-4 *2 (-880 (-383 (-883 *5)) *4 *3)))) (-2956 (*1 *2 *3) (-12 (-4 *4 (-732)) (-4 *5 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $))))) (-4 *6 (-515)) (-5 *2 (-2 (|:| -1773 (-883 *6)) (|:| -2508 (-883 *6)))) (-5 *1 (-672 *4 *5 *6 *3)) (-4 *3 (-880 (-383 (-883 *6)) *4 *5)))))
-(-10 -7 (-15 -2956 ((-2 (|:| -1773 (-883 |#3|)) (|:| -2508 (-883 |#3|))) |#4|)) (-15 -1923 (|#4| |#4| |#2|)) (-15 -3024 (|#4| (-1083 |#4|) |#2|)) (-15 -3802 (|#4| |#4| |#2|)) (-15 -3670 (|#4| (-1083 (-883 |#3|)) |#2|)) (-15 -3126 (|#4| (-383 (-883 |#3|)) |#2|)) (-15 -3573 ((-394 |#4|) |#4|)))
-((-3573 (((-394 |#4|) |#4|) 52)))
-(((-673 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3573 ((-394 |#4|) |#4|))) (-732) (-786) (-13 (-284) (-136)) (-880 (-383 |#3|) |#1| |#2|)) (T -673))
-((-3573 (*1 *2 *3) (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-13 (-284) (-136))) (-5 *2 (-394 *3)) (-5 *1 (-673 *4 *5 *6 *3)) (-4 *3 (-880 (-383 *6) *4 *5)))))
-(-10 -7 (-15 -3573 ((-394 |#4|) |#4|)))
-((-3015 (((-675 |#2| |#3|) (-1 |#2| |#1|) (-675 |#1| |#3|)) 18)))
-(((-674 |#1| |#2| |#3|) (-10 -7 (-15 -3015 ((-675 |#2| |#3|) (-1 |#2| |#1|) (-675 |#1| |#3|)))) (-973) (-973) (-666)) (T -674))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-675 *5 *7)) (-4 *5 (-973)) (-4 *6 (-973)) (-4 *7 (-666)) (-5 *2 (-675 *6 *7)) (-5 *1 (-674 *5 *6 *7)))))
-(-10 -7 (-15 -3015 ((-675 |#2| |#3|) (-1 |#2| |#1|) (-675 |#1| |#3|))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 28)) (-2736 (((-589 (-2 (|:| -2275 |#1|) (|:| -1511 |#2|))) $) 29)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3843 (((-710)) 20 (-12 (|has| |#2| (-344)) (|has| |#1| (-344))))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#2| "failed") $) 57) (((-3 |#1| "failed") $) 60)) (-1996 ((|#2| $) NIL) ((|#1| $) NIL)) (-3142 (($ $) 79 (|has| |#2| (-786)))) (-4211 (((-3 $ "failed") $) 65)) (-3461 (($) 35 (-12 (|has| |#2| (-344)) (|has| |#1| (-344))))) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) 55)) (-2738 (((-589 $) $) 39)) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| |#2|) 16)) (-3015 (($ (-1 |#1| |#1|) $) 54)) (-4076 (((-852) $) 32 (-12 (|has| |#2| (-344)) (|has| |#1| (-344))))) (-3107 ((|#2| $) 78 (|has| |#2| (-786)))) (-3119 ((|#1| $) 77 (|has| |#2| (-786)))) (-3841 (((-1070) $) NIL)) (-2557 (($ (-852)) 27 (-12 (|has| |#2| (-344)) (|has| |#1| (-344))))) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 76) (($ (-523)) 45) (($ |#2|) 42) (($ |#1|) 43) (($ (-589 (-2 (|:| -2275 |#1|) (|:| -1511 |#2|)))) 11)) (-1639 (((-589 |#1|) $) 41)) (-1234 ((|#1| $ |#2|) 88)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 12 T CONST)) (-1440 (($) 33 T CONST)) (-4037 (((-108) $ $) 80)) (-4115 (($ $) 47) (($ $ $) NIL)) (-4103 (($ $ $) 26)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 52) (($ $ $) 90) (($ |#1| $) 49 (|has| |#1| (-158))) (($ $ |#1|) NIL (|has| |#1| (-158)))))
-(((-675 |#1| |#2|) (-13 (-973) (-964 |#2|) (-964 |#1|) (-10 -8 (-15 -3694 ($ |#1| |#2|)) (-15 -1234 (|#1| $ |#2|)) (-15 -3976 ($ (-589 (-2 (|:| -2275 |#1|) (|:| -1511 |#2|))))) (-15 -2736 ((-589 (-2 (|:| -2275 |#1|) (|:| -1511 |#2|))) $)) (-15 -3015 ($ (-1 |#1| |#1|) $)) (-15 -4060 ((-108) $)) (-15 -1639 ((-589 |#1|) $)) (-15 -2738 ((-589 $) $)) (-15 -3288 ((-710) $)) (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-134)) (-6 (-134)) |%noBranch|) (IF (|has| |#1| (-158)) (-6 (-37 |#1|)) |%noBranch|) (IF (|has| |#1| (-344)) (IF (|has| |#2| (-344)) (-6 (-344)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-786)) (PROGN (-15 -3107 (|#2| $)) (-15 -3119 (|#1| $)) (-15 -3142 ($ $))) |%noBranch|))) (-973) (-666)) (T -675))
-((-3694 (*1 *1 *2 *3) (-12 (-5 *1 (-675 *2 *3)) (-4 *2 (-973)) (-4 *3 (-666)))) (-1234 (*1 *2 *1 *3) (-12 (-4 *2 (-973)) (-5 *1 (-675 *2 *3)) (-4 *3 (-666)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-589 (-2 (|:| -2275 *3) (|:| -1511 *4)))) (-4 *3 (-973)) (-4 *4 (-666)) (-5 *1 (-675 *3 *4)))) (-2736 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| -2275 *3) (|:| -1511 *4)))) (-5 *1 (-675 *3 *4)) (-4 *3 (-973)) (-4 *4 (-666)))) (-3015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-973)) (-5 *1 (-675 *3 *4)) (-4 *4 (-666)))) (-4060 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-675 *3 *4)) (-4 *3 (-973)) (-4 *4 (-666)))) (-1639 (*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-675 *3 *4)) (-4 *3 (-973)) (-4 *4 (-666)))) (-2738 (*1 *2 *1) (-12 (-5 *2 (-589 (-675 *3 *4))) (-5 *1 (-675 *3 *4)) (-4 *3 (-973)) (-4 *4 (-666)))) (-3288 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-675 *3 *4)) (-4 *3 (-973)) (-4 *4 (-666)))) (-3107 (*1 *2 *1) (-12 (-4 *2 (-666)) (-4 *2 (-786)) (-5 *1 (-675 *3 *2)) (-4 *3 (-973)))) (-3119 (*1 *2 *1) (-12 (-4 *2 (-973)) (-5 *1 (-675 *2 *3)) (-4 *3 (-786)) (-4 *3 (-666)))) (-3142 (*1 *1 *1) (-12 (-5 *1 (-675 *2 *3)) (-4 *3 (-786)) (-4 *2 (-973)) (-4 *3 (-666)))))
-(-13 (-973) (-964 |#2|) (-964 |#1|) (-10 -8 (-15 -3694 ($ |#1| |#2|)) (-15 -1234 (|#1| $ |#2|)) (-15 -3976 ($ (-589 (-2 (|:| -2275 |#1|) (|:| -1511 |#2|))))) (-15 -2736 ((-589 (-2 (|:| -2275 |#1|) (|:| -1511 |#2|))) $)) (-15 -3015 ($ (-1 |#1| |#1|) $)) (-15 -4060 ((-108) $)) (-15 -1639 ((-589 |#1|) $)) (-15 -2738 ((-589 $) $)) (-15 -3288 ((-710) $)) (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-134)) (-6 (-134)) |%noBranch|) (IF (|has| |#1| (-158)) (-6 (-37 |#1|)) |%noBranch|) (IF (|has| |#1| (-344)) (IF (|has| |#2| (-344)) (-6 (-344)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-786)) (PROGN (-15 -3107 (|#2| $)) (-15 -3119 (|#1| $)) (-15 -3142 ($ $))) |%noBranch|)))
-((-3260 (((-108) $ $) 19)) (-2073 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-1767 (($ $ $) 72)) (-2607 (((-108) $ $) 73)) (-2282 (((-108) $ (-710)) 8)) (-4033 (($ (-589 |#1|)) 68) (($) 67)) (-3627 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4248)))) (-1640 (($) 7 T CONST)) (-2543 (($ $) 62)) (-3917 (($ $) 58 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-1869 (($ |#1| $) 47 (|has| $ (-6 -4248))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4248)))) (-2231 (($ |#1| $) 57 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4248)))) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22)) (-1625 (($ $ $) 69)) (-2349 ((|#1| $) 39)) (-3862 (($ |#1| $) 40) (($ |#1| $ (-710)) 63)) (-2435 (((-1034) $) 21)) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-1322 ((|#1| $) 41)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1207 (((-589 (-2 (|:| -2746 |#1|) (|:| -2452 (-710)))) $) 61)) (-2973 (($ $ |#1|) 71) (($ $ $) 70)) (-1771 (($) 49) (($ (-589 |#1|)) 48)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3077 (((-499) $) 59 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 50)) (-3976 (((-794) $) 18)) (-2000 (($ (-589 |#1|)) 66) (($) 65)) (-1245 (($ (-589 |#1|)) 42)) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20)) (-4052 (((-108) $ $) 64)) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-676 |#1|) (-129) (-1016)) (T -676))
-NIL
-(-13 (-634 |t#1|) (-1014 |t#1|))
-(((-33) . T) ((-102 |#1|) . T) ((-97) . T) ((-563 (-794)) . T) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-213 |#1|) . T) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-634 |#1|) . T) ((-1014 |#1|) . T) ((-1016) . T) ((-1123) . T))
-((-3260 (((-108) $ $) NIL)) (-2073 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 76)) (-1767 (($ $ $) 79)) (-2607 (((-108) $ $) 83)) (-2282 (((-108) $ (-710)) NIL)) (-4033 (($ (-589 |#1|)) 24) (($) 16)) (-3627 (($ (-1 (-108) |#1|) $) 70 (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-2543 (($ $) 71)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-1869 (($ |#1| $) 61 (|has| $ (-6 -4248))) (($ (-1 (-108) |#1|) $) 64 (|has| $ (-6 -4248))) (($ |#1| $ (-523)) 62) (($ (-1 (-108) |#1|) $ (-523)) 65)) (-2231 (($ |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (($ |#1| $ (-523)) 67) (($ (-1 (-108) |#1|) $ (-523)) 68)) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4248)))) (-3133 (((-589 |#1|) $) 32 (|has| $ (-6 -4248)))) (-2416 (($) 14) (($ |#1|) 26) (($ (-589 |#1|)) 21)) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#1|) $) 38)) (-1348 (((-108) |#1| $) 58 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3063 (($ (-1 |#1| |#1|) $) 74 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 75)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-1625 (($ $ $) 77)) (-2349 ((|#1| $) 55)) (-3862 (($ |#1| $) 56) (($ |#1| $ (-710)) 72)) (-2435 (((-1034) $) NIL)) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1322 ((|#1| $) 54)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) 50)) (-4055 (($) 13)) (-1207 (((-589 (-2 (|:| -2746 |#1|) (|:| -2452 (-710)))) $) 48)) (-2973 (($ $ |#1|) NIL) (($ $ $) 78)) (-1771 (($) 15) (($ (-589 |#1|)) 23)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) 60 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) 66)) (-3077 (((-499) $) 36 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 20)) (-3976 (((-794) $) 44)) (-2000 (($ (-589 |#1|)) 25) (($) 17)) (-1245 (($ (-589 |#1|)) 22)) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 81)) (-4052 (((-108) $ $) 82)) (-1271 (((-710) $) 59 (|has| $ (-6 -4248)))))
-(((-677 |#1|) (-13 (-676 |#1|) (-10 -8 (-6 -4248) (-6 -4249) (-15 -2416 ($)) (-15 -2416 ($ |#1|)) (-15 -2416 ($ (-589 |#1|))) (-15 -3056 ((-589 |#1|) $)) (-15 -2231 ($ |#1| $ (-523))) (-15 -2231 ($ (-1 (-108) |#1|) $ (-523))) (-15 -1869 ($ |#1| $ (-523))) (-15 -1869 ($ (-1 (-108) |#1|) $ (-523))))) (-1016)) (T -677))
-((-2416 (*1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-1016)))) (-2416 (*1 *1 *2) (-12 (-5 *1 (-677 *2)) (-4 *2 (-1016)))) (-2416 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-677 *3)))) (-3056 (*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-677 *3)) (-4 *3 (-1016)))) (-2231 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *1 (-677 *2)) (-4 *2 (-1016)))) (-2231 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-108) *4)) (-5 *3 (-523)) (-4 *4 (-1016)) (-5 *1 (-677 *4)))) (-1869 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *1 (-677 *2)) (-4 *2 (-1016)))) (-1869 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-108) *4)) (-5 *3 (-523)) (-4 *4 (-1016)) (-5 *1 (-677 *4)))))
-(-13 (-676 |#1|) (-10 -8 (-6 -4248) (-6 -4249) (-15 -2416 ($)) (-15 -2416 ($ |#1|)) (-15 -2416 ($ (-589 |#1|))) (-15 -3056 ((-589 |#1|) $)) (-15 -2231 ($ |#1| $ (-523))) (-15 -2231 ($ (-1 (-108) |#1|) $ (-523))) (-15 -1869 ($ |#1| $ (-523))) (-15 -1869 ($ (-1 (-108) |#1|) $ (-523)))))
-((-1980 (((-1174) (-1070)) 8)))
-(((-678) (-10 -7 (-15 -1980 ((-1174) (-1070))))) (T -678))
-((-1980 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-678)))))
-(-10 -7 (-15 -1980 ((-1174) (-1070))))
-((-3708 (((-589 |#1|) (-589 |#1|) (-589 |#1|)) 10)))
-(((-679 |#1|) (-10 -7 (-15 -3708 ((-589 |#1|) (-589 |#1|) (-589 |#1|)))) (-786)) (T -679))
-((-3708 (*1 *2 *2 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-786)) (-5 *1 (-679 *3)))))
-(-10 -7 (-15 -3708 ((-589 |#1|) (-589 |#1|) (-589 |#1|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3716 (((-589 |#2|) $) 136)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 129 (|has| |#1| (-515)))) (-3950 (($ $) 128 (|has| |#1| (-515)))) (-3226 (((-108) $) 126 (|has| |#1| (-515)))) (-3695 (($ $) 85 (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) 68 (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) 19)) (-3584 (($ $) 67 (|has| |#1| (-37 (-383 (-523)))))) (-3669 (($ $) 84 (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) 69 (|has| |#1| (-37 (-383 (-523)))))) (-3717 (($ $) 83 (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) 70 (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) 17 T CONST)) (-3142 (($ $) 120)) (-4211 (((-3 $ "failed") $) 34)) (-3241 (((-883 |#1|) $ (-710)) 98) (((-883 |#1|) $ (-710) (-710)) 97)) (-2294 (((-108) $) 137)) (-2188 (($) 95 (|has| |#1| (-37 (-383 (-523)))))) (-1500 (((-710) $ |#2|) 100) (((-710) $ |#2| (-710)) 99)) (-3482 (((-108) $) 31)) (-1324 (($ $ (-523)) 66 (|has| |#1| (-37 (-383 (-523)))))) (-4060 (((-108) $) 118)) (-3694 (($ $ (-589 |#2|) (-589 (-495 |#2|))) 135) (($ $ |#2| (-495 |#2|)) 134) (($ |#1| (-495 |#2|)) 119) (($ $ |#2| (-710)) 102) (($ $ (-589 |#2|) (-589 (-710))) 101)) (-3015 (($ (-1 |#1| |#1|) $) 117)) (-2062 (($ $) 92 (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) 115)) (-3119 ((|#1| $) 114)) (-3841 (((-1070) $) 9)) (-2669 (($ $ |#2|) 96 (|has| |#1| (-37 (-383 (-523)))))) (-2435 (((-1034) $) 10)) (-1361 (($ $ (-710)) 103)) (-2469 (((-3 $ "failed") $ $) 130 (|has| |#1| (-515)))) (-1847 (($ $) 93 (|has| |#1| (-37 (-383 (-523)))))) (-1349 (($ $ |#2| $) 111) (($ $ (-589 |#2|) (-589 $)) 110) (($ $ (-589 (-271 $))) 109) (($ $ (-271 $)) 108) (($ $ $ $) 107) (($ $ (-589 $) (-589 $)) 106)) (-4024 (($ $ |#2|) 42) (($ $ (-589 |#2|)) 41) (($ $ |#2| (-710)) 40) (($ $ (-589 |#2|) (-589 (-710))) 39)) (-1487 (((-495 |#2|) $) 116)) (-3730 (($ $) 82 (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) 71 (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) 81 (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) 72 (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) 80 (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) 73 (|has| |#1| (-37 (-383 (-523)))))) (-3749 (($ $) 138)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 133 (|has| |#1| (-158))) (($ $) 131 (|has| |#1| (-515))) (($ (-383 (-523))) 123 (|has| |#1| (-37 (-383 (-523)))))) (-1234 ((|#1| $ (-495 |#2|)) 121) (($ $ |#2| (-710)) 105) (($ $ (-589 |#2|) (-589 (-710))) 104)) (-2301 (((-3 $ "failed") $) 132 (|has| |#1| (-134)))) (-1698 (((-710)) 29)) (-3768 (($ $) 91 (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) 79 (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) 127 (|has| |#1| (-515)))) (-3743 (($ $) 90 (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) 78 (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) 89 (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) 77 (|has| |#1| (-37 (-383 (-523)))))) (-3135 (($ $) 88 (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) 76 (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) 87 (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) 75 (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) 86 (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) 74 (|has| |#1| (-37 (-383 (-523)))))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ |#2|) 38) (($ $ (-589 |#2|)) 37) (($ $ |#2| (-710)) 36) (($ $ (-589 |#2|) (-589 (-710))) 35)) (-4037 (((-108) $ $) 6)) (-4125 (($ $ |#1|) 122 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ $) 94 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 65 (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 (-523))) 125 (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) 124 (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) 113) (($ $ |#1|) 112)))
-(((-680 |#1| |#2|) (-129) (-973) (-786)) (T -680))
-((-1234 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-710)) (-4 *1 (-680 *4 *2)) (-4 *4 (-973)) (-4 *2 (-786)))) (-1234 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 *5)) (-5 *3 (-589 (-710))) (-4 *1 (-680 *4 *5)) (-4 *4 (-973)) (-4 *5 (-786)))) (-1361 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-680 *3 *4)) (-4 *3 (-973)) (-4 *4 (-786)))) (-3694 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-710)) (-4 *1 (-680 *4 *2)) (-4 *4 (-973)) (-4 *2 (-786)))) (-3694 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 *5)) (-5 *3 (-589 (-710))) (-4 *1 (-680 *4 *5)) (-4 *4 (-973)) (-4 *5 (-786)))) (-1500 (*1 *2 *1 *3) (-12 (-4 *1 (-680 *4 *3)) (-4 *4 (-973)) (-4 *3 (-786)) (-5 *2 (-710)))) (-1500 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-710)) (-4 *1 (-680 *4 *3)) (-4 *4 (-973)) (-4 *3 (-786)))) (-3241 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-4 *1 (-680 *4 *5)) (-4 *4 (-973)) (-4 *5 (-786)) (-5 *2 (-883 *4)))) (-3241 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-710)) (-4 *1 (-680 *4 *5)) (-4 *4 (-973)) (-4 *5 (-786)) (-5 *2 (-883 *4)))) (-2669 (*1 *1 *1 *2) (-12 (-4 *1 (-680 *3 *2)) (-4 *3 (-973)) (-4 *2 (-786)) (-4 *3 (-37 (-383 (-523)))))))
-(-13 (-831 |t#2|) (-902 |t#1| (-495 |t#2|) |t#2|) (-484 |t#2| $) (-286 $) (-10 -8 (-15 -1234 ($ $ |t#2| (-710))) (-15 -1234 ($ $ (-589 |t#2|) (-589 (-710)))) (-15 -1361 ($ $ (-710))) (-15 -3694 ($ $ |t#2| (-710))) (-15 -3694 ($ $ (-589 |t#2|) (-589 (-710)))) (-15 -1500 ((-710) $ |t#2|)) (-15 -1500 ((-710) $ |t#2| (-710))) (-15 -3241 ((-883 |t#1|) $ (-710))) (-15 -3241 ((-883 |t#1|) $ (-710) (-710))) (IF (|has| |t#1| (-37 (-383 (-523)))) (PROGN (-15 -2669 ($ $ |t#2|)) (-6 (-930)) (-6 (-1109))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-495 |#2|)) . T) ((-25) . T) ((-37 #1=(-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((-37 |#1|) |has| |#1| (-158)) ((-37 $) |has| |#1| (-515)) ((-34) |has| |#1| (-37 (-383 (-523)))) ((-91) |has| |#1| (-37 (-383 (-523)))) ((-97) . T) ((-107 #1# #1#) |has| |#1| (-37 (-383 (-523)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-261) |has| |#1| (-37 (-383 (-523)))) ((-267) |has| |#1| (-515)) ((-286 $) . T) ((-464) |has| |#1| (-37 (-383 (-523)))) ((-484 |#2| $) . T) ((-484 $ $) . T) ((-515) |has| |#1| (-515)) ((-591 #1#) |has| |#1| (-37 (-383 (-523)))) ((-591 |#1|) . T) ((-591 $) . T) ((-657 #1#) |has| |#1| (-37 (-383 (-523)))) ((-657 |#1|) |has| |#1| (-158)) ((-657 $) |has| |#1| (-515)) ((-666) . T) ((-831 |#2|) . T) ((-902 |#1| #0# |#2|) . T) ((-930) |has| |#1| (-37 (-383 (-523)))) ((-979 #1#) |has| |#1| (-37 (-383 (-523)))) ((-979 |#1|) . T) ((-979 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1109) |has| |#1| (-37 (-383 (-523)))) ((-1112) |has| |#1| (-37 (-383 (-523)))))
-((-3573 (((-394 (-1083 |#4|)) (-1083 |#4|)) 30) (((-394 |#4|) |#4|) 26)))
-(((-681 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3573 ((-394 |#4|) |#4|)) (-15 -3573 ((-394 (-1083 |#4|)) (-1083 |#4|)))) (-786) (-732) (-13 (-284) (-136)) (-880 |#3| |#2| |#1|)) (T -681))
-((-3573 (*1 *2 *3) (-12 (-4 *4 (-786)) (-4 *5 (-732)) (-4 *6 (-13 (-284) (-136))) (-4 *7 (-880 *6 *5 *4)) (-5 *2 (-394 (-1083 *7))) (-5 *1 (-681 *4 *5 *6 *7)) (-5 *3 (-1083 *7)))) (-3573 (*1 *2 *3) (-12 (-4 *4 (-786)) (-4 *5 (-732)) (-4 *6 (-13 (-284) (-136))) (-5 *2 (-394 *3)) (-5 *1 (-681 *4 *5 *6 *3)) (-4 *3 (-880 *6 *5 *4)))))
-(-10 -7 (-15 -3573 ((-394 |#4|) |#4|)) (-15 -3573 ((-394 (-1083 |#4|)) (-1083 |#4|))))
-((-3089 (((-394 |#4|) |#4| |#2|) 118)) (-2729 (((-394 |#4|) |#4|) NIL)) (-2105 (((-394 (-1083 |#4|)) (-1083 |#4|)) 109) (((-394 |#4|) |#4|) 40)) (-2883 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-589 (-2 (|:| -3573 (-1083 |#4|)) (|:| -3262 (-523)))))) (-1083 |#4|) (-589 |#2|) (-589 (-589 |#3|))) 68)) (-1233 (((-1083 |#3|) (-1083 |#3|) (-523)) 136)) (-1617 (((-589 (-710)) (-1083 |#4|) (-589 |#2|) (-710)) 60)) (-1816 (((-3 (-589 (-1083 |#4|)) "failed") (-1083 |#4|) (-1083 |#3|) (-1083 |#3|) |#4| (-589 |#2|) (-589 (-710)) (-589 |#3|)) 64)) (-2700 (((-2 (|:| |upol| (-1083 |#3|)) (|:| |Lval| (-589 |#3|)) (|:| |Lfact| (-589 (-2 (|:| -3573 (-1083 |#3|)) (|:| -3262 (-523))))) (|:| |ctpol| |#3|)) (-1083 |#4|) (-589 |#2|) (-589 (-589 |#3|))) 25)) (-2943 (((-2 (|:| -3764 (-1083 |#4|)) (|:| |polval| (-1083 |#3|))) (-1083 |#4|) (-1083 |#3|) (-523)) 56)) (-2071 (((-523) (-589 (-2 (|:| -3573 (-1083 |#3|)) (|:| -3262 (-523))))) 133)) (-1803 ((|#4| (-523) (-394 |#4|)) 57)) (-4064 (((-108) (-589 (-2 (|:| -3573 (-1083 |#3|)) (|:| -3262 (-523)))) (-589 (-2 (|:| -3573 (-1083 |#3|)) (|:| -3262 (-523))))) NIL)))
-(((-682 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2105 ((-394 |#4|) |#4|)) (-15 -2105 ((-394 (-1083 |#4|)) (-1083 |#4|))) (-15 -2729 ((-394 |#4|) |#4|)) (-15 -2071 ((-523) (-589 (-2 (|:| -3573 (-1083 |#3|)) (|:| -3262 (-523)))))) (-15 -3089 ((-394 |#4|) |#4| |#2|)) (-15 -2943 ((-2 (|:| -3764 (-1083 |#4|)) (|:| |polval| (-1083 |#3|))) (-1083 |#4|) (-1083 |#3|) (-523))) (-15 -2883 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-589 (-2 (|:| -3573 (-1083 |#4|)) (|:| -3262 (-523)))))) (-1083 |#4|) (-589 |#2|) (-589 (-589 |#3|)))) (-15 -2700 ((-2 (|:| |upol| (-1083 |#3|)) (|:| |Lval| (-589 |#3|)) (|:| |Lfact| (-589 (-2 (|:| -3573 (-1083 |#3|)) (|:| -3262 (-523))))) (|:| |ctpol| |#3|)) (-1083 |#4|) (-589 |#2|) (-589 (-589 |#3|)))) (-15 -1803 (|#4| (-523) (-394 |#4|))) (-15 -4064 ((-108) (-589 (-2 (|:| -3573 (-1083 |#3|)) (|:| -3262 (-523)))) (-589 (-2 (|:| -3573 (-1083 |#3|)) (|:| -3262 (-523)))))) (-15 -1816 ((-3 (-589 (-1083 |#4|)) "failed") (-1083 |#4|) (-1083 |#3|) (-1083 |#3|) |#4| (-589 |#2|) (-589 (-710)) (-589 |#3|))) (-15 -1617 ((-589 (-710)) (-1083 |#4|) (-589 |#2|) (-710))) (-15 -1233 ((-1083 |#3|) (-1083 |#3|) (-523)))) (-732) (-786) (-284) (-880 |#3| |#1| |#2|)) (T -682))
-((-1233 (*1 *2 *2 *3) (-12 (-5 *2 (-1083 *6)) (-5 *3 (-523)) (-4 *6 (-284)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-682 *4 *5 *6 *7)) (-4 *7 (-880 *6 *4 *5)))) (-1617 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1083 *9)) (-5 *4 (-589 *7)) (-4 *7 (-786)) (-4 *9 (-880 *8 *6 *7)) (-4 *6 (-732)) (-4 *8 (-284)) (-5 *2 (-589 (-710))) (-5 *1 (-682 *6 *7 *8 *9)) (-5 *5 (-710)))) (-1816 (*1 *2 *3 *4 *4 *5 *6 *7 *8) (|partial| -12 (-5 *4 (-1083 *11)) (-5 *6 (-589 *10)) (-5 *7 (-589 (-710))) (-5 *8 (-589 *11)) (-4 *10 (-786)) (-4 *11 (-284)) (-4 *9 (-732)) (-4 *5 (-880 *11 *9 *10)) (-5 *2 (-589 (-1083 *5))) (-5 *1 (-682 *9 *10 *11 *5)) (-5 *3 (-1083 *5)))) (-4064 (*1 *2 *3 *3) (-12 (-5 *3 (-589 (-2 (|:| -3573 (-1083 *6)) (|:| -3262 (-523))))) (-4 *6 (-284)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108)) (-5 *1 (-682 *4 *5 *6 *7)) (-4 *7 (-880 *6 *4 *5)))) (-1803 (*1 *2 *3 *4) (-12 (-5 *3 (-523)) (-5 *4 (-394 *2)) (-4 *2 (-880 *7 *5 *6)) (-5 *1 (-682 *5 *6 *7 *2)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-284)))) (-2700 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1083 *9)) (-5 *4 (-589 *7)) (-5 *5 (-589 (-589 *8))) (-4 *7 (-786)) (-4 *8 (-284)) (-4 *9 (-880 *8 *6 *7)) (-4 *6 (-732)) (-5 *2 (-2 (|:| |upol| (-1083 *8)) (|:| |Lval| (-589 *8)) (|:| |Lfact| (-589 (-2 (|:| -3573 (-1083 *8)) (|:| -3262 (-523))))) (|:| |ctpol| *8))) (-5 *1 (-682 *6 *7 *8 *9)))) (-2883 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-589 *7)) (-5 *5 (-589 (-589 *8))) (-4 *7 (-786)) (-4 *8 (-284)) (-4 *6 (-732)) (-4 *9 (-880 *8 *6 *7)) (-5 *2 (-2 (|:| |unitPart| *9) (|:| |suPart| (-589 (-2 (|:| -3573 (-1083 *9)) (|:| -3262 (-523))))))) (-5 *1 (-682 *6 *7 *8 *9)) (-5 *3 (-1083 *9)))) (-2943 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-523)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-284)) (-4 *9 (-880 *8 *6 *7)) (-5 *2 (-2 (|:| -3764 (-1083 *9)) (|:| |polval| (-1083 *8)))) (-5 *1 (-682 *6 *7 *8 *9)) (-5 *3 (-1083 *9)) (-5 *4 (-1083 *8)))) (-3089 (*1 *2 *3 *4) (-12 (-4 *5 (-732)) (-4 *4 (-786)) (-4 *6 (-284)) (-5 *2 (-394 *3)) (-5 *1 (-682 *5 *4 *6 *3)) (-4 *3 (-880 *6 *5 *4)))) (-2071 (*1 *2 *3) (-12 (-5 *3 (-589 (-2 (|:| -3573 (-1083 *6)) (|:| -3262 (-523))))) (-4 *6 (-284)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-523)) (-5 *1 (-682 *4 *5 *6 *7)) (-4 *7 (-880 *6 *4 *5)))) (-2729 (*1 *2 *3) (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-284)) (-5 *2 (-394 *3)) (-5 *1 (-682 *4 *5 *6 *3)) (-4 *3 (-880 *6 *4 *5)))) (-2105 (*1 *2 *3) (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-284)) (-4 *7 (-880 *6 *4 *5)) (-5 *2 (-394 (-1083 *7))) (-5 *1 (-682 *4 *5 *6 *7)) (-5 *3 (-1083 *7)))) (-2105 (*1 *2 *3) (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-284)) (-5 *2 (-394 *3)) (-5 *1 (-682 *4 *5 *6 *3)) (-4 *3 (-880 *6 *4 *5)))))
-(-10 -7 (-15 -2105 ((-394 |#4|) |#4|)) (-15 -2105 ((-394 (-1083 |#4|)) (-1083 |#4|))) (-15 -2729 ((-394 |#4|) |#4|)) (-15 -2071 ((-523) (-589 (-2 (|:| -3573 (-1083 |#3|)) (|:| -3262 (-523)))))) (-15 -3089 ((-394 |#4|) |#4| |#2|)) (-15 -2943 ((-2 (|:| -3764 (-1083 |#4|)) (|:| |polval| (-1083 |#3|))) (-1083 |#4|) (-1083 |#3|) (-523))) (-15 -2883 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-589 (-2 (|:| -3573 (-1083 |#4|)) (|:| -3262 (-523)))))) (-1083 |#4|) (-589 |#2|) (-589 (-589 |#3|)))) (-15 -2700 ((-2 (|:| |upol| (-1083 |#3|)) (|:| |Lval| (-589 |#3|)) (|:| |Lfact| (-589 (-2 (|:| -3573 (-1083 |#3|)) (|:| -3262 (-523))))) (|:| |ctpol| |#3|)) (-1083 |#4|) (-589 |#2|) (-589 (-589 |#3|)))) (-15 -1803 (|#4| (-523) (-394 |#4|))) (-15 -4064 ((-108) (-589 (-2 (|:| -3573 (-1083 |#3|)) (|:| -3262 (-523)))) (-589 (-2 (|:| -3573 (-1083 |#3|)) (|:| -3262 (-523)))))) (-15 -1816 ((-3 (-589 (-1083 |#4|)) "failed") (-1083 |#4|) (-1083 |#3|) (-1083 |#3|) |#4| (-589 |#2|) (-589 (-710)) (-589 |#3|))) (-15 -1617 ((-589 (-710)) (-1083 |#4|) (-589 |#2|) (-710))) (-15 -1233 ((-1083 |#3|) (-1083 |#3|) (-523))))
-((-1935 (($ $ (-852)) 12)))
-(((-683 |#1| |#2|) (-10 -8 (-15 -1935 (|#1| |#1| (-852)))) (-684 |#2|) (-158)) (T -683))
-NIL
-(-10 -8 (-15 -1935 (|#1| |#1| (-852))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-2966 (($ $ (-852)) 28)) (-1935 (($ $ (-852)) 33)) (-2165 (($ $ (-852)) 29)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2306 (($ $ $) 25)) (-3976 (((-794) $) 11)) (-3377 (($ $ $ $) 26)) (-1952 (($ $ $) 24)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 30)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
-(((-684 |#1|) (-129) (-158)) (T -684))
-((-1935 (*1 *1 *1 *2) (-12 (-5 *2 (-852)) (-4 *1 (-684 *3)) (-4 *3 (-158)))))
-(-13 (-701) (-657 |t#1|) (-10 -8 (-15 -1935 ($ $ (-852)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 |#1|) . T) ((-657 |#1|) . T) ((-660) . T) ((-701) . T) ((-979 |#1|) . T) ((-1016) . T))
-((-2539 (((-962) (-629 (-203)) (-523) (-108) (-523)) 25)) (-2663 (((-962) (-629 (-203)) (-523) (-108) (-523)) 24)))
-(((-685) (-10 -7 (-15 -2663 ((-962) (-629 (-203)) (-523) (-108) (-523))) (-15 -2539 ((-962) (-629 (-203)) (-523) (-108) (-523))))) (T -685))
-((-2539 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *5 (-108)) (-5 *2 (-962)) (-5 *1 (-685)))) (-2663 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *5 (-108)) (-5 *2 (-962)) (-5 *1 (-685)))))
-(-10 -7 (-15 -2663 ((-962) (-629 (-203)) (-523) (-108) (-523))) (-15 -2539 ((-962) (-629 (-203)) (-523) (-108) (-523))))
-((-1472 (((-962) (-523) (-523) (-523) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-72 FCN)))) 43)) (-2923 (((-962) (-523) (-523) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-79 FCN)))) 39)) (-1226 (((-962) (-203) (-203) (-203) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894)))) 32)))
-(((-686) (-10 -7 (-15 -1226 ((-962) (-203) (-203) (-203) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894))))) (-15 -2923 ((-962) (-523) (-523) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-79 FCN))))) (-15 -1472 ((-962) (-523) (-523) (-523) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-72 FCN))))))) (T -686))
-((-1472 (*1 *2 *3 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203)) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-72 FCN)))) (-5 *2 (-962)) (-5 *1 (-686)))) (-2923 (*1 *2 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203)) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-79 FCN)))) (-5 *2 (-962)) (-5 *1 (-686)))) (-1226 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894)))) (-5 *2 (-962)) (-5 *1 (-686)))))
-(-10 -7 (-15 -1226 ((-962) (-203) (-203) (-203) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894))))) (-15 -2923 ((-962) (-523) (-523) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-79 FCN))))) (-15 -1472 ((-962) (-523) (-523) (-523) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-72 FCN))))))
-((-3650 (((-962) (-523) (-523) (-629 (-203)) (-523)) 34)) (-3249 (((-962) (-523) (-523) (-629 (-203)) (-523)) 33)) (-3165 (((-962) (-523) (-629 (-203)) (-523)) 32)) (-1485 (((-962) (-523) (-629 (-203)) (-523)) 31)) (-1388 (((-962) (-523) (-523) (-1070) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523)) 30)) (-2482 (((-962) (-523) (-523) (-1070) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523)) 29)) (-4122 (((-962) (-523) (-523) (-1070) (-629 (-203)) (-629 (-203)) (-523)) 28)) (-1742 (((-962) (-523) (-523) (-1070) (-629 (-203)) (-629 (-203)) (-523)) 27)) (-2924 (((-962) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523)) 24)) (-2114 (((-962) (-523) (-629 (-203)) (-629 (-203)) (-523)) 23)) (-3281 (((-962) (-523) (-629 (-203)) (-523)) 22)) (-2540 (((-962) (-523) (-629 (-203)) (-523)) 21)))
-(((-687) (-10 -7 (-15 -2540 ((-962) (-523) (-629 (-203)) (-523))) (-15 -3281 ((-962) (-523) (-629 (-203)) (-523))) (-15 -2114 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2924 ((-962) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1742 ((-962) (-523) (-523) (-1070) (-629 (-203)) (-629 (-203)) (-523))) (-15 -4122 ((-962) (-523) (-523) (-1070) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2482 ((-962) (-523) (-523) (-1070) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1388 ((-962) (-523) (-523) (-1070) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1485 ((-962) (-523) (-629 (-203)) (-523))) (-15 -3165 ((-962) (-523) (-629 (-203)) (-523))) (-15 -3249 ((-962) (-523) (-523) (-629 (-203)) (-523))) (-15 -3650 ((-962) (-523) (-523) (-629 (-203)) (-523))))) (T -687))
-((-3650 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-687)))) (-3249 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-687)))) (-3165 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-687)))) (-1485 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-687)))) (-1388 (*1 *2 *3 *3 *4 *5 *5 *5 *5 *3) (-12 (-5 *3 (-523)) (-5 *4 (-1070)) (-5 *5 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-687)))) (-2482 (*1 *2 *3 *3 *4 *5 *5 *5 *3) (-12 (-5 *3 (-523)) (-5 *4 (-1070)) (-5 *5 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-687)))) (-4122 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-523)) (-5 *4 (-1070)) (-5 *5 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-687)))) (-1742 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-523)) (-5 *4 (-1070)) (-5 *5 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-687)))) (-2924 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-687)))) (-2114 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-687)))) (-3281 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-687)))) (-2540 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-687)))))
-(-10 -7 (-15 -2540 ((-962) (-523) (-629 (-203)) (-523))) (-15 -3281 ((-962) (-523) (-629 (-203)) (-523))) (-15 -2114 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2924 ((-962) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1742 ((-962) (-523) (-523) (-1070) (-629 (-203)) (-629 (-203)) (-523))) (-15 -4122 ((-962) (-523) (-523) (-1070) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2482 ((-962) (-523) (-523) (-1070) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1388 ((-962) (-523) (-523) (-1070) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1485 ((-962) (-523) (-629 (-203)) (-523))) (-15 -3165 ((-962) (-523) (-629 (-203)) (-523))) (-15 -3249 ((-962) (-523) (-523) (-629 (-203)) (-523))) (-15 -3650 ((-962) (-523) (-523) (-629 (-203)) (-523))))
-((-3259 (((-962) (-523) (-629 (-203)) (-629 (-203)) (-523) (-203) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-76 FUNCTN)))) 52)) (-2612 (((-962) (-629 (-203)) (-629 (-203)) (-523) (-523)) 51)) (-2583 (((-962) (-523) (-629 (-203)) (-629 (-203)) (-523) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-76 FUNCTN)))) 50)) (-3839 (((-962) (-203) (-203) (-523) (-523) (-523) (-523)) 46)) (-1981 (((-962) (-203) (-203) (-523) (-203) (-523) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G)))) 45)) (-1236 (((-962) (-203) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G)))) 44)) (-2725 (((-962) (-203) (-203) (-203) (-203) (-523) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G)))) 43)) (-2278 (((-962) (-203) (-203) (-203) (-523) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G)))) 42)) (-2835 (((-962) (-203) (-523) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894)))) 38)) (-1457 (((-962) (-203) (-203) (-523) (-629 (-203)) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894)))) 37)) (-1846 (((-962) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894)))) 33)) (-2212 (((-962) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894)))) 32)))
-(((-688) (-10 -7 (-15 -2212 ((-962) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894))))) (-15 -1846 ((-962) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894))))) (-15 -1457 ((-962) (-203) (-203) (-523) (-629 (-203)) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894))))) (-15 -2835 ((-962) (-203) (-523) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894))))) (-15 -2278 ((-962) (-203) (-203) (-203) (-523) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G))))) (-15 -2725 ((-962) (-203) (-203) (-203) (-203) (-523) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G))))) (-15 -1236 ((-962) (-203) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G))))) (-15 -1981 ((-962) (-203) (-203) (-523) (-203) (-523) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G))))) (-15 -3839 ((-962) (-203) (-203) (-523) (-523) (-523) (-523))) (-15 -2583 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-523) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-76 FUNCTN))))) (-15 -2612 ((-962) (-629 (-203)) (-629 (-203)) (-523) (-523))) (-15 -3259 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-523) (-203) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-76 FUNCTN))))))) (T -688))
-((-3259 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203)) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-76 FUNCTN)))) (-5 *2 (-962)) (-5 *1 (-688)))) (-2612 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-688)))) (-2583 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203)) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-76 FUNCTN)))) (-5 *2 (-962)) (-5 *1 (-688)))) (-3839 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-688)))) (-1981 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G)))) (-5 *2 (-962)) (-5 *1 (-688)))) (-1236 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G)))) (-5 *2 (-962)) (-5 *1 (-688)))) (-2725 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G)))) (-5 *2 (-962)) (-5 *1 (-688)))) (-2278 (*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G)))) (-5 *2 (-962)) (-5 *1 (-688)))) (-2835 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894)))) (-5 *2 (-962)) (-5 *1 (-688)))) (-1457 (*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6) (-12 (-5 *4 (-523)) (-5 *5 (-629 (-203))) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894)))) (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-688)))) (-1846 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894)))) (-5 *2 (-962)) (-5 *1 (-688)))) (-2212 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894)))) (-5 *2 (-962)) (-5 *1 (-688)))))
-(-10 -7 (-15 -2212 ((-962) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894))))) (-15 -1846 ((-962) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894))))) (-15 -1457 ((-962) (-203) (-203) (-523) (-629 (-203)) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894))))) (-15 -2835 ((-962) (-203) (-523) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894))))) (-15 -2278 ((-962) (-203) (-203) (-203) (-523) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G))))) (-15 -2725 ((-962) (-203) (-203) (-203) (-203) (-523) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G))))) (-15 -1236 ((-962) (-203) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G))))) (-15 -1981 ((-962) (-203) (-203) (-523) (-203) (-523) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G))))) (-15 -3839 ((-962) (-203) (-203) (-523) (-523) (-523) (-523))) (-15 -2583 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-523) (-203) (-523) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-76 FUNCTN))))) (-15 -2612 ((-962) (-629 (-203)) (-629 (-203)) (-523) (-523))) (-15 -3259 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-523) (-203) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-76 FUNCTN))))))
-((-1384 (((-962) (-523) (-523) (-523) (-523) (-203) (-523) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-73 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-364)) (|:| |fp| (-74 G JACOBG JACGEP)))) 76)) (-2776 (((-962) (-629 (-203)) (-523) (-523) (-203) (-523) (-523) (-203) (-203) (-629 (-203)) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-85 BDYVAL))) (-364) (-364)) 69) (((-962) (-629 (-203)) (-523) (-523) (-203) (-523) (-523) (-203) (-203) (-629 (-203)) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-85 BDYVAL)))) 68)) (-3273 (((-962) (-203) (-203) (-523) (-203) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-82 FCNF))) (-3 (|:| |fn| (-364)) (|:| |fp| (-83 FCNG)))) 57)) (-3622 (((-962) (-629 (-203)) (-629 (-203)) (-523) (-203) (-203) (-203) (-523) (-523) (-523) (-629 (-203)) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN)))) 50)) (-1201 (((-962) (-203) (-523) (-523) (-1070) (-523) (-203) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-69 PEDERV))) (-3 (|:| |fn| (-364)) (|:| |fp| (-86 OUTPUT)))) 49)) (-1480 (((-962) (-203) (-523) (-523) (-203) (-1070) (-203) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-86 OUTPUT)))) 45)) (-2221 (((-962) (-203) (-523) (-523) (-203) (-203) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN)))) 42)) (-3888 (((-962) (-203) (-523) (-523) (-523) (-203) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-86 OUTPUT)))) 38)))
-(((-689) (-10 -7 (-15 -3888 ((-962) (-203) (-523) (-523) (-523) (-203) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-86 OUTPUT))))) (-15 -2221 ((-962) (-203) (-523) (-523) (-203) (-203) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))))) (-15 -1480 ((-962) (-203) (-523) (-523) (-203) (-1070) (-203) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-86 OUTPUT))))) (-15 -1201 ((-962) (-203) (-523) (-523) (-1070) (-523) (-203) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-69 PEDERV))) (-3 (|:| |fn| (-364)) (|:| |fp| (-86 OUTPUT))))) (-15 -3622 ((-962) (-629 (-203)) (-629 (-203)) (-523) (-203) (-203) (-203) (-523) (-523) (-523) (-629 (-203)) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))))) (-15 -3273 ((-962) (-203) (-203) (-523) (-203) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-82 FCNF))) (-3 (|:| |fn| (-364)) (|:| |fp| (-83 FCNG))))) (-15 -2776 ((-962) (-629 (-203)) (-523) (-523) (-203) (-523) (-523) (-203) (-203) (-629 (-203)) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-85 BDYVAL))))) (-15 -2776 ((-962) (-629 (-203)) (-523) (-523) (-203) (-523) (-523) (-203) (-203) (-629 (-203)) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-85 BDYVAL))) (-364) (-364))) (-15 -1384 ((-962) (-523) (-523) (-523) (-523) (-203) (-523) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-73 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-364)) (|:| |fp| (-74 G JACOBG JACGEP))))))) (T -689))
-((-1384 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7) (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-73 FCN JACOBF JACEPS)))) (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-74 G JACOBG JACGEP)))) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-689)))) (-2776 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8) (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *5 (-203)) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-59 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-85 BDYVAL)))) (-5 *8 (-364)) (-5 *2 (-962)) (-5 *1 (-689)))) (-2776 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7) (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *5 (-203)) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-59 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-85 BDYVAL)))) (-5 *2 (-962)) (-5 *1 (-689)))) (-3273 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7) (-12 (-5 *4 (-523)) (-5 *5 (-629 (-203))) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-82 FCNF)))) (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-83 FCNG)))) (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-689)))) (-3622 (*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6) (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *5 (-203)) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN)))) (-5 *2 (-962)) (-5 *1 (-689)))) (-1201 (*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10) (-12 (-5 *4 (-523)) (-5 *5 (-1070)) (-5 *6 (-629 (-203))) (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-87 G)))) (-5 *8 (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN)))) (-5 *9 (-3 (|:| |fn| (-364)) (|:| |fp| (-69 PEDERV)))) (-5 *10 (-3 (|:| |fn| (-364)) (|:| |fp| (-86 OUTPUT)))) (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-689)))) (-1480 (*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9) (-12 (-5 *4 (-523)) (-5 *5 (-1070)) (-5 *6 (-629 (-203))) (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-87 G)))) (-5 *8 (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN)))) (-5 *9 (-3 (|:| |fn| (-364)) (|:| |fp| (-86 OUTPUT)))) (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-689)))) (-2221 (*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-523)) (-5 *5 (-629 (-203))) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-87 G)))) (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN)))) (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-689)))) (-3888 (*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-523)) (-5 *5 (-629 (-203))) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN)))) (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-86 OUTPUT)))) (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-689)))))
-(-10 -7 (-15 -3888 ((-962) (-203) (-523) (-523) (-523) (-203) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-86 OUTPUT))))) (-15 -2221 ((-962) (-203) (-523) (-523) (-203) (-203) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))))) (-15 -1480 ((-962) (-203) (-523) (-523) (-203) (-1070) (-203) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-86 OUTPUT))))) (-15 -1201 ((-962) (-203) (-523) (-523) (-1070) (-523) (-203) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-69 PEDERV))) (-3 (|:| |fn| (-364)) (|:| |fp| (-86 OUTPUT))))) (-15 -3622 ((-962) (-629 (-203)) (-629 (-203)) (-523) (-203) (-203) (-203) (-523) (-523) (-523) (-629 (-203)) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))))) (-15 -3273 ((-962) (-203) (-203) (-523) (-203) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-82 FCNF))) (-3 (|:| |fn| (-364)) (|:| |fp| (-83 FCNG))))) (-15 -2776 ((-962) (-629 (-203)) (-523) (-523) (-203) (-523) (-523) (-203) (-203) (-629 (-203)) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-85 BDYVAL))))) (-15 -2776 ((-962) (-629 (-203)) (-523) (-523) (-203) (-523) (-523) (-203) (-203) (-629 (-203)) (-523) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-85 BDYVAL))) (-364) (-364))) (-15 -1384 ((-962) (-523) (-523) (-523) (-523) (-203) (-523) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-73 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-364)) (|:| |fp| (-74 G JACOBG JACGEP))))))
-((-3970 (((-962) (-203) (-203) (-523) (-523) (-629 (-203)) (-629 (-203)) (-203) (-203) (-523) (-523) (-629 (-203)) (-629 (-203)) (-203) (-203) (-523) (-523) (-629 (-203)) (-629 (-203)) (-203) (-523) (-523) (-523) (-617 (-203)) (-523)) 45)) (-1667 (((-962) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-1070) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-80 PDEF))) (-3 (|:| |fn| (-364)) (|:| |fp| (-81 BNDY)))) 41)) (-2590 (((-962) (-523) (-523) (-523) (-523) (-203) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523)) 23)))
-(((-690) (-10 -7 (-15 -2590 ((-962) (-523) (-523) (-523) (-523) (-203) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1667 ((-962) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-1070) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-80 PDEF))) (-3 (|:| |fn| (-364)) (|:| |fp| (-81 BNDY))))) (-15 -3970 ((-962) (-203) (-203) (-523) (-523) (-629 (-203)) (-629 (-203)) (-203) (-203) (-523) (-523) (-629 (-203)) (-629 (-203)) (-203) (-203) (-523) (-523) (-629 (-203)) (-629 (-203)) (-203) (-523) (-523) (-523) (-617 (-203)) (-523))))) (T -690))
-((-3970 (*1 *2 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *4 *4 *4 *6 *4) (-12 (-5 *4 (-523)) (-5 *5 (-629 (-203))) (-5 *6 (-617 (-203))) (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-690)))) (-1667 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *5 (-1070)) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-80 PDEF)))) (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-81 BNDY)))) (-5 *2 (-962)) (-5 *1 (-690)))) (-2590 (*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3) (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-690)))))
-(-10 -7 (-15 -2590 ((-962) (-523) (-523) (-523) (-523) (-203) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1667 ((-962) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-1070) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-80 PDEF))) (-3 (|:| |fn| (-364)) (|:| |fp| (-81 BNDY))))) (-15 -3970 ((-962) (-203) (-203) (-523) (-523) (-629 (-203)) (-629 (-203)) (-203) (-203) (-523) (-523) (-629 (-203)) (-629 (-203)) (-203) (-203) (-523) (-523) (-629 (-203)) (-629 (-203)) (-203) (-523) (-523) (-523) (-617 (-203)) (-523))))
-((-2425 (((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-203) (-629 (-203)) (-203) (-203) (-523)) 35)) (-3767 (((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-523) (-203) (-203) (-523)) 34)) (-2362 (((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-523)) (-629 (-203)) (-203) (-203) (-523)) 33)) (-1381 (((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523)) 29)) (-2116 (((-962) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523)) 28)) (-2921 (((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-203) (-203) (-523)) 27)) (-2572 (((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-629 (-203)) (-523)) 24)) (-3313 (((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-629 (-203)) (-523)) 23)) (-1386 (((-962) (-523) (-629 (-203)) (-629 (-203)) (-523)) 22)) (-3037 (((-962) (-523) (-629 (-203)) (-629 (-203)) (-523) (-523) (-523)) 21)))
-(((-691) (-10 -7 (-15 -3037 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-523) (-523) (-523))) (-15 -1386 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -3313 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-629 (-203)) (-523))) (-15 -2572 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-629 (-203)) (-523))) (-15 -2921 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-203) (-203) (-523))) (-15 -2116 ((-962) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1381 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2362 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-523)) (-629 (-203)) (-203) (-203) (-523))) (-15 -3767 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-523) (-203) (-203) (-523))) (-15 -2425 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-203) (-629 (-203)) (-203) (-203) (-523))))) (T -691))
-((-2425 (*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203)) (-5 *2 (-962)) (-5 *1 (-691)))) (-3767 (*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203)) (-5 *2 (-962)) (-5 *1 (-691)))) (-2362 (*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3) (-12 (-5 *4 (-629 (-203))) (-5 *5 (-629 (-523))) (-5 *6 (-203)) (-5 *3 (-523)) (-5 *2 (-962)) (-5 *1 (-691)))) (-1381 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-691)))) (-2116 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-691)))) (-2921 (*1 *2 *3 *4 *4 *4 *5 *5 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203)) (-5 *2 (-962)) (-5 *1 (-691)))) (-2572 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-691)))) (-3313 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-691)))) (-1386 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-691)))) (-3037 (*1 *2 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-691)))))
-(-10 -7 (-15 -3037 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-523) (-523) (-523))) (-15 -1386 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -3313 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-629 (-203)) (-523))) (-15 -2572 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-629 (-203)) (-523))) (-15 -2921 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-203) (-203) (-523))) (-15 -2116 ((-962) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1381 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2362 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-523)) (-629 (-203)) (-203) (-203) (-523))) (-15 -3767 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-523) (-203) (-203) (-523))) (-15 -2425 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-203) (-629 (-203)) (-203) (-203) (-523))))
-((-3750 (((-962) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523) (-629 (-203)) (-629 (-203)) (-523) (-523) (-523)) 45)) (-3311 (((-962) (-523) (-523) (-523) (-203) (-629 (-203)) (-629 (-203)) (-523)) 44)) (-3023 (((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-523) (-523)) 43)) (-1474 (((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523)) 42)) (-2941 (((-962) (-1070) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-203) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-629 (-203)) (-629 (-203)) (-523)) 41)) (-3005 (((-962) (-1070) (-523) (-629 (-203)) (-523) (-629 (-203)) (-629 (-203)) (-203) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-629 (-203)) (-629 (-203)) (-629 (-523)) (-523)) 40)) (-3369 (((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-523)) (-523) (-523) (-523) (-203) (-629 (-203)) (-523)) 39)) (-2154 (((-962) (-1070) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-203) (-523) (-523) (-523) (-629 (-203)) (-523) (-629 (-203)) (-629 (-523))) 38)) (-3085 (((-962) (-523) (-629 (-203)) (-629 (-203)) (-523)) 35)) (-3873 (((-962) (-523) (-629 (-203)) (-629 (-203)) (-203) (-523) (-523)) 34)) (-1434 (((-962) (-523) (-629 (-203)) (-629 (-203)) (-203) (-523)) 33)) (-3181 (((-962) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523)) 32)) (-2158 (((-962) (-523) (-203) (-203) (-629 (-203)) (-523) (-523) (-203) (-523)) 31)) (-3451 (((-962) (-523) (-203) (-203) (-629 (-203)) (-523) (-523) (-203) (-523) (-523) (-523)) 30)) (-1678 (((-962) (-523) (-203) (-203) (-629 (-203)) (-523) (-523) (-523) (-523) (-523)) 29)) (-1834 (((-962) (-523) (-523) (-523) (-203) (-203) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-629 (-203)) (-629 (-203)) (-523) (-629 (-523)) (-523) (-523) (-523)) 28)) (-1785 (((-962) (-523) (-629 (-203)) (-203) (-523)) 24)) (-3813 (((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523)) 21)))
-(((-692) (-10 -7 (-15 -3813 ((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1785 ((-962) (-523) (-629 (-203)) (-203) (-523))) (-15 -1834 ((-962) (-523) (-523) (-523) (-203) (-203) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-629 (-203)) (-629 (-203)) (-523) (-629 (-523)) (-523) (-523) (-523))) (-15 -1678 ((-962) (-523) (-203) (-203) (-629 (-203)) (-523) (-523) (-523) (-523) (-523))) (-15 -3451 ((-962) (-523) (-203) (-203) (-629 (-203)) (-523) (-523) (-203) (-523) (-523) (-523))) (-15 -2158 ((-962) (-523) (-203) (-203) (-629 (-203)) (-523) (-523) (-203) (-523))) (-15 -3181 ((-962) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1434 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-203) (-523))) (-15 -3873 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-203) (-523) (-523))) (-15 -3085 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2154 ((-962) (-1070) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-203) (-523) (-523) (-523) (-629 (-203)) (-523) (-629 (-203)) (-629 (-523)))) (-15 -3369 ((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-523)) (-523) (-523) (-523) (-203) (-629 (-203)) (-523))) (-15 -3005 ((-962) (-1070) (-523) (-629 (-203)) (-523) (-629 (-203)) (-629 (-203)) (-203) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-629 (-203)) (-629 (-203)) (-629 (-523)) (-523))) (-15 -2941 ((-962) (-1070) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-203) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1474 ((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -3023 ((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-523) (-523))) (-15 -3311 ((-962) (-523) (-523) (-523) (-203) (-629 (-203)) (-629 (-203)) (-523))) (-15 -3750 ((-962) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523) (-629 (-203)) (-629 (-203)) (-523) (-523) (-523))))) (T -692))
-((-3750 (*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-692)))) (-3311 (*1 *2 *3 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-692)))) (-3023 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-692)))) (-1474 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-692)))) (-2941 (*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4) (-12 (-5 *3 (-1070)) (-5 *4 (-523)) (-5 *5 (-629 (-203))) (-5 *6 (-203)) (-5 *2 (-962)) (-5 *1 (-692)))) (-3005 (*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4) (-12 (-5 *3 (-1070)) (-5 *5 (-629 (-203))) (-5 *6 (-203)) (-5 *7 (-629 (-523))) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-692)))) (-3369 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3) (-12 (-5 *4 (-629 (-203))) (-5 *5 (-629 (-523))) (-5 *6 (-203)) (-5 *3 (-523)) (-5 *2 (-962)) (-5 *1 (-692)))) (-2154 (*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7) (-12 (-5 *3 (-1070)) (-5 *5 (-629 (-203))) (-5 *6 (-203)) (-5 *7 (-629 (-523))) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-692)))) (-3085 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-692)))) (-3873 (*1 *2 *3 *4 *4 *5 *3 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203)) (-5 *2 (-962)) (-5 *1 (-692)))) (-1434 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203)) (-5 *2 (-962)) (-5 *1 (-692)))) (-3181 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-692)))) (-2158 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-692)))) (-3451 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3) (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-692)))) (-1678 (*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3) (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-692)))) (-1834 (*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3) (-12 (-5 *5 (-629 (-203))) (-5 *6 (-629 (-523))) (-5 *3 (-523)) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-692)))) (-1785 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203)) (-5 *2 (-962)) (-5 *1 (-692)))) (-3813 (*1 *2 *3 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-692)))))
-(-10 -7 (-15 -3813 ((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1785 ((-962) (-523) (-629 (-203)) (-203) (-523))) (-15 -1834 ((-962) (-523) (-523) (-523) (-203) (-203) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-629 (-203)) (-629 (-203)) (-523) (-629 (-523)) (-523) (-523) (-523))) (-15 -1678 ((-962) (-523) (-203) (-203) (-629 (-203)) (-523) (-523) (-523) (-523) (-523))) (-15 -3451 ((-962) (-523) (-203) (-203) (-629 (-203)) (-523) (-523) (-203) (-523) (-523) (-523))) (-15 -2158 ((-962) (-523) (-203) (-203) (-629 (-203)) (-523) (-523) (-203) (-523))) (-15 -3181 ((-962) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1434 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-203) (-523))) (-15 -3873 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-203) (-523) (-523))) (-15 -3085 ((-962) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2154 ((-962) (-1070) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-203) (-523) (-523) (-523) (-629 (-203)) (-523) (-629 (-203)) (-629 (-523)))) (-15 -3369 ((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-523)) (-523) (-523) (-523) (-203) (-629 (-203)) (-523))) (-15 -3005 ((-962) (-1070) (-523) (-629 (-203)) (-523) (-629 (-203)) (-629 (-203)) (-203) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-629 (-203)) (-629 (-203)) (-629 (-523)) (-523))) (-15 -2941 ((-962) (-1070) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-203) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1474 ((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -3023 ((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-523) (-523))) (-15 -3311 ((-962) (-523) (-523) (-523) (-203) (-629 (-203)) (-629 (-203)) (-523))) (-15 -3750 ((-962) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523) (-629 (-203)) (-629 (-203)) (-523) (-523) (-523))))
-((-4081 (((-962) (-523) (-523) (-523) (-203) (-629 (-203)) (-523) (-629 (-203)) (-523)) 63)) (-3955 (((-962) (-523) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-523) (-108) (-203) (-523) (-203) (-203) (-108) (-203) (-203) (-203) (-203) (-108) (-523) (-523) (-523) (-523) (-523) (-203) (-203) (-203) (-523) (-523) (-523) (-523) (-523) (-629 (-523)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-78 CONFUN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-75 OBJFUN)))) 62)) (-3149 (((-962) (-523) (-523) (-523) (-523) (-523) (-523) (-523) (-523) (-203) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-108) (-108) (-108) (-523) (-523) (-629 (-203)) (-629 (-523)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-63 QPHESS)))) 58)) (-2072 (((-962) (-523) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-108) (-523) (-523) (-629 (-203)) (-523)) 51)) (-3118 (((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-64 FUNCT1)))) 50)) (-1854 (((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-61 LSFUN2)))) 46)) (-1874 (((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-77 LSFUN1)))) 42)) (-2551 (((-962) (-523) (-203) (-203) (-523) (-203) (-108) (-203) (-203) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-75 OBJFUN)))) 38)))
-(((-693) (-10 -7 (-15 -2551 ((-962) (-523) (-203) (-203) (-523) (-203) (-108) (-203) (-203) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-75 OBJFUN))))) (-15 -1874 ((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-77 LSFUN1))))) (-15 -1854 ((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-61 LSFUN2))))) (-15 -3118 ((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-64 FUNCT1))))) (-15 -2072 ((-962) (-523) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-108) (-523) (-523) (-629 (-203)) (-523))) (-15 -3149 ((-962) (-523) (-523) (-523) (-523) (-523) (-523) (-523) (-523) (-203) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-108) (-108) (-108) (-523) (-523) (-629 (-203)) (-629 (-523)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-63 QPHESS))))) (-15 -3955 ((-962) (-523) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-523) (-108) (-203) (-523) (-203) (-203) (-108) (-203) (-203) (-203) (-203) (-108) (-523) (-523) (-523) (-523) (-523) (-203) (-203) (-203) (-523) (-523) (-523) (-523) (-523) (-629 (-523)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-78 CONFUN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-75 OBJFUN))))) (-15 -4081 ((-962) (-523) (-523) (-523) (-203) (-629 (-203)) (-523) (-629 (-203)) (-523))))) (T -693))
-((-4081 (*1 *2 *3 *3 *3 *4 *5 *3 *5 *3) (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-693)))) (-3955 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *3 *3 *5 *6 *3 *6 *6 *5 *6 *6 *6 *6 *5 *3 *3 *3 *3 *3 *6 *6 *6 *3 *3 *3 *3 *3 *7 *4 *4 *4 *4 *3 *8 *9) (-12 (-5 *4 (-629 (-203))) (-5 *5 (-108)) (-5 *6 (-203)) (-5 *7 (-629 (-523))) (-5 *8 (-3 (|:| |fn| (-364)) (|:| |fp| (-78 CONFUN)))) (-5 *9 (-3 (|:| |fn| (-364)) (|:| |fp| (-75 OBJFUN)))) (-5 *3 (-523)) (-5 *2 (-962)) (-5 *1 (-693)))) (-3149 (*1 *2 *3 *3 *3 *3 *3 *3 *3 *3 *4 *5 *5 *5 *5 *5 *5 *6 *6 *6 *3 *3 *5 *7 *3 *8) (-12 (-5 *5 (-629 (-203))) (-5 *6 (-108)) (-5 *7 (-629 (-523))) (-5 *8 (-3 (|:| |fn| (-364)) (|:| |fp| (-63 QPHESS)))) (-5 *3 (-523)) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-693)))) (-2072 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-108)) (-5 *2 (-962)) (-5 *1 (-693)))) (-3118 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-64 FUNCT1)))) (-5 *2 (-962)) (-5 *1 (-693)))) (-1854 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-61 LSFUN2)))) (-5 *2 (-962)) (-5 *1 (-693)))) (-1874 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-77 LSFUN1)))) (-5 *2 (-962)) (-5 *1 (-693)))) (-2551 (*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7) (-12 (-5 *3 (-523)) (-5 *5 (-108)) (-5 *6 (-629 (-203))) (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-75 OBJFUN)))) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-693)))))
-(-10 -7 (-15 -2551 ((-962) (-523) (-203) (-203) (-523) (-203) (-108) (-203) (-203) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-75 OBJFUN))))) (-15 -1874 ((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-77 LSFUN1))))) (-15 -1854 ((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-61 LSFUN2))))) (-15 -3118 ((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-64 FUNCT1))))) (-15 -2072 ((-962) (-523) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-108) (-523) (-523) (-629 (-203)) (-523))) (-15 -3149 ((-962) (-523) (-523) (-523) (-523) (-523) (-523) (-523) (-523) (-203) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-108) (-108) (-108) (-523) (-523) (-629 (-203)) (-629 (-523)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-63 QPHESS))))) (-15 -3955 ((-962) (-523) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-523) (-108) (-203) (-523) (-203) (-203) (-108) (-203) (-203) (-203) (-203) (-108) (-523) (-523) (-523) (-523) (-523) (-203) (-203) (-203) (-523) (-523) (-523) (-523) (-523) (-629 (-523)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-78 CONFUN))) (-3 (|:| |fn| (-364)) (|:| |fp| (-75 OBJFUN))))) (-15 -4081 ((-962) (-523) (-523) (-523) (-203) (-629 (-203)) (-523) (-629 (-203)) (-523))))
-((-2338 (((-962) (-1070) (-523) (-523) (-523) (-523) (-629 (-155 (-203))) (-629 (-155 (-203))) (-523)) 47)) (-3623 (((-962) (-1070) (-1070) (-523) (-523) (-629 (-155 (-203))) (-523) (-629 (-155 (-203))) (-523) (-523) (-629 (-155 (-203))) (-523)) 46)) (-4186 (((-962) (-523) (-523) (-523) (-629 (-155 (-203))) (-523)) 45)) (-2494 (((-962) (-1070) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523)) 40)) (-3816 (((-962) (-1070) (-1070) (-523) (-523) (-629 (-203)) (-523) (-629 (-203)) (-523) (-523) (-629 (-203)) (-523)) 39)) (-3881 (((-962) (-523) (-523) (-523) (-629 (-203)) (-523)) 36)) (-2357 (((-962) (-523) (-629 (-203)) (-523) (-629 (-523)) (-523)) 35)) (-4029 (((-962) (-523) (-523) (-523) (-523) (-589 (-108)) (-629 (-203)) (-629 (-523)) (-629 (-523)) (-203) (-203) (-523)) 34)) (-3692 (((-962) (-523) (-523) (-523) (-629 (-523)) (-629 (-523)) (-629 (-523)) (-629 (-523)) (-108) (-203) (-108) (-629 (-523)) (-629 (-203)) (-523)) 33)) (-1433 (((-962) (-523) (-523) (-523) (-523) (-203) (-108) (-108) (-589 (-108)) (-629 (-203)) (-629 (-523)) (-629 (-523)) (-523)) 32)))
-(((-694) (-10 -7 (-15 -1433 ((-962) (-523) (-523) (-523) (-523) (-203) (-108) (-108) (-589 (-108)) (-629 (-203)) (-629 (-523)) (-629 (-523)) (-523))) (-15 -3692 ((-962) (-523) (-523) (-523) (-629 (-523)) (-629 (-523)) (-629 (-523)) (-629 (-523)) (-108) (-203) (-108) (-629 (-523)) (-629 (-203)) (-523))) (-15 -4029 ((-962) (-523) (-523) (-523) (-523) (-589 (-108)) (-629 (-203)) (-629 (-523)) (-629 (-523)) (-203) (-203) (-523))) (-15 -2357 ((-962) (-523) (-629 (-203)) (-523) (-629 (-523)) (-523))) (-15 -3881 ((-962) (-523) (-523) (-523) (-629 (-203)) (-523))) (-15 -3816 ((-962) (-1070) (-1070) (-523) (-523) (-629 (-203)) (-523) (-629 (-203)) (-523) (-523) (-629 (-203)) (-523))) (-15 -2494 ((-962) (-1070) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -4186 ((-962) (-523) (-523) (-523) (-629 (-155 (-203))) (-523))) (-15 -3623 ((-962) (-1070) (-1070) (-523) (-523) (-629 (-155 (-203))) (-523) (-629 (-155 (-203))) (-523) (-523) (-629 (-155 (-203))) (-523))) (-15 -2338 ((-962) (-1070) (-523) (-523) (-523) (-523) (-629 (-155 (-203))) (-629 (-155 (-203))) (-523))))) (T -694))
-((-2338 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1070)) (-5 *4 (-523)) (-5 *5 (-629 (-155 (-203)))) (-5 *2 (-962)) (-5 *1 (-694)))) (-3623 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1070)) (-5 *4 (-523)) (-5 *5 (-629 (-155 (-203)))) (-5 *2 (-962)) (-5 *1 (-694)))) (-4186 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-155 (-203)))) (-5 *2 (-962)) (-5 *1 (-694)))) (-2494 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1070)) (-5 *4 (-523)) (-5 *5 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-694)))) (-3816 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1070)) (-5 *4 (-523)) (-5 *5 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-694)))) (-3881 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-694)))) (-2357 (*1 *2 *3 *4 *3 *5 *3) (-12 (-5 *4 (-629 (-203))) (-5 *5 (-629 (-523))) (-5 *3 (-523)) (-5 *2 (-962)) (-5 *1 (-694)))) (-4029 (*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3) (-12 (-5 *4 (-589 (-108))) (-5 *5 (-629 (-203))) (-5 *6 (-629 (-523))) (-5 *7 (-203)) (-5 *3 (-523)) (-5 *2 (-962)) (-5 *1 (-694)))) (-3692 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3) (-12 (-5 *4 (-629 (-523))) (-5 *5 (-108)) (-5 *7 (-629 (-203))) (-5 *3 (-523)) (-5 *6 (-203)) (-5 *2 (-962)) (-5 *1 (-694)))) (-1433 (*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3) (-12 (-5 *6 (-589 (-108))) (-5 *7 (-629 (-203))) (-5 *8 (-629 (-523))) (-5 *3 (-523)) (-5 *4 (-203)) (-5 *5 (-108)) (-5 *2 (-962)) (-5 *1 (-694)))))
-(-10 -7 (-15 -1433 ((-962) (-523) (-523) (-523) (-523) (-203) (-108) (-108) (-589 (-108)) (-629 (-203)) (-629 (-523)) (-629 (-523)) (-523))) (-15 -3692 ((-962) (-523) (-523) (-523) (-629 (-523)) (-629 (-523)) (-629 (-523)) (-629 (-523)) (-108) (-203) (-108) (-629 (-523)) (-629 (-203)) (-523))) (-15 -4029 ((-962) (-523) (-523) (-523) (-523) (-589 (-108)) (-629 (-203)) (-629 (-523)) (-629 (-523)) (-203) (-203) (-523))) (-15 -2357 ((-962) (-523) (-629 (-203)) (-523) (-629 (-523)) (-523))) (-15 -3881 ((-962) (-523) (-523) (-523) (-629 (-203)) (-523))) (-15 -3816 ((-962) (-1070) (-1070) (-523) (-523) (-629 (-203)) (-523) (-629 (-203)) (-523) (-523) (-629 (-203)) (-523))) (-15 -2494 ((-962) (-1070) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -4186 ((-962) (-523) (-523) (-523) (-629 (-155 (-203))) (-523))) (-15 -3623 ((-962) (-1070) (-1070) (-523) (-523) (-629 (-155 (-203))) (-523) (-629 (-155 (-203))) (-523) (-523) (-629 (-155 (-203))) (-523))) (-15 -2338 ((-962) (-1070) (-523) (-523) (-523) (-523) (-629 (-155 (-203))) (-629 (-155 (-203))) (-523))))
-((-2272 (((-962) (-523) (-523) (-523) (-523) (-523) (-108) (-523) (-108) (-523) (-629 (-155 (-203))) (-629 (-155 (-203))) (-523)) 65)) (-2013 (((-962) (-523) (-523) (-523) (-523) (-523) (-108) (-523) (-108) (-523) (-629 (-203)) (-629 (-203)) (-523)) 60)) (-2064 (((-962) (-523) (-523) (-203) (-523) (-523) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-364)) (|:| |fp| (-66 IMAGE))) (-364)) 56) (((-962) (-523) (-523) (-203) (-523) (-523) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-364)) (|:| |fp| (-66 IMAGE)))) 55)) (-2817 (((-962) (-523) (-523) (-523) (-203) (-108) (-523) (-629 (-203)) (-629 (-203)) (-523)) 37)) (-2109 (((-962) (-523) (-523) (-203) (-203) (-523) (-523) (-629 (-203)) (-523)) 33)) (-3521 (((-962) (-629 (-203)) (-523) (-629 (-203)) (-523) (-523) (-523) (-523) (-523)) 30)) (-3166 (((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523)) 29)) (-2207 (((-962) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523)) 28)) (-1603 (((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523)) 27)) (-1920 (((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-523)) 26)) (-1602 (((-962) (-523) (-523) (-629 (-203)) (-523)) 25)) (-2614 (((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523)) 24)) (-1594 (((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523)) 23)) (-1577 (((-962) (-629 (-203)) (-523) (-523) (-523) (-523)) 22)) (-2049 (((-962) (-523) (-523) (-629 (-203)) (-523)) 21)))
-(((-695) (-10 -7 (-15 -2049 ((-962) (-523) (-523) (-629 (-203)) (-523))) (-15 -1577 ((-962) (-629 (-203)) (-523) (-523) (-523) (-523))) (-15 -1594 ((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2614 ((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1602 ((-962) (-523) (-523) (-629 (-203)) (-523))) (-15 -1920 ((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-523))) (-15 -1603 ((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2207 ((-962) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -3166 ((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -3521 ((-962) (-629 (-203)) (-523) (-629 (-203)) (-523) (-523) (-523) (-523) (-523))) (-15 -2109 ((-962) (-523) (-523) (-203) (-203) (-523) (-523) (-629 (-203)) (-523))) (-15 -2817 ((-962) (-523) (-523) (-523) (-203) (-108) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2064 ((-962) (-523) (-523) (-203) (-523) (-523) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-364)) (|:| |fp| (-66 IMAGE))))) (-15 -2064 ((-962) (-523) (-523) (-203) (-523) (-523) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-364)) (|:| |fp| (-66 IMAGE))) (-364))) (-15 -2013 ((-962) (-523) (-523) (-523) (-523) (-523) (-108) (-523) (-108) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2272 ((-962) (-523) (-523) (-523) (-523) (-523) (-108) (-523) (-108) (-523) (-629 (-155 (-203))) (-629 (-155 (-203))) (-523))))) (T -695))
-((-2272 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-523)) (-5 *4 (-108)) (-5 *5 (-629 (-155 (-203)))) (-5 *2 (-962)) (-5 *1 (-695)))) (-2013 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-523)) (-5 *4 (-108)) (-5 *5 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-695)))) (-2064 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8) (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-65 DOT)))) (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-66 IMAGE)))) (-5 *8 (-364)) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-695)))) (-2064 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7) (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-65 DOT)))) (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-66 IMAGE)))) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-695)))) (-2817 (*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3) (-12 (-5 *3 (-523)) (-5 *5 (-108)) (-5 *6 (-629 (-203))) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-695)))) (-2109 (*1 *2 *3 *3 *4 *4 *3 *3 *5 *3) (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-695)))) (-3521 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-695)))) (-3166 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-695)))) (-2207 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-695)))) (-1603 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-695)))) (-1920 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-695)))) (-1602 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-695)))) (-2614 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-695)))) (-1594 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-695)))) (-1577 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-695)))) (-2049 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-695)))))
-(-10 -7 (-15 -2049 ((-962) (-523) (-523) (-629 (-203)) (-523))) (-15 -1577 ((-962) (-629 (-203)) (-523) (-523) (-523) (-523))) (-15 -1594 ((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2614 ((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -1602 ((-962) (-523) (-523) (-629 (-203)) (-523))) (-15 -1920 ((-962) (-523) (-523) (-523) (-523) (-629 (-203)) (-523))) (-15 -1603 ((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2207 ((-962) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -3166 ((-962) (-523) (-523) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -3521 ((-962) (-629 (-203)) (-523) (-629 (-203)) (-523) (-523) (-523) (-523) (-523))) (-15 -2109 ((-962) (-523) (-523) (-203) (-203) (-523) (-523) (-629 (-203)) (-523))) (-15 -2817 ((-962) (-523) (-523) (-523) (-203) (-108) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2064 ((-962) (-523) (-523) (-203) (-523) (-523) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-364)) (|:| |fp| (-66 IMAGE))))) (-15 -2064 ((-962) (-523) (-523) (-203) (-523) (-523) (-523) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-364)) (|:| |fp| (-66 IMAGE))) (-364))) (-15 -2013 ((-962) (-523) (-523) (-523) (-523) (-523) (-108) (-523) (-108) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -2272 ((-962) (-523) (-523) (-523) (-523) (-523) (-108) (-523) (-108) (-523) (-629 (-155 (-203))) (-629 (-155 (-203))) (-523))))
-((-1944 (((-962) (-523) (-523) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-68 APROD)))) 61)) (-2857 (((-962) (-523) (-629 (-203)) (-523) (-629 (-203)) (-629 (-523)) (-523) (-629 (-203)) (-523) (-523) (-523) (-523)) 57)) (-3686 (((-962) (-523) (-629 (-203)) (-108) (-203) (-523) (-523) (-523) (-523) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-66 APROD))) (-3 (|:| |fn| (-364)) (|:| |fp| (-71 MSOLVE)))) 56)) (-3182 (((-962) (-523) (-523) (-629 (-203)) (-523) (-629 (-523)) (-523) (-629 (-523)) (-629 (-203)) (-629 (-523)) (-629 (-523)) (-629 (-203)) (-629 (-203)) (-629 (-523)) (-523)) 37)) (-3857 (((-962) (-523) (-523) (-523) (-203) (-523) (-629 (-203)) (-629 (-203)) (-523)) 36)) (-2194 (((-962) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523)) 33)) (-3463 (((-962) (-523) (-629 (-203)) (-523) (-629 (-523)) (-629 (-523)) (-523) (-629 (-523)) (-629 (-203))) 32)) (-1238 (((-962) (-629 (-203)) (-523) (-629 (-203)) (-523) (-523) (-523)) 28)) (-1300 (((-962) (-523) (-629 (-203)) (-523) (-629 (-203)) (-523)) 27)) (-3930 (((-962) (-523) (-629 (-203)) (-523) (-629 (-203)) (-523)) 26)) (-1334 (((-962) (-523) (-629 (-155 (-203))) (-523) (-523) (-523) (-523) (-629 (-155 (-203))) (-523)) 22)))
-(((-696) (-10 -7 (-15 -1334 ((-962) (-523) (-629 (-155 (-203))) (-523) (-523) (-523) (-523) (-629 (-155 (-203))) (-523))) (-15 -3930 ((-962) (-523) (-629 (-203)) (-523) (-629 (-203)) (-523))) (-15 -1300 ((-962) (-523) (-629 (-203)) (-523) (-629 (-203)) (-523))) (-15 -1238 ((-962) (-629 (-203)) (-523) (-629 (-203)) (-523) (-523) (-523))) (-15 -3463 ((-962) (-523) (-629 (-203)) (-523) (-629 (-523)) (-629 (-523)) (-523) (-629 (-523)) (-629 (-203)))) (-15 -2194 ((-962) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -3857 ((-962) (-523) (-523) (-523) (-203) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -3182 ((-962) (-523) (-523) (-629 (-203)) (-523) (-629 (-523)) (-523) (-629 (-523)) (-629 (-203)) (-629 (-523)) (-629 (-523)) (-629 (-203)) (-629 (-203)) (-629 (-523)) (-523))) (-15 -3686 ((-962) (-523) (-629 (-203)) (-108) (-203) (-523) (-523) (-523) (-523) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-66 APROD))) (-3 (|:| |fn| (-364)) (|:| |fp| (-71 MSOLVE))))) (-15 -2857 ((-962) (-523) (-629 (-203)) (-523) (-629 (-203)) (-629 (-523)) (-523) (-629 (-203)) (-523) (-523) (-523) (-523))) (-15 -1944 ((-962) (-523) (-523) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-68 APROD))))))) (T -696))
-((-1944 (*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6) (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-68 APROD)))) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-696)))) (-2857 (*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3) (-12 (-5 *4 (-629 (-203))) (-5 *5 (-629 (-523))) (-5 *3 (-523)) (-5 *2 (-962)) (-5 *1 (-696)))) (-3686 (*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-108)) (-5 *6 (-203)) (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-66 APROD)))) (-5 *8 (-3 (|:| |fn| (-364)) (|:| |fp| (-71 MSOLVE)))) (-5 *2 (-962)) (-5 *1 (-696)))) (-3182 (*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3) (-12 (-5 *4 (-629 (-203))) (-5 *5 (-629 (-523))) (-5 *3 (-523)) (-5 *2 (-962)) (-5 *1 (-696)))) (-3857 (*1 *2 *3 *3 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-696)))) (-2194 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-696)))) (-3463 (*1 *2 *3 *4 *3 *5 *5 *3 *5 *4) (-12 (-5 *4 (-629 (-203))) (-5 *5 (-629 (-523))) (-5 *3 (-523)) (-5 *2 (-962)) (-5 *1 (-696)))) (-1238 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-696)))) (-1300 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-696)))) (-3930 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-696)))) (-1334 (*1 *2 *3 *4 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-155 (-203)))) (-5 *2 (-962)) (-5 *1 (-696)))))
-(-10 -7 (-15 -1334 ((-962) (-523) (-629 (-155 (-203))) (-523) (-523) (-523) (-523) (-629 (-155 (-203))) (-523))) (-15 -3930 ((-962) (-523) (-629 (-203)) (-523) (-629 (-203)) (-523))) (-15 -1300 ((-962) (-523) (-629 (-203)) (-523) (-629 (-203)) (-523))) (-15 -1238 ((-962) (-629 (-203)) (-523) (-629 (-203)) (-523) (-523) (-523))) (-15 -3463 ((-962) (-523) (-629 (-203)) (-523) (-629 (-523)) (-629 (-523)) (-523) (-629 (-523)) (-629 (-203)))) (-15 -2194 ((-962) (-523) (-523) (-629 (-203)) (-629 (-203)) (-629 (-203)) (-523))) (-15 -3857 ((-962) (-523) (-523) (-523) (-203) (-523) (-629 (-203)) (-629 (-203)) (-523))) (-15 -3182 ((-962) (-523) (-523) (-629 (-203)) (-523) (-629 (-523)) (-523) (-629 (-523)) (-629 (-203)) (-629 (-523)) (-629 (-523)) (-629 (-203)) (-629 (-203)) (-629 (-523)) (-523))) (-15 -3686 ((-962) (-523) (-629 (-203)) (-108) (-203) (-523) (-523) (-523) (-523) (-203) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-66 APROD))) (-3 (|:| |fn| (-364)) (|:| |fp| (-71 MSOLVE))))) (-15 -2857 ((-962) (-523) (-629 (-203)) (-523) (-629 (-203)) (-629 (-523)) (-523) (-629 (-203)) (-523) (-523) (-523) (-523))) (-15 -1944 ((-962) (-523) (-523) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-523) (-629 (-203)) (-523) (-3 (|:| |fn| (-364)) (|:| |fp| (-68 APROD))))))
-((-1575 (((-962) (-1070) (-523) (-523) (-629 (-203)) (-523) (-523) (-629 (-203))) 29)) (-3630 (((-962) (-1070) (-523) (-523) (-629 (-203))) 28)) (-2998 (((-962) (-1070) (-523) (-523) (-629 (-203)) (-523) (-629 (-523)) (-523) (-629 (-203))) 27)) (-3317 (((-962) (-523) (-523) (-523) (-629 (-203))) 21)))
-(((-697) (-10 -7 (-15 -3317 ((-962) (-523) (-523) (-523) (-629 (-203)))) (-15 -2998 ((-962) (-1070) (-523) (-523) (-629 (-203)) (-523) (-629 (-523)) (-523) (-629 (-203)))) (-15 -3630 ((-962) (-1070) (-523) (-523) (-629 (-203)))) (-15 -1575 ((-962) (-1070) (-523) (-523) (-629 (-203)) (-523) (-523) (-629 (-203)))))) (T -697))
-((-1575 (*1 *2 *3 *4 *4 *5 *4 *4 *5) (-12 (-5 *3 (-1070)) (-5 *4 (-523)) (-5 *5 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-697)))) (-3630 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1070)) (-5 *4 (-523)) (-5 *5 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-697)))) (-2998 (*1 *2 *3 *4 *4 *5 *4 *6 *4 *5) (-12 (-5 *3 (-1070)) (-5 *5 (-629 (-203))) (-5 *6 (-629 (-523))) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-697)))) (-3317 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962)) (-5 *1 (-697)))))
-(-10 -7 (-15 -3317 ((-962) (-523) (-523) (-523) (-629 (-203)))) (-15 -2998 ((-962) (-1070) (-523) (-523) (-629 (-203)) (-523) (-629 (-523)) (-523) (-629 (-203)))) (-15 -3630 ((-962) (-1070) (-523) (-523) (-629 (-203)))) (-15 -1575 ((-962) (-1070) (-523) (-523) (-629 (-203)) (-523) (-523) (-629 (-203)))))
-((-1405 (((-962) (-203) (-203) (-203) (-203) (-523)) 62)) (-1881 (((-962) (-203) (-203) (-203) (-523)) 61)) (-1822 (((-962) (-203) (-203) (-203) (-523)) 60)) (-4167 (((-962) (-203) (-203) (-523)) 59)) (-3430 (((-962) (-203) (-523)) 58)) (-1712 (((-962) (-203) (-523)) 57)) (-1848 (((-962) (-203) (-523)) 56)) (-1735 (((-962) (-203) (-523)) 55)) (-2787 (((-962) (-203) (-523)) 54)) (-2740 (((-962) (-203) (-523)) 53)) (-1351 (((-962) (-203) (-155 (-203)) (-523) (-1070) (-523)) 52)) (-1941 (((-962) (-203) (-155 (-203)) (-523) (-1070) (-523)) 51)) (-2568 (((-962) (-203) (-523)) 50)) (-3690 (((-962) (-203) (-523)) 49)) (-3351 (((-962) (-203) (-523)) 48)) (-3914 (((-962) (-203) (-523)) 47)) (-1757 (((-962) (-523) (-203) (-155 (-203)) (-523) (-1070) (-523)) 46)) (-3185 (((-962) (-1070) (-155 (-203)) (-1070) (-523)) 45)) (-3945 (((-962) (-1070) (-155 (-203)) (-1070) (-523)) 44)) (-2709 (((-962) (-203) (-155 (-203)) (-523) (-1070) (-523)) 43)) (-3285 (((-962) (-203) (-155 (-203)) (-523) (-1070) (-523)) 42)) (-3551 (((-962) (-203) (-523)) 39)) (-3315 (((-962) (-203) (-523)) 38)) (-1243 (((-962) (-203) (-523)) 37)) (-2552 (((-962) (-203) (-523)) 36)) (-1951 (((-962) (-203) (-523)) 35)) (-2918 (((-962) (-203) (-523)) 34)) (-2970 (((-962) (-203) (-523)) 33)) (-2183 (((-962) (-203) (-523)) 32)) (-1614 (((-962) (-203) (-523)) 31)) (-1815 (((-962) (-203) (-523)) 30)) (-2997 (((-962) (-203) (-203) (-203) (-523)) 29)) (-1486 (((-962) (-203) (-523)) 28)) (-4044 (((-962) (-203) (-523)) 27)) (-3234 (((-962) (-203) (-523)) 26)) (-3083 (((-962) (-203) (-523)) 25)) (-3025 (((-962) (-203) (-523)) 24)) (-3344 (((-962) (-155 (-203)) (-523)) 21)))
-(((-698) (-10 -7 (-15 -3344 ((-962) (-155 (-203)) (-523))) (-15 -3025 ((-962) (-203) (-523))) (-15 -3083 ((-962) (-203) (-523))) (-15 -3234 ((-962) (-203) (-523))) (-15 -4044 ((-962) (-203) (-523))) (-15 -1486 ((-962) (-203) (-523))) (-15 -2997 ((-962) (-203) (-203) (-203) (-523))) (-15 -1815 ((-962) (-203) (-523))) (-15 -1614 ((-962) (-203) (-523))) (-15 -2183 ((-962) (-203) (-523))) (-15 -2970 ((-962) (-203) (-523))) (-15 -2918 ((-962) (-203) (-523))) (-15 -1951 ((-962) (-203) (-523))) (-15 -2552 ((-962) (-203) (-523))) (-15 -1243 ((-962) (-203) (-523))) (-15 -3315 ((-962) (-203) (-523))) (-15 -3551 ((-962) (-203) (-523))) (-15 -3285 ((-962) (-203) (-155 (-203)) (-523) (-1070) (-523))) (-15 -2709 ((-962) (-203) (-155 (-203)) (-523) (-1070) (-523))) (-15 -3945 ((-962) (-1070) (-155 (-203)) (-1070) (-523))) (-15 -3185 ((-962) (-1070) (-155 (-203)) (-1070) (-523))) (-15 -1757 ((-962) (-523) (-203) (-155 (-203)) (-523) (-1070) (-523))) (-15 -3914 ((-962) (-203) (-523))) (-15 -3351 ((-962) (-203) (-523))) (-15 -3690 ((-962) (-203) (-523))) (-15 -2568 ((-962) (-203) (-523))) (-15 -1941 ((-962) (-203) (-155 (-203)) (-523) (-1070) (-523))) (-15 -1351 ((-962) (-203) (-155 (-203)) (-523) (-1070) (-523))) (-15 -2740 ((-962) (-203) (-523))) (-15 -2787 ((-962) (-203) (-523))) (-15 -1735 ((-962) (-203) (-523))) (-15 -1848 ((-962) (-203) (-523))) (-15 -1712 ((-962) (-203) (-523))) (-15 -3430 ((-962) (-203) (-523))) (-15 -4167 ((-962) (-203) (-203) (-523))) (-15 -1822 ((-962) (-203) (-203) (-203) (-523))) (-15 -1881 ((-962) (-203) (-203) (-203) (-523))) (-15 -1405 ((-962) (-203) (-203) (-203) (-203) (-523))))) (T -698))
-((-1405 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-1881 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-1822 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-4167 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-3430 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-1712 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-1848 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-1735 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-2787 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-2740 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-1351 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-155 (-203))) (-5 *5 (-523)) (-5 *6 (-1070)) (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-698)))) (-1941 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-155 (-203))) (-5 *5 (-523)) (-5 *6 (-1070)) (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-698)))) (-2568 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-3690 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-3351 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-3914 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-1757 (*1 *2 *3 *4 *5 *3 *6 *3) (-12 (-5 *3 (-523)) (-5 *5 (-155 (-203))) (-5 *6 (-1070)) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-698)))) (-3185 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1070)) (-5 *4 (-155 (-203))) (-5 *5 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-3945 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1070)) (-5 *4 (-155 (-203))) (-5 *5 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-2709 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-155 (-203))) (-5 *5 (-523)) (-5 *6 (-1070)) (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-698)))) (-3285 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-155 (-203))) (-5 *5 (-523)) (-5 *6 (-1070)) (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-698)))) (-3551 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-3315 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-1243 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-2552 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-1951 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-2918 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-2970 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-2183 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-1614 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-1815 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-2997 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-1486 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-4044 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-3234 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-3083 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-3025 (*1 *2 *3 *4) (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))) (-3344 (*1 *2 *3 *4) (-12 (-5 *3 (-155 (-203))) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(-10 -7 (-15 -3344 ((-962) (-155 (-203)) (-523))) (-15 -3025 ((-962) (-203) (-523))) (-15 -3083 ((-962) (-203) (-523))) (-15 -3234 ((-962) (-203) (-523))) (-15 -4044 ((-962) (-203) (-523))) (-15 -1486 ((-962) (-203) (-523))) (-15 -2997 ((-962) (-203) (-203) (-203) (-523))) (-15 -1815 ((-962) (-203) (-523))) (-15 -1614 ((-962) (-203) (-523))) (-15 -2183 ((-962) (-203) (-523))) (-15 -2970 ((-962) (-203) (-523))) (-15 -2918 ((-962) (-203) (-523))) (-15 -1951 ((-962) (-203) (-523))) (-15 -2552 ((-962) (-203) (-523))) (-15 -1243 ((-962) (-203) (-523))) (-15 -3315 ((-962) (-203) (-523))) (-15 -3551 ((-962) (-203) (-523))) (-15 -3285 ((-962) (-203) (-155 (-203)) (-523) (-1070) (-523))) (-15 -2709 ((-962) (-203) (-155 (-203)) (-523) (-1070) (-523))) (-15 -3945 ((-962) (-1070) (-155 (-203)) (-1070) (-523))) (-15 -3185 ((-962) (-1070) (-155 (-203)) (-1070) (-523))) (-15 -1757 ((-962) (-523) (-203) (-155 (-203)) (-523) (-1070) (-523))) (-15 -3914 ((-962) (-203) (-523))) (-15 -3351 ((-962) (-203) (-523))) (-15 -3690 ((-962) (-203) (-523))) (-15 -2568 ((-962) (-203) (-523))) (-15 -1941 ((-962) (-203) (-155 (-203)) (-523) (-1070) (-523))) (-15 -1351 ((-962) (-203) (-155 (-203)) (-523) (-1070) (-523))) (-15 -2740 ((-962) (-203) (-523))) (-15 -2787 ((-962) (-203) (-523))) (-15 -1735 ((-962) (-203) (-523))) (-15 -1848 ((-962) (-203) (-523))) (-15 -1712 ((-962) (-203) (-523))) (-15 -3430 ((-962) (-203) (-523))) (-15 -4167 ((-962) (-203) (-203) (-523))) (-15 -1822 ((-962) (-203) (-203) (-203) (-523))) (-15 -1881 ((-962) (-203) (-203) (-203) (-523))) (-15 -1405 ((-962) (-203) (-203) (-203) (-203) (-523))))
-((-2320 (((-1174)) 18)) (-3919 (((-1070)) 22)) (-2383 (((-1070)) 21)) (-1343 (((-1020) (-1087) (-629 (-523))) 37) (((-1020) (-1087) (-629 (-203))) 32)) (-3171 (((-108)) 16)) (-1758 (((-1070) (-1070)) 25)))
-(((-699) (-10 -7 (-15 -2383 ((-1070))) (-15 -3919 ((-1070))) (-15 -1758 ((-1070) (-1070))) (-15 -1343 ((-1020) (-1087) (-629 (-203)))) (-15 -1343 ((-1020) (-1087) (-629 (-523)))) (-15 -3171 ((-108))) (-15 -2320 ((-1174))))) (T -699))
-((-2320 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-699)))) (-3171 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-699)))) (-1343 (*1 *2 *3 *4) (-12 (-5 *3 (-1087)) (-5 *4 (-629 (-523))) (-5 *2 (-1020)) (-5 *1 (-699)))) (-1343 (*1 *2 *3 *4) (-12 (-5 *3 (-1087)) (-5 *4 (-629 (-203))) (-5 *2 (-1020)) (-5 *1 (-699)))) (-1758 (*1 *2 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-699)))) (-3919 (*1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-699)))) (-2383 (*1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-699)))))
-(-10 -7 (-15 -2383 ((-1070))) (-15 -3919 ((-1070))) (-15 -1758 ((-1070) (-1070))) (-15 -1343 ((-1020) (-1087) (-629 (-203)))) (-15 -1343 ((-1020) (-1087) (-629 (-523)))) (-15 -3171 ((-108))) (-15 -2320 ((-1174))))
-((-2306 (($ $ $) 10)) (-3377 (($ $ $ $) 9)) (-1952 (($ $ $) 12)))
-(((-700 |#1|) (-10 -8 (-15 -1952 (|#1| |#1| |#1|)) (-15 -2306 (|#1| |#1| |#1|)) (-15 -3377 (|#1| |#1| |#1| |#1|))) (-701)) (T -700))
-NIL
-(-10 -8 (-15 -1952 (|#1| |#1| |#1|)) (-15 -2306 (|#1| |#1| |#1|)) (-15 -3377 (|#1| |#1| |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-2966 (($ $ (-852)) 28)) (-2165 (($ $ (-852)) 29)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2306 (($ $ $) 25)) (-3976 (((-794) $) 11)) (-3377 (($ $ $ $) 26)) (-1952 (($ $ $) 24)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 30)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 27)))
-(((-701) (-129)) (T -701))
-((-3377 (*1 *1 *1 *1 *1) (-4 *1 (-701))) (-2306 (*1 *1 *1 *1) (-4 *1 (-701))) (-1952 (*1 *1 *1 *1) (-4 *1 (-701))))
-(-13 (-21) (-660) (-10 -8 (-15 -3377 ($ $ $ $)) (-15 -2306 ($ $ $)) (-15 -1952 ($ $ $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-660) . T) ((-1016) . T))
-((-3976 (((-794) $) NIL) (($ (-523)) 10)))
-(((-702 |#1|) (-10 -8 (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|))) (-703)) (T -702))
-NIL
-(-10 -8 (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-2439 (((-3 $ "failed") $) 40)) (-2966 (($ $ (-852)) 28) (($ $ (-710)) 35)) (-4211 (((-3 $ "failed") $) 38)) (-3482 (((-108) $) 34)) (-3790 (((-3 $ "failed") $) 39)) (-2165 (($ $ (-852)) 29) (($ $ (-710)) 36)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2306 (($ $ $) 25)) (-3976 (((-794) $) 11) (($ (-523)) 31)) (-1698 (((-710)) 32)) (-3377 (($ $ $ $) 26)) (-1952 (($ $ $) 24)) (-1428 (($) 18 T CONST)) (-1440 (($) 33 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 30) (($ $ (-710)) 37)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 27)))
-(((-703) (-129)) (T -703))
-((-1698 (*1 *2) (-12 (-4 *1 (-703)) (-5 *2 (-710)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-703)))))
-(-13 (-701) (-662) (-10 -8 (-15 -1698 ((-710))) (-15 -3976 ($ (-523)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-660) . T) ((-662) . T) ((-701) . T) ((-1016) . T))
-((-2668 (((-589 (-2 (|:| |outval| (-155 |#1|)) (|:| |outmult| (-523)) (|:| |outvect| (-589 (-629 (-155 |#1|)))))) (-629 (-155 (-383 (-523)))) |#1|) 33)) (-3476 (((-589 (-155 |#1|)) (-629 (-155 (-383 (-523)))) |#1|) 23)) (-1606 (((-883 (-155 (-383 (-523)))) (-629 (-155 (-383 (-523)))) (-1087)) 20) (((-883 (-155 (-383 (-523)))) (-629 (-155 (-383 (-523))))) 19)))
-(((-704 |#1|) (-10 -7 (-15 -1606 ((-883 (-155 (-383 (-523)))) (-629 (-155 (-383 (-523)))))) (-15 -1606 ((-883 (-155 (-383 (-523)))) (-629 (-155 (-383 (-523)))) (-1087))) (-15 -3476 ((-589 (-155 |#1|)) (-629 (-155 (-383 (-523)))) |#1|)) (-15 -2668 ((-589 (-2 (|:| |outval| (-155 |#1|)) (|:| |outmult| (-523)) (|:| |outvect| (-589 (-629 (-155 |#1|)))))) (-629 (-155 (-383 (-523)))) |#1|))) (-13 (-339) (-784))) (T -704))
-((-2668 (*1 *2 *3 *4) (-12 (-5 *3 (-629 (-155 (-383 (-523))))) (-5 *2 (-589 (-2 (|:| |outval| (-155 *4)) (|:| |outmult| (-523)) (|:| |outvect| (-589 (-629 (-155 *4))))))) (-5 *1 (-704 *4)) (-4 *4 (-13 (-339) (-784))))) (-3476 (*1 *2 *3 *4) (-12 (-5 *3 (-629 (-155 (-383 (-523))))) (-5 *2 (-589 (-155 *4))) (-5 *1 (-704 *4)) (-4 *4 (-13 (-339) (-784))))) (-1606 (*1 *2 *3 *4) (-12 (-5 *3 (-629 (-155 (-383 (-523))))) (-5 *4 (-1087)) (-5 *2 (-883 (-155 (-383 (-523))))) (-5 *1 (-704 *5)) (-4 *5 (-13 (-339) (-784))))) (-1606 (*1 *2 *3) (-12 (-5 *3 (-629 (-155 (-383 (-523))))) (-5 *2 (-883 (-155 (-383 (-523))))) (-5 *1 (-704 *4)) (-4 *4 (-13 (-339) (-784))))))
-(-10 -7 (-15 -1606 ((-883 (-155 (-383 (-523)))) (-629 (-155 (-383 (-523)))))) (-15 -1606 ((-883 (-155 (-383 (-523)))) (-629 (-155 (-383 (-523)))) (-1087))) (-15 -3476 ((-589 (-155 |#1|)) (-629 (-155 (-383 (-523)))) |#1|)) (-15 -2668 ((-589 (-2 (|:| |outval| (-155 |#1|)) (|:| |outmult| (-523)) (|:| |outvect| (-589 (-629 (-155 |#1|)))))) (-629 (-155 (-383 (-523)))) |#1|)))
-((-3264 (((-159 (-523)) |#1|) 25)))
-(((-705 |#1|) (-10 -7 (-15 -3264 ((-159 (-523)) |#1|))) (-380)) (T -705))
-((-3264 (*1 *2 *3) (-12 (-5 *2 (-159 (-523))) (-5 *1 (-705 *3)) (-4 *3 (-380)))))
-(-10 -7 (-15 -3264 ((-159 (-523)) |#1|)))
-((-2136 ((|#1| |#1| |#1|) 24)) (-1290 ((|#1| |#1| |#1|) 23)) (-2138 ((|#1| |#1| |#1|) 32)) (-1787 ((|#1| |#1| |#1|) 28)) (-3904 (((-3 |#1| "failed") |#1| |#1|) 27)) (-3986 (((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|) 22)))
-(((-706 |#1| |#2|) (-10 -7 (-15 -3986 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -1290 (|#1| |#1| |#1|)) (-15 -2136 (|#1| |#1| |#1|)) (-15 -3904 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1787 (|#1| |#1| |#1|)) (-15 -2138 (|#1| |#1| |#1|))) (-648 |#2|) (-339)) (T -706))
-((-2138 (*1 *2 *2 *2) (-12 (-4 *3 (-339)) (-5 *1 (-706 *2 *3)) (-4 *2 (-648 *3)))) (-1787 (*1 *2 *2 *2) (-12 (-4 *3 (-339)) (-5 *1 (-706 *2 *3)) (-4 *2 (-648 *3)))) (-3904 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-339)) (-5 *1 (-706 *2 *3)) (-4 *2 (-648 *3)))) (-2136 (*1 *2 *2 *2) (-12 (-4 *3 (-339)) (-5 *1 (-706 *2 *3)) (-4 *2 (-648 *3)))) (-1290 (*1 *2 *2 *2) (-12 (-4 *3 (-339)) (-5 *1 (-706 *2 *3)) (-4 *2 (-648 *3)))) (-3986 (*1 *2 *3 *3) (-12 (-4 *4 (-339)) (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-706 *3 *4)) (-4 *3 (-648 *4)))))
-(-10 -7 (-15 -3986 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -1290 (|#1| |#1| |#1|)) (-15 -2136 (|#1| |#1| |#1|)) (-15 -3904 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1787 (|#1| |#1| |#1|)) (-15 -2138 (|#1| |#1| |#1|)))
-((-3329 (((-2 (|:| -2922 (-629 (-523))) (|:| |basisDen| (-523)) (|:| |basisInv| (-629 (-523)))) (-523)) 59)) (-3835 (((-2 (|:| -2922 (-629 (-523))) (|:| |basisDen| (-523)) (|:| |basisInv| (-629 (-523))))) 57)) (-4053 (((-523)) 70)))
-(((-707 |#1| |#2|) (-10 -7 (-15 -4053 ((-523))) (-15 -3835 ((-2 (|:| -2922 (-629 (-523))) (|:| |basisDen| (-523)) (|:| |basisInv| (-629 (-523)))))) (-15 -3329 ((-2 (|:| -2922 (-629 (-523))) (|:| |basisDen| (-523)) (|:| |basisInv| (-629 (-523)))) (-523)))) (-1145 (-523)) (-385 (-523) |#1|)) (T -707))
-((-3329 (*1 *2 *3) (-12 (-5 *3 (-523)) (-4 *4 (-1145 *3)) (-5 *2 (-2 (|:| -2922 (-629 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-629 *3)))) (-5 *1 (-707 *4 *5)) (-4 *5 (-385 *3 *4)))) (-3835 (*1 *2) (-12 (-4 *3 (-1145 (-523))) (-5 *2 (-2 (|:| -2922 (-629 (-523))) (|:| |basisDen| (-523)) (|:| |basisInv| (-629 (-523))))) (-5 *1 (-707 *3 *4)) (-4 *4 (-385 (-523) *3)))) (-4053 (*1 *2) (-12 (-4 *3 (-1145 *2)) (-5 *2 (-523)) (-5 *1 (-707 *3 *4)) (-4 *4 (-385 *2 *3)))))
-(-10 -7 (-15 -4053 ((-523))) (-15 -3835 ((-2 (|:| -2922 (-629 (-523))) (|:| |basisDen| (-523)) (|:| |basisInv| (-629 (-523)))))) (-15 -3329 ((-2 (|:| -2922 (-629 (-523))) (|:| |basisDen| (-523)) (|:| |basisInv| (-629 (-523)))) (-523))))
-((-3260 (((-108) $ $) NIL)) (-1996 (((-3 (|:| |nia| (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| |mdnia| (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) $) 21)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 20) (($ (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 13) (($ (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 16) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| |mdnia| (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))))) 18)) (-4037 (((-108) $ $) NIL)))
-(((-708) (-13 (-1016) (-10 -8 (-15 -3976 ($ (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3976 ($ (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3976 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| |mdnia| (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))))) (-15 -3976 ((-794) $)) (-15 -1996 ((-3 (|:| |nia| (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| |mdnia| (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) $))))) (T -708))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-708)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *1 (-708)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *1 (-708)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| |mdnia| (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))))) (-5 *1 (-708)))) (-1996 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| |mdnia| (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))))) (-5 *1 (-708)))))
-(-13 (-1016) (-10 -8 (-15 -3976 ($ (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3976 ($ (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3976 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| |mdnia| (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))))) (-15 -3976 ((-794) $)) (-15 -1996 ((-3 (|:| |nia| (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| |mdnia| (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) $))))
-((-3536 (((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-883 |#1|))) 18) (((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-883 |#1|)) (-589 (-1087))) 17)) (-3911 (((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-883 |#1|))) 20) (((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-883 |#1|)) (-589 (-1087))) 19)))
-(((-709 |#1|) (-10 -7 (-15 -3536 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-883 |#1|)) (-589 (-1087)))) (-15 -3536 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-883 |#1|)))) (-15 -3911 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-883 |#1|)) (-589 (-1087)))) (-15 -3911 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-883 |#1|))))) (-515)) (T -709))
-((-3911 (*1 *2 *3) (-12 (-5 *3 (-589 (-883 *4))) (-4 *4 (-515)) (-5 *2 (-589 (-589 (-271 (-383 (-883 *4)))))) (-5 *1 (-709 *4)))) (-3911 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-589 (-1087))) (-4 *5 (-515)) (-5 *2 (-589 (-589 (-271 (-383 (-883 *5)))))) (-5 *1 (-709 *5)))) (-3536 (*1 *2 *3) (-12 (-5 *3 (-589 (-883 *4))) (-4 *4 (-515)) (-5 *2 (-589 (-589 (-271 (-383 (-883 *4)))))) (-5 *1 (-709 *4)))) (-3536 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-589 (-1087))) (-4 *5 (-515)) (-5 *2 (-589 (-589 (-271 (-383 (-883 *5)))))) (-5 *1 (-709 *5)))))
-(-10 -7 (-15 -3536 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-883 |#1|)) (-589 (-1087)))) (-15 -3536 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-883 |#1|)))) (-15 -3911 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-883 |#1|)) (-589 (-1087)))) (-15 -3911 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-883 |#1|)))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1773 (($ $ $) 8)) (-2999 (((-3 $ "failed") $ $) 11)) (-3565 (($ $ (-523)) 9)) (-1640 (($) NIL T CONST)) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($ $) NIL)) (-2486 (($ $ $) NIL)) (-3482 (((-108) $) NIL)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2056 (($ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-3976 (((-794) $) NIL)) (-2573 (($ $ (-710)) NIL) (($ $ (-852)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-710)) NIL) (($ $ (-852)) NIL)) (* (($ (-710) $) NIL) (($ (-852) $) NIL) (($ $ $) NIL)))
-(((-710) (-13 (-732) (-666) (-10 -8 (-15 -2486 ($ $ $)) (-15 -2501 ($ $ $)) (-15 -2056 ($ $ $)) (-15 -1227 ((-2 (|:| -3429 $) (|:| -3143 $)) $ $)) (-15 -2469 ((-3 $ "failed") $ $)) (-15 -3565 ($ $ (-523))) (-15 -3461 ($ $)) (-6 (-4250 "*"))))) (T -710))
-((-2486 (*1 *1 *1 *1) (-5 *1 (-710))) (-2501 (*1 *1 *1 *1) (-5 *1 (-710))) (-2056 (*1 *1 *1 *1) (-5 *1 (-710))) (-1227 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3429 (-710)) (|:| -3143 (-710)))) (-5 *1 (-710)))) (-2469 (*1 *1 *1 *1) (|partial| -5 *1 (-710))) (-3565 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-710)))) (-3461 (*1 *1 *1) (-5 *1 (-710))))
-(-13 (-732) (-666) (-10 -8 (-15 -2486 ($ $ $)) (-15 -2501 ($ $ $)) (-15 -2056 ($ $ $)) (-15 -1227 ((-2 (|:| -3429 $) (|:| -3143 $)) $ $)) (-15 -2469 ((-3 $ "failed") $ $)) (-15 -3565 ($ $ (-523))) (-15 -3461 ($ $)) (-6 (-4250 "*"))))
-((-3911 (((-3 |#2| "failed") |#2| |#2| (-110) (-1087)) 35)))
-(((-711 |#1| |#2|) (-10 -7 (-15 -3911 ((-3 |#2| "failed") |#2| |#2| (-110) (-1087)))) (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)) (-13 (-29 |#1|) (-1109) (-889))) (T -711))
-((-3911 (*1 *2 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-110)) (-5 *4 (-1087)) (-4 *5 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *1 (-711 *5 *2)) (-4 *2 (-13 (-29 *5) (-1109) (-889))))))
-(-10 -7 (-15 -3911 ((-3 |#2| "failed") |#2| |#2| (-110) (-1087))))
-((-3976 (((-713) |#1|) 8)))
-(((-712 |#1|) (-10 -7 (-15 -3976 ((-713) |#1|))) (-1123)) (T -712))
-((-3976 (*1 *2 *3) (-12 (-5 *2 (-713)) (-5 *1 (-712 *3)) (-4 *3 (-1123)))))
-(-10 -7 (-15 -3976 ((-713) |#1|)))
-((-3260 (((-108) $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 7)) (-4037 (((-108) $ $) 9)))
-(((-713) (-1016)) (T -713))
-NIL
-(-1016)
-((-2765 ((|#2| |#4|) 35)))
-(((-714 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2765 (|#2| |#4|))) (-427) (-1145 |#1|) (-664 |#1| |#2|) (-1145 |#3|)) (T -714))
-((-2765 (*1 *2 *3) (-12 (-4 *4 (-427)) (-4 *5 (-664 *4 *2)) (-4 *2 (-1145 *4)) (-5 *1 (-714 *4 *2 *5 *3)) (-4 *3 (-1145 *5)))))
-(-10 -7 (-15 -2765 (|#2| |#4|)))
-((-4211 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 56)) (-1811 (((-1174) (-1070) (-1070) |#4| |#5|) 33)) (-2733 ((|#4| |#4| |#5|) 73)) (-4206 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#5|) 77)) (-2912 (((-589 (-2 (|:| |val| (-108)) (|:| -2394 |#5|))) |#4| |#5|) 16)))
-(((-715 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4211 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -2733 (|#4| |#4| |#5|)) (-15 -4206 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#5|)) (-15 -1811 ((-1174) (-1070) (-1070) |#4| |#5|)) (-15 -2912 ((-589 (-2 (|:| |val| (-108)) (|:| -2394 |#5|))) |#4| |#5|))) (-427) (-732) (-786) (-987 |#1| |#2| |#3|) (-992 |#1| |#2| |#3| |#4|)) (T -715))
-((-2912 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 (-2 (|:| |val| (-108)) (|:| -2394 *4)))) (-5 *1 (-715 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-1811 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-1070)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *4 (-987 *6 *7 *8)) (-5 *2 (-1174)) (-5 *1 (-715 *6 *7 *8 *4 *5)) (-4 *5 (-992 *6 *7 *8 *4)))) (-4206 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4)))) (-5 *1 (-715 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-2733 (*1 *2 *2 *3) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *2 (-987 *4 *5 *6)) (-5 *1 (-715 *4 *5 *6 *2 *3)) (-4 *3 (-992 *4 *5 *6 *2)))) (-4211 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3))) (-5 *1 (-715 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(-10 -7 (-15 -4211 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -2733 (|#4| |#4| |#5|)) (-15 -4206 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#5|)) (-15 -1811 ((-1174) (-1070) (-1070) |#4| |#5|)) (-15 -2912 ((-589 (-2 (|:| |val| (-108)) (|:| -2394 |#5|))) |#4| |#5|)))
-((-2898 (((-3 (-1083 (-1083 |#1|)) "failed") |#4|) 43)) (-3206 (((-589 |#4|) |#4|) 15)) (-1732 ((|#4| |#4|) 11)))
-(((-716 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3206 ((-589 |#4|) |#4|)) (-15 -2898 ((-3 (-1083 (-1083 |#1|)) "failed") |#4|)) (-15 -1732 (|#4| |#4|))) (-325) (-305 |#1|) (-1145 |#2|) (-1145 |#3|) (-852)) (T -716))
-((-1732 (*1 *2 *2) (-12 (-4 *3 (-325)) (-4 *4 (-305 *3)) (-4 *5 (-1145 *4)) (-5 *1 (-716 *3 *4 *5 *2 *6)) (-4 *2 (-1145 *5)) (-14 *6 (-852)))) (-2898 (*1 *2 *3) (|partial| -12 (-4 *4 (-325)) (-4 *5 (-305 *4)) (-4 *6 (-1145 *5)) (-5 *2 (-1083 (-1083 *4))) (-5 *1 (-716 *4 *5 *6 *3 *7)) (-4 *3 (-1145 *6)) (-14 *7 (-852)))) (-3206 (*1 *2 *3) (-12 (-4 *4 (-325)) (-4 *5 (-305 *4)) (-4 *6 (-1145 *5)) (-5 *2 (-589 *3)) (-5 *1 (-716 *4 *5 *6 *3 *7)) (-4 *3 (-1145 *6)) (-14 *7 (-852)))))
-(-10 -7 (-15 -3206 ((-589 |#4|) |#4|)) (-15 -2898 ((-3 (-1083 (-1083 |#1|)) "failed") |#4|)) (-15 -1732 (|#4| |#4|)))
-((-2145 (((-2 (|:| |deter| (-589 (-1083 |#5|))) (|:| |dterm| (-589 (-589 (-2 (|:| -1998 (-710)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-589 |#1|)) (|:| |nlead| (-589 |#5|))) (-1083 |#5|) (-589 |#1|) (-589 |#5|)) 54)) (-2949 (((-589 (-710)) |#1|) 13)))
-(((-717 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2145 ((-2 (|:| |deter| (-589 (-1083 |#5|))) (|:| |dterm| (-589 (-589 (-2 (|:| -1998 (-710)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-589 |#1|)) (|:| |nlead| (-589 |#5|))) (-1083 |#5|) (-589 |#1|) (-589 |#5|))) (-15 -2949 ((-589 (-710)) |#1|))) (-1145 |#4|) (-732) (-786) (-284) (-880 |#4| |#2| |#3|)) (T -717))
-((-2949 (*1 *2 *3) (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-284)) (-5 *2 (-589 (-710))) (-5 *1 (-717 *3 *4 *5 *6 *7)) (-4 *3 (-1145 *6)) (-4 *7 (-880 *6 *4 *5)))) (-2145 (*1 *2 *3 *4 *5) (-12 (-4 *6 (-1145 *9)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *9 (-284)) (-4 *10 (-880 *9 *7 *8)) (-5 *2 (-2 (|:| |deter| (-589 (-1083 *10))) (|:| |dterm| (-589 (-589 (-2 (|:| -1998 (-710)) (|:| |pcoef| *10))))) (|:| |nfacts| (-589 *6)) (|:| |nlead| (-589 *10)))) (-5 *1 (-717 *6 *7 *8 *9 *10)) (-5 *3 (-1083 *10)) (-5 *4 (-589 *6)) (-5 *5 (-589 *10)))))
-(-10 -7 (-15 -2145 ((-2 (|:| |deter| (-589 (-1083 |#5|))) (|:| |dterm| (-589 (-589 (-2 (|:| -1998 (-710)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-589 |#1|)) (|:| |nlead| (-589 |#5|))) (-1083 |#5|) (-589 |#1|) (-589 |#5|))) (-15 -2949 ((-589 (-710)) |#1|)))
-((-1766 (((-589 (-2 (|:| |outval| |#1|) (|:| |outmult| (-523)) (|:| |outvect| (-589 (-629 |#1|))))) (-629 (-383 (-523))) |#1|) 31)) (-1437 (((-589 |#1|) (-629 (-383 (-523))) |#1|) 21)) (-1606 (((-883 (-383 (-523))) (-629 (-383 (-523))) (-1087)) 18) (((-883 (-383 (-523))) (-629 (-383 (-523)))) 17)))
-(((-718 |#1|) (-10 -7 (-15 -1606 ((-883 (-383 (-523))) (-629 (-383 (-523))))) (-15 -1606 ((-883 (-383 (-523))) (-629 (-383 (-523))) (-1087))) (-15 -1437 ((-589 |#1|) (-629 (-383 (-523))) |#1|)) (-15 -1766 ((-589 (-2 (|:| |outval| |#1|) (|:| |outmult| (-523)) (|:| |outvect| (-589 (-629 |#1|))))) (-629 (-383 (-523))) |#1|))) (-13 (-339) (-784))) (T -718))
-((-1766 (*1 *2 *3 *4) (-12 (-5 *3 (-629 (-383 (-523)))) (-5 *2 (-589 (-2 (|:| |outval| *4) (|:| |outmult| (-523)) (|:| |outvect| (-589 (-629 *4)))))) (-5 *1 (-718 *4)) (-4 *4 (-13 (-339) (-784))))) (-1437 (*1 *2 *3 *4) (-12 (-5 *3 (-629 (-383 (-523)))) (-5 *2 (-589 *4)) (-5 *1 (-718 *4)) (-4 *4 (-13 (-339) (-784))))) (-1606 (*1 *2 *3 *4) (-12 (-5 *3 (-629 (-383 (-523)))) (-5 *4 (-1087)) (-5 *2 (-883 (-383 (-523)))) (-5 *1 (-718 *5)) (-4 *5 (-13 (-339) (-784))))) (-1606 (*1 *2 *3) (-12 (-5 *3 (-629 (-383 (-523)))) (-5 *2 (-883 (-383 (-523)))) (-5 *1 (-718 *4)) (-4 *4 (-13 (-339) (-784))))))
-(-10 -7 (-15 -1606 ((-883 (-383 (-523))) (-629 (-383 (-523))))) (-15 -1606 ((-883 (-383 (-523))) (-629 (-383 (-523))) (-1087))) (-15 -1437 ((-589 |#1|) (-629 (-383 (-523))) |#1|)) (-15 -1766 ((-589 (-2 (|:| |outval| |#1|) (|:| |outmult| (-523)) (|:| |outvect| (-589 (-629 |#1|))))) (-629 (-383 (-523))) |#1|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 34)) (-3716 (((-589 |#2|) $) NIL)) (-3540 (((-1083 $) $ |#2|) NIL) (((-1083 |#1|) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-2862 (((-710) $) NIL) (((-710) $ (-589 |#2|)) NIL)) (-3548 (($ $) 28)) (-2242 (((-108) $ $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3712 (($ $ $) 93 (|has| |#1| (-515)))) (-2530 (((-589 $) $ $) 106 (|has| |#1| (-515)))) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3763 (($ $) NIL (|has| |#1| (-427)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 |#2| "failed") $) NIL) (((-3 $ "failed") (-883 (-383 (-523)))) NIL (-12 (|has| |#1| (-37 (-383 (-523)))) (|has| |#2| (-564 (-1087))))) (((-3 $ "failed") (-883 (-523))) NIL (-3255 (-12 (|has| |#1| (-37 (-523))) (|has| |#2| (-564 (-1087))) (-2575 (|has| |#1| (-37 (-383 (-523)))))) (-12 (|has| |#1| (-37 (-383 (-523)))) (|has| |#2| (-564 (-1087)))))) (((-3 $ "failed") (-883 |#1|)) NIL (-3255 (-12 (|has| |#2| (-564 (-1087))) (-2575 (|has| |#1| (-37 (-383 (-523))))) (-2575 (|has| |#1| (-37 (-523))))) (-12 (|has| |#1| (-37 (-523))) (|has| |#2| (-564 (-1087))) (-2575 (|has| |#1| (-37 (-383 (-523))))) (-2575 (|has| |#1| (-508)))) (-12 (|has| |#1| (-37 (-383 (-523)))) (|has| |#2| (-564 (-1087))) (-2575 (|has| |#1| (-921 (-523))))))) (((-3 (-1039 |#1| |#2|) "failed") $) 18)) (-1996 ((|#1| $) NIL) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-523) $) NIL (|has| |#1| (-964 (-523)))) ((|#2| $) NIL) (($ (-883 (-383 (-523)))) NIL (-12 (|has| |#1| (-37 (-383 (-523)))) (|has| |#2| (-564 (-1087))))) (($ (-883 (-523))) NIL (-3255 (-12 (|has| |#1| (-37 (-523))) (|has| |#2| (-564 (-1087))) (-2575 (|has| |#1| (-37 (-383 (-523)))))) (-12 (|has| |#1| (-37 (-383 (-523)))) (|has| |#2| (-564 (-1087)))))) (($ (-883 |#1|)) NIL (-3255 (-12 (|has| |#2| (-564 (-1087))) (-2575 (|has| |#1| (-37 (-383 (-523))))) (-2575 (|has| |#1| (-37 (-523))))) (-12 (|has| |#1| (-37 (-523))) (|has| |#2| (-564 (-1087))) (-2575 (|has| |#1| (-37 (-383 (-523))))) (-2575 (|has| |#1| (-508)))) (-12 (|has| |#1| (-37 (-383 (-523)))) (|has| |#2| (-564 (-1087))) (-2575 (|has| |#1| (-921 (-523))))))) (((-1039 |#1| |#2|) $) NIL)) (-2210 (($ $ $ |#2|) NIL (|has| |#1| (-158))) (($ $ $) 104 (|has| |#1| (-515)))) (-3142 (($ $) NIL) (($ $ |#2|) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) NIL) (((-629 |#1|) (-629 $)) NIL)) (-3605 (((-108) $ $) NIL) (((-108) $ (-589 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-1759 (((-108) $) NIL)) (-1579 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 70)) (-2004 (($ $) 119 (|has| |#1| (-427)))) (-2213 (($ $) NIL (|has| |#1| (-427))) (($ $ |#2|) NIL (|has| |#1| (-427)))) (-3127 (((-589 $) $) NIL)) (-1330 (((-108) $) NIL (|has| |#1| (-840)))) (-2503 (($ $) NIL (|has| |#1| (-515)))) (-2280 (($ $) NIL (|has| |#1| (-515)))) (-3533 (($ $ $) 65) (($ $ $ |#2|) NIL)) (-3453 (($ $ $) 68) (($ $ $ |#2|) NIL)) (-2067 (($ $ |#1| (-495 |#2|) $) NIL)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| |#1| (-817 (-355))) (|has| |#2| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| |#1| (-817 (-523))) (|has| |#2| (-817 (-523)))))) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) NIL)) (-2407 (((-108) $ $) NIL) (((-108) $ (-589 $)) NIL)) (-1319 (($ $ $ $ $) 90 (|has| |#1| (-515)))) (-2694 ((|#2| $) 19)) (-3706 (($ (-1083 |#1|) |#2|) NIL) (($ (-1083 $) |#2|) NIL)) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-495 |#2|)) NIL) (($ $ |#2| (-710)) 36) (($ $ (-589 |#2|) (-589 (-710))) NIL)) (-3291 (($ $ $) 60)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ |#2|) NIL)) (-2627 (((-108) $) NIL)) (-2140 (((-495 |#2|) $) NIL) (((-710) $ |#2|) NIL) (((-589 (-710)) $ (-589 |#2|)) NIL)) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-3196 (((-710) $) 20)) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3927 (($ (-1 (-495 |#2|) (-495 |#2|)) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-1949 (((-3 |#2| "failed") $) NIL)) (-2946 (($ $) NIL (|has| |#1| (-427)))) (-2756 (($ $) NIL (|has| |#1| (-427)))) (-2789 (((-589 $) $) NIL)) (-3678 (($ $) 37)) (-3147 (($ $) NIL (|has| |#1| (-427)))) (-2172 (((-589 $) $) 41)) (-1248 (($ $) 39)) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL) (($ $ |#2|) 45)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-2935 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1301 (-710))) $ $) 82)) (-3709 (((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3429 $) (|:| -3143 $)) $ $) 67) (((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3429 $) (|:| -3143 $)) $ $ |#2|) NIL)) (-1937 (((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3143 $)) $ $) NIL) (((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3143 $)) $ $ |#2|) NIL)) (-3146 (($ $ $) 72) (($ $ $ |#2|) NIL)) (-3321 (($ $ $) 75) (($ $ $ |#2|) NIL)) (-3841 (((-1070) $) NIL)) (-3216 (($ $ $) 108 (|has| |#1| (-515)))) (-1905 (((-589 $) $) 30)) (-3818 (((-3 (-589 $) "failed") $) NIL)) (-1973 (((-3 (-589 $) "failed") $) NIL)) (-3719 (((-3 (-2 (|:| |var| |#2|) (|:| -3262 (-710))) "failed") $) NIL)) (-3761 (((-108) $ $) NIL) (((-108) $ (-589 $)) NIL)) (-1728 (($ $ $) NIL)) (-4105 (($ $) 21)) (-1454 (((-108) $ $) NIL)) (-2152 (((-108) $ $) NIL) (((-108) $ (-589 $)) NIL)) (-2347 (($ $ $) NIL)) (-3612 (($ $) 23)) (-2435 (((-1034) $) NIL)) (-3740 (((-2 (|:| -2056 $) (|:| |coef2| $)) $ $) 99 (|has| |#1| (-515)))) (-2440 (((-2 (|:| -2056 $) (|:| |coef1| $)) $ $) 96 (|has| |#1| (-515)))) (-3084 (((-108) $) 52)) (-3095 ((|#1| $) 55)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-427)))) (-2056 ((|#1| |#1| $) 116 (|has| |#1| (-427))) (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3573 (((-394 $) $) NIL (|has| |#1| (-840)))) (-3747 (((-2 (|:| -2056 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 102 (|has| |#1| (-515)))) (-2469 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-515)))) (-2456 (($ $ |#1|) 112 (|has| |#1| (-515))) (($ $ $) NIL (|has| |#1| (-515)))) (-3293 (($ $ |#1|) 111 (|has| |#1| (-515))) (($ $ $) NIL (|has| |#1| (-515)))) (-1349 (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-589 |#2|) (-589 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-589 |#2|) (-589 $)) NIL)) (-4053 (($ $ |#2|) NIL (|has| |#1| (-158)))) (-4024 (($ $ |#2|) NIL) (($ $ (-589 |#2|)) NIL) (($ $ |#2| (-710)) NIL) (($ $ (-589 |#2|) (-589 (-710))) NIL)) (-1487 (((-495 |#2|) $) NIL) (((-710) $ |#2|) 43) (((-589 (-710)) $ (-589 |#2|)) NIL)) (-3228 (($ $) NIL)) (-2451 (($ $) 33)) (-3077 (((-823 (-355)) $) NIL (-12 (|has| |#1| (-564 (-823 (-355)))) (|has| |#2| (-564 (-823 (-355)))))) (((-823 (-523)) $) NIL (-12 (|has| |#1| (-564 (-823 (-523)))) (|has| |#2| (-564 (-823 (-523)))))) (((-499) $) NIL (-12 (|has| |#1| (-564 (-499))) (|has| |#2| (-564 (-499))))) (($ (-883 (-383 (-523)))) NIL (-12 (|has| |#1| (-37 (-383 (-523)))) (|has| |#2| (-564 (-1087))))) (($ (-883 (-523))) NIL (-3255 (-12 (|has| |#1| (-37 (-523))) (|has| |#2| (-564 (-1087))) (-2575 (|has| |#1| (-37 (-383 (-523)))))) (-12 (|has| |#1| (-37 (-383 (-523)))) (|has| |#2| (-564 (-1087)))))) (($ (-883 |#1|)) NIL (|has| |#2| (-564 (-1087)))) (((-1070) $) NIL (-12 (|has| |#1| (-964 (-523))) (|has| |#2| (-564 (-1087))))) (((-883 |#1|) $) NIL (|has| |#2| (-564 (-1087))))) (-2267 ((|#1| $) 115 (|has| |#1| (-427))) (($ $ |#2|) NIL (|has| |#1| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#1| (-840))))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#1|) NIL) (($ |#2|) NIL) (((-883 |#1|) $) NIL (|has| |#2| (-564 (-1087)))) (((-1039 |#1| |#2|) $) 15) (($ (-1039 |#1| |#2|)) 16) (($ (-383 (-523))) NIL (-3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-964 (-383 (-523)))))) (($ $) NIL (|has| |#1| (-515)))) (-1639 (((-589 |#1|) $) NIL)) (-1234 ((|#1| $ (-495 |#2|)) NIL) (($ $ |#2| (-710)) 44) (($ $ (-589 |#2|) (-589 (-710))) NIL)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#1| (-840))) (|has| |#1| (-134))))) (-1698 (((-710)) NIL)) (-2656 (($ $ $ (-710)) NIL (|has| |#1| (-158)))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 13 T CONST)) (-3999 (((-3 (-108) "failed") $ $) NIL)) (-1440 (($) 35 T CONST)) (-3893 (($ $ $ $ (-710)) 88 (|has| |#1| (-515)))) (-4142 (($ $ $ (-710)) 87 (|has| |#1| (-515)))) (-1943 (($ $ |#2|) NIL) (($ $ (-589 |#2|)) NIL) (($ $ |#2| (-710)) NIL) (($ $ (-589 |#2|) (-589 (-710))) NIL)) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) 54)) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) 64)) (-4103 (($ $ $) 74)) (** (($ $ (-852)) NIL) (($ $ (-710)) 61)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 59) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) 58) (($ $ |#1|) NIL)))
-(((-719 |#1| |#2|) (-13 (-987 |#1| (-495 |#2|) |#2|) (-563 (-1039 |#1| |#2|)) (-964 (-1039 |#1| |#2|))) (-973) (-786)) (T -719))
-NIL
-(-13 (-987 |#1| (-495 |#2|) |#2|) (-563 (-1039 |#1| |#2|)) (-964 (-1039 |#1| |#2|)))
-((-3015 (((-721 |#2|) (-1 |#2| |#1|) (-721 |#1|)) 13)))
-(((-720 |#1| |#2|) (-10 -7 (-15 -3015 ((-721 |#2|) (-1 |#2| |#1|) (-721 |#1|)))) (-973) (-973)) (T -720))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-721 *5)) (-4 *5 (-973)) (-4 *6 (-973)) (-5 *2 (-721 *6)) (-5 *1 (-720 *5 *6)))))
-(-10 -7 (-15 -3015 ((-721 |#2|) (-1 |#2| |#1|) (-721 |#1|))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 12)) (-1288 (((-1169 |#1|) $ (-710)) NIL)) (-3716 (((-589 (-1001)) $) NIL)) (-2115 (($ (-1083 |#1|)) NIL)) (-3540 (((-1083 $) $ (-1001)) NIL) (((-1083 |#1|) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-2862 (((-710) $) NIL) (((-710) $ (-589 (-1001))) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2564 (((-589 $) $ $) 39 (|has| |#1| (-515)))) (-3712 (($ $ $) 35 (|has| |#1| (-515)))) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3763 (($ $) NIL (|has| |#1| (-427)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3684 (((-108) $ $) NIL (|has| |#1| (-339)))) (-2891 (($ $ (-710)) NIL)) (-1544 (($ $ (-710)) NIL)) (-3340 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-427)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-1001) "failed") $) NIL) (((-3 (-1083 |#1|) "failed") $) 10)) (-1996 ((|#1| $) NIL) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-1001) $) NIL) (((-1083 |#1|) $) NIL)) (-2210 (($ $ $ (-1001)) NIL (|has| |#1| (-158))) ((|#1| $ $) 43 (|has| |#1| (-158)))) (-2501 (($ $ $) NIL (|has| |#1| (-339)))) (-3142 (($ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) NIL) (((-629 |#1|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2486 (($ $ $) NIL (|has| |#1| (-339)))) (-1365 (($ $ $) NIL)) (-3547 (($ $ $) 71 (|has| |#1| (-515)))) (-1579 (((-2 (|:| -2275 |#1|) (|:| -3429 $) (|:| -3143 $)) $ $) 70 (|has| |#1| (-515)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#1| (-339)))) (-2213 (($ $) NIL (|has| |#1| (-427))) (($ $ (-1001)) NIL (|has| |#1| (-427)))) (-3127 (((-589 $) $) NIL)) (-1330 (((-108) $) NIL (|has| |#1| (-840)))) (-2067 (($ $ |#1| (-710) $) NIL)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| (-1001) (-817 (-355))) (|has| |#1| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| (-1001) (-817 (-523))) (|has| |#1| (-817 (-523)))))) (-1500 (((-710) $ $) NIL (|has| |#1| (-515)))) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) NIL)) (-1289 (((-3 $ "failed") $) NIL (|has| |#1| (-1063)))) (-3706 (($ (-1083 |#1|) (-1001)) NIL) (($ (-1083 $) (-1001)) NIL)) (-3059 (($ $ (-710)) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-710)) NIL) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL)) (-3291 (($ $ $) 20)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ (-1001)) NIL) (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2140 (((-710) $) NIL) (((-710) $ (-1001)) NIL) (((-589 (-710)) $ (-589 (-1001))) NIL)) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3927 (($ (-1 (-710) (-710)) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-1489 (((-1083 |#1|) $) NIL)) (-1949 (((-3 (-1001) "failed") $) NIL)) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-2935 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1301 (-710))) $ $) 26)) (-1693 (($ $ $) 29)) (-3465 (($ $ $) 32)) (-3709 (((-2 (|:| -2275 |#1|) (|:| |gap| (-710)) (|:| -3429 $) (|:| -3143 $)) $ $) 31)) (-3841 (((-1070) $) NIL)) (-3216 (($ $ $) 41 (|has| |#1| (-515)))) (-3809 (((-2 (|:| -3429 $) (|:| -3143 $)) $ (-710)) NIL)) (-3818 (((-3 (-589 $) "failed") $) NIL)) (-1973 (((-3 (-589 $) "failed") $) NIL)) (-3719 (((-3 (-2 (|:| |var| (-1001)) (|:| -3262 (-710))) "failed") $) NIL)) (-2669 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-4105 (($) NIL (|has| |#1| (-1063)) CONST)) (-2435 (((-1034) $) NIL)) (-3740 (((-2 (|:| -2056 $) (|:| |coef2| $)) $ $) 67 (|has| |#1| (-515)))) (-2440 (((-2 (|:| -2056 $) (|:| |coef1| $)) $ $) 63 (|has| |#1| (-515)))) (-2827 (((-2 (|:| -2210 |#1|) (|:| |coef2| $)) $ $) 55 (|has| |#1| (-515)))) (-1976 (((-2 (|:| -2210 |#1|) (|:| |coef1| $)) $ $) 51 (|has| |#1| (-515)))) (-3084 (((-108) $) 13)) (-3095 ((|#1| $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-427)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-3664 (($ $ (-710) |#1| $) 19)) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3573 (((-394 $) $) NIL (|has| |#1| (-840)))) (-3747 (((-2 (|:| -2056 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 59 (|has| |#1| (-515)))) (-3782 (((-2 (|:| -2210 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 47 (|has| |#1| (-515)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-2469 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-1349 (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-1001) |#1|) NIL) (($ $ (-589 (-1001)) (-589 |#1|)) NIL) (($ $ (-1001) $) NIL) (($ $ (-589 (-1001)) (-589 $)) NIL)) (-3087 (((-710) $) NIL (|has| |#1| (-339)))) (-1502 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-383 $) (-383 $) (-383 $)) NIL (|has| |#1| (-515))) ((|#1| (-383 $) |#1|) NIL (|has| |#1| (-339))) (((-383 $) $ (-383 $)) NIL (|has| |#1| (-515)))) (-1451 (((-3 $ "failed") $ (-710)) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-4053 (($ $ (-1001)) NIL (|has| |#1| (-158))) ((|#1| $) NIL (|has| |#1| (-158)))) (-4024 (($ $ (-1001)) NIL) (($ $ (-589 (-1001))) NIL) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL) (($ $ (-710)) NIL) (($ $) NIL) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-1487 (((-710) $) NIL) (((-710) $ (-1001)) NIL) (((-589 (-710)) $ (-589 (-1001))) NIL)) (-3077 (((-823 (-355)) $) NIL (-12 (|has| (-1001) (-564 (-823 (-355)))) (|has| |#1| (-564 (-823 (-355)))))) (((-823 (-523)) $) NIL (-12 (|has| (-1001) (-564 (-823 (-523)))) (|has| |#1| (-564 (-823 (-523)))))) (((-499) $) NIL (-12 (|has| (-1001) (-564 (-499))) (|has| |#1| (-564 (-499)))))) (-2267 ((|#1| $) NIL (|has| |#1| (-427))) (($ $ (-1001)) NIL (|has| |#1| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#1| (-840))))) (-2670 (((-3 $ "failed") $ $) NIL (|has| |#1| (-515))) (((-3 (-383 $) "failed") (-383 $) $) NIL (|has| |#1| (-515)))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#1|) NIL) (($ (-1001)) NIL) (((-1083 |#1|) $) 7) (($ (-1083 |#1|)) 8) (($ (-383 (-523))) NIL (-3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-964 (-383 (-523)))))) (($ $) NIL (|has| |#1| (-515)))) (-1639 (((-589 |#1|) $) NIL)) (-1234 ((|#1| $ (-710)) NIL) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#1| (-840))) (|has| |#1| (-134))))) (-1698 (((-710)) NIL)) (-2656 (($ $ $ (-710)) NIL (|has| |#1| (-158)))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 21 T CONST)) (-1440 (($) 24 T CONST)) (-1943 (($ $ (-1001)) NIL) (($ $ (-589 (-1001))) NIL) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL) (($ $ (-710)) NIL) (($ $) NIL) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339)))) (-4115 (($ $) 28) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) 23) (($ $ |#1|) NIL)))
-(((-721 |#1|) (-13 (-1145 |#1|) (-563 (-1083 |#1|)) (-964 (-1083 |#1|)) (-10 -8 (-15 -3664 ($ $ (-710) |#1| $)) (-15 -3291 ($ $ $)) (-15 -2935 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1301 (-710))) $ $)) (-15 -1693 ($ $ $)) (-15 -3709 ((-2 (|:| -2275 |#1|) (|:| |gap| (-710)) (|:| -3429 $) (|:| -3143 $)) $ $)) (-15 -3465 ($ $ $)) (IF (|has| |#1| (-515)) (PROGN (-15 -2564 ((-589 $) $ $)) (-15 -3216 ($ $ $)) (-15 -3747 ((-2 (|:| -2056 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2440 ((-2 (|:| -2056 $) (|:| |coef1| $)) $ $)) (-15 -3740 ((-2 (|:| -2056 $) (|:| |coef2| $)) $ $)) (-15 -3782 ((-2 (|:| -2210 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1976 ((-2 (|:| -2210 |#1|) (|:| |coef1| $)) $ $)) (-15 -2827 ((-2 (|:| -2210 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-973)) (T -721))
-((-3664 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-710)) (-5 *1 (-721 *3)) (-4 *3 (-973)))) (-3291 (*1 *1 *1 *1) (-12 (-5 *1 (-721 *2)) (-4 *2 (-973)))) (-2935 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-721 *3)) (|:| |polden| *3) (|:| -1301 (-710)))) (-5 *1 (-721 *3)) (-4 *3 (-973)))) (-1693 (*1 *1 *1 *1) (-12 (-5 *1 (-721 *2)) (-4 *2 (-973)))) (-3709 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2275 *3) (|:| |gap| (-710)) (|:| -3429 (-721 *3)) (|:| -3143 (-721 *3)))) (-5 *1 (-721 *3)) (-4 *3 (-973)))) (-3465 (*1 *1 *1 *1) (-12 (-5 *1 (-721 *2)) (-4 *2 (-973)))) (-2564 (*1 *2 *1 *1) (-12 (-5 *2 (-589 (-721 *3))) (-5 *1 (-721 *3)) (-4 *3 (-515)) (-4 *3 (-973)))) (-3216 (*1 *1 *1 *1) (-12 (-5 *1 (-721 *2)) (-4 *2 (-515)) (-4 *2 (-973)))) (-3747 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2056 (-721 *3)) (|:| |coef1| (-721 *3)) (|:| |coef2| (-721 *3)))) (-5 *1 (-721 *3)) (-4 *3 (-515)) (-4 *3 (-973)))) (-2440 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2056 (-721 *3)) (|:| |coef1| (-721 *3)))) (-5 *1 (-721 *3)) (-4 *3 (-515)) (-4 *3 (-973)))) (-3740 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2056 (-721 *3)) (|:| |coef2| (-721 *3)))) (-5 *1 (-721 *3)) (-4 *3 (-515)) (-4 *3 (-973)))) (-3782 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2210 *3) (|:| |coef1| (-721 *3)) (|:| |coef2| (-721 *3)))) (-5 *1 (-721 *3)) (-4 *3 (-515)) (-4 *3 (-973)))) (-1976 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2210 *3) (|:| |coef1| (-721 *3)))) (-5 *1 (-721 *3)) (-4 *3 (-515)) (-4 *3 (-973)))) (-2827 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2210 *3) (|:| |coef2| (-721 *3)))) (-5 *1 (-721 *3)) (-4 *3 (-515)) (-4 *3 (-973)))))
-(-13 (-1145 |#1|) (-563 (-1083 |#1|)) (-964 (-1083 |#1|)) (-10 -8 (-15 -3664 ($ $ (-710) |#1| $)) (-15 -3291 ($ $ $)) (-15 -2935 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1301 (-710))) $ $)) (-15 -1693 ($ $ $)) (-15 -3709 ((-2 (|:| -2275 |#1|) (|:| |gap| (-710)) (|:| -3429 $) (|:| -3143 $)) $ $)) (-15 -3465 ($ $ $)) (IF (|has| |#1| (-515)) (PROGN (-15 -2564 ((-589 $) $ $)) (-15 -3216 ($ $ $)) (-15 -3747 ((-2 (|:| -2056 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2440 ((-2 (|:| -2056 $) (|:| |coef1| $)) $ $)) (-15 -3740 ((-2 (|:| -2056 $) (|:| |coef2| $)) $ $)) (-15 -3782 ((-2 (|:| -2210 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1976 ((-2 (|:| -2210 |#1|) (|:| |coef1| $)) $ $)) (-15 -2827 ((-2 (|:| -2210 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
-((-1786 ((|#1| (-710) |#1|) 32 (|has| |#1| (-37 (-383 (-523)))))) (-4022 ((|#1| (-710) |#1|) 22)) (-2689 ((|#1| (-710) |#1|) 34 (|has| |#1| (-37 (-383 (-523)))))))
-(((-722 |#1|) (-10 -7 (-15 -4022 (|#1| (-710) |#1|)) (IF (|has| |#1| (-37 (-383 (-523)))) (PROGN (-15 -2689 (|#1| (-710) |#1|)) (-15 -1786 (|#1| (-710) |#1|))) |%noBranch|)) (-158)) (T -722))
-((-1786 (*1 *2 *3 *2) (-12 (-5 *3 (-710)) (-5 *1 (-722 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-158)))) (-2689 (*1 *2 *3 *2) (-12 (-5 *3 (-710)) (-5 *1 (-722 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-158)))) (-4022 (*1 *2 *3 *2) (-12 (-5 *3 (-710)) (-5 *1 (-722 *2)) (-4 *2 (-158)))))
-(-10 -7 (-15 -4022 (|#1| (-710) |#1|)) (IF (|has| |#1| (-37 (-383 (-523)))) (PROGN (-15 -2689 (|#1| (-710) |#1|)) (-15 -1786 (|#1| (-710) |#1|))) |%noBranch|))
-((-3260 (((-108) $ $) 7)) (-2778 (((-589 (-2 (|:| -3922 $) (|:| -3439 (-589 |#4|)))) (-589 |#4|)) 85)) (-2311 (((-589 $) (-589 |#4|)) 86) (((-589 $) (-589 |#4|) (-108)) 111)) (-3716 (((-589 |#3|) $) 33)) (-2011 (((-108) $) 26)) (-2821 (((-108) $) 17 (|has| |#1| (-515)))) (-3103 (((-108) |#4| $) 101) (((-108) $) 97)) (-4165 ((|#4| |#4| $) 92)) (-3763 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 $))) |#4| $) 126)) (-3400 (((-2 (|:| |under| $) (|:| -1250 $) (|:| |upper| $)) $ |#3|) 27)) (-2282 (((-108) $ (-710)) 44)) (-1299 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4248))) (((-3 |#4| "failed") $ |#3|) 79)) (-1640 (($) 45 T CONST)) (-1619 (((-108) $) 22 (|has| |#1| (-515)))) (-2927 (((-108) $ $) 24 (|has| |#1| (-515)))) (-3685 (((-108) $ $) 23 (|has| |#1| (-515)))) (-2457 (((-108) $) 25 (|has| |#1| (-515)))) (-3021 (((-589 |#4|) (-589 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-2341 (((-589 |#4|) (-589 |#4|) $) 18 (|has| |#1| (-515)))) (-3450 (((-589 |#4|) (-589 |#4|) $) 19 (|has| |#1| (-515)))) (-2898 (((-3 $ "failed") (-589 |#4|)) 36)) (-1996 (($ (-589 |#4|)) 35)) (-3891 (((-3 $ "failed") $) 82)) (-3880 ((|#4| |#4| $) 89)) (-3917 (($ $) 68 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ |#4| $) 67 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4248)))) (-3143 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-515)))) (-3605 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-3058 ((|#4| |#4| $) 87)) (-1830 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4248))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4248))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-3161 (((-2 (|:| -3922 (-589 |#4|)) (|:| -3439 (-589 |#4|))) $) 105)) (-2422 (((-108) |#4| $) 136)) (-4171 (((-108) |#4| $) 133)) (-3004 (((-108) |#4| $) 137) (((-108) $) 134)) (-3133 (((-589 |#4|) $) 52 (|has| $ (-6 -4248)))) (-2407 (((-108) |#4| $) 104) (((-108) $) 103)) (-2694 ((|#3| $) 34)) (-1344 (((-108) $ (-710)) 43)) (-3056 (((-589 |#4|) $) 53 (|has| $ (-6 -4248)))) (-1348 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#4| |#4|) $) 47)) (-4100 (((-589 |#3|) $) 32)) (-2863 (((-108) |#3| $) 31)) (-4042 (((-108) $ (-710)) 42)) (-3841 (((-1070) $) 9)) (-3726 (((-3 |#4| (-589 $)) |#4| |#4| $) 128)) (-3216 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 $))) |#4| |#4| $) 127)) (-2247 (((-3 |#4| "failed") $) 83)) (-2818 (((-589 $) |#4| $) 129)) (-1446 (((-3 (-108) (-589 $)) |#4| $) 132)) (-4226 (((-589 (-2 (|:| |val| (-108)) (|:| -2394 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-1625 (((-589 $) |#4| $) 125) (((-589 $) (-589 |#4|) $) 124) (((-589 $) (-589 |#4|) (-589 $)) 123) (((-589 $) |#4| (-589 $)) 122)) (-2795 (($ |#4| $) 117) (($ (-589 |#4|) $) 116)) (-3403 (((-589 |#4|) $) 107)) (-3761 (((-108) |#4| $) 99) (((-108) $) 95)) (-1728 ((|#4| |#4| $) 90)) (-1454 (((-108) $ $) 110)) (-1916 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-515)))) (-2152 (((-108) |#4| $) 100) (((-108) $) 96)) (-2347 ((|#4| |#4| $) 91)) (-2435 (((-1034) $) 10)) (-3879 (((-3 |#4| "failed") $) 84)) (-2660 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-2594 (((-3 $ "failed") $ |#4|) 78)) (-1361 (($ $ |#4|) 77) (((-589 $) |#4| $) 115) (((-589 $) |#4| (-589 $)) 114) (((-589 $) (-589 |#4|) $) 113) (((-589 $) (-589 |#4|) (-589 $)) 112)) (-2720 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 |#4|) (-589 |#4|)) 59 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-271 |#4|)) 57 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-589 (-271 |#4|))) 56 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))) (-2391 (((-108) $ $) 38)) (-3163 (((-108) $) 41)) (-4055 (($) 40)) (-1487 (((-710) $) 106)) (-2452 (((-710) |#4| $) 54 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) (((-710) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4248)))) (-4124 (($ $) 39)) (-3077 (((-499) $) 69 (|has| |#4| (-564 (-499))))) (-3985 (($ (-589 |#4|)) 60)) (-4135 (($ $ |#3|) 28)) (-1318 (($ $ |#3|) 30)) (-3444 (($ $) 88)) (-2023 (($ $ |#3|) 29)) (-3976 (((-794) $) 11) (((-589 |#4|) $) 37)) (-3221 (((-710) $) 76 (|has| |#3| (-344)))) (-2459 (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-3442 (((-108) $ (-1 (-108) |#4| (-589 |#4|))) 98)) (-1611 (((-589 $) |#4| $) 121) (((-589 $) |#4| (-589 $)) 120) (((-589 $) (-589 |#4|) $) 119) (((-589 $) (-589 |#4|) (-589 $)) 118)) (-1505 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4248)))) (-2969 (((-589 |#3|) $) 81)) (-3553 (((-108) |#4| $) 135)) (-4079 (((-108) |#3| $) 80)) (-4037 (((-108) $ $) 6)) (-1271 (((-710) $) 46 (|has| $ (-6 -4248)))))
-(((-723 |#1| |#2| |#3| |#4|) (-129) (-427) (-732) (-786) (-987 |t#1| |t#2| |t#3|)) (T -723))
-NIL
-(-13 (-992 |t#1| |t#2| |t#3| |t#4|))
-(((-33) . T) ((-97) . T) ((-563 (-589 |#4|)) . T) ((-563 (-794)) . T) ((-140 |#4|) . T) ((-564 (-499)) |has| |#4| (-564 (-499))) ((-286 |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))) ((-462 |#4|) . T) ((-484 |#4| |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))) ((-905 |#1| |#2| |#3| |#4|) . T) ((-992 |#1| |#2| |#3| |#4|) . T) ((-1016) . T) ((-1117 |#1| |#2| |#3| |#4|) . T) ((-1123) . T))
-((-2190 (((-3 (-355) "failed") (-292 |#1|) (-852)) 60 (-12 (|has| |#1| (-515)) (|has| |#1| (-786)))) (((-3 (-355) "failed") (-292 |#1|)) 52 (-12 (|has| |#1| (-515)) (|has| |#1| (-786)))) (((-3 (-355) "failed") (-383 (-883 |#1|)) (-852)) 39 (|has| |#1| (-515))) (((-3 (-355) "failed") (-383 (-883 |#1|))) 35 (|has| |#1| (-515))) (((-3 (-355) "failed") (-883 |#1|) (-852)) 30 (|has| |#1| (-973))) (((-3 (-355) "failed") (-883 |#1|)) 24 (|has| |#1| (-973)))) (-3410 (((-355) (-292 |#1|) (-852)) 92 (-12 (|has| |#1| (-515)) (|has| |#1| (-786)))) (((-355) (-292 |#1|)) 87 (-12 (|has| |#1| (-515)) (|has| |#1| (-786)))) (((-355) (-383 (-883 |#1|)) (-852)) 84 (|has| |#1| (-515))) (((-355) (-383 (-883 |#1|))) 81 (|has| |#1| (-515))) (((-355) (-883 |#1|) (-852)) 80 (|has| |#1| (-973))) (((-355) (-883 |#1|)) 77 (|has| |#1| (-973))) (((-355) |#1| (-852)) 73) (((-355) |#1|) 22)) (-3137 (((-3 (-155 (-355)) "failed") (-292 (-155 |#1|)) (-852)) 68 (-12 (|has| |#1| (-515)) (|has| |#1| (-786)))) (((-3 (-155 (-355)) "failed") (-292 (-155 |#1|))) 58 (-12 (|has| |#1| (-515)) (|has| |#1| (-786)))) (((-3 (-155 (-355)) "failed") (-292 |#1|) (-852)) 61 (-12 (|has| |#1| (-515)) (|has| |#1| (-786)))) (((-3 (-155 (-355)) "failed") (-292 |#1|)) 59 (-12 (|has| |#1| (-515)) (|has| |#1| (-786)))) (((-3 (-155 (-355)) "failed") (-383 (-883 (-155 |#1|))) (-852)) 44 (|has| |#1| (-515))) (((-3 (-155 (-355)) "failed") (-383 (-883 (-155 |#1|)))) 43 (|has| |#1| (-515))) (((-3 (-155 (-355)) "failed") (-383 (-883 |#1|)) (-852)) 38 (|has| |#1| (-515))) (((-3 (-155 (-355)) "failed") (-383 (-883 |#1|))) 37 (|has| |#1| (-515))) (((-3 (-155 (-355)) "failed") (-883 |#1|) (-852)) 28 (|has| |#1| (-973))) (((-3 (-155 (-355)) "failed") (-883 |#1|)) 26 (|has| |#1| (-973))) (((-3 (-155 (-355)) "failed") (-883 (-155 |#1|)) (-852)) 18 (|has| |#1| (-158))) (((-3 (-155 (-355)) "failed") (-883 (-155 |#1|))) 15 (|has| |#1| (-158)))) (-3504 (((-155 (-355)) (-292 (-155 |#1|)) (-852)) 95 (-12 (|has| |#1| (-515)) (|has| |#1| (-786)))) (((-155 (-355)) (-292 (-155 |#1|))) 94 (-12 (|has| |#1| (-515)) (|has| |#1| (-786)))) (((-155 (-355)) (-292 |#1|) (-852)) 93 (-12 (|has| |#1| (-515)) (|has| |#1| (-786)))) (((-155 (-355)) (-292 |#1|)) 91 (-12 (|has| |#1| (-515)) (|has| |#1| (-786)))) (((-155 (-355)) (-383 (-883 (-155 |#1|))) (-852)) 86 (|has| |#1| (-515))) (((-155 (-355)) (-383 (-883 (-155 |#1|)))) 85 (|has| |#1| (-515))) (((-155 (-355)) (-383 (-883 |#1|)) (-852)) 83 (|has| |#1| (-515))) (((-155 (-355)) (-383 (-883 |#1|))) 82 (|has| |#1| (-515))) (((-155 (-355)) (-883 |#1|) (-852)) 79 (|has| |#1| (-973))) (((-155 (-355)) (-883 |#1|)) 78 (|has| |#1| (-973))) (((-155 (-355)) (-883 (-155 |#1|)) (-852)) 75 (|has| |#1| (-158))) (((-155 (-355)) (-883 (-155 |#1|))) 74 (|has| |#1| (-158))) (((-155 (-355)) (-155 |#1|) (-852)) 17 (|has| |#1| (-158))) (((-155 (-355)) (-155 |#1|)) 13 (|has| |#1| (-158))) (((-155 (-355)) |#1| (-852)) 27) (((-155 (-355)) |#1|) 25)))
-(((-724 |#1|) (-10 -7 (-15 -3410 ((-355) |#1|)) (-15 -3410 ((-355) |#1| (-852))) (-15 -3504 ((-155 (-355)) |#1|)) (-15 -3504 ((-155 (-355)) |#1| (-852))) (IF (|has| |#1| (-158)) (PROGN (-15 -3504 ((-155 (-355)) (-155 |#1|))) (-15 -3504 ((-155 (-355)) (-155 |#1|) (-852))) (-15 -3504 ((-155 (-355)) (-883 (-155 |#1|)))) (-15 -3504 ((-155 (-355)) (-883 (-155 |#1|)) (-852)))) |%noBranch|) (IF (|has| |#1| (-973)) (PROGN (-15 -3410 ((-355) (-883 |#1|))) (-15 -3410 ((-355) (-883 |#1|) (-852))) (-15 -3504 ((-155 (-355)) (-883 |#1|))) (-15 -3504 ((-155 (-355)) (-883 |#1|) (-852)))) |%noBranch|) (IF (|has| |#1| (-515)) (PROGN (-15 -3410 ((-355) (-383 (-883 |#1|)))) (-15 -3410 ((-355) (-383 (-883 |#1|)) (-852))) (-15 -3504 ((-155 (-355)) (-383 (-883 |#1|)))) (-15 -3504 ((-155 (-355)) (-383 (-883 |#1|)) (-852))) (-15 -3504 ((-155 (-355)) (-383 (-883 (-155 |#1|))))) (-15 -3504 ((-155 (-355)) (-383 (-883 (-155 |#1|))) (-852))) (IF (|has| |#1| (-786)) (PROGN (-15 -3410 ((-355) (-292 |#1|))) (-15 -3410 ((-355) (-292 |#1|) (-852))) (-15 -3504 ((-155 (-355)) (-292 |#1|))) (-15 -3504 ((-155 (-355)) (-292 |#1|) (-852))) (-15 -3504 ((-155 (-355)) (-292 (-155 |#1|)))) (-15 -3504 ((-155 (-355)) (-292 (-155 |#1|)) (-852)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-158)) (PROGN (-15 -3137 ((-3 (-155 (-355)) "failed") (-883 (-155 |#1|)))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-883 (-155 |#1|)) (-852)))) |%noBranch|) (IF (|has| |#1| (-973)) (PROGN (-15 -2190 ((-3 (-355) "failed") (-883 |#1|))) (-15 -2190 ((-3 (-355) "failed") (-883 |#1|) (-852))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-883 |#1|))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-883 |#1|) (-852)))) |%noBranch|) (IF (|has| |#1| (-515)) (PROGN (-15 -2190 ((-3 (-355) "failed") (-383 (-883 |#1|)))) (-15 -2190 ((-3 (-355) "failed") (-383 (-883 |#1|)) (-852))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-383 (-883 |#1|)))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-383 (-883 |#1|)) (-852))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-383 (-883 (-155 |#1|))))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-383 (-883 (-155 |#1|))) (-852))) (IF (|has| |#1| (-786)) (PROGN (-15 -2190 ((-3 (-355) "failed") (-292 |#1|))) (-15 -2190 ((-3 (-355) "failed") (-292 |#1|) (-852))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-292 |#1|))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-292 |#1|) (-852))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-292 (-155 |#1|)))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-292 (-155 |#1|)) (-852)))) |%noBranch|)) |%noBranch|)) (-564 (-355))) (T -724))
-((-3137 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-292 (-155 *5))) (-5 *4 (-852)) (-4 *5 (-515)) (-4 *5 (-786)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5)))) (-3137 (*1 *2 *3) (|partial| -12 (-5 *3 (-292 (-155 *4))) (-4 *4 (-515)) (-4 *4 (-786)) (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4)))) (-3137 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-292 *5)) (-5 *4 (-852)) (-4 *5 (-515)) (-4 *5 (-786)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5)))) (-3137 (*1 *2 *3) (|partial| -12 (-5 *3 (-292 *4)) (-4 *4 (-515)) (-4 *4 (-786)) (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4)))) (-2190 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-292 *5)) (-5 *4 (-852)) (-4 *5 (-515)) (-4 *5 (-786)) (-4 *5 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *5)))) (-2190 (*1 *2 *3) (|partial| -12 (-5 *3 (-292 *4)) (-4 *4 (-515)) (-4 *4 (-786)) (-4 *4 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *4)))) (-3137 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-383 (-883 (-155 *5)))) (-5 *4 (-852)) (-4 *5 (-515)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5)))) (-3137 (*1 *2 *3) (|partial| -12 (-5 *3 (-383 (-883 (-155 *4)))) (-4 *4 (-515)) (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4)))) (-3137 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-852)) (-4 *5 (-515)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5)))) (-3137 (*1 *2 *3) (|partial| -12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-515)) (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4)))) (-2190 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-852)) (-4 *5 (-515)) (-4 *5 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *5)))) (-2190 (*1 *2 *3) (|partial| -12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-515)) (-4 *4 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *4)))) (-3137 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-883 *5)) (-5 *4 (-852)) (-4 *5 (-973)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5)))) (-3137 (*1 *2 *3) (|partial| -12 (-5 *3 (-883 *4)) (-4 *4 (-973)) (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4)))) (-2190 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-883 *5)) (-5 *4 (-852)) (-4 *5 (-973)) (-4 *5 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *5)))) (-2190 (*1 *2 *3) (|partial| -12 (-5 *3 (-883 *4)) (-4 *4 (-973)) (-4 *4 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *4)))) (-3137 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-883 (-155 *5))) (-5 *4 (-852)) (-4 *5 (-158)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5)))) (-3137 (*1 *2 *3) (|partial| -12 (-5 *3 (-883 (-155 *4))) (-4 *4 (-158)) (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4)))) (-3504 (*1 *2 *3 *4) (-12 (-5 *3 (-292 (-155 *5))) (-5 *4 (-852)) (-4 *5 (-515)) (-4 *5 (-786)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5)))) (-3504 (*1 *2 *3) (-12 (-5 *3 (-292 (-155 *4))) (-4 *4 (-515)) (-4 *4 (-786)) (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4)))) (-3504 (*1 *2 *3 *4) (-12 (-5 *3 (-292 *5)) (-5 *4 (-852)) (-4 *5 (-515)) (-4 *5 (-786)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5)))) (-3504 (*1 *2 *3) (-12 (-5 *3 (-292 *4)) (-4 *4 (-515)) (-4 *4 (-786)) (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4)))) (-3410 (*1 *2 *3 *4) (-12 (-5 *3 (-292 *5)) (-5 *4 (-852)) (-4 *5 (-515)) (-4 *5 (-786)) (-4 *5 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *5)))) (-3410 (*1 *2 *3) (-12 (-5 *3 (-292 *4)) (-4 *4 (-515)) (-4 *4 (-786)) (-4 *4 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *4)))) (-3504 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-883 (-155 *5)))) (-5 *4 (-852)) (-4 *5 (-515)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5)))) (-3504 (*1 *2 *3) (-12 (-5 *3 (-383 (-883 (-155 *4)))) (-4 *4 (-515)) (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4)))) (-3504 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-852)) (-4 *5 (-515)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5)))) (-3504 (*1 *2 *3) (-12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-515)) (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4)))) (-3410 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-852)) (-4 *5 (-515)) (-4 *5 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *5)))) (-3410 (*1 *2 *3) (-12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-515)) (-4 *4 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *4)))) (-3504 (*1 *2 *3 *4) (-12 (-5 *3 (-883 *5)) (-5 *4 (-852)) (-4 *5 (-973)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5)))) (-3504 (*1 *2 *3) (-12 (-5 *3 (-883 *4)) (-4 *4 (-973)) (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4)))) (-3410 (*1 *2 *3 *4) (-12 (-5 *3 (-883 *5)) (-5 *4 (-852)) (-4 *5 (-973)) (-4 *5 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *5)))) (-3410 (*1 *2 *3) (-12 (-5 *3 (-883 *4)) (-4 *4 (-973)) (-4 *4 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *4)))) (-3504 (*1 *2 *3 *4) (-12 (-5 *3 (-883 (-155 *5))) (-5 *4 (-852)) (-4 *5 (-158)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5)))) (-3504 (*1 *2 *3) (-12 (-5 *3 (-883 (-155 *4))) (-4 *4 (-158)) (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4)))) (-3504 (*1 *2 *3 *4) (-12 (-5 *3 (-155 *5)) (-5 *4 (-852)) (-4 *5 (-158)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5)))) (-3504 (*1 *2 *3) (-12 (-5 *3 (-155 *4)) (-4 *4 (-158)) (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4)))) (-3504 (*1 *2 *3 *4) (-12 (-5 *4 (-852)) (-5 *2 (-155 (-355))) (-5 *1 (-724 *3)) (-4 *3 (-564 (-355))))) (-3504 (*1 *2 *3) (-12 (-5 *2 (-155 (-355))) (-5 *1 (-724 *3)) (-4 *3 (-564 (-355))))) (-3410 (*1 *2 *3 *4) (-12 (-5 *4 (-852)) (-5 *2 (-355)) (-5 *1 (-724 *3)) (-4 *3 (-564 *2)))) (-3410 (*1 *2 *3) (-12 (-5 *2 (-355)) (-5 *1 (-724 *3)) (-4 *3 (-564 *2)))))
-(-10 -7 (-15 -3410 ((-355) |#1|)) (-15 -3410 ((-355) |#1| (-852))) (-15 -3504 ((-155 (-355)) |#1|)) (-15 -3504 ((-155 (-355)) |#1| (-852))) (IF (|has| |#1| (-158)) (PROGN (-15 -3504 ((-155 (-355)) (-155 |#1|))) (-15 -3504 ((-155 (-355)) (-155 |#1|) (-852))) (-15 -3504 ((-155 (-355)) (-883 (-155 |#1|)))) (-15 -3504 ((-155 (-355)) (-883 (-155 |#1|)) (-852)))) |%noBranch|) (IF (|has| |#1| (-973)) (PROGN (-15 -3410 ((-355) (-883 |#1|))) (-15 -3410 ((-355) (-883 |#1|) (-852))) (-15 -3504 ((-155 (-355)) (-883 |#1|))) (-15 -3504 ((-155 (-355)) (-883 |#1|) (-852)))) |%noBranch|) (IF (|has| |#1| (-515)) (PROGN (-15 -3410 ((-355) (-383 (-883 |#1|)))) (-15 -3410 ((-355) (-383 (-883 |#1|)) (-852))) (-15 -3504 ((-155 (-355)) (-383 (-883 |#1|)))) (-15 -3504 ((-155 (-355)) (-383 (-883 |#1|)) (-852))) (-15 -3504 ((-155 (-355)) (-383 (-883 (-155 |#1|))))) (-15 -3504 ((-155 (-355)) (-383 (-883 (-155 |#1|))) (-852))) (IF (|has| |#1| (-786)) (PROGN (-15 -3410 ((-355) (-292 |#1|))) (-15 -3410 ((-355) (-292 |#1|) (-852))) (-15 -3504 ((-155 (-355)) (-292 |#1|))) (-15 -3504 ((-155 (-355)) (-292 |#1|) (-852))) (-15 -3504 ((-155 (-355)) (-292 (-155 |#1|)))) (-15 -3504 ((-155 (-355)) (-292 (-155 |#1|)) (-852)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-158)) (PROGN (-15 -3137 ((-3 (-155 (-355)) "failed") (-883 (-155 |#1|)))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-883 (-155 |#1|)) (-852)))) |%noBranch|) (IF (|has| |#1| (-973)) (PROGN (-15 -2190 ((-3 (-355) "failed") (-883 |#1|))) (-15 -2190 ((-3 (-355) "failed") (-883 |#1|) (-852))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-883 |#1|))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-883 |#1|) (-852)))) |%noBranch|) (IF (|has| |#1| (-515)) (PROGN (-15 -2190 ((-3 (-355) "failed") (-383 (-883 |#1|)))) (-15 -2190 ((-3 (-355) "failed") (-383 (-883 |#1|)) (-852))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-383 (-883 |#1|)))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-383 (-883 |#1|)) (-852))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-383 (-883 (-155 |#1|))))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-383 (-883 (-155 |#1|))) (-852))) (IF (|has| |#1| (-786)) (PROGN (-15 -2190 ((-3 (-355) "failed") (-292 |#1|))) (-15 -2190 ((-3 (-355) "failed") (-292 |#1|) (-852))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-292 |#1|))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-292 |#1|) (-852))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-292 (-155 |#1|)))) (-15 -3137 ((-3 (-155 (-355)) "failed") (-292 (-155 |#1|)) (-852)))) |%noBranch|)) |%noBranch|))
-((-1524 (((-852) (-1070)) 65)) (-1826 (((-3 (-355) "failed") (-1070)) 33)) (-1568 (((-355) (-1070)) 31)) (-3648 (((-852) (-1070)) 54)) (-2100 (((-1070) (-852)) 55)) (-1375 (((-1070) (-852)) 53)))
-(((-725) (-10 -7 (-15 -1375 ((-1070) (-852))) (-15 -3648 ((-852) (-1070))) (-15 -2100 ((-1070) (-852))) (-15 -1524 ((-852) (-1070))) (-15 -1568 ((-355) (-1070))) (-15 -1826 ((-3 (-355) "failed") (-1070))))) (T -725))
-((-1826 (*1 *2 *3) (|partial| -12 (-5 *3 (-1070)) (-5 *2 (-355)) (-5 *1 (-725)))) (-1568 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-355)) (-5 *1 (-725)))) (-1524 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-852)) (-5 *1 (-725)))) (-2100 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1070)) (-5 *1 (-725)))) (-3648 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-852)) (-5 *1 (-725)))) (-1375 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1070)) (-5 *1 (-725)))))
-(-10 -7 (-15 -1375 ((-1070) (-852))) (-15 -3648 ((-852) (-1070))) (-15 -2100 ((-1070) (-852))) (-15 -1524 ((-852) (-1070))) (-15 -1568 ((-355) (-1070))) (-15 -1826 ((-3 (-355) "failed") (-1070))))
-((-3260 (((-108) $ $) 7)) (-3499 (((-962) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) 15) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)) 13)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 16) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 14)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-4037 (((-108) $ $) 6)))
-(((-726) (-129)) (T -726))
-((-3359 (*1 *2 *3 *4) (-12 (-4 *1 (-726)) (-5 *3 (-985)) (-5 *4 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962)))))) (-3499 (*1 *2 *3 *2) (-12 (-4 *1 (-726)) (-5 *2 (-962)) (-5 *3 (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))))) (-3359 (*1 *2 *3 *4) (-12 (-4 *1 (-726)) (-5 *3 (-985)) (-5 *4 (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962)))))) (-3499 (*1 *2 *3 *2) (-12 (-4 *1 (-726)) (-5 *2 (-962)) (-5 *3 (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))))))
-(-13 (-1016) (-10 -7 (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3499 ((-962) (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203))) (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)) (|:| |extra| (-962))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3499 ((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) (-962)))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-2692 (((-1174) (-1169 (-355)) (-523) (-355) (-2 (|:| |try| (-355)) (|:| |did| (-355)) (|:| -2025 (-355))) (-355) (-1169 (-355)) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355))) 44) (((-1174) (-1169 (-355)) (-523) (-355) (-2 (|:| |try| (-355)) (|:| |did| (-355)) (|:| -2025 (-355))) (-355) (-1169 (-355)) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355))) 43)) (-3139 (((-1174) (-1169 (-355)) (-523) (-355) (-355) (-523) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355))) 50)) (-2410 (((-1174) (-1169 (-355)) (-523) (-355) (-355) (-355) (-355) (-523) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355))) 41)) (-2150 (((-1174) (-1169 (-355)) (-523) (-355) (-355) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355))) 52) (((-1174) (-1169 (-355)) (-523) (-355) (-355) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355))) 51)))
-(((-727) (-10 -7 (-15 -2150 ((-1174) (-1169 (-355)) (-523) (-355) (-355) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355)))) (-15 -2150 ((-1174) (-1169 (-355)) (-523) (-355) (-355) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)))) (-15 -2410 ((-1174) (-1169 (-355)) (-523) (-355) (-355) (-355) (-355) (-523) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355)))) (-15 -2692 ((-1174) (-1169 (-355)) (-523) (-355) (-2 (|:| |try| (-355)) (|:| |did| (-355)) (|:| -2025 (-355))) (-355) (-1169 (-355)) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355)))) (-15 -2692 ((-1174) (-1169 (-355)) (-523) (-355) (-2 (|:| |try| (-355)) (|:| |did| (-355)) (|:| -2025 (-355))) (-355) (-1169 (-355)) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)))) (-15 -3139 ((-1174) (-1169 (-355)) (-523) (-355) (-355) (-523) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355)))))) (T -727))
-((-3139 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *4 (-523)) (-5 *6 (-1 (-1174) (-1169 *5) (-1169 *5) (-355))) (-5 *3 (-1169 (-355))) (-5 *5 (-355)) (-5 *2 (-1174)) (-5 *1 (-727)))) (-2692 (*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3) (-12 (-5 *4 (-523)) (-5 *6 (-2 (|:| |try| (-355)) (|:| |did| (-355)) (|:| -2025 (-355)))) (-5 *7 (-1 (-1174) (-1169 *5) (-1169 *5) (-355))) (-5 *3 (-1169 (-355))) (-5 *5 (-355)) (-5 *2 (-1174)) (-5 *1 (-727)))) (-2692 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-523)) (-5 *6 (-2 (|:| |try| (-355)) (|:| |did| (-355)) (|:| -2025 (-355)))) (-5 *7 (-1 (-1174) (-1169 *5) (-1169 *5) (-355))) (-5 *3 (-1169 (-355))) (-5 *5 (-355)) (-5 *2 (-1174)) (-5 *1 (-727)))) (-2410 (*1 *2 *3 *4 *5 *5 *5 *5 *4 *6) (-12 (-5 *4 (-523)) (-5 *6 (-1 (-1174) (-1169 *5) (-1169 *5) (-355))) (-5 *3 (-1169 (-355))) (-5 *5 (-355)) (-5 *2 (-1174)) (-5 *1 (-727)))) (-2150 (*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3) (-12 (-5 *4 (-523)) (-5 *6 (-1 (-1174) (-1169 *5) (-1169 *5) (-355))) (-5 *3 (-1169 (-355))) (-5 *5 (-355)) (-5 *2 (-1174)) (-5 *1 (-727)))) (-2150 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-523)) (-5 *6 (-1 (-1174) (-1169 *5) (-1169 *5) (-355))) (-5 *3 (-1169 (-355))) (-5 *5 (-355)) (-5 *2 (-1174)) (-5 *1 (-727)))))
-(-10 -7 (-15 -2150 ((-1174) (-1169 (-355)) (-523) (-355) (-355) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355)))) (-15 -2150 ((-1174) (-1169 (-355)) (-523) (-355) (-355) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)))) (-15 -2410 ((-1174) (-1169 (-355)) (-523) (-355) (-355) (-355) (-355) (-523) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355)))) (-15 -2692 ((-1174) (-1169 (-355)) (-523) (-355) (-2 (|:| |try| (-355)) (|:| |did| (-355)) (|:| -2025 (-355))) (-355) (-1169 (-355)) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355)))) (-15 -2692 ((-1174) (-1169 (-355)) (-523) (-355) (-2 (|:| |try| (-355)) (|:| |did| (-355)) (|:| -2025 (-355))) (-355) (-1169 (-355)) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)) (-1169 (-355)))) (-15 -3139 ((-1174) (-1169 (-355)) (-523) (-355) (-355) (-523) (-1 (-1174) (-1169 (-355)) (-1169 (-355)) (-355)))))
-((-2303 (((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523)) 53)) (-3361 (((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523)) 31)) (-2984 (((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523)) 52)) (-2379 (((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523)) 29)) (-2300 (((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523)) 51)) (-3003 (((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523)) 19)) (-2125 (((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523) (-523)) 32)) (-2168 (((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523) (-523)) 30)) (-2990 (((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523) (-523)) 28)))
-(((-728) (-10 -7 (-15 -2990 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523) (-523))) (-15 -2168 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523) (-523))) (-15 -2125 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523) (-523))) (-15 -3003 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523))) (-15 -2379 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523))) (-15 -3361 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523))) (-15 -2300 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523))) (-15 -2984 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523))) (-15 -2303 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523))))) (T -728))
-((-2303 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355)) (-5 *2 (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523)) (|:| |success| (-108)))) (-5 *1 (-728)) (-5 *5 (-523)))) (-2984 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355)) (-5 *2 (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523)) (|:| |success| (-108)))) (-5 *1 (-728)) (-5 *5 (-523)))) (-2300 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355)) (-5 *2 (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523)) (|:| |success| (-108)))) (-5 *1 (-728)) (-5 *5 (-523)))) (-3361 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355)) (-5 *2 (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523)) (|:| |success| (-108)))) (-5 *1 (-728)) (-5 *5 (-523)))) (-2379 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355)) (-5 *2 (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523)) (|:| |success| (-108)))) (-5 *1 (-728)) (-5 *5 (-523)))) (-3003 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355)) (-5 *2 (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523)) (|:| |success| (-108)))) (-5 *1 (-728)) (-5 *5 (-523)))) (-2125 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355)) (-5 *2 (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523)) (|:| |success| (-108)))) (-5 *1 (-728)) (-5 *5 (-523)))) (-2168 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355)) (-5 *2 (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523)) (|:| |success| (-108)))) (-5 *1 (-728)) (-5 *5 (-523)))) (-2990 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355)) (-5 *2 (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523)) (|:| |success| (-108)))) (-5 *1 (-728)) (-5 *5 (-523)))))
-(-10 -7 (-15 -2990 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523) (-523))) (-15 -2168 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523) (-523))) (-15 -2125 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523) (-523))) (-15 -3003 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523))) (-15 -2379 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523))) (-15 -3361 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523))) (-15 -2300 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523))) (-15 -2984 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523))) (-15 -2303 ((-2 (|:| -2058 (-355)) (|:| -2052 (-355)) (|:| |totalpts| (-523)) (|:| |success| (-108))) (-1 (-355) (-355)) (-355) (-355) (-355) (-355) (-523) (-523))))
-((-1939 (((-1119 |#1|) |#1| (-203) (-523)) 46)))
-(((-729 |#1|) (-10 -7 (-15 -1939 ((-1119 |#1|) |#1| (-203) (-523)))) (-903)) (T -729))
-((-1939 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-203)) (-5 *5 (-523)) (-5 *2 (-1119 *3)) (-5 *1 (-729 *3)) (-4 *3 (-903)))))
-(-10 -7 (-15 -1939 ((-1119 |#1|) |#1| (-203) (-523))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 24)) (-2999 (((-3 $ "failed") $ $) 26)) (-1640 (($) 23 T CONST)) (-3268 (($ $ $) 13)) (-2644 (($ $ $) 14)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-1428 (($) 22 T CONST)) (-4078 (((-108) $ $) 16)) (-4061 (((-108) $ $) 17)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 15)) (-4052 (((-108) $ $) 18)) (-4115 (($ $ $) 28) (($ $) 27)) (-4103 (($ $ $) 20)) (* (($ (-710) $) 25) (($ (-852) $) 21) (($ (-523) $) 29)))
-(((-730) (-129)) (T -730))
-NIL
-(-13 (-734) (-21))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-731) . T) ((-733) . T) ((-734) . T) ((-786) . T) ((-1016) . T))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 24)) (-1640 (($) 23 T CONST)) (-3268 (($ $ $) 13)) (-2644 (($ $ $) 14)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-1428 (($) 22 T CONST)) (-4078 (((-108) $ $) 16)) (-4061 (((-108) $ $) 17)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 15)) (-4052 (((-108) $ $) 18)) (-4103 (($ $ $) 20)) (* (($ (-710) $) 25) (($ (-852) $) 21)))
-(((-731) (-129)) (T -731))
-NIL
-(-13 (-733) (-23))
-(((-23) . T) ((-25) . T) ((-97) . T) ((-563 (-794)) . T) ((-733) . T) ((-786) . T) ((-1016) . T))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 24)) (-1773 (($ $ $) 27)) (-2999 (((-3 $ "failed") $ $) 26)) (-1640 (($) 23 T CONST)) (-3268 (($ $ $) 13)) (-2644 (($ $ $) 14)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-1428 (($) 22 T CONST)) (-4078 (((-108) $ $) 16)) (-4061 (((-108) $ $) 17)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 15)) (-4052 (((-108) $ $) 18)) (-4103 (($ $ $) 20)) (* (($ (-710) $) 25) (($ (-852) $) 21)))
-(((-732) (-129)) (T -732))
-((-1773 (*1 *1 *1 *1) (-4 *1 (-732))))
-(-13 (-734) (-10 -8 (-15 -1773 ($ $ $))))
-(((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-731) . T) ((-733) . T) ((-734) . T) ((-786) . T) ((-1016) . T))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 24)) (-1640 (($) 23 T CONST)) (-3268 (($ $ $) 13)) (-2644 (($ $ $) 14)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-1428 (($) 22 T CONST)) (-4078 (((-108) $ $) 16)) (-4061 (((-108) $ $) 17)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 15)) (-4052 (((-108) $ $) 18)) (-4103 (($ $ $) 20)) (* (($ (-710) $) 25) (($ (-852) $) 21)))
-(((-733) (-129)) (T -733))
-NIL
-(-13 (-786) (-23))
-(((-23) . T) ((-25) . T) ((-97) . T) ((-563 (-794)) . T) ((-786) . T) ((-1016) . T))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 24)) (-2999 (((-3 $ "failed") $ $) 26)) (-1640 (($) 23 T CONST)) (-3268 (($ $ $) 13)) (-2644 (($ $ $) 14)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-1428 (($) 22 T CONST)) (-4078 (((-108) $ $) 16)) (-4061 (((-108) $ $) 17)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 15)) (-4052 (((-108) $ $) 18)) (-4103 (($ $ $) 20)) (* (($ (-710) $) 25) (($ (-852) $) 21)))
-(((-734) (-129)) (T -734))
-NIL
-(-13 (-731) (-124))
-(((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-731) . T) ((-733) . T) ((-786) . T) ((-1016) . T))
-((-2388 (((-108) $) 41)) (-2898 (((-3 (-523) "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL) (((-3 |#2| "failed") $) 44)) (-1996 (((-523) $) NIL) (((-383 (-523)) $) NIL) ((|#2| $) 42)) (-4031 (((-3 (-383 (-523)) "failed") $) 78)) (-1310 (((-108) $) 72)) (-1600 (((-383 (-523)) $) 76)) (-2765 ((|#2| $) 26)) (-3015 (($ (-1 |#2| |#2|) $) 23)) (-3071 (($ $) 61)) (-3077 (((-499) $) 67)) (-1308 (($ $) 21)) (-3976 (((-794) $) 56) (($ (-523)) 39) (($ |#2|) 37) (($ (-383 (-523))) NIL)) (-1698 (((-710)) 10)) (-3984 ((|#2| $) 71)) (-4037 (((-108) $ $) 29)) (-4052 (((-108) $ $) 69)) (-4115 (($ $) 31) (($ $ $) NIL)) (-4103 (($ $ $) 30)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 35) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 32)))
-(((-735 |#1| |#2|) (-10 -8 (-15 -4052 ((-108) |#1| |#1|)) (-15 -3077 ((-499) |#1|)) (-15 -3071 (|#1| |#1|)) (-15 -4031 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1600 ((-383 (-523)) |#1|)) (-15 -1310 ((-108) |#1|)) (-15 -3984 (|#2| |#1|)) (-15 -2765 (|#2| |#1|)) (-15 -1308 (|#1| |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -3976 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3976 (|#1| (-523))) (-15 -1698 ((-710))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 -4115 (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 -2388 ((-108) |#1|)) (-15 * (|#1| (-852) |#1|)) (-15 -4103 (|#1| |#1| |#1|)) (-15 -3976 ((-794) |#1|)) (-15 -4037 ((-108) |#1| |#1|))) (-736 |#2|) (-158)) (T -735))
-((-1698 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-710)) (-5 *1 (-735 *3 *4)) (-4 *3 (-736 *4)))))
-(-10 -8 (-15 -4052 ((-108) |#1| |#1|)) (-15 -3077 ((-499) |#1|)) (-15 -3071 (|#1| |#1|)) (-15 -4031 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1600 ((-383 (-523)) |#1|)) (-15 -1310 ((-108) |#1|)) (-15 -3984 (|#2| |#1|)) (-15 -2765 (|#2| |#1|)) (-15 -1308 (|#1| |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -3976 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3976 (|#1| (-523))) (-15 -1698 ((-710))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 -4115 (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 -2388 ((-108) |#1|)) (-15 * (|#1| (-852) |#1|)) (-15 -4103 (|#1| |#1| |#1|)) (-15 -3976 ((-794) |#1|)) (-15 -4037 ((-108) |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-3843 (((-710)) 53 (|has| |#1| (-344)))) (-1640 (($) 17 T CONST)) (-2898 (((-3 (-523) "failed") $) 94 (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) 92 (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) 90)) (-1996 (((-523) $) 95 (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) 93 (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) 89)) (-4211 (((-3 $ "failed") $) 34)) (-3597 ((|#1| $) 79)) (-4031 (((-3 (-383 (-523)) "failed") $) 66 (|has| |#1| (-508)))) (-1310 (((-108) $) 68 (|has| |#1| (-508)))) (-1600 (((-383 (-523)) $) 67 (|has| |#1| (-508)))) (-3461 (($) 56 (|has| |#1| (-344)))) (-3482 (((-108) $) 31)) (-2413 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 70)) (-2765 ((|#1| $) 71)) (-3268 (($ $ $) 62 (|has| |#1| (-786)))) (-2644 (($ $ $) 61 (|has| |#1| (-786)))) (-3015 (($ (-1 |#1| |#1|) $) 81)) (-4076 (((-852) $) 55 (|has| |#1| (-344)))) (-3841 (((-1070) $) 9)) (-3071 (($ $) 65 (|has| |#1| (-339)))) (-2557 (($ (-852)) 54 (|has| |#1| (-344)))) (-2273 ((|#1| $) 76)) (-2707 ((|#1| $) 77)) (-2721 ((|#1| $) 78)) (-2558 ((|#1| $) 72)) (-1610 ((|#1| $) 73)) (-2637 ((|#1| $) 74)) (-1791 ((|#1| $) 75)) (-2435 (((-1034) $) 10)) (-1349 (($ $ (-589 |#1|) (-589 |#1|)) 87 (|has| |#1| (-286 |#1|))) (($ $ |#1| |#1|) 86 (|has| |#1| (-286 |#1|))) (($ $ (-271 |#1|)) 85 (|has| |#1| (-286 |#1|))) (($ $ (-589 (-271 |#1|))) 84 (|has| |#1| (-286 |#1|))) (($ $ (-589 (-1087)) (-589 |#1|)) 83 (|has| |#1| (-484 (-1087) |#1|))) (($ $ (-1087) |#1|) 82 (|has| |#1| (-484 (-1087) |#1|)))) (-1502 (($ $ |#1|) 88 (|has| |#1| (-263 |#1| |#1|)))) (-3077 (((-499) $) 63 (|has| |#1| (-564 (-499))))) (-1308 (($ $) 80)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 37) (($ (-383 (-523))) 91 (|has| |#1| (-964 (-383 (-523)))))) (-2301 (((-3 $ "failed") $) 64 (|has| |#1| (-134)))) (-1698 (((-710)) 29)) (-3984 ((|#1| $) 69 (|has| |#1| (-982)))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4078 (((-108) $ $) 59 (|has| |#1| (-786)))) (-4061 (((-108) $ $) 58 (|has| |#1| (-786)))) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 60 (|has| |#1| (-786)))) (-4052 (((-108) $ $) 57 (|has| |#1| (-786)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
-(((-736 |#1|) (-129) (-158)) (T -736))
-((-1308 (*1 *1 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)))) (-3597 (*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)))) (-2721 (*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)))) (-2707 (*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)))) (-2273 (*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)))) (-1791 (*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)))) (-2637 (*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)))) (-1610 (*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)))) (-2558 (*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)))) (-2765 (*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)))) (-2413 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)))) (-3984 (*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)) (-4 *2 (-982)))) (-1310 (*1 *2 *1) (-12 (-4 *1 (-736 *3)) (-4 *3 (-158)) (-4 *3 (-508)) (-5 *2 (-108)))) (-1600 (*1 *2 *1) (-12 (-4 *1 (-736 *3)) (-4 *3 (-158)) (-4 *3 (-508)) (-5 *2 (-383 (-523))))) (-4031 (*1 *2 *1) (|partial| -12 (-4 *1 (-736 *3)) (-4 *3 (-158)) (-4 *3 (-508)) (-5 *2 (-383 (-523))))) (-3071 (*1 *1 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)) (-4 *2 (-339)))))
-(-13 (-37 |t#1|) (-387 |t#1|) (-314 |t#1|) (-10 -8 (-15 -1308 ($ $)) (-15 -3597 (|t#1| $)) (-15 -2721 (|t#1| $)) (-15 -2707 (|t#1| $)) (-15 -2273 (|t#1| $)) (-15 -1791 (|t#1| $)) (-15 -2637 (|t#1| $)) (-15 -1610 (|t#1| $)) (-15 -2558 (|t#1| $)) (-15 -2765 (|t#1| $)) (-15 -2413 ($ |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1|)) (IF (|has| |t#1| (-344)) (-6 (-344)) |%noBranch|) (IF (|has| |t#1| (-786)) (-6 (-786)) |%noBranch|) (IF (|has| |t#1| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|) (IF (|has| |t#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |t#1| (-134)) (-6 (-134)) |%noBranch|) (IF (|has| |t#1| (-982)) (-15 -3984 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-508)) (PROGN (-15 -1310 ((-108) $)) (-15 -1600 ((-383 (-523)) $)) (-15 -4031 ((-3 (-383 (-523)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-339)) (-15 -3071 ($ $)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-263 |#1| $) |has| |#1| (-263 |#1| |#1|)) ((-286 |#1|) |has| |#1| (-286 |#1|)) ((-344) |has| |#1| (-344)) ((-314 |#1|) . T) ((-387 |#1|) . T) ((-484 (-1087) |#1|) |has| |#1| (-484 (-1087) |#1|)) ((-484 |#1| |#1|) |has| |#1| (-286 |#1|)) ((-591 |#1|) . T) ((-591 $) . T) ((-657 |#1|) . T) ((-666) . T) ((-786) |has| |#1| (-786)) ((-964 (-383 (-523))) |has| |#1| (-964 (-383 (-523)))) ((-964 (-523)) |has| |#1| (-964 (-523))) ((-964 |#1|) . T) ((-979 |#1|) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3015 ((|#3| (-1 |#4| |#2|) |#1|) 20)))
-(((-737 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3015 (|#3| (-1 |#4| |#2|) |#1|))) (-736 |#2|) (-158) (-736 |#4|) (-158)) (T -737))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-158)) (-4 *6 (-158)) (-4 *2 (-736 *6)) (-5 *1 (-737 *4 *5 *2 *6)) (-4 *4 (-736 *5)))))
-(-10 -7 (-15 -3015 (|#3| (-1 |#4| |#2|) |#1|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3843 (((-710)) NIL (|has| |#1| (-344)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL) (((-3 (-927 |#1|) "failed") $) 35) (((-3 (-523) "failed") $) NIL (-3255 (|has| (-927 |#1|) (-964 (-523))) (|has| |#1| (-964 (-523))))) (((-3 (-383 (-523)) "failed") $) NIL (-3255 (|has| (-927 |#1|) (-964 (-383 (-523)))) (|has| |#1| (-964 (-383 (-523))))))) (-1996 ((|#1| $) NIL) (((-927 |#1|) $) 33) (((-523) $) NIL (-3255 (|has| (-927 |#1|) (-964 (-523))) (|has| |#1| (-964 (-523))))) (((-383 (-523)) $) NIL (-3255 (|has| (-927 |#1|) (-964 (-383 (-523)))) (|has| |#1| (-964 (-383 (-523))))))) (-4211 (((-3 $ "failed") $) NIL)) (-3597 ((|#1| $) 16)) (-4031 (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-508)))) (-1310 (((-108) $) NIL (|has| |#1| (-508)))) (-1600 (((-383 (-523)) $) NIL (|has| |#1| (-508)))) (-3461 (($) NIL (|has| |#1| (-344)))) (-3482 (((-108) $) NIL)) (-2413 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-927 |#1|) (-927 |#1|)) 29)) (-2765 ((|#1| $) NIL)) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-4076 (((-852) $) NIL (|has| |#1| (-344)))) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL (|has| |#1| (-339)))) (-2557 (($ (-852)) NIL (|has| |#1| (-344)))) (-2273 ((|#1| $) 22)) (-2707 ((|#1| $) 20)) (-2721 ((|#1| $) 18)) (-2558 ((|#1| $) 26)) (-1610 ((|#1| $) 25)) (-2637 ((|#1| $) 24)) (-1791 ((|#1| $) 23)) (-2435 (((-1034) $) NIL)) (-1349 (($ $ (-589 |#1|) (-589 |#1|)) NIL (|has| |#1| (-286 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-286 |#1|))) (($ $ (-271 |#1|)) NIL (|has| |#1| (-286 |#1|))) (($ $ (-589 (-271 |#1|))) NIL (|has| |#1| (-286 |#1|))) (($ $ (-589 (-1087)) (-589 |#1|)) NIL (|has| |#1| (-484 (-1087) |#1|))) (($ $ (-1087) |#1|) NIL (|has| |#1| (-484 (-1087) |#1|)))) (-1502 (($ $ |#1|) NIL (|has| |#1| (-263 |#1| |#1|)))) (-3077 (((-499) $) NIL (|has| |#1| (-564 (-499))))) (-1308 (($ $) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#1|) NIL) (($ (-927 |#1|)) 30) (($ (-383 (-523))) NIL (-3255 (|has| (-927 |#1|) (-964 (-383 (-523)))) (|has| |#1| (-964 (-383 (-523))))))) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) NIL)) (-3984 ((|#1| $) NIL (|has| |#1| (-982)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 8 T CONST)) (-1440 (($) 12 T CONST)) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 40) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-738 |#1|) (-13 (-736 |#1|) (-387 (-927 |#1|)) (-10 -8 (-15 -2413 ($ (-927 |#1|) (-927 |#1|))))) (-158)) (T -738))
-((-2413 (*1 *1 *2 *2) (-12 (-5 *2 (-927 *3)) (-4 *3 (-158)) (-5 *1 (-738 *3)))))
-(-13 (-736 |#1|) (-387 (-927 |#1|)) (-10 -8 (-15 -2413 ($ (-927 |#1|) (-927 |#1|)))))
-((-3260 (((-108) $ $) 7)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 14)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-3306 (((-962) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 13)) (-4037 (((-108) $ $) 6)))
-(((-739) (-129)) (T -739))
-((-3359 (*1 *2 *3 *4) (-12 (-4 *1 (-739)) (-5 *3 (-985)) (-5 *4 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)))))) (-3306 (*1 *2 *3) (-12 (-4 *1 (-739)) (-5 *3 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-962)))))
-(-13 (-1016) (-10 -7 (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3306 ((-962) (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-1775 (((-2 (|:| |particular| |#2|) (|:| -2922 (-589 |#2|))) |#3| |#2| (-1087)) 19)))
-(((-740 |#1| |#2| |#3|) (-10 -7 (-15 -1775 ((-2 (|:| |particular| |#2|) (|:| -2922 (-589 |#2|))) |#3| |#2| (-1087)))) (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)) (-13 (-29 |#1|) (-1109) (-889)) (-599 |#2|)) (T -740))
-((-1775 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1087)) (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-4 *4 (-13 (-29 *6) (-1109) (-889))) (-5 *2 (-2 (|:| |particular| *4) (|:| -2922 (-589 *4)))) (-5 *1 (-740 *6 *4 *3)) (-4 *3 (-599 *4)))))
-(-10 -7 (-15 -1775 ((-2 (|:| |particular| |#2|) (|:| -2922 (-589 |#2|))) |#3| |#2| (-1087))))
-((-3911 (((-3 |#2| "failed") |#2| (-110) (-271 |#2|) (-589 |#2|)) 28) (((-3 |#2| "failed") (-271 |#2|) (-110) (-271 |#2|) (-589 |#2|)) 29) (((-3 (-2 (|:| |particular| |#2|) (|:| -2922 (-589 |#2|))) |#2| "failed") |#2| (-110) (-1087)) 17) (((-3 (-2 (|:| |particular| |#2|) (|:| -2922 (-589 |#2|))) |#2| "failed") (-271 |#2|) (-110) (-1087)) 18) (((-3 (-2 (|:| |particular| (-1169 |#2|)) (|:| -2922 (-589 (-1169 |#2|)))) "failed") (-589 |#2|) (-589 (-110)) (-1087)) 24) (((-3 (-2 (|:| |particular| (-1169 |#2|)) (|:| -2922 (-589 (-1169 |#2|)))) "failed") (-589 (-271 |#2|)) (-589 (-110)) (-1087)) 26) (((-3 (-589 (-1169 |#2|)) "failed") (-629 |#2|) (-1087)) 37) (((-3 (-2 (|:| |particular| (-1169 |#2|)) (|:| -2922 (-589 (-1169 |#2|)))) "failed") (-629 |#2|) (-1169 |#2|) (-1087)) 35)))
-(((-741 |#1| |#2|) (-10 -7 (-15 -3911 ((-3 (-2 (|:| |particular| (-1169 |#2|)) (|:| -2922 (-589 (-1169 |#2|)))) "failed") (-629 |#2|) (-1169 |#2|) (-1087))) (-15 -3911 ((-3 (-589 (-1169 |#2|)) "failed") (-629 |#2|) (-1087))) (-15 -3911 ((-3 (-2 (|:| |particular| (-1169 |#2|)) (|:| -2922 (-589 (-1169 |#2|)))) "failed") (-589 (-271 |#2|)) (-589 (-110)) (-1087))) (-15 -3911 ((-3 (-2 (|:| |particular| (-1169 |#2|)) (|:| -2922 (-589 (-1169 |#2|)))) "failed") (-589 |#2|) (-589 (-110)) (-1087))) (-15 -3911 ((-3 (-2 (|:| |particular| |#2|) (|:| -2922 (-589 |#2|))) |#2| "failed") (-271 |#2|) (-110) (-1087))) (-15 -3911 ((-3 (-2 (|:| |particular| |#2|) (|:| -2922 (-589 |#2|))) |#2| "failed") |#2| (-110) (-1087))) (-15 -3911 ((-3 |#2| "failed") (-271 |#2|) (-110) (-271 |#2|) (-589 |#2|))) (-15 -3911 ((-3 |#2| "failed") |#2| (-110) (-271 |#2|) (-589 |#2|)))) (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)) (-13 (-29 |#1|) (-1109) (-889))) (T -741))
-((-3911 (*1 *2 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-110)) (-5 *4 (-271 *2)) (-5 *5 (-589 *2)) (-4 *2 (-13 (-29 *6) (-1109) (-889))) (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *1 (-741 *6 *2)))) (-3911 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-271 *2)) (-5 *4 (-110)) (-5 *5 (-589 *2)) (-4 *2 (-13 (-29 *6) (-1109) (-889))) (-5 *1 (-741 *6 *2)) (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))))) (-3911 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-110)) (-5 *5 (-1087)) (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *2 (-3 (-2 (|:| |particular| *3) (|:| -2922 (-589 *3))) *3 "failed")) (-5 *1 (-741 *6 *3)) (-4 *3 (-13 (-29 *6) (-1109) (-889))))) (-3911 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-271 *7)) (-5 *4 (-110)) (-5 *5 (-1087)) (-4 *7 (-13 (-29 *6) (-1109) (-889))) (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *2 (-3 (-2 (|:| |particular| *7) (|:| -2922 (-589 *7))) *7 "failed")) (-5 *1 (-741 *6 *7)))) (-3911 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-589 *7)) (-5 *4 (-589 (-110))) (-5 *5 (-1087)) (-4 *7 (-13 (-29 *6) (-1109) (-889))) (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *2 (-2 (|:| |particular| (-1169 *7)) (|:| -2922 (-589 (-1169 *7))))) (-5 *1 (-741 *6 *7)))) (-3911 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-589 (-271 *7))) (-5 *4 (-589 (-110))) (-5 *5 (-1087)) (-4 *7 (-13 (-29 *6) (-1109) (-889))) (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *2 (-2 (|:| |particular| (-1169 *7)) (|:| -2922 (-589 (-1169 *7))))) (-5 *1 (-741 *6 *7)))) (-3911 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-629 *6)) (-5 *4 (-1087)) (-4 *6 (-13 (-29 *5) (-1109) (-889))) (-4 *5 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *2 (-589 (-1169 *6))) (-5 *1 (-741 *5 *6)))) (-3911 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-629 *7)) (-5 *5 (-1087)) (-4 *7 (-13 (-29 *6) (-1109) (-889))) (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *2 (-2 (|:| |particular| (-1169 *7)) (|:| -2922 (-589 (-1169 *7))))) (-5 *1 (-741 *6 *7)) (-5 *4 (-1169 *7)))))
-(-10 -7 (-15 -3911 ((-3 (-2 (|:| |particular| (-1169 |#2|)) (|:| -2922 (-589 (-1169 |#2|)))) "failed") (-629 |#2|) (-1169 |#2|) (-1087))) (-15 -3911 ((-3 (-589 (-1169 |#2|)) "failed") (-629 |#2|) (-1087))) (-15 -3911 ((-3 (-2 (|:| |particular| (-1169 |#2|)) (|:| -2922 (-589 (-1169 |#2|)))) "failed") (-589 (-271 |#2|)) (-589 (-110)) (-1087))) (-15 -3911 ((-3 (-2 (|:| |particular| (-1169 |#2|)) (|:| -2922 (-589 (-1169 |#2|)))) "failed") (-589 |#2|) (-589 (-110)) (-1087))) (-15 -3911 ((-3 (-2 (|:| |particular| |#2|) (|:| -2922 (-589 |#2|))) |#2| "failed") (-271 |#2|) (-110) (-1087))) (-15 -3911 ((-3 (-2 (|:| |particular| |#2|) (|:| -2922 (-589 |#2|))) |#2| "failed") |#2| (-110) (-1087))) (-15 -3911 ((-3 |#2| "failed") (-271 |#2|) (-110) (-271 |#2|) (-589 |#2|))) (-15 -3911 ((-3 |#2| "failed") |#2| (-110) (-271 |#2|) (-589 |#2|))))
-((-1736 (($) 9)) (-3757 (((-3 (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355))) "failed") (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 31)) (-1612 (((-589 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) $) 28)) (-3862 (($ (-2 (|:| -2402 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355)))))) 25)) (-3045 (($ (-589 (-2 (|:| -2402 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355))))))) 23)) (-1960 (((-1174)) 12)))
-(((-742) (-10 -8 (-15 -1736 ($)) (-15 -1960 ((-1174))) (-15 -1612 ((-589 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) $)) (-15 -3045 ($ (-589 (-2 (|:| -2402 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355)))))))) (-15 -3862 ($ (-2 (|:| -2402 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355))))))) (-15 -3757 ((-3 (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355))) "failed") (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))))) (T -742))
-((-3757 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *2 (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355)))) (-5 *1 (-742)))) (-3862 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2402 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355)))))) (-5 *1 (-742)))) (-3045 (*1 *1 *2) (-12 (-5 *2 (-589 (-2 (|:| -2402 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355))))))) (-5 *1 (-742)))) (-1612 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-5 *1 (-742)))) (-1960 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-742)))) (-1736 (*1 *1) (-5 *1 (-742))))
-(-10 -8 (-15 -1736 ($)) (-15 -1960 ((-1174))) (-15 -1612 ((-589 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) $)) (-15 -3045 ($ (-589 (-2 (|:| -2402 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355)))))))) (-15 -3862 ($ (-2 (|:| -2402 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (|:| -2746 (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355))))))) (-15 -3757 ((-3 (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355)) (|:| |expense| (-355)) (|:| |accuracy| (-355)) (|:| |intermediateResults| (-355))) "failed") (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))))
-((-4089 ((|#2| |#2| (-1087)) 16)) (-2714 ((|#2| |#2| (-1087)) 51)) (-2208 (((-1 |#2| |#2|) (-1087)) 11)))
-(((-743 |#1| |#2|) (-10 -7 (-15 -4089 (|#2| |#2| (-1087))) (-15 -2714 (|#2| |#2| (-1087))) (-15 -2208 ((-1 |#2| |#2|) (-1087)))) (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)) (-13 (-29 |#1|) (-1109) (-889))) (T -743))
-((-2208 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *2 (-1 *5 *5)) (-5 *1 (-743 *4 *5)) (-4 *5 (-13 (-29 *4) (-1109) (-889))))) (-2714 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *1 (-743 *4 *2)) (-4 *2 (-13 (-29 *4) (-1109) (-889))))) (-4089 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *1 (-743 *4 *2)) (-4 *2 (-13 (-29 *4) (-1109) (-889))))))
-(-10 -7 (-15 -4089 (|#2| |#2| (-1087))) (-15 -2714 (|#2| |#2| (-1087))) (-15 -2208 ((-1 |#2| |#2|) (-1087))))
-((-3911 (((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)) (-292 (-355)) (-589 (-355)) (-355) (-355)) 116) (((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)) (-292 (-355)) (-589 (-355)) (-355)) 117) (((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)) (-589 (-355)) (-355)) 119) (((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)) (-292 (-355)) (-355)) 120) (((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)) (-355)) 121) (((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355))) 122) (((-962) (-747) (-985)) 108) (((-962) (-747)) 109)) (-3359 (((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-747) (-985)) 75) (((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-747)) 77)))
-(((-744) (-10 -7 (-15 -3911 ((-962) (-747))) (-15 -3911 ((-962) (-747) (-985))) (-15 -3911 ((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)))) (-15 -3911 ((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)) (-355))) (-15 -3911 ((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)) (-292 (-355)) (-355))) (-15 -3911 ((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)) (-589 (-355)) (-355))) (-15 -3911 ((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)) (-292 (-355)) (-589 (-355)) (-355))) (-15 -3911 ((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)) (-292 (-355)) (-589 (-355)) (-355) (-355))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-747))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-747) (-985))))) (T -744))
-((-3359 (*1 *2 *3 *4) (-12 (-5 *3 (-747)) (-5 *4 (-985)) (-5 *2 (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))))) (-5 *1 (-744)))) (-3359 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))))) (-5 *1 (-744)))) (-3911 (*1 *2 *3 *4 *4 *5 *6 *5 *4 *4) (-12 (-5 *3 (-1169 (-292 *4))) (-5 *5 (-589 (-355))) (-5 *6 (-292 (-355))) (-5 *4 (-355)) (-5 *2 (-962)) (-5 *1 (-744)))) (-3911 (*1 *2 *3 *4 *4 *5 *6 *5 *4) (-12 (-5 *3 (-1169 (-292 *4))) (-5 *5 (-589 (-355))) (-5 *6 (-292 (-355))) (-5 *4 (-355)) (-5 *2 (-962)) (-5 *1 (-744)))) (-3911 (*1 *2 *3 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1169 (-292 (-355)))) (-5 *4 (-355)) (-5 *5 (-589 *4)) (-5 *2 (-962)) (-5 *1 (-744)))) (-3911 (*1 *2 *3 *4 *4 *5 *6 *4) (-12 (-5 *3 (-1169 (-292 *4))) (-5 *5 (-589 (-355))) (-5 *6 (-292 (-355))) (-5 *4 (-355)) (-5 *2 (-962)) (-5 *1 (-744)))) (-3911 (*1 *2 *3 *4 *4 *5 *4) (-12 (-5 *3 (-1169 (-292 (-355)))) (-5 *4 (-355)) (-5 *5 (-589 *4)) (-5 *2 (-962)) (-5 *1 (-744)))) (-3911 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1169 (-292 (-355)))) (-5 *4 (-355)) (-5 *5 (-589 *4)) (-5 *2 (-962)) (-5 *1 (-744)))) (-3911 (*1 *2 *3 *4) (-12 (-5 *3 (-747)) (-5 *4 (-985)) (-5 *2 (-962)) (-5 *1 (-744)))) (-3911 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-962)) (-5 *1 (-744)))))
-(-10 -7 (-15 -3911 ((-962) (-747))) (-15 -3911 ((-962) (-747) (-985))) (-15 -3911 ((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)))) (-15 -3911 ((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)) (-355))) (-15 -3911 ((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)) (-292 (-355)) (-355))) (-15 -3911 ((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)) (-589 (-355)) (-355))) (-15 -3911 ((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)) (-292 (-355)) (-589 (-355)) (-355))) (-15 -3911 ((-962) (-1169 (-292 (-355))) (-355) (-355) (-589 (-355)) (-292 (-355)) (-589 (-355)) (-355) (-355))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-747))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-747) (-985))))
-((-1313 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -2922 (-589 |#4|))) (-596 |#4|) |#4|) 35)))
-(((-745 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1313 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -2922 (-589 |#4|))) (-596 |#4|) |#4|))) (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))) (-1145 |#1|) (-1145 (-383 |#2|)) (-318 |#1| |#2| |#3|)) (T -745))
-((-1313 (*1 *2 *3 *4) (-12 (-5 *3 (-596 *4)) (-4 *4 (-318 *5 *6 *7)) (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-4 *6 (-1145 *5)) (-4 *7 (-1145 (-383 *6))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4)))) (-5 *1 (-745 *5 *6 *7 *4)))))
-(-10 -7 (-15 -1313 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -2922 (-589 |#4|))) (-596 |#4|) |#4|)))
-((-3538 (((-2 (|:| -1747 |#3|) (|:| |rh| (-589 (-383 |#2|)))) |#4| (-589 (-383 |#2|))) 52)) (-1551 (((-589 (-2 (|:| -3882 |#2|) (|:| -3282 |#2|))) |#4| |#2|) 60) (((-589 (-2 (|:| -3882 |#2|) (|:| -3282 |#2|))) |#4|) 59) (((-589 (-2 (|:| -3882 |#2|) (|:| -3282 |#2|))) |#3| |#2|) 20) (((-589 (-2 (|:| -3882 |#2|) (|:| -3282 |#2|))) |#3|) 21)) (-2285 ((|#2| |#4| |#1|) 61) ((|#2| |#3| |#1|) 27)) (-1492 ((|#2| |#3| (-589 (-383 |#2|))) 93) (((-3 |#2| "failed") |#3| (-383 |#2|)) 90)))
-(((-746 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1492 ((-3 |#2| "failed") |#3| (-383 |#2|))) (-15 -1492 (|#2| |#3| (-589 (-383 |#2|)))) (-15 -1551 ((-589 (-2 (|:| -3882 |#2|) (|:| -3282 |#2|))) |#3|)) (-15 -1551 ((-589 (-2 (|:| -3882 |#2|) (|:| -3282 |#2|))) |#3| |#2|)) (-15 -2285 (|#2| |#3| |#1|)) (-15 -1551 ((-589 (-2 (|:| -3882 |#2|) (|:| -3282 |#2|))) |#4|)) (-15 -1551 ((-589 (-2 (|:| -3882 |#2|) (|:| -3282 |#2|))) |#4| |#2|)) (-15 -2285 (|#2| |#4| |#1|)) (-15 -3538 ((-2 (|:| -1747 |#3|) (|:| |rh| (-589 (-383 |#2|)))) |#4| (-589 (-383 |#2|))))) (-13 (-339) (-136) (-964 (-383 (-523)))) (-1145 |#1|) (-599 |#2|) (-599 (-383 |#2|))) (T -746))
-((-3538 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *6 (-1145 *5)) (-5 *2 (-2 (|:| -1747 *7) (|:| |rh| (-589 (-383 *6))))) (-5 *1 (-746 *5 *6 *7 *3)) (-5 *4 (-589 (-383 *6))) (-4 *7 (-599 *6)) (-4 *3 (-599 (-383 *6))))) (-2285 (*1 *2 *3 *4) (-12 (-4 *2 (-1145 *4)) (-5 *1 (-746 *4 *2 *5 *3)) (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *5 (-599 *2)) (-4 *3 (-599 (-383 *2))))) (-1551 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *4 (-1145 *5)) (-5 *2 (-589 (-2 (|:| -3882 *4) (|:| -3282 *4)))) (-5 *1 (-746 *5 *4 *6 *3)) (-4 *6 (-599 *4)) (-4 *3 (-599 (-383 *4))))) (-1551 (*1 *2 *3) (-12 (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *5 (-1145 *4)) (-5 *2 (-589 (-2 (|:| -3882 *5) (|:| -3282 *5)))) (-5 *1 (-746 *4 *5 *6 *3)) (-4 *6 (-599 *5)) (-4 *3 (-599 (-383 *5))))) (-2285 (*1 *2 *3 *4) (-12 (-4 *2 (-1145 *4)) (-5 *1 (-746 *4 *2 *3 *5)) (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *3 (-599 *2)) (-4 *5 (-599 (-383 *2))))) (-1551 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *4 (-1145 *5)) (-5 *2 (-589 (-2 (|:| -3882 *4) (|:| -3282 *4)))) (-5 *1 (-746 *5 *4 *3 *6)) (-4 *3 (-599 *4)) (-4 *6 (-599 (-383 *4))))) (-1551 (*1 *2 *3) (-12 (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *5 (-1145 *4)) (-5 *2 (-589 (-2 (|:| -3882 *5) (|:| -3282 *5)))) (-5 *1 (-746 *4 *5 *3 *6)) (-4 *3 (-599 *5)) (-4 *6 (-599 (-383 *5))))) (-1492 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-383 *2))) (-4 *2 (-1145 *5)) (-5 *1 (-746 *5 *2 *3 *6)) (-4 *5 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *3 (-599 *2)) (-4 *6 (-599 (-383 *2))))) (-1492 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-383 *2)) (-4 *2 (-1145 *5)) (-5 *1 (-746 *5 *2 *3 *6)) (-4 *5 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *3 (-599 *2)) (-4 *6 (-599 *4)))))
-(-10 -7 (-15 -1492 ((-3 |#2| "failed") |#3| (-383 |#2|))) (-15 -1492 (|#2| |#3| (-589 (-383 |#2|)))) (-15 -1551 ((-589 (-2 (|:| -3882 |#2|) (|:| -3282 |#2|))) |#3|)) (-15 -1551 ((-589 (-2 (|:| -3882 |#2|) (|:| -3282 |#2|))) |#3| |#2|)) (-15 -2285 (|#2| |#3| |#1|)) (-15 -1551 ((-589 (-2 (|:| -3882 |#2|) (|:| -3282 |#2|))) |#4|)) (-15 -1551 ((-589 (-2 (|:| -3882 |#2|) (|:| -3282 |#2|))) |#4| |#2|)) (-15 -2285 (|#2| |#4| |#1|)) (-15 -3538 ((-2 (|:| -1747 |#3|) (|:| |rh| (-589 (-383 |#2|)))) |#4| (-589 (-383 |#2|)))))
-((-3260 (((-108) $ $) NIL)) (-1996 (((-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) $) 13)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 15) (($ (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) 12)) (-4037 (((-108) $ $) NIL)))
-(((-747) (-13 (-1016) (-10 -8 (-15 -3976 ($ (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3976 ((-794) $)) (-15 -1996 ((-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) $))))) (T -747))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-747)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *1 (-747)))) (-1996 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203)))) (-5 *1 (-747)))))
-(-13 (-1016) (-10 -8 (-15 -3976 ($ (-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))))) (-15 -3976 ((-794) $)) (-15 -1996 ((-2 (|:| |xinit| (-203)) (|:| |xend| (-203)) (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203))) (|:| |abserr| (-203)) (|:| |relerr| (-203))) $))))
-((-1569 (((-589 (-2 (|:| |frac| (-383 |#2|)) (|:| -1747 |#3|))) |#3| (-1 (-589 |#2|) |#2| (-1083 |#2|)) (-1 (-394 |#2|) |#2|)) 118)) (-3338 (((-589 (-2 (|:| |poly| |#2|) (|:| -1747 |#3|))) |#3| (-1 (-589 |#1|) |#2|)) 46)) (-3923 (((-589 (-2 (|:| |deg| (-710)) (|:| -1747 |#2|))) |#3|) 95)) (-1312 ((|#2| |#3|) 37)) (-2587 (((-589 (-2 (|:| -1982 |#1|) (|:| -1747 |#3|))) |#3| (-1 (-589 |#1|) |#2|)) 82)) (-2679 ((|#3| |#3| (-383 |#2|)) 63) ((|#3| |#3| |#2|) 79)))
-(((-748 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1312 (|#2| |#3|)) (-15 -3923 ((-589 (-2 (|:| |deg| (-710)) (|:| -1747 |#2|))) |#3|)) (-15 -2587 ((-589 (-2 (|:| -1982 |#1|) (|:| -1747 |#3|))) |#3| (-1 (-589 |#1|) |#2|))) (-15 -3338 ((-589 (-2 (|:| |poly| |#2|) (|:| -1747 |#3|))) |#3| (-1 (-589 |#1|) |#2|))) (-15 -1569 ((-589 (-2 (|:| |frac| (-383 |#2|)) (|:| -1747 |#3|))) |#3| (-1 (-589 |#2|) |#2| (-1083 |#2|)) (-1 (-394 |#2|) |#2|))) (-15 -2679 (|#3| |#3| |#2|)) (-15 -2679 (|#3| |#3| (-383 |#2|)))) (-13 (-339) (-136) (-964 (-383 (-523)))) (-1145 |#1|) (-599 |#2|) (-599 (-383 |#2|))) (T -748))
-((-2679 (*1 *2 *2 *3) (-12 (-5 *3 (-383 *5)) (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *5 (-1145 *4)) (-5 *1 (-748 *4 *5 *2 *6)) (-4 *2 (-599 *5)) (-4 *6 (-599 *3)))) (-2679 (*1 *2 *2 *3) (-12 (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *3 (-1145 *4)) (-5 *1 (-748 *4 *3 *2 *5)) (-4 *2 (-599 *3)) (-4 *5 (-599 (-383 *3))))) (-1569 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 (-589 *7) *7 (-1083 *7))) (-5 *5 (-1 (-394 *7) *7)) (-4 *7 (-1145 *6)) (-4 *6 (-13 (-339) (-136) (-964 (-383 (-523))))) (-5 *2 (-589 (-2 (|:| |frac| (-383 *7)) (|:| -1747 *3)))) (-5 *1 (-748 *6 *7 *3 *8)) (-4 *3 (-599 *7)) (-4 *8 (-599 (-383 *7))))) (-3338 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-589 *5) *6)) (-4 *5 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *6 (-1145 *5)) (-5 *2 (-589 (-2 (|:| |poly| *6) (|:| -1747 *3)))) (-5 *1 (-748 *5 *6 *3 *7)) (-4 *3 (-599 *6)) (-4 *7 (-599 (-383 *6))))) (-2587 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-589 *5) *6)) (-4 *5 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *6 (-1145 *5)) (-5 *2 (-589 (-2 (|:| -1982 *5) (|:| -1747 *3)))) (-5 *1 (-748 *5 *6 *3 *7)) (-4 *3 (-599 *6)) (-4 *7 (-599 (-383 *6))))) (-3923 (*1 *2 *3) (-12 (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *5 (-1145 *4)) (-5 *2 (-589 (-2 (|:| |deg| (-710)) (|:| -1747 *5)))) (-5 *1 (-748 *4 *5 *3 *6)) (-4 *3 (-599 *5)) (-4 *6 (-599 (-383 *5))))) (-1312 (*1 *2 *3) (-12 (-4 *2 (-1145 *4)) (-5 *1 (-748 *4 *2 *3 *5)) (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *3 (-599 *2)) (-4 *5 (-599 (-383 *2))))))
-(-10 -7 (-15 -1312 (|#2| |#3|)) (-15 -3923 ((-589 (-2 (|:| |deg| (-710)) (|:| -1747 |#2|))) |#3|)) (-15 -2587 ((-589 (-2 (|:| -1982 |#1|) (|:| -1747 |#3|))) |#3| (-1 (-589 |#1|) |#2|))) (-15 -3338 ((-589 (-2 (|:| |poly| |#2|) (|:| -1747 |#3|))) |#3| (-1 (-589 |#1|) |#2|))) (-15 -1569 ((-589 (-2 (|:| |frac| (-383 |#2|)) (|:| -1747 |#3|))) |#3| (-1 (-589 |#2|) |#2| (-1083 |#2|)) (-1 (-394 |#2|) |#2|))) (-15 -2679 (|#3| |#3| |#2|)) (-15 -2679 (|#3| |#3| (-383 |#2|))))
-((-2330 (((-2 (|:| -2922 (-589 (-383 |#2|))) (|:| -2373 (-629 |#1|))) (-597 |#2| (-383 |#2|)) (-589 (-383 |#2|))) 121) (((-2 (|:| |particular| (-3 (-383 |#2|) "failed")) (|:| -2922 (-589 (-383 |#2|)))) (-597 |#2| (-383 |#2|)) (-383 |#2|)) 120) (((-2 (|:| -2922 (-589 (-383 |#2|))) (|:| -2373 (-629 |#1|))) (-596 (-383 |#2|)) (-589 (-383 |#2|))) 115) (((-2 (|:| |particular| (-3 (-383 |#2|) "failed")) (|:| -2922 (-589 (-383 |#2|)))) (-596 (-383 |#2|)) (-383 |#2|)) 113)) (-3736 ((|#2| (-597 |#2| (-383 |#2|))) 80) ((|#2| (-596 (-383 |#2|))) 83)))
-(((-749 |#1| |#2|) (-10 -7 (-15 -2330 ((-2 (|:| |particular| (-3 (-383 |#2|) "failed")) (|:| -2922 (-589 (-383 |#2|)))) (-596 (-383 |#2|)) (-383 |#2|))) (-15 -2330 ((-2 (|:| -2922 (-589 (-383 |#2|))) (|:| -2373 (-629 |#1|))) (-596 (-383 |#2|)) (-589 (-383 |#2|)))) (-15 -2330 ((-2 (|:| |particular| (-3 (-383 |#2|) "failed")) (|:| -2922 (-589 (-383 |#2|)))) (-597 |#2| (-383 |#2|)) (-383 |#2|))) (-15 -2330 ((-2 (|:| -2922 (-589 (-383 |#2|))) (|:| -2373 (-629 |#1|))) (-597 |#2| (-383 |#2|)) (-589 (-383 |#2|)))) (-15 -3736 (|#2| (-596 (-383 |#2|)))) (-15 -3736 (|#2| (-597 |#2| (-383 |#2|))))) (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))) (-1145 |#1|)) (T -749))
-((-3736 (*1 *2 *3) (-12 (-5 *3 (-597 *2 (-383 *2))) (-4 *2 (-1145 *4)) (-5 *1 (-749 *4 *2)) (-4 *4 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))))) (-3736 (*1 *2 *3) (-12 (-5 *3 (-596 (-383 *2))) (-4 *2 (-1145 *4)) (-5 *1 (-749 *4 *2)) (-4 *4 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))))) (-2330 (*1 *2 *3 *4) (-12 (-5 *3 (-597 *6 (-383 *6))) (-4 *6 (-1145 *5)) (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-5 *2 (-2 (|:| -2922 (-589 (-383 *6))) (|:| -2373 (-629 *5)))) (-5 *1 (-749 *5 *6)) (-5 *4 (-589 (-383 *6))))) (-2330 (*1 *2 *3 *4) (-12 (-5 *3 (-597 *6 (-383 *6))) (-5 *4 (-383 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4)))) (-5 *1 (-749 *5 *6)))) (-2330 (*1 *2 *3 *4) (-12 (-5 *3 (-596 (-383 *6))) (-4 *6 (-1145 *5)) (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-5 *2 (-2 (|:| -2922 (-589 (-383 *6))) (|:| -2373 (-629 *5)))) (-5 *1 (-749 *5 *6)) (-5 *4 (-589 (-383 *6))))) (-2330 (*1 *2 *3 *4) (-12 (-5 *3 (-596 (-383 *6))) (-5 *4 (-383 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4)))) (-5 *1 (-749 *5 *6)))))
-(-10 -7 (-15 -2330 ((-2 (|:| |particular| (-3 (-383 |#2|) "failed")) (|:| -2922 (-589 (-383 |#2|)))) (-596 (-383 |#2|)) (-383 |#2|))) (-15 -2330 ((-2 (|:| -2922 (-589 (-383 |#2|))) (|:| -2373 (-629 |#1|))) (-596 (-383 |#2|)) (-589 (-383 |#2|)))) (-15 -2330 ((-2 (|:| |particular| (-3 (-383 |#2|) "failed")) (|:| -2922 (-589 (-383 |#2|)))) (-597 |#2| (-383 |#2|)) (-383 |#2|))) (-15 -2330 ((-2 (|:| -2922 (-589 (-383 |#2|))) (|:| -2373 (-629 |#1|))) (-597 |#2| (-383 |#2|)) (-589 (-383 |#2|)))) (-15 -3736 (|#2| (-596 (-383 |#2|)))) (-15 -3736 (|#2| (-597 |#2| (-383 |#2|)))))
-((-4036 (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#1|))) |#5| |#4|) 48)))
-(((-750 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4036 ((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#1|))) |#5| |#4|))) (-339) (-599 |#1|) (-1145 |#1|) (-664 |#1| |#3|) (-599 |#4|)) (T -750))
-((-4036 (*1 *2 *3 *4) (-12 (-4 *5 (-339)) (-4 *7 (-1145 *5)) (-4 *4 (-664 *5 *7)) (-5 *2 (-2 (|:| -2373 (-629 *6)) (|:| |vec| (-1169 *5)))) (-5 *1 (-750 *5 *6 *7 *4 *3)) (-4 *6 (-599 *5)) (-4 *3 (-599 *4)))))
-(-10 -7 (-15 -4036 ((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#1|))) |#5| |#4|)))
-((-1569 (((-589 (-2 (|:| |frac| (-383 |#2|)) (|:| -1747 (-597 |#2| (-383 |#2|))))) (-597 |#2| (-383 |#2|)) (-1 (-394 |#2|) |#2|)) 47)) (-1260 (((-589 (-383 |#2|)) (-597 |#2| (-383 |#2|)) (-1 (-394 |#2|) |#2|)) 137 (|has| |#1| (-27))) (((-589 (-383 |#2|)) (-597 |#2| (-383 |#2|))) 138 (|has| |#1| (-27))) (((-589 (-383 |#2|)) (-596 (-383 |#2|)) (-1 (-394 |#2|) |#2|)) 139 (|has| |#1| (-27))) (((-589 (-383 |#2|)) (-596 (-383 |#2|))) 140 (|has| |#1| (-27))) (((-589 (-383 |#2|)) (-597 |#2| (-383 |#2|)) (-1 (-589 |#1|) |#2|) (-1 (-394 |#2|) |#2|)) 38) (((-589 (-383 |#2|)) (-597 |#2| (-383 |#2|)) (-1 (-589 |#1|) |#2|)) 39) (((-589 (-383 |#2|)) (-596 (-383 |#2|)) (-1 (-589 |#1|) |#2|) (-1 (-394 |#2|) |#2|)) 36) (((-589 (-383 |#2|)) (-596 (-383 |#2|)) (-1 (-589 |#1|) |#2|)) 37)) (-3338 (((-589 (-2 (|:| |poly| |#2|) (|:| -1747 (-597 |#2| (-383 |#2|))))) (-597 |#2| (-383 |#2|)) (-1 (-589 |#1|) |#2|)) 83)))
-(((-751 |#1| |#2|) (-10 -7 (-15 -1260 ((-589 (-383 |#2|)) (-596 (-383 |#2|)) (-1 (-589 |#1|) |#2|))) (-15 -1260 ((-589 (-383 |#2|)) (-596 (-383 |#2|)) (-1 (-589 |#1|) |#2|) (-1 (-394 |#2|) |#2|))) (-15 -1260 ((-589 (-383 |#2|)) (-597 |#2| (-383 |#2|)) (-1 (-589 |#1|) |#2|))) (-15 -1260 ((-589 (-383 |#2|)) (-597 |#2| (-383 |#2|)) (-1 (-589 |#1|) |#2|) (-1 (-394 |#2|) |#2|))) (-15 -1569 ((-589 (-2 (|:| |frac| (-383 |#2|)) (|:| -1747 (-597 |#2| (-383 |#2|))))) (-597 |#2| (-383 |#2|)) (-1 (-394 |#2|) |#2|))) (-15 -3338 ((-589 (-2 (|:| |poly| |#2|) (|:| -1747 (-597 |#2| (-383 |#2|))))) (-597 |#2| (-383 |#2|)) (-1 (-589 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1260 ((-589 (-383 |#2|)) (-596 (-383 |#2|)))) (-15 -1260 ((-589 (-383 |#2|)) (-596 (-383 |#2|)) (-1 (-394 |#2|) |#2|))) (-15 -1260 ((-589 (-383 |#2|)) (-597 |#2| (-383 |#2|)))) (-15 -1260 ((-589 (-383 |#2|)) (-597 |#2| (-383 |#2|)) (-1 (-394 |#2|) |#2|)))) |%noBranch|)) (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))) (-1145 |#1|)) (T -751))
-((-1260 (*1 *2 *3 *4) (-12 (-5 *3 (-597 *6 (-383 *6))) (-5 *4 (-1 (-394 *6) *6)) (-4 *6 (-1145 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-5 *2 (-589 (-383 *6))) (-5 *1 (-751 *5 *6)))) (-1260 (*1 *2 *3) (-12 (-5 *3 (-597 *5 (-383 *5))) (-4 *5 (-1145 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-5 *2 (-589 (-383 *5))) (-5 *1 (-751 *4 *5)))) (-1260 (*1 *2 *3 *4) (-12 (-5 *3 (-596 (-383 *6))) (-5 *4 (-1 (-394 *6) *6)) (-4 *6 (-1145 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-5 *2 (-589 (-383 *6))) (-5 *1 (-751 *5 *6)))) (-1260 (*1 *2 *3) (-12 (-5 *3 (-596 (-383 *5))) (-4 *5 (-1145 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-5 *2 (-589 (-383 *5))) (-5 *1 (-751 *4 *5)))) (-3338 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-589 *5) *6)) (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-4 *6 (-1145 *5)) (-5 *2 (-589 (-2 (|:| |poly| *6) (|:| -1747 (-597 *6 (-383 *6)))))) (-5 *1 (-751 *5 *6)) (-5 *3 (-597 *6 (-383 *6))))) (-1569 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-394 *6) *6)) (-4 *6 (-1145 *5)) (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-5 *2 (-589 (-2 (|:| |frac| (-383 *6)) (|:| -1747 (-597 *6 (-383 *6)))))) (-5 *1 (-751 *5 *6)) (-5 *3 (-597 *6 (-383 *6))))) (-1260 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-597 *7 (-383 *7))) (-5 *4 (-1 (-589 *6) *7)) (-5 *5 (-1 (-394 *7) *7)) (-4 *6 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-4 *7 (-1145 *6)) (-5 *2 (-589 (-383 *7))) (-5 *1 (-751 *6 *7)))) (-1260 (*1 *2 *3 *4) (-12 (-5 *3 (-597 *6 (-383 *6))) (-5 *4 (-1 (-589 *5) *6)) (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-4 *6 (-1145 *5)) (-5 *2 (-589 (-383 *6))) (-5 *1 (-751 *5 *6)))) (-1260 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-596 (-383 *7))) (-5 *4 (-1 (-589 *6) *7)) (-5 *5 (-1 (-394 *7) *7)) (-4 *6 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-4 *7 (-1145 *6)) (-5 *2 (-589 (-383 *7))) (-5 *1 (-751 *6 *7)))) (-1260 (*1 *2 *3 *4) (-12 (-5 *3 (-596 (-383 *6))) (-5 *4 (-1 (-589 *5) *6)) (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))) (-4 *6 (-1145 *5)) (-5 *2 (-589 (-383 *6))) (-5 *1 (-751 *5 *6)))))
-(-10 -7 (-15 -1260 ((-589 (-383 |#2|)) (-596 (-383 |#2|)) (-1 (-589 |#1|) |#2|))) (-15 -1260 ((-589 (-383 |#2|)) (-596 (-383 |#2|)) (-1 (-589 |#1|) |#2|) (-1 (-394 |#2|) |#2|))) (-15 -1260 ((-589 (-383 |#2|)) (-597 |#2| (-383 |#2|)) (-1 (-589 |#1|) |#2|))) (-15 -1260 ((-589 (-383 |#2|)) (-597 |#2| (-383 |#2|)) (-1 (-589 |#1|) |#2|) (-1 (-394 |#2|) |#2|))) (-15 -1569 ((-589 (-2 (|:| |frac| (-383 |#2|)) (|:| -1747 (-597 |#2| (-383 |#2|))))) (-597 |#2| (-383 |#2|)) (-1 (-394 |#2|) |#2|))) (-15 -3338 ((-589 (-2 (|:| |poly| |#2|) (|:| -1747 (-597 |#2| (-383 |#2|))))) (-597 |#2| (-383 |#2|)) (-1 (-589 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1260 ((-589 (-383 |#2|)) (-596 (-383 |#2|)))) (-15 -1260 ((-589 (-383 |#2|)) (-596 (-383 |#2|)) (-1 (-394 |#2|) |#2|))) (-15 -1260 ((-589 (-383 |#2|)) (-597 |#2| (-383 |#2|)))) (-15 -1260 ((-589 (-383 |#2|)) (-597 |#2| (-383 |#2|)) (-1 (-394 |#2|) |#2|)))) |%noBranch|))
-((-2284 (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#1|))) (-629 |#2|) (-1169 |#1|)) 85) (((-2 (|:| A (-629 |#1|)) (|:| |eqs| (-589 (-2 (|:| C (-629 |#1|)) (|:| |g| (-1169 |#1|)) (|:| -1747 |#2|) (|:| |rh| |#1|))))) (-629 |#1|) (-1169 |#1|)) 15)) (-3536 (((-2 (|:| |particular| (-3 (-1169 |#1|) "failed")) (|:| -2922 (-589 (-1169 |#1|)))) (-629 |#2|) (-1169 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -2922 (-589 |#1|))) |#2| |#1|)) 92)) (-3911 (((-3 (-2 (|:| |particular| (-1169 |#1|)) (|:| -2922 (-629 |#1|))) "failed") (-629 |#1|) (-1169 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -2922 (-589 |#1|))) "failed") |#2| |#1|)) 43)))
-(((-752 |#1| |#2|) (-10 -7 (-15 -2284 ((-2 (|:| A (-629 |#1|)) (|:| |eqs| (-589 (-2 (|:| C (-629 |#1|)) (|:| |g| (-1169 |#1|)) (|:| -1747 |#2|) (|:| |rh| |#1|))))) (-629 |#1|) (-1169 |#1|))) (-15 -2284 ((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#1|))) (-629 |#2|) (-1169 |#1|))) (-15 -3911 ((-3 (-2 (|:| |particular| (-1169 |#1|)) (|:| -2922 (-629 |#1|))) "failed") (-629 |#1|) (-1169 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -2922 (-589 |#1|))) "failed") |#2| |#1|))) (-15 -3536 ((-2 (|:| |particular| (-3 (-1169 |#1|) "failed")) (|:| -2922 (-589 (-1169 |#1|)))) (-629 |#2|) (-1169 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -2922 (-589 |#1|))) |#2| |#1|)))) (-339) (-599 |#1|)) (T -752))
-((-3536 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-629 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -2922 (-589 *6))) *7 *6)) (-4 *6 (-339)) (-4 *7 (-599 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1169 *6) "failed")) (|:| -2922 (-589 (-1169 *6))))) (-5 *1 (-752 *6 *7)) (-5 *4 (-1169 *6)))) (-3911 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -2922 (-589 *6))) "failed") *7 *6)) (-4 *6 (-339)) (-4 *7 (-599 *6)) (-5 *2 (-2 (|:| |particular| (-1169 *6)) (|:| -2922 (-629 *6)))) (-5 *1 (-752 *6 *7)) (-5 *3 (-629 *6)) (-5 *4 (-1169 *6)))) (-2284 (*1 *2 *3 *4) (-12 (-4 *5 (-339)) (-4 *6 (-599 *5)) (-5 *2 (-2 (|:| -2373 (-629 *6)) (|:| |vec| (-1169 *5)))) (-5 *1 (-752 *5 *6)) (-5 *3 (-629 *6)) (-5 *4 (-1169 *5)))) (-2284 (*1 *2 *3 *4) (-12 (-4 *5 (-339)) (-5 *2 (-2 (|:| A (-629 *5)) (|:| |eqs| (-589 (-2 (|:| C (-629 *5)) (|:| |g| (-1169 *5)) (|:| -1747 *6) (|:| |rh| *5)))))) (-5 *1 (-752 *5 *6)) (-5 *3 (-629 *5)) (-5 *4 (-1169 *5)) (-4 *6 (-599 *5)))))
-(-10 -7 (-15 -2284 ((-2 (|:| A (-629 |#1|)) (|:| |eqs| (-589 (-2 (|:| C (-629 |#1|)) (|:| |g| (-1169 |#1|)) (|:| -1747 |#2|) (|:| |rh| |#1|))))) (-629 |#1|) (-1169 |#1|))) (-15 -2284 ((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#1|))) (-629 |#2|) (-1169 |#1|))) (-15 -3911 ((-3 (-2 (|:| |particular| (-1169 |#1|)) (|:| -2922 (-629 |#1|))) "failed") (-629 |#1|) (-1169 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -2922 (-589 |#1|))) "failed") |#2| |#1|))) (-15 -3536 ((-2 (|:| |particular| (-3 (-1169 |#1|) "failed")) (|:| -2922 (-589 (-1169 |#1|)))) (-629 |#2|) (-1169 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -2922 (-589 |#1|))) |#2| |#1|))))
-((-4207 (((-629 |#1|) (-589 |#1|) (-710)) 13) (((-629 |#1|) (-589 |#1|)) 14)) (-2630 (((-3 (-1169 |#1|) "failed") |#2| |#1| (-589 |#1|)) 34)) (-1795 (((-3 |#1| "failed") |#2| |#1| (-589 |#1|) (-1 |#1| |#1|)) 42)))
-(((-753 |#1| |#2|) (-10 -7 (-15 -4207 ((-629 |#1|) (-589 |#1|))) (-15 -4207 ((-629 |#1|) (-589 |#1|) (-710))) (-15 -2630 ((-3 (-1169 |#1|) "failed") |#2| |#1| (-589 |#1|))) (-15 -1795 ((-3 |#1| "failed") |#2| |#1| (-589 |#1|) (-1 |#1| |#1|)))) (-339) (-599 |#1|)) (T -753))
-((-1795 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *4 (-589 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-339)) (-5 *1 (-753 *2 *3)) (-4 *3 (-599 *2)))) (-2630 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-589 *4)) (-4 *4 (-339)) (-5 *2 (-1169 *4)) (-5 *1 (-753 *4 *3)) (-4 *3 (-599 *4)))) (-4207 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *5)) (-5 *4 (-710)) (-4 *5 (-339)) (-5 *2 (-629 *5)) (-5 *1 (-753 *5 *6)) (-4 *6 (-599 *5)))) (-4207 (*1 *2 *3) (-12 (-5 *3 (-589 *4)) (-4 *4 (-339)) (-5 *2 (-629 *4)) (-5 *1 (-753 *4 *5)) (-4 *5 (-599 *4)))))
-(-10 -7 (-15 -4207 ((-629 |#1|) (-589 |#1|))) (-15 -4207 ((-629 |#1|) (-589 |#1|) (-710))) (-15 -2630 ((-3 (-1169 |#1|) "failed") |#2| |#1| (-589 |#1|))) (-15 -1795 ((-3 |#1| "failed") |#2| |#1| (-589 |#1|) (-1 |#1| |#1|))))
-((-3260 (((-108) $ $) NIL (|has| |#2| (-1016)))) (-2388 (((-108) $) NIL (|has| |#2| (-124)))) (-1932 (($ (-852)) NIL (|has| |#2| (-973)))) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-1773 (($ $ $) NIL (|has| |#2| (-732)))) (-2999 (((-3 $ "failed") $ $) NIL (|has| |#2| (-124)))) (-2282 (((-108) $ (-710)) NIL)) (-3843 (((-710)) NIL (|has| |#2| (-344)))) (-2035 (((-523) $) NIL (|has| |#2| (-784)))) (-4101 ((|#2| $ (-523) |#2|) NIL (|has| $ (-6 -4249)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL (-12 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016)))) (((-3 (-383 (-523)) "failed") $) NIL (-12 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1016)))) (-1996 (((-523) $) NIL (-12 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016)))) (((-383 (-523)) $) NIL (-12 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016)))) ((|#2| $) NIL (|has| |#2| (-1016)))) (-2203 (((-629 (-523)) (-629 $)) NIL (-12 (|has| |#2| (-585 (-523))) (|has| |#2| (-973)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (-12 (|has| |#2| (-585 (-523))) (|has| |#2| (-973)))) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) NIL (|has| |#2| (-973))) (((-629 |#2|) (-629 $)) NIL (|has| |#2| (-973)))) (-4211 (((-3 $ "failed") $) NIL (|has| |#2| (-973)))) (-3461 (($) NIL (|has| |#2| (-344)))) (-3073 ((|#2| $ (-523) |#2|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#2| $ (-523)) NIL)) (-3702 (((-108) $) NIL (|has| |#2| (-784)))) (-3133 (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-3482 (((-108) $) NIL (|has| |#2| (-973)))) (-4050 (((-108) $) NIL (|has| |#2| (-784)))) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) NIL (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-3056 (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-3063 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#2| |#2|) $) NIL)) (-4076 (((-852) $) NIL (|has| |#2| (-344)))) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#2| (-1016)))) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2557 (($ (-852)) NIL (|has| |#2| (-344)))) (-2435 (((-1034) $) NIL (|has| |#2| (-1016)))) (-3879 ((|#2| $) NIL (|has| (-523) (-786)))) (-2408 (($ $ |#2|) NIL (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#2|))) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-3184 (((-589 |#2|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#2| $ (-523) |#2|) NIL) ((|#2| $ (-523)) NIL)) (-1879 ((|#2| $ $) NIL (|has| |#2| (-973)))) (-3621 (($ (-1169 |#2|)) NIL)) (-4012 (((-126)) NIL (|has| |#2| (-339)))) (-4024 (($ $) NIL (-12 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-710)) NIL (-12 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-1087)) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1 |#2| |#2|) (-710)) NIL (|has| |#2| (-973))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-973)))) (-2452 (((-710) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248))) (((-710) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-4124 (($ $) NIL)) (-3976 (((-1169 |#2|) $) NIL) (($ (-523)) NIL (-3255 (-12 (|has| |#2| (-964 (-523))) (|has| |#2| (-1016))) (|has| |#2| (-973)))) (($ (-383 (-523))) NIL (-12 (|has| |#2| (-964 (-383 (-523)))) (|has| |#2| (-1016)))) (($ |#2|) NIL (|has| |#2| (-1016))) (((-794) $) NIL (|has| |#2| (-563 (-794))))) (-1698 (((-710)) NIL (|has| |#2| (-973)))) (-1505 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-3984 (($ $) NIL (|has| |#2| (-784)))) (-2573 (($ $ (-710)) NIL (|has| |#2| (-973))) (($ $ (-852)) NIL (|has| |#2| (-973)))) (-1428 (($) NIL (|has| |#2| (-124)) CONST)) (-1440 (($) NIL (|has| |#2| (-973)) CONST)) (-1943 (($ $) NIL (-12 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-710)) NIL (-12 (|has| |#2| (-211)) (|has| |#2| (-973)))) (($ $ (-1087)) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#2| (-831 (-1087))) (|has| |#2| (-973)))) (($ $ (-1 |#2| |#2|) (-710)) NIL (|has| |#2| (-973))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-973)))) (-4078 (((-108) $ $) NIL (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-4061 (((-108) $ $) NIL (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-4037 (((-108) $ $) NIL (|has| |#2| (-1016)))) (-4070 (((-108) $ $) NIL (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-4052 (((-108) $ $) 11 (-3255 (|has| |#2| (-732)) (|has| |#2| (-784))))) (-4125 (($ $ |#2|) NIL (|has| |#2| (-339)))) (-4115 (($ $ $) NIL (|has| |#2| (-973))) (($ $) NIL (|has| |#2| (-973)))) (-4103 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-710)) NIL (|has| |#2| (-973))) (($ $ (-852)) NIL (|has| |#2| (-973)))) (* (($ $ $) NIL (|has| |#2| (-973))) (($ (-523) $) NIL (|has| |#2| (-973))) (($ $ |#2|) NIL (|has| |#2| (-666))) (($ |#2| $) NIL (|has| |#2| (-666))) (($ (-710) $) NIL (|has| |#2| (-124))) (($ (-852) $) NIL (|has| |#2| (-25)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-754 |#1| |#2| |#3|) (-216 |#1| |#2|) (-710) (-732) (-1 (-108) (-1169 |#2|) (-1169 |#2|))) (T -754))
-NIL
-(-216 |#1| |#2|)
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-4038 (((-589 (-710)) $) NIL) (((-589 (-710)) $ (-1087)) NIL)) (-1255 (((-710) $) NIL) (((-710) $ (-1087)) NIL)) (-3716 (((-589 (-757 (-1087))) $) NIL)) (-3540 (((-1083 $) $ (-757 (-1087))) NIL) (((-1083 |#1|) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-2862 (((-710) $) NIL) (((-710) $ (-589 (-757 (-1087)))) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3763 (($ $) NIL (|has| |#1| (-427)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-2089 (($ $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-757 (-1087)) "failed") $) NIL) (((-3 (-1087) "failed") $) NIL) (((-3 (-1039 |#1| (-1087)) "failed") $) NIL)) (-1996 ((|#1| $) NIL) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-757 (-1087)) $) NIL) (((-1087) $) NIL) (((-1039 |#1| (-1087)) $) NIL)) (-2210 (($ $ $ (-757 (-1087))) NIL (|has| |#1| (-158)))) (-3142 (($ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) NIL) (((-629 |#1|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2213 (($ $) NIL (|has| |#1| (-427))) (($ $ (-757 (-1087))) NIL (|has| |#1| (-427)))) (-3127 (((-589 $) $) NIL)) (-1330 (((-108) $) NIL (|has| |#1| (-840)))) (-2067 (($ $ |#1| (-495 (-757 (-1087))) $) NIL)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| (-757 (-1087)) (-817 (-355))) (|has| |#1| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| (-757 (-1087)) (-817 (-523))) (|has| |#1| (-817 (-523)))))) (-1500 (((-710) $ (-1087)) NIL) (((-710) $) NIL)) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) NIL)) (-3706 (($ (-1083 |#1|) (-757 (-1087))) NIL) (($ (-1083 $) (-757 (-1087))) NIL)) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-495 (-757 (-1087)))) NIL) (($ $ (-757 (-1087)) (-710)) NIL) (($ $ (-589 (-757 (-1087))) (-589 (-710))) NIL)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ (-757 (-1087))) NIL)) (-2140 (((-495 (-757 (-1087))) $) NIL) (((-710) $ (-757 (-1087))) NIL) (((-589 (-710)) $ (-589 (-757 (-1087)))) NIL)) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3927 (($ (-1 (-495 (-757 (-1087))) (-495 (-757 (-1087)))) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-1647 (((-1 $ (-710)) (-1087)) NIL) (((-1 $ (-710)) $) NIL (|has| |#1| (-211)))) (-1949 (((-3 (-757 (-1087)) "failed") $) NIL)) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-2298 (((-757 (-1087)) $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-3841 (((-1070) $) NIL)) (-2522 (((-108) $) NIL)) (-3818 (((-3 (-589 $) "failed") $) NIL)) (-1973 (((-3 (-589 $) "failed") $) NIL)) (-3719 (((-3 (-2 (|:| |var| (-757 (-1087))) (|:| -3262 (-710))) "failed") $) NIL)) (-4182 (($ $) NIL)) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) NIL)) (-3095 ((|#1| $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-427)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3573 (((-394 $) $) NIL (|has| |#1| (-840)))) (-2469 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-515)))) (-1349 (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-757 (-1087)) |#1|) NIL) (($ $ (-589 (-757 (-1087))) (-589 |#1|)) NIL) (($ $ (-757 (-1087)) $) NIL) (($ $ (-589 (-757 (-1087))) (-589 $)) NIL) (($ $ (-1087) $) NIL (|has| |#1| (-211))) (($ $ (-589 (-1087)) (-589 $)) NIL (|has| |#1| (-211))) (($ $ (-1087) |#1|) NIL (|has| |#1| (-211))) (($ $ (-589 (-1087)) (-589 |#1|)) NIL (|has| |#1| (-211)))) (-4053 (($ $ (-757 (-1087))) NIL (|has| |#1| (-158)))) (-4024 (($ $ (-757 (-1087))) NIL) (($ $ (-589 (-757 (-1087)))) NIL) (($ $ (-757 (-1087)) (-710)) NIL) (($ $ (-589 (-757 (-1087))) (-589 (-710))) NIL) (($ $) NIL (|has| |#1| (-211))) (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1703 (((-589 (-1087)) $) NIL)) (-1487 (((-495 (-757 (-1087))) $) NIL) (((-710) $ (-757 (-1087))) NIL) (((-589 (-710)) $ (-589 (-757 (-1087)))) NIL) (((-710) $ (-1087)) NIL)) (-3077 (((-823 (-355)) $) NIL (-12 (|has| (-757 (-1087)) (-564 (-823 (-355)))) (|has| |#1| (-564 (-823 (-355)))))) (((-823 (-523)) $) NIL (-12 (|has| (-757 (-1087)) (-564 (-823 (-523)))) (|has| |#1| (-564 (-823 (-523)))))) (((-499) $) NIL (-12 (|has| (-757 (-1087)) (-564 (-499))) (|has| |#1| (-564 (-499)))))) (-2267 ((|#1| $) NIL (|has| |#1| (-427))) (($ $ (-757 (-1087))) NIL (|has| |#1| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#1| (-840))))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#1|) NIL) (($ (-757 (-1087))) NIL) (($ (-1087)) NIL) (($ (-1039 |#1| (-1087))) NIL) (($ (-383 (-523))) NIL (-3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-964 (-383 (-523)))))) (($ $) NIL (|has| |#1| (-515)))) (-1639 (((-589 |#1|) $) NIL)) (-1234 ((|#1| $ (-495 (-757 (-1087)))) NIL) (($ $ (-757 (-1087)) (-710)) NIL) (($ $ (-589 (-757 (-1087))) (-589 (-710))) NIL)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#1| (-840))) (|has| |#1| (-134))))) (-1698 (((-710)) NIL)) (-2656 (($ $ $ (-710)) NIL (|has| |#1| (-158)))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ (-757 (-1087))) NIL) (($ $ (-589 (-757 (-1087)))) NIL) (($ $ (-757 (-1087)) (-710)) NIL) (($ $ (-589 (-757 (-1087))) (-589 (-710))) NIL) (($ $) NIL (|has| |#1| (-211))) (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-755 |#1|) (-13 (-230 |#1| (-1087) (-757 (-1087)) (-495 (-757 (-1087)))) (-964 (-1039 |#1| (-1087)))) (-973)) (T -755))
-NIL
-(-13 (-230 |#1| (-1087) (-757 (-1087)) (-495 (-757 (-1087)))) (-964 (-1039 |#1| (-1087))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#2| (-339)))) (-3950 (($ $) NIL (|has| |#2| (-339)))) (-3226 (((-108) $) NIL (|has| |#2| (-339)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL (|has| |#2| (-339)))) (-2105 (((-394 $) $) NIL (|has| |#2| (-339)))) (-3684 (((-108) $ $) NIL (|has| |#2| (-339)))) (-1640 (($) NIL T CONST)) (-2501 (($ $ $) NIL (|has| |#2| (-339)))) (-4211 (((-3 $ "failed") $) NIL)) (-2486 (($ $ $) NIL (|has| |#2| (-339)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#2| (-339)))) (-1330 (((-108) $) NIL (|has| |#2| (-339)))) (-3482 (((-108) $) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#2| (-339)))) (-2012 (($ (-589 $)) NIL (|has| |#2| (-339))) (($ $ $) NIL (|has| |#2| (-339)))) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 20 (|has| |#2| (-339)))) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#2| (-339)))) (-2056 (($ (-589 $)) NIL (|has| |#2| (-339))) (($ $ $) NIL (|has| |#2| (-339)))) (-3573 (((-394 $) $) NIL (|has| |#2| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#2| (-339)))) (-2469 (((-3 $ "failed") $ $) NIL (|has| |#2| (-339)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#2| (-339)))) (-3087 (((-710) $) NIL (|has| |#2| (-339)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#2| (-339)))) (-4024 (($ $ (-710)) NIL) (($ $) 13)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-383 (-523))) NIL (|has| |#2| (-339))) (($ $) NIL (|has| |#2| (-339)))) (-1698 (((-710)) NIL)) (-3842 (((-108) $ $) NIL (|has| |#2| (-339)))) (-2573 (($ $ (-710)) NIL) (($ $ (-852)) NIL) (($ $ (-523)) NIL (|has| |#2| (-339)))) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ (-710)) NIL) (($ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ $) 15 (|has| |#2| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-710)) NIL) (($ $ (-852)) NIL) (($ $ (-523)) 18 (|has| |#2| (-339)))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ $) NIL) (($ (-383 (-523)) $) NIL (|has| |#2| (-339))) (($ $ (-383 (-523))) NIL (|has| |#2| (-339)))))
-(((-756 |#1| |#2| |#3|) (-13 (-107 $ $) (-211) (-10 -8 (IF (|has| |#2| (-339)) (-6 (-339)) |%noBranch|) (-15 -3976 ($ |#2|)) (-15 -3976 (|#2| $)))) (-1016) (-831 |#1|) |#1|) (T -756))
-((-3976 (*1 *1 *2) (-12 (-4 *3 (-1016)) (-14 *4 *3) (-5 *1 (-756 *3 *2 *4)) (-4 *2 (-831 *3)))) (-3976 (*1 *2 *1) (-12 (-4 *2 (-831 *3)) (-5 *1 (-756 *3 *2 *4)) (-4 *3 (-1016)) (-14 *4 *3))))
-(-13 (-107 $ $) (-211) (-10 -8 (IF (|has| |#2| (-339)) (-6 (-339)) |%noBranch|) (-15 -3976 ($ |#2|)) (-15 -3976 (|#2| $))))
-((-3260 (((-108) $ $) NIL)) (-1255 (((-710) $) NIL)) (-2354 ((|#1| $) 10)) (-2898 (((-3 |#1| "failed") $) NIL)) (-1996 ((|#1| $) NIL)) (-1500 (((-710) $) 11)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-1647 (($ |#1| (-710)) 9)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-4024 (($ $) NIL) (($ $ (-710)) NIL)) (-3976 (((-794) $) NIL) (($ |#1|) NIL)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) NIL)))
-(((-757 |#1|) (-243 |#1|) (-786)) (T -757))
-NIL
-(-243 |#1|)
-((-3260 (((-108) $ $) NIL)) (-1304 (((-589 |#1|) $) 29)) (-3843 (((-710) $) NIL)) (-1640 (($) NIL T CONST)) (-3168 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 20)) (-2898 (((-3 |#1| "failed") $) NIL)) (-1996 ((|#1| $) NIL)) (-3891 (($ $) 31)) (-4211 (((-3 $ "failed") $) NIL)) (-2893 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-3482 (((-108) $) NIL)) (-3019 ((|#1| $ (-523)) NIL)) (-3831 (((-710) $ (-523)) NIL)) (-2471 (($ $) 36)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-2475 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 17)) (-2269 (((-108) $ $) 34)) (-3229 (((-710) $) 25)) (-3841 (((-1070) $) NIL)) (-2802 (($ $ $) NIL)) (-1231 (($ $ $) NIL)) (-2435 (((-1034) $) NIL)) (-3879 ((|#1| $) 30)) (-3286 (((-589 (-2 (|:| |gen| |#1|) (|:| -1847 (-710)))) $) NIL)) (-2477 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-3976 (((-794) $) NIL) (($ |#1|) NIL)) (-2573 (($ $ (-710)) NIL) (($ $ (-852)) NIL)) (-1440 (($) 15 T CONST)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 35)) (** (($ $ (-710)) NIL) (($ $ (-852)) NIL) (($ |#1| (-710)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-758 |#1|) (-13 (-782) (-964 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-710))) (-15 -3879 (|#1| $)) (-15 -3891 ($ $)) (-15 -2471 ($ $)) (-15 -2269 ((-108) $ $)) (-15 -1231 ($ $ $)) (-15 -2802 ($ $ $)) (-15 -2475 ((-3 $ "failed") $ $)) (-15 -3168 ((-3 $ "failed") $ $)) (-15 -2475 ((-3 $ "failed") $ |#1|)) (-15 -3168 ((-3 $ "failed") $ |#1|)) (-15 -2477 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2893 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3843 ((-710) $)) (-15 -3831 ((-710) $ (-523))) (-15 -3019 (|#1| $ (-523))) (-15 -3286 ((-589 (-2 (|:| |gen| |#1|) (|:| -1847 (-710)))) $)) (-15 -3229 ((-710) $)) (-15 -1304 ((-589 |#1|) $)))) (-786)) (T -758))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-786)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-758 *2)) (-4 *2 (-786)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-710)) (-5 *1 (-758 *2)) (-4 *2 (-786)))) (-3879 (*1 *2 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-786)))) (-3891 (*1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-786)))) (-2471 (*1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-786)))) (-2269 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-758 *3)) (-4 *3 (-786)))) (-1231 (*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-786)))) (-2802 (*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-786)))) (-2475 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-758 *2)) (-4 *2 (-786)))) (-3168 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-758 *2)) (-4 *2 (-786)))) (-2475 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-758 *2)) (-4 *2 (-786)))) (-3168 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-758 *2)) (-4 *2 (-786)))) (-2477 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-758 *3)) (|:| |rm| (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-786)))) (-2893 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-758 *3)) (|:| |mm| (-758 *3)) (|:| |rm| (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-786)))) (-3843 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-758 *3)) (-4 *3 (-786)))) (-3831 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *2 (-710)) (-5 *1 (-758 *4)) (-4 *4 (-786)))) (-3019 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *1 (-758 *2)) (-4 *2 (-786)))) (-3286 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| |gen| *3) (|:| -1847 (-710))))) (-5 *1 (-758 *3)) (-4 *3 (-786)))) (-3229 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-758 *3)) (-4 *3 (-786)))) (-1304 (*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-758 *3)) (-4 *3 (-786)))))
-(-13 (-782) (-964 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-710))) (-15 -3879 (|#1| $)) (-15 -3891 ($ $)) (-15 -2471 ($ $)) (-15 -2269 ((-108) $ $)) (-15 -1231 ($ $ $)) (-15 -2802 ($ $ $)) (-15 -2475 ((-3 $ "failed") $ $)) (-15 -3168 ((-3 $ "failed") $ $)) (-15 -2475 ((-3 $ "failed") $ |#1|)) (-15 -3168 ((-3 $ "failed") $ |#1|)) (-15 -2477 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2893 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3843 ((-710) $)) (-15 -3831 ((-710) $ (-523))) (-15 -3019 (|#1| $ (-523))) (-15 -3286 ((-589 (-2 (|:| |gen| |#1|) (|:| -1847 (-710)))) $)) (-15 -3229 ((-710) $)) (-15 -1304 ((-589 |#1|) $))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-2999 (((-3 $ "failed") $ $) 19)) (-2035 (((-523) $) 53)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-3702 (((-108) $) 51)) (-3482 (((-108) $) 31)) (-4050 (((-108) $) 52)) (-3268 (($ $ $) 50)) (-2644 (($ $ $) 49)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2469 (((-3 $ "failed") $ $) 42)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43)) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 39)) (-3984 (($ $) 54)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4078 (((-108) $ $) 47)) (-4061 (((-108) $ $) 46)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 48)) (-4052 (((-108) $ $) 45)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-759) (-129)) (T -759))
-NIL
-(-13 (-515) (-784))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-563 (-794)) . T) ((-158) . T) ((-267) . T) ((-515) . T) ((-591 $) . T) ((-657 $) . T) ((-666) . T) ((-730) . T) ((-731) . T) ((-733) . T) ((-734) . T) ((-784) . T) ((-786) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3236 (($ (-1034)) 7)) (-2367 (((-108) $ (-1070) (-1034)) 15)) (-1885 (((-761) $) 12)) (-2820 (((-761) $) 11)) (-1225 (((-1174) $) 9)) (-3501 (((-108) $ (-1034)) 16)))
-(((-760) (-10 -8 (-15 -3236 ($ (-1034))) (-15 -1225 ((-1174) $)) (-15 -2820 ((-761) $)) (-15 -1885 ((-761) $)) (-15 -2367 ((-108) $ (-1070) (-1034))) (-15 -3501 ((-108) $ (-1034))))) (T -760))
-((-3501 (*1 *2 *1 *3) (-12 (-5 *3 (-1034)) (-5 *2 (-108)) (-5 *1 (-760)))) (-2367 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1070)) (-5 *4 (-1034)) (-5 *2 (-108)) (-5 *1 (-760)))) (-1885 (*1 *2 *1) (-12 (-5 *2 (-761)) (-5 *1 (-760)))) (-2820 (*1 *2 *1) (-12 (-5 *2 (-761)) (-5 *1 (-760)))) (-1225 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-760)))) (-3236 (*1 *1 *2) (-12 (-5 *2 (-1034)) (-5 *1 (-760)))))
-(-10 -8 (-15 -3236 ($ (-1034))) (-15 -1225 ((-1174) $)) (-15 -2820 ((-761) $)) (-15 -1885 ((-761) $)) (-15 -2367 ((-108) $ (-1070) (-1034))) (-15 -3501 ((-108) $ (-1034))))
-((-3200 (((-1174) $ (-762)) 12)) (-1477 (((-1174) $ (-1087)) 32)) (-2481 (((-1174) $ (-1070) (-1070)) 34)) (-1623 (((-1174) $ (-1070)) 33)) (-3155 (((-1174) $) 19)) (-4153 (((-1174) $ (-523)) 28)) (-1900 (((-1174) $ (-203)) 30)) (-3579 (((-1174) $) 18)) (-2189 (((-1174) $) 26)) (-1926 (((-1174) $) 25)) (-2686 (((-1174) $) 23)) (-3851 (((-1174) $) 24)) (-3653 (((-1174) $) 22)) (-3468 (((-1174) $) 21)) (-1925 (((-1174) $) 20)) (-2513 (((-1174) $) 16)) (-1513 (((-1174) $) 17)) (-2432 (((-1174) $) 15)) (-1871 (((-1174) $) 14)) (-4002 (((-1174) $) 13)) (-3098 (($ (-1070) (-762)) 9)) (-1267 (($ (-1070) (-1070) (-762)) 8)) (-2429 (((-1087) $) 51)) (-4187 (((-1087) $) 55)) (-3786 (((-2 (|:| |cd| (-1070)) (|:| -1522 (-1070))) $) 54)) (-1802 (((-1070) $) 52)) (-3698 (((-1174) $) 41)) (-2505 (((-523) $) 49)) (-1628 (((-203) $) 50)) (-3330 (((-1174) $) 40)) (-4221 (((-1174) $) 48)) (-1453 (((-1174) $) 47)) (-3466 (((-1174) $) 45)) (-2019 (((-1174) $) 46)) (-4123 (((-1174) $) 44)) (-4026 (((-1174) $) 43)) (-3993 (((-1174) $) 42)) (-3493 (((-1174) $) 38)) (-2474 (((-1174) $) 39)) (-1514 (((-1174) $) 37)) (-1537 (((-1174) $) 36)) (-1584 (((-1174) $) 35)) (-4190 (((-1174) $) 11)))
-(((-761) (-10 -8 (-15 -1267 ($ (-1070) (-1070) (-762))) (-15 -3098 ($ (-1070) (-762))) (-15 -4190 ((-1174) $)) (-15 -3200 ((-1174) $ (-762))) (-15 -4002 ((-1174) $)) (-15 -1871 ((-1174) $)) (-15 -2432 ((-1174) $)) (-15 -2513 ((-1174) $)) (-15 -1513 ((-1174) $)) (-15 -3579 ((-1174) $)) (-15 -3155 ((-1174) $)) (-15 -1925 ((-1174) $)) (-15 -3468 ((-1174) $)) (-15 -3653 ((-1174) $)) (-15 -2686 ((-1174) $)) (-15 -3851 ((-1174) $)) (-15 -1926 ((-1174) $)) (-15 -2189 ((-1174) $)) (-15 -4153 ((-1174) $ (-523))) (-15 -1900 ((-1174) $ (-203))) (-15 -1477 ((-1174) $ (-1087))) (-15 -1623 ((-1174) $ (-1070))) (-15 -2481 ((-1174) $ (-1070) (-1070))) (-15 -1584 ((-1174) $)) (-15 -1537 ((-1174) $)) (-15 -1514 ((-1174) $)) (-15 -3493 ((-1174) $)) (-15 -2474 ((-1174) $)) (-15 -3330 ((-1174) $)) (-15 -3698 ((-1174) $)) (-15 -3993 ((-1174) $)) (-15 -4026 ((-1174) $)) (-15 -4123 ((-1174) $)) (-15 -3466 ((-1174) $)) (-15 -2019 ((-1174) $)) (-15 -1453 ((-1174) $)) (-15 -4221 ((-1174) $)) (-15 -2505 ((-523) $)) (-15 -1628 ((-203) $)) (-15 -2429 ((-1087) $)) (-15 -1802 ((-1070) $)) (-15 -3786 ((-2 (|:| |cd| (-1070)) (|:| -1522 (-1070))) $)) (-15 -4187 ((-1087) $)))) (T -761))
-((-4187 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-761)))) (-3786 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1070)) (|:| -1522 (-1070)))) (-5 *1 (-761)))) (-1802 (*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-761)))) (-2429 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-761)))) (-1628 (*1 *2 *1) (-12 (-5 *2 (-203)) (-5 *1 (-761)))) (-2505 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-761)))) (-4221 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-1453 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-2019 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-3466 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-4123 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-4026 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-3993 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-3698 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-3330 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-2474 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-3493 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-1514 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-1537 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-1584 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-2481 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-761)))) (-1623 (*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-761)))) (-1477 (*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1174)) (-5 *1 (-761)))) (-1900 (*1 *2 *1 *3) (-12 (-5 *3 (-203)) (-5 *2 (-1174)) (-5 *1 (-761)))) (-4153 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *2 (-1174)) (-5 *1 (-761)))) (-2189 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-1926 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-3851 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-2686 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-3653 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-3468 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-1925 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-3155 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-3579 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-1513 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-2513 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-2432 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-1871 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-4002 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-3200 (*1 *2 *1 *3) (-12 (-5 *3 (-762)) (-5 *2 (-1174)) (-5 *1 (-761)))) (-4190 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))) (-3098 (*1 *1 *2 *3) (-12 (-5 *2 (-1070)) (-5 *3 (-762)) (-5 *1 (-761)))) (-1267 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1070)) (-5 *3 (-762)) (-5 *1 (-761)))))
-(-10 -8 (-15 -1267 ($ (-1070) (-1070) (-762))) (-15 -3098 ($ (-1070) (-762))) (-15 -4190 ((-1174) $)) (-15 -3200 ((-1174) $ (-762))) (-15 -4002 ((-1174) $)) (-15 -1871 ((-1174) $)) (-15 -2432 ((-1174) $)) (-15 -2513 ((-1174) $)) (-15 -1513 ((-1174) $)) (-15 -3579 ((-1174) $)) (-15 -3155 ((-1174) $)) (-15 -1925 ((-1174) $)) (-15 -3468 ((-1174) $)) (-15 -3653 ((-1174) $)) (-15 -2686 ((-1174) $)) (-15 -3851 ((-1174) $)) (-15 -1926 ((-1174) $)) (-15 -2189 ((-1174) $)) (-15 -4153 ((-1174) $ (-523))) (-15 -1900 ((-1174) $ (-203))) (-15 -1477 ((-1174) $ (-1087))) (-15 -1623 ((-1174) $ (-1070))) (-15 -2481 ((-1174) $ (-1070) (-1070))) (-15 -1584 ((-1174) $)) (-15 -1537 ((-1174) $)) (-15 -1514 ((-1174) $)) (-15 -3493 ((-1174) $)) (-15 -2474 ((-1174) $)) (-15 -3330 ((-1174) $)) (-15 -3698 ((-1174) $)) (-15 -3993 ((-1174) $)) (-15 -4026 ((-1174) $)) (-15 -4123 ((-1174) $)) (-15 -3466 ((-1174) $)) (-15 -2019 ((-1174) $)) (-15 -1453 ((-1174) $)) (-15 -4221 ((-1174) $)) (-15 -2505 ((-523) $)) (-15 -1628 ((-203) $)) (-15 -2429 ((-1087) $)) (-15 -1802 ((-1070) $)) (-15 -3786 ((-2 (|:| |cd| (-1070)) (|:| -1522 (-1070))) $)) (-15 -4187 ((-1087) $)))
-((-3260 (((-108) $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 12)) (-1268 (($) 15)) (-2131 (($) 13)) (-2812 (($) 16)) (-3478 (($) 14)) (-4037 (((-108) $ $) 8)))
-(((-762) (-13 (-1016) (-10 -8 (-15 -2131 ($)) (-15 -1268 ($)) (-15 -2812 ($)) (-15 -3478 ($))))) (T -762))
-((-2131 (*1 *1) (-5 *1 (-762))) (-1268 (*1 *1) (-5 *1 (-762))) (-2812 (*1 *1) (-5 *1 (-762))) (-3478 (*1 *1) (-5 *1 (-762))))
-(-13 (-1016) (-10 -8 (-15 -2131 ($)) (-15 -1268 ($)) (-15 -2812 ($)) (-15 -3478 ($))))
-((-3260 (((-108) $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 21) (($ (-1087)) 17)) (-1429 (((-108) $) 10)) (-3176 (((-108) $) 9)) (-3633 (((-108) $) 11)) (-3431 (((-108) $) 8)) (-4037 (((-108) $ $) 19)))
-(((-763) (-13 (-1016) (-10 -8 (-15 -3976 ($ (-1087))) (-15 -3431 ((-108) $)) (-15 -3176 ((-108) $)) (-15 -1429 ((-108) $)) (-15 -3633 ((-108) $))))) (T -763))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-763)))) (-3431 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-763)))) (-3176 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-763)))) (-1429 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-763)))) (-3633 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-763)))))
-(-13 (-1016) (-10 -8 (-15 -3976 ($ (-1087))) (-15 -3431 ((-108) $)) (-15 -3176 ((-108) $)) (-15 -1429 ((-108) $)) (-15 -3633 ((-108) $))))
-((-3260 (((-108) $ $) NIL)) (-2623 (($ (-763) (-589 (-1087))) 24)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-4009 (((-763) $) 25)) (-3806 (((-589 (-1087)) $) 26)) (-3976 (((-794) $) 23)) (-4037 (((-108) $ $) NIL)))
-(((-764) (-13 (-1016) (-10 -8 (-15 -4009 ((-763) $)) (-15 -3806 ((-589 (-1087)) $)) (-15 -2623 ($ (-763) (-589 (-1087))))))) (T -764))
-((-4009 (*1 *2 *1) (-12 (-5 *2 (-763)) (-5 *1 (-764)))) (-3806 (*1 *2 *1) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-764)))) (-2623 (*1 *1 *2 *3) (-12 (-5 *2 (-763)) (-5 *3 (-589 (-1087))) (-5 *1 (-764)))))
-(-13 (-1016) (-10 -8 (-15 -4009 ((-763) $)) (-15 -3806 ((-589 (-1087)) $)) (-15 -2623 ($ (-763) (-589 (-1087))))))
-((-3342 (((-1174) (-761) (-292 |#1|) (-108)) 23) (((-1174) (-761) (-292 |#1|)) 79) (((-1070) (-292 |#1|) (-108)) 78) (((-1070) (-292 |#1|)) 77)))
-(((-765 |#1|) (-10 -7 (-15 -3342 ((-1070) (-292 |#1|))) (-15 -3342 ((-1070) (-292 |#1|) (-108))) (-15 -3342 ((-1174) (-761) (-292 |#1|))) (-15 -3342 ((-1174) (-761) (-292 |#1|) (-108)))) (-13 (-767) (-786) (-973))) (T -765))
-((-3342 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-761)) (-5 *4 (-292 *6)) (-5 *5 (-108)) (-4 *6 (-13 (-767) (-786) (-973))) (-5 *2 (-1174)) (-5 *1 (-765 *6)))) (-3342 (*1 *2 *3 *4) (-12 (-5 *3 (-761)) (-5 *4 (-292 *5)) (-4 *5 (-13 (-767) (-786) (-973))) (-5 *2 (-1174)) (-5 *1 (-765 *5)))) (-3342 (*1 *2 *3 *4) (-12 (-5 *3 (-292 *5)) (-5 *4 (-108)) (-4 *5 (-13 (-767) (-786) (-973))) (-5 *2 (-1070)) (-5 *1 (-765 *5)))) (-3342 (*1 *2 *3) (-12 (-5 *3 (-292 *4)) (-4 *4 (-13 (-767) (-786) (-973))) (-5 *2 (-1070)) (-5 *1 (-765 *4)))))
-(-10 -7 (-15 -3342 ((-1070) (-292 |#1|))) (-15 -3342 ((-1070) (-292 |#1|) (-108))) (-15 -3342 ((-1174) (-761) (-292 |#1|))) (-15 -3342 ((-1174) (-761) (-292 |#1|) (-108))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3104 ((|#1| $) 10)) (-3362 (($ |#1|) 9)) (-3482 (((-108) $) NIL)) (-3694 (($ |#2| (-710)) NIL)) (-2140 (((-710) $) NIL)) (-3119 ((|#2| $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-4024 (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $) NIL (|has| |#1| (-211)))) (-1487 (((-710) $) NIL)) (-3976 (((-794) $) 17) (($ (-523)) NIL) (($ |#2|) NIL (|has| |#2| (-158)))) (-1234 ((|#2| $ (-710)) NIL)) (-1698 (((-710)) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $) NIL (|has| |#1| (-211)))) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 12) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-766 |#1| |#2|) (-13 (-648 |#2|) (-10 -8 (IF (|has| |#1| (-211)) (-6 (-211)) |%noBranch|) (-15 -3362 ($ |#1|)) (-15 -3104 (|#1| $)))) (-648 |#2|) (-973)) (T -766))
-((-3362 (*1 *1 *2) (-12 (-4 *3 (-973)) (-5 *1 (-766 *2 *3)) (-4 *2 (-648 *3)))) (-3104 (*1 *2 *1) (-12 (-4 *2 (-648 *3)) (-5 *1 (-766 *2 *3)) (-4 *3 (-973)))))
-(-13 (-648 |#2|) (-10 -8 (IF (|has| |#1| (-211)) (-6 (-211)) |%noBranch|) (-15 -3362 ($ |#1|)) (-15 -3104 (|#1| $))))
-((-3342 (((-1174) (-761) $ (-108)) 9) (((-1174) (-761) $) 8) (((-1070) $ (-108)) 7) (((-1070) $) 6)))
-(((-767) (-129)) (T -767))
-((-3342 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-767)) (-5 *3 (-761)) (-5 *4 (-108)) (-5 *2 (-1174)))) (-3342 (*1 *2 *3 *1) (-12 (-4 *1 (-767)) (-5 *3 (-761)) (-5 *2 (-1174)))) (-3342 (*1 *2 *1 *3) (-12 (-4 *1 (-767)) (-5 *3 (-108)) (-5 *2 (-1070)))) (-3342 (*1 *2 *1) (-12 (-4 *1 (-767)) (-5 *2 (-1070)))))
-(-13 (-10 -8 (-15 -3342 ((-1070) $)) (-15 -3342 ((-1070) $ (-108))) (-15 -3342 ((-1174) (-761) $)) (-15 -3342 ((-1174) (-761) $ (-108)))))
-((-2252 (((-288) (-1070) (-1070)) 12)) (-3667 (((-108) (-1070) (-1070)) 34)) (-1444 (((-108) (-1070)) 33)) (-3488 (((-51) (-1070)) 25)) (-4189 (((-51) (-1070)) 23)) (-2890 (((-51) (-761)) 17)) (-2110 (((-589 (-1070)) (-1070)) 28)) (-1755 (((-589 (-1070))) 27)))
-(((-768) (-10 -7 (-15 -2890 ((-51) (-761))) (-15 -4189 ((-51) (-1070))) (-15 -3488 ((-51) (-1070))) (-15 -1755 ((-589 (-1070)))) (-15 -2110 ((-589 (-1070)) (-1070))) (-15 -1444 ((-108) (-1070))) (-15 -3667 ((-108) (-1070) (-1070))) (-15 -2252 ((-288) (-1070) (-1070))))) (T -768))
-((-2252 (*1 *2 *3 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-288)) (-5 *1 (-768)))) (-3667 (*1 *2 *3 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-108)) (-5 *1 (-768)))) (-1444 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-108)) (-5 *1 (-768)))) (-2110 (*1 *2 *3) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-768)) (-5 *3 (-1070)))) (-1755 (*1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-768)))) (-3488 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-51)) (-5 *1 (-768)))) (-4189 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-51)) (-5 *1 (-768)))) (-2890 (*1 *2 *3) (-12 (-5 *3 (-761)) (-5 *2 (-51)) (-5 *1 (-768)))))
-(-10 -7 (-15 -2890 ((-51) (-761))) (-15 -4189 ((-51) (-1070))) (-15 -3488 ((-51) (-1070))) (-15 -1755 ((-589 (-1070)))) (-15 -2110 ((-589 (-1070)) (-1070))) (-15 -1444 ((-108) (-1070))) (-15 -3667 ((-108) (-1070) (-1070))) (-15 -2252 ((-288) (-1070) (-1070))))
-((-3260 (((-108) $ $) 19)) (-2073 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-1767 (($ $ $) 72)) (-2607 (((-108) $ $) 73)) (-2282 (((-108) $ (-710)) 8)) (-4033 (($ (-589 |#1|)) 68) (($) 67)) (-3627 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4248)))) (-1640 (($) 7 T CONST)) (-2543 (($ $) 62)) (-3917 (($ $) 58 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-1869 (($ |#1| $) 47 (|has| $ (-6 -4248))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4248)))) (-2231 (($ |#1| $) 57 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4248)))) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-3268 ((|#1| $) 78)) (-3325 (($ $ $) 81)) (-3123 (($ $ $) 80)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2644 ((|#1| $) 79)) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22)) (-1625 (($ $ $) 69)) (-2349 ((|#1| $) 39)) (-3862 (($ |#1| $) 40) (($ |#1| $ (-710)) 63)) (-2435 (((-1034) $) 21)) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-1322 ((|#1| $) 41)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1207 (((-589 (-2 (|:| -2746 |#1|) (|:| -2452 (-710)))) $) 61)) (-2973 (($ $ |#1|) 71) (($ $ $) 70)) (-1771 (($) 49) (($ (-589 |#1|)) 48)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3077 (((-499) $) 59 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 50)) (-3976 (((-794) $) 18)) (-2000 (($ (-589 |#1|)) 66) (($) 65)) (-1245 (($ (-589 |#1|)) 42)) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20)) (-4052 (((-108) $ $) 64)) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-769 |#1|) (-129) (-786)) (T -769))
-((-3268 (*1 *2 *1) (-12 (-4 *1 (-769 *2)) (-4 *2 (-786)))))
-(-13 (-676 |t#1|) (-898 |t#1|) (-10 -8 (-15 -3268 (|t#1| $))))
-(((-33) . T) ((-102 |#1|) . T) ((-97) . T) ((-563 (-794)) . T) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-213 |#1|) . T) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-634 |#1|) . T) ((-676 |#1|) . T) ((-898 |#1|) . T) ((-1014 |#1|) . T) ((-1016) . T) ((-1123) . T))
-((-2538 (((-1174) (-1034) (-1034)) 47)) (-3676 (((-1174) (-760) (-51)) 44)) (-3099 (((-51) (-760)) 16)))
-(((-770) (-10 -7 (-15 -3099 ((-51) (-760))) (-15 -3676 ((-1174) (-760) (-51))) (-15 -2538 ((-1174) (-1034) (-1034))))) (T -770))
-((-2538 (*1 *2 *3 *3) (-12 (-5 *3 (-1034)) (-5 *2 (-1174)) (-5 *1 (-770)))) (-3676 (*1 *2 *3 *4) (-12 (-5 *3 (-760)) (-5 *4 (-51)) (-5 *2 (-1174)) (-5 *1 (-770)))) (-3099 (*1 *2 *3) (-12 (-5 *3 (-760)) (-5 *2 (-51)) (-5 *1 (-770)))))
-(-10 -7 (-15 -3099 ((-51) (-760))) (-15 -3676 ((-1174) (-760) (-51))) (-15 -2538 ((-1174) (-1034) (-1034))))
-((-3015 (((-772 |#2|) (-1 |#2| |#1|) (-772 |#1|) (-772 |#2|)) 12) (((-772 |#2|) (-1 |#2| |#1|) (-772 |#1|)) 13)))
-(((-771 |#1| |#2|) (-10 -7 (-15 -3015 ((-772 |#2|) (-1 |#2| |#1|) (-772 |#1|))) (-15 -3015 ((-772 |#2|) (-1 |#2| |#1|) (-772 |#1|) (-772 |#2|)))) (-1016) (-1016)) (T -771))
-((-3015 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-772 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-772 *5)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-5 *1 (-771 *5 *6)))) (-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-772 *5)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-5 *2 (-772 *6)) (-5 *1 (-771 *5 *6)))))
-(-10 -7 (-15 -3015 ((-772 |#2|) (-1 |#2| |#1|) (-772 |#1|))) (-15 -3015 ((-772 |#2|) (-1 |#2| |#1|) (-772 |#1|) (-772 |#2|))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL (|has| |#1| (-21)))) (-2999 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-2035 (((-523) $) NIL (|has| |#1| (-784)))) (-1640 (($) NIL (|has| |#1| (-21)) CONST)) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) 15)) (-1996 (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) 9)) (-4211 (((-3 $ "failed") $) 40 (|has| |#1| (-784)))) (-4031 (((-3 (-383 (-523)) "failed") $) 48 (|has| |#1| (-508)))) (-1310 (((-108) $) 43 (|has| |#1| (-508)))) (-1600 (((-383 (-523)) $) 45 (|has| |#1| (-508)))) (-3702 (((-108) $) NIL (|has| |#1| (-784)))) (-3482 (((-108) $) NIL (|has| |#1| (-784)))) (-4050 (((-108) $) NIL (|has| |#1| (-784)))) (-3268 (($ $ $) NIL (|has| |#1| (-784)))) (-2644 (($ $ $) NIL (|has| |#1| (-784)))) (-3841 (((-1070) $) NIL)) (-2195 (($) 13)) (-1806 (((-108) $) 12)) (-2435 (((-1034) $) NIL)) (-3349 (((-108) $) 11)) (-3976 (((-794) $) 18) (($ (-383 (-523))) NIL (|has| |#1| (-964 (-383 (-523))))) (($ |#1|) 8) (($ (-523)) NIL (-3255 (|has| |#1| (-784)) (|has| |#1| (-964 (-523)))))) (-1698 (((-710)) 34 (|has| |#1| (-784)))) (-3984 (($ $) NIL (|has| |#1| (-784)))) (-2573 (($ $ (-852)) NIL (|has| |#1| (-784))) (($ $ (-710)) NIL (|has| |#1| (-784)))) (-1428 (($) 22 (|has| |#1| (-21)) CONST)) (-1440 (($) 31 (|has| |#1| (-784)) CONST)) (-4078 (((-108) $ $) NIL (|has| |#1| (-784)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-784)))) (-4037 (((-108) $ $) 20)) (-4070 (((-108) $ $) NIL (|has| |#1| (-784)))) (-4052 (((-108) $ $) 42 (|has| |#1| (-784)))) (-4115 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 27 (|has| |#1| (-21)))) (-4103 (($ $ $) 29 (|has| |#1| (-21)))) (** (($ $ (-852)) NIL (|has| |#1| (-784))) (($ $ (-710)) NIL (|has| |#1| (-784)))) (* (($ $ $) 37 (|has| |#1| (-784))) (($ (-523) $) 25 (|has| |#1| (-21))) (($ (-710) $) NIL (|has| |#1| (-21))) (($ (-852) $) NIL (|has| |#1| (-21)))))
-(((-772 |#1|) (-13 (-1016) (-387 |#1|) (-10 -8 (-15 -2195 ($)) (-15 -3349 ((-108) $)) (-15 -1806 ((-108) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |#1| (-508)) (PROGN (-15 -1310 ((-108) $)) (-15 -1600 ((-383 (-523)) $)) (-15 -4031 ((-3 (-383 (-523)) "failed") $))) |%noBranch|))) (-1016)) (T -772))
-((-2195 (*1 *1) (-12 (-5 *1 (-772 *2)) (-4 *2 (-1016)))) (-3349 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-772 *3)) (-4 *3 (-1016)))) (-1806 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-772 *3)) (-4 *3 (-1016)))) (-1310 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-772 *3)) (-4 *3 (-508)) (-4 *3 (-1016)))) (-1600 (*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-772 *3)) (-4 *3 (-508)) (-4 *3 (-1016)))) (-4031 (*1 *2 *1) (|partial| -12 (-5 *2 (-383 (-523))) (-5 *1 (-772 *3)) (-4 *3 (-508)) (-4 *3 (-1016)))))
-(-13 (-1016) (-387 |#1|) (-10 -8 (-15 -2195 ($)) (-15 -3349 ((-108) $)) (-15 -1806 ((-108) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |#1| (-508)) (PROGN (-15 -1310 ((-108) $)) (-15 -1600 ((-383 (-523)) $)) (-15 -4031 ((-3 (-383 (-523)) "failed") $))) |%noBranch|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL) (((-3 (-110) "failed") $) NIL)) (-1996 ((|#1| $) NIL) (((-110) $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3576 ((|#1| (-110) |#1|) NIL)) (-3482 (((-108) $) NIL)) (-1963 (($ |#1| (-337 (-110))) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-1218 (($ $ (-1 |#1| |#1|)) NIL)) (-2356 (($ $ (-1 |#1| |#1|)) NIL)) (-1502 ((|#1| $ |#1|) NIL)) (-4172 ((|#1| |#1|) NIL (|has| |#1| (-158)))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#1|) NIL) (($ (-110)) NIL)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) NIL)) (-1910 (($ $) NIL (|has| |#1| (-158))) (($ $ $) NIL (|has| |#1| (-158)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ (-110) (-523)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-158))) (($ $ |#1|) NIL (|has| |#1| (-158)))))
-(((-773 |#1|) (-13 (-973) (-964 |#1|) (-964 (-110)) (-263 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-134)) (-6 (-134)) |%noBranch|) (IF (|has| |#1| (-158)) (PROGN (-6 (-37 |#1|)) (-15 -1910 ($ $)) (-15 -1910 ($ $ $)) (-15 -4172 (|#1| |#1|))) |%noBranch|) (-15 -2356 ($ $ (-1 |#1| |#1|))) (-15 -1218 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-110) (-523))) (-15 ** ($ $ (-523))) (-15 -3576 (|#1| (-110) |#1|)) (-15 -1963 ($ |#1| (-337 (-110)))))) (-973)) (T -773))
-((-1910 (*1 *1 *1) (-12 (-5 *1 (-773 *2)) (-4 *2 (-158)) (-4 *2 (-973)))) (-1910 (*1 *1 *1 *1) (-12 (-5 *1 (-773 *2)) (-4 *2 (-158)) (-4 *2 (-973)))) (-4172 (*1 *2 *2) (-12 (-5 *1 (-773 *2)) (-4 *2 (-158)) (-4 *2 (-973)))) (-2356 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-973)) (-5 *1 (-773 *3)))) (-1218 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-973)) (-5 *1 (-773 *3)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-523)) (-5 *1 (-773 *4)) (-4 *4 (-973)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-773 *3)) (-4 *3 (-973)))) (-3576 (*1 *2 *3 *2) (-12 (-5 *3 (-110)) (-5 *1 (-773 *2)) (-4 *2 (-973)))) (-1963 (*1 *1 *2 *3) (-12 (-5 *3 (-337 (-110))) (-5 *1 (-773 *2)) (-4 *2 (-973)))))
-(-13 (-973) (-964 |#1|) (-964 (-110)) (-263 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-134)) (-6 (-134)) |%noBranch|) (IF (|has| |#1| (-158)) (PROGN (-6 (-37 |#1|)) (-15 -1910 ($ $)) (-15 -1910 ($ $ $)) (-15 -4172 (|#1| |#1|))) |%noBranch|) (-15 -2356 ($ $ (-1 |#1| |#1|))) (-15 -1218 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-110) (-523))) (-15 ** ($ $ (-523))) (-15 -3576 (|#1| (-110) |#1|)) (-15 -1963 ($ |#1| (-337 (-110))))))
-((-3225 (((-193 (-473)) (-1070)) 9)))
-(((-774) (-10 -7 (-15 -3225 ((-193 (-473)) (-1070))))) (T -774))
-((-3225 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-193 (-473))) (-5 *1 (-774)))))
-(-10 -7 (-15 -3225 ((-193 (-473)) (-1070))))
-((-3260 (((-108) $ $) 7)) (-2400 (((-962) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) 14) (((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 13)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 16) (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) 15)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-4037 (((-108) $ $) 6)))
-(((-775) (-129)) (T -775))
-((-3359 (*1 *2 *3 *4) (-12 (-4 *1 (-775)) (-5 *3 (-985)) (-5 *4 (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (-5 *2 (-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)))))) (-3359 (*1 *2 *3 *4) (-12 (-4 *1 (-775)) (-5 *3 (-985)) (-5 *4 (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) (-5 *2 (-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)))))) (-2400 (*1 *2 *3) (-12 (-4 *1 (-775)) (-5 *3 (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) (-5 *2 (-962)))) (-2400 (*1 *2 *3) (-12 (-4 *1 (-775)) (-5 *3 (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (-5 *2 (-962)))))
-(-13 (-1016) (-10 -7 (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203))))))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))) (-15 -2400 ((-962) (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))) (-15 -2400 ((-962) (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-2307 (((-962) (-589 (-292 (-355))) (-589 (-355))) 147) (((-962) (-292 (-355)) (-589 (-355))) 145) (((-962) (-292 (-355)) (-589 (-355)) (-589 (-779 (-355))) (-589 (-779 (-355)))) 144) (((-962) (-292 (-355)) (-589 (-355)) (-589 (-779 (-355))) (-589 (-292 (-355))) (-589 (-779 (-355)))) 143) (((-962) (-777)) 117) (((-962) (-777) (-985)) 116)) (-3359 (((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-777) (-985)) 82) (((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-777)) 84)) (-3663 (((-962) (-589 (-292 (-355))) (-589 (-355))) 148) (((-962) (-777)) 133)))
-(((-776) (-10 -7 (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-777))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-777) (-985))) (-15 -2307 ((-962) (-777) (-985))) (-15 -2307 ((-962) (-777))) (-15 -3663 ((-962) (-777))) (-15 -2307 ((-962) (-292 (-355)) (-589 (-355)) (-589 (-779 (-355))) (-589 (-292 (-355))) (-589 (-779 (-355))))) (-15 -2307 ((-962) (-292 (-355)) (-589 (-355)) (-589 (-779 (-355))) (-589 (-779 (-355))))) (-15 -2307 ((-962) (-292 (-355)) (-589 (-355)))) (-15 -2307 ((-962) (-589 (-292 (-355))) (-589 (-355)))) (-15 -3663 ((-962) (-589 (-292 (-355))) (-589 (-355)))))) (T -776))
-((-3663 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-292 (-355)))) (-5 *4 (-589 (-355))) (-5 *2 (-962)) (-5 *1 (-776)))) (-2307 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-292 (-355)))) (-5 *4 (-589 (-355))) (-5 *2 (-962)) (-5 *1 (-776)))) (-2307 (*1 *2 *3 *4) (-12 (-5 *3 (-292 (-355))) (-5 *4 (-589 (-355))) (-5 *2 (-962)) (-5 *1 (-776)))) (-2307 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-292 (-355))) (-5 *4 (-589 (-355))) (-5 *5 (-589 (-779 (-355)))) (-5 *2 (-962)) (-5 *1 (-776)))) (-2307 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-589 (-355))) (-5 *5 (-589 (-779 (-355)))) (-5 *6 (-589 (-292 (-355)))) (-5 *3 (-292 (-355))) (-5 *2 (-962)) (-5 *1 (-776)))) (-3663 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-962)) (-5 *1 (-776)))) (-2307 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-962)) (-5 *1 (-776)))) (-2307 (*1 *2 *3 *4) (-12 (-5 *3 (-777)) (-5 *4 (-985)) (-5 *2 (-962)) (-5 *1 (-776)))) (-3359 (*1 *2 *3 *4) (-12 (-5 *3 (-777)) (-5 *4 (-985)) (-5 *2 (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))))) (-5 *1 (-776)))) (-3359 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))))) (-5 *1 (-776)))))
-(-10 -7 (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-777))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-777) (-985))) (-15 -2307 ((-962) (-777) (-985))) (-15 -2307 ((-962) (-777))) (-15 -3663 ((-962) (-777))) (-15 -2307 ((-962) (-292 (-355)) (-589 (-355)) (-589 (-779 (-355))) (-589 (-292 (-355))) (-589 (-779 (-355))))) (-15 -2307 ((-962) (-292 (-355)) (-589 (-355)) (-589 (-779 (-355))) (-589 (-779 (-355))))) (-15 -2307 ((-962) (-292 (-355)) (-589 (-355)))) (-15 -2307 ((-962) (-589 (-292 (-355))) (-589 (-355)))) (-15 -3663 ((-962) (-589 (-292 (-355))) (-589 (-355)))))
-((-3260 (((-108) $ $) NIL)) (-1996 (((-3 (|:| |noa| (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (|:| |lsa| (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))) $) 21)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 20) (($ (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) 14) (($ (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) 16) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (|:| |lsa| (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))))) 18)) (-4037 (((-108) $ $) NIL)))
-(((-777) (-13 (-1016) (-10 -8 (-15 -3976 ($ (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203))))))) (-15 -3976 ($ (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))) (-15 -3976 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (|:| |lsa| (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))))) (-15 -3976 ((-794) $)) (-15 -1996 ((-3 (|:| |noa| (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (|:| |lsa| (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))) $))))) (T -777))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-777)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (-5 *1 (-777)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))) (-5 *1 (-777)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (|:| |lsa| (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))))) (-5 *1 (-777)))) (-1996 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (|:| |lsa| (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203))))))) (-5 *1 (-777)))))
-(-13 (-1016) (-10 -8 (-15 -3976 ($ (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203))))))) (-15 -3976 ($ (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))) (-15 -3976 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (|:| |lsa| (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))))) (-15 -3976 ((-794) $)) (-15 -1996 ((-3 (|:| |noa| (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203))) (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203)))) (|:| |ub| (-589 (-779 (-203)))))) (|:| |lsa| (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))) $))))
-((-3015 (((-779 |#2|) (-1 |#2| |#1|) (-779 |#1|) (-779 |#2|) (-779 |#2|)) 13) (((-779 |#2|) (-1 |#2| |#1|) (-779 |#1|)) 14)))
-(((-778 |#1| |#2|) (-10 -7 (-15 -3015 ((-779 |#2|) (-1 |#2| |#1|) (-779 |#1|))) (-15 -3015 ((-779 |#2|) (-1 |#2| |#1|) (-779 |#1|) (-779 |#2|) (-779 |#2|)))) (-1016) (-1016)) (T -778))
-((-3015 (*1 *2 *3 *4 *2 *2) (-12 (-5 *2 (-779 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-779 *5)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-5 *1 (-778 *5 *6)))) (-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-779 *5)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-5 *2 (-779 *6)) (-5 *1 (-778 *5 *6)))))
-(-10 -7 (-15 -3015 ((-779 |#2|) (-1 |#2| |#1|) (-779 |#1|))) (-15 -3015 ((-779 |#2|) (-1 |#2| |#1|) (-779 |#1|) (-779 |#2|) (-779 |#2|))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL (|has| |#1| (-21)))) (-3110 (((-1034) $) 24)) (-2999 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-2035 (((-523) $) NIL (|has| |#1| (-784)))) (-1640 (($) NIL (|has| |#1| (-21)) CONST)) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) 16)) (-1996 (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) 9)) (-4211 (((-3 $ "failed") $) 47 (|has| |#1| (-784)))) (-4031 (((-3 (-383 (-523)) "failed") $) 54 (|has| |#1| (-508)))) (-1310 (((-108) $) 49 (|has| |#1| (-508)))) (-1600 (((-383 (-523)) $) 52 (|has| |#1| (-508)))) (-3702 (((-108) $) NIL (|has| |#1| (-784)))) (-2327 (($) 13)) (-3482 (((-108) $) NIL (|has| |#1| (-784)))) (-4050 (((-108) $) NIL (|has| |#1| (-784)))) (-2335 (($) 14)) (-3268 (($ $ $) NIL (|has| |#1| (-784)))) (-2644 (($ $ $) NIL (|has| |#1| (-784)))) (-3841 (((-1070) $) NIL)) (-1806 (((-108) $) 12)) (-2435 (((-1034) $) NIL)) (-3349 (((-108) $) 11)) (-3976 (((-794) $) 22) (($ (-383 (-523))) NIL (|has| |#1| (-964 (-383 (-523))))) (($ |#1|) 8) (($ (-523)) NIL (-3255 (|has| |#1| (-784)) (|has| |#1| (-964 (-523)))))) (-1698 (((-710)) 41 (|has| |#1| (-784)))) (-3984 (($ $) NIL (|has| |#1| (-784)))) (-2573 (($ $ (-852)) NIL (|has| |#1| (-784))) (($ $ (-710)) NIL (|has| |#1| (-784)))) (-1428 (($) 29 (|has| |#1| (-21)) CONST)) (-1440 (($) 38 (|has| |#1| (-784)) CONST)) (-4078 (((-108) $ $) NIL (|has| |#1| (-784)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-784)))) (-4037 (((-108) $ $) 27)) (-4070 (((-108) $ $) NIL (|has| |#1| (-784)))) (-4052 (((-108) $ $) 48 (|has| |#1| (-784)))) (-4115 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 34 (|has| |#1| (-21)))) (-4103 (($ $ $) 36 (|has| |#1| (-21)))) (** (($ $ (-852)) NIL (|has| |#1| (-784))) (($ $ (-710)) NIL (|has| |#1| (-784)))) (* (($ $ $) 44 (|has| |#1| (-784))) (($ (-523) $) 32 (|has| |#1| (-21))) (($ (-710) $) NIL (|has| |#1| (-21))) (($ (-852) $) NIL (|has| |#1| (-21)))))
-(((-779 |#1|) (-13 (-1016) (-387 |#1|) (-10 -8 (-15 -2327 ($)) (-15 -2335 ($)) (-15 -3349 ((-108) $)) (-15 -1806 ((-108) $)) (-15 -3110 ((-1034) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |#1| (-508)) (PROGN (-15 -1310 ((-108) $)) (-15 -1600 ((-383 (-523)) $)) (-15 -4031 ((-3 (-383 (-523)) "failed") $))) |%noBranch|))) (-1016)) (T -779))
-((-2327 (*1 *1) (-12 (-5 *1 (-779 *2)) (-4 *2 (-1016)))) (-2335 (*1 *1) (-12 (-5 *1 (-779 *2)) (-4 *2 (-1016)))) (-3349 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-779 *3)) (-4 *3 (-1016)))) (-1806 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-779 *3)) (-4 *3 (-1016)))) (-3110 (*1 *2 *1) (-12 (-5 *2 (-1034)) (-5 *1 (-779 *3)) (-4 *3 (-1016)))) (-1310 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-779 *3)) (-4 *3 (-508)) (-4 *3 (-1016)))) (-1600 (*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-779 *3)) (-4 *3 (-508)) (-4 *3 (-1016)))) (-4031 (*1 *2 *1) (|partial| -12 (-5 *2 (-383 (-523))) (-5 *1 (-779 *3)) (-4 *3 (-508)) (-4 *3 (-1016)))))
-(-13 (-1016) (-387 |#1|) (-10 -8 (-15 -2327 ($)) (-15 -2335 ($)) (-15 -3349 ((-108) $)) (-15 -1806 ((-108) $)) (-15 -3110 ((-1034) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |#1| (-508)) (PROGN (-15 -1310 ((-108) $)) (-15 -1600 ((-383 (-523)) $)) (-15 -4031 ((-3 (-383 (-523)) "failed") $))) |%noBranch|)))
-((-3260 (((-108) $ $) 7)) (-3843 (((-710)) 20)) (-3461 (($) 23)) (-3268 (($ $ $) 13)) (-2644 (($ $ $) 14)) (-4076 (((-852) $) 22)) (-3841 (((-1070) $) 9)) (-2557 (($ (-852)) 21)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-4078 (((-108) $ $) 16)) (-4061 (((-108) $ $) 17)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 15)) (-4052 (((-108) $ $) 18)))
-(((-780) (-129)) (T -780))
-NIL
-(-13 (-786) (-344))
-(((-97) . T) ((-563 (-794)) . T) ((-344) . T) ((-786) . T) ((-1016) . T))
-((-3884 (((-108) (-1169 |#2|) (-1169 |#2|)) 17)) (-2913 (((-108) (-1169 |#2|) (-1169 |#2|)) 18)) (-2263 (((-108) (-1169 |#2|) (-1169 |#2|)) 14)))
-(((-781 |#1| |#2|) (-10 -7 (-15 -2263 ((-108) (-1169 |#2|) (-1169 |#2|))) (-15 -3884 ((-108) (-1169 |#2|) (-1169 |#2|))) (-15 -2913 ((-108) (-1169 |#2|) (-1169 |#2|)))) (-710) (-731)) (T -781))
-((-2913 (*1 *2 *3 *3) (-12 (-5 *3 (-1169 *5)) (-4 *5 (-731)) (-5 *2 (-108)) (-5 *1 (-781 *4 *5)) (-14 *4 (-710)))) (-3884 (*1 *2 *3 *3) (-12 (-5 *3 (-1169 *5)) (-4 *5 (-731)) (-5 *2 (-108)) (-5 *1 (-781 *4 *5)) (-14 *4 (-710)))) (-2263 (*1 *2 *3 *3) (-12 (-5 *3 (-1169 *5)) (-4 *5 (-731)) (-5 *2 (-108)) (-5 *1 (-781 *4 *5)) (-14 *4 (-710)))))
-(-10 -7 (-15 -2263 ((-108) (-1169 |#2|) (-1169 |#2|))) (-15 -3884 ((-108) (-1169 |#2|) (-1169 |#2|))) (-15 -2913 ((-108) (-1169 |#2|) (-1169 |#2|))))
-((-3260 (((-108) $ $) 7)) (-1640 (($) 24 T CONST)) (-4211 (((-3 $ "failed") $) 28)) (-3482 (((-108) $) 25)) (-3268 (($ $ $) 13)) (-2644 (($ $ $) 14)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-2573 (($ $ (-710)) 27) (($ $ (-852)) 22)) (-1440 (($) 23 T CONST)) (-4078 (((-108) $ $) 16)) (-4061 (((-108) $ $) 17)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 15)) (-4052 (((-108) $ $) 18)) (** (($ $ (-710)) 26) (($ $ (-852)) 21)) (* (($ $ $) 20)))
-(((-782) (-129)) (T -782))
-NIL
-(-13 (-786) (-666))
-(((-97) . T) ((-563 (-794)) . T) ((-666) . T) ((-786) . T) ((-1028) . T) ((-1016) . T))
-((-2035 (((-523) $) 17)) (-3702 (((-108) $) 10)) (-4050 (((-108) $) 11)) (-3984 (($ $) 19)))
-(((-783 |#1|) (-10 -8 (-15 -3984 (|#1| |#1|)) (-15 -2035 ((-523) |#1|)) (-15 -4050 ((-108) |#1|)) (-15 -3702 ((-108) |#1|))) (-784)) (T -783))
-NIL
-(-10 -8 (-15 -3984 (|#1| |#1|)) (-15 -2035 ((-523) |#1|)) (-15 -4050 ((-108) |#1|)) (-15 -3702 ((-108) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 24)) (-2999 (((-3 $ "failed") $ $) 26)) (-2035 (((-523) $) 33)) (-1640 (($) 23 T CONST)) (-4211 (((-3 $ "failed") $) 39)) (-3702 (((-108) $) 35)) (-3482 (((-108) $) 42)) (-4050 (((-108) $) 34)) (-3268 (($ $ $) 13)) (-2644 (($ $ $) 14)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11) (($ (-523)) 45)) (-1698 (((-710)) 44)) (-3984 (($ $) 32)) (-2573 (($ $ (-710)) 40) (($ $ (-852)) 36)) (-1428 (($) 22 T CONST)) (-1440 (($) 43 T CONST)) (-4078 (((-108) $ $) 16)) (-4061 (((-108) $ $) 17)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 15)) (-4052 (((-108) $ $) 18)) (-4115 (($ $ $) 28) (($ $) 27)) (-4103 (($ $ $) 20)) (** (($ $ (-710)) 41) (($ $ (-852)) 37)) (* (($ (-710) $) 25) (($ (-852) $) 21) (($ (-523) $) 29) (($ $ $) 38)))
-(((-784) (-129)) (T -784))
-((-3702 (*1 *2 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108)))) (-4050 (*1 *2 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108)))) (-2035 (*1 *2 *1) (-12 (-4 *1 (-784)) (-5 *2 (-523)))) (-3984 (*1 *1 *1) (-4 *1 (-784))))
-(-13 (-730) (-973) (-666) (-10 -8 (-15 -3702 ((-108) $)) (-15 -4050 ((-108) $)) (-15 -2035 ((-523) $)) (-15 -3984 ($ $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 $) . T) ((-666) . T) ((-730) . T) ((-731) . T) ((-733) . T) ((-734) . T) ((-786) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3268 (($ $ $) 10)) (-2644 (($ $ $) 9)) (-4078 (((-108) $ $) 13)) (-4061 (((-108) $ $) 11)) (-4070 (((-108) $ $) 14)))
-(((-785 |#1|) (-10 -8 (-15 -3268 (|#1| |#1| |#1|)) (-15 -2644 (|#1| |#1| |#1|)) (-15 -4070 ((-108) |#1| |#1|)) (-15 -4078 ((-108) |#1| |#1|)) (-15 -4061 ((-108) |#1| |#1|))) (-786)) (T -785))
-NIL
-(-10 -8 (-15 -3268 (|#1| |#1| |#1|)) (-15 -2644 (|#1| |#1| |#1|)) (-15 -4070 ((-108) |#1| |#1|)) (-15 -4078 ((-108) |#1| |#1|)) (-15 -4061 ((-108) |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-3268 (($ $ $) 13)) (-2644 (($ $ $) 14)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-4078 (((-108) $ $) 16)) (-4061 (((-108) $ $) 17)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 15)) (-4052 (((-108) $ $) 18)))
-(((-786) (-129)) (T -786))
-((-4052 (*1 *2 *1 *1) (-12 (-4 *1 (-786)) (-5 *2 (-108)))) (-4061 (*1 *2 *1 *1) (-12 (-4 *1 (-786)) (-5 *2 (-108)))) (-4078 (*1 *2 *1 *1) (-12 (-4 *1 (-786)) (-5 *2 (-108)))) (-4070 (*1 *2 *1 *1) (-12 (-4 *1 (-786)) (-5 *2 (-108)))) (-2644 (*1 *1 *1 *1) (-4 *1 (-786))) (-3268 (*1 *1 *1 *1) (-4 *1 (-786))))
-(-13 (-1016) (-10 -8 (-15 -4052 ((-108) $ $)) (-15 -4061 ((-108) $ $)) (-15 -4078 ((-108) $ $)) (-15 -4070 ((-108) $ $)) (-15 -2644 ($ $ $)) (-15 -3268 ($ $ $))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-2346 (($ $ $) 45)) (-3183 (($ $ $) 44)) (-2561 (($ $ $) 42)) (-3248 (($ $ $) 51)) (-3525 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 46)) (-1527 (((-3 $ "failed") $ $) 49)) (-2898 (((-3 (-523) "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-2213 (($ $) 35)) (-2136 (($ $ $) 39)) (-1290 (($ $ $) 38)) (-2138 (($ $ $) 47)) (-1787 (($ $ $) 53)) (-1404 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 41)) (-3904 (((-3 $ "failed") $ $) 48)) (-2469 (((-3 $ "failed") $ |#2|) 28)) (-2267 ((|#2| $) 32)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ (-383 (-523))) NIL) (($ |#2|) 12)) (-1639 (((-589 |#2|) $) 18)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 22)))
-(((-787 |#1| |#2|) (-10 -8 (-15 -2138 (|#1| |#1| |#1|)) (-15 -3525 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4102 |#1|)) |#1| |#1|)) (-15 -3248 (|#1| |#1| |#1|)) (-15 -1527 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2346 (|#1| |#1| |#1|)) (-15 -3183 (|#1| |#1| |#1|)) (-15 -2561 (|#1| |#1| |#1|)) (-15 -1404 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4102 |#1|)) |#1| |#1|)) (-15 -1787 (|#1| |#1| |#1|)) (-15 -3904 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2136 (|#1| |#1| |#1|)) (-15 -1290 (|#1| |#1| |#1|)) (-15 -2213 (|#1| |#1|)) (-15 -2267 (|#2| |#1|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1639 ((-589 |#2|) |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -3976 (|#1| |#2|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3976 (|#1| (-523))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-852) |#1|)) (-15 -3976 ((-794) |#1|))) (-788 |#2|) (-973)) (T -787))
-NIL
-(-10 -8 (-15 -2138 (|#1| |#1| |#1|)) (-15 -3525 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4102 |#1|)) |#1| |#1|)) (-15 -3248 (|#1| |#1| |#1|)) (-15 -1527 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2346 (|#1| |#1| |#1|)) (-15 -3183 (|#1| |#1| |#1|)) (-15 -2561 (|#1| |#1| |#1|)) (-15 -1404 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4102 |#1|)) |#1| |#1|)) (-15 -1787 (|#1| |#1| |#1|)) (-15 -3904 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2136 (|#1| |#1| |#1|)) (-15 -1290 (|#1| |#1| |#1|)) (-15 -2213 (|#1| |#1|)) (-15 -2267 (|#2| |#1|)) (-15 -2469 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1639 ((-589 |#2|) |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -3976 (|#1| |#2|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3976 (|#1| (-523))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-852) |#1|)) (-15 -3976 ((-794) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-2346 (($ $ $) 45 (|has| |#1| (-339)))) (-3183 (($ $ $) 46 (|has| |#1| (-339)))) (-2561 (($ $ $) 48 (|has| |#1| (-339)))) (-3248 (($ $ $) 43 (|has| |#1| (-339)))) (-3525 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 42 (|has| |#1| (-339)))) (-1527 (((-3 $ "failed") $ $) 44 (|has| |#1| (-339)))) (-2566 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 47 (|has| |#1| (-339)))) (-2898 (((-3 (-523) "failed") $) 74 (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) 72 (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) 69)) (-1996 (((-523) $) 75 (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) 73 (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) 68)) (-3142 (($ $) 64)) (-4211 (((-3 $ "failed") $) 34)) (-2213 (($ $) 55 (|has| |#1| (-427)))) (-3482 (((-108) $) 31)) (-3694 (($ |#1| (-710)) 62)) (-2386 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 57 (|has| |#1| (-515)))) (-3585 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 58 (|has| |#1| (-515)))) (-2140 (((-710) $) 66)) (-2136 (($ $ $) 52 (|has| |#1| (-339)))) (-1290 (($ $ $) 53 (|has| |#1| (-339)))) (-2138 (($ $ $) 41 (|has| |#1| (-339)))) (-1787 (($ $ $) 50 (|has| |#1| (-339)))) (-1404 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 49 (|has| |#1| (-339)))) (-3904 (((-3 $ "failed") $ $) 51 (|has| |#1| (-339)))) (-3986 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 54 (|has| |#1| (-339)))) (-3119 ((|#1| $) 65)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2469 (((-3 $ "failed") $ |#1|) 59 (|has| |#1| (-515)))) (-1487 (((-710) $) 67)) (-2267 ((|#1| $) 56 (|has| |#1| (-427)))) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ (-383 (-523))) 71 (|has| |#1| (-964 (-383 (-523))))) (($ |#1|) 70)) (-1639 (((-589 |#1|) $) 61)) (-1234 ((|#1| $ (-710)) 63)) (-1698 (((-710)) 29)) (-3817 ((|#1| $ |#1| |#1|) 60)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 77) (($ |#1| $) 76)))
-(((-788 |#1|) (-129) (-973)) (T -788))
-((-1487 (*1 *2 *1) (-12 (-4 *1 (-788 *3)) (-4 *3 (-973)) (-5 *2 (-710)))) (-2140 (*1 *2 *1) (-12 (-4 *1 (-788 *3)) (-4 *3 (-973)) (-5 *2 (-710)))) (-3119 (*1 *2 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)))) (-3142 (*1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)))) (-1234 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-4 *1 (-788 *2)) (-4 *2 (-973)))) (-3694 (*1 *1 *2 *3) (-12 (-5 *3 (-710)) (-4 *1 (-788 *2)) (-4 *2 (-973)))) (-1639 (*1 *2 *1) (-12 (-4 *1 (-788 *3)) (-4 *3 (-973)) (-5 *2 (-589 *3)))) (-3817 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)))) (-2469 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-515)))) (-3585 (*1 *2 *1 *1) (-12 (-4 *3 (-515)) (-4 *3 (-973)) (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-788 *3)))) (-2386 (*1 *2 *1 *1) (-12 (-4 *3 (-515)) (-4 *3 (-973)) (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-788 *3)))) (-2267 (*1 *2 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-427)))) (-2213 (*1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-427)))) (-3986 (*1 *2 *1 *1) (-12 (-4 *3 (-339)) (-4 *3 (-973)) (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-788 *3)))) (-1290 (*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))) (-2136 (*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))) (-3904 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))) (-1787 (*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))) (-1404 (*1 *2 *1 *1) (-12 (-4 *3 (-339)) (-4 *3 (-973)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4102 *1))) (-4 *1 (-788 *3)))) (-2561 (*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))) (-2566 (*1 *2 *1 *1) (-12 (-4 *3 (-339)) (-4 *3 (-973)) (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-788 *3)))) (-3183 (*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))) (-2346 (*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))) (-1527 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))) (-3248 (*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))) (-3525 (*1 *2 *1 *1) (-12 (-4 *3 (-339)) (-4 *3 (-973)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4102 *1))) (-4 *1 (-788 *3)))) (-2138 (*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))))
-(-13 (-973) (-107 |t#1| |t#1|) (-387 |t#1|) (-10 -8 (-15 -1487 ((-710) $)) (-15 -2140 ((-710) $)) (-15 -3119 (|t#1| $)) (-15 -3142 ($ $)) (-15 -1234 (|t#1| $ (-710))) (-15 -3694 ($ |t#1| (-710))) (-15 -1639 ((-589 |t#1|) $)) (-15 -3817 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-158)) (-6 (-37 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-515)) (PROGN (-15 -2469 ((-3 $ "failed") $ |t#1|)) (-15 -3585 ((-2 (|:| -3429 $) (|:| -3143 $)) $ $)) (-15 -2386 ((-2 (|:| -3429 $) (|:| -3143 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-427)) (PROGN (-15 -2267 (|t#1| $)) (-15 -2213 ($ $))) |%noBranch|) (IF (|has| |t#1| (-339)) (PROGN (-15 -3986 ((-2 (|:| -3429 $) (|:| -3143 $)) $ $)) (-15 -1290 ($ $ $)) (-15 -2136 ($ $ $)) (-15 -3904 ((-3 $ "failed") $ $)) (-15 -1787 ($ $ $)) (-15 -1404 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $)) (-15 -2561 ($ $ $)) (-15 -2566 ((-2 (|:| -3429 $) (|:| -3143 $)) $ $)) (-15 -3183 ($ $ $)) (-15 -2346 ($ $ $)) (-15 -1527 ((-3 $ "failed") $ $)) (-15 -3248 ($ $ $)) (-15 -3525 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $)) (-15 -2138 ($ $ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) |has| |#1| (-158)) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-563 (-794)) . T) ((-387 |#1|) . T) ((-591 |#1|) . T) ((-591 $) . T) ((-657 |#1|) |has| |#1| (-158)) ((-666) . T) ((-964 (-383 (-523))) |has| |#1| (-964 (-383 (-523)))) ((-964 (-523)) |has| |#1| (-964 (-523))) ((-964 |#1|) . T) ((-979 |#1|) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-1459 ((|#2| |#2| |#2| (-94 |#1|) (-1 |#1| |#1|)) 20)) (-2566 (((-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2| (-94 |#1|)) 43 (|has| |#1| (-339)))) (-2386 (((-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2| (-94 |#1|)) 40 (|has| |#1| (-515)))) (-3585 (((-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2| (-94 |#1|)) 39 (|has| |#1| (-515)))) (-3986 (((-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2| (-94 |#1|)) 42 (|has| |#1| (-339)))) (-3817 ((|#1| |#2| |#1| |#1| (-94 |#1|) (-1 |#1| |#1|)) 31)))
-(((-789 |#1| |#2|) (-10 -7 (-15 -1459 (|#2| |#2| |#2| (-94 |#1|) (-1 |#1| |#1|))) (-15 -3817 (|#1| |#2| |#1| |#1| (-94 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-515)) (PROGN (-15 -3585 ((-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -2386 ((-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|) (IF (|has| |#1| (-339)) (PROGN (-15 -3986 ((-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -2566 ((-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|)) (-973) (-788 |#1|)) (T -789))
-((-2566 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-339)) (-4 *5 (-973)) (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-789 *5 *3)) (-4 *3 (-788 *5)))) (-3986 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-339)) (-4 *5 (-973)) (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-789 *5 *3)) (-4 *3 (-788 *5)))) (-2386 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-515)) (-4 *5 (-973)) (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-789 *5 *3)) (-4 *3 (-788 *5)))) (-3585 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-515)) (-4 *5 (-973)) (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-789 *5 *3)) (-4 *3 (-788 *5)))) (-3817 (*1 *2 *3 *2 *2 *4 *5) (-12 (-5 *4 (-94 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-973)) (-5 *1 (-789 *2 *3)) (-4 *3 (-788 *2)))) (-1459 (*1 *2 *2 *2 *3 *4) (-12 (-5 *3 (-94 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-973)) (-5 *1 (-789 *5 *2)) (-4 *2 (-788 *5)))))
-(-10 -7 (-15 -1459 (|#2| |#2| |#2| (-94 |#1|) (-1 |#1| |#1|))) (-15 -3817 (|#1| |#2| |#1| |#1| (-94 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-515)) (PROGN (-15 -3585 ((-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -2386 ((-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|) (IF (|has| |#1| (-339)) (PROGN (-15 -3986 ((-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -2566 ((-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-2346 (($ $ $) NIL (|has| |#1| (-339)))) (-3183 (($ $ $) NIL (|has| |#1| (-339)))) (-2561 (($ $ $) NIL (|has| |#1| (-339)))) (-3248 (($ $ $) NIL (|has| |#1| (-339)))) (-3525 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-1527 (((-3 $ "failed") $ $) NIL (|has| |#1| (-339)))) (-2566 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 25 (|has| |#1| (-339)))) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) NIL)) (-1996 (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) NIL)) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2213 (($ $) NIL (|has| |#1| (-427)))) (-3204 (((-794) $ (-794)) NIL)) (-3482 (((-108) $) NIL)) (-3694 (($ |#1| (-710)) NIL)) (-2386 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 21 (|has| |#1| (-515)))) (-3585 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 19 (|has| |#1| (-515)))) (-2140 (((-710) $) NIL)) (-2136 (($ $ $) NIL (|has| |#1| (-339)))) (-1290 (($ $ $) NIL (|has| |#1| (-339)))) (-2138 (($ $ $) NIL (|has| |#1| (-339)))) (-1787 (($ $ $) NIL (|has| |#1| (-339)))) (-1404 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-3904 (((-3 $ "failed") $ $) NIL (|has| |#1| (-339)))) (-3986 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 23 (|has| |#1| (-339)))) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2469 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515)))) (-1487 (((-710) $) NIL)) (-2267 ((|#1| $) NIL (|has| |#1| (-427)))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ (-383 (-523))) NIL (|has| |#1| (-964 (-383 (-523))))) (($ |#1|) NIL)) (-1639 (((-589 |#1|) $) NIL)) (-1234 ((|#1| $ (-710)) NIL)) (-1698 (((-710)) NIL)) (-3817 ((|#1| $ |#1| |#1|) 15)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 13) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-790 |#1| |#2| |#3|) (-13 (-788 |#1|) (-10 -8 (-15 -3204 ((-794) $ (-794))))) (-973) (-94 |#1|) (-1 |#1| |#1|)) (T -790))
-((-3204 (*1 *2 *1 *2) (-12 (-5 *2 (-794)) (-5 *1 (-790 *3 *4 *5)) (-4 *3 (-973)) (-14 *4 (-94 *3)) (-14 *5 (-1 *3 *3)))))
-(-13 (-788 |#1|) (-10 -8 (-15 -3204 ((-794) $ (-794)))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-2346 (($ $ $) NIL (|has| |#2| (-339)))) (-3183 (($ $ $) NIL (|has| |#2| (-339)))) (-2561 (($ $ $) NIL (|has| |#2| (-339)))) (-3248 (($ $ $) NIL (|has| |#2| (-339)))) (-3525 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#2| (-339)))) (-1527 (((-3 $ "failed") $ $) NIL (|has| |#2| (-339)))) (-2566 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#2| (-339)))) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#2| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#2| (-964 (-383 (-523))))) (((-3 |#2| "failed") $) NIL)) (-1996 (((-523) $) NIL (|has| |#2| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#2| (-964 (-383 (-523))))) ((|#2| $) NIL)) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2213 (($ $) NIL (|has| |#2| (-427)))) (-3482 (((-108) $) NIL)) (-3694 (($ |#2| (-710)) 16)) (-2386 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#2| (-515)))) (-3585 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#2| (-515)))) (-2140 (((-710) $) NIL)) (-2136 (($ $ $) NIL (|has| |#2| (-339)))) (-1290 (($ $ $) NIL (|has| |#2| (-339)))) (-2138 (($ $ $) NIL (|has| |#2| (-339)))) (-1787 (($ $ $) NIL (|has| |#2| (-339)))) (-1404 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#2| (-339)))) (-3904 (((-3 $ "failed") $ $) NIL (|has| |#2| (-339)))) (-3986 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#2| (-339)))) (-3119 ((|#2| $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2469 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-515)))) (-1487 (((-710) $) NIL)) (-2267 ((|#2| $) NIL (|has| |#2| (-427)))) (-3976 (((-794) $) 23) (($ (-523)) NIL) (($ (-383 (-523))) NIL (|has| |#2| (-964 (-383 (-523))))) (($ |#2|) NIL) (($ (-1165 |#1|)) 18)) (-1639 (((-589 |#2|) $) NIL)) (-1234 ((|#2| $ (-710)) NIL)) (-1698 (((-710)) NIL)) (-3817 ((|#2| $ |#2| |#2|) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) 13 T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-791 |#1| |#2| |#3| |#4|) (-13 (-788 |#2|) (-10 -8 (-15 -3976 ($ (-1165 |#1|))))) (-1087) (-973) (-94 |#2|) (-1 |#2| |#2|)) (T -791))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1165 *3)) (-14 *3 (-1087)) (-5 *1 (-791 *3 *4 *5 *6)) (-4 *4 (-973)) (-14 *5 (-94 *4)) (-14 *6 (-1 *4 *4)))))
-(-13 (-788 |#2|) (-10 -8 (-15 -3976 ($ (-1165 |#1|)))))
-((-1849 ((|#1| (-710) |#1|) 35 (|has| |#1| (-37 (-383 (-523)))))) (-2596 ((|#1| (-710) (-710) |#1|) 27) ((|#1| (-710) |#1|) 20)) (-2029 ((|#1| (-710) |#1|) 31)) (-3751 ((|#1| (-710) |#1|) 29)) (-3606 ((|#1| (-710) |#1|) 28)))
-(((-792 |#1|) (-10 -7 (-15 -3606 (|#1| (-710) |#1|)) (-15 -3751 (|#1| (-710) |#1|)) (-15 -2029 (|#1| (-710) |#1|)) (-15 -2596 (|#1| (-710) |#1|)) (-15 -2596 (|#1| (-710) (-710) |#1|)) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -1849 (|#1| (-710) |#1|)) |%noBranch|)) (-158)) (T -792))
-((-1849 (*1 *2 *3 *2) (-12 (-5 *3 (-710)) (-5 *1 (-792 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-158)))) (-2596 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-710)) (-5 *1 (-792 *2)) (-4 *2 (-158)))) (-2596 (*1 *2 *3 *2) (-12 (-5 *3 (-710)) (-5 *1 (-792 *2)) (-4 *2 (-158)))) (-2029 (*1 *2 *3 *2) (-12 (-5 *3 (-710)) (-5 *1 (-792 *2)) (-4 *2 (-158)))) (-3751 (*1 *2 *3 *2) (-12 (-5 *3 (-710)) (-5 *1 (-792 *2)) (-4 *2 (-158)))) (-3606 (*1 *2 *3 *2) (-12 (-5 *3 (-710)) (-5 *1 (-792 *2)) (-4 *2 (-158)))))
-(-10 -7 (-15 -3606 (|#1| (-710) |#1|)) (-15 -3751 (|#1| (-710) |#1|)) (-15 -2029 (|#1| (-710) |#1|)) (-15 -2596 (|#1| (-710) |#1|)) (-15 -2596 (|#1| (-710) (-710) |#1|)) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -1849 (|#1| (-710) |#1|)) |%noBranch|))
-((-3260 (((-108) $ $) NIL)) (-2058 (((-523) $) 12)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 18) (($ (-523)) 11)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 8)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 9)))
-(((-793) (-13 (-786) (-10 -8 (-15 -3976 ($ (-523))) (-15 -2058 ((-523) $))))) (T -793))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-793)))) (-2058 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-793)))))
-(-13 (-786) (-10 -8 (-15 -3976 ($ (-523))) (-15 -2058 ((-523) $))))
-((-3260 (((-108) $ $) NIL) (($ $ $) 77)) (-4121 (($ $ $) 115)) (-1237 (((-523) $) 30) (((-523)) 35)) (-3408 (($ (-523)) 44)) (-1668 (($ $ $) 45) (($ (-589 $)) 76)) (-3405 (($ $ (-589 $)) 74)) (-3628 (((-523) $) 33)) (-1323 (($ $ $) 63)) (-3903 (($ $) 128) (($ $ $) 129) (($ $ $ $) 130)) (-1931 (((-523) $) 32)) (-3753 (($ $ $) 62)) (-1984 (($ $) 105)) (-2246 (($ $ $) 119)) (-2775 (($ (-589 $)) 52)) (-3239 (($ $ (-589 $)) 69)) (-1650 (($ (-523) (-523)) 46)) (-2938 (($ $) 116) (($ $ $) 117)) (-2438 (($ $ (-523)) 40) (($ $) 43)) (-2501 (($ $ $) 89)) (-2122 (($ $ $) 122)) (-3814 (($ $) 106)) (-2486 (($ $ $) 90)) (-1549 (($ $) 131) (($ $ $) 132) (($ $ $ $) 133)) (-3230 (((-1174) $) 8)) (-1844 (($ $) 109) (($ $ (-710)) 112)) (-1526 (($ $ $) 65)) (-2065 (($ $ $) 64)) (-2831 (($ $ (-589 $)) 100)) (-3865 (($ $ $) 104)) (-2007 (($ (-589 $)) 50)) (-4035 (($ $) 60) (($ (-589 $)) 61)) (-1927 (($ $ $) 113)) (-1214 (($ $) 107)) (-1520 (($ $ $) 118)) (-3204 (($ (-523)) 20) (($ (-1087)) 22) (($ (-1070)) 29) (($ (-203)) 24)) (-2806 (($ $ $) 93)) (-2575 (($ $) 94)) (-2749 (((-1174) (-1070)) 14)) (-1470 (($ (-1070)) 13)) (-3078 (($ (-589 (-589 $))) 49)) (-2428 (($ $ (-523)) 39) (($ $) 42)) (-3841 (((-1070) $) NIL)) (-2734 (($ $ $) 121)) (-4089 (($ $) 134) (($ $ $) 135) (($ $ $ $) 136)) (-3528 (((-108) $) 98)) (-2371 (($ $ (-589 $)) 102) (($ $ $ $) 103)) (-3991 (($ (-523)) 36)) (-1942 (((-523) $) 31) (((-523)) 34)) (-1364 (($ $ $) 37) (($ (-589 $)) 75)) (-2435 (((-1034) $) NIL)) (-2469 (($ $ $) 91)) (-4055 (($) 12)) (-1502 (($ $ (-589 $)) 99)) (-1879 (($ $) 108) (($ $ (-710)) 111)) (-2477 (($ $ $) 88)) (-4024 (($ $ (-710)) 127)) (-1841 (($ (-589 $)) 51)) (-3976 (((-794) $) 18)) (-3882 (($ $ (-523)) 38) (($ $) 41)) (-1793 (($ $) 58) (($ (-589 $)) 59)) (-2000 (($ $) 56) (($ (-589 $)) 57)) (-4114 (($ $) 114)) (-2639 (($ (-589 $)) 55)) (-1475 (($ $ $) 97)) (-1447 (($ $ $) 120)) (-2819 (($ $ $) 92)) (-3860 (($ $ $) 95) (($ $) 96)) (-4078 (($ $ $) 81)) (-4061 (($ $ $) 79)) (-4037 (((-108) $ $) 15) (($ $ $) 16)) (-4070 (($ $ $) 80)) (-4052 (($ $ $) 78)) (-4125 (($ $ $) 86)) (-4115 (($ $ $) 83) (($ $) 84)) (-4103 (($ $ $) 82)) (** (($ $ $) 87)) (* (($ $ $) 85)))
-(((-794) (-13 (-1016) (-10 -8 (-15 -3230 ((-1174) $)) (-15 -1470 ($ (-1070))) (-15 -2749 ((-1174) (-1070))) (-15 -3204 ($ (-523))) (-15 -3204 ($ (-1087))) (-15 -3204 ($ (-1070))) (-15 -3204 ($ (-203))) (-15 -4055 ($)) (-15 -1237 ((-523) $)) (-15 -1942 ((-523) $)) (-15 -1237 ((-523))) (-15 -1942 ((-523))) (-15 -1931 ((-523) $)) (-15 -3628 ((-523) $)) (-15 -3991 ($ (-523))) (-15 -3408 ($ (-523))) (-15 -1650 ($ (-523) (-523))) (-15 -2428 ($ $ (-523))) (-15 -2438 ($ $ (-523))) (-15 -3882 ($ $ (-523))) (-15 -2428 ($ $)) (-15 -2438 ($ $)) (-15 -3882 ($ $)) (-15 -1364 ($ $ $)) (-15 -1668 ($ $ $)) (-15 -1364 ($ (-589 $))) (-15 -1668 ($ (-589 $))) (-15 -2831 ($ $ (-589 $))) (-15 -2371 ($ $ (-589 $))) (-15 -2371 ($ $ $ $)) (-15 -3865 ($ $ $)) (-15 -3528 ((-108) $)) (-15 -1502 ($ $ (-589 $))) (-15 -1984 ($ $)) (-15 -2734 ($ $ $)) (-15 -4114 ($ $)) (-15 -3078 ($ (-589 (-589 $)))) (-15 -4121 ($ $ $)) (-15 -2938 ($ $)) (-15 -2938 ($ $ $)) (-15 -1520 ($ $ $)) (-15 -2246 ($ $ $)) (-15 -1447 ($ $ $)) (-15 -2122 ($ $ $)) (-15 -4024 ($ $ (-710))) (-15 -1475 ($ $ $)) (-15 -3753 ($ $ $)) (-15 -1323 ($ $ $)) (-15 -2065 ($ $ $)) (-15 -1526 ($ $ $)) (-15 -3239 ($ $ (-589 $))) (-15 -3405 ($ $ (-589 $))) (-15 -3814 ($ $)) (-15 -1879 ($ $)) (-15 -1879 ($ $ (-710))) (-15 -1844 ($ $)) (-15 -1844 ($ $ (-710))) (-15 -1214 ($ $)) (-15 -1927 ($ $ $)) (-15 -3903 ($ $)) (-15 -3903 ($ $ $)) (-15 -3903 ($ $ $ $)) (-15 -1549 ($ $)) (-15 -1549 ($ $ $)) (-15 -1549 ($ $ $ $)) (-15 -4089 ($ $)) (-15 -4089 ($ $ $)) (-15 -4089 ($ $ $ $)) (-15 -2000 ($ $)) (-15 -2000 ($ (-589 $))) (-15 -1793 ($ $)) (-15 -1793 ($ (-589 $))) (-15 -4035 ($ $)) (-15 -4035 ($ (-589 $))) (-15 -2007 ($ (-589 $))) (-15 -1841 ($ (-589 $))) (-15 -2775 ($ (-589 $))) (-15 -2639 ($ (-589 $))) (-15 -4037 ($ $ $)) (-15 -3260 ($ $ $)) (-15 -4052 ($ $ $)) (-15 -4061 ($ $ $)) (-15 -4070 ($ $ $)) (-15 -4078 ($ $ $)) (-15 -4103 ($ $ $)) (-15 -4115 ($ $ $)) (-15 -4115 ($ $)) (-15 * ($ $ $)) (-15 -4125 ($ $ $)) (-15 ** ($ $ $)) (-15 -2477 ($ $ $)) (-15 -2501 ($ $ $)) (-15 -2486 ($ $ $)) (-15 -2469 ($ $ $)) (-15 -2819 ($ $ $)) (-15 -2806 ($ $ $)) (-15 -2575 ($ $)) (-15 -3860 ($ $ $)) (-15 -3860 ($ $))))) (T -794))
-((-3230 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-794)))) (-1470 (*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-794)))) (-2749 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-794)))) (-3204 (*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794)))) (-3204 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-794)))) (-3204 (*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-794)))) (-3204 (*1 *1 *2) (-12 (-5 *2 (-203)) (-5 *1 (-794)))) (-4055 (*1 *1) (-5 *1 (-794))) (-1237 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-794)))) (-1942 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-794)))) (-1237 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794)))) (-1942 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794)))) (-1931 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-794)))) (-3628 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-794)))) (-3991 (*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794)))) (-3408 (*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794)))) (-1650 (*1 *1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794)))) (-2428 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794)))) (-2438 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794)))) (-3882 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794)))) (-2428 (*1 *1 *1) (-5 *1 (-794))) (-2438 (*1 *1 *1) (-5 *1 (-794))) (-3882 (*1 *1 *1) (-5 *1 (-794))) (-1364 (*1 *1 *1 *1) (-5 *1 (-794))) (-1668 (*1 *1 *1 *1) (-5 *1 (-794))) (-1364 (*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))) (-1668 (*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))) (-2831 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))) (-2371 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))) (-2371 (*1 *1 *1 *1 *1) (-5 *1 (-794))) (-3865 (*1 *1 *1 *1) (-5 *1 (-794))) (-3528 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-794)))) (-1502 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))) (-1984 (*1 *1 *1) (-5 *1 (-794))) (-2734 (*1 *1 *1 *1) (-5 *1 (-794))) (-4114 (*1 *1 *1) (-5 *1 (-794))) (-3078 (*1 *1 *2) (-12 (-5 *2 (-589 (-589 (-794)))) (-5 *1 (-794)))) (-4121 (*1 *1 *1 *1) (-5 *1 (-794))) (-2938 (*1 *1 *1) (-5 *1 (-794))) (-2938 (*1 *1 *1 *1) (-5 *1 (-794))) (-1520 (*1 *1 *1 *1) (-5 *1 (-794))) (-2246 (*1 *1 *1 *1) (-5 *1 (-794))) (-1447 (*1 *1 *1 *1) (-5 *1 (-794))) (-2122 (*1 *1 *1 *1) (-5 *1 (-794))) (-4024 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-794)))) (-1475 (*1 *1 *1 *1) (-5 *1 (-794))) (-3753 (*1 *1 *1 *1) (-5 *1 (-794))) (-1323 (*1 *1 *1 *1) (-5 *1 (-794))) (-2065 (*1 *1 *1 *1) (-5 *1 (-794))) (-1526 (*1 *1 *1 *1) (-5 *1 (-794))) (-3239 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))) (-3405 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))) (-3814 (*1 *1 *1) (-5 *1 (-794))) (-1879 (*1 *1 *1) (-5 *1 (-794))) (-1879 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-794)))) (-1844 (*1 *1 *1) (-5 *1 (-794))) (-1844 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-794)))) (-1214 (*1 *1 *1) (-5 *1 (-794))) (-1927 (*1 *1 *1 *1) (-5 *1 (-794))) (-3903 (*1 *1 *1) (-5 *1 (-794))) (-3903 (*1 *1 *1 *1) (-5 *1 (-794))) (-3903 (*1 *1 *1 *1 *1) (-5 *1 (-794))) (-1549 (*1 *1 *1) (-5 *1 (-794))) (-1549 (*1 *1 *1 *1) (-5 *1 (-794))) (-1549 (*1 *1 *1 *1 *1) (-5 *1 (-794))) (-4089 (*1 *1 *1) (-5 *1 (-794))) (-4089 (*1 *1 *1 *1) (-5 *1 (-794))) (-4089 (*1 *1 *1 *1 *1) (-5 *1 (-794))) (-2000 (*1 *1 *1) (-5 *1 (-794))) (-2000 (*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))) (-1793 (*1 *1 *1) (-5 *1 (-794))) (-1793 (*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))) (-4035 (*1 *1 *1) (-5 *1 (-794))) (-4035 (*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))) (-2007 (*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))) (-1841 (*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))) (-2775 (*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))) (-2639 (*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))) (-4037 (*1 *1 *1 *1) (-5 *1 (-794))) (-3260 (*1 *1 *1 *1) (-5 *1 (-794))) (-4052 (*1 *1 *1 *1) (-5 *1 (-794))) (-4061 (*1 *1 *1 *1) (-5 *1 (-794))) (-4070 (*1 *1 *1 *1) (-5 *1 (-794))) (-4078 (*1 *1 *1 *1) (-5 *1 (-794))) (-4103 (*1 *1 *1 *1) (-5 *1 (-794))) (-4115 (*1 *1 *1 *1) (-5 *1 (-794))) (-4115 (*1 *1 *1) (-5 *1 (-794))) (* (*1 *1 *1 *1) (-5 *1 (-794))) (-4125 (*1 *1 *1 *1) (-5 *1 (-794))) (** (*1 *1 *1 *1) (-5 *1 (-794))) (-2477 (*1 *1 *1 *1) (-5 *1 (-794))) (-2501 (*1 *1 *1 *1) (-5 *1 (-794))) (-2486 (*1 *1 *1 *1) (-5 *1 (-794))) (-2469 (*1 *1 *1 *1) (-5 *1 (-794))) (-2819 (*1 *1 *1 *1) (-5 *1 (-794))) (-2806 (*1 *1 *1 *1) (-5 *1 (-794))) (-2575 (*1 *1 *1) (-5 *1 (-794))) (-3860 (*1 *1 *1 *1) (-5 *1 (-794))) (-3860 (*1 *1 *1) (-5 *1 (-794))))
-(-13 (-1016) (-10 -8 (-15 -3230 ((-1174) $)) (-15 -1470 ($ (-1070))) (-15 -2749 ((-1174) (-1070))) (-15 -3204 ($ (-523))) (-15 -3204 ($ (-1087))) (-15 -3204 ($ (-1070))) (-15 -3204 ($ (-203))) (-15 -4055 ($)) (-15 -1237 ((-523) $)) (-15 -1942 ((-523) $)) (-15 -1237 ((-523))) (-15 -1942 ((-523))) (-15 -1931 ((-523) $)) (-15 -3628 ((-523) $)) (-15 -3991 ($ (-523))) (-15 -3408 ($ (-523))) (-15 -1650 ($ (-523) (-523))) (-15 -2428 ($ $ (-523))) (-15 -2438 ($ $ (-523))) (-15 -3882 ($ $ (-523))) (-15 -2428 ($ $)) (-15 -2438 ($ $)) (-15 -3882 ($ $)) (-15 -1364 ($ $ $)) (-15 -1668 ($ $ $)) (-15 -1364 ($ (-589 $))) (-15 -1668 ($ (-589 $))) (-15 -2831 ($ $ (-589 $))) (-15 -2371 ($ $ (-589 $))) (-15 -2371 ($ $ $ $)) (-15 -3865 ($ $ $)) (-15 -3528 ((-108) $)) (-15 -1502 ($ $ (-589 $))) (-15 -1984 ($ $)) (-15 -2734 ($ $ $)) (-15 -4114 ($ $)) (-15 -3078 ($ (-589 (-589 $)))) (-15 -4121 ($ $ $)) (-15 -2938 ($ $)) (-15 -2938 ($ $ $)) (-15 -1520 ($ $ $)) (-15 -2246 ($ $ $)) (-15 -1447 ($ $ $)) (-15 -2122 ($ $ $)) (-15 -4024 ($ $ (-710))) (-15 -1475 ($ $ $)) (-15 -3753 ($ $ $)) (-15 -1323 ($ $ $)) (-15 -2065 ($ $ $)) (-15 -1526 ($ $ $)) (-15 -3239 ($ $ (-589 $))) (-15 -3405 ($ $ (-589 $))) (-15 -3814 ($ $)) (-15 -1879 ($ $)) (-15 -1879 ($ $ (-710))) (-15 -1844 ($ $)) (-15 -1844 ($ $ (-710))) (-15 -1214 ($ $)) (-15 -1927 ($ $ $)) (-15 -3903 ($ $)) (-15 -3903 ($ $ $)) (-15 -3903 ($ $ $ $)) (-15 -1549 ($ $)) (-15 -1549 ($ $ $)) (-15 -1549 ($ $ $ $)) (-15 -4089 ($ $)) (-15 -4089 ($ $ $)) (-15 -4089 ($ $ $ $)) (-15 -2000 ($ $)) (-15 -2000 ($ (-589 $))) (-15 -1793 ($ $)) (-15 -1793 ($ (-589 $))) (-15 -4035 ($ $)) (-15 -4035 ($ (-589 $))) (-15 -2007 ($ (-589 $))) (-15 -1841 ($ (-589 $))) (-15 -2775 ($ (-589 $))) (-15 -2639 ($ (-589 $))) (-15 -4037 ($ $ $)) (-15 -3260 ($ $ $)) (-15 -4052 ($ $ $)) (-15 -4061 ($ $ $)) (-15 -4070 ($ $ $)) (-15 -4078 ($ $ $)) (-15 -4103 ($ $ $)) (-15 -4115 ($ $ $)) (-15 -4115 ($ $)) (-15 * ($ $ $)) (-15 -4125 ($ $ $)) (-15 ** ($ $ $)) (-15 -2477 ($ $ $)) (-15 -2501 ($ $ $)) (-15 -2486 ($ $ $)) (-15 -2469 ($ $ $)) (-15 -2819 ($ $ $)) (-15 -2806 ($ $ $)) (-15 -2575 ($ $)) (-15 -3860 ($ $ $)) (-15 -3860 ($ $))))
-((-4056 (((-1174) (-589 (-51))) 24)) (-3337 (((-1174) (-1070) (-794)) 14) (((-1174) (-794)) 9) (((-1174) (-1070)) 11)))
-(((-795) (-10 -7 (-15 -3337 ((-1174) (-1070))) (-15 -3337 ((-1174) (-794))) (-15 -3337 ((-1174) (-1070) (-794))) (-15 -4056 ((-1174) (-589 (-51)))))) (T -795))
-((-4056 (*1 *2 *3) (-12 (-5 *3 (-589 (-51))) (-5 *2 (-1174)) (-5 *1 (-795)))) (-3337 (*1 *2 *3 *4) (-12 (-5 *3 (-1070)) (-5 *4 (-794)) (-5 *2 (-1174)) (-5 *1 (-795)))) (-3337 (*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1174)) (-5 *1 (-795)))) (-3337 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-795)))))
-(-10 -7 (-15 -3337 ((-1174) (-1070))) (-15 -3337 ((-1174) (-794))) (-15 -3337 ((-1174) (-1070) (-794))) (-15 -4056 ((-1174) (-589 (-51)))))
-((-3260 (((-108) $ $) NIL)) (-2354 (((-3 $ "failed") (-1087)) 33)) (-3843 (((-710)) 31)) (-3461 (($) NIL)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-4076 (((-852) $) 29)) (-3841 (((-1070) $) 39)) (-2557 (($ (-852)) 28)) (-2435 (((-1034) $) NIL)) (-3077 (((-1087) $) 13) (((-499) $) 19) (((-823 (-355)) $) 26) (((-823 (-523)) $) 22)) (-3976 (((-794) $) 16)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 36)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 35)))
-(((-796 |#1|) (-13 (-780) (-564 (-1087)) (-564 (-499)) (-564 (-823 (-355))) (-564 (-823 (-523))) (-10 -8 (-15 -2354 ((-3 $ "failed") (-1087))))) (-589 (-1087))) (T -796))
-((-2354 (*1 *1 *2) (|partial| -12 (-5 *2 (-1087)) (-5 *1 (-796 *3)) (-14 *3 (-589 *2)))))
-(-13 (-780) (-564 (-1087)) (-564 (-499)) (-564 (-823 (-355))) (-564 (-823 (-523))) (-10 -8 (-15 -2354 ((-3 $ "failed") (-1087)))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-4211 (((-3 $ "failed") $) NIL)) (-3482 (((-108) $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (((-883 |#1|) $) NIL) (($ (-883 |#1|)) NIL) (($ |#1|) NIL (|has| |#1| (-158)))) (-1698 (((-710)) NIL)) (-3788 (((-1174) (-710)) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-4037 (((-108) $ $) NIL)) (-4125 (((-3 $ "failed") $ $) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-158))) (($ $ |#1|) NIL (|has| |#1| (-158)))))
-(((-797 |#1| |#2| |#3| |#4|) (-13 (-973) (-10 -8 (IF (|has| |#1| (-158)) (-6 (-37 |#1|)) |%noBranch|) (-15 -3976 ((-883 |#1|) $)) (-15 -3976 ($ (-883 |#1|))) (IF (|has| |#1| (-339)) (-15 -4125 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3788 ((-1174) (-710))))) (-973) (-589 (-1087)) (-589 (-710)) (-710)) (T -797))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-883 *3)) (-5 *1 (-797 *3 *4 *5 *6)) (-4 *3 (-973)) (-14 *4 (-589 (-1087))) (-14 *5 (-589 (-710))) (-14 *6 (-710)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-883 *3)) (-4 *3 (-973)) (-5 *1 (-797 *3 *4 *5 *6)) (-14 *4 (-589 (-1087))) (-14 *5 (-589 (-710))) (-14 *6 (-710)))) (-4125 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-797 *2 *3 *4 *5)) (-4 *2 (-339)) (-4 *2 (-973)) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-710))) (-14 *5 (-710)))) (-3788 (*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1174)) (-5 *1 (-797 *4 *5 *6 *7)) (-4 *4 (-973)) (-14 *5 (-589 (-1087))) (-14 *6 (-589 *3)) (-14 *7 *3))))
-(-13 (-973) (-10 -8 (IF (|has| |#1| (-158)) (-6 (-37 |#1|)) |%noBranch|) (-15 -3976 ((-883 |#1|) $)) (-15 -3976 ($ (-883 |#1|))) (IF (|has| |#1| (-339)) (-15 -4125 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3788 ((-1174) (-710)))))
-((-2828 (((-3 (-159 |#3|) "failed") (-710) (-710) |#2| |#2|) 31)) (-3812 (((-3 (-383 |#3|) "failed") (-710) (-710) |#2| |#2|) 24)))
-(((-798 |#1| |#2| |#3|) (-10 -7 (-15 -3812 ((-3 (-383 |#3|) "failed") (-710) (-710) |#2| |#2|)) (-15 -2828 ((-3 (-159 |#3|) "failed") (-710) (-710) |#2| |#2|))) (-339) (-1160 |#1|) (-1145 |#1|)) (T -798))
-((-2828 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-710)) (-4 *5 (-339)) (-5 *2 (-159 *6)) (-5 *1 (-798 *5 *4 *6)) (-4 *4 (-1160 *5)) (-4 *6 (-1145 *5)))) (-3812 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-710)) (-4 *5 (-339)) (-5 *2 (-383 *6)) (-5 *1 (-798 *5 *4 *6)) (-4 *4 (-1160 *5)) (-4 *6 (-1145 *5)))))
-(-10 -7 (-15 -3812 ((-3 (-383 |#3|) "failed") (-710) (-710) |#2| |#2|)) (-15 -2828 ((-3 (-159 |#3|) "failed") (-710) (-710) |#2| |#2|)))
-((-3812 (((-3 (-383 (-1142 |#2| |#1|)) "failed") (-710) (-710) (-1161 |#1| |#2| |#3|)) 28) (((-3 (-383 (-1142 |#2| |#1|)) "failed") (-710) (-710) (-1161 |#1| |#2| |#3|) (-1161 |#1| |#2| |#3|)) 26)))
-(((-799 |#1| |#2| |#3|) (-10 -7 (-15 -3812 ((-3 (-383 (-1142 |#2| |#1|)) "failed") (-710) (-710) (-1161 |#1| |#2| |#3|) (-1161 |#1| |#2| |#3|))) (-15 -3812 ((-3 (-383 (-1142 |#2| |#1|)) "failed") (-710) (-710) (-1161 |#1| |#2| |#3|)))) (-339) (-1087) |#1|) (T -799))
-((-3812 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-710)) (-5 *4 (-1161 *5 *6 *7)) (-4 *5 (-339)) (-14 *6 (-1087)) (-14 *7 *5) (-5 *2 (-383 (-1142 *6 *5))) (-5 *1 (-799 *5 *6 *7)))) (-3812 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-710)) (-5 *4 (-1161 *5 *6 *7)) (-4 *5 (-339)) (-14 *6 (-1087)) (-14 *7 *5) (-5 *2 (-383 (-1142 *6 *5))) (-5 *1 (-799 *5 *6 *7)))))
-(-10 -7 (-15 -3812 ((-3 (-383 (-1142 |#2| |#1|)) "failed") (-710) (-710) (-1161 |#1| |#2| |#3|) (-1161 |#1| |#2| |#3|))) (-15 -3812 ((-3 (-383 (-1142 |#2| |#1|)) "failed") (-710) (-710) (-1161 |#1| |#2| |#3|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-2999 (((-3 $ "failed") $ $) 19)) (-3584 (($ $ (-523)) 62)) (-3684 (((-108) $ $) 59)) (-1640 (($) 17 T CONST)) (-2938 (($ (-1083 (-523)) (-523)) 61)) (-2501 (($ $ $) 55)) (-4211 (((-3 $ "failed") $) 34)) (-1729 (($ $) 64)) (-2486 (($ $ $) 56)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 51)) (-1500 (((-710) $) 69)) (-3482 (((-108) $) 31)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 52)) (-3014 (((-523)) 66)) (-2385 (((-523) $) 65)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-1361 (($ $ (-523)) 68)) (-2469 (((-3 $ "failed") $ $) 42)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 50)) (-3087 (((-710) $) 58)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 57)) (-2080 (((-1068 (-523)) $) 70)) (-3749 (($ $) 67)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43)) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 39)) (-2523 (((-523) $ (-523)) 63)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-800 |#1|) (-129) (-523)) (T -800))
-((-2080 (*1 *2 *1) (-12 (-4 *1 (-800 *3)) (-5 *2 (-1068 (-523))))) (-1500 (*1 *2 *1) (-12 (-4 *1 (-800 *3)) (-5 *2 (-710)))) (-1361 (*1 *1 *1 *2) (-12 (-4 *1 (-800 *3)) (-5 *2 (-523)))) (-3749 (*1 *1 *1) (-4 *1 (-800 *2))) (-3014 (*1 *2) (-12 (-4 *1 (-800 *3)) (-5 *2 (-523)))) (-2385 (*1 *2 *1) (-12 (-4 *1 (-800 *3)) (-5 *2 (-523)))) (-1729 (*1 *1 *1) (-4 *1 (-800 *2))) (-2523 (*1 *2 *1 *2) (-12 (-4 *1 (-800 *3)) (-5 *2 (-523)))) (-3584 (*1 *1 *1 *2) (-12 (-4 *1 (-800 *3)) (-5 *2 (-523)))) (-2938 (*1 *1 *2 *3) (-12 (-5 *2 (-1083 (-523))) (-5 *3 (-523)) (-4 *1 (-800 *4)))))
-(-13 (-284) (-136) (-10 -8 (-15 -2080 ((-1068 (-523)) $)) (-15 -1500 ((-710) $)) (-15 -1361 ($ $ (-523))) (-15 -3749 ($ $)) (-15 -3014 ((-523))) (-15 -2385 ((-523) $)) (-15 -1729 ($ $)) (-15 -2523 ((-523) $ (-523))) (-15 -3584 ($ $ (-523))) (-15 -2938 ($ (-1083 (-523)) (-523)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-136) . T) ((-563 (-794)) . T) ((-158) . T) ((-267) . T) ((-284) . T) ((-427) . T) ((-515) . T) ((-591 $) . T) ((-657 $) . T) ((-666) . T) ((-851) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3584 (($ $ (-523)) NIL)) (-3684 (((-108) $ $) NIL)) (-1640 (($) NIL T CONST)) (-2938 (($ (-1083 (-523)) (-523)) NIL)) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-1729 (($ $) NIL)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1500 (((-710) $) NIL)) (-3482 (((-108) $) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3014 (((-523)) NIL)) (-2385 (((-523) $) NIL)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1361 (($ $ (-523)) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2080 (((-1068 (-523)) $) NIL)) (-3749 (($ $) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL)) (-1698 (((-710)) NIL)) (-3842 (((-108) $ $) NIL)) (-2523 (((-523) $ (-523)) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL)))
-(((-801 |#1|) (-800 |#1|) (-523)) (T -801))
-NIL
-(-800 |#1|)
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3964 (((-801 |#1|) $) NIL (|has| (-801 |#1|) (-284)))) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-801 |#1|) (-840)))) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| (-801 |#1|) (-840)))) (-3684 (((-108) $ $) NIL)) (-2035 (((-523) $) NIL (|has| (-801 |#1|) (-759)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-801 |#1|) "failed") $) NIL) (((-3 (-1087) "failed") $) NIL (|has| (-801 |#1|) (-964 (-1087)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| (-801 |#1|) (-964 (-523)))) (((-3 (-523) "failed") $) NIL (|has| (-801 |#1|) (-964 (-523))))) (-1996 (((-801 |#1|) $) NIL) (((-1087) $) NIL (|has| (-801 |#1|) (-964 (-1087)))) (((-383 (-523)) $) NIL (|has| (-801 |#1|) (-964 (-523)))) (((-523) $) NIL (|has| (-801 |#1|) (-964 (-523))))) (-3113 (($ $) NIL) (($ (-523) $) NIL)) (-2501 (($ $ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| (-801 |#1|) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| (-801 |#1|) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-801 |#1|))) (|:| |vec| (-1169 (-801 |#1|)))) (-629 $) (-1169 $)) NIL) (((-629 (-801 |#1|)) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) NIL (|has| (-801 |#1|) (-508)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-3702 (((-108) $) NIL (|has| (-801 |#1|) (-759)))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (|has| (-801 |#1|) (-817 (-523)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (|has| (-801 |#1|) (-817 (-355))))) (-3482 (((-108) $) NIL)) (-2364 (($ $) NIL)) (-2164 (((-801 |#1|) $) NIL)) (-1289 (((-3 $ "failed") $) NIL (|has| (-801 |#1|) (-1063)))) (-4050 (((-108) $) NIL (|has| (-801 |#1|) (-759)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3268 (($ $ $) NIL (|has| (-801 |#1|) (-786)))) (-2644 (($ $ $) NIL (|has| (-801 |#1|) (-786)))) (-3015 (($ (-1 (-801 |#1|) (-801 |#1|)) $) NIL)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| (-801 |#1|) (-1063)) CONST)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3934 (($ $) NIL (|has| (-801 |#1|) (-284)))) (-1250 (((-801 |#1|) $) NIL (|has| (-801 |#1|) (-508)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-801 |#1|) (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-801 |#1|) (-840)))) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-1349 (($ $ (-589 (-801 |#1|)) (-589 (-801 |#1|))) NIL (|has| (-801 |#1|) (-286 (-801 |#1|)))) (($ $ (-801 |#1|) (-801 |#1|)) NIL (|has| (-801 |#1|) (-286 (-801 |#1|)))) (($ $ (-271 (-801 |#1|))) NIL (|has| (-801 |#1|) (-286 (-801 |#1|)))) (($ $ (-589 (-271 (-801 |#1|)))) NIL (|has| (-801 |#1|) (-286 (-801 |#1|)))) (($ $ (-589 (-1087)) (-589 (-801 |#1|))) NIL (|has| (-801 |#1|) (-484 (-1087) (-801 |#1|)))) (($ $ (-1087) (-801 |#1|)) NIL (|has| (-801 |#1|) (-484 (-1087) (-801 |#1|))))) (-3087 (((-710) $) NIL)) (-1502 (($ $ (-801 |#1|)) NIL (|has| (-801 |#1|) (-263 (-801 |#1|) (-801 |#1|))))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-4024 (($ $) NIL (|has| (-801 |#1|) (-211))) (($ $ (-710)) NIL (|has| (-801 |#1|) (-211))) (($ $ (-1087)) NIL (|has| (-801 |#1|) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-801 |#1|) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-801 |#1|) (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-801 |#1|) (-831 (-1087)))) (($ $ (-1 (-801 |#1|) (-801 |#1|)) (-710)) NIL) (($ $ (-1 (-801 |#1|) (-801 |#1|))) NIL)) (-3758 (($ $) NIL)) (-2171 (((-801 |#1|) $) NIL)) (-3077 (((-823 (-523)) $) NIL (|has| (-801 |#1|) (-564 (-823 (-523))))) (((-823 (-355)) $) NIL (|has| (-801 |#1|) (-564 (-823 (-355))))) (((-499) $) NIL (|has| (-801 |#1|) (-564 (-499)))) (((-355) $) NIL (|has| (-801 |#1|) (-949))) (((-203) $) NIL (|has| (-801 |#1|) (-949)))) (-3264 (((-159 (-383 (-523))) $) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| (-801 |#1|) (-840))))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL) (($ (-801 |#1|)) NIL) (($ (-1087)) NIL (|has| (-801 |#1|) (-964 (-1087))))) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| (-801 |#1|) (-840))) (|has| (-801 |#1|) (-134))))) (-1698 (((-710)) NIL)) (-1516 (((-801 |#1|) $) NIL (|has| (-801 |#1|) (-508)))) (-3842 (((-108) $ $) NIL)) (-2523 (((-383 (-523)) $ (-523)) NIL)) (-3984 (($ $) NIL (|has| (-801 |#1|) (-759)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $) NIL (|has| (-801 |#1|) (-211))) (($ $ (-710)) NIL (|has| (-801 |#1|) (-211))) (($ $ (-1087)) NIL (|has| (-801 |#1|) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-801 |#1|) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-801 |#1|) (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-801 |#1|) (-831 (-1087)))) (($ $ (-1 (-801 |#1|) (-801 |#1|)) (-710)) NIL) (($ $ (-1 (-801 |#1|) (-801 |#1|))) NIL)) (-4078 (((-108) $ $) NIL (|has| (-801 |#1|) (-786)))) (-4061 (((-108) $ $) NIL (|has| (-801 |#1|) (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| (-801 |#1|) (-786)))) (-4052 (((-108) $ $) NIL (|has| (-801 |#1|) (-786)))) (-4125 (($ $ $) NIL) (($ (-801 |#1|) (-801 |#1|)) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ (-801 |#1|) $) NIL) (($ $ (-801 |#1|)) NIL)))
-(((-802 |#1|) (-13 (-921 (-801 |#1|)) (-10 -8 (-15 -2523 ((-383 (-523)) $ (-523))) (-15 -3264 ((-159 (-383 (-523))) $)) (-15 -3113 ($ $)) (-15 -3113 ($ (-523) $)))) (-523)) (T -802))
-((-2523 (*1 *2 *1 *3) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-802 *4)) (-14 *4 *3) (-5 *3 (-523)))) (-3264 (*1 *2 *1) (-12 (-5 *2 (-159 (-383 (-523)))) (-5 *1 (-802 *3)) (-14 *3 (-523)))) (-3113 (*1 *1 *1) (-12 (-5 *1 (-802 *2)) (-14 *2 (-523)))) (-3113 (*1 *1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-802 *3)) (-14 *3 *2))))
-(-13 (-921 (-801 |#1|)) (-10 -8 (-15 -2523 ((-383 (-523)) $ (-523))) (-15 -3264 ((-159 (-383 (-523))) $)) (-15 -3113 ($ $)) (-15 -3113 ($ (-523) $))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3964 ((|#2| $) NIL (|has| |#2| (-284)))) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-3684 (((-108) $ $) NIL)) (-2035 (((-523) $) NIL (|has| |#2| (-759)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#2| "failed") $) NIL) (((-3 (-1087) "failed") $) NIL (|has| |#2| (-964 (-1087)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#2| (-964 (-523)))) (((-3 (-523) "failed") $) NIL (|has| |#2| (-964 (-523))))) (-1996 ((|#2| $) NIL) (((-1087) $) NIL (|has| |#2| (-964 (-1087)))) (((-383 (-523)) $) NIL (|has| |#2| (-964 (-523)))) (((-523) $) NIL (|has| |#2| (-964 (-523))))) (-3113 (($ $) 31) (($ (-523) $) 32)) (-2501 (($ $ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) NIL) (((-629 |#2|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) 53)) (-3461 (($) NIL (|has| |#2| (-508)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-3702 (((-108) $) NIL (|has| |#2| (-759)))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (|has| |#2| (-817 (-523)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (|has| |#2| (-817 (-355))))) (-3482 (((-108) $) NIL)) (-2364 (($ $) NIL)) (-2164 ((|#2| $) NIL)) (-1289 (((-3 $ "failed") $) NIL (|has| |#2| (-1063)))) (-4050 (((-108) $) NIL (|has| |#2| (-759)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3268 (($ $ $) NIL (|has| |#2| (-786)))) (-2644 (($ $ $) NIL (|has| |#2| (-786)))) (-3015 (($ (-1 |#2| |#2|) $) NIL)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 49)) (-4105 (($) NIL (|has| |#2| (-1063)) CONST)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3934 (($ $) NIL (|has| |#2| (-284)))) (-1250 ((|#2| $) NIL (|has| |#2| (-508)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-1349 (($ $ (-589 |#2|) (-589 |#2|)) NIL (|has| |#2| (-286 |#2|))) (($ $ |#2| |#2|) NIL (|has| |#2| (-286 |#2|))) (($ $ (-271 |#2|)) NIL (|has| |#2| (-286 |#2|))) (($ $ (-589 (-271 |#2|))) NIL (|has| |#2| (-286 |#2|))) (($ $ (-589 (-1087)) (-589 |#2|)) NIL (|has| |#2| (-484 (-1087) |#2|))) (($ $ (-1087) |#2|) NIL (|has| |#2| (-484 (-1087) |#2|)))) (-3087 (((-710) $) NIL)) (-1502 (($ $ |#2|) NIL (|has| |#2| (-263 |#2| |#2|)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-4024 (($ $) NIL (|has| |#2| (-211))) (($ $ (-710)) NIL (|has| |#2| (-211))) (($ $ (-1087)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-3758 (($ $) NIL)) (-2171 ((|#2| $) NIL)) (-3077 (((-823 (-523)) $) NIL (|has| |#2| (-564 (-823 (-523))))) (((-823 (-355)) $) NIL (|has| |#2| (-564 (-823 (-355))))) (((-499) $) NIL (|has| |#2| (-564 (-499)))) (((-355) $) NIL (|has| |#2| (-949))) (((-203) $) NIL (|has| |#2| (-949)))) (-3264 (((-159 (-383 (-523))) $) 68)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#2| (-840))))) (-3976 (((-794) $) 87) (($ (-523)) 19) (($ $) NIL) (($ (-383 (-523))) 24) (($ |#2|) 18) (($ (-1087)) NIL (|has| |#2| (-964 (-1087))))) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#2| (-840))) (|has| |#2| (-134))))) (-1698 (((-710)) NIL)) (-1516 ((|#2| $) NIL (|has| |#2| (-508)))) (-3842 (((-108) $ $) NIL)) (-2523 (((-383 (-523)) $ (-523)) 60)) (-3984 (($ $) NIL (|has| |#2| (-759)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) 14 T CONST)) (-1440 (($) 16 T CONST)) (-1943 (($ $) NIL (|has| |#2| (-211))) (($ $ (-710)) NIL (|has| |#2| (-211))) (($ $ (-1087)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-4078 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4037 (((-108) $ $) 35)) (-4070 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4125 (($ $ $) 23) (($ |#2| |#2|) 54)) (-4115 (($ $) 39) (($ $ $) 41)) (-4103 (($ $ $) 37)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) 50)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 42) (($ $ $) 44) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ |#2| $) 55) (($ $ |#2|) NIL)))
-(((-803 |#1| |#2|) (-13 (-921 |#2|) (-10 -8 (-15 -2523 ((-383 (-523)) $ (-523))) (-15 -3264 ((-159 (-383 (-523))) $)) (-15 -3113 ($ $)) (-15 -3113 ($ (-523) $)))) (-523) (-800 |#1|)) (T -803))
-((-2523 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-383 (-523))) (-5 *1 (-803 *4 *5)) (-5 *3 (-523)) (-4 *5 (-800 *4)))) (-3264 (*1 *2 *1) (-12 (-14 *3 (-523)) (-5 *2 (-159 (-383 (-523)))) (-5 *1 (-803 *3 *4)) (-4 *4 (-800 *3)))) (-3113 (*1 *1 *1) (-12 (-14 *2 (-523)) (-5 *1 (-803 *2 *3)) (-4 *3 (-800 *2)))) (-3113 (*1 *1 *2 *1) (-12 (-5 *2 (-523)) (-14 *3 *2) (-5 *1 (-803 *3 *4)) (-4 *4 (-800 *3)))))
-(-13 (-921 |#2|) (-10 -8 (-15 -2523 ((-383 (-523)) $ (-523))) (-15 -3264 ((-159 (-383 (-523))) $)) (-15 -3113 ($ $)) (-15 -3113 ($ (-523) $))))
-((-3260 (((-108) $ $) NIL (-12 (|has| |#1| (-1016)) (|has| |#2| (-1016))))) (-3962 ((|#2| $) 12)) (-1377 (($ |#1| |#2|) 9)) (-3841 (((-1070) $) NIL (-12 (|has| |#1| (-1016)) (|has| |#2| (-1016))))) (-2435 (((-1034) $) NIL (-12 (|has| |#1| (-1016)) (|has| |#2| (-1016))))) (-3879 ((|#1| $) 11)) (-3985 (($ |#1| |#2|) 10)) (-3976 (((-794) $) 18 (-3255 (-12 (|has| |#1| (-563 (-794))) (|has| |#2| (-563 (-794)))) (-12 (|has| |#1| (-1016)) (|has| |#2| (-1016)))))) (-4037 (((-108) $ $) 22 (-12 (|has| |#1| (-1016)) (|has| |#2| (-1016))))))
-(((-804 |#1| |#2|) (-13 (-1123) (-10 -8 (IF (|has| |#1| (-563 (-794))) (IF (|has| |#2| (-563 (-794))) (-6 (-563 (-794))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1016)) (IF (|has| |#2| (-1016)) (-6 (-1016)) |%noBranch|) |%noBranch|) (-15 -1377 ($ |#1| |#2|)) (-15 -3985 ($ |#1| |#2|)) (-15 -3879 (|#1| $)) (-15 -3962 (|#2| $)))) (-1123) (-1123)) (T -804))
-((-1377 (*1 *1 *2 *3) (-12 (-5 *1 (-804 *2 *3)) (-4 *2 (-1123)) (-4 *3 (-1123)))) (-3985 (*1 *1 *2 *3) (-12 (-5 *1 (-804 *2 *3)) (-4 *2 (-1123)) (-4 *3 (-1123)))) (-3879 (*1 *2 *1) (-12 (-4 *2 (-1123)) (-5 *1 (-804 *2 *3)) (-4 *3 (-1123)))) (-3962 (*1 *2 *1) (-12 (-4 *2 (-1123)) (-5 *1 (-804 *3 *2)) (-4 *3 (-1123)))))
-(-13 (-1123) (-10 -8 (IF (|has| |#1| (-563 (-794))) (IF (|has| |#2| (-563 (-794))) (-6 (-563 (-794))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1016)) (IF (|has| |#2| (-1016)) (-6 (-1016)) |%noBranch|) |%noBranch|) (-15 -1377 ($ |#1| |#2|)) (-15 -3985 ($ |#1| |#2|)) (-15 -3879 (|#1| $)) (-15 -3962 (|#2| $))))
-((-3260 (((-108) $ $) NIL)) (-4063 (((-523) $) 15)) (-4000 (($ (-144)) 11)) (-2387 (($ (-144)) 12)) (-3841 (((-1070) $) NIL)) (-3578 (((-144) $) 13)) (-2435 (((-1034) $) NIL)) (-3765 (($ (-144)) 9)) (-1835 (($ (-144)) 8)) (-3976 (((-794) $) 23) (($ (-144)) 16)) (-3675 (($ (-144)) 10)) (-4037 (((-108) $ $) NIL)))
-(((-805) (-13 (-1016) (-10 -8 (-15 -1835 ($ (-144))) (-15 -3765 ($ (-144))) (-15 -3675 ($ (-144))) (-15 -4000 ($ (-144))) (-15 -2387 ($ (-144))) (-15 -3578 ((-144) $)) (-15 -4063 ((-523) $)) (-15 -3976 ($ (-144)))))) (T -805))
-((-1835 (*1 *1 *2) (-12 (-5 *2 (-144)) (-5 *1 (-805)))) (-3765 (*1 *1 *2) (-12 (-5 *2 (-144)) (-5 *1 (-805)))) (-3675 (*1 *1 *2) (-12 (-5 *2 (-144)) (-5 *1 (-805)))) (-4000 (*1 *1 *2) (-12 (-5 *2 (-144)) (-5 *1 (-805)))) (-2387 (*1 *1 *2) (-12 (-5 *2 (-144)) (-5 *1 (-805)))) (-3578 (*1 *2 *1) (-12 (-5 *2 (-144)) (-5 *1 (-805)))) (-4063 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-805)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-144)) (-5 *1 (-805)))))
-(-13 (-1016) (-10 -8 (-15 -1835 ($ (-144))) (-15 -3765 ($ (-144))) (-15 -3675 ($ (-144))) (-15 -4000 ($ (-144))) (-15 -2387 ($ (-144))) (-15 -3578 ((-144) $)) (-15 -4063 ((-523) $)) (-15 -3976 ($ (-144)))))
-((-3976 (((-292 (-523)) (-383 (-883 (-47)))) 23) (((-292 (-523)) (-883 (-47))) 18)))
-(((-806) (-10 -7 (-15 -3976 ((-292 (-523)) (-883 (-47)))) (-15 -3976 ((-292 (-523)) (-383 (-883 (-47))))))) (T -806))
-((-3976 (*1 *2 *3) (-12 (-5 *3 (-383 (-883 (-47)))) (-5 *2 (-292 (-523))) (-5 *1 (-806)))) (-3976 (*1 *2 *3) (-12 (-5 *3 (-883 (-47))) (-5 *2 (-292 (-523))) (-5 *1 (-806)))))
-(-10 -7 (-15 -3976 ((-292 (-523)) (-883 (-47)))) (-15 -3976 ((-292 (-523)) (-383 (-883 (-47))))))
-((-3015 (((-808 |#2|) (-1 |#2| |#1|) (-808 |#1|)) 14)))
-(((-807 |#1| |#2|) (-10 -7 (-15 -3015 ((-808 |#2|) (-1 |#2| |#1|) (-808 |#1|)))) (-1123) (-1123)) (T -807))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-808 *5)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-808 *6)) (-5 *1 (-807 *5 *6)))))
-(-10 -7 (-15 -3015 ((-808 |#2|) (-1 |#2| |#1|) (-808 |#1|))))
-((-1246 (($ |#1| |#1|) 8)) (-1202 ((|#1| $ (-710)) 10)))
-(((-808 |#1|) (-10 -8 (-15 -1246 ($ |#1| |#1|)) (-15 -1202 (|#1| $ (-710)))) (-1123)) (T -808))
-((-1202 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-5 *1 (-808 *2)) (-4 *2 (-1123)))) (-1246 (*1 *1 *2 *2) (-12 (-5 *1 (-808 *2)) (-4 *2 (-1123)))))
-(-10 -8 (-15 -1246 ($ |#1| |#1|)) (-15 -1202 (|#1| $ (-710))))
-((-3015 (((-810 |#2|) (-1 |#2| |#1|) (-810 |#1|)) 14)))
-(((-809 |#1| |#2|) (-10 -7 (-15 -3015 ((-810 |#2|) (-1 |#2| |#1|) (-810 |#1|)))) (-1123) (-1123)) (T -809))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-810 *5)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-810 *6)) (-5 *1 (-809 *5 *6)))))
-(-10 -7 (-15 -3015 ((-810 |#2|) (-1 |#2| |#1|) (-810 |#1|))))
-((-1246 (($ |#1| |#1| |#1|) 8)) (-1202 ((|#1| $ (-710)) 10)))
-(((-810 |#1|) (-10 -8 (-15 -1246 ($ |#1| |#1| |#1|)) (-15 -1202 (|#1| $ (-710)))) (-1123)) (T -810))
-((-1202 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-5 *1 (-810 *2)) (-4 *2 (-1123)))) (-1246 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-810 *2)) (-4 *2 (-1123)))))
-(-10 -8 (-15 -1246 ($ |#1| |#1| |#1|)) (-15 -1202 (|#1| $ (-710))))
-((-1928 (((-589 (-1092)) (-1070)) 9)))
-(((-811) (-10 -7 (-15 -1928 ((-589 (-1092)) (-1070))))) (T -811))
-((-1928 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-589 (-1092))) (-5 *1 (-811)))))
-(-10 -7 (-15 -1928 ((-589 (-1092)) (-1070))))
-((-3015 (((-813 |#2|) (-1 |#2| |#1|) (-813 |#1|)) 14)))
-(((-812 |#1| |#2|) (-10 -7 (-15 -3015 ((-813 |#2|) (-1 |#2| |#1|) (-813 |#1|)))) (-1123) (-1123)) (T -812))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-813 *5)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-813 *6)) (-5 *1 (-812 *5 *6)))))
-(-10 -7 (-15 -3015 ((-813 |#2|) (-1 |#2| |#1|) (-813 |#1|))))
-((-3394 (($ |#1| |#1| |#1|) 8)) (-1202 ((|#1| $ (-710)) 10)))
-(((-813 |#1|) (-10 -8 (-15 -3394 ($ |#1| |#1| |#1|)) (-15 -1202 (|#1| $ (-710)))) (-1123)) (T -813))
-((-1202 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-5 *1 (-813 *2)) (-4 *2 (-1123)))) (-3394 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-813 *2)) (-4 *2 (-1123)))))
-(-10 -8 (-15 -3394 ($ |#1| |#1| |#1|)) (-15 -1202 (|#1| $ (-710))))
-((-3066 (((-1068 (-589 (-523))) (-589 (-523)) (-1068 (-589 (-523)))) 32)) (-4175 (((-1068 (-589 (-523))) (-589 (-523)) (-589 (-523))) 28)) (-3883 (((-1068 (-589 (-523))) (-589 (-523))) 41) (((-1068 (-589 (-523))) (-589 (-523)) (-589 (-523))) 40)) (-3924 (((-1068 (-589 (-523))) (-523)) 42)) (-1702 (((-1068 (-589 (-523))) (-523) (-523)) 22) (((-1068 (-589 (-523))) (-523)) 16) (((-1068 (-589 (-523))) (-523) (-523) (-523)) 12)) (-2877 (((-1068 (-589 (-523))) (-1068 (-589 (-523)))) 26)) (-1308 (((-589 (-523)) (-589 (-523))) 25)))
-(((-814) (-10 -7 (-15 -1702 ((-1068 (-589 (-523))) (-523) (-523) (-523))) (-15 -1702 ((-1068 (-589 (-523))) (-523))) (-15 -1702 ((-1068 (-589 (-523))) (-523) (-523))) (-15 -1308 ((-589 (-523)) (-589 (-523)))) (-15 -2877 ((-1068 (-589 (-523))) (-1068 (-589 (-523))))) (-15 -4175 ((-1068 (-589 (-523))) (-589 (-523)) (-589 (-523)))) (-15 -3066 ((-1068 (-589 (-523))) (-589 (-523)) (-1068 (-589 (-523))))) (-15 -3883 ((-1068 (-589 (-523))) (-589 (-523)) (-589 (-523)))) (-15 -3883 ((-1068 (-589 (-523))) (-589 (-523)))) (-15 -3924 ((-1068 (-589 (-523))) (-523))))) (T -814))
-((-3924 (*1 *2 *3) (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814)) (-5 *3 (-523)))) (-3883 (*1 *2 *3) (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814)) (-5 *3 (-589 (-523))))) (-3883 (*1 *2 *3 *3) (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814)) (-5 *3 (-589 (-523))))) (-3066 (*1 *2 *3 *2) (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *3 (-589 (-523))) (-5 *1 (-814)))) (-4175 (*1 *2 *3 *3) (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814)) (-5 *3 (-589 (-523))))) (-2877 (*1 *2 *2) (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814)))) (-1308 (*1 *2 *2) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-814)))) (-1702 (*1 *2 *3 *3) (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814)) (-5 *3 (-523)))) (-1702 (*1 *2 *3) (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814)) (-5 *3 (-523)))) (-1702 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814)) (-5 *3 (-523)))))
-(-10 -7 (-15 -1702 ((-1068 (-589 (-523))) (-523) (-523) (-523))) (-15 -1702 ((-1068 (-589 (-523))) (-523))) (-15 -1702 ((-1068 (-589 (-523))) (-523) (-523))) (-15 -1308 ((-589 (-523)) (-589 (-523)))) (-15 -2877 ((-1068 (-589 (-523))) (-1068 (-589 (-523))))) (-15 -4175 ((-1068 (-589 (-523))) (-589 (-523)) (-589 (-523)))) (-15 -3066 ((-1068 (-589 (-523))) (-589 (-523)) (-1068 (-589 (-523))))) (-15 -3883 ((-1068 (-589 (-523))) (-589 (-523)) (-589 (-523)))) (-15 -3883 ((-1068 (-589 (-523))) (-589 (-523)))) (-15 -3924 ((-1068 (-589 (-523))) (-523))))
-((-3077 (((-823 (-355)) $) 9 (|has| |#1| (-564 (-823 (-355))))) (((-823 (-523)) $) 8 (|has| |#1| (-564 (-823 (-523)))))))
-(((-815 |#1|) (-129) (-1123)) (T -815))
-NIL
-(-13 (-10 -7 (IF (|has| |t#1| (-564 (-823 (-523)))) (-6 (-564 (-823 (-523)))) |%noBranch|) (IF (|has| |t#1| (-564 (-823 (-355)))) (-6 (-564 (-823 (-355)))) |%noBranch|)))
-(((-564 (-823 (-355))) |has| |#1| (-564 (-823 (-355)))) ((-564 (-823 (-523))) |has| |#1| (-564 (-823 (-523)))))
-((-3260 (((-108) $ $) NIL)) (-2348 (($) 14)) (-4018 (($ (-820 |#1| |#2|) (-820 |#1| |#3|)) 27)) (-2309 (((-820 |#1| |#3|) $) 16)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3238 (((-108) $) 22)) (-2509 (($) 19)) (-3976 (((-794) $) 30)) (-2567 (((-820 |#1| |#2|) $) 15)) (-4037 (((-108) $ $) 25)))
-(((-816 |#1| |#2| |#3|) (-13 (-1016) (-10 -8 (-15 -3238 ((-108) $)) (-15 -2509 ($)) (-15 -2348 ($)) (-15 -4018 ($ (-820 |#1| |#2|) (-820 |#1| |#3|))) (-15 -2567 ((-820 |#1| |#2|) $)) (-15 -2309 ((-820 |#1| |#3|) $)))) (-1016) (-1016) (-609 |#2|)) (T -816))
-((-3238 (*1 *2 *1) (-12 (-4 *4 (-1016)) (-5 *2 (-108)) (-5 *1 (-816 *3 *4 *5)) (-4 *3 (-1016)) (-4 *5 (-609 *4)))) (-2509 (*1 *1) (-12 (-4 *3 (-1016)) (-5 *1 (-816 *2 *3 *4)) (-4 *2 (-1016)) (-4 *4 (-609 *3)))) (-2348 (*1 *1) (-12 (-4 *3 (-1016)) (-5 *1 (-816 *2 *3 *4)) (-4 *2 (-1016)) (-4 *4 (-609 *3)))) (-4018 (*1 *1 *2 *3) (-12 (-5 *2 (-820 *4 *5)) (-5 *3 (-820 *4 *6)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-609 *5)) (-5 *1 (-816 *4 *5 *6)))) (-2567 (*1 *2 *1) (-12 (-4 *4 (-1016)) (-5 *2 (-820 *3 *4)) (-5 *1 (-816 *3 *4 *5)) (-4 *3 (-1016)) (-4 *5 (-609 *4)))) (-2309 (*1 *2 *1) (-12 (-4 *4 (-1016)) (-5 *2 (-820 *3 *5)) (-5 *1 (-816 *3 *4 *5)) (-4 *3 (-1016)) (-4 *5 (-609 *4)))))
-(-13 (-1016) (-10 -8 (-15 -3238 ((-108) $)) (-15 -2509 ($)) (-15 -2348 ($)) (-15 -4018 ($ (-820 |#1| |#2|) (-820 |#1| |#3|))) (-15 -2567 ((-820 |#1| |#2|) $)) (-15 -2309 ((-820 |#1| |#3|) $))))
-((-3260 (((-108) $ $) 7)) (-2483 (((-820 |#1| $) $ (-823 |#1|) (-820 |#1| $)) 13)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-4037 (((-108) $ $) 6)))
-(((-817 |#1|) (-129) (-1016)) (T -817))
-((-2483 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-820 *4 *1)) (-5 *3 (-823 *4)) (-4 *1 (-817 *4)) (-4 *4 (-1016)))))
-(-13 (-1016) (-10 -8 (-15 -2483 ((-820 |t#1| $) $ (-823 |t#1|) (-820 |t#1| $)))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-2676 (((-108) (-589 |#2|) |#3|) 23) (((-108) |#2| |#3|) 18)) (-1598 (((-820 |#1| |#2|) |#2| |#3|) 43 (-12 (-2575 (|has| |#2| (-964 (-1087)))) (-2575 (|has| |#2| (-973))))) (((-589 (-271 (-883 |#2|))) |#2| |#3|) 42 (-12 (|has| |#2| (-973)) (-2575 (|has| |#2| (-964 (-1087)))))) (((-589 (-271 |#2|)) |#2| |#3|) 35 (|has| |#2| (-964 (-1087)))) (((-816 |#1| |#2| (-589 |#2|)) (-589 |#2|) |#3|) 21)))
-(((-818 |#1| |#2| |#3|) (-10 -7 (-15 -2676 ((-108) |#2| |#3|)) (-15 -2676 ((-108) (-589 |#2|) |#3|)) (-15 -1598 ((-816 |#1| |#2| (-589 |#2|)) (-589 |#2|) |#3|)) (IF (|has| |#2| (-964 (-1087))) (-15 -1598 ((-589 (-271 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-973)) (-15 -1598 ((-589 (-271 (-883 |#2|))) |#2| |#3|)) (-15 -1598 ((-820 |#1| |#2|) |#2| |#3|))))) (-1016) (-817 |#1|) (-564 (-823 |#1|))) (T -818))
-((-1598 (*1 *2 *3 *4) (-12 (-4 *5 (-1016)) (-5 *2 (-820 *5 *3)) (-5 *1 (-818 *5 *3 *4)) (-2575 (-4 *3 (-964 (-1087)))) (-2575 (-4 *3 (-973))) (-4 *3 (-817 *5)) (-4 *4 (-564 (-823 *5))))) (-1598 (*1 *2 *3 *4) (-12 (-4 *5 (-1016)) (-5 *2 (-589 (-271 (-883 *3)))) (-5 *1 (-818 *5 *3 *4)) (-4 *3 (-973)) (-2575 (-4 *3 (-964 (-1087)))) (-4 *3 (-817 *5)) (-4 *4 (-564 (-823 *5))))) (-1598 (*1 *2 *3 *4) (-12 (-4 *5 (-1016)) (-5 *2 (-589 (-271 *3))) (-5 *1 (-818 *5 *3 *4)) (-4 *3 (-964 (-1087))) (-4 *3 (-817 *5)) (-4 *4 (-564 (-823 *5))))) (-1598 (*1 *2 *3 *4) (-12 (-4 *5 (-1016)) (-4 *6 (-817 *5)) (-5 *2 (-816 *5 *6 (-589 *6))) (-5 *1 (-818 *5 *6 *4)) (-5 *3 (-589 *6)) (-4 *4 (-564 (-823 *5))))) (-2676 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *6)) (-4 *6 (-817 *5)) (-4 *5 (-1016)) (-5 *2 (-108)) (-5 *1 (-818 *5 *6 *4)) (-4 *4 (-564 (-823 *5))))) (-2676 (*1 *2 *3 *4) (-12 (-4 *5 (-1016)) (-5 *2 (-108)) (-5 *1 (-818 *5 *3 *4)) (-4 *3 (-817 *5)) (-4 *4 (-564 (-823 *5))))))
-(-10 -7 (-15 -2676 ((-108) |#2| |#3|)) (-15 -2676 ((-108) (-589 |#2|) |#3|)) (-15 -1598 ((-816 |#1| |#2| (-589 |#2|)) (-589 |#2|) |#3|)) (IF (|has| |#2| (-964 (-1087))) (-15 -1598 ((-589 (-271 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-973)) (-15 -1598 ((-589 (-271 (-883 |#2|))) |#2| |#3|)) (-15 -1598 ((-820 |#1| |#2|) |#2| |#3|)))))
-((-3015 (((-820 |#1| |#3|) (-1 |#3| |#2|) (-820 |#1| |#2|)) 22)))
-(((-819 |#1| |#2| |#3|) (-10 -7 (-15 -3015 ((-820 |#1| |#3|) (-1 |#3| |#2|) (-820 |#1| |#2|)))) (-1016) (-1016) (-1016)) (T -819))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-820 *5 *6)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-820 *5 *7)) (-5 *1 (-819 *5 *6 *7)))))
-(-10 -7 (-15 -3015 ((-820 |#1| |#3|) (-1 |#3| |#2|) (-820 |#1| |#2|))))
-((-3260 (((-108) $ $) NIL)) (-2073 (($ $ $) 39)) (-1256 (((-3 (-108) "failed") $ (-823 |#1|)) 36)) (-2348 (($) 12)) (-3841 (((-1070) $) NIL)) (-2069 (($ (-823 |#1|) |#2| $) 20)) (-2435 (((-1034) $) NIL)) (-3039 (((-3 |#2| "failed") (-823 |#1|) $) 50)) (-3238 (((-108) $) 15)) (-2509 (($) 13)) (-3644 (((-589 (-2 (|:| -2402 (-1087)) (|:| -2746 |#2|))) $) 25)) (-3985 (($ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 |#2|)))) 23)) (-3976 (((-794) $) 44)) (-1654 (($ (-823 |#1|) |#2| $ |#2|) 48)) (-3173 (($ (-823 |#1|) |#2| $) 47)) (-4037 (((-108) $ $) 41)))
-(((-820 |#1| |#2|) (-13 (-1016) (-10 -8 (-15 -3238 ((-108) $)) (-15 -2509 ($)) (-15 -2348 ($)) (-15 -2073 ($ $ $)) (-15 -3039 ((-3 |#2| "failed") (-823 |#1|) $)) (-15 -3173 ($ (-823 |#1|) |#2| $)) (-15 -2069 ($ (-823 |#1|) |#2| $)) (-15 -1654 ($ (-823 |#1|) |#2| $ |#2|)) (-15 -3644 ((-589 (-2 (|:| -2402 (-1087)) (|:| -2746 |#2|))) $)) (-15 -3985 ($ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 |#2|))))) (-15 -1256 ((-3 (-108) "failed") $ (-823 |#1|))))) (-1016) (-1016)) (T -820))
-((-3238 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-820 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016)))) (-2509 (*1 *1) (-12 (-5 *1 (-820 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))) (-2348 (*1 *1) (-12 (-5 *1 (-820 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))) (-2073 (*1 *1 *1 *1) (-12 (-5 *1 (-820 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))) (-3039 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-823 *4)) (-4 *4 (-1016)) (-4 *2 (-1016)) (-5 *1 (-820 *4 *2)))) (-3173 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-823 *4)) (-4 *4 (-1016)) (-5 *1 (-820 *4 *3)) (-4 *3 (-1016)))) (-2069 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-823 *4)) (-4 *4 (-1016)) (-5 *1 (-820 *4 *3)) (-4 *3 (-1016)))) (-1654 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-823 *4)) (-4 *4 (-1016)) (-5 *1 (-820 *4 *3)) (-4 *3 (-1016)))) (-3644 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 *4)))) (-5 *1 (-820 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016)))) (-3985 (*1 *1 *2) (-12 (-5 *2 (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 *4)))) (-4 *4 (-1016)) (-5 *1 (-820 *3 *4)) (-4 *3 (-1016)))) (-1256 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-823 *4)) (-4 *4 (-1016)) (-5 *2 (-108)) (-5 *1 (-820 *4 *5)) (-4 *5 (-1016)))))
-(-13 (-1016) (-10 -8 (-15 -3238 ((-108) $)) (-15 -2509 ($)) (-15 -2348 ($)) (-15 -2073 ($ $ $)) (-15 -3039 ((-3 |#2| "failed") (-823 |#1|) $)) (-15 -3173 ($ (-823 |#1|) |#2| $)) (-15 -2069 ($ (-823 |#1|) |#2| $)) (-15 -1654 ($ (-823 |#1|) |#2| $ |#2|)) (-15 -3644 ((-589 (-2 (|:| -2402 (-1087)) (|:| -2746 |#2|))) $)) (-15 -3985 ($ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 |#2|))))) (-15 -1256 ((-3 (-108) "failed") $ (-823 |#1|)))))
-((-2430 (((-823 |#1|) (-823 |#1|) (-589 (-1087)) (-1 (-108) (-589 |#2|))) 32) (((-823 |#1|) (-823 |#1|) (-589 (-1 (-108) |#2|))) 43) (((-823 |#1|) (-823 |#1|) (-1 (-108) |#2|)) 35)) (-1256 (((-108) (-589 |#2|) (-823 |#1|)) 40) (((-108) |#2| (-823 |#1|)) 36)) (-3735 (((-1 (-108) |#2|) (-823 |#1|)) 16)) (-3643 (((-589 |#2|) (-823 |#1|)) 24)) (-1898 (((-823 |#1|) (-823 |#1|) |#2|) 20)))
-(((-821 |#1| |#2|) (-10 -7 (-15 -2430 ((-823 |#1|) (-823 |#1|) (-1 (-108) |#2|))) (-15 -2430 ((-823 |#1|) (-823 |#1|) (-589 (-1 (-108) |#2|)))) (-15 -2430 ((-823 |#1|) (-823 |#1|) (-589 (-1087)) (-1 (-108) (-589 |#2|)))) (-15 -3735 ((-1 (-108) |#2|) (-823 |#1|))) (-15 -1256 ((-108) |#2| (-823 |#1|))) (-15 -1256 ((-108) (-589 |#2|) (-823 |#1|))) (-15 -1898 ((-823 |#1|) (-823 |#1|) |#2|)) (-15 -3643 ((-589 |#2|) (-823 |#1|)))) (-1016) (-1123)) (T -821))
-((-3643 (*1 *2 *3) (-12 (-5 *3 (-823 *4)) (-4 *4 (-1016)) (-5 *2 (-589 *5)) (-5 *1 (-821 *4 *5)) (-4 *5 (-1123)))) (-1898 (*1 *2 *2 *3) (-12 (-5 *2 (-823 *4)) (-4 *4 (-1016)) (-5 *1 (-821 *4 *3)) (-4 *3 (-1123)))) (-1256 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *6)) (-5 *4 (-823 *5)) (-4 *5 (-1016)) (-4 *6 (-1123)) (-5 *2 (-108)) (-5 *1 (-821 *5 *6)))) (-1256 (*1 *2 *3 *4) (-12 (-5 *4 (-823 *5)) (-4 *5 (-1016)) (-5 *2 (-108)) (-5 *1 (-821 *5 *3)) (-4 *3 (-1123)))) (-3735 (*1 *2 *3) (-12 (-5 *3 (-823 *4)) (-4 *4 (-1016)) (-5 *2 (-1 (-108) *5)) (-5 *1 (-821 *4 *5)) (-4 *5 (-1123)))) (-2430 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-823 *5)) (-5 *3 (-589 (-1087))) (-5 *4 (-1 (-108) (-589 *6))) (-4 *5 (-1016)) (-4 *6 (-1123)) (-5 *1 (-821 *5 *6)))) (-2430 (*1 *2 *2 *3) (-12 (-5 *2 (-823 *4)) (-5 *3 (-589 (-1 (-108) *5))) (-4 *4 (-1016)) (-4 *5 (-1123)) (-5 *1 (-821 *4 *5)))) (-2430 (*1 *2 *2 *3) (-12 (-5 *2 (-823 *4)) (-5 *3 (-1 (-108) *5)) (-4 *4 (-1016)) (-4 *5 (-1123)) (-5 *1 (-821 *4 *5)))))
-(-10 -7 (-15 -2430 ((-823 |#1|) (-823 |#1|) (-1 (-108) |#2|))) (-15 -2430 ((-823 |#1|) (-823 |#1|) (-589 (-1 (-108) |#2|)))) (-15 -2430 ((-823 |#1|) (-823 |#1|) (-589 (-1087)) (-1 (-108) (-589 |#2|)))) (-15 -3735 ((-1 (-108) |#2|) (-823 |#1|))) (-15 -1256 ((-108) |#2| (-823 |#1|))) (-15 -1256 ((-108) (-589 |#2|) (-823 |#1|))) (-15 -1898 ((-823 |#1|) (-823 |#1|) |#2|)) (-15 -3643 ((-589 |#2|) (-823 |#1|))))
-((-3015 (((-823 |#2|) (-1 |#2| |#1|) (-823 |#1|)) 19)))
-(((-822 |#1| |#2|) (-10 -7 (-15 -3015 ((-823 |#2|) (-1 |#2| |#1|) (-823 |#1|)))) (-1016) (-1016)) (T -822))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-823 *5)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-5 *2 (-823 *6)) (-5 *1 (-822 *5 *6)))))
-(-10 -7 (-15 -3015 ((-823 |#2|) (-1 |#2| |#1|) (-823 |#1|))))
-((-3260 (((-108) $ $) NIL)) (-1204 (($ $ (-589 (-51))) 64)) (-3716 (((-589 $) $) 118)) (-4043 (((-2 (|:| |var| (-589 (-1087))) (|:| |pred| (-51))) $) 24)) (-1972 (((-108) $) 30)) (-2735 (($ $ (-589 (-1087)) (-51)) 25)) (-4215 (($ $ (-589 (-51))) 63)) (-2898 (((-3 |#1| "failed") $) 61) (((-3 (-1087) "failed") $) 140)) (-1996 ((|#1| $) 58) (((-1087) $) NIL)) (-1264 (($ $) 108)) (-3580 (((-108) $) 47)) (-1669 (((-589 (-51)) $) 45)) (-2916 (($ (-1087) (-108) (-108) (-108)) 65)) (-1839 (((-3 (-589 $) "failed") (-589 $)) 72)) (-2767 (((-108) $) 50)) (-3308 (((-108) $) 49)) (-3841 (((-1070) $) NIL)) (-3818 (((-3 (-589 $) "failed") $) 36)) (-1875 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 43)) (-3372 (((-3 (-2 (|:| |val| $) (|:| -3262 $)) "failed") $) 83)) (-1973 (((-3 (-589 $) "failed") $) 33)) (-2759 (((-3 (-589 $) "failed") $ (-110)) 107) (((-3 (-2 (|:| -3362 (-110)) (|:| |arg| (-589 $))) "failed") $) 95)) (-2888 (((-3 (-589 $) "failed") $) 37)) (-3719 (((-3 (-2 (|:| |val| $) (|:| -3262 (-710))) "failed") $) 40)) (-3933 (((-108) $) 29)) (-2435 (((-1034) $) NIL)) (-1578 (((-108) $) 21)) (-1471 (((-108) $) 46)) (-1615 (((-589 (-51)) $) 111)) (-2237 (((-108) $) 48)) (-1502 (($ (-110) (-589 $)) 92)) (-4120 (((-710) $) 28)) (-4124 (($ $) 62)) (-3077 (($ (-589 $)) 59)) (-2592 (((-108) $) 26)) (-3976 (((-794) $) 53) (($ |#1|) 18) (($ (-1087)) 66)) (-1898 (($ $ (-51)) 110)) (-1428 (($) 91 T CONST)) (-1440 (($) 73 T CONST)) (-4037 (((-108) $ $) 79)) (-4125 (($ $ $) 100)) (-4103 (($ $ $) 104)) (** (($ $ (-710)) 99) (($ $ $) 54)) (* (($ $ $) 105)))
-(((-823 |#1|) (-13 (-1016) (-964 |#1|) (-964 (-1087)) (-10 -8 (-15 0 ($) -1982) (-15 1 ($) -1982) (-15 -1973 ((-3 (-589 $) "failed") $)) (-15 -3818 ((-3 (-589 $) "failed") $)) (-15 -2759 ((-3 (-589 $) "failed") $ (-110))) (-15 -2759 ((-3 (-2 (|:| -3362 (-110)) (|:| |arg| (-589 $))) "failed") $)) (-15 -3719 ((-3 (-2 (|:| |val| $) (|:| -3262 (-710))) "failed") $)) (-15 -1875 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2888 ((-3 (-589 $) "failed") $)) (-15 -3372 ((-3 (-2 (|:| |val| $) (|:| -3262 $)) "failed") $)) (-15 -1502 ($ (-110) (-589 $))) (-15 -4103 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-710))) (-15 ** ($ $ $)) (-15 -4125 ($ $ $)) (-15 -4120 ((-710) $)) (-15 -3077 ($ (-589 $))) (-15 -4124 ($ $)) (-15 -3933 ((-108) $)) (-15 -3580 ((-108) $)) (-15 -1972 ((-108) $)) (-15 -2592 ((-108) $)) (-15 -2237 ((-108) $)) (-15 -3308 ((-108) $)) (-15 -2767 ((-108) $)) (-15 -1471 ((-108) $)) (-15 -1669 ((-589 (-51)) $)) (-15 -4215 ($ $ (-589 (-51)))) (-15 -1204 ($ $ (-589 (-51)))) (-15 -2916 ($ (-1087) (-108) (-108) (-108))) (-15 -2735 ($ $ (-589 (-1087)) (-51))) (-15 -4043 ((-2 (|:| |var| (-589 (-1087))) (|:| |pred| (-51))) $)) (-15 -1578 ((-108) $)) (-15 -1264 ($ $)) (-15 -1898 ($ $ (-51))) (-15 -1615 ((-589 (-51)) $)) (-15 -3716 ((-589 $) $)) (-15 -1839 ((-3 (-589 $) "failed") (-589 $))))) (-1016)) (T -823))
-((-1428 (*1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016)))) (-1440 (*1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016)))) (-1973 (*1 *2 *1) (|partial| -12 (-5 *2 (-589 (-823 *3))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-3818 (*1 *2 *1) (|partial| -12 (-5 *2 (-589 (-823 *3))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-2759 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-110)) (-5 *2 (-589 (-823 *4))) (-5 *1 (-823 *4)) (-4 *4 (-1016)))) (-2759 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -3362 (-110)) (|:| |arg| (-589 (-823 *3))))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-3719 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-823 *3)) (|:| -3262 (-710)))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-1875 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-823 *3)) (|:| |den| (-823 *3)))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-2888 (*1 *2 *1) (|partial| -12 (-5 *2 (-589 (-823 *3))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-3372 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-823 *3)) (|:| -3262 (-823 *3)))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-1502 (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-589 (-823 *4))) (-5 *1 (-823 *4)) (-4 *4 (-1016)))) (-4103 (*1 *1 *1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (** (*1 *1 *1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016)))) (-4125 (*1 *1 *1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016)))) (-4120 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-3077 (*1 *1 *2) (-12 (-5 *2 (-589 (-823 *3))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-4124 (*1 *1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016)))) (-3933 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-3580 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-1972 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-2592 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-2237 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-3308 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-2767 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-1471 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-1669 (*1 *2 *1) (-12 (-5 *2 (-589 (-51))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-4215 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-51))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-1204 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-51))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-2916 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-108)) (-5 *1 (-823 *4)) (-4 *4 (-1016)))) (-2735 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 (-1087))) (-5 *3 (-51)) (-5 *1 (-823 *4)) (-4 *4 (-1016)))) (-4043 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-589 (-1087))) (|:| |pred| (-51)))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-1578 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-1264 (*1 *1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016)))) (-1898 (*1 *1 *1 *2) (-12 (-5 *2 (-51)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-1615 (*1 *2 *1) (-12 (-5 *2 (-589 (-51))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-3716 (*1 *2 *1) (-12 (-5 *2 (-589 (-823 *3))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))) (-1839 (*1 *2 *2) (|partial| -12 (-5 *2 (-589 (-823 *3))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))))
-(-13 (-1016) (-964 |#1|) (-964 (-1087)) (-10 -8 (-15 (-1428) ($) -1982) (-15 (-1440) ($) -1982) (-15 -1973 ((-3 (-589 $) "failed") $)) (-15 -3818 ((-3 (-589 $) "failed") $)) (-15 -2759 ((-3 (-589 $) "failed") $ (-110))) (-15 -2759 ((-3 (-2 (|:| -3362 (-110)) (|:| |arg| (-589 $))) "failed") $)) (-15 -3719 ((-3 (-2 (|:| |val| $) (|:| -3262 (-710))) "failed") $)) (-15 -1875 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2888 ((-3 (-589 $) "failed") $)) (-15 -3372 ((-3 (-2 (|:| |val| $) (|:| -3262 $)) "failed") $)) (-15 -1502 ($ (-110) (-589 $))) (-15 -4103 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-710))) (-15 ** ($ $ $)) (-15 -4125 ($ $ $)) (-15 -4120 ((-710) $)) (-15 -3077 ($ (-589 $))) (-15 -4124 ($ $)) (-15 -3933 ((-108) $)) (-15 -3580 ((-108) $)) (-15 -1972 ((-108) $)) (-15 -2592 ((-108) $)) (-15 -2237 ((-108) $)) (-15 -3308 ((-108) $)) (-15 -2767 ((-108) $)) (-15 -1471 ((-108) $)) (-15 -1669 ((-589 (-51)) $)) (-15 -4215 ($ $ (-589 (-51)))) (-15 -1204 ($ $ (-589 (-51)))) (-15 -2916 ($ (-1087) (-108) (-108) (-108))) (-15 -2735 ($ $ (-589 (-1087)) (-51))) (-15 -4043 ((-2 (|:| |var| (-589 (-1087))) (|:| |pred| (-51))) $)) (-15 -1578 ((-108) $)) (-15 -1264 ($ $)) (-15 -1898 ($ $ (-51))) (-15 -1615 ((-589 (-51)) $)) (-15 -3716 ((-589 $) $)) (-15 -1839 ((-3 (-589 $) "failed") (-589 $)))))
-((-3260 (((-108) $ $) NIL)) (-1304 (((-589 |#1|) $) 16)) (-1936 (((-108) $) 38)) (-2898 (((-3 (-614 |#1|) "failed") $) 43)) (-1996 (((-614 |#1|) $) 41)) (-3891 (($ $) 18)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3229 (((-710) $) 46)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3879 (((-614 |#1|) $) 17)) (-3976 (((-794) $) 37) (($ (-614 |#1|)) 21) (((-758 |#1|) $) 27) (($ |#1|) 20)) (-1440 (($) 8 T CONST)) (-1776 (((-589 (-614 |#1|)) $) 23)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 11)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 49)))
-(((-824 |#1|) (-13 (-786) (-964 (-614 |#1|)) (-10 -8 (-15 1 ($) -1982) (-15 -3976 ((-758 |#1|) $)) (-15 -3976 ($ |#1|)) (-15 -3879 ((-614 |#1|) $)) (-15 -3229 ((-710) $)) (-15 -1776 ((-589 (-614 |#1|)) $)) (-15 -3891 ($ $)) (-15 -1936 ((-108) $)) (-15 -1304 ((-589 |#1|) $)))) (-786)) (T -824))
-((-1440 (*1 *1) (-12 (-5 *1 (-824 *2)) (-4 *2 (-786)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-758 *3)) (-5 *1 (-824 *3)) (-4 *3 (-786)))) (-3976 (*1 *1 *2) (-12 (-5 *1 (-824 *2)) (-4 *2 (-786)))) (-3879 (*1 *2 *1) (-12 (-5 *2 (-614 *3)) (-5 *1 (-824 *3)) (-4 *3 (-786)))) (-3229 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-824 *3)) (-4 *3 (-786)))) (-1776 (*1 *2 *1) (-12 (-5 *2 (-589 (-614 *3))) (-5 *1 (-824 *3)) (-4 *3 (-786)))) (-3891 (*1 *1 *1) (-12 (-5 *1 (-824 *2)) (-4 *2 (-786)))) (-1936 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-824 *3)) (-4 *3 (-786)))) (-1304 (*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-824 *3)) (-4 *3 (-786)))))
-(-13 (-786) (-964 (-614 |#1|)) (-10 -8 (-15 (-1440) ($) -1982) (-15 -3976 ((-758 |#1|) $)) (-15 -3976 ($ |#1|)) (-15 -3879 ((-614 |#1|) $)) (-15 -3229 ((-710) $)) (-15 -1776 ((-589 (-614 |#1|)) $)) (-15 -3891 ($ $)) (-15 -1936 ((-108) $)) (-15 -1304 ((-589 |#1|) $))))
-((-3363 ((|#1| |#1| |#1|) 19)))
-(((-825 |#1| |#2|) (-10 -7 (-15 -3363 (|#1| |#1| |#1|))) (-1145 |#2|) (-973)) (T -825))
-((-3363 (*1 *2 *2 *2) (-12 (-4 *3 (-973)) (-5 *1 (-825 *2 *3)) (-4 *2 (-1145 *3)))))
-(-10 -7 (-15 -3363 (|#1| |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-3359 (((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203)))) 14)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-3687 (((-962) (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203)))) 13)) (-4037 (((-108) $ $) 6)))
-(((-826) (-129)) (T -826))
-((-3359 (*1 *2 *3 *4) (-12 (-4 *1 (-826)) (-5 *3 (-985)) (-5 *4 (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203)))) (-5 *2 (-2 (|:| -3359 (-355)) (|:| |explanations| (-1070)))))) (-3687 (*1 *2 *3) (-12 (-4 *1 (-826)) (-5 *3 (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203)))) (-5 *2 (-962)))))
-(-13 (-1016) (-10 -7 (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))) (-985) (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203))))) (-15 -3687 ((-962) (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203)))))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-4117 ((|#1| |#1| (-710)) 24)) (-3275 (((-3 |#1| "failed") |#1| |#1|) 22)) (-3720 (((-3 (-2 (|:| -2428 |#1|) (|:| -2438 |#1|)) "failed") |#1| (-710) (-710)) 27) (((-589 |#1|) |#1|) 29)))
-(((-827 |#1| |#2|) (-10 -7 (-15 -3720 ((-589 |#1|) |#1|)) (-15 -3720 ((-3 (-2 (|:| -2428 |#1|) (|:| -2438 |#1|)) "failed") |#1| (-710) (-710))) (-15 -3275 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4117 (|#1| |#1| (-710)))) (-1145 |#2|) (-339)) (T -827))
-((-4117 (*1 *2 *2 *3) (-12 (-5 *3 (-710)) (-4 *4 (-339)) (-5 *1 (-827 *2 *4)) (-4 *2 (-1145 *4)))) (-3275 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-339)) (-5 *1 (-827 *2 *3)) (-4 *2 (-1145 *3)))) (-3720 (*1 *2 *3 *4 *4) (|partial| -12 (-5 *4 (-710)) (-4 *5 (-339)) (-5 *2 (-2 (|:| -2428 *3) (|:| -2438 *3))) (-5 *1 (-827 *3 *5)) (-4 *3 (-1145 *5)))) (-3720 (*1 *2 *3) (-12 (-4 *4 (-339)) (-5 *2 (-589 *3)) (-5 *1 (-827 *3 *4)) (-4 *3 (-1145 *4)))))
-(-10 -7 (-15 -3720 ((-589 |#1|) |#1|)) (-15 -3720 ((-3 (-2 (|:| -2428 |#1|) (|:| -2438 |#1|)) "failed") |#1| (-710) (-710))) (-15 -3275 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4117 (|#1| |#1| (-710))))
-((-3911 (((-962) (-355) (-355) (-355) (-355) (-710) (-710) (-589 (-292 (-355))) (-589 (-589 (-292 (-355)))) (-1070)) 96) (((-962) (-355) (-355) (-355) (-355) (-710) (-710) (-589 (-292 (-355))) (-589 (-589 (-292 (-355)))) (-1070) (-203)) 91) (((-962) (-829) (-985)) 83) (((-962) (-829)) 84)) (-3359 (((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-829) (-985)) 59) (((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-829)) 61)))
-(((-828) (-10 -7 (-15 -3911 ((-962) (-829))) (-15 -3911 ((-962) (-829) (-985))) (-15 -3911 ((-962) (-355) (-355) (-355) (-355) (-710) (-710) (-589 (-292 (-355))) (-589 (-589 (-292 (-355)))) (-1070) (-203))) (-15 -3911 ((-962) (-355) (-355) (-355) (-355) (-710) (-710) (-589 (-292 (-355))) (-589 (-589 (-292 (-355)))) (-1070))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-829))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-829) (-985))))) (T -828))
-((-3359 (*1 *2 *3 *4) (-12 (-5 *3 (-829)) (-5 *4 (-985)) (-5 *2 (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))))) (-5 *1 (-828)))) (-3359 (*1 *2 *3) (-12 (-5 *3 (-829)) (-5 *2 (-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070))))) (-5 *1 (-828)))) (-3911 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7) (-12 (-5 *4 (-710)) (-5 *6 (-589 (-589 (-292 *3)))) (-5 *7 (-1070)) (-5 *5 (-589 (-292 (-355)))) (-5 *3 (-355)) (-5 *2 (-962)) (-5 *1 (-828)))) (-3911 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8) (-12 (-5 *4 (-710)) (-5 *6 (-589 (-589 (-292 *3)))) (-5 *7 (-1070)) (-5 *8 (-203)) (-5 *5 (-589 (-292 (-355)))) (-5 *3 (-355)) (-5 *2 (-962)) (-5 *1 (-828)))) (-3911 (*1 *2 *3 *4) (-12 (-5 *3 (-829)) (-5 *4 (-985)) (-5 *2 (-962)) (-5 *1 (-828)))) (-3911 (*1 *2 *3) (-12 (-5 *3 (-829)) (-5 *2 (-962)) (-5 *1 (-828)))))
-(-10 -7 (-15 -3911 ((-962) (-829))) (-15 -3911 ((-962) (-829) (-985))) (-15 -3911 ((-962) (-355) (-355) (-355) (-355) (-710) (-710) (-589 (-292 (-355))) (-589 (-589 (-292 (-355)))) (-1070) (-203))) (-15 -3911 ((-962) (-355) (-355) (-355) (-355) (-710) (-710) (-589 (-292 (-355))) (-589 (-589 (-292 (-355)))) (-1070))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-829))) (-15 -3359 ((-2 (|:| -3359 (-355)) (|:| -1522 (-1070)) (|:| |explanations| (-589 (-1070)))) (-829) (-985))))
-((-3260 (((-108) $ $) NIL)) (-1996 (((-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203))) $) 19)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 21) (($ (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203)))) 18)) (-4037 (((-108) $ $) NIL)))
-(((-829) (-13 (-1016) (-10 -8 (-15 -3976 ($ (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203))))) (-15 -3976 ((-794) $)) (-15 -1996 ((-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203))) $))))) (T -829))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-829)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203)))) (-5 *1 (-829)))) (-1996 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203)))) (-5 *1 (-829)))))
-(-13 (-1016) (-10 -8 (-15 -3976 ($ (-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203))))) (-15 -3976 ((-794) $)) (-15 -1996 ((-2 (|:| |pde| (-589 (-292 (-203)))) (|:| |constraints| (-589 (-2 (|:| |start| (-203)) (|:| |finish| (-203)) (|:| |grid| (-710)) (|:| |boundaryType| (-523)) (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203)))))) (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070)) (|:| |tol| (-203))) $))))
-((-4024 (($ $ |#2|) NIL) (($ $ (-589 |#2|)) 10) (($ $ |#2| (-710)) 12) (($ $ (-589 |#2|) (-589 (-710))) 15)) (-1943 (($ $ |#2|) 16) (($ $ (-589 |#2|)) 18) (($ $ |#2| (-710)) 19) (($ $ (-589 |#2|) (-589 (-710))) 21)))
-(((-830 |#1| |#2|) (-10 -8 (-15 -1943 (|#1| |#1| (-589 |#2|) (-589 (-710)))) (-15 -1943 (|#1| |#1| |#2| (-710))) (-15 -1943 (|#1| |#1| (-589 |#2|))) (-15 -1943 (|#1| |#1| |#2|)) (-15 -4024 (|#1| |#1| (-589 |#2|) (-589 (-710)))) (-15 -4024 (|#1| |#1| |#2| (-710))) (-15 -4024 (|#1| |#1| (-589 |#2|))) (-15 -4024 (|#1| |#1| |#2|))) (-831 |#2|) (-1016)) (T -830))
-NIL
-(-10 -8 (-15 -1943 (|#1| |#1| (-589 |#2|) (-589 (-710)))) (-15 -1943 (|#1| |#1| |#2| (-710))) (-15 -1943 (|#1| |#1| (-589 |#2|))) (-15 -1943 (|#1| |#1| |#2|)) (-15 -4024 (|#1| |#1| (-589 |#2|) (-589 (-710)))) (-15 -4024 (|#1| |#1| |#2| (-710))) (-15 -4024 (|#1| |#1| (-589 |#2|))) (-15 -4024 (|#1| |#1| |#2|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-4024 (($ $ |#1|) 42) (($ $ (-589 |#1|)) 41) (($ $ |#1| (-710)) 40) (($ $ (-589 |#1|) (-589 (-710))) 39)) (-3976 (((-794) $) 11) (($ (-523)) 28)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ |#1|) 38) (($ $ (-589 |#1|)) 37) (($ $ |#1| (-710)) 36) (($ $ (-589 |#1|) (-589 (-710))) 35)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-831 |#1|) (-129) (-1016)) (T -831))
-((-4024 (*1 *1 *1 *2) (-12 (-4 *1 (-831 *2)) (-4 *2 (-1016)))) (-4024 (*1 *1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *1 (-831 *3)) (-4 *3 (-1016)))) (-4024 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-710)) (-4 *1 (-831 *2)) (-4 *2 (-1016)))) (-4024 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 *4)) (-5 *3 (-589 (-710))) (-4 *1 (-831 *4)) (-4 *4 (-1016)))) (-1943 (*1 *1 *1 *2) (-12 (-4 *1 (-831 *2)) (-4 *2 (-1016)))) (-1943 (*1 *1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *1 (-831 *3)) (-4 *3 (-1016)))) (-1943 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-710)) (-4 *1 (-831 *2)) (-4 *2 (-1016)))) (-1943 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 *4)) (-5 *3 (-589 (-710))) (-4 *1 (-831 *4)) (-4 *4 (-1016)))))
-(-13 (-973) (-10 -8 (-15 -4024 ($ $ |t#1|)) (-15 -4024 ($ $ (-589 |t#1|))) (-15 -4024 ($ $ |t#1| (-710))) (-15 -4024 ($ $ (-589 |t#1|) (-589 (-710)))) (-15 -1943 ($ $ |t#1|)) (-15 -1943 ($ $ (-589 |t#1|))) (-15 -1943 ($ $ |t#1| (-710))) (-15 -1943 ($ $ (-589 |t#1|) (-589 (-710))))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 $) . T) ((-666) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2058 ((|#1| $) 26)) (-2282 (((-108) $ (-710)) NIL)) (-3365 ((|#1| $ |#1|) NIL (|has| $ (-6 -4249)))) (-3913 (($ $ $) NIL (|has| $ (-6 -4249)))) (-1657 (($ $ $) NIL (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4249))) (($ $ "left" $) NIL (|has| $ (-6 -4249))) (($ $ "right" $) NIL (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) NIL (|has| $ (-6 -4249)))) (-1640 (($) NIL T CONST)) (-2438 (($ $) 25)) (-4112 (($ |#1|) 12) (($ $ $) 17)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) NIL)) (-3339 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-2428 (($ $) 23)) (-2112 (((-589 |#1|) $) NIL)) (-3391 (((-108) $) 20)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2981 (((-523) $ $) NIL)) (-2837 (((-108) $) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) NIL)) (-3976 (((-1110 |#1|) $) 9) (((-794) $) 29 (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) NIL)) (-4004 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 21 (|has| |#1| (-1016)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-832 |#1|) (-13 (-115 |#1|) (-10 -8 (-15 -4112 ($ |#1|)) (-15 -4112 ($ $ $)) (-15 -3976 ((-1110 |#1|) $)))) (-1016)) (T -832))
-((-4112 (*1 *1 *2) (-12 (-5 *1 (-832 *2)) (-4 *2 (-1016)))) (-4112 (*1 *1 *1 *1) (-12 (-5 *1 (-832 *2)) (-4 *2 (-1016)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-1110 *3)) (-5 *1 (-832 *3)) (-4 *3 (-1016)))))
-(-13 (-115 |#1|) (-10 -8 (-15 -4112 ($ |#1|)) (-15 -4112 ($ $ $)) (-15 -3976 ((-1110 |#1|) $))))
-((-3160 ((|#2| (-1054 |#1| |#2|)) 41)))
-(((-833 |#1| |#2|) (-10 -7 (-15 -3160 (|#2| (-1054 |#1| |#2|)))) (-852) (-13 (-973) (-10 -7 (-6 (-4250 "*"))))) (T -833))
-((-3160 (*1 *2 *3) (-12 (-5 *3 (-1054 *4 *2)) (-14 *4 (-852)) (-4 *2 (-13 (-973) (-10 -7 (-6 (-4250 "*"))))) (-5 *1 (-833 *4 *2)))))
-(-10 -7 (-15 -3160 (|#2| (-1054 |#1| |#2|))))
-((-3260 (((-108) $ $) 7)) (-1640 (($) 20 T CONST)) (-4211 (((-3 $ "failed") $) 16)) (-1587 (((-1018 |#1|) $ |#1|) 35)) (-3482 (((-108) $) 19)) (-3268 (($ $ $) 33 (-3255 (|has| |#1| (-786)) (|has| |#1| (-344))))) (-2644 (($ $ $) 32 (-3255 (|has| |#1| (-786)) (|has| |#1| (-344))))) (-3841 (((-1070) $) 9)) (-3071 (($ $) 27)) (-2435 (((-1034) $) 10)) (-1349 ((|#1| $ |#1|) 37)) (-1502 ((|#1| $ |#1|) 36)) (-3824 (($ (-589 (-589 |#1|))) 38)) (-3441 (($ (-589 |#1|)) 39)) (-1308 (($ $ $) 23)) (-2306 (($ $ $) 22)) (-3976 (((-794) $) 11)) (-2573 (($ $ (-852)) 13) (($ $ (-710)) 17) (($ $ (-523)) 24)) (-1440 (($) 21 T CONST)) (-4078 (((-108) $ $) 30 (-3255 (|has| |#1| (-786)) (|has| |#1| (-344))))) (-4061 (((-108) $ $) 29 (-3255 (|has| |#1| (-786)) (|has| |#1| (-344))))) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 31 (-3255 (|has| |#1| (-786)) (|has| |#1| (-344))))) (-4052 (((-108) $ $) 34)) (-4125 (($ $ $) 26)) (** (($ $ (-852)) 14) (($ $ (-710)) 18) (($ $ (-523)) 25)) (* (($ $ $) 15)))
-(((-834 |#1|) (-129) (-1016)) (T -834))
-((-3441 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-4 *1 (-834 *3)))) (-3824 (*1 *1 *2) (-12 (-5 *2 (-589 (-589 *3))) (-4 *3 (-1016)) (-4 *1 (-834 *3)))) (-1349 (*1 *2 *1 *2) (-12 (-4 *1 (-834 *2)) (-4 *2 (-1016)))) (-1502 (*1 *2 *1 *2) (-12 (-4 *1 (-834 *2)) (-4 *2 (-1016)))) (-1587 (*1 *2 *1 *3) (-12 (-4 *1 (-834 *3)) (-4 *3 (-1016)) (-5 *2 (-1018 *3)))) (-4052 (*1 *2 *1 *1) (-12 (-4 *1 (-834 *3)) (-4 *3 (-1016)) (-5 *2 (-108)))))
-(-13 (-448) (-10 -8 (-15 -3441 ($ (-589 |t#1|))) (-15 -3824 ($ (-589 (-589 |t#1|)))) (-15 -1349 (|t#1| $ |t#1|)) (-15 -1502 (|t#1| $ |t#1|)) (-15 -1587 ((-1018 |t#1|) $ |t#1|)) (-15 -4052 ((-108) $ $)) (IF (|has| |t#1| (-786)) (-6 (-786)) |%noBranch|) (IF (|has| |t#1| (-344)) (-6 (-786)) |%noBranch|)))
-(((-97) . T) ((-563 (-794)) . T) ((-448) . T) ((-666) . T) ((-786) -3255 (|has| |#1| (-786)) (|has| |#1| (-344))) ((-1028) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-1719 (((-589 (-589 (-710))) $) 109)) (-2176 (((-589 (-710)) (-836 |#1|) $) 131)) (-1978 (((-589 (-710)) (-836 |#1|) $) 132)) (-1508 (((-589 (-836 |#1|)) $) 99)) (-3461 (((-836 |#1|) $ (-523)) 104) (((-836 |#1|) $) 105)) (-3510 (($ (-589 (-836 |#1|))) 111)) (-1500 (((-710) $) 106)) (-1585 (((-1018 (-1018 |#1|)) $) 129)) (-1587 (((-1018 |#1|) $ |#1|) 122) (((-1018 (-1018 |#1|)) $ (-1018 |#1|)) 140) (((-1018 (-589 |#1|)) $ (-589 |#1|)) 143)) (-3875 (((-1018 |#1|) $) 102)) (-1348 (((-108) (-836 |#1|) $) 93)) (-3841 (((-1070) $) NIL)) (-1689 (((-1174) $) 96) (((-1174) $ (-523) (-523)) 144)) (-2435 (((-1034) $) NIL)) (-3649 (((-589 (-836 |#1|)) $) 97)) (-1502 (((-836 |#1|) $ (-710)) 100)) (-1487 (((-710) $) 107)) (-3976 (((-794) $) 120) (((-589 (-836 |#1|)) $) 23) (($ (-589 (-836 |#1|))) 110)) (-3912 (((-589 |#1|) $) 108)) (-4037 (((-108) $ $) 137)) (-4070 (((-108) $ $) 135)) (-4052 (((-108) $ $) 134)))
-(((-835 |#1|) (-13 (-1016) (-10 -8 (-15 -3976 ((-589 (-836 |#1|)) $)) (-15 -3649 ((-589 (-836 |#1|)) $)) (-15 -1502 ((-836 |#1|) $ (-710))) (-15 -3461 ((-836 |#1|) $ (-523))) (-15 -3461 ((-836 |#1|) $)) (-15 -1500 ((-710) $)) (-15 -1487 ((-710) $)) (-15 -3912 ((-589 |#1|) $)) (-15 -1508 ((-589 (-836 |#1|)) $)) (-15 -1719 ((-589 (-589 (-710))) $)) (-15 -3976 ($ (-589 (-836 |#1|)))) (-15 -3510 ($ (-589 (-836 |#1|)))) (-15 -1587 ((-1018 |#1|) $ |#1|)) (-15 -1585 ((-1018 (-1018 |#1|)) $)) (-15 -1587 ((-1018 (-1018 |#1|)) $ (-1018 |#1|))) (-15 -1587 ((-1018 (-589 |#1|)) $ (-589 |#1|))) (-15 -1348 ((-108) (-836 |#1|) $)) (-15 -2176 ((-589 (-710)) (-836 |#1|) $)) (-15 -1978 ((-589 (-710)) (-836 |#1|) $)) (-15 -3875 ((-1018 |#1|) $)) (-15 -4052 ((-108) $ $)) (-15 -4070 ((-108) $ $)) (-15 -1689 ((-1174) $)) (-15 -1689 ((-1174) $ (-523) (-523))))) (-1016)) (T -835))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-589 (-836 *3))) (-5 *1 (-835 *3)) (-4 *3 (-1016)))) (-3649 (*1 *2 *1) (-12 (-5 *2 (-589 (-836 *3))) (-5 *1 (-835 *3)) (-4 *3 (-1016)))) (-1502 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-5 *2 (-836 *4)) (-5 *1 (-835 *4)) (-4 *4 (-1016)))) (-3461 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *2 (-836 *4)) (-5 *1 (-835 *4)) (-4 *4 (-1016)))) (-3461 (*1 *2 *1) (-12 (-5 *2 (-836 *3)) (-5 *1 (-835 *3)) (-4 *3 (-1016)))) (-1500 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-835 *3)) (-4 *3 (-1016)))) (-1487 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-835 *3)) (-4 *3 (-1016)))) (-3912 (*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-835 *3)) (-4 *3 (-1016)))) (-1508 (*1 *2 *1) (-12 (-5 *2 (-589 (-836 *3))) (-5 *1 (-835 *3)) (-4 *3 (-1016)))) (-1719 (*1 *2 *1) (-12 (-5 *2 (-589 (-589 (-710)))) (-5 *1 (-835 *3)) (-4 *3 (-1016)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-589 (-836 *3))) (-4 *3 (-1016)) (-5 *1 (-835 *3)))) (-3510 (*1 *1 *2) (-12 (-5 *2 (-589 (-836 *3))) (-4 *3 (-1016)) (-5 *1 (-835 *3)))) (-1587 (*1 *2 *1 *3) (-12 (-5 *2 (-1018 *3)) (-5 *1 (-835 *3)) (-4 *3 (-1016)))) (-1585 (*1 *2 *1) (-12 (-5 *2 (-1018 (-1018 *3))) (-5 *1 (-835 *3)) (-4 *3 (-1016)))) (-1587 (*1 *2 *1 *3) (-12 (-4 *4 (-1016)) (-5 *2 (-1018 (-1018 *4))) (-5 *1 (-835 *4)) (-5 *3 (-1018 *4)))) (-1587 (*1 *2 *1 *3) (-12 (-4 *4 (-1016)) (-5 *2 (-1018 (-589 *4))) (-5 *1 (-835 *4)) (-5 *3 (-589 *4)))) (-1348 (*1 *2 *3 *1) (-12 (-5 *3 (-836 *4)) (-4 *4 (-1016)) (-5 *2 (-108)) (-5 *1 (-835 *4)))) (-2176 (*1 *2 *3 *1) (-12 (-5 *3 (-836 *4)) (-4 *4 (-1016)) (-5 *2 (-589 (-710))) (-5 *1 (-835 *4)))) (-1978 (*1 *2 *3 *1) (-12 (-5 *3 (-836 *4)) (-4 *4 (-1016)) (-5 *2 (-589 (-710))) (-5 *1 (-835 *4)))) (-3875 (*1 *2 *1) (-12 (-5 *2 (-1018 *3)) (-5 *1 (-835 *3)) (-4 *3 (-1016)))) (-4052 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-835 *3)) (-4 *3 (-1016)))) (-4070 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-835 *3)) (-4 *3 (-1016)))) (-1689 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-835 *3)) (-4 *3 (-1016)))) (-1689 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-523)) (-5 *2 (-1174)) (-5 *1 (-835 *4)) (-4 *4 (-1016)))))
-(-13 (-1016) (-10 -8 (-15 -3976 ((-589 (-836 |#1|)) $)) (-15 -3649 ((-589 (-836 |#1|)) $)) (-15 -1502 ((-836 |#1|) $ (-710))) (-15 -3461 ((-836 |#1|) $ (-523))) (-15 -3461 ((-836 |#1|) $)) (-15 -1500 ((-710) $)) (-15 -1487 ((-710) $)) (-15 -3912 ((-589 |#1|) $)) (-15 -1508 ((-589 (-836 |#1|)) $)) (-15 -1719 ((-589 (-589 (-710))) $)) (-15 -3976 ($ (-589 (-836 |#1|)))) (-15 -3510 ($ (-589 (-836 |#1|)))) (-15 -1587 ((-1018 |#1|) $ |#1|)) (-15 -1585 ((-1018 (-1018 |#1|)) $)) (-15 -1587 ((-1018 (-1018 |#1|)) $ (-1018 |#1|))) (-15 -1587 ((-1018 (-589 |#1|)) $ (-589 |#1|))) (-15 -1348 ((-108) (-836 |#1|) $)) (-15 -2176 ((-589 (-710)) (-836 |#1|) $)) (-15 -1978 ((-589 (-710)) (-836 |#1|) $)) (-15 -3875 ((-1018 |#1|) $)) (-15 -4052 ((-108) $ $)) (-15 -4070 ((-108) $ $)) (-15 -1689 ((-1174) $)) (-15 -1689 ((-1174) $ (-523) (-523)))))
-((-3260 (((-108) $ $) NIL)) (-3400 (((-589 $) (-589 $)) 77)) (-2035 (((-523) $) 60)) (-1640 (($) NIL T CONST)) (-4211 (((-3 $ "failed") $) NIL)) (-1500 (((-710) $) 58)) (-1587 (((-1018 |#1|) $ |#1|) 49)) (-3482 (((-108) $) NIL)) (-2126 (((-108) $) 63)) (-4228 (((-710) $) 61)) (-3875 (((-1018 |#1|) $) 42)) (-3268 (($ $ $) NIL (-3255 (|has| |#1| (-344)) (|has| |#1| (-786))))) (-2644 (($ $ $) NIL (-3255 (|has| |#1| (-344)) (|has| |#1| (-786))))) (-1589 (((-2 (|:| |preimage| (-589 |#1|)) (|:| |image| (-589 |#1|))) $) 37)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 93)) (-2435 (((-1034) $) NIL)) (-3990 (((-1018 |#1|) $) 99 (|has| |#1| (-344)))) (-3775 (((-108) $) 59)) (-1349 ((|#1| $ |#1|) 47)) (-1502 ((|#1| $ |#1|) 94)) (-1487 (((-710) $) 44)) (-3824 (($ (-589 (-589 |#1|))) 85)) (-2853 (((-900) $) 53)) (-3441 (($ (-589 |#1|)) 21)) (-1308 (($ $ $) NIL)) (-2306 (($ $ $) NIL)) (-2825 (($ (-589 (-589 |#1|))) 39)) (-3848 (($ (-589 (-589 |#1|))) 88)) (-2615 (($ (-589 |#1|)) 96)) (-3976 (((-794) $) 84) (($ (-589 (-589 |#1|))) 66) (($ (-589 |#1|)) 67)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1440 (($) 16 T CONST)) (-4078 (((-108) $ $) NIL (-3255 (|has| |#1| (-344)) (|has| |#1| (-786))))) (-4061 (((-108) $ $) NIL (-3255 (|has| |#1| (-344)) (|has| |#1| (-786))))) (-4037 (((-108) $ $) 45)) (-4070 (((-108) $ $) NIL (-3255 (|has| |#1| (-344)) (|has| |#1| (-786))))) (-4052 (((-108) $ $) 65)) (-4125 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ $ $) 22)))
-(((-836 |#1|) (-13 (-834 |#1|) (-10 -8 (-15 -1589 ((-2 (|:| |preimage| (-589 |#1|)) (|:| |image| (-589 |#1|))) $)) (-15 -2825 ($ (-589 (-589 |#1|)))) (-15 -3976 ($ (-589 (-589 |#1|)))) (-15 -3976 ($ (-589 |#1|))) (-15 -3848 ($ (-589 (-589 |#1|)))) (-15 -1487 ((-710) $)) (-15 -3875 ((-1018 |#1|) $)) (-15 -2853 ((-900) $)) (-15 -1500 ((-710) $)) (-15 -4228 ((-710) $)) (-15 -2035 ((-523) $)) (-15 -3775 ((-108) $)) (-15 -2126 ((-108) $)) (-15 -3400 ((-589 $) (-589 $))) (IF (|has| |#1| (-344)) (-15 -3990 ((-1018 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-508)) (-15 -2615 ($ (-589 |#1|))) (IF (|has| |#1| (-344)) (-15 -2615 ($ (-589 |#1|))) |%noBranch|)))) (-1016)) (T -836))
-((-1589 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-589 *3)) (|:| |image| (-589 *3)))) (-5 *1 (-836 *3)) (-4 *3 (-1016)))) (-2825 (*1 *1 *2) (-12 (-5 *2 (-589 (-589 *3))) (-4 *3 (-1016)) (-5 *1 (-836 *3)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-589 (-589 *3))) (-4 *3 (-1016)) (-5 *1 (-836 *3)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-836 *3)))) (-3848 (*1 *1 *2) (-12 (-5 *2 (-589 (-589 *3))) (-4 *3 (-1016)) (-5 *1 (-836 *3)))) (-1487 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-836 *3)) (-4 *3 (-1016)))) (-3875 (*1 *2 *1) (-12 (-5 *2 (-1018 *3)) (-5 *1 (-836 *3)) (-4 *3 (-1016)))) (-2853 (*1 *2 *1) (-12 (-5 *2 (-900)) (-5 *1 (-836 *3)) (-4 *3 (-1016)))) (-1500 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-836 *3)) (-4 *3 (-1016)))) (-4228 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-836 *3)) (-4 *3 (-1016)))) (-2035 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-836 *3)) (-4 *3 (-1016)))) (-3775 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-836 *3)) (-4 *3 (-1016)))) (-2126 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-836 *3)) (-4 *3 (-1016)))) (-3400 (*1 *2 *2) (-12 (-5 *2 (-589 (-836 *3))) (-5 *1 (-836 *3)) (-4 *3 (-1016)))) (-3990 (*1 *2 *1) (-12 (-5 *2 (-1018 *3)) (-5 *1 (-836 *3)) (-4 *3 (-344)) (-4 *3 (-1016)))) (-2615 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-836 *3)))))
-(-13 (-834 |#1|) (-10 -8 (-15 -1589 ((-2 (|:| |preimage| (-589 |#1|)) (|:| |image| (-589 |#1|))) $)) (-15 -2825 ($ (-589 (-589 |#1|)))) (-15 -3976 ($ (-589 (-589 |#1|)))) (-15 -3976 ($ (-589 |#1|))) (-15 -3848 ($ (-589 (-589 |#1|)))) (-15 -1487 ((-710) $)) (-15 -3875 ((-1018 |#1|) $)) (-15 -2853 ((-900) $)) (-15 -1500 ((-710) $)) (-15 -4228 ((-710) $)) (-15 -2035 ((-523) $)) (-15 -3775 ((-108) $)) (-15 -2126 ((-108) $)) (-15 -3400 ((-589 $) (-589 $))) (IF (|has| |#1| (-344)) (-15 -3990 ((-1018 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-508)) (-15 -2615 ($ (-589 |#1|))) (IF (|has| |#1| (-344)) (-15 -2615 ($ (-589 |#1|))) |%noBranch|))))
-((-2333 (((-3 (-589 (-1083 |#4|)) "failed") (-589 (-1083 |#4|)) (-1083 |#4|)) 128)) (-1397 ((|#1|) 77)) (-2118 (((-394 (-1083 |#4|)) (-1083 |#4|)) 137)) (-1745 (((-394 (-1083 |#4|)) (-589 |#3|) (-1083 |#4|)) 69)) (-4138 (((-394 (-1083 |#4|)) (-1083 |#4|)) 147)) (-1206 (((-3 (-589 (-1083 |#4|)) "failed") (-589 (-1083 |#4|)) (-1083 |#4|) |#3|) 92)))
-(((-837 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2333 ((-3 (-589 (-1083 |#4|)) "failed") (-589 (-1083 |#4|)) (-1083 |#4|))) (-15 -4138 ((-394 (-1083 |#4|)) (-1083 |#4|))) (-15 -2118 ((-394 (-1083 |#4|)) (-1083 |#4|))) (-15 -1397 (|#1|)) (-15 -1206 ((-3 (-589 (-1083 |#4|)) "failed") (-589 (-1083 |#4|)) (-1083 |#4|) |#3|)) (-15 -1745 ((-394 (-1083 |#4|)) (-589 |#3|) (-1083 |#4|)))) (-840) (-732) (-786) (-880 |#1| |#2| |#3|)) (T -837))
-((-1745 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *7)) (-4 *7 (-786)) (-4 *5 (-840)) (-4 *6 (-732)) (-4 *8 (-880 *5 *6 *7)) (-5 *2 (-394 (-1083 *8))) (-5 *1 (-837 *5 *6 *7 *8)) (-5 *4 (-1083 *8)))) (-1206 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *2 (-589 (-1083 *7))) (-5 *3 (-1083 *7)) (-4 *7 (-880 *5 *6 *4)) (-4 *5 (-840)) (-4 *6 (-732)) (-4 *4 (-786)) (-5 *1 (-837 *5 *6 *4 *7)))) (-1397 (*1 *2) (-12 (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-840)) (-5 *1 (-837 *2 *3 *4 *5)) (-4 *5 (-880 *2 *3 *4)))) (-2118 (*1 *2 *3) (-12 (-4 *4 (-840)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-880 *4 *5 *6)) (-5 *2 (-394 (-1083 *7))) (-5 *1 (-837 *4 *5 *6 *7)) (-5 *3 (-1083 *7)))) (-4138 (*1 *2 *3) (-12 (-4 *4 (-840)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-880 *4 *5 *6)) (-5 *2 (-394 (-1083 *7))) (-5 *1 (-837 *4 *5 *6 *7)) (-5 *3 (-1083 *7)))) (-2333 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-589 (-1083 *7))) (-5 *3 (-1083 *7)) (-4 *7 (-880 *4 *5 *6)) (-4 *4 (-840)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-837 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2333 ((-3 (-589 (-1083 |#4|)) "failed") (-589 (-1083 |#4|)) (-1083 |#4|))) (-15 -4138 ((-394 (-1083 |#4|)) (-1083 |#4|))) (-15 -2118 ((-394 (-1083 |#4|)) (-1083 |#4|))) (-15 -1397 (|#1|)) (-15 -1206 ((-3 (-589 (-1083 |#4|)) "failed") (-589 (-1083 |#4|)) (-1083 |#4|) |#3|)) (-15 -1745 ((-394 (-1083 |#4|)) (-589 |#3|) (-1083 |#4|))))
-((-2333 (((-3 (-589 (-1083 |#2|)) "failed") (-589 (-1083 |#2|)) (-1083 |#2|)) 36)) (-1397 ((|#1|) 54)) (-2118 (((-394 (-1083 |#2|)) (-1083 |#2|)) 102)) (-1745 (((-394 (-1083 |#2|)) (-1083 |#2|)) 90)) (-4138 (((-394 (-1083 |#2|)) (-1083 |#2|)) 113)))
-(((-838 |#1| |#2|) (-10 -7 (-15 -2333 ((-3 (-589 (-1083 |#2|)) "failed") (-589 (-1083 |#2|)) (-1083 |#2|))) (-15 -4138 ((-394 (-1083 |#2|)) (-1083 |#2|))) (-15 -2118 ((-394 (-1083 |#2|)) (-1083 |#2|))) (-15 -1397 (|#1|)) (-15 -1745 ((-394 (-1083 |#2|)) (-1083 |#2|)))) (-840) (-1145 |#1|)) (T -838))
-((-1745 (*1 *2 *3) (-12 (-4 *4 (-840)) (-4 *5 (-1145 *4)) (-5 *2 (-394 (-1083 *5))) (-5 *1 (-838 *4 *5)) (-5 *3 (-1083 *5)))) (-1397 (*1 *2) (-12 (-4 *2 (-840)) (-5 *1 (-838 *2 *3)) (-4 *3 (-1145 *2)))) (-2118 (*1 *2 *3) (-12 (-4 *4 (-840)) (-4 *5 (-1145 *4)) (-5 *2 (-394 (-1083 *5))) (-5 *1 (-838 *4 *5)) (-5 *3 (-1083 *5)))) (-4138 (*1 *2 *3) (-12 (-4 *4 (-840)) (-4 *5 (-1145 *4)) (-5 *2 (-394 (-1083 *5))) (-5 *1 (-838 *4 *5)) (-5 *3 (-1083 *5)))) (-2333 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-589 (-1083 *5))) (-5 *3 (-1083 *5)) (-4 *5 (-1145 *4)) (-4 *4 (-840)) (-5 *1 (-838 *4 *5)))))
-(-10 -7 (-15 -2333 ((-3 (-589 (-1083 |#2|)) "failed") (-589 (-1083 |#2|)) (-1083 |#2|))) (-15 -4138 ((-394 (-1083 |#2|)) (-1083 |#2|))) (-15 -2118 ((-394 (-1083 |#2|)) (-1083 |#2|))) (-15 -1397 (|#1|)) (-15 -1745 ((-394 (-1083 |#2|)) (-1083 |#2|))))
-((-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) 41)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 18)) (-2301 (((-3 $ "failed") $) 35)))
-(((-839 |#1|) (-10 -8 (-15 -2301 ((-3 |#1| "failed") |#1|)) (-15 -3908 ((-3 (-589 (-1083 |#1|)) "failed") (-589 (-1083 |#1|)) (-1083 |#1|))) (-15 -2701 ((-1083 |#1|) (-1083 |#1|) (-1083 |#1|)))) (-840)) (T -839))
-NIL
-(-10 -8 (-15 -2301 ((-3 |#1| "failed") |#1|)) (-15 -3908 ((-3 (-589 (-1083 |#1|)) "failed") (-589 (-1083 |#1|)) (-1083 |#1|))) (-15 -2701 ((-1083 |#1|) (-1083 |#1|) (-1083 |#1|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-2999 (((-3 $ "failed") $ $) 19)) (-2319 (((-394 (-1083 $)) (-1083 $)) 60)) (-3763 (($ $) 51)) (-2105 (((-394 $) $) 52)) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) 57)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-1330 (((-108) $) 53)) (-3482 (((-108) $) 31)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-1893 (((-394 (-1083 $)) (-1083 $)) 58)) (-4034 (((-394 (-1083 $)) (-1083 $)) 59)) (-3573 (((-394 $) $) 50)) (-2469 (((-3 $ "failed") $ $) 42)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) 56 (|has| $ (-134)))) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43)) (-2301 (((-3 $ "failed") $) 55 (|has| $ (-134)))) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 39)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-840) (-129)) (T -840))
-((-2701 (*1 *2 *2 *2) (-12 (-5 *2 (-1083 *1)) (-4 *1 (-840)))) (-2319 (*1 *2 *3) (-12 (-4 *1 (-840)) (-5 *2 (-394 (-1083 *1))) (-5 *3 (-1083 *1)))) (-4034 (*1 *2 *3) (-12 (-4 *1 (-840)) (-5 *2 (-394 (-1083 *1))) (-5 *3 (-1083 *1)))) (-1893 (*1 *2 *3) (-12 (-4 *1 (-840)) (-5 *2 (-394 (-1083 *1))) (-5 *3 (-1083 *1)))) (-3908 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-589 (-1083 *1))) (-5 *3 (-1083 *1)) (-4 *1 (-840)))) (-2326 (*1 *2 *3) (|partial| -12 (-5 *3 (-629 *1)) (-4 *1 (-134)) (-4 *1 (-840)) (-5 *2 (-1169 *1)))) (-2301 (*1 *1 *1) (|partial| -12 (-4 *1 (-134)) (-4 *1 (-840)))))
-(-13 (-1127) (-10 -8 (-15 -2319 ((-394 (-1083 $)) (-1083 $))) (-15 -4034 ((-394 (-1083 $)) (-1083 $))) (-15 -1893 ((-394 (-1083 $)) (-1083 $))) (-15 -2701 ((-1083 $) (-1083 $) (-1083 $))) (-15 -3908 ((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $))) (IF (|has| $ (-134)) (PROGN (-15 -2326 ((-3 (-1169 $) "failed") (-629 $))) (-15 -2301 ((-3 $ "failed") $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-563 (-794)) . T) ((-158) . T) ((-267) . T) ((-427) . T) ((-515) . T) ((-591 $) . T) ((-657 $) . T) ((-666) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1127) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-3867 (((-108) $) NIL)) (-4154 (((-710)) NIL)) (-4131 (($ $ (-852)) NIL (|has| $ (-344))) (($ $) NIL)) (-2794 (((-1097 (-852) (-710)) (-523)) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-3843 (((-710)) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 $ "failed") $) NIL)) (-1996 (($ $) NIL)) (-3322 (($ (-1169 $)) NIL)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) NIL)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-2097 (($) NIL)) (-1200 (((-108) $) NIL)) (-1419 (($ $) NIL) (($ $ (-710)) NIL)) (-1330 (((-108) $) NIL)) (-1500 (((-772 (-852)) $) NIL) (((-852) $) NIL)) (-3482 (((-108) $) NIL)) (-2842 (($) NIL (|has| $ (-344)))) (-4077 (((-108) $) NIL (|has| $ (-344)))) (-2765 (($ $ (-852)) NIL (|has| $ (-344))) (($ $) NIL)) (-1289 (((-3 $ "failed") $) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2277 (((-1083 $) $ (-852)) NIL (|has| $ (-344))) (((-1083 $) $) NIL)) (-4076 (((-852) $) NIL)) (-1573 (((-1083 $) $) NIL (|has| $ (-344)))) (-3102 (((-3 (-1083 $) "failed") $ $) NIL (|has| $ (-344))) (((-1083 $) $) NIL (|has| $ (-344)))) (-2163 (($ $ (-1083 $)) NIL (|has| $ (-344)))) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL T CONST)) (-2557 (($ (-852)) NIL)) (-4203 (((-108) $) NIL)) (-2435 (((-1034) $) NIL)) (-4102 (($) NIL (|has| $ (-344)))) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) NIL)) (-3573 (((-394 $) $) NIL)) (-3718 (((-852)) NIL) (((-772 (-852))) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2041 (((-3 (-710) "failed") $ $) NIL) (((-710) $) NIL)) (-4012 (((-126)) NIL)) (-4024 (($ $ (-710)) NIL) (($ $) NIL)) (-1487 (((-852) $) NIL) (((-772 (-852)) $) NIL)) (-3399 (((-1083 $)) NIL)) (-2315 (($) NIL)) (-2233 (($) NIL (|has| $ (-344)))) (-2411 (((-629 $) (-1169 $)) NIL) (((-1169 $) $) NIL)) (-3077 (((-523) $) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL)) (-2301 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-1698 (((-710)) NIL)) (-2922 (((-1169 $) (-852)) NIL) (((-1169 $)) NIL)) (-3842 (((-108) $ $) NIL)) (-4079 (((-108) $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1732 (($ $ (-710)) NIL (|has| $ (-344))) (($ $) NIL (|has| $ (-344)))) (-1943 (($ $ (-710)) NIL) (($ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL)))
-(((-841 |#1|) (-13 (-325) (-305 $) (-564 (-523))) (-852)) (T -841))
-NIL
-(-13 (-325) (-305 $) (-564 (-523)))
-((-2547 (((-3 (-2 (|:| -1500 (-710)) (|:| -1843 |#5|)) "failed") (-312 |#2| |#3| |#4| |#5|)) 79)) (-3261 (((-108) (-312 |#2| |#3| |#4| |#5|)) 17)) (-1500 (((-3 (-710) "failed") (-312 |#2| |#3| |#4| |#5|)) 15)))
-(((-842 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1500 ((-3 (-710) "failed") (-312 |#2| |#3| |#4| |#5|))) (-15 -3261 ((-108) (-312 |#2| |#3| |#4| |#5|))) (-15 -2547 ((-3 (-2 (|:| -1500 (-710)) (|:| -1843 |#5|)) "failed") (-312 |#2| |#3| |#4| |#5|)))) (-13 (-786) (-515) (-964 (-523))) (-406 |#1|) (-1145 |#2|) (-1145 (-383 |#3|)) (-318 |#2| |#3| |#4|)) (T -842))
-((-2547 (*1 *2 *3) (|partial| -12 (-5 *3 (-312 *5 *6 *7 *8)) (-4 *5 (-406 *4)) (-4 *6 (-1145 *5)) (-4 *7 (-1145 (-383 *6))) (-4 *8 (-318 *5 *6 *7)) (-4 *4 (-13 (-786) (-515) (-964 (-523)))) (-5 *2 (-2 (|:| -1500 (-710)) (|:| -1843 *8))) (-5 *1 (-842 *4 *5 *6 *7 *8)))) (-3261 (*1 *2 *3) (-12 (-5 *3 (-312 *5 *6 *7 *8)) (-4 *5 (-406 *4)) (-4 *6 (-1145 *5)) (-4 *7 (-1145 (-383 *6))) (-4 *8 (-318 *5 *6 *7)) (-4 *4 (-13 (-786) (-515) (-964 (-523)))) (-5 *2 (-108)) (-5 *1 (-842 *4 *5 *6 *7 *8)))) (-1500 (*1 *2 *3) (|partial| -12 (-5 *3 (-312 *5 *6 *7 *8)) (-4 *5 (-406 *4)) (-4 *6 (-1145 *5)) (-4 *7 (-1145 (-383 *6))) (-4 *8 (-318 *5 *6 *7)) (-4 *4 (-13 (-786) (-515) (-964 (-523)))) (-5 *2 (-710)) (-5 *1 (-842 *4 *5 *6 *7 *8)))))
-(-10 -7 (-15 -1500 ((-3 (-710) "failed") (-312 |#2| |#3| |#4| |#5|))) (-15 -3261 ((-108) (-312 |#2| |#3| |#4| |#5|))) (-15 -2547 ((-3 (-2 (|:| -1500 (-710)) (|:| -1843 |#5|)) "failed") (-312 |#2| |#3| |#4| |#5|))))
-((-2547 (((-3 (-2 (|:| -1500 (-710)) (|:| -1843 |#3|)) "failed") (-312 (-383 (-523)) |#1| |#2| |#3|)) 56)) (-3261 (((-108) (-312 (-383 (-523)) |#1| |#2| |#3|)) 16)) (-1500 (((-3 (-710) "failed") (-312 (-383 (-523)) |#1| |#2| |#3|)) 14)))
-(((-843 |#1| |#2| |#3|) (-10 -7 (-15 -1500 ((-3 (-710) "failed") (-312 (-383 (-523)) |#1| |#2| |#3|))) (-15 -3261 ((-108) (-312 (-383 (-523)) |#1| |#2| |#3|))) (-15 -2547 ((-3 (-2 (|:| -1500 (-710)) (|:| -1843 |#3|)) "failed") (-312 (-383 (-523)) |#1| |#2| |#3|)))) (-1145 (-383 (-523))) (-1145 (-383 |#1|)) (-318 (-383 (-523)) |#1| |#2|)) (T -843))
-((-2547 (*1 *2 *3) (|partial| -12 (-5 *3 (-312 (-383 (-523)) *4 *5 *6)) (-4 *4 (-1145 (-383 (-523)))) (-4 *5 (-1145 (-383 *4))) (-4 *6 (-318 (-383 (-523)) *4 *5)) (-5 *2 (-2 (|:| -1500 (-710)) (|:| -1843 *6))) (-5 *1 (-843 *4 *5 *6)))) (-3261 (*1 *2 *3) (-12 (-5 *3 (-312 (-383 (-523)) *4 *5 *6)) (-4 *4 (-1145 (-383 (-523)))) (-4 *5 (-1145 (-383 *4))) (-4 *6 (-318 (-383 (-523)) *4 *5)) (-5 *2 (-108)) (-5 *1 (-843 *4 *5 *6)))) (-1500 (*1 *2 *3) (|partial| -12 (-5 *3 (-312 (-383 (-523)) *4 *5 *6)) (-4 *4 (-1145 (-383 (-523)))) (-4 *5 (-1145 (-383 *4))) (-4 *6 (-318 (-383 (-523)) *4 *5)) (-5 *2 (-710)) (-5 *1 (-843 *4 *5 *6)))))
-(-10 -7 (-15 -1500 ((-3 (-710) "failed") (-312 (-383 (-523)) |#1| |#2| |#3|))) (-15 -3261 ((-108) (-312 (-383 (-523)) |#1| |#2| |#3|))) (-15 -2547 ((-3 (-2 (|:| -1500 (-710)) (|:| -1843 |#3|)) "failed") (-312 (-383 (-523)) |#1| |#2| |#3|))))
-((-3079 ((|#2| |#2|) 26)) (-2083 (((-523) (-589 (-2 (|:| |den| (-523)) (|:| |gcdnum| (-523))))) 15)) (-3926 (((-852) (-523)) 35)) (-4106 (((-523) |#2|) 42)) (-3509 (((-523) |#2|) 21) (((-2 (|:| |den| (-523)) (|:| |gcdnum| (-523))) |#1|) 20)))
-(((-844 |#1| |#2|) (-10 -7 (-15 -3926 ((-852) (-523))) (-15 -3509 ((-2 (|:| |den| (-523)) (|:| |gcdnum| (-523))) |#1|)) (-15 -3509 ((-523) |#2|)) (-15 -2083 ((-523) (-589 (-2 (|:| |den| (-523)) (|:| |gcdnum| (-523)))))) (-15 -4106 ((-523) |#2|)) (-15 -3079 (|#2| |#2|))) (-1145 (-383 (-523))) (-1145 (-383 |#1|))) (T -844))
-((-3079 (*1 *2 *2) (-12 (-4 *3 (-1145 (-383 (-523)))) (-5 *1 (-844 *3 *2)) (-4 *2 (-1145 (-383 *3))))) (-4106 (*1 *2 *3) (-12 (-4 *4 (-1145 (-383 *2))) (-5 *2 (-523)) (-5 *1 (-844 *4 *3)) (-4 *3 (-1145 (-383 *4))))) (-2083 (*1 *2 *3) (-12 (-5 *3 (-589 (-2 (|:| |den| (-523)) (|:| |gcdnum| (-523))))) (-4 *4 (-1145 (-383 *2))) (-5 *2 (-523)) (-5 *1 (-844 *4 *5)) (-4 *5 (-1145 (-383 *4))))) (-3509 (*1 *2 *3) (-12 (-4 *4 (-1145 (-383 *2))) (-5 *2 (-523)) (-5 *1 (-844 *4 *3)) (-4 *3 (-1145 (-383 *4))))) (-3509 (*1 *2 *3) (-12 (-4 *3 (-1145 (-383 (-523)))) (-5 *2 (-2 (|:| |den| (-523)) (|:| |gcdnum| (-523)))) (-5 *1 (-844 *3 *4)) (-4 *4 (-1145 (-383 *3))))) (-3926 (*1 *2 *3) (-12 (-5 *3 (-523)) (-4 *4 (-1145 (-383 *3))) (-5 *2 (-852)) (-5 *1 (-844 *4 *5)) (-4 *5 (-1145 (-383 *4))))))
-(-10 -7 (-15 -3926 ((-852) (-523))) (-15 -3509 ((-2 (|:| |den| (-523)) (|:| |gcdnum| (-523))) |#1|)) (-15 -3509 ((-523) |#2|)) (-15 -2083 ((-523) (-589 (-2 (|:| |den| (-523)) (|:| |gcdnum| (-523)))))) (-15 -4106 ((-523) |#2|)) (-15 -3079 (|#2| |#2|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3964 ((|#1| $) 81)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-1640 (($) NIL T CONST)) (-2501 (($ $ $) NIL)) (-4211 (((-3 $ "failed") $) 75)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-1670 (($ |#1| (-394 |#1|)) 73)) (-2549 (((-1083 |#1|) |#1| |#1|) 41)) (-2111 (($ $) 49)) (-3482 (((-108) $) NIL)) (-2593 (((-523) $) 78)) (-3020 (($ $ (-523)) 80)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3906 ((|#1| $) 77)) (-1413 (((-394 |#1|) $) 76)) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) 74)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2940 (($ $) 39)) (-3976 (((-794) $) 99) (($ (-523)) 54) (($ $) NIL) (($ (-383 (-523))) NIL) (($ |#1|) 31) (((-383 |#1|) $) 59) (($ (-383 (-394 |#1|))) 67)) (-1698 (((-710)) 52)) (-3842 (((-108) $ $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) 23 T CONST)) (-1440 (($) 12 T CONST)) (-4037 (((-108) $ $) 68)) (-4125 (($ $ $) NIL)) (-4115 (($ $) 88) (($ $ $) NIL)) (-4103 (($ $ $) 38)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 90) (($ $ $) 37) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ |#1| $) 89) (($ $ |#1|) NIL)))
-(((-845 |#1|) (-13 (-339) (-37 |#1|) (-10 -8 (-15 -3976 ((-383 |#1|) $)) (-15 -3976 ($ (-383 (-394 |#1|)))) (-15 -2940 ($ $)) (-15 -1413 ((-394 |#1|) $)) (-15 -3906 (|#1| $)) (-15 -3020 ($ $ (-523))) (-15 -2593 ((-523) $)) (-15 -2549 ((-1083 |#1|) |#1| |#1|)) (-15 -2111 ($ $)) (-15 -1670 ($ |#1| (-394 |#1|))) (-15 -3964 (|#1| $)))) (-284)) (T -845))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-383 *3)) (-5 *1 (-845 *3)) (-4 *3 (-284)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-383 (-394 *3))) (-4 *3 (-284)) (-5 *1 (-845 *3)))) (-2940 (*1 *1 *1) (-12 (-5 *1 (-845 *2)) (-4 *2 (-284)))) (-1413 (*1 *2 *1) (-12 (-5 *2 (-394 *3)) (-5 *1 (-845 *3)) (-4 *3 (-284)))) (-3906 (*1 *2 *1) (-12 (-5 *1 (-845 *2)) (-4 *2 (-284)))) (-3020 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-845 *3)) (-4 *3 (-284)))) (-2593 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-845 *3)) (-4 *3 (-284)))) (-2549 (*1 *2 *3 *3) (-12 (-5 *2 (-1083 *3)) (-5 *1 (-845 *3)) (-4 *3 (-284)))) (-2111 (*1 *1 *1) (-12 (-5 *1 (-845 *2)) (-4 *2 (-284)))) (-1670 (*1 *1 *2 *3) (-12 (-5 *3 (-394 *2)) (-4 *2 (-284)) (-5 *1 (-845 *2)))) (-3964 (*1 *2 *1) (-12 (-5 *1 (-845 *2)) (-4 *2 (-284)))))
-(-13 (-339) (-37 |#1|) (-10 -8 (-15 -3976 ((-383 |#1|) $)) (-15 -3976 ($ (-383 (-394 |#1|)))) (-15 -2940 ($ $)) (-15 -1413 ((-394 |#1|) $)) (-15 -3906 (|#1| $)) (-15 -3020 ($ $ (-523))) (-15 -2593 ((-523) $)) (-15 -2549 ((-1083 |#1|) |#1| |#1|)) (-15 -2111 ($ $)) (-15 -1670 ($ |#1| (-394 |#1|))) (-15 -3964 (|#1| $))))
-((-1670 (((-51) (-883 |#1|) (-394 (-883 |#1|)) (-1087)) 17) (((-51) (-383 (-883 |#1|)) (-1087)) 18)))
-(((-846 |#1|) (-10 -7 (-15 -1670 ((-51) (-383 (-883 |#1|)) (-1087))) (-15 -1670 ((-51) (-883 |#1|) (-394 (-883 |#1|)) (-1087)))) (-13 (-284) (-136))) (T -846))
-((-1670 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-394 (-883 *6))) (-5 *5 (-1087)) (-5 *3 (-883 *6)) (-4 *6 (-13 (-284) (-136))) (-5 *2 (-51)) (-5 *1 (-846 *6)))) (-1670 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-1087)) (-4 *5 (-13 (-284) (-136))) (-5 *2 (-51)) (-5 *1 (-846 *5)))))
-(-10 -7 (-15 -1670 ((-51) (-383 (-883 |#1|)) (-1087))) (-15 -1670 ((-51) (-883 |#1|) (-394 (-883 |#1|)) (-1087))))
-((-3425 ((|#4| (-589 |#4|)) 121) (((-1083 |#4|) (-1083 |#4|) (-1083 |#4|)) 67) ((|#4| |#4| |#4|) 120)) (-2056 (((-1083 |#4|) (-589 (-1083 |#4|))) 114) (((-1083 |#4|) (-1083 |#4|) (-1083 |#4|)) 50) ((|#4| (-589 |#4|)) 55) ((|#4| |#4| |#4|) 84)))
-(((-847 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2056 (|#4| |#4| |#4|)) (-15 -2056 (|#4| (-589 |#4|))) (-15 -2056 ((-1083 |#4|) (-1083 |#4|) (-1083 |#4|))) (-15 -2056 ((-1083 |#4|) (-589 (-1083 |#4|)))) (-15 -3425 (|#4| |#4| |#4|)) (-15 -3425 ((-1083 |#4|) (-1083 |#4|) (-1083 |#4|))) (-15 -3425 (|#4| (-589 |#4|)))) (-732) (-786) (-284) (-880 |#3| |#1| |#2|)) (T -847))
-((-3425 (*1 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-880 *6 *4 *5)) (-5 *1 (-847 *4 *5 *6 *2)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-284)))) (-3425 (*1 *2 *2 *2) (-12 (-5 *2 (-1083 *6)) (-4 *6 (-880 *5 *3 *4)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *5 (-284)) (-5 *1 (-847 *3 *4 *5 *6)))) (-3425 (*1 *2 *2 *2) (-12 (-4 *3 (-732)) (-4 *4 (-786)) (-4 *5 (-284)) (-5 *1 (-847 *3 *4 *5 *2)) (-4 *2 (-880 *5 *3 *4)))) (-2056 (*1 *2 *3) (-12 (-5 *3 (-589 (-1083 *7))) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-284)) (-5 *2 (-1083 *7)) (-5 *1 (-847 *4 *5 *6 *7)) (-4 *7 (-880 *6 *4 *5)))) (-2056 (*1 *2 *2 *2) (-12 (-5 *2 (-1083 *6)) (-4 *6 (-880 *5 *3 *4)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *5 (-284)) (-5 *1 (-847 *3 *4 *5 *6)))) (-2056 (*1 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-880 *6 *4 *5)) (-5 *1 (-847 *4 *5 *6 *2)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-284)))) (-2056 (*1 *2 *2 *2) (-12 (-4 *3 (-732)) (-4 *4 (-786)) (-4 *5 (-284)) (-5 *1 (-847 *3 *4 *5 *2)) (-4 *2 (-880 *5 *3 *4)))))
-(-10 -7 (-15 -2056 (|#4| |#4| |#4|)) (-15 -2056 (|#4| (-589 |#4|))) (-15 -2056 ((-1083 |#4|) (-1083 |#4|) (-1083 |#4|))) (-15 -2056 ((-1083 |#4|) (-589 (-1083 |#4|)))) (-15 -3425 (|#4| |#4| |#4|)) (-15 -3425 ((-1083 |#4|) (-1083 |#4|) (-1083 |#4|))) (-15 -3425 (|#4| (-589 |#4|))))
-((-3090 (((-835 (-523)) (-900)) 23) (((-835 (-523)) (-589 (-523))) 20)) (-3270 (((-835 (-523)) (-589 (-523))) 48) (((-835 (-523)) (-852)) 49)) (-2548 (((-835 (-523))) 24)) (-2930 (((-835 (-523))) 38) (((-835 (-523)) (-589 (-523))) 37)) (-3693 (((-835 (-523))) 36) (((-835 (-523)) (-589 (-523))) 35)) (-1235 (((-835 (-523))) 34) (((-835 (-523)) (-589 (-523))) 33)) (-1321 (((-835 (-523))) 32) (((-835 (-523)) (-589 (-523))) 31)) (-3494 (((-835 (-523))) 30) (((-835 (-523)) (-589 (-523))) 29)) (-2235 (((-835 (-523))) 40) (((-835 (-523)) (-589 (-523))) 39)) (-3250 (((-835 (-523)) (-589 (-523))) 52) (((-835 (-523)) (-852)) 53)) (-3870 (((-835 (-523)) (-589 (-523))) 50) (((-835 (-523)) (-852)) 51)) (-3222 (((-835 (-523)) (-589 (-523))) 46) (((-835 (-523)) (-852)) 47)) (-1270 (((-835 (-523)) (-589 (-852))) 43)))
-(((-848) (-10 -7 (-15 -3270 ((-835 (-523)) (-852))) (-15 -3270 ((-835 (-523)) (-589 (-523)))) (-15 -3222 ((-835 (-523)) (-852))) (-15 -3222 ((-835 (-523)) (-589 (-523)))) (-15 -1270 ((-835 (-523)) (-589 (-852)))) (-15 -3870 ((-835 (-523)) (-852))) (-15 -3870 ((-835 (-523)) (-589 (-523)))) (-15 -3250 ((-835 (-523)) (-852))) (-15 -3250 ((-835 (-523)) (-589 (-523)))) (-15 -3494 ((-835 (-523)) (-589 (-523)))) (-15 -3494 ((-835 (-523)))) (-15 -1321 ((-835 (-523)) (-589 (-523)))) (-15 -1321 ((-835 (-523)))) (-15 -1235 ((-835 (-523)) (-589 (-523)))) (-15 -1235 ((-835 (-523)))) (-15 -3693 ((-835 (-523)) (-589 (-523)))) (-15 -3693 ((-835 (-523)))) (-15 -2930 ((-835 (-523)) (-589 (-523)))) (-15 -2930 ((-835 (-523)))) (-15 -2235 ((-835 (-523)) (-589 (-523)))) (-15 -2235 ((-835 (-523)))) (-15 -2548 ((-835 (-523)))) (-15 -3090 ((-835 (-523)) (-589 (-523)))) (-15 -3090 ((-835 (-523)) (-900))))) (T -848))
-((-3090 (*1 *2 *3) (-12 (-5 *3 (-900)) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-3090 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-2548 (*1 *2) (-12 (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-2235 (*1 *2) (-12 (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-2235 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-2930 (*1 *2) (-12 (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-2930 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-3693 (*1 *2) (-12 (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-3693 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-1235 (*1 *2) (-12 (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-1235 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-1321 (*1 *2) (-12 (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-1321 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-3494 (*1 *2) (-12 (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-3494 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-3250 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-3250 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-3870 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-3870 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-1270 (*1 *2 *3) (-12 (-5 *3 (-589 (-852))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-3222 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-3222 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-3270 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))) (-3270 (*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-835 (-523))) (-5 *1 (-848)))))
-(-10 -7 (-15 -3270 ((-835 (-523)) (-852))) (-15 -3270 ((-835 (-523)) (-589 (-523)))) (-15 -3222 ((-835 (-523)) (-852))) (-15 -3222 ((-835 (-523)) (-589 (-523)))) (-15 -1270 ((-835 (-523)) (-589 (-852)))) (-15 -3870 ((-835 (-523)) (-852))) (-15 -3870 ((-835 (-523)) (-589 (-523)))) (-15 -3250 ((-835 (-523)) (-852))) (-15 -3250 ((-835 (-523)) (-589 (-523)))) (-15 -3494 ((-835 (-523)) (-589 (-523)))) (-15 -3494 ((-835 (-523)))) (-15 -1321 ((-835 (-523)) (-589 (-523)))) (-15 -1321 ((-835 (-523)))) (-15 -1235 ((-835 (-523)) (-589 (-523)))) (-15 -1235 ((-835 (-523)))) (-15 -3693 ((-835 (-523)) (-589 (-523)))) (-15 -3693 ((-835 (-523)))) (-15 -2930 ((-835 (-523)) (-589 (-523)))) (-15 -2930 ((-835 (-523)))) (-15 -2235 ((-835 (-523)) (-589 (-523)))) (-15 -2235 ((-835 (-523)))) (-15 -2548 ((-835 (-523)))) (-15 -3090 ((-835 (-523)) (-589 (-523)))) (-15 -3090 ((-835 (-523)) (-900))))
-((-3941 (((-589 (-883 |#1|)) (-589 (-883 |#1|)) (-589 (-1087))) 12)) (-1682 (((-589 (-883 |#1|)) (-589 (-883 |#1|)) (-589 (-1087))) 11)))
-(((-849 |#1|) (-10 -7 (-15 -1682 ((-589 (-883 |#1|)) (-589 (-883 |#1|)) (-589 (-1087)))) (-15 -3941 ((-589 (-883 |#1|)) (-589 (-883 |#1|)) (-589 (-1087))))) (-427)) (T -849))
-((-3941 (*1 *2 *2 *3) (-12 (-5 *2 (-589 (-883 *4))) (-5 *3 (-589 (-1087))) (-4 *4 (-427)) (-5 *1 (-849 *4)))) (-1682 (*1 *2 *2 *3) (-12 (-5 *2 (-589 (-883 *4))) (-5 *3 (-589 (-1087))) (-4 *4 (-427)) (-5 *1 (-849 *4)))))
-(-10 -7 (-15 -1682 ((-589 (-883 |#1|)) (-589 (-883 |#1|)) (-589 (-1087)))) (-15 -3941 ((-589 (-883 |#1|)) (-589 (-883 |#1|)) (-589 (-1087)))))
-((-3976 (((-292 |#1|) (-452)) 16)))
-(((-850 |#1|) (-10 -7 (-15 -3976 ((-292 |#1|) (-452)))) (-13 (-786) (-515))) (T -850))
-((-3976 (*1 *2 *3) (-12 (-5 *3 (-452)) (-5 *2 (-292 *4)) (-5 *1 (-850 *4)) (-4 *4 (-13 (-786) (-515))))))
-(-10 -7 (-15 -3976 ((-292 |#1|) (-452))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 51)) (-3482 (((-108) $) 31)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-2469 (((-3 $ "failed") $ $) 42)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 50)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43)) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 39)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-851) (-129)) (T -851))
-((-1992 (*1 *2 *3) (-12 (-4 *1 (-851)) (-5 *2 (-2 (|:| -2275 (-589 *1)) (|:| -4102 *1))) (-5 *3 (-589 *1)))) (-2057 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-589 *1)) (-4 *1 (-851)))))
-(-13 (-427) (-10 -8 (-15 -1992 ((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $))) (-15 -2057 ((-3 (-589 $) "failed") (-589 $) $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-563 (-794)) . T) ((-158) . T) ((-267) . T) ((-427) . T) ((-515) . T) ((-591 $) . T) ((-657 $) . T) ((-666) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-1640 (($) NIL T CONST)) (-4211 (((-3 $ "failed") $) NIL)) (-3482 (((-108) $) NIL)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2056 (($ $ $) NIL)) (-3976 (((-794) $) NIL)) (-2573 (($ $ (-710)) NIL) (($ $ (-852)) NIL)) (-1440 (($) NIL T CONST)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-710)) NIL) (($ $ (-852)) NIL)) (* (($ (-852) $) NIL) (($ $ $) NIL)))
-(((-852) (-13 (-25) (-786) (-666) (-10 -8 (-15 -2056 ($ $ $)) (-6 (-4250 "*"))))) (T -852))
-((-2056 (*1 *1 *1 *1) (-5 *1 (-852))))
-(-13 (-25) (-786) (-666) (-10 -8 (-15 -2056 ($ $ $)) (-6 (-4250 "*"))))
-((-3960 ((|#2| (-589 |#1|) (-589 |#1|)) 24)))
-(((-853 |#1| |#2|) (-10 -7 (-15 -3960 (|#2| (-589 |#1|) (-589 |#1|)))) (-339) (-1145 |#1|)) (T -853))
-((-3960 (*1 *2 *3 *3) (-12 (-5 *3 (-589 *4)) (-4 *4 (-339)) (-4 *2 (-1145 *4)) (-5 *1 (-853 *4 *2)))))
-(-10 -7 (-15 -3960 (|#2| (-589 |#1|) (-589 |#1|))))
-((-2504 (((-1083 |#2|) (-589 |#2|) (-589 |#2|)) 17) (((-1142 |#1| |#2|) (-1142 |#1| |#2|) (-589 |#2|) (-589 |#2|)) 13)))
-(((-854 |#1| |#2|) (-10 -7 (-15 -2504 ((-1142 |#1| |#2|) (-1142 |#1| |#2|) (-589 |#2|) (-589 |#2|))) (-15 -2504 ((-1083 |#2|) (-589 |#2|) (-589 |#2|)))) (-1087) (-339)) (T -854))
-((-2504 (*1 *2 *3 *3) (-12 (-5 *3 (-589 *5)) (-4 *5 (-339)) (-5 *2 (-1083 *5)) (-5 *1 (-854 *4 *5)) (-14 *4 (-1087)))) (-2504 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1142 *4 *5)) (-5 *3 (-589 *5)) (-14 *4 (-1087)) (-4 *5 (-339)) (-5 *1 (-854 *4 *5)))))
-(-10 -7 (-15 -2504 ((-1142 |#1| |#2|) (-1142 |#1| |#2|) (-589 |#2|) (-589 |#2|))) (-15 -2504 ((-1083 |#2|) (-589 |#2|) (-589 |#2|))))
-((-4104 (((-523) (-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-1070)) 139)) (-1851 ((|#4| |#4|) 155)) (-1456 (((-589 (-383 (-883 |#1|))) (-589 (-1087))) 119)) (-3711 (((-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))) (-629 |#4|) (-589 (-383 (-883 |#1|))) (-589 (-589 |#4|)) (-710) (-710) (-523)) 75)) (-3937 (((-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|)))))) (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|)))))) (-589 |#4|)) 59)) (-2840 (((-629 |#4|) (-629 |#4|) (-589 |#4|)) 55)) (-1488 (((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-1070)) 151)) (-1679 (((-523) (-629 |#4|) (-852) (-1070)) 133) (((-523) (-629 |#4|) (-589 (-1087)) (-852) (-1070)) 132) (((-523) (-629 |#4|) (-589 |#4|) (-852) (-1070)) 131) (((-523) (-629 |#4|) (-1070)) 128) (((-523) (-629 |#4|) (-589 (-1087)) (-1070)) 127) (((-523) (-629 |#4|) (-589 |#4|) (-1070)) 126) (((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|) (-852)) 125) (((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|) (-589 (-1087)) (-852)) 124) (((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|) (-589 |#4|) (-852)) 123) (((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|)) 121) (((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|) (-589 (-1087))) 120) (((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|) (-589 |#4|)) 116)) (-3490 ((|#4| (-883 |#1|)) 68)) (-3815 (((-108) (-589 |#4|) (-589 (-589 |#4|))) 152)) (-1618 (((-589 (-589 (-523))) (-523) (-523)) 130)) (-1656 (((-589 (-589 |#4|)) (-589 (-589 |#4|))) 88)) (-2310 (((-710) (-589 (-2 (|:| -2262 (-710)) (|:| |eqns| (-589 (-2 (|:| |det| |#4|) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))) (|:| |fgb| (-589 |#4|))))) 86)) (-2672 (((-710) (-589 (-2 (|:| -2262 (-710)) (|:| |eqns| (-589 (-2 (|:| |det| |#4|) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))) (|:| |fgb| (-589 |#4|))))) 85)) (-3367 (((-108) (-589 (-883 |#1|))) 17) (((-108) (-589 |#4|)) 13)) (-1866 (((-2 (|:| |sysok| (-108)) (|:| |z0| (-589 |#4|)) (|:| |n0| (-589 |#4|))) (-589 |#4|) (-589 |#4|)) 71)) (-1347 (((-589 |#4|) |#4|) 49)) (-1904 (((-589 (-383 (-883 |#1|))) (-589 |#4|)) 115) (((-629 (-383 (-883 |#1|))) (-629 |#4|)) 56) (((-383 (-883 |#1|)) |#4|) 112)) (-2850 (((-2 (|:| |rgl| (-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|)))))))))) (|:| |rgsz| (-523))) (-629 |#4|) (-589 (-383 (-883 |#1|))) (-710) (-1070) (-523)) 93)) (-3969 (((-589 (-2 (|:| -2262 (-710)) (|:| |eqns| (-589 (-2 (|:| |det| |#4|) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))) (|:| |fgb| (-589 |#4|)))) (-629 |#4|) (-710)) 84)) (-3613 (((-589 (-2 (|:| |det| |#4|) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523))))) (-629 |#4|) (-710)) 101)) (-4027 (((-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|)))))) (-2 (|:| -2373 (-629 (-383 (-883 |#1|)))) (|:| |vec| (-589 (-383 (-883 |#1|)))) (|:| -2262 (-710)) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523))))) 48)))
-(((-855 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1679 ((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|) (-589 |#4|))) (-15 -1679 ((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|) (-589 (-1087)))) (-15 -1679 ((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|))) (-15 -1679 ((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|) (-589 |#4|) (-852))) (-15 -1679 ((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|) (-589 (-1087)) (-852))) (-15 -1679 ((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|) (-852))) (-15 -1679 ((-523) (-629 |#4|) (-589 |#4|) (-1070))) (-15 -1679 ((-523) (-629 |#4|) (-589 (-1087)) (-1070))) (-15 -1679 ((-523) (-629 |#4|) (-1070))) (-15 -1679 ((-523) (-629 |#4|) (-589 |#4|) (-852) (-1070))) (-15 -1679 ((-523) (-629 |#4|) (-589 (-1087)) (-852) (-1070))) (-15 -1679 ((-523) (-629 |#4|) (-852) (-1070))) (-15 -4104 ((-523) (-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-1070))) (-15 -1488 ((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-1070))) (-15 -2850 ((-2 (|:| |rgl| (-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|)))))))))) (|:| |rgsz| (-523))) (-629 |#4|) (-589 (-383 (-883 |#1|))) (-710) (-1070) (-523))) (-15 -1904 ((-383 (-883 |#1|)) |#4|)) (-15 -1904 ((-629 (-383 (-883 |#1|))) (-629 |#4|))) (-15 -1904 ((-589 (-383 (-883 |#1|))) (-589 |#4|))) (-15 -1456 ((-589 (-383 (-883 |#1|))) (-589 (-1087)))) (-15 -3490 (|#4| (-883 |#1|))) (-15 -1866 ((-2 (|:| |sysok| (-108)) (|:| |z0| (-589 |#4|)) (|:| |n0| (-589 |#4|))) (-589 |#4|) (-589 |#4|))) (-15 -3969 ((-589 (-2 (|:| -2262 (-710)) (|:| |eqns| (-589 (-2 (|:| |det| |#4|) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))) (|:| |fgb| (-589 |#4|)))) (-629 |#4|) (-710))) (-15 -3937 ((-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|)))))) (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|)))))) (-589 |#4|))) (-15 -4027 ((-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|)))))) (-2 (|:| -2373 (-629 (-383 (-883 |#1|)))) (|:| |vec| (-589 (-383 (-883 |#1|)))) (|:| -2262 (-710)) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))) (-15 -1347 ((-589 |#4|) |#4|)) (-15 -2672 ((-710) (-589 (-2 (|:| -2262 (-710)) (|:| |eqns| (-589 (-2 (|:| |det| |#4|) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))) (|:| |fgb| (-589 |#4|)))))) (-15 -2310 ((-710) (-589 (-2 (|:| -2262 (-710)) (|:| |eqns| (-589 (-2 (|:| |det| |#4|) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))) (|:| |fgb| (-589 |#4|)))))) (-15 -1656 ((-589 (-589 |#4|)) (-589 (-589 |#4|)))) (-15 -1618 ((-589 (-589 (-523))) (-523) (-523))) (-15 -3815 ((-108) (-589 |#4|) (-589 (-589 |#4|)))) (-15 -3613 ((-589 (-2 (|:| |det| |#4|) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523))))) (-629 |#4|) (-710))) (-15 -2840 ((-629 |#4|) (-629 |#4|) (-589 |#4|))) (-15 -3711 ((-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))) (-629 |#4|) (-589 (-383 (-883 |#1|))) (-589 (-589 |#4|)) (-710) (-710) (-523))) (-15 -1851 (|#4| |#4|)) (-15 -3367 ((-108) (-589 |#4|))) (-15 -3367 ((-108) (-589 (-883 |#1|))))) (-13 (-284) (-136)) (-13 (-786) (-564 (-1087))) (-732) (-880 |#1| |#3| |#2|)) (T -855))
-((-3367 (*1 *2 *3) (-12 (-5 *3 (-589 (-883 *4))) (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-108)) (-5 *1 (-855 *4 *5 *6 *7)) (-4 *7 (-880 *4 *6 *5)))) (-3367 (*1 *2 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-880 *4 *6 *5)) (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-108)) (-5 *1 (-855 *4 *5 *6 *7)))) (-1851 (*1 *2 *2) (-12 (-4 *3 (-13 (-284) (-136))) (-4 *4 (-13 (-786) (-564 (-1087)))) (-4 *5 (-732)) (-5 *1 (-855 *3 *4 *5 *2)) (-4 *2 (-880 *3 *5 *4)))) (-3711 (*1 *2 *3 *4 *5 *6 *7 *7 *8) (-12 (-5 *3 (-2 (|:| |det| *12) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523))))) (-5 *4 (-629 *12)) (-5 *5 (-589 (-383 (-883 *9)))) (-5 *6 (-589 (-589 *12))) (-5 *7 (-710)) (-5 *8 (-523)) (-4 *9 (-13 (-284) (-136))) (-4 *12 (-880 *9 *11 *10)) (-4 *10 (-13 (-786) (-564 (-1087)))) (-4 *11 (-732)) (-5 *2 (-2 (|:| |eqzro| (-589 *12)) (|:| |neqzro| (-589 *12)) (|:| |wcond| (-589 (-883 *9))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 *9)))) (|:| -2922 (-589 (-1169 (-383 (-883 *9))))))))) (-5 *1 (-855 *9 *10 *11 *12)))) (-2840 (*1 *2 *2 *3) (-12 (-5 *2 (-629 *7)) (-5 *3 (-589 *7)) (-4 *7 (-880 *4 *6 *5)) (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *1 (-855 *4 *5 *6 *7)))) (-3613 (*1 *2 *3 *4) (-12 (-5 *3 (-629 *8)) (-5 *4 (-710)) (-4 *8 (-880 *5 *7 *6)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-13 (-786) (-564 (-1087)))) (-4 *7 (-732)) (-5 *2 (-589 (-2 (|:| |det| *8) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))) (-5 *1 (-855 *5 *6 *7 *8)))) (-3815 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-589 *8))) (-5 *3 (-589 *8)) (-4 *8 (-880 *5 *7 *6)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-13 (-786) (-564 (-1087)))) (-4 *7 (-732)) (-5 *2 (-108)) (-5 *1 (-855 *5 *6 *7 *8)))) (-1618 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-589 (-589 (-523)))) (-5 *1 (-855 *4 *5 *6 *7)) (-5 *3 (-523)) (-4 *7 (-880 *4 *6 *5)))) (-1656 (*1 *2 *2) (-12 (-5 *2 (-589 (-589 *6))) (-4 *6 (-880 *3 *5 *4)) (-4 *3 (-13 (-284) (-136))) (-4 *4 (-13 (-786) (-564 (-1087)))) (-4 *5 (-732)) (-5 *1 (-855 *3 *4 *5 *6)))) (-2310 (*1 *2 *3) (-12 (-5 *3 (-589 (-2 (|:| -2262 (-710)) (|:| |eqns| (-589 (-2 (|:| |det| *7) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))) (|:| |fgb| (-589 *7))))) (-4 *7 (-880 *4 *6 *5)) (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-710)) (-5 *1 (-855 *4 *5 *6 *7)))) (-2672 (*1 *2 *3) (-12 (-5 *3 (-589 (-2 (|:| -2262 (-710)) (|:| |eqns| (-589 (-2 (|:| |det| *7) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))) (|:| |fgb| (-589 *7))))) (-4 *7 (-880 *4 *6 *5)) (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-710)) (-5 *1 (-855 *4 *5 *6 *7)))) (-1347 (*1 *2 *3) (-12 (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-589 *3)) (-5 *1 (-855 *4 *5 *6 *3)) (-4 *3 (-880 *4 *6 *5)))) (-4027 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -2373 (-629 (-383 (-883 *4)))) (|:| |vec| (-589 (-383 (-883 *4)))) (|:| -2262 (-710)) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523))))) (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-2 (|:| |partsol| (-1169 (-383 (-883 *4)))) (|:| -2922 (-589 (-1169 (-383 (-883 *4))))))) (-5 *1 (-855 *4 *5 *6 *7)) (-4 *7 (-880 *4 *6 *5)))) (-3937 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1169 (-383 (-883 *4)))) (|:| -2922 (-589 (-1169 (-383 (-883 *4))))))) (-5 *3 (-589 *7)) (-4 *4 (-13 (-284) (-136))) (-4 *7 (-880 *4 *6 *5)) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *1 (-855 *4 *5 *6 *7)))) (-3969 (*1 *2 *3 *4) (-12 (-5 *3 (-629 *8)) (-4 *8 (-880 *5 *7 *6)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-13 (-786) (-564 (-1087)))) (-4 *7 (-732)) (-5 *2 (-589 (-2 (|:| -2262 (-710)) (|:| |eqns| (-589 (-2 (|:| |det| *8) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))) (|:| |fgb| (-589 *8))))) (-5 *1 (-855 *5 *6 *7 *8)) (-5 *4 (-710)))) (-1866 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-4 *7 (-880 *4 *6 *5)) (-5 *2 (-2 (|:| |sysok| (-108)) (|:| |z0| (-589 *7)) (|:| |n0| (-589 *7)))) (-5 *1 (-855 *4 *5 *6 *7)) (-5 *3 (-589 *7)))) (-3490 (*1 *2 *3) (-12 (-5 *3 (-883 *4)) (-4 *4 (-13 (-284) (-136))) (-4 *2 (-880 *4 *6 *5)) (-5 *1 (-855 *4 *5 *6 *2)) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)))) (-1456 (*1 *2 *3) (-12 (-5 *3 (-589 (-1087))) (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-589 (-383 (-883 *4)))) (-5 *1 (-855 *4 *5 *6 *7)) (-4 *7 (-880 *4 *6 *5)))) (-1904 (*1 *2 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-880 *4 *6 *5)) (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-589 (-383 (-883 *4)))) (-5 *1 (-855 *4 *5 *6 *7)))) (-1904 (*1 *2 *3) (-12 (-5 *3 (-629 *7)) (-4 *7 (-880 *4 *6 *5)) (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-629 (-383 (-883 *4)))) (-5 *1 (-855 *4 *5 *6 *7)))) (-1904 (*1 *2 *3) (-12 (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-383 (-883 *4))) (-5 *1 (-855 *4 *5 *6 *3)) (-4 *3 (-880 *4 *6 *5)))) (-2850 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-629 *11)) (-5 *4 (-589 (-383 (-883 *8)))) (-5 *5 (-710)) (-5 *6 (-1070)) (-4 *8 (-13 (-284) (-136))) (-4 *11 (-880 *8 *10 *9)) (-4 *9 (-13 (-786) (-564 (-1087)))) (-4 *10 (-732)) (-5 *2 (-2 (|:| |rgl| (-589 (-2 (|:| |eqzro| (-589 *11)) (|:| |neqzro| (-589 *11)) (|:| |wcond| (-589 (-883 *8))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 *8)))) (|:| -2922 (-589 (-1169 (-383 (-883 *8)))))))))) (|:| |rgsz| (-523)))) (-5 *1 (-855 *8 *9 *10 *11)) (-5 *7 (-523)))) (-1488 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-589 (-2 (|:| |eqzro| (-589 *7)) (|:| |neqzro| (-589 *7)) (|:| |wcond| (-589 (-883 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 *4)))) (|:| -2922 (-589 (-1169 (-383 (-883 *4)))))))))) (-5 *1 (-855 *4 *5 *6 *7)) (-4 *7 (-880 *4 *6 *5)))) (-4104 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-2 (|:| |eqzro| (-589 *8)) (|:| |neqzro| (-589 *8)) (|:| |wcond| (-589 (-883 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 *5)))) (|:| -2922 (-589 (-1169 (-383 (-883 *5)))))))))) (-5 *4 (-1070)) (-4 *5 (-13 (-284) (-136))) (-4 *8 (-880 *5 *7 *6)) (-4 *6 (-13 (-786) (-564 (-1087)))) (-4 *7 (-732)) (-5 *2 (-523)) (-5 *1 (-855 *5 *6 *7 *8)))) (-1679 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-629 *9)) (-5 *4 (-852)) (-5 *5 (-1070)) (-4 *9 (-880 *6 *8 *7)) (-4 *6 (-13 (-284) (-136))) (-4 *7 (-13 (-786) (-564 (-1087)))) (-4 *8 (-732)) (-5 *2 (-523)) (-5 *1 (-855 *6 *7 *8 *9)))) (-1679 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-629 *10)) (-5 *4 (-589 (-1087))) (-5 *5 (-852)) (-5 *6 (-1070)) (-4 *10 (-880 *7 *9 *8)) (-4 *7 (-13 (-284) (-136))) (-4 *8 (-13 (-786) (-564 (-1087)))) (-4 *9 (-732)) (-5 *2 (-523)) (-5 *1 (-855 *7 *8 *9 *10)))) (-1679 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-629 *10)) (-5 *4 (-589 *10)) (-5 *5 (-852)) (-5 *6 (-1070)) (-4 *10 (-880 *7 *9 *8)) (-4 *7 (-13 (-284) (-136))) (-4 *8 (-13 (-786) (-564 (-1087)))) (-4 *9 (-732)) (-5 *2 (-523)) (-5 *1 (-855 *7 *8 *9 *10)))) (-1679 (*1 *2 *3 *4) (-12 (-5 *3 (-629 *8)) (-5 *4 (-1070)) (-4 *8 (-880 *5 *7 *6)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-13 (-786) (-564 (-1087)))) (-4 *7 (-732)) (-5 *2 (-523)) (-5 *1 (-855 *5 *6 *7 *8)))) (-1679 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-629 *9)) (-5 *4 (-589 (-1087))) (-5 *5 (-1070)) (-4 *9 (-880 *6 *8 *7)) (-4 *6 (-13 (-284) (-136))) (-4 *7 (-13 (-786) (-564 (-1087)))) (-4 *8 (-732)) (-5 *2 (-523)) (-5 *1 (-855 *6 *7 *8 *9)))) (-1679 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-629 *9)) (-5 *4 (-589 *9)) (-5 *5 (-1070)) (-4 *9 (-880 *6 *8 *7)) (-4 *6 (-13 (-284) (-136))) (-4 *7 (-13 (-786) (-564 (-1087)))) (-4 *8 (-732)) (-5 *2 (-523)) (-5 *1 (-855 *6 *7 *8 *9)))) (-1679 (*1 *2 *3 *4) (-12 (-5 *3 (-629 *8)) (-5 *4 (-852)) (-4 *8 (-880 *5 *7 *6)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-13 (-786) (-564 (-1087)))) (-4 *7 (-732)) (-5 *2 (-589 (-2 (|:| |eqzro| (-589 *8)) (|:| |neqzro| (-589 *8)) (|:| |wcond| (-589 (-883 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 *5)))) (|:| -2922 (-589 (-1169 (-383 (-883 *5)))))))))) (-5 *1 (-855 *5 *6 *7 *8)))) (-1679 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-629 *9)) (-5 *4 (-589 (-1087))) (-5 *5 (-852)) (-4 *9 (-880 *6 *8 *7)) (-4 *6 (-13 (-284) (-136))) (-4 *7 (-13 (-786) (-564 (-1087)))) (-4 *8 (-732)) (-5 *2 (-589 (-2 (|:| |eqzro| (-589 *9)) (|:| |neqzro| (-589 *9)) (|:| |wcond| (-589 (-883 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 *6)))) (|:| -2922 (-589 (-1169 (-383 (-883 *6)))))))))) (-5 *1 (-855 *6 *7 *8 *9)))) (-1679 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-629 *9)) (-5 *5 (-852)) (-4 *9 (-880 *6 *8 *7)) (-4 *6 (-13 (-284) (-136))) (-4 *7 (-13 (-786) (-564 (-1087)))) (-4 *8 (-732)) (-5 *2 (-589 (-2 (|:| |eqzro| (-589 *9)) (|:| |neqzro| (-589 *9)) (|:| |wcond| (-589 (-883 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 *6)))) (|:| -2922 (-589 (-1169 (-383 (-883 *6)))))))))) (-5 *1 (-855 *6 *7 *8 *9)) (-5 *4 (-589 *9)))) (-1679 (*1 *2 *3) (-12 (-5 *3 (-629 *7)) (-4 *7 (-880 *4 *6 *5)) (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-589 (-2 (|:| |eqzro| (-589 *7)) (|:| |neqzro| (-589 *7)) (|:| |wcond| (-589 (-883 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 *4)))) (|:| -2922 (-589 (-1169 (-383 (-883 *4)))))))))) (-5 *1 (-855 *4 *5 *6 *7)))) (-1679 (*1 *2 *3 *4) (-12 (-5 *3 (-629 *8)) (-5 *4 (-589 (-1087))) (-4 *8 (-880 *5 *7 *6)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-13 (-786) (-564 (-1087)))) (-4 *7 (-732)) (-5 *2 (-589 (-2 (|:| |eqzro| (-589 *8)) (|:| |neqzro| (-589 *8)) (|:| |wcond| (-589 (-883 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 *5)))) (|:| -2922 (-589 (-1169 (-383 (-883 *5)))))))))) (-5 *1 (-855 *5 *6 *7 *8)))) (-1679 (*1 *2 *3 *4) (-12 (-5 *3 (-629 *8)) (-4 *8 (-880 *5 *7 *6)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-13 (-786) (-564 (-1087)))) (-4 *7 (-732)) (-5 *2 (-589 (-2 (|:| |eqzro| (-589 *8)) (|:| |neqzro| (-589 *8)) (|:| |wcond| (-589 (-883 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 *5)))) (|:| -2922 (-589 (-1169 (-383 (-883 *5)))))))))) (-5 *1 (-855 *5 *6 *7 *8)) (-5 *4 (-589 *8)))))
-(-10 -7 (-15 -1679 ((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|) (-589 |#4|))) (-15 -1679 ((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|) (-589 (-1087)))) (-15 -1679 ((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|))) (-15 -1679 ((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|) (-589 |#4|) (-852))) (-15 -1679 ((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|) (-589 (-1087)) (-852))) (-15 -1679 ((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-629 |#4|) (-852))) (-15 -1679 ((-523) (-629 |#4|) (-589 |#4|) (-1070))) (-15 -1679 ((-523) (-629 |#4|) (-589 (-1087)) (-1070))) (-15 -1679 ((-523) (-629 |#4|) (-1070))) (-15 -1679 ((-523) (-629 |#4|) (-589 |#4|) (-852) (-1070))) (-15 -1679 ((-523) (-629 |#4|) (-589 (-1087)) (-852) (-1070))) (-15 -1679 ((-523) (-629 |#4|) (-852) (-1070))) (-15 -4104 ((-523) (-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-1070))) (-15 -1488 ((-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|))))))))) (-1070))) (-15 -2850 ((-2 (|:| |rgl| (-589 (-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|)))))))))) (|:| |rgsz| (-523))) (-629 |#4|) (-589 (-383 (-883 |#1|))) (-710) (-1070) (-523))) (-15 -1904 ((-383 (-883 |#1|)) |#4|)) (-15 -1904 ((-629 (-383 (-883 |#1|))) (-629 |#4|))) (-15 -1904 ((-589 (-383 (-883 |#1|))) (-589 |#4|))) (-15 -1456 ((-589 (-383 (-883 |#1|))) (-589 (-1087)))) (-15 -3490 (|#4| (-883 |#1|))) (-15 -1866 ((-2 (|:| |sysok| (-108)) (|:| |z0| (-589 |#4|)) (|:| |n0| (-589 |#4|))) (-589 |#4|) (-589 |#4|))) (-15 -3969 ((-589 (-2 (|:| -2262 (-710)) (|:| |eqns| (-589 (-2 (|:| |det| |#4|) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))) (|:| |fgb| (-589 |#4|)))) (-629 |#4|) (-710))) (-15 -3937 ((-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|)))))) (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|)))))) (-589 |#4|))) (-15 -4027 ((-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|)))))) (-2 (|:| -2373 (-629 (-383 (-883 |#1|)))) (|:| |vec| (-589 (-383 (-883 |#1|)))) (|:| -2262 (-710)) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))) (-15 -1347 ((-589 |#4|) |#4|)) (-15 -2672 ((-710) (-589 (-2 (|:| -2262 (-710)) (|:| |eqns| (-589 (-2 (|:| |det| |#4|) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))) (|:| |fgb| (-589 |#4|)))))) (-15 -2310 ((-710) (-589 (-2 (|:| -2262 (-710)) (|:| |eqns| (-589 (-2 (|:| |det| |#4|) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))) (|:| |fgb| (-589 |#4|)))))) (-15 -1656 ((-589 (-589 |#4|)) (-589 (-589 |#4|)))) (-15 -1618 ((-589 (-589 (-523))) (-523) (-523))) (-15 -3815 ((-108) (-589 |#4|) (-589 (-589 |#4|)))) (-15 -3613 ((-589 (-2 (|:| |det| |#4|) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523))))) (-629 |#4|) (-710))) (-15 -2840 ((-629 |#4|) (-629 |#4|) (-589 |#4|))) (-15 -3711 ((-2 (|:| |eqzro| (-589 |#4|)) (|:| |neqzro| (-589 |#4|)) (|:| |wcond| (-589 (-883 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1169 (-383 (-883 |#1|)))) (|:| -2922 (-589 (-1169 (-383 (-883 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))) (-629 |#4|) (-589 (-383 (-883 |#1|))) (-589 (-589 |#4|)) (-710) (-710) (-523))) (-15 -1851 (|#4| |#4|)) (-15 -3367 ((-108) (-589 |#4|))) (-15 -3367 ((-108) (-589 (-883 |#1|)))))
-((-3032 (((-858) |#1| (-1087)) 17) (((-858) |#1| (-1087) (-1011 (-203))) 21)) (-1357 (((-858) |#1| |#1| (-1087) (-1011 (-203))) 19) (((-858) |#1| (-1087) (-1011 (-203))) 15)))
-(((-856 |#1|) (-10 -7 (-15 -1357 ((-858) |#1| (-1087) (-1011 (-203)))) (-15 -1357 ((-858) |#1| |#1| (-1087) (-1011 (-203)))) (-15 -3032 ((-858) |#1| (-1087) (-1011 (-203)))) (-15 -3032 ((-858) |#1| (-1087)))) (-564 (-499))) (T -856))
-((-3032 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-5 *2 (-858)) (-5 *1 (-856 *3)) (-4 *3 (-564 (-499))))) (-3032 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1087)) (-5 *5 (-1011 (-203))) (-5 *2 (-858)) (-5 *1 (-856 *3)) (-4 *3 (-564 (-499))))) (-1357 (*1 *2 *3 *3 *4 *5) (-12 (-5 *4 (-1087)) (-5 *5 (-1011 (-203))) (-5 *2 (-858)) (-5 *1 (-856 *3)) (-4 *3 (-564 (-499))))) (-1357 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1087)) (-5 *5 (-1011 (-203))) (-5 *2 (-858)) (-5 *1 (-856 *3)) (-4 *3 (-564 (-499))))))
-(-10 -7 (-15 -1357 ((-858) |#1| (-1087) (-1011 (-203)))) (-15 -1357 ((-858) |#1| |#1| (-1087) (-1011 (-203)))) (-15 -3032 ((-858) |#1| (-1087) (-1011 (-203)))) (-15 -3032 ((-858) |#1| (-1087))))
-((-3641 (($ $ (-1011 (-203)) (-1011 (-203)) (-1011 (-203))) 70)) (-3053 (((-1011 (-203)) $) 40)) (-3040 (((-1011 (-203)) $) 39)) (-3027 (((-1011 (-203)) $) 38)) (-2334 (((-589 (-589 (-203))) $) 43)) (-2951 (((-1011 (-203)) $) 41)) (-1362 (((-523) (-523)) 32)) (-3378 (((-523) (-523)) 28)) (-3158 (((-523) (-523)) 30)) (-1449 (((-108) (-108)) 35)) (-2752 (((-523)) 31)) (-1482 (($ $ (-1011 (-203))) 73) (($ $) 74)) (-1660 (($ (-1 (-874 (-203)) (-203)) (-1011 (-203))) 78) (($ (-1 (-874 (-203)) (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203))) 79)) (-1357 (($ (-1 (-203) (-203)) (-1 (-203) (-203)) (-1 (-203) (-203)) (-1 (-203) (-203)) (-1011 (-203))) 81) (($ (-1 (-203) (-203)) (-1 (-203) (-203)) (-1 (-203) (-203)) (-1 (-203) (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203))) 82) (($ $ (-1011 (-203))) 76)) (-2106 (((-523)) 36)) (-3100 (((-523)) 27)) (-4212 (((-523)) 29)) (-2797 (((-589 (-589 (-874 (-203)))) $) 94)) (-3379 (((-108) (-108)) 37)) (-3976 (((-794) $) 93)) (-2713 (((-108)) 34)))
-(((-857) (-13 (-903) (-10 -8 (-15 -1660 ($ (-1 (-874 (-203)) (-203)) (-1011 (-203)))) (-15 -1660 ($ (-1 (-874 (-203)) (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203)))) (-15 -1357 ($ (-1 (-203) (-203)) (-1 (-203) (-203)) (-1 (-203) (-203)) (-1 (-203) (-203)) (-1011 (-203)))) (-15 -1357 ($ (-1 (-203) (-203)) (-1 (-203) (-203)) (-1 (-203) (-203)) (-1 (-203) (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203)))) (-15 -1357 ($ $ (-1011 (-203)))) (-15 -3641 ($ $ (-1011 (-203)) (-1011 (-203)) (-1011 (-203)))) (-15 -1482 ($ $ (-1011 (-203)))) (-15 -1482 ($ $)) (-15 -2951 ((-1011 (-203)) $)) (-15 -2334 ((-589 (-589 (-203))) $)) (-15 -3100 ((-523))) (-15 -3378 ((-523) (-523))) (-15 -4212 ((-523))) (-15 -3158 ((-523) (-523))) (-15 -2752 ((-523))) (-15 -1362 ((-523) (-523))) (-15 -2713 ((-108))) (-15 -1449 ((-108) (-108))) (-15 -2106 ((-523))) (-15 -3379 ((-108) (-108)))))) (T -857))
-((-1660 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-874 (-203)) (-203))) (-5 *3 (-1011 (-203))) (-5 *1 (-857)))) (-1660 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-874 (-203)) (-203))) (-5 *3 (-1011 (-203))) (-5 *1 (-857)))) (-1357 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-203) (-203))) (-5 *3 (-1011 (-203))) (-5 *1 (-857)))) (-1357 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-203) (-203))) (-5 *3 (-1011 (-203))) (-5 *1 (-857)))) (-1357 (*1 *1 *1 *2) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-857)))) (-3641 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-857)))) (-1482 (*1 *1 *1 *2) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-857)))) (-1482 (*1 *1 *1) (-5 *1 (-857))) (-2951 (*1 *2 *1) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-857)))) (-2334 (*1 *2 *1) (-12 (-5 *2 (-589 (-589 (-203)))) (-5 *1 (-857)))) (-3100 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-857)))) (-3378 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-857)))) (-4212 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-857)))) (-3158 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-857)))) (-2752 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-857)))) (-1362 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-857)))) (-2713 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-857)))) (-1449 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-857)))) (-2106 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-857)))) (-3379 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-857)))))
-(-13 (-903) (-10 -8 (-15 -1660 ($ (-1 (-874 (-203)) (-203)) (-1011 (-203)))) (-15 -1660 ($ (-1 (-874 (-203)) (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203)))) (-15 -1357 ($ (-1 (-203) (-203)) (-1 (-203) (-203)) (-1 (-203) (-203)) (-1 (-203) (-203)) (-1011 (-203)))) (-15 -1357 ($ (-1 (-203) (-203)) (-1 (-203) (-203)) (-1 (-203) (-203)) (-1 (-203) (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203)))) (-15 -1357 ($ $ (-1011 (-203)))) (-15 -3641 ($ $ (-1011 (-203)) (-1011 (-203)) (-1011 (-203)))) (-15 -1482 ($ $ (-1011 (-203)))) (-15 -1482 ($ $)) (-15 -2951 ((-1011 (-203)) $)) (-15 -2334 ((-589 (-589 (-203))) $)) (-15 -3100 ((-523))) (-15 -3378 ((-523) (-523))) (-15 -4212 ((-523))) (-15 -3158 ((-523) (-523))) (-15 -2752 ((-523))) (-15 -1362 ((-523) (-523))) (-15 -2713 ((-108))) (-15 -1449 ((-108) (-108))) (-15 -2106 ((-523))) (-15 -3379 ((-108) (-108)))))
-((-3641 (($ $ (-1011 (-203))) 70) (($ $ (-1011 (-203)) (-1011 (-203))) 71)) (-3040 (((-1011 (-203)) $) 44)) (-3027 (((-1011 (-203)) $) 43)) (-2951 (((-1011 (-203)) $) 45)) (-1540 (((-523) (-523)) 37)) (-3380 (((-523) (-523)) 33)) (-3586 (((-523) (-523)) 35)) (-3932 (((-108) (-108)) 39)) (-1327 (((-523)) 36)) (-1482 (($ $ (-1011 (-203))) 74) (($ $) 75)) (-1660 (($ (-1 (-874 (-203)) (-203)) (-1011 (-203))) 84) (($ (-1 (-874 (-203)) (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203))) 85)) (-3032 (($ (-1 (-203) (-203)) (-1011 (-203))) 92) (($ (-1 (-203) (-203))) 95)) (-1357 (($ (-1 (-203) (-203)) (-1011 (-203))) 79) (($ (-1 (-203) (-203)) (-1011 (-203)) (-1011 (-203))) 80) (($ (-589 (-1 (-203) (-203))) (-1011 (-203))) 87) (($ (-589 (-1 (-203) (-203))) (-1011 (-203)) (-1011 (-203))) 88) (($ (-1 (-203) (-203)) (-1 (-203) (-203)) (-1011 (-203))) 81) (($ (-1 (-203) (-203)) (-1 (-203) (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203))) 82) (($ $ (-1011 (-203))) 76)) (-3227 (((-108) $) 40)) (-3511 (((-523)) 41)) (-1797 (((-523)) 32)) (-2870 (((-523)) 34)) (-2797 (((-589 (-589 (-874 (-203)))) $) 23)) (-2976 (((-108) (-108)) 42)) (-3976 (((-794) $) 106)) (-3796 (((-108)) 38)))
-(((-858) (-13 (-885) (-10 -8 (-15 -1357 ($ (-1 (-203) (-203)) (-1011 (-203)))) (-15 -1357 ($ (-1 (-203) (-203)) (-1011 (-203)) (-1011 (-203)))) (-15 -1357 ($ (-589 (-1 (-203) (-203))) (-1011 (-203)))) (-15 -1357 ($ (-589 (-1 (-203) (-203))) (-1011 (-203)) (-1011 (-203)))) (-15 -1357 ($ (-1 (-203) (-203)) (-1 (-203) (-203)) (-1011 (-203)))) (-15 -1357 ($ (-1 (-203) (-203)) (-1 (-203) (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203)))) (-15 -1660 ($ (-1 (-874 (-203)) (-203)) (-1011 (-203)))) (-15 -1660 ($ (-1 (-874 (-203)) (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203)))) (-15 -3032 ($ (-1 (-203) (-203)) (-1011 (-203)))) (-15 -3032 ($ (-1 (-203) (-203)))) (-15 -1357 ($ $ (-1011 (-203)))) (-15 -3227 ((-108) $)) (-15 -3641 ($ $ (-1011 (-203)))) (-15 -3641 ($ $ (-1011 (-203)) (-1011 (-203)))) (-15 -1482 ($ $ (-1011 (-203)))) (-15 -1482 ($ $)) (-15 -2951 ((-1011 (-203)) $)) (-15 -1797 ((-523))) (-15 -3380 ((-523) (-523))) (-15 -2870 ((-523))) (-15 -3586 ((-523) (-523))) (-15 -1327 ((-523))) (-15 -1540 ((-523) (-523))) (-15 -3796 ((-108))) (-15 -3932 ((-108) (-108))) (-15 -3511 ((-523))) (-15 -2976 ((-108) (-108)))))) (T -858))
-((-1357 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-203) (-203))) (-5 *3 (-1011 (-203))) (-5 *1 (-858)))) (-1357 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-203) (-203))) (-5 *3 (-1011 (-203))) (-5 *1 (-858)))) (-1357 (*1 *1 *2 *3) (-12 (-5 *2 (-589 (-1 (-203) (-203)))) (-5 *3 (-1011 (-203))) (-5 *1 (-858)))) (-1357 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-589 (-1 (-203) (-203)))) (-5 *3 (-1011 (-203))) (-5 *1 (-858)))) (-1357 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-203) (-203))) (-5 *3 (-1011 (-203))) (-5 *1 (-858)))) (-1357 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-203) (-203))) (-5 *3 (-1011 (-203))) (-5 *1 (-858)))) (-1660 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-874 (-203)) (-203))) (-5 *3 (-1011 (-203))) (-5 *1 (-858)))) (-1660 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-874 (-203)) (-203))) (-5 *3 (-1011 (-203))) (-5 *1 (-858)))) (-3032 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-203) (-203))) (-5 *3 (-1011 (-203))) (-5 *1 (-858)))) (-3032 (*1 *1 *2) (-12 (-5 *2 (-1 (-203) (-203))) (-5 *1 (-858)))) (-1357 (*1 *1 *1 *2) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-858)))) (-3227 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-858)))) (-3641 (*1 *1 *1 *2) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-858)))) (-3641 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-858)))) (-1482 (*1 *1 *1 *2) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-858)))) (-1482 (*1 *1 *1) (-5 *1 (-858))) (-2951 (*1 *2 *1) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-858)))) (-1797 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-858)))) (-3380 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-858)))) (-2870 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-858)))) (-3586 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-858)))) (-1327 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-858)))) (-1540 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-858)))) (-3796 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-858)))) (-3932 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-858)))) (-3511 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-858)))) (-2976 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-858)))))
-(-13 (-885) (-10 -8 (-15 -1357 ($ (-1 (-203) (-203)) (-1011 (-203)))) (-15 -1357 ($ (-1 (-203) (-203)) (-1011 (-203)) (-1011 (-203)))) (-15 -1357 ($ (-589 (-1 (-203) (-203))) (-1011 (-203)))) (-15 -1357 ($ (-589 (-1 (-203) (-203))) (-1011 (-203)) (-1011 (-203)))) (-15 -1357 ($ (-1 (-203) (-203)) (-1 (-203) (-203)) (-1011 (-203)))) (-15 -1357 ($ (-1 (-203) (-203)) (-1 (-203) (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203)))) (-15 -1660 ($ (-1 (-874 (-203)) (-203)) (-1011 (-203)))) (-15 -1660 ($ (-1 (-874 (-203)) (-203)) (-1011 (-203)) (-1011 (-203)) (-1011 (-203)))) (-15 -3032 ($ (-1 (-203) (-203)) (-1011 (-203)))) (-15 -3032 ($ (-1 (-203) (-203)))) (-15 -1357 ($ $ (-1011 (-203)))) (-15 -3227 ((-108) $)) (-15 -3641 ($ $ (-1011 (-203)))) (-15 -3641 ($ $ (-1011 (-203)) (-1011 (-203)))) (-15 -1482 ($ $ (-1011 (-203)))) (-15 -1482 ($ $)) (-15 -2951 ((-1011 (-203)) $)) (-15 -1797 ((-523))) (-15 -3380 ((-523) (-523))) (-15 -2870 ((-523))) (-15 -3586 ((-523) (-523))) (-15 -1327 ((-523))) (-15 -1540 ((-523) (-523))) (-15 -3796 ((-108))) (-15 -3932 ((-108) (-108))) (-15 -3511 ((-523))) (-15 -2976 ((-108) (-108)))))
-((-3193 (((-589 (-1011 (-203))) (-589 (-589 (-874 (-203))))) 24)))
-(((-859) (-10 -7 (-15 -3193 ((-589 (-1011 (-203))) (-589 (-589 (-874 (-203)))))))) (T -859))
-((-3193 (*1 *2 *3) (-12 (-5 *3 (-589 (-589 (-874 (-203))))) (-5 *2 (-589 (-1011 (-203)))) (-5 *1 (-859)))))
-(-10 -7 (-15 -3193 ((-589 (-1011 (-203))) (-589 (-589 (-874 (-203)))))))
-((-1275 ((|#2| |#2|) 26)) (-3828 ((|#2| |#2|) 27)) (-1982 ((|#2| |#2|) 25)) (-2074 ((|#2| |#2| (-1070)) 24)))
-(((-860 |#1| |#2|) (-10 -7 (-15 -2074 (|#2| |#2| (-1070))) (-15 -1982 (|#2| |#2|)) (-15 -1275 (|#2| |#2|)) (-15 -3828 (|#2| |#2|))) (-786) (-406 |#1|)) (T -860))
-((-3828 (*1 *2 *2) (-12 (-4 *3 (-786)) (-5 *1 (-860 *3 *2)) (-4 *2 (-406 *3)))) (-1275 (*1 *2 *2) (-12 (-4 *3 (-786)) (-5 *1 (-860 *3 *2)) (-4 *2 (-406 *3)))) (-1982 (*1 *2 *2) (-12 (-4 *3 (-786)) (-5 *1 (-860 *3 *2)) (-4 *2 (-406 *3)))) (-2074 (*1 *2 *2 *3) (-12 (-5 *3 (-1070)) (-4 *4 (-786)) (-5 *1 (-860 *4 *2)) (-4 *2 (-406 *4)))))
-(-10 -7 (-15 -2074 (|#2| |#2| (-1070))) (-15 -1982 (|#2| |#2|)) (-15 -1275 (|#2| |#2|)) (-15 -3828 (|#2| |#2|)))
-((-1275 (((-292 (-523)) (-1087)) 16)) (-3828 (((-292 (-523)) (-1087)) 14)) (-1982 (((-292 (-523)) (-1087)) 12)) (-2074 (((-292 (-523)) (-1087) (-1070)) 19)))
-(((-861) (-10 -7 (-15 -2074 ((-292 (-523)) (-1087) (-1070))) (-15 -1982 ((-292 (-523)) (-1087))) (-15 -1275 ((-292 (-523)) (-1087))) (-15 -3828 ((-292 (-523)) (-1087))))) (T -861))
-((-3828 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-292 (-523))) (-5 *1 (-861)))) (-1275 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-292 (-523))) (-5 *1 (-861)))) (-1982 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-292 (-523))) (-5 *1 (-861)))) (-2074 (*1 *2 *3 *4) (-12 (-5 *3 (-1087)) (-5 *4 (-1070)) (-5 *2 (-292 (-523))) (-5 *1 (-861)))))
-(-10 -7 (-15 -2074 ((-292 (-523)) (-1087) (-1070))) (-15 -1982 ((-292 (-523)) (-1087))) (-15 -1275 ((-292 (-523)) (-1087))) (-15 -3828 ((-292 (-523)) (-1087))))
-((-2483 (((-820 |#1| |#3|) |#2| (-823 |#1|) (-820 |#1| |#3|)) 25)) (-1906 (((-1 (-108) |#2|) (-1 (-108) |#3|)) 13)))
-(((-862 |#1| |#2| |#3|) (-10 -7 (-15 -1906 ((-1 (-108) |#2|) (-1 (-108) |#3|))) (-15 -2483 ((-820 |#1| |#3|) |#2| (-823 |#1|) (-820 |#1| |#3|)))) (-1016) (-817 |#1|) (-13 (-1016) (-964 |#2|))) (T -862))
-((-2483 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-820 *5 *6)) (-5 *4 (-823 *5)) (-4 *5 (-1016)) (-4 *6 (-13 (-1016) (-964 *3))) (-4 *3 (-817 *5)) (-5 *1 (-862 *5 *3 *6)))) (-1906 (*1 *2 *3) (-12 (-5 *3 (-1 (-108) *6)) (-4 *6 (-13 (-1016) (-964 *5))) (-4 *5 (-817 *4)) (-4 *4 (-1016)) (-5 *2 (-1 (-108) *5)) (-5 *1 (-862 *4 *5 *6)))))
-(-10 -7 (-15 -1906 ((-1 (-108) |#2|) (-1 (-108) |#3|))) (-15 -2483 ((-820 |#1| |#3|) |#2| (-823 |#1|) (-820 |#1| |#3|))))
-((-2483 (((-820 |#1| |#3|) |#3| (-823 |#1|) (-820 |#1| |#3|)) 30)))
-(((-863 |#1| |#2| |#3|) (-10 -7 (-15 -2483 ((-820 |#1| |#3|) |#3| (-823 |#1|) (-820 |#1| |#3|)))) (-1016) (-13 (-515) (-786) (-817 |#1|)) (-13 (-406 |#2|) (-564 (-823 |#1|)) (-817 |#1|) (-964 (-562 $)))) (T -863))
-((-2483 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-820 *5 *3)) (-4 *5 (-1016)) (-4 *3 (-13 (-406 *6) (-564 *4) (-817 *5) (-964 (-562 $)))) (-5 *4 (-823 *5)) (-4 *6 (-13 (-515) (-786) (-817 *5))) (-5 *1 (-863 *5 *6 *3)))))
-(-10 -7 (-15 -2483 ((-820 |#1| |#3|) |#3| (-823 |#1|) (-820 |#1| |#3|))))
-((-2483 (((-820 (-523) |#1|) |#1| (-823 (-523)) (-820 (-523) |#1|)) 13)))
-(((-864 |#1|) (-10 -7 (-15 -2483 ((-820 (-523) |#1|) |#1| (-823 (-523)) (-820 (-523) |#1|)))) (-508)) (T -864))
-((-2483 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-820 (-523) *3)) (-5 *4 (-823 (-523))) (-4 *3 (-508)) (-5 *1 (-864 *3)))))
-(-10 -7 (-15 -2483 ((-820 (-523) |#1|) |#1| (-823 (-523)) (-820 (-523) |#1|))))
-((-2483 (((-820 |#1| |#2|) (-562 |#2|) (-823 |#1|) (-820 |#1| |#2|)) 54)))
-(((-865 |#1| |#2|) (-10 -7 (-15 -2483 ((-820 |#1| |#2|) (-562 |#2|) (-823 |#1|) (-820 |#1| |#2|)))) (-1016) (-13 (-786) (-964 (-562 $)) (-564 (-823 |#1|)) (-817 |#1|))) (T -865))
-((-2483 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-820 *5 *6)) (-5 *3 (-562 *6)) (-4 *5 (-1016)) (-4 *6 (-13 (-786) (-964 (-562 $)) (-564 *4) (-817 *5))) (-5 *4 (-823 *5)) (-5 *1 (-865 *5 *6)))))
-(-10 -7 (-15 -2483 ((-820 |#1| |#2|) (-562 |#2|) (-823 |#1|) (-820 |#1| |#2|))))
-((-2483 (((-816 |#1| |#2| |#3|) |#3| (-823 |#1|) (-816 |#1| |#2| |#3|)) 15)))
-(((-866 |#1| |#2| |#3|) (-10 -7 (-15 -2483 ((-816 |#1| |#2| |#3|) |#3| (-823 |#1|) (-816 |#1| |#2| |#3|)))) (-1016) (-817 |#1|) (-609 |#2|)) (T -866))
-((-2483 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-816 *5 *6 *3)) (-5 *4 (-823 *5)) (-4 *5 (-1016)) (-4 *6 (-817 *5)) (-4 *3 (-609 *6)) (-5 *1 (-866 *5 *6 *3)))))
-(-10 -7 (-15 -2483 ((-816 |#1| |#2| |#3|) |#3| (-823 |#1|) (-816 |#1| |#2| |#3|))))
-((-2483 (((-820 |#1| |#5|) |#5| (-823 |#1|) (-820 |#1| |#5|)) 17 (|has| |#3| (-817 |#1|))) (((-820 |#1| |#5|) |#5| (-823 |#1|) (-820 |#1| |#5|) (-1 (-820 |#1| |#5|) |#3| (-823 |#1|) (-820 |#1| |#5|))) 16)))
-(((-867 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2483 ((-820 |#1| |#5|) |#5| (-823 |#1|) (-820 |#1| |#5|) (-1 (-820 |#1| |#5|) |#3| (-823 |#1|) (-820 |#1| |#5|)))) (IF (|has| |#3| (-817 |#1|)) (-15 -2483 ((-820 |#1| |#5|) |#5| (-823 |#1|) (-820 |#1| |#5|))) |%noBranch|)) (-1016) (-732) (-786) (-13 (-973) (-786) (-817 |#1|)) (-13 (-880 |#4| |#2| |#3|) (-564 (-823 |#1|)))) (T -867))
-((-2483 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-820 *5 *3)) (-4 *5 (-1016)) (-4 *3 (-13 (-880 *8 *6 *7) (-564 *4))) (-5 *4 (-823 *5)) (-4 *7 (-817 *5)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-13 (-973) (-786) (-817 *5))) (-5 *1 (-867 *5 *6 *7 *8 *3)))) (-2483 (*1 *2 *3 *4 *2 *5) (-12 (-5 *5 (-1 (-820 *6 *3) *8 (-823 *6) (-820 *6 *3))) (-4 *8 (-786)) (-5 *2 (-820 *6 *3)) (-5 *4 (-823 *6)) (-4 *6 (-1016)) (-4 *3 (-13 (-880 *9 *7 *8) (-564 *4))) (-4 *7 (-732)) (-4 *9 (-13 (-973) (-786) (-817 *6))) (-5 *1 (-867 *6 *7 *8 *9 *3)))))
-(-10 -7 (-15 -2483 ((-820 |#1| |#5|) |#5| (-823 |#1|) (-820 |#1| |#5|) (-1 (-820 |#1| |#5|) |#3| (-823 |#1|) (-820 |#1| |#5|)))) (IF (|has| |#3| (-817 |#1|)) (-15 -2483 ((-820 |#1| |#5|) |#5| (-823 |#1|) (-820 |#1| |#5|))) |%noBranch|))
-((-2430 ((|#2| |#2| (-589 (-1 (-108) |#3|))) 12) ((|#2| |#2| (-1 (-108) |#3|)) 13)))
-(((-868 |#1| |#2| |#3|) (-10 -7 (-15 -2430 (|#2| |#2| (-1 (-108) |#3|))) (-15 -2430 (|#2| |#2| (-589 (-1 (-108) |#3|))))) (-786) (-406 |#1|) (-1123)) (T -868))
-((-2430 (*1 *2 *2 *3) (-12 (-5 *3 (-589 (-1 (-108) *5))) (-4 *5 (-1123)) (-4 *4 (-786)) (-5 *1 (-868 *4 *2 *5)) (-4 *2 (-406 *4)))) (-2430 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *5)) (-4 *5 (-1123)) (-4 *4 (-786)) (-5 *1 (-868 *4 *2 *5)) (-4 *2 (-406 *4)))))
-(-10 -7 (-15 -2430 (|#2| |#2| (-1 (-108) |#3|))) (-15 -2430 (|#2| |#2| (-589 (-1 (-108) |#3|)))))
-((-2430 (((-292 (-523)) (-1087) (-589 (-1 (-108) |#1|))) 18) (((-292 (-523)) (-1087) (-1 (-108) |#1|)) 15)))
-(((-869 |#1|) (-10 -7 (-15 -2430 ((-292 (-523)) (-1087) (-1 (-108) |#1|))) (-15 -2430 ((-292 (-523)) (-1087) (-589 (-1 (-108) |#1|))))) (-1123)) (T -869))
-((-2430 (*1 *2 *3 *4) (-12 (-5 *3 (-1087)) (-5 *4 (-589 (-1 (-108) *5))) (-4 *5 (-1123)) (-5 *2 (-292 (-523))) (-5 *1 (-869 *5)))) (-2430 (*1 *2 *3 *4) (-12 (-5 *3 (-1087)) (-5 *4 (-1 (-108) *5)) (-4 *5 (-1123)) (-5 *2 (-292 (-523))) (-5 *1 (-869 *5)))))
-(-10 -7 (-15 -2430 ((-292 (-523)) (-1087) (-1 (-108) |#1|))) (-15 -2430 ((-292 (-523)) (-1087) (-589 (-1 (-108) |#1|)))))
-((-2483 (((-820 |#1| |#3|) |#3| (-823 |#1|) (-820 |#1| |#3|)) 25)))
-(((-870 |#1| |#2| |#3|) (-10 -7 (-15 -2483 ((-820 |#1| |#3|) |#3| (-823 |#1|) (-820 |#1| |#3|)))) (-1016) (-13 (-515) (-817 |#1|) (-564 (-823 |#1|))) (-921 |#2|)) (T -870))
-((-2483 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-820 *5 *3)) (-4 *5 (-1016)) (-4 *3 (-921 *6)) (-4 *6 (-13 (-515) (-817 *5) (-564 *4))) (-5 *4 (-823 *5)) (-5 *1 (-870 *5 *6 *3)))))
-(-10 -7 (-15 -2483 ((-820 |#1| |#3|) |#3| (-823 |#1|) (-820 |#1| |#3|))))
-((-2483 (((-820 |#1| (-1087)) (-1087) (-823 |#1|) (-820 |#1| (-1087))) 17)))
-(((-871 |#1|) (-10 -7 (-15 -2483 ((-820 |#1| (-1087)) (-1087) (-823 |#1|) (-820 |#1| (-1087))))) (-1016)) (T -871))
-((-2483 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-820 *5 (-1087))) (-5 *3 (-1087)) (-5 *4 (-823 *5)) (-4 *5 (-1016)) (-5 *1 (-871 *5)))))
-(-10 -7 (-15 -2483 ((-820 |#1| (-1087)) (-1087) (-823 |#1|) (-820 |#1| (-1087)))))
-((-1352 (((-820 |#1| |#3|) (-589 |#3|) (-589 (-823 |#1|)) (-820 |#1| |#3|) (-1 (-820 |#1| |#3|) |#3| (-823 |#1|) (-820 |#1| |#3|))) 33)) (-2483 (((-820 |#1| |#3|) (-589 |#3|) (-589 (-823 |#1|)) (-1 |#3| (-589 |#3|)) (-820 |#1| |#3|) (-1 (-820 |#1| |#3|) |#3| (-823 |#1|) (-820 |#1| |#3|))) 32)))
-(((-872 |#1| |#2| |#3|) (-10 -7 (-15 -2483 ((-820 |#1| |#3|) (-589 |#3|) (-589 (-823 |#1|)) (-1 |#3| (-589 |#3|)) (-820 |#1| |#3|) (-1 (-820 |#1| |#3|) |#3| (-823 |#1|) (-820 |#1| |#3|)))) (-15 -1352 ((-820 |#1| |#3|) (-589 |#3|) (-589 (-823 |#1|)) (-820 |#1| |#3|) (-1 (-820 |#1| |#3|) |#3| (-823 |#1|) (-820 |#1| |#3|))))) (-1016) (-13 (-973) (-786)) (-13 (-973) (-564 (-823 |#1|)) (-964 |#2|))) (T -872))
-((-1352 (*1 *2 *3 *4 *2 *5) (-12 (-5 *3 (-589 *8)) (-5 *4 (-589 (-823 *6))) (-5 *5 (-1 (-820 *6 *8) *8 (-823 *6) (-820 *6 *8))) (-4 *6 (-1016)) (-4 *8 (-13 (-973) (-564 (-823 *6)) (-964 *7))) (-5 *2 (-820 *6 *8)) (-4 *7 (-13 (-973) (-786))) (-5 *1 (-872 *6 *7 *8)))) (-2483 (*1 *2 *3 *4 *5 *2 *6) (-12 (-5 *4 (-589 (-823 *7))) (-5 *5 (-1 *9 (-589 *9))) (-5 *6 (-1 (-820 *7 *9) *9 (-823 *7) (-820 *7 *9))) (-4 *7 (-1016)) (-4 *9 (-13 (-973) (-564 (-823 *7)) (-964 *8))) (-5 *2 (-820 *7 *9)) (-5 *3 (-589 *9)) (-4 *8 (-13 (-973) (-786))) (-5 *1 (-872 *7 *8 *9)))))
-(-10 -7 (-15 -2483 ((-820 |#1| |#3|) (-589 |#3|) (-589 (-823 |#1|)) (-1 |#3| (-589 |#3|)) (-820 |#1| |#3|) (-1 (-820 |#1| |#3|) |#3| (-823 |#1|) (-820 |#1| |#3|)))) (-15 -1352 ((-820 |#1| |#3|) (-589 |#3|) (-589 (-823 |#1|)) (-820 |#1| |#3|) (-1 (-820 |#1| |#3|) |#3| (-823 |#1|) (-820 |#1| |#3|)))))
-((-3846 (((-1083 (-383 (-523))) (-523)) 63)) (-2783 (((-1083 (-523)) (-523)) 66)) (-2661 (((-1083 (-523)) (-523)) 60)) (-4003 (((-523) (-1083 (-523))) 55)) (-2166 (((-1083 (-383 (-523))) (-523)) 49)) (-4022 (((-1083 (-523)) (-523)) 38)) (-3751 (((-1083 (-523)) (-523)) 68)) (-3606 (((-1083 (-523)) (-523)) 67)) (-3896 (((-1083 (-383 (-523))) (-523)) 51)))
-(((-873) (-10 -7 (-15 -3896 ((-1083 (-383 (-523))) (-523))) (-15 -3606 ((-1083 (-523)) (-523))) (-15 -3751 ((-1083 (-523)) (-523))) (-15 -4022 ((-1083 (-523)) (-523))) (-15 -2166 ((-1083 (-383 (-523))) (-523))) (-15 -4003 ((-523) (-1083 (-523)))) (-15 -2661 ((-1083 (-523)) (-523))) (-15 -2783 ((-1083 (-523)) (-523))) (-15 -3846 ((-1083 (-383 (-523))) (-523))))) (T -873))
-((-3846 (*1 *2 *3) (-12 (-5 *2 (-1083 (-383 (-523)))) (-5 *1 (-873)) (-5 *3 (-523)))) (-2783 (*1 *2 *3) (-12 (-5 *2 (-1083 (-523))) (-5 *1 (-873)) (-5 *3 (-523)))) (-2661 (*1 *2 *3) (-12 (-5 *2 (-1083 (-523))) (-5 *1 (-873)) (-5 *3 (-523)))) (-4003 (*1 *2 *3) (-12 (-5 *3 (-1083 (-523))) (-5 *2 (-523)) (-5 *1 (-873)))) (-2166 (*1 *2 *3) (-12 (-5 *2 (-1083 (-383 (-523)))) (-5 *1 (-873)) (-5 *3 (-523)))) (-4022 (*1 *2 *3) (-12 (-5 *2 (-1083 (-523))) (-5 *1 (-873)) (-5 *3 (-523)))) (-3751 (*1 *2 *3) (-12 (-5 *2 (-1083 (-523))) (-5 *1 (-873)) (-5 *3 (-523)))) (-3606 (*1 *2 *3) (-12 (-5 *2 (-1083 (-523))) (-5 *1 (-873)) (-5 *3 (-523)))) (-3896 (*1 *2 *3) (-12 (-5 *2 (-1083 (-383 (-523)))) (-5 *1 (-873)) (-5 *3 (-523)))))
-(-10 -7 (-15 -3896 ((-1083 (-383 (-523))) (-523))) (-15 -3606 ((-1083 (-523)) (-523))) (-15 -3751 ((-1083 (-523)) (-523))) (-15 -4022 ((-1083 (-523)) (-523))) (-15 -2166 ((-1083 (-383 (-523))) (-523))) (-15 -4003 ((-523) (-1083 (-523)))) (-15 -2661 ((-1083 (-523)) (-523))) (-15 -2783 ((-1083 (-523)) (-523))) (-15 -3846 ((-1083 (-383 (-523))) (-523))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2448 (($ (-710)) NIL (|has| |#1| (-23)))) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-4159 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-786)))) (-2361 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4249))) (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| |#1| (-786))))) (-3400 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-786)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#1| $ (-523) |#1|) 11 (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) NIL (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-4091 (($ $) NIL (|has| $ (-6 -4249)))) (-4082 (($ $) NIL)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2231 (($ |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) NIL)) (-1894 (((-523) (-1 (-108) |#1|) $) NIL) (((-523) |#1| $) NIL (|has| |#1| (-1016))) (((-523) |#1| $ (-523)) NIL (|has| |#1| (-1016)))) (-3195 (($ (-589 |#1|)) 13)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-3677 (((-629 |#1|) $ $) NIL (|has| |#1| (-973)))) (-2348 (($ (-710) |#1|) 8)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) 10 (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-3123 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-786)))) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2581 ((|#1| $) NIL (-12 (|has| |#1| (-930)) (|has| |#1| (-973))))) (-4042 (((-108) $ (-710)) NIL)) (-3229 ((|#1| $) NIL (-12 (|has| |#1| (-930)) (|has| |#1| (-973))))) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-3334 (($ |#1| $ (-523)) NIL) (($ $ $ (-523)) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-3879 ((|#1| $) NIL (|has| (-523) (-786)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2408 (($ $ |#1|) NIL (|has| $ (-6 -4249)))) (-1361 (($ $ (-589 |#1|)) 26)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#1| $ (-523) |#1|) NIL) ((|#1| $ (-523)) 20) (($ $ (-1136 (-523))) NIL)) (-1879 ((|#1| $ $) NIL (|has| |#1| (-973)))) (-4012 (((-852) $) 16)) (-3725 (($ $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-1707 (($ $ $) 24)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2580 (($ $ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| |#1| (-564 (-499)))) (($ (-589 |#1|)) 17)) (-3985 (($ (-589 |#1|)) NIL)) (-2785 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 25) (($ (-589 $)) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4115 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-4103 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-523) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-666))) (($ $ |#1|) NIL (|has| |#1| (-666)))) (-1271 (((-710) $) 14 (|has| $ (-6 -4248)))))
-(((-874 |#1|) (-909 |#1|) (-973)) (T -874))
-NIL
-(-909 |#1|)
-((-3515 (((-455 |#1| |#2|) (-883 |#2|)) 20)) (-2288 (((-225 |#1| |#2|) (-883 |#2|)) 33)) (-3531 (((-883 |#2|) (-455 |#1| |#2|)) 25)) (-2192 (((-225 |#1| |#2|) (-455 |#1| |#2|)) 55)) (-2506 (((-883 |#2|) (-225 |#1| |#2|)) 30)) (-2490 (((-455 |#1| |#2|) (-225 |#1| |#2|)) 46)))
-(((-875 |#1| |#2|) (-10 -7 (-15 -2490 ((-455 |#1| |#2|) (-225 |#1| |#2|))) (-15 -2192 ((-225 |#1| |#2|) (-455 |#1| |#2|))) (-15 -3515 ((-455 |#1| |#2|) (-883 |#2|))) (-15 -3531 ((-883 |#2|) (-455 |#1| |#2|))) (-15 -2506 ((-883 |#2|) (-225 |#1| |#2|))) (-15 -2288 ((-225 |#1| |#2|) (-883 |#2|)))) (-589 (-1087)) (-973)) (T -875))
-((-2288 (*1 *2 *3) (-12 (-5 *3 (-883 *5)) (-4 *5 (-973)) (-5 *2 (-225 *4 *5)) (-5 *1 (-875 *4 *5)) (-14 *4 (-589 (-1087))))) (-2506 (*1 *2 *3) (-12 (-5 *3 (-225 *4 *5)) (-14 *4 (-589 (-1087))) (-4 *5 (-973)) (-5 *2 (-883 *5)) (-5 *1 (-875 *4 *5)))) (-3531 (*1 *2 *3) (-12 (-5 *3 (-455 *4 *5)) (-14 *4 (-589 (-1087))) (-4 *5 (-973)) (-5 *2 (-883 *5)) (-5 *1 (-875 *4 *5)))) (-3515 (*1 *2 *3) (-12 (-5 *3 (-883 *5)) (-4 *5 (-973)) (-5 *2 (-455 *4 *5)) (-5 *1 (-875 *4 *5)) (-14 *4 (-589 (-1087))))) (-2192 (*1 *2 *3) (-12 (-5 *3 (-455 *4 *5)) (-14 *4 (-589 (-1087))) (-4 *5 (-973)) (-5 *2 (-225 *4 *5)) (-5 *1 (-875 *4 *5)))) (-2490 (*1 *2 *3) (-12 (-5 *3 (-225 *4 *5)) (-14 *4 (-589 (-1087))) (-4 *5 (-973)) (-5 *2 (-455 *4 *5)) (-5 *1 (-875 *4 *5)))))
-(-10 -7 (-15 -2490 ((-455 |#1| |#2|) (-225 |#1| |#2|))) (-15 -2192 ((-225 |#1| |#2|) (-455 |#1| |#2|))) (-15 -3515 ((-455 |#1| |#2|) (-883 |#2|))) (-15 -3531 ((-883 |#2|) (-455 |#1| |#2|))) (-15 -2506 ((-883 |#2|) (-225 |#1| |#2|))) (-15 -2288 ((-225 |#1| |#2|) (-883 |#2|))))
-((-3356 (((-589 |#2|) |#2| |#2|) 10)) (-3996 (((-710) (-589 |#1|)) 37 (|has| |#1| (-784)))) (-2434 (((-589 |#2|) |#2|) 11)) (-3467 (((-710) (-589 |#1|) (-523) (-523)) 36 (|has| |#1| (-784)))) (-1801 ((|#1| |#2|) 32 (|has| |#1| (-784)))))
-(((-876 |#1| |#2|) (-10 -7 (-15 -3356 ((-589 |#2|) |#2| |#2|)) (-15 -2434 ((-589 |#2|) |#2|)) (IF (|has| |#1| (-784)) (PROGN (-15 -1801 (|#1| |#2|)) (-15 -3996 ((-710) (-589 |#1|))) (-15 -3467 ((-710) (-589 |#1|) (-523) (-523)))) |%noBranch|)) (-339) (-1145 |#1|)) (T -876))
-((-3467 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-589 *5)) (-5 *4 (-523)) (-4 *5 (-784)) (-4 *5 (-339)) (-5 *2 (-710)) (-5 *1 (-876 *5 *6)) (-4 *6 (-1145 *5)))) (-3996 (*1 *2 *3) (-12 (-5 *3 (-589 *4)) (-4 *4 (-784)) (-4 *4 (-339)) (-5 *2 (-710)) (-5 *1 (-876 *4 *5)) (-4 *5 (-1145 *4)))) (-1801 (*1 *2 *3) (-12 (-4 *2 (-339)) (-4 *2 (-784)) (-5 *1 (-876 *2 *3)) (-4 *3 (-1145 *2)))) (-2434 (*1 *2 *3) (-12 (-4 *4 (-339)) (-5 *2 (-589 *3)) (-5 *1 (-876 *4 *3)) (-4 *3 (-1145 *4)))) (-3356 (*1 *2 *3 *3) (-12 (-4 *4 (-339)) (-5 *2 (-589 *3)) (-5 *1 (-876 *4 *3)) (-4 *3 (-1145 *4)))))
-(-10 -7 (-15 -3356 ((-589 |#2|) |#2| |#2|)) (-15 -2434 ((-589 |#2|) |#2|)) (IF (|has| |#1| (-784)) (PROGN (-15 -1801 (|#1| |#2|)) (-15 -3996 ((-710) (-589 |#1|))) (-15 -3467 ((-710) (-589 |#1|) (-523) (-523)))) |%noBranch|))
-((-3015 (((-883 |#2|) (-1 |#2| |#1|) (-883 |#1|)) 19)))
-(((-877 |#1| |#2|) (-10 -7 (-15 -3015 ((-883 |#2|) (-1 |#2| |#1|) (-883 |#1|)))) (-973) (-973)) (T -877))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-883 *5)) (-4 *5 (-973)) (-4 *6 (-973)) (-5 *2 (-883 *6)) (-5 *1 (-877 *5 *6)))))
-(-10 -7 (-15 -3015 ((-883 |#2|) (-1 |#2| |#1|) (-883 |#1|))))
-((-3540 (((-1142 |#1| (-883 |#2|)) (-883 |#2|) (-1165 |#1|)) 18)))
-(((-878 |#1| |#2|) (-10 -7 (-15 -3540 ((-1142 |#1| (-883 |#2|)) (-883 |#2|) (-1165 |#1|)))) (-1087) (-973)) (T -878))
-((-3540 (*1 *2 *3 *4) (-12 (-5 *4 (-1165 *5)) (-14 *5 (-1087)) (-4 *6 (-973)) (-5 *2 (-1142 *5 (-883 *6))) (-5 *1 (-878 *5 *6)) (-5 *3 (-883 *6)))))
-(-10 -7 (-15 -3540 ((-1142 |#1| (-883 |#2|)) (-883 |#2|) (-1165 |#1|))))
-((-2862 (((-710) $) 71) (((-710) $ (-589 |#4|)) 74)) (-3763 (($ $) 173)) (-2105 (((-394 $) $) 165)) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) 116)) (-2898 (((-3 |#2| "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL) (((-3 (-523) "failed") $) NIL) (((-3 |#4| "failed") $) 60)) (-1996 ((|#2| $) NIL) (((-383 (-523)) $) NIL) (((-523) $) NIL) ((|#4| $) 59)) (-2210 (($ $ $ |#4|) 76)) (-2203 (((-629 (-523)) (-629 $)) NIL) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) 106) (((-629 |#2|) (-629 $)) 99)) (-2213 (($ $) 180) (($ $ |#4|) 183)) (-3127 (((-589 $) $) 63)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 199) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 192)) (-2738 (((-589 $) $) 28)) (-3694 (($ |#2| |#3|) NIL) (($ $ |#4| (-710)) NIL) (($ $ (-589 |#4|) (-589 (-710))) 57)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ |#4|) 162)) (-3818 (((-3 (-589 $) "failed") $) 42)) (-1973 (((-3 (-589 $) "failed") $) 31)) (-3719 (((-3 (-2 (|:| |var| |#4|) (|:| -3262 (-710))) "failed") $) 47)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 109)) (-1893 (((-394 (-1083 $)) (-1083 $)) 122)) (-4034 (((-394 (-1083 $)) (-1083 $)) 120)) (-3573 (((-394 $) $) 140)) (-1349 (($ $ (-589 (-271 $))) 21) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-589 |#4|) (-589 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-589 |#4|) (-589 $)) NIL)) (-4053 (($ $ |#4|) 78)) (-3077 (((-823 (-355)) $) 213) (((-823 (-523)) $) 206) (((-499) $) 221)) (-2267 ((|#2| $) NIL) (($ $ |#4|) 175)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) 154)) (-1234 ((|#2| $ |#3|) NIL) (($ $ |#4| (-710)) 52) (($ $ (-589 |#4|) (-589 (-710))) 55)) (-2301 (((-3 $ "failed") $) 156)) (-4052 (((-108) $ $) 186)))
-(((-879 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2701 ((-1083 |#1|) (-1083 |#1|) (-1083 |#1|))) (-15 -2105 ((-394 |#1|) |#1|)) (-15 -3763 (|#1| |#1|)) (-15 -2301 ((-3 |#1| "failed") |#1|)) (-15 -4052 ((-108) |#1| |#1|)) (-15 -3077 ((-499) |#1|)) (-15 -3077 ((-823 (-523)) |#1|)) (-15 -3077 ((-823 (-355)) |#1|)) (-15 -2483 ((-820 (-523) |#1|) |#1| (-823 (-523)) (-820 (-523) |#1|))) (-15 -2483 ((-820 (-355) |#1|) |#1| (-823 (-355)) (-820 (-355) |#1|))) (-15 -3573 ((-394 |#1|) |#1|)) (-15 -4034 ((-394 (-1083 |#1|)) (-1083 |#1|))) (-15 -1893 ((-394 (-1083 |#1|)) (-1083 |#1|))) (-15 -3908 ((-3 (-589 (-1083 |#1|)) "failed") (-589 (-1083 |#1|)) (-1083 |#1|))) (-15 -2326 ((-3 (-1169 |#1|) "failed") (-629 |#1|))) (-15 -2213 (|#1| |#1| |#4|)) (-15 -2267 (|#1| |#1| |#4|)) (-15 -4053 (|#1| |#1| |#4|)) (-15 -2210 (|#1| |#1| |#1| |#4|)) (-15 -3127 ((-589 |#1|) |#1|)) (-15 -2862 ((-710) |#1| (-589 |#4|))) (-15 -2862 ((-710) |#1|)) (-15 -3719 ((-3 (-2 (|:| |var| |#4|) (|:| -3262 (-710))) "failed") |#1|)) (-15 -3818 ((-3 (-589 |#1|) "failed") |#1|)) (-15 -1973 ((-3 (-589 |#1|) "failed") |#1|)) (-15 -3694 (|#1| |#1| (-589 |#4|) (-589 (-710)))) (-15 -3694 (|#1| |#1| |#4| (-710))) (-15 -1353 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1| |#4|)) (-15 -2738 ((-589 |#1|) |#1|)) (-15 -1234 (|#1| |#1| (-589 |#4|) (-589 (-710)))) (-15 -1234 (|#1| |#1| |#4| (-710))) (-15 -2203 ((-629 |#2|) (-629 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-629 (-523)) (-629 |#1|))) (-15 -1996 (|#4| |#1|)) (-15 -2898 ((-3 |#4| "failed") |#1|)) (-15 -1349 (|#1| |#1| (-589 |#4|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#4| |#1|)) (-15 -1349 (|#1| |#1| (-589 |#4|) (-589 |#2|))) (-15 -1349 (|#1| |#1| |#4| |#2|)) (-15 -1349 (|#1| |#1| (-589 |#1|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#1| |#1|)) (-15 -1349 (|#1| |#1| (-271 |#1|))) (-15 -1349 (|#1| |#1| (-589 (-271 |#1|)))) (-15 -3694 (|#1| |#2| |#3|)) (-15 -1234 (|#2| |#1| |#3|)) (-15 -1996 ((-523) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2267 (|#2| |#1|)) (-15 -2213 (|#1| |#1|))) (-880 |#2| |#3| |#4|) (-973) (-732) (-786)) (T -879))
-NIL
-(-10 -8 (-15 -2701 ((-1083 |#1|) (-1083 |#1|) (-1083 |#1|))) (-15 -2105 ((-394 |#1|) |#1|)) (-15 -3763 (|#1| |#1|)) (-15 -2301 ((-3 |#1| "failed") |#1|)) (-15 -4052 ((-108) |#1| |#1|)) (-15 -3077 ((-499) |#1|)) (-15 -3077 ((-823 (-523)) |#1|)) (-15 -3077 ((-823 (-355)) |#1|)) (-15 -2483 ((-820 (-523) |#1|) |#1| (-823 (-523)) (-820 (-523) |#1|))) (-15 -2483 ((-820 (-355) |#1|) |#1| (-823 (-355)) (-820 (-355) |#1|))) (-15 -3573 ((-394 |#1|) |#1|)) (-15 -4034 ((-394 (-1083 |#1|)) (-1083 |#1|))) (-15 -1893 ((-394 (-1083 |#1|)) (-1083 |#1|))) (-15 -3908 ((-3 (-589 (-1083 |#1|)) "failed") (-589 (-1083 |#1|)) (-1083 |#1|))) (-15 -2326 ((-3 (-1169 |#1|) "failed") (-629 |#1|))) (-15 -2213 (|#1| |#1| |#4|)) (-15 -2267 (|#1| |#1| |#4|)) (-15 -4053 (|#1| |#1| |#4|)) (-15 -2210 (|#1| |#1| |#1| |#4|)) (-15 -3127 ((-589 |#1|) |#1|)) (-15 -2862 ((-710) |#1| (-589 |#4|))) (-15 -2862 ((-710) |#1|)) (-15 -3719 ((-3 (-2 (|:| |var| |#4|) (|:| -3262 (-710))) "failed") |#1|)) (-15 -3818 ((-3 (-589 |#1|) "failed") |#1|)) (-15 -1973 ((-3 (-589 |#1|) "failed") |#1|)) (-15 -3694 (|#1| |#1| (-589 |#4|) (-589 (-710)))) (-15 -3694 (|#1| |#1| |#4| (-710))) (-15 -1353 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1| |#4|)) (-15 -2738 ((-589 |#1|) |#1|)) (-15 -1234 (|#1| |#1| (-589 |#4|) (-589 (-710)))) (-15 -1234 (|#1| |#1| |#4| (-710))) (-15 -2203 ((-629 |#2|) (-629 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-629 (-523)) (-629 |#1|))) (-15 -1996 (|#4| |#1|)) (-15 -2898 ((-3 |#4| "failed") |#1|)) (-15 -1349 (|#1| |#1| (-589 |#4|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#4| |#1|)) (-15 -1349 (|#1| |#1| (-589 |#4|) (-589 |#2|))) (-15 -1349 (|#1| |#1| |#4| |#2|)) (-15 -1349 (|#1| |#1| (-589 |#1|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#1| |#1|)) (-15 -1349 (|#1| |#1| (-271 |#1|))) (-15 -1349 (|#1| |#1| (-589 (-271 |#1|)))) (-15 -3694 (|#1| |#2| |#3|)) (-15 -1234 (|#2| |#1| |#3|)) (-15 -1996 ((-523) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2267 (|#2| |#1|)) (-15 -2213 (|#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3716 (((-589 |#3|) $) 110)) (-3540 (((-1083 $) $ |#3|) 125) (((-1083 |#1|) $) 124)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 87 (|has| |#1| (-515)))) (-3950 (($ $) 88 (|has| |#1| (-515)))) (-3226 (((-108) $) 90 (|has| |#1| (-515)))) (-2862 (((-710) $) 112) (((-710) $ (-589 |#3|)) 111)) (-2999 (((-3 $ "failed") $ $) 19)) (-2319 (((-394 (-1083 $)) (-1083 $)) 100 (|has| |#1| (-840)))) (-3763 (($ $) 98 (|has| |#1| (-427)))) (-2105 (((-394 $) $) 97 (|has| |#1| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) 103 (|has| |#1| (-840)))) (-1640 (($) 17 T CONST)) (-2898 (((-3 |#1| "failed") $) 164) (((-3 (-383 (-523)) "failed") $) 162 (|has| |#1| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) 160 (|has| |#1| (-964 (-523)))) (((-3 |#3| "failed") $) 136)) (-1996 ((|#1| $) 165) (((-383 (-523)) $) 161 (|has| |#1| (-964 (-383 (-523))))) (((-523) $) 159 (|has| |#1| (-964 (-523)))) ((|#3| $) 135)) (-2210 (($ $ $ |#3|) 108 (|has| |#1| (-158)))) (-3142 (($ $) 154)) (-2203 (((-629 (-523)) (-629 $)) 134 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 133 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) 132) (((-629 |#1|) (-629 $)) 131)) (-4211 (((-3 $ "failed") $) 34)) (-2213 (($ $) 176 (|has| |#1| (-427))) (($ $ |#3|) 105 (|has| |#1| (-427)))) (-3127 (((-589 $) $) 109)) (-1330 (((-108) $) 96 (|has| |#1| (-840)))) (-2067 (($ $ |#1| |#2| $) 172)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 84 (-12 (|has| |#3| (-817 (-355))) (|has| |#1| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 83 (-12 (|has| |#3| (-817 (-523))) (|has| |#1| (-817 (-523)))))) (-3482 (((-108) $) 31)) (-3288 (((-710) $) 169)) (-3706 (($ (-1083 |#1|) |#3|) 117) (($ (-1083 $) |#3|) 116)) (-2738 (((-589 $) $) 126)) (-4060 (((-108) $) 152)) (-3694 (($ |#1| |#2|) 153) (($ $ |#3| (-710)) 119) (($ $ (-589 |#3|) (-589 (-710))) 118)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ |#3|) 120)) (-2140 ((|#2| $) 170) (((-710) $ |#3|) 122) (((-589 (-710)) $ (-589 |#3|)) 121)) (-3268 (($ $ $) 79 (|has| |#1| (-786)))) (-2644 (($ $ $) 78 (|has| |#1| (-786)))) (-3927 (($ (-1 |#2| |#2|) $) 171)) (-3015 (($ (-1 |#1| |#1|) $) 151)) (-1949 (((-3 |#3| "failed") $) 123)) (-3107 (($ $) 149)) (-3119 ((|#1| $) 148)) (-2012 (($ (-589 $)) 94 (|has| |#1| (-427))) (($ $ $) 93 (|has| |#1| (-427)))) (-3841 (((-1070) $) 9)) (-3818 (((-3 (-589 $) "failed") $) 114)) (-1973 (((-3 (-589 $) "failed") $) 115)) (-3719 (((-3 (-2 (|:| |var| |#3|) (|:| -3262 (-710))) "failed") $) 113)) (-2435 (((-1034) $) 10)) (-3084 (((-108) $) 166)) (-3095 ((|#1| $) 167)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 95 (|has| |#1| (-427)))) (-2056 (($ (-589 $)) 92 (|has| |#1| (-427))) (($ $ $) 91 (|has| |#1| (-427)))) (-1893 (((-394 (-1083 $)) (-1083 $)) 102 (|has| |#1| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) 101 (|has| |#1| (-840)))) (-3573 (((-394 $) $) 99 (|has| |#1| (-840)))) (-2469 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-515))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-515)))) (-1349 (($ $ (-589 (-271 $))) 145) (($ $ (-271 $)) 144) (($ $ $ $) 143) (($ $ (-589 $) (-589 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-589 |#3|) (-589 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-589 |#3|) (-589 $)) 138)) (-4053 (($ $ |#3|) 107 (|has| |#1| (-158)))) (-4024 (($ $ |#3|) 42) (($ $ (-589 |#3|)) 41) (($ $ |#3| (-710)) 40) (($ $ (-589 |#3|) (-589 (-710))) 39)) (-1487 ((|#2| $) 150) (((-710) $ |#3|) 130) (((-589 (-710)) $ (-589 |#3|)) 129)) (-3077 (((-823 (-355)) $) 82 (-12 (|has| |#3| (-564 (-823 (-355)))) (|has| |#1| (-564 (-823 (-355)))))) (((-823 (-523)) $) 81 (-12 (|has| |#3| (-564 (-823 (-523)))) (|has| |#1| (-564 (-823 (-523)))))) (((-499) $) 80 (-12 (|has| |#3| (-564 (-499))) (|has| |#1| (-564 (-499)))))) (-2267 ((|#1| $) 175 (|has| |#1| (-427))) (($ $ |#3|) 106 (|has| |#1| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) 104 (-2819 (|has| $ (-134)) (|has| |#1| (-840))))) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 163) (($ |#3|) 137) (($ $) 85 (|has| |#1| (-515))) (($ (-383 (-523))) 72 (-3255 (|has| |#1| (-964 (-383 (-523)))) (|has| |#1| (-37 (-383 (-523))))))) (-1639 (((-589 |#1|) $) 168)) (-1234 ((|#1| $ |#2|) 155) (($ $ |#3| (-710)) 128) (($ $ (-589 |#3|) (-589 (-710))) 127)) (-2301 (((-3 $ "failed") $) 73 (-3255 (-2819 (|has| $ (-134)) (|has| |#1| (-840))) (|has| |#1| (-134))))) (-1698 (((-710)) 29)) (-2656 (($ $ $ (-710)) 173 (|has| |#1| (-158)))) (-3842 (((-108) $ $) 89 (|has| |#1| (-515)))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ |#3|) 38) (($ $ (-589 |#3|)) 37) (($ $ |#3| (-710)) 36) (($ $ (-589 |#3|) (-589 (-710))) 35)) (-4078 (((-108) $ $) 76 (|has| |#1| (-786)))) (-4061 (((-108) $ $) 75 (|has| |#1| (-786)))) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 77 (|has| |#1| (-786)))) (-4052 (((-108) $ $) 74 (|has| |#1| (-786)))) (-4125 (($ $ |#1|) 156 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 (-523))) 158 (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) 157 (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
-(((-880 |#1| |#2| |#3|) (-129) (-973) (-732) (-786)) (T -880))
-((-2213 (*1 *1 *1) (-12 (-4 *1 (-880 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-427)))) (-1487 (*1 *2 *1 *3) (-12 (-4 *1 (-880 *4 *5 *3)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-786)) (-5 *2 (-710)))) (-1487 (*1 *2 *1 *3) (-12 (-5 *3 (-589 *6)) (-4 *1 (-880 *4 *5 *6)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 (-710))))) (-1234 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-710)) (-4 *1 (-880 *4 *5 *2)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *2 (-786)))) (-1234 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 *6)) (-5 *3 (-589 (-710))) (-4 *1 (-880 *4 *5 *6)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *6 (-786)))) (-2738 (*1 *2 *1) (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *1)) (-4 *1 (-880 *3 *4 *5)))) (-3540 (*1 *2 *1 *3) (-12 (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-786)) (-5 *2 (-1083 *1)) (-4 *1 (-880 *4 *5 *3)))) (-3540 (*1 *2 *1) (-12 (-4 *1 (-880 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-1083 *3)))) (-1949 (*1 *2 *1) (|partial| -12 (-4 *1 (-880 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *2 (-786)))) (-2140 (*1 *2 *1 *3) (-12 (-4 *1 (-880 *4 *5 *3)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-786)) (-5 *2 (-710)))) (-2140 (*1 *2 *1 *3) (-12 (-5 *3 (-589 *6)) (-4 *1 (-880 *4 *5 *6)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 (-710))))) (-1353 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-786)) (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-880 *4 *5 *3)))) (-3694 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-710)) (-4 *1 (-880 *4 *5 *2)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *2 (-786)))) (-3694 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 *6)) (-5 *3 (-589 (-710))) (-4 *1 (-880 *4 *5 *6)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *6 (-786)))) (-3706 (*1 *1 *2 *3) (-12 (-5 *2 (-1083 *4)) (-4 *4 (-973)) (-4 *1 (-880 *4 *5 *3)) (-4 *5 (-732)) (-4 *3 (-786)))) (-3706 (*1 *1 *2 *3) (-12 (-5 *2 (-1083 *1)) (-4 *1 (-880 *4 *5 *3)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-786)))) (-1973 (*1 *2 *1) (|partial| -12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *1)) (-4 *1 (-880 *3 *4 *5)))) (-3818 (*1 *2 *1) (|partial| -12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *1)) (-4 *1 (-880 *3 *4 *5)))) (-3719 (*1 *2 *1) (|partial| -12 (-4 *1 (-880 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-2 (|:| |var| *5) (|:| -3262 (-710)))))) (-2862 (*1 *2 *1) (-12 (-4 *1 (-880 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-710)))) (-2862 (*1 *2 *1 *3) (-12 (-5 *3 (-589 *6)) (-4 *1 (-880 *4 *5 *6)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-710)))) (-3716 (*1 *2 *1) (-12 (-4 *1 (-880 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *5)))) (-3127 (*1 *2 *1) (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *1)) (-4 *1 (-880 *3 *4 *5)))) (-2210 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-880 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *2 (-786)) (-4 *3 (-158)))) (-4053 (*1 *1 *1 *2) (-12 (-4 *1 (-880 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *2 (-786)) (-4 *3 (-158)))) (-2267 (*1 *1 *1 *2) (-12 (-4 *1 (-880 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *2 (-786)) (-4 *3 (-427)))) (-2213 (*1 *1 *1 *2) (-12 (-4 *1 (-880 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *2 (-786)) (-4 *3 (-427)))) (-3763 (*1 *1 *1) (-12 (-4 *1 (-880 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-427)))) (-2105 (*1 *2 *1) (-12 (-4 *3 (-427)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-394 *1)) (-4 *1 (-880 *3 *4 *5)))))
-(-13 (-831 |t#3|) (-302 |t#1| |t#2|) (-286 $) (-484 |t#3| |t#1|) (-484 |t#3| $) (-964 |t#3|) (-353 |t#1|) (-10 -8 (-15 -1487 ((-710) $ |t#3|)) (-15 -1487 ((-589 (-710)) $ (-589 |t#3|))) (-15 -1234 ($ $ |t#3| (-710))) (-15 -1234 ($ $ (-589 |t#3|) (-589 (-710)))) (-15 -2738 ((-589 $) $)) (-15 -3540 ((-1083 $) $ |t#3|)) (-15 -3540 ((-1083 |t#1|) $)) (-15 -1949 ((-3 |t#3| "failed") $)) (-15 -2140 ((-710) $ |t#3|)) (-15 -2140 ((-589 (-710)) $ (-589 |t#3|))) (-15 -1353 ((-2 (|:| -3429 $) (|:| -3143 $)) $ $ |t#3|)) (-15 -3694 ($ $ |t#3| (-710))) (-15 -3694 ($ $ (-589 |t#3|) (-589 (-710)))) (-15 -3706 ($ (-1083 |t#1|) |t#3|)) (-15 -3706 ($ (-1083 $) |t#3|)) (-15 -1973 ((-3 (-589 $) "failed") $)) (-15 -3818 ((-3 (-589 $) "failed") $)) (-15 -3719 ((-3 (-2 (|:| |var| |t#3|) (|:| -3262 (-710))) "failed") $)) (-15 -2862 ((-710) $)) (-15 -2862 ((-710) $ (-589 |t#3|))) (-15 -3716 ((-589 |t#3|) $)) (-15 -3127 ((-589 $) $)) (IF (|has| |t#1| (-786)) (-6 (-786)) |%noBranch|) (IF (|has| |t#1| (-564 (-499))) (IF (|has| |t#3| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-564 (-823 (-523)))) (IF (|has| |t#3| (-564 (-823 (-523)))) (-6 (-564 (-823 (-523)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-564 (-823 (-355)))) (IF (|has| |t#3| (-564 (-823 (-355)))) (-6 (-564 (-823 (-355)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-817 (-523))) (IF (|has| |t#3| (-817 (-523))) (-6 (-817 (-523))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-817 (-355))) (IF (|has| |t#3| (-817 (-355))) (-6 (-817 (-355))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-158)) (PROGN (-15 -2210 ($ $ $ |t#3|)) (-15 -4053 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-427)) (PROGN (-6 (-427)) (-15 -2267 ($ $ |t#3|)) (-15 -2213 ($ $)) (-15 -2213 ($ $ |t#3|)) (-15 -2105 ((-394 $) $)) (-15 -3763 ($ $))) |%noBranch|) (IF (|has| |t#1| (-6 -4246)) (-6 -4246) |%noBranch|) (IF (|has| |t#1| (-840)) (-6 (-840)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((-37 |#1|) |has| |#1| (-158)) ((-37 $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427))) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-383 (-523)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-158))) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-158))) ((-564 (-499)) -12 (|has| |#1| (-564 (-499))) (|has| |#3| (-564 (-499)))) ((-564 (-823 (-355))) -12 (|has| |#1| (-564 (-823 (-355)))) (|has| |#3| (-564 (-823 (-355))))) ((-564 (-823 (-523))) -12 (|has| |#1| (-564 (-823 (-523)))) (|has| |#3| (-564 (-823 (-523))))) ((-267) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427))) ((-286 $) . T) ((-302 |#1| |#2|) . T) ((-353 |#1|) . T) ((-387 |#1|) . T) ((-427) -3255 (|has| |#1| (-840)) (|has| |#1| (-427))) ((-484 |#3| |#1|) . T) ((-484 |#3| $) . T) ((-484 $ $) . T) ((-515) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427))) ((-591 #0#) |has| |#1| (-37 (-383 (-523)))) ((-591 |#1|) . T) ((-591 $) . T) ((-585 (-523)) |has| |#1| (-585 (-523))) ((-585 |#1|) . T) ((-657 #0#) |has| |#1| (-37 (-383 (-523)))) ((-657 |#1|) |has| |#1| (-158)) ((-657 $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427))) ((-666) . T) ((-786) |has| |#1| (-786)) ((-831 |#3|) . T) ((-817 (-355)) -12 (|has| |#1| (-817 (-355))) (|has| |#3| (-817 (-355)))) ((-817 (-523)) -12 (|has| |#1| (-817 (-523))) (|has| |#3| (-817 (-523)))) ((-840) |has| |#1| (-840)) ((-964 (-383 (-523))) |has| |#1| (-964 (-383 (-523)))) ((-964 (-523)) |has| |#1| (-964 (-523))) ((-964 |#1|) . T) ((-964 |#3|) . T) ((-979 #0#) |has| |#1| (-37 (-383 (-523)))) ((-979 |#1|) . T) ((-979 $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-158))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1127) |has| |#1| (-840)))
-((-3716 (((-589 |#2|) |#5|) 36)) (-3540 (((-1083 |#5|) |#5| |#2| (-1083 |#5|)) 23) (((-383 (-1083 |#5|)) |#5| |#2|) 16)) (-3706 ((|#5| (-383 (-1083 |#5|)) |#2|) 30)) (-1949 (((-3 |#2| "failed") |#5|) 65)) (-3818 (((-3 (-589 |#5|) "failed") |#5|) 59)) (-3372 (((-3 (-2 (|:| |val| |#5|) (|:| -3262 (-523))) "failed") |#5|) 47)) (-1973 (((-3 (-589 |#5|) "failed") |#5|) 61)) (-3719 (((-3 (-2 (|:| |var| |#2|) (|:| -3262 (-523))) "failed") |#5|) 51)))
-(((-881 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3716 ((-589 |#2|) |#5|)) (-15 -1949 ((-3 |#2| "failed") |#5|)) (-15 -3540 ((-383 (-1083 |#5|)) |#5| |#2|)) (-15 -3706 (|#5| (-383 (-1083 |#5|)) |#2|)) (-15 -3540 ((-1083 |#5|) |#5| |#2| (-1083 |#5|))) (-15 -1973 ((-3 (-589 |#5|) "failed") |#5|)) (-15 -3818 ((-3 (-589 |#5|) "failed") |#5|)) (-15 -3719 ((-3 (-2 (|:| |var| |#2|) (|:| -3262 (-523))) "failed") |#5|)) (-15 -3372 ((-3 (-2 (|:| |val| |#5|) (|:| -3262 (-523))) "failed") |#5|))) (-732) (-786) (-973) (-880 |#3| |#1| |#2|) (-13 (-339) (-10 -8 (-15 -3976 ($ |#4|)) (-15 -2164 (|#4| $)) (-15 -2171 (|#4| $))))) (T -881))
-((-3372 (*1 *2 *3) (|partial| -12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-973)) (-4 *7 (-880 *6 *4 *5)) (-5 *2 (-2 (|:| |val| *3) (|:| -3262 (-523)))) (-5 *1 (-881 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-339) (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $)) (-15 -2171 (*7 $))))))) (-3719 (*1 *2 *3) (|partial| -12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-973)) (-4 *7 (-880 *6 *4 *5)) (-5 *2 (-2 (|:| |var| *5) (|:| -3262 (-523)))) (-5 *1 (-881 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-339) (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $)) (-15 -2171 (*7 $))))))) (-3818 (*1 *2 *3) (|partial| -12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-973)) (-4 *7 (-880 *6 *4 *5)) (-5 *2 (-589 *3)) (-5 *1 (-881 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-339) (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $)) (-15 -2171 (*7 $))))))) (-1973 (*1 *2 *3) (|partial| -12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-973)) (-4 *7 (-880 *6 *4 *5)) (-5 *2 (-589 *3)) (-5 *1 (-881 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-339) (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $)) (-15 -2171 (*7 $))))))) (-3540 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1083 *3)) (-4 *3 (-13 (-339) (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $)) (-15 -2171 (*7 $))))) (-4 *7 (-880 *6 *5 *4)) (-4 *5 (-732)) (-4 *4 (-786)) (-4 *6 (-973)) (-5 *1 (-881 *5 *4 *6 *7 *3)))) (-3706 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-1083 *2))) (-4 *5 (-732)) (-4 *4 (-786)) (-4 *6 (-973)) (-4 *2 (-13 (-339) (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $)) (-15 -2171 (*7 $))))) (-5 *1 (-881 *5 *4 *6 *7 *2)) (-4 *7 (-880 *6 *5 *4)))) (-3540 (*1 *2 *3 *4) (-12 (-4 *5 (-732)) (-4 *4 (-786)) (-4 *6 (-973)) (-4 *7 (-880 *6 *5 *4)) (-5 *2 (-383 (-1083 *3))) (-5 *1 (-881 *5 *4 *6 *7 *3)) (-4 *3 (-13 (-339) (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $)) (-15 -2171 (*7 $))))))) (-1949 (*1 *2 *3) (|partial| -12 (-4 *4 (-732)) (-4 *5 (-973)) (-4 *6 (-880 *5 *4 *2)) (-4 *2 (-786)) (-5 *1 (-881 *4 *2 *5 *6 *3)) (-4 *3 (-13 (-339) (-10 -8 (-15 -3976 ($ *6)) (-15 -2164 (*6 $)) (-15 -2171 (*6 $))))))) (-3716 (*1 *2 *3) (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-973)) (-4 *7 (-880 *6 *4 *5)) (-5 *2 (-589 *5)) (-5 *1 (-881 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-339) (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $)) (-15 -2171 (*7 $))))))))
-(-10 -7 (-15 -3716 ((-589 |#2|) |#5|)) (-15 -1949 ((-3 |#2| "failed") |#5|)) (-15 -3540 ((-383 (-1083 |#5|)) |#5| |#2|)) (-15 -3706 (|#5| (-383 (-1083 |#5|)) |#2|)) (-15 -3540 ((-1083 |#5|) |#5| |#2| (-1083 |#5|))) (-15 -1973 ((-3 (-589 |#5|) "failed") |#5|)) (-15 -3818 ((-3 (-589 |#5|) "failed") |#5|)) (-15 -3719 ((-3 (-2 (|:| |var| |#2|) (|:| -3262 (-523))) "failed") |#5|)) (-15 -3372 ((-3 (-2 (|:| |val| |#5|) (|:| -3262 (-523))) "failed") |#5|)))
-((-3015 ((|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|) 24)))
-(((-882 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3015 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-732) (-786) (-973) (-880 |#3| |#1| |#2|) (-13 (-1016) (-10 -8 (-15 -4103 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-710)))))) (T -882))
-((-3015 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-786)) (-4 *8 (-973)) (-4 *6 (-732)) (-4 *2 (-13 (-1016) (-10 -8 (-15 -4103 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-710)))))) (-5 *1 (-882 *6 *7 *8 *5 *2)) (-4 *5 (-880 *8 *6 *7)))))
-(-10 -7 (-15 -3015 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3716 (((-589 (-1087)) $) 16)) (-3540 (((-1083 $) $ (-1087)) 21) (((-1083 |#1|) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-2862 (((-710) $) NIL) (((-710) $ (-589 (-1087))) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3763 (($ $) NIL (|has| |#1| (-427)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) 8) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-1087) "failed") $) NIL)) (-1996 ((|#1| $) NIL) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-1087) $) NIL)) (-2210 (($ $ $ (-1087)) NIL (|has| |#1| (-158)))) (-3142 (($ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) NIL) (((-629 |#1|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2213 (($ $) NIL (|has| |#1| (-427))) (($ $ (-1087)) NIL (|has| |#1| (-427)))) (-3127 (((-589 $) $) NIL)) (-1330 (((-108) $) NIL (|has| |#1| (-840)))) (-2067 (($ $ |#1| (-495 (-1087)) $) NIL)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| (-1087) (-817 (-355))) (|has| |#1| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| (-1087) (-817 (-523))) (|has| |#1| (-817 (-523)))))) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) NIL)) (-3706 (($ (-1083 |#1|) (-1087)) NIL) (($ (-1083 $) (-1087)) NIL)) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-495 (-1087))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ (-1087)) NIL)) (-2140 (((-495 (-1087)) $) NIL) (((-710) $ (-1087)) NIL) (((-589 (-710)) $ (-589 (-1087))) NIL)) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3927 (($ (-1 (-495 (-1087)) (-495 (-1087))) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-1949 (((-3 (-1087) "failed") $) 19)) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-3841 (((-1070) $) NIL)) (-3818 (((-3 (-589 $) "failed") $) NIL)) (-1973 (((-3 (-589 $) "failed") $) NIL)) (-3719 (((-3 (-2 (|:| |var| (-1087)) (|:| -3262 (-710))) "failed") $) NIL)) (-2669 (($ $ (-1087)) 29 (|has| |#1| (-37 (-383 (-523)))))) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) NIL)) (-3095 ((|#1| $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-427)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3573 (((-394 $) $) NIL (|has| |#1| (-840)))) (-2469 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-515)))) (-1349 (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-1087) |#1|) NIL) (($ $ (-589 (-1087)) (-589 |#1|)) NIL) (($ $ (-1087) $) NIL) (($ $ (-589 (-1087)) (-589 $)) NIL)) (-4053 (($ $ (-1087)) NIL (|has| |#1| (-158)))) (-4024 (($ $ (-1087)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL)) (-1487 (((-495 (-1087)) $) NIL) (((-710) $ (-1087)) NIL) (((-589 (-710)) $ (-589 (-1087))) NIL)) (-3077 (((-823 (-355)) $) NIL (-12 (|has| (-1087) (-564 (-823 (-355)))) (|has| |#1| (-564 (-823 (-355)))))) (((-823 (-523)) $) NIL (-12 (|has| (-1087) (-564 (-823 (-523)))) (|has| |#1| (-564 (-823 (-523)))))) (((-499) $) NIL (-12 (|has| (-1087) (-564 (-499))) (|has| |#1| (-564 (-499)))))) (-2267 ((|#1| $) NIL (|has| |#1| (-427))) (($ $ (-1087)) NIL (|has| |#1| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#1| (-840))))) (-3976 (((-794) $) 25) (($ (-523)) NIL) (($ |#1|) NIL) (($ (-1087)) 27) (($ (-383 (-523))) NIL (-3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-964 (-383 (-523)))))) (($ $) NIL (|has| |#1| (-515)))) (-1639 (((-589 |#1|) $) NIL)) (-1234 ((|#1| $ (-495 (-1087))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#1| (-840))) (|has| |#1| (-134))))) (-1698 (((-710)) NIL)) (-2656 (($ $ $ (-710)) NIL (|has| |#1| (-158)))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ (-1087)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL)) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-883 |#1|) (-13 (-880 |#1| (-495 (-1087)) (-1087)) (-10 -8 (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1087))) |%noBranch|))) (-973)) (T -883))
-((-2669 (*1 *1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-883 *3)) (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)))))
-(-13 (-880 |#1| (-495 (-1087)) (-1087)) (-10 -8 (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1087))) |%noBranch|)))
-((-2578 (((-2 (|:| -3262 (-710)) (|:| -2275 |#5|) (|:| |radicand| |#5|)) |#3| (-710)) 38)) (-3486 (((-2 (|:| -3262 (-710)) (|:| -2275 |#5|) (|:| |radicand| |#5|)) (-383 (-523)) (-710)) 34)) (-1580 (((-2 (|:| -3262 (-710)) (|:| -2275 |#4|) (|:| |radicand| (-589 |#4|))) |#4| (-710)) 54)) (-2254 (((-2 (|:| -3262 (-710)) (|:| -2275 |#5|) (|:| |radicand| |#5|)) |#5| (-710)) 64 (|has| |#3| (-427)))))
-(((-884 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2578 ((-2 (|:| -3262 (-710)) (|:| -2275 |#5|) (|:| |radicand| |#5|)) |#3| (-710))) (-15 -3486 ((-2 (|:| -3262 (-710)) (|:| -2275 |#5|) (|:| |radicand| |#5|)) (-383 (-523)) (-710))) (IF (|has| |#3| (-427)) (-15 -2254 ((-2 (|:| -3262 (-710)) (|:| -2275 |#5|) (|:| |radicand| |#5|)) |#5| (-710))) |%noBranch|) (-15 -1580 ((-2 (|:| -3262 (-710)) (|:| -2275 |#4|) (|:| |radicand| (-589 |#4|))) |#4| (-710)))) (-732) (-786) (-515) (-880 |#3| |#1| |#2|) (-13 (-339) (-10 -8 (-15 -2164 (|#4| $)) (-15 -2171 (|#4| $)) (-15 -3976 ($ |#4|))))) (T -884))
-((-1580 (*1 *2 *3 *4) (-12 (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-515)) (-4 *3 (-880 *7 *5 *6)) (-5 *2 (-2 (|:| -3262 (-710)) (|:| -2275 *3) (|:| |radicand| (-589 *3)))) (-5 *1 (-884 *5 *6 *7 *3 *8)) (-5 *4 (-710)) (-4 *8 (-13 (-339) (-10 -8 (-15 -2164 (*3 $)) (-15 -2171 (*3 $)) (-15 -3976 ($ *3))))))) (-2254 (*1 *2 *3 *4) (-12 (-4 *7 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-515)) (-4 *8 (-880 *7 *5 *6)) (-5 *2 (-2 (|:| -3262 (-710)) (|:| -2275 *3) (|:| |radicand| *3))) (-5 *1 (-884 *5 *6 *7 *8 *3)) (-5 *4 (-710)) (-4 *3 (-13 (-339) (-10 -8 (-15 -2164 (*8 $)) (-15 -2171 (*8 $)) (-15 -3976 ($ *8))))))) (-3486 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-523))) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-515)) (-4 *8 (-880 *7 *5 *6)) (-5 *2 (-2 (|:| -3262 (-710)) (|:| -2275 *9) (|:| |radicand| *9))) (-5 *1 (-884 *5 *6 *7 *8 *9)) (-5 *4 (-710)) (-4 *9 (-13 (-339) (-10 -8 (-15 -2164 (*8 $)) (-15 -2171 (*8 $)) (-15 -3976 ($ *8))))))) (-2578 (*1 *2 *3 *4) (-12 (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-515)) (-4 *7 (-880 *3 *5 *6)) (-5 *2 (-2 (|:| -3262 (-710)) (|:| -2275 *8) (|:| |radicand| *8))) (-5 *1 (-884 *5 *6 *3 *7 *8)) (-5 *4 (-710)) (-4 *8 (-13 (-339) (-10 -8 (-15 -2164 (*7 $)) (-15 -2171 (*7 $)) (-15 -3976 ($ *7))))))))
-(-10 -7 (-15 -2578 ((-2 (|:| -3262 (-710)) (|:| -2275 |#5|) (|:| |radicand| |#5|)) |#3| (-710))) (-15 -3486 ((-2 (|:| -3262 (-710)) (|:| -2275 |#5|) (|:| |radicand| |#5|)) (-383 (-523)) (-710))) (IF (|has| |#3| (-427)) (-15 -2254 ((-2 (|:| -3262 (-710)) (|:| -2275 |#5|) (|:| |radicand| |#5|)) |#5| (-710))) |%noBranch|) (-15 -1580 ((-2 (|:| -3262 (-710)) (|:| -2275 |#4|) (|:| |radicand| (-589 |#4|))) |#4| (-710))))
-((-3040 (((-1011 (-203)) $) 8)) (-3027 (((-1011 (-203)) $) 9)) (-2797 (((-589 (-589 (-874 (-203)))) $) 10)) (-3976 (((-794) $) 6)))
-(((-885) (-129)) (T -885))
-((-2797 (*1 *2 *1) (-12 (-4 *1 (-885)) (-5 *2 (-589 (-589 (-874 (-203))))))) (-3027 (*1 *2 *1) (-12 (-4 *1 (-885)) (-5 *2 (-1011 (-203))))) (-3040 (*1 *2 *1) (-12 (-4 *1 (-885)) (-5 *2 (-1011 (-203))))))
-(-13 (-563 (-794)) (-10 -8 (-15 -2797 ((-589 (-589 (-874 (-203)))) $)) (-15 -3027 ((-1011 (-203)) $)) (-15 -3040 ((-1011 (-203)) $))))
-(((-563 (-794)) . T))
-((-3887 (((-3 (-629 |#1|) "failed") |#2| (-852)) 15)))
-(((-886 |#1| |#2|) (-10 -7 (-15 -3887 ((-3 (-629 |#1|) "failed") |#2| (-852)))) (-515) (-599 |#1|)) (T -886))
-((-3887 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-852)) (-4 *5 (-515)) (-5 *2 (-629 *5)) (-5 *1 (-886 *5 *3)) (-4 *3 (-599 *5)))))
-(-10 -7 (-15 -3887 ((-3 (-629 |#1|) "failed") |#2| (-852))))
-((-1586 (((-888 |#2|) (-1 |#2| |#1| |#2|) (-888 |#1|) |#2|) 16)) (-1830 ((|#2| (-1 |#2| |#1| |#2|) (-888 |#1|) |#2|) 18)) (-3015 (((-888 |#2|) (-1 |#2| |#1|) (-888 |#1|)) 13)))
-(((-887 |#1| |#2|) (-10 -7 (-15 -1586 ((-888 |#2|) (-1 |#2| |#1| |#2|) (-888 |#1|) |#2|)) (-15 -1830 (|#2| (-1 |#2| |#1| |#2|) (-888 |#1|) |#2|)) (-15 -3015 ((-888 |#2|) (-1 |#2| |#1|) (-888 |#1|)))) (-1123) (-1123)) (T -887))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-888 *5)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-888 *6)) (-5 *1 (-887 *5 *6)))) (-1830 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-888 *5)) (-4 *5 (-1123)) (-4 *2 (-1123)) (-5 *1 (-887 *5 *2)))) (-1586 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-888 *6)) (-4 *6 (-1123)) (-4 *5 (-1123)) (-5 *2 (-888 *5)) (-5 *1 (-887 *6 *5)))))
-(-10 -7 (-15 -1586 ((-888 |#2|) (-1 |#2| |#1| |#2|) (-888 |#1|) |#2|)) (-15 -1830 (|#2| (-1 |#2| |#1| |#2|) (-888 |#1|) |#2|)) (-15 -3015 ((-888 |#2|) (-1 |#2| |#1|) (-888 |#1|))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-4159 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-786)))) (-2361 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4249))) (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| |#1| (-786))))) (-3400 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-786)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#1| $ (-523) |#1|) 17 (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) NIL (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-4091 (($ $) NIL (|has| $ (-6 -4249)))) (-4082 (($ $) NIL)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2231 (($ |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#1| $ (-523) |#1|) 16 (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) 14)) (-1894 (((-523) (-1 (-108) |#1|) $) NIL) (((-523) |#1| $) NIL (|has| |#1| (-1016))) (((-523) |#1| $ (-523)) NIL (|has| |#1| (-1016)))) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-2348 (($ (-710) |#1|) 13)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) 10 (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-3123 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-786)))) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-3334 (($ |#1| $ (-523)) NIL) (($ $ $ (-523)) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-3879 ((|#1| $) NIL (|has| (-523) (-786)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2408 (($ $ |#1|) 12 (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) 11)) (-1502 ((|#1| $ (-523) |#1|) NIL) ((|#1| $ (-523)) 15) (($ $ (-1136 (-523))) NIL)) (-3725 (($ $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2580 (($ $ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) NIL)) (-2785 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-589 $)) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-1271 (((-710) $) 8 (|has| $ (-6 -4248)))))
-(((-888 |#1|) (-19 |#1|) (-1123)) (T -888))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 |#1|) . T) ((-981 |#1|) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-3427 (($ |#1|) 17) (($ $ |#1|) 20)) (-3115 (($ |#1|) 18) (($ $ |#1|) 21)) (-3798 (($) NIL T CONST)) (-4163 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-2824 (((-108) $) NIL)) (-1560 (($ |#1| |#1| |#1| |#1|) 8)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 16)) (-2047 (((-1036) $) NIL)) (-4132 ((|#1| $ |#1|) 24) (((-774 |#1|) $ (-774 |#1|)) 32)) (-3228 (($ $ $) NIL)) (-3619 (($ $ $) NIL)) (-3022 (((-796) $) 39)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4197 (($) 9 T CONST)) (-4096 (((-108) $ $) 44)) (-4173 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ $ $) 14)))
+(((-660 |#1|) (-13 (-450) (-10 -8 (-15 -1560 ($ |#1| |#1| |#1| |#1|)) (-15 -3427 ($ |#1|)) (-15 -3115 ($ |#1|)) (-15 -4163 ($)) (-15 -3427 ($ $ |#1|)) (-15 -3115 ($ $ |#1|)) (-15 -4163 ($ $)) (-15 -4132 (|#1| $ |#1|)) (-15 -4132 ((-774 |#1|) $ (-774 |#1|))))) (-341)) (T -660))
+((-1560 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341)))) (-3427 (*1 *1 *2) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341)))) (-3115 (*1 *1 *2) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341)))) (-4163 (*1 *1) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341)))) (-3427 (*1 *1 *1 *2) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341)))) (-3115 (*1 *1 *1 *2) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341)))) (-4163 (*1 *1 *1) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341)))) (-4132 (*1 *2 *1 *2) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341)))) (-4132 (*1 *2 *1 *2) (-12 (-5 *2 (-774 *3)) (-4 *3 (-341)) (-5 *1 (-660 *3)))))
+(-13 (-450) (-10 -8 (-15 -1560 ($ |#1| |#1| |#1| |#1|)) (-15 -3427 ($ |#1|)) (-15 -3115 ($ |#1|)) (-15 -4163 ($)) (-15 -3427 ($ $ |#1|)) (-15 -3115 ($ $ |#1|)) (-15 -4163 ($ $)) (-15 -4132 (|#1| $ |#1|)) (-15 -4132 ((-774 |#1|) $ (-774 |#1|)))))
+((-3433 (($ $ (-854)) 12)) (-3447 (($ $ (-854)) 13)) (** (($ $ (-854)) 10)))
+(((-661 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-854))) (-15 -3447 (|#1| |#1| (-854))) (-15 -3433 (|#1| |#1| (-854)))) (-662)) (T -661))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-854))) (-15 -3447 (|#1| |#1| (-854))) (-15 -3433 (|#1| |#1| (-854))))
+((-3008 (((-108) $ $) 7)) (-3433 (($ $ (-854)) 15)) (-3447 (($ $ (-854)) 14)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4096 (((-108) $ $) 6)) (** (($ $ (-854)) 13)) (* (($ $ $) 16)))
+(((-662) (-131)) (T -662))
+((* (*1 *1 *1 *1) (-4 *1 (-662))) (-3433 (*1 *1 *1 *2) (-12 (-4 *1 (-662)) (-5 *2 (-854)))) (-3447 (*1 *1 *1 *2) (-12 (-4 *1 (-662)) (-5 *2 (-854)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-662)) (-5 *2 (-854)))))
+(-13 (-1018) (-10 -8 (-15 * ($ $ $)) (-15 -3433 ($ $ (-854))) (-15 -3447 ($ $ (-854))) (-15 ** ($ $ (-854)))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-3433 (($ $ (-854)) NIL) (($ $ (-712)) 17)) (-2824 (((-108) $) 10)) (-3447 (($ $ (-854)) NIL) (($ $ (-712)) 18)) (** (($ $ (-854)) NIL) (($ $ (-712)) 15)))
+(((-663 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-712))) (-15 -3447 (|#1| |#1| (-712))) (-15 -3433 (|#1| |#1| (-712))) (-15 -2824 ((-108) |#1|)) (-15 ** (|#1| |#1| (-854))) (-15 -3447 (|#1| |#1| (-854))) (-15 -3433 (|#1| |#1| (-854)))) (-664)) (T -663))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-712))) (-15 -3447 (|#1| |#1| (-712))) (-15 -3433 (|#1| |#1| (-712))) (-15 -2824 ((-108) |#1|)) (-15 ** (|#1| |#1| (-854))) (-15 -3447 (|#1| |#1| (-854))) (-15 -3433 (|#1| |#1| (-854))))
+((-3008 (((-108) $ $) 7)) (-3057 (((-3 $ "failed") $) 17)) (-3433 (($ $ (-854)) 15) (($ $ (-712)) 22)) (-4163 (((-3 $ "failed") $) 19)) (-2824 (((-108) $) 23)) (-1838 (((-3 $ "failed") $) 18)) (-3447 (($ $ (-854)) 14) (($ $ (-712)) 21)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4197 (($) 24 T CONST)) (-4096 (((-108) $ $) 6)) (** (($ $ (-854)) 13) (($ $ (-712)) 20)) (* (($ $ $) 16)))
+(((-664) (-131)) (T -664))
+((-4197 (*1 *1) (-4 *1 (-664))) (-2824 (*1 *2 *1) (-12 (-4 *1 (-664)) (-5 *2 (-108)))) (-3433 (*1 *1 *1 *2) (-12 (-4 *1 (-664)) (-5 *2 (-712)))) (-3447 (*1 *1 *1 *2) (-12 (-4 *1 (-664)) (-5 *2 (-712)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-664)) (-5 *2 (-712)))) (-4163 (*1 *1 *1) (|partial| -4 *1 (-664))) (-1838 (*1 *1 *1) (|partial| -4 *1 (-664))) (-3057 (*1 *1 *1) (|partial| -4 *1 (-664))))
+(-13 (-662) (-10 -8 (-15 (-4197) ($) -2058) (-15 -2824 ((-108) $)) (-15 -3433 ($ $ (-712))) (-15 -3447 ($ $ (-712))) (-15 ** ($ $ (-712))) (-15 -4163 ((-3 $ "failed") $)) (-15 -1838 ((-3 $ "failed") $)) (-15 -3057 ((-3 $ "failed") $))))
+(((-97) . T) ((-565 (-796)) . T) ((-662) . T) ((-1018) . T))
+((-3032 (((-712)) 35)) (-1251 (((-3 (-525) "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-3528 (((-525) $) NIL) (((-385 (-525)) $) NIL) ((|#2| $) 22)) (-1227 (($ |#3|) NIL) (((-3 $ "failed") (-385 |#3|)) 45)) (-4163 (((-3 $ "failed") $) 65)) (-3377 (($) 39)) (-2771 ((|#2| $) 20)) (-3857 (($) 17)) (-3266 (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-1 |#2| |#2|)) 53) (($ $ (-591 (-1089)) (-591 (-712))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089)) NIL) (($ $ (-712)) NIL) (($ $) NIL)) (-1244 (((-631 |#2|) (-1171 $) (-1 |#2| |#2|)) 60)) (-1408 (((-1171 |#2|) $) NIL) (($ (-1171 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-3806 ((|#3| $) 32)) (-4003 (((-1171 $)) 29)))
+(((-665 |#1| |#2| |#3|) (-10 -8 (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -3377 (|#1|)) (-15 -3032 ((-712))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -1244 ((-631 |#2|) (-1171 |#1|) (-1 |#2| |#2|))) (-15 -1227 ((-3 |#1| "failed") (-385 |#3|))) (-15 -1408 (|#1| |#3|)) (-15 -1227 (|#1| |#3|)) (-15 -3857 (|#1|)) (-15 -3528 (|#2| |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -1408 (|#3| |#1|)) (-15 -1408 (|#1| (-1171 |#2|))) (-15 -1408 ((-1171 |#2|) |#1|)) (-15 -4003 ((-1171 |#1|))) (-15 -3806 (|#3| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -4163 ((-3 |#1| "failed") |#1|))) (-666 |#2| |#3|) (-160) (-1147 |#2|)) (T -665))
+((-3032 (*1 *2) (-12 (-4 *4 (-160)) (-4 *5 (-1147 *4)) (-5 *2 (-712)) (-5 *1 (-665 *3 *4 *5)) (-4 *3 (-666 *4 *5)))))
+(-10 -8 (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -3377 (|#1|)) (-15 -3032 ((-712))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -1244 ((-631 |#2|) (-1171 |#1|) (-1 |#2| |#2|))) (-15 -1227 ((-3 |#1| "failed") (-385 |#3|))) (-15 -1408 (|#1| |#3|)) (-15 -1227 (|#1| |#3|)) (-15 -3857 (|#1|)) (-15 -3528 (|#2| |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -1408 (|#3| |#1|)) (-15 -1408 (|#1| (-1171 |#2|))) (-15 -1408 ((-1171 |#2|) |#1|)) (-15 -4003 ((-1171 |#1|))) (-15 -3806 (|#3| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -4163 ((-3 |#1| "failed") |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 93 (|has| |#1| (-341)))) (-3706 (($ $) 94 (|has| |#1| (-341)))) (-1715 (((-108) $) 96 (|has| |#1| (-341)))) (-2796 (((-631 |#1|) (-1171 $)) 46) (((-631 |#1|)) 61)) (-2569 ((|#1| $) 52)) (-3734 (((-1099 (-854) (-712)) (-525)) 147 (|has| |#1| (-327)))) (-2157 (((-3 $ "failed") $ $) 19)) (-1291 (($ $) 113 (|has| |#1| (-341)))) (-2827 (((-396 $) $) 114 (|has| |#1| (-341)))) (-1947 (((-108) $ $) 104 (|has| |#1| (-341)))) (-3032 (((-712)) 87 (|has| |#1| (-346)))) (-3798 (($) 17 T CONST)) (-1251 (((-3 (-525) "failed") $) 169 (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) 167 (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) 166)) (-3528 (((-525) $) 170 (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) 168 (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) 165)) (-4171 (($ (-1171 |#1|) (-1171 $)) 48) (($ (-1171 |#1|)) 64)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) 153 (|has| |#1| (-327)))) (-2129 (($ $ $) 108 (|has| |#1| (-341)))) (-3922 (((-631 |#1|) $ (-1171 $)) 53) (((-631 |#1|) $) 59)) (-3305 (((-631 (-525)) (-631 $)) 164 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 163 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) 162) (((-631 |#1|) (-631 $)) 161)) (-1227 (($ |#2|) 158) (((-3 $ "failed") (-385 |#2|)) 155 (|has| |#1| (-341)))) (-4163 (((-3 $ "failed") $) 34)) (-4073 (((-854)) 54)) (-3377 (($) 90 (|has| |#1| (-346)))) (-2110 (($ $ $) 107 (|has| |#1| (-341)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 102 (|has| |#1| (-341)))) (-3944 (($) 149 (|has| |#1| (-327)))) (-4104 (((-108) $) 150 (|has| |#1| (-327)))) (-2299 (($ $ (-712)) 141 (|has| |#1| (-327))) (($ $) 140 (|has| |#1| (-327)))) (-2744 (((-108) $) 115 (|has| |#1| (-341)))) (-3873 (((-854) $) 152 (|has| |#1| (-327))) (((-774 (-854)) $) 138 (|has| |#1| (-327)))) (-2824 (((-108) $) 31)) (-2771 ((|#1| $) 51)) (-2085 (((-3 $ "failed") $) 142 (|has| |#1| (-327)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 111 (|has| |#1| (-341)))) (-1382 ((|#2| $) 44 (|has| |#1| (-341)))) (-3016 (((-854) $) 89 (|has| |#1| (-346)))) (-1223 ((|#2| $) 156)) (-1356 (($ (-591 $)) 100 (|has| |#1| (-341))) (($ $ $) 99 (|has| |#1| (-341)))) (-2339 (((-1072) $) 9)) (-1622 (($ $) 116 (|has| |#1| (-341)))) (-3506 (($) 143 (|has| |#1| (-327)) CONST)) (-2226 (($ (-854)) 88 (|has| |#1| (-346)))) (-2047 (((-1036) $) 10)) (-3857 (($) 160)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 101 (|has| |#1| (-341)))) (-1399 (($ (-591 $)) 98 (|has| |#1| (-341))) (($ $ $) 97 (|has| |#1| (-341)))) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) 146 (|has| |#1| (-327)))) (-1348 (((-396 $) $) 112 (|has| |#1| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 109 (|has| |#1| (-341)))) (-2089 (((-3 $ "failed") $ $) 92 (|has| |#1| (-341)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 103 (|has| |#1| (-341)))) (-1712 (((-712) $) 105 (|has| |#1| (-341)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 106 (|has| |#1| (-341)))) (-2976 ((|#1| (-1171 $)) 47) ((|#1|) 60)) (-2953 (((-712) $) 151 (|has| |#1| (-327))) (((-3 (-712) "failed") $ $) 139 (|has| |#1| (-327)))) (-3266 (($ $) 137 (-3321 (-1213 (|has| |#1| (-213)) (|has| |#1| (-341))) (|has| |#1| (-327)))) (($ $ (-712)) 135 (-3321 (-1213 (|has| |#1| (-213)) (|has| |#1| (-341))) (|has| |#1| (-327)))) (($ $ (-1089)) 133 (-1213 (|has| |#1| (-833 (-1089))) (|has| |#1| (-341)))) (($ $ (-591 (-1089))) 132 (-1213 (|has| |#1| (-833 (-1089))) (|has| |#1| (-341)))) (($ $ (-1089) (-712)) 131 (-1213 (|has| |#1| (-833 (-1089))) (|has| |#1| (-341)))) (($ $ (-591 (-1089)) (-591 (-712))) 130 (-1213 (|has| |#1| (-833 (-1089))) (|has| |#1| (-341)))) (($ $ (-1 |#1| |#1|) (-712)) 123 (|has| |#1| (-341))) (($ $ (-1 |#1| |#1|)) 122 (|has| |#1| (-341)))) (-1244 (((-631 |#1|) (-1171 $) (-1 |#1| |#1|)) 154 (|has| |#1| (-341)))) (-1478 ((|#2|) 159)) (-2616 (($) 148 (|has| |#1| (-327)))) (-3572 (((-1171 |#1|) $ (-1171 $)) 50) (((-631 |#1|) (-1171 $) (-1171 $)) 49) (((-1171 |#1|) $) 66) (((-631 |#1|) (-1171 $)) 65)) (-1408 (((-1171 |#1|) $) 63) (($ (-1171 |#1|)) 62) ((|#2| $) 171) (($ |#2|) 157)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) 145 (|has| |#1| (-327)))) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 37) (($ $) 91 (|has| |#1| (-341))) (($ (-385 (-525))) 86 (-3321 (|has| |#1| (-341)) (|has| |#1| (-966 (-385 (-525))))))) (-1437 (($ $) 144 (|has| |#1| (-327))) (((-3 $ "failed") $) 43 (|has| |#1| (-136)))) (-3806 ((|#2| $) 45)) (-2128 (((-712)) 29)) (-4003 (((-1171 $)) 67)) (-2495 (((-108) $ $) 95 (|has| |#1| (-341)))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 117 (|has| |#1| (-341)))) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $) 136 (-3321 (-1213 (|has| |#1| (-213)) (|has| |#1| (-341))) (|has| |#1| (-327)))) (($ $ (-712)) 134 (-3321 (-1213 (|has| |#1| (-213)) (|has| |#1| (-341))) (|has| |#1| (-327)))) (($ $ (-1089)) 129 (-1213 (|has| |#1| (-833 (-1089))) (|has| |#1| (-341)))) (($ $ (-591 (-1089))) 128 (-1213 (|has| |#1| (-833 (-1089))) (|has| |#1| (-341)))) (($ $ (-1089) (-712)) 127 (-1213 (|has| |#1| (-833 (-1089))) (|has| |#1| (-341)))) (($ $ (-591 (-1089)) (-591 (-712))) 126 (-1213 (|has| |#1| (-833 (-1089))) (|has| |#1| (-341)))) (($ $ (-1 |#1| |#1|) (-712)) 125 (|has| |#1| (-341))) (($ $ (-1 |#1| |#1|)) 124 (|has| |#1| (-341)))) (-4096 (((-108) $ $) 6)) (-4173 (($ $ $) 121 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 118 (|has| |#1| (-341)))) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38) (($ (-385 (-525)) $) 120 (|has| |#1| (-341))) (($ $ (-385 (-525))) 119 (|has| |#1| (-341)))))
+(((-666 |#1| |#2|) (-131) (-160) (-1147 |t#1|)) (T -666))
+((-3857 (*1 *1) (-12 (-4 *2 (-160)) (-4 *1 (-666 *2 *3)) (-4 *3 (-1147 *2)))) (-1478 (*1 *2) (-12 (-4 *1 (-666 *3 *2)) (-4 *3 (-160)) (-4 *2 (-1147 *3)))) (-1227 (*1 *1 *2) (-12 (-4 *3 (-160)) (-4 *1 (-666 *3 *2)) (-4 *2 (-1147 *3)))) (-1408 (*1 *1 *2) (-12 (-4 *3 (-160)) (-4 *1 (-666 *3 *2)) (-4 *2 (-1147 *3)))) (-1223 (*1 *2 *1) (-12 (-4 *1 (-666 *3 *2)) (-4 *3 (-160)) (-4 *2 (-1147 *3)))) (-1227 (*1 *1 *2) (|partial| -12 (-5 *2 (-385 *4)) (-4 *4 (-1147 *3)) (-4 *3 (-341)) (-4 *3 (-160)) (-4 *1 (-666 *3 *4)))) (-1244 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-341)) (-4 *1 (-666 *5 *6)) (-4 *5 (-160)) (-4 *6 (-1147 *5)) (-5 *2 (-631 *5)))))
+(-13 (-387 |t#1| |t#2|) (-160) (-566 |t#2|) (-389 |t#1|) (-355 |t#1|) (-10 -8 (-15 -3857 ($)) (-15 -1478 (|t#2|)) (-15 -1227 ($ |t#2|)) (-15 -1408 ($ |t#2|)) (-15 -1223 (|t#2| $)) (IF (|has| |t#1| (-346)) (-6 (-346)) |%noBranch|) (IF (|has| |t#1| (-341)) (PROGN (-6 (-341)) (-6 (-211 |t#1|)) (-15 -1227 ((-3 $ "failed") (-385 |t#2|))) (-15 -1244 ((-631 |t#1|) (-1171 $) (-1 |t#1| |t#1|)))) |%noBranch|) (IF (|has| |t#1| (-327)) (-6 (-327)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-37 |#1|) . T) ((-37 $) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-97) . T) ((-107 #0# #0#) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-126) . T) ((-136) -3321 (|has| |#1| (-327)) (|has| |#1| (-136))) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) . T) ((-566 |#2|) . T) ((-211 |#1|) |has| |#1| (-341)) ((-213) -3321 (|has| |#1| (-327)) (-12 (|has| |#1| (-213)) (|has| |#1| (-341)))) ((-223) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-269) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-286) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-341) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-380) |has| |#1| (-327)) ((-346) -3321 (|has| |#1| (-346)) (|has| |#1| (-327))) ((-327) |has| |#1| (-327)) ((-348 |#1| |#2|) . T) ((-387 |#1| |#2|) . T) ((-355 |#1|) . T) ((-389 |#1|) . T) ((-429) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-517) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-593 #0#) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-593 |#1|) . T) ((-593 $) . T) ((-587 (-525)) |has| |#1| (-587 (-525))) ((-587 |#1|) . T) ((-659 #0#) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-659 |#1|) . T) ((-659 $) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-668) . T) ((-833 (-1089)) -12 (|has| |#1| (-341)) (|has| |#1| (-833 (-1089)))) ((-853) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-966 (-385 (-525))) |has| |#1| (-966 (-385 (-525)))) ((-966 (-525)) |has| |#1| (-966 (-525))) ((-966 |#1|) . T) ((-981 #0#) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))) ((-981 |#1|) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1065) |has| |#1| (-327)) ((-1129) -3321 (|has| |#1| (-327)) (|has| |#1| (-341))))
+((-3798 (($) 14)) (-4163 (((-3 $ "failed") $) 16)) (-2824 (((-108) $) 13)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) 9)) (** (($ $ (-854)) NIL) (($ $ (-712)) 20)))
+(((-667 |#1|) (-10 -8 (-15 -4163 ((-3 |#1| "failed") |#1|)) (-15 -3710 (|#1| |#1| (-712))) (-15 ** (|#1| |#1| (-712))) (-15 -2824 ((-108) |#1|)) (-15 -3798 (|#1|)) (-15 -3710 (|#1| |#1| (-854))) (-15 ** (|#1| |#1| (-854)))) (-668)) (T -667))
+NIL
+(-10 -8 (-15 -4163 ((-3 |#1| "failed") |#1|)) (-15 -3710 (|#1| |#1| (-712))) (-15 ** (|#1| |#1| (-712))) (-15 -2824 ((-108) |#1|)) (-15 -3798 (|#1|)) (-15 -3710 (|#1| |#1| (-854))) (-15 ** (|#1| |#1| (-854))))
+((-3008 (((-108) $ $) 7)) (-3798 (($) 20 T CONST)) (-4163 (((-3 $ "failed") $) 16)) (-2824 (((-108) $) 19)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-3710 (($ $ (-854)) 13) (($ $ (-712)) 17)) (-4197 (($) 21 T CONST)) (-4096 (((-108) $ $) 6)) (** (($ $ (-854)) 14) (($ $ (-712)) 18)) (* (($ $ $) 15)))
+(((-668) (-131)) (T -668))
+((-4197 (*1 *1) (-4 *1 (-668))) (-3798 (*1 *1) (-4 *1 (-668))) (-2824 (*1 *2 *1) (-12 (-4 *1 (-668)) (-5 *2 (-108)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-668)) (-5 *2 (-712)))) (-3710 (*1 *1 *1 *2) (-12 (-4 *1 (-668)) (-5 *2 (-712)))) (-4163 (*1 *1 *1) (|partial| -4 *1 (-668))))
+(-13 (-1030) (-10 -8 (-15 (-4197) ($) -2058) (-15 -3798 ($) -2058) (-15 -2824 ((-108) $)) (-15 ** ($ $ (-712))) (-15 -3710 ($ $ (-712))) (-15 -4163 ((-3 $ "failed") $))))
+(((-97) . T) ((-565 (-796)) . T) ((-1030) . T) ((-1018) . T))
+((-1871 (((-2 (|:| -1572 (-396 |#2|)) (|:| |special| (-396 |#2|))) |#2| (-1 |#2| |#2|)) 38)) (-2787 (((-2 (|:| -1572 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-2221 ((|#2| (-385 |#2|) (-1 |#2| |#2|)) 13)) (-3702 (((-2 (|:| |poly| |#2|) (|:| -1572 (-385 |#2|)) (|:| |special| (-385 |#2|))) (-385 |#2|) (-1 |#2| |#2|)) 47)))
+(((-669 |#1| |#2|) (-10 -7 (-15 -2787 ((-2 (|:| -1572 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -1871 ((-2 (|:| -1572 (-396 |#2|)) (|:| |special| (-396 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -2221 (|#2| (-385 |#2|) (-1 |#2| |#2|))) (-15 -3702 ((-2 (|:| |poly| |#2|) (|:| -1572 (-385 |#2|)) (|:| |special| (-385 |#2|))) (-385 |#2|) (-1 |#2| |#2|)))) (-341) (-1147 |#1|)) (T -669))
+((-3702 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-341)) (-5 *2 (-2 (|:| |poly| *6) (|:| -1572 (-385 *6)) (|:| |special| (-385 *6)))) (-5 *1 (-669 *5 *6)) (-5 *3 (-385 *6)))) (-2221 (*1 *2 *3 *4) (-12 (-5 *3 (-385 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1147 *5)) (-5 *1 (-669 *5 *2)) (-4 *5 (-341)))) (-1871 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1147 *5)) (-4 *5 (-341)) (-5 *2 (-2 (|:| -1572 (-396 *3)) (|:| |special| (-396 *3)))) (-5 *1 (-669 *5 *3)))) (-2787 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1147 *5)) (-4 *5 (-341)) (-5 *2 (-2 (|:| -1572 *3) (|:| |special| *3))) (-5 *1 (-669 *5 *3)))))
+(-10 -7 (-15 -2787 ((-2 (|:| -1572 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -1871 ((-2 (|:| -1572 (-396 |#2|)) (|:| |special| (-396 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -2221 (|#2| (-385 |#2|) (-1 |#2| |#2|))) (-15 -3702 ((-2 (|:| |poly| |#2|) (|:| -1572 (-385 |#2|)) (|:| |special| (-385 |#2|))) (-385 |#2|) (-1 |#2| |#2|))))
+((-2872 ((|#7| (-591 |#5|) |#6|) NIL)) (-1340 ((|#7| (-1 |#5| |#4|) |#6|) 26)))
+(((-670 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -1340 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -2872 (|#7| (-591 |#5|) |#6|))) (-788) (-734) (-734) (-975) (-975) (-882 |#4| |#2| |#1|) (-882 |#5| |#3| |#1|)) (T -670))
+((-2872 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *9)) (-4 *9 (-975)) (-4 *5 (-788)) (-4 *6 (-734)) (-4 *8 (-975)) (-4 *2 (-882 *9 *7 *5)) (-5 *1 (-670 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-734)) (-4 *4 (-882 *8 *6 *5)))) (-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-975)) (-4 *9 (-975)) (-4 *5 (-788)) (-4 *6 (-734)) (-4 *2 (-882 *9 *7 *5)) (-5 *1 (-670 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-734)) (-4 *4 (-882 *8 *6 *5)))))
+(-10 -7 (-15 -1340 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -2872 (|#7| (-591 |#5|) |#6|)))
+((-1340 ((|#7| (-1 |#2| |#1|) |#6|) 28)))
+(((-671 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -1340 (|#7| (-1 |#2| |#1|) |#6|))) (-788) (-788) (-734) (-734) (-975) (-882 |#5| |#3| |#1|) (-882 |#5| |#4| |#2|)) (T -671))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-788)) (-4 *6 (-788)) (-4 *7 (-734)) (-4 *9 (-975)) (-4 *2 (-882 *9 *8 *6)) (-5 *1 (-671 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-734)) (-4 *4 (-882 *9 *7 *5)))))
+(-10 -7 (-15 -1340 (|#7| (-1 |#2| |#1|) |#6|)))
+((-1348 (((-396 |#4|) |#4|) 41)))
+(((-672 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1348 ((-396 |#4|) |#4|))) (-734) (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $)) (-15 -2037 ((-3 $ "failed") (-1089))))) (-286) (-882 (-885 |#3|) |#1| |#2|)) (T -672))
+((-1348 (*1 *2 *3) (-12 (-4 *4 (-734)) (-4 *5 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $)) (-15 -2037 ((-3 $ "failed") (-1089)))))) (-4 *6 (-286)) (-5 *2 (-396 *3)) (-5 *1 (-672 *4 *5 *6 *3)) (-4 *3 (-882 (-885 *6) *4 *5)))))
+(-10 -7 (-15 -1348 ((-396 |#4|) |#4|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1507 (((-591 (-798 |#1|)) $) NIL)) (-1312 (((-1085 $) $ (-798 |#1|)) NIL) (((-1085 |#2|) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#2| (-517)))) (-3706 (($ $) NIL (|has| |#2| (-517)))) (-1715 (((-108) $) NIL (|has| |#2| (-517)))) (-4090 (((-712) $) NIL) (((-712) $ (-591 (-798 |#1|))) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1291 (($ $) NIL (|has| |#2| (-429)))) (-2827 (((-396 $) $) NIL (|has| |#2| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#2| "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#2| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) NIL (|has| |#2| (-966 (-525)))) (((-3 (-798 |#1|) "failed") $) NIL)) (-3528 ((|#2| $) NIL) (((-385 (-525)) $) NIL (|has| |#2| (-966 (-385 (-525))))) (((-525) $) NIL (|has| |#2| (-966 (-525)))) (((-798 |#1|) $) NIL)) (-2805 (($ $ $ (-798 |#1|)) NIL (|has| |#2| (-160)))) (-1710 (($ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) NIL) (((-631 |#2|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3208 (($ $) NIL (|has| |#2| (-429))) (($ $ (-798 |#1|)) NIL (|has| |#2| (-429)))) (-1695 (((-591 $) $) NIL)) (-2744 (((-108) $) NIL (|has| |#2| (-842)))) (-2056 (($ $ |#2| (-497 (-798 |#1|)) $) NIL)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| (-798 |#1|) (-819 (-357))) (|has| |#2| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| (-798 |#1|) (-819 (-525))) (|has| |#2| (-819 (-525)))))) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) NIL)) (-1493 (($ (-1085 |#2|) (-798 |#1|)) NIL) (($ (-1085 $) (-798 |#1|)) NIL)) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-1480 (($ |#2| (-497 (-798 |#1|))) NIL) (($ $ (-798 |#1|) (-712)) NIL) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ (-798 |#1|)) NIL)) (-2624 (((-497 (-798 |#1|)) $) NIL) (((-712) $ (-798 |#1|)) NIL) (((-591 (-712)) $ (-591 (-798 |#1|))) NIL)) (-3741 (($ $ $) NIL (|has| |#2| (-788)))) (-2478 (($ $ $) NIL (|has| |#2| (-788)))) (-4015 (($ (-1 (-497 (-798 |#1|)) (-497 (-798 |#1|))) $) NIL)) (-1340 (($ (-1 |#2| |#2|) $) NIL)) (-2254 (((-3 (-798 |#1|) "failed") $) NIL)) (-1661 (($ $) NIL)) (-1678 ((|#2| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#2| (-429))) (($ $ $) NIL (|has| |#2| (-429)))) (-2339 (((-1072) $) NIL)) (-3376 (((-3 (-591 $) "failed") $) NIL)) (-2010 (((-3 (-591 $) "failed") $) NIL)) (-2292 (((-3 (-2 (|:| |var| (-798 |#1|)) (|:| -2008 (-712))) "failed") $) NIL)) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) NIL)) (-1646 ((|#2| $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#2| (-429)))) (-1399 (($ (-591 $)) NIL (|has| |#2| (-429))) (($ $ $) NIL (|has| |#2| (-429)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1348 (((-396 $) $) NIL (|has| |#2| (-842)))) (-2089 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-517))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-517)))) (-4132 (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-798 |#1|) |#2|) NIL) (($ $ (-591 (-798 |#1|)) (-591 |#2|)) NIL) (($ $ (-798 |#1|) $) NIL) (($ $ (-591 (-798 |#1|)) (-591 $)) NIL)) (-2976 (($ $ (-798 |#1|)) NIL (|has| |#2| (-160)))) (-3266 (($ $ (-798 |#1|)) NIL) (($ $ (-591 (-798 |#1|))) NIL) (($ $ (-798 |#1|) (-712)) NIL) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-1316 (((-497 (-798 |#1|)) $) NIL) (((-712) $ (-798 |#1|)) NIL) (((-591 (-712)) $ (-591 (-798 |#1|))) NIL)) (-1408 (((-825 (-357)) $) NIL (-12 (|has| (-798 |#1|) (-566 (-825 (-357)))) (|has| |#2| (-566 (-825 (-357)))))) (((-825 (-525)) $) NIL (-12 (|has| (-798 |#1|) (-566 (-825 (-525)))) (|has| |#2| (-566 (-825 (-525)))))) (((-501) $) NIL (-12 (|has| (-798 |#1|) (-566 (-501))) (|has| |#2| (-566 (-501)))))) (-2668 ((|#2| $) NIL (|has| |#2| (-429))) (($ $ (-798 |#1|)) NIL (|has| |#2| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#2| (-842))))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#2|) NIL) (($ (-798 |#1|)) NIL) (($ $) NIL (|has| |#2| (-517))) (($ (-385 (-525))) NIL (-3321 (|has| |#2| (-37 (-385 (-525)))) (|has| |#2| (-966 (-385 (-525))))))) (-3654 (((-591 |#2|) $) NIL)) (-2560 ((|#2| $ (-497 (-798 |#1|))) NIL) (($ $ (-798 |#1|) (-712)) NIL) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#2| (-842))) (|has| |#2| (-136))))) (-2128 (((-712)) NIL)) (-1698 (($ $ $ (-712)) NIL (|has| |#2| (-160)))) (-2495 (((-108) $ $) NIL (|has| |#2| (-517)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ (-798 |#1|)) NIL) (($ $ (-591 (-798 |#1|))) NIL) (($ $ (-798 |#1|) (-712)) NIL) (($ $ (-591 (-798 |#1|)) (-591 (-712))) NIL)) (-4135 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4173 (($ $ |#2|) NIL (|has| |#2| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL (|has| |#2| (-37 (-385 (-525))))) (($ (-385 (-525)) $) NIL (|has| |#2| (-37 (-385 (-525))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-673 |#1| |#2|) (-882 |#2| (-497 (-798 |#1|)) (-798 |#1|)) (-591 (-1089)) (-975)) (T -673))
+NIL
+(-882 |#2| (-497 (-798 |#1|)) (-798 |#1|))
+((-2839 (((-2 (|:| -2593 (-885 |#3|)) (|:| -4125 (-885 |#3|))) |#4|) 14)) (-3538 ((|#4| |#4| |#2|) 33)) (-2485 ((|#4| (-385 (-885 |#3|)) |#2|) 64)) (-4080 ((|#4| (-1085 (-885 |#3|)) |#2|) 77)) (-2991 ((|#4| (-1085 |#4|) |#2|) 51)) (-1725 ((|#4| |#4| |#2|) 54)) (-1348 (((-396 |#4|) |#4|) 40)))
+(((-674 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2839 ((-2 (|:| -2593 (-885 |#3|)) (|:| -4125 (-885 |#3|))) |#4|)) (-15 -1725 (|#4| |#4| |#2|)) (-15 -2991 (|#4| (-1085 |#4|) |#2|)) (-15 -3538 (|#4| |#4| |#2|)) (-15 -4080 (|#4| (-1085 (-885 |#3|)) |#2|)) (-15 -2485 (|#4| (-385 (-885 |#3|)) |#2|)) (-15 -1348 ((-396 |#4|) |#4|))) (-734) (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $)))) (-517) (-882 (-385 (-885 |#3|)) |#1| |#2|)) (T -674))
+((-1348 (*1 *2 *3) (-12 (-4 *4 (-734)) (-4 *5 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $))))) (-4 *6 (-517)) (-5 *2 (-396 *3)) (-5 *1 (-674 *4 *5 *6 *3)) (-4 *3 (-882 (-385 (-885 *6)) *4 *5)))) (-2485 (*1 *2 *3 *4) (-12 (-4 *6 (-517)) (-4 *2 (-882 *3 *5 *4)) (-5 *1 (-674 *5 *4 *6 *2)) (-5 *3 (-385 (-885 *6))) (-4 *5 (-734)) (-4 *4 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $))))))) (-4080 (*1 *2 *3 *4) (-12 (-5 *3 (-1085 (-885 *6))) (-4 *6 (-517)) (-4 *2 (-882 (-385 (-885 *6)) *5 *4)) (-5 *1 (-674 *5 *4 *6 *2)) (-4 *5 (-734)) (-4 *4 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $))))))) (-3538 (*1 *2 *2 *3) (-12 (-4 *4 (-734)) (-4 *3 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $))))) (-4 *5 (-517)) (-5 *1 (-674 *4 *3 *5 *2)) (-4 *2 (-882 (-385 (-885 *5)) *4 *3)))) (-2991 (*1 *2 *3 *4) (-12 (-5 *3 (-1085 *2)) (-4 *2 (-882 (-385 (-885 *6)) *5 *4)) (-5 *1 (-674 *5 *4 *6 *2)) (-4 *5 (-734)) (-4 *4 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $))))) (-4 *6 (-517)))) (-1725 (*1 *2 *2 *3) (-12 (-4 *4 (-734)) (-4 *3 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $))))) (-4 *5 (-517)) (-5 *1 (-674 *4 *3 *5 *2)) (-4 *2 (-882 (-385 (-885 *5)) *4 *3)))) (-2839 (*1 *2 *3) (-12 (-4 *4 (-734)) (-4 *5 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $))))) (-4 *6 (-517)) (-5 *2 (-2 (|:| -2593 (-885 *6)) (|:| -4125 (-885 *6)))) (-5 *1 (-674 *4 *5 *6 *3)) (-4 *3 (-882 (-385 (-885 *6)) *4 *5)))))
+(-10 -7 (-15 -2839 ((-2 (|:| -2593 (-885 |#3|)) (|:| -4125 (-885 |#3|))) |#4|)) (-15 -1725 (|#4| |#4| |#2|)) (-15 -2991 (|#4| (-1085 |#4|) |#2|)) (-15 -3538 (|#4| |#4| |#2|)) (-15 -4080 (|#4| (-1085 (-885 |#3|)) |#2|)) (-15 -2485 (|#4| (-385 (-885 |#3|)) |#2|)) (-15 -1348 ((-396 |#4|) |#4|)))
+((-1348 (((-396 |#4|) |#4|) 52)))
+(((-675 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1348 ((-396 |#4|) |#4|))) (-734) (-788) (-13 (-286) (-138)) (-882 (-385 |#3|) |#1| |#2|)) (T -675))
+((-1348 (*1 *2 *3) (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-13 (-286) (-138))) (-5 *2 (-396 *3)) (-5 *1 (-675 *4 *5 *6 *3)) (-4 *3 (-882 (-385 *6) *4 *5)))))
+(-10 -7 (-15 -1348 ((-396 |#4|) |#4|)))
+((-1340 (((-677 |#2| |#3|) (-1 |#2| |#1|) (-677 |#1| |#3|)) 18)))
+(((-676 |#1| |#2| |#3|) (-10 -7 (-15 -1340 ((-677 |#2| |#3|) (-1 |#2| |#1|) (-677 |#1| |#3|)))) (-975) (-975) (-668)) (T -676))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-677 *5 *7)) (-4 *5 (-975)) (-4 *6 (-975)) (-4 *7 (-668)) (-5 *2 (-677 *6 *7)) (-5 *1 (-676 *5 *6 *7)))))
+(-10 -7 (-15 -1340 ((-677 |#2| |#3|) (-1 |#2| |#1|) (-677 |#1| |#3|))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 28)) (-1631 (((-591 (-2 (|:| -3482 |#1|) (|:| -2548 |#2|))) $) 29)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3032 (((-712)) 20 (-12 (|has| |#2| (-346)) (|has| |#1| (-346))))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#2| "failed") $) 57) (((-3 |#1| "failed") $) 60)) (-3528 ((|#2| $) NIL) ((|#1| $) NIL)) (-1710 (($ $) 79 (|has| |#2| (-788)))) (-4163 (((-3 $ "failed") $) 65)) (-3377 (($) 35 (-12 (|has| |#2| (-346)) (|has| |#1| (-346))))) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) 55)) (-1922 (((-591 $) $) 39)) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| |#2|) 16)) (-1340 (($ (-1 |#1| |#1|) $) 54)) (-3016 (((-854) $) 32 (-12 (|has| |#2| (-346)) (|has| |#1| (-346))))) (-1661 ((|#2| $) 78 (|has| |#2| (-788)))) (-1678 ((|#1| $) 77 (|has| |#2| (-788)))) (-2339 (((-1072) $) NIL)) (-2226 (($ (-854)) 27 (-12 (|has| |#2| (-346)) (|has| |#1| (-346))))) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 76) (($ (-525)) 45) (($ |#2|) 42) (($ |#1|) 43) (($ (-591 (-2 (|:| -3482 |#1|) (|:| -2548 |#2|)))) 11)) (-3654 (((-591 |#1|) $) 41)) (-2560 ((|#1| $ |#2|) 88)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 12 T CONST)) (-4197 (($) 33 T CONST)) (-4096 (((-108) $ $) 80)) (-4164 (($ $) 47) (($ $ $) NIL)) (-4156 (($ $ $) 26)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 52) (($ $ $) 90) (($ |#1| $) 49 (|has| |#1| (-160))) (($ $ |#1|) NIL (|has| |#1| (-160)))))
+(((-677 |#1| |#2|) (-13 (-975) (-966 |#2|) (-966 |#1|) (-10 -8 (-15 -1480 ($ |#1| |#2|)) (-15 -2560 (|#1| $ |#2|)) (-15 -3022 ($ (-591 (-2 (|:| -3482 |#1|) (|:| -2548 |#2|))))) (-15 -1631 ((-591 (-2 (|:| -3482 |#1|) (|:| -2548 |#2|))) $)) (-15 -1340 ($ (-1 |#1| |#1|) $)) (-15 -2202 ((-108) $)) (-15 -3654 ((-591 |#1|) $)) (-15 -1922 ((-591 $) $)) (-15 -4010 ((-712) $)) (IF (|has| |#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-160)) (-6 (-37 |#1|)) |%noBranch|) (IF (|has| |#1| (-346)) (IF (|has| |#2| (-346)) (-6 (-346)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-788)) (PROGN (-15 -1661 (|#2| $)) (-15 -1678 (|#1| $)) (-15 -1710 ($ $))) |%noBranch|))) (-975) (-668)) (T -677))
+((-1480 (*1 *1 *2 *3) (-12 (-5 *1 (-677 *2 *3)) (-4 *2 (-975)) (-4 *3 (-668)))) (-2560 (*1 *2 *1 *3) (-12 (-4 *2 (-975)) (-5 *1 (-677 *2 *3)) (-4 *3 (-668)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-591 (-2 (|:| -3482 *3) (|:| -2548 *4)))) (-4 *3 (-975)) (-4 *4 (-668)) (-5 *1 (-677 *3 *4)))) (-1631 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| -3482 *3) (|:| -2548 *4)))) (-5 *1 (-677 *3 *4)) (-4 *3 (-975)) (-4 *4 (-668)))) (-1340 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-975)) (-5 *1 (-677 *3 *4)) (-4 *4 (-668)))) (-2202 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-677 *3 *4)) (-4 *3 (-975)) (-4 *4 (-668)))) (-3654 (*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-677 *3 *4)) (-4 *3 (-975)) (-4 *4 (-668)))) (-1922 (*1 *2 *1) (-12 (-5 *2 (-591 (-677 *3 *4))) (-5 *1 (-677 *3 *4)) (-4 *3 (-975)) (-4 *4 (-668)))) (-4010 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-677 *3 *4)) (-4 *3 (-975)) (-4 *4 (-668)))) (-1661 (*1 *2 *1) (-12 (-4 *2 (-668)) (-4 *2 (-788)) (-5 *1 (-677 *3 *2)) (-4 *3 (-975)))) (-1678 (*1 *2 *1) (-12 (-4 *2 (-975)) (-5 *1 (-677 *2 *3)) (-4 *3 (-788)) (-4 *3 (-668)))) (-1710 (*1 *1 *1) (-12 (-5 *1 (-677 *2 *3)) (-4 *3 (-788)) (-4 *2 (-975)) (-4 *3 (-668)))))
+(-13 (-975) (-966 |#2|) (-966 |#1|) (-10 -8 (-15 -1480 ($ |#1| |#2|)) (-15 -2560 (|#1| $ |#2|)) (-15 -3022 ($ (-591 (-2 (|:| -3482 |#1|) (|:| -2548 |#2|))))) (-15 -1631 ((-591 (-2 (|:| -3482 |#1|) (|:| -2548 |#2|))) $)) (-15 -1340 ($ (-1 |#1| |#1|) $)) (-15 -2202 ((-108) $)) (-15 -3654 ((-591 |#1|) $)) (-15 -1922 ((-591 $) $)) (-15 -4010 ((-712) $)) (IF (|has| |#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-160)) (-6 (-37 |#1|)) |%noBranch|) (IF (|has| |#1| (-346)) (IF (|has| |#2| (-346)) (-6 (-346)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-788)) (PROGN (-15 -1661 (|#2| $)) (-15 -1678 (|#1| $)) (-15 -1710 ($ $))) |%noBranch|)))
+((-3008 (((-108) $ $) 19)) (-1414 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-3595 (($ $ $) 72)) (-3214 (((-108) $ $) 73)) (-3891 (((-108) $ (-712)) 8)) (-2442 (($ (-591 |#1|)) 68) (($) 67)) (-1797 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4250)))) (-3798 (($) 7 T CONST)) (-3611 (($ $) 62)) (-3098 (($ $) 58 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3901 (($ |#1| $) 47 (|has| $ (-6 -4250))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4250)))) (-3677 (($ |#1| $) 57 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4250)))) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22)) (-3516 (($ $ $) 69)) (-1464 ((|#1| $) 39)) (-2470 (($ |#1| $) 40) (($ |#1| $ (-712)) 63)) (-2047 (((-1036) $) 21)) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-3631 ((|#1| $) 41)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-2945 (((-591 (-2 (|:| -1221 |#1|) (|:| -2064 (-712)))) $) 61)) (-3097 (($ $ |#1|) 71) (($ $ $) 70)) (-2311 (($) 49) (($ (-591 |#1|)) 48)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1408 (((-501) $) 59 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 50)) (-3022 (((-796) $) 18)) (-2973 (($ (-591 |#1|)) 66) (($) 65)) (-1870 (($ (-591 |#1|)) 42)) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20)) (-4112 (((-108) $ $) 64)) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-678 |#1|) (-131) (-1018)) (T -678))
+NIL
+(-13 (-636 |t#1|) (-1016 |t#1|))
+(((-33) . T) ((-102 |#1|) . T) ((-97) . T) ((-565 (-796)) . T) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-215 |#1|) . T) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-636 |#1|) . T) ((-1016 |#1|) . T) ((-1018) . T) ((-1125) . T))
+((-3008 (((-108) $ $) NIL)) (-1414 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 76)) (-3595 (($ $ $) 79)) (-3214 (((-108) $ $) 83)) (-3891 (((-108) $ (-712)) NIL)) (-2442 (($ (-591 |#1|)) 24) (($) 16)) (-1797 (($ (-1 (-108) |#1|) $) 70 (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-3611 (($ $) 71)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3901 (($ |#1| $) 61 (|has| $ (-6 -4250))) (($ (-1 (-108) |#1|) $) 64 (|has| $ (-6 -4250))) (($ |#1| $ (-525)) 62) (($ (-1 (-108) |#1|) $ (-525)) 65)) (-3677 (($ |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (($ |#1| $ (-525)) 67) (($ (-1 (-108) |#1|) $ (-525)) 68)) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4250)))) (-3454 (((-591 |#1|) $) 32 (|has| $ (-6 -4250)))) (-2977 (($) 14) (($ |#1|) 26) (($ (-591 |#1|)) 21)) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#1|) $) 38)) (-2141 (((-108) |#1| $) 58 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3249 (($ (-1 |#1| |#1|) $) 74 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 75)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-3516 (($ $ $) 77)) (-1464 ((|#1| $) 55)) (-2470 (($ |#1| $) 56) (($ |#1| $ (-712)) 72)) (-2047 (((-1036) $) NIL)) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-3631 ((|#1| $) 54)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) 50)) (-3209 (($) 13)) (-2945 (((-591 (-2 (|:| -1221 |#1|) (|:| -2064 (-712)))) $) 48)) (-3097 (($ $ |#1|) NIL) (($ $ $) 78)) (-2311 (($) 15) (($ (-591 |#1|)) 23)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) 60 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) 66)) (-1408 (((-501) $) 36 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 20)) (-3022 (((-796) $) 44)) (-2973 (($ (-591 |#1|)) 25) (($) 17)) (-1870 (($ (-591 |#1|)) 22)) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 81)) (-4112 (((-108) $ $) 82)) (-4045 (((-712) $) 59 (|has| $ (-6 -4250)))))
+(((-679 |#1|) (-13 (-678 |#1|) (-10 -8 (-6 -4250) (-6 -4251) (-15 -2977 ($)) (-15 -2977 ($ |#1|)) (-15 -2977 ($ (-591 |#1|))) (-15 -2552 ((-591 |#1|) $)) (-15 -3677 ($ |#1| $ (-525))) (-15 -3677 ($ (-1 (-108) |#1|) $ (-525))) (-15 -3901 ($ |#1| $ (-525))) (-15 -3901 ($ (-1 (-108) |#1|) $ (-525))))) (-1018)) (T -679))
+((-2977 (*1 *1) (-12 (-5 *1 (-679 *2)) (-4 *2 (-1018)))) (-2977 (*1 *1 *2) (-12 (-5 *1 (-679 *2)) (-4 *2 (-1018)))) (-2977 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-679 *3)))) (-2552 (*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-679 *3)) (-4 *3 (-1018)))) (-3677 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *1 (-679 *2)) (-4 *2 (-1018)))) (-3677 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-108) *4)) (-5 *3 (-525)) (-4 *4 (-1018)) (-5 *1 (-679 *4)))) (-3901 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *1 (-679 *2)) (-4 *2 (-1018)))) (-3901 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-108) *4)) (-5 *3 (-525)) (-4 *4 (-1018)) (-5 *1 (-679 *4)))))
+(-13 (-678 |#1|) (-10 -8 (-6 -4250) (-6 -4251) (-15 -2977 ($)) (-15 -2977 ($ |#1|)) (-15 -2977 ($ (-591 |#1|))) (-15 -2552 ((-591 |#1|) $)) (-15 -3677 ($ |#1| $ (-525))) (-15 -3677 ($ (-1 (-108) |#1|) $ (-525))) (-15 -3901 ($ |#1| $ (-525))) (-15 -3901 ($ (-1 (-108) |#1|) $ (-525)))))
+((-1535 (((-1176) (-1072)) 8)))
+(((-680) (-10 -7 (-15 -1535 ((-1176) (-1072))))) (T -680))
+((-1535 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-680)))))
+(-10 -7 (-15 -1535 ((-1176) (-1072))))
+((-4088 (((-591 |#1|) (-591 |#1|) (-591 |#1|)) 10)))
+(((-681 |#1|) (-10 -7 (-15 -4088 ((-591 |#1|) (-591 |#1|) (-591 |#1|)))) (-788)) (T -681))
+((-4088 (*1 *2 *2 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-788)) (-5 *1 (-681 *3)))))
+(-10 -7 (-15 -4088 ((-591 |#1|) (-591 |#1|) (-591 |#1|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1507 (((-591 |#2|) $) 136)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 129 (|has| |#1| (-517)))) (-3706 (($ $) 128 (|has| |#1| (-517)))) (-1715 (((-108) $) 126 (|has| |#1| (-517)))) (-1987 (($ $) 85 (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) 68 (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) 19)) (-1361 (($ $) 67 (|has| |#1| (-37 (-385 (-525)))))) (-1431 (($ $) 84 (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) 69 (|has| |#1| (-37 (-385 (-525)))))) (-1719 (($ $) 83 (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) 70 (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) 17 T CONST)) (-1710 (($ $) 120)) (-4163 (((-3 $ "failed") $) 34)) (-4215 (((-885 |#1|) $ (-712)) 98) (((-885 |#1|) $ (-712) (-712)) 97)) (-3123 (((-108) $) 137)) (-1784 (($) 95 (|has| |#1| (-37 (-385 (-525)))))) (-3873 (((-712) $ |#2|) 100) (((-712) $ |#2| (-712)) 99)) (-2824 (((-108) $) 31)) (-3956 (($ $ (-525)) 66 (|has| |#1| (-37 (-385 (-525)))))) (-2202 (((-108) $) 118)) (-1480 (($ $ (-591 |#2|) (-591 (-497 |#2|))) 135) (($ $ |#2| (-497 |#2|)) 134) (($ |#1| (-497 |#2|)) 119) (($ $ |#2| (-712)) 102) (($ $ (-591 |#2|) (-591 (-712))) 101)) (-1340 (($ (-1 |#1| |#1|) $) 117)) (-1488 (($ $) 92 (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) 115)) (-1678 ((|#1| $) 114)) (-2339 (((-1072) $) 9)) (-4141 (($ $ |#2|) 96 (|has| |#1| (-37 (-385 (-525)))))) (-2047 (((-1036) $) 10)) (-2784 (($ $ (-712)) 103)) (-2089 (((-3 $ "failed") $ $) 130 (|has| |#1| (-517)))) (-1409 (($ $) 93 (|has| |#1| (-37 (-385 (-525)))))) (-4132 (($ $ |#2| $) 111) (($ $ (-591 |#2|) (-591 $)) 110) (($ $ (-591 (-273 $))) 109) (($ $ (-273 $)) 108) (($ $ $ $) 107) (($ $ (-591 $) (-591 $)) 106)) (-3266 (($ $ |#2|) 42) (($ $ (-591 |#2|)) 41) (($ $ |#2| (-712)) 40) (($ $ (-591 |#2|) (-591 (-712))) 39)) (-1316 (((-497 |#2|) $) 116)) (-1502 (($ $) 82 (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) 71 (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) 81 (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) 72 (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) 80 (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) 73 (|has| |#1| (-37 (-385 (-525)))))) (-3571 (($ $) 138)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 133 (|has| |#1| (-160))) (($ $) 131 (|has| |#1| (-517))) (($ (-385 (-525))) 123 (|has| |#1| (-37 (-385 (-525)))))) (-2560 ((|#1| $ (-497 |#2|)) 121) (($ $ |#2| (-712)) 105) (($ $ (-591 |#2|) (-591 (-712))) 104)) (-1437 (((-3 $ "failed") $) 132 (|has| |#1| (-136)))) (-2128 (((-712)) 29)) (-1563 (($ $) 91 (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) 79 (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) 127 (|has| |#1| (-517)))) (-1515 (($ $) 90 (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) 78 (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) 89 (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) 77 (|has| |#1| (-37 (-385 (-525)))))) (-3277 (($ $) 88 (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) 76 (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) 87 (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) 75 (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) 86 (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) 74 (|has| |#1| (-37 (-385 (-525)))))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ |#2|) 38) (($ $ (-591 |#2|)) 37) (($ $ |#2| (-712)) 36) (($ $ (-591 |#2|) (-591 (-712))) 35)) (-4096 (((-108) $ $) 6)) (-4173 (($ $ |#1|) 122 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ $) 94 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 65 (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 (-525))) 125 (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) 124 (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) 113) (($ $ |#1|) 112)))
+(((-682 |#1| |#2|) (-131) (-975) (-788)) (T -682))
+((-2560 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-712)) (-4 *1 (-682 *4 *2)) (-4 *4 (-975)) (-4 *2 (-788)))) (-2560 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 *5)) (-5 *3 (-591 (-712))) (-4 *1 (-682 *4 *5)) (-4 *4 (-975)) (-4 *5 (-788)))) (-2784 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-682 *3 *4)) (-4 *3 (-975)) (-4 *4 (-788)))) (-1480 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-712)) (-4 *1 (-682 *4 *2)) (-4 *4 (-975)) (-4 *2 (-788)))) (-1480 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 *5)) (-5 *3 (-591 (-712))) (-4 *1 (-682 *4 *5)) (-4 *4 (-975)) (-4 *5 (-788)))) (-3873 (*1 *2 *1 *3) (-12 (-4 *1 (-682 *4 *3)) (-4 *4 (-975)) (-4 *3 (-788)) (-5 *2 (-712)))) (-3873 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-712)) (-4 *1 (-682 *4 *3)) (-4 *4 (-975)) (-4 *3 (-788)))) (-4215 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-4 *1 (-682 *4 *5)) (-4 *4 (-975)) (-4 *5 (-788)) (-5 *2 (-885 *4)))) (-4215 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-712)) (-4 *1 (-682 *4 *5)) (-4 *4 (-975)) (-4 *5 (-788)) (-5 *2 (-885 *4)))) (-4141 (*1 *1 *1 *2) (-12 (-4 *1 (-682 *3 *2)) (-4 *3 (-975)) (-4 *2 (-788)) (-4 *3 (-37 (-385 (-525)))))))
+(-13 (-833 |t#2|) (-904 |t#1| (-497 |t#2|) |t#2|) (-486 |t#2| $) (-288 $) (-10 -8 (-15 -2560 ($ $ |t#2| (-712))) (-15 -2560 ($ $ (-591 |t#2|) (-591 (-712)))) (-15 -2784 ($ $ (-712))) (-15 -1480 ($ $ |t#2| (-712))) (-15 -1480 ($ $ (-591 |t#2|) (-591 (-712)))) (-15 -3873 ((-712) $ |t#2|)) (-15 -3873 ((-712) $ |t#2| (-712))) (-15 -4215 ((-885 |t#1|) $ (-712))) (-15 -4215 ((-885 |t#1|) $ (-712) (-712))) (IF (|has| |t#1| (-37 (-385 (-525)))) (PROGN (-15 -4141 ($ $ |t#2|)) (-6 (-932)) (-6 (-1111))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-497 |#2|)) . T) ((-25) . T) ((-37 #1=(-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((-37 |#1|) |has| |#1| (-160)) ((-37 $) |has| |#1| (-517)) ((-34) |has| |#1| (-37 (-385 (-525)))) ((-91) |has| |#1| (-37 (-385 (-525)))) ((-97) . T) ((-107 #1# #1#) |has| |#1| (-37 (-385 (-525)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-263) |has| |#1| (-37 (-385 (-525)))) ((-269) |has| |#1| (-517)) ((-288 $) . T) ((-466) |has| |#1| (-37 (-385 (-525)))) ((-486 |#2| $) . T) ((-486 $ $) . T) ((-517) |has| |#1| (-517)) ((-593 #1#) |has| |#1| (-37 (-385 (-525)))) ((-593 |#1|) . T) ((-593 $) . T) ((-659 #1#) |has| |#1| (-37 (-385 (-525)))) ((-659 |#1|) |has| |#1| (-160)) ((-659 $) |has| |#1| (-517)) ((-668) . T) ((-833 |#2|) . T) ((-904 |#1| #0# |#2|) . T) ((-932) |has| |#1| (-37 (-385 (-525)))) ((-981 #1#) |has| |#1| (-37 (-385 (-525)))) ((-981 |#1|) . T) ((-981 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1111) |has| |#1| (-37 (-385 (-525)))) ((-1114) |has| |#1| (-37 (-385 (-525)))))
+((-1348 (((-396 (-1085 |#4|)) (-1085 |#4|)) 30) (((-396 |#4|) |#4|) 26)))
+(((-683 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1348 ((-396 |#4|) |#4|)) (-15 -1348 ((-396 (-1085 |#4|)) (-1085 |#4|)))) (-788) (-734) (-13 (-286) (-138)) (-882 |#3| |#2| |#1|)) (T -683))
+((-1348 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-734)) (-4 *6 (-13 (-286) (-138))) (-4 *7 (-882 *6 *5 *4)) (-5 *2 (-396 (-1085 *7))) (-5 *1 (-683 *4 *5 *6 *7)) (-5 *3 (-1085 *7)))) (-1348 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-734)) (-4 *6 (-13 (-286) (-138))) (-5 *2 (-396 *3)) (-5 *1 (-683 *4 *5 *6 *3)) (-4 *3 (-882 *6 *5 *4)))))
+(-10 -7 (-15 -1348 ((-396 |#4|) |#4|)) (-15 -1348 ((-396 (-1085 |#4|)) (-1085 |#4|))))
+((-3273 (((-396 |#4|) |#4| |#2|) 118)) (-2193 (((-396 |#4|) |#4|) NIL)) (-2827 (((-396 (-1085 |#4|)) (-1085 |#4|)) 109) (((-396 |#4|) |#4|) 40)) (-2078 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-591 (-2 (|:| -1348 (-1085 |#4|)) (|:| -2008 (-525)))))) (-1085 |#4|) (-591 |#2|) (-591 (-591 |#3|))) 68)) (-4211 (((-1085 |#3|) (-1085 |#3|) (-525)) 136)) (-1882 (((-591 (-712)) (-1085 |#4|) (-591 |#2|) (-712)) 60)) (-1223 (((-3 (-591 (-1085 |#4|)) "failed") (-1085 |#4|) (-1085 |#3|) (-1085 |#3|) |#4| (-591 |#2|) (-591 (-712)) (-591 |#3|)) 64)) (-4178 (((-2 (|:| |upol| (-1085 |#3|)) (|:| |Lval| (-591 |#3|)) (|:| |Lfact| (-591 (-2 (|:| -1348 (-1085 |#3|)) (|:| -2008 (-525))))) (|:| |ctpol| |#3|)) (-1085 |#4|) (-591 |#2|) (-591 (-591 |#3|))) 25)) (-2939 (((-2 (|:| -1357 (-1085 |#4|)) (|:| |polval| (-1085 |#3|))) (-1085 |#4|) (-1085 |#3|) (-525)) 56)) (-3868 (((-525) (-591 (-2 (|:| -1348 (-1085 |#3|)) (|:| -2008 (-525))))) 133)) (-2030 ((|#4| (-525) (-396 |#4|)) 57)) (-3828 (((-108) (-591 (-2 (|:| -1348 (-1085 |#3|)) (|:| -2008 (-525)))) (-591 (-2 (|:| -1348 (-1085 |#3|)) (|:| -2008 (-525))))) NIL)))
+(((-684 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2827 ((-396 |#4|) |#4|)) (-15 -2827 ((-396 (-1085 |#4|)) (-1085 |#4|))) (-15 -2193 ((-396 |#4|) |#4|)) (-15 -3868 ((-525) (-591 (-2 (|:| -1348 (-1085 |#3|)) (|:| -2008 (-525)))))) (-15 -3273 ((-396 |#4|) |#4| |#2|)) (-15 -2939 ((-2 (|:| -1357 (-1085 |#4|)) (|:| |polval| (-1085 |#3|))) (-1085 |#4|) (-1085 |#3|) (-525))) (-15 -2078 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-591 (-2 (|:| -1348 (-1085 |#4|)) (|:| -2008 (-525)))))) (-1085 |#4|) (-591 |#2|) (-591 (-591 |#3|)))) (-15 -4178 ((-2 (|:| |upol| (-1085 |#3|)) (|:| |Lval| (-591 |#3|)) (|:| |Lfact| (-591 (-2 (|:| -1348 (-1085 |#3|)) (|:| -2008 (-525))))) (|:| |ctpol| |#3|)) (-1085 |#4|) (-591 |#2|) (-591 (-591 |#3|)))) (-15 -2030 (|#4| (-525) (-396 |#4|))) (-15 -3828 ((-108) (-591 (-2 (|:| -1348 (-1085 |#3|)) (|:| -2008 (-525)))) (-591 (-2 (|:| -1348 (-1085 |#3|)) (|:| -2008 (-525)))))) (-15 -1223 ((-3 (-591 (-1085 |#4|)) "failed") (-1085 |#4|) (-1085 |#3|) (-1085 |#3|) |#4| (-591 |#2|) (-591 (-712)) (-591 |#3|))) (-15 -1882 ((-591 (-712)) (-1085 |#4|) (-591 |#2|) (-712))) (-15 -4211 ((-1085 |#3|) (-1085 |#3|) (-525)))) (-734) (-788) (-286) (-882 |#3| |#1| |#2|)) (T -684))
+((-4211 (*1 *2 *2 *3) (-12 (-5 *2 (-1085 *6)) (-5 *3 (-525)) (-4 *6 (-286)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-684 *4 *5 *6 *7)) (-4 *7 (-882 *6 *4 *5)))) (-1882 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1085 *9)) (-5 *4 (-591 *7)) (-4 *7 (-788)) (-4 *9 (-882 *8 *6 *7)) (-4 *6 (-734)) (-4 *8 (-286)) (-5 *2 (-591 (-712))) (-5 *1 (-684 *6 *7 *8 *9)) (-5 *5 (-712)))) (-1223 (*1 *2 *3 *4 *4 *5 *6 *7 *8) (|partial| -12 (-5 *4 (-1085 *11)) (-5 *6 (-591 *10)) (-5 *7 (-591 (-712))) (-5 *8 (-591 *11)) (-4 *10 (-788)) (-4 *11 (-286)) (-4 *9 (-734)) (-4 *5 (-882 *11 *9 *10)) (-5 *2 (-591 (-1085 *5))) (-5 *1 (-684 *9 *10 *11 *5)) (-5 *3 (-1085 *5)))) (-3828 (*1 *2 *3 *3) (-12 (-5 *3 (-591 (-2 (|:| -1348 (-1085 *6)) (|:| -2008 (-525))))) (-4 *6 (-286)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108)) (-5 *1 (-684 *4 *5 *6 *7)) (-4 *7 (-882 *6 *4 *5)))) (-2030 (*1 *2 *3 *4) (-12 (-5 *3 (-525)) (-5 *4 (-396 *2)) (-4 *2 (-882 *7 *5 *6)) (-5 *1 (-684 *5 *6 *7 *2)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-286)))) (-4178 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1085 *9)) (-5 *4 (-591 *7)) (-5 *5 (-591 (-591 *8))) (-4 *7 (-788)) (-4 *8 (-286)) (-4 *9 (-882 *8 *6 *7)) (-4 *6 (-734)) (-5 *2 (-2 (|:| |upol| (-1085 *8)) (|:| |Lval| (-591 *8)) (|:| |Lfact| (-591 (-2 (|:| -1348 (-1085 *8)) (|:| -2008 (-525))))) (|:| |ctpol| *8))) (-5 *1 (-684 *6 *7 *8 *9)))) (-2078 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-591 *7)) (-5 *5 (-591 (-591 *8))) (-4 *7 (-788)) (-4 *8 (-286)) (-4 *6 (-734)) (-4 *9 (-882 *8 *6 *7)) (-5 *2 (-2 (|:| |unitPart| *9) (|:| |suPart| (-591 (-2 (|:| -1348 (-1085 *9)) (|:| -2008 (-525))))))) (-5 *1 (-684 *6 *7 *8 *9)) (-5 *3 (-1085 *9)))) (-2939 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-525)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-286)) (-4 *9 (-882 *8 *6 *7)) (-5 *2 (-2 (|:| -1357 (-1085 *9)) (|:| |polval| (-1085 *8)))) (-5 *1 (-684 *6 *7 *8 *9)) (-5 *3 (-1085 *9)) (-5 *4 (-1085 *8)))) (-3273 (*1 *2 *3 *4) (-12 (-4 *5 (-734)) (-4 *4 (-788)) (-4 *6 (-286)) (-5 *2 (-396 *3)) (-5 *1 (-684 *5 *4 *6 *3)) (-4 *3 (-882 *6 *5 *4)))) (-3868 (*1 *2 *3) (-12 (-5 *3 (-591 (-2 (|:| -1348 (-1085 *6)) (|:| -2008 (-525))))) (-4 *6 (-286)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-525)) (-5 *1 (-684 *4 *5 *6 *7)) (-4 *7 (-882 *6 *4 *5)))) (-2193 (*1 *2 *3) (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-286)) (-5 *2 (-396 *3)) (-5 *1 (-684 *4 *5 *6 *3)) (-4 *3 (-882 *6 *4 *5)))) (-2827 (*1 *2 *3) (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-286)) (-4 *7 (-882 *6 *4 *5)) (-5 *2 (-396 (-1085 *7))) (-5 *1 (-684 *4 *5 *6 *7)) (-5 *3 (-1085 *7)))) (-2827 (*1 *2 *3) (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-286)) (-5 *2 (-396 *3)) (-5 *1 (-684 *4 *5 *6 *3)) (-4 *3 (-882 *6 *4 *5)))))
+(-10 -7 (-15 -2827 ((-396 |#4|) |#4|)) (-15 -2827 ((-396 (-1085 |#4|)) (-1085 |#4|))) (-15 -2193 ((-396 |#4|) |#4|)) (-15 -3868 ((-525) (-591 (-2 (|:| -1348 (-1085 |#3|)) (|:| -2008 (-525)))))) (-15 -3273 ((-396 |#4|) |#4| |#2|)) (-15 -2939 ((-2 (|:| -1357 (-1085 |#4|)) (|:| |polval| (-1085 |#3|))) (-1085 |#4|) (-1085 |#3|) (-525))) (-15 -2078 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-591 (-2 (|:| -1348 (-1085 |#4|)) (|:| -2008 (-525)))))) (-1085 |#4|) (-591 |#2|) (-591 (-591 |#3|)))) (-15 -4178 ((-2 (|:| |upol| (-1085 |#3|)) (|:| |Lval| (-591 |#3|)) (|:| |Lfact| (-591 (-2 (|:| -1348 (-1085 |#3|)) (|:| -2008 (-525))))) (|:| |ctpol| |#3|)) (-1085 |#4|) (-591 |#2|) (-591 (-591 |#3|)))) (-15 -2030 (|#4| (-525) (-396 |#4|))) (-15 -3828 ((-108) (-591 (-2 (|:| -1348 (-1085 |#3|)) (|:| -2008 (-525)))) (-591 (-2 (|:| -1348 (-1085 |#3|)) (|:| -2008 (-525)))))) (-15 -1223 ((-3 (-591 (-1085 |#4|)) "failed") (-1085 |#4|) (-1085 |#3|) (-1085 |#3|) |#4| (-591 |#2|) (-591 (-712)) (-591 |#3|))) (-15 -1882 ((-591 (-712)) (-1085 |#4|) (-591 |#2|) (-712))) (-15 -4211 ((-1085 |#3|) (-1085 |#3|) (-525))))
+((-2462 (($ $ (-854)) 12)))
+(((-685 |#1| |#2|) (-10 -8 (-15 -2462 (|#1| |#1| (-854)))) (-686 |#2|) (-160)) (T -685))
+NIL
+(-10 -8 (-15 -2462 (|#1| |#1| (-854))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-3433 (($ $ (-854)) 28)) (-2462 (($ $ (-854)) 33)) (-3447 (($ $ (-854)) 29)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3619 (($ $ $) 25)) (-3022 (((-796) $) 11)) (-2392 (($ $ $ $) 26)) (-2707 (($ $ $) 24)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 30)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
+(((-686 |#1|) (-131) (-160)) (T -686))
+((-2462 (*1 *1 *1 *2) (-12 (-5 *2 (-854)) (-4 *1 (-686 *3)) (-4 *3 (-160)))))
+(-13 (-703) (-659 |t#1|) (-10 -8 (-15 -2462 ($ $ (-854)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 |#1|) . T) ((-659 |#1|) . T) ((-662) . T) ((-703) . T) ((-981 |#1|) . T) ((-1018) . T))
+((-1846 (((-964) (-631 (-205)) (-525) (-108) (-525)) 25)) (-3649 (((-964) (-631 (-205)) (-525) (-108) (-525)) 24)))
+(((-687) (-10 -7 (-15 -3649 ((-964) (-631 (-205)) (-525) (-108) (-525))) (-15 -1846 ((-964) (-631 (-205)) (-525) (-108) (-525))))) (T -687))
+((-1846 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *5 (-108)) (-5 *2 (-964)) (-5 *1 (-687)))) (-3649 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *5 (-108)) (-5 *2 (-964)) (-5 *1 (-687)))))
+(-10 -7 (-15 -3649 ((-964) (-631 (-205)) (-525) (-108) (-525))) (-15 -1846 ((-964) (-631 (-205)) (-525) (-108) (-525))))
+((-2312 (((-964) (-525) (-525) (-525) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-72 FCN)))) 43)) (-2186 (((-964) (-525) (-525) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-79 FCN)))) 39)) (-3949 (((-964) (-205) (-205) (-205) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576)))) 32)))
+(((-688) (-10 -7 (-15 -3949 ((-964) (-205) (-205) (-205) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576))))) (-15 -2186 ((-964) (-525) (-525) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-79 FCN))))) (-15 -2312 ((-964) (-525) (-525) (-525) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-72 FCN))))))) (T -688))
+((-2312 (*1 *2 *3 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205)) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-72 FCN)))) (-5 *2 (-964)) (-5 *1 (-688)))) (-2186 (*1 *2 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205)) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-79 FCN)))) (-5 *2 (-964)) (-5 *1 (-688)))) (-3949 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576)))) (-5 *2 (-964)) (-5 *1 (-688)))))
+(-10 -7 (-15 -3949 ((-964) (-205) (-205) (-205) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576))))) (-15 -2186 ((-964) (-525) (-525) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-79 FCN))))) (-15 -2312 ((-964) (-525) (-525) (-525) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-72 FCN))))))
+((-2097 (((-964) (-525) (-525) (-631 (-205)) (-525)) 34)) (-3462 (((-964) (-525) (-525) (-631 (-205)) (-525)) 33)) (-3162 (((-964) (-525) (-631 (-205)) (-525)) 32)) (-3192 (((-964) (-525) (-631 (-205)) (-525)) 31)) (-1347 (((-964) (-525) (-525) (-1072) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525)) 30)) (-1899 (((-964) (-525) (-525) (-1072) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525)) 29)) (-3990 (((-964) (-525) (-525) (-1072) (-631 (-205)) (-631 (-205)) (-525)) 28)) (-1467 (((-964) (-525) (-525) (-1072) (-631 (-205)) (-631 (-205)) (-525)) 27)) (-2268 (((-964) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525)) 24)) (-1325 (((-964) (-525) (-631 (-205)) (-631 (-205)) (-525)) 23)) (-2153 (((-964) (-525) (-631 (-205)) (-525)) 22)) (-1986 (((-964) (-525) (-631 (-205)) (-525)) 21)))
+(((-689) (-10 -7 (-15 -1986 ((-964) (-525) (-631 (-205)) (-525))) (-15 -2153 ((-964) (-525) (-631 (-205)) (-525))) (-15 -1325 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2268 ((-964) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -1467 ((-964) (-525) (-525) (-1072) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3990 ((-964) (-525) (-525) (-1072) (-631 (-205)) (-631 (-205)) (-525))) (-15 -1899 ((-964) (-525) (-525) (-1072) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -1347 ((-964) (-525) (-525) (-1072) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3192 ((-964) (-525) (-631 (-205)) (-525))) (-15 -3162 ((-964) (-525) (-631 (-205)) (-525))) (-15 -3462 ((-964) (-525) (-525) (-631 (-205)) (-525))) (-15 -2097 ((-964) (-525) (-525) (-631 (-205)) (-525))))) (T -689))
+((-2097 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-689)))) (-3462 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-689)))) (-3162 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-689)))) (-3192 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-689)))) (-1347 (*1 *2 *3 *3 *4 *5 *5 *5 *5 *3) (-12 (-5 *3 (-525)) (-5 *4 (-1072)) (-5 *5 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-689)))) (-1899 (*1 *2 *3 *3 *4 *5 *5 *5 *3) (-12 (-5 *3 (-525)) (-5 *4 (-1072)) (-5 *5 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-689)))) (-3990 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-525)) (-5 *4 (-1072)) (-5 *5 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-689)))) (-1467 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-525)) (-5 *4 (-1072)) (-5 *5 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-689)))) (-2268 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-689)))) (-1325 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-689)))) (-2153 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-689)))) (-1986 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-689)))))
+(-10 -7 (-15 -1986 ((-964) (-525) (-631 (-205)) (-525))) (-15 -2153 ((-964) (-525) (-631 (-205)) (-525))) (-15 -1325 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2268 ((-964) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -1467 ((-964) (-525) (-525) (-1072) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3990 ((-964) (-525) (-525) (-1072) (-631 (-205)) (-631 (-205)) (-525))) (-15 -1899 ((-964) (-525) (-525) (-1072) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -1347 ((-964) (-525) (-525) (-1072) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3192 ((-964) (-525) (-631 (-205)) (-525))) (-15 -3162 ((-964) (-525) (-631 (-205)) (-525))) (-15 -3462 ((-964) (-525) (-525) (-631 (-205)) (-525))) (-15 -2097 ((-964) (-525) (-525) (-631 (-205)) (-525))))
+((-1642 (((-964) (-525) (-631 (-205)) (-631 (-205)) (-525) (-205) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-76 FUNCTN)))) 52)) (-1731 (((-964) (-631 (-205)) (-631 (-205)) (-525) (-525)) 51)) (-4214 (((-964) (-525) (-631 (-205)) (-631 (-205)) (-525) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-76 FUNCTN)))) 50)) (-2130 (((-964) (-205) (-205) (-525) (-525) (-525) (-525)) 46)) (-3943 (((-964) (-205) (-205) (-525) (-205) (-525) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G)))) 45)) (-2821 (((-964) (-205) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G)))) 44)) (-3560 (((-964) (-205) (-205) (-205) (-205) (-525) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G)))) 43)) (-1490 (((-964) (-205) (-205) (-205) (-525) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G)))) 42)) (-2032 (((-964) (-205) (-525) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576)))) 38)) (-2647 (((-964) (-205) (-205) (-525) (-631 (-205)) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576)))) 37)) (-3278 (((-964) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576)))) 33)) (-3092 (((-964) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576)))) 32)))
+(((-690) (-10 -7 (-15 -3092 ((-964) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576))))) (-15 -3278 ((-964) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576))))) (-15 -2647 ((-964) (-205) (-205) (-525) (-631 (-205)) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576))))) (-15 -2032 ((-964) (-205) (-525) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576))))) (-15 -1490 ((-964) (-205) (-205) (-205) (-525) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G))))) (-15 -3560 ((-964) (-205) (-205) (-205) (-205) (-525) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G))))) (-15 -2821 ((-964) (-205) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G))))) (-15 -3943 ((-964) (-205) (-205) (-525) (-205) (-525) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G))))) (-15 -2130 ((-964) (-205) (-205) (-525) (-525) (-525) (-525))) (-15 -4214 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-525) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-76 FUNCTN))))) (-15 -1731 ((-964) (-631 (-205)) (-631 (-205)) (-525) (-525))) (-15 -1642 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-525) (-205) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-76 FUNCTN))))))) (T -690))
+((-1642 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205)) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-76 FUNCTN)))) (-5 *2 (-964)) (-5 *1 (-690)))) (-1731 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-690)))) (-4214 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205)) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-76 FUNCTN)))) (-5 *2 (-964)) (-5 *1 (-690)))) (-2130 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-690)))) (-3943 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G)))) (-5 *2 (-964)) (-5 *1 (-690)))) (-2821 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G)))) (-5 *2 (-964)) (-5 *1 (-690)))) (-3560 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G)))) (-5 *2 (-964)) (-5 *1 (-690)))) (-1490 (*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G)))) (-5 *2 (-964)) (-5 *1 (-690)))) (-2032 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576)))) (-5 *2 (-964)) (-5 *1 (-690)))) (-2647 (*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6) (-12 (-5 *4 (-525)) (-5 *5 (-631 (-205))) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576)))) (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-690)))) (-3278 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576)))) (-5 *2 (-964)) (-5 *1 (-690)))) (-3092 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576)))) (-5 *2 (-964)) (-5 *1 (-690)))))
+(-10 -7 (-15 -3092 ((-964) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576))))) (-15 -3278 ((-964) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576))))) (-15 -2647 ((-964) (-205) (-205) (-525) (-631 (-205)) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576))))) (-15 -2032 ((-964) (-205) (-525) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576))))) (-15 -1490 ((-964) (-205) (-205) (-205) (-525) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G))))) (-15 -3560 ((-964) (-205) (-205) (-205) (-205) (-525) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G))))) (-15 -2821 ((-964) (-205) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G))))) (-15 -3943 ((-964) (-205) (-205) (-525) (-205) (-525) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G))))) (-15 -2130 ((-964) (-205) (-205) (-525) (-525) (-525) (-525))) (-15 -4214 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-525) (-205) (-525) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-76 FUNCTN))))) (-15 -1731 ((-964) (-631 (-205)) (-631 (-205)) (-525) (-525))) (-15 -1642 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-525) (-205) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-76 FUNCTN))))))
+((-3107 (((-964) (-525) (-525) (-525) (-525) (-205) (-525) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-73 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-366)) (|:| |fp| (-74 G JACOBG JACGEP)))) 76)) (-3504 (((-964) (-631 (-205)) (-525) (-525) (-205) (-525) (-525) (-205) (-205) (-631 (-205)) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-85 BDYVAL))) (-366) (-366)) 69) (((-964) (-631 (-205)) (-525) (-525) (-205) (-525) (-525) (-205) (-205) (-631 (-205)) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-85 BDYVAL)))) 68)) (-3385 (((-964) (-205) (-205) (-525) (-205) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-82 FCNF))) (-3 (|:| |fn| (-366)) (|:| |fp| (-83 FCNG)))) 57)) (-3087 (((-964) (-631 (-205)) (-631 (-205)) (-525) (-205) (-205) (-205) (-525) (-525) (-525) (-631 (-205)) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN)))) 50)) (-4179 (((-964) (-205) (-525) (-525) (-1072) (-525) (-205) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-69 PEDERV))) (-3 (|:| |fn| (-366)) (|:| |fp| (-86 OUTPUT)))) 49)) (-2778 (((-964) (-205) (-525) (-525) (-205) (-1072) (-205) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-86 OUTPUT)))) 45)) (-3402 (((-964) (-205) (-525) (-525) (-205) (-205) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN)))) 42)) (-2118 (((-964) (-205) (-525) (-525) (-525) (-205) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-86 OUTPUT)))) 38)))
+(((-691) (-10 -7 (-15 -2118 ((-964) (-205) (-525) (-525) (-525) (-205) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-86 OUTPUT))))) (-15 -3402 ((-964) (-205) (-525) (-525) (-205) (-205) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))))) (-15 -2778 ((-964) (-205) (-525) (-525) (-205) (-1072) (-205) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-86 OUTPUT))))) (-15 -4179 ((-964) (-205) (-525) (-525) (-1072) (-525) (-205) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-69 PEDERV))) (-3 (|:| |fn| (-366)) (|:| |fp| (-86 OUTPUT))))) (-15 -3087 ((-964) (-631 (-205)) (-631 (-205)) (-525) (-205) (-205) (-205) (-525) (-525) (-525) (-631 (-205)) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))))) (-15 -3385 ((-964) (-205) (-205) (-525) (-205) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-82 FCNF))) (-3 (|:| |fn| (-366)) (|:| |fp| (-83 FCNG))))) (-15 -3504 ((-964) (-631 (-205)) (-525) (-525) (-205) (-525) (-525) (-205) (-205) (-631 (-205)) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-85 BDYVAL))))) (-15 -3504 ((-964) (-631 (-205)) (-525) (-525) (-205) (-525) (-525) (-205) (-205) (-631 (-205)) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-85 BDYVAL))) (-366) (-366))) (-15 -3107 ((-964) (-525) (-525) (-525) (-525) (-205) (-525) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-73 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-366)) (|:| |fp| (-74 G JACOBG JACGEP))))))) (T -691))
+((-3107 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7) (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-73 FCN JACOBF JACEPS)))) (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-74 G JACOBG JACGEP)))) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-691)))) (-3504 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8) (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *5 (-205)) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-59 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-85 BDYVAL)))) (-5 *8 (-366)) (-5 *2 (-964)) (-5 *1 (-691)))) (-3504 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7) (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *5 (-205)) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-59 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-85 BDYVAL)))) (-5 *2 (-964)) (-5 *1 (-691)))) (-3385 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7) (-12 (-5 *4 (-525)) (-5 *5 (-631 (-205))) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-82 FCNF)))) (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-83 FCNG)))) (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-691)))) (-3087 (*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6) (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *5 (-205)) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN)))) (-5 *2 (-964)) (-5 *1 (-691)))) (-4179 (*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10) (-12 (-5 *4 (-525)) (-5 *5 (-1072)) (-5 *6 (-631 (-205))) (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-87 G)))) (-5 *8 (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN)))) (-5 *9 (-3 (|:| |fn| (-366)) (|:| |fp| (-69 PEDERV)))) (-5 *10 (-3 (|:| |fn| (-366)) (|:| |fp| (-86 OUTPUT)))) (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-691)))) (-2778 (*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9) (-12 (-5 *4 (-525)) (-5 *5 (-1072)) (-5 *6 (-631 (-205))) (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-87 G)))) (-5 *8 (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN)))) (-5 *9 (-3 (|:| |fn| (-366)) (|:| |fp| (-86 OUTPUT)))) (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-691)))) (-3402 (*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-525)) (-5 *5 (-631 (-205))) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-87 G)))) (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN)))) (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-691)))) (-2118 (*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-525)) (-5 *5 (-631 (-205))) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN)))) (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-86 OUTPUT)))) (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-691)))))
+(-10 -7 (-15 -2118 ((-964) (-205) (-525) (-525) (-525) (-205) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-86 OUTPUT))))) (-15 -3402 ((-964) (-205) (-525) (-525) (-205) (-205) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))))) (-15 -2778 ((-964) (-205) (-525) (-525) (-205) (-1072) (-205) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-86 OUTPUT))))) (-15 -4179 ((-964) (-205) (-525) (-525) (-1072) (-525) (-205) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-69 PEDERV))) (-3 (|:| |fn| (-366)) (|:| |fp| (-86 OUTPUT))))) (-15 -3087 ((-964) (-631 (-205)) (-631 (-205)) (-525) (-205) (-205) (-205) (-525) (-525) (-525) (-631 (-205)) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))))) (-15 -3385 ((-964) (-205) (-205) (-525) (-205) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-82 FCNF))) (-3 (|:| |fn| (-366)) (|:| |fp| (-83 FCNG))))) (-15 -3504 ((-964) (-631 (-205)) (-525) (-525) (-205) (-525) (-525) (-205) (-205) (-631 (-205)) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-85 BDYVAL))))) (-15 -3504 ((-964) (-631 (-205)) (-525) (-525) (-205) (-525) (-525) (-205) (-205) (-631 (-205)) (-525) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-85 BDYVAL))) (-366) (-366))) (-15 -3107 ((-964) (-525) (-525) (-525) (-525) (-205) (-525) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-73 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-366)) (|:| |fp| (-74 G JACOBG JACGEP))))))
+((-3409 (((-964) (-205) (-205) (-525) (-525) (-631 (-205)) (-631 (-205)) (-205) (-205) (-525) (-525) (-631 (-205)) (-631 (-205)) (-205) (-205) (-525) (-525) (-631 (-205)) (-631 (-205)) (-205) (-525) (-525) (-525) (-619 (-205)) (-525)) 45)) (-3366 (((-964) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-1072) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-80 PDEF))) (-3 (|:| |fn| (-366)) (|:| |fp| (-81 BNDY)))) 41)) (-3052 (((-964) (-525) (-525) (-525) (-525) (-205) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525)) 23)))
+(((-692) (-10 -7 (-15 -3052 ((-964) (-525) (-525) (-525) (-525) (-205) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3366 ((-964) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-1072) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-80 PDEF))) (-3 (|:| |fn| (-366)) (|:| |fp| (-81 BNDY))))) (-15 -3409 ((-964) (-205) (-205) (-525) (-525) (-631 (-205)) (-631 (-205)) (-205) (-205) (-525) (-525) (-631 (-205)) (-631 (-205)) (-205) (-205) (-525) (-525) (-631 (-205)) (-631 (-205)) (-205) (-525) (-525) (-525) (-619 (-205)) (-525))))) (T -692))
+((-3409 (*1 *2 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *4 *4 *4 *6 *4) (-12 (-5 *4 (-525)) (-5 *5 (-631 (-205))) (-5 *6 (-619 (-205))) (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-692)))) (-3366 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *5 (-1072)) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-80 PDEF)))) (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-81 BNDY)))) (-5 *2 (-964)) (-5 *1 (-692)))) (-3052 (*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3) (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-692)))))
+(-10 -7 (-15 -3052 ((-964) (-525) (-525) (-525) (-525) (-205) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3366 ((-964) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-1072) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-80 PDEF))) (-3 (|:| |fn| (-366)) (|:| |fp| (-81 BNDY))))) (-15 -3409 ((-964) (-205) (-205) (-525) (-525) (-631 (-205)) (-631 (-205)) (-205) (-205) (-525) (-525) (-631 (-205)) (-631 (-205)) (-205) (-205) (-525) (-525) (-631 (-205)) (-631 (-205)) (-205) (-525) (-525) (-525) (-619 (-205)) (-525))))
+((-3699 (((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-205) (-631 (-205)) (-205) (-205) (-525)) 35)) (-1544 (((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-525) (-205) (-205) (-525)) 34)) (-2209 (((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-525)) (-631 (-205)) (-205) (-205) (-525)) 33)) (-2870 (((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525)) 29)) (-1459 (((-964) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525)) 28)) (-3929 (((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-205) (-205) (-525)) 27)) (-2428 (((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-631 (-205)) (-525)) 24)) (-2879 (((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-631 (-205)) (-525)) 23)) (-3231 (((-964) (-525) (-631 (-205)) (-631 (-205)) (-525)) 22)) (-4061 (((-964) (-525) (-631 (-205)) (-631 (-205)) (-525) (-525) (-525)) 21)))
+(((-693) (-10 -7 (-15 -4061 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-525) (-525) (-525))) (-15 -3231 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2879 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-631 (-205)) (-525))) (-15 -2428 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-631 (-205)) (-525))) (-15 -3929 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-205) (-205) (-525))) (-15 -1459 ((-964) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2870 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2209 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-525)) (-631 (-205)) (-205) (-205) (-525))) (-15 -1544 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-525) (-205) (-205) (-525))) (-15 -3699 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-205) (-631 (-205)) (-205) (-205) (-525))))) (T -693))
+((-3699 (*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205)) (-5 *2 (-964)) (-5 *1 (-693)))) (-1544 (*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205)) (-5 *2 (-964)) (-5 *1 (-693)))) (-2209 (*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3) (-12 (-5 *4 (-631 (-205))) (-5 *5 (-631 (-525))) (-5 *6 (-205)) (-5 *3 (-525)) (-5 *2 (-964)) (-5 *1 (-693)))) (-2870 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-693)))) (-1459 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-693)))) (-3929 (*1 *2 *3 *4 *4 *4 *5 *5 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205)) (-5 *2 (-964)) (-5 *1 (-693)))) (-2428 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-693)))) (-2879 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-693)))) (-3231 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-693)))) (-4061 (*1 *2 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-693)))))
+(-10 -7 (-15 -4061 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-525) (-525) (-525))) (-15 -3231 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2879 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-631 (-205)) (-525))) (-15 -2428 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-631 (-205)) (-525))) (-15 -3929 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-205) (-205) (-525))) (-15 -1459 ((-964) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2870 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2209 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-525)) (-631 (-205)) (-205) (-205) (-525))) (-15 -1544 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-525) (-205) (-205) (-525))) (-15 -3699 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-205) (-631 (-205)) (-205) (-205) (-525))))
+((-3638 (((-964) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525) (-631 (-205)) (-631 (-205)) (-525) (-525) (-525)) 45)) (-2728 (((-964) (-525) (-525) (-525) (-205) (-631 (-205)) (-631 (-205)) (-525)) 44)) (-2884 (((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-525) (-525)) 43)) (-2456 (((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525)) 42)) (-3198 (((-964) (-1072) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-205) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-631 (-205)) (-631 (-205)) (-525)) 41)) (-1836 (((-964) (-1072) (-525) (-631 (-205)) (-525) (-631 (-205)) (-631 (-205)) (-205) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-631 (-205)) (-631 (-205)) (-631 (-525)) (-525)) 40)) (-3513 (((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-525)) (-525) (-525) (-525) (-205) (-631 (-205)) (-525)) 39)) (-2362 (((-964) (-1072) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-205) (-525) (-525) (-525) (-631 (-205)) (-525) (-631 (-205)) (-631 (-525))) 38)) (-1500 (((-964) (-525) (-631 (-205)) (-631 (-205)) (-525)) 35)) (-4058 (((-964) (-525) (-631 (-205)) (-631 (-205)) (-205) (-525) (-525)) 34)) (-4006 (((-964) (-525) (-631 (-205)) (-631 (-205)) (-205) (-525)) 33)) (-1616 (((-964) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525)) 32)) (-1528 (((-964) (-525) (-205) (-205) (-631 (-205)) (-525) (-525) (-205) (-525)) 31)) (-3348 (((-964) (-525) (-205) (-205) (-631 (-205)) (-525) (-525) (-205) (-525) (-525) (-525)) 30)) (-2395 (((-964) (-525) (-205) (-205) (-631 (-205)) (-525) (-525) (-525) (-525) (-525)) 29)) (-2971 (((-964) (-525) (-525) (-525) (-205) (-205) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-631 (-205)) (-631 (-205)) (-525) (-631 (-525)) (-525) (-525) (-525)) 28)) (-2105 (((-964) (-525) (-631 (-205)) (-205) (-525)) 24)) (-1522 (((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525)) 21)))
+(((-694) (-10 -7 (-15 -1522 ((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2105 ((-964) (-525) (-631 (-205)) (-205) (-525))) (-15 -2971 ((-964) (-525) (-525) (-525) (-205) (-205) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-631 (-205)) (-631 (-205)) (-525) (-631 (-525)) (-525) (-525) (-525))) (-15 -2395 ((-964) (-525) (-205) (-205) (-631 (-205)) (-525) (-525) (-525) (-525) (-525))) (-15 -3348 ((-964) (-525) (-205) (-205) (-631 (-205)) (-525) (-525) (-205) (-525) (-525) (-525))) (-15 -1528 ((-964) (-525) (-205) (-205) (-631 (-205)) (-525) (-525) (-205) (-525))) (-15 -1616 ((-964) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -4006 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-205) (-525))) (-15 -4058 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-205) (-525) (-525))) (-15 -1500 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2362 ((-964) (-1072) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-205) (-525) (-525) (-525) (-631 (-205)) (-525) (-631 (-205)) (-631 (-525)))) (-15 -3513 ((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-525)) (-525) (-525) (-525) (-205) (-631 (-205)) (-525))) (-15 -1836 ((-964) (-1072) (-525) (-631 (-205)) (-525) (-631 (-205)) (-631 (-205)) (-205) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-631 (-205)) (-631 (-205)) (-631 (-525)) (-525))) (-15 -3198 ((-964) (-1072) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-205) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2456 ((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2884 ((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-525) (-525))) (-15 -2728 ((-964) (-525) (-525) (-525) (-205) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3638 ((-964) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525) (-631 (-205)) (-631 (-205)) (-525) (-525) (-525))))) (T -694))
+((-3638 (*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-694)))) (-2728 (*1 *2 *3 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-694)))) (-2884 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-694)))) (-2456 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-694)))) (-3198 (*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4) (-12 (-5 *3 (-1072)) (-5 *4 (-525)) (-5 *5 (-631 (-205))) (-5 *6 (-205)) (-5 *2 (-964)) (-5 *1 (-694)))) (-1836 (*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4) (-12 (-5 *3 (-1072)) (-5 *5 (-631 (-205))) (-5 *6 (-205)) (-5 *7 (-631 (-525))) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-694)))) (-3513 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3) (-12 (-5 *4 (-631 (-205))) (-5 *5 (-631 (-525))) (-5 *6 (-205)) (-5 *3 (-525)) (-5 *2 (-964)) (-5 *1 (-694)))) (-2362 (*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7) (-12 (-5 *3 (-1072)) (-5 *5 (-631 (-205))) (-5 *6 (-205)) (-5 *7 (-631 (-525))) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-694)))) (-1500 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-694)))) (-4058 (*1 *2 *3 *4 *4 *5 *3 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205)) (-5 *2 (-964)) (-5 *1 (-694)))) (-4006 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205)) (-5 *2 (-964)) (-5 *1 (-694)))) (-1616 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-694)))) (-1528 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-694)))) (-3348 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3) (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-694)))) (-2395 (*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3) (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-694)))) (-2971 (*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3) (-12 (-5 *5 (-631 (-205))) (-5 *6 (-631 (-525))) (-5 *3 (-525)) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-694)))) (-2105 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205)) (-5 *2 (-964)) (-5 *1 (-694)))) (-1522 (*1 *2 *3 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-694)))))
+(-10 -7 (-15 -1522 ((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2105 ((-964) (-525) (-631 (-205)) (-205) (-525))) (-15 -2971 ((-964) (-525) (-525) (-525) (-205) (-205) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-631 (-205)) (-631 (-205)) (-525) (-631 (-525)) (-525) (-525) (-525))) (-15 -2395 ((-964) (-525) (-205) (-205) (-631 (-205)) (-525) (-525) (-525) (-525) (-525))) (-15 -3348 ((-964) (-525) (-205) (-205) (-631 (-205)) (-525) (-525) (-205) (-525) (-525) (-525))) (-15 -1528 ((-964) (-525) (-205) (-205) (-631 (-205)) (-525) (-525) (-205) (-525))) (-15 -1616 ((-964) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -4006 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-205) (-525))) (-15 -4058 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-205) (-525) (-525))) (-15 -1500 ((-964) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2362 ((-964) (-1072) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-205) (-525) (-525) (-525) (-631 (-205)) (-525) (-631 (-205)) (-631 (-525)))) (-15 -3513 ((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-525)) (-525) (-525) (-525) (-205) (-631 (-205)) (-525))) (-15 -1836 ((-964) (-1072) (-525) (-631 (-205)) (-525) (-631 (-205)) (-631 (-205)) (-205) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-631 (-205)) (-631 (-205)) (-631 (-525)) (-525))) (-15 -3198 ((-964) (-1072) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-205) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2456 ((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2884 ((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-525) (-525))) (-15 -2728 ((-964) (-525) (-525) (-525) (-205) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3638 ((-964) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525) (-631 (-205)) (-631 (-205)) (-525) (-525) (-525))))
+((-2076 (((-964) (-525) (-525) (-525) (-205) (-631 (-205)) (-525) (-631 (-205)) (-525)) 63)) (-2941 (((-964) (-525) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-525) (-108) (-205) (-525) (-205) (-205) (-108) (-205) (-205) (-205) (-205) (-108) (-525) (-525) (-525) (-525) (-525) (-205) (-205) (-205) (-525) (-525) (-525) (-525) (-525) (-631 (-525)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-78 CONFUN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-75 OBJFUN)))) 62)) (-3058 (((-964) (-525) (-525) (-525) (-525) (-525) (-525) (-525) (-525) (-205) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-108) (-108) (-108) (-525) (-525) (-631 (-205)) (-631 (-525)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-63 QPHESS)))) 58)) (-3998 (((-964) (-525) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-108) (-525) (-525) (-631 (-205)) (-525)) 51)) (-3549 (((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-64 FUNCT1)))) 50)) (-2652 (((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-61 LSFUN2)))) 46)) (-2862 (((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-77 LSFUN1)))) 42)) (-2650 (((-964) (-525) (-205) (-205) (-525) (-205) (-108) (-205) (-205) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-75 OBJFUN)))) 38)))
+(((-695) (-10 -7 (-15 -2650 ((-964) (-525) (-205) (-205) (-525) (-205) (-108) (-205) (-205) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-75 OBJFUN))))) (-15 -2862 ((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-77 LSFUN1))))) (-15 -2652 ((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-61 LSFUN2))))) (-15 -3549 ((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-64 FUNCT1))))) (-15 -3998 ((-964) (-525) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-108) (-525) (-525) (-631 (-205)) (-525))) (-15 -3058 ((-964) (-525) (-525) (-525) (-525) (-525) (-525) (-525) (-525) (-205) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-108) (-108) (-108) (-525) (-525) (-631 (-205)) (-631 (-525)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-63 QPHESS))))) (-15 -2941 ((-964) (-525) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-525) (-108) (-205) (-525) (-205) (-205) (-108) (-205) (-205) (-205) (-205) (-108) (-525) (-525) (-525) (-525) (-525) (-205) (-205) (-205) (-525) (-525) (-525) (-525) (-525) (-631 (-525)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-78 CONFUN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-75 OBJFUN))))) (-15 -2076 ((-964) (-525) (-525) (-525) (-205) (-631 (-205)) (-525) (-631 (-205)) (-525))))) (T -695))
+((-2076 (*1 *2 *3 *3 *3 *4 *5 *3 *5 *3) (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-695)))) (-2941 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *3 *3 *5 *6 *3 *6 *6 *5 *6 *6 *6 *6 *5 *3 *3 *3 *3 *3 *6 *6 *6 *3 *3 *3 *3 *3 *7 *4 *4 *4 *4 *3 *8 *9) (-12 (-5 *4 (-631 (-205))) (-5 *5 (-108)) (-5 *6 (-205)) (-5 *7 (-631 (-525))) (-5 *8 (-3 (|:| |fn| (-366)) (|:| |fp| (-78 CONFUN)))) (-5 *9 (-3 (|:| |fn| (-366)) (|:| |fp| (-75 OBJFUN)))) (-5 *3 (-525)) (-5 *2 (-964)) (-5 *1 (-695)))) (-3058 (*1 *2 *3 *3 *3 *3 *3 *3 *3 *3 *4 *5 *5 *5 *5 *5 *5 *6 *6 *6 *3 *3 *5 *7 *3 *8) (-12 (-5 *5 (-631 (-205))) (-5 *6 (-108)) (-5 *7 (-631 (-525))) (-5 *8 (-3 (|:| |fn| (-366)) (|:| |fp| (-63 QPHESS)))) (-5 *3 (-525)) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-695)))) (-3998 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-108)) (-5 *2 (-964)) (-5 *1 (-695)))) (-3549 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-64 FUNCT1)))) (-5 *2 (-964)) (-5 *1 (-695)))) (-2652 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-61 LSFUN2)))) (-5 *2 (-964)) (-5 *1 (-695)))) (-2862 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-77 LSFUN1)))) (-5 *2 (-964)) (-5 *1 (-695)))) (-2650 (*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7) (-12 (-5 *3 (-525)) (-5 *5 (-108)) (-5 *6 (-631 (-205))) (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-75 OBJFUN)))) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-695)))))
+(-10 -7 (-15 -2650 ((-964) (-525) (-205) (-205) (-525) (-205) (-108) (-205) (-205) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-75 OBJFUN))))) (-15 -2862 ((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-77 LSFUN1))))) (-15 -2652 ((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-61 LSFUN2))))) (-15 -3549 ((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-64 FUNCT1))))) (-15 -3998 ((-964) (-525) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-108) (-525) (-525) (-631 (-205)) (-525))) (-15 -3058 ((-964) (-525) (-525) (-525) (-525) (-525) (-525) (-525) (-525) (-205) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-108) (-108) (-108) (-525) (-525) (-631 (-205)) (-631 (-525)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-63 QPHESS))))) (-15 -2941 ((-964) (-525) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-525) (-108) (-205) (-525) (-205) (-205) (-108) (-205) (-205) (-205) (-205) (-108) (-525) (-525) (-525) (-525) (-525) (-205) (-205) (-205) (-525) (-525) (-525) (-525) (-525) (-631 (-525)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-78 CONFUN))) (-3 (|:| |fn| (-366)) (|:| |fp| (-75 OBJFUN))))) (-15 -2076 ((-964) (-525) (-525) (-525) (-205) (-631 (-205)) (-525) (-631 (-205)) (-525))))
+((-3550 (((-964) (-1072) (-525) (-525) (-525) (-525) (-631 (-157 (-205))) (-631 (-157 (-205))) (-525)) 47)) (-3220 (((-964) (-1072) (-1072) (-525) (-525) (-631 (-157 (-205))) (-525) (-631 (-157 (-205))) (-525) (-525) (-631 (-157 (-205))) (-525)) 46)) (-1667 (((-964) (-525) (-525) (-525) (-631 (-157 (-205))) (-525)) 45)) (-2463 (((-964) (-1072) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525)) 40)) (-3279 (((-964) (-1072) (-1072) (-525) (-525) (-631 (-205)) (-525) (-631 (-205)) (-525) (-525) (-631 (-205)) (-525)) 39)) (-2847 (((-964) (-525) (-525) (-525) (-631 (-205)) (-525)) 36)) (-3596 (((-964) (-525) (-631 (-205)) (-525) (-631 (-525)) (-525)) 35)) (-1376 (((-964) (-525) (-525) (-525) (-525) (-591 (-108)) (-631 (-205)) (-631 (-525)) (-631 (-525)) (-205) (-205) (-525)) 34)) (-4137 (((-964) (-525) (-525) (-525) (-631 (-525)) (-631 (-525)) (-631 (-525)) (-631 (-525)) (-108) (-205) (-108) (-631 (-525)) (-631 (-205)) (-525)) 33)) (-3882 (((-964) (-525) (-525) (-525) (-525) (-205) (-108) (-108) (-591 (-108)) (-631 (-205)) (-631 (-525)) (-631 (-525)) (-525)) 32)))
+(((-696) (-10 -7 (-15 -3882 ((-964) (-525) (-525) (-525) (-525) (-205) (-108) (-108) (-591 (-108)) (-631 (-205)) (-631 (-525)) (-631 (-525)) (-525))) (-15 -4137 ((-964) (-525) (-525) (-525) (-631 (-525)) (-631 (-525)) (-631 (-525)) (-631 (-525)) (-108) (-205) (-108) (-631 (-525)) (-631 (-205)) (-525))) (-15 -1376 ((-964) (-525) (-525) (-525) (-525) (-591 (-108)) (-631 (-205)) (-631 (-525)) (-631 (-525)) (-205) (-205) (-525))) (-15 -3596 ((-964) (-525) (-631 (-205)) (-525) (-631 (-525)) (-525))) (-15 -2847 ((-964) (-525) (-525) (-525) (-631 (-205)) (-525))) (-15 -3279 ((-964) (-1072) (-1072) (-525) (-525) (-631 (-205)) (-525) (-631 (-205)) (-525) (-525) (-631 (-205)) (-525))) (-15 -2463 ((-964) (-1072) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -1667 ((-964) (-525) (-525) (-525) (-631 (-157 (-205))) (-525))) (-15 -3220 ((-964) (-1072) (-1072) (-525) (-525) (-631 (-157 (-205))) (-525) (-631 (-157 (-205))) (-525) (-525) (-631 (-157 (-205))) (-525))) (-15 -3550 ((-964) (-1072) (-525) (-525) (-525) (-525) (-631 (-157 (-205))) (-631 (-157 (-205))) (-525))))) (T -696))
+((-3550 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1072)) (-5 *4 (-525)) (-5 *5 (-631 (-157 (-205)))) (-5 *2 (-964)) (-5 *1 (-696)))) (-3220 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1072)) (-5 *4 (-525)) (-5 *5 (-631 (-157 (-205)))) (-5 *2 (-964)) (-5 *1 (-696)))) (-1667 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-157 (-205)))) (-5 *2 (-964)) (-5 *1 (-696)))) (-2463 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1072)) (-5 *4 (-525)) (-5 *5 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-696)))) (-3279 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1072)) (-5 *4 (-525)) (-5 *5 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-696)))) (-2847 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-696)))) (-3596 (*1 *2 *3 *4 *3 *5 *3) (-12 (-5 *4 (-631 (-205))) (-5 *5 (-631 (-525))) (-5 *3 (-525)) (-5 *2 (-964)) (-5 *1 (-696)))) (-1376 (*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3) (-12 (-5 *4 (-591 (-108))) (-5 *5 (-631 (-205))) (-5 *6 (-631 (-525))) (-5 *7 (-205)) (-5 *3 (-525)) (-5 *2 (-964)) (-5 *1 (-696)))) (-4137 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3) (-12 (-5 *4 (-631 (-525))) (-5 *5 (-108)) (-5 *7 (-631 (-205))) (-5 *3 (-525)) (-5 *6 (-205)) (-5 *2 (-964)) (-5 *1 (-696)))) (-3882 (*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3) (-12 (-5 *6 (-591 (-108))) (-5 *7 (-631 (-205))) (-5 *8 (-631 (-525))) (-5 *3 (-525)) (-5 *4 (-205)) (-5 *5 (-108)) (-5 *2 (-964)) (-5 *1 (-696)))))
+(-10 -7 (-15 -3882 ((-964) (-525) (-525) (-525) (-525) (-205) (-108) (-108) (-591 (-108)) (-631 (-205)) (-631 (-525)) (-631 (-525)) (-525))) (-15 -4137 ((-964) (-525) (-525) (-525) (-631 (-525)) (-631 (-525)) (-631 (-525)) (-631 (-525)) (-108) (-205) (-108) (-631 (-525)) (-631 (-205)) (-525))) (-15 -1376 ((-964) (-525) (-525) (-525) (-525) (-591 (-108)) (-631 (-205)) (-631 (-525)) (-631 (-525)) (-205) (-205) (-525))) (-15 -3596 ((-964) (-525) (-631 (-205)) (-525) (-631 (-525)) (-525))) (-15 -2847 ((-964) (-525) (-525) (-525) (-631 (-205)) (-525))) (-15 -3279 ((-964) (-1072) (-1072) (-525) (-525) (-631 (-205)) (-525) (-631 (-205)) (-525) (-525) (-631 (-205)) (-525))) (-15 -2463 ((-964) (-1072) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -1667 ((-964) (-525) (-525) (-525) (-631 (-157 (-205))) (-525))) (-15 -3220 ((-964) (-1072) (-1072) (-525) (-525) (-631 (-157 (-205))) (-525) (-631 (-157 (-205))) (-525) (-525) (-631 (-157 (-205))) (-525))) (-15 -3550 ((-964) (-1072) (-525) (-525) (-525) (-525) (-631 (-157 (-205))) (-631 (-157 (-205))) (-525))))
+((-3094 (((-964) (-525) (-525) (-525) (-525) (-525) (-108) (-525) (-108) (-525) (-631 (-157 (-205))) (-631 (-157 (-205))) (-525)) 65)) (-1595 (((-964) (-525) (-525) (-525) (-525) (-525) (-108) (-525) (-108) (-525) (-631 (-205)) (-631 (-205)) (-525)) 60)) (-2969 (((-964) (-525) (-525) (-205) (-525) (-525) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-366)) (|:| |fp| (-66 IMAGE))) (-366)) 56) (((-964) (-525) (-525) (-205) (-525) (-525) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-366)) (|:| |fp| (-66 IMAGE)))) 55)) (-1763 (((-964) (-525) (-525) (-525) (-205) (-108) (-525) (-631 (-205)) (-631 (-205)) (-525)) 37)) (-3141 (((-964) (-525) (-525) (-205) (-205) (-525) (-525) (-631 (-205)) (-525)) 33)) (-1894 (((-964) (-631 (-205)) (-525) (-631 (-205)) (-525) (-525) (-525) (-525) (-525)) 30)) (-3262 (((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525)) 29)) (-3697 (((-964) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525)) 28)) (-3410 (((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525)) 27)) (-1220 (((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-525)) 26)) (-2013 (((-964) (-525) (-525) (-631 (-205)) (-525)) 25)) (-3297 (((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525)) 24)) (-2242 (((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525)) 23)) (-3588 (((-964) (-631 (-205)) (-525) (-525) (-525) (-525)) 22)) (-3558 (((-964) (-525) (-525) (-631 (-205)) (-525)) 21)))
+(((-697) (-10 -7 (-15 -3558 ((-964) (-525) (-525) (-631 (-205)) (-525))) (-15 -3588 ((-964) (-631 (-205)) (-525) (-525) (-525) (-525))) (-15 -2242 ((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3297 ((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2013 ((-964) (-525) (-525) (-631 (-205)) (-525))) (-15 -1220 ((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-525))) (-15 -3410 ((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3697 ((-964) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3262 ((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -1894 ((-964) (-631 (-205)) (-525) (-631 (-205)) (-525) (-525) (-525) (-525) (-525))) (-15 -3141 ((-964) (-525) (-525) (-205) (-205) (-525) (-525) (-631 (-205)) (-525))) (-15 -1763 ((-964) (-525) (-525) (-525) (-205) (-108) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2969 ((-964) (-525) (-525) (-205) (-525) (-525) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-366)) (|:| |fp| (-66 IMAGE))))) (-15 -2969 ((-964) (-525) (-525) (-205) (-525) (-525) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-366)) (|:| |fp| (-66 IMAGE))) (-366))) (-15 -1595 ((-964) (-525) (-525) (-525) (-525) (-525) (-108) (-525) (-108) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3094 ((-964) (-525) (-525) (-525) (-525) (-525) (-108) (-525) (-108) (-525) (-631 (-157 (-205))) (-631 (-157 (-205))) (-525))))) (T -697))
+((-3094 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-525)) (-5 *4 (-108)) (-5 *5 (-631 (-157 (-205)))) (-5 *2 (-964)) (-5 *1 (-697)))) (-1595 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-525)) (-5 *4 (-108)) (-5 *5 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-697)))) (-2969 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8) (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-65 DOT)))) (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-66 IMAGE)))) (-5 *8 (-366)) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-697)))) (-2969 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7) (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-65 DOT)))) (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-66 IMAGE)))) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-697)))) (-1763 (*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3) (-12 (-5 *3 (-525)) (-5 *5 (-108)) (-5 *6 (-631 (-205))) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-697)))) (-3141 (*1 *2 *3 *3 *4 *4 *3 *3 *5 *3) (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-697)))) (-1894 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-697)))) (-3262 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-697)))) (-3697 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-697)))) (-3410 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-697)))) (-1220 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-697)))) (-2013 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-697)))) (-3297 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-697)))) (-2242 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-697)))) (-3588 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-697)))) (-3558 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-697)))))
+(-10 -7 (-15 -3558 ((-964) (-525) (-525) (-631 (-205)) (-525))) (-15 -3588 ((-964) (-631 (-205)) (-525) (-525) (-525) (-525))) (-15 -2242 ((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3297 ((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2013 ((-964) (-525) (-525) (-631 (-205)) (-525))) (-15 -1220 ((-964) (-525) (-525) (-525) (-525) (-631 (-205)) (-525))) (-15 -3410 ((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3697 ((-964) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3262 ((-964) (-525) (-525) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -1894 ((-964) (-631 (-205)) (-525) (-631 (-205)) (-525) (-525) (-525) (-525) (-525))) (-15 -3141 ((-964) (-525) (-525) (-205) (-205) (-525) (-525) (-631 (-205)) (-525))) (-15 -1763 ((-964) (-525) (-525) (-525) (-205) (-108) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2969 ((-964) (-525) (-525) (-205) (-525) (-525) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-366)) (|:| |fp| (-66 IMAGE))))) (-15 -2969 ((-964) (-525) (-525) (-205) (-525) (-525) (-525) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-366)) (|:| |fp| (-66 IMAGE))) (-366))) (-15 -1595 ((-964) (-525) (-525) (-525) (-525) (-525) (-108) (-525) (-108) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -3094 ((-964) (-525) (-525) (-525) (-525) (-525) (-108) (-525) (-108) (-525) (-631 (-157 (-205))) (-631 (-157 (-205))) (-525))))
+((-3357 (((-964) (-525) (-525) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-68 APROD)))) 61)) (-3609 (((-964) (-525) (-631 (-205)) (-525) (-631 (-205)) (-631 (-525)) (-525) (-631 (-205)) (-525) (-525) (-525) (-525)) 57)) (-2160 (((-964) (-525) (-631 (-205)) (-108) (-205) (-525) (-525) (-525) (-525) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-66 APROD))) (-3 (|:| |fn| (-366)) (|:| |fp| (-71 MSOLVE)))) 56)) (-1775 (((-964) (-525) (-525) (-631 (-205)) (-525) (-631 (-525)) (-525) (-631 (-525)) (-631 (-205)) (-631 (-525)) (-631 (-525)) (-631 (-205)) (-631 (-205)) (-631 (-525)) (-525)) 37)) (-2138 (((-964) (-525) (-525) (-525) (-205) (-525) (-631 (-205)) (-631 (-205)) (-525)) 36)) (-3039 (((-964) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525)) 33)) (-3494 (((-964) (-525) (-631 (-205)) (-525) (-631 (-525)) (-631 (-525)) (-525) (-631 (-525)) (-631 (-205))) 32)) (-2893 (((-964) (-631 (-205)) (-525) (-631 (-205)) (-525) (-525) (-525)) 28)) (-2642 (((-964) (-525) (-631 (-205)) (-525) (-631 (-205)) (-525)) 27)) (-4188 (((-964) (-525) (-631 (-205)) (-525) (-631 (-205)) (-525)) 26)) (-1991 (((-964) (-525) (-631 (-157 (-205))) (-525) (-525) (-525) (-525) (-631 (-157 (-205))) (-525)) 22)))
+(((-698) (-10 -7 (-15 -1991 ((-964) (-525) (-631 (-157 (-205))) (-525) (-525) (-525) (-525) (-631 (-157 (-205))) (-525))) (-15 -4188 ((-964) (-525) (-631 (-205)) (-525) (-631 (-205)) (-525))) (-15 -2642 ((-964) (-525) (-631 (-205)) (-525) (-631 (-205)) (-525))) (-15 -2893 ((-964) (-631 (-205)) (-525) (-631 (-205)) (-525) (-525) (-525))) (-15 -3494 ((-964) (-525) (-631 (-205)) (-525) (-631 (-525)) (-631 (-525)) (-525) (-631 (-525)) (-631 (-205)))) (-15 -3039 ((-964) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2138 ((-964) (-525) (-525) (-525) (-205) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -1775 ((-964) (-525) (-525) (-631 (-205)) (-525) (-631 (-525)) (-525) (-631 (-525)) (-631 (-205)) (-631 (-525)) (-631 (-525)) (-631 (-205)) (-631 (-205)) (-631 (-525)) (-525))) (-15 -2160 ((-964) (-525) (-631 (-205)) (-108) (-205) (-525) (-525) (-525) (-525) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-66 APROD))) (-3 (|:| |fn| (-366)) (|:| |fp| (-71 MSOLVE))))) (-15 -3609 ((-964) (-525) (-631 (-205)) (-525) (-631 (-205)) (-631 (-525)) (-525) (-631 (-205)) (-525) (-525) (-525) (-525))) (-15 -3357 ((-964) (-525) (-525) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-68 APROD))))))) (T -698))
+((-3357 (*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6) (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-68 APROD)))) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-698)))) (-3609 (*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3) (-12 (-5 *4 (-631 (-205))) (-5 *5 (-631 (-525))) (-5 *3 (-525)) (-5 *2 (-964)) (-5 *1 (-698)))) (-2160 (*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-108)) (-5 *6 (-205)) (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-66 APROD)))) (-5 *8 (-3 (|:| |fn| (-366)) (|:| |fp| (-71 MSOLVE)))) (-5 *2 (-964)) (-5 *1 (-698)))) (-1775 (*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3) (-12 (-5 *4 (-631 (-205))) (-5 *5 (-631 (-525))) (-5 *3 (-525)) (-5 *2 (-964)) (-5 *1 (-698)))) (-2138 (*1 *2 *3 *3 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-698)))) (-3039 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-698)))) (-3494 (*1 *2 *3 *4 *3 *5 *5 *3 *5 *4) (-12 (-5 *4 (-631 (-205))) (-5 *5 (-631 (-525))) (-5 *3 (-525)) (-5 *2 (-964)) (-5 *1 (-698)))) (-2893 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-698)))) (-2642 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-698)))) (-4188 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-698)))) (-1991 (*1 *2 *3 *4 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-157 (-205)))) (-5 *2 (-964)) (-5 *1 (-698)))))
+(-10 -7 (-15 -1991 ((-964) (-525) (-631 (-157 (-205))) (-525) (-525) (-525) (-525) (-631 (-157 (-205))) (-525))) (-15 -4188 ((-964) (-525) (-631 (-205)) (-525) (-631 (-205)) (-525))) (-15 -2642 ((-964) (-525) (-631 (-205)) (-525) (-631 (-205)) (-525))) (-15 -2893 ((-964) (-631 (-205)) (-525) (-631 (-205)) (-525) (-525) (-525))) (-15 -3494 ((-964) (-525) (-631 (-205)) (-525) (-631 (-525)) (-631 (-525)) (-525) (-631 (-525)) (-631 (-205)))) (-15 -3039 ((-964) (-525) (-525) (-631 (-205)) (-631 (-205)) (-631 (-205)) (-525))) (-15 -2138 ((-964) (-525) (-525) (-525) (-205) (-525) (-631 (-205)) (-631 (-205)) (-525))) (-15 -1775 ((-964) (-525) (-525) (-631 (-205)) (-525) (-631 (-525)) (-525) (-631 (-525)) (-631 (-205)) (-631 (-525)) (-631 (-525)) (-631 (-205)) (-631 (-205)) (-631 (-525)) (-525))) (-15 -2160 ((-964) (-525) (-631 (-205)) (-108) (-205) (-525) (-525) (-525) (-525) (-205) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-66 APROD))) (-3 (|:| |fn| (-366)) (|:| |fp| (-71 MSOLVE))))) (-15 -3609 ((-964) (-525) (-631 (-205)) (-525) (-631 (-205)) (-631 (-525)) (-525) (-631 (-205)) (-525) (-525) (-525) (-525))) (-15 -3357 ((-964) (-525) (-525) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-525) (-631 (-205)) (-525) (-3 (|:| |fn| (-366)) (|:| |fp| (-68 APROD))))))
+((-3398 (((-964) (-1072) (-525) (-525) (-631 (-205)) (-525) (-525) (-631 (-205))) 29)) (-3658 (((-964) (-1072) (-525) (-525) (-631 (-205))) 28)) (-2106 (((-964) (-1072) (-525) (-525) (-631 (-205)) (-525) (-631 (-525)) (-525) (-631 (-205))) 27)) (-2123 (((-964) (-525) (-525) (-525) (-631 (-205))) 21)))
+(((-699) (-10 -7 (-15 -2123 ((-964) (-525) (-525) (-525) (-631 (-205)))) (-15 -2106 ((-964) (-1072) (-525) (-525) (-631 (-205)) (-525) (-631 (-525)) (-525) (-631 (-205)))) (-15 -3658 ((-964) (-1072) (-525) (-525) (-631 (-205)))) (-15 -3398 ((-964) (-1072) (-525) (-525) (-631 (-205)) (-525) (-525) (-631 (-205)))))) (T -699))
+((-3398 (*1 *2 *3 *4 *4 *5 *4 *4 *5) (-12 (-5 *3 (-1072)) (-5 *4 (-525)) (-5 *5 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-699)))) (-3658 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1072)) (-5 *4 (-525)) (-5 *5 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-699)))) (-2106 (*1 *2 *3 *4 *4 *5 *4 *6 *4 *5) (-12 (-5 *3 (-1072)) (-5 *5 (-631 (-205))) (-5 *6 (-631 (-525))) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-699)))) (-2123 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964)) (-5 *1 (-699)))))
+(-10 -7 (-15 -2123 ((-964) (-525) (-525) (-525) (-631 (-205)))) (-15 -2106 ((-964) (-1072) (-525) (-525) (-631 (-205)) (-525) (-631 (-525)) (-525) (-631 (-205)))) (-15 -3658 ((-964) (-1072) (-525) (-525) (-631 (-205)))) (-15 -3398 ((-964) (-1072) (-525) (-525) (-631 (-205)) (-525) (-525) (-631 (-205)))))
+((-2496 (((-964) (-205) (-205) (-205) (-205) (-525)) 62)) (-2335 (((-964) (-205) (-205) (-205) (-525)) 61)) (-2205 (((-964) (-205) (-205) (-205) (-525)) 60)) (-1801 (((-964) (-205) (-205) (-525)) 59)) (-3140 (((-964) (-205) (-525)) 58)) (-2868 (((-964) (-205) (-525)) 57)) (-3338 (((-964) (-205) (-525)) 56)) (-2803 (((-964) (-205) (-525)) 55)) (-1641 (((-964) (-205) (-525)) 54)) (-3415 (((-964) (-205) (-525)) 53)) (-2391 (((-964) (-205) (-157 (-205)) (-525) (-1072) (-525)) 52)) (-1942 (((-964) (-205) (-157 (-205)) (-525) (-1072) (-525)) 51)) (-2334 (((-964) (-205) (-525)) 50)) (-3979 (((-964) (-205) (-525)) 49)) (-3569 (((-964) (-205) (-525)) 48)) (-2481 (((-964) (-205) (-525)) 47)) (-2249 (((-964) (-525) (-205) (-157 (-205)) (-525) (-1072) (-525)) 46)) (-3469 (((-964) (-1072) (-157 (-205)) (-1072) (-525)) 45)) (-3302 (((-964) (-1072) (-157 (-205)) (-1072) (-525)) 44)) (-1980 (((-964) (-205) (-157 (-205)) (-525) (-1072) (-525)) 43)) (-3662 (((-964) (-205) (-157 (-205)) (-525) (-1072) (-525)) 42)) (-2684 (((-964) (-205) (-525)) 39)) (-1839 (((-964) (-205) (-525)) 38)) (-1530 (((-964) (-205) (-525)) 37)) (-1396 (((-964) (-205) (-525)) 36)) (-2524 (((-964) (-205) (-525)) 35)) (-3575 (((-964) (-205) (-525)) 34)) (-2799 (((-964) (-205) (-525)) 33)) (-3991 (((-964) (-205) (-525)) 32)) (-1442 (((-964) (-205) (-525)) 31)) (-3456 (((-964) (-205) (-525)) 30)) (-3913 (((-964) (-205) (-205) (-205) (-525)) 29)) (-1249 (((-964) (-205) (-525)) 28)) (-4051 (((-964) (-205) (-525)) 27)) (-3639 (((-964) (-205) (-525)) 26)) (-1424 (((-964) (-205) (-525)) 25)) (-1694 (((-964) (-205) (-525)) 24)) (-1481 (((-964) (-157 (-205)) (-525)) 21)))
+(((-700) (-10 -7 (-15 -1481 ((-964) (-157 (-205)) (-525))) (-15 -1694 ((-964) (-205) (-525))) (-15 -1424 ((-964) (-205) (-525))) (-15 -3639 ((-964) (-205) (-525))) (-15 -4051 ((-964) (-205) (-525))) (-15 -1249 ((-964) (-205) (-525))) (-15 -3913 ((-964) (-205) (-205) (-205) (-525))) (-15 -3456 ((-964) (-205) (-525))) (-15 -1442 ((-964) (-205) (-525))) (-15 -3991 ((-964) (-205) (-525))) (-15 -2799 ((-964) (-205) (-525))) (-15 -3575 ((-964) (-205) (-525))) (-15 -2524 ((-964) (-205) (-525))) (-15 -1396 ((-964) (-205) (-525))) (-15 -1530 ((-964) (-205) (-525))) (-15 -1839 ((-964) (-205) (-525))) (-15 -2684 ((-964) (-205) (-525))) (-15 -3662 ((-964) (-205) (-157 (-205)) (-525) (-1072) (-525))) (-15 -1980 ((-964) (-205) (-157 (-205)) (-525) (-1072) (-525))) (-15 -3302 ((-964) (-1072) (-157 (-205)) (-1072) (-525))) (-15 -3469 ((-964) (-1072) (-157 (-205)) (-1072) (-525))) (-15 -2249 ((-964) (-525) (-205) (-157 (-205)) (-525) (-1072) (-525))) (-15 -2481 ((-964) (-205) (-525))) (-15 -3569 ((-964) (-205) (-525))) (-15 -3979 ((-964) (-205) (-525))) (-15 -2334 ((-964) (-205) (-525))) (-15 -1942 ((-964) (-205) (-157 (-205)) (-525) (-1072) (-525))) (-15 -2391 ((-964) (-205) (-157 (-205)) (-525) (-1072) (-525))) (-15 -3415 ((-964) (-205) (-525))) (-15 -1641 ((-964) (-205) (-525))) (-15 -2803 ((-964) (-205) (-525))) (-15 -3338 ((-964) (-205) (-525))) (-15 -2868 ((-964) (-205) (-525))) (-15 -3140 ((-964) (-205) (-525))) (-15 -1801 ((-964) (-205) (-205) (-525))) (-15 -2205 ((-964) (-205) (-205) (-205) (-525))) (-15 -2335 ((-964) (-205) (-205) (-205) (-525))) (-15 -2496 ((-964) (-205) (-205) (-205) (-205) (-525))))) (T -700))
+((-2496 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-2335 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-2205 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-1801 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-3140 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-2868 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-3338 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-2803 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-1641 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-3415 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-2391 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-157 (-205))) (-5 *5 (-525)) (-5 *6 (-1072)) (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-700)))) (-1942 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-157 (-205))) (-5 *5 (-525)) (-5 *6 (-1072)) (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-700)))) (-2334 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-3979 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-3569 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-2481 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-2249 (*1 *2 *3 *4 *5 *3 *6 *3) (-12 (-5 *3 (-525)) (-5 *5 (-157 (-205))) (-5 *6 (-1072)) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-700)))) (-3469 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1072)) (-5 *4 (-157 (-205))) (-5 *5 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-3302 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1072)) (-5 *4 (-157 (-205))) (-5 *5 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-1980 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-157 (-205))) (-5 *5 (-525)) (-5 *6 (-1072)) (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-700)))) (-3662 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-157 (-205))) (-5 *5 (-525)) (-5 *6 (-1072)) (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-700)))) (-2684 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-1839 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-1530 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-1396 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-3575 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-2799 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-3991 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-1442 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-3456 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-3913 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-1249 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-4051 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-3639 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-1424 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-1694 (*1 *2 *3 *4) (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))) (-1481 (*1 *2 *3 *4) (-12 (-5 *3 (-157 (-205))) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(-10 -7 (-15 -1481 ((-964) (-157 (-205)) (-525))) (-15 -1694 ((-964) (-205) (-525))) (-15 -1424 ((-964) (-205) (-525))) (-15 -3639 ((-964) (-205) (-525))) (-15 -4051 ((-964) (-205) (-525))) (-15 -1249 ((-964) (-205) (-525))) (-15 -3913 ((-964) (-205) (-205) (-205) (-525))) (-15 -3456 ((-964) (-205) (-525))) (-15 -1442 ((-964) (-205) (-525))) (-15 -3991 ((-964) (-205) (-525))) (-15 -2799 ((-964) (-205) (-525))) (-15 -3575 ((-964) (-205) (-525))) (-15 -2524 ((-964) (-205) (-525))) (-15 -1396 ((-964) (-205) (-525))) (-15 -1530 ((-964) (-205) (-525))) (-15 -1839 ((-964) (-205) (-525))) (-15 -2684 ((-964) (-205) (-525))) (-15 -3662 ((-964) (-205) (-157 (-205)) (-525) (-1072) (-525))) (-15 -1980 ((-964) (-205) (-157 (-205)) (-525) (-1072) (-525))) (-15 -3302 ((-964) (-1072) (-157 (-205)) (-1072) (-525))) (-15 -3469 ((-964) (-1072) (-157 (-205)) (-1072) (-525))) (-15 -2249 ((-964) (-525) (-205) (-157 (-205)) (-525) (-1072) (-525))) (-15 -2481 ((-964) (-205) (-525))) (-15 -3569 ((-964) (-205) (-525))) (-15 -3979 ((-964) (-205) (-525))) (-15 -2334 ((-964) (-205) (-525))) (-15 -1942 ((-964) (-205) (-157 (-205)) (-525) (-1072) (-525))) (-15 -2391 ((-964) (-205) (-157 (-205)) (-525) (-1072) (-525))) (-15 -3415 ((-964) (-205) (-525))) (-15 -1641 ((-964) (-205) (-525))) (-15 -2803 ((-964) (-205) (-525))) (-15 -3338 ((-964) (-205) (-525))) (-15 -2868 ((-964) (-205) (-525))) (-15 -3140 ((-964) (-205) (-525))) (-15 -1801 ((-964) (-205) (-205) (-525))) (-15 -2205 ((-964) (-205) (-205) (-205) (-525))) (-15 -2335 ((-964) (-205) (-205) (-205) (-525))) (-15 -2496 ((-964) (-205) (-205) (-205) (-205) (-525))))
+((-3404 (((-1176)) 18)) (-1847 (((-1072)) 22)) (-3118 (((-1072)) 21)) (-2721 (((-1022) (-1089) (-631 (-525))) 37) (((-1022) (-1089) (-631 (-205))) 32)) (-4166 (((-108)) 16)) (-2396 (((-1072) (-1072)) 25)))
+(((-701) (-10 -7 (-15 -3118 ((-1072))) (-15 -1847 ((-1072))) (-15 -2396 ((-1072) (-1072))) (-15 -2721 ((-1022) (-1089) (-631 (-205)))) (-15 -2721 ((-1022) (-1089) (-631 (-525)))) (-15 -4166 ((-108))) (-15 -3404 ((-1176))))) (T -701))
+((-3404 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-701)))) (-4166 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-701)))) (-2721 (*1 *2 *3 *4) (-12 (-5 *3 (-1089)) (-5 *4 (-631 (-525))) (-5 *2 (-1022)) (-5 *1 (-701)))) (-2721 (*1 *2 *3 *4) (-12 (-5 *3 (-1089)) (-5 *4 (-631 (-205))) (-5 *2 (-1022)) (-5 *1 (-701)))) (-2396 (*1 *2 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-701)))) (-1847 (*1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-701)))) (-3118 (*1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-701)))))
+(-10 -7 (-15 -3118 ((-1072))) (-15 -1847 ((-1072))) (-15 -2396 ((-1072) (-1072))) (-15 -2721 ((-1022) (-1089) (-631 (-205)))) (-15 -2721 ((-1022) (-1089) (-631 (-525)))) (-15 -4166 ((-108))) (-15 -3404 ((-1176))))
+((-3619 (($ $ $) 10)) (-2392 (($ $ $ $) 9)) (-2707 (($ $ $) 12)))
+(((-702 |#1|) (-10 -8 (-15 -2707 (|#1| |#1| |#1|)) (-15 -3619 (|#1| |#1| |#1|)) (-15 -2392 (|#1| |#1| |#1| |#1|))) (-703)) (T -702))
+NIL
+(-10 -8 (-15 -2707 (|#1| |#1| |#1|)) (-15 -3619 (|#1| |#1| |#1|)) (-15 -2392 (|#1| |#1| |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-3433 (($ $ (-854)) 28)) (-3447 (($ $ (-854)) 29)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3619 (($ $ $) 25)) (-3022 (((-796) $) 11)) (-2392 (($ $ $ $) 26)) (-2707 (($ $ $) 24)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 30)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 27)))
+(((-703) (-131)) (T -703))
+((-2392 (*1 *1 *1 *1 *1) (-4 *1 (-703))) (-3619 (*1 *1 *1 *1) (-4 *1 (-703))) (-2707 (*1 *1 *1 *1) (-4 *1 (-703))))
+(-13 (-21) (-662) (-10 -8 (-15 -2392 ($ $ $ $)) (-15 -3619 ($ $ $)) (-15 -2707 ($ $ $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-662) . T) ((-1018) . T))
+((-3022 (((-796) $) NIL) (($ (-525)) 10)))
+(((-704 |#1|) (-10 -8 (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|))) (-705)) (T -704))
+NIL
+(-10 -8 (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-3057 (((-3 $ "failed") $) 40)) (-3433 (($ $ (-854)) 28) (($ $ (-712)) 35)) (-4163 (((-3 $ "failed") $) 38)) (-2824 (((-108) $) 34)) (-1838 (((-3 $ "failed") $) 39)) (-3447 (($ $ (-854)) 29) (($ $ (-712)) 36)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3619 (($ $ $) 25)) (-3022 (((-796) $) 11) (($ (-525)) 31)) (-2128 (((-712)) 32)) (-2392 (($ $ $ $) 26)) (-2707 (($ $ $) 24)) (-4191 (($) 18 T CONST)) (-4197 (($) 33 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 30) (($ $ (-712)) 37)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 27)))
+(((-705) (-131)) (T -705))
+((-2128 (*1 *2) (-12 (-4 *1 (-705)) (-5 *2 (-712)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-705)))))
+(-13 (-703) (-664) (-10 -8 (-15 -2128 ((-712))) (-15 -3022 ($ (-525)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-662) . T) ((-664) . T) ((-703) . T) ((-1018) . T))
+((-4072 (((-591 (-2 (|:| |outval| (-157 |#1|)) (|:| |outmult| (-525)) (|:| |outvect| (-591 (-631 (-157 |#1|)))))) (-631 (-157 (-385 (-525)))) |#1|) 33)) (-4052 (((-591 (-157 |#1|)) (-631 (-157 (-385 (-525)))) |#1|) 23)) (-3806 (((-885 (-157 (-385 (-525)))) (-631 (-157 (-385 (-525)))) (-1089)) 20) (((-885 (-157 (-385 (-525)))) (-631 (-157 (-385 (-525))))) 19)))
+(((-706 |#1|) (-10 -7 (-15 -3806 ((-885 (-157 (-385 (-525)))) (-631 (-157 (-385 (-525)))))) (-15 -3806 ((-885 (-157 (-385 (-525)))) (-631 (-157 (-385 (-525)))) (-1089))) (-15 -4052 ((-591 (-157 |#1|)) (-631 (-157 (-385 (-525)))) |#1|)) (-15 -4072 ((-591 (-2 (|:| |outval| (-157 |#1|)) (|:| |outmult| (-525)) (|:| |outvect| (-591 (-631 (-157 |#1|)))))) (-631 (-157 (-385 (-525)))) |#1|))) (-13 (-341) (-786))) (T -706))
+((-4072 (*1 *2 *3 *4) (-12 (-5 *3 (-631 (-157 (-385 (-525))))) (-5 *2 (-591 (-2 (|:| |outval| (-157 *4)) (|:| |outmult| (-525)) (|:| |outvect| (-591 (-631 (-157 *4))))))) (-5 *1 (-706 *4)) (-4 *4 (-13 (-341) (-786))))) (-4052 (*1 *2 *3 *4) (-12 (-5 *3 (-631 (-157 (-385 (-525))))) (-5 *2 (-591 (-157 *4))) (-5 *1 (-706 *4)) (-4 *4 (-13 (-341) (-786))))) (-3806 (*1 *2 *3 *4) (-12 (-5 *3 (-631 (-157 (-385 (-525))))) (-5 *4 (-1089)) (-5 *2 (-885 (-157 (-385 (-525))))) (-5 *1 (-706 *5)) (-4 *5 (-13 (-341) (-786))))) (-3806 (*1 *2 *3) (-12 (-5 *3 (-631 (-157 (-385 (-525))))) (-5 *2 (-885 (-157 (-385 (-525))))) (-5 *1 (-706 *4)) (-4 *4 (-13 (-341) (-786))))))
+(-10 -7 (-15 -3806 ((-885 (-157 (-385 (-525)))) (-631 (-157 (-385 (-525)))))) (-15 -3806 ((-885 (-157 (-385 (-525)))) (-631 (-157 (-385 (-525)))) (-1089))) (-15 -4052 ((-591 (-157 |#1|)) (-631 (-157 (-385 (-525)))) |#1|)) (-15 -4072 ((-591 (-2 (|:| |outval| (-157 |#1|)) (|:| |outmult| (-525)) (|:| |outvect| (-591 (-631 (-157 |#1|)))))) (-631 (-157 (-385 (-525)))) |#1|)))
+((-3185 (((-161 (-525)) |#1|) 25)))
+(((-707 |#1|) (-10 -7 (-15 -3185 ((-161 (-525)) |#1|))) (-382)) (T -707))
+((-3185 (*1 *2 *3) (-12 (-5 *2 (-161 (-525))) (-5 *1 (-707 *3)) (-4 *3 (-382)))))
+(-10 -7 (-15 -3185 ((-161 (-525)) |#1|)))
+((-3975 ((|#1| |#1| |#1|) 24)) (-2173 ((|#1| |#1| |#1|) 23)) (-2332 ((|#1| |#1| |#1|) 32)) (-2352 ((|#1| |#1| |#1|) 28)) (-1779 (((-3 |#1| "failed") |#1| |#1|) 27)) (-1702 (((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|) 22)))
+(((-708 |#1| |#2|) (-10 -7 (-15 -1702 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -2173 (|#1| |#1| |#1|)) (-15 -3975 (|#1| |#1| |#1|)) (-15 -1779 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2352 (|#1| |#1| |#1|)) (-15 -2332 (|#1| |#1| |#1|))) (-650 |#2|) (-341)) (T -708))
+((-2332 (*1 *2 *2 *2) (-12 (-4 *3 (-341)) (-5 *1 (-708 *2 *3)) (-4 *2 (-650 *3)))) (-2352 (*1 *2 *2 *2) (-12 (-4 *3 (-341)) (-5 *1 (-708 *2 *3)) (-4 *2 (-650 *3)))) (-1779 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-341)) (-5 *1 (-708 *2 *3)) (-4 *2 (-650 *3)))) (-3975 (*1 *2 *2 *2) (-12 (-4 *3 (-341)) (-5 *1 (-708 *2 *3)) (-4 *2 (-650 *3)))) (-2173 (*1 *2 *2 *2) (-12 (-4 *3 (-341)) (-5 *1 (-708 *2 *3)) (-4 *2 (-650 *3)))) (-1702 (*1 *2 *3 *3) (-12 (-4 *4 (-341)) (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-708 *3 *4)) (-4 *3 (-650 *4)))))
+(-10 -7 (-15 -1702 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -2173 (|#1| |#1| |#1|)) (-15 -3975 (|#1| |#1| |#1|)) (-15 -1779 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2352 (|#1| |#1| |#1|)) (-15 -2332 (|#1| |#1| |#1|)))
+((-1426 (((-2 (|:| -4003 (-631 (-525))) (|:| |basisDen| (-525)) (|:| |basisInv| (-631 (-525)))) (-525)) 59)) (-3441 (((-2 (|:| -4003 (-631 (-525))) (|:| |basisDen| (-525)) (|:| |basisInv| (-631 (-525))))) 57)) (-2976 (((-525)) 70)))
+(((-709 |#1| |#2|) (-10 -7 (-15 -2976 ((-525))) (-15 -3441 ((-2 (|:| -4003 (-631 (-525))) (|:| |basisDen| (-525)) (|:| |basisInv| (-631 (-525)))))) (-15 -1426 ((-2 (|:| -4003 (-631 (-525))) (|:| |basisDen| (-525)) (|:| |basisInv| (-631 (-525)))) (-525)))) (-1147 (-525)) (-387 (-525) |#1|)) (T -709))
+((-1426 (*1 *2 *3) (-12 (-5 *3 (-525)) (-4 *4 (-1147 *3)) (-5 *2 (-2 (|:| -4003 (-631 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-631 *3)))) (-5 *1 (-709 *4 *5)) (-4 *5 (-387 *3 *4)))) (-3441 (*1 *2) (-12 (-4 *3 (-1147 (-525))) (-5 *2 (-2 (|:| -4003 (-631 (-525))) (|:| |basisDen| (-525)) (|:| |basisInv| (-631 (-525))))) (-5 *1 (-709 *3 *4)) (-4 *4 (-387 (-525) *3)))) (-2976 (*1 *2) (-12 (-4 *3 (-1147 *2)) (-5 *2 (-525)) (-5 *1 (-709 *3 *4)) (-4 *4 (-387 *2 *3)))))
+(-10 -7 (-15 -2976 ((-525))) (-15 -3441 ((-2 (|:| -4003 (-631 (-525))) (|:| |basisDen| (-525)) (|:| |basisInv| (-631 (-525)))))) (-15 -1426 ((-2 (|:| -4003 (-631 (-525))) (|:| |basisDen| (-525)) (|:| |basisInv| (-631 (-525)))) (-525))))
+((-3008 (((-108) $ $) NIL)) (-3528 (((-3 (|:| |nia| (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| |mdnia| (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) $) 21)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 20) (($ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 13) (($ (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 16) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| |mdnia| (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))))) 18)) (-4096 (((-108) $ $) NIL)))
+(((-710) (-13 (-1018) (-10 -8 (-15 -3022 ($ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -3022 ($ (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -3022 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| |mdnia| (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))))) (-15 -3022 ((-796) $)) (-15 -3528 ((-3 (|:| |nia| (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| |mdnia| (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) $))))) (T -710))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-710)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *1 (-710)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *1 (-710)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| |mdnia| (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))))) (-5 *1 (-710)))) (-3528 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| |mdnia| (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))))) (-5 *1 (-710)))))
+(-13 (-1018) (-10 -8 (-15 -3022 ($ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -3022 ($ (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -3022 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| |mdnia| (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))))) (-15 -3022 ((-796) $)) (-15 -3528 ((-3 (|:| |nia| (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| |mdnia| (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) $))))
+((-1696 (((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-885 |#1|))) 18) (((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-885 |#1|)) (-591 (-1089))) 17)) (-4039 (((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-885 |#1|))) 20) (((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-885 |#1|)) (-591 (-1089))) 19)))
+(((-711 |#1|) (-10 -7 (-15 -1696 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-885 |#1|)) (-591 (-1089)))) (-15 -1696 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-885 |#1|)))) (-15 -4039 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-885 |#1|)) (-591 (-1089)))) (-15 -4039 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-885 |#1|))))) (-517)) (T -711))
+((-4039 (*1 *2 *3) (-12 (-5 *3 (-591 (-885 *4))) (-4 *4 (-517)) (-5 *2 (-591 (-591 (-273 (-385 (-885 *4)))))) (-5 *1 (-711 *4)))) (-4039 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-591 (-1089))) (-4 *5 (-517)) (-5 *2 (-591 (-591 (-273 (-385 (-885 *5)))))) (-5 *1 (-711 *5)))) (-1696 (*1 *2 *3) (-12 (-5 *3 (-591 (-885 *4))) (-4 *4 (-517)) (-5 *2 (-591 (-591 (-273 (-385 (-885 *4)))))) (-5 *1 (-711 *4)))) (-1696 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-591 (-1089))) (-4 *5 (-517)) (-5 *2 (-591 (-591 (-273 (-385 (-885 *5)))))) (-5 *1 (-711 *5)))))
+(-10 -7 (-15 -1696 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-885 |#1|)) (-591 (-1089)))) (-15 -1696 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-885 |#1|)))) (-15 -4039 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-885 |#1|)) (-591 (-1089)))) (-15 -4039 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-885 |#1|)))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2593 (($ $ $) 8)) (-2157 (((-3 $ "failed") $ $) 11)) (-3427 (($ $ (-525)) 9)) (-3798 (($) NIL T CONST)) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($ $) NIL)) (-2110 (($ $ $) NIL)) (-2824 (((-108) $) NIL)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1399 (($ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3022 (((-796) $) NIL)) (-3710 (($ $ (-712)) NIL) (($ $ (-854)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-712)) NIL) (($ $ (-854)) NIL)) (* (($ (-712) $) NIL) (($ (-854) $) NIL) (($ $ $) NIL)))
+(((-712) (-13 (-734) (-668) (-10 -8 (-15 -2110 ($ $ $)) (-15 -2129 ($ $ $)) (-15 -1399 ($ $ $)) (-15 -3999 ((-2 (|:| -2963 $) (|:| -3407 $)) $ $)) (-15 -2089 ((-3 $ "failed") $ $)) (-15 -3427 ($ $ (-525))) (-15 -3377 ($ $)) (-6 (-4252 "*"))))) (T -712))
+((-2110 (*1 *1 *1 *1) (-5 *1 (-712))) (-2129 (*1 *1 *1 *1) (-5 *1 (-712))) (-1399 (*1 *1 *1 *1) (-5 *1 (-712))) (-3999 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2963 (-712)) (|:| -3407 (-712)))) (-5 *1 (-712)))) (-2089 (*1 *1 *1 *1) (|partial| -5 *1 (-712))) (-3427 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-712)))) (-3377 (*1 *1 *1) (-5 *1 (-712))))
+(-13 (-734) (-668) (-10 -8 (-15 -2110 ($ $ $)) (-15 -2129 ($ $ $)) (-15 -1399 ($ $ $)) (-15 -3999 ((-2 (|:| -2963 $) (|:| -3407 $)) $ $)) (-15 -2089 ((-3 $ "failed") $ $)) (-15 -3427 ($ $ (-525))) (-15 -3377 ($ $)) (-6 (-4252 "*"))))
+((-4039 (((-3 |#2| "failed") |#2| |#2| (-110) (-1089)) 35)))
+(((-713 |#1| |#2|) (-10 -7 (-15 -4039 ((-3 |#2| "failed") |#2| |#2| (-110) (-1089)))) (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)) (-13 (-29 |#1|) (-1111) (-891))) (T -713))
+((-4039 (*1 *2 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-110)) (-5 *4 (-1089)) (-4 *5 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *1 (-713 *5 *2)) (-4 *2 (-13 (-29 *5) (-1111) (-891))))))
+(-10 -7 (-15 -4039 ((-3 |#2| "failed") |#2| |#2| (-110) (-1089))))
+((-3022 (((-715) |#1|) 8)))
+(((-714 |#1|) (-10 -7 (-15 -3022 ((-715) |#1|))) (-1125)) (T -714))
+((-3022 (*1 *2 *3) (-12 (-5 *2 (-715)) (-5 *1 (-714 *3)) (-4 *3 (-1125)))))
+(-10 -7 (-15 -3022 ((-715) |#1|)))
+((-3008 (((-108) $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 7)) (-4096 (((-108) $ $) 9)))
+(((-715) (-1018)) (T -715))
+NIL
+(-1018)
+((-2771 ((|#2| |#4|) 35)))
+(((-716 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2771 (|#2| |#4|))) (-429) (-1147 |#1|) (-666 |#1| |#2|) (-1147 |#3|)) (T -716))
+((-2771 (*1 *2 *3) (-12 (-4 *4 (-429)) (-4 *5 (-666 *4 *2)) (-4 *2 (-1147 *4)) (-5 *1 (-716 *4 *2 *5 *3)) (-4 *3 (-1147 *5)))))
+(-10 -7 (-15 -2771 (|#2| |#4|)))
+((-4163 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 56)) (-1794 (((-1176) (-1072) (-1072) |#4| |#5|) 33)) (-2746 ((|#4| |#4| |#5|) 73)) (-1798 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#5|) 77)) (-1552 (((-591 (-2 (|:| |val| (-108)) (|:| -3374 |#5|))) |#4| |#5|) 16)))
+(((-717 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4163 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -2746 (|#4| |#4| |#5|)) (-15 -1798 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#5|)) (-15 -1794 ((-1176) (-1072) (-1072) |#4| |#5|)) (-15 -1552 ((-591 (-2 (|:| |val| (-108)) (|:| -3374 |#5|))) |#4| |#5|))) (-429) (-734) (-788) (-989 |#1| |#2| |#3|) (-994 |#1| |#2| |#3| |#4|)) (T -717))
+((-1552 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 (-2 (|:| |val| (-108)) (|:| -3374 *4)))) (-5 *1 (-717 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-1794 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-1072)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *4 (-989 *6 *7 *8)) (-5 *2 (-1176)) (-5 *1 (-717 *6 *7 *8 *4 *5)) (-4 *5 (-994 *6 *7 *8 *4)))) (-1798 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4)))) (-5 *1 (-717 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-2746 (*1 *2 *2 *3) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *2 (-989 *4 *5 *6)) (-5 *1 (-717 *4 *5 *6 *2 *3)) (-4 *3 (-994 *4 *5 *6 *2)))) (-4163 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3))) (-5 *1 (-717 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(-10 -7 (-15 -4163 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -2746 (|#4| |#4| |#5|)) (-15 -1798 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#5|)) (-15 -1794 ((-1176) (-1072) (-1072) |#4| |#5|)) (-15 -1552 ((-591 (-2 (|:| |val| (-108)) (|:| -3374 |#5|))) |#4| |#5|)))
+((-1251 (((-3 (-1085 (-1085 |#1|)) "failed") |#4|) 43)) (-3171 (((-591 |#4|) |#4|) 15)) (-4227 ((|#4| |#4|) 11)))
+(((-718 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3171 ((-591 |#4|) |#4|)) (-15 -1251 ((-3 (-1085 (-1085 |#1|)) "failed") |#4|)) (-15 -4227 (|#4| |#4|))) (-327) (-307 |#1|) (-1147 |#2|) (-1147 |#3|) (-854)) (T -718))
+((-4227 (*1 *2 *2) (-12 (-4 *3 (-327)) (-4 *4 (-307 *3)) (-4 *5 (-1147 *4)) (-5 *1 (-718 *3 *4 *5 *2 *6)) (-4 *2 (-1147 *5)) (-14 *6 (-854)))) (-1251 (*1 *2 *3) (|partial| -12 (-4 *4 (-327)) (-4 *5 (-307 *4)) (-4 *6 (-1147 *5)) (-5 *2 (-1085 (-1085 *4))) (-5 *1 (-718 *4 *5 *6 *3 *7)) (-4 *3 (-1147 *6)) (-14 *7 (-854)))) (-3171 (*1 *2 *3) (-12 (-4 *4 (-327)) (-4 *5 (-307 *4)) (-4 *6 (-1147 *5)) (-5 *2 (-591 *3)) (-5 *1 (-718 *4 *5 *6 *3 *7)) (-4 *3 (-1147 *6)) (-14 *7 (-854)))))
+(-10 -7 (-15 -3171 ((-591 |#4|) |#4|)) (-15 -1251 ((-3 (-1085 (-1085 |#1|)) "failed") |#4|)) (-15 -4227 (|#4| |#4|)))
+((-1832 (((-2 (|:| |deter| (-591 (-1085 |#5|))) (|:| |dterm| (-591 (-591 (-2 (|:| -4100 (-712)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-591 |#1|)) (|:| |nlead| (-591 |#5|))) (-1085 |#5|) (-591 |#1|) (-591 |#5|)) 54)) (-1768 (((-591 (-712)) |#1|) 13)))
+(((-719 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1832 ((-2 (|:| |deter| (-591 (-1085 |#5|))) (|:| |dterm| (-591 (-591 (-2 (|:| -4100 (-712)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-591 |#1|)) (|:| |nlead| (-591 |#5|))) (-1085 |#5|) (-591 |#1|) (-591 |#5|))) (-15 -1768 ((-591 (-712)) |#1|))) (-1147 |#4|) (-734) (-788) (-286) (-882 |#4| |#2| |#3|)) (T -719))
+((-1768 (*1 *2 *3) (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-286)) (-5 *2 (-591 (-712))) (-5 *1 (-719 *3 *4 *5 *6 *7)) (-4 *3 (-1147 *6)) (-4 *7 (-882 *6 *4 *5)))) (-1832 (*1 *2 *3 *4 *5) (-12 (-4 *6 (-1147 *9)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *9 (-286)) (-4 *10 (-882 *9 *7 *8)) (-5 *2 (-2 (|:| |deter| (-591 (-1085 *10))) (|:| |dterm| (-591 (-591 (-2 (|:| -4100 (-712)) (|:| |pcoef| *10))))) (|:| |nfacts| (-591 *6)) (|:| |nlead| (-591 *10)))) (-5 *1 (-719 *6 *7 *8 *9 *10)) (-5 *3 (-1085 *10)) (-5 *4 (-591 *6)) (-5 *5 (-591 *10)))))
+(-10 -7 (-15 -1832 ((-2 (|:| |deter| (-591 (-1085 |#5|))) (|:| |dterm| (-591 (-591 (-2 (|:| -4100 (-712)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-591 |#1|)) (|:| |nlead| (-591 |#5|))) (-1085 |#5|) (-591 |#1|) (-591 |#5|))) (-15 -1768 ((-591 (-712)) |#1|)))
+((-3457 (((-591 (-2 (|:| |outval| |#1|) (|:| |outmult| (-525)) (|:| |outvect| (-591 (-631 |#1|))))) (-631 (-385 (-525))) |#1|) 31)) (-2466 (((-591 |#1|) (-631 (-385 (-525))) |#1|) 21)) (-3806 (((-885 (-385 (-525))) (-631 (-385 (-525))) (-1089)) 18) (((-885 (-385 (-525))) (-631 (-385 (-525)))) 17)))
+(((-720 |#1|) (-10 -7 (-15 -3806 ((-885 (-385 (-525))) (-631 (-385 (-525))))) (-15 -3806 ((-885 (-385 (-525))) (-631 (-385 (-525))) (-1089))) (-15 -2466 ((-591 |#1|) (-631 (-385 (-525))) |#1|)) (-15 -3457 ((-591 (-2 (|:| |outval| |#1|) (|:| |outmult| (-525)) (|:| |outvect| (-591 (-631 |#1|))))) (-631 (-385 (-525))) |#1|))) (-13 (-341) (-786))) (T -720))
+((-3457 (*1 *2 *3 *4) (-12 (-5 *3 (-631 (-385 (-525)))) (-5 *2 (-591 (-2 (|:| |outval| *4) (|:| |outmult| (-525)) (|:| |outvect| (-591 (-631 *4)))))) (-5 *1 (-720 *4)) (-4 *4 (-13 (-341) (-786))))) (-2466 (*1 *2 *3 *4) (-12 (-5 *3 (-631 (-385 (-525)))) (-5 *2 (-591 *4)) (-5 *1 (-720 *4)) (-4 *4 (-13 (-341) (-786))))) (-3806 (*1 *2 *3 *4) (-12 (-5 *3 (-631 (-385 (-525)))) (-5 *4 (-1089)) (-5 *2 (-885 (-385 (-525)))) (-5 *1 (-720 *5)) (-4 *5 (-13 (-341) (-786))))) (-3806 (*1 *2 *3) (-12 (-5 *3 (-631 (-385 (-525)))) (-5 *2 (-885 (-385 (-525)))) (-5 *1 (-720 *4)) (-4 *4 (-13 (-341) (-786))))))
+(-10 -7 (-15 -3806 ((-885 (-385 (-525))) (-631 (-385 (-525))))) (-15 -3806 ((-885 (-385 (-525))) (-631 (-385 (-525))) (-1089))) (-15 -2466 ((-591 |#1|) (-631 (-385 (-525))) |#1|)) (-15 -3457 ((-591 (-2 (|:| |outval| |#1|) (|:| |outmult| (-525)) (|:| |outvect| (-591 (-631 |#1|))))) (-631 (-385 (-525))) |#1|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 34)) (-1507 (((-591 |#2|) $) NIL)) (-1312 (((-1085 $) $ |#2|) NIL) (((-1085 |#1|) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-4090 (((-712) $) NIL) (((-712) $ (-591 |#2|)) NIL)) (-3970 (($ $) 28)) (-2385 (((-108) $ $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-2944 (($ $ $) 93 (|has| |#1| (-517)))) (-2206 (((-591 $) $ $) 106 (|has| |#1| (-517)))) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1291 (($ $) NIL (|has| |#1| (-429)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 |#2| "failed") $) NIL) (((-3 $ "failed") (-885 (-385 (-525)))) NIL (-12 (|has| |#1| (-37 (-385 (-525)))) (|has| |#2| (-566 (-1089))))) (((-3 $ "failed") (-885 (-525))) NIL (-3321 (-12 (|has| |#1| (-37 (-525))) (|has| |#2| (-566 (-1089))) (-2247 (|has| |#1| (-37 (-385 (-525)))))) (-12 (|has| |#1| (-37 (-385 (-525)))) (|has| |#2| (-566 (-1089)))))) (((-3 $ "failed") (-885 |#1|)) NIL (-3321 (-12 (|has| |#2| (-566 (-1089))) (-2247 (|has| |#1| (-37 (-385 (-525))))) (-2247 (|has| |#1| (-37 (-525))))) (-12 (|has| |#1| (-37 (-525))) (|has| |#2| (-566 (-1089))) (-2247 (|has| |#1| (-37 (-385 (-525))))) (-2247 (|has| |#1| (-510)))) (-12 (|has| |#1| (-37 (-385 (-525)))) (|has| |#2| (-566 (-1089))) (-2247 (|has| |#1| (-923 (-525))))))) (((-3 (-1041 |#1| |#2|) "failed") $) 18)) (-3528 ((|#1| $) NIL) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-525) $) NIL (|has| |#1| (-966 (-525)))) ((|#2| $) NIL) (($ (-885 (-385 (-525)))) NIL (-12 (|has| |#1| (-37 (-385 (-525)))) (|has| |#2| (-566 (-1089))))) (($ (-885 (-525))) NIL (-3321 (-12 (|has| |#1| (-37 (-525))) (|has| |#2| (-566 (-1089))) (-2247 (|has| |#1| (-37 (-385 (-525)))))) (-12 (|has| |#1| (-37 (-385 (-525)))) (|has| |#2| (-566 (-1089)))))) (($ (-885 |#1|)) NIL (-3321 (-12 (|has| |#2| (-566 (-1089))) (-2247 (|has| |#1| (-37 (-385 (-525))))) (-2247 (|has| |#1| (-37 (-525))))) (-12 (|has| |#1| (-37 (-525))) (|has| |#2| (-566 (-1089))) (-2247 (|has| |#1| (-37 (-385 (-525))))) (-2247 (|has| |#1| (-510)))) (-12 (|has| |#1| (-37 (-385 (-525)))) (|has| |#2| (-566 (-1089))) (-2247 (|has| |#1| (-923 (-525))))))) (((-1041 |#1| |#2|) $) NIL)) (-2805 (($ $ $ |#2|) NIL (|has| |#1| (-160))) (($ $ $) 104 (|has| |#1| (-517)))) (-1710 (($ $) NIL) (($ $ |#2|) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) NIL) (((-631 |#1|) (-631 $)) NIL)) (-3135 (((-108) $ $) NIL) (((-108) $ (-591 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-2509 (((-108) $) NIL)) (-3867 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 70)) (-2587 (($ $) 119 (|has| |#1| (-429)))) (-3208 (($ $) NIL (|has| |#1| (-429))) (($ $ |#2|) NIL (|has| |#1| (-429)))) (-1695 (((-591 $) $) NIL)) (-2744 (((-108) $) NIL (|has| |#1| (-842)))) (-2053 (($ $) NIL (|has| |#1| (-517)))) (-1706 (($ $) NIL (|has| |#1| (-517)))) (-2658 (($ $ $) 65) (($ $ $ |#2|) NIL)) (-3585 (($ $ $) 68) (($ $ $ |#2|) NIL)) (-2056 (($ $ |#1| (-497 |#2|) $) NIL)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| |#1| (-819 (-357))) (|has| |#2| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| |#1| (-819 (-525))) (|has| |#2| (-819 (-525)))))) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) NIL)) (-1809 (((-108) $ $) NIL) (((-108) $ (-591 $)) NIL)) (-3534 (($ $ $ $ $) 90 (|has| |#1| (-517)))) (-2009 ((|#2| $) 19)) (-1493 (($ (-1085 |#1|) |#2|) NIL) (($ (-1085 $) |#2|) NIL)) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-497 |#2|)) NIL) (($ $ |#2| (-712)) 36) (($ $ (-591 |#2|) (-591 (-712))) NIL)) (-2402 (($ $ $) 60)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ |#2|) NIL)) (-1860 (((-108) $) NIL)) (-2624 (((-497 |#2|) $) NIL) (((-712) $ |#2|) NIL) (((-591 (-712)) $ (-591 |#2|)) NIL)) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2537 (((-712) $) 20)) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-4015 (($ (-1 (-497 |#2|) (-497 |#2|)) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-2254 (((-3 |#2| "failed") $) NIL)) (-1265 (($ $) NIL (|has| |#1| (-429)))) (-2628 (($ $) NIL (|has| |#1| (-429)))) (-3274 (((-591 $) $) NIL)) (-2896 (($ $) 37)) (-2779 (($ $) NIL (|has| |#1| (-429)))) (-2150 (((-591 $) $) 41)) (-3587 (($ $) 39)) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL) (($ $ |#2|) 45)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2816 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -2741 (-712))) $ $) 82)) (-4184 (((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -2963 $) (|:| -3407 $)) $ $) 67) (((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -2963 $) (|:| -3407 $)) $ $ |#2|) NIL)) (-1380 (((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -3407 $)) $ $) NIL) (((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -3407 $)) $ $ |#2|) NIL)) (-2597 (($ $ $) 72) (($ $ $ |#2|) NIL)) (-4074 (($ $ $) 75) (($ $ $ |#2|) NIL)) (-2339 (((-1072) $) NIL)) (-2627 (($ $ $) 108 (|has| |#1| (-517)))) (-3878 (((-591 $) $) 30)) (-3376 (((-3 (-591 $) "failed") $) NIL)) (-2010 (((-3 (-591 $) "failed") $) NIL)) (-2292 (((-3 (-2 (|:| |var| |#2|) (|:| -2008 (-712))) "failed") $) NIL)) (-3196 (((-108) $ $) NIL) (((-108) $ (-591 $)) NIL)) (-4066 (($ $ $) NIL)) (-3506 (($ $) 21)) (-2154 (((-108) $ $) NIL)) (-2115 (((-108) $ $) NIL) (((-108) $ (-591 $)) NIL)) (-2731 (($ $ $) NIL)) (-1762 (($ $) 23)) (-2047 (((-1036) $) NIL)) (-1747 (((-2 (|:| -1399 $) (|:| |coef2| $)) $ $) 99 (|has| |#1| (-517)))) (-3113 (((-2 (|:| -1399 $) (|:| |coef1| $)) $ $) 96 (|has| |#1| (-517)))) (-1634 (((-108) $) 52)) (-1646 ((|#1| $) 55)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-429)))) (-1399 ((|#1| |#1| $) 116 (|has| |#1| (-429))) (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1348 (((-396 $) $) NIL (|has| |#1| (-842)))) (-3412 (((-2 (|:| -1399 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 102 (|has| |#1| (-517)))) (-2089 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-517)))) (-1851 (($ $ |#1|) 112 (|has| |#1| (-517))) (($ $ $) NIL (|has| |#1| (-517)))) (-2638 (($ $ |#1|) 111 (|has| |#1| (-517))) (($ $ $) NIL (|has| |#1| (-517)))) (-4132 (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-591 |#2|) (-591 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-591 |#2|) (-591 $)) NIL)) (-2976 (($ $ |#2|) NIL (|has| |#1| (-160)))) (-3266 (($ $ |#2|) NIL) (($ $ (-591 |#2|)) NIL) (($ $ |#2| (-712)) NIL) (($ $ (-591 |#2|) (-591 (-712))) NIL)) (-1316 (((-497 |#2|) $) NIL) (((-712) $ |#2|) 43) (((-591 (-712)) $ (-591 |#2|)) NIL)) (-3303 (($ $) NIL)) (-3486 (($ $) 33)) (-1408 (((-825 (-357)) $) NIL (-12 (|has| |#1| (-566 (-825 (-357)))) (|has| |#2| (-566 (-825 (-357)))))) (((-825 (-525)) $) NIL (-12 (|has| |#1| (-566 (-825 (-525)))) (|has| |#2| (-566 (-825 (-525)))))) (((-501) $) NIL (-12 (|has| |#1| (-566 (-501))) (|has| |#2| (-566 (-501))))) (($ (-885 (-385 (-525)))) NIL (-12 (|has| |#1| (-37 (-385 (-525)))) (|has| |#2| (-566 (-1089))))) (($ (-885 (-525))) NIL (-3321 (-12 (|has| |#1| (-37 (-525))) (|has| |#2| (-566 (-1089))) (-2247 (|has| |#1| (-37 (-385 (-525)))))) (-12 (|has| |#1| (-37 (-385 (-525)))) (|has| |#2| (-566 (-1089)))))) (($ (-885 |#1|)) NIL (|has| |#2| (-566 (-1089)))) (((-1072) $) NIL (-12 (|has| |#1| (-966 (-525))) (|has| |#2| (-566 (-1089))))) (((-885 |#1|) $) NIL (|has| |#2| (-566 (-1089))))) (-2668 ((|#1| $) 115 (|has| |#1| (-429))) (($ $ |#2|) NIL (|has| |#1| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#1| (-842))))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#1|) NIL) (($ |#2|) NIL) (((-885 |#1|) $) NIL (|has| |#2| (-566 (-1089)))) (((-1041 |#1| |#2|) $) 15) (($ (-1041 |#1| |#2|)) 16) (($ (-385 (-525))) NIL (-3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-966 (-385 (-525)))))) (($ $) NIL (|has| |#1| (-517)))) (-3654 (((-591 |#1|) $) NIL)) (-2560 ((|#1| $ (-497 |#2|)) NIL) (($ $ |#2| (-712)) 44) (($ $ (-591 |#2|) (-591 (-712))) NIL)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#1| (-842))) (|has| |#1| (-136))))) (-2128 (((-712)) NIL)) (-1698 (($ $ $ (-712)) NIL (|has| |#1| (-160)))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 13 T CONST)) (-1217 (((-3 (-108) "failed") $ $) NIL)) (-4197 (($) 35 T CONST)) (-3919 (($ $ $ $ (-712)) 88 (|has| |#1| (-517)))) (-1761 (($ $ $ (-712)) 87 (|has| |#1| (-517)))) (-4196 (($ $ |#2|) NIL) (($ $ (-591 |#2|)) NIL) (($ $ |#2| (-712)) NIL) (($ $ (-591 |#2|) (-591 (-712))) NIL)) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) 54)) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) 64)) (-4156 (($ $ $) 74)) (** (($ $ (-854)) NIL) (($ $ (-712)) 61)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 59) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) 58) (($ $ |#1|) NIL)))
+(((-721 |#1| |#2|) (-13 (-989 |#1| (-497 |#2|) |#2|) (-565 (-1041 |#1| |#2|)) (-966 (-1041 |#1| |#2|))) (-975) (-788)) (T -721))
+NIL
+(-13 (-989 |#1| (-497 |#2|) |#2|) (-565 (-1041 |#1| |#2|)) (-966 (-1041 |#1| |#2|)))
+((-1340 (((-723 |#2|) (-1 |#2| |#1|) (-723 |#1|)) 13)))
+(((-722 |#1| |#2|) (-10 -7 (-15 -1340 ((-723 |#2|) (-1 |#2| |#1|) (-723 |#1|)))) (-975) (-975)) (T -722))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-723 *5)) (-4 *5 (-975)) (-4 *6 (-975)) (-5 *2 (-723 *6)) (-5 *1 (-722 *5 *6)))))
+(-10 -7 (-15 -1340 ((-723 |#2|) (-1 |#2| |#1|) (-723 |#1|))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 12)) (-3928 (((-1171 |#1|) $ (-712)) NIL)) (-1507 (((-591 (-1003)) $) NIL)) (-1390 (($ (-1085 |#1|)) NIL)) (-1312 (((-1085 $) $ (-1003)) NIL) (((-1085 |#1|) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-4090 (((-712) $) NIL) (((-712) $ (-591 (-1003))) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3904 (((-591 $) $ $) 39 (|has| |#1| (-517)))) (-2944 (($ $ $) 35 (|has| |#1| (-517)))) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1291 (($ $) NIL (|has| |#1| (-429)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1947 (((-108) $ $) NIL (|has| |#1| (-341)))) (-2229 (($ $ (-712)) NIL)) (-3159 (($ $ (-712)) NIL)) (-2288 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-429)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-1003) "failed") $) NIL) (((-3 (-1085 |#1|) "failed") $) 10)) (-3528 ((|#1| $) NIL) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-1003) $) NIL) (((-1085 |#1|) $) NIL)) (-2805 (($ $ $ (-1003)) NIL (|has| |#1| (-160))) ((|#1| $ $) 43 (|has| |#1| (-160)))) (-2129 (($ $ $) NIL (|has| |#1| (-341)))) (-1710 (($ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) NIL) (((-631 |#1|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-2110 (($ $ $) NIL (|has| |#1| (-341)))) (-3106 (($ $ $) NIL)) (-2273 (($ $ $) 71 (|has| |#1| (-517)))) (-3867 (((-2 (|:| -3482 |#1|) (|:| -2963 $) (|:| -3407 $)) $ $) 70 (|has| |#1| (-517)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#1| (-341)))) (-3208 (($ $) NIL (|has| |#1| (-429))) (($ $ (-1003)) NIL (|has| |#1| (-429)))) (-1695 (((-591 $) $) NIL)) (-2744 (((-108) $) NIL (|has| |#1| (-842)))) (-2056 (($ $ |#1| (-712) $) NIL)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| (-1003) (-819 (-357))) (|has| |#1| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| (-1003) (-819 (-525))) (|has| |#1| (-819 (-525)))))) (-3873 (((-712) $ $) NIL (|has| |#1| (-517)))) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) NIL)) (-2085 (((-3 $ "failed") $) NIL (|has| |#1| (-1065)))) (-1493 (($ (-1085 |#1|) (-1003)) NIL) (($ (-1085 $) (-1003)) NIL)) (-3111 (($ $ (-712)) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-712)) NIL) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL)) (-2402 (($ $ $) 20)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ (-1003)) NIL) (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2624 (((-712) $) NIL) (((-712) $ (-1003)) NIL) (((-591 (-712)) $ (-591 (-1003))) NIL)) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-4015 (($ (-1 (-712) (-712)) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-1525 (((-1085 |#1|) $) NIL)) (-2254 (((-3 (-1003) "failed") $) NIL)) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2816 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -2741 (-712))) $ $) 26)) (-2738 (($ $ $) 29)) (-1760 (($ $ $) 32)) (-4184 (((-2 (|:| -3482 |#1|) (|:| |gap| (-712)) (|:| -2963 $) (|:| -3407 $)) $ $) 31)) (-2339 (((-1072) $) NIL)) (-2627 (($ $ $) 41 (|has| |#1| (-517)))) (-3070 (((-2 (|:| -2963 $) (|:| -3407 $)) $ (-712)) NIL)) (-3376 (((-3 (-591 $) "failed") $) NIL)) (-2010 (((-3 (-591 $) "failed") $) NIL)) (-2292 (((-3 (-2 (|:| |var| (-1003)) (|:| -2008 (-712))) "failed") $) NIL)) (-4141 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3506 (($) NIL (|has| |#1| (-1065)) CONST)) (-2047 (((-1036) $) NIL)) (-1747 (((-2 (|:| -1399 $) (|:| |coef2| $)) $ $) 67 (|has| |#1| (-517)))) (-3113 (((-2 (|:| -1399 $) (|:| |coef1| $)) $ $) 63 (|has| |#1| (-517)))) (-3353 (((-2 (|:| -2805 |#1|) (|:| |coef2| $)) $ $) 55 (|has| |#1| (-517)))) (-3492 (((-2 (|:| -2805 |#1|) (|:| |coef1| $)) $ $) 51 (|has| |#1| (-517)))) (-1634 (((-108) $) 13)) (-1646 ((|#1| $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-429)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-3678 (($ $ (-712) |#1| $) 19)) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1348 (((-396 $) $) NIL (|has| |#1| (-842)))) (-3412 (((-2 (|:| -1399 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 59 (|has| |#1| (-517)))) (-2040 (((-2 (|:| -2805 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 47 (|has| |#1| (-517)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2089 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-4132 (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-1003) |#1|) NIL) (($ $ (-591 (-1003)) (-591 |#1|)) NIL) (($ $ (-1003) $) NIL) (($ $ (-591 (-1003)) (-591 $)) NIL)) (-1712 (((-712) $) NIL (|has| |#1| (-341)))) (-3164 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-385 $) (-385 $) (-385 $)) NIL (|has| |#1| (-517))) ((|#1| (-385 $) |#1|) NIL (|has| |#1| (-341))) (((-385 $) $ (-385 $)) NIL (|has| |#1| (-517)))) (-3579 (((-3 $ "failed") $ (-712)) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-2976 (($ $ (-1003)) NIL (|has| |#1| (-160))) ((|#1| $) NIL (|has| |#1| (-160)))) (-3266 (($ $ (-1003)) NIL) (($ $ (-591 (-1003))) NIL) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL) (($ $ (-712)) NIL) (($ $) NIL) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-1316 (((-712) $) NIL) (((-712) $ (-1003)) NIL) (((-591 (-712)) $ (-591 (-1003))) NIL)) (-1408 (((-825 (-357)) $) NIL (-12 (|has| (-1003) (-566 (-825 (-357)))) (|has| |#1| (-566 (-825 (-357)))))) (((-825 (-525)) $) NIL (-12 (|has| (-1003) (-566 (-825 (-525)))) (|has| |#1| (-566 (-825 (-525)))))) (((-501) $) NIL (-12 (|has| (-1003) (-566 (-501))) (|has| |#1| (-566 (-501)))))) (-2668 ((|#1| $) NIL (|has| |#1| (-429))) (($ $ (-1003)) NIL (|has| |#1| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#1| (-842))))) (-2413 (((-3 $ "failed") $ $) NIL (|has| |#1| (-517))) (((-3 (-385 $) "failed") (-385 $) $) NIL (|has| |#1| (-517)))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#1|) NIL) (($ (-1003)) NIL) (((-1085 |#1|) $) 7) (($ (-1085 |#1|)) 8) (($ (-385 (-525))) NIL (-3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-966 (-385 (-525)))))) (($ $) NIL (|has| |#1| (-517)))) (-3654 (((-591 |#1|) $) NIL)) (-2560 ((|#1| $ (-712)) NIL) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#1| (-842))) (|has| |#1| (-136))))) (-2128 (((-712)) NIL)) (-1698 (($ $ $ (-712)) NIL (|has| |#1| (-160)))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 21 T CONST)) (-4197 (($) 24 T CONST)) (-4196 (($ $ (-1003)) NIL) (($ $ (-591 (-1003))) NIL) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL) (($ $ (-712)) NIL) (($ $) NIL) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341)))) (-4164 (($ $) 28) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) 23) (($ $ |#1|) NIL)))
+(((-723 |#1|) (-13 (-1147 |#1|) (-565 (-1085 |#1|)) (-966 (-1085 |#1|)) (-10 -8 (-15 -3678 ($ $ (-712) |#1| $)) (-15 -2402 ($ $ $)) (-15 -2816 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -2741 (-712))) $ $)) (-15 -2738 ($ $ $)) (-15 -4184 ((-2 (|:| -3482 |#1|) (|:| |gap| (-712)) (|:| -2963 $) (|:| -3407 $)) $ $)) (-15 -1760 ($ $ $)) (IF (|has| |#1| (-517)) (PROGN (-15 -3904 ((-591 $) $ $)) (-15 -2627 ($ $ $)) (-15 -3412 ((-2 (|:| -1399 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3113 ((-2 (|:| -1399 $) (|:| |coef1| $)) $ $)) (-15 -1747 ((-2 (|:| -1399 $) (|:| |coef2| $)) $ $)) (-15 -2040 ((-2 (|:| -2805 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3492 ((-2 (|:| -2805 |#1|) (|:| |coef1| $)) $ $)) (-15 -3353 ((-2 (|:| -2805 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-975)) (T -723))
+((-3678 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-712)) (-5 *1 (-723 *3)) (-4 *3 (-975)))) (-2402 (*1 *1 *1 *1) (-12 (-5 *1 (-723 *2)) (-4 *2 (-975)))) (-2816 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-723 *3)) (|:| |polden| *3) (|:| -2741 (-712)))) (-5 *1 (-723 *3)) (-4 *3 (-975)))) (-2738 (*1 *1 *1 *1) (-12 (-5 *1 (-723 *2)) (-4 *2 (-975)))) (-4184 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3482 *3) (|:| |gap| (-712)) (|:| -2963 (-723 *3)) (|:| -3407 (-723 *3)))) (-5 *1 (-723 *3)) (-4 *3 (-975)))) (-1760 (*1 *1 *1 *1) (-12 (-5 *1 (-723 *2)) (-4 *2 (-975)))) (-3904 (*1 *2 *1 *1) (-12 (-5 *2 (-591 (-723 *3))) (-5 *1 (-723 *3)) (-4 *3 (-517)) (-4 *3 (-975)))) (-2627 (*1 *1 *1 *1) (-12 (-5 *1 (-723 *2)) (-4 *2 (-517)) (-4 *2 (-975)))) (-3412 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1399 (-723 *3)) (|:| |coef1| (-723 *3)) (|:| |coef2| (-723 *3)))) (-5 *1 (-723 *3)) (-4 *3 (-517)) (-4 *3 (-975)))) (-3113 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1399 (-723 *3)) (|:| |coef1| (-723 *3)))) (-5 *1 (-723 *3)) (-4 *3 (-517)) (-4 *3 (-975)))) (-1747 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1399 (-723 *3)) (|:| |coef2| (-723 *3)))) (-5 *1 (-723 *3)) (-4 *3 (-517)) (-4 *3 (-975)))) (-2040 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2805 *3) (|:| |coef1| (-723 *3)) (|:| |coef2| (-723 *3)))) (-5 *1 (-723 *3)) (-4 *3 (-517)) (-4 *3 (-975)))) (-3492 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2805 *3) (|:| |coef1| (-723 *3)))) (-5 *1 (-723 *3)) (-4 *3 (-517)) (-4 *3 (-975)))) (-3353 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2805 *3) (|:| |coef2| (-723 *3)))) (-5 *1 (-723 *3)) (-4 *3 (-517)) (-4 *3 (-975)))))
+(-13 (-1147 |#1|) (-565 (-1085 |#1|)) (-966 (-1085 |#1|)) (-10 -8 (-15 -3678 ($ $ (-712) |#1| $)) (-15 -2402 ($ $ $)) (-15 -2816 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -2741 (-712))) $ $)) (-15 -2738 ($ $ $)) (-15 -4184 ((-2 (|:| -3482 |#1|) (|:| |gap| (-712)) (|:| -2963 $) (|:| -3407 $)) $ $)) (-15 -1760 ($ $ $)) (IF (|has| |#1| (-517)) (PROGN (-15 -3904 ((-591 $) $ $)) (-15 -2627 ($ $ $)) (-15 -3412 ((-2 (|:| -1399 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3113 ((-2 (|:| -1399 $) (|:| |coef1| $)) $ $)) (-15 -1747 ((-2 (|:| -1399 $) (|:| |coef2| $)) $ $)) (-15 -2040 ((-2 (|:| -2805 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3492 ((-2 (|:| -2805 |#1|) (|:| |coef1| $)) $ $)) (-15 -3353 ((-2 (|:| -2805 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
+((-2225 ((|#1| (-712) |#1|) 32 (|has| |#1| (-37 (-385 (-525)))))) (-3132 ((|#1| (-712) |#1|) 22)) (-2542 ((|#1| (-712) |#1|) 34 (|has| |#1| (-37 (-385 (-525)))))))
+(((-724 |#1|) (-10 -7 (-15 -3132 (|#1| (-712) |#1|)) (IF (|has| |#1| (-37 (-385 (-525)))) (PROGN (-15 -2542 (|#1| (-712) |#1|)) (-15 -2225 (|#1| (-712) |#1|))) |%noBranch|)) (-160)) (T -724))
+((-2225 (*1 *2 *3 *2) (-12 (-5 *3 (-712)) (-5 *1 (-724 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-160)))) (-2542 (*1 *2 *3 *2) (-12 (-5 *3 (-712)) (-5 *1 (-724 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-160)))) (-3132 (*1 *2 *3 *2) (-12 (-5 *3 (-712)) (-5 *1 (-724 *2)) (-4 *2 (-160)))))
+(-10 -7 (-15 -3132 (|#1| (-712) |#1|)) (IF (|has| |#1| (-37 (-385 (-525)))) (PROGN (-15 -2542 (|#1| (-712) |#1|)) (-15 -2225 (|#1| (-712) |#1|))) |%noBranch|))
+((-3008 (((-108) $ $) 7)) (-3817 (((-591 (-2 (|:| -3529 $) (|:| -1976 (-591 |#4|)))) (-591 |#4|)) 85)) (-2113 (((-591 $) (-591 |#4|)) 86) (((-591 $) (-591 |#4|) (-108)) 111)) (-1507 (((-591 |#3|) $) 33)) (-1430 (((-108) $) 26)) (-3490 (((-108) $) 17 (|has| |#1| (-517)))) (-3130 (((-108) |#4| $) 101) (((-108) $) 97)) (-1568 ((|#4| |#4| $) 92)) (-1291 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 $))) |#4| $) 126)) (-3327 (((-2 (|:| |under| $) (|:| -2662 $) (|:| |upper| $)) $ |#3|) 27)) (-3891 (((-108) $ (-712)) 44)) (-2305 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4250))) (((-3 |#4| "failed") $ |#3|) 79)) (-3798 (($) 45 T CONST)) (-3382 (((-108) $) 22 (|has| |#1| (-517)))) (-2438 (((-108) $ $) 24 (|has| |#1| (-517)))) (-2055 (((-108) $ $) 23 (|has| |#1| (-517)))) (-1964 (((-108) $) 25 (|has| |#1| (-517)))) (-2656 (((-591 |#4|) (-591 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-3853 (((-591 |#4|) (-591 |#4|) $) 18 (|has| |#1| (-517)))) (-1921 (((-591 |#4|) (-591 |#4|) $) 19 (|has| |#1| (-517)))) (-1251 (((-3 $ "failed") (-591 |#4|)) 36)) (-3528 (($ (-591 |#4|)) 35)) (-3078 (((-3 $ "failed") $) 82)) (-2736 ((|#4| |#4| $) 89)) (-3098 (($ $) 68 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ |#4| $) 67 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4250)))) (-3407 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-517)))) (-3135 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-2933 ((|#4| |#4| $) 87)) (-1227 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4250))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4250))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-2719 (((-2 (|:| -3529 (-591 |#4|)) (|:| -1976 (-591 |#4|))) $) 105)) (-1949 (((-108) |#4| $) 136)) (-3485 (((-108) |#4| $) 133)) (-1732 (((-108) |#4| $) 137) (((-108) $) 134)) (-3454 (((-591 |#4|) $) 52 (|has| $ (-6 -4250)))) (-1809 (((-108) |#4| $) 104) (((-108) $) 103)) (-2009 ((|#3| $) 34)) (-2910 (((-108) $ (-712)) 43)) (-2552 (((-591 |#4|) $) 53 (|has| $ (-6 -4250)))) (-2141 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#4| |#4|) $) 47)) (-3993 (((-591 |#3|) $) 32)) (-4174 (((-108) |#3| $) 31)) (-3971 (((-108) $ (-712)) 42)) (-2339 (((-1072) $) 9)) (-2711 (((-3 |#4| (-591 $)) |#4| |#4| $) 128)) (-2627 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 $))) |#4| |#4| $) 127)) (-3708 (((-3 |#4| "failed") $) 83)) (-1933 (((-591 $) |#4| $) 129)) (-1372 (((-3 (-108) (-591 $)) |#4| $) 132)) (-1406 (((-591 (-2 (|:| |val| (-108)) (|:| -3374 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-3516 (((-591 $) |#4| $) 125) (((-591 $) (-591 |#4|) $) 124) (((-591 $) (-591 |#4|) (-591 $)) 123) (((-591 $) |#4| (-591 $)) 122)) (-2689 (($ |#4| $) 117) (($ (-591 |#4|) $) 116)) (-3280 (((-591 |#4|) $) 107)) (-3196 (((-108) |#4| $) 99) (((-108) $) 95)) (-4066 ((|#4| |#4| $) 90)) (-2154 (((-108) $ $) 110)) (-2934 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-517)))) (-2115 (((-108) |#4| $) 100) (((-108) $) 96)) (-2731 ((|#4| |#4| $) 91)) (-2047 (((-1036) $) 10)) (-3066 (((-3 |#4| "failed") $) 84)) (-2069 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-1554 (((-3 $ "failed") $ |#4|) 78)) (-2784 (($ $ |#4|) 77) (((-591 $) |#4| $) 115) (((-591 $) |#4| (-591 $)) 114) (((-591 $) (-591 |#4|) $) 113) (((-591 $) (-591 |#4|) (-591 $)) 112)) (-1623 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 |#4|) (-591 |#4|)) 59 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-273 |#4|)) 57 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-591 (-273 |#4|))) 56 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))) (-3493 (((-108) $ $) 38)) (-3028 (((-108) $) 41)) (-3209 (($) 40)) (-1316 (((-712) $) 106)) (-2064 (((-712) |#4| $) 54 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) (((-712) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4250)))) (-3199 (($ $) 39)) (-1408 (((-501) $) 69 (|has| |#4| (-566 (-501))))) (-3036 (($ (-591 |#4|)) 60)) (-3134 (($ $ |#3|) 28)) (-3443 (($ $ |#3|) 30)) (-2487 (($ $) 88)) (-3010 (($ $ |#3|) 29)) (-3022 (((-796) $) 11) (((-591 |#4|) $) 37)) (-3223 (((-712) $) 76 (|has| |#3| (-346)))) (-2122 (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-2165 (((-108) $ (-1 (-108) |#4| (-591 |#4|))) 98)) (-2533 (((-591 $) |#4| $) 121) (((-591 $) |#4| (-591 $)) 120) (((-591 $) (-591 |#4|) $) 119) (((-591 $) (-591 |#4|) (-591 $)) 118)) (-4158 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4250)))) (-3872 (((-591 |#3|) $) 81)) (-1564 (((-108) |#4| $) 135)) (-1884 (((-108) |#3| $) 80)) (-4096 (((-108) $ $) 6)) (-4045 (((-712) $) 46 (|has| $ (-6 -4250)))))
+(((-725 |#1| |#2| |#3| |#4|) (-131) (-429) (-734) (-788) (-989 |t#1| |t#2| |t#3|)) (T -725))
+NIL
+(-13 (-994 |t#1| |t#2| |t#3| |t#4|))
+(((-33) . T) ((-97) . T) ((-565 (-591 |#4|)) . T) ((-565 (-796)) . T) ((-142 |#4|) . T) ((-566 (-501)) |has| |#4| (-566 (-501))) ((-288 |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))) ((-464 |#4|) . T) ((-486 |#4| |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))) ((-907 |#1| |#2| |#3| |#4|) . T) ((-994 |#1| |#2| |#3| |#4|) . T) ((-1018) . T) ((-1119 |#1| |#2| |#3| |#4|) . T) ((-1125) . T))
+((-1208 (((-3 (-357) "failed") (-294 |#1|) (-854)) 60 (-12 (|has| |#1| (-517)) (|has| |#1| (-788)))) (((-3 (-357) "failed") (-294 |#1|)) 52 (-12 (|has| |#1| (-517)) (|has| |#1| (-788)))) (((-3 (-357) "failed") (-385 (-885 |#1|)) (-854)) 39 (|has| |#1| (-517))) (((-3 (-357) "failed") (-385 (-885 |#1|))) 35 (|has| |#1| (-517))) (((-3 (-357) "failed") (-885 |#1|) (-854)) 30 (|has| |#1| (-975))) (((-3 (-357) "failed") (-885 |#1|)) 24 (|has| |#1| (-975)))) (-1234 (((-357) (-294 |#1|) (-854)) 92 (-12 (|has| |#1| (-517)) (|has| |#1| (-788)))) (((-357) (-294 |#1|)) 87 (-12 (|has| |#1| (-517)) (|has| |#1| (-788)))) (((-357) (-385 (-885 |#1|)) (-854)) 84 (|has| |#1| (-517))) (((-357) (-385 (-885 |#1|))) 81 (|has| |#1| (-517))) (((-357) (-885 |#1|) (-854)) 80 (|has| |#1| (-975))) (((-357) (-885 |#1|)) 77 (|has| |#1| (-975))) (((-357) |#1| (-854)) 73) (((-357) |#1|) 22)) (-1320 (((-3 (-157 (-357)) "failed") (-294 (-157 |#1|)) (-854)) 68 (-12 (|has| |#1| (-517)) (|has| |#1| (-788)))) (((-3 (-157 (-357)) "failed") (-294 (-157 |#1|))) 58 (-12 (|has| |#1| (-517)) (|has| |#1| (-788)))) (((-3 (-157 (-357)) "failed") (-294 |#1|) (-854)) 61 (-12 (|has| |#1| (-517)) (|has| |#1| (-788)))) (((-3 (-157 (-357)) "failed") (-294 |#1|)) 59 (-12 (|has| |#1| (-517)) (|has| |#1| (-788)))) (((-3 (-157 (-357)) "failed") (-385 (-885 (-157 |#1|))) (-854)) 44 (|has| |#1| (-517))) (((-3 (-157 (-357)) "failed") (-385 (-885 (-157 |#1|)))) 43 (|has| |#1| (-517))) (((-3 (-157 (-357)) "failed") (-385 (-885 |#1|)) (-854)) 38 (|has| |#1| (-517))) (((-3 (-157 (-357)) "failed") (-385 (-885 |#1|))) 37 (|has| |#1| (-517))) (((-3 (-157 (-357)) "failed") (-885 |#1|) (-854)) 28 (|has| |#1| (-975))) (((-3 (-157 (-357)) "failed") (-885 |#1|)) 26 (|has| |#1| (-975))) (((-3 (-157 (-357)) "failed") (-885 (-157 |#1|)) (-854)) 18 (|has| |#1| (-160))) (((-3 (-157 (-357)) "failed") (-885 (-157 |#1|))) 15 (|has| |#1| (-160)))) (-1281 (((-157 (-357)) (-294 (-157 |#1|)) (-854)) 95 (-12 (|has| |#1| (-517)) (|has| |#1| (-788)))) (((-157 (-357)) (-294 (-157 |#1|))) 94 (-12 (|has| |#1| (-517)) (|has| |#1| (-788)))) (((-157 (-357)) (-294 |#1|) (-854)) 93 (-12 (|has| |#1| (-517)) (|has| |#1| (-788)))) (((-157 (-357)) (-294 |#1|)) 91 (-12 (|has| |#1| (-517)) (|has| |#1| (-788)))) (((-157 (-357)) (-385 (-885 (-157 |#1|))) (-854)) 86 (|has| |#1| (-517))) (((-157 (-357)) (-385 (-885 (-157 |#1|)))) 85 (|has| |#1| (-517))) (((-157 (-357)) (-385 (-885 |#1|)) (-854)) 83 (|has| |#1| (-517))) (((-157 (-357)) (-385 (-885 |#1|))) 82 (|has| |#1| (-517))) (((-157 (-357)) (-885 |#1|) (-854)) 79 (|has| |#1| (-975))) (((-157 (-357)) (-885 |#1|)) 78 (|has| |#1| (-975))) (((-157 (-357)) (-885 (-157 |#1|)) (-854)) 75 (|has| |#1| (-160))) (((-157 (-357)) (-885 (-157 |#1|))) 74 (|has| |#1| (-160))) (((-157 (-357)) (-157 |#1|) (-854)) 17 (|has| |#1| (-160))) (((-157 (-357)) (-157 |#1|)) 13 (|has| |#1| (-160))) (((-157 (-357)) |#1| (-854)) 27) (((-157 (-357)) |#1|) 25)))
+(((-726 |#1|) (-10 -7 (-15 -1234 ((-357) |#1|)) (-15 -1234 ((-357) |#1| (-854))) (-15 -1281 ((-157 (-357)) |#1|)) (-15 -1281 ((-157 (-357)) |#1| (-854))) (IF (|has| |#1| (-160)) (PROGN (-15 -1281 ((-157 (-357)) (-157 |#1|))) (-15 -1281 ((-157 (-357)) (-157 |#1|) (-854))) (-15 -1281 ((-157 (-357)) (-885 (-157 |#1|)))) (-15 -1281 ((-157 (-357)) (-885 (-157 |#1|)) (-854)))) |%noBranch|) (IF (|has| |#1| (-975)) (PROGN (-15 -1234 ((-357) (-885 |#1|))) (-15 -1234 ((-357) (-885 |#1|) (-854))) (-15 -1281 ((-157 (-357)) (-885 |#1|))) (-15 -1281 ((-157 (-357)) (-885 |#1|) (-854)))) |%noBranch|) (IF (|has| |#1| (-517)) (PROGN (-15 -1234 ((-357) (-385 (-885 |#1|)))) (-15 -1234 ((-357) (-385 (-885 |#1|)) (-854))) (-15 -1281 ((-157 (-357)) (-385 (-885 |#1|)))) (-15 -1281 ((-157 (-357)) (-385 (-885 |#1|)) (-854))) (-15 -1281 ((-157 (-357)) (-385 (-885 (-157 |#1|))))) (-15 -1281 ((-157 (-357)) (-385 (-885 (-157 |#1|))) (-854))) (IF (|has| |#1| (-788)) (PROGN (-15 -1234 ((-357) (-294 |#1|))) (-15 -1234 ((-357) (-294 |#1|) (-854))) (-15 -1281 ((-157 (-357)) (-294 |#1|))) (-15 -1281 ((-157 (-357)) (-294 |#1|) (-854))) (-15 -1281 ((-157 (-357)) (-294 (-157 |#1|)))) (-15 -1281 ((-157 (-357)) (-294 (-157 |#1|)) (-854)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-160)) (PROGN (-15 -1320 ((-3 (-157 (-357)) "failed") (-885 (-157 |#1|)))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-885 (-157 |#1|)) (-854)))) |%noBranch|) (IF (|has| |#1| (-975)) (PROGN (-15 -1208 ((-3 (-357) "failed") (-885 |#1|))) (-15 -1208 ((-3 (-357) "failed") (-885 |#1|) (-854))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-885 |#1|))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-885 |#1|) (-854)))) |%noBranch|) (IF (|has| |#1| (-517)) (PROGN (-15 -1208 ((-3 (-357) "failed") (-385 (-885 |#1|)))) (-15 -1208 ((-3 (-357) "failed") (-385 (-885 |#1|)) (-854))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-385 (-885 |#1|)))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-385 (-885 |#1|)) (-854))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-385 (-885 (-157 |#1|))))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-385 (-885 (-157 |#1|))) (-854))) (IF (|has| |#1| (-788)) (PROGN (-15 -1208 ((-3 (-357) "failed") (-294 |#1|))) (-15 -1208 ((-3 (-357) "failed") (-294 |#1|) (-854))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-294 |#1|))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-294 |#1|) (-854))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-294 (-157 |#1|)))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-294 (-157 |#1|)) (-854)))) |%noBranch|)) |%noBranch|)) (-566 (-357))) (T -726))
+((-1320 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-294 (-157 *5))) (-5 *4 (-854)) (-4 *5 (-517)) (-4 *5 (-788)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5)))) (-1320 (*1 *2 *3) (|partial| -12 (-5 *3 (-294 (-157 *4))) (-4 *4 (-517)) (-4 *4 (-788)) (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4)))) (-1320 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-294 *5)) (-5 *4 (-854)) (-4 *5 (-517)) (-4 *5 (-788)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5)))) (-1320 (*1 *2 *3) (|partial| -12 (-5 *3 (-294 *4)) (-4 *4 (-517)) (-4 *4 (-788)) (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4)))) (-1208 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-294 *5)) (-5 *4 (-854)) (-4 *5 (-517)) (-4 *5 (-788)) (-4 *5 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *5)))) (-1208 (*1 *2 *3) (|partial| -12 (-5 *3 (-294 *4)) (-4 *4 (-517)) (-4 *4 (-788)) (-4 *4 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *4)))) (-1320 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-385 (-885 (-157 *5)))) (-5 *4 (-854)) (-4 *5 (-517)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5)))) (-1320 (*1 *2 *3) (|partial| -12 (-5 *3 (-385 (-885 (-157 *4)))) (-4 *4 (-517)) (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4)))) (-1320 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-854)) (-4 *5 (-517)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5)))) (-1320 (*1 *2 *3) (|partial| -12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-517)) (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4)))) (-1208 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-854)) (-4 *5 (-517)) (-4 *5 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *5)))) (-1208 (*1 *2 *3) (|partial| -12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-517)) (-4 *4 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *4)))) (-1320 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-885 *5)) (-5 *4 (-854)) (-4 *5 (-975)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5)))) (-1320 (*1 *2 *3) (|partial| -12 (-5 *3 (-885 *4)) (-4 *4 (-975)) (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4)))) (-1208 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-885 *5)) (-5 *4 (-854)) (-4 *5 (-975)) (-4 *5 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *5)))) (-1208 (*1 *2 *3) (|partial| -12 (-5 *3 (-885 *4)) (-4 *4 (-975)) (-4 *4 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *4)))) (-1320 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-885 (-157 *5))) (-5 *4 (-854)) (-4 *5 (-160)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5)))) (-1320 (*1 *2 *3) (|partial| -12 (-5 *3 (-885 (-157 *4))) (-4 *4 (-160)) (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4)))) (-1281 (*1 *2 *3 *4) (-12 (-5 *3 (-294 (-157 *5))) (-5 *4 (-854)) (-4 *5 (-517)) (-4 *5 (-788)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5)))) (-1281 (*1 *2 *3) (-12 (-5 *3 (-294 (-157 *4))) (-4 *4 (-517)) (-4 *4 (-788)) (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4)))) (-1281 (*1 *2 *3 *4) (-12 (-5 *3 (-294 *5)) (-5 *4 (-854)) (-4 *5 (-517)) (-4 *5 (-788)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5)))) (-1281 (*1 *2 *3) (-12 (-5 *3 (-294 *4)) (-4 *4 (-517)) (-4 *4 (-788)) (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4)))) (-1234 (*1 *2 *3 *4) (-12 (-5 *3 (-294 *5)) (-5 *4 (-854)) (-4 *5 (-517)) (-4 *5 (-788)) (-4 *5 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *5)))) (-1234 (*1 *2 *3) (-12 (-5 *3 (-294 *4)) (-4 *4 (-517)) (-4 *4 (-788)) (-4 *4 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *4)))) (-1281 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-885 (-157 *5)))) (-5 *4 (-854)) (-4 *5 (-517)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5)))) (-1281 (*1 *2 *3) (-12 (-5 *3 (-385 (-885 (-157 *4)))) (-4 *4 (-517)) (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4)))) (-1281 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-854)) (-4 *5 (-517)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5)))) (-1281 (*1 *2 *3) (-12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-517)) (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4)))) (-1234 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-854)) (-4 *5 (-517)) (-4 *5 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *5)))) (-1234 (*1 *2 *3) (-12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-517)) (-4 *4 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *4)))) (-1281 (*1 *2 *3 *4) (-12 (-5 *3 (-885 *5)) (-5 *4 (-854)) (-4 *5 (-975)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5)))) (-1281 (*1 *2 *3) (-12 (-5 *3 (-885 *4)) (-4 *4 (-975)) (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4)))) (-1234 (*1 *2 *3 *4) (-12 (-5 *3 (-885 *5)) (-5 *4 (-854)) (-4 *5 (-975)) (-4 *5 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *5)))) (-1234 (*1 *2 *3) (-12 (-5 *3 (-885 *4)) (-4 *4 (-975)) (-4 *4 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *4)))) (-1281 (*1 *2 *3 *4) (-12 (-5 *3 (-885 (-157 *5))) (-5 *4 (-854)) (-4 *5 (-160)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5)))) (-1281 (*1 *2 *3) (-12 (-5 *3 (-885 (-157 *4))) (-4 *4 (-160)) (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4)))) (-1281 (*1 *2 *3 *4) (-12 (-5 *3 (-157 *5)) (-5 *4 (-854)) (-4 *5 (-160)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5)))) (-1281 (*1 *2 *3) (-12 (-5 *3 (-157 *4)) (-4 *4 (-160)) (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4)))) (-1281 (*1 *2 *3 *4) (-12 (-5 *4 (-854)) (-5 *2 (-157 (-357))) (-5 *1 (-726 *3)) (-4 *3 (-566 (-357))))) (-1281 (*1 *2 *3) (-12 (-5 *2 (-157 (-357))) (-5 *1 (-726 *3)) (-4 *3 (-566 (-357))))) (-1234 (*1 *2 *3 *4) (-12 (-5 *4 (-854)) (-5 *2 (-357)) (-5 *1 (-726 *3)) (-4 *3 (-566 *2)))) (-1234 (*1 *2 *3) (-12 (-5 *2 (-357)) (-5 *1 (-726 *3)) (-4 *3 (-566 *2)))))
+(-10 -7 (-15 -1234 ((-357) |#1|)) (-15 -1234 ((-357) |#1| (-854))) (-15 -1281 ((-157 (-357)) |#1|)) (-15 -1281 ((-157 (-357)) |#1| (-854))) (IF (|has| |#1| (-160)) (PROGN (-15 -1281 ((-157 (-357)) (-157 |#1|))) (-15 -1281 ((-157 (-357)) (-157 |#1|) (-854))) (-15 -1281 ((-157 (-357)) (-885 (-157 |#1|)))) (-15 -1281 ((-157 (-357)) (-885 (-157 |#1|)) (-854)))) |%noBranch|) (IF (|has| |#1| (-975)) (PROGN (-15 -1234 ((-357) (-885 |#1|))) (-15 -1234 ((-357) (-885 |#1|) (-854))) (-15 -1281 ((-157 (-357)) (-885 |#1|))) (-15 -1281 ((-157 (-357)) (-885 |#1|) (-854)))) |%noBranch|) (IF (|has| |#1| (-517)) (PROGN (-15 -1234 ((-357) (-385 (-885 |#1|)))) (-15 -1234 ((-357) (-385 (-885 |#1|)) (-854))) (-15 -1281 ((-157 (-357)) (-385 (-885 |#1|)))) (-15 -1281 ((-157 (-357)) (-385 (-885 |#1|)) (-854))) (-15 -1281 ((-157 (-357)) (-385 (-885 (-157 |#1|))))) (-15 -1281 ((-157 (-357)) (-385 (-885 (-157 |#1|))) (-854))) (IF (|has| |#1| (-788)) (PROGN (-15 -1234 ((-357) (-294 |#1|))) (-15 -1234 ((-357) (-294 |#1|) (-854))) (-15 -1281 ((-157 (-357)) (-294 |#1|))) (-15 -1281 ((-157 (-357)) (-294 |#1|) (-854))) (-15 -1281 ((-157 (-357)) (-294 (-157 |#1|)))) (-15 -1281 ((-157 (-357)) (-294 (-157 |#1|)) (-854)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-160)) (PROGN (-15 -1320 ((-3 (-157 (-357)) "failed") (-885 (-157 |#1|)))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-885 (-157 |#1|)) (-854)))) |%noBranch|) (IF (|has| |#1| (-975)) (PROGN (-15 -1208 ((-3 (-357) "failed") (-885 |#1|))) (-15 -1208 ((-3 (-357) "failed") (-885 |#1|) (-854))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-885 |#1|))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-885 |#1|) (-854)))) |%noBranch|) (IF (|has| |#1| (-517)) (PROGN (-15 -1208 ((-3 (-357) "failed") (-385 (-885 |#1|)))) (-15 -1208 ((-3 (-357) "failed") (-385 (-885 |#1|)) (-854))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-385 (-885 |#1|)))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-385 (-885 |#1|)) (-854))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-385 (-885 (-157 |#1|))))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-385 (-885 (-157 |#1|))) (-854))) (IF (|has| |#1| (-788)) (PROGN (-15 -1208 ((-3 (-357) "failed") (-294 |#1|))) (-15 -1208 ((-3 (-357) "failed") (-294 |#1|) (-854))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-294 |#1|))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-294 |#1|) (-854))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-294 (-157 |#1|)))) (-15 -1320 ((-3 (-157 (-357)) "failed") (-294 (-157 |#1|)) (-854)))) |%noBranch|)) |%noBranch|))
+((-1804 (((-854) (-1072)) 65)) (-2527 (((-3 (-357) "failed") (-1072)) 33)) (-1402 (((-357) (-1072)) 31)) (-3754 (((-854) (-1072)) 54)) (-4143 (((-1072) (-854)) 55)) (-3995 (((-1072) (-854)) 53)))
+(((-727) (-10 -7 (-15 -3995 ((-1072) (-854))) (-15 -3754 ((-854) (-1072))) (-15 -4143 ((-1072) (-854))) (-15 -1804 ((-854) (-1072))) (-15 -1402 ((-357) (-1072))) (-15 -2527 ((-3 (-357) "failed") (-1072))))) (T -727))
+((-2527 (*1 *2 *3) (|partial| -12 (-5 *3 (-1072)) (-5 *2 (-357)) (-5 *1 (-727)))) (-1402 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-357)) (-5 *1 (-727)))) (-1804 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-854)) (-5 *1 (-727)))) (-4143 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1072)) (-5 *1 (-727)))) (-3754 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-854)) (-5 *1 (-727)))) (-3995 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1072)) (-5 *1 (-727)))))
+(-10 -7 (-15 -3995 ((-1072) (-854))) (-15 -3754 ((-854) (-1072))) (-15 -4143 ((-1072) (-854))) (-15 -1804 ((-854) (-1072))) (-15 -1402 ((-357) (-1072))) (-15 -2527 ((-3 (-357) "failed") (-1072))))
+((-3008 (((-108) $ $) 7)) (-2486 (((-964) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) 15) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)) 13)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 16) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 14)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4096 (((-108) $ $) 6)))
+(((-728) (-131)) (T -728))
+((-2432 (*1 *2 *3 *4) (-12 (-4 *1 (-728)) (-5 *3 (-987)) (-5 *4 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964)))))) (-2486 (*1 *2 *3 *2) (-12 (-4 *1 (-728)) (-5 *2 (-964)) (-5 *3 (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))))) (-2432 (*1 *2 *3 *4) (-12 (-4 *1 (-728)) (-5 *3 (-987)) (-5 *4 (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964)))))) (-2486 (*1 *2 *3 *2) (-12 (-4 *1 (-728)) (-5 *2 (-964)) (-5 *3 (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))))))
+(-13 (-1018) (-10 -7 (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -2486 ((-964) (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205))) (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)) (|:| |extra| (-964))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -2486 ((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) (-964)))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-3037 (((-1176) (-1171 (-357)) (-525) (-357) (-2 (|:| |try| (-357)) (|:| |did| (-357)) (|:| -1570 (-357))) (-357) (-1171 (-357)) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357))) 44) (((-1176) (-1171 (-357)) (-525) (-357) (-2 (|:| |try| (-357)) (|:| |did| (-357)) (|:| -1570 (-357))) (-357) (-1171 (-357)) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357))) 43)) (-1662 (((-1176) (-1171 (-357)) (-525) (-357) (-357) (-525) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357))) 50)) (-3466 (((-1176) (-1171 (-357)) (-525) (-357) (-357) (-357) (-357) (-525) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357))) 41)) (-3748 (((-1176) (-1171 (-357)) (-525) (-357) (-357) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357))) 52) (((-1176) (-1171 (-357)) (-525) (-357) (-357) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357))) 51)))
+(((-729) (-10 -7 (-15 -3748 ((-1176) (-1171 (-357)) (-525) (-357) (-357) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357)))) (-15 -3748 ((-1176) (-1171 (-357)) (-525) (-357) (-357) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)))) (-15 -3466 ((-1176) (-1171 (-357)) (-525) (-357) (-357) (-357) (-357) (-525) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357)))) (-15 -3037 ((-1176) (-1171 (-357)) (-525) (-357) (-2 (|:| |try| (-357)) (|:| |did| (-357)) (|:| -1570 (-357))) (-357) (-1171 (-357)) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357)))) (-15 -3037 ((-1176) (-1171 (-357)) (-525) (-357) (-2 (|:| |try| (-357)) (|:| |did| (-357)) (|:| -1570 (-357))) (-357) (-1171 (-357)) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)))) (-15 -1662 ((-1176) (-1171 (-357)) (-525) (-357) (-357) (-525) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357)))))) (T -729))
+((-1662 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *4 (-525)) (-5 *6 (-1 (-1176) (-1171 *5) (-1171 *5) (-357))) (-5 *3 (-1171 (-357))) (-5 *5 (-357)) (-5 *2 (-1176)) (-5 *1 (-729)))) (-3037 (*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3) (-12 (-5 *4 (-525)) (-5 *6 (-2 (|:| |try| (-357)) (|:| |did| (-357)) (|:| -1570 (-357)))) (-5 *7 (-1 (-1176) (-1171 *5) (-1171 *5) (-357))) (-5 *3 (-1171 (-357))) (-5 *5 (-357)) (-5 *2 (-1176)) (-5 *1 (-729)))) (-3037 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-525)) (-5 *6 (-2 (|:| |try| (-357)) (|:| |did| (-357)) (|:| -1570 (-357)))) (-5 *7 (-1 (-1176) (-1171 *5) (-1171 *5) (-357))) (-5 *3 (-1171 (-357))) (-5 *5 (-357)) (-5 *2 (-1176)) (-5 *1 (-729)))) (-3466 (*1 *2 *3 *4 *5 *5 *5 *5 *4 *6) (-12 (-5 *4 (-525)) (-5 *6 (-1 (-1176) (-1171 *5) (-1171 *5) (-357))) (-5 *3 (-1171 (-357))) (-5 *5 (-357)) (-5 *2 (-1176)) (-5 *1 (-729)))) (-3748 (*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3) (-12 (-5 *4 (-525)) (-5 *6 (-1 (-1176) (-1171 *5) (-1171 *5) (-357))) (-5 *3 (-1171 (-357))) (-5 *5 (-357)) (-5 *2 (-1176)) (-5 *1 (-729)))) (-3748 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-525)) (-5 *6 (-1 (-1176) (-1171 *5) (-1171 *5) (-357))) (-5 *3 (-1171 (-357))) (-5 *5 (-357)) (-5 *2 (-1176)) (-5 *1 (-729)))))
+(-10 -7 (-15 -3748 ((-1176) (-1171 (-357)) (-525) (-357) (-357) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357)))) (-15 -3748 ((-1176) (-1171 (-357)) (-525) (-357) (-357) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)))) (-15 -3466 ((-1176) (-1171 (-357)) (-525) (-357) (-357) (-357) (-357) (-525) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357)))) (-15 -3037 ((-1176) (-1171 (-357)) (-525) (-357) (-2 (|:| |try| (-357)) (|:| |did| (-357)) (|:| -1570 (-357))) (-357) (-1171 (-357)) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357)))) (-15 -3037 ((-1176) (-1171 (-357)) (-525) (-357) (-2 (|:| |try| (-357)) (|:| |did| (-357)) (|:| -1570 (-357))) (-357) (-1171 (-357)) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)) (-1171 (-357)))) (-15 -1662 ((-1176) (-1171 (-357)) (-525) (-357) (-357) (-525) (-1 (-1176) (-1171 (-357)) (-1171 (-357)) (-357)))))
+((-1547 (((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525)) 53)) (-2758 (((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525)) 31)) (-2059 (((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525)) 52)) (-2747 (((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525)) 29)) (-1363 (((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525)) 51)) (-1627 (((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525)) 19)) (-2295 (((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525) (-525)) 32)) (-3770 (((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525) (-525)) 30)) (-1656 (((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525) (-525)) 28)))
+(((-730) (-10 -7 (-15 -1656 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525) (-525))) (-15 -3770 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525) (-525))) (-15 -2295 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525) (-525))) (-15 -1627 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525))) (-15 -2747 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525))) (-15 -2758 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525))) (-15 -1363 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525))) (-15 -2059 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525))) (-15 -1547 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525))))) (T -730))
+((-1547 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357)) (-5 *2 (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525)) (|:| |success| (-108)))) (-5 *1 (-730)) (-5 *5 (-525)))) (-2059 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357)) (-5 *2 (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525)) (|:| |success| (-108)))) (-5 *1 (-730)) (-5 *5 (-525)))) (-1363 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357)) (-5 *2 (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525)) (|:| |success| (-108)))) (-5 *1 (-730)) (-5 *5 (-525)))) (-2758 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357)) (-5 *2 (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525)) (|:| |success| (-108)))) (-5 *1 (-730)) (-5 *5 (-525)))) (-2747 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357)) (-5 *2 (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525)) (|:| |success| (-108)))) (-5 *1 (-730)) (-5 *5 (-525)))) (-1627 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357)) (-5 *2 (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525)) (|:| |success| (-108)))) (-5 *1 (-730)) (-5 *5 (-525)))) (-2295 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357)) (-5 *2 (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525)) (|:| |success| (-108)))) (-5 *1 (-730)) (-5 *5 (-525)))) (-3770 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357)) (-5 *2 (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525)) (|:| |success| (-108)))) (-5 *1 (-730)) (-5 *5 (-525)))) (-1656 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357)) (-5 *2 (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525)) (|:| |success| (-108)))) (-5 *1 (-730)) (-5 *5 (-525)))))
+(-10 -7 (-15 -1656 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525) (-525))) (-15 -3770 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525) (-525))) (-15 -2295 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525) (-525))) (-15 -1627 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525))) (-15 -2747 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525))) (-15 -2758 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525))) (-15 -1363 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525))) (-15 -2059 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525))) (-15 -1547 ((-2 (|:| -3024 (-357)) (|:| -1483 (-357)) (|:| |totalpts| (-525)) (|:| |success| (-108))) (-1 (-357) (-357)) (-357) (-357) (-357) (-357) (-525) (-525))))
+((-1733 (((-1121 |#1|) |#1| (-205) (-525)) 46)))
+(((-731 |#1|) (-10 -7 (-15 -1733 ((-1121 |#1|) |#1| (-205) (-525)))) (-905)) (T -731))
+((-1733 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-205)) (-5 *5 (-525)) (-5 *2 (-1121 *3)) (-5 *1 (-731 *3)) (-4 *3 (-905)))))
+(-10 -7 (-15 -1733 ((-1121 |#1|) |#1| (-205) (-525))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 24)) (-2157 (((-3 $ "failed") $ $) 26)) (-3798 (($) 23 T CONST)) (-3741 (($ $ $) 13)) (-2478 (($ $ $) 14)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4191 (($) 22 T CONST)) (-4135 (((-108) $ $) 16)) (-4119 (((-108) $ $) 17)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 15)) (-4112 (((-108) $ $) 18)) (-4164 (($ $ $) 28) (($ $) 27)) (-4156 (($ $ $) 20)) (* (($ (-712) $) 25) (($ (-854) $) 21) (($ (-525) $) 29)))
+(((-732) (-131)) (T -732))
+NIL
+(-13 (-736) (-21))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-733) . T) ((-735) . T) ((-736) . T) ((-788) . T) ((-1018) . T))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 24)) (-3798 (($) 23 T CONST)) (-3741 (($ $ $) 13)) (-2478 (($ $ $) 14)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4191 (($) 22 T CONST)) (-4135 (((-108) $ $) 16)) (-4119 (((-108) $ $) 17)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 15)) (-4112 (((-108) $ $) 18)) (-4156 (($ $ $) 20)) (* (($ (-712) $) 25) (($ (-854) $) 21)))
+(((-733) (-131)) (T -733))
+NIL
+(-13 (-735) (-23))
+(((-23) . T) ((-25) . T) ((-97) . T) ((-565 (-796)) . T) ((-735) . T) ((-788) . T) ((-1018) . T))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 24)) (-2593 (($ $ $) 27)) (-2157 (((-3 $ "failed") $ $) 26)) (-3798 (($) 23 T CONST)) (-3741 (($ $ $) 13)) (-2478 (($ $ $) 14)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4191 (($) 22 T CONST)) (-4135 (((-108) $ $) 16)) (-4119 (((-108) $ $) 17)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 15)) (-4112 (((-108) $ $) 18)) (-4156 (($ $ $) 20)) (* (($ (-712) $) 25) (($ (-854) $) 21)))
+(((-734) (-131)) (T -734))
+((-2593 (*1 *1 *1 *1) (-4 *1 (-734))))
+(-13 (-736) (-10 -8 (-15 -2593 ($ $ $))))
+(((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-733) . T) ((-735) . T) ((-736) . T) ((-788) . T) ((-1018) . T))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 24)) (-3798 (($) 23 T CONST)) (-3741 (($ $ $) 13)) (-2478 (($ $ $) 14)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4191 (($) 22 T CONST)) (-4135 (((-108) $ $) 16)) (-4119 (((-108) $ $) 17)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 15)) (-4112 (((-108) $ $) 18)) (-4156 (($ $ $) 20)) (* (($ (-712) $) 25) (($ (-854) $) 21)))
+(((-735) (-131)) (T -735))
+NIL
+(-13 (-788) (-23))
+(((-23) . T) ((-25) . T) ((-97) . T) ((-565 (-796)) . T) ((-788) . T) ((-1018) . T))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 24)) (-2157 (((-3 $ "failed") $ $) 26)) (-3798 (($) 23 T CONST)) (-3741 (($ $ $) 13)) (-2478 (($ $ $) 14)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4191 (($) 22 T CONST)) (-4135 (((-108) $ $) 16)) (-4119 (((-108) $ $) 17)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 15)) (-4112 (((-108) $ $) 18)) (-4156 (($ $ $) 20)) (* (($ (-712) $) 25) (($ (-854) $) 21)))
+(((-736) (-131)) (T -736))
+NIL
+(-13 (-733) (-126))
+(((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-733) . T) ((-735) . T) ((-788) . T) ((-1018) . T))
+((-1800 (((-108) $) 41)) (-1251 (((-3 (-525) "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL) (((-3 |#2| "failed") $) 44)) (-3528 (((-525) $) NIL) (((-385 (-525)) $) NIL) ((|#2| $) 42)) (-1511 (((-3 (-385 (-525)) "failed") $) 78)) (-1352 (((-108) $) 72)) (-1726 (((-385 (-525)) $) 76)) (-2771 ((|#2| $) 26)) (-1340 (($ (-1 |#2| |#2|) $) 23)) (-1622 (($ $) 61)) (-1408 (((-501) $) 67)) (-3228 (($ $) 21)) (-3022 (((-796) $) 56) (($ (-525)) 39) (($ |#2|) 37) (($ (-385 (-525))) NIL)) (-2128 (((-712)) 10)) (-1539 ((|#2| $) 71)) (-4096 (((-108) $ $) 29)) (-4112 (((-108) $ $) 69)) (-4164 (($ $) 31) (($ $ $) NIL)) (-4156 (($ $ $) 30)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 35) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 32)))
+(((-737 |#1| |#2|) (-10 -8 (-15 -4112 ((-108) |#1| |#1|)) (-15 -1408 ((-501) |#1|)) (-15 -1622 (|#1| |#1|)) (-15 -1511 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -1726 ((-385 (-525)) |#1|)) (-15 -1352 ((-108) |#1|)) (-15 -1539 (|#2| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -3228 (|#1| |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -3022 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3022 (|#1| (-525))) (-15 -2128 ((-712))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 -4164 (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 -1800 ((-108) |#1|)) (-15 * (|#1| (-854) |#1|)) (-15 -4156 (|#1| |#1| |#1|)) (-15 -3022 ((-796) |#1|)) (-15 -4096 ((-108) |#1| |#1|))) (-738 |#2|) (-160)) (T -737))
+((-2128 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-712)) (-5 *1 (-737 *3 *4)) (-4 *3 (-738 *4)))))
+(-10 -8 (-15 -4112 ((-108) |#1| |#1|)) (-15 -1408 ((-501) |#1|)) (-15 -1622 (|#1| |#1|)) (-15 -1511 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -1726 ((-385 (-525)) |#1|)) (-15 -1352 ((-108) |#1|)) (-15 -1539 (|#2| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -3228 (|#1| |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -3022 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3022 (|#1| (-525))) (-15 -2128 ((-712))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 -4164 (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 -1800 ((-108) |#1|)) (-15 * (|#1| (-854) |#1|)) (-15 -4156 (|#1| |#1| |#1|)) (-15 -3022 ((-796) |#1|)) (-15 -4096 ((-108) |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3032 (((-712)) 53 (|has| |#1| (-346)))) (-3798 (($) 17 T CONST)) (-1251 (((-3 (-525) "failed") $) 94 (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) 92 (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) 90)) (-3528 (((-525) $) 95 (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) 93 (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) 89)) (-4163 (((-3 $ "failed") $) 34)) (-1373 ((|#1| $) 79)) (-1511 (((-3 (-385 (-525)) "failed") $) 66 (|has| |#1| (-510)))) (-1352 (((-108) $) 68 (|has| |#1| (-510)))) (-1726 (((-385 (-525)) $) 67 (|has| |#1| (-510)))) (-3377 (($) 56 (|has| |#1| (-346)))) (-2824 (((-108) $) 31)) (-3722 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 70)) (-2771 ((|#1| $) 71)) (-3741 (($ $ $) 62 (|has| |#1| (-788)))) (-2478 (($ $ $) 61 (|has| |#1| (-788)))) (-1340 (($ (-1 |#1| |#1|) $) 81)) (-3016 (((-854) $) 55 (|has| |#1| (-346)))) (-2339 (((-1072) $) 9)) (-1622 (($ $) 65 (|has| |#1| (-341)))) (-2226 (($ (-854)) 54 (|has| |#1| (-346)))) (-1207 ((|#1| $) 76)) (-1574 ((|#1| $) 77)) (-1771 ((|#1| $) 78)) (-2062 ((|#1| $) 72)) (-2411 ((|#1| $) 73)) (-1342 ((|#1| $) 74)) (-1516 ((|#1| $) 75)) (-2047 (((-1036) $) 10)) (-4132 (($ $ (-591 |#1|) (-591 |#1|)) 87 (|has| |#1| (-288 |#1|))) (($ $ |#1| |#1|) 86 (|has| |#1| (-288 |#1|))) (($ $ (-273 |#1|)) 85 (|has| |#1| (-288 |#1|))) (($ $ (-591 (-273 |#1|))) 84 (|has| |#1| (-288 |#1|))) (($ $ (-591 (-1089)) (-591 |#1|)) 83 (|has| |#1| (-486 (-1089) |#1|))) (($ $ (-1089) |#1|) 82 (|has| |#1| (-486 (-1089) |#1|)))) (-3164 (($ $ |#1|) 88 (|has| |#1| (-265 |#1| |#1|)))) (-1408 (((-501) $) 63 (|has| |#1| (-566 (-501))))) (-3228 (($ $) 80)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 37) (($ (-385 (-525))) 91 (|has| |#1| (-966 (-385 (-525)))))) (-1437 (((-3 $ "failed") $) 64 (|has| |#1| (-136)))) (-2128 (((-712)) 29)) (-1539 ((|#1| $) 69 (|has| |#1| (-984)))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4135 (((-108) $ $) 59 (|has| |#1| (-788)))) (-4119 (((-108) $ $) 58 (|has| |#1| (-788)))) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 60 (|has| |#1| (-788)))) (-4112 (((-108) $ $) 57 (|has| |#1| (-788)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
+(((-738 |#1|) (-131) (-160)) (T -738))
+((-3228 (*1 *1 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)))) (-1373 (*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)))) (-1771 (*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)))) (-1574 (*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)))) (-1207 (*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)))) (-1516 (*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)))) (-1342 (*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)))) (-2411 (*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)))) (-2062 (*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)))) (-2771 (*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)))) (-3722 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)))) (-1539 (*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)) (-4 *2 (-984)))) (-1352 (*1 *2 *1) (-12 (-4 *1 (-738 *3)) (-4 *3 (-160)) (-4 *3 (-510)) (-5 *2 (-108)))) (-1726 (*1 *2 *1) (-12 (-4 *1 (-738 *3)) (-4 *3 (-160)) (-4 *3 (-510)) (-5 *2 (-385 (-525))))) (-1511 (*1 *2 *1) (|partial| -12 (-4 *1 (-738 *3)) (-4 *3 (-160)) (-4 *3 (-510)) (-5 *2 (-385 (-525))))) (-1622 (*1 *1 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)) (-4 *2 (-341)))))
+(-13 (-37 |t#1|) (-389 |t#1|) (-316 |t#1|) (-10 -8 (-15 -3228 ($ $)) (-15 -1373 (|t#1| $)) (-15 -1771 (|t#1| $)) (-15 -1574 (|t#1| $)) (-15 -1207 (|t#1| $)) (-15 -1516 (|t#1| $)) (-15 -1342 (|t#1| $)) (-15 -2411 (|t#1| $)) (-15 -2062 (|t#1| $)) (-15 -2771 (|t#1| $)) (-15 -3722 ($ |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1|)) (IF (|has| |t#1| (-346)) (-6 (-346)) |%noBranch|) (IF (|has| |t#1| (-788)) (-6 (-788)) |%noBranch|) (IF (|has| |t#1| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|) (IF (|has| |t#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |t#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |t#1| (-984)) (-15 -1539 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-510)) (PROGN (-15 -1352 ((-108) $)) (-15 -1726 ((-385 (-525)) $)) (-15 -1511 ((-3 (-385 (-525)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-341)) (-15 -1622 ($ $)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-265 |#1| $) |has| |#1| (-265 |#1| |#1|)) ((-288 |#1|) |has| |#1| (-288 |#1|)) ((-346) |has| |#1| (-346)) ((-316 |#1|) . T) ((-389 |#1|) . T) ((-486 (-1089) |#1|) |has| |#1| (-486 (-1089) |#1|)) ((-486 |#1| |#1|) |has| |#1| (-288 |#1|)) ((-593 |#1|) . T) ((-593 $) . T) ((-659 |#1|) . T) ((-668) . T) ((-788) |has| |#1| (-788)) ((-966 (-385 (-525))) |has| |#1| (-966 (-385 (-525)))) ((-966 (-525)) |has| |#1| (-966 (-525))) ((-966 |#1|) . T) ((-981 |#1|) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-1340 ((|#3| (-1 |#4| |#2|) |#1|) 20)))
+(((-739 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1340 (|#3| (-1 |#4| |#2|) |#1|))) (-738 |#2|) (-160) (-738 |#4|) (-160)) (T -739))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-160)) (-4 *6 (-160)) (-4 *2 (-738 *6)) (-5 *1 (-739 *4 *5 *2 *6)) (-4 *4 (-738 *5)))))
+(-10 -7 (-15 -1340 (|#3| (-1 |#4| |#2|) |#1|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3032 (((-712)) NIL (|has| |#1| (-346)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL) (((-3 (-929 |#1|) "failed") $) 35) (((-3 (-525) "failed") $) NIL (-3321 (|has| (-929 |#1|) (-966 (-525))) (|has| |#1| (-966 (-525))))) (((-3 (-385 (-525)) "failed") $) NIL (-3321 (|has| (-929 |#1|) (-966 (-385 (-525)))) (|has| |#1| (-966 (-385 (-525))))))) (-3528 ((|#1| $) NIL) (((-929 |#1|) $) 33) (((-525) $) NIL (-3321 (|has| (-929 |#1|) (-966 (-525))) (|has| |#1| (-966 (-525))))) (((-385 (-525)) $) NIL (-3321 (|has| (-929 |#1|) (-966 (-385 (-525)))) (|has| |#1| (-966 (-385 (-525))))))) (-4163 (((-3 $ "failed") $) NIL)) (-1373 ((|#1| $) 16)) (-1511 (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-510)))) (-1352 (((-108) $) NIL (|has| |#1| (-510)))) (-1726 (((-385 (-525)) $) NIL (|has| |#1| (-510)))) (-3377 (($) NIL (|has| |#1| (-346)))) (-2824 (((-108) $) NIL)) (-3722 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-929 |#1|) (-929 |#1|)) 29)) (-2771 ((|#1| $) NIL)) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-3016 (((-854) $) NIL (|has| |#1| (-346)))) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL (|has| |#1| (-341)))) (-2226 (($ (-854)) NIL (|has| |#1| (-346)))) (-1207 ((|#1| $) 22)) (-1574 ((|#1| $) 20)) (-1771 ((|#1| $) 18)) (-2062 ((|#1| $) 26)) (-2411 ((|#1| $) 25)) (-1342 ((|#1| $) 24)) (-1516 ((|#1| $) 23)) (-2047 (((-1036) $) NIL)) (-4132 (($ $ (-591 |#1|) (-591 |#1|)) NIL (|has| |#1| (-288 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-288 |#1|))) (($ $ (-273 |#1|)) NIL (|has| |#1| (-288 |#1|))) (($ $ (-591 (-273 |#1|))) NIL (|has| |#1| (-288 |#1|))) (($ $ (-591 (-1089)) (-591 |#1|)) NIL (|has| |#1| (-486 (-1089) |#1|))) (($ $ (-1089) |#1|) NIL (|has| |#1| (-486 (-1089) |#1|)))) (-3164 (($ $ |#1|) NIL (|has| |#1| (-265 |#1| |#1|)))) (-1408 (((-501) $) NIL (|has| |#1| (-566 (-501))))) (-3228 (($ $) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#1|) NIL) (($ (-929 |#1|)) 30) (($ (-385 (-525))) NIL (-3321 (|has| (-929 |#1|) (-966 (-385 (-525)))) (|has| |#1| (-966 (-385 (-525))))))) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) NIL)) (-1539 ((|#1| $) NIL (|has| |#1| (-984)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 8 T CONST)) (-4197 (($) 12 T CONST)) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 40) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-740 |#1|) (-13 (-738 |#1|) (-389 (-929 |#1|)) (-10 -8 (-15 -3722 ($ (-929 |#1|) (-929 |#1|))))) (-160)) (T -740))
+((-3722 (*1 *1 *2 *2) (-12 (-5 *2 (-929 *3)) (-4 *3 (-160)) (-5 *1 (-740 *3)))))
+(-13 (-738 |#1|) (-389 (-929 |#1|)) (-10 -8 (-15 -3722 ($ (-929 |#1|) (-929 |#1|)))))
+((-3008 (((-108) $ $) 7)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 14)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-3968 (((-964) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 13)) (-4096 (((-108) $ $) 6)))
+(((-741) (-131)) (T -741))
+((-2432 (*1 *2 *3 *4) (-12 (-4 *1 (-741)) (-5 *3 (-987)) (-5 *4 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)))))) (-3968 (*1 *2 *3) (-12 (-4 *1 (-741)) (-5 *3 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-964)))))
+(-13 (-1018) (-10 -7 (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -3968 ((-964) (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-1509 (((-2 (|:| |particular| |#2|) (|:| -4003 (-591 |#2|))) |#3| |#2| (-1089)) 19)))
+(((-742 |#1| |#2| |#3|) (-10 -7 (-15 -1509 ((-2 (|:| |particular| |#2|) (|:| -4003 (-591 |#2|))) |#3| |#2| (-1089)))) (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)) (-13 (-29 |#1|) (-1111) (-891)) (-601 |#2|)) (T -742))
+((-1509 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1089)) (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-4 *4 (-13 (-29 *6) (-1111) (-891))) (-5 *2 (-2 (|:| |particular| *4) (|:| -4003 (-591 *4)))) (-5 *1 (-742 *6 *4 *3)) (-4 *3 (-601 *4)))))
+(-10 -7 (-15 -1509 ((-2 (|:| |particular| |#2|) (|:| -4003 (-591 |#2|))) |#3| |#2| (-1089))))
+((-4039 (((-3 |#2| "failed") |#2| (-110) (-273 |#2|) (-591 |#2|)) 28) (((-3 |#2| "failed") (-273 |#2|) (-110) (-273 |#2|) (-591 |#2|)) 29) (((-3 (-2 (|:| |particular| |#2|) (|:| -4003 (-591 |#2|))) |#2| "failed") |#2| (-110) (-1089)) 17) (((-3 (-2 (|:| |particular| |#2|) (|:| -4003 (-591 |#2|))) |#2| "failed") (-273 |#2|) (-110) (-1089)) 18) (((-3 (-2 (|:| |particular| (-1171 |#2|)) (|:| -4003 (-591 (-1171 |#2|)))) "failed") (-591 |#2|) (-591 (-110)) (-1089)) 24) (((-3 (-2 (|:| |particular| (-1171 |#2|)) (|:| -4003 (-591 (-1171 |#2|)))) "failed") (-591 (-273 |#2|)) (-591 (-110)) (-1089)) 26) (((-3 (-591 (-1171 |#2|)) "failed") (-631 |#2|) (-1089)) 37) (((-3 (-2 (|:| |particular| (-1171 |#2|)) (|:| -4003 (-591 (-1171 |#2|)))) "failed") (-631 |#2|) (-1171 |#2|) (-1089)) 35)))
+(((-743 |#1| |#2|) (-10 -7 (-15 -4039 ((-3 (-2 (|:| |particular| (-1171 |#2|)) (|:| -4003 (-591 (-1171 |#2|)))) "failed") (-631 |#2|) (-1171 |#2|) (-1089))) (-15 -4039 ((-3 (-591 (-1171 |#2|)) "failed") (-631 |#2|) (-1089))) (-15 -4039 ((-3 (-2 (|:| |particular| (-1171 |#2|)) (|:| -4003 (-591 (-1171 |#2|)))) "failed") (-591 (-273 |#2|)) (-591 (-110)) (-1089))) (-15 -4039 ((-3 (-2 (|:| |particular| (-1171 |#2|)) (|:| -4003 (-591 (-1171 |#2|)))) "failed") (-591 |#2|) (-591 (-110)) (-1089))) (-15 -4039 ((-3 (-2 (|:| |particular| |#2|) (|:| -4003 (-591 |#2|))) |#2| "failed") (-273 |#2|) (-110) (-1089))) (-15 -4039 ((-3 (-2 (|:| |particular| |#2|) (|:| -4003 (-591 |#2|))) |#2| "failed") |#2| (-110) (-1089))) (-15 -4039 ((-3 |#2| "failed") (-273 |#2|) (-110) (-273 |#2|) (-591 |#2|))) (-15 -4039 ((-3 |#2| "failed") |#2| (-110) (-273 |#2|) (-591 |#2|)))) (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)) (-13 (-29 |#1|) (-1111) (-891))) (T -743))
+((-4039 (*1 *2 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-110)) (-5 *4 (-273 *2)) (-5 *5 (-591 *2)) (-4 *2 (-13 (-29 *6) (-1111) (-891))) (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *1 (-743 *6 *2)))) (-4039 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-273 *2)) (-5 *4 (-110)) (-5 *5 (-591 *2)) (-4 *2 (-13 (-29 *6) (-1111) (-891))) (-5 *1 (-743 *6 *2)) (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))))) (-4039 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-110)) (-5 *5 (-1089)) (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *2 (-3 (-2 (|:| |particular| *3) (|:| -4003 (-591 *3))) *3 "failed")) (-5 *1 (-743 *6 *3)) (-4 *3 (-13 (-29 *6) (-1111) (-891))))) (-4039 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-273 *7)) (-5 *4 (-110)) (-5 *5 (-1089)) (-4 *7 (-13 (-29 *6) (-1111) (-891))) (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *2 (-3 (-2 (|:| |particular| *7) (|:| -4003 (-591 *7))) *7 "failed")) (-5 *1 (-743 *6 *7)))) (-4039 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-591 *7)) (-5 *4 (-591 (-110))) (-5 *5 (-1089)) (-4 *7 (-13 (-29 *6) (-1111) (-891))) (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *2 (-2 (|:| |particular| (-1171 *7)) (|:| -4003 (-591 (-1171 *7))))) (-5 *1 (-743 *6 *7)))) (-4039 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-591 (-273 *7))) (-5 *4 (-591 (-110))) (-5 *5 (-1089)) (-4 *7 (-13 (-29 *6) (-1111) (-891))) (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *2 (-2 (|:| |particular| (-1171 *7)) (|:| -4003 (-591 (-1171 *7))))) (-5 *1 (-743 *6 *7)))) (-4039 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-631 *6)) (-5 *4 (-1089)) (-4 *6 (-13 (-29 *5) (-1111) (-891))) (-4 *5 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *2 (-591 (-1171 *6))) (-5 *1 (-743 *5 *6)))) (-4039 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-631 *7)) (-5 *5 (-1089)) (-4 *7 (-13 (-29 *6) (-1111) (-891))) (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *2 (-2 (|:| |particular| (-1171 *7)) (|:| -4003 (-591 (-1171 *7))))) (-5 *1 (-743 *6 *7)) (-5 *4 (-1171 *7)))))
+(-10 -7 (-15 -4039 ((-3 (-2 (|:| |particular| (-1171 |#2|)) (|:| -4003 (-591 (-1171 |#2|)))) "failed") (-631 |#2|) (-1171 |#2|) (-1089))) (-15 -4039 ((-3 (-591 (-1171 |#2|)) "failed") (-631 |#2|) (-1089))) (-15 -4039 ((-3 (-2 (|:| |particular| (-1171 |#2|)) (|:| -4003 (-591 (-1171 |#2|)))) "failed") (-591 (-273 |#2|)) (-591 (-110)) (-1089))) (-15 -4039 ((-3 (-2 (|:| |particular| (-1171 |#2|)) (|:| -4003 (-591 (-1171 |#2|)))) "failed") (-591 |#2|) (-591 (-110)) (-1089))) (-15 -4039 ((-3 (-2 (|:| |particular| |#2|) (|:| -4003 (-591 |#2|))) |#2| "failed") (-273 |#2|) (-110) (-1089))) (-15 -4039 ((-3 (-2 (|:| |particular| |#2|) (|:| -4003 (-591 |#2|))) |#2| "failed") |#2| (-110) (-1089))) (-15 -4039 ((-3 |#2| "failed") (-273 |#2|) (-110) (-273 |#2|) (-591 |#2|))) (-15 -4039 ((-3 |#2| "failed") |#2| (-110) (-273 |#2|) (-591 |#2|))))
+((-2900 (($) 9)) (-2883 (((-3 (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357))) "failed") (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 31)) (-1542 (((-591 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) $) 28)) (-2470 (($ (-2 (|:| -2019 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357)))))) 25)) (-1881 (($ (-591 (-2 (|:| -2019 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357))))))) 23)) (-3541 (((-1176)) 12)))
+(((-744) (-10 -8 (-15 -2900 ($)) (-15 -3541 ((-1176))) (-15 -1542 ((-591 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) $)) (-15 -1881 ($ (-591 (-2 (|:| -2019 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357)))))))) (-15 -2470 ($ (-2 (|:| -2019 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357))))))) (-15 -2883 ((-3 (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357))) "failed") (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))))) (T -744))
+((-2883 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *2 (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357)))) (-5 *1 (-744)))) (-2470 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2019 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357)))))) (-5 *1 (-744)))) (-1881 (*1 *1 *2) (-12 (-5 *2 (-591 (-2 (|:| -2019 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357))))))) (-5 *1 (-744)))) (-1542 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-5 *1 (-744)))) (-3541 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-744)))) (-2900 (*1 *1) (-5 *1 (-744))))
+(-10 -8 (-15 -2900 ($)) (-15 -3541 ((-1176))) (-15 -1542 ((-591 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) $)) (-15 -1881 ($ (-591 (-2 (|:| -2019 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357)))))))) (-15 -2470 ($ (-2 (|:| -2019 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (|:| -1221 (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357))))))) (-15 -2883 ((-3 (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357)) (|:| |expense| (-357)) (|:| |accuracy| (-357)) (|:| |intermediateResults| (-357))) "failed") (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))))
+((-4150 ((|#2| |#2| (-1089)) 16)) (-2139 ((|#2| |#2| (-1089)) 51)) (-2643 (((-1 |#2| |#2|) (-1089)) 11)))
+(((-745 |#1| |#2|) (-10 -7 (-15 -4150 (|#2| |#2| (-1089))) (-15 -2139 (|#2| |#2| (-1089))) (-15 -2643 ((-1 |#2| |#2|) (-1089)))) (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)) (-13 (-29 |#1|) (-1111) (-891))) (T -745))
+((-2643 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *2 (-1 *5 *5)) (-5 *1 (-745 *4 *5)) (-4 *5 (-13 (-29 *4) (-1111) (-891))))) (-2139 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *1 (-745 *4 *2)) (-4 *2 (-13 (-29 *4) (-1111) (-891))))) (-4150 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *1 (-745 *4 *2)) (-4 *2 (-13 (-29 *4) (-1111) (-891))))))
+(-10 -7 (-15 -4150 (|#2| |#2| (-1089))) (-15 -2139 (|#2| |#2| (-1089))) (-15 -2643 ((-1 |#2| |#2|) (-1089))))
+((-4039 (((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)) (-294 (-357)) (-591 (-357)) (-357) (-357)) 116) (((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)) (-294 (-357)) (-591 (-357)) (-357)) 117) (((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)) (-591 (-357)) (-357)) 119) (((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)) (-294 (-357)) (-357)) 120) (((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)) (-357)) 121) (((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357))) 122) (((-964) (-749) (-987)) 108) (((-964) (-749)) 109)) (-2432 (((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-749) (-987)) 75) (((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-749)) 77)))
+(((-746) (-10 -7 (-15 -4039 ((-964) (-749))) (-15 -4039 ((-964) (-749) (-987))) (-15 -4039 ((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)))) (-15 -4039 ((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)) (-357))) (-15 -4039 ((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)) (-294 (-357)) (-357))) (-15 -4039 ((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)) (-591 (-357)) (-357))) (-15 -4039 ((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)) (-294 (-357)) (-591 (-357)) (-357))) (-15 -4039 ((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)) (-294 (-357)) (-591 (-357)) (-357) (-357))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-749))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-749) (-987))))) (T -746))
+((-2432 (*1 *2 *3 *4) (-12 (-5 *3 (-749)) (-5 *4 (-987)) (-5 *2 (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))))) (-5 *1 (-746)))) (-2432 (*1 *2 *3) (-12 (-5 *3 (-749)) (-5 *2 (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))))) (-5 *1 (-746)))) (-4039 (*1 *2 *3 *4 *4 *5 *6 *5 *4 *4) (-12 (-5 *3 (-1171 (-294 *4))) (-5 *5 (-591 (-357))) (-5 *6 (-294 (-357))) (-5 *4 (-357)) (-5 *2 (-964)) (-5 *1 (-746)))) (-4039 (*1 *2 *3 *4 *4 *5 *6 *5 *4) (-12 (-5 *3 (-1171 (-294 *4))) (-5 *5 (-591 (-357))) (-5 *6 (-294 (-357))) (-5 *4 (-357)) (-5 *2 (-964)) (-5 *1 (-746)))) (-4039 (*1 *2 *3 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1171 (-294 (-357)))) (-5 *4 (-357)) (-5 *5 (-591 *4)) (-5 *2 (-964)) (-5 *1 (-746)))) (-4039 (*1 *2 *3 *4 *4 *5 *6 *4) (-12 (-5 *3 (-1171 (-294 *4))) (-5 *5 (-591 (-357))) (-5 *6 (-294 (-357))) (-5 *4 (-357)) (-5 *2 (-964)) (-5 *1 (-746)))) (-4039 (*1 *2 *3 *4 *4 *5 *4) (-12 (-5 *3 (-1171 (-294 (-357)))) (-5 *4 (-357)) (-5 *5 (-591 *4)) (-5 *2 (-964)) (-5 *1 (-746)))) (-4039 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1171 (-294 (-357)))) (-5 *4 (-357)) (-5 *5 (-591 *4)) (-5 *2 (-964)) (-5 *1 (-746)))) (-4039 (*1 *2 *3 *4) (-12 (-5 *3 (-749)) (-5 *4 (-987)) (-5 *2 (-964)) (-5 *1 (-746)))) (-4039 (*1 *2 *3) (-12 (-5 *3 (-749)) (-5 *2 (-964)) (-5 *1 (-746)))))
+(-10 -7 (-15 -4039 ((-964) (-749))) (-15 -4039 ((-964) (-749) (-987))) (-15 -4039 ((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)))) (-15 -4039 ((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)) (-357))) (-15 -4039 ((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)) (-294 (-357)) (-357))) (-15 -4039 ((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)) (-591 (-357)) (-357))) (-15 -4039 ((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)) (-294 (-357)) (-591 (-357)) (-357))) (-15 -4039 ((-964) (-1171 (-294 (-357))) (-357) (-357) (-591 (-357)) (-294 (-357)) (-591 (-357)) (-357) (-357))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-749))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-749) (-987))))
+((-1670 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -4003 (-591 |#4|))) (-598 |#4|) |#4|) 35)))
+(((-747 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1670 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -4003 (-591 |#4|))) (-598 |#4|) |#4|))) (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))) (-1147 |#1|) (-1147 (-385 |#2|)) (-320 |#1| |#2| |#3|)) (T -747))
+((-1670 (*1 *2 *3 *4) (-12 (-5 *3 (-598 *4)) (-4 *4 (-320 *5 *6 *7)) (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-4 *6 (-1147 *5)) (-4 *7 (-1147 (-385 *6))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4)))) (-5 *1 (-747 *5 *6 *7 *4)))))
+(-10 -7 (-15 -1670 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -4003 (-591 |#4|))) (-598 |#4|) |#4|)))
+((-2004 (((-2 (|:| -1317 |#3|) (|:| |rh| (-591 (-385 |#2|)))) |#4| (-591 (-385 |#2|))) 52)) (-1782 (((-591 (-2 (|:| -1682 |#2|) (|:| -2717 |#2|))) |#4| |#2|) 60) (((-591 (-2 (|:| -1682 |#2|) (|:| -2717 |#2|))) |#4|) 59) (((-591 (-2 (|:| -1682 |#2|) (|:| -2717 |#2|))) |#3| |#2|) 20) (((-591 (-2 (|:| -1682 |#2|) (|:| -2717 |#2|))) |#3|) 21)) (-4111 ((|#2| |#4| |#1|) 61) ((|#2| |#3| |#1|) 27)) (-1866 ((|#2| |#3| (-591 (-385 |#2|))) 93) (((-3 |#2| "failed") |#3| (-385 |#2|)) 90)))
+(((-748 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1866 ((-3 |#2| "failed") |#3| (-385 |#2|))) (-15 -1866 (|#2| |#3| (-591 (-385 |#2|)))) (-15 -1782 ((-591 (-2 (|:| -1682 |#2|) (|:| -2717 |#2|))) |#3|)) (-15 -1782 ((-591 (-2 (|:| -1682 |#2|) (|:| -2717 |#2|))) |#3| |#2|)) (-15 -4111 (|#2| |#3| |#1|)) (-15 -1782 ((-591 (-2 (|:| -1682 |#2|) (|:| -2717 |#2|))) |#4|)) (-15 -1782 ((-591 (-2 (|:| -1682 |#2|) (|:| -2717 |#2|))) |#4| |#2|)) (-15 -4111 (|#2| |#4| |#1|)) (-15 -2004 ((-2 (|:| -1317 |#3|) (|:| |rh| (-591 (-385 |#2|)))) |#4| (-591 (-385 |#2|))))) (-13 (-341) (-138) (-966 (-385 (-525)))) (-1147 |#1|) (-601 |#2|) (-601 (-385 |#2|))) (T -748))
+((-2004 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *6 (-1147 *5)) (-5 *2 (-2 (|:| -1317 *7) (|:| |rh| (-591 (-385 *6))))) (-5 *1 (-748 *5 *6 *7 *3)) (-5 *4 (-591 (-385 *6))) (-4 *7 (-601 *6)) (-4 *3 (-601 (-385 *6))))) (-4111 (*1 *2 *3 *4) (-12 (-4 *2 (-1147 *4)) (-5 *1 (-748 *4 *2 *5 *3)) (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *5 (-601 *2)) (-4 *3 (-601 (-385 *2))))) (-1782 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *4 (-1147 *5)) (-5 *2 (-591 (-2 (|:| -1682 *4) (|:| -2717 *4)))) (-5 *1 (-748 *5 *4 *6 *3)) (-4 *6 (-601 *4)) (-4 *3 (-601 (-385 *4))))) (-1782 (*1 *2 *3) (-12 (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *5 (-1147 *4)) (-5 *2 (-591 (-2 (|:| -1682 *5) (|:| -2717 *5)))) (-5 *1 (-748 *4 *5 *6 *3)) (-4 *6 (-601 *5)) (-4 *3 (-601 (-385 *5))))) (-4111 (*1 *2 *3 *4) (-12 (-4 *2 (-1147 *4)) (-5 *1 (-748 *4 *2 *3 *5)) (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *3 (-601 *2)) (-4 *5 (-601 (-385 *2))))) (-1782 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *4 (-1147 *5)) (-5 *2 (-591 (-2 (|:| -1682 *4) (|:| -2717 *4)))) (-5 *1 (-748 *5 *4 *3 *6)) (-4 *3 (-601 *4)) (-4 *6 (-601 (-385 *4))))) (-1782 (*1 *2 *3) (-12 (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *5 (-1147 *4)) (-5 *2 (-591 (-2 (|:| -1682 *5) (|:| -2717 *5)))) (-5 *1 (-748 *4 *5 *3 *6)) (-4 *3 (-601 *5)) (-4 *6 (-601 (-385 *5))))) (-1866 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-385 *2))) (-4 *2 (-1147 *5)) (-5 *1 (-748 *5 *2 *3 *6)) (-4 *5 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *3 (-601 *2)) (-4 *6 (-601 (-385 *2))))) (-1866 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-385 *2)) (-4 *2 (-1147 *5)) (-5 *1 (-748 *5 *2 *3 *6)) (-4 *5 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *3 (-601 *2)) (-4 *6 (-601 *4)))))
+(-10 -7 (-15 -1866 ((-3 |#2| "failed") |#3| (-385 |#2|))) (-15 -1866 (|#2| |#3| (-591 (-385 |#2|)))) (-15 -1782 ((-591 (-2 (|:| -1682 |#2|) (|:| -2717 |#2|))) |#3|)) (-15 -1782 ((-591 (-2 (|:| -1682 |#2|) (|:| -2717 |#2|))) |#3| |#2|)) (-15 -4111 (|#2| |#3| |#1|)) (-15 -1782 ((-591 (-2 (|:| -1682 |#2|) (|:| -2717 |#2|))) |#4|)) (-15 -1782 ((-591 (-2 (|:| -1682 |#2|) (|:| -2717 |#2|))) |#4| |#2|)) (-15 -4111 (|#2| |#4| |#1|)) (-15 -2004 ((-2 (|:| -1317 |#3|) (|:| |rh| (-591 (-385 |#2|)))) |#4| (-591 (-385 |#2|)))))
+((-3008 (((-108) $ $) NIL)) (-3528 (((-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) $) 13)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 15) (($ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) 12)) (-4096 (((-108) $ $) NIL)))
+(((-749) (-13 (-1018) (-10 -8 (-15 -3022 ($ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -3022 ((-796) $)) (-15 -3528 ((-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) $))))) (T -749))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-749)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *1 (-749)))) (-3528 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205)))) (-5 *1 (-749)))))
+(-13 (-1018) (-10 -8 (-15 -3022 ($ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))))) (-15 -3022 ((-796) $)) (-15 -3528 ((-2 (|:| |xinit| (-205)) (|:| |xend| (-205)) (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205))) (|:| |abserr| (-205)) (|:| |relerr| (-205))) $))))
+((-1492 (((-591 (-2 (|:| |frac| (-385 |#2|)) (|:| -1317 |#3|))) |#3| (-1 (-591 |#2|) |#2| (-1085 |#2|)) (-1 (-396 |#2|) |#2|)) 118)) (-3914 (((-591 (-2 (|:| |poly| |#2|) (|:| -1317 |#3|))) |#3| (-1 (-591 |#1|) |#2|)) 46)) (-2246 (((-591 (-2 (|:| |deg| (-712)) (|:| -1317 |#2|))) |#3|) 95)) (-1561 ((|#2| |#3|) 37)) (-2906 (((-591 (-2 (|:| -2058 |#1|) (|:| -1317 |#3|))) |#3| (-1 (-591 |#1|) |#2|)) 82)) (-2046 ((|#3| |#3| (-385 |#2|)) 63) ((|#3| |#3| |#2|) 79)))
+(((-750 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1561 (|#2| |#3|)) (-15 -2246 ((-591 (-2 (|:| |deg| (-712)) (|:| -1317 |#2|))) |#3|)) (-15 -2906 ((-591 (-2 (|:| -2058 |#1|) (|:| -1317 |#3|))) |#3| (-1 (-591 |#1|) |#2|))) (-15 -3914 ((-591 (-2 (|:| |poly| |#2|) (|:| -1317 |#3|))) |#3| (-1 (-591 |#1|) |#2|))) (-15 -1492 ((-591 (-2 (|:| |frac| (-385 |#2|)) (|:| -1317 |#3|))) |#3| (-1 (-591 |#2|) |#2| (-1085 |#2|)) (-1 (-396 |#2|) |#2|))) (-15 -2046 (|#3| |#3| |#2|)) (-15 -2046 (|#3| |#3| (-385 |#2|)))) (-13 (-341) (-138) (-966 (-385 (-525)))) (-1147 |#1|) (-601 |#2|) (-601 (-385 |#2|))) (T -750))
+((-2046 (*1 *2 *2 *3) (-12 (-5 *3 (-385 *5)) (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *5 (-1147 *4)) (-5 *1 (-750 *4 *5 *2 *6)) (-4 *2 (-601 *5)) (-4 *6 (-601 *3)))) (-2046 (*1 *2 *2 *3) (-12 (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *3 (-1147 *4)) (-5 *1 (-750 *4 *3 *2 *5)) (-4 *2 (-601 *3)) (-4 *5 (-601 (-385 *3))))) (-1492 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 (-591 *7) *7 (-1085 *7))) (-5 *5 (-1 (-396 *7) *7)) (-4 *7 (-1147 *6)) (-4 *6 (-13 (-341) (-138) (-966 (-385 (-525))))) (-5 *2 (-591 (-2 (|:| |frac| (-385 *7)) (|:| -1317 *3)))) (-5 *1 (-750 *6 *7 *3 *8)) (-4 *3 (-601 *7)) (-4 *8 (-601 (-385 *7))))) (-3914 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-591 *5) *6)) (-4 *5 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *6 (-1147 *5)) (-5 *2 (-591 (-2 (|:| |poly| *6) (|:| -1317 *3)))) (-5 *1 (-750 *5 *6 *3 *7)) (-4 *3 (-601 *6)) (-4 *7 (-601 (-385 *6))))) (-2906 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-591 *5) *6)) (-4 *5 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *6 (-1147 *5)) (-5 *2 (-591 (-2 (|:| -2058 *5) (|:| -1317 *3)))) (-5 *1 (-750 *5 *6 *3 *7)) (-4 *3 (-601 *6)) (-4 *7 (-601 (-385 *6))))) (-2246 (*1 *2 *3) (-12 (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *5 (-1147 *4)) (-5 *2 (-591 (-2 (|:| |deg| (-712)) (|:| -1317 *5)))) (-5 *1 (-750 *4 *5 *3 *6)) (-4 *3 (-601 *5)) (-4 *6 (-601 (-385 *5))))) (-1561 (*1 *2 *3) (-12 (-4 *2 (-1147 *4)) (-5 *1 (-750 *4 *2 *3 *5)) (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *3 (-601 *2)) (-4 *5 (-601 (-385 *2))))))
+(-10 -7 (-15 -1561 (|#2| |#3|)) (-15 -2246 ((-591 (-2 (|:| |deg| (-712)) (|:| -1317 |#2|))) |#3|)) (-15 -2906 ((-591 (-2 (|:| -2058 |#1|) (|:| -1317 |#3|))) |#3| (-1 (-591 |#1|) |#2|))) (-15 -3914 ((-591 (-2 (|:| |poly| |#2|) (|:| -1317 |#3|))) |#3| (-1 (-591 |#1|) |#2|))) (-15 -1492 ((-591 (-2 (|:| |frac| (-385 |#2|)) (|:| -1317 |#3|))) |#3| (-1 (-591 |#2|) |#2| (-1085 |#2|)) (-1 (-396 |#2|) |#2|))) (-15 -2046 (|#3| |#3| |#2|)) (-15 -2046 (|#3| |#3| (-385 |#2|))))
+((-2722 (((-2 (|:| -4003 (-591 (-385 |#2|))) (|:| -4057 (-631 |#1|))) (-599 |#2| (-385 |#2|)) (-591 (-385 |#2|))) 121) (((-2 (|:| |particular| (-3 (-385 |#2|) "failed")) (|:| -4003 (-591 (-385 |#2|)))) (-599 |#2| (-385 |#2|)) (-385 |#2|)) 120) (((-2 (|:| -4003 (-591 (-385 |#2|))) (|:| -4057 (-631 |#1|))) (-598 (-385 |#2|)) (-591 (-385 |#2|))) 115) (((-2 (|:| |particular| (-3 (-385 |#2|) "failed")) (|:| -4003 (-591 (-385 |#2|)))) (-598 (-385 |#2|)) (-385 |#2|)) 113)) (-1304 ((|#2| (-599 |#2| (-385 |#2|))) 80) ((|#2| (-598 (-385 |#2|))) 83)))
+(((-751 |#1| |#2|) (-10 -7 (-15 -2722 ((-2 (|:| |particular| (-3 (-385 |#2|) "failed")) (|:| -4003 (-591 (-385 |#2|)))) (-598 (-385 |#2|)) (-385 |#2|))) (-15 -2722 ((-2 (|:| -4003 (-591 (-385 |#2|))) (|:| -4057 (-631 |#1|))) (-598 (-385 |#2|)) (-591 (-385 |#2|)))) (-15 -2722 ((-2 (|:| |particular| (-3 (-385 |#2|) "failed")) (|:| -4003 (-591 (-385 |#2|)))) (-599 |#2| (-385 |#2|)) (-385 |#2|))) (-15 -2722 ((-2 (|:| -4003 (-591 (-385 |#2|))) (|:| -4057 (-631 |#1|))) (-599 |#2| (-385 |#2|)) (-591 (-385 |#2|)))) (-15 -1304 (|#2| (-598 (-385 |#2|)))) (-15 -1304 (|#2| (-599 |#2| (-385 |#2|))))) (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))) (-1147 |#1|)) (T -751))
+((-1304 (*1 *2 *3) (-12 (-5 *3 (-599 *2 (-385 *2))) (-4 *2 (-1147 *4)) (-5 *1 (-751 *4 *2)) (-4 *4 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))))) (-1304 (*1 *2 *3) (-12 (-5 *3 (-598 (-385 *2))) (-4 *2 (-1147 *4)) (-5 *1 (-751 *4 *2)) (-4 *4 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))))) (-2722 (*1 *2 *3 *4) (-12 (-5 *3 (-599 *6 (-385 *6))) (-4 *6 (-1147 *5)) (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-5 *2 (-2 (|:| -4003 (-591 (-385 *6))) (|:| -4057 (-631 *5)))) (-5 *1 (-751 *5 *6)) (-5 *4 (-591 (-385 *6))))) (-2722 (*1 *2 *3 *4) (-12 (-5 *3 (-599 *6 (-385 *6))) (-5 *4 (-385 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4)))) (-5 *1 (-751 *5 *6)))) (-2722 (*1 *2 *3 *4) (-12 (-5 *3 (-598 (-385 *6))) (-4 *6 (-1147 *5)) (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-5 *2 (-2 (|:| -4003 (-591 (-385 *6))) (|:| -4057 (-631 *5)))) (-5 *1 (-751 *5 *6)) (-5 *4 (-591 (-385 *6))))) (-2722 (*1 *2 *3 *4) (-12 (-5 *3 (-598 (-385 *6))) (-5 *4 (-385 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4)))) (-5 *1 (-751 *5 *6)))))
+(-10 -7 (-15 -2722 ((-2 (|:| |particular| (-3 (-385 |#2|) "failed")) (|:| -4003 (-591 (-385 |#2|)))) (-598 (-385 |#2|)) (-385 |#2|))) (-15 -2722 ((-2 (|:| -4003 (-591 (-385 |#2|))) (|:| -4057 (-631 |#1|))) (-598 (-385 |#2|)) (-591 (-385 |#2|)))) (-15 -2722 ((-2 (|:| |particular| (-3 (-385 |#2|) "failed")) (|:| -4003 (-591 (-385 |#2|)))) (-599 |#2| (-385 |#2|)) (-385 |#2|))) (-15 -2722 ((-2 (|:| -4003 (-591 (-385 |#2|))) (|:| -4057 (-631 |#1|))) (-599 |#2| (-385 |#2|)) (-591 (-385 |#2|)))) (-15 -1304 (|#2| (-598 (-385 |#2|)))) (-15 -1304 (|#2| (-599 |#2| (-385 |#2|)))))
+((-1730 (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#1|))) |#5| |#4|) 48)))
+(((-752 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1730 ((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#1|))) |#5| |#4|))) (-341) (-601 |#1|) (-1147 |#1|) (-666 |#1| |#3|) (-601 |#4|)) (T -752))
+((-1730 (*1 *2 *3 *4) (-12 (-4 *5 (-341)) (-4 *7 (-1147 *5)) (-4 *4 (-666 *5 *7)) (-5 *2 (-2 (|:| -4057 (-631 *6)) (|:| |vec| (-1171 *5)))) (-5 *1 (-752 *5 *6 *7 *4 *3)) (-4 *6 (-601 *5)) (-4 *3 (-601 *4)))))
+(-10 -7 (-15 -1730 ((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#1|))) |#5| |#4|)))
+((-1492 (((-591 (-2 (|:| |frac| (-385 |#2|)) (|:| -1317 (-599 |#2| (-385 |#2|))))) (-599 |#2| (-385 |#2|)) (-1 (-396 |#2|) |#2|)) 47)) (-3064 (((-591 (-385 |#2|)) (-599 |#2| (-385 |#2|)) (-1 (-396 |#2|) |#2|)) 137 (|has| |#1| (-27))) (((-591 (-385 |#2|)) (-599 |#2| (-385 |#2|))) 138 (|has| |#1| (-27))) (((-591 (-385 |#2|)) (-598 (-385 |#2|)) (-1 (-396 |#2|) |#2|)) 139 (|has| |#1| (-27))) (((-591 (-385 |#2|)) (-598 (-385 |#2|))) 140 (|has| |#1| (-27))) (((-591 (-385 |#2|)) (-599 |#2| (-385 |#2|)) (-1 (-591 |#1|) |#2|) (-1 (-396 |#2|) |#2|)) 38) (((-591 (-385 |#2|)) (-599 |#2| (-385 |#2|)) (-1 (-591 |#1|) |#2|)) 39) (((-591 (-385 |#2|)) (-598 (-385 |#2|)) (-1 (-591 |#1|) |#2|) (-1 (-396 |#2|) |#2|)) 36) (((-591 (-385 |#2|)) (-598 (-385 |#2|)) (-1 (-591 |#1|) |#2|)) 37)) (-3914 (((-591 (-2 (|:| |poly| |#2|) (|:| -1317 (-599 |#2| (-385 |#2|))))) (-599 |#2| (-385 |#2|)) (-1 (-591 |#1|) |#2|)) 83)))
+(((-753 |#1| |#2|) (-10 -7 (-15 -3064 ((-591 (-385 |#2|)) (-598 (-385 |#2|)) (-1 (-591 |#1|) |#2|))) (-15 -3064 ((-591 (-385 |#2|)) (-598 (-385 |#2|)) (-1 (-591 |#1|) |#2|) (-1 (-396 |#2|) |#2|))) (-15 -3064 ((-591 (-385 |#2|)) (-599 |#2| (-385 |#2|)) (-1 (-591 |#1|) |#2|))) (-15 -3064 ((-591 (-385 |#2|)) (-599 |#2| (-385 |#2|)) (-1 (-591 |#1|) |#2|) (-1 (-396 |#2|) |#2|))) (-15 -1492 ((-591 (-2 (|:| |frac| (-385 |#2|)) (|:| -1317 (-599 |#2| (-385 |#2|))))) (-599 |#2| (-385 |#2|)) (-1 (-396 |#2|) |#2|))) (-15 -3914 ((-591 (-2 (|:| |poly| |#2|) (|:| -1317 (-599 |#2| (-385 |#2|))))) (-599 |#2| (-385 |#2|)) (-1 (-591 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3064 ((-591 (-385 |#2|)) (-598 (-385 |#2|)))) (-15 -3064 ((-591 (-385 |#2|)) (-598 (-385 |#2|)) (-1 (-396 |#2|) |#2|))) (-15 -3064 ((-591 (-385 |#2|)) (-599 |#2| (-385 |#2|)))) (-15 -3064 ((-591 (-385 |#2|)) (-599 |#2| (-385 |#2|)) (-1 (-396 |#2|) |#2|)))) |%noBranch|)) (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))) (-1147 |#1|)) (T -753))
+((-3064 (*1 *2 *3 *4) (-12 (-5 *3 (-599 *6 (-385 *6))) (-5 *4 (-1 (-396 *6) *6)) (-4 *6 (-1147 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-5 *2 (-591 (-385 *6))) (-5 *1 (-753 *5 *6)))) (-3064 (*1 *2 *3) (-12 (-5 *3 (-599 *5 (-385 *5))) (-4 *5 (-1147 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-5 *2 (-591 (-385 *5))) (-5 *1 (-753 *4 *5)))) (-3064 (*1 *2 *3 *4) (-12 (-5 *3 (-598 (-385 *6))) (-5 *4 (-1 (-396 *6) *6)) (-4 *6 (-1147 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-5 *2 (-591 (-385 *6))) (-5 *1 (-753 *5 *6)))) (-3064 (*1 *2 *3) (-12 (-5 *3 (-598 (-385 *5))) (-4 *5 (-1147 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-5 *2 (-591 (-385 *5))) (-5 *1 (-753 *4 *5)))) (-3914 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-591 *5) *6)) (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-4 *6 (-1147 *5)) (-5 *2 (-591 (-2 (|:| |poly| *6) (|:| -1317 (-599 *6 (-385 *6)))))) (-5 *1 (-753 *5 *6)) (-5 *3 (-599 *6 (-385 *6))))) (-1492 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-396 *6) *6)) (-4 *6 (-1147 *5)) (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-5 *2 (-591 (-2 (|:| |frac| (-385 *6)) (|:| -1317 (-599 *6 (-385 *6)))))) (-5 *1 (-753 *5 *6)) (-5 *3 (-599 *6 (-385 *6))))) (-3064 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-599 *7 (-385 *7))) (-5 *4 (-1 (-591 *6) *7)) (-5 *5 (-1 (-396 *7) *7)) (-4 *6 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-4 *7 (-1147 *6)) (-5 *2 (-591 (-385 *7))) (-5 *1 (-753 *6 *7)))) (-3064 (*1 *2 *3 *4) (-12 (-5 *3 (-599 *6 (-385 *6))) (-5 *4 (-1 (-591 *5) *6)) (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-4 *6 (-1147 *5)) (-5 *2 (-591 (-385 *6))) (-5 *1 (-753 *5 *6)))) (-3064 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-598 (-385 *7))) (-5 *4 (-1 (-591 *6) *7)) (-5 *5 (-1 (-396 *7) *7)) (-4 *6 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-4 *7 (-1147 *6)) (-5 *2 (-591 (-385 *7))) (-5 *1 (-753 *6 *7)))) (-3064 (*1 *2 *3 *4) (-12 (-5 *3 (-598 (-385 *6))) (-5 *4 (-1 (-591 *5) *6)) (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))) (-4 *6 (-1147 *5)) (-5 *2 (-591 (-385 *6))) (-5 *1 (-753 *5 *6)))))
+(-10 -7 (-15 -3064 ((-591 (-385 |#2|)) (-598 (-385 |#2|)) (-1 (-591 |#1|) |#2|))) (-15 -3064 ((-591 (-385 |#2|)) (-598 (-385 |#2|)) (-1 (-591 |#1|) |#2|) (-1 (-396 |#2|) |#2|))) (-15 -3064 ((-591 (-385 |#2|)) (-599 |#2| (-385 |#2|)) (-1 (-591 |#1|) |#2|))) (-15 -3064 ((-591 (-385 |#2|)) (-599 |#2| (-385 |#2|)) (-1 (-591 |#1|) |#2|) (-1 (-396 |#2|) |#2|))) (-15 -1492 ((-591 (-2 (|:| |frac| (-385 |#2|)) (|:| -1317 (-599 |#2| (-385 |#2|))))) (-599 |#2| (-385 |#2|)) (-1 (-396 |#2|) |#2|))) (-15 -3914 ((-591 (-2 (|:| |poly| |#2|) (|:| -1317 (-599 |#2| (-385 |#2|))))) (-599 |#2| (-385 |#2|)) (-1 (-591 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3064 ((-591 (-385 |#2|)) (-598 (-385 |#2|)))) (-15 -3064 ((-591 (-385 |#2|)) (-598 (-385 |#2|)) (-1 (-396 |#2|) |#2|))) (-15 -3064 ((-591 (-385 |#2|)) (-599 |#2| (-385 |#2|)))) (-15 -3064 ((-591 (-385 |#2|)) (-599 |#2| (-385 |#2|)) (-1 (-396 |#2|) |#2|)))) |%noBranch|))
+((-4048 (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#1|))) (-631 |#2|) (-1171 |#1|)) 85) (((-2 (|:| A (-631 |#1|)) (|:| |eqs| (-591 (-2 (|:| C (-631 |#1|)) (|:| |g| (-1171 |#1|)) (|:| -1317 |#2|) (|:| |rh| |#1|))))) (-631 |#1|) (-1171 |#1|)) 15)) (-1696 (((-2 (|:| |particular| (-3 (-1171 |#1|) "failed")) (|:| -4003 (-591 (-1171 |#1|)))) (-631 |#2|) (-1171 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -4003 (-591 |#1|))) |#2| |#1|)) 92)) (-4039 (((-3 (-2 (|:| |particular| (-1171 |#1|)) (|:| -4003 (-631 |#1|))) "failed") (-631 |#1|) (-1171 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -4003 (-591 |#1|))) "failed") |#2| |#1|)) 43)))
+(((-754 |#1| |#2|) (-10 -7 (-15 -4048 ((-2 (|:| A (-631 |#1|)) (|:| |eqs| (-591 (-2 (|:| C (-631 |#1|)) (|:| |g| (-1171 |#1|)) (|:| -1317 |#2|) (|:| |rh| |#1|))))) (-631 |#1|) (-1171 |#1|))) (-15 -4048 ((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#1|))) (-631 |#2|) (-1171 |#1|))) (-15 -4039 ((-3 (-2 (|:| |particular| (-1171 |#1|)) (|:| -4003 (-631 |#1|))) "failed") (-631 |#1|) (-1171 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -4003 (-591 |#1|))) "failed") |#2| |#1|))) (-15 -1696 ((-2 (|:| |particular| (-3 (-1171 |#1|) "failed")) (|:| -4003 (-591 (-1171 |#1|)))) (-631 |#2|) (-1171 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -4003 (-591 |#1|))) |#2| |#1|)))) (-341) (-601 |#1|)) (T -754))
+((-1696 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-631 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -4003 (-591 *6))) *7 *6)) (-4 *6 (-341)) (-4 *7 (-601 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1171 *6) "failed")) (|:| -4003 (-591 (-1171 *6))))) (-5 *1 (-754 *6 *7)) (-5 *4 (-1171 *6)))) (-4039 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -4003 (-591 *6))) "failed") *7 *6)) (-4 *6 (-341)) (-4 *7 (-601 *6)) (-5 *2 (-2 (|:| |particular| (-1171 *6)) (|:| -4003 (-631 *6)))) (-5 *1 (-754 *6 *7)) (-5 *3 (-631 *6)) (-5 *4 (-1171 *6)))) (-4048 (*1 *2 *3 *4) (-12 (-4 *5 (-341)) (-4 *6 (-601 *5)) (-5 *2 (-2 (|:| -4057 (-631 *6)) (|:| |vec| (-1171 *5)))) (-5 *1 (-754 *5 *6)) (-5 *3 (-631 *6)) (-5 *4 (-1171 *5)))) (-4048 (*1 *2 *3 *4) (-12 (-4 *5 (-341)) (-5 *2 (-2 (|:| A (-631 *5)) (|:| |eqs| (-591 (-2 (|:| C (-631 *5)) (|:| |g| (-1171 *5)) (|:| -1317 *6) (|:| |rh| *5)))))) (-5 *1 (-754 *5 *6)) (-5 *3 (-631 *5)) (-5 *4 (-1171 *5)) (-4 *6 (-601 *5)))))
+(-10 -7 (-15 -4048 ((-2 (|:| A (-631 |#1|)) (|:| |eqs| (-591 (-2 (|:| C (-631 |#1|)) (|:| |g| (-1171 |#1|)) (|:| -1317 |#2|) (|:| |rh| |#1|))))) (-631 |#1|) (-1171 |#1|))) (-15 -4048 ((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#1|))) (-631 |#2|) (-1171 |#1|))) (-15 -4039 ((-3 (-2 (|:| |particular| (-1171 |#1|)) (|:| -4003 (-631 |#1|))) "failed") (-631 |#1|) (-1171 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -4003 (-591 |#1|))) "failed") |#2| |#1|))) (-15 -1696 ((-2 (|:| |particular| (-3 (-1171 |#1|) "failed")) (|:| -4003 (-591 (-1171 |#1|)))) (-631 |#2|) (-1171 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -4003 (-591 |#1|))) |#2| |#1|))))
+((-3864 (((-631 |#1|) (-591 |#1|) (-712)) 13) (((-631 |#1|) (-591 |#1|)) 14)) (-3495 (((-3 (-1171 |#1|) "failed") |#2| |#1| (-591 |#1|)) 34)) (-2044 (((-3 |#1| "failed") |#2| |#1| (-591 |#1|) (-1 |#1| |#1|)) 42)))
+(((-755 |#1| |#2|) (-10 -7 (-15 -3864 ((-631 |#1|) (-591 |#1|))) (-15 -3864 ((-631 |#1|) (-591 |#1|) (-712))) (-15 -3495 ((-3 (-1171 |#1|) "failed") |#2| |#1| (-591 |#1|))) (-15 -2044 ((-3 |#1| "failed") |#2| |#1| (-591 |#1|) (-1 |#1| |#1|)))) (-341) (-601 |#1|)) (T -755))
+((-2044 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *4 (-591 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-341)) (-5 *1 (-755 *2 *3)) (-4 *3 (-601 *2)))) (-3495 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-591 *4)) (-4 *4 (-341)) (-5 *2 (-1171 *4)) (-5 *1 (-755 *4 *3)) (-4 *3 (-601 *4)))) (-3864 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *5)) (-5 *4 (-712)) (-4 *5 (-341)) (-5 *2 (-631 *5)) (-5 *1 (-755 *5 *6)) (-4 *6 (-601 *5)))) (-3864 (*1 *2 *3) (-12 (-5 *3 (-591 *4)) (-4 *4 (-341)) (-5 *2 (-631 *4)) (-5 *1 (-755 *4 *5)) (-4 *5 (-601 *4)))))
+(-10 -7 (-15 -3864 ((-631 |#1|) (-591 |#1|))) (-15 -3864 ((-631 |#1|) (-591 |#1|) (-712))) (-15 -3495 ((-3 (-1171 |#1|) "failed") |#2| |#1| (-591 |#1|))) (-15 -2044 ((-3 |#1| "failed") |#2| |#1| (-591 |#1|) (-1 |#1| |#1|))))
+((-3008 (((-108) $ $) NIL (|has| |#2| (-1018)))) (-1800 (((-108) $) NIL (|has| |#2| (-126)))) (-2092 (($ (-854)) NIL (|has| |#2| (-975)))) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-2593 (($ $ $) NIL (|has| |#2| (-734)))) (-2157 (((-3 $ "failed") $ $) NIL (|has| |#2| (-126)))) (-3891 (((-108) $ (-712)) NIL)) (-3032 (((-712)) NIL (|has| |#2| (-346)))) (-3329 (((-525) $) NIL (|has| |#2| (-786)))) (-3186 ((|#2| $ (-525) |#2|) NIL (|has| $ (-6 -4251)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL (-12 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018)))) (((-3 (-385 (-525)) "failed") $) NIL (-12 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1018)))) (-3528 (((-525) $) NIL (-12 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018)))) (((-385 (-525)) $) NIL (-12 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018)))) ((|#2| $) NIL (|has| |#2| (-1018)))) (-3305 (((-631 (-525)) (-631 $)) NIL (-12 (|has| |#2| (-587 (-525))) (|has| |#2| (-975)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (-12 (|has| |#2| (-587 (-525))) (|has| |#2| (-975)))) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) NIL (|has| |#2| (-975))) (((-631 |#2|) (-631 $)) NIL (|has| |#2| (-975)))) (-4163 (((-3 $ "failed") $) NIL (|has| |#2| (-975)))) (-3377 (($) NIL (|has| |#2| (-346)))) (-3255 ((|#2| $ (-525) |#2|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#2| $ (-525)) NIL)) (-2134 (((-108) $) NIL (|has| |#2| (-786)))) (-3454 (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2824 (((-108) $) NIL (|has| |#2| (-975)))) (-2732 (((-108) $) NIL (|has| |#2| (-786)))) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) NIL (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-2552 (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-3249 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#2| |#2|) $) NIL)) (-3016 (((-854) $) NIL (|has| |#2| (-346)))) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#2| (-1018)))) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2226 (($ (-854)) NIL (|has| |#2| (-346)))) (-2047 (((-1036) $) NIL (|has| |#2| (-1018)))) (-3066 ((|#2| $) NIL (|has| (-525) (-788)))) (-1941 (($ $ |#2|) NIL (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#2|))) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3339 (((-591 |#2|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#2| $ (-525) |#2|) NIL) ((|#2| $ (-525)) NIL)) (-2109 ((|#2| $ $) NIL (|has| |#2| (-975)))) (-1395 (($ (-1171 |#2|)) NIL)) (-4224 (((-128)) NIL (|has| |#2| (-341)))) (-3266 (($ $) NIL (-12 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-712)) NIL (-12 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-1089)) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1 |#2| |#2|) (-712)) NIL (|has| |#2| (-975))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-975)))) (-2064 (((-712) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250))) (((-712) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3199 (($ $) NIL)) (-3022 (((-1171 |#2|) $) NIL) (($ (-525)) NIL (-3321 (-12 (|has| |#2| (-966 (-525))) (|has| |#2| (-1018))) (|has| |#2| (-975)))) (($ (-385 (-525))) NIL (-12 (|has| |#2| (-966 (-385 (-525)))) (|has| |#2| (-1018)))) (($ |#2|) NIL (|has| |#2| (-1018))) (((-796) $) NIL (|has| |#2| (-565 (-796))))) (-2128 (((-712)) NIL (|has| |#2| (-975)))) (-4158 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-1539 (($ $) NIL (|has| |#2| (-786)))) (-3710 (($ $ (-712)) NIL (|has| |#2| (-975))) (($ $ (-854)) NIL (|has| |#2| (-975)))) (-4191 (($) NIL (|has| |#2| (-126)) CONST)) (-4197 (($) NIL (|has| |#2| (-975)) CONST)) (-4196 (($ $) NIL (-12 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-712)) NIL (-12 (|has| |#2| (-213)) (|has| |#2| (-975)))) (($ $ (-1089)) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#2| (-833 (-1089))) (|has| |#2| (-975)))) (($ $ (-1 |#2| |#2|) (-712)) NIL (|has| |#2| (-975))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-975)))) (-4135 (((-108) $ $) NIL (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-4119 (((-108) $ $) NIL (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-4096 (((-108) $ $) NIL (|has| |#2| (-1018)))) (-4126 (((-108) $ $) NIL (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-4112 (((-108) $ $) 11 (-3321 (|has| |#2| (-734)) (|has| |#2| (-786))))) (-4173 (($ $ |#2|) NIL (|has| |#2| (-341)))) (-4164 (($ $ $) NIL (|has| |#2| (-975))) (($ $) NIL (|has| |#2| (-975)))) (-4156 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-712)) NIL (|has| |#2| (-975))) (($ $ (-854)) NIL (|has| |#2| (-975)))) (* (($ $ $) NIL (|has| |#2| (-975))) (($ (-525) $) NIL (|has| |#2| (-975))) (($ $ |#2|) NIL (|has| |#2| (-668))) (($ |#2| $) NIL (|has| |#2| (-668))) (($ (-712) $) NIL (|has| |#2| (-126))) (($ (-854) $) NIL (|has| |#2| (-25)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-756 |#1| |#2| |#3|) (-218 |#1| |#2|) (-712) (-734) (-1 (-108) (-1171 |#2|) (-1171 |#2|))) (T -756))
+NIL
+(-218 |#1| |#2|)
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1773 (((-591 (-712)) $) NIL) (((-591 (-712)) $ (-1089)) NIL)) (-3197 (((-712) $) NIL) (((-712) $ (-1089)) NIL)) (-1507 (((-591 (-759 (-1089))) $) NIL)) (-1312 (((-1085 $) $ (-759 (-1089))) NIL) (((-1085 |#1|) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-4090 (((-712) $) NIL) (((-712) $ (-591 (-759 (-1089)))) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1291 (($ $) NIL (|has| |#1| (-429)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1257 (($ $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-759 (-1089)) "failed") $) NIL) (((-3 (-1089) "failed") $) NIL) (((-3 (-1041 |#1| (-1089)) "failed") $) NIL)) (-3528 ((|#1| $) NIL) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-759 (-1089)) $) NIL) (((-1089) $) NIL) (((-1041 |#1| (-1089)) $) NIL)) (-2805 (($ $ $ (-759 (-1089))) NIL (|has| |#1| (-160)))) (-1710 (($ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) NIL) (((-631 |#1|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3208 (($ $) NIL (|has| |#1| (-429))) (($ $ (-759 (-1089))) NIL (|has| |#1| (-429)))) (-1695 (((-591 $) $) NIL)) (-2744 (((-108) $) NIL (|has| |#1| (-842)))) (-2056 (($ $ |#1| (-497 (-759 (-1089))) $) NIL)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| (-759 (-1089)) (-819 (-357))) (|has| |#1| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| (-759 (-1089)) (-819 (-525))) (|has| |#1| (-819 (-525)))))) (-3873 (((-712) $ (-1089)) NIL) (((-712) $) NIL)) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) NIL)) (-1493 (($ (-1085 |#1|) (-759 (-1089))) NIL) (($ (-1085 $) (-759 (-1089))) NIL)) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-497 (-759 (-1089)))) NIL) (($ $ (-759 (-1089)) (-712)) NIL) (($ $ (-591 (-759 (-1089))) (-591 (-712))) NIL)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ (-759 (-1089))) NIL)) (-2624 (((-497 (-759 (-1089))) $) NIL) (((-712) $ (-759 (-1089))) NIL) (((-591 (-712)) $ (-591 (-759 (-1089)))) NIL)) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-4015 (($ (-1 (-497 (-759 (-1089))) (-497 (-759 (-1089)))) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-2492 (((-1 $ (-712)) (-1089)) NIL) (((-1 $ (-712)) $) NIL (|has| |#1| (-213)))) (-2254 (((-3 (-759 (-1089)) "failed") $) NIL)) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-1968 (((-759 (-1089)) $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2339 (((-1072) $) NIL)) (-3326 (((-108) $) NIL)) (-3376 (((-3 (-591 $) "failed") $) NIL)) (-2010 (((-3 (-591 $) "failed") $) NIL)) (-2292 (((-3 (-2 (|:| |var| (-759 (-1089))) (|:| -2008 (-712))) "failed") $) NIL)) (-2794 (($ $) NIL)) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) NIL)) (-1646 ((|#1| $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-429)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1348 (((-396 $) $) NIL (|has| |#1| (-842)))) (-2089 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-517)))) (-4132 (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-759 (-1089)) |#1|) NIL) (($ $ (-591 (-759 (-1089))) (-591 |#1|)) NIL) (($ $ (-759 (-1089)) $) NIL) (($ $ (-591 (-759 (-1089))) (-591 $)) NIL) (($ $ (-1089) $) NIL (|has| |#1| (-213))) (($ $ (-591 (-1089)) (-591 $)) NIL (|has| |#1| (-213))) (($ $ (-1089) |#1|) NIL (|has| |#1| (-213))) (($ $ (-591 (-1089)) (-591 |#1|)) NIL (|has| |#1| (-213)))) (-2976 (($ $ (-759 (-1089))) NIL (|has| |#1| (-160)))) (-3266 (($ $ (-759 (-1089))) NIL) (($ $ (-591 (-759 (-1089)))) NIL) (($ $ (-759 (-1089)) (-712)) NIL) (($ $ (-591 (-759 (-1089))) (-591 (-712))) NIL) (($ $) NIL (|has| |#1| (-213))) (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3945 (((-591 (-1089)) $) NIL)) (-1316 (((-497 (-759 (-1089))) $) NIL) (((-712) $ (-759 (-1089))) NIL) (((-591 (-712)) $ (-591 (-759 (-1089)))) NIL) (((-712) $ (-1089)) NIL)) (-1408 (((-825 (-357)) $) NIL (-12 (|has| (-759 (-1089)) (-566 (-825 (-357)))) (|has| |#1| (-566 (-825 (-357)))))) (((-825 (-525)) $) NIL (-12 (|has| (-759 (-1089)) (-566 (-825 (-525)))) (|has| |#1| (-566 (-825 (-525)))))) (((-501) $) NIL (-12 (|has| (-759 (-1089)) (-566 (-501))) (|has| |#1| (-566 (-501)))))) (-2668 ((|#1| $) NIL (|has| |#1| (-429))) (($ $ (-759 (-1089))) NIL (|has| |#1| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#1| (-842))))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#1|) NIL) (($ (-759 (-1089))) NIL) (($ (-1089)) NIL) (($ (-1041 |#1| (-1089))) NIL) (($ (-385 (-525))) NIL (-3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-966 (-385 (-525)))))) (($ $) NIL (|has| |#1| (-517)))) (-3654 (((-591 |#1|) $) NIL)) (-2560 ((|#1| $ (-497 (-759 (-1089)))) NIL) (($ $ (-759 (-1089)) (-712)) NIL) (($ $ (-591 (-759 (-1089))) (-591 (-712))) NIL)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#1| (-842))) (|has| |#1| (-136))))) (-2128 (((-712)) NIL)) (-1698 (($ $ $ (-712)) NIL (|has| |#1| (-160)))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ (-759 (-1089))) NIL) (($ $ (-591 (-759 (-1089)))) NIL) (($ $ (-759 (-1089)) (-712)) NIL) (($ $ (-591 (-759 (-1089))) (-591 (-712))) NIL) (($ $) NIL (|has| |#1| (-213))) (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-757 |#1|) (-13 (-232 |#1| (-1089) (-759 (-1089)) (-497 (-759 (-1089)))) (-966 (-1041 |#1| (-1089)))) (-975)) (T -757))
+NIL
+(-13 (-232 |#1| (-1089) (-759 (-1089)) (-497 (-759 (-1089)))) (-966 (-1041 |#1| (-1089))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#2| (-341)))) (-3706 (($ $) NIL (|has| |#2| (-341)))) (-1715 (((-108) $) NIL (|has| |#2| (-341)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL (|has| |#2| (-341)))) (-2827 (((-396 $) $) NIL (|has| |#2| (-341)))) (-1947 (((-108) $ $) NIL (|has| |#2| (-341)))) (-3798 (($) NIL T CONST)) (-2129 (($ $ $) NIL (|has| |#2| (-341)))) (-4163 (((-3 $ "failed") $) NIL)) (-2110 (($ $ $) NIL (|has| |#2| (-341)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#2| (-341)))) (-2744 (((-108) $) NIL (|has| |#2| (-341)))) (-2824 (((-108) $) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#2| (-341)))) (-1356 (($ (-591 $)) NIL (|has| |#2| (-341))) (($ $ $) NIL (|has| |#2| (-341)))) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 20 (|has| |#2| (-341)))) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#2| (-341)))) (-1399 (($ (-591 $)) NIL (|has| |#2| (-341))) (($ $ $) NIL (|has| |#2| (-341)))) (-1348 (((-396 $) $) NIL (|has| |#2| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#2| (-341)))) (-2089 (((-3 $ "failed") $ $) NIL (|has| |#2| (-341)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#2| (-341)))) (-1712 (((-712) $) NIL (|has| |#2| (-341)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#2| (-341)))) (-3266 (($ $ (-712)) NIL) (($ $) 13)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-385 (-525))) NIL (|has| |#2| (-341))) (($ $) NIL (|has| |#2| (-341)))) (-2128 (((-712)) NIL)) (-2495 (((-108) $ $) NIL (|has| |#2| (-341)))) (-3710 (($ $ (-712)) NIL) (($ $ (-854)) NIL) (($ $ (-525)) NIL (|has| |#2| (-341)))) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ (-712)) NIL) (($ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ $) 15 (|has| |#2| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-712)) NIL) (($ $ (-854)) NIL) (($ $ (-525)) 18 (|has| |#2| (-341)))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ $) NIL) (($ (-385 (-525)) $) NIL (|has| |#2| (-341))) (($ $ (-385 (-525))) NIL (|has| |#2| (-341)))))
+(((-758 |#1| |#2| |#3|) (-13 (-107 $ $) (-213) (-10 -8 (IF (|has| |#2| (-341)) (-6 (-341)) |%noBranch|) (-15 -3022 ($ |#2|)) (-15 -3022 (|#2| $)))) (-1018) (-833 |#1|) |#1|) (T -758))
+((-3022 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-14 *4 *3) (-5 *1 (-758 *3 *2 *4)) (-4 *2 (-833 *3)))) (-3022 (*1 *2 *1) (-12 (-4 *2 (-833 *3)) (-5 *1 (-758 *3 *2 *4)) (-4 *3 (-1018)) (-14 *4 *3))))
+(-13 (-107 $ $) (-213) (-10 -8 (IF (|has| |#2| (-341)) (-6 (-341)) |%noBranch|) (-15 -3022 ($ |#2|)) (-15 -3022 (|#2| $))))
+((-3008 (((-108) $ $) NIL)) (-3197 (((-712) $) NIL)) (-2037 ((|#1| $) 10)) (-1251 (((-3 |#1| "failed") $) NIL)) (-3528 ((|#1| $) NIL)) (-3873 (((-712) $) 11)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2492 (($ |#1| (-712)) 9)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3266 (($ $) NIL) (($ $ (-712)) NIL)) (-3022 (((-796) $) NIL) (($ |#1|) NIL)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) NIL)))
+(((-759 |#1|) (-245 |#1|) (-788)) (T -759))
+NIL
+(-245 |#1|)
+((-3008 (((-108) $ $) NIL)) (-3531 (((-591 |#1|) $) 29)) (-3032 (((-712) $) NIL)) (-3798 (($) NIL T CONST)) (-1584 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 20)) (-1251 (((-3 |#1| "failed") $) NIL)) (-3528 ((|#1| $) NIL)) (-3078 (($ $) 31)) (-4163 (((-3 $ "failed") $) NIL)) (-2504 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-2824 (((-108) $) NIL)) (-2423 ((|#1| $ (-525)) NIL)) (-1566 (((-712) $ (-525)) NIL)) (-2457 (($ $) 36)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2811 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 17)) (-2843 (((-108) $ $) 34)) (-1657 (((-712) $) 25)) (-2339 (((-1072) $) NIL)) (-1555 (($ $ $) NIL)) (-4139 (($ $ $) NIL)) (-2047 (((-1036) $) NIL)) (-3066 ((|#1| $) 30)) (-3781 (((-591 (-2 (|:| |gen| |#1|) (|:| -1409 (-712)))) $) NIL)) (-2099 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-3022 (((-796) $) NIL) (($ |#1|) NIL)) (-3710 (($ $ (-712)) NIL) (($ $ (-854)) NIL)) (-4197 (($) 15 T CONST)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 35)) (** (($ $ (-712)) NIL) (($ $ (-854)) NIL) (($ |#1| (-712)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-760 |#1|) (-13 (-784) (-966 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-712))) (-15 -3066 (|#1| $)) (-15 -3078 ($ $)) (-15 -2457 ($ $)) (-15 -2843 ((-108) $ $)) (-15 -4139 ($ $ $)) (-15 -1555 ($ $ $)) (-15 -2811 ((-3 $ "failed") $ $)) (-15 -1584 ((-3 $ "failed") $ $)) (-15 -2811 ((-3 $ "failed") $ |#1|)) (-15 -1584 ((-3 $ "failed") $ |#1|)) (-15 -2099 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2504 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3032 ((-712) $)) (-15 -1566 ((-712) $ (-525))) (-15 -2423 (|#1| $ (-525))) (-15 -3781 ((-591 (-2 (|:| |gen| |#1|) (|:| -1409 (-712)))) $)) (-15 -1657 ((-712) $)) (-15 -3531 ((-591 |#1|) $)))) (-788)) (T -760))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-760 *2)) (-4 *2 (-788)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-760 *2)) (-4 *2 (-788)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-712)) (-5 *1 (-760 *2)) (-4 *2 (-788)))) (-3066 (*1 *2 *1) (-12 (-5 *1 (-760 *2)) (-4 *2 (-788)))) (-3078 (*1 *1 *1) (-12 (-5 *1 (-760 *2)) (-4 *2 (-788)))) (-2457 (*1 *1 *1) (-12 (-5 *1 (-760 *2)) (-4 *2 (-788)))) (-2843 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-760 *3)) (-4 *3 (-788)))) (-4139 (*1 *1 *1 *1) (-12 (-5 *1 (-760 *2)) (-4 *2 (-788)))) (-1555 (*1 *1 *1 *1) (-12 (-5 *1 (-760 *2)) (-4 *2 (-788)))) (-2811 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-760 *2)) (-4 *2 (-788)))) (-1584 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-760 *2)) (-4 *2 (-788)))) (-2811 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-760 *2)) (-4 *2 (-788)))) (-1584 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-760 *2)) (-4 *2 (-788)))) (-2099 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-760 *3)) (|:| |rm| (-760 *3)))) (-5 *1 (-760 *3)) (-4 *3 (-788)))) (-2504 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-760 *3)) (|:| |mm| (-760 *3)) (|:| |rm| (-760 *3)))) (-5 *1 (-760 *3)) (-4 *3 (-788)))) (-3032 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-760 *3)) (-4 *3 (-788)))) (-1566 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *2 (-712)) (-5 *1 (-760 *4)) (-4 *4 (-788)))) (-2423 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *1 (-760 *2)) (-4 *2 (-788)))) (-3781 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| |gen| *3) (|:| -1409 (-712))))) (-5 *1 (-760 *3)) (-4 *3 (-788)))) (-1657 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-760 *3)) (-4 *3 (-788)))) (-3531 (*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-760 *3)) (-4 *3 (-788)))))
+(-13 (-784) (-966 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-712))) (-15 -3066 (|#1| $)) (-15 -3078 ($ $)) (-15 -2457 ($ $)) (-15 -2843 ((-108) $ $)) (-15 -4139 ($ $ $)) (-15 -1555 ($ $ $)) (-15 -2811 ((-3 $ "failed") $ $)) (-15 -1584 ((-3 $ "failed") $ $)) (-15 -2811 ((-3 $ "failed") $ |#1|)) (-15 -1584 ((-3 $ "failed") $ |#1|)) (-15 -2099 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2504 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3032 ((-712) $)) (-15 -1566 ((-712) $ (-525))) (-15 -2423 (|#1| $ (-525))) (-15 -3781 ((-591 (-2 (|:| |gen| |#1|) (|:| -1409 (-712)))) $)) (-15 -1657 ((-712) $)) (-15 -3531 ((-591 |#1|) $))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2157 (((-3 $ "failed") $ $) 19)) (-3329 (((-525) $) 53)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2134 (((-108) $) 51)) (-2824 (((-108) $) 31)) (-2732 (((-108) $) 52)) (-3741 (($ $ $) 50)) (-2478 (($ $ $) 49)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2089 (((-3 $ "failed") $ $) 42)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43)) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 39)) (-1539 (($ $) 54)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4135 (((-108) $ $) 47)) (-4119 (((-108) $ $) 46)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 48)) (-4112 (((-108) $ $) 45)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-761) (-131)) (T -761))
+NIL
+(-13 (-517) (-786))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-126) . T) ((-565 (-796)) . T) ((-160) . T) ((-269) . T) ((-517) . T) ((-593 $) . T) ((-659 $) . T) ((-668) . T) ((-732) . T) ((-733) . T) ((-735) . T) ((-736) . T) ((-786) . T) ((-788) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-2761 (($ (-1036)) 7)) (-2393 (((-108) $ (-1072) (-1036)) 15)) (-4077 (((-763) $) 12)) (-3358 (((-763) $) 11)) (-3884 (((-1176) $) 9)) (-2817 (((-108) $ (-1036)) 16)))
+(((-762) (-10 -8 (-15 -2761 ($ (-1036))) (-15 -3884 ((-1176) $)) (-15 -3358 ((-763) $)) (-15 -4077 ((-763) $)) (-15 -2393 ((-108) $ (-1072) (-1036))) (-15 -2817 ((-108) $ (-1036))))) (T -762))
+((-2817 (*1 *2 *1 *3) (-12 (-5 *3 (-1036)) (-5 *2 (-108)) (-5 *1 (-762)))) (-2393 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1072)) (-5 *4 (-1036)) (-5 *2 (-108)) (-5 *1 (-762)))) (-4077 (*1 *2 *1) (-12 (-5 *2 (-763)) (-5 *1 (-762)))) (-3358 (*1 *2 *1) (-12 (-5 *2 (-763)) (-5 *1 (-762)))) (-3884 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-762)))) (-2761 (*1 *1 *2) (-12 (-5 *2 (-1036)) (-5 *1 (-762)))))
+(-10 -8 (-15 -2761 ($ (-1036))) (-15 -3884 ((-1176) $)) (-15 -3358 ((-763) $)) (-15 -4077 ((-763) $)) (-15 -2393 ((-108) $ (-1072) (-1036))) (-15 -2817 ((-108) $ (-1036))))
+((-4221 (((-1176) $ (-764)) 12)) (-2675 (((-1176) $ (-1089)) 32)) (-1781 (((-1176) $ (-1072) (-1072)) 34)) (-1886 (((-1176) $ (-1072)) 33)) (-1837 (((-1176) $) 19)) (-2734 (((-1176) $ (-525)) 28)) (-1369 (((-1176) $ (-205)) 30)) (-3019 (((-1176) $) 18)) (-4218 (((-1176) $) 26)) (-3322 (((-1176) $) 25)) (-4049 (((-1176) $) 23)) (-3501 (((-1176) $) 24)) (-3464 (((-1176) $) 22)) (-2052 (((-1176) $) 21)) (-1948 (((-1176) $) 20)) (-2306 (((-1176) $) 16)) (-2043 (((-1176) $) 17)) (-2464 (((-1176) $) 15)) (-4148 (((-1176) $) 14)) (-1429 (((-1176) $) 13)) (-2704 (($ (-1072) (-764)) 9)) (-3307 (($ (-1072) (-1072) (-764)) 8)) (-2142 (((-1089) $) 51)) (-1853 (((-1089) $) 55)) (-2521 (((-2 (|:| |cd| (-1072)) (|:| -2400 (-1072))) $) 54)) (-3761 (((-1072) $) 52)) (-2903 (((-1176) $) 41)) (-2363 (((-525) $) 49)) (-2112 (((-205) $) 50)) (-1587 (((-1176) $) 40)) (-3167 (((-1176) $) 48)) (-3920 (((-1176) $) 47)) (-1878 (((-1176) $) 45)) (-3608 (((-1176) $) 46)) (-4056 (((-1176) $) 44)) (-1269 (((-1176) $) 43)) (-2127 (((-1176) $) 42)) (-3728 (((-1176) $) 38)) (-2691 (((-1176) $) 39)) (-2215 (((-1176) $) 37)) (-2534 (((-1176) $) 36)) (-2570 (((-1176) $) 35)) (-3479 (((-1176) $) 11)))
+(((-763) (-10 -8 (-15 -3307 ($ (-1072) (-1072) (-764))) (-15 -2704 ($ (-1072) (-764))) (-15 -3479 ((-1176) $)) (-15 -4221 ((-1176) $ (-764))) (-15 -1429 ((-1176) $)) (-15 -4148 ((-1176) $)) (-15 -2464 ((-1176) $)) (-15 -2306 ((-1176) $)) (-15 -2043 ((-1176) $)) (-15 -3019 ((-1176) $)) (-15 -1837 ((-1176) $)) (-15 -1948 ((-1176) $)) (-15 -2052 ((-1176) $)) (-15 -3464 ((-1176) $)) (-15 -4049 ((-1176) $)) (-15 -3501 ((-1176) $)) (-15 -3322 ((-1176) $)) (-15 -4218 ((-1176) $)) (-15 -2734 ((-1176) $ (-525))) (-15 -1369 ((-1176) $ (-205))) (-15 -2675 ((-1176) $ (-1089))) (-15 -1886 ((-1176) $ (-1072))) (-15 -1781 ((-1176) $ (-1072) (-1072))) (-15 -2570 ((-1176) $)) (-15 -2534 ((-1176) $)) (-15 -2215 ((-1176) $)) (-15 -3728 ((-1176) $)) (-15 -2691 ((-1176) $)) (-15 -1587 ((-1176) $)) (-15 -2903 ((-1176) $)) (-15 -2127 ((-1176) $)) (-15 -1269 ((-1176) $)) (-15 -4056 ((-1176) $)) (-15 -1878 ((-1176) $)) (-15 -3608 ((-1176) $)) (-15 -3920 ((-1176) $)) (-15 -3167 ((-1176) $)) (-15 -2363 ((-525) $)) (-15 -2112 ((-205) $)) (-15 -2142 ((-1089) $)) (-15 -3761 ((-1072) $)) (-15 -2521 ((-2 (|:| |cd| (-1072)) (|:| -2400 (-1072))) $)) (-15 -1853 ((-1089) $)))) (T -763))
+((-1853 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-763)))) (-2521 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1072)) (|:| -2400 (-1072)))) (-5 *1 (-763)))) (-3761 (*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-763)))) (-2142 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-763)))) (-2112 (*1 *2 *1) (-12 (-5 *2 (-205)) (-5 *1 (-763)))) (-2363 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-763)))) (-3167 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-3920 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-3608 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-1878 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-4056 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-1269 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-2127 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-2903 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-1587 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-2691 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-3728 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-2215 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-2534 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-2570 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-1781 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-763)))) (-1886 (*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-763)))) (-2675 (*1 *2 *1 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-1176)) (-5 *1 (-763)))) (-1369 (*1 *2 *1 *3) (-12 (-5 *3 (-205)) (-5 *2 (-1176)) (-5 *1 (-763)))) (-2734 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *2 (-1176)) (-5 *1 (-763)))) (-4218 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-3322 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-3501 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-4049 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-3464 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-2052 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-1948 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-1837 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-3019 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-2043 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-2306 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-2464 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-4148 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-1429 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-4221 (*1 *2 *1 *3) (-12 (-5 *3 (-764)) (-5 *2 (-1176)) (-5 *1 (-763)))) (-3479 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))) (-2704 (*1 *1 *2 *3) (-12 (-5 *2 (-1072)) (-5 *3 (-764)) (-5 *1 (-763)))) (-3307 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1072)) (-5 *3 (-764)) (-5 *1 (-763)))))
+(-10 -8 (-15 -3307 ($ (-1072) (-1072) (-764))) (-15 -2704 ($ (-1072) (-764))) (-15 -3479 ((-1176) $)) (-15 -4221 ((-1176) $ (-764))) (-15 -1429 ((-1176) $)) (-15 -4148 ((-1176) $)) (-15 -2464 ((-1176) $)) (-15 -2306 ((-1176) $)) (-15 -2043 ((-1176) $)) (-15 -3019 ((-1176) $)) (-15 -1837 ((-1176) $)) (-15 -1948 ((-1176) $)) (-15 -2052 ((-1176) $)) (-15 -3464 ((-1176) $)) (-15 -4049 ((-1176) $)) (-15 -3501 ((-1176) $)) (-15 -3322 ((-1176) $)) (-15 -4218 ((-1176) $)) (-15 -2734 ((-1176) $ (-525))) (-15 -1369 ((-1176) $ (-205))) (-15 -2675 ((-1176) $ (-1089))) (-15 -1886 ((-1176) $ (-1072))) (-15 -1781 ((-1176) $ (-1072) (-1072))) (-15 -2570 ((-1176) $)) (-15 -2534 ((-1176) $)) (-15 -2215 ((-1176) $)) (-15 -3728 ((-1176) $)) (-15 -2691 ((-1176) $)) (-15 -1587 ((-1176) $)) (-15 -2903 ((-1176) $)) (-15 -2127 ((-1176) $)) (-15 -1269 ((-1176) $)) (-15 -4056 ((-1176) $)) (-15 -1878 ((-1176) $)) (-15 -3608 ((-1176) $)) (-15 -3920 ((-1176) $)) (-15 -3167 ((-1176) $)) (-15 -2363 ((-525) $)) (-15 -2112 ((-205) $)) (-15 -2142 ((-1089) $)) (-15 -3761 ((-1072) $)) (-15 -2521 ((-2 (|:| |cd| (-1072)) (|:| -2400 (-1072))) $)) (-15 -1853 ((-1089) $)))
+((-3008 (((-108) $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 12)) (-3484 (($) 15)) (-1867 (($) 13)) (-2317 (($) 16)) (-2364 (($) 14)) (-4096 (((-108) $ $) 8)))
+(((-764) (-13 (-1018) (-10 -8 (-15 -1867 ($)) (-15 -3484 ($)) (-15 -2317 ($)) (-15 -2364 ($))))) (T -764))
+((-1867 (*1 *1) (-5 *1 (-764))) (-3484 (*1 *1) (-5 *1 (-764))) (-2317 (*1 *1) (-5 *1 (-764))) (-2364 (*1 *1) (-5 *1 (-764))))
+(-13 (-1018) (-10 -8 (-15 -1867 ($)) (-15 -3484 ($)) (-15 -2317 ($)) (-15 -2364 ($))))
+((-3008 (((-108) $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 21) (($ (-1089)) 17)) (-3354 (((-108) $) 10)) (-2190 (((-108) $) 9)) (-2070 (((-108) $) 11)) (-3244 (((-108) $) 8)) (-4096 (((-108) $ $) 19)))
+(((-765) (-13 (-1018) (-10 -8 (-15 -3022 ($ (-1089))) (-15 -3244 ((-108) $)) (-15 -2190 ((-108) $)) (-15 -3354 ((-108) $)) (-15 -2070 ((-108) $))))) (T -765))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-765)))) (-3244 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-765)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-765)))) (-3354 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-765)))) (-2070 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-765)))))
+(-13 (-1018) (-10 -8 (-15 -3022 ($ (-1089))) (-15 -3244 ((-108) $)) (-15 -2190 ((-108) $)) (-15 -3354 ((-108) $)) (-15 -2070 ((-108) $))))
+((-3008 (((-108) $ $) NIL)) (-3195 (($ (-765) (-591 (-1089))) 24)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-4060 (((-765) $) 25)) (-3833 (((-591 (-1089)) $) 26)) (-3022 (((-796) $) 23)) (-4096 (((-108) $ $) NIL)))
+(((-766) (-13 (-1018) (-10 -8 (-15 -4060 ((-765) $)) (-15 -3833 ((-591 (-1089)) $)) (-15 -3195 ($ (-765) (-591 (-1089))))))) (T -766))
+((-4060 (*1 *2 *1) (-12 (-5 *2 (-765)) (-5 *1 (-766)))) (-3833 (*1 *2 *1) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-766)))) (-3195 (*1 *1 *2 *3) (-12 (-5 *2 (-765)) (-5 *3 (-591 (-1089))) (-5 *1 (-766)))))
+(-13 (-1018) (-10 -8 (-15 -4060 ((-765) $)) (-15 -3833 ((-591 (-1089)) $)) (-15 -3195 ($ (-765) (-591 (-1089))))))
+((-2563 (((-1176) (-763) (-294 |#1|) (-108)) 23) (((-1176) (-763) (-294 |#1|)) 79) (((-1072) (-294 |#1|) (-108)) 78) (((-1072) (-294 |#1|)) 77)))
+(((-767 |#1|) (-10 -7 (-15 -2563 ((-1072) (-294 |#1|))) (-15 -2563 ((-1072) (-294 |#1|) (-108))) (-15 -2563 ((-1176) (-763) (-294 |#1|))) (-15 -2563 ((-1176) (-763) (-294 |#1|) (-108)))) (-13 (-769) (-788) (-975))) (T -767))
+((-2563 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-763)) (-5 *4 (-294 *6)) (-5 *5 (-108)) (-4 *6 (-13 (-769) (-788) (-975))) (-5 *2 (-1176)) (-5 *1 (-767 *6)))) (-2563 (*1 *2 *3 *4) (-12 (-5 *3 (-763)) (-5 *4 (-294 *5)) (-4 *5 (-13 (-769) (-788) (-975))) (-5 *2 (-1176)) (-5 *1 (-767 *5)))) (-2563 (*1 *2 *3 *4) (-12 (-5 *3 (-294 *5)) (-5 *4 (-108)) (-4 *5 (-13 (-769) (-788) (-975))) (-5 *2 (-1072)) (-5 *1 (-767 *5)))) (-2563 (*1 *2 *3) (-12 (-5 *3 (-294 *4)) (-4 *4 (-13 (-769) (-788) (-975))) (-5 *2 (-1072)) (-5 *1 (-767 *4)))))
+(-10 -7 (-15 -2563 ((-1072) (-294 |#1|))) (-15 -2563 ((-1072) (-294 |#1|) (-108))) (-15 -2563 ((-1176) (-763) (-294 |#1|))) (-15 -2563 ((-1176) (-763) (-294 |#1|) (-108))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3188 ((|#1| $) 10)) (-4157 (($ |#1|) 9)) (-2824 (((-108) $) NIL)) (-1480 (($ |#2| (-712)) NIL)) (-2624 (((-712) $) NIL)) (-1678 ((|#2| $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3266 (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $) NIL (|has| |#1| (-213)))) (-1316 (((-712) $) NIL)) (-3022 (((-796) $) 17) (($ (-525)) NIL) (($ |#2|) NIL (|has| |#2| (-160)))) (-2560 ((|#2| $ (-712)) NIL)) (-2128 (((-712)) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $) NIL (|has| |#1| (-213)))) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 12) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-768 |#1| |#2|) (-13 (-650 |#2|) (-10 -8 (IF (|has| |#1| (-213)) (-6 (-213)) |%noBranch|) (-15 -4157 ($ |#1|)) (-15 -3188 (|#1| $)))) (-650 |#2|) (-975)) (T -768))
+((-4157 (*1 *1 *2) (-12 (-4 *3 (-975)) (-5 *1 (-768 *2 *3)) (-4 *2 (-650 *3)))) (-3188 (*1 *2 *1) (-12 (-4 *2 (-650 *3)) (-5 *1 (-768 *2 *3)) (-4 *3 (-975)))))
+(-13 (-650 |#2|) (-10 -8 (IF (|has| |#1| (-213)) (-6 (-213)) |%noBranch|) (-15 -4157 ($ |#1|)) (-15 -3188 (|#1| $))))
+((-2563 (((-1176) (-763) $ (-108)) 9) (((-1176) (-763) $) 8) (((-1072) $ (-108)) 7) (((-1072) $) 6)))
+(((-769) (-131)) (T -769))
+((-2563 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-769)) (-5 *3 (-763)) (-5 *4 (-108)) (-5 *2 (-1176)))) (-2563 (*1 *2 *3 *1) (-12 (-4 *1 (-769)) (-5 *3 (-763)) (-5 *2 (-1176)))) (-2563 (*1 *2 *1 *3) (-12 (-4 *1 (-769)) (-5 *3 (-108)) (-5 *2 (-1072)))) (-2563 (*1 *2 *1) (-12 (-4 *1 (-769)) (-5 *2 (-1072)))))
+(-13 (-10 -8 (-15 -2563 ((-1072) $)) (-15 -2563 ((-1072) $ (-108))) (-15 -2563 ((-1176) (-763) $)) (-15 -2563 ((-1176) (-763) $ (-108)))))
+((-2005 (((-290) (-1072) (-1072)) 12)) (-4017 (((-108) (-1072) (-1072)) 34)) (-3150 (((-108) (-1072)) 33)) (-1911 (((-51) (-1072)) 25)) (-3320 (((-51) (-1072)) 23)) (-2077 (((-51) (-763)) 17)) (-1215 (((-591 (-1072)) (-1072)) 28)) (-2033 (((-591 (-1072))) 27)))
+(((-770) (-10 -7 (-15 -2077 ((-51) (-763))) (-15 -3320 ((-51) (-1072))) (-15 -1911 ((-51) (-1072))) (-15 -2033 ((-591 (-1072)))) (-15 -1215 ((-591 (-1072)) (-1072))) (-15 -3150 ((-108) (-1072))) (-15 -4017 ((-108) (-1072) (-1072))) (-15 -2005 ((-290) (-1072) (-1072))))) (T -770))
+((-2005 (*1 *2 *3 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-290)) (-5 *1 (-770)))) (-4017 (*1 *2 *3 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-108)) (-5 *1 (-770)))) (-3150 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-108)) (-5 *1 (-770)))) (-1215 (*1 *2 *3) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-770)) (-5 *3 (-1072)))) (-2033 (*1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-770)))) (-1911 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-51)) (-5 *1 (-770)))) (-3320 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-51)) (-5 *1 (-770)))) (-2077 (*1 *2 *3) (-12 (-5 *3 (-763)) (-5 *2 (-51)) (-5 *1 (-770)))))
+(-10 -7 (-15 -2077 ((-51) (-763))) (-15 -3320 ((-51) (-1072))) (-15 -1911 ((-51) (-1072))) (-15 -2033 ((-591 (-1072)))) (-15 -1215 ((-591 (-1072)) (-1072))) (-15 -3150 ((-108) (-1072))) (-15 -4017 ((-108) (-1072) (-1072))) (-15 -2005 ((-290) (-1072) (-1072))))
+((-3008 (((-108) $ $) 19)) (-1414 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-3595 (($ $ $) 72)) (-3214 (((-108) $ $) 73)) (-3891 (((-108) $ (-712)) 8)) (-2442 (($ (-591 |#1|)) 68) (($) 67)) (-1797 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4250)))) (-3798 (($) 7 T CONST)) (-3611 (($ $) 62)) (-3098 (($ $) 58 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3901 (($ |#1| $) 47 (|has| $ (-6 -4250))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4250)))) (-3677 (($ |#1| $) 57 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4250)))) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-3741 ((|#1| $) 78)) (-2921 (($ $ $) 81)) (-2131 (($ $ $) 80)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-2478 ((|#1| $) 79)) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22)) (-3516 (($ $ $) 69)) (-1464 ((|#1| $) 39)) (-2470 (($ |#1| $) 40) (($ |#1| $ (-712)) 63)) (-2047 (((-1036) $) 21)) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-3631 ((|#1| $) 41)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-2945 (((-591 (-2 (|:| -1221 |#1|) (|:| -2064 (-712)))) $) 61)) (-3097 (($ $ |#1|) 71) (($ $ $) 70)) (-2311 (($) 49) (($ (-591 |#1|)) 48)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1408 (((-501) $) 59 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 50)) (-3022 (((-796) $) 18)) (-2973 (($ (-591 |#1|)) 66) (($) 65)) (-1870 (($ (-591 |#1|)) 42)) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20)) (-4112 (((-108) $ $) 64)) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-771 |#1|) (-131) (-788)) (T -771))
+((-3741 (*1 *2 *1) (-12 (-4 *1 (-771 *2)) (-4 *2 (-788)))))
+(-13 (-678 |t#1|) (-900 |t#1|) (-10 -8 (-15 -3741 (|t#1| $))))
+(((-33) . T) ((-102 |#1|) . T) ((-97) . T) ((-565 (-796)) . T) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-215 |#1|) . T) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-636 |#1|) . T) ((-678 |#1|) . T) ((-900 |#1|) . T) ((-1016 |#1|) . T) ((-1018) . T) ((-1125) . T))
+((-1680 (((-1176) (-1036) (-1036)) 47)) (-2788 (((-1176) (-762) (-51)) 44)) (-2809 (((-51) (-762)) 16)))
+(((-772) (-10 -7 (-15 -2809 ((-51) (-762))) (-15 -2788 ((-1176) (-762) (-51))) (-15 -1680 ((-1176) (-1036) (-1036))))) (T -772))
+((-1680 (*1 *2 *3 *3) (-12 (-5 *3 (-1036)) (-5 *2 (-1176)) (-5 *1 (-772)))) (-2788 (*1 *2 *3 *4) (-12 (-5 *3 (-762)) (-5 *4 (-51)) (-5 *2 (-1176)) (-5 *1 (-772)))) (-2809 (*1 *2 *3) (-12 (-5 *3 (-762)) (-5 *2 (-51)) (-5 *1 (-772)))))
+(-10 -7 (-15 -2809 ((-51) (-762))) (-15 -2788 ((-1176) (-762) (-51))) (-15 -1680 ((-1176) (-1036) (-1036))))
+((-1340 (((-774 |#2|) (-1 |#2| |#1|) (-774 |#1|) (-774 |#2|)) 12) (((-774 |#2|) (-1 |#2| |#1|) (-774 |#1|)) 13)))
+(((-773 |#1| |#2|) (-10 -7 (-15 -1340 ((-774 |#2|) (-1 |#2| |#1|) (-774 |#1|))) (-15 -1340 ((-774 |#2|) (-1 |#2| |#1|) (-774 |#1|) (-774 |#2|)))) (-1018) (-1018)) (T -773))
+((-1340 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-774 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-774 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *1 (-773 *5 *6)))) (-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-774 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-774 *6)) (-5 *1 (-773 *5 *6)))))
+(-10 -7 (-15 -1340 ((-774 |#2|) (-1 |#2| |#1|) (-774 |#1|))) (-15 -1340 ((-774 |#2|) (-1 |#2| |#1|) (-774 |#1|) (-774 |#2|))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL (|has| |#1| (-21)))) (-2157 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3329 (((-525) $) NIL (|has| |#1| (-786)))) (-3798 (($) NIL (|has| |#1| (-21)) CONST)) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) 15)) (-3528 (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) 9)) (-4163 (((-3 $ "failed") $) 40 (|has| |#1| (-786)))) (-1511 (((-3 (-385 (-525)) "failed") $) 48 (|has| |#1| (-510)))) (-1352 (((-108) $) 43 (|has| |#1| (-510)))) (-1726 (((-385 (-525)) $) 45 (|has| |#1| (-510)))) (-2134 (((-108) $) NIL (|has| |#1| (-786)))) (-2824 (((-108) $) NIL (|has| |#1| (-786)))) (-2732 (((-108) $) NIL (|has| |#1| (-786)))) (-3741 (($ $ $) NIL (|has| |#1| (-786)))) (-2478 (($ $ $) NIL (|has| |#1| (-786)))) (-2339 (((-1072) $) NIL)) (-1799 (($) 13)) (-2508 (((-108) $) 12)) (-2047 (((-1036) $) NIL)) (-2029 (((-108) $) 11)) (-3022 (((-796) $) 18) (($ (-385 (-525))) NIL (|has| |#1| (-966 (-385 (-525))))) (($ |#1|) 8) (($ (-525)) NIL (-3321 (|has| |#1| (-786)) (|has| |#1| (-966 (-525)))))) (-2128 (((-712)) 34 (|has| |#1| (-786)))) (-1539 (($ $) NIL (|has| |#1| (-786)))) (-3710 (($ $ (-854)) NIL (|has| |#1| (-786))) (($ $ (-712)) NIL (|has| |#1| (-786)))) (-4191 (($) 22 (|has| |#1| (-21)) CONST)) (-4197 (($) 31 (|has| |#1| (-786)) CONST)) (-4135 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4096 (((-108) $ $) 20)) (-4126 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4112 (((-108) $ $) 42 (|has| |#1| (-786)))) (-4164 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 27 (|has| |#1| (-21)))) (-4156 (($ $ $) 29 (|has| |#1| (-21)))) (** (($ $ (-854)) NIL (|has| |#1| (-786))) (($ $ (-712)) NIL (|has| |#1| (-786)))) (* (($ $ $) 37 (|has| |#1| (-786))) (($ (-525) $) 25 (|has| |#1| (-21))) (($ (-712) $) NIL (|has| |#1| (-21))) (($ (-854) $) NIL (|has| |#1| (-21)))))
+(((-774 |#1|) (-13 (-1018) (-389 |#1|) (-10 -8 (-15 -1799 ($)) (-15 -2029 ((-108) $)) (-15 -2508 ((-108) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-786)) (-6 (-786)) |%noBranch|) (IF (|has| |#1| (-510)) (PROGN (-15 -1352 ((-108) $)) (-15 -1726 ((-385 (-525)) $)) (-15 -1511 ((-3 (-385 (-525)) "failed") $))) |%noBranch|))) (-1018)) (T -774))
+((-1799 (*1 *1) (-12 (-5 *1 (-774 *2)) (-4 *2 (-1018)))) (-2029 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-774 *3)) (-4 *3 (-1018)))) (-2508 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-774 *3)) (-4 *3 (-1018)))) (-1352 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-774 *3)) (-4 *3 (-510)) (-4 *3 (-1018)))) (-1726 (*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-774 *3)) (-4 *3 (-510)) (-4 *3 (-1018)))) (-1511 (*1 *2 *1) (|partial| -12 (-5 *2 (-385 (-525))) (-5 *1 (-774 *3)) (-4 *3 (-510)) (-4 *3 (-1018)))))
+(-13 (-1018) (-389 |#1|) (-10 -8 (-15 -1799 ($)) (-15 -2029 ((-108) $)) (-15 -2508 ((-108) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-786)) (-6 (-786)) |%noBranch|) (IF (|has| |#1| (-510)) (PROGN (-15 -1352 ((-108) $)) (-15 -1726 ((-385 (-525)) $)) (-15 -1511 ((-3 (-385 (-525)) "failed") $))) |%noBranch|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL) (((-3 (-110) "failed") $) NIL)) (-3528 ((|#1| $) NIL) (((-110) $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-2742 ((|#1| (-110) |#1|) NIL)) (-2824 (((-108) $) NIL)) (-3969 (($ |#1| (-339 (-110))) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1600 (($ $ (-1 |#1| |#1|)) NIL)) (-3502 (($ $ (-1 |#1| |#1|)) NIL)) (-3164 ((|#1| $ |#1|) NIL)) (-3567 ((|#1| |#1|) NIL (|has| |#1| (-160)))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#1|) NIL) (($ (-110)) NIL)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) NIL)) (-4212 (($ $) NIL (|has| |#1| (-160))) (($ $ $) NIL (|has| |#1| (-160)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ (-110) (-525)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-160))) (($ $ |#1|) NIL (|has| |#1| (-160)))))
+(((-775 |#1|) (-13 (-975) (-966 |#1|) (-966 (-110)) (-265 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-160)) (PROGN (-6 (-37 |#1|)) (-15 -4212 ($ $)) (-15 -4212 ($ $ $)) (-15 -3567 (|#1| |#1|))) |%noBranch|) (-15 -3502 ($ $ (-1 |#1| |#1|))) (-15 -1600 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-110) (-525))) (-15 ** ($ $ (-525))) (-15 -2742 (|#1| (-110) |#1|)) (-15 -3969 ($ |#1| (-339 (-110)))))) (-975)) (T -775))
+((-4212 (*1 *1 *1) (-12 (-5 *1 (-775 *2)) (-4 *2 (-160)) (-4 *2 (-975)))) (-4212 (*1 *1 *1 *1) (-12 (-5 *1 (-775 *2)) (-4 *2 (-160)) (-4 *2 (-975)))) (-3567 (*1 *2 *2) (-12 (-5 *1 (-775 *2)) (-4 *2 (-160)) (-4 *2 (-975)))) (-3502 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-975)) (-5 *1 (-775 *3)))) (-1600 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-975)) (-5 *1 (-775 *3)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-525)) (-5 *1 (-775 *4)) (-4 *4 (-975)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-775 *3)) (-4 *3 (-975)))) (-2742 (*1 *2 *3 *2) (-12 (-5 *3 (-110)) (-5 *1 (-775 *2)) (-4 *2 (-975)))) (-3969 (*1 *1 *2 *3) (-12 (-5 *3 (-339 (-110))) (-5 *1 (-775 *2)) (-4 *2 (-975)))))
+(-13 (-975) (-966 |#1|) (-966 (-110)) (-265 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |#1| (-160)) (PROGN (-6 (-37 |#1|)) (-15 -4212 ($ $)) (-15 -4212 ($ $ $)) (-15 -3567 (|#1| |#1|))) |%noBranch|) (-15 -3502 ($ $ (-1 |#1| |#1|))) (-15 -1600 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-110) (-525))) (-15 ** ($ $ (-525))) (-15 -2742 (|#1| (-110) |#1|)) (-15 -3969 ($ |#1| (-339 (-110))))))
+((-1575 (((-195 (-475)) (-1072)) 9)))
+(((-776) (-10 -7 (-15 -1575 ((-195 (-475)) (-1072))))) (T -776))
+((-1575 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-195 (-475))) (-5 *1 (-776)))))
+(-10 -7 (-15 -1575 ((-195 (-475)) (-1072))))
+((-3008 (((-108) $ $) 7)) (-1243 (((-964) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) 14) (((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 13)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 16) (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) 15)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4096 (((-108) $ $) 6)))
+(((-777) (-131)) (T -777))
+((-2432 (*1 *2 *3 *4) (-12 (-4 *1 (-777)) (-5 *3 (-987)) (-5 *4 (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (-5 *2 (-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)))))) (-2432 (*1 *2 *3 *4) (-12 (-4 *1 (-777)) (-5 *3 (-987)) (-5 *4 (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) (-5 *2 (-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)))))) (-1243 (*1 *2 *3) (-12 (-4 *1 (-777)) (-5 *3 (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) (-5 *2 (-964)))) (-1243 (*1 *2 *3) (-12 (-4 *1 (-777)) (-5 *3 (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (-5 *2 (-964)))))
+(-13 (-1018) (-10 -7 (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205))))))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))) (-15 -1243 ((-964) (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))) (-15 -1243 ((-964) (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-3948 (((-964) (-591 (-294 (-357))) (-591 (-357))) 147) (((-964) (-294 (-357)) (-591 (-357))) 145) (((-964) (-294 (-357)) (-591 (-357)) (-591 (-781 (-357))) (-591 (-781 (-357)))) 144) (((-964) (-294 (-357)) (-591 (-357)) (-591 (-781 (-357))) (-591 (-294 (-357))) (-591 (-781 (-357)))) 143) (((-964) (-779)) 117) (((-964) (-779) (-987)) 116)) (-2432 (((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-779) (-987)) 82) (((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-779)) 84)) (-3570 (((-964) (-591 (-294 (-357))) (-591 (-357))) 148) (((-964) (-779)) 133)))
+(((-778) (-10 -7 (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-779))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-779) (-987))) (-15 -3948 ((-964) (-779) (-987))) (-15 -3948 ((-964) (-779))) (-15 -3570 ((-964) (-779))) (-15 -3948 ((-964) (-294 (-357)) (-591 (-357)) (-591 (-781 (-357))) (-591 (-294 (-357))) (-591 (-781 (-357))))) (-15 -3948 ((-964) (-294 (-357)) (-591 (-357)) (-591 (-781 (-357))) (-591 (-781 (-357))))) (-15 -3948 ((-964) (-294 (-357)) (-591 (-357)))) (-15 -3948 ((-964) (-591 (-294 (-357))) (-591 (-357)))) (-15 -3570 ((-964) (-591 (-294 (-357))) (-591 (-357)))))) (T -778))
+((-3570 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-294 (-357)))) (-5 *4 (-591 (-357))) (-5 *2 (-964)) (-5 *1 (-778)))) (-3948 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-294 (-357)))) (-5 *4 (-591 (-357))) (-5 *2 (-964)) (-5 *1 (-778)))) (-3948 (*1 *2 *3 *4) (-12 (-5 *3 (-294 (-357))) (-5 *4 (-591 (-357))) (-5 *2 (-964)) (-5 *1 (-778)))) (-3948 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-294 (-357))) (-5 *4 (-591 (-357))) (-5 *5 (-591 (-781 (-357)))) (-5 *2 (-964)) (-5 *1 (-778)))) (-3948 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-591 (-357))) (-5 *5 (-591 (-781 (-357)))) (-5 *6 (-591 (-294 (-357)))) (-5 *3 (-294 (-357))) (-5 *2 (-964)) (-5 *1 (-778)))) (-3570 (*1 *2 *3) (-12 (-5 *3 (-779)) (-5 *2 (-964)) (-5 *1 (-778)))) (-3948 (*1 *2 *3) (-12 (-5 *3 (-779)) (-5 *2 (-964)) (-5 *1 (-778)))) (-3948 (*1 *2 *3 *4) (-12 (-5 *3 (-779)) (-5 *4 (-987)) (-5 *2 (-964)) (-5 *1 (-778)))) (-2432 (*1 *2 *3 *4) (-12 (-5 *3 (-779)) (-5 *4 (-987)) (-5 *2 (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))))) (-5 *1 (-778)))) (-2432 (*1 *2 *3) (-12 (-5 *3 (-779)) (-5 *2 (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))))) (-5 *1 (-778)))))
+(-10 -7 (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-779))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-779) (-987))) (-15 -3948 ((-964) (-779) (-987))) (-15 -3948 ((-964) (-779))) (-15 -3570 ((-964) (-779))) (-15 -3948 ((-964) (-294 (-357)) (-591 (-357)) (-591 (-781 (-357))) (-591 (-294 (-357))) (-591 (-781 (-357))))) (-15 -3948 ((-964) (-294 (-357)) (-591 (-357)) (-591 (-781 (-357))) (-591 (-781 (-357))))) (-15 -3948 ((-964) (-294 (-357)) (-591 (-357)))) (-15 -3948 ((-964) (-591 (-294 (-357))) (-591 (-357)))) (-15 -3570 ((-964) (-591 (-294 (-357))) (-591 (-357)))))
+((-3008 (((-108) $ $) NIL)) (-3528 (((-3 (|:| |noa| (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (|:| |lsa| (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))) $) 21)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 20) (($ (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) 14) (($ (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) 16) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (|:| |lsa| (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))))) 18)) (-4096 (((-108) $ $) NIL)))
+(((-779) (-13 (-1018) (-10 -8 (-15 -3022 ($ (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205))))))) (-15 -3022 ($ (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))) (-15 -3022 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (|:| |lsa| (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))))) (-15 -3022 ((-796) $)) (-15 -3528 ((-3 (|:| |noa| (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (|:| |lsa| (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))) $))))) (T -779))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-779)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (-5 *1 (-779)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))) (-5 *1 (-779)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (|:| |lsa| (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))))) (-5 *1 (-779)))) (-3528 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (|:| |lsa| (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205))))))) (-5 *1 (-779)))))
+(-13 (-1018) (-10 -8 (-15 -3022 ($ (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205))))))) (-15 -3022 ($ (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))) (-15 -3022 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (|:| |lsa| (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))))) (-15 -3022 ((-796) $)) (-15 -3528 ((-3 (|:| |noa| (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205))) (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205)))) (|:| |ub| (-591 (-781 (-205)))))) (|:| |lsa| (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))) $))))
+((-1340 (((-781 |#2|) (-1 |#2| |#1|) (-781 |#1|) (-781 |#2|) (-781 |#2|)) 13) (((-781 |#2|) (-1 |#2| |#1|) (-781 |#1|)) 14)))
+(((-780 |#1| |#2|) (-10 -7 (-15 -1340 ((-781 |#2|) (-1 |#2| |#1|) (-781 |#1|))) (-15 -1340 ((-781 |#2|) (-1 |#2| |#1|) (-781 |#1|) (-781 |#2|) (-781 |#2|)))) (-1018) (-1018)) (T -780))
+((-1340 (*1 *2 *3 *4 *2 *2) (-12 (-5 *2 (-781 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-781 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *1 (-780 *5 *6)))) (-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-781 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-781 *6)) (-5 *1 (-780 *5 *6)))))
+(-10 -7 (-15 -1340 ((-781 |#2|) (-1 |#2| |#1|) (-781 |#1|))) (-15 -1340 ((-781 |#2|) (-1 |#2| |#1|) (-781 |#1|) (-781 |#2|) (-781 |#2|))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL (|has| |#1| (-21)))) (-1556 (((-1036) $) 24)) (-2157 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3329 (((-525) $) NIL (|has| |#1| (-786)))) (-3798 (($) NIL (|has| |#1| (-21)) CONST)) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) 16)) (-3528 (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) 9)) (-4163 (((-3 $ "failed") $) 47 (|has| |#1| (-786)))) (-1511 (((-3 (-385 (-525)) "failed") $) 54 (|has| |#1| (-510)))) (-1352 (((-108) $) 49 (|has| |#1| (-510)))) (-1726 (((-385 (-525)) $) 52 (|has| |#1| (-510)))) (-2134 (((-108) $) NIL (|has| |#1| (-786)))) (-3207 (($) 13)) (-2824 (((-108) $) NIL (|has| |#1| (-786)))) (-2732 (((-108) $) NIL (|has| |#1| (-786)))) (-3213 (($) 14)) (-3741 (($ $ $) NIL (|has| |#1| (-786)))) (-2478 (($ $ $) NIL (|has| |#1| (-786)))) (-2339 (((-1072) $) NIL)) (-2508 (((-108) $) 12)) (-2047 (((-1036) $) NIL)) (-2029 (((-108) $) 11)) (-3022 (((-796) $) 22) (($ (-385 (-525))) NIL (|has| |#1| (-966 (-385 (-525))))) (($ |#1|) 8) (($ (-525)) NIL (-3321 (|has| |#1| (-786)) (|has| |#1| (-966 (-525)))))) (-2128 (((-712)) 41 (|has| |#1| (-786)))) (-1539 (($ $) NIL (|has| |#1| (-786)))) (-3710 (($ $ (-854)) NIL (|has| |#1| (-786))) (($ $ (-712)) NIL (|has| |#1| (-786)))) (-4191 (($) 29 (|has| |#1| (-21)) CONST)) (-4197 (($) 38 (|has| |#1| (-786)) CONST)) (-4135 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4096 (((-108) $ $) 27)) (-4126 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4112 (((-108) $ $) 48 (|has| |#1| (-786)))) (-4164 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 34 (|has| |#1| (-21)))) (-4156 (($ $ $) 36 (|has| |#1| (-21)))) (** (($ $ (-854)) NIL (|has| |#1| (-786))) (($ $ (-712)) NIL (|has| |#1| (-786)))) (* (($ $ $) 44 (|has| |#1| (-786))) (($ (-525) $) 32 (|has| |#1| (-21))) (($ (-712) $) NIL (|has| |#1| (-21))) (($ (-854) $) NIL (|has| |#1| (-21)))))
+(((-781 |#1|) (-13 (-1018) (-389 |#1|) (-10 -8 (-15 -3207 ($)) (-15 -3213 ($)) (-15 -2029 ((-108) $)) (-15 -2508 ((-108) $)) (-15 -1556 ((-1036) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-786)) (-6 (-786)) |%noBranch|) (IF (|has| |#1| (-510)) (PROGN (-15 -1352 ((-108) $)) (-15 -1726 ((-385 (-525)) $)) (-15 -1511 ((-3 (-385 (-525)) "failed") $))) |%noBranch|))) (-1018)) (T -781))
+((-3207 (*1 *1) (-12 (-5 *1 (-781 *2)) (-4 *2 (-1018)))) (-3213 (*1 *1) (-12 (-5 *1 (-781 *2)) (-4 *2 (-1018)))) (-2029 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-781 *3)) (-4 *3 (-1018)))) (-2508 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-781 *3)) (-4 *3 (-1018)))) (-1556 (*1 *2 *1) (-12 (-5 *2 (-1036)) (-5 *1 (-781 *3)) (-4 *3 (-1018)))) (-1352 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-781 *3)) (-4 *3 (-510)) (-4 *3 (-1018)))) (-1726 (*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-781 *3)) (-4 *3 (-510)) (-4 *3 (-1018)))) (-1511 (*1 *2 *1) (|partial| -12 (-5 *2 (-385 (-525))) (-5 *1 (-781 *3)) (-4 *3 (-510)) (-4 *3 (-1018)))))
+(-13 (-1018) (-389 |#1|) (-10 -8 (-15 -3207 ($)) (-15 -3213 ($)) (-15 -2029 ((-108) $)) (-15 -2508 ((-108) $)) (-15 -1556 ((-1036) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-786)) (-6 (-786)) |%noBranch|) (IF (|has| |#1| (-510)) (PROGN (-15 -1352 ((-108) $)) (-15 -1726 ((-385 (-525)) $)) (-15 -1511 ((-3 (-385 (-525)) "failed") $))) |%noBranch|)))
+((-3008 (((-108) $ $) 7)) (-3032 (((-712)) 20)) (-3377 (($) 23)) (-3741 (($ $ $) 13)) (-2478 (($ $ $) 14)) (-3016 (((-854) $) 22)) (-2339 (((-1072) $) 9)) (-2226 (($ (-854)) 21)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4135 (((-108) $ $) 16)) (-4119 (((-108) $ $) 17)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 15)) (-4112 (((-108) $ $) 18)))
+(((-782) (-131)) (T -782))
+NIL
+(-13 (-788) (-346))
+(((-97) . T) ((-565 (-796)) . T) ((-346) . T) ((-788) . T) ((-1018) . T))
+((-1676 (((-108) (-1171 |#2|) (-1171 |#2|)) 17)) (-1720 (((-108) (-1171 |#2|) (-1171 |#2|)) 18)) (-4145 (((-108) (-1171 |#2|) (-1171 |#2|)) 14)))
+(((-783 |#1| |#2|) (-10 -7 (-15 -4145 ((-108) (-1171 |#2|) (-1171 |#2|))) (-15 -1676 ((-108) (-1171 |#2|) (-1171 |#2|))) (-15 -1720 ((-108) (-1171 |#2|) (-1171 |#2|)))) (-712) (-733)) (T -783))
+((-1720 (*1 *2 *3 *3) (-12 (-5 *3 (-1171 *5)) (-4 *5 (-733)) (-5 *2 (-108)) (-5 *1 (-783 *4 *5)) (-14 *4 (-712)))) (-1676 (*1 *2 *3 *3) (-12 (-5 *3 (-1171 *5)) (-4 *5 (-733)) (-5 *2 (-108)) (-5 *1 (-783 *4 *5)) (-14 *4 (-712)))) (-4145 (*1 *2 *3 *3) (-12 (-5 *3 (-1171 *5)) (-4 *5 (-733)) (-5 *2 (-108)) (-5 *1 (-783 *4 *5)) (-14 *4 (-712)))))
+(-10 -7 (-15 -4145 ((-108) (-1171 |#2|) (-1171 |#2|))) (-15 -1676 ((-108) (-1171 |#2|) (-1171 |#2|))) (-15 -1720 ((-108) (-1171 |#2|) (-1171 |#2|))))
+((-3008 (((-108) $ $) 7)) (-3798 (($) 24 T CONST)) (-4163 (((-3 $ "failed") $) 28)) (-2824 (((-108) $) 25)) (-3741 (($ $ $) 13)) (-2478 (($ $ $) 14)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-3710 (($ $ (-712)) 27) (($ $ (-854)) 22)) (-4197 (($) 23 T CONST)) (-4135 (((-108) $ $) 16)) (-4119 (((-108) $ $) 17)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 15)) (-4112 (((-108) $ $) 18)) (** (($ $ (-712)) 26) (($ $ (-854)) 21)) (* (($ $ $) 20)))
+(((-784) (-131)) (T -784))
+NIL
+(-13 (-788) (-668))
+(((-97) . T) ((-565 (-796)) . T) ((-668) . T) ((-788) . T) ((-1030) . T) ((-1018) . T))
+((-3329 (((-525) $) 17)) (-2134 (((-108) $) 10)) (-2732 (((-108) $) 11)) (-1539 (($ $) 19)))
+(((-785 |#1|) (-10 -8 (-15 -1539 (|#1| |#1|)) (-15 -3329 ((-525) |#1|)) (-15 -2732 ((-108) |#1|)) (-15 -2134 ((-108) |#1|))) (-786)) (T -785))
+NIL
+(-10 -8 (-15 -1539 (|#1| |#1|)) (-15 -3329 ((-525) |#1|)) (-15 -2732 ((-108) |#1|)) (-15 -2134 ((-108) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 24)) (-2157 (((-3 $ "failed") $ $) 26)) (-3329 (((-525) $) 33)) (-3798 (($) 23 T CONST)) (-4163 (((-3 $ "failed") $) 39)) (-2134 (((-108) $) 35)) (-2824 (((-108) $) 42)) (-2732 (((-108) $) 34)) (-3741 (($ $ $) 13)) (-2478 (($ $ $) 14)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11) (($ (-525)) 45)) (-2128 (((-712)) 44)) (-1539 (($ $) 32)) (-3710 (($ $ (-712)) 40) (($ $ (-854)) 36)) (-4191 (($) 22 T CONST)) (-4197 (($) 43 T CONST)) (-4135 (((-108) $ $) 16)) (-4119 (((-108) $ $) 17)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 15)) (-4112 (((-108) $ $) 18)) (-4164 (($ $ $) 28) (($ $) 27)) (-4156 (($ $ $) 20)) (** (($ $ (-712)) 41) (($ $ (-854)) 37)) (* (($ (-712) $) 25) (($ (-854) $) 21) (($ (-525) $) 29) (($ $ $) 38)))
+(((-786) (-131)) (T -786))
+((-2134 (*1 *2 *1) (-12 (-4 *1 (-786)) (-5 *2 (-108)))) (-2732 (*1 *2 *1) (-12 (-4 *1 (-786)) (-5 *2 (-108)))) (-3329 (*1 *2 *1) (-12 (-4 *1 (-786)) (-5 *2 (-525)))) (-1539 (*1 *1 *1) (-4 *1 (-786))))
+(-13 (-732) (-975) (-668) (-10 -8 (-15 -2134 ((-108) $)) (-15 -2732 ((-108) $)) (-15 -3329 ((-525) $)) (-15 -1539 ($ $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 $) . T) ((-668) . T) ((-732) . T) ((-733) . T) ((-735) . T) ((-736) . T) ((-788) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3741 (($ $ $) 10)) (-2478 (($ $ $) 9)) (-4135 (((-108) $ $) 13)) (-4119 (((-108) $ $) 11)) (-4126 (((-108) $ $) 14)))
+(((-787 |#1|) (-10 -8 (-15 -3741 (|#1| |#1| |#1|)) (-15 -2478 (|#1| |#1| |#1|)) (-15 -4126 ((-108) |#1| |#1|)) (-15 -4135 ((-108) |#1| |#1|)) (-15 -4119 ((-108) |#1| |#1|))) (-788)) (T -787))
+NIL
+(-10 -8 (-15 -3741 (|#1| |#1| |#1|)) (-15 -2478 (|#1| |#1| |#1|)) (-15 -4126 ((-108) |#1| |#1|)) (-15 -4135 ((-108) |#1| |#1|)) (-15 -4119 ((-108) |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-3741 (($ $ $) 13)) (-2478 (($ $ $) 14)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4135 (((-108) $ $) 16)) (-4119 (((-108) $ $) 17)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 15)) (-4112 (((-108) $ $) 18)))
+(((-788) (-131)) (T -788))
+((-4112 (*1 *2 *1 *1) (-12 (-4 *1 (-788)) (-5 *2 (-108)))) (-4119 (*1 *2 *1 *1) (-12 (-4 *1 (-788)) (-5 *2 (-108)))) (-4135 (*1 *2 *1 *1) (-12 (-4 *1 (-788)) (-5 *2 (-108)))) (-4126 (*1 *2 *1 *1) (-12 (-4 *1 (-788)) (-5 *2 (-108)))) (-2478 (*1 *1 *1 *1) (-4 *1 (-788))) (-3741 (*1 *1 *1 *1) (-4 *1 (-788))))
+(-13 (-1018) (-10 -8 (-15 -4112 ((-108) $ $)) (-15 -4119 ((-108) $ $)) (-15 -4135 ((-108) $ $)) (-15 -4126 ((-108) $ $)) (-15 -2478 ($ $ $)) (-15 -3741 ($ $ $))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-2559 (($ $ $) 45)) (-1956 (($ $ $) 44)) (-3556 (($ $ $) 42)) (-3315 (($ $ $) 51)) (-3830 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 46)) (-2220 (((-3 $ "failed") $ $) 49)) (-1251 (((-3 (-525) "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-3208 (($ $) 35)) (-3975 (($ $ $) 39)) (-2173 (($ $ $) 38)) (-2332 (($ $ $) 47)) (-2352 (($ $ $) 53)) (-2372 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 41)) (-1779 (((-3 $ "failed") $ $) 48)) (-2089 (((-3 $ "failed") $ |#2|) 28)) (-2668 ((|#2| $) 32)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ (-385 (-525))) NIL) (($ |#2|) 12)) (-3654 (((-591 |#2|) $) 18)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 22)))
+(((-789 |#1| |#2|) (-10 -8 (-15 -2332 (|#1| |#1| |#1|)) (-15 -3830 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3857 |#1|)) |#1| |#1|)) (-15 -3315 (|#1| |#1| |#1|)) (-15 -2220 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2559 (|#1| |#1| |#1|)) (-15 -1956 (|#1| |#1| |#1|)) (-15 -3556 (|#1| |#1| |#1|)) (-15 -2372 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3857 |#1|)) |#1| |#1|)) (-15 -2352 (|#1| |#1| |#1|)) (-15 -1779 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3975 (|#1| |#1| |#1|)) (-15 -2173 (|#1| |#1| |#1|)) (-15 -3208 (|#1| |#1|)) (-15 -2668 (|#2| |#1|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3654 ((-591 |#2|) |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3022 (|#1| |#2|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3022 (|#1| (-525))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-854) |#1|)) (-15 -3022 ((-796) |#1|))) (-790 |#2|) (-975)) (T -789))
+NIL
+(-10 -8 (-15 -2332 (|#1| |#1| |#1|)) (-15 -3830 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3857 |#1|)) |#1| |#1|)) (-15 -3315 (|#1| |#1| |#1|)) (-15 -2220 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2559 (|#1| |#1| |#1|)) (-15 -1956 (|#1| |#1| |#1|)) (-15 -3556 (|#1| |#1| |#1|)) (-15 -2372 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3857 |#1|)) |#1| |#1|)) (-15 -2352 (|#1| |#1| |#1|)) (-15 -1779 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3975 (|#1| |#1| |#1|)) (-15 -2173 (|#1| |#1| |#1|)) (-15 -3208 (|#1| |#1|)) (-15 -2668 (|#2| |#1|)) (-15 -2089 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3654 ((-591 |#2|) |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3022 (|#1| |#2|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3022 (|#1| (-525))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-854) |#1|)) (-15 -3022 ((-796) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-2559 (($ $ $) 45 (|has| |#1| (-341)))) (-1956 (($ $ $) 46 (|has| |#1| (-341)))) (-3556 (($ $ $) 48 (|has| |#1| (-341)))) (-3315 (($ $ $) 43 (|has| |#1| (-341)))) (-3830 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 42 (|has| |#1| (-341)))) (-2220 (((-3 $ "failed") $ $) 44 (|has| |#1| (-341)))) (-2162 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 47 (|has| |#1| (-341)))) (-1251 (((-3 (-525) "failed") $) 74 (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) 72 (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) 69)) (-3528 (((-525) $) 75 (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) 73 (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) 68)) (-1710 (($ $) 64)) (-4163 (((-3 $ "failed") $) 34)) (-3208 (($ $) 55 (|has| |#1| (-429)))) (-2824 (((-108) $) 31)) (-1480 (($ |#1| (-712)) 62)) (-1455 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 57 (|has| |#1| (-517)))) (-3242 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 58 (|has| |#1| (-517)))) (-2624 (((-712) $) 66)) (-3975 (($ $ $) 52 (|has| |#1| (-341)))) (-2173 (($ $ $) 53 (|has| |#1| (-341)))) (-2332 (($ $ $) 41 (|has| |#1| (-341)))) (-2352 (($ $ $) 50 (|has| |#1| (-341)))) (-2372 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 49 (|has| |#1| (-341)))) (-1779 (((-3 $ "failed") $ $) 51 (|has| |#1| (-341)))) (-1702 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 54 (|has| |#1| (-341)))) (-1678 ((|#1| $) 65)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2089 (((-3 $ "failed") $ |#1|) 59 (|has| |#1| (-517)))) (-1316 (((-712) $) 67)) (-2668 ((|#1| $) 56 (|has| |#1| (-429)))) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ (-385 (-525))) 71 (|has| |#1| (-966 (-385 (-525))))) (($ |#1|) 70)) (-3654 (((-591 |#1|) $) 61)) (-2560 ((|#1| $ (-712)) 63)) (-2128 (((-712)) 29)) (-3005 ((|#1| $ |#1| |#1|) 60)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 77) (($ |#1| $) 76)))
+(((-790 |#1|) (-131) (-975)) (T -790))
+((-1316 (*1 *2 *1) (-12 (-4 *1 (-790 *3)) (-4 *3 (-975)) (-5 *2 (-712)))) (-2624 (*1 *2 *1) (-12 (-4 *1 (-790 *3)) (-4 *3 (-975)) (-5 *2 (-712)))) (-1678 (*1 *2 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)))) (-1710 (*1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)))) (-2560 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-4 *1 (-790 *2)) (-4 *2 (-975)))) (-1480 (*1 *1 *2 *3) (-12 (-5 *3 (-712)) (-4 *1 (-790 *2)) (-4 *2 (-975)))) (-3654 (*1 *2 *1) (-12 (-4 *1 (-790 *3)) (-4 *3 (-975)) (-5 *2 (-591 *3)))) (-3005 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)))) (-2089 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-517)))) (-3242 (*1 *2 *1 *1) (-12 (-4 *3 (-517)) (-4 *3 (-975)) (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-790 *3)))) (-1455 (*1 *2 *1 *1) (-12 (-4 *3 (-517)) (-4 *3 (-975)) (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-790 *3)))) (-2668 (*1 *2 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-429)))) (-3208 (*1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-429)))) (-1702 (*1 *2 *1 *1) (-12 (-4 *3 (-341)) (-4 *3 (-975)) (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-790 *3)))) (-2173 (*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))) (-3975 (*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))) (-1779 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))) (-2352 (*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))) (-2372 (*1 *2 *1 *1) (-12 (-4 *3 (-341)) (-4 *3 (-975)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3857 *1))) (-4 *1 (-790 *3)))) (-3556 (*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))) (-2162 (*1 *2 *1 *1) (-12 (-4 *3 (-341)) (-4 *3 (-975)) (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-790 *3)))) (-1956 (*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))) (-2559 (*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))) (-2220 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))) (-3315 (*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))) (-3830 (*1 *2 *1 *1) (-12 (-4 *3 (-341)) (-4 *3 (-975)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3857 *1))) (-4 *1 (-790 *3)))) (-2332 (*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))))
+(-13 (-975) (-107 |t#1| |t#1|) (-389 |t#1|) (-10 -8 (-15 -1316 ((-712) $)) (-15 -2624 ((-712) $)) (-15 -1678 (|t#1| $)) (-15 -1710 ($ $)) (-15 -2560 (|t#1| $ (-712))) (-15 -1480 ($ |t#1| (-712))) (-15 -3654 ((-591 |t#1|) $)) (-15 -3005 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-160)) (-6 (-37 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-517)) (PROGN (-15 -2089 ((-3 $ "failed") $ |t#1|)) (-15 -3242 ((-2 (|:| -2963 $) (|:| -3407 $)) $ $)) (-15 -1455 ((-2 (|:| -2963 $) (|:| -3407 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-429)) (PROGN (-15 -2668 (|t#1| $)) (-15 -3208 ($ $))) |%noBranch|) (IF (|has| |t#1| (-341)) (PROGN (-15 -1702 ((-2 (|:| -2963 $) (|:| -3407 $)) $ $)) (-15 -2173 ($ $ $)) (-15 -3975 ($ $ $)) (-15 -1779 ((-3 $ "failed") $ $)) (-15 -2352 ($ $ $)) (-15 -2372 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $)) (-15 -3556 ($ $ $)) (-15 -2162 ((-2 (|:| -2963 $) (|:| -3407 $)) $ $)) (-15 -1956 ($ $ $)) (-15 -2559 ($ $ $)) (-15 -2220 ((-3 $ "failed") $ $)) (-15 -3315 ($ $ $)) (-15 -3830 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $)) (-15 -2332 ($ $ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) |has| |#1| (-160)) ((-97) . T) ((-107 |#1| |#1|) . T) ((-126) . T) ((-565 (-796)) . T) ((-389 |#1|) . T) ((-593 |#1|) . T) ((-593 $) . T) ((-659 |#1|) |has| |#1| (-160)) ((-668) . T) ((-966 (-385 (-525))) |has| |#1| (-966 (-385 (-525)))) ((-966 (-525)) |has| |#1| (-966 (-525))) ((-966 |#1|) . T) ((-981 |#1|) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3735 ((|#2| |#2| |#2| (-94 |#1|) (-1 |#1| |#1|)) 20)) (-2162 (((-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2| (-94 |#1|)) 43 (|has| |#1| (-341)))) (-1455 (((-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2| (-94 |#1|)) 40 (|has| |#1| (-517)))) (-3242 (((-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2| (-94 |#1|)) 39 (|has| |#1| (-517)))) (-1702 (((-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2| (-94 |#1|)) 42 (|has| |#1| (-341)))) (-3005 ((|#1| |#2| |#1| |#1| (-94 |#1|) (-1 |#1| |#1|)) 31)))
+(((-791 |#1| |#2|) (-10 -7 (-15 -3735 (|#2| |#2| |#2| (-94 |#1|) (-1 |#1| |#1|))) (-15 -3005 (|#1| |#2| |#1| |#1| (-94 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-517)) (PROGN (-15 -3242 ((-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -1455 ((-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|) (IF (|has| |#1| (-341)) (PROGN (-15 -1702 ((-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -2162 ((-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|)) (-975) (-790 |#1|)) (T -791))
+((-2162 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-341)) (-4 *5 (-975)) (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-791 *5 *3)) (-4 *3 (-790 *5)))) (-1702 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-341)) (-4 *5 (-975)) (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-791 *5 *3)) (-4 *3 (-790 *5)))) (-1455 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-517)) (-4 *5 (-975)) (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-791 *5 *3)) (-4 *3 (-790 *5)))) (-3242 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-517)) (-4 *5 (-975)) (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-791 *5 *3)) (-4 *3 (-790 *5)))) (-3005 (*1 *2 *3 *2 *2 *4 *5) (-12 (-5 *4 (-94 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-975)) (-5 *1 (-791 *2 *3)) (-4 *3 (-790 *2)))) (-3735 (*1 *2 *2 *2 *3 *4) (-12 (-5 *3 (-94 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-975)) (-5 *1 (-791 *5 *2)) (-4 *2 (-790 *5)))))
+(-10 -7 (-15 -3735 (|#2| |#2| |#2| (-94 |#1|) (-1 |#1| |#1|))) (-15 -3005 (|#1| |#2| |#1| |#1| (-94 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-517)) (PROGN (-15 -3242 ((-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -1455 ((-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|) (IF (|has| |#1| (-341)) (PROGN (-15 -1702 ((-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -2162 ((-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-2559 (($ $ $) NIL (|has| |#1| (-341)))) (-1956 (($ $ $) NIL (|has| |#1| (-341)))) (-3556 (($ $ $) NIL (|has| |#1| (-341)))) (-3315 (($ $ $) NIL (|has| |#1| (-341)))) (-3830 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2220 (((-3 $ "failed") $ $) NIL (|has| |#1| (-341)))) (-2162 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 25 (|has| |#1| (-341)))) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) NIL)) (-3528 (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) NIL)) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3208 (($ $) NIL (|has| |#1| (-429)))) (-2927 (((-796) $ (-796)) NIL)) (-2824 (((-108) $) NIL)) (-1480 (($ |#1| (-712)) NIL)) (-1455 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 21 (|has| |#1| (-517)))) (-3242 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 19 (|has| |#1| (-517)))) (-2624 (((-712) $) NIL)) (-3975 (($ $ $) NIL (|has| |#1| (-341)))) (-2173 (($ $ $) NIL (|has| |#1| (-341)))) (-2332 (($ $ $) NIL (|has| |#1| (-341)))) (-2352 (($ $ $) NIL (|has| |#1| (-341)))) (-2372 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-1779 (((-3 $ "failed") $ $) NIL (|has| |#1| (-341)))) (-1702 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 23 (|has| |#1| (-341)))) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2089 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517)))) (-1316 (((-712) $) NIL)) (-2668 ((|#1| $) NIL (|has| |#1| (-429)))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ (-385 (-525))) NIL (|has| |#1| (-966 (-385 (-525))))) (($ |#1|) NIL)) (-3654 (((-591 |#1|) $) NIL)) (-2560 ((|#1| $ (-712)) NIL)) (-2128 (((-712)) NIL)) (-3005 ((|#1| $ |#1| |#1|) 15)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 13) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-792 |#1| |#2| |#3|) (-13 (-790 |#1|) (-10 -8 (-15 -2927 ((-796) $ (-796))))) (-975) (-94 |#1|) (-1 |#1| |#1|)) (T -792))
+((-2927 (*1 *2 *1 *2) (-12 (-5 *2 (-796)) (-5 *1 (-792 *3 *4 *5)) (-4 *3 (-975)) (-14 *4 (-94 *3)) (-14 *5 (-1 *3 *3)))))
+(-13 (-790 |#1|) (-10 -8 (-15 -2927 ((-796) $ (-796)))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-2559 (($ $ $) NIL (|has| |#2| (-341)))) (-1956 (($ $ $) NIL (|has| |#2| (-341)))) (-3556 (($ $ $) NIL (|has| |#2| (-341)))) (-3315 (($ $ $) NIL (|has| |#2| (-341)))) (-3830 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#2| (-341)))) (-2220 (((-3 $ "failed") $ $) NIL (|has| |#2| (-341)))) (-2162 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#2| (-341)))) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#2| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#2| (-966 (-385 (-525))))) (((-3 |#2| "failed") $) NIL)) (-3528 (((-525) $) NIL (|has| |#2| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#2| (-966 (-385 (-525))))) ((|#2| $) NIL)) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3208 (($ $) NIL (|has| |#2| (-429)))) (-2824 (((-108) $) NIL)) (-1480 (($ |#2| (-712)) 16)) (-1455 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#2| (-517)))) (-3242 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#2| (-517)))) (-2624 (((-712) $) NIL)) (-3975 (($ $ $) NIL (|has| |#2| (-341)))) (-2173 (($ $ $) NIL (|has| |#2| (-341)))) (-2332 (($ $ $) NIL (|has| |#2| (-341)))) (-2352 (($ $ $) NIL (|has| |#2| (-341)))) (-2372 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#2| (-341)))) (-1779 (((-3 $ "failed") $ $) NIL (|has| |#2| (-341)))) (-1702 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#2| (-341)))) (-1678 ((|#2| $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2089 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-517)))) (-1316 (((-712) $) NIL)) (-2668 ((|#2| $) NIL (|has| |#2| (-429)))) (-3022 (((-796) $) 23) (($ (-525)) NIL) (($ (-385 (-525))) NIL (|has| |#2| (-966 (-385 (-525))))) (($ |#2|) NIL) (($ (-1167 |#1|)) 18)) (-3654 (((-591 |#2|) $) NIL)) (-2560 ((|#2| $ (-712)) NIL)) (-2128 (((-712)) NIL)) (-3005 ((|#2| $ |#2| |#2|) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) 13 T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-793 |#1| |#2| |#3| |#4|) (-13 (-790 |#2|) (-10 -8 (-15 -3022 ($ (-1167 |#1|))))) (-1089) (-975) (-94 |#2|) (-1 |#2| |#2|)) (T -793))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1167 *3)) (-14 *3 (-1089)) (-5 *1 (-793 *3 *4 *5 *6)) (-4 *4 (-975)) (-14 *5 (-94 *4)) (-14 *6 (-1 *4 *4)))))
+(-13 (-790 |#2|) (-10 -8 (-15 -3022 ($ (-1167 |#1|)))))
+((-3434 ((|#1| (-712) |#1|) 35 (|has| |#1| (-37 (-385 (-525)))))) (-3253 ((|#1| (-712) (-712) |#1|) 27) ((|#1| (-712) |#1|) 20)) (-1472 ((|#1| (-712) |#1|) 31)) (-3752 ((|#1| (-712) |#1|) 29)) (-3235 ((|#1| (-712) |#1|) 28)))
+(((-794 |#1|) (-10 -7 (-15 -3235 (|#1| (-712) |#1|)) (-15 -3752 (|#1| (-712) |#1|)) (-15 -1472 (|#1| (-712) |#1|)) (-15 -3253 (|#1| (-712) |#1|)) (-15 -3253 (|#1| (-712) (-712) |#1|)) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -3434 (|#1| (-712) |#1|)) |%noBranch|)) (-160)) (T -794))
+((-3434 (*1 *2 *3 *2) (-12 (-5 *3 (-712)) (-5 *1 (-794 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-160)))) (-3253 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-712)) (-5 *1 (-794 *2)) (-4 *2 (-160)))) (-3253 (*1 *2 *3 *2) (-12 (-5 *3 (-712)) (-5 *1 (-794 *2)) (-4 *2 (-160)))) (-1472 (*1 *2 *3 *2) (-12 (-5 *3 (-712)) (-5 *1 (-794 *2)) (-4 *2 (-160)))) (-3752 (*1 *2 *3 *2) (-12 (-5 *3 (-712)) (-5 *1 (-794 *2)) (-4 *2 (-160)))) (-3235 (*1 *2 *3 *2) (-12 (-5 *3 (-712)) (-5 *1 (-794 *2)) (-4 *2 (-160)))))
+(-10 -7 (-15 -3235 (|#1| (-712) |#1|)) (-15 -3752 (|#1| (-712) |#1|)) (-15 -1472 (|#1| (-712) |#1|)) (-15 -3253 (|#1| (-712) |#1|)) (-15 -3253 (|#1| (-712) (-712) |#1|)) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -3434 (|#1| (-712) |#1|)) |%noBranch|))
+((-3008 (((-108) $ $) NIL)) (-3024 (((-525) $) 12)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 18) (($ (-525)) 11)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 8)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 9)))
+(((-795) (-13 (-788) (-10 -8 (-15 -3022 ($ (-525))) (-15 -3024 ((-525) $))))) (T -795))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-795)))) (-3024 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-795)))))
+(-13 (-788) (-10 -8 (-15 -3022 ($ (-525))) (-15 -3024 ((-525) $))))
+((-3008 (((-108) $ $) NIL) (($ $ $) 77)) (-3883 (($ $ $) 115)) (-2289 (((-525) $) 30) (((-525)) 35)) (-2752 (($ (-525)) 44)) (-3467 (($ $ $) 45) (($ (-591 $)) 76)) (-3515 (($ $ (-591 $)) 74)) (-3294 (((-525) $) 33)) (-3789 (($ $ $) 63)) (-2161 (($ $) 128) (($ $ $) 129) (($ $ $ $) 130)) (-3895 (((-525) $) 32)) (-2718 (($ $ $) 62)) (-1432 (($ $) 105)) (-2708 (($ $ $) 119)) (-3384 (($ (-591 $)) 52)) (-1672 (($ $ (-591 $)) 69)) (-2723 (($ (-525) (-525)) 46)) (-3069 (($ $) 116) (($ $ $) 117)) (-3400 (($ $ (-525)) 40) (($ $) 43)) (-2129 (($ $ $) 89)) (-3851 (($ $ $) 122)) (-1685 (($ $) 106)) (-2110 (($ $ $) 90)) (-1553 (($ $) 131) (($ $ $) 132) (($ $ $ $) 133)) (-4229 (((-1176) $) 8)) (-1777 (($ $) 109) (($ $ (-712)) 112)) (-2098 (($ $ $) 65)) (-1772 (($ $ $) 64)) (-1259 (($ $ (-591 $)) 100)) (-1989 (($ $ $) 104)) (-2964 (($ (-591 $)) 50)) (-1668 (($ $) 60) (($ (-591 $)) 61)) (-3417 (($ $ $) 113)) (-1350 (($ $) 107)) (-2623 (($ $ $) 118)) (-2927 (($ (-525)) 20) (($ (-1089)) 22) (($ (-1072)) 29) (($ (-205)) 24)) (-1209 (($ $ $) 93)) (-2247 (($ $) 94)) (-2314 (((-1176) (-1072)) 14)) (-2353 (($ (-1072)) 13)) (-3393 (($ (-591 (-591 $))) 49)) (-3388 (($ $ (-525)) 39) (($ $) 42)) (-2339 (((-1072) $) NIL)) (-3633 (($ $ $) 121)) (-4150 (($ $) 134) (($ $ $) 135) (($ $ $ $) 136)) (-3284 (((-108) $) 98)) (-3982 (($ $ (-591 $)) 102) (($ $ $ $) 103)) (-3694 (($ (-525)) 36)) (-2965 (((-525) $) 31) (((-525)) 34)) (-3025 (($ $ $) 37) (($ (-591 $)) 75)) (-2047 (((-1036) $) NIL)) (-2089 (($ $ $) 91)) (-3209 (($) 12)) (-3164 (($ $ (-591 $)) 99)) (-2109 (($ $) 108) (($ $ (-712)) 111)) (-2099 (($ $ $) 88)) (-3266 (($ $ (-712)) 127)) (-1549 (($ (-591 $)) 51)) (-3022 (((-796) $) 18)) (-1682 (($ $ (-525)) 38) (($ $) 41)) (-1812 (($ $) 58) (($ (-591 $)) 59)) (-2973 (($ $) 56) (($ (-591 $)) 57)) (-2989 (($ $) 114)) (-1688 (($ (-591 $)) 55)) (-2516 (($ $ $) 97)) (-1545 (($ $ $) 120)) (-1213 (($ $ $) 92)) (-1416 (($ $ $) 95) (($ $) 96)) (-4135 (($ $ $) 81)) (-4119 (($ $ $) 79)) (-4096 (((-108) $ $) 15) (($ $ $) 16)) (-4126 (($ $ $) 80)) (-4112 (($ $ $) 78)) (-4173 (($ $ $) 86)) (-4164 (($ $ $) 83) (($ $) 84)) (-4156 (($ $ $) 82)) (** (($ $ $) 87)) (* (($ $ $) 85)))
+(((-796) (-13 (-1018) (-10 -8 (-15 -4229 ((-1176) $)) (-15 -2353 ($ (-1072))) (-15 -2314 ((-1176) (-1072))) (-15 -2927 ($ (-525))) (-15 -2927 ($ (-1089))) (-15 -2927 ($ (-1072))) (-15 -2927 ($ (-205))) (-15 -3209 ($)) (-15 -2289 ((-525) $)) (-15 -2965 ((-525) $)) (-15 -2289 ((-525))) (-15 -2965 ((-525))) (-15 -3895 ((-525) $)) (-15 -3294 ((-525) $)) (-15 -3694 ($ (-525))) (-15 -2752 ($ (-525))) (-15 -2723 ($ (-525) (-525))) (-15 -3388 ($ $ (-525))) (-15 -3400 ($ $ (-525))) (-15 -1682 ($ $ (-525))) (-15 -3388 ($ $)) (-15 -3400 ($ $)) (-15 -1682 ($ $)) (-15 -3025 ($ $ $)) (-15 -3467 ($ $ $)) (-15 -3025 ($ (-591 $))) (-15 -3467 ($ (-591 $))) (-15 -1259 ($ $ (-591 $))) (-15 -3982 ($ $ (-591 $))) (-15 -3982 ($ $ $ $)) (-15 -1989 ($ $ $)) (-15 -3284 ((-108) $)) (-15 -3164 ($ $ (-591 $))) (-15 -1432 ($ $)) (-15 -3633 ($ $ $)) (-15 -2989 ($ $)) (-15 -3393 ($ (-591 (-591 $)))) (-15 -3883 ($ $ $)) (-15 -3069 ($ $)) (-15 -3069 ($ $ $)) (-15 -2623 ($ $ $)) (-15 -2708 ($ $ $)) (-15 -1545 ($ $ $)) (-15 -3851 ($ $ $)) (-15 -3266 ($ $ (-712))) (-15 -2516 ($ $ $)) (-15 -2718 ($ $ $)) (-15 -3789 ($ $ $)) (-15 -1772 ($ $ $)) (-15 -2098 ($ $ $)) (-15 -1672 ($ $ (-591 $))) (-15 -3515 ($ $ (-591 $))) (-15 -1685 ($ $)) (-15 -2109 ($ $)) (-15 -2109 ($ $ (-712))) (-15 -1777 ($ $)) (-15 -1777 ($ $ (-712))) (-15 -1350 ($ $)) (-15 -3417 ($ $ $)) (-15 -2161 ($ $)) (-15 -2161 ($ $ $)) (-15 -2161 ($ $ $ $)) (-15 -1553 ($ $)) (-15 -1553 ($ $ $)) (-15 -1553 ($ $ $ $)) (-15 -4150 ($ $)) (-15 -4150 ($ $ $)) (-15 -4150 ($ $ $ $)) (-15 -2973 ($ $)) (-15 -2973 ($ (-591 $))) (-15 -1812 ($ $)) (-15 -1812 ($ (-591 $))) (-15 -1668 ($ $)) (-15 -1668 ($ (-591 $))) (-15 -2964 ($ (-591 $))) (-15 -1549 ($ (-591 $))) (-15 -3384 ($ (-591 $))) (-15 -1688 ($ (-591 $))) (-15 -4096 ($ $ $)) (-15 -3008 ($ $ $)) (-15 -4112 ($ $ $)) (-15 -4119 ($ $ $)) (-15 -4126 ($ $ $)) (-15 -4135 ($ $ $)) (-15 -4156 ($ $ $)) (-15 -4164 ($ $ $)) (-15 -4164 ($ $)) (-15 * ($ $ $)) (-15 -4173 ($ $ $)) (-15 ** ($ $ $)) (-15 -2099 ($ $ $)) (-15 -2129 ($ $ $)) (-15 -2110 ($ $ $)) (-15 -2089 ($ $ $)) (-15 -1213 ($ $ $)) (-15 -1209 ($ $ $)) (-15 -2247 ($ $)) (-15 -1416 ($ $ $)) (-15 -1416 ($ $))))) (T -796))
+((-4229 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-796)))) (-2353 (*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-796)))) (-2314 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-796)))) (-2927 (*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796)))) (-2927 (*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-796)))) (-2927 (*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-796)))) (-2927 (*1 *1 *2) (-12 (-5 *2 (-205)) (-5 *1 (-796)))) (-3209 (*1 *1) (-5 *1 (-796))) (-2289 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-796)))) (-2965 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-796)))) (-2289 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796)))) (-2965 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796)))) (-3895 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-796)))) (-3294 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-796)))) (-3694 (*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796)))) (-2752 (*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796)))) (-2723 (*1 *1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796)))) (-3388 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796)))) (-3400 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796)))) (-1682 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796)))) (-3388 (*1 *1 *1) (-5 *1 (-796))) (-3400 (*1 *1 *1) (-5 *1 (-796))) (-1682 (*1 *1 *1) (-5 *1 (-796))) (-3025 (*1 *1 *1 *1) (-5 *1 (-796))) (-3467 (*1 *1 *1 *1) (-5 *1 (-796))) (-3025 (*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))) (-3467 (*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))) (-1259 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))) (-3982 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))) (-3982 (*1 *1 *1 *1 *1) (-5 *1 (-796))) (-1989 (*1 *1 *1 *1) (-5 *1 (-796))) (-3284 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-796)))) (-3164 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))) (-1432 (*1 *1 *1) (-5 *1 (-796))) (-3633 (*1 *1 *1 *1) (-5 *1 (-796))) (-2989 (*1 *1 *1) (-5 *1 (-796))) (-3393 (*1 *1 *2) (-12 (-5 *2 (-591 (-591 (-796)))) (-5 *1 (-796)))) (-3883 (*1 *1 *1 *1) (-5 *1 (-796))) (-3069 (*1 *1 *1) (-5 *1 (-796))) (-3069 (*1 *1 *1 *1) (-5 *1 (-796))) (-2623 (*1 *1 *1 *1) (-5 *1 (-796))) (-2708 (*1 *1 *1 *1) (-5 *1 (-796))) (-1545 (*1 *1 *1 *1) (-5 *1 (-796))) (-3851 (*1 *1 *1 *1) (-5 *1 (-796))) (-3266 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-796)))) (-2516 (*1 *1 *1 *1) (-5 *1 (-796))) (-2718 (*1 *1 *1 *1) (-5 *1 (-796))) (-3789 (*1 *1 *1 *1) (-5 *1 (-796))) (-1772 (*1 *1 *1 *1) (-5 *1 (-796))) (-2098 (*1 *1 *1 *1) (-5 *1 (-796))) (-1672 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))) (-3515 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))) (-1685 (*1 *1 *1) (-5 *1 (-796))) (-2109 (*1 *1 *1) (-5 *1 (-796))) (-2109 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-796)))) (-1777 (*1 *1 *1) (-5 *1 (-796))) (-1777 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-796)))) (-1350 (*1 *1 *1) (-5 *1 (-796))) (-3417 (*1 *1 *1 *1) (-5 *1 (-796))) (-2161 (*1 *1 *1) (-5 *1 (-796))) (-2161 (*1 *1 *1 *1) (-5 *1 (-796))) (-2161 (*1 *1 *1 *1 *1) (-5 *1 (-796))) (-1553 (*1 *1 *1) (-5 *1 (-796))) (-1553 (*1 *1 *1 *1) (-5 *1 (-796))) (-1553 (*1 *1 *1 *1 *1) (-5 *1 (-796))) (-4150 (*1 *1 *1) (-5 *1 (-796))) (-4150 (*1 *1 *1 *1) (-5 *1 (-796))) (-4150 (*1 *1 *1 *1 *1) (-5 *1 (-796))) (-2973 (*1 *1 *1) (-5 *1 (-796))) (-2973 (*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))) (-1812 (*1 *1 *1) (-5 *1 (-796))) (-1812 (*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))) (-1668 (*1 *1 *1) (-5 *1 (-796))) (-1668 (*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))) (-2964 (*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))) (-1549 (*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))) (-3384 (*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))) (-1688 (*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))) (-4096 (*1 *1 *1 *1) (-5 *1 (-796))) (-3008 (*1 *1 *1 *1) (-5 *1 (-796))) (-4112 (*1 *1 *1 *1) (-5 *1 (-796))) (-4119 (*1 *1 *1 *1) (-5 *1 (-796))) (-4126 (*1 *1 *1 *1) (-5 *1 (-796))) (-4135 (*1 *1 *1 *1) (-5 *1 (-796))) (-4156 (*1 *1 *1 *1) (-5 *1 (-796))) (-4164 (*1 *1 *1 *1) (-5 *1 (-796))) (-4164 (*1 *1 *1) (-5 *1 (-796))) (* (*1 *1 *1 *1) (-5 *1 (-796))) (-4173 (*1 *1 *1 *1) (-5 *1 (-796))) (** (*1 *1 *1 *1) (-5 *1 (-796))) (-2099 (*1 *1 *1 *1) (-5 *1 (-796))) (-2129 (*1 *1 *1 *1) (-5 *1 (-796))) (-2110 (*1 *1 *1 *1) (-5 *1 (-796))) (-2089 (*1 *1 *1 *1) (-5 *1 (-796))) (-1213 (*1 *1 *1 *1) (-5 *1 (-796))) (-1209 (*1 *1 *1 *1) (-5 *1 (-796))) (-2247 (*1 *1 *1) (-5 *1 (-796))) (-1416 (*1 *1 *1 *1) (-5 *1 (-796))) (-1416 (*1 *1 *1) (-5 *1 (-796))))
+(-13 (-1018) (-10 -8 (-15 -4229 ((-1176) $)) (-15 -2353 ($ (-1072))) (-15 -2314 ((-1176) (-1072))) (-15 -2927 ($ (-525))) (-15 -2927 ($ (-1089))) (-15 -2927 ($ (-1072))) (-15 -2927 ($ (-205))) (-15 -3209 ($)) (-15 -2289 ((-525) $)) (-15 -2965 ((-525) $)) (-15 -2289 ((-525))) (-15 -2965 ((-525))) (-15 -3895 ((-525) $)) (-15 -3294 ((-525) $)) (-15 -3694 ($ (-525))) (-15 -2752 ($ (-525))) (-15 -2723 ($ (-525) (-525))) (-15 -3388 ($ $ (-525))) (-15 -3400 ($ $ (-525))) (-15 -1682 ($ $ (-525))) (-15 -3388 ($ $)) (-15 -3400 ($ $)) (-15 -1682 ($ $)) (-15 -3025 ($ $ $)) (-15 -3467 ($ $ $)) (-15 -3025 ($ (-591 $))) (-15 -3467 ($ (-591 $))) (-15 -1259 ($ $ (-591 $))) (-15 -3982 ($ $ (-591 $))) (-15 -3982 ($ $ $ $)) (-15 -1989 ($ $ $)) (-15 -3284 ((-108) $)) (-15 -3164 ($ $ (-591 $))) (-15 -1432 ($ $)) (-15 -3633 ($ $ $)) (-15 -2989 ($ $)) (-15 -3393 ($ (-591 (-591 $)))) (-15 -3883 ($ $ $)) (-15 -3069 ($ $)) (-15 -3069 ($ $ $)) (-15 -2623 ($ $ $)) (-15 -2708 ($ $ $)) (-15 -1545 ($ $ $)) (-15 -3851 ($ $ $)) (-15 -3266 ($ $ (-712))) (-15 -2516 ($ $ $)) (-15 -2718 ($ $ $)) (-15 -3789 ($ $ $)) (-15 -1772 ($ $ $)) (-15 -2098 ($ $ $)) (-15 -1672 ($ $ (-591 $))) (-15 -3515 ($ $ (-591 $))) (-15 -1685 ($ $)) (-15 -2109 ($ $)) (-15 -2109 ($ $ (-712))) (-15 -1777 ($ $)) (-15 -1777 ($ $ (-712))) (-15 -1350 ($ $)) (-15 -3417 ($ $ $)) (-15 -2161 ($ $)) (-15 -2161 ($ $ $)) (-15 -2161 ($ $ $ $)) (-15 -1553 ($ $)) (-15 -1553 ($ $ $)) (-15 -1553 ($ $ $ $)) (-15 -4150 ($ $)) (-15 -4150 ($ $ $)) (-15 -4150 ($ $ $ $)) (-15 -2973 ($ $)) (-15 -2973 ($ (-591 $))) (-15 -1812 ($ $)) (-15 -1812 ($ (-591 $))) (-15 -1668 ($ $)) (-15 -1668 ($ (-591 $))) (-15 -2964 ($ (-591 $))) (-15 -1549 ($ (-591 $))) (-15 -3384 ($ (-591 $))) (-15 -1688 ($ (-591 $))) (-15 -4096 ($ $ $)) (-15 -3008 ($ $ $)) (-15 -4112 ($ $ $)) (-15 -4119 ($ $ $)) (-15 -4126 ($ $ $)) (-15 -4135 ($ $ $)) (-15 -4156 ($ $ $)) (-15 -4164 ($ $ $)) (-15 -4164 ($ $)) (-15 * ($ $ $)) (-15 -4173 ($ $ $)) (-15 ** ($ $ $)) (-15 -2099 ($ $ $)) (-15 -2129 ($ $ $)) (-15 -2110 ($ $ $)) (-15 -2089 ($ $ $)) (-15 -1213 ($ $ $)) (-15 -1209 ($ $ $)) (-15 -2247 ($ $)) (-15 -1416 ($ $ $)) (-15 -1416 ($ $))))
+((-3821 (((-1176) (-591 (-51))) 24)) (-4009 (((-1176) (-1072) (-796)) 14) (((-1176) (-796)) 9) (((-1176) (-1072)) 11)))
+(((-797) (-10 -7 (-15 -4009 ((-1176) (-1072))) (-15 -4009 ((-1176) (-796))) (-15 -4009 ((-1176) (-1072) (-796))) (-15 -3821 ((-1176) (-591 (-51)))))) (T -797))
+((-3821 (*1 *2 *3) (-12 (-5 *3 (-591 (-51))) (-5 *2 (-1176)) (-5 *1 (-797)))) (-4009 (*1 *2 *3 *4) (-12 (-5 *3 (-1072)) (-5 *4 (-796)) (-5 *2 (-1176)) (-5 *1 (-797)))) (-4009 (*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1176)) (-5 *1 (-797)))) (-4009 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-797)))))
+(-10 -7 (-15 -4009 ((-1176) (-1072))) (-15 -4009 ((-1176) (-796))) (-15 -4009 ((-1176) (-1072) (-796))) (-15 -3821 ((-1176) (-591 (-51)))))
+((-3008 (((-108) $ $) NIL)) (-2037 (((-3 $ "failed") (-1089)) 33)) (-3032 (((-712)) 31)) (-3377 (($) NIL)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-3016 (((-854) $) 29)) (-2339 (((-1072) $) 39)) (-2226 (($ (-854)) 28)) (-2047 (((-1036) $) NIL)) (-1408 (((-1089) $) 13) (((-501) $) 19) (((-825 (-357)) $) 26) (((-825 (-525)) $) 22)) (-3022 (((-796) $) 16)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 36)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 35)))
+(((-798 |#1|) (-13 (-782) (-566 (-1089)) (-566 (-501)) (-566 (-825 (-357))) (-566 (-825 (-525))) (-10 -8 (-15 -2037 ((-3 $ "failed") (-1089))))) (-591 (-1089))) (T -798))
+((-2037 (*1 *1 *2) (|partial| -12 (-5 *2 (-1089)) (-5 *1 (-798 *3)) (-14 *3 (-591 *2)))))
+(-13 (-782) (-566 (-1089)) (-566 (-501)) (-566 (-825 (-357))) (-566 (-825 (-525))) (-10 -8 (-15 -2037 ((-3 $ "failed") (-1089)))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-4163 (((-3 $ "failed") $) NIL)) (-2824 (((-108) $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (((-885 |#1|) $) NIL) (($ (-885 |#1|)) NIL) (($ |#1|) NIL (|has| |#1| (-160)))) (-2128 (((-712)) NIL)) (-1474 (((-1176) (-712)) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4096 (((-108) $ $) NIL)) (-4173 (((-3 $ "failed") $ $) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-160))) (($ $ |#1|) NIL (|has| |#1| (-160)))))
+(((-799 |#1| |#2| |#3| |#4|) (-13 (-975) (-10 -8 (IF (|has| |#1| (-160)) (-6 (-37 |#1|)) |%noBranch|) (-15 -3022 ((-885 |#1|) $)) (-15 -3022 ($ (-885 |#1|))) (IF (|has| |#1| (-341)) (-15 -4173 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1474 ((-1176) (-712))))) (-975) (-591 (-1089)) (-591 (-712)) (-712)) (T -799))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-885 *3)) (-5 *1 (-799 *3 *4 *5 *6)) (-4 *3 (-975)) (-14 *4 (-591 (-1089))) (-14 *5 (-591 (-712))) (-14 *6 (-712)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-885 *3)) (-4 *3 (-975)) (-5 *1 (-799 *3 *4 *5 *6)) (-14 *4 (-591 (-1089))) (-14 *5 (-591 (-712))) (-14 *6 (-712)))) (-4173 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-799 *2 *3 *4 *5)) (-4 *2 (-341)) (-4 *2 (-975)) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-712))) (-14 *5 (-712)))) (-1474 (*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1176)) (-5 *1 (-799 *4 *5 *6 *7)) (-4 *4 (-975)) (-14 *5 (-591 (-1089))) (-14 *6 (-591 *3)) (-14 *7 *3))))
+(-13 (-975) (-10 -8 (IF (|has| |#1| (-160)) (-6 (-37 |#1|)) |%noBranch|) (-15 -3022 ((-885 |#1|) $)) (-15 -3022 ($ (-885 |#1|))) (IF (|has| |#1| (-341)) (-15 -4173 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1474 ((-1176) (-712)))))
+((-3419 (((-3 (-161 |#3|) "failed") (-712) (-712) |#2| |#2|) 31)) (-1392 (((-3 (-385 |#3|) "failed") (-712) (-712) |#2| |#2|) 24)))
+(((-800 |#1| |#2| |#3|) (-10 -7 (-15 -1392 ((-3 (-385 |#3|) "failed") (-712) (-712) |#2| |#2|)) (-15 -3419 ((-3 (-161 |#3|) "failed") (-712) (-712) |#2| |#2|))) (-341) (-1162 |#1|) (-1147 |#1|)) (T -800))
+((-3419 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-712)) (-4 *5 (-341)) (-5 *2 (-161 *6)) (-5 *1 (-800 *5 *4 *6)) (-4 *4 (-1162 *5)) (-4 *6 (-1147 *5)))) (-1392 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-712)) (-4 *5 (-341)) (-5 *2 (-385 *6)) (-5 *1 (-800 *5 *4 *6)) (-4 *4 (-1162 *5)) (-4 *6 (-1147 *5)))))
+(-10 -7 (-15 -1392 ((-3 (-385 |#3|) "failed") (-712) (-712) |#2| |#2|)) (-15 -3419 ((-3 (-161 |#3|) "failed") (-712) (-712) |#2| |#2|)))
+((-1392 (((-3 (-385 (-1144 |#2| |#1|)) "failed") (-712) (-712) (-1163 |#1| |#2| |#3|)) 28) (((-3 (-385 (-1144 |#2| |#1|)) "failed") (-712) (-712) (-1163 |#1| |#2| |#3|) (-1163 |#1| |#2| |#3|)) 26)))
+(((-801 |#1| |#2| |#3|) (-10 -7 (-15 -1392 ((-3 (-385 (-1144 |#2| |#1|)) "failed") (-712) (-712) (-1163 |#1| |#2| |#3|) (-1163 |#1| |#2| |#3|))) (-15 -1392 ((-3 (-385 (-1144 |#2| |#1|)) "failed") (-712) (-712) (-1163 |#1| |#2| |#3|)))) (-341) (-1089) |#1|) (T -801))
+((-1392 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-712)) (-5 *4 (-1163 *5 *6 *7)) (-4 *5 (-341)) (-14 *6 (-1089)) (-14 *7 *5) (-5 *2 (-385 (-1144 *6 *5))) (-5 *1 (-801 *5 *6 *7)))) (-1392 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-712)) (-5 *4 (-1163 *5 *6 *7)) (-4 *5 (-341)) (-14 *6 (-1089)) (-14 *7 *5) (-5 *2 (-385 (-1144 *6 *5))) (-5 *1 (-801 *5 *6 *7)))))
+(-10 -7 (-15 -1392 ((-3 (-385 (-1144 |#2| |#1|)) "failed") (-712) (-712) (-1163 |#1| |#2| |#3|) (-1163 |#1| |#2| |#3|))) (-15 -1392 ((-3 (-385 (-1144 |#2| |#1|)) "failed") (-712) (-712) (-1163 |#1| |#2| |#3|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2157 (((-3 $ "failed") $ $) 19)) (-1361 (($ $ (-525)) 62)) (-1947 (((-108) $ $) 59)) (-3798 (($) 17 T CONST)) (-3069 (($ (-1085 (-525)) (-525)) 61)) (-2129 (($ $ $) 55)) (-4163 (((-3 $ "failed") $) 34)) (-4136 (($ $) 64)) (-2110 (($ $ $) 56)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 51)) (-3873 (((-712) $) 69)) (-2824 (((-108) $) 31)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 52)) (-3940 (((-525)) 66)) (-1289 (((-525) $) 65)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2784 (($ $ (-525)) 68)) (-2089 (((-3 $ "failed") $ $) 42)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 50)) (-1712 (((-712) $) 58)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 57)) (-2603 (((-1070 (-525)) $) 70)) (-3571 (($ $) 67)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43)) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 39)) (-2176 (((-525) $ (-525)) 63)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-802 |#1|) (-131) (-525)) (T -802))
+((-2603 (*1 *2 *1) (-12 (-4 *1 (-802 *3)) (-5 *2 (-1070 (-525))))) (-3873 (*1 *2 *1) (-12 (-4 *1 (-802 *3)) (-5 *2 (-712)))) (-2784 (*1 *1 *1 *2) (-12 (-4 *1 (-802 *3)) (-5 *2 (-525)))) (-3571 (*1 *1 *1) (-4 *1 (-802 *2))) (-3940 (*1 *2) (-12 (-4 *1 (-802 *3)) (-5 *2 (-525)))) (-1289 (*1 *2 *1) (-12 (-4 *1 (-802 *3)) (-5 *2 (-525)))) (-4136 (*1 *1 *1) (-4 *1 (-802 *2))) (-2176 (*1 *2 *1 *2) (-12 (-4 *1 (-802 *3)) (-5 *2 (-525)))) (-1361 (*1 *1 *1 *2) (-12 (-4 *1 (-802 *3)) (-5 *2 (-525)))) (-3069 (*1 *1 *2 *3) (-12 (-5 *2 (-1085 (-525))) (-5 *3 (-525)) (-4 *1 (-802 *4)))))
+(-13 (-286) (-138) (-10 -8 (-15 -2603 ((-1070 (-525)) $)) (-15 -3873 ((-712) $)) (-15 -2784 ($ $ (-525))) (-15 -3571 ($ $)) (-15 -3940 ((-525))) (-15 -1289 ((-525) $)) (-15 -4136 ($ $)) (-15 -2176 ((-525) $ (-525))) (-15 -1361 ($ $ (-525))) (-15 -3069 ($ (-1085 (-525)) (-525)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-126) . T) ((-138) . T) ((-565 (-796)) . T) ((-160) . T) ((-269) . T) ((-286) . T) ((-429) . T) ((-517) . T) ((-593 $) . T) ((-659 $) . T) ((-668) . T) ((-853) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1361 (($ $ (-525)) NIL)) (-1947 (((-108) $ $) NIL)) (-3798 (($) NIL T CONST)) (-3069 (($ (-1085 (-525)) (-525)) NIL)) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-4136 (($ $) NIL)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-3873 (((-712) $) NIL)) (-2824 (((-108) $) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3940 (((-525)) NIL)) (-1289 (((-525) $) NIL)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2784 (($ $ (-525)) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2603 (((-1070 (-525)) $) NIL)) (-3571 (($ $) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL)) (-2128 (((-712)) NIL)) (-2495 (((-108) $ $) NIL)) (-2176 (((-525) $ (-525)) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL)))
+(((-803 |#1|) (-802 |#1|) (-525)) (T -803))
+NIL
+(-802 |#1|)
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1508 (((-803 |#1|) $) NIL (|has| (-803 |#1|) (-286)))) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-803 |#1|) (-842)))) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| (-803 |#1|) (-842)))) (-1947 (((-108) $ $) NIL)) (-3329 (((-525) $) NIL (|has| (-803 |#1|) (-761)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-803 |#1|) "failed") $) NIL) (((-3 (-1089) "failed") $) NIL (|has| (-803 |#1|) (-966 (-1089)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| (-803 |#1|) (-966 (-525)))) (((-3 (-525) "failed") $) NIL (|has| (-803 |#1|) (-966 (-525))))) (-3528 (((-803 |#1|) $) NIL) (((-1089) $) NIL (|has| (-803 |#1|) (-966 (-1089)))) (((-385 (-525)) $) NIL (|has| (-803 |#1|) (-966 (-525)))) (((-525) $) NIL (|has| (-803 |#1|) (-966 (-525))))) (-1900 (($ $) NIL) (($ (-525) $) NIL)) (-2129 (($ $ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| (-803 |#1|) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| (-803 |#1|) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-803 |#1|))) (|:| |vec| (-1171 (-803 |#1|)))) (-631 $) (-1171 $)) NIL) (((-631 (-803 |#1|)) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) NIL (|has| (-803 |#1|) (-510)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2134 (((-108) $) NIL (|has| (-803 |#1|) (-761)))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (|has| (-803 |#1|) (-819 (-525)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (|has| (-803 |#1|) (-819 (-357))))) (-2824 (((-108) $) NIL)) (-2368 (($ $) NIL)) (-1738 (((-803 |#1|) $) NIL)) (-2085 (((-3 $ "failed") $) NIL (|has| (-803 |#1|) (-1065)))) (-2732 (((-108) $) NIL (|has| (-803 |#1|) (-761)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3741 (($ $ $) NIL (|has| (-803 |#1|) (-788)))) (-2478 (($ $ $) NIL (|has| (-803 |#1|) (-788)))) (-1340 (($ (-1 (-803 |#1|) (-803 |#1|)) $) NIL)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| (-803 |#1|) (-1065)) CONST)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3093 (($ $) NIL (|has| (-803 |#1|) (-286)))) (-2662 (((-803 |#1|) $) NIL (|has| (-803 |#1|) (-510)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-803 |#1|) (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-803 |#1|) (-842)))) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-4132 (($ $ (-591 (-803 |#1|)) (-591 (-803 |#1|))) NIL (|has| (-803 |#1|) (-288 (-803 |#1|)))) (($ $ (-803 |#1|) (-803 |#1|)) NIL (|has| (-803 |#1|) (-288 (-803 |#1|)))) (($ $ (-273 (-803 |#1|))) NIL (|has| (-803 |#1|) (-288 (-803 |#1|)))) (($ $ (-591 (-273 (-803 |#1|)))) NIL (|has| (-803 |#1|) (-288 (-803 |#1|)))) (($ $ (-591 (-1089)) (-591 (-803 |#1|))) NIL (|has| (-803 |#1|) (-486 (-1089) (-803 |#1|)))) (($ $ (-1089) (-803 |#1|)) NIL (|has| (-803 |#1|) (-486 (-1089) (-803 |#1|))))) (-1712 (((-712) $) NIL)) (-3164 (($ $ (-803 |#1|)) NIL (|has| (-803 |#1|) (-265 (-803 |#1|) (-803 |#1|))))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3266 (($ $) NIL (|has| (-803 |#1|) (-213))) (($ $ (-712)) NIL (|has| (-803 |#1|) (-213))) (($ $ (-1089)) NIL (|has| (-803 |#1|) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-803 |#1|) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-803 |#1|) (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-803 |#1|) (-833 (-1089)))) (($ $ (-1 (-803 |#1|) (-803 |#1|)) (-712)) NIL) (($ $ (-1 (-803 |#1|) (-803 |#1|))) NIL)) (-2966 (($ $) NIL)) (-1754 (((-803 |#1|) $) NIL)) (-1408 (((-825 (-525)) $) NIL (|has| (-803 |#1|) (-566 (-825 (-525))))) (((-825 (-357)) $) NIL (|has| (-803 |#1|) (-566 (-825 (-357))))) (((-501) $) NIL (|has| (-803 |#1|) (-566 (-501)))) (((-357) $) NIL (|has| (-803 |#1|) (-951))) (((-205) $) NIL (|has| (-803 |#1|) (-951)))) (-3185 (((-161 (-385 (-525))) $) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| (-803 |#1|) (-842))))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL) (($ (-803 |#1|)) NIL) (($ (-1089)) NIL (|has| (-803 |#1|) (-966 (-1089))))) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| (-803 |#1|) (-842))) (|has| (-803 |#1|) (-136))))) (-2128 (((-712)) NIL)) (-3862 (((-803 |#1|) $) NIL (|has| (-803 |#1|) (-510)))) (-2495 (((-108) $ $) NIL)) (-2176 (((-385 (-525)) $ (-525)) NIL)) (-1539 (($ $) NIL (|has| (-803 |#1|) (-761)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $) NIL (|has| (-803 |#1|) (-213))) (($ $ (-712)) NIL (|has| (-803 |#1|) (-213))) (($ $ (-1089)) NIL (|has| (-803 |#1|) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-803 |#1|) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-803 |#1|) (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-803 |#1|) (-833 (-1089)))) (($ $ (-1 (-803 |#1|) (-803 |#1|)) (-712)) NIL) (($ $ (-1 (-803 |#1|) (-803 |#1|))) NIL)) (-4135 (((-108) $ $) NIL (|has| (-803 |#1|) (-788)))) (-4119 (((-108) $ $) NIL (|has| (-803 |#1|) (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| (-803 |#1|) (-788)))) (-4112 (((-108) $ $) NIL (|has| (-803 |#1|) (-788)))) (-4173 (($ $ $) NIL) (($ (-803 |#1|) (-803 |#1|)) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ (-803 |#1|) $) NIL) (($ $ (-803 |#1|)) NIL)))
+(((-804 |#1|) (-13 (-923 (-803 |#1|)) (-10 -8 (-15 -2176 ((-385 (-525)) $ (-525))) (-15 -3185 ((-161 (-385 (-525))) $)) (-15 -1900 ($ $)) (-15 -1900 ($ (-525) $)))) (-525)) (T -804))
+((-2176 (*1 *2 *1 *3) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-804 *4)) (-14 *4 *3) (-5 *3 (-525)))) (-3185 (*1 *2 *1) (-12 (-5 *2 (-161 (-385 (-525)))) (-5 *1 (-804 *3)) (-14 *3 (-525)))) (-1900 (*1 *1 *1) (-12 (-5 *1 (-804 *2)) (-14 *2 (-525)))) (-1900 (*1 *1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-804 *3)) (-14 *3 *2))))
+(-13 (-923 (-803 |#1|)) (-10 -8 (-15 -2176 ((-385 (-525)) $ (-525))) (-15 -3185 ((-161 (-385 (-525))) $)) (-15 -1900 ($ $)) (-15 -1900 ($ (-525) $))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1508 ((|#2| $) NIL (|has| |#2| (-286)))) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1947 (((-108) $ $) NIL)) (-3329 (((-525) $) NIL (|has| |#2| (-761)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#2| "failed") $) NIL) (((-3 (-1089) "failed") $) NIL (|has| |#2| (-966 (-1089)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#2| (-966 (-525)))) (((-3 (-525) "failed") $) NIL (|has| |#2| (-966 (-525))))) (-3528 ((|#2| $) NIL) (((-1089) $) NIL (|has| |#2| (-966 (-1089)))) (((-385 (-525)) $) NIL (|has| |#2| (-966 (-525)))) (((-525) $) NIL (|has| |#2| (-966 (-525))))) (-1900 (($ $) 31) (($ (-525) $) 32)) (-2129 (($ $ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) NIL) (((-631 |#2|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) 53)) (-3377 (($) NIL (|has| |#2| (-510)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2134 (((-108) $) NIL (|has| |#2| (-761)))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (|has| |#2| (-819 (-525)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (|has| |#2| (-819 (-357))))) (-2824 (((-108) $) NIL)) (-2368 (($ $) NIL)) (-1738 ((|#2| $) NIL)) (-2085 (((-3 $ "failed") $) NIL (|has| |#2| (-1065)))) (-2732 (((-108) $) NIL (|has| |#2| (-761)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3741 (($ $ $) NIL (|has| |#2| (-788)))) (-2478 (($ $ $) NIL (|has| |#2| (-788)))) (-1340 (($ (-1 |#2| |#2|) $) NIL)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 49)) (-3506 (($) NIL (|has| |#2| (-1065)) CONST)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3093 (($ $) NIL (|has| |#2| (-286)))) (-2662 ((|#2| $) NIL (|has| |#2| (-510)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-4132 (($ $ (-591 |#2|) (-591 |#2|)) NIL (|has| |#2| (-288 |#2|))) (($ $ |#2| |#2|) NIL (|has| |#2| (-288 |#2|))) (($ $ (-273 |#2|)) NIL (|has| |#2| (-288 |#2|))) (($ $ (-591 (-273 |#2|))) NIL (|has| |#2| (-288 |#2|))) (($ $ (-591 (-1089)) (-591 |#2|)) NIL (|has| |#2| (-486 (-1089) |#2|))) (($ $ (-1089) |#2|) NIL (|has| |#2| (-486 (-1089) |#2|)))) (-1712 (((-712) $) NIL)) (-3164 (($ $ |#2|) NIL (|has| |#2| (-265 |#2| |#2|)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3266 (($ $) NIL (|has| |#2| (-213))) (($ $ (-712)) NIL (|has| |#2| (-213))) (($ $ (-1089)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-2966 (($ $) NIL)) (-1754 ((|#2| $) NIL)) (-1408 (((-825 (-525)) $) NIL (|has| |#2| (-566 (-825 (-525))))) (((-825 (-357)) $) NIL (|has| |#2| (-566 (-825 (-357))))) (((-501) $) NIL (|has| |#2| (-566 (-501)))) (((-357) $) NIL (|has| |#2| (-951))) (((-205) $) NIL (|has| |#2| (-951)))) (-3185 (((-161 (-385 (-525))) $) 68)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#2| (-842))))) (-3022 (((-796) $) 87) (($ (-525)) 19) (($ $) NIL) (($ (-385 (-525))) 24) (($ |#2|) 18) (($ (-1089)) NIL (|has| |#2| (-966 (-1089))))) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#2| (-842))) (|has| |#2| (-136))))) (-2128 (((-712)) NIL)) (-3862 ((|#2| $) NIL (|has| |#2| (-510)))) (-2495 (((-108) $ $) NIL)) (-2176 (((-385 (-525)) $ (-525)) 60)) (-1539 (($ $) NIL (|has| |#2| (-761)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) 14 T CONST)) (-4197 (($) 16 T CONST)) (-4196 (($ $) NIL (|has| |#2| (-213))) (($ $ (-712)) NIL (|has| |#2| (-213))) (($ $ (-1089)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-4135 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4096 (((-108) $ $) 35)) (-4126 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4173 (($ $ $) 23) (($ |#2| |#2|) 54)) (-4164 (($ $) 39) (($ $ $) 41)) (-4156 (($ $ $) 37)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) 50)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 42) (($ $ $) 44) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ |#2| $) 55) (($ $ |#2|) NIL)))
+(((-805 |#1| |#2|) (-13 (-923 |#2|) (-10 -8 (-15 -2176 ((-385 (-525)) $ (-525))) (-15 -3185 ((-161 (-385 (-525))) $)) (-15 -1900 ($ $)) (-15 -1900 ($ (-525) $)))) (-525) (-802 |#1|)) (T -805))
+((-2176 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-385 (-525))) (-5 *1 (-805 *4 *5)) (-5 *3 (-525)) (-4 *5 (-802 *4)))) (-3185 (*1 *2 *1) (-12 (-14 *3 (-525)) (-5 *2 (-161 (-385 (-525)))) (-5 *1 (-805 *3 *4)) (-4 *4 (-802 *3)))) (-1900 (*1 *1 *1) (-12 (-14 *2 (-525)) (-5 *1 (-805 *2 *3)) (-4 *3 (-802 *2)))) (-1900 (*1 *1 *2 *1) (-12 (-5 *2 (-525)) (-14 *3 *2) (-5 *1 (-805 *3 *4)) (-4 *4 (-802 *3)))))
+(-13 (-923 |#2|) (-10 -8 (-15 -2176 ((-385 (-525)) $ (-525))) (-15 -3185 ((-161 (-385 (-525))) $)) (-15 -1900 ($ $)) (-15 -1900 ($ (-525) $))))
+((-3008 (((-108) $ $) NIL (-12 (|has| |#1| (-1018)) (|has| |#2| (-1018))))) (-3149 ((|#2| $) 12)) (-2263 (($ |#1| |#2|) 9)) (-2339 (((-1072) $) NIL (-12 (|has| |#1| (-1018)) (|has| |#2| (-1018))))) (-2047 (((-1036) $) NIL (-12 (|has| |#1| (-1018)) (|has| |#2| (-1018))))) (-3066 ((|#1| $) 11)) (-3036 (($ |#1| |#2|) 10)) (-3022 (((-796) $) 18 (-3321 (-12 (|has| |#1| (-565 (-796))) (|has| |#2| (-565 (-796)))) (-12 (|has| |#1| (-1018)) (|has| |#2| (-1018)))))) (-4096 (((-108) $ $) 22 (-12 (|has| |#1| (-1018)) (|has| |#2| (-1018))))))
+(((-806 |#1| |#2|) (-13 (-1125) (-10 -8 (IF (|has| |#1| (-565 (-796))) (IF (|has| |#2| (-565 (-796))) (-6 (-565 (-796))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1018)) (IF (|has| |#2| (-1018)) (-6 (-1018)) |%noBranch|) |%noBranch|) (-15 -2263 ($ |#1| |#2|)) (-15 -3036 ($ |#1| |#2|)) (-15 -3066 (|#1| $)) (-15 -3149 (|#2| $)))) (-1125) (-1125)) (T -806))
+((-2263 (*1 *1 *2 *3) (-12 (-5 *1 (-806 *2 *3)) (-4 *2 (-1125)) (-4 *3 (-1125)))) (-3036 (*1 *1 *2 *3) (-12 (-5 *1 (-806 *2 *3)) (-4 *2 (-1125)) (-4 *3 (-1125)))) (-3066 (*1 *2 *1) (-12 (-4 *2 (-1125)) (-5 *1 (-806 *2 *3)) (-4 *3 (-1125)))) (-3149 (*1 *2 *1) (-12 (-4 *2 (-1125)) (-5 *1 (-806 *3 *2)) (-4 *3 (-1125)))))
+(-13 (-1125) (-10 -8 (IF (|has| |#1| (-565 (-796))) (IF (|has| |#2| (-565 (-796))) (-6 (-565 (-796))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1018)) (IF (|has| |#2| (-1018)) (-6 (-1018)) |%noBranch|) |%noBranch|) (-15 -2263 ($ |#1| |#2|)) (-15 -3036 ($ |#1| |#2|)) (-15 -3066 (|#1| $)) (-15 -3149 (|#2| $))))
+((-3008 (((-108) $ $) NIL)) (-3692 (((-525) $) 15)) (-1252 (($ (-146)) 11)) (-1620 (($ (-146)) 12)) (-2339 (((-1072) $) NIL)) (-2853 (((-146) $) 13)) (-2047 (((-1036) $) NIL)) (-2951 (($ (-146)) 9)) (-3059 (($ (-146)) 8)) (-3022 (((-796) $) 23) (($ (-146)) 16)) (-2709 (($ (-146)) 10)) (-4096 (((-108) $ $) NIL)))
+(((-807) (-13 (-1018) (-10 -8 (-15 -3059 ($ (-146))) (-15 -2951 ($ (-146))) (-15 -2709 ($ (-146))) (-15 -1252 ($ (-146))) (-15 -1620 ($ (-146))) (-15 -2853 ((-146) $)) (-15 -3692 ((-525) $)) (-15 -3022 ($ (-146)))))) (T -807))
+((-3059 (*1 *1 *2) (-12 (-5 *2 (-146)) (-5 *1 (-807)))) (-2951 (*1 *1 *2) (-12 (-5 *2 (-146)) (-5 *1 (-807)))) (-2709 (*1 *1 *2) (-12 (-5 *2 (-146)) (-5 *1 (-807)))) (-1252 (*1 *1 *2) (-12 (-5 *2 (-146)) (-5 *1 (-807)))) (-1620 (*1 *1 *2) (-12 (-5 *2 (-146)) (-5 *1 (-807)))) (-2853 (*1 *2 *1) (-12 (-5 *2 (-146)) (-5 *1 (-807)))) (-3692 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-807)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-146)) (-5 *1 (-807)))))
+(-13 (-1018) (-10 -8 (-15 -3059 ($ (-146))) (-15 -2951 ($ (-146))) (-15 -2709 ($ (-146))) (-15 -1252 ($ (-146))) (-15 -1620 ($ (-146))) (-15 -2853 ((-146) $)) (-15 -3692 ((-525) $)) (-15 -3022 ($ (-146)))))
+((-3022 (((-294 (-525)) (-385 (-885 (-47)))) 23) (((-294 (-525)) (-885 (-47))) 18)))
+(((-808) (-10 -7 (-15 -3022 ((-294 (-525)) (-885 (-47)))) (-15 -3022 ((-294 (-525)) (-385 (-885 (-47))))))) (T -808))
+((-3022 (*1 *2 *3) (-12 (-5 *3 (-385 (-885 (-47)))) (-5 *2 (-294 (-525))) (-5 *1 (-808)))) (-3022 (*1 *2 *3) (-12 (-5 *3 (-885 (-47))) (-5 *2 (-294 (-525))) (-5 *1 (-808)))))
+(-10 -7 (-15 -3022 ((-294 (-525)) (-885 (-47)))) (-15 -3022 ((-294 (-525)) (-385 (-885 (-47))))))
+((-1340 (((-810 |#2|) (-1 |#2| |#1|) (-810 |#1|)) 14)))
+(((-809 |#1| |#2|) (-10 -7 (-15 -1340 ((-810 |#2|) (-1 |#2| |#1|) (-810 |#1|)))) (-1125) (-1125)) (T -809))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-810 *5)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-810 *6)) (-5 *1 (-809 *5 *6)))))
+(-10 -7 (-15 -1340 ((-810 |#2|) (-1 |#2| |#1|) (-810 |#1|))))
+((-3323 (($ |#1| |#1|) 8)) (-4219 ((|#1| $ (-712)) 10)))
+(((-810 |#1|) (-10 -8 (-15 -3323 ($ |#1| |#1|)) (-15 -4219 (|#1| $ (-712)))) (-1125)) (T -810))
+((-4219 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-5 *1 (-810 *2)) (-4 *2 (-1125)))) (-3323 (*1 *1 *2 *2) (-12 (-5 *1 (-810 *2)) (-4 *2 (-1125)))))
+(-10 -8 (-15 -3323 ($ |#1| |#1|)) (-15 -4219 (|#1| $ (-712))))
+((-1340 (((-812 |#2|) (-1 |#2| |#1|) (-812 |#1|)) 14)))
+(((-811 |#1| |#2|) (-10 -7 (-15 -1340 ((-812 |#2|) (-1 |#2| |#1|) (-812 |#1|)))) (-1125) (-1125)) (T -811))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-812 *5)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-812 *6)) (-5 *1 (-811 *5 *6)))))
+(-10 -7 (-15 -1340 ((-812 |#2|) (-1 |#2| |#1|) (-812 |#1|))))
+((-3323 (($ |#1| |#1| |#1|) 8)) (-4219 ((|#1| $ (-712)) 10)))
+(((-812 |#1|) (-10 -8 (-15 -3323 ($ |#1| |#1| |#1|)) (-15 -4219 (|#1| $ (-712)))) (-1125)) (T -812))
+((-4219 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-5 *1 (-812 *2)) (-4 *2 (-1125)))) (-3323 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-812 *2)) (-4 *2 (-1125)))))
+(-10 -8 (-15 -3323 ($ |#1| |#1| |#1|)) (-15 -4219 (|#1| $ (-712))))
+((-3514 (((-591 (-1094)) (-1072)) 9)))
+(((-813) (-10 -7 (-15 -3514 ((-591 (-1094)) (-1072))))) (T -813))
+((-3514 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-591 (-1094))) (-5 *1 (-813)))))
+(-10 -7 (-15 -3514 ((-591 (-1094)) (-1072))))
+((-1340 (((-815 |#2|) (-1 |#2| |#1|) (-815 |#1|)) 14)))
+(((-814 |#1| |#2|) (-10 -7 (-15 -1340 ((-815 |#2|) (-1 |#2| |#1|) (-815 |#1|)))) (-1125) (-1125)) (T -814))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-815 *5)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-815 *6)) (-5 *1 (-814 *5 *6)))))
+(-10 -7 (-15 -1340 ((-815 |#2|) (-1 |#2| |#1|) (-815 |#1|))))
+((-2881 (($ |#1| |#1| |#1|) 8)) (-4219 ((|#1| $ (-712)) 10)))
+(((-815 |#1|) (-10 -8 (-15 -2881 ($ |#1| |#1| |#1|)) (-15 -4219 (|#1| $ (-712)))) (-1125)) (T -815))
+((-4219 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-5 *1 (-815 *2)) (-4 *2 (-1125)))) (-2881 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-815 *2)) (-4 *2 (-1125)))))
+(-10 -8 (-15 -2881 ($ |#1| |#1| |#1|)) (-15 -4219 (|#1| $ (-712))))
+((-3854 (((-1070 (-591 (-525))) (-591 (-525)) (-1070 (-591 (-525)))) 32)) (-3835 (((-1070 (-591 (-525))) (-591 (-525)) (-591 (-525))) 28)) (-2955 (((-1070 (-591 (-525))) (-591 (-525))) 41) (((-1070 (-591 (-525))) (-591 (-525)) (-591 (-525))) 40)) (-2357 (((-1070 (-591 (-525))) (-525)) 42)) (-3838 (((-1070 (-591 (-525))) (-525) (-525)) 22) (((-1070 (-591 (-525))) (-525)) 16) (((-1070 (-591 (-525))) (-525) (-525) (-525)) 12)) (-2637 (((-1070 (-591 (-525))) (-1070 (-591 (-525)))) 26)) (-3228 (((-591 (-525)) (-591 (-525))) 25)))
+(((-816) (-10 -7 (-15 -3838 ((-1070 (-591 (-525))) (-525) (-525) (-525))) (-15 -3838 ((-1070 (-591 (-525))) (-525))) (-15 -3838 ((-1070 (-591 (-525))) (-525) (-525))) (-15 -3228 ((-591 (-525)) (-591 (-525)))) (-15 -2637 ((-1070 (-591 (-525))) (-1070 (-591 (-525))))) (-15 -3835 ((-1070 (-591 (-525))) (-591 (-525)) (-591 (-525)))) (-15 -3854 ((-1070 (-591 (-525))) (-591 (-525)) (-1070 (-591 (-525))))) (-15 -2955 ((-1070 (-591 (-525))) (-591 (-525)) (-591 (-525)))) (-15 -2955 ((-1070 (-591 (-525))) (-591 (-525)))) (-15 -2357 ((-1070 (-591 (-525))) (-525))))) (T -816))
+((-2357 (*1 *2 *3) (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816)) (-5 *3 (-525)))) (-2955 (*1 *2 *3) (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816)) (-5 *3 (-591 (-525))))) (-2955 (*1 *2 *3 *3) (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816)) (-5 *3 (-591 (-525))))) (-3854 (*1 *2 *3 *2) (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *3 (-591 (-525))) (-5 *1 (-816)))) (-3835 (*1 *2 *3 *3) (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816)) (-5 *3 (-591 (-525))))) (-2637 (*1 *2 *2) (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816)))) (-3228 (*1 *2 *2) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-816)))) (-3838 (*1 *2 *3 *3) (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816)) (-5 *3 (-525)))) (-3838 (*1 *2 *3) (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816)) (-5 *3 (-525)))) (-3838 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816)) (-5 *3 (-525)))))
+(-10 -7 (-15 -3838 ((-1070 (-591 (-525))) (-525) (-525) (-525))) (-15 -3838 ((-1070 (-591 (-525))) (-525))) (-15 -3838 ((-1070 (-591 (-525))) (-525) (-525))) (-15 -3228 ((-591 (-525)) (-591 (-525)))) (-15 -2637 ((-1070 (-591 (-525))) (-1070 (-591 (-525))))) (-15 -3835 ((-1070 (-591 (-525))) (-591 (-525)) (-591 (-525)))) (-15 -3854 ((-1070 (-591 (-525))) (-591 (-525)) (-1070 (-591 (-525))))) (-15 -2955 ((-1070 (-591 (-525))) (-591 (-525)) (-591 (-525)))) (-15 -2955 ((-1070 (-591 (-525))) (-591 (-525)))) (-15 -2357 ((-1070 (-591 (-525))) (-525))))
+((-1408 (((-825 (-357)) $) 9 (|has| |#1| (-566 (-825 (-357))))) (((-825 (-525)) $) 8 (|has| |#1| (-566 (-825 (-525)))))))
+(((-817 |#1|) (-131) (-1125)) (T -817))
+NIL
+(-13 (-10 -7 (IF (|has| |t#1| (-566 (-825 (-525)))) (-6 (-566 (-825 (-525)))) |%noBranch|) (IF (|has| |t#1| (-566 (-825 (-357)))) (-6 (-566 (-825 (-357)))) |%noBranch|)))
+(((-566 (-825 (-357))) |has| |#1| (-566 (-825 (-357)))) ((-566 (-825 (-525))) |has| |#1| (-566 (-825 (-525)))))
+((-3008 (((-108) $ $) NIL)) (-1268 (($) 14)) (-2887 (($ (-822 |#1| |#2|) (-822 |#1| |#3|)) 27)) (-4118 (((-822 |#1| |#3|) $) 16)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3075 (((-108) $) 22)) (-2031 (($) 19)) (-3022 (((-796) $) 30)) (-2257 (((-822 |#1| |#2|) $) 15)) (-4096 (((-108) $ $) 25)))
+(((-818 |#1| |#2| |#3|) (-13 (-1018) (-10 -8 (-15 -3075 ((-108) $)) (-15 -2031 ($)) (-15 -1268 ($)) (-15 -2887 ($ (-822 |#1| |#2|) (-822 |#1| |#3|))) (-15 -2257 ((-822 |#1| |#2|) $)) (-15 -4118 ((-822 |#1| |#3|) $)))) (-1018) (-1018) (-611 |#2|)) (T -818))
+((-3075 (*1 *2 *1) (-12 (-4 *4 (-1018)) (-5 *2 (-108)) (-5 *1 (-818 *3 *4 *5)) (-4 *3 (-1018)) (-4 *5 (-611 *4)))) (-2031 (*1 *1) (-12 (-4 *3 (-1018)) (-5 *1 (-818 *2 *3 *4)) (-4 *2 (-1018)) (-4 *4 (-611 *3)))) (-1268 (*1 *1) (-12 (-4 *3 (-1018)) (-5 *1 (-818 *2 *3 *4)) (-4 *2 (-1018)) (-4 *4 (-611 *3)))) (-2887 (*1 *1 *2 *3) (-12 (-5 *2 (-822 *4 *5)) (-5 *3 (-822 *4 *6)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-611 *5)) (-5 *1 (-818 *4 *5 *6)))) (-2257 (*1 *2 *1) (-12 (-4 *4 (-1018)) (-5 *2 (-822 *3 *4)) (-5 *1 (-818 *3 *4 *5)) (-4 *3 (-1018)) (-4 *5 (-611 *4)))) (-4118 (*1 *2 *1) (-12 (-4 *4 (-1018)) (-5 *2 (-822 *3 *5)) (-5 *1 (-818 *3 *4 *5)) (-4 *3 (-1018)) (-4 *5 (-611 *4)))))
+(-13 (-1018) (-10 -8 (-15 -3075 ((-108) $)) (-15 -2031 ($)) (-15 -1268 ($)) (-15 -2887 ($ (-822 |#1| |#2|) (-822 |#1| |#3|))) (-15 -2257 ((-822 |#1| |#2|) $)) (-15 -4118 ((-822 |#1| |#3|) $))))
+((-3008 (((-108) $ $) 7)) (-2011 (((-822 |#1| $) $ (-825 |#1|) (-822 |#1| $)) 13)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4096 (((-108) $ $) 6)))
+(((-819 |#1|) (-131) (-1018)) (T -819))
+((-2011 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-822 *4 *1)) (-5 *3 (-825 *4)) (-4 *1 (-819 *4)) (-4 *4 (-1018)))))
+(-13 (-1018) (-10 -8 (-15 -2011 ((-822 |t#1| $) $ (-825 |t#1|) (-822 |t#1| $)))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-1709 (((-108) (-591 |#2|) |#3|) 23) (((-108) |#2| |#3|) 18)) (-1435 (((-822 |#1| |#2|) |#2| |#3|) 43 (-12 (-2247 (|has| |#2| (-966 (-1089)))) (-2247 (|has| |#2| (-975))))) (((-591 (-273 (-885 |#2|))) |#2| |#3|) 42 (-12 (|has| |#2| (-975)) (-2247 (|has| |#2| (-966 (-1089)))))) (((-591 (-273 |#2|)) |#2| |#3|) 35 (|has| |#2| (-966 (-1089)))) (((-818 |#1| |#2| (-591 |#2|)) (-591 |#2|) |#3|) 21)))
+(((-820 |#1| |#2| |#3|) (-10 -7 (-15 -1709 ((-108) |#2| |#3|)) (-15 -1709 ((-108) (-591 |#2|) |#3|)) (-15 -1435 ((-818 |#1| |#2| (-591 |#2|)) (-591 |#2|) |#3|)) (IF (|has| |#2| (-966 (-1089))) (-15 -1435 ((-591 (-273 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-975)) (-15 -1435 ((-591 (-273 (-885 |#2|))) |#2| |#3|)) (-15 -1435 ((-822 |#1| |#2|) |#2| |#3|))))) (-1018) (-819 |#1|) (-566 (-825 |#1|))) (T -820))
+((-1435 (*1 *2 *3 *4) (-12 (-4 *5 (-1018)) (-5 *2 (-822 *5 *3)) (-5 *1 (-820 *5 *3 *4)) (-2247 (-4 *3 (-966 (-1089)))) (-2247 (-4 *3 (-975))) (-4 *3 (-819 *5)) (-4 *4 (-566 (-825 *5))))) (-1435 (*1 *2 *3 *4) (-12 (-4 *5 (-1018)) (-5 *2 (-591 (-273 (-885 *3)))) (-5 *1 (-820 *5 *3 *4)) (-4 *3 (-975)) (-2247 (-4 *3 (-966 (-1089)))) (-4 *3 (-819 *5)) (-4 *4 (-566 (-825 *5))))) (-1435 (*1 *2 *3 *4) (-12 (-4 *5 (-1018)) (-5 *2 (-591 (-273 *3))) (-5 *1 (-820 *5 *3 *4)) (-4 *3 (-966 (-1089))) (-4 *3 (-819 *5)) (-4 *4 (-566 (-825 *5))))) (-1435 (*1 *2 *3 *4) (-12 (-4 *5 (-1018)) (-4 *6 (-819 *5)) (-5 *2 (-818 *5 *6 (-591 *6))) (-5 *1 (-820 *5 *6 *4)) (-5 *3 (-591 *6)) (-4 *4 (-566 (-825 *5))))) (-1709 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *6)) (-4 *6 (-819 *5)) (-4 *5 (-1018)) (-5 *2 (-108)) (-5 *1 (-820 *5 *6 *4)) (-4 *4 (-566 (-825 *5))))) (-1709 (*1 *2 *3 *4) (-12 (-4 *5 (-1018)) (-5 *2 (-108)) (-5 *1 (-820 *5 *3 *4)) (-4 *3 (-819 *5)) (-4 *4 (-566 (-825 *5))))))
+(-10 -7 (-15 -1709 ((-108) |#2| |#3|)) (-15 -1709 ((-108) (-591 |#2|) |#3|)) (-15 -1435 ((-818 |#1| |#2| (-591 |#2|)) (-591 |#2|) |#3|)) (IF (|has| |#2| (-966 (-1089))) (-15 -1435 ((-591 (-273 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-975)) (-15 -1435 ((-591 (-273 (-885 |#2|))) |#2| |#3|)) (-15 -1435 ((-822 |#1| |#2|) |#2| |#3|)))))
+((-1340 (((-822 |#1| |#3|) (-1 |#3| |#2|) (-822 |#1| |#2|)) 22)))
+(((-821 |#1| |#2| |#3|) (-10 -7 (-15 -1340 ((-822 |#1| |#3|) (-1 |#3| |#2|) (-822 |#1| |#2|)))) (-1018) (-1018) (-1018)) (T -821))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-822 *5 *6)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-822 *5 *7)) (-5 *1 (-821 *5 *6 *7)))))
+(-10 -7 (-15 -1340 ((-822 |#1| |#3|) (-1 |#3| |#2|) (-822 |#1| |#2|))))
+((-3008 (((-108) $ $) NIL)) (-1414 (($ $ $) 39)) (-3663 (((-3 (-108) "failed") $ (-825 |#1|)) 36)) (-1268 (($) 12)) (-2339 (((-1072) $) NIL)) (-2313 (($ (-825 |#1|) |#2| $) 20)) (-2047 (((-1036) $) NIL)) (-2408 (((-3 |#2| "failed") (-825 |#1|) $) 50)) (-3075 (((-108) $) 15)) (-2031 (($) 13)) (-1434 (((-591 (-2 (|:| -2019 (-1089)) (|:| -1221 |#2|))) $) 25)) (-3036 (($ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 |#2|)))) 23)) (-3022 (((-796) $) 44)) (-2914 (($ (-825 |#1|) |#2| $ |#2|) 48)) (-3599 (($ (-825 |#1|) |#2| $) 47)) (-4096 (((-108) $ $) 41)))
+(((-822 |#1| |#2|) (-13 (-1018) (-10 -8 (-15 -3075 ((-108) $)) (-15 -2031 ($)) (-15 -1268 ($)) (-15 -1414 ($ $ $)) (-15 -2408 ((-3 |#2| "failed") (-825 |#1|) $)) (-15 -3599 ($ (-825 |#1|) |#2| $)) (-15 -2313 ($ (-825 |#1|) |#2| $)) (-15 -2914 ($ (-825 |#1|) |#2| $ |#2|)) (-15 -1434 ((-591 (-2 (|:| -2019 (-1089)) (|:| -1221 |#2|))) $)) (-15 -3036 ($ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 |#2|))))) (-15 -3663 ((-3 (-108) "failed") $ (-825 |#1|))))) (-1018) (-1018)) (T -822))
+((-3075 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-822 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018)))) (-2031 (*1 *1) (-12 (-5 *1 (-822 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))) (-1268 (*1 *1) (-12 (-5 *1 (-822 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))) (-1414 (*1 *1 *1 *1) (-12 (-5 *1 (-822 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))) (-2408 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-825 *4)) (-4 *4 (-1018)) (-4 *2 (-1018)) (-5 *1 (-822 *4 *2)))) (-3599 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-825 *4)) (-4 *4 (-1018)) (-5 *1 (-822 *4 *3)) (-4 *3 (-1018)))) (-2313 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-825 *4)) (-4 *4 (-1018)) (-5 *1 (-822 *4 *3)) (-4 *3 (-1018)))) (-2914 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-825 *4)) (-4 *4 (-1018)) (-5 *1 (-822 *4 *3)) (-4 *3 (-1018)))) (-1434 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 *4)))) (-5 *1 (-822 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018)))) (-3036 (*1 *1 *2) (-12 (-5 *2 (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 *4)))) (-4 *4 (-1018)) (-5 *1 (-822 *3 *4)) (-4 *3 (-1018)))) (-3663 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-825 *4)) (-4 *4 (-1018)) (-5 *2 (-108)) (-5 *1 (-822 *4 *5)) (-4 *5 (-1018)))))
+(-13 (-1018) (-10 -8 (-15 -3075 ((-108) $)) (-15 -2031 ($)) (-15 -1268 ($)) (-15 -1414 ($ $ $)) (-15 -2408 ((-3 |#2| "failed") (-825 |#1|) $)) (-15 -3599 ($ (-825 |#1|) |#2| $)) (-15 -2313 ($ (-825 |#1|) |#2| $)) (-15 -2914 ($ (-825 |#1|) |#2| $ |#2|)) (-15 -1434 ((-591 (-2 (|:| -2019 (-1089)) (|:| -1221 |#2|))) $)) (-15 -3036 ($ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 |#2|))))) (-15 -3663 ((-3 (-108) "failed") $ (-825 |#1|)))))
+((-2819 (((-825 |#1|) (-825 |#1|) (-591 (-1089)) (-1 (-108) (-591 |#2|))) 32) (((-825 |#1|) (-825 |#1|) (-591 (-1 (-108) |#2|))) 43) (((-825 |#1|) (-825 |#1|) (-1 (-108) |#2|)) 35)) (-3663 (((-108) (-591 |#2|) (-825 |#1|)) 40) (((-108) |#2| (-825 |#1|)) 36)) (-3201 (((-1 (-108) |#2|) (-825 |#1|)) 16)) (-3413 (((-591 |#2|) (-825 |#1|)) 24)) (-1229 (((-825 |#1|) (-825 |#1|) |#2|) 20)))
+(((-823 |#1| |#2|) (-10 -7 (-15 -2819 ((-825 |#1|) (-825 |#1|) (-1 (-108) |#2|))) (-15 -2819 ((-825 |#1|) (-825 |#1|) (-591 (-1 (-108) |#2|)))) (-15 -2819 ((-825 |#1|) (-825 |#1|) (-591 (-1089)) (-1 (-108) (-591 |#2|)))) (-15 -3201 ((-1 (-108) |#2|) (-825 |#1|))) (-15 -3663 ((-108) |#2| (-825 |#1|))) (-15 -3663 ((-108) (-591 |#2|) (-825 |#1|))) (-15 -1229 ((-825 |#1|) (-825 |#1|) |#2|)) (-15 -3413 ((-591 |#2|) (-825 |#1|)))) (-1018) (-1125)) (T -823))
+((-3413 (*1 *2 *3) (-12 (-5 *3 (-825 *4)) (-4 *4 (-1018)) (-5 *2 (-591 *5)) (-5 *1 (-823 *4 *5)) (-4 *5 (-1125)))) (-1229 (*1 *2 *2 *3) (-12 (-5 *2 (-825 *4)) (-4 *4 (-1018)) (-5 *1 (-823 *4 *3)) (-4 *3 (-1125)))) (-3663 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *6)) (-5 *4 (-825 *5)) (-4 *5 (-1018)) (-4 *6 (-1125)) (-5 *2 (-108)) (-5 *1 (-823 *5 *6)))) (-3663 (*1 *2 *3 *4) (-12 (-5 *4 (-825 *5)) (-4 *5 (-1018)) (-5 *2 (-108)) (-5 *1 (-823 *5 *3)) (-4 *3 (-1125)))) (-3201 (*1 *2 *3) (-12 (-5 *3 (-825 *4)) (-4 *4 (-1018)) (-5 *2 (-1 (-108) *5)) (-5 *1 (-823 *4 *5)) (-4 *5 (-1125)))) (-2819 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-825 *5)) (-5 *3 (-591 (-1089))) (-5 *4 (-1 (-108) (-591 *6))) (-4 *5 (-1018)) (-4 *6 (-1125)) (-5 *1 (-823 *5 *6)))) (-2819 (*1 *2 *2 *3) (-12 (-5 *2 (-825 *4)) (-5 *3 (-591 (-1 (-108) *5))) (-4 *4 (-1018)) (-4 *5 (-1125)) (-5 *1 (-823 *4 *5)))) (-2819 (*1 *2 *2 *3) (-12 (-5 *2 (-825 *4)) (-5 *3 (-1 (-108) *5)) (-4 *4 (-1018)) (-4 *5 (-1125)) (-5 *1 (-823 *4 *5)))))
+(-10 -7 (-15 -2819 ((-825 |#1|) (-825 |#1|) (-1 (-108) |#2|))) (-15 -2819 ((-825 |#1|) (-825 |#1|) (-591 (-1 (-108) |#2|)))) (-15 -2819 ((-825 |#1|) (-825 |#1|) (-591 (-1089)) (-1 (-108) (-591 |#2|)))) (-15 -3201 ((-1 (-108) |#2|) (-825 |#1|))) (-15 -3663 ((-108) |#2| (-825 |#1|))) (-15 -3663 ((-108) (-591 |#2|) (-825 |#1|))) (-15 -1229 ((-825 |#1|) (-825 |#1|) |#2|)) (-15 -3413 ((-591 |#2|) (-825 |#1|))))
+((-1340 (((-825 |#2|) (-1 |#2| |#1|) (-825 |#1|)) 19)))
+(((-824 |#1| |#2|) (-10 -7 (-15 -1340 ((-825 |#2|) (-1 |#2| |#1|) (-825 |#1|)))) (-1018) (-1018)) (T -824))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-825 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-825 *6)) (-5 *1 (-824 *5 *6)))))
+(-10 -7 (-15 -1340 ((-825 |#2|) (-1 |#2| |#1|) (-825 |#1|))))
+((-3008 (((-108) $ $) NIL)) (-2660 (($ $ (-591 (-51))) 64)) (-1507 (((-591 $) $) 118)) (-4016 (((-2 (|:| |var| (-591 (-1089))) (|:| |pred| (-51))) $) 24)) (-1896 (((-108) $) 30)) (-1475 (($ $ (-591 (-1089)) (-51)) 25)) (-2765 (($ $ (-591 (-51))) 63)) (-1251 (((-3 |#1| "failed") $) 61) (((-3 (-1089) "failed") $) 140)) (-3528 ((|#1| $) 58) (((-1089) $) NIL)) (-1648 (($ $) 108)) (-3080 (((-108) $) 47)) (-3553 (((-591 (-51)) $) 45)) (-2073 (($ (-1089) (-108) (-108) (-108)) 65)) (-1339 (((-3 (-591 $) "failed") (-591 $)) 72)) (-3000 (((-108) $) 50)) (-4121 (((-108) $) 49)) (-2339 (((-1072) $) NIL)) (-3376 (((-3 (-591 $) "failed") $) 36)) (-2908 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 43)) (-3877 (((-3 (-2 (|:| |val| $) (|:| -2008 $)) "failed") $) 83)) (-2010 (((-3 (-591 $) "failed") $) 33)) (-2829 (((-3 (-591 $) "failed") $ (-110)) 107) (((-3 (-2 (|:| -4157 (-110)) (|:| |arg| (-591 $))) "failed") $) 95)) (-3653 (((-3 (-591 $) "failed") $) 37)) (-2292 (((-3 (-2 (|:| |val| $) (|:| -2008 (-712))) "failed") $) 40)) (-3009 (((-108) $) 29)) (-2047 (((-1036) $) NIL)) (-3729 (((-108) $) 21)) (-2216 (((-108) $) 46)) (-1579 (((-591 (-51)) $) 111)) (-3622 (((-108) $) 48)) (-3164 (($ (-110) (-591 $)) 92)) (-1326 (((-712) $) 28)) (-3199 (($ $) 62)) (-1408 (($ (-591 $)) 59)) (-1246 (((-108) $) 26)) (-3022 (((-796) $) 53) (($ |#1|) 18) (($ (-1089)) 66)) (-1229 (($ $ (-51)) 110)) (-4191 (($) 91 T CONST)) (-4197 (($) 73 T CONST)) (-4096 (((-108) $ $) 79)) (-4173 (($ $ $) 100)) (-4156 (($ $ $) 104)) (** (($ $ (-712)) 99) (($ $ $) 54)) (* (($ $ $) 105)))
+(((-825 |#1|) (-13 (-1018) (-966 |#1|) (-966 (-1089)) (-10 -8 (-15 0 ($) -2058) (-15 1 ($) -2058) (-15 -2010 ((-3 (-591 $) "failed") $)) (-15 -3376 ((-3 (-591 $) "failed") $)) (-15 -2829 ((-3 (-591 $) "failed") $ (-110))) (-15 -2829 ((-3 (-2 (|:| -4157 (-110)) (|:| |arg| (-591 $))) "failed") $)) (-15 -2292 ((-3 (-2 (|:| |val| $) (|:| -2008 (-712))) "failed") $)) (-15 -2908 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -3653 ((-3 (-591 $) "failed") $)) (-15 -3877 ((-3 (-2 (|:| |val| $) (|:| -2008 $)) "failed") $)) (-15 -3164 ($ (-110) (-591 $))) (-15 -4156 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-712))) (-15 ** ($ $ $)) (-15 -4173 ($ $ $)) (-15 -1326 ((-712) $)) (-15 -1408 ($ (-591 $))) (-15 -3199 ($ $)) (-15 -3009 ((-108) $)) (-15 -3080 ((-108) $)) (-15 -1896 ((-108) $)) (-15 -1246 ((-108) $)) (-15 -3622 ((-108) $)) (-15 -4121 ((-108) $)) (-15 -3000 ((-108) $)) (-15 -2216 ((-108) $)) (-15 -3553 ((-591 (-51)) $)) (-15 -2765 ($ $ (-591 (-51)))) (-15 -2660 ($ $ (-591 (-51)))) (-15 -2073 ($ (-1089) (-108) (-108) (-108))) (-15 -1475 ($ $ (-591 (-1089)) (-51))) (-15 -4016 ((-2 (|:| |var| (-591 (-1089))) (|:| |pred| (-51))) $)) (-15 -3729 ((-108) $)) (-15 -1648 ($ $)) (-15 -1229 ($ $ (-51))) (-15 -1579 ((-591 (-51)) $)) (-15 -1507 ((-591 $) $)) (-15 -1339 ((-3 (-591 $) "failed") (-591 $))))) (-1018)) (T -825))
+((-4191 (*1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018)))) (-4197 (*1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018)))) (-2010 (*1 *2 *1) (|partial| -12 (-5 *2 (-591 (-825 *3))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-3376 (*1 *2 *1) (|partial| -12 (-5 *2 (-591 (-825 *3))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-2829 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-110)) (-5 *2 (-591 (-825 *4))) (-5 *1 (-825 *4)) (-4 *4 (-1018)))) (-2829 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -4157 (-110)) (|:| |arg| (-591 (-825 *3))))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-2292 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-825 *3)) (|:| -2008 (-712)))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-2908 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-825 *3)) (|:| |den| (-825 *3)))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-3653 (*1 *2 *1) (|partial| -12 (-5 *2 (-591 (-825 *3))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-3877 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-825 *3)) (|:| -2008 (-825 *3)))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-3164 (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-591 (-825 *4))) (-5 *1 (-825 *4)) (-4 *4 (-1018)))) (-4156 (*1 *1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (** (*1 *1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018)))) (-4173 (*1 *1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018)))) (-1326 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-1408 (*1 *1 *2) (-12 (-5 *2 (-591 (-825 *3))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-3199 (*1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018)))) (-3009 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-3080 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-1896 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-1246 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-3622 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-4121 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-3000 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-2216 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-3553 (*1 *2 *1) (-12 (-5 *2 (-591 (-51))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-2765 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-51))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-2660 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-51))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-2073 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-108)) (-5 *1 (-825 *4)) (-4 *4 (-1018)))) (-1475 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 (-1089))) (-5 *3 (-51)) (-5 *1 (-825 *4)) (-4 *4 (-1018)))) (-4016 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-591 (-1089))) (|:| |pred| (-51)))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-3729 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-1648 (*1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018)))) (-1229 (*1 *1 *1 *2) (-12 (-5 *2 (-51)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-1579 (*1 *2 *1) (-12 (-5 *2 (-591 (-51))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-1507 (*1 *2 *1) (-12 (-5 *2 (-591 (-825 *3))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))) (-1339 (*1 *2 *2) (|partial| -12 (-5 *2 (-591 (-825 *3))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))))
+(-13 (-1018) (-966 |#1|) (-966 (-1089)) (-10 -8 (-15 (-4191) ($) -2058) (-15 (-4197) ($) -2058) (-15 -2010 ((-3 (-591 $) "failed") $)) (-15 -3376 ((-3 (-591 $) "failed") $)) (-15 -2829 ((-3 (-591 $) "failed") $ (-110))) (-15 -2829 ((-3 (-2 (|:| -4157 (-110)) (|:| |arg| (-591 $))) "failed") $)) (-15 -2292 ((-3 (-2 (|:| |val| $) (|:| -2008 (-712))) "failed") $)) (-15 -2908 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -3653 ((-3 (-591 $) "failed") $)) (-15 -3877 ((-3 (-2 (|:| |val| $) (|:| -2008 $)) "failed") $)) (-15 -3164 ($ (-110) (-591 $))) (-15 -4156 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-712))) (-15 ** ($ $ $)) (-15 -4173 ($ $ $)) (-15 -1326 ((-712) $)) (-15 -1408 ($ (-591 $))) (-15 -3199 ($ $)) (-15 -3009 ((-108) $)) (-15 -3080 ((-108) $)) (-15 -1896 ((-108) $)) (-15 -1246 ((-108) $)) (-15 -3622 ((-108) $)) (-15 -4121 ((-108) $)) (-15 -3000 ((-108) $)) (-15 -2216 ((-108) $)) (-15 -3553 ((-591 (-51)) $)) (-15 -2765 ($ $ (-591 (-51)))) (-15 -2660 ($ $ (-591 (-51)))) (-15 -2073 ($ (-1089) (-108) (-108) (-108))) (-15 -1475 ($ $ (-591 (-1089)) (-51))) (-15 -4016 ((-2 (|:| |var| (-591 (-1089))) (|:| |pred| (-51))) $)) (-15 -3729 ((-108) $)) (-15 -1648 ($ $)) (-15 -1229 ($ $ (-51))) (-15 -1579 ((-591 (-51)) $)) (-15 -1507 ((-591 $) $)) (-15 -1339 ((-3 (-591 $) "failed") (-591 $)))))
+((-3008 (((-108) $ $) NIL)) (-3531 (((-591 |#1|) $) 16)) (-2600 (((-108) $) 38)) (-1251 (((-3 (-616 |#1|) "failed") $) 43)) (-3528 (((-616 |#1|) $) 41)) (-3078 (($ $) 18)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-1657 (((-712) $) 46)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3066 (((-616 |#1|) $) 17)) (-3022 (((-796) $) 37) (($ (-616 |#1|)) 21) (((-760 |#1|) $) 27) (($ |#1|) 20)) (-4197 (($) 8 T CONST)) (-1650 (((-591 (-616 |#1|)) $) 23)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 11)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 49)))
+(((-826 |#1|) (-13 (-788) (-966 (-616 |#1|)) (-10 -8 (-15 1 ($) -2058) (-15 -3022 ((-760 |#1|) $)) (-15 -3022 ($ |#1|)) (-15 -3066 ((-616 |#1|) $)) (-15 -1657 ((-712) $)) (-15 -1650 ((-591 (-616 |#1|)) $)) (-15 -3078 ($ $)) (-15 -2600 ((-108) $)) (-15 -3531 ((-591 |#1|) $)))) (-788)) (T -826))
+((-4197 (*1 *1) (-12 (-5 *1 (-826 *2)) (-4 *2 (-788)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-760 *3)) (-5 *1 (-826 *3)) (-4 *3 (-788)))) (-3022 (*1 *1 *2) (-12 (-5 *1 (-826 *2)) (-4 *2 (-788)))) (-3066 (*1 *2 *1) (-12 (-5 *2 (-616 *3)) (-5 *1 (-826 *3)) (-4 *3 (-788)))) (-1657 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-826 *3)) (-4 *3 (-788)))) (-1650 (*1 *2 *1) (-12 (-5 *2 (-591 (-616 *3))) (-5 *1 (-826 *3)) (-4 *3 (-788)))) (-3078 (*1 *1 *1) (-12 (-5 *1 (-826 *2)) (-4 *2 (-788)))) (-2600 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-826 *3)) (-4 *3 (-788)))) (-3531 (*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-826 *3)) (-4 *3 (-788)))))
+(-13 (-788) (-966 (-616 |#1|)) (-10 -8 (-15 (-4197) ($) -2058) (-15 -3022 ((-760 |#1|) $)) (-15 -3022 ($ |#1|)) (-15 -3066 ((-616 |#1|) $)) (-15 -1657 ((-712) $)) (-15 -1650 ((-591 (-616 |#1|)) $)) (-15 -3078 ($ $)) (-15 -2600 ((-108) $)) (-15 -3531 ((-591 |#1|) $))))
+((-1489 ((|#1| |#1| |#1|) 19)))
+(((-827 |#1| |#2|) (-10 -7 (-15 -1489 (|#1| |#1| |#1|))) (-1147 |#2|) (-975)) (T -827))
+((-1489 (*1 *2 *2 *2) (-12 (-4 *3 (-975)) (-5 *1 (-827 *2 *3)) (-4 *2 (-1147 *3)))))
+(-10 -7 (-15 -1489 (|#1| |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-2432 (((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205)))) 14)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-2276 (((-964) (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205)))) 13)) (-4096 (((-108) $ $) 6)))
+(((-828) (-131)) (T -828))
+((-2432 (*1 *2 *3 *4) (-12 (-4 *1 (-828)) (-5 *3 (-987)) (-5 *4 (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205)))) (-5 *2 (-2 (|:| -2432 (-357)) (|:| |explanations| (-1072)))))) (-2276 (*1 *2 *3) (-12 (-4 *1 (-828)) (-5 *3 (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205)))) (-5 *2 (-964)))))
+(-13 (-1018) (-10 -7 (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))) (-987) (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205))))) (-15 -2276 ((-964) (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205)))))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-2187 ((|#1| |#1| (-712)) 24)) (-3517 (((-3 |#1| "failed") |#1| |#1|) 22)) (-3702 (((-3 (-2 (|:| -3388 |#1|) (|:| -3400 |#1|)) "failed") |#1| (-712) (-712)) 27) (((-591 |#1|) |#1|) 29)))
+(((-829 |#1| |#2|) (-10 -7 (-15 -3702 ((-591 |#1|) |#1|)) (-15 -3702 ((-3 (-2 (|:| -3388 |#1|) (|:| -3400 |#1|)) "failed") |#1| (-712) (-712))) (-15 -3517 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2187 (|#1| |#1| (-712)))) (-1147 |#2|) (-341)) (T -829))
+((-2187 (*1 *2 *2 *3) (-12 (-5 *3 (-712)) (-4 *4 (-341)) (-5 *1 (-829 *2 *4)) (-4 *2 (-1147 *4)))) (-3517 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-341)) (-5 *1 (-829 *2 *3)) (-4 *2 (-1147 *3)))) (-3702 (*1 *2 *3 *4 *4) (|partial| -12 (-5 *4 (-712)) (-4 *5 (-341)) (-5 *2 (-2 (|:| -3388 *3) (|:| -3400 *3))) (-5 *1 (-829 *3 *5)) (-4 *3 (-1147 *5)))) (-3702 (*1 *2 *3) (-12 (-4 *4 (-341)) (-5 *2 (-591 *3)) (-5 *1 (-829 *3 *4)) (-4 *3 (-1147 *4)))))
+(-10 -7 (-15 -3702 ((-591 |#1|) |#1|)) (-15 -3702 ((-3 (-2 (|:| -3388 |#1|) (|:| -3400 |#1|)) "failed") |#1| (-712) (-712))) (-15 -3517 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2187 (|#1| |#1| (-712))))
+((-4039 (((-964) (-357) (-357) (-357) (-357) (-712) (-712) (-591 (-294 (-357))) (-591 (-591 (-294 (-357)))) (-1072)) 96) (((-964) (-357) (-357) (-357) (-357) (-712) (-712) (-591 (-294 (-357))) (-591 (-591 (-294 (-357)))) (-1072) (-205)) 91) (((-964) (-831) (-987)) 83) (((-964) (-831)) 84)) (-2432 (((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-831) (-987)) 59) (((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-831)) 61)))
+(((-830) (-10 -7 (-15 -4039 ((-964) (-831))) (-15 -4039 ((-964) (-831) (-987))) (-15 -4039 ((-964) (-357) (-357) (-357) (-357) (-712) (-712) (-591 (-294 (-357))) (-591 (-591 (-294 (-357)))) (-1072) (-205))) (-15 -4039 ((-964) (-357) (-357) (-357) (-357) (-712) (-712) (-591 (-294 (-357))) (-591 (-591 (-294 (-357)))) (-1072))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-831))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-831) (-987))))) (T -830))
+((-2432 (*1 *2 *3 *4) (-12 (-5 *3 (-831)) (-5 *4 (-987)) (-5 *2 (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))))) (-5 *1 (-830)))) (-2432 (*1 *2 *3) (-12 (-5 *3 (-831)) (-5 *2 (-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072))))) (-5 *1 (-830)))) (-4039 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7) (-12 (-5 *4 (-712)) (-5 *6 (-591 (-591 (-294 *3)))) (-5 *7 (-1072)) (-5 *5 (-591 (-294 (-357)))) (-5 *3 (-357)) (-5 *2 (-964)) (-5 *1 (-830)))) (-4039 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8) (-12 (-5 *4 (-712)) (-5 *6 (-591 (-591 (-294 *3)))) (-5 *7 (-1072)) (-5 *8 (-205)) (-5 *5 (-591 (-294 (-357)))) (-5 *3 (-357)) (-5 *2 (-964)) (-5 *1 (-830)))) (-4039 (*1 *2 *3 *4) (-12 (-5 *3 (-831)) (-5 *4 (-987)) (-5 *2 (-964)) (-5 *1 (-830)))) (-4039 (*1 *2 *3) (-12 (-5 *3 (-831)) (-5 *2 (-964)) (-5 *1 (-830)))))
+(-10 -7 (-15 -4039 ((-964) (-831))) (-15 -4039 ((-964) (-831) (-987))) (-15 -4039 ((-964) (-357) (-357) (-357) (-357) (-712) (-712) (-591 (-294 (-357))) (-591 (-591 (-294 (-357)))) (-1072) (-205))) (-15 -4039 ((-964) (-357) (-357) (-357) (-357) (-712) (-712) (-591 (-294 (-357))) (-591 (-591 (-294 (-357)))) (-1072))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-831))) (-15 -2432 ((-2 (|:| -2432 (-357)) (|:| -2400 (-1072)) (|:| |explanations| (-591 (-1072)))) (-831) (-987))))
+((-3008 (((-108) $ $) NIL)) (-3528 (((-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205))) $) 19)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 21) (($ (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205)))) 18)) (-4096 (((-108) $ $) NIL)))
+(((-831) (-13 (-1018) (-10 -8 (-15 -3022 ($ (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205))))) (-15 -3022 ((-796) $)) (-15 -3528 ((-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205))) $))))) (T -831))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-831)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205)))) (-5 *1 (-831)))) (-3528 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205)))) (-5 *1 (-831)))))
+(-13 (-1018) (-10 -8 (-15 -3022 ($ (-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205))))) (-15 -3022 ((-796) $)) (-15 -3528 ((-2 (|:| |pde| (-591 (-294 (-205)))) (|:| |constraints| (-591 (-2 (|:| |start| (-205)) (|:| |finish| (-205)) (|:| |grid| (-712)) (|:| |boundaryType| (-525)) (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205)))))) (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072)) (|:| |tol| (-205))) $))))
+((-3266 (($ $ |#2|) NIL) (($ $ (-591 |#2|)) 10) (($ $ |#2| (-712)) 12) (($ $ (-591 |#2|) (-591 (-712))) 15)) (-4196 (($ $ |#2|) 16) (($ $ (-591 |#2|)) 18) (($ $ |#2| (-712)) 19) (($ $ (-591 |#2|) (-591 (-712))) 21)))
+(((-832 |#1| |#2|) (-10 -8 (-15 -4196 (|#1| |#1| (-591 |#2|) (-591 (-712)))) (-15 -4196 (|#1| |#1| |#2| (-712))) (-15 -4196 (|#1| |#1| (-591 |#2|))) (-15 -4196 (|#1| |#1| |#2|)) (-15 -3266 (|#1| |#1| (-591 |#2|) (-591 (-712)))) (-15 -3266 (|#1| |#1| |#2| (-712))) (-15 -3266 (|#1| |#1| (-591 |#2|))) (-15 -3266 (|#1| |#1| |#2|))) (-833 |#2|) (-1018)) (T -832))
+NIL
+(-10 -8 (-15 -4196 (|#1| |#1| (-591 |#2|) (-591 (-712)))) (-15 -4196 (|#1| |#1| |#2| (-712))) (-15 -4196 (|#1| |#1| (-591 |#2|))) (-15 -4196 (|#1| |#1| |#2|)) (-15 -3266 (|#1| |#1| (-591 |#2|) (-591 (-712)))) (-15 -3266 (|#1| |#1| |#2| (-712))) (-15 -3266 (|#1| |#1| (-591 |#2|))) (-15 -3266 (|#1| |#1| |#2|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3266 (($ $ |#1|) 42) (($ $ (-591 |#1|)) 41) (($ $ |#1| (-712)) 40) (($ $ (-591 |#1|) (-591 (-712))) 39)) (-3022 (((-796) $) 11) (($ (-525)) 28)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ |#1|) 38) (($ $ (-591 |#1|)) 37) (($ $ |#1| (-712)) 36) (($ $ (-591 |#1|) (-591 (-712))) 35)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-833 |#1|) (-131) (-1018)) (T -833))
+((-3266 (*1 *1 *1 *2) (-12 (-4 *1 (-833 *2)) (-4 *2 (-1018)))) (-3266 (*1 *1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *1 (-833 *3)) (-4 *3 (-1018)))) (-3266 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-712)) (-4 *1 (-833 *2)) (-4 *2 (-1018)))) (-3266 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 *4)) (-5 *3 (-591 (-712))) (-4 *1 (-833 *4)) (-4 *4 (-1018)))) (-4196 (*1 *1 *1 *2) (-12 (-4 *1 (-833 *2)) (-4 *2 (-1018)))) (-4196 (*1 *1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *1 (-833 *3)) (-4 *3 (-1018)))) (-4196 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-712)) (-4 *1 (-833 *2)) (-4 *2 (-1018)))) (-4196 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 *4)) (-5 *3 (-591 (-712))) (-4 *1 (-833 *4)) (-4 *4 (-1018)))))
+(-13 (-975) (-10 -8 (-15 -3266 ($ $ |t#1|)) (-15 -3266 ($ $ (-591 |t#1|))) (-15 -3266 ($ $ |t#1| (-712))) (-15 -3266 ($ $ (-591 |t#1|) (-591 (-712)))) (-15 -4196 ($ $ |t#1|)) (-15 -4196 ($ $ (-591 |t#1|))) (-15 -4196 ($ $ |t#1| (-712))) (-15 -4196 ($ $ (-591 |t#1|) (-591 (-712))))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 $) . T) ((-668) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3024 ((|#1| $) 26)) (-3891 (((-108) $ (-712)) NIL)) (-1780 ((|#1| $ |#1|) NIL (|has| $ (-6 -4251)))) (-4110 (($ $ $) NIL (|has| $ (-6 -4251)))) (-3152 (($ $ $) NIL (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4251))) (($ $ "left" $) NIL (|has| $ (-6 -4251))) (($ $ "right" $) NIL (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) NIL (|has| $ (-6 -4251)))) (-3798 (($) NIL T CONST)) (-3400 (($ $) 25)) (-2671 (($ |#1|) 12) (($ $ $) 17)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) NIL)) (-2148 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-3388 (($ $) 23)) (-2599 (((-591 |#1|) $) NIL)) (-1203 (((-108) $) 20)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3505 (((-525) $ $) NIL)) (-2237 (((-108) $) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) NIL)) (-3022 (((-1112 |#1|) $) 9) (((-796) $) 29 (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) NIL)) (-1632 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 21 (|has| |#1| (-1018)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-834 |#1|) (-13 (-115 |#1|) (-10 -8 (-15 -2671 ($ |#1|)) (-15 -2671 ($ $ $)) (-15 -3022 ((-1112 |#1|) $)))) (-1018)) (T -834))
+((-2671 (*1 *1 *2) (-12 (-5 *1 (-834 *2)) (-4 *2 (-1018)))) (-2671 (*1 *1 *1 *1) (-12 (-5 *1 (-834 *2)) (-4 *2 (-1018)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-1112 *3)) (-5 *1 (-834 *3)) (-4 *3 (-1018)))))
+(-13 (-115 |#1|) (-10 -8 (-15 -2671 ($ |#1|)) (-15 -2671 ($ $ $)) (-15 -3022 ((-1112 |#1|) $))))
+((-3780 ((|#2| (-1056 |#1| |#2|)) 41)))
+(((-835 |#1| |#2|) (-10 -7 (-15 -3780 (|#2| (-1056 |#1| |#2|)))) (-854) (-13 (-975) (-10 -7 (-6 (-4252 "*"))))) (T -835))
+((-3780 (*1 *2 *3) (-12 (-5 *3 (-1056 *4 *2)) (-14 *4 (-854)) (-4 *2 (-13 (-975) (-10 -7 (-6 (-4252 "*"))))) (-5 *1 (-835 *4 *2)))))
+(-10 -7 (-15 -3780 (|#2| (-1056 |#1| |#2|))))
+((-3008 (((-108) $ $) 7)) (-3798 (($) 20 T CONST)) (-4163 (((-3 $ "failed") $) 16)) (-1717 (((-1020 |#1|) $ |#1|) 35)) (-2824 (((-108) $) 19)) (-3741 (($ $ $) 33 (-3321 (|has| |#1| (-788)) (|has| |#1| (-346))))) (-2478 (($ $ $) 32 (-3321 (|has| |#1| (-788)) (|has| |#1| (-346))))) (-2339 (((-1072) $) 9)) (-1622 (($ $) 27)) (-2047 (((-1036) $) 10)) (-4132 ((|#1| $ |#1|) 37)) (-3164 ((|#1| $ |#1|) 36)) (-2871 (($ (-591 (-591 |#1|))) 38)) (-3933 (($ (-591 |#1|)) 39)) (-3228 (($ $ $) 23)) (-3619 (($ $ $) 22)) (-3022 (((-796) $) 11)) (-3710 (($ $ (-854)) 13) (($ $ (-712)) 17) (($ $ (-525)) 24)) (-4197 (($) 21 T CONST)) (-4135 (((-108) $ $) 30 (-3321 (|has| |#1| (-788)) (|has| |#1| (-346))))) (-4119 (((-108) $ $) 29 (-3321 (|has| |#1| (-788)) (|has| |#1| (-346))))) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 31 (-3321 (|has| |#1| (-788)) (|has| |#1| (-346))))) (-4112 (((-108) $ $) 34)) (-4173 (($ $ $) 26)) (** (($ $ (-854)) 14) (($ $ (-712)) 18) (($ $ (-525)) 25)) (* (($ $ $) 15)))
+(((-836 |#1|) (-131) (-1018)) (T -836))
+((-3933 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-4 *1 (-836 *3)))) (-2871 (*1 *1 *2) (-12 (-5 *2 (-591 (-591 *3))) (-4 *3 (-1018)) (-4 *1 (-836 *3)))) (-4132 (*1 *2 *1 *2) (-12 (-4 *1 (-836 *2)) (-4 *2 (-1018)))) (-3164 (*1 *2 *1 *2) (-12 (-4 *1 (-836 *2)) (-4 *2 (-1018)))) (-1717 (*1 *2 *1 *3) (-12 (-4 *1 (-836 *3)) (-4 *3 (-1018)) (-5 *2 (-1020 *3)))) (-4112 (*1 *2 *1 *1) (-12 (-4 *1 (-836 *3)) (-4 *3 (-1018)) (-5 *2 (-108)))))
+(-13 (-450) (-10 -8 (-15 -3933 ($ (-591 |t#1|))) (-15 -2871 ($ (-591 (-591 |t#1|)))) (-15 -4132 (|t#1| $ |t#1|)) (-15 -3164 (|t#1| $ |t#1|)) (-15 -1717 ((-1020 |t#1|) $ |t#1|)) (-15 -4112 ((-108) $ $)) (IF (|has| |t#1| (-788)) (-6 (-788)) |%noBranch|) (IF (|has| |t#1| (-346)) (-6 (-788)) |%noBranch|)))
+(((-97) . T) ((-565 (-796)) . T) ((-450) . T) ((-668) . T) ((-788) -3321 (|has| |#1| (-788)) (|has| |#1| (-346))) ((-1030) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-1319 (((-591 (-591 (-712))) $) 109)) (-2483 (((-591 (-712)) (-838 |#1|) $) 131)) (-3695 (((-591 (-712)) (-838 |#1|) $) 132)) (-2806 (((-591 (-838 |#1|)) $) 99)) (-3377 (((-838 |#1|) $ (-525)) 104) (((-838 |#1|) $) 105)) (-4025 (($ (-591 (-838 |#1|))) 111)) (-3873 (((-712) $) 106)) (-1354 (((-1020 (-1020 |#1|)) $) 129)) (-1717 (((-1020 |#1|) $ |#1|) 122) (((-1020 (-1020 |#1|)) $ (-1020 |#1|)) 140) (((-1020 (-591 |#1|)) $ (-591 |#1|)) 143)) (-2376 (((-1020 |#1|) $) 102)) (-2141 (((-108) (-838 |#1|) $) 93)) (-2339 (((-1072) $) NIL)) (-3974 (((-1176) $) 96) (((-1176) $ (-525) (-525)) 144)) (-2047 (((-1036) $) NIL)) (-3942 (((-591 (-838 |#1|)) $) 97)) (-3164 (((-838 |#1|) $ (-712)) 100)) (-1316 (((-712) $) 107)) (-3022 (((-796) $) 120) (((-591 (-838 |#1|)) $) 23) (($ (-591 (-838 |#1|))) 110)) (-2672 (((-591 |#1|) $) 108)) (-4096 (((-108) $ $) 137)) (-4126 (((-108) $ $) 135)) (-4112 (((-108) $ $) 134)))
+(((-837 |#1|) (-13 (-1018) (-10 -8 (-15 -3022 ((-591 (-838 |#1|)) $)) (-15 -3942 ((-591 (-838 |#1|)) $)) (-15 -3164 ((-838 |#1|) $ (-712))) (-15 -3377 ((-838 |#1|) $ (-525))) (-15 -3377 ((-838 |#1|) $)) (-15 -3873 ((-712) $)) (-15 -1316 ((-712) $)) (-15 -2672 ((-591 |#1|) $)) (-15 -2806 ((-591 (-838 |#1|)) $)) (-15 -1319 ((-591 (-591 (-712))) $)) (-15 -3022 ($ (-591 (-838 |#1|)))) (-15 -4025 ($ (-591 (-838 |#1|)))) (-15 -1717 ((-1020 |#1|) $ |#1|)) (-15 -1354 ((-1020 (-1020 |#1|)) $)) (-15 -1717 ((-1020 (-1020 |#1|)) $ (-1020 |#1|))) (-15 -1717 ((-1020 (-591 |#1|)) $ (-591 |#1|))) (-15 -2141 ((-108) (-838 |#1|) $)) (-15 -2483 ((-591 (-712)) (-838 |#1|) $)) (-15 -3695 ((-591 (-712)) (-838 |#1|) $)) (-15 -2376 ((-1020 |#1|) $)) (-15 -4112 ((-108) $ $)) (-15 -4126 ((-108) $ $)) (-15 -3974 ((-1176) $)) (-15 -3974 ((-1176) $ (-525) (-525))))) (-1018)) (T -837))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-591 (-838 *3))) (-5 *1 (-837 *3)) (-4 *3 (-1018)))) (-3942 (*1 *2 *1) (-12 (-5 *2 (-591 (-838 *3))) (-5 *1 (-837 *3)) (-4 *3 (-1018)))) (-3164 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-5 *2 (-838 *4)) (-5 *1 (-837 *4)) (-4 *4 (-1018)))) (-3377 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *2 (-838 *4)) (-5 *1 (-837 *4)) (-4 *4 (-1018)))) (-3377 (*1 *2 *1) (-12 (-5 *2 (-838 *3)) (-5 *1 (-837 *3)) (-4 *3 (-1018)))) (-3873 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-837 *3)) (-4 *3 (-1018)))) (-1316 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-837 *3)) (-4 *3 (-1018)))) (-2672 (*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-837 *3)) (-4 *3 (-1018)))) (-2806 (*1 *2 *1) (-12 (-5 *2 (-591 (-838 *3))) (-5 *1 (-837 *3)) (-4 *3 (-1018)))) (-1319 (*1 *2 *1) (-12 (-5 *2 (-591 (-591 (-712)))) (-5 *1 (-837 *3)) (-4 *3 (-1018)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-591 (-838 *3))) (-4 *3 (-1018)) (-5 *1 (-837 *3)))) (-4025 (*1 *1 *2) (-12 (-5 *2 (-591 (-838 *3))) (-4 *3 (-1018)) (-5 *1 (-837 *3)))) (-1717 (*1 *2 *1 *3) (-12 (-5 *2 (-1020 *3)) (-5 *1 (-837 *3)) (-4 *3 (-1018)))) (-1354 (*1 *2 *1) (-12 (-5 *2 (-1020 (-1020 *3))) (-5 *1 (-837 *3)) (-4 *3 (-1018)))) (-1717 (*1 *2 *1 *3) (-12 (-4 *4 (-1018)) (-5 *2 (-1020 (-1020 *4))) (-5 *1 (-837 *4)) (-5 *3 (-1020 *4)))) (-1717 (*1 *2 *1 *3) (-12 (-4 *4 (-1018)) (-5 *2 (-1020 (-591 *4))) (-5 *1 (-837 *4)) (-5 *3 (-591 *4)))) (-2141 (*1 *2 *3 *1) (-12 (-5 *3 (-838 *4)) (-4 *4 (-1018)) (-5 *2 (-108)) (-5 *1 (-837 *4)))) (-2483 (*1 *2 *3 *1) (-12 (-5 *3 (-838 *4)) (-4 *4 (-1018)) (-5 *2 (-591 (-712))) (-5 *1 (-837 *4)))) (-3695 (*1 *2 *3 *1) (-12 (-5 *3 (-838 *4)) (-4 *4 (-1018)) (-5 *2 (-591 (-712))) (-5 *1 (-837 *4)))) (-2376 (*1 *2 *1) (-12 (-5 *2 (-1020 *3)) (-5 *1 (-837 *3)) (-4 *3 (-1018)))) (-4112 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-837 *3)) (-4 *3 (-1018)))) (-4126 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-837 *3)) (-4 *3 (-1018)))) (-3974 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-837 *3)) (-4 *3 (-1018)))) (-3974 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-525)) (-5 *2 (-1176)) (-5 *1 (-837 *4)) (-4 *4 (-1018)))))
+(-13 (-1018) (-10 -8 (-15 -3022 ((-591 (-838 |#1|)) $)) (-15 -3942 ((-591 (-838 |#1|)) $)) (-15 -3164 ((-838 |#1|) $ (-712))) (-15 -3377 ((-838 |#1|) $ (-525))) (-15 -3377 ((-838 |#1|) $)) (-15 -3873 ((-712) $)) (-15 -1316 ((-712) $)) (-15 -2672 ((-591 |#1|) $)) (-15 -2806 ((-591 (-838 |#1|)) $)) (-15 -1319 ((-591 (-591 (-712))) $)) (-15 -3022 ($ (-591 (-838 |#1|)))) (-15 -4025 ($ (-591 (-838 |#1|)))) (-15 -1717 ((-1020 |#1|) $ |#1|)) (-15 -1354 ((-1020 (-1020 |#1|)) $)) (-15 -1717 ((-1020 (-1020 |#1|)) $ (-1020 |#1|))) (-15 -1717 ((-1020 (-591 |#1|)) $ (-591 |#1|))) (-15 -2141 ((-108) (-838 |#1|) $)) (-15 -2483 ((-591 (-712)) (-838 |#1|) $)) (-15 -3695 ((-591 (-712)) (-838 |#1|) $)) (-15 -2376 ((-1020 |#1|) $)) (-15 -4112 ((-108) $ $)) (-15 -4126 ((-108) $ $)) (-15 -3974 ((-1176) $)) (-15 -3974 ((-1176) $ (-525) (-525)))))
+((-3008 (((-108) $ $) NIL)) (-3327 (((-591 $) (-591 $)) 77)) (-3329 (((-525) $) 60)) (-3798 (($) NIL T CONST)) (-4163 (((-3 $ "failed") $) NIL)) (-3873 (((-712) $) 58)) (-1717 (((-1020 |#1|) $ |#1|) 49)) (-2824 (((-108) $) NIL)) (-2419 (((-108) $) 63)) (-1523 (((-712) $) 61)) (-2376 (((-1020 |#1|) $) 42)) (-3741 (($ $ $) NIL (-3321 (|has| |#1| (-346)) (|has| |#1| (-788))))) (-2478 (($ $ $) NIL (-3321 (|has| |#1| (-346)) (|has| |#1| (-788))))) (-3367 (((-2 (|:| |preimage| (-591 |#1|)) (|:| |image| (-591 |#1|))) $) 37)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 93)) (-2047 (((-1036) $) NIL)) (-3532 (((-1020 |#1|) $) 99 (|has| |#1| (-346)))) (-3451 (((-108) $) 59)) (-4132 ((|#1| $ |#1|) 47)) (-3164 ((|#1| $ |#1|) 94)) (-1316 (((-712) $) 44)) (-2871 (($ (-591 (-591 |#1|))) 85)) (-1925 (((-902) $) 53)) (-3933 (($ (-591 |#1|)) 21)) (-3228 (($ $ $) NIL)) (-3619 (($ $ $) NIL)) (-3281 (($ (-591 (-591 |#1|))) 39)) (-1810 (($ (-591 (-591 |#1|))) 88)) (-3411 (($ (-591 |#1|)) 96)) (-3022 (((-796) $) 84) (($ (-591 (-591 |#1|))) 66) (($ (-591 |#1|)) 67)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4197 (($) 16 T CONST)) (-4135 (((-108) $ $) NIL (-3321 (|has| |#1| (-346)) (|has| |#1| (-788))))) (-4119 (((-108) $ $) NIL (-3321 (|has| |#1| (-346)) (|has| |#1| (-788))))) (-4096 (((-108) $ $) 45)) (-4126 (((-108) $ $) NIL (-3321 (|has| |#1| (-346)) (|has| |#1| (-788))))) (-4112 (((-108) $ $) 65)) (-4173 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ $ $) 22)))
+(((-838 |#1|) (-13 (-836 |#1|) (-10 -8 (-15 -3367 ((-2 (|:| |preimage| (-591 |#1|)) (|:| |image| (-591 |#1|))) $)) (-15 -3281 ($ (-591 (-591 |#1|)))) (-15 -3022 ($ (-591 (-591 |#1|)))) (-15 -3022 ($ (-591 |#1|))) (-15 -1810 ($ (-591 (-591 |#1|)))) (-15 -1316 ((-712) $)) (-15 -2376 ((-1020 |#1|) $)) (-15 -1925 ((-902) $)) (-15 -3873 ((-712) $)) (-15 -1523 ((-712) $)) (-15 -3329 ((-525) $)) (-15 -3451 ((-108) $)) (-15 -2419 ((-108) $)) (-15 -3327 ((-591 $) (-591 $))) (IF (|has| |#1| (-346)) (-15 -3532 ((-1020 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-510)) (-15 -3411 ($ (-591 |#1|))) (IF (|has| |#1| (-346)) (-15 -3411 ($ (-591 |#1|))) |%noBranch|)))) (-1018)) (T -838))
+((-3367 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-591 *3)) (|:| |image| (-591 *3)))) (-5 *1 (-838 *3)) (-4 *3 (-1018)))) (-3281 (*1 *1 *2) (-12 (-5 *2 (-591 (-591 *3))) (-4 *3 (-1018)) (-5 *1 (-838 *3)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-591 (-591 *3))) (-4 *3 (-1018)) (-5 *1 (-838 *3)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-838 *3)))) (-1810 (*1 *1 *2) (-12 (-5 *2 (-591 (-591 *3))) (-4 *3 (-1018)) (-5 *1 (-838 *3)))) (-1316 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-838 *3)) (-4 *3 (-1018)))) (-2376 (*1 *2 *1) (-12 (-5 *2 (-1020 *3)) (-5 *1 (-838 *3)) (-4 *3 (-1018)))) (-1925 (*1 *2 *1) (-12 (-5 *2 (-902)) (-5 *1 (-838 *3)) (-4 *3 (-1018)))) (-3873 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-838 *3)) (-4 *3 (-1018)))) (-1523 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-838 *3)) (-4 *3 (-1018)))) (-3329 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-838 *3)) (-4 *3 (-1018)))) (-3451 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-838 *3)) (-4 *3 (-1018)))) (-2419 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-838 *3)) (-4 *3 (-1018)))) (-3327 (*1 *2 *2) (-12 (-5 *2 (-591 (-838 *3))) (-5 *1 (-838 *3)) (-4 *3 (-1018)))) (-3532 (*1 *2 *1) (-12 (-5 *2 (-1020 *3)) (-5 *1 (-838 *3)) (-4 *3 (-346)) (-4 *3 (-1018)))) (-3411 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-838 *3)))))
+(-13 (-836 |#1|) (-10 -8 (-15 -3367 ((-2 (|:| |preimage| (-591 |#1|)) (|:| |image| (-591 |#1|))) $)) (-15 -3281 ($ (-591 (-591 |#1|)))) (-15 -3022 ($ (-591 (-591 |#1|)))) (-15 -3022 ($ (-591 |#1|))) (-15 -1810 ($ (-591 (-591 |#1|)))) (-15 -1316 ((-712) $)) (-15 -2376 ((-1020 |#1|) $)) (-15 -1925 ((-902) $)) (-15 -3873 ((-712) $)) (-15 -1523 ((-712) $)) (-15 -3329 ((-525) $)) (-15 -3451 ((-108) $)) (-15 -2419 ((-108) $)) (-15 -3327 ((-591 $) (-591 $))) (IF (|has| |#1| (-346)) (-15 -3532 ((-1020 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-510)) (-15 -3411 ($ (-591 |#1|))) (IF (|has| |#1| (-346)) (-15 -3411 ($ (-591 |#1|))) |%noBranch|))))
+((-1757 (((-3 (-591 (-1085 |#4|)) "failed") (-591 (-1085 |#4|)) (-1085 |#4|)) 128)) (-3540 ((|#1|) 77)) (-3386 (((-396 (-1085 |#4|)) (-1085 |#4|)) 137)) (-1649 (((-396 (-1085 |#4|)) (-591 |#3|) (-1085 |#4|)) 69)) (-1328 (((-396 (-1085 |#4|)) (-1085 |#4|)) 147)) (-2876 (((-3 (-591 (-1085 |#4|)) "failed") (-591 (-1085 |#4|)) (-1085 |#4|) |#3|) 92)))
+(((-839 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1757 ((-3 (-591 (-1085 |#4|)) "failed") (-591 (-1085 |#4|)) (-1085 |#4|))) (-15 -1328 ((-396 (-1085 |#4|)) (-1085 |#4|))) (-15 -3386 ((-396 (-1085 |#4|)) (-1085 |#4|))) (-15 -3540 (|#1|)) (-15 -2876 ((-3 (-591 (-1085 |#4|)) "failed") (-591 (-1085 |#4|)) (-1085 |#4|) |#3|)) (-15 -1649 ((-396 (-1085 |#4|)) (-591 |#3|) (-1085 |#4|)))) (-842) (-734) (-788) (-882 |#1| |#2| |#3|)) (T -839))
+((-1649 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *7)) (-4 *7 (-788)) (-4 *5 (-842)) (-4 *6 (-734)) (-4 *8 (-882 *5 *6 *7)) (-5 *2 (-396 (-1085 *8))) (-5 *1 (-839 *5 *6 *7 *8)) (-5 *4 (-1085 *8)))) (-2876 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *2 (-591 (-1085 *7))) (-5 *3 (-1085 *7)) (-4 *7 (-882 *5 *6 *4)) (-4 *5 (-842)) (-4 *6 (-734)) (-4 *4 (-788)) (-5 *1 (-839 *5 *6 *4 *7)))) (-3540 (*1 *2) (-12 (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-842)) (-5 *1 (-839 *2 *3 *4 *5)) (-4 *5 (-882 *2 *3 *4)))) (-3386 (*1 *2 *3) (-12 (-4 *4 (-842)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-882 *4 *5 *6)) (-5 *2 (-396 (-1085 *7))) (-5 *1 (-839 *4 *5 *6 *7)) (-5 *3 (-1085 *7)))) (-1328 (*1 *2 *3) (-12 (-4 *4 (-842)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-882 *4 *5 *6)) (-5 *2 (-396 (-1085 *7))) (-5 *1 (-839 *4 *5 *6 *7)) (-5 *3 (-1085 *7)))) (-1757 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-591 (-1085 *7))) (-5 *3 (-1085 *7)) (-4 *7 (-882 *4 *5 *6)) (-4 *4 (-842)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-839 *4 *5 *6 *7)))))
+(-10 -7 (-15 -1757 ((-3 (-591 (-1085 |#4|)) "failed") (-591 (-1085 |#4|)) (-1085 |#4|))) (-15 -1328 ((-396 (-1085 |#4|)) (-1085 |#4|))) (-15 -3386 ((-396 (-1085 |#4|)) (-1085 |#4|))) (-15 -3540 (|#1|)) (-15 -2876 ((-3 (-591 (-1085 |#4|)) "failed") (-591 (-1085 |#4|)) (-1085 |#4|) |#3|)) (-15 -1649 ((-396 (-1085 |#4|)) (-591 |#3|) (-1085 |#4|))))
+((-1757 (((-3 (-591 (-1085 |#2|)) "failed") (-591 (-1085 |#2|)) (-1085 |#2|)) 36)) (-3540 ((|#1|) 54)) (-3386 (((-396 (-1085 |#2|)) (-1085 |#2|)) 102)) (-1649 (((-396 (-1085 |#2|)) (-1085 |#2|)) 90)) (-1328 (((-396 (-1085 |#2|)) (-1085 |#2|)) 113)))
+(((-840 |#1| |#2|) (-10 -7 (-15 -1757 ((-3 (-591 (-1085 |#2|)) "failed") (-591 (-1085 |#2|)) (-1085 |#2|))) (-15 -1328 ((-396 (-1085 |#2|)) (-1085 |#2|))) (-15 -3386 ((-396 (-1085 |#2|)) (-1085 |#2|))) (-15 -3540 (|#1|)) (-15 -1649 ((-396 (-1085 |#2|)) (-1085 |#2|)))) (-842) (-1147 |#1|)) (T -840))
+((-1649 (*1 *2 *3) (-12 (-4 *4 (-842)) (-4 *5 (-1147 *4)) (-5 *2 (-396 (-1085 *5))) (-5 *1 (-840 *4 *5)) (-5 *3 (-1085 *5)))) (-3540 (*1 *2) (-12 (-4 *2 (-842)) (-5 *1 (-840 *2 *3)) (-4 *3 (-1147 *2)))) (-3386 (*1 *2 *3) (-12 (-4 *4 (-842)) (-4 *5 (-1147 *4)) (-5 *2 (-396 (-1085 *5))) (-5 *1 (-840 *4 *5)) (-5 *3 (-1085 *5)))) (-1328 (*1 *2 *3) (-12 (-4 *4 (-842)) (-4 *5 (-1147 *4)) (-5 *2 (-396 (-1085 *5))) (-5 *1 (-840 *4 *5)) (-5 *3 (-1085 *5)))) (-1757 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-591 (-1085 *5))) (-5 *3 (-1085 *5)) (-4 *5 (-1147 *4)) (-4 *4 (-842)) (-5 *1 (-840 *4 *5)))))
+(-10 -7 (-15 -1757 ((-3 (-591 (-1085 |#2|)) "failed") (-591 (-1085 |#2|)) (-1085 |#2|))) (-15 -1328 ((-396 (-1085 |#2|)) (-1085 |#2|))) (-15 -3386 ((-396 (-1085 |#2|)) (-1085 |#2|))) (-15 -3540 (|#1|)) (-15 -1649 ((-396 (-1085 |#2|)) (-1085 |#2|))))
+((-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) 41)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 18)) (-1437 (((-3 $ "failed") $) 35)))
+(((-841 |#1|) (-10 -8 (-15 -1437 ((-3 |#1| "failed") |#1|)) (-15 -2252 ((-3 (-591 (-1085 |#1|)) "failed") (-591 (-1085 |#1|)) (-1085 |#1|))) (-15 -2526 ((-1085 |#1|) (-1085 |#1|) (-1085 |#1|)))) (-842)) (T -841))
+NIL
+(-10 -8 (-15 -1437 ((-3 |#1| "failed") |#1|)) (-15 -2252 ((-3 (-591 (-1085 |#1|)) "failed") (-591 (-1085 |#1|)) (-1085 |#1|))) (-15 -2526 ((-1085 |#1|) (-1085 |#1|) (-1085 |#1|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2157 (((-3 $ "failed") $ $) 19)) (-1965 (((-396 (-1085 $)) (-1085 $)) 60)) (-1291 (($ $) 51)) (-2827 (((-396 $) $) 52)) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) 57)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2744 (((-108) $) 53)) (-2824 (((-108) $) 31)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-2916 (((-396 (-1085 $)) (-1085 $)) 58)) (-1626 (((-396 (-1085 $)) (-1085 $)) 59)) (-1348 (((-396 $) $) 50)) (-2089 (((-3 $ "failed") $ $) 42)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) 56 (|has| $ (-136)))) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43)) (-1437 (((-3 $ "failed") $) 55 (|has| $ (-136)))) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 39)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-842) (-131)) (T -842))
+((-2526 (*1 *2 *2 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-842)))) (-1965 (*1 *2 *3) (-12 (-4 *1 (-842)) (-5 *2 (-396 (-1085 *1))) (-5 *3 (-1085 *1)))) (-1626 (*1 *2 *3) (-12 (-4 *1 (-842)) (-5 *2 (-396 (-1085 *1))) (-5 *3 (-1085 *1)))) (-2916 (*1 *2 *3) (-12 (-4 *1 (-842)) (-5 *2 (-396 (-1085 *1))) (-5 *3 (-1085 *1)))) (-2252 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-591 (-1085 *1))) (-5 *3 (-1085 *1)) (-4 *1 (-842)))) (-2265 (*1 *2 *3) (|partial| -12 (-5 *3 (-631 *1)) (-4 *1 (-136)) (-4 *1 (-842)) (-5 *2 (-1171 *1)))) (-1437 (*1 *1 *1) (|partial| -12 (-4 *1 (-136)) (-4 *1 (-842)))))
+(-13 (-1129) (-10 -8 (-15 -1965 ((-396 (-1085 $)) (-1085 $))) (-15 -1626 ((-396 (-1085 $)) (-1085 $))) (-15 -2916 ((-396 (-1085 $)) (-1085 $))) (-15 -2526 ((-1085 $) (-1085 $) (-1085 $))) (-15 -2252 ((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $))) (IF (|has| $ (-136)) (PROGN (-15 -2265 ((-3 (-1171 $) "failed") (-631 $))) (-15 -1437 ((-3 $ "failed") $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-126) . T) ((-565 (-796)) . T) ((-160) . T) ((-269) . T) ((-429) . T) ((-517) . T) ((-593 $) . T) ((-659 $) . T) ((-668) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1129) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2144 (((-108) $) NIL)) (-2834 (((-712)) NIL)) (-2569 (($ $ (-854)) NIL (|has| $ (-346))) (($ $) NIL)) (-3734 (((-1099 (-854) (-712)) (-525)) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3032 (((-712)) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 $ "failed") $) NIL)) (-3528 (($ $) NIL)) (-4171 (($ (-1171 $)) NIL)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) NIL)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-3944 (($) NIL)) (-4104 (((-108) $) NIL)) (-2299 (($ $) NIL) (($ $ (-712)) NIL)) (-2744 (((-108) $) NIL)) (-3873 (((-774 (-854)) $) NIL) (((-854) $) NIL)) (-2824 (((-108) $) NIL)) (-4046 (($) NIL (|has| $ (-346)))) (-1751 (((-108) $) NIL (|has| $ (-346)))) (-2771 (($ $ (-854)) NIL (|has| $ (-346))) (($ $) NIL)) (-2085 (((-3 $ "failed") $) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1382 (((-1085 $) $ (-854)) NIL (|has| $ (-346))) (((-1085 $) $) NIL)) (-3016 (((-854) $) NIL)) (-1924 (((-1085 $) $) NIL (|has| $ (-346)))) (-3040 (((-3 (-1085 $) "failed") $ $) NIL (|has| $ (-346))) (((-1085 $) $) NIL (|has| $ (-346)))) (-2054 (($ $ (-1085 $)) NIL (|has| $ (-346)))) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL T CONST)) (-2226 (($ (-854)) NIL)) (-1476 (((-108) $) NIL)) (-2047 (((-1036) $) NIL)) (-3857 (($) NIL (|has| $ (-346)))) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) NIL)) (-1348 (((-396 $) $) NIL)) (-2163 (((-854)) NIL) (((-774 (-854))) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2953 (((-3 (-712) "failed") $ $) NIL) (((-712) $) NIL)) (-4224 (((-128)) NIL)) (-3266 (($ $ (-712)) NIL) (($ $) NIL)) (-1316 (((-854) $) NIL) (((-774 (-854)) $) NIL)) (-1478 (((-1085 $)) NIL)) (-2616 (($) NIL)) (-1608 (($) NIL (|has| $ (-346)))) (-3572 (((-631 $) (-1171 $)) NIL) (((-1171 $) $) NIL)) (-1408 (((-525) $) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL)) (-1437 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-2128 (((-712)) NIL)) (-4003 (((-1171 $) (-854)) NIL) (((-1171 $)) NIL)) (-2495 (((-108) $ $) NIL)) (-1884 (((-108) $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4227 (($ $ (-712)) NIL (|has| $ (-346))) (($ $) NIL (|has| $ (-346)))) (-4196 (($ $ (-712)) NIL) (($ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL)))
+(((-843 |#1|) (-13 (-327) (-307 $) (-566 (-525))) (-854)) (T -843))
+NIL
+(-13 (-327) (-307 $) (-566 (-525)))
+((-2251 (((-3 (-2 (|:| -3873 (-712)) (|:| -1245 |#5|)) "failed") (-314 |#2| |#3| |#4| |#5|)) 79)) (-1877 (((-108) (-314 |#2| |#3| |#4| |#5|)) 17)) (-3873 (((-3 (-712) "failed") (-314 |#2| |#3| |#4| |#5|)) 15)))
+(((-844 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3873 ((-3 (-712) "failed") (-314 |#2| |#3| |#4| |#5|))) (-15 -1877 ((-108) (-314 |#2| |#3| |#4| |#5|))) (-15 -2251 ((-3 (-2 (|:| -3873 (-712)) (|:| -1245 |#5|)) "failed") (-314 |#2| |#3| |#4| |#5|)))) (-13 (-788) (-517) (-966 (-525))) (-408 |#1|) (-1147 |#2|) (-1147 (-385 |#3|)) (-320 |#2| |#3| |#4|)) (T -844))
+((-2251 (*1 *2 *3) (|partial| -12 (-5 *3 (-314 *5 *6 *7 *8)) (-4 *5 (-408 *4)) (-4 *6 (-1147 *5)) (-4 *7 (-1147 (-385 *6))) (-4 *8 (-320 *5 *6 *7)) (-4 *4 (-13 (-788) (-517) (-966 (-525)))) (-5 *2 (-2 (|:| -3873 (-712)) (|:| -1245 *8))) (-5 *1 (-844 *4 *5 *6 *7 *8)))) (-1877 (*1 *2 *3) (-12 (-5 *3 (-314 *5 *6 *7 *8)) (-4 *5 (-408 *4)) (-4 *6 (-1147 *5)) (-4 *7 (-1147 (-385 *6))) (-4 *8 (-320 *5 *6 *7)) (-4 *4 (-13 (-788) (-517) (-966 (-525)))) (-5 *2 (-108)) (-5 *1 (-844 *4 *5 *6 *7 *8)))) (-3873 (*1 *2 *3) (|partial| -12 (-5 *3 (-314 *5 *6 *7 *8)) (-4 *5 (-408 *4)) (-4 *6 (-1147 *5)) (-4 *7 (-1147 (-385 *6))) (-4 *8 (-320 *5 *6 *7)) (-4 *4 (-13 (-788) (-517) (-966 (-525)))) (-5 *2 (-712)) (-5 *1 (-844 *4 *5 *6 *7 *8)))))
+(-10 -7 (-15 -3873 ((-3 (-712) "failed") (-314 |#2| |#3| |#4| |#5|))) (-15 -1877 ((-108) (-314 |#2| |#3| |#4| |#5|))) (-15 -2251 ((-3 (-2 (|:| -3873 (-712)) (|:| -1245 |#5|)) "failed") (-314 |#2| |#3| |#4| |#5|))))
+((-2251 (((-3 (-2 (|:| -3873 (-712)) (|:| -1245 |#3|)) "failed") (-314 (-385 (-525)) |#1| |#2| |#3|)) 56)) (-1877 (((-108) (-314 (-385 (-525)) |#1| |#2| |#3|)) 16)) (-3873 (((-3 (-712) "failed") (-314 (-385 (-525)) |#1| |#2| |#3|)) 14)))
+(((-845 |#1| |#2| |#3|) (-10 -7 (-15 -3873 ((-3 (-712) "failed") (-314 (-385 (-525)) |#1| |#2| |#3|))) (-15 -1877 ((-108) (-314 (-385 (-525)) |#1| |#2| |#3|))) (-15 -2251 ((-3 (-2 (|:| -3873 (-712)) (|:| -1245 |#3|)) "failed") (-314 (-385 (-525)) |#1| |#2| |#3|)))) (-1147 (-385 (-525))) (-1147 (-385 |#1|)) (-320 (-385 (-525)) |#1| |#2|)) (T -845))
+((-2251 (*1 *2 *3) (|partial| -12 (-5 *3 (-314 (-385 (-525)) *4 *5 *6)) (-4 *4 (-1147 (-385 (-525)))) (-4 *5 (-1147 (-385 *4))) (-4 *6 (-320 (-385 (-525)) *4 *5)) (-5 *2 (-2 (|:| -3873 (-712)) (|:| -1245 *6))) (-5 *1 (-845 *4 *5 *6)))) (-1877 (*1 *2 *3) (-12 (-5 *3 (-314 (-385 (-525)) *4 *5 *6)) (-4 *4 (-1147 (-385 (-525)))) (-4 *5 (-1147 (-385 *4))) (-4 *6 (-320 (-385 (-525)) *4 *5)) (-5 *2 (-108)) (-5 *1 (-845 *4 *5 *6)))) (-3873 (*1 *2 *3) (|partial| -12 (-5 *3 (-314 (-385 (-525)) *4 *5 *6)) (-4 *4 (-1147 (-385 (-525)))) (-4 *5 (-1147 (-385 *4))) (-4 *6 (-320 (-385 (-525)) *4 *5)) (-5 *2 (-712)) (-5 *1 (-845 *4 *5 *6)))))
+(-10 -7 (-15 -3873 ((-3 (-712) "failed") (-314 (-385 (-525)) |#1| |#2| |#3|))) (-15 -1877 ((-108) (-314 (-385 (-525)) |#1| |#2| |#3|))) (-15 -2251 ((-3 (-2 (|:| -3873 (-712)) (|:| -1245 |#3|)) "failed") (-314 (-385 (-525)) |#1| |#2| |#3|))))
+((-3114 ((|#2| |#2|) 26)) (-2891 (((-525) (-591 (-2 (|:| |den| (-525)) (|:| |gcdnum| (-525))))) 15)) (-3909 (((-854) (-525)) 35)) (-4207 (((-525) |#2|) 42)) (-3876 (((-525) |#2|) 21) (((-2 (|:| |den| (-525)) (|:| |gcdnum| (-525))) |#1|) 20)))
+(((-846 |#1| |#2|) (-10 -7 (-15 -3909 ((-854) (-525))) (-15 -3876 ((-2 (|:| |den| (-525)) (|:| |gcdnum| (-525))) |#1|)) (-15 -3876 ((-525) |#2|)) (-15 -2891 ((-525) (-591 (-2 (|:| |den| (-525)) (|:| |gcdnum| (-525)))))) (-15 -4207 ((-525) |#2|)) (-15 -3114 (|#2| |#2|))) (-1147 (-385 (-525))) (-1147 (-385 |#1|))) (T -846))
+((-3114 (*1 *2 *2) (-12 (-4 *3 (-1147 (-385 (-525)))) (-5 *1 (-846 *3 *2)) (-4 *2 (-1147 (-385 *3))))) (-4207 (*1 *2 *3) (-12 (-4 *4 (-1147 (-385 *2))) (-5 *2 (-525)) (-5 *1 (-846 *4 *3)) (-4 *3 (-1147 (-385 *4))))) (-2891 (*1 *2 *3) (-12 (-5 *3 (-591 (-2 (|:| |den| (-525)) (|:| |gcdnum| (-525))))) (-4 *4 (-1147 (-385 *2))) (-5 *2 (-525)) (-5 *1 (-846 *4 *5)) (-4 *5 (-1147 (-385 *4))))) (-3876 (*1 *2 *3) (-12 (-4 *4 (-1147 (-385 *2))) (-5 *2 (-525)) (-5 *1 (-846 *4 *3)) (-4 *3 (-1147 (-385 *4))))) (-3876 (*1 *2 *3) (-12 (-4 *3 (-1147 (-385 (-525)))) (-5 *2 (-2 (|:| |den| (-525)) (|:| |gcdnum| (-525)))) (-5 *1 (-846 *3 *4)) (-4 *4 (-1147 (-385 *3))))) (-3909 (*1 *2 *3) (-12 (-5 *3 (-525)) (-4 *4 (-1147 (-385 *3))) (-5 *2 (-854)) (-5 *1 (-846 *4 *5)) (-4 *5 (-1147 (-385 *4))))))
+(-10 -7 (-15 -3909 ((-854) (-525))) (-15 -3876 ((-2 (|:| |den| (-525)) (|:| |gcdnum| (-525))) |#1|)) (-15 -3876 ((-525) |#2|)) (-15 -2891 ((-525) (-591 (-2 (|:| |den| (-525)) (|:| |gcdnum| (-525)))))) (-15 -4207 ((-525) |#2|)) (-15 -3114 (|#2| |#2|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1508 ((|#1| $) 81)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3798 (($) NIL T CONST)) (-2129 (($ $ $) NIL)) (-4163 (((-3 $ "failed") $) 75)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-3627 (($ |#1| (-396 |#1|)) 73)) (-2499 (((-1085 |#1|) |#1| |#1|) 41)) (-1236 (($ $) 49)) (-2824 (((-108) $) NIL)) (-1384 (((-525) $) 78)) (-2525 (($ $ (-525)) 80)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-1955 ((|#1| $) 77)) (-3435 (((-396 |#1|) $) 76)) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) 74)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3155 (($ $) 39)) (-3022 (((-796) $) 99) (($ (-525)) 54) (($ $) NIL) (($ (-385 (-525))) NIL) (($ |#1|) 31) (((-385 |#1|) $) 59) (($ (-385 (-396 |#1|))) 67)) (-2128 (((-712)) 52)) (-2495 (((-108) $ $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) 23 T CONST)) (-4197 (($) 12 T CONST)) (-4096 (((-108) $ $) 68)) (-4173 (($ $ $) NIL)) (-4164 (($ $) 88) (($ $ $) NIL)) (-4156 (($ $ $) 38)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 90) (($ $ $) 37) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ |#1| $) 89) (($ $ |#1|) NIL)))
+(((-847 |#1|) (-13 (-341) (-37 |#1|) (-10 -8 (-15 -3022 ((-385 |#1|) $)) (-15 -3022 ($ (-385 (-396 |#1|)))) (-15 -3155 ($ $)) (-15 -3435 ((-396 |#1|) $)) (-15 -1955 (|#1| $)) (-15 -2525 ($ $ (-525))) (-15 -1384 ((-525) $)) (-15 -2499 ((-1085 |#1|) |#1| |#1|)) (-15 -1236 ($ $)) (-15 -3627 ($ |#1| (-396 |#1|))) (-15 -1508 (|#1| $)))) (-286)) (T -847))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-385 *3)) (-5 *1 (-847 *3)) (-4 *3 (-286)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-385 (-396 *3))) (-4 *3 (-286)) (-5 *1 (-847 *3)))) (-3155 (*1 *1 *1) (-12 (-5 *1 (-847 *2)) (-4 *2 (-286)))) (-3435 (*1 *2 *1) (-12 (-5 *2 (-396 *3)) (-5 *1 (-847 *3)) (-4 *3 (-286)))) (-1955 (*1 *2 *1) (-12 (-5 *1 (-847 *2)) (-4 *2 (-286)))) (-2525 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-847 *3)) (-4 *3 (-286)))) (-1384 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-847 *3)) (-4 *3 (-286)))) (-2499 (*1 *2 *3 *3) (-12 (-5 *2 (-1085 *3)) (-5 *1 (-847 *3)) (-4 *3 (-286)))) (-1236 (*1 *1 *1) (-12 (-5 *1 (-847 *2)) (-4 *2 (-286)))) (-3627 (*1 *1 *2 *3) (-12 (-5 *3 (-396 *2)) (-4 *2 (-286)) (-5 *1 (-847 *2)))) (-1508 (*1 *2 *1) (-12 (-5 *1 (-847 *2)) (-4 *2 (-286)))))
+(-13 (-341) (-37 |#1|) (-10 -8 (-15 -3022 ((-385 |#1|) $)) (-15 -3022 ($ (-385 (-396 |#1|)))) (-15 -3155 ($ $)) (-15 -3435 ((-396 |#1|) $)) (-15 -1955 (|#1| $)) (-15 -2525 ($ $ (-525))) (-15 -1384 ((-525) $)) (-15 -2499 ((-1085 |#1|) |#1| |#1|)) (-15 -1236 ($ $)) (-15 -3627 ($ |#1| (-396 |#1|))) (-15 -1508 (|#1| $))))
+((-3627 (((-51) (-885 |#1|) (-396 (-885 |#1|)) (-1089)) 17) (((-51) (-385 (-885 |#1|)) (-1089)) 18)))
+(((-848 |#1|) (-10 -7 (-15 -3627 ((-51) (-385 (-885 |#1|)) (-1089))) (-15 -3627 ((-51) (-885 |#1|) (-396 (-885 |#1|)) (-1089)))) (-13 (-286) (-138))) (T -848))
+((-3627 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-396 (-885 *6))) (-5 *5 (-1089)) (-5 *3 (-885 *6)) (-4 *6 (-13 (-286) (-138))) (-5 *2 (-51)) (-5 *1 (-848 *6)))) (-3627 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-1089)) (-4 *5 (-13 (-286) (-138))) (-5 *2 (-51)) (-5 *1 (-848 *5)))))
+(-10 -7 (-15 -3627 ((-51) (-385 (-885 |#1|)) (-1089))) (-15 -3627 ((-51) (-885 |#1|) (-396 (-885 |#1|)) (-1089))))
+((-3751 ((|#4| (-591 |#4|)) 121) (((-1085 |#4|) (-1085 |#4|) (-1085 |#4|)) 67) ((|#4| |#4| |#4|) 120)) (-1399 (((-1085 |#4|) (-591 (-1085 |#4|))) 114) (((-1085 |#4|) (-1085 |#4|) (-1085 |#4|)) 50) ((|#4| (-591 |#4|)) 55) ((|#4| |#4| |#4|) 84)))
+(((-849 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1399 (|#4| |#4| |#4|)) (-15 -1399 (|#4| (-591 |#4|))) (-15 -1399 ((-1085 |#4|) (-1085 |#4|) (-1085 |#4|))) (-15 -1399 ((-1085 |#4|) (-591 (-1085 |#4|)))) (-15 -3751 (|#4| |#4| |#4|)) (-15 -3751 ((-1085 |#4|) (-1085 |#4|) (-1085 |#4|))) (-15 -3751 (|#4| (-591 |#4|)))) (-734) (-788) (-286) (-882 |#3| |#1| |#2|)) (T -849))
+((-3751 (*1 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-882 *6 *4 *5)) (-5 *1 (-849 *4 *5 *6 *2)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-286)))) (-3751 (*1 *2 *2 *2) (-12 (-5 *2 (-1085 *6)) (-4 *6 (-882 *5 *3 *4)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *5 (-286)) (-5 *1 (-849 *3 *4 *5 *6)))) (-3751 (*1 *2 *2 *2) (-12 (-4 *3 (-734)) (-4 *4 (-788)) (-4 *5 (-286)) (-5 *1 (-849 *3 *4 *5 *2)) (-4 *2 (-882 *5 *3 *4)))) (-1399 (*1 *2 *3) (-12 (-5 *3 (-591 (-1085 *7))) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-286)) (-5 *2 (-1085 *7)) (-5 *1 (-849 *4 *5 *6 *7)) (-4 *7 (-882 *6 *4 *5)))) (-1399 (*1 *2 *2 *2) (-12 (-5 *2 (-1085 *6)) (-4 *6 (-882 *5 *3 *4)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *5 (-286)) (-5 *1 (-849 *3 *4 *5 *6)))) (-1399 (*1 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-882 *6 *4 *5)) (-5 *1 (-849 *4 *5 *6 *2)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-286)))) (-1399 (*1 *2 *2 *2) (-12 (-4 *3 (-734)) (-4 *4 (-788)) (-4 *5 (-286)) (-5 *1 (-849 *3 *4 *5 *2)) (-4 *2 (-882 *5 *3 *4)))))
+(-10 -7 (-15 -1399 (|#4| |#4| |#4|)) (-15 -1399 (|#4| (-591 |#4|))) (-15 -1399 ((-1085 |#4|) (-1085 |#4|) (-1085 |#4|))) (-15 -1399 ((-1085 |#4|) (-591 (-1085 |#4|)))) (-15 -3751 (|#4| |#4| |#4|)) (-15 -3751 ((-1085 |#4|) (-1085 |#4|) (-1085 |#4|))) (-15 -3751 (|#4| (-591 |#4|))))
+((-3318 (((-837 (-525)) (-902)) 23) (((-837 (-525)) (-591 (-525))) 20)) (-3295 (((-837 (-525)) (-591 (-525))) 48) (((-837 (-525)) (-854)) 49)) (-2373 (((-837 (-525))) 24)) (-2439 (((-837 (-525))) 38) (((-837 (-525)) (-591 (-525))) 37)) (-2441 (((-837 (-525))) 36) (((-837 (-525)) (-591 (-525))) 35)) (-2702 (((-837 (-525))) 34) (((-837 (-525)) (-591 (-525))) 33)) (-2244 (((-837 (-525))) 32) (((-837 (-525)) (-591 (-525))) 31)) (-3906 (((-837 (-525))) 30) (((-837 (-525)) (-591 (-525))) 29)) (-3299 (((-837 (-525))) 40) (((-837 (-525)) (-591 (-525))) 39)) (-3635 (((-837 (-525)) (-591 (-525))) 52) (((-837 (-525)) (-854)) 53)) (-3753 (((-837 (-525)) (-591 (-525))) 50) (((-837 (-525)) (-854)) 51)) (-1294 (((-837 (-525)) (-591 (-525))) 46) (((-837 (-525)) (-854)) 47)) (-3836 (((-837 (-525)) (-591 (-854))) 43)))
+(((-850) (-10 -7 (-15 -3295 ((-837 (-525)) (-854))) (-15 -3295 ((-837 (-525)) (-591 (-525)))) (-15 -1294 ((-837 (-525)) (-854))) (-15 -1294 ((-837 (-525)) (-591 (-525)))) (-15 -3836 ((-837 (-525)) (-591 (-854)))) (-15 -3753 ((-837 (-525)) (-854))) (-15 -3753 ((-837 (-525)) (-591 (-525)))) (-15 -3635 ((-837 (-525)) (-854))) (-15 -3635 ((-837 (-525)) (-591 (-525)))) (-15 -3906 ((-837 (-525)) (-591 (-525)))) (-15 -3906 ((-837 (-525)))) (-15 -2244 ((-837 (-525)) (-591 (-525)))) (-15 -2244 ((-837 (-525)))) (-15 -2702 ((-837 (-525)) (-591 (-525)))) (-15 -2702 ((-837 (-525)))) (-15 -2441 ((-837 (-525)) (-591 (-525)))) (-15 -2441 ((-837 (-525)))) (-15 -2439 ((-837 (-525)) (-591 (-525)))) (-15 -2439 ((-837 (-525)))) (-15 -3299 ((-837 (-525)) (-591 (-525)))) (-15 -3299 ((-837 (-525)))) (-15 -2373 ((-837 (-525)))) (-15 -3318 ((-837 (-525)) (-591 (-525)))) (-15 -3318 ((-837 (-525)) (-902))))) (T -850))
+((-3318 (*1 *2 *3) (-12 (-5 *3 (-902)) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-3318 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-2373 (*1 *2) (-12 (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-3299 (*1 *2) (-12 (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-3299 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-2439 (*1 *2) (-12 (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-2439 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-2441 (*1 *2) (-12 (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-2441 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-2702 (*1 *2) (-12 (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-2702 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-2244 (*1 *2) (-12 (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-2244 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-3906 (*1 *2) (-12 (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-3906 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-3635 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-3635 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-3753 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-3753 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-3836 (*1 *2 *3) (-12 (-5 *3 (-591 (-854))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-1294 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-1294 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-3295 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))) (-3295 (*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-837 (-525))) (-5 *1 (-850)))))
+(-10 -7 (-15 -3295 ((-837 (-525)) (-854))) (-15 -3295 ((-837 (-525)) (-591 (-525)))) (-15 -1294 ((-837 (-525)) (-854))) (-15 -1294 ((-837 (-525)) (-591 (-525)))) (-15 -3836 ((-837 (-525)) (-591 (-854)))) (-15 -3753 ((-837 (-525)) (-854))) (-15 -3753 ((-837 (-525)) (-591 (-525)))) (-15 -3635 ((-837 (-525)) (-854))) (-15 -3635 ((-837 (-525)) (-591 (-525)))) (-15 -3906 ((-837 (-525)) (-591 (-525)))) (-15 -3906 ((-837 (-525)))) (-15 -2244 ((-837 (-525)) (-591 (-525)))) (-15 -2244 ((-837 (-525)))) (-15 -2702 ((-837 (-525)) (-591 (-525)))) (-15 -2702 ((-837 (-525)))) (-15 -2441 ((-837 (-525)) (-591 (-525)))) (-15 -2441 ((-837 (-525)))) (-15 -2439 ((-837 (-525)) (-591 (-525)))) (-15 -2439 ((-837 (-525)))) (-15 -3299 ((-837 (-525)) (-591 (-525)))) (-15 -3299 ((-837 (-525)))) (-15 -2373 ((-837 (-525)))) (-15 -3318 ((-837 (-525)) (-591 (-525)))) (-15 -3318 ((-837 (-525)) (-902))))
+((-1700 (((-591 (-885 |#1|)) (-591 (-885 |#1|)) (-591 (-1089))) 12)) (-3071 (((-591 (-885 |#1|)) (-591 (-885 |#1|)) (-591 (-1089))) 11)))
+(((-851 |#1|) (-10 -7 (-15 -3071 ((-591 (-885 |#1|)) (-591 (-885 |#1|)) (-591 (-1089)))) (-15 -1700 ((-591 (-885 |#1|)) (-591 (-885 |#1|)) (-591 (-1089))))) (-429)) (T -851))
+((-1700 (*1 *2 *2 *3) (-12 (-5 *2 (-591 (-885 *4))) (-5 *3 (-591 (-1089))) (-4 *4 (-429)) (-5 *1 (-851 *4)))) (-3071 (*1 *2 *2 *3) (-12 (-5 *2 (-591 (-885 *4))) (-5 *3 (-591 (-1089))) (-4 *4 (-429)) (-5 *1 (-851 *4)))))
+(-10 -7 (-15 -3071 ((-591 (-885 |#1|)) (-591 (-885 |#1|)) (-591 (-1089)))) (-15 -1700 ((-591 (-885 |#1|)) (-591 (-885 |#1|)) (-591 (-1089)))))
+((-3022 (((-294 |#1|) (-454)) 16)))
+(((-852 |#1|) (-10 -7 (-15 -3022 ((-294 |#1|) (-454)))) (-13 (-788) (-517))) (T -852))
+((-3022 (*1 *2 *3) (-12 (-5 *3 (-454)) (-5 *2 (-294 *4)) (-5 *1 (-852 *4)) (-4 *4 (-13 (-788) (-517))))))
+(-10 -7 (-15 -3022 ((-294 |#1|) (-454))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 51)) (-2824 (((-108) $) 31)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-2089 (((-3 $ "failed") $ $) 42)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 50)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43)) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 39)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-853) (-131)) (T -853))
+((-3856 (*1 *2 *3) (-12 (-4 *1 (-853)) (-5 *2 (-2 (|:| -3482 (-591 *1)) (|:| -3857 *1))) (-5 *3 (-591 *1)))) (-4095 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-591 *1)) (-4 *1 (-853)))))
+(-13 (-429) (-10 -8 (-15 -3856 ((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $))) (-15 -4095 ((-3 (-591 $) "failed") (-591 $) $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-126) . T) ((-565 (-796)) . T) ((-160) . T) ((-269) . T) ((-429) . T) ((-517) . T) ((-593 $) . T) ((-659 $) . T) ((-668) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-3798 (($) NIL T CONST)) (-4163 (((-3 $ "failed") $) NIL)) (-2824 (((-108) $) NIL)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1399 (($ $ $) NIL)) (-3022 (((-796) $) NIL)) (-3710 (($ $ (-712)) NIL) (($ $ (-854)) NIL)) (-4197 (($) NIL T CONST)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-712)) NIL) (($ $ (-854)) NIL)) (* (($ (-854) $) NIL) (($ $ $) NIL)))
+(((-854) (-13 (-25) (-788) (-668) (-10 -8 (-15 -1399 ($ $ $)) (-6 (-4252 "*"))))) (T -854))
+((-1399 (*1 *1 *1 *1) (-5 *1 (-854))))
+(-13 (-25) (-788) (-668) (-10 -8 (-15 -1399 ($ $ $)) (-6 (-4252 "*"))))
+((-3263 ((|#2| (-591 |#1|) (-591 |#1|)) 24)))
+(((-855 |#1| |#2|) (-10 -7 (-15 -3263 (|#2| (-591 |#1|) (-591 |#1|)))) (-341) (-1147 |#1|)) (T -855))
+((-3263 (*1 *2 *3 *3) (-12 (-5 *3 (-591 *4)) (-4 *4 (-341)) (-4 *2 (-1147 *4)) (-5 *1 (-855 *4 *2)))))
+(-10 -7 (-15 -3263 (|#2| (-591 |#1|) (-591 |#1|))))
+((-2203 (((-1085 |#2|) (-591 |#2|) (-591 |#2|)) 17) (((-1144 |#1| |#2|) (-1144 |#1| |#2|) (-591 |#2|) (-591 |#2|)) 13)))
+(((-856 |#1| |#2|) (-10 -7 (-15 -2203 ((-1144 |#1| |#2|) (-1144 |#1| |#2|) (-591 |#2|) (-591 |#2|))) (-15 -2203 ((-1085 |#2|) (-591 |#2|) (-591 |#2|)))) (-1089) (-341)) (T -856))
+((-2203 (*1 *2 *3 *3) (-12 (-5 *3 (-591 *5)) (-4 *5 (-341)) (-5 *2 (-1085 *5)) (-5 *1 (-856 *4 *5)) (-14 *4 (-1089)))) (-2203 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1144 *4 *5)) (-5 *3 (-591 *5)) (-14 *4 (-1089)) (-4 *5 (-341)) (-5 *1 (-856 *4 *5)))))
+(-10 -7 (-15 -2203 ((-1144 |#1| |#2|) (-1144 |#1| |#2|) (-591 |#2|) (-591 |#2|))) (-15 -2203 ((-1085 |#2|) (-591 |#2|) (-591 |#2|))))
+((-4103 (((-525) (-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-1072)) 139)) (-3603 ((|#4| |#4|) 155)) (-2476 (((-591 (-385 (-885 |#1|))) (-591 (-1089))) 119)) (-2763 (((-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))) (-631 |#4|) (-591 (-385 (-885 |#1|))) (-591 (-591 |#4|)) (-712) (-712) (-525)) 75)) (-1287 (((-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|)))))) (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|)))))) (-591 |#4|)) 59)) (-3843 (((-631 |#4|) (-631 |#4|) (-591 |#4|)) 55)) (-1438 (((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-1072)) 151)) (-2583 (((-525) (-631 |#4|) (-854) (-1072)) 133) (((-525) (-631 |#4|) (-591 (-1089)) (-854) (-1072)) 132) (((-525) (-631 |#4|) (-591 |#4|) (-854) (-1072)) 131) (((-525) (-631 |#4|) (-1072)) 128) (((-525) (-631 |#4|) (-591 (-1089)) (-1072)) 127) (((-525) (-631 |#4|) (-591 |#4|) (-1072)) 126) (((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|) (-854)) 125) (((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|) (-591 (-1089)) (-854)) 124) (((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|) (-591 |#4|) (-854)) 123) (((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|)) 121) (((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|) (-591 (-1089))) 120) (((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|) (-591 |#4|)) 116)) (-2108 ((|#4| (-885 |#1|)) 68)) (-1852 (((-108) (-591 |#4|) (-591 (-591 |#4|))) 152)) (-2001 (((-591 (-591 (-525))) (-525) (-525)) 130)) (-3082 (((-591 (-591 |#4|)) (-591 (-591 |#4|))) 88)) (-3907 (((-712) (-591 (-2 (|:| -4073 (-712)) (|:| |eqns| (-591 (-2 (|:| |det| |#4|) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))) (|:| |fgb| (-591 |#4|))))) 86)) (-2622 (((-712) (-591 (-2 (|:| -4073 (-712)) (|:| |eqns| (-591 (-2 (|:| |det| |#4|) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))) (|:| |fgb| (-591 |#4|))))) 85)) (-2025 (((-108) (-591 (-885 |#1|))) 17) (((-108) (-591 |#4|)) 13)) (-2094 (((-2 (|:| |sysok| (-108)) (|:| |z0| (-591 |#4|)) (|:| |n0| (-591 |#4|))) (-591 |#4|) (-591 |#4|)) 71)) (-2022 (((-591 |#4|) |#4|) 49)) (-3757 (((-591 (-385 (-885 |#1|))) (-591 |#4|)) 115) (((-631 (-385 (-885 |#1|))) (-631 |#4|)) 56) (((-385 (-885 |#1|)) |#4|) 112)) (-2942 (((-2 (|:| |rgl| (-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|)))))))))) (|:| |rgsz| (-525))) (-631 |#4|) (-591 (-385 (-885 |#1|))) (-712) (-1072) (-525)) 93)) (-3316 (((-591 (-2 (|:| -4073 (-712)) (|:| |eqns| (-591 (-2 (|:| |det| |#4|) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))) (|:| |fgb| (-591 |#4|)))) (-631 |#4|) (-712)) 84)) (-1918 (((-591 (-2 (|:| |det| |#4|) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525))))) (-631 |#4|) (-712)) 101)) (-1314 (((-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|)))))) (-2 (|:| -4057 (-631 (-385 (-885 |#1|)))) (|:| |vec| (-591 (-385 (-885 |#1|)))) (|:| -4073 (-712)) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525))))) 48)))
+(((-857 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2583 ((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|) (-591 |#4|))) (-15 -2583 ((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|) (-591 (-1089)))) (-15 -2583 ((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|))) (-15 -2583 ((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|) (-591 |#4|) (-854))) (-15 -2583 ((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|) (-591 (-1089)) (-854))) (-15 -2583 ((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|) (-854))) (-15 -2583 ((-525) (-631 |#4|) (-591 |#4|) (-1072))) (-15 -2583 ((-525) (-631 |#4|) (-591 (-1089)) (-1072))) (-15 -2583 ((-525) (-631 |#4|) (-1072))) (-15 -2583 ((-525) (-631 |#4|) (-591 |#4|) (-854) (-1072))) (-15 -2583 ((-525) (-631 |#4|) (-591 (-1089)) (-854) (-1072))) (-15 -2583 ((-525) (-631 |#4|) (-854) (-1072))) (-15 -4103 ((-525) (-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-1072))) (-15 -1438 ((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-1072))) (-15 -2942 ((-2 (|:| |rgl| (-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|)))))))))) (|:| |rgsz| (-525))) (-631 |#4|) (-591 (-385 (-885 |#1|))) (-712) (-1072) (-525))) (-15 -3757 ((-385 (-885 |#1|)) |#4|)) (-15 -3757 ((-631 (-385 (-885 |#1|))) (-631 |#4|))) (-15 -3757 ((-591 (-385 (-885 |#1|))) (-591 |#4|))) (-15 -2476 ((-591 (-385 (-885 |#1|))) (-591 (-1089)))) (-15 -2108 (|#4| (-885 |#1|))) (-15 -2094 ((-2 (|:| |sysok| (-108)) (|:| |z0| (-591 |#4|)) (|:| |n0| (-591 |#4|))) (-591 |#4|) (-591 |#4|))) (-15 -3316 ((-591 (-2 (|:| -4073 (-712)) (|:| |eqns| (-591 (-2 (|:| |det| |#4|) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))) (|:| |fgb| (-591 |#4|)))) (-631 |#4|) (-712))) (-15 -1287 ((-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|)))))) (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|)))))) (-591 |#4|))) (-15 -1314 ((-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|)))))) (-2 (|:| -4057 (-631 (-385 (-885 |#1|)))) (|:| |vec| (-591 (-385 (-885 |#1|)))) (|:| -4073 (-712)) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))) (-15 -2022 ((-591 |#4|) |#4|)) (-15 -2622 ((-712) (-591 (-2 (|:| -4073 (-712)) (|:| |eqns| (-591 (-2 (|:| |det| |#4|) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))) (|:| |fgb| (-591 |#4|)))))) (-15 -3907 ((-712) (-591 (-2 (|:| -4073 (-712)) (|:| |eqns| (-591 (-2 (|:| |det| |#4|) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))) (|:| |fgb| (-591 |#4|)))))) (-15 -3082 ((-591 (-591 |#4|)) (-591 (-591 |#4|)))) (-15 -2001 ((-591 (-591 (-525))) (-525) (-525))) (-15 -1852 ((-108) (-591 |#4|) (-591 (-591 |#4|)))) (-15 -1918 ((-591 (-2 (|:| |det| |#4|) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525))))) (-631 |#4|) (-712))) (-15 -3843 ((-631 |#4|) (-631 |#4|) (-591 |#4|))) (-15 -2763 ((-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))) (-631 |#4|) (-591 (-385 (-885 |#1|))) (-591 (-591 |#4|)) (-712) (-712) (-525))) (-15 -3603 (|#4| |#4|)) (-15 -2025 ((-108) (-591 |#4|))) (-15 -2025 ((-108) (-591 (-885 |#1|))))) (-13 (-286) (-138)) (-13 (-788) (-566 (-1089))) (-734) (-882 |#1| |#3| |#2|)) (T -857))
+((-2025 (*1 *2 *3) (-12 (-5 *3 (-591 (-885 *4))) (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-108)) (-5 *1 (-857 *4 *5 *6 *7)) (-4 *7 (-882 *4 *6 *5)))) (-2025 (*1 *2 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-882 *4 *6 *5)) (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-108)) (-5 *1 (-857 *4 *5 *6 *7)))) (-3603 (*1 *2 *2) (-12 (-4 *3 (-13 (-286) (-138))) (-4 *4 (-13 (-788) (-566 (-1089)))) (-4 *5 (-734)) (-5 *1 (-857 *3 *4 *5 *2)) (-4 *2 (-882 *3 *5 *4)))) (-2763 (*1 *2 *3 *4 *5 *6 *7 *7 *8) (-12 (-5 *3 (-2 (|:| |det| *12) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525))))) (-5 *4 (-631 *12)) (-5 *5 (-591 (-385 (-885 *9)))) (-5 *6 (-591 (-591 *12))) (-5 *7 (-712)) (-5 *8 (-525)) (-4 *9 (-13 (-286) (-138))) (-4 *12 (-882 *9 *11 *10)) (-4 *10 (-13 (-788) (-566 (-1089)))) (-4 *11 (-734)) (-5 *2 (-2 (|:| |eqzro| (-591 *12)) (|:| |neqzro| (-591 *12)) (|:| |wcond| (-591 (-885 *9))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 *9)))) (|:| -4003 (-591 (-1171 (-385 (-885 *9))))))))) (-5 *1 (-857 *9 *10 *11 *12)))) (-3843 (*1 *2 *2 *3) (-12 (-5 *2 (-631 *7)) (-5 *3 (-591 *7)) (-4 *7 (-882 *4 *6 *5)) (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *1 (-857 *4 *5 *6 *7)))) (-1918 (*1 *2 *3 *4) (-12 (-5 *3 (-631 *8)) (-5 *4 (-712)) (-4 *8 (-882 *5 *7 *6)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-13 (-788) (-566 (-1089)))) (-4 *7 (-734)) (-5 *2 (-591 (-2 (|:| |det| *8) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))) (-5 *1 (-857 *5 *6 *7 *8)))) (-1852 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-591 *8))) (-5 *3 (-591 *8)) (-4 *8 (-882 *5 *7 *6)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-13 (-788) (-566 (-1089)))) (-4 *7 (-734)) (-5 *2 (-108)) (-5 *1 (-857 *5 *6 *7 *8)))) (-2001 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-591 (-591 (-525)))) (-5 *1 (-857 *4 *5 *6 *7)) (-5 *3 (-525)) (-4 *7 (-882 *4 *6 *5)))) (-3082 (*1 *2 *2) (-12 (-5 *2 (-591 (-591 *6))) (-4 *6 (-882 *3 *5 *4)) (-4 *3 (-13 (-286) (-138))) (-4 *4 (-13 (-788) (-566 (-1089)))) (-4 *5 (-734)) (-5 *1 (-857 *3 *4 *5 *6)))) (-3907 (*1 *2 *3) (-12 (-5 *3 (-591 (-2 (|:| -4073 (-712)) (|:| |eqns| (-591 (-2 (|:| |det| *7) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))) (|:| |fgb| (-591 *7))))) (-4 *7 (-882 *4 *6 *5)) (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-712)) (-5 *1 (-857 *4 *5 *6 *7)))) (-2622 (*1 *2 *3) (-12 (-5 *3 (-591 (-2 (|:| -4073 (-712)) (|:| |eqns| (-591 (-2 (|:| |det| *7) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))) (|:| |fgb| (-591 *7))))) (-4 *7 (-882 *4 *6 *5)) (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-712)) (-5 *1 (-857 *4 *5 *6 *7)))) (-2022 (*1 *2 *3) (-12 (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-591 *3)) (-5 *1 (-857 *4 *5 *6 *3)) (-4 *3 (-882 *4 *6 *5)))) (-1314 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -4057 (-631 (-385 (-885 *4)))) (|:| |vec| (-591 (-385 (-885 *4)))) (|:| -4073 (-712)) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525))))) (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-2 (|:| |partsol| (-1171 (-385 (-885 *4)))) (|:| -4003 (-591 (-1171 (-385 (-885 *4))))))) (-5 *1 (-857 *4 *5 *6 *7)) (-4 *7 (-882 *4 *6 *5)))) (-1287 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1171 (-385 (-885 *4)))) (|:| -4003 (-591 (-1171 (-385 (-885 *4))))))) (-5 *3 (-591 *7)) (-4 *4 (-13 (-286) (-138))) (-4 *7 (-882 *4 *6 *5)) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *1 (-857 *4 *5 *6 *7)))) (-3316 (*1 *2 *3 *4) (-12 (-5 *3 (-631 *8)) (-4 *8 (-882 *5 *7 *6)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-13 (-788) (-566 (-1089)))) (-4 *7 (-734)) (-5 *2 (-591 (-2 (|:| -4073 (-712)) (|:| |eqns| (-591 (-2 (|:| |det| *8) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))) (|:| |fgb| (-591 *8))))) (-5 *1 (-857 *5 *6 *7 *8)) (-5 *4 (-712)))) (-2094 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-4 *7 (-882 *4 *6 *5)) (-5 *2 (-2 (|:| |sysok| (-108)) (|:| |z0| (-591 *7)) (|:| |n0| (-591 *7)))) (-5 *1 (-857 *4 *5 *6 *7)) (-5 *3 (-591 *7)))) (-2108 (*1 *2 *3) (-12 (-5 *3 (-885 *4)) (-4 *4 (-13 (-286) (-138))) (-4 *2 (-882 *4 *6 *5)) (-5 *1 (-857 *4 *5 *6 *2)) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)))) (-2476 (*1 *2 *3) (-12 (-5 *3 (-591 (-1089))) (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-591 (-385 (-885 *4)))) (-5 *1 (-857 *4 *5 *6 *7)) (-4 *7 (-882 *4 *6 *5)))) (-3757 (*1 *2 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-882 *4 *6 *5)) (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-591 (-385 (-885 *4)))) (-5 *1 (-857 *4 *5 *6 *7)))) (-3757 (*1 *2 *3) (-12 (-5 *3 (-631 *7)) (-4 *7 (-882 *4 *6 *5)) (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-631 (-385 (-885 *4)))) (-5 *1 (-857 *4 *5 *6 *7)))) (-3757 (*1 *2 *3) (-12 (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-385 (-885 *4))) (-5 *1 (-857 *4 *5 *6 *3)) (-4 *3 (-882 *4 *6 *5)))) (-2942 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-631 *11)) (-5 *4 (-591 (-385 (-885 *8)))) (-5 *5 (-712)) (-5 *6 (-1072)) (-4 *8 (-13 (-286) (-138))) (-4 *11 (-882 *8 *10 *9)) (-4 *9 (-13 (-788) (-566 (-1089)))) (-4 *10 (-734)) (-5 *2 (-2 (|:| |rgl| (-591 (-2 (|:| |eqzro| (-591 *11)) (|:| |neqzro| (-591 *11)) (|:| |wcond| (-591 (-885 *8))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 *8)))) (|:| -4003 (-591 (-1171 (-385 (-885 *8)))))))))) (|:| |rgsz| (-525)))) (-5 *1 (-857 *8 *9 *10 *11)) (-5 *7 (-525)))) (-1438 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-591 (-2 (|:| |eqzro| (-591 *7)) (|:| |neqzro| (-591 *7)) (|:| |wcond| (-591 (-885 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 *4)))) (|:| -4003 (-591 (-1171 (-385 (-885 *4)))))))))) (-5 *1 (-857 *4 *5 *6 *7)) (-4 *7 (-882 *4 *6 *5)))) (-4103 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-2 (|:| |eqzro| (-591 *8)) (|:| |neqzro| (-591 *8)) (|:| |wcond| (-591 (-885 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 *5)))) (|:| -4003 (-591 (-1171 (-385 (-885 *5)))))))))) (-5 *4 (-1072)) (-4 *5 (-13 (-286) (-138))) (-4 *8 (-882 *5 *7 *6)) (-4 *6 (-13 (-788) (-566 (-1089)))) (-4 *7 (-734)) (-5 *2 (-525)) (-5 *1 (-857 *5 *6 *7 *8)))) (-2583 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-631 *9)) (-5 *4 (-854)) (-5 *5 (-1072)) (-4 *9 (-882 *6 *8 *7)) (-4 *6 (-13 (-286) (-138))) (-4 *7 (-13 (-788) (-566 (-1089)))) (-4 *8 (-734)) (-5 *2 (-525)) (-5 *1 (-857 *6 *7 *8 *9)))) (-2583 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-631 *10)) (-5 *4 (-591 (-1089))) (-5 *5 (-854)) (-5 *6 (-1072)) (-4 *10 (-882 *7 *9 *8)) (-4 *7 (-13 (-286) (-138))) (-4 *8 (-13 (-788) (-566 (-1089)))) (-4 *9 (-734)) (-5 *2 (-525)) (-5 *1 (-857 *7 *8 *9 *10)))) (-2583 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-631 *10)) (-5 *4 (-591 *10)) (-5 *5 (-854)) (-5 *6 (-1072)) (-4 *10 (-882 *7 *9 *8)) (-4 *7 (-13 (-286) (-138))) (-4 *8 (-13 (-788) (-566 (-1089)))) (-4 *9 (-734)) (-5 *2 (-525)) (-5 *1 (-857 *7 *8 *9 *10)))) (-2583 (*1 *2 *3 *4) (-12 (-5 *3 (-631 *8)) (-5 *4 (-1072)) (-4 *8 (-882 *5 *7 *6)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-13 (-788) (-566 (-1089)))) (-4 *7 (-734)) (-5 *2 (-525)) (-5 *1 (-857 *5 *6 *7 *8)))) (-2583 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-631 *9)) (-5 *4 (-591 (-1089))) (-5 *5 (-1072)) (-4 *9 (-882 *6 *8 *7)) (-4 *6 (-13 (-286) (-138))) (-4 *7 (-13 (-788) (-566 (-1089)))) (-4 *8 (-734)) (-5 *2 (-525)) (-5 *1 (-857 *6 *7 *8 *9)))) (-2583 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-631 *9)) (-5 *4 (-591 *9)) (-5 *5 (-1072)) (-4 *9 (-882 *6 *8 *7)) (-4 *6 (-13 (-286) (-138))) (-4 *7 (-13 (-788) (-566 (-1089)))) (-4 *8 (-734)) (-5 *2 (-525)) (-5 *1 (-857 *6 *7 *8 *9)))) (-2583 (*1 *2 *3 *4) (-12 (-5 *3 (-631 *8)) (-5 *4 (-854)) (-4 *8 (-882 *5 *7 *6)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-13 (-788) (-566 (-1089)))) (-4 *7 (-734)) (-5 *2 (-591 (-2 (|:| |eqzro| (-591 *8)) (|:| |neqzro| (-591 *8)) (|:| |wcond| (-591 (-885 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 *5)))) (|:| -4003 (-591 (-1171 (-385 (-885 *5)))))))))) (-5 *1 (-857 *5 *6 *7 *8)))) (-2583 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-631 *9)) (-5 *4 (-591 (-1089))) (-5 *5 (-854)) (-4 *9 (-882 *6 *8 *7)) (-4 *6 (-13 (-286) (-138))) (-4 *7 (-13 (-788) (-566 (-1089)))) (-4 *8 (-734)) (-5 *2 (-591 (-2 (|:| |eqzro| (-591 *9)) (|:| |neqzro| (-591 *9)) (|:| |wcond| (-591 (-885 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 *6)))) (|:| -4003 (-591 (-1171 (-385 (-885 *6)))))))))) (-5 *1 (-857 *6 *7 *8 *9)))) (-2583 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-631 *9)) (-5 *5 (-854)) (-4 *9 (-882 *6 *8 *7)) (-4 *6 (-13 (-286) (-138))) (-4 *7 (-13 (-788) (-566 (-1089)))) (-4 *8 (-734)) (-5 *2 (-591 (-2 (|:| |eqzro| (-591 *9)) (|:| |neqzro| (-591 *9)) (|:| |wcond| (-591 (-885 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 *6)))) (|:| -4003 (-591 (-1171 (-385 (-885 *6)))))))))) (-5 *1 (-857 *6 *7 *8 *9)) (-5 *4 (-591 *9)))) (-2583 (*1 *2 *3) (-12 (-5 *3 (-631 *7)) (-4 *7 (-882 *4 *6 *5)) (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-591 (-2 (|:| |eqzro| (-591 *7)) (|:| |neqzro| (-591 *7)) (|:| |wcond| (-591 (-885 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 *4)))) (|:| -4003 (-591 (-1171 (-385 (-885 *4)))))))))) (-5 *1 (-857 *4 *5 *6 *7)))) (-2583 (*1 *2 *3 *4) (-12 (-5 *3 (-631 *8)) (-5 *4 (-591 (-1089))) (-4 *8 (-882 *5 *7 *6)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-13 (-788) (-566 (-1089)))) (-4 *7 (-734)) (-5 *2 (-591 (-2 (|:| |eqzro| (-591 *8)) (|:| |neqzro| (-591 *8)) (|:| |wcond| (-591 (-885 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 *5)))) (|:| -4003 (-591 (-1171 (-385 (-885 *5)))))))))) (-5 *1 (-857 *5 *6 *7 *8)))) (-2583 (*1 *2 *3 *4) (-12 (-5 *3 (-631 *8)) (-4 *8 (-882 *5 *7 *6)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-13 (-788) (-566 (-1089)))) (-4 *7 (-734)) (-5 *2 (-591 (-2 (|:| |eqzro| (-591 *8)) (|:| |neqzro| (-591 *8)) (|:| |wcond| (-591 (-885 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 *5)))) (|:| -4003 (-591 (-1171 (-385 (-885 *5)))))))))) (-5 *1 (-857 *5 *6 *7 *8)) (-5 *4 (-591 *8)))))
+(-10 -7 (-15 -2583 ((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|) (-591 |#4|))) (-15 -2583 ((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|) (-591 (-1089)))) (-15 -2583 ((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|))) (-15 -2583 ((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|) (-591 |#4|) (-854))) (-15 -2583 ((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|) (-591 (-1089)) (-854))) (-15 -2583 ((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-631 |#4|) (-854))) (-15 -2583 ((-525) (-631 |#4|) (-591 |#4|) (-1072))) (-15 -2583 ((-525) (-631 |#4|) (-591 (-1089)) (-1072))) (-15 -2583 ((-525) (-631 |#4|) (-1072))) (-15 -2583 ((-525) (-631 |#4|) (-591 |#4|) (-854) (-1072))) (-15 -2583 ((-525) (-631 |#4|) (-591 (-1089)) (-854) (-1072))) (-15 -2583 ((-525) (-631 |#4|) (-854) (-1072))) (-15 -4103 ((-525) (-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-1072))) (-15 -1438 ((-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|))))))))) (-1072))) (-15 -2942 ((-2 (|:| |rgl| (-591 (-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|)))))))))) (|:| |rgsz| (-525))) (-631 |#4|) (-591 (-385 (-885 |#1|))) (-712) (-1072) (-525))) (-15 -3757 ((-385 (-885 |#1|)) |#4|)) (-15 -3757 ((-631 (-385 (-885 |#1|))) (-631 |#4|))) (-15 -3757 ((-591 (-385 (-885 |#1|))) (-591 |#4|))) (-15 -2476 ((-591 (-385 (-885 |#1|))) (-591 (-1089)))) (-15 -2108 (|#4| (-885 |#1|))) (-15 -2094 ((-2 (|:| |sysok| (-108)) (|:| |z0| (-591 |#4|)) (|:| |n0| (-591 |#4|))) (-591 |#4|) (-591 |#4|))) (-15 -3316 ((-591 (-2 (|:| -4073 (-712)) (|:| |eqns| (-591 (-2 (|:| |det| |#4|) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))) (|:| |fgb| (-591 |#4|)))) (-631 |#4|) (-712))) (-15 -1287 ((-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|)))))) (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|)))))) (-591 |#4|))) (-15 -1314 ((-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|)))))) (-2 (|:| -4057 (-631 (-385 (-885 |#1|)))) (|:| |vec| (-591 (-385 (-885 |#1|)))) (|:| -4073 (-712)) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))) (-15 -2022 ((-591 |#4|) |#4|)) (-15 -2622 ((-712) (-591 (-2 (|:| -4073 (-712)) (|:| |eqns| (-591 (-2 (|:| |det| |#4|) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))) (|:| |fgb| (-591 |#4|)))))) (-15 -3907 ((-712) (-591 (-2 (|:| -4073 (-712)) (|:| |eqns| (-591 (-2 (|:| |det| |#4|) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))) (|:| |fgb| (-591 |#4|)))))) (-15 -3082 ((-591 (-591 |#4|)) (-591 (-591 |#4|)))) (-15 -2001 ((-591 (-591 (-525))) (-525) (-525))) (-15 -1852 ((-108) (-591 |#4|) (-591 (-591 |#4|)))) (-15 -1918 ((-591 (-2 (|:| |det| |#4|) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525))))) (-631 |#4|) (-712))) (-15 -3843 ((-631 |#4|) (-631 |#4|) (-591 |#4|))) (-15 -2763 ((-2 (|:| |eqzro| (-591 |#4|)) (|:| |neqzro| (-591 |#4|)) (|:| |wcond| (-591 (-885 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1171 (-385 (-885 |#1|)))) (|:| -4003 (-591 (-1171 (-385 (-885 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))) (-631 |#4|) (-591 (-385 (-885 |#1|))) (-591 (-591 |#4|)) (-712) (-712) (-525))) (-15 -3603 (|#4| |#4|)) (-15 -2025 ((-108) (-591 |#4|))) (-15 -2025 ((-108) (-591 (-885 |#1|)))))
+((-2290 (((-860) |#1| (-1089)) 17) (((-860) |#1| (-1089) (-1013 (-205))) 21)) (-4205 (((-860) |#1| |#1| (-1089) (-1013 (-205))) 19) (((-860) |#1| (-1089) (-1013 (-205))) 15)))
+(((-858 |#1|) (-10 -7 (-15 -4205 ((-860) |#1| (-1089) (-1013 (-205)))) (-15 -4205 ((-860) |#1| |#1| (-1089) (-1013 (-205)))) (-15 -2290 ((-860) |#1| (-1089) (-1013 (-205)))) (-15 -2290 ((-860) |#1| (-1089)))) (-566 (-501))) (T -858))
+((-2290 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-5 *2 (-860)) (-5 *1 (-858 *3)) (-4 *3 (-566 (-501))))) (-2290 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1089)) (-5 *5 (-1013 (-205))) (-5 *2 (-860)) (-5 *1 (-858 *3)) (-4 *3 (-566 (-501))))) (-4205 (*1 *2 *3 *3 *4 *5) (-12 (-5 *4 (-1089)) (-5 *5 (-1013 (-205))) (-5 *2 (-860)) (-5 *1 (-858 *3)) (-4 *3 (-566 (-501))))) (-4205 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1089)) (-5 *5 (-1013 (-205))) (-5 *2 (-860)) (-5 *1 (-858 *3)) (-4 *3 (-566 (-501))))))
+(-10 -7 (-15 -4205 ((-860) |#1| (-1089) (-1013 (-205)))) (-15 -4205 ((-860) |#1| |#1| (-1089) (-1013 (-205)))) (-15 -2290 ((-860) |#1| (-1089) (-1013 (-205)))) (-15 -2290 ((-860) |#1| (-1089))))
+((-1895 (($ $ (-1013 (-205)) (-1013 (-205)) (-1013 (-205))) 70)) (-3243 (((-1013 (-205)) $) 40)) (-3236 (((-1013 (-205)) $) 39)) (-3229 (((-1013 (-205)) $) 38)) (-1913 (((-591 (-591 (-205))) $) 43)) (-3342 (((-1013 (-205)) $) 41)) (-2855 (((-525) (-525)) 32)) (-2471 (((-525) (-525)) 28)) (-3498 (((-525) (-525)) 30)) (-1960 (((-108) (-108)) 35)) (-2347 (((-525)) 31)) (-2960 (($ $ (-1013 (-205))) 73) (($ $) 74)) (-1365 (($ (-1 (-876 (-205)) (-205)) (-1013 (-205))) 78) (($ (-1 (-876 (-205)) (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205))) 79)) (-4205 (($ (-1 (-205) (-205)) (-1 (-205) (-205)) (-1 (-205) (-205)) (-1 (-205) (-205)) (-1013 (-205))) 81) (($ (-1 (-205) (-205)) (-1 (-205) (-205)) (-1 (-205) (-205)) (-1 (-205) (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205))) 82) (($ $ (-1013 (-205))) 76)) (-2912 (((-525)) 36)) (-2895 (((-525)) 27)) (-4216 (((-525)) 29)) (-3001 (((-591 (-591 (-876 (-205)))) $) 94)) (-2336 (((-108) (-108)) 37)) (-3022 (((-796) $) 93)) (-3927 (((-108)) 34)))
+(((-859) (-13 (-905) (-10 -8 (-15 -1365 ($ (-1 (-876 (-205)) (-205)) (-1013 (-205)))) (-15 -1365 ($ (-1 (-876 (-205)) (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205)))) (-15 -4205 ($ (-1 (-205) (-205)) (-1 (-205) (-205)) (-1 (-205) (-205)) (-1 (-205) (-205)) (-1013 (-205)))) (-15 -4205 ($ (-1 (-205) (-205)) (-1 (-205) (-205)) (-1 (-205) (-205)) (-1 (-205) (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205)))) (-15 -4205 ($ $ (-1013 (-205)))) (-15 -1895 ($ $ (-1013 (-205)) (-1013 (-205)) (-1013 (-205)))) (-15 -2960 ($ $ (-1013 (-205)))) (-15 -2960 ($ $)) (-15 -3342 ((-1013 (-205)) $)) (-15 -1913 ((-591 (-591 (-205))) $)) (-15 -2895 ((-525))) (-15 -2471 ((-525) (-525))) (-15 -4216 ((-525))) (-15 -3498 ((-525) (-525))) (-15 -2347 ((-525))) (-15 -2855 ((-525) (-525))) (-15 -3927 ((-108))) (-15 -1960 ((-108) (-108))) (-15 -2912 ((-525))) (-15 -2336 ((-108) (-108)))))) (T -859))
+((-1365 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-876 (-205)) (-205))) (-5 *3 (-1013 (-205))) (-5 *1 (-859)))) (-1365 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-876 (-205)) (-205))) (-5 *3 (-1013 (-205))) (-5 *1 (-859)))) (-4205 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-205) (-205))) (-5 *3 (-1013 (-205))) (-5 *1 (-859)))) (-4205 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-205) (-205))) (-5 *3 (-1013 (-205))) (-5 *1 (-859)))) (-4205 (*1 *1 *1 *2) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-859)))) (-1895 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-859)))) (-2960 (*1 *1 *1 *2) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-859)))) (-2960 (*1 *1 *1) (-5 *1 (-859))) (-3342 (*1 *2 *1) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-859)))) (-1913 (*1 *2 *1) (-12 (-5 *2 (-591 (-591 (-205)))) (-5 *1 (-859)))) (-2895 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-859)))) (-2471 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-859)))) (-4216 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-859)))) (-3498 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-859)))) (-2347 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-859)))) (-2855 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-859)))) (-3927 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-859)))) (-1960 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-859)))) (-2912 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-859)))) (-2336 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-859)))))
+(-13 (-905) (-10 -8 (-15 -1365 ($ (-1 (-876 (-205)) (-205)) (-1013 (-205)))) (-15 -1365 ($ (-1 (-876 (-205)) (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205)))) (-15 -4205 ($ (-1 (-205) (-205)) (-1 (-205) (-205)) (-1 (-205) (-205)) (-1 (-205) (-205)) (-1013 (-205)))) (-15 -4205 ($ (-1 (-205) (-205)) (-1 (-205) (-205)) (-1 (-205) (-205)) (-1 (-205) (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205)))) (-15 -4205 ($ $ (-1013 (-205)))) (-15 -1895 ($ $ (-1013 (-205)) (-1013 (-205)) (-1013 (-205)))) (-15 -2960 ($ $ (-1013 (-205)))) (-15 -2960 ($ $)) (-15 -3342 ((-1013 (-205)) $)) (-15 -1913 ((-591 (-591 (-205))) $)) (-15 -2895 ((-525))) (-15 -2471 ((-525) (-525))) (-15 -4216 ((-525))) (-15 -3498 ((-525) (-525))) (-15 -2347 ((-525))) (-15 -2855 ((-525) (-525))) (-15 -3927 ((-108))) (-15 -1960 ((-108) (-108))) (-15 -2912 ((-525))) (-15 -2336 ((-108) (-108)))))
+((-1895 (($ $ (-1013 (-205))) 70) (($ $ (-1013 (-205)) (-1013 (-205))) 71)) (-3236 (((-1013 (-205)) $) 44)) (-3229 (((-1013 (-205)) $) 43)) (-3342 (((-1013 (-205)) $) 45)) (-2818 (((-525) (-525)) 37)) (-2417 (((-525) (-525)) 33)) (-2952 (((-525) (-525)) 35)) (-2923 (((-108) (-108)) 39)) (-2418 (((-525)) 36)) (-2960 (($ $ (-1013 (-205))) 74) (($ $) 75)) (-1365 (($ (-1 (-876 (-205)) (-205)) (-1013 (-205))) 84) (($ (-1 (-876 (-205)) (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205))) 85)) (-2290 (($ (-1 (-205) (-205)) (-1013 (-205))) 92) (($ (-1 (-205) (-205))) 95)) (-4205 (($ (-1 (-205) (-205)) (-1013 (-205))) 79) (($ (-1 (-205) (-205)) (-1013 (-205)) (-1013 (-205))) 80) (($ (-591 (-1 (-205) (-205))) (-1013 (-205))) 87) (($ (-591 (-1 (-205) (-205))) (-1013 (-205)) (-1013 (-205))) 88) (($ (-1 (-205) (-205)) (-1 (-205) (-205)) (-1013 (-205))) 81) (($ (-1 (-205) (-205)) (-1 (-205) (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205))) 82) (($ $ (-1013 (-205))) 76)) (-1879 (((-108) $) 40)) (-4134 (((-525)) 41)) (-3537 (((-525)) 32)) (-2061 (((-525)) 34)) (-3001 (((-591 (-591 (-876 (-205)))) $) 23)) (-2948 (((-108) (-108)) 42)) (-3022 (((-796) $) 106)) (-1332 (((-108)) 38)))
+(((-860) (-13 (-887) (-10 -8 (-15 -4205 ($ (-1 (-205) (-205)) (-1013 (-205)))) (-15 -4205 ($ (-1 (-205) (-205)) (-1013 (-205)) (-1013 (-205)))) (-15 -4205 ($ (-591 (-1 (-205) (-205))) (-1013 (-205)))) (-15 -4205 ($ (-591 (-1 (-205) (-205))) (-1013 (-205)) (-1013 (-205)))) (-15 -4205 ($ (-1 (-205) (-205)) (-1 (-205) (-205)) (-1013 (-205)))) (-15 -4205 ($ (-1 (-205) (-205)) (-1 (-205) (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205)))) (-15 -1365 ($ (-1 (-876 (-205)) (-205)) (-1013 (-205)))) (-15 -1365 ($ (-1 (-876 (-205)) (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205)))) (-15 -2290 ($ (-1 (-205) (-205)) (-1013 (-205)))) (-15 -2290 ($ (-1 (-205) (-205)))) (-15 -4205 ($ $ (-1013 (-205)))) (-15 -1879 ((-108) $)) (-15 -1895 ($ $ (-1013 (-205)))) (-15 -1895 ($ $ (-1013 (-205)) (-1013 (-205)))) (-15 -2960 ($ $ (-1013 (-205)))) (-15 -2960 ($ $)) (-15 -3342 ((-1013 (-205)) $)) (-15 -3537 ((-525))) (-15 -2417 ((-525) (-525))) (-15 -2061 ((-525))) (-15 -2952 ((-525) (-525))) (-15 -2418 ((-525))) (-15 -2818 ((-525) (-525))) (-15 -1332 ((-108))) (-15 -2923 ((-108) (-108))) (-15 -4134 ((-525))) (-15 -2948 ((-108) (-108)))))) (T -860))
+((-4205 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-205) (-205))) (-5 *3 (-1013 (-205))) (-5 *1 (-860)))) (-4205 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-205) (-205))) (-5 *3 (-1013 (-205))) (-5 *1 (-860)))) (-4205 (*1 *1 *2 *3) (-12 (-5 *2 (-591 (-1 (-205) (-205)))) (-5 *3 (-1013 (-205))) (-5 *1 (-860)))) (-4205 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-591 (-1 (-205) (-205)))) (-5 *3 (-1013 (-205))) (-5 *1 (-860)))) (-4205 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-205) (-205))) (-5 *3 (-1013 (-205))) (-5 *1 (-860)))) (-4205 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-205) (-205))) (-5 *3 (-1013 (-205))) (-5 *1 (-860)))) (-1365 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-876 (-205)) (-205))) (-5 *3 (-1013 (-205))) (-5 *1 (-860)))) (-1365 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-876 (-205)) (-205))) (-5 *3 (-1013 (-205))) (-5 *1 (-860)))) (-2290 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-205) (-205))) (-5 *3 (-1013 (-205))) (-5 *1 (-860)))) (-2290 (*1 *1 *2) (-12 (-5 *2 (-1 (-205) (-205))) (-5 *1 (-860)))) (-4205 (*1 *1 *1 *2) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-860)))) (-1879 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-860)))) (-1895 (*1 *1 *1 *2) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-860)))) (-1895 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-860)))) (-2960 (*1 *1 *1 *2) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-860)))) (-2960 (*1 *1 *1) (-5 *1 (-860))) (-3342 (*1 *2 *1) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-860)))) (-3537 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-860)))) (-2417 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-860)))) (-2061 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-860)))) (-2952 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-860)))) (-2418 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-860)))) (-2818 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-860)))) (-1332 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-860)))) (-2923 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-860)))) (-4134 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-860)))) (-2948 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-860)))))
+(-13 (-887) (-10 -8 (-15 -4205 ($ (-1 (-205) (-205)) (-1013 (-205)))) (-15 -4205 ($ (-1 (-205) (-205)) (-1013 (-205)) (-1013 (-205)))) (-15 -4205 ($ (-591 (-1 (-205) (-205))) (-1013 (-205)))) (-15 -4205 ($ (-591 (-1 (-205) (-205))) (-1013 (-205)) (-1013 (-205)))) (-15 -4205 ($ (-1 (-205) (-205)) (-1 (-205) (-205)) (-1013 (-205)))) (-15 -4205 ($ (-1 (-205) (-205)) (-1 (-205) (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205)))) (-15 -1365 ($ (-1 (-876 (-205)) (-205)) (-1013 (-205)))) (-15 -1365 ($ (-1 (-876 (-205)) (-205)) (-1013 (-205)) (-1013 (-205)) (-1013 (-205)))) (-15 -2290 ($ (-1 (-205) (-205)) (-1013 (-205)))) (-15 -2290 ($ (-1 (-205) (-205)))) (-15 -4205 ($ $ (-1013 (-205)))) (-15 -1879 ((-108) $)) (-15 -1895 ($ $ (-1013 (-205)))) (-15 -1895 ($ $ (-1013 (-205)) (-1013 (-205)))) (-15 -2960 ($ $ (-1013 (-205)))) (-15 -2960 ($ $)) (-15 -3342 ((-1013 (-205)) $)) (-15 -3537 ((-525))) (-15 -2417 ((-525) (-525))) (-15 -2061 ((-525))) (-15 -2952 ((-525) (-525))) (-15 -2418 ((-525))) (-15 -2818 ((-525) (-525))) (-15 -1332 ((-108))) (-15 -2923 ((-108) (-108))) (-15 -4134 ((-525))) (-15 -2948 ((-108) (-108)))))
+((-2403 (((-591 (-1013 (-205))) (-591 (-591 (-876 (-205))))) 24)))
+(((-861) (-10 -7 (-15 -2403 ((-591 (-1013 (-205))) (-591 (-591 (-876 (-205)))))))) (T -861))
+((-2403 (*1 *2 *3) (-12 (-5 *3 (-591 (-591 (-876 (-205))))) (-5 *2 (-591 (-1013 (-205)))) (-5 *1 (-861)))))
+(-10 -7 (-15 -2403 ((-591 (-1013 (-205))) (-591 (-591 (-876 (-205)))))))
+((-4204 ((|#2| |#2|) 26)) (-2729 ((|#2| |#2|) 27)) (-2058 ((|#2| |#2|) 25)) (-1498 ((|#2| |#2| (-1072)) 24)))
+(((-862 |#1| |#2|) (-10 -7 (-15 -1498 (|#2| |#2| (-1072))) (-15 -2058 (|#2| |#2|)) (-15 -4204 (|#2| |#2|)) (-15 -2729 (|#2| |#2|))) (-788) (-408 |#1|)) (T -862))
+((-2729 (*1 *2 *2) (-12 (-4 *3 (-788)) (-5 *1 (-862 *3 *2)) (-4 *2 (-408 *3)))) (-4204 (*1 *2 *2) (-12 (-4 *3 (-788)) (-5 *1 (-862 *3 *2)) (-4 *2 (-408 *3)))) (-2058 (*1 *2 *2) (-12 (-4 *3 (-788)) (-5 *1 (-862 *3 *2)) (-4 *2 (-408 *3)))) (-1498 (*1 *2 *2 *3) (-12 (-5 *3 (-1072)) (-4 *4 (-788)) (-5 *1 (-862 *4 *2)) (-4 *2 (-408 *4)))))
+(-10 -7 (-15 -1498 (|#2| |#2| (-1072))) (-15 -2058 (|#2| |#2|)) (-15 -4204 (|#2| |#2|)) (-15 -2729 (|#2| |#2|)))
+((-4204 (((-294 (-525)) (-1089)) 16)) (-2729 (((-294 (-525)) (-1089)) 14)) (-2058 (((-294 (-525)) (-1089)) 12)) (-1498 (((-294 (-525)) (-1089) (-1072)) 19)))
+(((-863) (-10 -7 (-15 -1498 ((-294 (-525)) (-1089) (-1072))) (-15 -2058 ((-294 (-525)) (-1089))) (-15 -4204 ((-294 (-525)) (-1089))) (-15 -2729 ((-294 (-525)) (-1089))))) (T -863))
+((-2729 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-294 (-525))) (-5 *1 (-863)))) (-4204 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-294 (-525))) (-5 *1 (-863)))) (-2058 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-294 (-525))) (-5 *1 (-863)))) (-1498 (*1 *2 *3 *4) (-12 (-5 *3 (-1089)) (-5 *4 (-1072)) (-5 *2 (-294 (-525))) (-5 *1 (-863)))))
+(-10 -7 (-15 -1498 ((-294 (-525)) (-1089) (-1072))) (-15 -2058 ((-294 (-525)) (-1089))) (-15 -4204 ((-294 (-525)) (-1089))) (-15 -2729 ((-294 (-525)) (-1089))))
+((-2011 (((-822 |#1| |#3|) |#2| (-825 |#1|) (-822 |#1| |#3|)) 25)) (-3978 (((-1 (-108) |#2|) (-1 (-108) |#3|)) 13)))
+(((-864 |#1| |#2| |#3|) (-10 -7 (-15 -3978 ((-1 (-108) |#2|) (-1 (-108) |#3|))) (-15 -2011 ((-822 |#1| |#3|) |#2| (-825 |#1|) (-822 |#1| |#3|)))) (-1018) (-819 |#1|) (-13 (-1018) (-966 |#2|))) (T -864))
+((-2011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-822 *5 *6)) (-5 *4 (-825 *5)) (-4 *5 (-1018)) (-4 *6 (-13 (-1018) (-966 *3))) (-4 *3 (-819 *5)) (-5 *1 (-864 *5 *3 *6)))) (-3978 (*1 *2 *3) (-12 (-5 *3 (-1 (-108) *6)) (-4 *6 (-13 (-1018) (-966 *5))) (-4 *5 (-819 *4)) (-4 *4 (-1018)) (-5 *2 (-1 (-108) *5)) (-5 *1 (-864 *4 *5 *6)))))
+(-10 -7 (-15 -3978 ((-1 (-108) |#2|) (-1 (-108) |#3|))) (-15 -2011 ((-822 |#1| |#3|) |#2| (-825 |#1|) (-822 |#1| |#3|))))
+((-2011 (((-822 |#1| |#3|) |#3| (-825 |#1|) (-822 |#1| |#3|)) 30)))
+(((-865 |#1| |#2| |#3|) (-10 -7 (-15 -2011 ((-822 |#1| |#3|) |#3| (-825 |#1|) (-822 |#1| |#3|)))) (-1018) (-13 (-517) (-788) (-819 |#1|)) (-13 (-408 |#2|) (-566 (-825 |#1|)) (-819 |#1|) (-966 (-564 $)))) (T -865))
+((-2011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-822 *5 *3)) (-4 *5 (-1018)) (-4 *3 (-13 (-408 *6) (-566 *4) (-819 *5) (-966 (-564 $)))) (-5 *4 (-825 *5)) (-4 *6 (-13 (-517) (-788) (-819 *5))) (-5 *1 (-865 *5 *6 *3)))))
+(-10 -7 (-15 -2011 ((-822 |#1| |#3|) |#3| (-825 |#1|) (-822 |#1| |#3|))))
+((-2011 (((-822 (-525) |#1|) |#1| (-825 (-525)) (-822 (-525) |#1|)) 13)))
+(((-866 |#1|) (-10 -7 (-15 -2011 ((-822 (-525) |#1|) |#1| (-825 (-525)) (-822 (-525) |#1|)))) (-510)) (T -866))
+((-2011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-822 (-525) *3)) (-5 *4 (-825 (-525))) (-4 *3 (-510)) (-5 *1 (-866 *3)))))
+(-10 -7 (-15 -2011 ((-822 (-525) |#1|) |#1| (-825 (-525)) (-822 (-525) |#1|))))
+((-2011 (((-822 |#1| |#2|) (-564 |#2|) (-825 |#1|) (-822 |#1| |#2|)) 54)))
+(((-867 |#1| |#2|) (-10 -7 (-15 -2011 ((-822 |#1| |#2|) (-564 |#2|) (-825 |#1|) (-822 |#1| |#2|)))) (-1018) (-13 (-788) (-966 (-564 $)) (-566 (-825 |#1|)) (-819 |#1|))) (T -867))
+((-2011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-822 *5 *6)) (-5 *3 (-564 *6)) (-4 *5 (-1018)) (-4 *6 (-13 (-788) (-966 (-564 $)) (-566 *4) (-819 *5))) (-5 *4 (-825 *5)) (-5 *1 (-867 *5 *6)))))
+(-10 -7 (-15 -2011 ((-822 |#1| |#2|) (-564 |#2|) (-825 |#1|) (-822 |#1| |#2|))))
+((-2011 (((-818 |#1| |#2| |#3|) |#3| (-825 |#1|) (-818 |#1| |#2| |#3|)) 15)))
+(((-868 |#1| |#2| |#3|) (-10 -7 (-15 -2011 ((-818 |#1| |#2| |#3|) |#3| (-825 |#1|) (-818 |#1| |#2| |#3|)))) (-1018) (-819 |#1|) (-611 |#2|)) (T -868))
+((-2011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 *5 *6 *3)) (-5 *4 (-825 *5)) (-4 *5 (-1018)) (-4 *6 (-819 *5)) (-4 *3 (-611 *6)) (-5 *1 (-868 *5 *6 *3)))))
+(-10 -7 (-15 -2011 ((-818 |#1| |#2| |#3|) |#3| (-825 |#1|) (-818 |#1| |#2| |#3|))))
+((-2011 (((-822 |#1| |#5|) |#5| (-825 |#1|) (-822 |#1| |#5|)) 17 (|has| |#3| (-819 |#1|))) (((-822 |#1| |#5|) |#5| (-825 |#1|) (-822 |#1| |#5|) (-1 (-822 |#1| |#5|) |#3| (-825 |#1|) (-822 |#1| |#5|))) 16)))
+(((-869 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2011 ((-822 |#1| |#5|) |#5| (-825 |#1|) (-822 |#1| |#5|) (-1 (-822 |#1| |#5|) |#3| (-825 |#1|) (-822 |#1| |#5|)))) (IF (|has| |#3| (-819 |#1|)) (-15 -2011 ((-822 |#1| |#5|) |#5| (-825 |#1|) (-822 |#1| |#5|))) |%noBranch|)) (-1018) (-734) (-788) (-13 (-975) (-788) (-819 |#1|)) (-13 (-882 |#4| |#2| |#3|) (-566 (-825 |#1|)))) (T -869))
+((-2011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-822 *5 *3)) (-4 *5 (-1018)) (-4 *3 (-13 (-882 *8 *6 *7) (-566 *4))) (-5 *4 (-825 *5)) (-4 *7 (-819 *5)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-13 (-975) (-788) (-819 *5))) (-5 *1 (-869 *5 *6 *7 *8 *3)))) (-2011 (*1 *2 *3 *4 *2 *5) (-12 (-5 *5 (-1 (-822 *6 *3) *8 (-825 *6) (-822 *6 *3))) (-4 *8 (-788)) (-5 *2 (-822 *6 *3)) (-5 *4 (-825 *6)) (-4 *6 (-1018)) (-4 *3 (-13 (-882 *9 *7 *8) (-566 *4))) (-4 *7 (-734)) (-4 *9 (-13 (-975) (-788) (-819 *6))) (-5 *1 (-869 *6 *7 *8 *9 *3)))))
+(-10 -7 (-15 -2011 ((-822 |#1| |#5|) |#5| (-825 |#1|) (-822 |#1| |#5|) (-1 (-822 |#1| |#5|) |#3| (-825 |#1|) (-822 |#1| |#5|)))) (IF (|has| |#3| (-819 |#1|)) (-15 -2011 ((-822 |#1| |#5|) |#5| (-825 |#1|) (-822 |#1| |#5|))) |%noBranch|))
+((-2819 ((|#2| |#2| (-591 (-1 (-108) |#3|))) 12) ((|#2| |#2| (-1 (-108) |#3|)) 13)))
+(((-870 |#1| |#2| |#3|) (-10 -7 (-15 -2819 (|#2| |#2| (-1 (-108) |#3|))) (-15 -2819 (|#2| |#2| (-591 (-1 (-108) |#3|))))) (-788) (-408 |#1|) (-1125)) (T -870))
+((-2819 (*1 *2 *2 *3) (-12 (-5 *3 (-591 (-1 (-108) *5))) (-4 *5 (-1125)) (-4 *4 (-788)) (-5 *1 (-870 *4 *2 *5)) (-4 *2 (-408 *4)))) (-2819 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *5)) (-4 *5 (-1125)) (-4 *4 (-788)) (-5 *1 (-870 *4 *2 *5)) (-4 *2 (-408 *4)))))
+(-10 -7 (-15 -2819 (|#2| |#2| (-1 (-108) |#3|))) (-15 -2819 (|#2| |#2| (-591 (-1 (-108) |#3|)))))
+((-2819 (((-294 (-525)) (-1089) (-591 (-1 (-108) |#1|))) 18) (((-294 (-525)) (-1089) (-1 (-108) |#1|)) 15)))
+(((-871 |#1|) (-10 -7 (-15 -2819 ((-294 (-525)) (-1089) (-1 (-108) |#1|))) (-15 -2819 ((-294 (-525)) (-1089) (-591 (-1 (-108) |#1|))))) (-1125)) (T -871))
+((-2819 (*1 *2 *3 *4) (-12 (-5 *3 (-1089)) (-5 *4 (-591 (-1 (-108) *5))) (-4 *5 (-1125)) (-5 *2 (-294 (-525))) (-5 *1 (-871 *5)))) (-2819 (*1 *2 *3 *4) (-12 (-5 *3 (-1089)) (-5 *4 (-1 (-108) *5)) (-4 *5 (-1125)) (-5 *2 (-294 (-525))) (-5 *1 (-871 *5)))))
+(-10 -7 (-15 -2819 ((-294 (-525)) (-1089) (-1 (-108) |#1|))) (-15 -2819 ((-294 (-525)) (-1089) (-591 (-1 (-108) |#1|)))))
+((-2011 (((-822 |#1| |#3|) |#3| (-825 |#1|) (-822 |#1| |#3|)) 25)))
+(((-872 |#1| |#2| |#3|) (-10 -7 (-15 -2011 ((-822 |#1| |#3|) |#3| (-825 |#1|) (-822 |#1| |#3|)))) (-1018) (-13 (-517) (-819 |#1|) (-566 (-825 |#1|))) (-923 |#2|)) (T -872))
+((-2011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-822 *5 *3)) (-4 *5 (-1018)) (-4 *3 (-923 *6)) (-4 *6 (-13 (-517) (-819 *5) (-566 *4))) (-5 *4 (-825 *5)) (-5 *1 (-872 *5 *6 *3)))))
+(-10 -7 (-15 -2011 ((-822 |#1| |#3|) |#3| (-825 |#1|) (-822 |#1| |#3|))))
+((-2011 (((-822 |#1| (-1089)) (-1089) (-825 |#1|) (-822 |#1| (-1089))) 17)))
+(((-873 |#1|) (-10 -7 (-15 -2011 ((-822 |#1| (-1089)) (-1089) (-825 |#1|) (-822 |#1| (-1089))))) (-1018)) (T -873))
+((-2011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-822 *5 (-1089))) (-5 *3 (-1089)) (-5 *4 (-825 *5)) (-4 *5 (-1018)) (-5 *1 (-873 *5)))))
+(-10 -7 (-15 -2011 ((-822 |#1| (-1089)) (-1089) (-825 |#1|) (-822 |#1| (-1089)))))
+((-3822 (((-822 |#1| |#3|) (-591 |#3|) (-591 (-825 |#1|)) (-822 |#1| |#3|) (-1 (-822 |#1| |#3|) |#3| (-825 |#1|) (-822 |#1| |#3|))) 33)) (-2011 (((-822 |#1| |#3|) (-591 |#3|) (-591 (-825 |#1|)) (-1 |#3| (-591 |#3|)) (-822 |#1| |#3|) (-1 (-822 |#1| |#3|) |#3| (-825 |#1|) (-822 |#1| |#3|))) 32)))
+(((-874 |#1| |#2| |#3|) (-10 -7 (-15 -2011 ((-822 |#1| |#3|) (-591 |#3|) (-591 (-825 |#1|)) (-1 |#3| (-591 |#3|)) (-822 |#1| |#3|) (-1 (-822 |#1| |#3|) |#3| (-825 |#1|) (-822 |#1| |#3|)))) (-15 -3822 ((-822 |#1| |#3|) (-591 |#3|) (-591 (-825 |#1|)) (-822 |#1| |#3|) (-1 (-822 |#1| |#3|) |#3| (-825 |#1|) (-822 |#1| |#3|))))) (-1018) (-13 (-975) (-788)) (-13 (-975) (-566 (-825 |#1|)) (-966 |#2|))) (T -874))
+((-3822 (*1 *2 *3 *4 *2 *5) (-12 (-5 *3 (-591 *8)) (-5 *4 (-591 (-825 *6))) (-5 *5 (-1 (-822 *6 *8) *8 (-825 *6) (-822 *6 *8))) (-4 *6 (-1018)) (-4 *8 (-13 (-975) (-566 (-825 *6)) (-966 *7))) (-5 *2 (-822 *6 *8)) (-4 *7 (-13 (-975) (-788))) (-5 *1 (-874 *6 *7 *8)))) (-2011 (*1 *2 *3 *4 *5 *2 *6) (-12 (-5 *4 (-591 (-825 *7))) (-5 *5 (-1 *9 (-591 *9))) (-5 *6 (-1 (-822 *7 *9) *9 (-825 *7) (-822 *7 *9))) (-4 *7 (-1018)) (-4 *9 (-13 (-975) (-566 (-825 *7)) (-966 *8))) (-5 *2 (-822 *7 *9)) (-5 *3 (-591 *9)) (-4 *8 (-13 (-975) (-788))) (-5 *1 (-874 *7 *8 *9)))))
+(-10 -7 (-15 -2011 ((-822 |#1| |#3|) (-591 |#3|) (-591 (-825 |#1|)) (-1 |#3| (-591 |#3|)) (-822 |#1| |#3|) (-1 (-822 |#1| |#3|) |#3| (-825 |#1|) (-822 |#1| |#3|)))) (-15 -3822 ((-822 |#1| |#3|) (-591 |#3|) (-591 (-825 |#1|)) (-822 |#1| |#3|) (-1 (-822 |#1| |#3|) |#3| (-825 |#1|) (-822 |#1| |#3|)))))
+((-1630 (((-1085 (-385 (-525))) (-525)) 63)) (-1250 (((-1085 (-525)) (-525)) 66)) (-2167 (((-1085 (-525)) (-525)) 60)) (-1529 (((-525) (-1085 (-525))) 55)) (-3546 (((-1085 (-385 (-525))) (-525)) 49)) (-3132 (((-1085 (-525)) (-525)) 38)) (-3752 (((-1085 (-525)) (-525)) 68)) (-3235 (((-1085 (-525)) (-525)) 67)) (-4105 (((-1085 (-385 (-525))) (-525)) 51)))
+(((-875) (-10 -7 (-15 -4105 ((-1085 (-385 (-525))) (-525))) (-15 -3235 ((-1085 (-525)) (-525))) (-15 -3752 ((-1085 (-525)) (-525))) (-15 -3132 ((-1085 (-525)) (-525))) (-15 -3546 ((-1085 (-385 (-525))) (-525))) (-15 -1529 ((-525) (-1085 (-525)))) (-15 -2167 ((-1085 (-525)) (-525))) (-15 -1250 ((-1085 (-525)) (-525))) (-15 -1630 ((-1085 (-385 (-525))) (-525))))) (T -875))
+((-1630 (*1 *2 *3) (-12 (-5 *2 (-1085 (-385 (-525)))) (-5 *1 (-875)) (-5 *3 (-525)))) (-1250 (*1 *2 *3) (-12 (-5 *2 (-1085 (-525))) (-5 *1 (-875)) (-5 *3 (-525)))) (-2167 (*1 *2 *3) (-12 (-5 *2 (-1085 (-525))) (-5 *1 (-875)) (-5 *3 (-525)))) (-1529 (*1 *2 *3) (-12 (-5 *3 (-1085 (-525))) (-5 *2 (-525)) (-5 *1 (-875)))) (-3546 (*1 *2 *3) (-12 (-5 *2 (-1085 (-385 (-525)))) (-5 *1 (-875)) (-5 *3 (-525)))) (-3132 (*1 *2 *3) (-12 (-5 *2 (-1085 (-525))) (-5 *1 (-875)) (-5 *3 (-525)))) (-3752 (*1 *2 *3) (-12 (-5 *2 (-1085 (-525))) (-5 *1 (-875)) (-5 *3 (-525)))) (-3235 (*1 *2 *3) (-12 (-5 *2 (-1085 (-525))) (-5 *1 (-875)) (-5 *3 (-525)))) (-4105 (*1 *2 *3) (-12 (-5 *2 (-1085 (-385 (-525)))) (-5 *1 (-875)) (-5 *3 (-525)))))
+(-10 -7 (-15 -4105 ((-1085 (-385 (-525))) (-525))) (-15 -3235 ((-1085 (-525)) (-525))) (-15 -3752 ((-1085 (-525)) (-525))) (-15 -3132 ((-1085 (-525)) (-525))) (-15 -3546 ((-1085 (-385 (-525))) (-525))) (-15 -1529 ((-525) (-1085 (-525)))) (-15 -2167 ((-1085 (-525)) (-525))) (-15 -1250 ((-1085 (-525)) (-525))) (-15 -1630 ((-1085 (-385 (-525))) (-525))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-2168 (($ (-712)) NIL (|has| |#1| (-23)))) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3203 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-788)))) (-4026 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4251))) (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| |#1| (-788))))) (-3327 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-788)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#1| $ (-525) |#1|) 11 (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) NIL (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3677 (($ |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) NIL)) (-3004 (((-525) (-1 (-108) |#1|) $) NIL) (((-525) |#1| $) NIL (|has| |#1| (-1018))) (((-525) |#1| $ (-525)) NIL (|has| |#1| (-1018)))) (-3643 (($ (-591 |#1|)) 13)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2166 (((-631 |#1|) $ $) NIL (|has| |#1| (-975)))) (-1268 (($ (-712) |#1|) 8)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) 10 (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2131 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-788)))) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4131 ((|#1| $) NIL (-12 (|has| |#1| (-932)) (|has| |#1| (-975))))) (-3971 (((-108) $ (-712)) NIL)) (-1657 ((|#1| $) NIL (-12 (|has| |#1| (-932)) (|has| |#1| (-975))))) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-4189 (($ |#1| $ (-525)) NIL) (($ $ $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-3066 ((|#1| $) NIL (|has| (-525) (-788)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1941 (($ $ |#1|) NIL (|has| $ (-6 -4251)))) (-2784 (($ $ (-591 |#1|)) 26)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#1| $ (-525) |#1|) NIL) ((|#1| $ (-525)) 20) (($ $ (-1138 (-525))) NIL)) (-2109 ((|#1| $ $) NIL (|has| |#1| (-975)))) (-4224 (((-854) $) 16)) (-2777 (($ $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-4210 (($ $ $) 24)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4063 (($ $ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| |#1| (-566 (-501)))) (($ (-591 |#1|)) 17)) (-3036 (($ (-591 |#1|)) NIL)) (-3690 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 25) (($ (-591 $)) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4164 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-4156 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-525) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-668))) (($ $ |#1|) NIL (|has| |#1| (-668)))) (-4045 (((-712) $) 14 (|has| $ (-6 -4250)))))
+(((-876 |#1|) (-911 |#1|) (-975)) (T -876))
+NIL
+(-911 |#1|)
+((-2836 (((-457 |#1| |#2|) (-885 |#2|)) 20)) (-2553 (((-227 |#1| |#2|) (-885 |#2|)) 33)) (-2366 (((-885 |#2|) (-457 |#1| |#2|)) 25)) (-2797 (((-227 |#1| |#2|) (-457 |#1| |#2|)) 55)) (-3844 (((-885 |#2|) (-227 |#1| |#2|)) 30)) (-3894 (((-457 |#1| |#2|) (-227 |#1| |#2|)) 46)))
+(((-877 |#1| |#2|) (-10 -7 (-15 -3894 ((-457 |#1| |#2|) (-227 |#1| |#2|))) (-15 -2797 ((-227 |#1| |#2|) (-457 |#1| |#2|))) (-15 -2836 ((-457 |#1| |#2|) (-885 |#2|))) (-15 -2366 ((-885 |#2|) (-457 |#1| |#2|))) (-15 -3844 ((-885 |#2|) (-227 |#1| |#2|))) (-15 -2553 ((-227 |#1| |#2|) (-885 |#2|)))) (-591 (-1089)) (-975)) (T -877))
+((-2553 (*1 *2 *3) (-12 (-5 *3 (-885 *5)) (-4 *5 (-975)) (-5 *2 (-227 *4 *5)) (-5 *1 (-877 *4 *5)) (-14 *4 (-591 (-1089))))) (-3844 (*1 *2 *3) (-12 (-5 *3 (-227 *4 *5)) (-14 *4 (-591 (-1089))) (-4 *5 (-975)) (-5 *2 (-885 *5)) (-5 *1 (-877 *4 *5)))) (-2366 (*1 *2 *3) (-12 (-5 *3 (-457 *4 *5)) (-14 *4 (-591 (-1089))) (-4 *5 (-975)) (-5 *2 (-885 *5)) (-5 *1 (-877 *4 *5)))) (-2836 (*1 *2 *3) (-12 (-5 *3 (-885 *5)) (-4 *5 (-975)) (-5 *2 (-457 *4 *5)) (-5 *1 (-877 *4 *5)) (-14 *4 (-591 (-1089))))) (-2797 (*1 *2 *3) (-12 (-5 *3 (-457 *4 *5)) (-14 *4 (-591 (-1089))) (-4 *5 (-975)) (-5 *2 (-227 *4 *5)) (-5 *1 (-877 *4 *5)))) (-3894 (*1 *2 *3) (-12 (-5 *3 (-227 *4 *5)) (-14 *4 (-591 (-1089))) (-4 *5 (-975)) (-5 *2 (-457 *4 *5)) (-5 *1 (-877 *4 *5)))))
+(-10 -7 (-15 -3894 ((-457 |#1| |#2|) (-227 |#1| |#2|))) (-15 -2797 ((-227 |#1| |#2|) (-457 |#1| |#2|))) (-15 -2836 ((-457 |#1| |#2|) (-885 |#2|))) (-15 -2366 ((-885 |#2|) (-457 |#1| |#2|))) (-15 -3844 ((-885 |#2|) (-227 |#1| |#2|))) (-15 -2553 ((-227 |#1| |#2|) (-885 |#2|))))
+((-2204 (((-591 |#2|) |#2| |#2|) 10)) (-3051 (((-712) (-591 |#1|)) 37 (|has| |#1| (-786)))) (-1425 (((-591 |#2|) |#2|) 11)) (-1978 (((-712) (-591 |#1|) (-525) (-525)) 36 (|has| |#1| (-786)))) (-3589 ((|#1| |#2|) 32 (|has| |#1| (-786)))))
+(((-878 |#1| |#2|) (-10 -7 (-15 -2204 ((-591 |#2|) |#2| |#2|)) (-15 -1425 ((-591 |#2|) |#2|)) (IF (|has| |#1| (-786)) (PROGN (-15 -3589 (|#1| |#2|)) (-15 -3051 ((-712) (-591 |#1|))) (-15 -1978 ((-712) (-591 |#1|) (-525) (-525)))) |%noBranch|)) (-341) (-1147 |#1|)) (T -878))
+((-1978 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-591 *5)) (-5 *4 (-525)) (-4 *5 (-786)) (-4 *5 (-341)) (-5 *2 (-712)) (-5 *1 (-878 *5 *6)) (-4 *6 (-1147 *5)))) (-3051 (*1 *2 *3) (-12 (-5 *3 (-591 *4)) (-4 *4 (-786)) (-4 *4 (-341)) (-5 *2 (-712)) (-5 *1 (-878 *4 *5)) (-4 *5 (-1147 *4)))) (-3589 (*1 *2 *3) (-12 (-4 *2 (-341)) (-4 *2 (-786)) (-5 *1 (-878 *2 *3)) (-4 *3 (-1147 *2)))) (-1425 (*1 *2 *3) (-12 (-4 *4 (-341)) (-5 *2 (-591 *3)) (-5 *1 (-878 *4 *3)) (-4 *3 (-1147 *4)))) (-2204 (*1 *2 *3 *3) (-12 (-4 *4 (-341)) (-5 *2 (-591 *3)) (-5 *1 (-878 *4 *3)) (-4 *3 (-1147 *4)))))
+(-10 -7 (-15 -2204 ((-591 |#2|) |#2| |#2|)) (-15 -1425 ((-591 |#2|) |#2|)) (IF (|has| |#1| (-786)) (PROGN (-15 -3589 (|#1| |#2|)) (-15 -3051 ((-712) (-591 |#1|))) (-15 -1978 ((-712) (-591 |#1|) (-525) (-525)))) |%noBranch|))
+((-1340 (((-885 |#2|) (-1 |#2| |#1|) (-885 |#1|)) 19)))
+(((-879 |#1| |#2|) (-10 -7 (-15 -1340 ((-885 |#2|) (-1 |#2| |#1|) (-885 |#1|)))) (-975) (-975)) (T -879))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-885 *5)) (-4 *5 (-975)) (-4 *6 (-975)) (-5 *2 (-885 *6)) (-5 *1 (-879 *5 *6)))))
+(-10 -7 (-15 -1340 ((-885 |#2|) (-1 |#2| |#1|) (-885 |#1|))))
+((-1312 (((-1144 |#1| (-885 |#2|)) (-885 |#2|) (-1167 |#1|)) 18)))
+(((-880 |#1| |#2|) (-10 -7 (-15 -1312 ((-1144 |#1| (-885 |#2|)) (-885 |#2|) (-1167 |#1|)))) (-1089) (-975)) (T -880))
+((-1312 (*1 *2 *3 *4) (-12 (-5 *4 (-1167 *5)) (-14 *5 (-1089)) (-4 *6 (-975)) (-5 *2 (-1144 *5 (-885 *6))) (-5 *1 (-880 *5 *6)) (-5 *3 (-885 *6)))))
+(-10 -7 (-15 -1312 ((-1144 |#1| (-885 |#2|)) (-885 |#2|) (-1167 |#1|))))
+((-4090 (((-712) $) 71) (((-712) $ (-591 |#4|)) 74)) (-1291 (($ $) 173)) (-2827 (((-396 $) $) 165)) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) 116)) (-1251 (((-3 |#2| "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL) (((-3 (-525) "failed") $) NIL) (((-3 |#4| "failed") $) 60)) (-3528 ((|#2| $) NIL) (((-385 (-525)) $) NIL) (((-525) $) NIL) ((|#4| $) 59)) (-2805 (($ $ $ |#4|) 76)) (-3305 (((-631 (-525)) (-631 $)) NIL) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) 106) (((-631 |#2|) (-631 $)) 99)) (-3208 (($ $) 180) (($ $ |#4|) 183)) (-1695 (((-591 $) $) 63)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 199) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 192)) (-1922 (((-591 $) $) 28)) (-1480 (($ |#2| |#3|) NIL) (($ $ |#4| (-712)) NIL) (($ $ (-591 |#4|) (-591 (-712))) 57)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ |#4|) 162)) (-3376 (((-3 (-591 $) "failed") $) 42)) (-2010 (((-3 (-591 $) "failed") $) 31)) (-2292 (((-3 (-2 (|:| |var| |#4|) (|:| -2008 (-712))) "failed") $) 47)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 109)) (-2916 (((-396 (-1085 $)) (-1085 $)) 122)) (-1626 (((-396 (-1085 $)) (-1085 $)) 120)) (-1348 (((-396 $) $) 140)) (-4132 (($ $ (-591 (-273 $))) 21) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-591 |#4|) (-591 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-591 |#4|) (-591 $)) NIL)) (-2976 (($ $ |#4|) 78)) (-1408 (((-825 (-357)) $) 213) (((-825 (-525)) $) 206) (((-501) $) 221)) (-2668 ((|#2| $) NIL) (($ $ |#4|) 175)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) 154)) (-2560 ((|#2| $ |#3|) NIL) (($ $ |#4| (-712)) 52) (($ $ (-591 |#4|) (-591 (-712))) 55)) (-1437 (((-3 $ "failed") $) 156)) (-4112 (((-108) $ $) 186)))
+(((-881 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2526 ((-1085 |#1|) (-1085 |#1|) (-1085 |#1|))) (-15 -2827 ((-396 |#1|) |#1|)) (-15 -1291 (|#1| |#1|)) (-15 -1437 ((-3 |#1| "failed") |#1|)) (-15 -4112 ((-108) |#1| |#1|)) (-15 -1408 ((-501) |#1|)) (-15 -1408 ((-825 (-525)) |#1|)) (-15 -1408 ((-825 (-357)) |#1|)) (-15 -2011 ((-822 (-525) |#1|) |#1| (-825 (-525)) (-822 (-525) |#1|))) (-15 -2011 ((-822 (-357) |#1|) |#1| (-825 (-357)) (-822 (-357) |#1|))) (-15 -1348 ((-396 |#1|) |#1|)) (-15 -1626 ((-396 (-1085 |#1|)) (-1085 |#1|))) (-15 -2916 ((-396 (-1085 |#1|)) (-1085 |#1|))) (-15 -2252 ((-3 (-591 (-1085 |#1|)) "failed") (-591 (-1085 |#1|)) (-1085 |#1|))) (-15 -2265 ((-3 (-1171 |#1|) "failed") (-631 |#1|))) (-15 -3208 (|#1| |#1| |#4|)) (-15 -2668 (|#1| |#1| |#4|)) (-15 -2976 (|#1| |#1| |#4|)) (-15 -2805 (|#1| |#1| |#1| |#4|)) (-15 -1695 ((-591 |#1|) |#1|)) (-15 -4090 ((-712) |#1| (-591 |#4|))) (-15 -4090 ((-712) |#1|)) (-15 -2292 ((-3 (-2 (|:| |var| |#4|) (|:| -2008 (-712))) "failed") |#1|)) (-15 -3376 ((-3 (-591 |#1|) "failed") |#1|)) (-15 -2010 ((-3 (-591 |#1|) "failed") |#1|)) (-15 -1480 (|#1| |#1| (-591 |#4|) (-591 (-712)))) (-15 -1480 (|#1| |#1| |#4| (-712))) (-15 -3958 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1| |#4|)) (-15 -1922 ((-591 |#1|) |#1|)) (-15 -2560 (|#1| |#1| (-591 |#4|) (-591 (-712)))) (-15 -2560 (|#1| |#1| |#4| (-712))) (-15 -3305 ((-631 |#2|) (-631 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-631 (-525)) (-631 |#1|))) (-15 -3528 (|#4| |#1|)) (-15 -1251 ((-3 |#4| "failed") |#1|)) (-15 -4132 (|#1| |#1| (-591 |#4|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#4| |#1|)) (-15 -4132 (|#1| |#1| (-591 |#4|) (-591 |#2|))) (-15 -4132 (|#1| |#1| |#4| |#2|)) (-15 -4132 (|#1| |#1| (-591 |#1|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#1| |#1|)) (-15 -4132 (|#1| |#1| (-273 |#1|))) (-15 -4132 (|#1| |#1| (-591 (-273 |#1|)))) (-15 -1480 (|#1| |#2| |#3|)) (-15 -2560 (|#2| |#1| |#3|)) (-15 -3528 ((-525) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -2668 (|#2| |#1|)) (-15 -3208 (|#1| |#1|))) (-882 |#2| |#3| |#4|) (-975) (-734) (-788)) (T -881))
+NIL
+(-10 -8 (-15 -2526 ((-1085 |#1|) (-1085 |#1|) (-1085 |#1|))) (-15 -2827 ((-396 |#1|) |#1|)) (-15 -1291 (|#1| |#1|)) (-15 -1437 ((-3 |#1| "failed") |#1|)) (-15 -4112 ((-108) |#1| |#1|)) (-15 -1408 ((-501) |#1|)) (-15 -1408 ((-825 (-525)) |#1|)) (-15 -1408 ((-825 (-357)) |#1|)) (-15 -2011 ((-822 (-525) |#1|) |#1| (-825 (-525)) (-822 (-525) |#1|))) (-15 -2011 ((-822 (-357) |#1|) |#1| (-825 (-357)) (-822 (-357) |#1|))) (-15 -1348 ((-396 |#1|) |#1|)) (-15 -1626 ((-396 (-1085 |#1|)) (-1085 |#1|))) (-15 -2916 ((-396 (-1085 |#1|)) (-1085 |#1|))) (-15 -2252 ((-3 (-591 (-1085 |#1|)) "failed") (-591 (-1085 |#1|)) (-1085 |#1|))) (-15 -2265 ((-3 (-1171 |#1|) "failed") (-631 |#1|))) (-15 -3208 (|#1| |#1| |#4|)) (-15 -2668 (|#1| |#1| |#4|)) (-15 -2976 (|#1| |#1| |#4|)) (-15 -2805 (|#1| |#1| |#1| |#4|)) (-15 -1695 ((-591 |#1|) |#1|)) (-15 -4090 ((-712) |#1| (-591 |#4|))) (-15 -4090 ((-712) |#1|)) (-15 -2292 ((-3 (-2 (|:| |var| |#4|) (|:| -2008 (-712))) "failed") |#1|)) (-15 -3376 ((-3 (-591 |#1|) "failed") |#1|)) (-15 -2010 ((-3 (-591 |#1|) "failed") |#1|)) (-15 -1480 (|#1| |#1| (-591 |#4|) (-591 (-712)))) (-15 -1480 (|#1| |#1| |#4| (-712))) (-15 -3958 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1| |#4|)) (-15 -1922 ((-591 |#1|) |#1|)) (-15 -2560 (|#1| |#1| (-591 |#4|) (-591 (-712)))) (-15 -2560 (|#1| |#1| |#4| (-712))) (-15 -3305 ((-631 |#2|) (-631 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-631 (-525)) (-631 |#1|))) (-15 -3528 (|#4| |#1|)) (-15 -1251 ((-3 |#4| "failed") |#1|)) (-15 -4132 (|#1| |#1| (-591 |#4|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#4| |#1|)) (-15 -4132 (|#1| |#1| (-591 |#4|) (-591 |#2|))) (-15 -4132 (|#1| |#1| |#4| |#2|)) (-15 -4132 (|#1| |#1| (-591 |#1|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#1| |#1|)) (-15 -4132 (|#1| |#1| (-273 |#1|))) (-15 -4132 (|#1| |#1| (-591 (-273 |#1|)))) (-15 -1480 (|#1| |#2| |#3|)) (-15 -2560 (|#2| |#1| |#3|)) (-15 -3528 ((-525) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -2668 (|#2| |#1|)) (-15 -3208 (|#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1507 (((-591 |#3|) $) 110)) (-1312 (((-1085 $) $ |#3|) 125) (((-1085 |#1|) $) 124)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 87 (|has| |#1| (-517)))) (-3706 (($ $) 88 (|has| |#1| (-517)))) (-1715 (((-108) $) 90 (|has| |#1| (-517)))) (-4090 (((-712) $) 112) (((-712) $ (-591 |#3|)) 111)) (-2157 (((-3 $ "failed") $ $) 19)) (-1965 (((-396 (-1085 $)) (-1085 $)) 100 (|has| |#1| (-842)))) (-1291 (($ $) 98 (|has| |#1| (-429)))) (-2827 (((-396 $) $) 97 (|has| |#1| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) 103 (|has| |#1| (-842)))) (-3798 (($) 17 T CONST)) (-1251 (((-3 |#1| "failed") $) 164) (((-3 (-385 (-525)) "failed") $) 162 (|has| |#1| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) 160 (|has| |#1| (-966 (-525)))) (((-3 |#3| "failed") $) 136)) (-3528 ((|#1| $) 165) (((-385 (-525)) $) 161 (|has| |#1| (-966 (-385 (-525))))) (((-525) $) 159 (|has| |#1| (-966 (-525)))) ((|#3| $) 135)) (-2805 (($ $ $ |#3|) 108 (|has| |#1| (-160)))) (-1710 (($ $) 154)) (-3305 (((-631 (-525)) (-631 $)) 134 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 133 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) 132) (((-631 |#1|) (-631 $)) 131)) (-4163 (((-3 $ "failed") $) 34)) (-3208 (($ $) 176 (|has| |#1| (-429))) (($ $ |#3|) 105 (|has| |#1| (-429)))) (-1695 (((-591 $) $) 109)) (-2744 (((-108) $) 96 (|has| |#1| (-842)))) (-2056 (($ $ |#1| |#2| $) 172)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 84 (-12 (|has| |#3| (-819 (-357))) (|has| |#1| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 83 (-12 (|has| |#3| (-819 (-525))) (|has| |#1| (-819 (-525)))))) (-2824 (((-108) $) 31)) (-4010 (((-712) $) 169)) (-1493 (($ (-1085 |#1|) |#3|) 117) (($ (-1085 $) |#3|) 116)) (-1922 (((-591 $) $) 126)) (-2202 (((-108) $) 152)) (-1480 (($ |#1| |#2|) 153) (($ $ |#3| (-712)) 119) (($ $ (-591 |#3|) (-591 (-712))) 118)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ |#3|) 120)) (-2624 ((|#2| $) 170) (((-712) $ |#3|) 122) (((-591 (-712)) $ (-591 |#3|)) 121)) (-3741 (($ $ $) 79 (|has| |#1| (-788)))) (-2478 (($ $ $) 78 (|has| |#1| (-788)))) (-4015 (($ (-1 |#2| |#2|) $) 171)) (-1340 (($ (-1 |#1| |#1|) $) 151)) (-2254 (((-3 |#3| "failed") $) 123)) (-1661 (($ $) 149)) (-1678 ((|#1| $) 148)) (-1356 (($ (-591 $)) 94 (|has| |#1| (-429))) (($ $ $) 93 (|has| |#1| (-429)))) (-2339 (((-1072) $) 9)) (-3376 (((-3 (-591 $) "failed") $) 114)) (-2010 (((-3 (-591 $) "failed") $) 115)) (-2292 (((-3 (-2 (|:| |var| |#3|) (|:| -2008 (-712))) "failed") $) 113)) (-2047 (((-1036) $) 10)) (-1634 (((-108) $) 166)) (-1646 ((|#1| $) 167)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 95 (|has| |#1| (-429)))) (-1399 (($ (-591 $)) 92 (|has| |#1| (-429))) (($ $ $) 91 (|has| |#1| (-429)))) (-2916 (((-396 (-1085 $)) (-1085 $)) 102 (|has| |#1| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) 101 (|has| |#1| (-842)))) (-1348 (((-396 $) $) 99 (|has| |#1| (-842)))) (-2089 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-517))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-517)))) (-4132 (($ $ (-591 (-273 $))) 145) (($ $ (-273 $)) 144) (($ $ $ $) 143) (($ $ (-591 $) (-591 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-591 |#3|) (-591 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-591 |#3|) (-591 $)) 138)) (-2976 (($ $ |#3|) 107 (|has| |#1| (-160)))) (-3266 (($ $ |#3|) 42) (($ $ (-591 |#3|)) 41) (($ $ |#3| (-712)) 40) (($ $ (-591 |#3|) (-591 (-712))) 39)) (-1316 ((|#2| $) 150) (((-712) $ |#3|) 130) (((-591 (-712)) $ (-591 |#3|)) 129)) (-1408 (((-825 (-357)) $) 82 (-12 (|has| |#3| (-566 (-825 (-357)))) (|has| |#1| (-566 (-825 (-357)))))) (((-825 (-525)) $) 81 (-12 (|has| |#3| (-566 (-825 (-525)))) (|has| |#1| (-566 (-825 (-525)))))) (((-501) $) 80 (-12 (|has| |#3| (-566 (-501))) (|has| |#1| (-566 (-501)))))) (-2668 ((|#1| $) 175 (|has| |#1| (-429))) (($ $ |#3|) 106 (|has| |#1| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) 104 (-1213 (|has| $ (-136)) (|has| |#1| (-842))))) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 163) (($ |#3|) 137) (($ $) 85 (|has| |#1| (-517))) (($ (-385 (-525))) 72 (-3321 (|has| |#1| (-966 (-385 (-525)))) (|has| |#1| (-37 (-385 (-525))))))) (-3654 (((-591 |#1|) $) 168)) (-2560 ((|#1| $ |#2|) 155) (($ $ |#3| (-712)) 128) (($ $ (-591 |#3|) (-591 (-712))) 127)) (-1437 (((-3 $ "failed") $) 73 (-3321 (-1213 (|has| $ (-136)) (|has| |#1| (-842))) (|has| |#1| (-136))))) (-2128 (((-712)) 29)) (-1698 (($ $ $ (-712)) 173 (|has| |#1| (-160)))) (-2495 (((-108) $ $) 89 (|has| |#1| (-517)))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ |#3|) 38) (($ $ (-591 |#3|)) 37) (($ $ |#3| (-712)) 36) (($ $ (-591 |#3|) (-591 (-712))) 35)) (-4135 (((-108) $ $) 76 (|has| |#1| (-788)))) (-4119 (((-108) $ $) 75 (|has| |#1| (-788)))) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 77 (|has| |#1| (-788)))) (-4112 (((-108) $ $) 74 (|has| |#1| (-788)))) (-4173 (($ $ |#1|) 156 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 (-525))) 158 (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) 157 (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+(((-882 |#1| |#2| |#3|) (-131) (-975) (-734) (-788)) (T -882))
+((-3208 (*1 *1 *1) (-12 (-4 *1 (-882 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-429)))) (-1316 (*1 *2 *1 *3) (-12 (-4 *1 (-882 *4 *5 *3)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-788)) (-5 *2 (-712)))) (-1316 (*1 *2 *1 *3) (-12 (-5 *3 (-591 *6)) (-4 *1 (-882 *4 *5 *6)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 (-712))))) (-2560 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-712)) (-4 *1 (-882 *4 *5 *2)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *2 (-788)))) (-2560 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 *6)) (-5 *3 (-591 (-712))) (-4 *1 (-882 *4 *5 *6)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *6 (-788)))) (-1922 (*1 *2 *1) (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *1)) (-4 *1 (-882 *3 *4 *5)))) (-1312 (*1 *2 *1 *3) (-12 (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-788)) (-5 *2 (-1085 *1)) (-4 *1 (-882 *4 *5 *3)))) (-1312 (*1 *2 *1) (-12 (-4 *1 (-882 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-1085 *3)))) (-2254 (*1 *2 *1) (|partial| -12 (-4 *1 (-882 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *2 (-788)))) (-2624 (*1 *2 *1 *3) (-12 (-4 *1 (-882 *4 *5 *3)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-788)) (-5 *2 (-712)))) (-2624 (*1 *2 *1 *3) (-12 (-5 *3 (-591 *6)) (-4 *1 (-882 *4 *5 *6)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 (-712))))) (-3958 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-788)) (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-882 *4 *5 *3)))) (-1480 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-712)) (-4 *1 (-882 *4 *5 *2)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *2 (-788)))) (-1480 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 *6)) (-5 *3 (-591 (-712))) (-4 *1 (-882 *4 *5 *6)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *6 (-788)))) (-1493 (*1 *1 *2 *3) (-12 (-5 *2 (-1085 *4)) (-4 *4 (-975)) (-4 *1 (-882 *4 *5 *3)) (-4 *5 (-734)) (-4 *3 (-788)))) (-1493 (*1 *1 *2 *3) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-882 *4 *5 *3)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-788)))) (-2010 (*1 *2 *1) (|partial| -12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *1)) (-4 *1 (-882 *3 *4 *5)))) (-3376 (*1 *2 *1) (|partial| -12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *1)) (-4 *1 (-882 *3 *4 *5)))) (-2292 (*1 *2 *1) (|partial| -12 (-4 *1 (-882 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-2 (|:| |var| *5) (|:| -2008 (-712)))))) (-4090 (*1 *2 *1) (-12 (-4 *1 (-882 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-712)))) (-4090 (*1 *2 *1 *3) (-12 (-5 *3 (-591 *6)) (-4 *1 (-882 *4 *5 *6)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-712)))) (-1507 (*1 *2 *1) (-12 (-4 *1 (-882 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *5)))) (-1695 (*1 *2 *1) (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *1)) (-4 *1 (-882 *3 *4 *5)))) (-2805 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-882 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *2 (-788)) (-4 *3 (-160)))) (-2976 (*1 *1 *1 *2) (-12 (-4 *1 (-882 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *2 (-788)) (-4 *3 (-160)))) (-2668 (*1 *1 *1 *2) (-12 (-4 *1 (-882 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *2 (-788)) (-4 *3 (-429)))) (-3208 (*1 *1 *1 *2) (-12 (-4 *1 (-882 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *2 (-788)) (-4 *3 (-429)))) (-1291 (*1 *1 *1) (-12 (-4 *1 (-882 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-429)))) (-2827 (*1 *2 *1) (-12 (-4 *3 (-429)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-396 *1)) (-4 *1 (-882 *3 *4 *5)))))
+(-13 (-833 |t#3|) (-304 |t#1| |t#2|) (-288 $) (-486 |t#3| |t#1|) (-486 |t#3| $) (-966 |t#3|) (-355 |t#1|) (-10 -8 (-15 -1316 ((-712) $ |t#3|)) (-15 -1316 ((-591 (-712)) $ (-591 |t#3|))) (-15 -2560 ($ $ |t#3| (-712))) (-15 -2560 ($ $ (-591 |t#3|) (-591 (-712)))) (-15 -1922 ((-591 $) $)) (-15 -1312 ((-1085 $) $ |t#3|)) (-15 -1312 ((-1085 |t#1|) $)) (-15 -2254 ((-3 |t#3| "failed") $)) (-15 -2624 ((-712) $ |t#3|)) (-15 -2624 ((-591 (-712)) $ (-591 |t#3|))) (-15 -3958 ((-2 (|:| -2963 $) (|:| -3407 $)) $ $ |t#3|)) (-15 -1480 ($ $ |t#3| (-712))) (-15 -1480 ($ $ (-591 |t#3|) (-591 (-712)))) (-15 -1493 ($ (-1085 |t#1|) |t#3|)) (-15 -1493 ($ (-1085 $) |t#3|)) (-15 -2010 ((-3 (-591 $) "failed") $)) (-15 -3376 ((-3 (-591 $) "failed") $)) (-15 -2292 ((-3 (-2 (|:| |var| |t#3|) (|:| -2008 (-712))) "failed") $)) (-15 -4090 ((-712) $)) (-15 -4090 ((-712) $ (-591 |t#3|))) (-15 -1507 ((-591 |t#3|) $)) (-15 -1695 ((-591 $) $)) (IF (|has| |t#1| (-788)) (-6 (-788)) |%noBranch|) (IF (|has| |t#1| (-566 (-501))) (IF (|has| |t#3| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-566 (-825 (-525)))) (IF (|has| |t#3| (-566 (-825 (-525)))) (-6 (-566 (-825 (-525)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-566 (-825 (-357)))) (IF (|has| |t#3| (-566 (-825 (-357)))) (-6 (-566 (-825 (-357)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-819 (-525))) (IF (|has| |t#3| (-819 (-525))) (-6 (-819 (-525))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-819 (-357))) (IF (|has| |t#3| (-819 (-357))) (-6 (-819 (-357))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-160)) (PROGN (-15 -2805 ($ $ $ |t#3|)) (-15 -2976 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-429)) (PROGN (-6 (-429)) (-15 -2668 ($ $ |t#3|)) (-15 -3208 ($ $)) (-15 -3208 ($ $ |t#3|)) (-15 -2827 ((-396 $) $)) (-15 -1291 ($ $))) |%noBranch|) (IF (|has| |t#1| (-6 -4248)) (-6 -4248) |%noBranch|) (IF (|has| |t#1| (-842)) (-6 (-842)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((-37 |#1|) |has| |#1| (-160)) ((-37 $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429))) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-385 (-525)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-160))) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-160))) ((-566 (-501)) -12 (|has| |#1| (-566 (-501))) (|has| |#3| (-566 (-501)))) ((-566 (-825 (-357))) -12 (|has| |#1| (-566 (-825 (-357)))) (|has| |#3| (-566 (-825 (-357))))) ((-566 (-825 (-525))) -12 (|has| |#1| (-566 (-825 (-525)))) (|has| |#3| (-566 (-825 (-525))))) ((-269) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429))) ((-288 $) . T) ((-304 |#1| |#2|) . T) ((-355 |#1|) . T) ((-389 |#1|) . T) ((-429) -3321 (|has| |#1| (-842)) (|has| |#1| (-429))) ((-486 |#3| |#1|) . T) ((-486 |#3| $) . T) ((-486 $ $) . T) ((-517) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429))) ((-593 #0#) |has| |#1| (-37 (-385 (-525)))) ((-593 |#1|) . T) ((-593 $) . T) ((-587 (-525)) |has| |#1| (-587 (-525))) ((-587 |#1|) . T) ((-659 #0#) |has| |#1| (-37 (-385 (-525)))) ((-659 |#1|) |has| |#1| (-160)) ((-659 $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429))) ((-668) . T) ((-788) |has| |#1| (-788)) ((-833 |#3|) . T) ((-819 (-357)) -12 (|has| |#1| (-819 (-357))) (|has| |#3| (-819 (-357)))) ((-819 (-525)) -12 (|has| |#1| (-819 (-525))) (|has| |#3| (-819 (-525)))) ((-842) |has| |#1| (-842)) ((-966 (-385 (-525))) |has| |#1| (-966 (-385 (-525)))) ((-966 (-525)) |has| |#1| (-966 (-525))) ((-966 |#1|) . T) ((-966 |#3|) . T) ((-981 #0#) |has| |#1| (-37 (-385 (-525)))) ((-981 |#1|) . T) ((-981 $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-160))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1129) |has| |#1| (-842)))
+((-1507 (((-591 |#2|) |#5|) 36)) (-1312 (((-1085 |#5|) |#5| |#2| (-1085 |#5|)) 23) (((-385 (-1085 |#5|)) |#5| |#2|) 16)) (-1493 ((|#5| (-385 (-1085 |#5|)) |#2|) 30)) (-2254 (((-3 |#2| "failed") |#5|) 65)) (-3376 (((-3 (-591 |#5|) "failed") |#5|) 59)) (-3877 (((-3 (-2 (|:| |val| |#5|) (|:| -2008 (-525))) "failed") |#5|) 47)) (-2010 (((-3 (-591 |#5|) "failed") |#5|) 61)) (-2292 (((-3 (-2 (|:| |var| |#2|) (|:| -2008 (-525))) "failed") |#5|) 51)))
+(((-883 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1507 ((-591 |#2|) |#5|)) (-15 -2254 ((-3 |#2| "failed") |#5|)) (-15 -1312 ((-385 (-1085 |#5|)) |#5| |#2|)) (-15 -1493 (|#5| (-385 (-1085 |#5|)) |#2|)) (-15 -1312 ((-1085 |#5|) |#5| |#2| (-1085 |#5|))) (-15 -2010 ((-3 (-591 |#5|) "failed") |#5|)) (-15 -3376 ((-3 (-591 |#5|) "failed") |#5|)) (-15 -2292 ((-3 (-2 (|:| |var| |#2|) (|:| -2008 (-525))) "failed") |#5|)) (-15 -3877 ((-3 (-2 (|:| |val| |#5|) (|:| -2008 (-525))) "failed") |#5|))) (-734) (-788) (-975) (-882 |#3| |#1| |#2|) (-13 (-341) (-10 -8 (-15 -3022 ($ |#4|)) (-15 -1738 (|#4| $)) (-15 -1754 (|#4| $))))) (T -883))
+((-3877 (*1 *2 *3) (|partial| -12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-975)) (-4 *7 (-882 *6 *4 *5)) (-5 *2 (-2 (|:| |val| *3) (|:| -2008 (-525)))) (-5 *1 (-883 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-341) (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $)) (-15 -1754 (*7 $))))))) (-2292 (*1 *2 *3) (|partial| -12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-975)) (-4 *7 (-882 *6 *4 *5)) (-5 *2 (-2 (|:| |var| *5) (|:| -2008 (-525)))) (-5 *1 (-883 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-341) (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $)) (-15 -1754 (*7 $))))))) (-3376 (*1 *2 *3) (|partial| -12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-975)) (-4 *7 (-882 *6 *4 *5)) (-5 *2 (-591 *3)) (-5 *1 (-883 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-341) (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $)) (-15 -1754 (*7 $))))))) (-2010 (*1 *2 *3) (|partial| -12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-975)) (-4 *7 (-882 *6 *4 *5)) (-5 *2 (-591 *3)) (-5 *1 (-883 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-341) (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $)) (-15 -1754 (*7 $))))))) (-1312 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1085 *3)) (-4 *3 (-13 (-341) (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $)) (-15 -1754 (*7 $))))) (-4 *7 (-882 *6 *5 *4)) (-4 *5 (-734)) (-4 *4 (-788)) (-4 *6 (-975)) (-5 *1 (-883 *5 *4 *6 *7 *3)))) (-1493 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-1085 *2))) (-4 *5 (-734)) (-4 *4 (-788)) (-4 *6 (-975)) (-4 *2 (-13 (-341) (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $)) (-15 -1754 (*7 $))))) (-5 *1 (-883 *5 *4 *6 *7 *2)) (-4 *7 (-882 *6 *5 *4)))) (-1312 (*1 *2 *3 *4) (-12 (-4 *5 (-734)) (-4 *4 (-788)) (-4 *6 (-975)) (-4 *7 (-882 *6 *5 *4)) (-5 *2 (-385 (-1085 *3))) (-5 *1 (-883 *5 *4 *6 *7 *3)) (-4 *3 (-13 (-341) (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $)) (-15 -1754 (*7 $))))))) (-2254 (*1 *2 *3) (|partial| -12 (-4 *4 (-734)) (-4 *5 (-975)) (-4 *6 (-882 *5 *4 *2)) (-4 *2 (-788)) (-5 *1 (-883 *4 *2 *5 *6 *3)) (-4 *3 (-13 (-341) (-10 -8 (-15 -3022 ($ *6)) (-15 -1738 (*6 $)) (-15 -1754 (*6 $))))))) (-1507 (*1 *2 *3) (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-975)) (-4 *7 (-882 *6 *4 *5)) (-5 *2 (-591 *5)) (-5 *1 (-883 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-341) (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $)) (-15 -1754 (*7 $))))))))
+(-10 -7 (-15 -1507 ((-591 |#2|) |#5|)) (-15 -2254 ((-3 |#2| "failed") |#5|)) (-15 -1312 ((-385 (-1085 |#5|)) |#5| |#2|)) (-15 -1493 (|#5| (-385 (-1085 |#5|)) |#2|)) (-15 -1312 ((-1085 |#5|) |#5| |#2| (-1085 |#5|))) (-15 -2010 ((-3 (-591 |#5|) "failed") |#5|)) (-15 -3376 ((-3 (-591 |#5|) "failed") |#5|)) (-15 -2292 ((-3 (-2 (|:| |var| |#2|) (|:| -2008 (-525))) "failed") |#5|)) (-15 -3877 ((-3 (-2 (|:| |val| |#5|) (|:| -2008 (-525))) "failed") |#5|)))
+((-1340 ((|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|) 24)))
+(((-884 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1340 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-734) (-788) (-975) (-882 |#3| |#1| |#2|) (-13 (-1018) (-10 -8 (-15 -4156 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-712)))))) (T -884))
+((-1340 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-788)) (-4 *8 (-975)) (-4 *6 (-734)) (-4 *2 (-13 (-1018) (-10 -8 (-15 -4156 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-712)))))) (-5 *1 (-884 *6 *7 *8 *5 *2)) (-4 *5 (-882 *8 *6 *7)))))
+(-10 -7 (-15 -1340 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1507 (((-591 (-1089)) $) 16)) (-1312 (((-1085 $) $ (-1089)) 21) (((-1085 |#1|) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-4090 (((-712) $) NIL) (((-712) $ (-591 (-1089))) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1291 (($ $) NIL (|has| |#1| (-429)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) 8) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-1089) "failed") $) NIL)) (-3528 ((|#1| $) NIL) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-1089) $) NIL)) (-2805 (($ $ $ (-1089)) NIL (|has| |#1| (-160)))) (-1710 (($ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) NIL) (((-631 |#1|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3208 (($ $) NIL (|has| |#1| (-429))) (($ $ (-1089)) NIL (|has| |#1| (-429)))) (-1695 (((-591 $) $) NIL)) (-2744 (((-108) $) NIL (|has| |#1| (-842)))) (-2056 (($ $ |#1| (-497 (-1089)) $) NIL)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| (-1089) (-819 (-357))) (|has| |#1| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| (-1089) (-819 (-525))) (|has| |#1| (-819 (-525)))))) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) NIL)) (-1493 (($ (-1085 |#1|) (-1089)) NIL) (($ (-1085 $) (-1089)) NIL)) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-497 (-1089))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ (-1089)) NIL)) (-2624 (((-497 (-1089)) $) NIL) (((-712) $ (-1089)) NIL) (((-591 (-712)) $ (-591 (-1089))) NIL)) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-4015 (($ (-1 (-497 (-1089)) (-497 (-1089))) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-2254 (((-3 (-1089) "failed") $) 19)) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2339 (((-1072) $) NIL)) (-3376 (((-3 (-591 $) "failed") $) NIL)) (-2010 (((-3 (-591 $) "failed") $) NIL)) (-2292 (((-3 (-2 (|:| |var| (-1089)) (|:| -2008 (-712))) "failed") $) NIL)) (-4141 (($ $ (-1089)) 29 (|has| |#1| (-37 (-385 (-525)))))) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) NIL)) (-1646 ((|#1| $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-429)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1348 (((-396 $) $) NIL (|has| |#1| (-842)))) (-2089 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-517)))) (-4132 (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-1089) |#1|) NIL) (($ $ (-591 (-1089)) (-591 |#1|)) NIL) (($ $ (-1089) $) NIL) (($ $ (-591 (-1089)) (-591 $)) NIL)) (-2976 (($ $ (-1089)) NIL (|has| |#1| (-160)))) (-3266 (($ $ (-1089)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL)) (-1316 (((-497 (-1089)) $) NIL) (((-712) $ (-1089)) NIL) (((-591 (-712)) $ (-591 (-1089))) NIL)) (-1408 (((-825 (-357)) $) NIL (-12 (|has| (-1089) (-566 (-825 (-357)))) (|has| |#1| (-566 (-825 (-357)))))) (((-825 (-525)) $) NIL (-12 (|has| (-1089) (-566 (-825 (-525)))) (|has| |#1| (-566 (-825 (-525)))))) (((-501) $) NIL (-12 (|has| (-1089) (-566 (-501))) (|has| |#1| (-566 (-501)))))) (-2668 ((|#1| $) NIL (|has| |#1| (-429))) (($ $ (-1089)) NIL (|has| |#1| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#1| (-842))))) (-3022 (((-796) $) 25) (($ (-525)) NIL) (($ |#1|) NIL) (($ (-1089)) 27) (($ (-385 (-525))) NIL (-3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-966 (-385 (-525)))))) (($ $) NIL (|has| |#1| (-517)))) (-3654 (((-591 |#1|) $) NIL)) (-2560 ((|#1| $ (-497 (-1089))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#1| (-842))) (|has| |#1| (-136))))) (-2128 (((-712)) NIL)) (-1698 (($ $ $ (-712)) NIL (|has| |#1| (-160)))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ (-1089)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL)) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-885 |#1|) (-13 (-882 |#1| (-497 (-1089)) (-1089)) (-10 -8 (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1089))) |%noBranch|))) (-975)) (T -885))
+((-4141 (*1 *1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-885 *3)) (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)))))
+(-13 (-882 |#1| (-497 (-1089)) (-1089)) (-10 -8 (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1089))) |%noBranch|)))
+((-2727 (((-2 (|:| -2008 (-712)) (|:| -3482 |#5|) (|:| |radicand| |#5|)) |#3| (-712)) 38)) (-3043 (((-2 (|:| -2008 (-712)) (|:| -3482 |#5|) (|:| |radicand| |#5|)) (-385 (-525)) (-712)) 34)) (-2071 (((-2 (|:| -2008 (-712)) (|:| -3482 |#4|) (|:| |radicand| (-591 |#4|))) |#4| (-712)) 54)) (-2256 (((-2 (|:| -2008 (-712)) (|:| -3482 |#5|) (|:| |radicand| |#5|)) |#5| (-712)) 64 (|has| |#3| (-429)))))
+(((-886 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2727 ((-2 (|:| -2008 (-712)) (|:| -3482 |#5|) (|:| |radicand| |#5|)) |#3| (-712))) (-15 -3043 ((-2 (|:| -2008 (-712)) (|:| -3482 |#5|) (|:| |radicand| |#5|)) (-385 (-525)) (-712))) (IF (|has| |#3| (-429)) (-15 -2256 ((-2 (|:| -2008 (-712)) (|:| -3482 |#5|) (|:| |radicand| |#5|)) |#5| (-712))) |%noBranch|) (-15 -2071 ((-2 (|:| -2008 (-712)) (|:| -3482 |#4|) (|:| |radicand| (-591 |#4|))) |#4| (-712)))) (-734) (-788) (-517) (-882 |#3| |#1| |#2|) (-13 (-341) (-10 -8 (-15 -1738 (|#4| $)) (-15 -1754 (|#4| $)) (-15 -3022 ($ |#4|))))) (T -886))
+((-2071 (*1 *2 *3 *4) (-12 (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-517)) (-4 *3 (-882 *7 *5 *6)) (-5 *2 (-2 (|:| -2008 (-712)) (|:| -3482 *3) (|:| |radicand| (-591 *3)))) (-5 *1 (-886 *5 *6 *7 *3 *8)) (-5 *4 (-712)) (-4 *8 (-13 (-341) (-10 -8 (-15 -1738 (*3 $)) (-15 -1754 (*3 $)) (-15 -3022 ($ *3))))))) (-2256 (*1 *2 *3 *4) (-12 (-4 *7 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-517)) (-4 *8 (-882 *7 *5 *6)) (-5 *2 (-2 (|:| -2008 (-712)) (|:| -3482 *3) (|:| |radicand| *3))) (-5 *1 (-886 *5 *6 *7 *8 *3)) (-5 *4 (-712)) (-4 *3 (-13 (-341) (-10 -8 (-15 -1738 (*8 $)) (-15 -1754 (*8 $)) (-15 -3022 ($ *8))))))) (-3043 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-525))) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-517)) (-4 *8 (-882 *7 *5 *6)) (-5 *2 (-2 (|:| -2008 (-712)) (|:| -3482 *9) (|:| |radicand| *9))) (-5 *1 (-886 *5 *6 *7 *8 *9)) (-5 *4 (-712)) (-4 *9 (-13 (-341) (-10 -8 (-15 -1738 (*8 $)) (-15 -1754 (*8 $)) (-15 -3022 ($ *8))))))) (-2727 (*1 *2 *3 *4) (-12 (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-517)) (-4 *7 (-882 *3 *5 *6)) (-5 *2 (-2 (|:| -2008 (-712)) (|:| -3482 *8) (|:| |radicand| *8))) (-5 *1 (-886 *5 *6 *3 *7 *8)) (-5 *4 (-712)) (-4 *8 (-13 (-341) (-10 -8 (-15 -1738 (*7 $)) (-15 -1754 (*7 $)) (-15 -3022 ($ *7))))))))
+(-10 -7 (-15 -2727 ((-2 (|:| -2008 (-712)) (|:| -3482 |#5|) (|:| |radicand| |#5|)) |#3| (-712))) (-15 -3043 ((-2 (|:| -2008 (-712)) (|:| -3482 |#5|) (|:| |radicand| |#5|)) (-385 (-525)) (-712))) (IF (|has| |#3| (-429)) (-15 -2256 ((-2 (|:| -2008 (-712)) (|:| -3482 |#5|) (|:| |radicand| |#5|)) |#5| (-712))) |%noBranch|) (-15 -2071 ((-2 (|:| -2008 (-712)) (|:| -3482 |#4|) (|:| |radicand| (-591 |#4|))) |#4| (-712))))
+((-3236 (((-1013 (-205)) $) 8)) (-3229 (((-1013 (-205)) $) 9)) (-3001 (((-591 (-591 (-876 (-205)))) $) 10)) (-3022 (((-796) $) 6)))
+(((-887) (-131)) (T -887))
+((-3001 (*1 *2 *1) (-12 (-4 *1 (-887)) (-5 *2 (-591 (-591 (-876 (-205))))))) (-3229 (*1 *2 *1) (-12 (-4 *1 (-887)) (-5 *2 (-1013 (-205))))) (-3236 (*1 *2 *1) (-12 (-4 *1 (-887)) (-5 *2 (-1013 (-205))))))
+(-13 (-565 (-796)) (-10 -8 (-15 -3001 ((-591 (-591 (-876 (-205)))) $)) (-15 -3229 ((-1013 (-205)) $)) (-15 -3236 ((-1013 (-205)) $))))
+(((-565 (-796)) . T))
+((-2027 (((-3 (-631 |#1|) "failed") |#2| (-854)) 15)))
+(((-888 |#1| |#2|) (-10 -7 (-15 -2027 ((-3 (-631 |#1|) "failed") |#2| (-854)))) (-517) (-601 |#1|)) (T -888))
+((-2027 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-854)) (-4 *5 (-517)) (-5 *2 (-631 *5)) (-5 *1 (-888 *5 *3)) (-4 *3 (-601 *5)))))
+(-10 -7 (-15 -2027 ((-3 (-631 |#1|) "failed") |#2| (-854))))
+((-1526 (((-890 |#2|) (-1 |#2| |#1| |#2|) (-890 |#1|) |#2|) 16)) (-1227 ((|#2| (-1 |#2| |#1| |#2|) (-890 |#1|) |#2|) 18)) (-1340 (((-890 |#2|) (-1 |#2| |#1|) (-890 |#1|)) 13)))
+(((-889 |#1| |#2|) (-10 -7 (-15 -1526 ((-890 |#2|) (-1 |#2| |#1| |#2|) (-890 |#1|) |#2|)) (-15 -1227 (|#2| (-1 |#2| |#1| |#2|) (-890 |#1|) |#2|)) (-15 -1340 ((-890 |#2|) (-1 |#2| |#1|) (-890 |#1|)))) (-1125) (-1125)) (T -889))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-890 *5)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-890 *6)) (-5 *1 (-889 *5 *6)))) (-1227 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-890 *5)) (-4 *5 (-1125)) (-4 *2 (-1125)) (-5 *1 (-889 *5 *2)))) (-1526 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-890 *6)) (-4 *6 (-1125)) (-4 *5 (-1125)) (-5 *2 (-890 *5)) (-5 *1 (-889 *6 *5)))))
+(-10 -7 (-15 -1526 ((-890 |#2|) (-1 |#2| |#1| |#2|) (-890 |#1|) |#2|)) (-15 -1227 (|#2| (-1 |#2| |#1| |#2|) (-890 |#1|) |#2|)) (-15 -1340 ((-890 |#2|) (-1 |#2| |#1|) (-890 |#1|))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3203 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-788)))) (-4026 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4251))) (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| |#1| (-788))))) (-3327 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-788)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#1| $ (-525) |#1|) 16 (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) NIL (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3677 (($ |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#1| $ (-525) |#1|) 15 (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) 13)) (-3004 (((-525) (-1 (-108) |#1|) $) NIL) (((-525) |#1| $) NIL (|has| |#1| (-1018))) (((-525) |#1| $ (-525)) NIL (|has| |#1| (-1018)))) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-1268 (($ (-712) |#1|) 12)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) 10 (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2131 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-788)))) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-4189 (($ |#1| $ (-525)) NIL) (($ $ $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-3066 ((|#1| $) NIL (|has| (-525) (-788)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1941 (($ $ |#1|) 17 (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) 11)) (-3164 ((|#1| $ (-525) |#1|) NIL) ((|#1| $ (-525)) 14) (($ $ (-1138 (-525))) NIL)) (-2777 (($ $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4063 (($ $ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) NIL)) (-3690 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-591 $)) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4045 (((-712) $) 8 (|has| $ (-6 -4250)))))
+(((-890 |#1|) (-19 |#1|) (-1125)) (T -890))
NIL
(-19 |#1|)
-((-1777 (($ $ (-1009 $)) 7) (($ $ (-1087)) 6)))
-(((-889) (-129)) (T -889))
-((-1777 (*1 *1 *1 *2) (-12 (-5 *2 (-1009 *1)) (-4 *1 (-889)))) (-1777 (*1 *1 *1 *2) (-12 (-4 *1 (-889)) (-5 *2 (-1087)))))
-(-13 (-10 -8 (-15 -1777 ($ $ (-1087))) (-15 -1777 ($ $ (-1009 $)))))
-((-2097 (((-2 (|:| -2275 (-589 (-523))) (|:| |poly| (-589 (-1083 |#1|))) (|:| |prim| (-1083 |#1|))) (-589 (-883 |#1|)) (-589 (-1087)) (-1087)) 25) (((-2 (|:| -2275 (-589 (-523))) (|:| |poly| (-589 (-1083 |#1|))) (|:| |prim| (-1083 |#1|))) (-589 (-883 |#1|)) (-589 (-1087))) 26) (((-2 (|:| |coef1| (-523)) (|:| |coef2| (-523)) (|:| |prim| (-1083 |#1|))) (-883 |#1|) (-1087) (-883 |#1|) (-1087)) 43)))
-(((-890 |#1|) (-10 -7 (-15 -2097 ((-2 (|:| |coef1| (-523)) (|:| |coef2| (-523)) (|:| |prim| (-1083 |#1|))) (-883 |#1|) (-1087) (-883 |#1|) (-1087))) (-15 -2097 ((-2 (|:| -2275 (-589 (-523))) (|:| |poly| (-589 (-1083 |#1|))) (|:| |prim| (-1083 |#1|))) (-589 (-883 |#1|)) (-589 (-1087)))) (-15 -2097 ((-2 (|:| -2275 (-589 (-523))) (|:| |poly| (-589 (-1083 |#1|))) (|:| |prim| (-1083 |#1|))) (-589 (-883 |#1|)) (-589 (-1087)) (-1087)))) (-13 (-339) (-136))) (T -890))
-((-2097 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-589 (-883 *6))) (-5 *4 (-589 (-1087))) (-5 *5 (-1087)) (-4 *6 (-13 (-339) (-136))) (-5 *2 (-2 (|:| -2275 (-589 (-523))) (|:| |poly| (-589 (-1083 *6))) (|:| |prim| (-1083 *6)))) (-5 *1 (-890 *6)))) (-2097 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-589 (-1087))) (-4 *5 (-13 (-339) (-136))) (-5 *2 (-2 (|:| -2275 (-589 (-523))) (|:| |poly| (-589 (-1083 *5))) (|:| |prim| (-1083 *5)))) (-5 *1 (-890 *5)))) (-2097 (*1 *2 *3 *4 *3 *4) (-12 (-5 *3 (-883 *5)) (-5 *4 (-1087)) (-4 *5 (-13 (-339) (-136))) (-5 *2 (-2 (|:| |coef1| (-523)) (|:| |coef2| (-523)) (|:| |prim| (-1083 *5)))) (-5 *1 (-890 *5)))))
-(-10 -7 (-15 -2097 ((-2 (|:| |coef1| (-523)) (|:| |coef2| (-523)) (|:| |prim| (-1083 |#1|))) (-883 |#1|) (-1087) (-883 |#1|) (-1087))) (-15 -2097 ((-2 (|:| -2275 (-589 (-523))) (|:| |poly| (-589 (-1083 |#1|))) (|:| |prim| (-1083 |#1|))) (-589 (-883 |#1|)) (-589 (-1087)))) (-15 -2097 ((-2 (|:| -2275 (-589 (-523))) (|:| |poly| (-589 (-1083 |#1|))) (|:| |prim| (-1083 |#1|))) (-589 (-883 |#1|)) (-589 (-1087)) (-1087))))
-((-2934 (((-589 |#1|) |#1| |#1|) 42)) (-1330 (((-108) |#1|) 39)) (-2691 ((|#1| |#1|) 65)) (-3980 ((|#1| |#1|) 64)))
-(((-891 |#1|) (-10 -7 (-15 -1330 ((-108) |#1|)) (-15 -3980 (|#1| |#1|)) (-15 -2691 (|#1| |#1|)) (-15 -2934 ((-589 |#1|) |#1| |#1|))) (-508)) (T -891))
-((-2934 (*1 *2 *3 *3) (-12 (-5 *2 (-589 *3)) (-5 *1 (-891 *3)) (-4 *3 (-508)))) (-2691 (*1 *2 *2) (-12 (-5 *1 (-891 *2)) (-4 *2 (-508)))) (-3980 (*1 *2 *2) (-12 (-5 *1 (-891 *2)) (-4 *2 (-508)))) (-1330 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-891 *3)) (-4 *3 (-508)))))
-(-10 -7 (-15 -1330 ((-108) |#1|)) (-15 -3980 (|#1| |#1|)) (-15 -2691 (|#1| |#1|)) (-15 -2934 ((-589 |#1|) |#1| |#1|)))
-((-3230 (((-1174) (-794)) 9)))
-(((-892) (-10 -7 (-15 -3230 ((-1174) (-794))))) (T -892))
-((-3230 (*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1174)) (-5 *1 (-892)))))
-(-10 -7 (-15 -3230 ((-1174) (-794))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 63 (|has| |#1| (-515)))) (-3950 (($ $) 64 (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) 28)) (-1996 (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) NIL)) (-3142 (($ $) 24)) (-4211 (((-3 $ "failed") $) 35)) (-2213 (($ $) NIL (|has| |#1| (-427)))) (-2067 (($ $ |#1| |#2| $) 48)) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) 16)) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| |#2|) NIL)) (-2140 ((|#2| $) 19)) (-3927 (($ (-1 |#2| |#2|) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-3107 (($ $) 23)) (-3119 ((|#1| $) 21)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) 40)) (-3095 ((|#1| $) NIL)) (-3664 (($ $ |#2| |#1| $) 73 (-12 (|has| |#2| (-124)) (|has| |#1| (-515))))) (-2469 (((-3 $ "failed") $ $) 75 (|has| |#1| (-515))) (((-3 $ "failed") $ |#1|) 70 (|has| |#1| (-515)))) (-1487 ((|#2| $) 17)) (-2267 ((|#1| $) NIL (|has| |#1| (-427)))) (-3976 (((-794) $) NIL) (($ (-523)) 39) (($ $) NIL (|has| |#1| (-515))) (($ |#1|) 34) (($ (-383 (-523))) NIL (-3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-964 (-383 (-523))))))) (-1639 (((-589 |#1|) $) NIL)) (-1234 ((|#1| $ |#2|) 31)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) 15)) (-2656 (($ $ $ (-710)) 59 (|has| |#1| (-158)))) (-3842 (((-108) $ $) 69 (|has| |#1| (-515)))) (-2573 (($ $ (-852)) 55) (($ $ (-710)) 56)) (-1428 (($) 22 T CONST)) (-1440 (($) 12 T CONST)) (-4037 (((-108) $ $) 68)) (-4125 (($ $ |#1|) 76 (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) 54) (($ $ (-710)) 52)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 51) (($ $ |#1|) 50) (($ |#1| $) 49) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))))
-(((-893 |#1| |#2|) (-13 (-302 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-515)) (IF (|has| |#2| (-124)) (-15 -3664 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4246)) (-6 -4246) |%noBranch|))) (-973) (-731)) (T -893))
-((-3664 (*1 *1 *1 *2 *3 *1) (-12 (-5 *1 (-893 *3 *2)) (-4 *2 (-124)) (-4 *3 (-515)) (-4 *3 (-973)) (-4 *2 (-731)))))
-(-13 (-302 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-515)) (IF (|has| |#2| (-124)) (-15 -3664 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4246)) (-6 -4246) |%noBranch|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL (-3255 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))))) (-1773 (($ $ $) 63 (-12 (|has| |#1| (-732)) (|has| |#2| (-732))))) (-2999 (((-3 $ "failed") $ $) 50 (-3255 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))))) (-3843 (((-710)) 34 (-12 (|has| |#1| (-344)) (|has| |#2| (-344))))) (-3320 ((|#2| $) 21)) (-4163 ((|#1| $) 20)) (-1640 (($) NIL (-3255 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-448)) (|has| |#2| (-448))) (-12 (|has| |#1| (-666)) (|has| |#2| (-666))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))) CONST)) (-4211 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| |#1| (-448)) (|has| |#2| (-448))) (-12 (|has| |#1| (-666)) (|has| |#2| (-666)))))) (-3461 (($) NIL (-12 (|has| |#1| (-344)) (|has| |#2| (-344))))) (-3482 (((-108) $) NIL (-3255 (-12 (|has| |#1| (-448)) (|has| |#2| (-448))) (-12 (|has| |#1| (-666)) (|has| |#2| (-666)))))) (-3268 (($ $ $) NIL (-3255 (-12 (|has| |#1| (-732)) (|has| |#2| (-732))) (-12 (|has| |#1| (-786)) (|has| |#2| (-786)))))) (-2644 (($ $ $) NIL (-3255 (-12 (|has| |#1| (-732)) (|has| |#2| (-732))) (-12 (|has| |#1| (-786)) (|has| |#2| (-786)))))) (-2886 (($ |#1| |#2|) 19)) (-4076 (((-852) $) NIL (-12 (|has| |#1| (-344)) (|has| |#2| (-344))))) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 37 (-12 (|has| |#1| (-448)) (|has| |#2| (-448))))) (-2557 (($ (-852)) NIL (-12 (|has| |#1| (-344)) (|has| |#2| (-344))))) (-2435 (((-1034) $) NIL)) (-1308 (($ $ $) NIL (-12 (|has| |#1| (-448)) (|has| |#2| (-448))))) (-2306 (($ $ $) NIL (-12 (|has| |#1| (-448)) (|has| |#2| (-448))))) (-3976 (((-794) $) 14)) (-2573 (($ $ (-523)) NIL (-12 (|has| |#1| (-448)) (|has| |#2| (-448)))) (($ $ (-710)) NIL (-3255 (-12 (|has| |#1| (-448)) (|has| |#2| (-448))) (-12 (|has| |#1| (-666)) (|has| |#2| (-666))))) (($ $ (-852)) NIL (-3255 (-12 (|has| |#1| (-448)) (|has| |#2| (-448))) (-12 (|has| |#1| (-666)) (|has| |#2| (-666)))))) (-1428 (($) 40 (-3255 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))) CONST)) (-1440 (($) 24 (-3255 (-12 (|has| |#1| (-448)) (|has| |#2| (-448))) (-12 (|has| |#1| (-666)) (|has| |#2| (-666)))) CONST)) (-4078 (((-108) $ $) NIL (-3255 (-12 (|has| |#1| (-732)) (|has| |#2| (-732))) (-12 (|has| |#1| (-786)) (|has| |#2| (-786)))))) (-4061 (((-108) $ $) NIL (-3255 (-12 (|has| |#1| (-732)) (|has| |#2| (-732))) (-12 (|has| |#1| (-786)) (|has| |#2| (-786)))))) (-4037 (((-108) $ $) 18)) (-4070 (((-108) $ $) NIL (-3255 (-12 (|has| |#1| (-732)) (|has| |#2| (-732))) (-12 (|has| |#1| (-786)) (|has| |#2| (-786)))))) (-4052 (((-108) $ $) 66 (-3255 (-12 (|has| |#1| (-732)) (|has| |#2| (-732))) (-12 (|has| |#1| (-786)) (|has| |#2| (-786)))))) (-4125 (($ $ $) NIL (-12 (|has| |#1| (-448)) (|has| |#2| (-448))))) (-4115 (($ $ $) 56 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 53 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-4103 (($ $ $) 43 (-3255 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))))) (** (($ $ (-523)) NIL (-12 (|has| |#1| (-448)) (|has| |#2| (-448)))) (($ $ (-710)) 31 (-3255 (-12 (|has| |#1| (-448)) (|has| |#2| (-448))) (-12 (|has| |#1| (-666)) (|has| |#2| (-666))))) (($ $ (-852)) NIL (-3255 (-12 (|has| |#1| (-448)) (|has| |#2| (-448))) (-12 (|has| |#1| (-666)) (|has| |#2| (-666)))))) (* (($ (-523) $) 60 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ (-710) $) 46 (-3255 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732))))) (($ (-852) $) NIL (-3255 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732))))) (($ $ $) 27 (-3255 (-12 (|has| |#1| (-448)) (|has| |#2| (-448))) (-12 (|has| |#1| (-666)) (|has| |#2| (-666)))))))
-(((-894 |#1| |#2|) (-13 (-1016) (-10 -8 (IF (|has| |#1| (-344)) (IF (|has| |#2| (-344)) (-6 (-344)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-666)) (IF (|has| |#2| (-666)) (-6 (-666)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-124)) (IF (|has| |#2| (-124)) (-6 (-124)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-448)) (IF (|has| |#2| (-448)) (-6 (-448)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-732)) (IF (|has| |#2| (-732)) (-6 (-732)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-786)) (IF (|has| |#2| (-786)) (-6 (-786)) |%noBranch|) |%noBranch|) (-15 -2886 ($ |#1| |#2|)) (-15 -4163 (|#1| $)) (-15 -3320 (|#2| $)))) (-1016) (-1016)) (T -894))
-((-2886 (*1 *1 *2 *3) (-12 (-5 *1 (-894 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))) (-4163 (*1 *2 *1) (-12 (-4 *2 (-1016)) (-5 *1 (-894 *2 *3)) (-4 *3 (-1016)))) (-3320 (*1 *2 *1) (-12 (-4 *2 (-1016)) (-5 *1 (-894 *3 *2)) (-4 *3 (-1016)))))
-(-13 (-1016) (-10 -8 (IF (|has| |#1| (-344)) (IF (|has| |#2| (-344)) (-6 (-344)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-666)) (IF (|has| |#2| (-666)) (-6 (-666)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-124)) (IF (|has| |#2| (-124)) (-6 (-124)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-448)) (IF (|has| |#2| (-448)) (-6 (-448)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-732)) (IF (|has| |#2| (-732)) (-6 (-732)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-786)) (IF (|has| |#2| (-786)) (-6 (-786)) |%noBranch|) |%noBranch|) (-15 -2886 ($ |#1| |#2|)) (-15 -4163 (|#1| $)) (-15 -3320 (|#2| $))))
-((-2058 (((-1020) $) 12)) (-3422 (($ (-1087) (-1020)) 13)) (-1522 (((-1087) $) 10)) (-3976 (((-794) $) 24)))
-(((-895) (-13 (-563 (-794)) (-10 -8 (-15 -1522 ((-1087) $)) (-15 -2058 ((-1020) $)) (-15 -3422 ($ (-1087) (-1020)))))) (T -895))
-((-1522 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-895)))) (-2058 (*1 *2 *1) (-12 (-5 *2 (-1020)) (-5 *1 (-895)))) (-3422 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1020)) (-5 *1 (-895)))))
-(-13 (-563 (-794)) (-10 -8 (-15 -1522 ((-1087) $)) (-15 -2058 ((-1020) $)) (-15 -3422 ($ (-1087) (-1020)))))
-((-3716 (((-1018 (-1087)) $) 19)) (-3807 (((-108) $) 26)) (-2354 (((-1087) $) 27)) (-1862 (((-108) $) 24)) (-3988 ((|#1| $) 25)) (-3016 (((-804 $ $) $) 34)) (-2993 (((-108) $) 33)) (-2806 (($ $ $) 12)) (-3701 (($ $) 29)) (-2445 (((-108) $) 28)) (-2575 (($ $) 10)) (-4062 (((-804 $ $) $) 36)) (-3209 (((-108) $) 35)) (-3473 (($ $ $) 13)) (-3057 (((-804 $ $) $) 38)) (-2184 (((-108) $) 37)) (-2045 (($ $ $) 14)) (-3976 (($ |#1|) 7) (($ (-1087)) 9) (((-794) $) 40 (|has| |#1| (-563 (-794))))) (-3858 (((-804 $ $) $) 32)) (-3826 (((-108) $) 30)) (-2819 (($ $ $) 11)))
-(((-896 |#1|) (-13 (-897) (-10 -8 (IF (|has| |#1| (-563 (-794))) (-6 (-563 (-794))) |%noBranch|) (-15 -3976 ($ |#1|)) (-15 -3976 ($ (-1087))) (-15 -3716 ((-1018 (-1087)) $)) (-15 -1862 ((-108) $)) (-15 -3988 (|#1| $)) (-15 -3807 ((-108) $)) (-15 -2354 ((-1087) $)) (-15 -2445 ((-108) $)) (-15 -3701 ($ $)) (-15 -3826 ((-108) $)) (-15 -3858 ((-804 $ $) $)) (-15 -2993 ((-108) $)) (-15 -3016 ((-804 $ $) $)) (-15 -3209 ((-108) $)) (-15 -4062 ((-804 $ $) $)) (-15 -2184 ((-108) $)) (-15 -3057 ((-804 $ $) $)))) (-897)) (T -896))
-((-3976 (*1 *1 *2) (-12 (-5 *1 (-896 *2)) (-4 *2 (-897)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-896 *3)) (-4 *3 (-897)))) (-3716 (*1 *2 *1) (-12 (-5 *2 (-1018 (-1087))) (-5 *1 (-896 *3)) (-4 *3 (-897)))) (-1862 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-896 *3)) (-4 *3 (-897)))) (-3988 (*1 *2 *1) (-12 (-5 *1 (-896 *2)) (-4 *2 (-897)))) (-3807 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-896 *3)) (-4 *3 (-897)))) (-2354 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-896 *3)) (-4 *3 (-897)))) (-2445 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-896 *3)) (-4 *3 (-897)))) (-3701 (*1 *1 *1) (-12 (-5 *1 (-896 *2)) (-4 *2 (-897)))) (-3826 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-896 *3)) (-4 *3 (-897)))) (-3858 (*1 *2 *1) (-12 (-5 *2 (-804 (-896 *3) (-896 *3))) (-5 *1 (-896 *3)) (-4 *3 (-897)))) (-2993 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-896 *3)) (-4 *3 (-897)))) (-3016 (*1 *2 *1) (-12 (-5 *2 (-804 (-896 *3) (-896 *3))) (-5 *1 (-896 *3)) (-4 *3 (-897)))) (-3209 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-896 *3)) (-4 *3 (-897)))) (-4062 (*1 *2 *1) (-12 (-5 *2 (-804 (-896 *3) (-896 *3))) (-5 *1 (-896 *3)) (-4 *3 (-897)))) (-2184 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-896 *3)) (-4 *3 (-897)))) (-3057 (*1 *2 *1) (-12 (-5 *2 (-804 (-896 *3) (-896 *3))) (-5 *1 (-896 *3)) (-4 *3 (-897)))))
-(-13 (-897) (-10 -8 (IF (|has| |#1| (-563 (-794))) (-6 (-563 (-794))) |%noBranch|) (-15 -3976 ($ |#1|)) (-15 -3976 ($ (-1087))) (-15 -3716 ((-1018 (-1087)) $)) (-15 -1862 ((-108) $)) (-15 -3988 (|#1| $)) (-15 -3807 ((-108) $)) (-15 -2354 ((-1087) $)) (-15 -2445 ((-108) $)) (-15 -3701 ($ $)) (-15 -3826 ((-108) $)) (-15 -3858 ((-804 $ $) $)) (-15 -2993 ((-108) $)) (-15 -3016 ((-804 $ $) $)) (-15 -3209 ((-108) $)) (-15 -4062 ((-804 $ $) $)) (-15 -2184 ((-108) $)) (-15 -3057 ((-804 $ $) $))))
-((-2806 (($ $ $) 8)) (-2575 (($ $) 6)) (-3473 (($ $ $) 9)) (-2045 (($ $ $) 10)) (-2819 (($ $ $) 7)))
-(((-897) (-129)) (T -897))
-((-2045 (*1 *1 *1 *1) (-4 *1 (-897))) (-3473 (*1 *1 *1 *1) (-4 *1 (-897))) (-2806 (*1 *1 *1 *1) (-4 *1 (-897))) (-2819 (*1 *1 *1 *1) (-4 *1 (-897))) (-2575 (*1 *1 *1) (-4 *1 (-897))))
-(-13 (-10 -8 (-15 -2575 ($ $)) (-15 -2819 ($ $ $)) (-15 -2806 ($ $ $)) (-15 -3473 ($ $ $)) (-15 -2045 ($ $ $))))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2282 (((-108) $ (-710)) 8)) (-1640 (($) 7 T CONST)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-3325 (($ $ $) 43)) (-3123 (($ $ $) 44)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2644 ((|#1| $) 45)) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2349 ((|#1| $) 39)) (-3862 (($ |#1| $) 40)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-1322 ((|#1| $) 41)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1245 (($ (-589 |#1|)) 42)) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-898 |#1|) (-129) (-786)) (T -898))
-((-2644 (*1 *2 *1) (-12 (-4 *1 (-898 *2)) (-4 *2 (-786)))) (-3123 (*1 *1 *1 *1) (-12 (-4 *1 (-898 *2)) (-4 *2 (-786)))) (-3325 (*1 *1 *1 *1) (-12 (-4 *1 (-898 *2)) (-4 *2 (-786)))))
-(-13 (-102 |t#1|) (-10 -8 (-6 -4248) (-15 -2644 (|t#1| $)) (-15 -3123 ($ $ $)) (-15 -3325 ($ $ $))))
-(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-3062 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2056 |#2|)) |#2| |#2|) 85)) (-3712 ((|#2| |#2| |#2|) 83)) (-2983 (((-2 (|:| |coef2| |#2|) (|:| -2056 |#2|)) |#2| |#2|) 87)) (-2345 (((-2 (|:| |coef1| |#2|) (|:| -2056 |#2|)) |#2| |#2|) 89)) (-1752 (((-2 (|:| |coef2| |#2|) (|:| -1249 |#1|)) |#2| |#2|) 107 (|has| |#1| (-427)))) (-1864 (((-2 (|:| |coef2| |#2|) (|:| -2210 |#1|)) |#2| |#2|) 46)) (-2885 (((-2 (|:| |coef2| |#2|) (|:| -2210 |#1|)) |#2| |#2|) 64)) (-3909 (((-2 (|:| |coef1| |#2|) (|:| -2210 |#1|)) |#2| |#2|) 66)) (-3207 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 78)) (-2809 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-710)) 71)) (-2727 (((-2 (|:| |coef2| |#2|) (|:| -4053 |#1|)) |#2|) 97)) (-2763 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-710)) 74)) (-1521 (((-589 (-710)) |#2| |#2|) 82)) (-2907 ((|#1| |#2| |#2|) 42)) (-2211 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1249 |#1|)) |#2| |#2|) 105 (|has| |#1| (-427)))) (-1249 ((|#1| |#2| |#2|) 103 (|has| |#1| (-427)))) (-3910 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2210 |#1|)) |#2| |#2|) 44)) (-1748 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2210 |#1|)) |#2| |#2|) 63)) (-2210 ((|#1| |#2| |#2|) 61)) (-1579 (((-2 (|:| -2275 |#1|) (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2|) 35)) (-2336 ((|#2| |#2| |#2| |#2| |#1|) 53)) (-2780 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 76)) (-3216 ((|#2| |#2| |#2|) 75)) (-1239 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-710)) 69)) (-2436 ((|#2| |#2| |#2| (-710)) 67)) (-2056 ((|#2| |#2| |#2|) 111 (|has| |#1| (-427)))) (-2469 (((-1169 |#2|) (-1169 |#2|) |#1|) 21)) (-1227 (((-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2|) 39)) (-1280 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4053 |#1|)) |#2|) 95)) (-4053 ((|#1| |#2|) 92)) (-3713 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-710)) 73)) (-2397 ((|#2| |#2| |#2| (-710)) 72)) (-1528 (((-589 |#2|) |#2| |#2|) 80)) (-3603 ((|#2| |#2| |#1| |#1| (-710)) 50)) (-1624 ((|#1| |#1| |#1| (-710)) 49)) (* (((-1169 |#2|) |#1| (-1169 |#2|)) 16)))
-(((-899 |#1| |#2|) (-10 -7 (-15 -2210 (|#1| |#2| |#2|)) (-15 -1748 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2210 |#1|)) |#2| |#2|)) (-15 -2885 ((-2 (|:| |coef2| |#2|) (|:| -2210 |#1|)) |#2| |#2|)) (-15 -3909 ((-2 (|:| |coef1| |#2|) (|:| -2210 |#1|)) |#2| |#2|)) (-15 -2436 (|#2| |#2| |#2| (-710))) (-15 -1239 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-710))) (-15 -2809 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-710))) (-15 -2397 (|#2| |#2| |#2| (-710))) (-15 -3713 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-710))) (-15 -2763 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-710))) (-15 -3216 (|#2| |#2| |#2|)) (-15 -2780 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3207 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3712 (|#2| |#2| |#2|)) (-15 -3062 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2056 |#2|)) |#2| |#2|)) (-15 -2983 ((-2 (|:| |coef2| |#2|) (|:| -2056 |#2|)) |#2| |#2|)) (-15 -2345 ((-2 (|:| |coef1| |#2|) (|:| -2056 |#2|)) |#2| |#2|)) (-15 -4053 (|#1| |#2|)) (-15 -1280 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4053 |#1|)) |#2|)) (-15 -2727 ((-2 (|:| |coef2| |#2|) (|:| -4053 |#1|)) |#2|)) (-15 -1528 ((-589 |#2|) |#2| |#2|)) (-15 -1521 ((-589 (-710)) |#2| |#2|)) (IF (|has| |#1| (-427)) (PROGN (-15 -1249 (|#1| |#2| |#2|)) (-15 -2211 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1249 |#1|)) |#2| |#2|)) (-15 -1752 ((-2 (|:| |coef2| |#2|) (|:| -1249 |#1|)) |#2| |#2|)) (-15 -2056 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1169 |#2|) |#1| (-1169 |#2|))) (-15 -2469 ((-1169 |#2|) (-1169 |#2|) |#1|)) (-15 -1579 ((-2 (|:| -2275 |#1|) (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2|)) (-15 -1227 ((-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2|)) (-15 -1624 (|#1| |#1| |#1| (-710))) (-15 -3603 (|#2| |#2| |#1| |#1| (-710))) (-15 -2336 (|#2| |#2| |#2| |#2| |#1|)) (-15 -2907 (|#1| |#2| |#2|)) (-15 -3910 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2210 |#1|)) |#2| |#2|)) (-15 -1864 ((-2 (|:| |coef2| |#2|) (|:| -2210 |#1|)) |#2| |#2|))) (-515) (-1145 |#1|)) (T -899))
-((-1864 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2210 *4))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-3910 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2210 *4))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-2907 (*1 *2 *3 *3) (-12 (-4 *2 (-515)) (-5 *1 (-899 *2 *3)) (-4 *3 (-1145 *2)))) (-2336 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-515)) (-5 *1 (-899 *3 *2)) (-4 *2 (-1145 *3)))) (-3603 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-710)) (-4 *3 (-515)) (-5 *1 (-899 *3 *2)) (-4 *2 (-1145 *3)))) (-1624 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-710)) (-4 *2 (-515)) (-5 *1 (-899 *2 *4)) (-4 *4 (-1145 *2)))) (-1227 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-1579 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| -2275 *4) (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-2469 (*1 *2 *2 *3) (-12 (-5 *2 (-1169 *4)) (-4 *4 (-1145 *3)) (-4 *3 (-515)) (-5 *1 (-899 *3 *4)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1169 *4)) (-4 *4 (-1145 *3)) (-4 *3 (-515)) (-5 *1 (-899 *3 *4)))) (-2056 (*1 *2 *2 *2) (-12 (-4 *3 (-427)) (-4 *3 (-515)) (-5 *1 (-899 *3 *2)) (-4 *2 (-1145 *3)))) (-1752 (*1 *2 *3 *3) (-12 (-4 *4 (-427)) (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1249 *4))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-2211 (*1 *2 *3 *3) (-12 (-4 *4 (-427)) (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1249 *4))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-1249 (*1 *2 *3 *3) (-12 (-4 *2 (-515)) (-4 *2 (-427)) (-5 *1 (-899 *2 *3)) (-4 *3 (-1145 *2)))) (-1521 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-5 *2 (-589 (-710))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-1528 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-5 *2 (-589 *3)) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-2727 (*1 *2 *3) (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -4053 *4))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-1280 (*1 *2 *3) (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -4053 *4))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-4053 (*1 *2 *3) (-12 (-4 *2 (-515)) (-5 *1 (-899 *2 *3)) (-4 *3 (-1145 *2)))) (-2345 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2056 *3))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-2983 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2056 *3))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-3062 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2056 *3))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-3712 (*1 *2 *2 *2) (-12 (-4 *3 (-515)) (-5 *1 (-899 *3 *2)) (-4 *2 (-1145 *3)))) (-3207 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-2780 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-3216 (*1 *2 *2 *2) (-12 (-4 *3 (-515)) (-5 *1 (-899 *3 *2)) (-4 *2 (-1145 *3)))) (-2763 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-710)) (-4 *5 (-515)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-899 *5 *3)) (-4 *3 (-1145 *5)))) (-3713 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-710)) (-4 *5 (-515)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-899 *5 *3)) (-4 *3 (-1145 *5)))) (-2397 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-710)) (-4 *4 (-515)) (-5 *1 (-899 *4 *2)) (-4 *2 (-1145 *4)))) (-2809 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-710)) (-4 *5 (-515)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-899 *5 *3)) (-4 *3 (-1145 *5)))) (-1239 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-710)) (-4 *5 (-515)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-899 *5 *3)) (-4 *3 (-1145 *5)))) (-2436 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-710)) (-4 *4 (-515)) (-5 *1 (-899 *4 *2)) (-4 *2 (-1145 *4)))) (-3909 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2210 *4))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-2885 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2210 *4))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-1748 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2210 *4))) (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))) (-2210 (*1 *2 *3 *3) (-12 (-4 *2 (-515)) (-5 *1 (-899 *2 *3)) (-4 *3 (-1145 *2)))))
-(-10 -7 (-15 -2210 (|#1| |#2| |#2|)) (-15 -1748 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2210 |#1|)) |#2| |#2|)) (-15 -2885 ((-2 (|:| |coef2| |#2|) (|:| -2210 |#1|)) |#2| |#2|)) (-15 -3909 ((-2 (|:| |coef1| |#2|) (|:| -2210 |#1|)) |#2| |#2|)) (-15 -2436 (|#2| |#2| |#2| (-710))) (-15 -1239 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-710))) (-15 -2809 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-710))) (-15 -2397 (|#2| |#2| |#2| (-710))) (-15 -3713 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-710))) (-15 -2763 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-710))) (-15 -3216 (|#2| |#2| |#2|)) (-15 -2780 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3207 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3712 (|#2| |#2| |#2|)) (-15 -3062 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2056 |#2|)) |#2| |#2|)) (-15 -2983 ((-2 (|:| |coef2| |#2|) (|:| -2056 |#2|)) |#2| |#2|)) (-15 -2345 ((-2 (|:| |coef1| |#2|) (|:| -2056 |#2|)) |#2| |#2|)) (-15 -4053 (|#1| |#2|)) (-15 -1280 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4053 |#1|)) |#2|)) (-15 -2727 ((-2 (|:| |coef2| |#2|) (|:| -4053 |#1|)) |#2|)) (-15 -1528 ((-589 |#2|) |#2| |#2|)) (-15 -1521 ((-589 (-710)) |#2| |#2|)) (IF (|has| |#1| (-427)) (PROGN (-15 -1249 (|#1| |#2| |#2|)) (-15 -2211 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1249 |#1|)) |#2| |#2|)) (-15 -1752 ((-2 (|:| |coef2| |#2|) (|:| -1249 |#1|)) |#2| |#2|)) (-15 -2056 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1169 |#2|) |#1| (-1169 |#2|))) (-15 -2469 ((-1169 |#2|) (-1169 |#2|) |#1|)) (-15 -1579 ((-2 (|:| -2275 |#1|) (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2|)) (-15 -1227 ((-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) |#2| |#2|)) (-15 -1624 (|#1| |#1| |#1| (-710))) (-15 -3603 (|#2| |#2| |#1| |#1| (-710))) (-15 -2336 (|#2| |#2| |#2| |#2| |#1|)) (-15 -2907 (|#1| |#2| |#2|)) (-15 -3910 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2210 |#1|)) |#2| |#2|)) (-15 -1864 ((-2 (|:| |coef2| |#2|) (|:| -2210 |#1|)) |#2| |#2|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) 27)) (-1640 (($) NIL T CONST)) (-2181 (((-589 (-589 (-523))) (-589 (-523))) 29)) (-2546 (((-523) $) 45)) (-3777 (($ (-589 (-523))) 17)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3077 (((-589 (-523)) $) 12)) (-1308 (($ $) 32)) (-3976 (((-794) $) 43) (((-589 (-523)) $) 10)) (-1428 (($) 7 T CONST)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 20)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 19)) (-4103 (($ $ $) 21)) (* (($ (-710) $) 25) (($ (-852) $) NIL)))
-(((-900) (-13 (-734) (-564 (-589 (-523))) (-10 -8 (-15 -3777 ($ (-589 (-523)))) (-15 -2181 ((-589 (-589 (-523))) (-589 (-523)))) (-15 -2546 ((-523) $)) (-15 -1308 ($ $)) (-15 -3976 ((-589 (-523)) $))))) (T -900))
-((-3777 (*1 *1 *2) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-900)))) (-2181 (*1 *2 *3) (-12 (-5 *2 (-589 (-589 (-523)))) (-5 *1 (-900)) (-5 *3 (-589 (-523))))) (-2546 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-900)))) (-1308 (*1 *1 *1) (-5 *1 (-900))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-900)))))
-(-13 (-734) (-564 (-589 (-523))) (-10 -8 (-15 -3777 ($ (-589 (-523)))) (-15 -2181 ((-589 (-589 (-523))) (-589 (-523)))) (-15 -2546 ((-523) $)) (-15 -1308 ($ $)) (-15 -3976 ((-589 (-523)) $))))
-((-4125 (($ $ |#2|) 30)) (-4115 (($ $) 22) (($ $ $) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 15) (($ $ $) NIL) (($ $ |#2|) 20) (($ |#2| $) 19) (($ (-383 (-523)) $) 26) (($ $ (-383 (-523))) 28)))
-(((-901 |#1| |#2| |#3| |#4|) (-10 -8 (-15 * (|#1| |#1| (-383 (-523)))) (-15 * (|#1| (-383 (-523)) |#1|)) (-15 -4125 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 -4115 (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-852) |#1|))) (-902 |#2| |#3| |#4|) (-973) (-731) (-786)) (T -901))
-NIL
-(-10 -8 (-15 * (|#1| |#1| (-383 (-523)))) (-15 * (|#1| (-383 (-523)) |#1|)) (-15 -4125 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 -4115 (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 * (|#1| (-852) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3716 (((-589 |#3|) $) 74)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 51 (|has| |#1| (-515)))) (-3950 (($ $) 52 (|has| |#1| (-515)))) (-3226 (((-108) $) 54 (|has| |#1| (-515)))) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3142 (($ $) 60)) (-4211 (((-3 $ "failed") $) 34)) (-2294 (((-108) $) 73)) (-3482 (((-108) $) 31)) (-4060 (((-108) $) 62)) (-3694 (($ |#1| |#2|) 61) (($ $ |#3| |#2|) 76) (($ $ (-589 |#3|) (-589 |#2|)) 75)) (-3015 (($ (-1 |#1| |#1|) $) 63)) (-3107 (($ $) 65)) (-3119 ((|#1| $) 66)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2469 (((-3 $ "failed") $ $) 50 (|has| |#1| (-515)))) (-1487 ((|#2| $) 64)) (-3749 (($ $) 72)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ (-383 (-523))) 57 (|has| |#1| (-37 (-383 (-523))))) (($ $) 49 (|has| |#1| (-515))) (($ |#1|) 47 (|has| |#1| (-158)))) (-1234 ((|#1| $ |#2|) 59)) (-2301 (((-3 $ "failed") $) 48 (|has| |#1| (-134)))) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 53 (|has| |#1| (-515)))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4125 (($ $ |#1|) 58 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-383 (-523)) $) 56 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 55 (|has| |#1| (-37 (-383 (-523)))))))
-(((-902 |#1| |#2| |#3|) (-129) (-973) (-731) (-786)) (T -902))
-((-3119 (*1 *2 *1) (-12 (-4 *1 (-902 *2 *3 *4)) (-4 *3 (-731)) (-4 *4 (-786)) (-4 *2 (-973)))) (-3107 (*1 *1 *1) (-12 (-4 *1 (-902 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-731)) (-4 *4 (-786)))) (-1487 (*1 *2 *1) (-12 (-4 *1 (-902 *3 *2 *4)) (-4 *3 (-973)) (-4 *4 (-786)) (-4 *2 (-731)))) (-3694 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-902 *4 *3 *2)) (-4 *4 (-973)) (-4 *3 (-731)) (-4 *2 (-786)))) (-3694 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 *6)) (-5 *3 (-589 *5)) (-4 *1 (-902 *4 *5 *6)) (-4 *4 (-973)) (-4 *5 (-731)) (-4 *6 (-786)))) (-3716 (*1 *2 *1) (-12 (-4 *1 (-902 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-731)) (-4 *5 (-786)) (-5 *2 (-589 *5)))) (-2294 (*1 *2 *1) (-12 (-4 *1 (-902 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-731)) (-4 *5 (-786)) (-5 *2 (-108)))) (-3749 (*1 *1 *1) (-12 (-4 *1 (-902 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-731)) (-4 *4 (-786)))))
-(-13 (-46 |t#1| |t#2|) (-10 -8 (-15 -3694 ($ $ |t#3| |t#2|)) (-15 -3694 ($ $ (-589 |t#3|) (-589 |t#2|))) (-15 -3107 ($ $)) (-15 -3119 (|t#1| $)) (-15 -1487 (|t#2| $)) (-15 -3716 ((-589 |t#3|) $)) (-15 -2294 ((-108) $)) (-15 -3749 ($ $))))
-(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((-37 |#1|) |has| |#1| (-158)) ((-37 $) |has| |#1| (-515)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-383 (-523)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-267) |has| |#1| (-515)) ((-515) |has| |#1| (-515)) ((-591 #0#) |has| |#1| (-37 (-383 (-523)))) ((-591 |#1|) . T) ((-591 $) . T) ((-657 #0#) |has| |#1| (-37 (-383 (-523)))) ((-657 |#1|) |has| |#1| (-158)) ((-657 $) |has| |#1| (-515)) ((-666) . T) ((-979 #0#) |has| |#1| (-37 (-383 (-523)))) ((-979 |#1|) . T) ((-979 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3053 (((-1011 (-203)) $) 8)) (-3040 (((-1011 (-203)) $) 9)) (-3027 (((-1011 (-203)) $) 10)) (-2797 (((-589 (-589 (-874 (-203)))) $) 11)) (-3976 (((-794) $) 6)))
-(((-903) (-129)) (T -903))
-((-2797 (*1 *2 *1) (-12 (-4 *1 (-903)) (-5 *2 (-589 (-589 (-874 (-203))))))) (-3027 (*1 *2 *1) (-12 (-4 *1 (-903)) (-5 *2 (-1011 (-203))))) (-3040 (*1 *2 *1) (-12 (-4 *1 (-903)) (-5 *2 (-1011 (-203))))) (-3053 (*1 *2 *1) (-12 (-4 *1 (-903)) (-5 *2 (-1011 (-203))))))
-(-13 (-563 (-794)) (-10 -8 (-15 -2797 ((-589 (-589 (-874 (-203)))) $)) (-15 -3027 ((-1011 (-203)) $)) (-15 -3040 ((-1011 (-203)) $)) (-15 -3053 ((-1011 (-203)) $))))
-(((-563 (-794)) . T))
-((-3716 (((-589 |#4|) $) 23)) (-2011 (((-108) $) 48)) (-2821 (((-108) $) 47)) (-3400 (((-2 (|:| |under| $) (|:| -1250 $) (|:| |upper| $)) $ |#4|) 36)) (-1619 (((-108) $) 49)) (-2927 (((-108) $ $) 55)) (-3685 (((-108) $ $) 58)) (-2457 (((-108) $) 53)) (-2341 (((-589 |#5|) (-589 |#5|) $) 90)) (-3450 (((-589 |#5|) (-589 |#5|) $) 87)) (-3143 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 81)) (-4100 (((-589 |#4|) $) 27)) (-2863 (((-108) |#4| $) 30)) (-1916 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 73)) (-4135 (($ $ |#4|) 33)) (-1318 (($ $ |#4|) 32)) (-2023 (($ $ |#4|) 34)) (-4037 (((-108) $ $) 40)))
-(((-904 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2821 ((-108) |#1|)) (-15 -2341 ((-589 |#5|) (-589 |#5|) |#1|)) (-15 -3450 ((-589 |#5|) (-589 |#5|) |#1|)) (-15 -3143 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -1916 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -1619 ((-108) |#1|)) (-15 -3685 ((-108) |#1| |#1|)) (-15 -2927 ((-108) |#1| |#1|)) (-15 -2457 ((-108) |#1|)) (-15 -2011 ((-108) |#1|)) (-15 -3400 ((-2 (|:| |under| |#1|) (|:| -1250 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -4135 (|#1| |#1| |#4|)) (-15 -2023 (|#1| |#1| |#4|)) (-15 -1318 (|#1| |#1| |#4|)) (-15 -2863 ((-108) |#4| |#1|)) (-15 -4100 ((-589 |#4|) |#1|)) (-15 -3716 ((-589 |#4|) |#1|)) (-15 -4037 ((-108) |#1| |#1|))) (-905 |#2| |#3| |#4| |#5|) (-973) (-732) (-786) (-987 |#2| |#3| |#4|)) (T -904))
-NIL
-(-10 -8 (-15 -2821 ((-108) |#1|)) (-15 -2341 ((-589 |#5|) (-589 |#5|) |#1|)) (-15 -3450 ((-589 |#5|) (-589 |#5|) |#1|)) (-15 -3143 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -1916 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -1619 ((-108) |#1|)) (-15 -3685 ((-108) |#1| |#1|)) (-15 -2927 ((-108) |#1| |#1|)) (-15 -2457 ((-108) |#1|)) (-15 -2011 ((-108) |#1|)) (-15 -3400 ((-2 (|:| |under| |#1|) (|:| -1250 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -4135 (|#1| |#1| |#4|)) (-15 -2023 (|#1| |#1| |#4|)) (-15 -1318 (|#1| |#1| |#4|)) (-15 -2863 ((-108) |#4| |#1|)) (-15 -4100 ((-589 |#4|) |#1|)) (-15 -3716 ((-589 |#4|) |#1|)) (-15 -4037 ((-108) |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-3716 (((-589 |#3|) $) 33)) (-2011 (((-108) $) 26)) (-2821 (((-108) $) 17 (|has| |#1| (-515)))) (-3400 (((-2 (|:| |under| $) (|:| -1250 $) (|:| |upper| $)) $ |#3|) 27)) (-2282 (((-108) $ (-710)) 44)) (-1299 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4248)))) (-1640 (($) 45 T CONST)) (-1619 (((-108) $) 22 (|has| |#1| (-515)))) (-2927 (((-108) $ $) 24 (|has| |#1| (-515)))) (-3685 (((-108) $ $) 23 (|has| |#1| (-515)))) (-2457 (((-108) $) 25 (|has| |#1| (-515)))) (-2341 (((-589 |#4|) (-589 |#4|) $) 18 (|has| |#1| (-515)))) (-3450 (((-589 |#4|) (-589 |#4|) $) 19 (|has| |#1| (-515)))) (-2898 (((-3 $ "failed") (-589 |#4|)) 36)) (-1996 (($ (-589 |#4|)) 35)) (-3917 (($ $) 68 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ |#4| $) 67 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4248)))) (-3143 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-515)))) (-1830 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4248))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4248)))) (-3133 (((-589 |#4|) $) 52 (|has| $ (-6 -4248)))) (-2694 ((|#3| $) 34)) (-1344 (((-108) $ (-710)) 43)) (-3056 (((-589 |#4|) $) 53 (|has| $ (-6 -4248)))) (-1348 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#4| |#4|) $) 47)) (-4100 (((-589 |#3|) $) 32)) (-2863 (((-108) |#3| $) 31)) (-4042 (((-108) $ (-710)) 42)) (-3841 (((-1070) $) 9)) (-1916 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-515)))) (-2435 (((-1034) $) 10)) (-2660 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-2720 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 |#4|) (-589 |#4|)) 59 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-271 |#4|)) 57 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-589 (-271 |#4|))) 56 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))) (-2391 (((-108) $ $) 38)) (-3163 (((-108) $) 41)) (-4055 (($) 40)) (-2452 (((-710) |#4| $) 54 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) (((-710) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4248)))) (-4124 (($ $) 39)) (-3077 (((-499) $) 69 (|has| |#4| (-564 (-499))))) (-3985 (($ (-589 |#4|)) 60)) (-4135 (($ $ |#3|) 28)) (-1318 (($ $ |#3|) 30)) (-2023 (($ $ |#3|) 29)) (-3976 (((-794) $) 11) (((-589 |#4|) $) 37)) (-1505 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 6)) (-1271 (((-710) $) 46 (|has| $ (-6 -4248)))))
-(((-905 |#1| |#2| |#3| |#4|) (-129) (-973) (-732) (-786) (-987 |t#1| |t#2| |t#3|)) (T -905))
-((-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *1 (-905 *3 *4 *5 *6)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *1 (-905 *3 *4 *5 *6)))) (-2694 (*1 *2 *1) (-12 (-4 *1 (-905 *3 *4 *2 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-987 *3 *4 *2)) (-4 *2 (-786)))) (-3716 (*1 *2 *1) (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-589 *5)))) (-4100 (*1 *2 *1) (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-589 *5)))) (-2863 (*1 *2 *3 *1) (-12 (-4 *1 (-905 *4 *5 *3 *6)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-786)) (-4 *6 (-987 *4 *5 *3)) (-5 *2 (-108)))) (-1318 (*1 *1 *1 *2) (-12 (-4 *1 (-905 *3 *4 *2 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *2 (-786)) (-4 *5 (-987 *3 *4 *2)))) (-2023 (*1 *1 *1 *2) (-12 (-4 *1 (-905 *3 *4 *2 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *2 (-786)) (-4 *5 (-987 *3 *4 *2)))) (-4135 (*1 *1 *1 *2) (-12 (-4 *1 (-905 *3 *4 *2 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *2 (-786)) (-4 *5 (-987 *3 *4 *2)))) (-3400 (*1 *2 *1 *3) (-12 (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-786)) (-4 *6 (-987 *4 *5 *3)) (-5 *2 (-2 (|:| |under| *1) (|:| -1250 *1) (|:| |upper| *1))) (-4 *1 (-905 *4 *5 *3 *6)))) (-2011 (*1 *2 *1) (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-108)))) (-2457 (*1 *2 *1) (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515)) (-5 *2 (-108)))) (-2927 (*1 *2 *1 *1) (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515)) (-5 *2 (-108)))) (-3685 (*1 *2 *1 *1) (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515)) (-5 *2 (-108)))) (-1619 (*1 *2 *1) (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515)) (-5 *2 (-108)))) (-1916 (*1 *2 *3 *1) (-12 (-4 *1 (-905 *4 *5 *6 *3)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-4 *4 (-515)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))) (-3143 (*1 *2 *3 *1) (-12 (-4 *1 (-905 *4 *5 *6 *3)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-4 *4 (-515)) (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))) (-3450 (*1 *2 *2 *1) (-12 (-5 *2 (-589 *6)) (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515)))) (-2341 (*1 *2 *2 *1) (-12 (-5 *2 (-589 *6)) (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515)))) (-2821 (*1 *2 *1) (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515)) (-5 *2 (-108)))))
-(-13 (-1016) (-140 |t#4|) (-563 (-589 |t#4|)) (-10 -8 (-6 -4248) (-15 -2898 ((-3 $ "failed") (-589 |t#4|))) (-15 -1996 ($ (-589 |t#4|))) (-15 -2694 (|t#3| $)) (-15 -3716 ((-589 |t#3|) $)) (-15 -4100 ((-589 |t#3|) $)) (-15 -2863 ((-108) |t#3| $)) (-15 -1318 ($ $ |t#3|)) (-15 -2023 ($ $ |t#3|)) (-15 -4135 ($ $ |t#3|)) (-15 -3400 ((-2 (|:| |under| $) (|:| -1250 $) (|:| |upper| $)) $ |t#3|)) (-15 -2011 ((-108) $)) (IF (|has| |t#1| (-515)) (PROGN (-15 -2457 ((-108) $)) (-15 -2927 ((-108) $ $)) (-15 -3685 ((-108) $ $)) (-15 -1619 ((-108) $)) (-15 -1916 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -3143 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -3450 ((-589 |t#4|) (-589 |t#4|) $)) (-15 -2341 ((-589 |t#4|) (-589 |t#4|) $)) (-15 -2821 ((-108) $))) |%noBranch|)))
-(((-33) . T) ((-97) . T) ((-563 (-589 |#4|)) . T) ((-563 (-794)) . T) ((-140 |#4|) . T) ((-564 (-499)) |has| |#4| (-564 (-499))) ((-286 |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))) ((-462 |#4|) . T) ((-484 |#4| |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))) ((-1016) . T) ((-1123) . T))
-((-3943 (((-589 |#4|) |#4| |#4|) 116)) (-2803 (((-589 |#4|) (-589 |#4|) (-108)) 105 (|has| |#1| (-427))) (((-589 |#4|) (-589 |#4|)) 106 (|has| |#1| (-427)))) (-2159 (((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 |#4|)) 35)) (-3855 (((-108) |#4|) 34)) (-1988 (((-589 |#4|) |#4|) 102 (|has| |#1| (-427)))) (-1863 (((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-1 (-108) |#4|) (-589 |#4|)) 20)) (-2880 (((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 (-1 (-108) |#4|)) (-589 |#4|)) 22)) (-3297 (((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 (-1 (-108) |#4|)) (-589 |#4|)) 23)) (-1953 (((-3 (-2 (|:| |bas| (-451 |#1| |#2| |#3| |#4|)) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|)) 73)) (-4107 (((-589 |#4|) (-589 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 85)) (-4180 (((-589 |#4|) (-589 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 109)) (-1567 (((-589 |#4|) (-589 |#4|)) 108)) (-4047 (((-589 |#4|) (-589 |#4|) (-589 |#4|) (-108)) 48) (((-589 |#4|) (-589 |#4|) (-589 |#4|)) 50)) (-2584 ((|#4| |#4| (-589 |#4|)) 49)) (-3131 (((-589 |#4|) (-589 |#4|) (-589 |#4|)) 112 (|has| |#1| (-427)))) (-2292 (((-589 |#4|) (-589 |#4|) (-589 |#4|)) 115 (|has| |#1| (-427)))) (-2634 (((-589 |#4|) (-589 |#4|) (-589 |#4|)) 114 (|has| |#1| (-427)))) (-2081 (((-589 |#4|) (-589 |#4|) (-589 |#4|) (-1 (-589 |#4|) (-589 |#4|))) 87) (((-589 |#4|) (-589 |#4|) (-589 |#4|)) 89) (((-589 |#4|) (-589 |#4|) |#4|) 119) (((-589 |#4|) |#4| |#4|) 117) (((-589 |#4|) (-589 |#4|)) 88)) (-2305 (((-589 |#4|) (-589 |#4|) (-589 |#4|)) 99 (-12 (|has| |#1| (-136)) (|has| |#1| (-284))))) (-3242 (((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 |#4|)) 41)) (-2633 (((-108) (-589 |#4|)) 62)) (-3507 (((-108) (-589 |#4|) (-589 (-589 |#4|))) 53)) (-2994 (((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 |#4|)) 29)) (-1232 (((-108) |#4|) 28)) (-3890 (((-589 |#4|) (-589 |#4|)) 98 (-12 (|has| |#1| (-136)) (|has| |#1| (-284))))) (-2562 (((-589 |#4|) (-589 |#4|)) 97 (-12 (|has| |#1| (-136)) (|has| |#1| (-284))))) (-2366 (((-589 |#4|) (-589 |#4|)) 66)) (-2008 (((-589 |#4|) (-589 |#4|)) 79)) (-1899 (((-108) (-589 |#4|) (-589 |#4|)) 51)) (-2424 (((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 |#4|)) 39)) (-1229 (((-108) |#4|) 36)))
-(((-906 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2081 ((-589 |#4|) (-589 |#4|))) (-15 -2081 ((-589 |#4|) |#4| |#4|)) (-15 -1567 ((-589 |#4|) (-589 |#4|))) (-15 -3943 ((-589 |#4|) |#4| |#4|)) (-15 -2081 ((-589 |#4|) (-589 |#4|) |#4|)) (-15 -2081 ((-589 |#4|) (-589 |#4|) (-589 |#4|))) (-15 -2081 ((-589 |#4|) (-589 |#4|) (-589 |#4|) (-1 (-589 |#4|) (-589 |#4|)))) (-15 -1899 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -3507 ((-108) (-589 |#4|) (-589 (-589 |#4|)))) (-15 -2633 ((-108) (-589 |#4|))) (-15 -1863 ((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-1 (-108) |#4|) (-589 |#4|))) (-15 -2880 ((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 (-1 (-108) |#4|)) (-589 |#4|))) (-15 -3297 ((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 (-1 (-108) |#4|)) (-589 |#4|))) (-15 -3242 ((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 |#4|))) (-15 -3855 ((-108) |#4|)) (-15 -2159 ((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 |#4|))) (-15 -1232 ((-108) |#4|)) (-15 -2994 ((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 |#4|))) (-15 -1229 ((-108) |#4|)) (-15 -2424 ((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 |#4|))) (-15 -4047 ((-589 |#4|) (-589 |#4|) (-589 |#4|))) (-15 -4047 ((-589 |#4|) (-589 |#4|) (-589 |#4|) (-108))) (-15 -2584 (|#4| |#4| (-589 |#4|))) (-15 -2366 ((-589 |#4|) (-589 |#4|))) (-15 -1953 ((-3 (-2 (|:| |bas| (-451 |#1| |#2| |#3| |#4|)) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|))) (-15 -2008 ((-589 |#4|) (-589 |#4|))) (-15 -4107 ((-589 |#4|) (-589 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -4180 ((-589 |#4|) (-589 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-427)) (PROGN (-15 -1988 ((-589 |#4|) |#4|)) (-15 -2803 ((-589 |#4|) (-589 |#4|))) (-15 -2803 ((-589 |#4|) (-589 |#4|) (-108))) (-15 -3131 ((-589 |#4|) (-589 |#4|) (-589 |#4|))) (-15 -2634 ((-589 |#4|) (-589 |#4|) (-589 |#4|))) (-15 -2292 ((-589 |#4|) (-589 |#4|) (-589 |#4|)))) |%noBranch|) (IF (|has| |#1| (-284)) (IF (|has| |#1| (-136)) (PROGN (-15 -2562 ((-589 |#4|) (-589 |#4|))) (-15 -3890 ((-589 |#4|) (-589 |#4|))) (-15 -2305 ((-589 |#4|) (-589 |#4|) (-589 |#4|)))) |%noBranch|) |%noBranch|)) (-515) (-732) (-786) (-987 |#1| |#2| |#3|)) (T -906))
-((-2305 (*1 *2 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-136)) (-4 *3 (-284)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))) (-3890 (*1 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-136)) (-4 *3 (-284)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))) (-2562 (*1 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-136)) (-4 *3 (-284)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))) (-2292 (*1 *2 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-427)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))) (-2634 (*1 *2 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-427)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))) (-3131 (*1 *2 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-427)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))) (-2803 (*1 *2 *2 *3) (-12 (-5 *2 (-589 *7)) (-5 *3 (-108)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-906 *4 *5 *6 *7)))) (-2803 (*1 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-427)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))) (-1988 (*1 *2 *3) (-12 (-4 *4 (-427)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 *3)) (-5 *1 (-906 *4 *5 *6 *3)) (-4 *3 (-987 *4 *5 *6)))) (-4180 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-589 *8)) (-5 *3 (-1 (-108) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *1 (-906 *5 *6 *7 *8)))) (-4107 (*1 *2 *2 *3 *4 *5) (-12 (-5 *2 (-589 *9)) (-5 *3 (-1 (-108) *9)) (-5 *4 (-1 (-108) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-987 *6 *7 *8)) (-4 *6 (-515)) (-4 *7 (-732)) (-4 *8 (-786)) (-5 *1 (-906 *6 *7 *8 *9)))) (-2008 (*1 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))) (-1953 (*1 *2 *3) (|partial| -12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-2 (|:| |bas| (-451 *4 *5 *6 *7)) (|:| -3346 (-589 *7)))) (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-589 *7)))) (-2366 (*1 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))) (-2584 (*1 *2 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-987 *4 *5 *6)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-906 *4 *5 *6 *2)))) (-4047 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-589 *7)) (-5 *3 (-108)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-906 *4 *5 *6 *7)))) (-4047 (*1 *2 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))) (-2424 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-589 *7)) (|:| |badPols| (-589 *7)))) (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-589 *7)))) (-1229 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-906 *4 *5 *6 *3)) (-4 *3 (-987 *4 *5 *6)))) (-2994 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-589 *7)) (|:| |badPols| (-589 *7)))) (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-589 *7)))) (-1232 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-906 *4 *5 *6 *3)) (-4 *3 (-987 *4 *5 *6)))) (-2159 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-589 *7)) (|:| |badPols| (-589 *7)))) (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-589 *7)))) (-3855 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-906 *4 *5 *6 *3)) (-4 *3 (-987 *4 *5 *6)))) (-3242 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-589 *7)) (|:| |badPols| (-589 *7)))) (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-589 *7)))) (-3297 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-1 (-108) *8))) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-2 (|:| |goodPols| (-589 *8)) (|:| |badPols| (-589 *8)))) (-5 *1 (-906 *5 *6 *7 *8)) (-5 *4 (-589 *8)))) (-2880 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-1 (-108) *8))) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-2 (|:| |goodPols| (-589 *8)) (|:| |badPols| (-589 *8)))) (-5 *1 (-906 *5 *6 *7 *8)) (-5 *4 (-589 *8)))) (-1863 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-108) *8)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-2 (|:| |goodPols| (-589 *8)) (|:| |badPols| (-589 *8)))) (-5 *1 (-906 *5 *6 *7 *8)) (-5 *4 (-589 *8)))) (-2633 (*1 *2 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-906 *4 *5 *6 *7)))) (-3507 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-589 *8))) (-5 *3 (-589 *8)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-108)) (-5 *1 (-906 *5 *6 *7 *8)))) (-1899 (*1 *2 *3 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-906 *4 *5 *6 *7)))) (-2081 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 (-589 *7) (-589 *7))) (-5 *2 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-906 *4 *5 *6 *7)))) (-2081 (*1 *2 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))) (-2081 (*1 *2 *2 *3) (-12 (-5 *2 (-589 *3)) (-4 *3 (-987 *4 *5 *6)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-906 *4 *5 *6 *3)))) (-3943 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 *3)) (-5 *1 (-906 *4 *5 *6 *3)) (-4 *3 (-987 *4 *5 *6)))) (-1567 (*1 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))) (-2081 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 *3)) (-5 *1 (-906 *4 *5 *6 *3)) (-4 *3 (-987 *4 *5 *6)))) (-2081 (*1 *2 *2) (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))))
-(-10 -7 (-15 -2081 ((-589 |#4|) (-589 |#4|))) (-15 -2081 ((-589 |#4|) |#4| |#4|)) (-15 -1567 ((-589 |#4|) (-589 |#4|))) (-15 -3943 ((-589 |#4|) |#4| |#4|)) (-15 -2081 ((-589 |#4|) (-589 |#4|) |#4|)) (-15 -2081 ((-589 |#4|) (-589 |#4|) (-589 |#4|))) (-15 -2081 ((-589 |#4|) (-589 |#4|) (-589 |#4|) (-1 (-589 |#4|) (-589 |#4|)))) (-15 -1899 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -3507 ((-108) (-589 |#4|) (-589 (-589 |#4|)))) (-15 -2633 ((-108) (-589 |#4|))) (-15 -1863 ((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-1 (-108) |#4|) (-589 |#4|))) (-15 -2880 ((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 (-1 (-108) |#4|)) (-589 |#4|))) (-15 -3297 ((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 (-1 (-108) |#4|)) (-589 |#4|))) (-15 -3242 ((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 |#4|))) (-15 -3855 ((-108) |#4|)) (-15 -2159 ((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 |#4|))) (-15 -1232 ((-108) |#4|)) (-15 -2994 ((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 |#4|))) (-15 -1229 ((-108) |#4|)) (-15 -2424 ((-2 (|:| |goodPols| (-589 |#4|)) (|:| |badPols| (-589 |#4|))) (-589 |#4|))) (-15 -4047 ((-589 |#4|) (-589 |#4|) (-589 |#4|))) (-15 -4047 ((-589 |#4|) (-589 |#4|) (-589 |#4|) (-108))) (-15 -2584 (|#4| |#4| (-589 |#4|))) (-15 -2366 ((-589 |#4|) (-589 |#4|))) (-15 -1953 ((-3 (-2 (|:| |bas| (-451 |#1| |#2| |#3| |#4|)) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|))) (-15 -2008 ((-589 |#4|) (-589 |#4|))) (-15 -4107 ((-589 |#4|) (-589 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -4180 ((-589 |#4|) (-589 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-427)) (PROGN (-15 -1988 ((-589 |#4|) |#4|)) (-15 -2803 ((-589 |#4|) (-589 |#4|))) (-15 -2803 ((-589 |#4|) (-589 |#4|) (-108))) (-15 -3131 ((-589 |#4|) (-589 |#4|) (-589 |#4|))) (-15 -2634 ((-589 |#4|) (-589 |#4|) (-589 |#4|))) (-15 -2292 ((-589 |#4|) (-589 |#4|) (-589 |#4|)))) |%noBranch|) (IF (|has| |#1| (-284)) (IF (|has| |#1| (-136)) (PROGN (-15 -2562 ((-589 |#4|) (-589 |#4|))) (-15 -3890 ((-589 |#4|) (-589 |#4|))) (-15 -2305 ((-589 |#4|) (-589 |#4|) (-589 |#4|)))) |%noBranch|) |%noBranch|))
-((-2485 (((-2 (|:| R (-629 |#1|)) (|:| A (-629 |#1|)) (|:| |Ainv| (-629 |#1|))) (-629 |#1|) (-94 |#1|) (-1 |#1| |#1|)) 19)) (-1645 (((-589 (-2 (|:| C (-629 |#1|)) (|:| |g| (-1169 |#1|)))) (-629 |#1|) (-1169 |#1|)) 36)) (-4054 (((-629 |#1|) (-629 |#1|) (-629 |#1|) (-94 |#1|) (-1 |#1| |#1|)) 16)))
-(((-907 |#1|) (-10 -7 (-15 -2485 ((-2 (|:| R (-629 |#1|)) (|:| A (-629 |#1|)) (|:| |Ainv| (-629 |#1|))) (-629 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -4054 ((-629 |#1|) (-629 |#1|) (-629 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -1645 ((-589 (-2 (|:| C (-629 |#1|)) (|:| |g| (-1169 |#1|)))) (-629 |#1|) (-1169 |#1|)))) (-339)) (T -907))
-((-1645 (*1 *2 *3 *4) (-12 (-4 *5 (-339)) (-5 *2 (-589 (-2 (|:| C (-629 *5)) (|:| |g| (-1169 *5))))) (-5 *1 (-907 *5)) (-5 *3 (-629 *5)) (-5 *4 (-1169 *5)))) (-4054 (*1 *2 *2 *2 *3 *4) (-12 (-5 *2 (-629 *5)) (-5 *3 (-94 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-339)) (-5 *1 (-907 *5)))) (-2485 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-94 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-339)) (-5 *2 (-2 (|:| R (-629 *6)) (|:| A (-629 *6)) (|:| |Ainv| (-629 *6)))) (-5 *1 (-907 *6)) (-5 *3 (-629 *6)))))
-(-10 -7 (-15 -2485 ((-2 (|:| R (-629 |#1|)) (|:| A (-629 |#1|)) (|:| |Ainv| (-629 |#1|))) (-629 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -4054 ((-629 |#1|) (-629 |#1|) (-629 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -1645 ((-589 (-2 (|:| C (-629 |#1|)) (|:| |g| (-1169 |#1|)))) (-629 |#1|) (-1169 |#1|))))
-((-2105 (((-394 |#4|) |#4|) 48)))
-(((-908 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2105 ((-394 |#4|) |#4|))) (-786) (-732) (-427) (-880 |#3| |#2| |#1|)) (T -908))
-((-2105 (*1 *2 *3) (-12 (-4 *4 (-786)) (-4 *5 (-732)) (-4 *6 (-427)) (-5 *2 (-394 *3)) (-5 *1 (-908 *4 *5 *6 *3)) (-4 *3 (-880 *6 *5 *4)))))
-(-10 -7 (-15 -2105 ((-394 |#4|) |#4|)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2448 (($ (-710)) 112 (|has| |#1| (-23)))) (-1666 (((-1174) $ (-523) (-523)) 40 (|has| $ (-6 -4249)))) (-4159 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-786)))) (-2361 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4249))) (($ $) 88 (-12 (|has| |#1| (-786)) (|has| $ (-6 -4249))))) (-3400 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-786)))) (-2282 (((-108) $ (-710)) 8)) (-4101 ((|#1| $ (-523) |#1|) 52 (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) 58 (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4248)))) (-1640 (($) 7 T CONST)) (-4091 (($ $) 90 (|has| $ (-6 -4249)))) (-4082 (($ $) 100)) (-3917 (($ $) 78 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ |#1| $) 77 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4248)))) (-3073 ((|#1| $ (-523) |#1|) 53 (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) 51)) (-1894 (((-523) (-1 (-108) |#1|) $) 97) (((-523) |#1| $) 96 (|has| |#1| (-1016))) (((-523) |#1| $ (-523)) 95 (|has| |#1| (-1016)))) (-3195 (($ (-589 |#1|)) 118)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-3677 (((-629 |#1|) $ $) 105 (|has| |#1| (-973)))) (-2348 (($ (-710) |#1|) 69)) (-1344 (((-108) $ (-710)) 9)) (-1798 (((-523) $) 43 (|has| (-523) (-786)))) (-3268 (($ $ $) 87 (|has| |#1| (-786)))) (-3123 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-786)))) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2133 (((-523) $) 44 (|has| (-523) (-786)))) (-2644 (($ $ $) 86 (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2581 ((|#1| $) 102 (-12 (|has| |#1| (-973)) (|has| |#1| (-930))))) (-4042 (((-108) $ (-710)) 10)) (-3229 ((|#1| $) 103 (-12 (|has| |#1| (-973)) (|has| |#1| (-930))))) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-3334 (($ |#1| $ (-523)) 60) (($ $ $ (-523)) 59)) (-2909 (((-589 (-523)) $) 46)) (-2290 (((-108) (-523) $) 47)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-3879 ((|#1| $) 42 (|has| (-523) (-786)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-2408 (($ $ |#1|) 41 (|has| $ (-6 -4249)))) (-1361 (($ $ (-589 |#1|)) 115)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-1410 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) 48)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ (-523) |#1|) 50) ((|#1| $ (-523)) 49) (($ $ (-1136 (-523))) 63)) (-1879 ((|#1| $ $) 106 (|has| |#1| (-973)))) (-4012 (((-852) $) 117)) (-3725 (($ $ (-523)) 62) (($ $ (-1136 (-523))) 61)) (-1707 (($ $ $) 104)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2580 (($ $ $ (-523)) 91 (|has| $ (-6 -4249)))) (-4124 (($ $) 13)) (-3077 (((-499) $) 79 (|has| |#1| (-564 (-499)))) (($ (-589 |#1|)) 116)) (-3985 (($ (-589 |#1|)) 70)) (-2785 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-589 $)) 65)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) 84 (|has| |#1| (-786)))) (-4061 (((-108) $ $) 83 (|has| |#1| (-786)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-4070 (((-108) $ $) 85 (|has| |#1| (-786)))) (-4052 (((-108) $ $) 82 (|has| |#1| (-786)))) (-4115 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-4103 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-523) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-666))) (($ $ |#1|) 107 (|has| |#1| (-666)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-909 |#1|) (-129) (-973)) (T -909))
-((-3195 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-973)) (-4 *1 (-909 *3)))) (-4012 (*1 *2 *1) (-12 (-4 *1 (-909 *3)) (-4 *3 (-973)) (-5 *2 (-852)))) (-3077 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-973)) (-4 *1 (-909 *3)))) (-1707 (*1 *1 *1 *1) (-12 (-4 *1 (-909 *2)) (-4 *2 (-973)))) (-1361 (*1 *1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *1 (-909 *3)) (-4 *3 (-973)))))
-(-13 (-1167 |t#1|) (-10 -8 (-15 -3195 ($ (-589 |t#1|))) (-15 -4012 ((-852) $)) (-15 -3077 ($ (-589 |t#1|))) (-15 -1707 ($ $ $)) (-15 -1361 ($ $ (-589 |t#1|)))))
-(((-33) . T) ((-97) -3255 (|has| |#1| (-1016)) (|has| |#1| (-786))) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-786)) (|has| |#1| (-563 (-794)))) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-263 #0=(-523) |#1|) . T) ((-265 #0# |#1|) . T) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-349 |#1|) . T) ((-462 |#1|) . T) ((-556 #0# |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-594 |#1|) . T) ((-19 |#1|) . T) ((-786) |has| |#1| (-786)) ((-1016) -3255 (|has| |#1| (-1016)) (|has| |#1| (-786))) ((-1123) . T) ((-1167 |#1|) . T))
-((-3015 (((-874 |#2|) (-1 |#2| |#1|) (-874 |#1|)) 17)))
-(((-910 |#1| |#2|) (-10 -7 (-15 -3015 ((-874 |#2|) (-1 |#2| |#1|) (-874 |#1|)))) (-973) (-973)) (T -910))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-874 *5)) (-4 *5 (-973)) (-4 *6 (-973)) (-5 *2 (-874 *6)) (-5 *1 (-910 *5 *6)))))
-(-10 -7 (-15 -3015 ((-874 |#2|) (-1 |#2| |#1|) (-874 |#1|))))
-((-4184 ((|#1| (-874 |#1|)) 13)) (-1543 ((|#1| (-874 |#1|)) 12)) (-1857 ((|#1| (-874 |#1|)) 11)) (-4097 ((|#1| (-874 |#1|)) 15)) (-4063 ((|#1| (-874 |#1|)) 21)) (-2365 ((|#1| (-874 |#1|)) 14)) (-3772 ((|#1| (-874 |#1|)) 16)) (-3578 ((|#1| (-874 |#1|)) 20)) (-3026 ((|#1| (-874 |#1|)) 19)))
-(((-911 |#1|) (-10 -7 (-15 -1857 (|#1| (-874 |#1|))) (-15 -1543 (|#1| (-874 |#1|))) (-15 -4184 (|#1| (-874 |#1|))) (-15 -2365 (|#1| (-874 |#1|))) (-15 -4097 (|#1| (-874 |#1|))) (-15 -3772 (|#1| (-874 |#1|))) (-15 -3026 (|#1| (-874 |#1|))) (-15 -3578 (|#1| (-874 |#1|))) (-15 -4063 (|#1| (-874 |#1|)))) (-973)) (T -911))
-((-4063 (*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))) (-3578 (*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))) (-3026 (*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))) (-3772 (*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))) (-4097 (*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))) (-2365 (*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))) (-4184 (*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))) (-1543 (*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))) (-1857 (*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))))
-(-10 -7 (-15 -1857 (|#1| (-874 |#1|))) (-15 -1543 (|#1| (-874 |#1|))) (-15 -4184 (|#1| (-874 |#1|))) (-15 -2365 (|#1| (-874 |#1|))) (-15 -4097 (|#1| (-874 |#1|))) (-15 -3772 (|#1| (-874 |#1|))) (-15 -3026 (|#1| (-874 |#1|))) (-15 -3578 (|#1| (-874 |#1|))) (-15 -4063 (|#1| (-874 |#1|))))
-((-4130 (((-3 |#1| "failed") |#1|) 18)) (-1257 (((-3 |#1| "failed") |#1|) 6)) (-1355 (((-3 |#1| "failed") |#1|) 16)) (-2613 (((-3 |#1| "failed") |#1|) 4)) (-2650 (((-3 |#1| "failed") |#1|) 20)) (-1337 (((-3 |#1| "failed") |#1|) 8)) (-1315 (((-3 |#1| "failed") |#1| (-710)) 1)) (-2014 (((-3 |#1| "failed") |#1|) 3)) (-1371 (((-3 |#1| "failed") |#1|) 2)) (-3373 (((-3 |#1| "failed") |#1|) 21)) (-4113 (((-3 |#1| "failed") |#1|) 9)) (-3233 (((-3 |#1| "failed") |#1|) 19)) (-1738 (((-3 |#1| "failed") |#1|) 7)) (-3435 (((-3 |#1| "failed") |#1|) 17)) (-2620 (((-3 |#1| "failed") |#1|) 5)) (-2187 (((-3 |#1| "failed") |#1|) 24)) (-3197 (((-3 |#1| "failed") |#1|) 12)) (-3447 (((-3 |#1| "failed") |#1|) 22)) (-2075 (((-3 |#1| "failed") |#1|) 10)) (-1648 (((-3 |#1| "failed") |#1|) 26)) (-2866 (((-3 |#1| "failed") |#1|) 14)) (-2139 (((-3 |#1| "failed") |#1|) 27)) (-3258 (((-3 |#1| "failed") |#1|) 15)) (-2454 (((-3 |#1| "failed") |#1|) 25)) (-3371 (((-3 |#1| "failed") |#1|) 13)) (-1680 (((-3 |#1| "failed") |#1|) 23)) (-1385 (((-3 |#1| "failed") |#1|) 11)))
-(((-912 |#1|) (-129) (-1109)) (T -912))
-((-2139 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-1648 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-2454 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-2187 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-1680 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-3447 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-3373 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-2650 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-3233 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-4130 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-3435 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-1355 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-3258 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-2866 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-3371 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-3197 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-1385 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-2075 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-4113 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-1337 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-1738 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-1257 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-2620 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-2613 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-2014 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-1371 (*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))) (-1315 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-710)) (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(-13 (-10 -7 (-15 -1315 ((-3 |t#1| "failed") |t#1| (-710))) (-15 -1371 ((-3 |t#1| "failed") |t#1|)) (-15 -2014 ((-3 |t#1| "failed") |t#1|)) (-15 -2613 ((-3 |t#1| "failed") |t#1|)) (-15 -2620 ((-3 |t#1| "failed") |t#1|)) (-15 -1257 ((-3 |t#1| "failed") |t#1|)) (-15 -1738 ((-3 |t#1| "failed") |t#1|)) (-15 -1337 ((-3 |t#1| "failed") |t#1|)) (-15 -4113 ((-3 |t#1| "failed") |t#1|)) (-15 -2075 ((-3 |t#1| "failed") |t#1|)) (-15 -1385 ((-3 |t#1| "failed") |t#1|)) (-15 -3197 ((-3 |t#1| "failed") |t#1|)) (-15 -3371 ((-3 |t#1| "failed") |t#1|)) (-15 -2866 ((-3 |t#1| "failed") |t#1|)) (-15 -3258 ((-3 |t#1| "failed") |t#1|)) (-15 -1355 ((-3 |t#1| "failed") |t#1|)) (-15 -3435 ((-3 |t#1| "failed") |t#1|)) (-15 -4130 ((-3 |t#1| "failed") |t#1|)) (-15 -3233 ((-3 |t#1| "failed") |t#1|)) (-15 -2650 ((-3 |t#1| "failed") |t#1|)) (-15 -3373 ((-3 |t#1| "failed") |t#1|)) (-15 -3447 ((-3 |t#1| "failed") |t#1|)) (-15 -1680 ((-3 |t#1| "failed") |t#1|)) (-15 -2187 ((-3 |t#1| "failed") |t#1|)) (-15 -2454 ((-3 |t#1| "failed") |t#1|)) (-15 -1648 ((-3 |t#1| "failed") |t#1|)) (-15 -2139 ((-3 |t#1| "failed") |t#1|))))
-((-3802 ((|#4| |#4| (-589 |#3|)) 56) ((|#4| |#4| |#3|) 55)) (-1923 ((|#4| |#4| (-589 |#3|)) 23) ((|#4| |#4| |#3|) 19)) (-3015 ((|#4| (-1 |#4| (-883 |#1|)) |#4|) 30)))
-(((-913 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1923 (|#4| |#4| |#3|)) (-15 -1923 (|#4| |#4| (-589 |#3|))) (-15 -3802 (|#4| |#4| |#3|)) (-15 -3802 (|#4| |#4| (-589 |#3|))) (-15 -3015 (|#4| (-1 |#4| (-883 |#1|)) |#4|))) (-973) (-732) (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $)) (-15 -2354 ((-3 $ "failed") (-1087))))) (-880 (-883 |#1|) |#2| |#3|)) (T -913))
-((-3015 (*1 *2 *3 *2) (-12 (-5 *3 (-1 *2 (-883 *4))) (-4 *4 (-973)) (-4 *2 (-880 (-883 *4) *5 *6)) (-4 *5 (-732)) (-4 *6 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $)) (-15 -2354 ((-3 $ "failed") (-1087)))))) (-5 *1 (-913 *4 *5 *6 *2)))) (-3802 (*1 *2 *2 *3) (-12 (-5 *3 (-589 *6)) (-4 *6 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $)) (-15 -2354 ((-3 $ "failed") (-1087)))))) (-4 *4 (-973)) (-4 *5 (-732)) (-5 *1 (-913 *4 *5 *6 *2)) (-4 *2 (-880 (-883 *4) *5 *6)))) (-3802 (*1 *2 *2 *3) (-12 (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $)) (-15 -2354 ((-3 $ "failed") (-1087)))))) (-5 *1 (-913 *4 *5 *3 *2)) (-4 *2 (-880 (-883 *4) *5 *3)))) (-1923 (*1 *2 *2 *3) (-12 (-5 *3 (-589 *6)) (-4 *6 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $)) (-15 -2354 ((-3 $ "failed") (-1087)))))) (-4 *4 (-973)) (-4 *5 (-732)) (-5 *1 (-913 *4 *5 *6 *2)) (-4 *2 (-880 (-883 *4) *5 *6)))) (-1923 (*1 *2 *2 *3) (-12 (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $)) (-15 -2354 ((-3 $ "failed") (-1087)))))) (-5 *1 (-913 *4 *5 *3 *2)) (-4 *2 (-880 (-883 *4) *5 *3)))))
-(-10 -7 (-15 -1923 (|#4| |#4| |#3|)) (-15 -1923 (|#4| |#4| (-589 |#3|))) (-15 -3802 (|#4| |#4| |#3|)) (-15 -3802 (|#4| |#4| (-589 |#3|))) (-15 -3015 (|#4| (-1 |#4| (-883 |#1|)) |#4|)))
-((-3316 ((|#2| |#3|) 35)) (-3329 (((-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))) |#2|) 73)) (-3835 (((-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|)))) 89)))
-(((-914 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3835 ((-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))))) (-15 -3329 ((-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))) |#2|)) (-15 -3316 (|#2| |#3|))) (-325) (-1145 |#1|) (-1145 |#2|) (-664 |#2| |#3|)) (T -914))
-((-3316 (*1 *2 *3) (-12 (-4 *3 (-1145 *2)) (-4 *2 (-1145 *4)) (-5 *1 (-914 *4 *2 *3 *5)) (-4 *4 (-325)) (-4 *5 (-664 *2 *3)))) (-3329 (*1 *2 *3) (-12 (-4 *4 (-325)) (-4 *3 (-1145 *4)) (-4 *5 (-1145 *3)) (-5 *2 (-2 (|:| -2922 (-629 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-629 *3)))) (-5 *1 (-914 *4 *3 *5 *6)) (-4 *6 (-664 *3 *5)))) (-3835 (*1 *2) (-12 (-4 *3 (-325)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 *4)) (-5 *2 (-2 (|:| -2922 (-629 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-629 *4)))) (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-664 *4 *5)))))
-(-10 -7 (-15 -3835 ((-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))))) (-15 -3329 ((-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))) |#2|)) (-15 -3316 (|#2| |#3|)))
-((-4156 (((-916 (-383 (-523)) (-796 |#1|) (-218 |#2| (-710)) (-225 |#1| (-383 (-523)))) (-916 (-383 (-523)) (-796 |#1|) (-218 |#2| (-710)) (-225 |#1| (-383 (-523))))) 69)))
-(((-915 |#1| |#2|) (-10 -7 (-15 -4156 ((-916 (-383 (-523)) (-796 |#1|) (-218 |#2| (-710)) (-225 |#1| (-383 (-523)))) (-916 (-383 (-523)) (-796 |#1|) (-218 |#2| (-710)) (-225 |#1| (-383 (-523))))))) (-589 (-1087)) (-710)) (T -915))
-((-4156 (*1 *2 *2) (-12 (-5 *2 (-916 (-383 (-523)) (-796 *3) (-218 *4 (-710)) (-225 *3 (-383 (-523))))) (-14 *3 (-589 (-1087))) (-14 *4 (-710)) (-5 *1 (-915 *3 *4)))))
-(-10 -7 (-15 -4156 ((-916 (-383 (-523)) (-796 |#1|) (-218 |#2| (-710)) (-225 |#1| (-383 (-523)))) (-916 (-383 (-523)) (-796 |#1|) (-218 |#2| (-710)) (-225 |#1| (-383 (-523)))))))
-((-3260 (((-108) $ $) NIL)) (-4188 (((-3 (-108) "failed") $) 69)) (-1804 (($ $) 36 (-12 (|has| |#1| (-136)) (|has| |#1| (-284))))) (-1685 (($ $ (-3 (-108) "failed")) 70)) (-3153 (($ (-589 |#4|) |#4|) 25)) (-3841 (((-1070) $) NIL)) (-3386 (($ $) 67)) (-2435 (((-1034) $) NIL)) (-3163 (((-108) $) 68)) (-4055 (($) 30)) (-2447 ((|#4| $) 72)) (-3977 (((-589 |#4|) $) 71)) (-3976 (((-794) $) 66)) (-4037 (((-108) $ $) NIL)))
-(((-916 |#1| |#2| |#3| |#4|) (-13 (-1016) (-563 (-794)) (-10 -8 (-15 -4055 ($)) (-15 -3153 ($ (-589 |#4|) |#4|)) (-15 -4188 ((-3 (-108) "failed") $)) (-15 -1685 ($ $ (-3 (-108) "failed"))) (-15 -3163 ((-108) $)) (-15 -3977 ((-589 |#4|) $)) (-15 -2447 (|#4| $)) (-15 -3386 ($ $)) (IF (|has| |#1| (-284)) (IF (|has| |#1| (-136)) (-15 -1804 ($ $)) |%noBranch|) |%noBranch|))) (-427) (-786) (-732) (-880 |#1| |#3| |#2|)) (T -916))
-((-4055 (*1 *1) (-12 (-4 *2 (-427)) (-4 *3 (-786)) (-4 *4 (-732)) (-5 *1 (-916 *2 *3 *4 *5)) (-4 *5 (-880 *2 *4 *3)))) (-3153 (*1 *1 *2 *3) (-12 (-5 *2 (-589 *3)) (-4 *3 (-880 *4 *6 *5)) (-4 *4 (-427)) (-4 *5 (-786)) (-4 *6 (-732)) (-5 *1 (-916 *4 *5 *6 *3)))) (-4188 (*1 *2 *1) (|partial| -12 (-4 *3 (-427)) (-4 *4 (-786)) (-4 *5 (-732)) (-5 *2 (-108)) (-5 *1 (-916 *3 *4 *5 *6)) (-4 *6 (-880 *3 *5 *4)))) (-1685 (*1 *1 *1 *2) (-12 (-5 *2 (-3 (-108) "failed")) (-4 *3 (-427)) (-4 *4 (-786)) (-4 *5 (-732)) (-5 *1 (-916 *3 *4 *5 *6)) (-4 *6 (-880 *3 *5 *4)))) (-3163 (*1 *2 *1) (-12 (-4 *3 (-427)) (-4 *4 (-786)) (-4 *5 (-732)) (-5 *2 (-108)) (-5 *1 (-916 *3 *4 *5 *6)) (-4 *6 (-880 *3 *5 *4)))) (-3977 (*1 *2 *1) (-12 (-4 *3 (-427)) (-4 *4 (-786)) (-4 *5 (-732)) (-5 *2 (-589 *6)) (-5 *1 (-916 *3 *4 *5 *6)) (-4 *6 (-880 *3 *5 *4)))) (-2447 (*1 *2 *1) (-12 (-4 *2 (-880 *3 *5 *4)) (-5 *1 (-916 *3 *4 *5 *2)) (-4 *3 (-427)) (-4 *4 (-786)) (-4 *5 (-732)))) (-3386 (*1 *1 *1) (-12 (-4 *2 (-427)) (-4 *3 (-786)) (-4 *4 (-732)) (-5 *1 (-916 *2 *3 *4 *5)) (-4 *5 (-880 *2 *4 *3)))) (-1804 (*1 *1 *1) (-12 (-4 *2 (-136)) (-4 *2 (-284)) (-4 *2 (-427)) (-4 *3 (-786)) (-4 *4 (-732)) (-5 *1 (-916 *2 *3 *4 *5)) (-4 *5 (-880 *2 *4 *3)))))
-(-13 (-1016) (-563 (-794)) (-10 -8 (-15 -4055 ($)) (-15 -3153 ($ (-589 |#4|) |#4|)) (-15 -4188 ((-3 (-108) "failed") $)) (-15 -1685 ($ $ (-3 (-108) "failed"))) (-15 -3163 ((-108) $)) (-15 -3977 ((-589 |#4|) $)) (-15 -2447 (|#4| $)) (-15 -3386 ($ $)) (IF (|has| |#1| (-284)) (IF (|has| |#1| (-136)) (-15 -1804 ($ $)) |%noBranch|) |%noBranch|)))
-((-1387 (((-108) |#5| |#5|) 38)) (-1837 (((-108) |#5| |#5|) 52)) (-3445 (((-108) |#5| (-589 |#5|)) 74) (((-108) |#5| |#5|) 61)) (-3093 (((-108) (-589 |#4|) (-589 |#4|)) 58)) (-3983 (((-108) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) 63)) (-3324 (((-1174)) 33)) (-2992 (((-1174) (-1070) (-1070) (-1070)) 29)) (-3350 (((-589 |#5|) (-589 |#5|)) 81)) (-3254 (((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)))) 79)) (-3141 (((-589 (-2 (|:| -1747 (-589 |#4|)) (|:| -2394 |#5|) (|:| |ineq| (-589 |#4|)))) (-589 |#4|) (-589 |#5|) (-108) (-108)) 101)) (-3859 (((-108) |#5| |#5|) 47)) (-1422 (((-3 (-108) "failed") |#5| |#5|) 71)) (-1661 (((-108) (-589 |#4|) (-589 |#4|)) 57)) (-2687 (((-108) (-589 |#4|) (-589 |#4|)) 59)) (-1454 (((-108) (-589 |#4|) (-589 |#4|)) 60)) (-1436 (((-3 (-2 (|:| -1747 (-589 |#4|)) (|:| -2394 |#5|) (|:| |ineq| (-589 |#4|))) "failed") (-589 |#4|) |#5| (-589 |#4|) (-108) (-108) (-108) (-108) (-108)) 97)) (-1636 (((-589 |#5|) (-589 |#5|)) 43)))
-(((-917 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2992 ((-1174) (-1070) (-1070) (-1070))) (-15 -3324 ((-1174))) (-15 -1387 ((-108) |#5| |#5|)) (-15 -1636 ((-589 |#5|) (-589 |#5|))) (-15 -3859 ((-108) |#5| |#5|)) (-15 -1837 ((-108) |#5| |#5|)) (-15 -3093 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -1661 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -2687 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -1454 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -1422 ((-3 (-108) "failed") |#5| |#5|)) (-15 -3445 ((-108) |#5| |#5|)) (-15 -3445 ((-108) |#5| (-589 |#5|))) (-15 -3350 ((-589 |#5|) (-589 |#5|))) (-15 -3983 ((-108) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)))) (-15 -3254 ((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) (-15 -3141 ((-589 (-2 (|:| -1747 (-589 |#4|)) (|:| -2394 |#5|) (|:| |ineq| (-589 |#4|)))) (-589 |#4|) (-589 |#5|) (-108) (-108))) (-15 -1436 ((-3 (-2 (|:| -1747 (-589 |#4|)) (|:| -2394 |#5|) (|:| |ineq| (-589 |#4|))) "failed") (-589 |#4|) |#5| (-589 |#4|) (-108) (-108) (-108) (-108) (-108)))) (-427) (-732) (-786) (-987 |#1| |#2| |#3|) (-992 |#1| |#2| |#3| |#4|)) (T -917))
-((-1436 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-108)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *9 (-987 *6 *7 *8)) (-5 *2 (-2 (|:| -1747 (-589 *9)) (|:| -2394 *4) (|:| |ineq| (-589 *9)))) (-5 *1 (-917 *6 *7 *8 *9 *4)) (-5 *3 (-589 *9)) (-4 *4 (-992 *6 *7 *8 *9)))) (-3141 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-589 *10)) (-5 *5 (-108)) (-4 *10 (-992 *6 *7 *8 *9)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *9 (-987 *6 *7 *8)) (-5 *2 (-589 (-2 (|:| -1747 (-589 *9)) (|:| -2394 *10) (|:| |ineq| (-589 *9))))) (-5 *1 (-917 *6 *7 *8 *9 *10)) (-5 *3 (-589 *9)))) (-3254 (*1 *2 *2) (-12 (-5 *2 (-589 (-2 (|:| |val| (-589 *6)) (|:| -2394 *7)))) (-4 *6 (-987 *3 *4 *5)) (-4 *7 (-992 *3 *4 *5 *6)) (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-917 *3 *4 *5 *6 *7)))) (-3983 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-589 *7)) (|:| -2394 *8))) (-4 *7 (-987 *4 *5 *6)) (-4 *8 (-992 *4 *5 *6 *7)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-917 *4 *5 *6 *7 *8)))) (-3350 (*1 *2 *2) (-12 (-5 *2 (-589 *7)) (-4 *7 (-992 *3 *4 *5 *6)) (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *1 (-917 *3 *4 *5 *6 *7)))) (-3445 (*1 *2 *3 *4) (-12 (-5 *4 (-589 *3)) (-4 *3 (-992 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-987 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-917 *5 *6 *7 *8 *3)))) (-3445 (*1 *2 *3 *3) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-917 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7)))) (-1422 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-917 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7)))) (-1454 (*1 *2 *3 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-917 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))) (-2687 (*1 *2 *3 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-917 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))) (-1661 (*1 *2 *3 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-917 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))) (-3093 (*1 *2 *3 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-917 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))) (-1837 (*1 *2 *3 *3) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-917 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7)))) (-3859 (*1 *2 *3 *3) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-917 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7)))) (-1636 (*1 *2 *2) (-12 (-5 *2 (-589 *7)) (-4 *7 (-992 *3 *4 *5 *6)) (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *1 (-917 *3 *4 *5 *6 *7)))) (-1387 (*1 *2 *3 *3) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-917 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7)))) (-3324 (*1 *2) (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-1174)) (-5 *1 (-917 *3 *4 *5 *6 *7)) (-4 *7 (-992 *3 *4 *5 *6)))) (-2992 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1070)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-1174)) (-5 *1 (-917 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2992 ((-1174) (-1070) (-1070) (-1070))) (-15 -3324 ((-1174))) (-15 -1387 ((-108) |#5| |#5|)) (-15 -1636 ((-589 |#5|) (-589 |#5|))) (-15 -3859 ((-108) |#5| |#5|)) (-15 -1837 ((-108) |#5| |#5|)) (-15 -3093 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -1661 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -2687 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -1454 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -1422 ((-3 (-108) "failed") |#5| |#5|)) (-15 -3445 ((-108) |#5| |#5|)) (-15 -3445 ((-108) |#5| (-589 |#5|))) (-15 -3350 ((-589 |#5|) (-589 |#5|))) (-15 -3983 ((-108) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)))) (-15 -3254 ((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) (-15 -3141 ((-589 (-2 (|:| -1747 (-589 |#4|)) (|:| -2394 |#5|) (|:| |ineq| (-589 |#4|)))) (-589 |#4|) (-589 |#5|) (-108) (-108))) (-15 -1436 ((-3 (-2 (|:| -1747 (-589 |#4|)) (|:| -2394 |#5|) (|:| |ineq| (-589 |#4|))) "failed") (-589 |#4|) |#5| (-589 |#4|) (-108) (-108) (-108) (-108) (-108))))
-((-2354 (((-1087) $) 15)) (-2058 (((-1070) $) 16)) (-3282 (($ (-1087) (-1070)) 14)) (-3976 (((-794) $) 13)))
-(((-918) (-13 (-563 (-794)) (-10 -8 (-15 -3282 ($ (-1087) (-1070))) (-15 -2354 ((-1087) $)) (-15 -2058 ((-1070) $))))) (T -918))
-((-3282 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1070)) (-5 *1 (-918)))) (-2354 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-918)))) (-2058 (*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-918)))))
-(-13 (-563 (-794)) (-10 -8 (-15 -3282 ($ (-1087) (-1070))) (-15 -2354 ((-1087) $)) (-15 -2058 ((-1070) $))))
-((-3015 ((|#4| (-1 |#2| |#1|) |#3|) 14)))
-(((-919 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3015 (|#4| (-1 |#2| |#1|) |#3|))) (-515) (-515) (-921 |#1|) (-921 |#2|)) (T -919))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-515)) (-4 *6 (-515)) (-4 *2 (-921 *6)) (-5 *1 (-919 *5 *6 *4 *2)) (-4 *4 (-921 *5)))))
-(-10 -7 (-15 -3015 (|#4| (-1 |#2| |#1|) |#3|)))
-((-2898 (((-3 |#2| "failed") $) NIL) (((-3 (-1087) "failed") $) 65) (((-3 (-383 (-523)) "failed") $) NIL) (((-3 (-523) "failed") $) 95)) (-1996 ((|#2| $) NIL) (((-1087) $) 60) (((-383 (-523)) $) NIL) (((-523) $) 92)) (-2203 (((-629 (-523)) (-629 $)) NIL) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) 112) (((-629 |#2|) (-629 $)) 28)) (-3461 (($) 98)) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 75) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 84)) (-2364 (($ $) 10)) (-1289 (((-3 $ "failed") $) 20)) (-3015 (($ (-1 |#2| |#2|) $) 22)) (-4105 (($) 16)) (-3934 (($ $) 54)) (-4024 (($ $) NIL) (($ $ (-710)) NIL) (($ $ (-1087)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL) (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-1 |#2| |#2|)) 36)) (-3758 (($ $) 12)) (-3077 (((-823 (-523)) $) 70) (((-823 (-355)) $) 79) (((-499) $) 40) (((-355) $) 44) (((-203) $) 47)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) 90) (($ |#2|) NIL) (($ (-1087)) 57)) (-1698 (((-710)) 31)) (-4052 (((-108) $ $) 50)))
-(((-920 |#1| |#2|) (-10 -8 (-15 -4052 ((-108) |#1| |#1|)) (-15 -4105 (|#1|)) (-15 -1289 ((-3 |#1| "failed") |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -3077 ((-203) |#1|)) (-15 -3077 ((-355) |#1|)) (-15 -3077 ((-499) |#1|)) (-15 -1996 ((-1087) |#1|)) (-15 -2898 ((-3 (-1087) "failed") |#1|)) (-15 -3976 (|#1| (-1087))) (-15 -3461 (|#1|)) (-15 -3934 (|#1| |#1|)) (-15 -3758 (|#1| |#1|)) (-15 -2364 (|#1| |#1|)) (-15 -2483 ((-820 (-355) |#1|) |#1| (-823 (-355)) (-820 (-355) |#1|))) (-15 -2483 ((-820 (-523) |#1|) |#1| (-823 (-523)) (-820 (-523) |#1|))) (-15 -3077 ((-823 (-355)) |#1|)) (-15 -3077 ((-823 (-523)) |#1|)) (-15 -2203 ((-629 |#2|) (-629 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-629 (-523)) (-629 |#1|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -3976 (|#1| |#2|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -3976 (|#1| |#1|)) (-15 -3976 (|#1| (-523))) (-15 -1698 ((-710))) (-15 -3976 ((-794) |#1|))) (-921 |#2|) (-515)) (T -920))
-((-1698 (*1 *2) (-12 (-4 *4 (-515)) (-5 *2 (-710)) (-5 *1 (-920 *3 *4)) (-4 *3 (-921 *4)))))
-(-10 -8 (-15 -4052 ((-108) |#1| |#1|)) (-15 -4105 (|#1|)) (-15 -1289 ((-3 |#1| "failed") |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -3077 ((-203) |#1|)) (-15 -3077 ((-355) |#1|)) (-15 -3077 ((-499) |#1|)) (-15 -1996 ((-1087) |#1|)) (-15 -2898 ((-3 (-1087) "failed") |#1|)) (-15 -3976 (|#1| (-1087))) (-15 -3461 (|#1|)) (-15 -3934 (|#1| |#1|)) (-15 -3758 (|#1| |#1|)) (-15 -2364 (|#1| |#1|)) (-15 -2483 ((-820 (-355) |#1|) |#1| (-823 (-355)) (-820 (-355) |#1|))) (-15 -2483 ((-820 (-523) |#1|) |#1| (-823 (-523)) (-820 (-523) |#1|))) (-15 -3077 ((-823 (-355)) |#1|)) (-15 -3077 ((-823 (-523)) |#1|)) (-15 -2203 ((-629 |#2|) (-629 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-629 (-523)) (-629 |#1|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -3976 (|#1| |#2|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -3976 (|#1| |#1|)) (-15 -3976 (|#1| (-523))) (-15 -1698 ((-710))) (-15 -3976 ((-794) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3964 ((|#1| $) 139 (|has| |#1| (-284)))) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-2999 (((-3 $ "failed") $ $) 19)) (-2319 (((-394 (-1083 $)) (-1083 $)) 130 (|has| |#1| (-840)))) (-3763 (($ $) 73)) (-2105 (((-394 $) $) 72)) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) 133 (|has| |#1| (-840)))) (-3684 (((-108) $ $) 59)) (-2035 (((-523) $) 120 (|has| |#1| (-759)))) (-1640 (($) 17 T CONST)) (-2898 (((-3 |#1| "failed") $) 178) (((-3 (-1087) "failed") $) 128 (|has| |#1| (-964 (-1087)))) (((-3 (-383 (-523)) "failed") $) 112 (|has| |#1| (-964 (-523)))) (((-3 (-523) "failed") $) 110 (|has| |#1| (-964 (-523))))) (-1996 ((|#1| $) 177) (((-1087) $) 127 (|has| |#1| (-964 (-1087)))) (((-383 (-523)) $) 111 (|has| |#1| (-964 (-523)))) (((-523) $) 109 (|has| |#1| (-964 (-523))))) (-2501 (($ $ $) 55)) (-2203 (((-629 (-523)) (-629 $)) 152 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 151 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) 150) (((-629 |#1|) (-629 $)) 149)) (-4211 (((-3 $ "failed") $) 34)) (-3461 (($) 137 (|has| |#1| (-508)))) (-2486 (($ $ $) 56)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 51)) (-1330 (((-108) $) 71)) (-3702 (((-108) $) 122 (|has| |#1| (-759)))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 146 (|has| |#1| (-817 (-523)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 145 (|has| |#1| (-817 (-355))))) (-3482 (((-108) $) 31)) (-2364 (($ $) 141)) (-2164 ((|#1| $) 143)) (-1289 (((-3 $ "failed") $) 108 (|has| |#1| (-1063)))) (-4050 (((-108) $) 121 (|has| |#1| (-759)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 52)) (-3268 (($ $ $) 118 (|has| |#1| (-786)))) (-2644 (($ $ $) 117 (|has| |#1| (-786)))) (-3015 (($ (-1 |#1| |#1|) $) 169)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-3071 (($ $) 70)) (-4105 (($) 107 (|has| |#1| (-1063)) CONST)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-3934 (($ $) 138 (|has| |#1| (-284)))) (-1250 ((|#1| $) 135 (|has| |#1| (-508)))) (-1893 (((-394 (-1083 $)) (-1083 $)) 132 (|has| |#1| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) 131 (|has| |#1| (-840)))) (-3573 (((-394 $) $) 74)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2469 (((-3 $ "failed") $ $) 42)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 50)) (-1349 (($ $ (-589 |#1|) (-589 |#1|)) 175 (|has| |#1| (-286 |#1|))) (($ $ |#1| |#1|) 174 (|has| |#1| (-286 |#1|))) (($ $ (-271 |#1|)) 173 (|has| |#1| (-286 |#1|))) (($ $ (-589 (-271 |#1|))) 172 (|has| |#1| (-286 |#1|))) (($ $ (-589 (-1087)) (-589 |#1|)) 171 (|has| |#1| (-484 (-1087) |#1|))) (($ $ (-1087) |#1|) 170 (|has| |#1| (-484 (-1087) |#1|)))) (-3087 (((-710) $) 58)) (-1502 (($ $ |#1|) 176 (|has| |#1| (-263 |#1| |#1|)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 57)) (-4024 (($ $) 168 (|has| |#1| (-211))) (($ $ (-710)) 166 (|has| |#1| (-211))) (($ $ (-1087)) 164 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) 163 (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) 162 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) 161 (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) 154) (($ $ (-1 |#1| |#1|)) 153)) (-3758 (($ $) 140)) (-2171 ((|#1| $) 142)) (-3077 (((-823 (-523)) $) 148 (|has| |#1| (-564 (-823 (-523))))) (((-823 (-355)) $) 147 (|has| |#1| (-564 (-823 (-355))))) (((-499) $) 125 (|has| |#1| (-564 (-499)))) (((-355) $) 124 (|has| |#1| (-949))) (((-203) $) 123 (|has| |#1| (-949)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) 134 (-2819 (|has| $ (-134)) (|has| |#1| (-840))))) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43) (($ (-383 (-523))) 65) (($ |#1|) 181) (($ (-1087)) 129 (|has| |#1| (-964 (-1087))))) (-2301 (((-3 $ "failed") $) 126 (-3255 (|has| |#1| (-134)) (-2819 (|has| $ (-134)) (|has| |#1| (-840)))))) (-1698 (((-710)) 29)) (-1516 ((|#1| $) 136 (|has| |#1| (-508)))) (-3842 (((-108) $ $) 39)) (-3984 (($ $) 119 (|has| |#1| (-759)))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 69)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $) 167 (|has| |#1| (-211))) (($ $ (-710)) 165 (|has| |#1| (-211))) (($ $ (-1087)) 160 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) 159 (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) 158 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) 157 (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) 156) (($ $ (-1 |#1| |#1|)) 155)) (-4078 (((-108) $ $) 115 (|has| |#1| (-786)))) (-4061 (((-108) $ $) 114 (|has| |#1| (-786)))) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 116 (|has| |#1| (-786)))) (-4052 (((-108) $ $) 113 (|has| |#1| (-786)))) (-4125 (($ $ $) 64) (($ |#1| |#1|) 144)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 68)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 (-523))) 67) (($ (-383 (-523)) $) 66) (($ |#1| $) 180) (($ $ |#1|) 179)))
-(((-921 |#1|) (-129) (-515)) (T -921))
-((-4125 (*1 *1 *2 *2) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)))) (-2164 (*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)))) (-2171 (*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)))) (-2364 (*1 *1 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)))) (-3758 (*1 *1 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)))) (-3964 (*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)) (-4 *2 (-284)))) (-3934 (*1 *1 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)) (-4 *2 (-284)))) (-3461 (*1 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-508)) (-4 *2 (-515)))) (-1516 (*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)) (-4 *2 (-508)))) (-1250 (*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)) (-4 *2 (-508)))))
-(-13 (-339) (-37 |t#1|) (-964 |t#1|) (-314 |t#1|) (-209 |t#1|) (-353 |t#1|) (-815 |t#1|) (-376 |t#1|) (-10 -8 (-15 -4125 ($ |t#1| |t#1|)) (-15 -2164 (|t#1| $)) (-15 -2171 (|t#1| $)) (-15 -2364 ($ $)) (-15 -3758 ($ $)) (IF (|has| |t#1| (-1063)) (-6 (-1063)) |%noBranch|) (IF (|has| |t#1| (-964 (-523))) (PROGN (-6 (-964 (-523))) (-6 (-964 (-383 (-523))))) |%noBranch|) (IF (|has| |t#1| (-786)) (-6 (-786)) |%noBranch|) (IF (|has| |t#1| (-759)) (-6 (-759)) |%noBranch|) (IF (|has| |t#1| (-949)) (-6 (-949)) |%noBranch|) (IF (|has| |t#1| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|) (IF (|has| |t#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |t#1| (-134)) (-6 (-134)) |%noBranch|) (IF (|has| |t#1| (-964 (-1087))) (-6 (-964 (-1087))) |%noBranch|) (IF (|has| |t#1| (-284)) (PROGN (-15 -3964 (|t#1| $)) (-15 -3934 ($ $))) |%noBranch|) (IF (|has| |t#1| (-508)) (PROGN (-15 -3461 ($)) (-15 -1516 (|t#1| $)) (-15 -1250 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-840)) (-6 (-840)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) . T) ((-37 |#1|) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) . T) ((-564 (-203)) |has| |#1| (-949)) ((-564 (-355)) |has| |#1| (-949)) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-564 (-823 (-355))) |has| |#1| (-564 (-823 (-355)))) ((-564 (-823 (-523))) |has| |#1| (-564 (-823 (-523)))) ((-209 |#1|) . T) ((-211) |has| |#1| (-211)) ((-221) . T) ((-263 |#1| $) |has| |#1| (-263 |#1| |#1|)) ((-267) . T) ((-284) . T) ((-286 |#1|) |has| |#1| (-286 |#1|)) ((-339) . T) ((-314 |#1|) . T) ((-353 |#1|) . T) ((-376 |#1|) . T) ((-427) . T) ((-484 (-1087) |#1|) |has| |#1| (-484 (-1087) |#1|)) ((-484 |#1| |#1|) |has| |#1| (-286 |#1|)) ((-515) . T) ((-591 #0#) . T) ((-591 |#1|) . T) ((-591 $) . T) ((-585 (-523)) |has| |#1| (-585 (-523))) ((-585 |#1|) . T) ((-657 #0#) . T) ((-657 |#1|) . T) ((-657 $) . T) ((-666) . T) ((-730) |has| |#1| (-759)) ((-731) |has| |#1| (-759)) ((-733) |has| |#1| (-759)) ((-734) |has| |#1| (-759)) ((-759) |has| |#1| (-759)) ((-784) |has| |#1| (-759)) ((-786) -3255 (|has| |#1| (-786)) (|has| |#1| (-759))) ((-831 (-1087)) |has| |#1| (-831 (-1087))) ((-817 (-355)) |has| |#1| (-817 (-355))) ((-817 (-523)) |has| |#1| (-817 (-523))) ((-815 |#1|) . T) ((-840) |has| |#1| (-840)) ((-851) . T) ((-949) |has| |#1| (-949)) ((-964 (-383 (-523))) |has| |#1| (-964 (-523))) ((-964 (-523)) |has| |#1| (-964 (-523))) ((-964 (-1087)) |has| |#1| (-964 (-1087))) ((-964 |#1|) . T) ((-979 #0#) . T) ((-979 |#1|) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1063) |has| |#1| (-1063)) ((-1123) . T) ((-1127) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-1541 (($ (-1054 |#1| |#2|)) 11)) (-3078 (((-1054 |#1| |#2|) $) 12)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-1502 ((|#2| $ (-218 |#1| |#2|)) 16)) (-3976 (((-794) $) NIL)) (-1428 (($) NIL T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL)))
-(((-922 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -1541 ($ (-1054 |#1| |#2|))) (-15 -3078 ((-1054 |#1| |#2|) $)) (-15 -1502 (|#2| $ (-218 |#1| |#2|))))) (-852) (-339)) (T -922))
-((-1541 (*1 *1 *2) (-12 (-5 *2 (-1054 *3 *4)) (-14 *3 (-852)) (-4 *4 (-339)) (-5 *1 (-922 *3 *4)))) (-3078 (*1 *2 *1) (-12 (-5 *2 (-1054 *3 *4)) (-5 *1 (-922 *3 *4)) (-14 *3 (-852)) (-4 *4 (-339)))) (-1502 (*1 *2 *1 *3) (-12 (-5 *3 (-218 *4 *2)) (-14 *4 (-852)) (-4 *2 (-339)) (-5 *1 (-922 *4 *2)))))
-(-13 (-21) (-10 -8 (-15 -1541 ($ (-1054 |#1| |#2|))) (-15 -3078 ((-1054 |#1| |#2|) $)) (-15 -1502 (|#2| $ (-218 |#1| |#2|)))))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2282 (((-108) $ (-710)) 8)) (-1640 (($) 7 T CONST)) (-3629 (($ $) 46)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-3229 (((-710) $) 45)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2349 ((|#1| $) 39)) (-3862 (($ |#1| $) 40)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-2764 ((|#1| $) 44)) (-1322 ((|#1| $) 41)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3844 ((|#1| |#1| $) 48)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1671 ((|#1| $) 47)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1245 (($ (-589 |#1|)) 42)) (-2939 ((|#1| $) 43)) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-923 |#1|) (-129) (-1123)) (T -923))
-((-3844 (*1 *2 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-1123)))) (-1671 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-1123)))) (-3629 (*1 *1 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-1123)))) (-3229 (*1 *2 *1) (-12 (-4 *1 (-923 *3)) (-4 *3 (-1123)) (-5 *2 (-710)))) (-2764 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-1123)))) (-2939 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-1123)))))
-(-13 (-102 |t#1|) (-10 -8 (-6 -4248) (-15 -3844 (|t#1| |t#1| $)) (-15 -1671 (|t#1| $)) (-15 -3629 ($ $)) (-15 -3229 ((-710) $)) (-15 -2764 (|t#1| $)) (-15 -2939 (|t#1| $))))
-(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-2388 (((-108) $) 42)) (-2898 (((-3 (-523) "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-1996 (((-523) $) NIL) (((-383 (-523)) $) NIL) ((|#2| $) 43)) (-4031 (((-3 (-383 (-523)) "failed") $) 78)) (-1310 (((-108) $) 72)) (-1600 (((-383 (-523)) $) 76)) (-3482 (((-108) $) 41)) (-2765 ((|#2| $) 22)) (-3015 (($ (-1 |#2| |#2|) $) 19)) (-3071 (($ $) 61)) (-4024 (($ $) NIL) (($ $ (-710)) NIL) (($ $ (-1087)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL) (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-1 |#2| |#2|)) 34)) (-3077 (((-499) $) 67)) (-1308 (($ $) 17)) (-3976 (((-794) $) 56) (($ (-523)) 38) (($ |#2|) 36) (($ (-383 (-523))) NIL)) (-1698 (((-710)) 10)) (-3984 ((|#2| $) 71)) (-4037 (((-108) $ $) 25)) (-4052 (((-108) $ $) 69)) (-4115 (($ $) 29) (($ $ $) 28)) (-4103 (($ $ $) 26)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 33) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 30) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL)))
-(((-924 |#1| |#2|) (-10 -8 (-15 -3976 (|#1| (-383 (-523)))) (-15 -4052 ((-108) |#1| |#1|)) (-15 * (|#1| (-383 (-523)) |#1|)) (-15 * (|#1| |#1| (-383 (-523)))) (-15 -3071 (|#1| |#1|)) (-15 -3077 ((-499) |#1|)) (-15 -4031 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1600 ((-383 (-523)) |#1|)) (-15 -1310 ((-108) |#1|)) (-15 -3984 (|#2| |#1|)) (-15 -2765 (|#2| |#1|)) (-15 -1308 (|#1| |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -3976 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3976 (|#1| (-523))) (-15 -1698 ((-710))) (-15 -3482 ((-108) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 -4115 (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 -2388 ((-108) |#1|)) (-15 * (|#1| (-852) |#1|)) (-15 -4103 (|#1| |#1| |#1|)) (-15 -3976 ((-794) |#1|)) (-15 -4037 ((-108) |#1| |#1|))) (-925 |#2|) (-158)) (T -924))
-((-1698 (*1 *2) (-12 (-4 *4 (-158)) (-5 *2 (-710)) (-5 *1 (-924 *3 *4)) (-4 *3 (-925 *4)))))
-(-10 -8 (-15 -3976 (|#1| (-383 (-523)))) (-15 -4052 ((-108) |#1| |#1|)) (-15 * (|#1| (-383 (-523)) |#1|)) (-15 * (|#1| |#1| (-383 (-523)))) (-15 -3071 (|#1| |#1|)) (-15 -3077 ((-499) |#1|)) (-15 -4031 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1600 ((-383 (-523)) |#1|)) (-15 -1310 ((-108) |#1|)) (-15 -3984 (|#2| |#1|)) (-15 -2765 (|#2| |#1|)) (-15 -1308 (|#1| |#1|)) (-15 -3015 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -3976 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3976 (|#1| (-523))) (-15 -1698 ((-710))) (-15 -3482 ((-108) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 -4115 (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|)) (-15 * (|#1| (-710) |#1|)) (-15 -2388 ((-108) |#1|)) (-15 * (|#1| (-852) |#1|)) (-15 -4103 (|#1| |#1| |#1|)) (-15 -3976 ((-794) |#1|)) (-15 -4037 ((-108) |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-2898 (((-3 (-523) "failed") $) 119 (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) 117 (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) 116)) (-1996 (((-523) $) 120 (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) 118 (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) 115)) (-2203 (((-629 (-523)) (-629 $)) 90 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 89 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) 88) (((-629 |#1|) (-629 $)) 87)) (-4211 (((-3 $ "failed") $) 34)) (-3597 ((|#1| $) 80)) (-4031 (((-3 (-383 (-523)) "failed") $) 76 (|has| |#1| (-508)))) (-1310 (((-108) $) 78 (|has| |#1| (-508)))) (-1600 (((-383 (-523)) $) 77 (|has| |#1| (-508)))) (-1878 (($ |#1| |#1| |#1| |#1|) 81)) (-3482 (((-108) $) 31)) (-2765 ((|#1| $) 82)) (-3268 (($ $ $) 68 (|has| |#1| (-786)))) (-2644 (($ $ $) 67 (|has| |#1| (-786)))) (-3015 (($ (-1 |#1| |#1|) $) 91)) (-3841 (((-1070) $) 9)) (-3071 (($ $) 73 (|has| |#1| (-339)))) (-2558 ((|#1| $) 83)) (-1610 ((|#1| $) 84)) (-2637 ((|#1| $) 85)) (-2435 (((-1034) $) 10)) (-1349 (($ $ (-589 |#1|) (-589 |#1|)) 97 (|has| |#1| (-286 |#1|))) (($ $ |#1| |#1|) 96 (|has| |#1| (-286 |#1|))) (($ $ (-271 |#1|)) 95 (|has| |#1| (-286 |#1|))) (($ $ (-589 (-271 |#1|))) 94 (|has| |#1| (-286 |#1|))) (($ $ (-589 (-1087)) (-589 |#1|)) 93 (|has| |#1| (-484 (-1087) |#1|))) (($ $ (-1087) |#1|) 92 (|has| |#1| (-484 (-1087) |#1|)))) (-1502 (($ $ |#1|) 98 (|has| |#1| (-263 |#1| |#1|)))) (-4024 (($ $) 114 (|has| |#1| (-211))) (($ $ (-710)) 112 (|has| |#1| (-211))) (($ $ (-1087)) 110 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) 109 (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) 108 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) 107 (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) 100) (($ $ (-1 |#1| |#1|)) 99)) (-3077 (((-499) $) 74 (|has| |#1| (-564 (-499))))) (-1308 (($ $) 86)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 37) (($ (-383 (-523))) 62 (-3255 (|has| |#1| (-339)) (|has| |#1| (-964 (-383 (-523))))))) (-2301 (((-3 $ "failed") $) 75 (|has| |#1| (-134)))) (-1698 (((-710)) 29)) (-3984 ((|#1| $) 79 (|has| |#1| (-982)))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 72 (|has| |#1| (-339)))) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $) 113 (|has| |#1| (-211))) (($ $ (-710)) 111 (|has| |#1| (-211))) (($ $ (-1087)) 106 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) 105 (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) 104 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) 103 (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) 102) (($ $ (-1 |#1| |#1|)) 101)) (-4078 (((-108) $ $) 65 (|has| |#1| (-786)))) (-4061 (((-108) $ $) 64 (|has| |#1| (-786)))) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 66 (|has| |#1| (-786)))) (-4052 (((-108) $ $) 63 (|has| |#1| (-786)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 71 (|has| |#1| (-339)))) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38) (($ $ (-383 (-523))) 70 (|has| |#1| (-339))) (($ (-383 (-523)) $) 69 (|has| |#1| (-339)))))
-(((-925 |#1|) (-129) (-158)) (T -925))
-((-1308 (*1 *1 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158)))) (-2637 (*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158)))) (-1610 (*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158)))) (-2558 (*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158)))) (-2765 (*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158)))) (-1878 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158)))) (-3597 (*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158)))) (-3984 (*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158)) (-4 *2 (-982)))) (-1310 (*1 *2 *1) (-12 (-4 *1 (-925 *3)) (-4 *3 (-158)) (-4 *3 (-508)) (-5 *2 (-108)))) (-1600 (*1 *2 *1) (-12 (-4 *1 (-925 *3)) (-4 *3 (-158)) (-4 *3 (-508)) (-5 *2 (-383 (-523))))) (-4031 (*1 *2 *1) (|partial| -12 (-4 *1 (-925 *3)) (-4 *3 (-158)) (-4 *3 (-508)) (-5 *2 (-383 (-523))))))
-(-13 (-37 |t#1|) (-387 |t#1|) (-209 |t#1|) (-314 |t#1|) (-353 |t#1|) (-10 -8 (-15 -1308 ($ $)) (-15 -2637 (|t#1| $)) (-15 -1610 (|t#1| $)) (-15 -2558 (|t#1| $)) (-15 -2765 (|t#1| $)) (-15 -1878 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -3597 (|t#1| $)) (IF (|has| |t#1| (-267)) (-6 (-267)) |%noBranch|) (IF (|has| |t#1| (-786)) (-6 (-786)) |%noBranch|) (IF (|has| |t#1| (-339)) (-6 (-221)) |%noBranch|) (IF (|has| |t#1| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|) (IF (|has| |t#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |t#1| (-134)) (-6 (-134)) |%noBranch|) (IF (|has| |t#1| (-982)) (-15 -3984 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-508)) (PROGN (-15 -1310 ((-108) $)) (-15 -1600 ((-383 (-523)) $)) (-15 -4031 ((-3 (-383 (-523)) "failed") $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) |has| |#1| (-339)) ((-37 |#1|) . T) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-339)) ((-107 |#1| |#1|) . T) ((-107 $ $) -3255 (|has| |#1| (-339)) (|has| |#1| (-267))) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-209 |#1|) . T) ((-211) |has| |#1| (-211)) ((-221) |has| |#1| (-339)) ((-263 |#1| $) |has| |#1| (-263 |#1| |#1|)) ((-267) -3255 (|has| |#1| (-339)) (|has| |#1| (-267))) ((-286 |#1|) |has| |#1| (-286 |#1|)) ((-314 |#1|) . T) ((-353 |#1|) . T) ((-387 |#1|) . T) ((-484 (-1087) |#1|) |has| |#1| (-484 (-1087) |#1|)) ((-484 |#1| |#1|) |has| |#1| (-286 |#1|)) ((-591 #0#) |has| |#1| (-339)) ((-591 |#1|) . T) ((-591 $) . T) ((-585 (-523)) |has| |#1| (-585 (-523))) ((-585 |#1|) . T) ((-657 #0#) |has| |#1| (-339)) ((-657 |#1|) . T) ((-666) . T) ((-786) |has| |#1| (-786)) ((-831 (-1087)) |has| |#1| (-831 (-1087))) ((-964 (-383 (-523))) |has| |#1| (-964 (-383 (-523)))) ((-964 (-523)) |has| |#1| (-964 (-523))) ((-964 |#1|) . T) ((-979 #0#) |has| |#1| (-339)) ((-979 |#1|) . T) ((-979 $) -3255 (|has| |#1| (-339)) (|has| |#1| (-267))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3015 ((|#3| (-1 |#4| |#2|) |#1|) 16)))
-(((-926 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3015 (|#3| (-1 |#4| |#2|) |#1|))) (-925 |#2|) (-158) (-925 |#4|) (-158)) (T -926))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-158)) (-4 *6 (-158)) (-4 *2 (-925 *6)) (-5 *1 (-926 *4 *5 *2 *6)) (-4 *4 (-925 *5)))))
-(-10 -7 (-15 -3015 (|#3| (-1 |#4| |#2|) |#1|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) NIL)) (-1996 (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) NIL) (((-629 |#1|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3597 ((|#1| $) 12)) (-4031 (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-508)))) (-1310 (((-108) $) NIL (|has| |#1| (-508)))) (-1600 (((-383 (-523)) $) NIL (|has| |#1| (-508)))) (-1878 (($ |#1| |#1| |#1| |#1|) 16)) (-3482 (((-108) $) NIL)) (-2765 ((|#1| $) NIL)) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL (|has| |#1| (-339)))) (-2558 ((|#1| $) 15)) (-1610 ((|#1| $) 14)) (-2637 ((|#1| $) 13)) (-2435 (((-1034) $) NIL)) (-1349 (($ $ (-589 |#1|) (-589 |#1|)) NIL (|has| |#1| (-286 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-286 |#1|))) (($ $ (-271 |#1|)) NIL (|has| |#1| (-286 |#1|))) (($ $ (-589 (-271 |#1|))) NIL (|has| |#1| (-286 |#1|))) (($ $ (-589 (-1087)) (-589 |#1|)) NIL (|has| |#1| (-484 (-1087) |#1|))) (($ $ (-1087) |#1|) NIL (|has| |#1| (-484 (-1087) |#1|)))) (-1502 (($ $ |#1|) NIL (|has| |#1| (-263 |#1| |#1|)))) (-4024 (($ $) NIL (|has| |#1| (-211))) (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3077 (((-499) $) NIL (|has| |#1| (-564 (-499))))) (-1308 (($ $) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#1|) NIL) (($ (-383 (-523))) NIL (-3255 (|has| |#1| (-339)) (|has| |#1| (-964 (-383 (-523))))))) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) NIL)) (-3984 ((|#1| $) NIL (|has| |#1| (-982)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339)))) (-1428 (($) 8 T CONST)) (-1440 (($) 10 T CONST)) (-1943 (($ $) NIL (|has| |#1| (-211))) (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339)))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-383 (-523))) NIL (|has| |#1| (-339))) (($ (-383 (-523)) $) NIL (|has| |#1| (-339)))))
-(((-927 |#1|) (-925 |#1|) (-158)) (T -927))
-NIL
-(-925 |#1|)
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2282 (((-108) $ (-710)) NIL)) (-1640 (($) NIL T CONST)) (-3629 (($ $) 20)) (-3583 (($ (-589 |#1|)) 29)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3229 (((-710) $) 22)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2349 ((|#1| $) 24)) (-3862 (($ |#1| $) 15)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2764 ((|#1| $) 23)) (-1322 ((|#1| $) 19)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3844 ((|#1| |#1| $) 14)) (-3163 (((-108) $) 17)) (-4055 (($) NIL)) (-1671 ((|#1| $) 18)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1245 (($ (-589 |#1|)) NIL)) (-2939 ((|#1| $) 26)) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-928 |#1|) (-13 (-923 |#1|) (-10 -8 (-15 -3583 ($ (-589 |#1|))))) (-1016)) (T -928))
-((-3583 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-928 *3)))))
-(-13 (-923 |#1|) (-10 -8 (-15 -3583 ($ (-589 |#1|)))))
-((-3584 (($ $) 12)) (-1324 (($ $ (-523)) 13)))
-(((-929 |#1|) (-10 -8 (-15 -3584 (|#1| |#1|)) (-15 -1324 (|#1| |#1| (-523)))) (-930)) (T -929))
-NIL
-(-10 -8 (-15 -3584 (|#1| |#1|)) (-15 -1324 (|#1| |#1| (-523))))
-((-3584 (($ $) 6)) (-1324 (($ $ (-523)) 7)) (** (($ $ (-383 (-523))) 8)))
-(((-930) (-129)) (T -930))
-((** (*1 *1 *1 *2) (-12 (-4 *1 (-930)) (-5 *2 (-383 (-523))))) (-1324 (*1 *1 *1 *2) (-12 (-4 *1 (-930)) (-5 *2 (-523)))) (-3584 (*1 *1 *1) (-4 *1 (-930))))
-(-13 (-10 -8 (-15 -3584 ($ $)) (-15 -1324 ($ $ (-523))) (-15 ** ($ $ (-383 (-523))))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1962 (((-2 (|:| |num| (-1169 |#2|)) (|:| |den| |#2|)) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| (-383 |#2|) (-339)))) (-3950 (($ $) NIL (|has| (-383 |#2|) (-339)))) (-3226 (((-108) $) NIL (|has| (-383 |#2|) (-339)))) (-1711 (((-629 (-383 |#2|)) (-1169 $)) NIL) (((-629 (-383 |#2|))) NIL)) (-4131 (((-383 |#2|) $) NIL)) (-2794 (((-1097 (-852) (-710)) (-523)) NIL (|has| (-383 |#2|) (-325)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL (|has| (-383 |#2|) (-339)))) (-2105 (((-394 $) $) NIL (|has| (-383 |#2|) (-339)))) (-3684 (((-108) $ $) NIL (|has| (-383 |#2|) (-339)))) (-3843 (((-710)) NIL (|has| (-383 |#2|) (-344)))) (-2693 (((-108)) NIL)) (-1690 (((-108) |#1|) 148) (((-108) |#2|) 153)) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL (|has| (-383 |#2|) (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| (-383 |#2|) (-964 (-383 (-523))))) (((-3 (-383 |#2|) "failed") $) NIL)) (-1996 (((-523) $) NIL (|has| (-383 |#2|) (-964 (-523)))) (((-383 (-523)) $) NIL (|has| (-383 |#2|) (-964 (-383 (-523))))) (((-383 |#2|) $) NIL)) (-3322 (($ (-1169 (-383 |#2|)) (-1169 $)) NIL) (($ (-1169 (-383 |#2|))) 70) (($ (-1169 |#2|) |#2|) NIL)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-383 |#2|) (-325)))) (-2501 (($ $ $) NIL (|has| (-383 |#2|) (-339)))) (-2545 (((-629 (-383 |#2|)) $ (-1169 $)) NIL) (((-629 (-383 |#2|)) $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| (-383 |#2|) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| (-383 |#2|) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-383 |#2|))) (|:| |vec| (-1169 (-383 |#2|)))) (-629 $) (-1169 $)) NIL) (((-629 (-383 |#2|)) (-629 $)) NIL)) (-2332 (((-1169 $) (-1169 $)) NIL)) (-1830 (($ |#3|) 65) (((-3 $ "failed") (-383 |#3|)) NIL (|has| (-383 |#2|) (-339)))) (-4211 (((-3 $ "failed") $) NIL)) (-3201 (((-589 (-589 |#1|))) NIL (|has| |#1| (-344)))) (-1902 (((-108) |#1| |#1|) NIL)) (-2262 (((-852)) NIL)) (-3461 (($) NIL (|has| (-383 |#2|) (-344)))) (-1495 (((-108)) NIL)) (-3727 (((-108) |#1|) 56) (((-108) |#2|) 150)) (-2486 (($ $ $) NIL (|has| (-383 |#2|) (-339)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| (-383 |#2|) (-339)))) (-2213 (($ $) NIL)) (-2097 (($) NIL (|has| (-383 |#2|) (-325)))) (-1200 (((-108) $) NIL (|has| (-383 |#2|) (-325)))) (-1419 (($ $ (-710)) NIL (|has| (-383 |#2|) (-325))) (($ $) NIL (|has| (-383 |#2|) (-325)))) (-1330 (((-108) $) NIL (|has| (-383 |#2|) (-339)))) (-1500 (((-852) $) NIL (|has| (-383 |#2|) (-325))) (((-772 (-852)) $) NIL (|has| (-383 |#2|) (-325)))) (-3482 (((-108) $) NIL)) (-1244 (((-710)) NIL)) (-1402 (((-1169 $) (-1169 $)) NIL)) (-2765 (((-383 |#2|) $) NIL)) (-2161 (((-589 (-883 |#1|)) (-1087)) NIL (|has| |#1| (-339)))) (-1289 (((-3 $ "failed") $) NIL (|has| (-383 |#2|) (-325)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| (-383 |#2|) (-339)))) (-2277 ((|#3| $) NIL (|has| (-383 |#2|) (-339)))) (-4076 (((-852) $) NIL (|has| (-383 |#2|) (-344)))) (-1816 ((|#3| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| (-383 |#2|) (-339))) (($ $ $) NIL (|has| (-383 |#2|) (-339)))) (-3841 (((-1070) $) NIL)) (-1209 (((-629 (-383 |#2|))) 52)) (-1845 (((-629 (-383 |#2|))) 51)) (-3071 (($ $) NIL (|has| (-383 |#2|) (-339)))) (-4087 (($ (-1169 |#2|) |#2|) 71)) (-2009 (((-629 (-383 |#2|))) 50)) (-3864 (((-629 (-383 |#2|))) 49)) (-2180 (((-2 (|:| |num| (-629 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 86)) (-2401 (((-2 (|:| |num| (-1169 |#2|)) (|:| |den| |#2|)) $) 77)) (-3205 (((-1169 $)) 46)) (-3835 (((-1169 $)) 45)) (-1933 (((-108) $) NIL)) (-3759 (((-108) $) NIL) (((-108) $ |#1|) NIL) (((-108) $ |#2|) NIL)) (-4105 (($) NIL (|has| (-383 |#2|) (-325)) CONST)) (-2557 (($ (-852)) NIL (|has| (-383 |#2|) (-344)))) (-2931 (((-3 |#2| "failed")) 63)) (-2435 (((-1034) $) NIL)) (-4095 (((-710)) NIL)) (-4102 (($) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| (-383 |#2|) (-339)))) (-2056 (($ (-589 $)) NIL (|has| (-383 |#2|) (-339))) (($ $ $) NIL (|has| (-383 |#2|) (-339)))) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) NIL (|has| (-383 |#2|) (-325)))) (-3573 (((-394 $) $) NIL (|has| (-383 |#2|) (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-383 |#2|) (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| (-383 |#2|) (-339)))) (-2469 (((-3 $ "failed") $ $) NIL (|has| (-383 |#2|) (-339)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| (-383 |#2|) (-339)))) (-3087 (((-710) $) NIL (|has| (-383 |#2|) (-339)))) (-1502 ((|#1| $ |#1| |#1|) NIL)) (-2632 (((-3 |#2| "failed")) 62)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| (-383 |#2|) (-339)))) (-4053 (((-383 |#2|) (-1169 $)) NIL) (((-383 |#2|)) 42)) (-2041 (((-710) $) NIL (|has| (-383 |#2|) (-325))) (((-3 (-710) "failed") $ $) NIL (|has| (-383 |#2|) (-325)))) (-4024 (($ $ (-1 (-383 |#2|) (-383 |#2|)) (-710)) NIL (|has| (-383 |#2|) (-339))) (($ $ (-1 (-383 |#2|) (-383 |#2|))) NIL (|has| (-383 |#2|) (-339))) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-710)) NIL (-3255 (-12 (|has| (-383 |#2|) (-211)) (|has| (-383 |#2|) (-339))) (|has| (-383 |#2|) (-325)))) (($ $) NIL (-3255 (-12 (|has| (-383 |#2|) (-211)) (|has| (-383 |#2|) (-339))) (|has| (-383 |#2|) (-325))))) (-1718 (((-629 (-383 |#2|)) (-1169 $) (-1 (-383 |#2|) (-383 |#2|))) NIL (|has| (-383 |#2|) (-339)))) (-3399 ((|#3|) 53)) (-2315 (($) NIL (|has| (-383 |#2|) (-325)))) (-2411 (((-1169 (-383 |#2|)) $ (-1169 $)) NIL) (((-629 (-383 |#2|)) (-1169 $) (-1169 $)) NIL) (((-1169 (-383 |#2|)) $) 72) (((-629 (-383 |#2|)) (-1169 $)) NIL)) (-3077 (((-1169 (-383 |#2|)) $) NIL) (($ (-1169 (-383 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (|has| (-383 |#2|) (-325)))) (-3054 (((-1169 $) (-1169 $)) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ (-383 |#2|)) NIL) (($ (-383 (-523))) NIL (-3255 (|has| (-383 |#2|) (-964 (-383 (-523)))) (|has| (-383 |#2|) (-339)))) (($ $) NIL (|has| (-383 |#2|) (-339)))) (-2301 (($ $) NIL (|has| (-383 |#2|) (-325))) (((-3 $ "failed") $) NIL (|has| (-383 |#2|) (-134)))) (-1606 ((|#3| $) NIL)) (-1698 (((-710)) NIL)) (-3455 (((-108)) 60)) (-2771 (((-108) |#1|) 154) (((-108) |#2|) 155)) (-2922 (((-1169 $)) 125)) (-3842 (((-108) $ $) NIL (|has| (-383 |#2|) (-339)))) (-2376 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-4152 (((-108)) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| (-383 |#2|) (-339)))) (-1428 (($) 94 T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ (-1 (-383 |#2|) (-383 |#2|)) (-710)) NIL (|has| (-383 |#2|) (-339))) (($ $ (-1 (-383 |#2|) (-383 |#2|))) NIL (|has| (-383 |#2|) (-339))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| (-383 |#2|) (-339)) (|has| (-383 |#2|) (-831 (-1087))))) (($ $ (-710)) NIL (-3255 (-12 (|has| (-383 |#2|) (-211)) (|has| (-383 |#2|) (-339))) (|has| (-383 |#2|) (-325)))) (($ $) NIL (-3255 (-12 (|has| (-383 |#2|) (-211)) (|has| (-383 |#2|) (-339))) (|has| (-383 |#2|) (-325))))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ $) NIL (|has| (-383 |#2|) (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| (-383 |#2|) (-339)))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 |#2|)) NIL) (($ (-383 |#2|) $) NIL) (($ (-383 (-523)) $) NIL (|has| (-383 |#2|) (-339))) (($ $ (-383 (-523))) NIL (|has| (-383 |#2|) (-339)))))
-(((-931 |#1| |#2| |#3| |#4| |#5|) (-318 |#1| |#2| |#3|) (-1127) (-1145 |#1|) (-1145 (-383 |#2|)) (-383 |#2|) (-710)) (T -931))
-NIL
-(-318 |#1| |#2| |#3|)
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2201 (((-589 (-523)) $) 54)) (-3474 (($ (-589 (-523))) 62)) (-3964 (((-523) $) 40 (|has| (-523) (-284)))) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-3684 (((-108) $ $) NIL)) (-2035 (((-523) $) NIL (|has| (-523) (-759)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) 49) (((-3 (-1087) "failed") $) NIL (|has| (-523) (-964 (-1087)))) (((-3 (-383 (-523)) "failed") $) 47 (|has| (-523) (-964 (-523)))) (((-3 (-523) "failed") $) 49 (|has| (-523) (-964 (-523))))) (-1996 (((-523) $) NIL) (((-1087) $) NIL (|has| (-523) (-964 (-1087)))) (((-383 (-523)) $) NIL (|has| (-523) (-964 (-523)))) (((-523) $) NIL (|has| (-523) (-964 (-523))))) (-2501 (($ $ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| (-523) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| (-523) (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL) (((-629 (-523)) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3461 (($) NIL (|has| (-523) (-508)))) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-2287 (((-589 (-523)) $) 60)) (-3702 (((-108) $) NIL (|has| (-523) (-759)))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (|has| (-523) (-817 (-523)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (|has| (-523) (-817 (-355))))) (-3482 (((-108) $) NIL)) (-2364 (($ $) NIL)) (-2164 (((-523) $) 37)) (-1289 (((-3 $ "failed") $) NIL (|has| (-523) (-1063)))) (-4050 (((-108) $) NIL (|has| (-523) (-759)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3268 (($ $ $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| (-523) (-786)))) (-3015 (($ (-1 (-523) (-523)) $) NIL)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL)) (-4105 (($) NIL (|has| (-523) (-1063)) CONST)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3934 (($ $) NIL (|has| (-523) (-284))) (((-383 (-523)) $) 42)) (-3705 (((-1068 (-523)) $) 59)) (-3384 (($ (-589 (-523)) (-589 (-523))) 63)) (-1250 (((-523) $) 53 (|has| (-523) (-508)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| (-523) (-840)))) (-3573 (((-394 $) $) NIL)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-1349 (($ $ (-589 (-523)) (-589 (-523))) NIL (|has| (-523) (-286 (-523)))) (($ $ (-523) (-523)) NIL (|has| (-523) (-286 (-523)))) (($ $ (-271 (-523))) NIL (|has| (-523) (-286 (-523)))) (($ $ (-589 (-271 (-523)))) NIL (|has| (-523) (-286 (-523)))) (($ $ (-589 (-1087)) (-589 (-523))) NIL (|has| (-523) (-484 (-1087) (-523)))) (($ $ (-1087) (-523)) NIL (|has| (-523) (-484 (-1087) (-523))))) (-3087 (((-710) $) NIL)) (-1502 (($ $ (-523)) NIL (|has| (-523) (-263 (-523) (-523))))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-4024 (($ $) 11 (|has| (-523) (-211))) (($ $ (-710)) NIL (|has| (-523) (-211))) (($ $ (-1087)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1 (-523) (-523)) (-710)) NIL) (($ $ (-1 (-523) (-523))) NIL)) (-3758 (($ $) NIL)) (-2171 (((-523) $) 39)) (-3592 (((-589 (-523)) $) 61)) (-3077 (((-823 (-523)) $) NIL (|has| (-523) (-564 (-823 (-523))))) (((-823 (-355)) $) NIL (|has| (-523) (-564 (-823 (-355))))) (((-499) $) NIL (|has| (-523) (-564 (-499)))) (((-355) $) NIL (|has| (-523) (-949))) (((-203) $) NIL (|has| (-523) (-949)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| (-523) (-840))))) (-3976 (((-794) $) 77) (($ (-523)) 43) (($ $) NIL) (($ (-383 (-523))) 20) (($ (-523)) 43) (($ (-1087)) NIL (|has| (-523) (-964 (-1087)))) (((-383 (-523)) $) 18)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| (-523) (-840))) (|has| (-523) (-134))))) (-1698 (((-710)) 9)) (-1516 (((-523) $) 51 (|has| (-523) (-508)))) (-3842 (((-108) $ $) NIL)) (-3984 (($ $) NIL (|has| (-523) (-759)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) 10 T CONST)) (-1440 (($) 12 T CONST)) (-1943 (($ $) NIL (|has| (-523) (-211))) (($ $ (-710)) NIL (|has| (-523) (-211))) (($ $ (-1087)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| (-523) (-831 (-1087)))) (($ $ (-1 (-523) (-523)) (-710)) NIL) (($ $ (-1 (-523) (-523))) NIL)) (-4078 (((-108) $ $) NIL (|has| (-523) (-786)))) (-4061 (((-108) $ $) NIL (|has| (-523) (-786)))) (-4037 (((-108) $ $) 14)) (-4070 (((-108) $ $) NIL (|has| (-523) (-786)))) (-4052 (((-108) $ $) 33 (|has| (-523) (-786)))) (-4125 (($ $ $) 29) (($ (-523) (-523)) 31)) (-4115 (($ $) 15) (($ $ $) 23)) (-4103 (($ $ $) 21)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 25) (($ $ $) 27) (($ $ (-383 (-523))) NIL) (($ (-383 (-523)) $) NIL) (($ (-523) $) 25) (($ $ (-523)) NIL)))
-(((-932 |#1|) (-13 (-921 (-523)) (-10 -8 (-15 -3976 ((-383 (-523)) $)) (-15 -3934 ((-383 (-523)) $)) (-15 -2201 ((-589 (-523)) $)) (-15 -3705 ((-1068 (-523)) $)) (-15 -2287 ((-589 (-523)) $)) (-15 -3592 ((-589 (-523)) $)) (-15 -3474 ($ (-589 (-523)))) (-15 -3384 ($ (-589 (-523)) (-589 (-523)))))) (-523)) (T -932))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523)))) (-3934 (*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523)))) (-2201 (*1 *2 *1) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523)))) (-3705 (*1 *2 *1) (-12 (-5 *2 (-1068 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523)))) (-2287 (*1 *2 *1) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523)))) (-3592 (*1 *2 *1) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523)))) (-3474 (*1 *1 *2) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523)))) (-3384 (*1 *1 *2 *2) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523)))))
-(-13 (-921 (-523)) (-10 -8 (-15 -3976 ((-383 (-523)) $)) (-15 -3934 ((-383 (-523)) $)) (-15 -2201 ((-589 (-523)) $)) (-15 -3705 ((-1068 (-523)) $)) (-15 -2287 ((-589 (-523)) $)) (-15 -3592 ((-589 (-523)) $)) (-15 -3474 ($ (-589 (-523)))) (-15 -3384 ($ (-589 (-523)) (-589 (-523))))))
-((-2492 (((-51) (-383 (-523)) (-523)) 9)))
-(((-933) (-10 -7 (-15 -2492 ((-51) (-383 (-523)) (-523))))) (T -933))
-((-2492 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-523))) (-5 *4 (-523)) (-5 *2 (-51)) (-5 *1 (-933)))))
-(-10 -7 (-15 -2492 ((-51) (-383 (-523)) (-523))))
-((-3843 (((-523)) 13)) (-3771 (((-523)) 16)) (-3946 (((-1174) (-523)) 15)) (-2864 (((-523) (-523)) 17) (((-523)) 12)))
-(((-934) (-10 -7 (-15 -2864 ((-523))) (-15 -3843 ((-523))) (-15 -2864 ((-523) (-523))) (-15 -3946 ((-1174) (-523))) (-15 -3771 ((-523))))) (T -934))
-((-3771 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-934)))) (-3946 (*1 *2 *3) (-12 (-5 *3 (-523)) (-5 *2 (-1174)) (-5 *1 (-934)))) (-2864 (*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-934)))) (-3843 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-934)))) (-2864 (*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-934)))))
-(-10 -7 (-15 -2864 ((-523))) (-15 -3843 ((-523))) (-15 -2864 ((-523) (-523))) (-15 -3946 ((-1174) (-523))) (-15 -3771 ((-523))))
-((-1398 (((-394 |#1|) |#1|) 41)) (-3573 (((-394 |#1|) |#1|) 40)))
-(((-935 |#1|) (-10 -7 (-15 -3573 ((-394 |#1|) |#1|)) (-15 -1398 ((-394 |#1|) |#1|))) (-1145 (-383 (-523)))) (T -935))
-((-1398 (*1 *2 *3) (-12 (-5 *2 (-394 *3)) (-5 *1 (-935 *3)) (-4 *3 (-1145 (-383 (-523)))))) (-3573 (*1 *2 *3) (-12 (-5 *2 (-394 *3)) (-5 *1 (-935 *3)) (-4 *3 (-1145 (-383 (-523)))))))
-(-10 -7 (-15 -3573 ((-394 |#1|) |#1|)) (-15 -1398 ((-394 |#1|) |#1|)))
-((-4031 (((-3 (-383 (-523)) "failed") |#1|) 15)) (-1310 (((-108) |#1|) 14)) (-1600 (((-383 (-523)) |#1|) 10)))
-(((-936 |#1|) (-10 -7 (-15 -1600 ((-383 (-523)) |#1|)) (-15 -1310 ((-108) |#1|)) (-15 -4031 ((-3 (-383 (-523)) "failed") |#1|))) (-964 (-383 (-523)))) (T -936))
-((-4031 (*1 *2 *3) (|partial| -12 (-5 *2 (-383 (-523))) (-5 *1 (-936 *3)) (-4 *3 (-964 *2)))) (-1310 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-936 *3)) (-4 *3 (-964 (-383 (-523)))))) (-1600 (*1 *2 *3) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-936 *3)) (-4 *3 (-964 *2)))))
-(-10 -7 (-15 -1600 ((-383 (-523)) |#1|)) (-15 -1310 ((-108) |#1|)) (-15 -4031 ((-3 (-383 (-523)) "failed") |#1|)))
-((-4101 ((|#2| $ "value" |#2|) 12)) (-1502 ((|#2| $ "value") 10)) (-4004 (((-108) $ $) 18)))
-(((-937 |#1| |#2|) (-10 -8 (-15 -4101 (|#2| |#1| "value" |#2|)) (-15 -4004 ((-108) |#1| |#1|)) (-15 -1502 (|#2| |#1| "value"))) (-938 |#2|) (-1123)) (T -937))
-NIL
-(-10 -8 (-15 -4101 (|#2| |#1| "value" |#2|)) (-15 -4004 ((-108) |#1| |#1|)) (-15 -1502 (|#2| |#1| "value")))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2058 ((|#1| $) 48)) (-2282 (((-108) $ (-710)) 8)) (-3365 ((|#1| $ |#1|) 39 (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) 41 (|has| $ (-6 -4249)))) (-1640 (($) 7 T CONST)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) 50)) (-3339 (((-108) $ $) 42 (|has| |#1| (-1016)))) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-2112 (((-589 |#1|) $) 45)) (-3391 (((-108) $) 49)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ "value") 47)) (-2981 (((-523) $ $) 44)) (-2837 (((-108) $) 46)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) 51)) (-4004 (((-108) $ $) 43 (|has| |#1| (-1016)))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-938 |#1|) (-129) (-1123)) (T -938))
-((-2464 (*1 *2 *1) (-12 (-4 *3 (-1123)) (-5 *2 (-589 *1)) (-4 *1 (-938 *3)))) (-1378 (*1 *2 *1) (-12 (-4 *3 (-1123)) (-5 *2 (-589 *1)) (-4 *1 (-938 *3)))) (-3391 (*1 *2 *1) (-12 (-4 *1 (-938 *3)) (-4 *3 (-1123)) (-5 *2 (-108)))) (-2058 (*1 *2 *1) (-12 (-4 *1 (-938 *2)) (-4 *2 (-1123)))) (-1502 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-938 *2)) (-4 *2 (-1123)))) (-2837 (*1 *2 *1) (-12 (-4 *1 (-938 *3)) (-4 *3 (-1123)) (-5 *2 (-108)))) (-2112 (*1 *2 *1) (-12 (-4 *1 (-938 *3)) (-4 *3 (-1123)) (-5 *2 (-589 *3)))) (-2981 (*1 *2 *1 *1) (-12 (-4 *1 (-938 *3)) (-4 *3 (-1123)) (-5 *2 (-523)))) (-4004 (*1 *2 *1 *1) (-12 (-4 *1 (-938 *3)) (-4 *3 (-1123)) (-4 *3 (-1016)) (-5 *2 (-108)))) (-3339 (*1 *2 *1 *1) (-12 (-4 *1 (-938 *3)) (-4 *3 (-1123)) (-4 *3 (-1016)) (-5 *2 (-108)))) (-3508 (*1 *1 *1 *2) (-12 (-5 *2 (-589 *1)) (|has| *1 (-6 -4249)) (-4 *1 (-938 *3)) (-4 *3 (-1123)))) (-4101 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4249)) (-4 *1 (-938 *2)) (-4 *2 (-1123)))) (-3365 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-938 *2)) (-4 *2 (-1123)))))
-(-13 (-462 |t#1|) (-10 -8 (-15 -2464 ((-589 $) $)) (-15 -1378 ((-589 $) $)) (-15 -3391 ((-108) $)) (-15 -2058 (|t#1| $)) (-15 -1502 (|t#1| $ "value")) (-15 -2837 ((-108) $)) (-15 -2112 ((-589 |t#1|) $)) (-15 -2981 ((-523) $ $)) (IF (|has| |t#1| (-1016)) (PROGN (-15 -4004 ((-108) $ $)) (-15 -3339 ((-108) $ $))) |%noBranch|) (IF (|has| $ (-6 -4249)) (PROGN (-15 -3508 ($ $ (-589 $))) (-15 -4101 (|t#1| $ "value" |t#1|)) (-15 -3365 (|t#1| $ |t#1|))) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-3584 (($ $) 9) (($ $ (-710)) 43) (($ (-383 (-523))) 13) (($ (-523)) 15)) (-2167 (((-3 $ "failed") (-1083 $) (-852) (-794)) 23) (((-3 $ "failed") (-1083 $) (-852)) 28)) (-1324 (($ $ (-523)) 49)) (-1698 (((-710)) 16)) (-4057 (((-589 $) (-1083 $)) NIL) (((-589 $) (-1083 (-383 (-523)))) 54) (((-589 $) (-1083 (-523))) 59) (((-589 $) (-883 $)) 63) (((-589 $) (-883 (-383 (-523)))) 67) (((-589 $) (-883 (-523))) 71)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL) (($ $ (-383 (-523))) 47)))
-(((-939 |#1|) (-10 -8 (-15 -3584 (|#1| (-523))) (-15 -3584 (|#1| (-383 (-523)))) (-15 -3584 (|#1| |#1| (-710))) (-15 -4057 ((-589 |#1|) (-883 (-523)))) (-15 -4057 ((-589 |#1|) (-883 (-383 (-523))))) (-15 -4057 ((-589 |#1|) (-883 |#1|))) (-15 -4057 ((-589 |#1|) (-1083 (-523)))) (-15 -4057 ((-589 |#1|) (-1083 (-383 (-523))))) (-15 -4057 ((-589 |#1|) (-1083 |#1|))) (-15 -2167 ((-3 |#1| "failed") (-1083 |#1|) (-852))) (-15 -2167 ((-3 |#1| "failed") (-1083 |#1|) (-852) (-794))) (-15 ** (|#1| |#1| (-383 (-523)))) (-15 -1324 (|#1| |#1| (-523))) (-15 -3584 (|#1| |#1|)) (-15 ** (|#1| |#1| (-523))) (-15 -1698 ((-710))) (-15 ** (|#1| |#1| (-710))) (-15 ** (|#1| |#1| (-852)))) (-940)) (T -939))
-((-1698 (*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-939 *3)) (-4 *3 (-940)))))
-(-10 -8 (-15 -3584 (|#1| (-523))) (-15 -3584 (|#1| (-383 (-523)))) (-15 -3584 (|#1| |#1| (-710))) (-15 -4057 ((-589 |#1|) (-883 (-523)))) (-15 -4057 ((-589 |#1|) (-883 (-383 (-523))))) (-15 -4057 ((-589 |#1|) (-883 |#1|))) (-15 -4057 ((-589 |#1|) (-1083 (-523)))) (-15 -4057 ((-589 |#1|) (-1083 (-383 (-523))))) (-15 -4057 ((-589 |#1|) (-1083 |#1|))) (-15 -2167 ((-3 |#1| "failed") (-1083 |#1|) (-852))) (-15 -2167 ((-3 |#1| "failed") (-1083 |#1|) (-852) (-794))) (-15 ** (|#1| |#1| (-383 (-523)))) (-15 -1324 (|#1| |#1| (-523))) (-15 -3584 (|#1| |#1|)) (-15 ** (|#1| |#1| (-523))) (-15 -1698 ((-710))) (-15 ** (|#1| |#1| (-710))) (-15 ** (|#1| |#1| (-852))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 89)) (-3950 (($ $) 90)) (-3226 (((-108) $) 92)) (-2999 (((-3 $ "failed") $ $) 19)) (-3763 (($ $) 109)) (-2105 (((-394 $) $) 110)) (-3584 (($ $) 73) (($ $ (-710)) 59) (($ (-383 (-523))) 58) (($ (-523)) 57)) (-3684 (((-108) $ $) 100)) (-2035 (((-523) $) 127)) (-1640 (($) 17 T CONST)) (-2167 (((-3 $ "failed") (-1083 $) (-852) (-794)) 67) (((-3 $ "failed") (-1083 $) (-852)) 66)) (-2898 (((-3 (-523) "failed") $) 85 (|has| (-383 (-523)) (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) 83 (|has| (-383 (-523)) (-964 (-383 (-523))))) (((-3 (-383 (-523)) "failed") $) 81)) (-1996 (((-523) $) 86 (|has| (-383 (-523)) (-964 (-523)))) (((-383 (-523)) $) 84 (|has| (-383 (-523)) (-964 (-383 (-523))))) (((-383 (-523)) $) 80)) (-2952 (($ $ (-794)) 56)) (-1517 (($ $ (-794)) 55)) (-2501 (($ $ $) 104)) (-4211 (((-3 $ "failed") $) 34)) (-2486 (($ $ $) 103)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 98)) (-1330 (((-108) $) 111)) (-3702 (((-108) $) 125)) (-3482 (((-108) $) 31)) (-1324 (($ $ (-523)) 72)) (-4050 (((-108) $) 126)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 107)) (-3268 (($ $ $) 124)) (-2644 (($ $ $) 123)) (-3189 (((-3 (-1083 $) "failed") $) 68)) (-3310 (((-3 (-794) "failed") $) 70)) (-2908 (((-3 (-1083 $) "failed") $) 69)) (-2012 (($ (-589 $)) 96) (($ $ $) 95)) (-3841 (((-1070) $) 9)) (-3071 (($ $) 112)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 97)) (-2056 (($ (-589 $)) 94) (($ $ $) 93)) (-3573 (((-394 $) $) 108)) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 106) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 105)) (-2469 (((-3 $ "failed") $ $) 88)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 99)) (-3087 (((-710) $) 101)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 102)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ (-383 (-523))) 117) (($ $) 87) (($ (-383 (-523))) 82) (($ (-523)) 79) (($ (-383 (-523))) 76)) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 91)) (-2523 (((-383 (-523)) $ $) 54)) (-4057 (((-589 $) (-1083 $)) 65) (((-589 $) (-1083 (-383 (-523)))) 64) (((-589 $) (-1083 (-523))) 63) (((-589 $) (-883 $)) 62) (((-589 $) (-883 (-383 (-523)))) 61) (((-589 $) (-883 (-523))) 60)) (-3984 (($ $) 128)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 113)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4078 (((-108) $ $) 121)) (-4061 (((-108) $ $) 120)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 122)) (-4052 (((-108) $ $) 119)) (-4125 (($ $ $) 118)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 114) (($ $ (-383 (-523))) 71)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ (-383 (-523)) $) 116) (($ $ (-383 (-523))) 115) (($ (-523) $) 78) (($ $ (-523)) 77) (($ (-383 (-523)) $) 75) (($ $ (-383 (-523))) 74)))
-(((-940) (-129)) (T -940))
-((-3584 (*1 *1 *1) (-4 *1 (-940))) (-3310 (*1 *2 *1) (|partial| -12 (-4 *1 (-940)) (-5 *2 (-794)))) (-2908 (*1 *2 *1) (|partial| -12 (-5 *2 (-1083 *1)) (-4 *1 (-940)))) (-3189 (*1 *2 *1) (|partial| -12 (-5 *2 (-1083 *1)) (-4 *1 (-940)))) (-2167 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1083 *1)) (-5 *3 (-852)) (-5 *4 (-794)) (-4 *1 (-940)))) (-2167 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1083 *1)) (-5 *3 (-852)) (-4 *1 (-940)))) (-4057 (*1 *2 *3) (-12 (-5 *3 (-1083 *1)) (-4 *1 (-940)) (-5 *2 (-589 *1)))) (-4057 (*1 *2 *3) (-12 (-5 *3 (-1083 (-383 (-523)))) (-5 *2 (-589 *1)) (-4 *1 (-940)))) (-4057 (*1 *2 *3) (-12 (-5 *3 (-1083 (-523))) (-5 *2 (-589 *1)) (-4 *1 (-940)))) (-4057 (*1 *2 *3) (-12 (-5 *3 (-883 *1)) (-4 *1 (-940)) (-5 *2 (-589 *1)))) (-4057 (*1 *2 *3) (-12 (-5 *3 (-883 (-383 (-523)))) (-5 *2 (-589 *1)) (-4 *1 (-940)))) (-4057 (*1 *2 *3) (-12 (-5 *3 (-883 (-523))) (-5 *2 (-589 *1)) (-4 *1 (-940)))) (-3584 (*1 *1 *1 *2) (-12 (-4 *1 (-940)) (-5 *2 (-710)))) (-3584 (*1 *1 *2) (-12 (-5 *2 (-383 (-523))) (-4 *1 (-940)))) (-3584 (*1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-940)))) (-2952 (*1 *1 *1 *2) (-12 (-4 *1 (-940)) (-5 *2 (-794)))) (-1517 (*1 *1 *1 *2) (-12 (-4 *1 (-940)) (-5 *2 (-794)))) (-2523 (*1 *2 *1 *1) (-12 (-4 *1 (-940)) (-5 *2 (-383 (-523))))))
-(-13 (-136) (-784) (-158) (-339) (-387 (-383 (-523))) (-37 (-523)) (-37 (-383 (-523))) (-930) (-10 -8 (-15 -3310 ((-3 (-794) "failed") $)) (-15 -2908 ((-3 (-1083 $) "failed") $)) (-15 -3189 ((-3 (-1083 $) "failed") $)) (-15 -2167 ((-3 $ "failed") (-1083 $) (-852) (-794))) (-15 -2167 ((-3 $ "failed") (-1083 $) (-852))) (-15 -4057 ((-589 $) (-1083 $))) (-15 -4057 ((-589 $) (-1083 (-383 (-523))))) (-15 -4057 ((-589 $) (-1083 (-523)))) (-15 -4057 ((-589 $) (-883 $))) (-15 -4057 ((-589 $) (-883 (-383 (-523))))) (-15 -4057 ((-589 $) (-883 (-523)))) (-15 -3584 ($ $ (-710))) (-15 -3584 ($ $)) (-15 -3584 ($ (-383 (-523)))) (-15 -3584 ($ (-523))) (-15 -2952 ($ $ (-794))) (-15 -1517 ($ $ (-794))) (-15 -2523 ((-383 (-523)) $ $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) . T) ((-37 #1=(-523)) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 #1# #1#) . T) ((-107 $ $) . T) ((-124) . T) ((-136) . T) ((-563 (-794)) . T) ((-158) . T) ((-221) . T) ((-267) . T) ((-284) . T) ((-339) . T) ((-387 (-383 (-523))) . T) ((-427) . T) ((-515) . T) ((-591 #0#) . T) ((-591 #1#) . T) ((-591 $) . T) ((-657 #0#) . T) ((-657 #1#) . T) ((-657 $) . T) ((-666) . T) ((-730) . T) ((-731) . T) ((-733) . T) ((-734) . T) ((-784) . T) ((-786) . T) ((-851) . T) ((-930) . T) ((-964 (-383 (-523))) . T) ((-964 (-523)) |has| (-383 (-523)) (-964 (-523))) ((-979 #0#) . T) ((-979 #1#) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1127) . T))
-((-4196 (((-2 (|:| |ans| |#2|) (|:| -2438 |#2|) (|:| |sol?| (-108))) (-523) |#2| |#2| (-1087) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-589 |#2|)) (-1 (-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 66)))
-(((-941 |#1| |#2|) (-10 -7 (-15 -4196 ((-2 (|:| |ans| |#2|) (|:| -2438 |#2|) (|:| |sol?| (-108))) (-523) |#2| |#2| (-1087) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-589 |#2|)) (-1 (-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-427) (-786) (-136) (-964 (-523)) (-585 (-523))) (-13 (-1109) (-27) (-406 |#1|))) (T -941))
-((-4196 (*1 *2 *3 *4 *4 *5 *6 *7) (-12 (-5 *5 (-1087)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-589 *4))) (-5 *7 (-1 (-3 (-2 (|:| -3699 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1109) (-27) (-406 *8))) (-4 *8 (-13 (-427) (-786) (-136) (-964 *3) (-585 *3))) (-5 *3 (-523)) (-5 *2 (-2 (|:| |ans| *4) (|:| -2438 *4) (|:| |sol?| (-108)))) (-5 *1 (-941 *8 *4)))))
-(-10 -7 (-15 -4196 ((-2 (|:| |ans| |#2|) (|:| -2438 |#2|) (|:| |sol?| (-108))) (-523) |#2| |#2| (-1087) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-589 |#2|)) (-1 (-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-2524 (((-3 (-589 |#2|) "failed") (-523) |#2| |#2| |#2| (-1087) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-589 |#2|)) (-1 (-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 53)))
-(((-942 |#1| |#2|) (-10 -7 (-15 -2524 ((-3 (-589 |#2|) "failed") (-523) |#2| |#2| |#2| (-1087) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-589 |#2|)) (-1 (-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-427) (-786) (-136) (-964 (-523)) (-585 (-523))) (-13 (-1109) (-27) (-406 |#1|))) (T -942))
-((-2524 (*1 *2 *3 *4 *4 *4 *5 *6 *7) (|partial| -12 (-5 *5 (-1087)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-589 *4))) (-5 *7 (-1 (-3 (-2 (|:| -3699 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1109) (-27) (-406 *8))) (-4 *8 (-13 (-427) (-786) (-136) (-964 *3) (-585 *3))) (-5 *3 (-523)) (-5 *2 (-589 *4)) (-5 *1 (-942 *8 *4)))))
-(-10 -7 (-15 -2524 ((-3 (-589 |#2|) "failed") (-523) |#2| |#2| |#2| (-1087) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-589 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-589 |#2|)) (-1 (-3 (-2 (|:| -3699 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-3284 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-108)))) (|:| -1747 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-523)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-523) (-1 |#2| |#2|)) 30)) (-2708 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-383 |#2|)) (|:| |c| (-383 |#2|)) (|:| -1425 |#2|)) "failed") (-383 |#2|) (-383 |#2|) (-1 |#2| |#2|)) 58)) (-2678 (((-2 (|:| |ans| (-383 |#2|)) (|:| |nosol| (-108))) (-383 |#2|) (-383 |#2|)) 63)))
-(((-943 |#1| |#2|) (-10 -7 (-15 -2708 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-383 |#2|)) (|:| |c| (-383 |#2|)) (|:| -1425 |#2|)) "failed") (-383 |#2|) (-383 |#2|) (-1 |#2| |#2|))) (-15 -2678 ((-2 (|:| |ans| (-383 |#2|)) (|:| |nosol| (-108))) (-383 |#2|) (-383 |#2|))) (-15 -3284 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-108)))) (|:| -1747 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-523)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-523) (-1 |#2| |#2|)))) (-13 (-339) (-136) (-964 (-523))) (-1145 |#1|)) (T -943))
-((-3284 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1145 *6)) (-4 *6 (-13 (-339) (-136) (-964 *4))) (-5 *4 (-523)) (-5 *2 (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-108)))) (|:| -1747 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-943 *6 *3)))) (-2678 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-339) (-136) (-964 (-523)))) (-4 *5 (-1145 *4)) (-5 *2 (-2 (|:| |ans| (-383 *5)) (|:| |nosol| (-108)))) (-5 *1 (-943 *4 *5)) (-5 *3 (-383 *5)))) (-2708 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-13 (-339) (-136) (-964 (-523)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-383 *6)) (|:| |c| (-383 *6)) (|:| -1425 *6))) (-5 *1 (-943 *5 *6)) (-5 *3 (-383 *6)))))
-(-10 -7 (-15 -2708 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-383 |#2|)) (|:| |c| (-383 |#2|)) (|:| -1425 |#2|)) "failed") (-383 |#2|) (-383 |#2|) (-1 |#2| |#2|))) (-15 -2678 ((-2 (|:| |ans| (-383 |#2|)) (|:| |nosol| (-108))) (-383 |#2|) (-383 |#2|))) (-15 -3284 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-108)))) (|:| -1747 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-523)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-523) (-1 |#2| |#2|))))
-((-1889 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-383 |#2|)) (|:| |h| |#2|) (|:| |c1| (-383 |#2|)) (|:| |c2| (-383 |#2|)) (|:| -1425 |#2|)) "failed") (-383 |#2|) (-383 |#2|) (-383 |#2|) (-1 |#2| |#2|)) 22)) (-1891 (((-3 (-589 (-383 |#2|)) "failed") (-383 |#2|) (-383 |#2|) (-383 |#2|)) 33)))
-(((-944 |#1| |#2|) (-10 -7 (-15 -1889 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-383 |#2|)) (|:| |h| |#2|) (|:| |c1| (-383 |#2|)) (|:| |c2| (-383 |#2|)) (|:| -1425 |#2|)) "failed") (-383 |#2|) (-383 |#2|) (-383 |#2|) (-1 |#2| |#2|))) (-15 -1891 ((-3 (-589 (-383 |#2|)) "failed") (-383 |#2|) (-383 |#2|) (-383 |#2|)))) (-13 (-339) (-136) (-964 (-523))) (-1145 |#1|)) (T -944))
-((-1891 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-339) (-136) (-964 (-523)))) (-4 *5 (-1145 *4)) (-5 *2 (-589 (-383 *5))) (-5 *1 (-944 *4 *5)) (-5 *3 (-383 *5)))) (-1889 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-13 (-339) (-136) (-964 (-523)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-383 *6)) (|:| |h| *6) (|:| |c1| (-383 *6)) (|:| |c2| (-383 *6)) (|:| -1425 *6))) (-5 *1 (-944 *5 *6)) (-5 *3 (-383 *6)))))
-(-10 -7 (-15 -1889 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-383 |#2|)) (|:| |h| |#2|) (|:| |c1| (-383 |#2|)) (|:| |c2| (-383 |#2|)) (|:| -1425 |#2|)) "failed") (-383 |#2|) (-383 |#2|) (-383 |#2|) (-1 |#2| |#2|))) (-15 -1891 ((-3 (-589 (-383 |#2|)) "failed") (-383 |#2|) (-383 |#2|) (-383 |#2|))))
-((-1286 (((-1 |#1|) (-589 (-2 (|:| -2058 |#1|) (|:| -1255 (-523))))) 37)) (-3994 (((-1 |#1|) (-1018 |#1|)) 45)) (-3982 (((-1 |#1|) (-1169 |#1|) (-1169 (-523)) (-523)) 34)))
-(((-945 |#1|) (-10 -7 (-15 -3994 ((-1 |#1|) (-1018 |#1|))) (-15 -1286 ((-1 |#1|) (-589 (-2 (|:| -2058 |#1|) (|:| -1255 (-523)))))) (-15 -3982 ((-1 |#1|) (-1169 |#1|) (-1169 (-523)) (-523)))) (-1016)) (T -945))
-((-3982 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1169 *6)) (-5 *4 (-1169 (-523))) (-5 *5 (-523)) (-4 *6 (-1016)) (-5 *2 (-1 *6)) (-5 *1 (-945 *6)))) (-1286 (*1 *2 *3) (-12 (-5 *3 (-589 (-2 (|:| -2058 *4) (|:| -1255 (-523))))) (-4 *4 (-1016)) (-5 *2 (-1 *4)) (-5 *1 (-945 *4)))) (-3994 (*1 *2 *3) (-12 (-5 *3 (-1018 *4)) (-4 *4 (-1016)) (-5 *2 (-1 *4)) (-5 *1 (-945 *4)))))
-(-10 -7 (-15 -3994 ((-1 |#1|) (-1018 |#1|))) (-15 -1286 ((-1 |#1|) (-589 (-2 (|:| -2058 |#1|) (|:| -1255 (-523)))))) (-15 -3982 ((-1 |#1|) (-1169 |#1|) (-1169 (-523)) (-523))))
-((-1500 (((-710) (-312 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
-(((-946 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1500 ((-710) (-312 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)))) (-339) (-1145 |#1|) (-1145 (-383 |#2|)) (-318 |#1| |#2| |#3|) (-13 (-344) (-339))) (T -946))
-((-1500 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-312 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-339)) (-4 *7 (-1145 *6)) (-4 *4 (-1145 (-383 *7))) (-4 *8 (-318 *6 *7 *4)) (-4 *9 (-13 (-344) (-339))) (-5 *2 (-710)) (-5 *1 (-946 *6 *7 *4 *8 *9)))))
-(-10 -7 (-15 -1500 ((-710) (-312 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
-((-1482 (((-3 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) "failed") |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) 31) (((-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-383 (-523))) 28)) (-3973 (((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-383 (-523))) 33) (((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-383 (-523))) 29) (((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) 32) (((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1|) 27)) (-3557 (((-589 (-383 (-523))) (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) 19)) (-2128 (((-383 (-523)) (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) 16)))
-(((-947 |#1|) (-10 -7 (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1|)) (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-383 (-523)))) (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-383 (-523)))) (-15 -1482 ((-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-383 (-523)))) (-15 -1482 ((-3 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) "failed") |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) (-15 -2128 ((-383 (-523)) (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) (-15 -3557 ((-589 (-383 (-523))) (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))))) (-1145 (-523))) (T -947))
-((-3557 (*1 *2 *3) (-12 (-5 *3 (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) (-5 *2 (-589 (-383 (-523)))) (-5 *1 (-947 *4)) (-4 *4 (-1145 (-523))))) (-2128 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) (-5 *2 (-383 (-523))) (-5 *1 (-947 *4)) (-4 *4 (-1145 (-523))))) (-1482 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) (-5 *1 (-947 *3)) (-4 *3 (-1145 (-523))))) (-1482 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) (-5 *4 (-383 (-523))) (-5 *1 (-947 *3)) (-4 *3 (-1145 (-523))))) (-3973 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-383 (-523))) (-5 *2 (-589 (-2 (|:| -2428 *5) (|:| -2438 *5)))) (-5 *1 (-947 *3)) (-4 *3 (-1145 (-523))) (-5 *4 (-2 (|:| -2428 *5) (|:| -2438 *5))))) (-3973 (*1 *2 *3 *4) (-12 (-5 *2 (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) (-5 *1 (-947 *3)) (-4 *3 (-1145 (-523))) (-5 *4 (-383 (-523))))) (-3973 (*1 *2 *3 *4) (-12 (-5 *2 (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) (-5 *1 (-947 *3)) (-4 *3 (-1145 (-523))) (-5 *4 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))))) (-3973 (*1 *2 *3) (-12 (-5 *2 (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) (-5 *1 (-947 *3)) (-4 *3 (-1145 (-523))))))
-(-10 -7 (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1|)) (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-383 (-523)))) (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-383 (-523)))) (-15 -1482 ((-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-383 (-523)))) (-15 -1482 ((-3 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) "failed") |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) (-15 -2128 ((-383 (-523)) (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) (-15 -3557 ((-589 (-383 (-523))) (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))))))
-((-1482 (((-3 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) "failed") |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) 35) (((-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-383 (-523))) 32)) (-3973 (((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-383 (-523))) 30) (((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-383 (-523))) 26) (((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) 28) (((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1|) 24)))
-(((-948 |#1|) (-10 -7 (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1|)) (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-383 (-523)))) (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-383 (-523)))) (-15 -1482 ((-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-383 (-523)))) (-15 -1482 ((-3 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) "failed") |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))))) (-1145 (-383 (-523)))) (T -948))
-((-1482 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) (-5 *1 (-948 *3)) (-4 *3 (-1145 (-383 (-523)))))) (-1482 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) (-5 *4 (-383 (-523))) (-5 *1 (-948 *3)) (-4 *3 (-1145 *4)))) (-3973 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-383 (-523))) (-5 *2 (-589 (-2 (|:| -2428 *5) (|:| -2438 *5)))) (-5 *1 (-948 *3)) (-4 *3 (-1145 *5)) (-5 *4 (-2 (|:| -2428 *5) (|:| -2438 *5))))) (-3973 (*1 *2 *3 *4) (-12 (-5 *4 (-383 (-523))) (-5 *2 (-589 (-2 (|:| -2428 *4) (|:| -2438 *4)))) (-5 *1 (-948 *3)) (-4 *3 (-1145 *4)))) (-3973 (*1 *2 *3 *4) (-12 (-5 *2 (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) (-5 *1 (-948 *3)) (-4 *3 (-1145 (-383 (-523)))) (-5 *4 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))))) (-3973 (*1 *2 *3) (-12 (-5 *2 (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) (-5 *1 (-948 *3)) (-4 *3 (-1145 (-383 (-523)))))))
-(-10 -7 (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1|)) (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))) (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-383 (-523)))) (-15 -3973 ((-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-383 (-523)))) (-15 -1482 ((-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-383 (-523)))) (-15 -1482 ((-3 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) "failed") |#1| (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))) (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))))
-((-3077 (((-203) $) 6) (((-355) $) 9)))
-(((-949) (-129)) (T -949))
-NIL
-(-13 (-564 (-203)) (-564 (-355)))
-(((-564 (-203)) . T) ((-564 (-355)) . T))
-((-3911 (((-589 (-355)) (-883 (-523)) (-355)) 28) (((-589 (-355)) (-883 (-383 (-523))) (-355)) 27)) (-1556 (((-589 (-589 (-355))) (-589 (-883 (-523))) (-589 (-1087)) (-355)) 37)))
-(((-950) (-10 -7 (-15 -3911 ((-589 (-355)) (-883 (-383 (-523))) (-355))) (-15 -3911 ((-589 (-355)) (-883 (-523)) (-355))) (-15 -1556 ((-589 (-589 (-355))) (-589 (-883 (-523))) (-589 (-1087)) (-355))))) (T -950))
-((-1556 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-589 (-883 (-523)))) (-5 *4 (-589 (-1087))) (-5 *2 (-589 (-589 (-355)))) (-5 *1 (-950)) (-5 *5 (-355)))) (-3911 (*1 *2 *3 *4) (-12 (-5 *3 (-883 (-523))) (-5 *2 (-589 (-355))) (-5 *1 (-950)) (-5 *4 (-355)))) (-3911 (*1 *2 *3 *4) (-12 (-5 *3 (-883 (-383 (-523)))) (-5 *2 (-589 (-355))) (-5 *1 (-950)) (-5 *4 (-355)))))
-(-10 -7 (-15 -3911 ((-589 (-355)) (-883 (-383 (-523))) (-355))) (-15 -3911 ((-589 (-355)) (-883 (-523)) (-355))) (-15 -1556 ((-589 (-589 (-355))) (-589 (-883 (-523))) (-589 (-1087)) (-355))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 70)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3584 (($ $) NIL) (($ $ (-710)) NIL) (($ (-383 (-523))) NIL) (($ (-523)) NIL)) (-3684 (((-108) $ $) NIL)) (-2035 (((-523) $) 65)) (-1640 (($) NIL T CONST)) (-2167 (((-3 $ "failed") (-1083 $) (-852) (-794)) NIL) (((-3 $ "failed") (-1083 $) (-852)) 50)) (-2898 (((-3 (-383 (-523)) "failed") $) NIL (|has| (-383 (-523)) (-964 (-383 (-523))))) (((-3 (-383 (-523)) "failed") $) NIL) (((-3 |#1| "failed") $) 108) (((-3 (-523) "failed") $) NIL (-3255 (|has| (-383 (-523)) (-964 (-523))) (|has| |#1| (-964 (-523)))))) (-1996 (((-383 (-523)) $) 15 (|has| (-383 (-523)) (-964 (-383 (-523))))) (((-383 (-523)) $) 15) ((|#1| $) 109) (((-523) $) NIL (-3255 (|has| (-383 (-523)) (-964 (-523))) (|has| |#1| (-964 (-523)))))) (-2952 (($ $ (-794)) 42)) (-1517 (($ $ (-794)) 43)) (-2501 (($ $ $) NIL)) (-3938 (((-383 (-523)) $ $) 19)) (-4211 (((-3 $ "failed") $) 83)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-3702 (((-108) $) 61)) (-3482 (((-108) $) NIL)) (-1324 (($ $ (-523)) NIL)) (-4050 (((-108) $) 64)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3189 (((-3 (-1083 $) "failed") $) 78)) (-3310 (((-3 (-794) "failed") $) 77)) (-2908 (((-3 (-1083 $) "failed") $) 75)) (-3052 (((-3 (-983 $ (-1083 $)) "failed") $) 73)) (-2012 (($ (-589 $)) NIL) (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 84)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ (-589 $)) NIL) (($ $ $) NIL)) (-3573 (((-394 $) $) NIL)) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-3976 (((-794) $) 82) (($ (-523)) NIL) (($ (-383 (-523))) NIL) (($ $) 58) (($ (-383 (-523))) NIL) (($ (-523)) NIL) (($ (-383 (-523))) NIL) (($ |#1|) 111)) (-1698 (((-710)) NIL)) (-3842 (((-108) $ $) NIL)) (-2523 (((-383 (-523)) $ $) 25)) (-4057 (((-589 $) (-1083 $)) 56) (((-589 $) (-1083 (-383 (-523)))) NIL) (((-589 $) (-1083 (-523))) NIL) (((-589 $) (-883 $)) NIL) (((-589 $) (-883 (-383 (-523)))) NIL) (((-589 $) (-883 (-523))) NIL)) (-3013 (($ (-983 $ (-1083 $)) (-794)) 41)) (-3984 (($ $) 20)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL)) (-1428 (($) 29 T CONST)) (-1440 (($) 35 T CONST)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 71)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 22)) (-4125 (($ $ $) 33)) (-4115 (($ $) 34) (($ $ $) 69)) (-4103 (($ $ $) 104)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL) (($ $ (-383 (-523))) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 92) (($ $ $) 97) (($ (-383 (-523)) $) NIL) (($ $ (-383 (-523))) NIL) (($ (-523) $) 92) (($ $ (-523)) NIL) (($ (-383 (-523)) $) NIL) (($ $ (-383 (-523))) NIL) (($ |#1| $) 96) (($ $ |#1|) NIL)))
-(((-951 |#1|) (-13 (-940) (-387 |#1|) (-37 |#1|) (-10 -8 (-15 -3013 ($ (-983 $ (-1083 $)) (-794))) (-15 -3052 ((-3 (-983 $ (-1083 $)) "failed") $)) (-15 -3938 ((-383 (-523)) $ $)))) (-13 (-784) (-339) (-949))) (T -951))
-((-3013 (*1 *1 *2 *3) (-12 (-5 *2 (-983 (-951 *4) (-1083 (-951 *4)))) (-5 *3 (-794)) (-5 *1 (-951 *4)) (-4 *4 (-13 (-784) (-339) (-949))))) (-3052 (*1 *2 *1) (|partial| -12 (-5 *2 (-983 (-951 *3) (-1083 (-951 *3)))) (-5 *1 (-951 *3)) (-4 *3 (-13 (-784) (-339) (-949))))) (-3938 (*1 *2 *1 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-951 *3)) (-4 *3 (-13 (-784) (-339) (-949))))))
-(-13 (-940) (-387 |#1|) (-37 |#1|) (-10 -8 (-15 -3013 ($ (-983 $ (-1083 $)) (-794))) (-15 -3052 ((-3 (-983 $ (-1083 $)) "failed") $)) (-15 -3938 ((-383 (-523)) $ $))))
-((-1983 (((-2 (|:| -1747 |#2|) (|:| -3362 (-589 |#1|))) |#2| (-589 |#1|)) 20) ((|#2| |#2| |#1|) 15)))
-(((-952 |#1| |#2|) (-10 -7 (-15 -1983 (|#2| |#2| |#1|)) (-15 -1983 ((-2 (|:| -1747 |#2|) (|:| -3362 (-589 |#1|))) |#2| (-589 |#1|)))) (-339) (-599 |#1|)) (T -952))
-((-1983 (*1 *2 *3 *4) (-12 (-4 *5 (-339)) (-5 *2 (-2 (|:| -1747 *3) (|:| -3362 (-589 *5)))) (-5 *1 (-952 *5 *3)) (-5 *4 (-589 *5)) (-4 *3 (-599 *5)))) (-1983 (*1 *2 *2 *3) (-12 (-4 *3 (-339)) (-5 *1 (-952 *3 *2)) (-4 *2 (-599 *3)))))
-(-10 -7 (-15 -1983 (|#2| |#2| |#1|)) (-15 -1983 ((-2 (|:| -1747 |#2|) (|:| -3362 (-589 |#1|))) |#2| (-589 |#1|))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-3477 ((|#1| $ |#1|) 14)) (-4101 ((|#1| $ |#1|) 12)) (-3997 (($ |#1|) 10)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-1502 ((|#1| $) 11)) (-1731 ((|#1| $) 13)) (-3976 (((-794) $) 21 (|has| |#1| (-1016)))) (-4037 (((-108) $ $) 9)))
-(((-953 |#1|) (-13 (-1123) (-10 -8 (-15 -3997 ($ |#1|)) (-15 -1502 (|#1| $)) (-15 -4101 (|#1| $ |#1|)) (-15 -1731 (|#1| $)) (-15 -3477 (|#1| $ |#1|)) (-15 -4037 ((-108) $ $)) (IF (|has| |#1| (-1016)) (-6 (-1016)) |%noBranch|))) (-1123)) (T -953))
-((-3997 (*1 *1 *2) (-12 (-5 *1 (-953 *2)) (-4 *2 (-1123)))) (-1502 (*1 *2 *1) (-12 (-5 *1 (-953 *2)) (-4 *2 (-1123)))) (-4101 (*1 *2 *1 *2) (-12 (-5 *1 (-953 *2)) (-4 *2 (-1123)))) (-1731 (*1 *2 *1) (-12 (-5 *1 (-953 *2)) (-4 *2 (-1123)))) (-3477 (*1 *2 *1 *2) (-12 (-5 *1 (-953 *2)) (-4 *2 (-1123)))) (-4037 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-953 *3)) (-4 *3 (-1123)))))
-(-13 (-1123) (-10 -8 (-15 -3997 ($ |#1|)) (-15 -1502 (|#1| $)) (-15 -4101 (|#1| $ |#1|)) (-15 -1731 (|#1| $)) (-15 -3477 (|#1| $ |#1|)) (-15 -4037 ((-108) $ $)) (IF (|has| |#1| (-1016)) (-6 (-1016)) |%noBranch|)))
-((-3260 (((-108) $ $) NIL)) (-2778 (((-589 (-2 (|:| -3922 $) (|:| -3439 (-589 |#4|)))) (-589 |#4|)) NIL)) (-2311 (((-589 $) (-589 |#4|)) 105) (((-589 $) (-589 |#4|) (-108)) 106) (((-589 $) (-589 |#4|) (-108) (-108)) 104) (((-589 $) (-589 |#4|) (-108) (-108) (-108) (-108)) 107)) (-3716 (((-589 |#3|) $) NIL)) (-2011 (((-108) $) NIL)) (-2821 (((-108) $) NIL (|has| |#1| (-515)))) (-3103 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-4165 ((|#4| |#4| $) NIL)) (-3763 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 $))) |#4| $) 99)) (-3400 (((-2 (|:| |under| $) (|:| -1250 $) (|:| |upper| $)) $ |#3|) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-1299 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248))) (((-3 |#4| "failed") $ |#3|) 54)) (-1640 (($) NIL T CONST)) (-1619 (((-108) $) 26 (|has| |#1| (-515)))) (-2927 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3685 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2457 (((-108) $) NIL (|has| |#1| (-515)))) (-3021 (((-589 |#4|) (-589 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2341 (((-589 |#4|) (-589 |#4|) $) NIL (|has| |#1| (-515)))) (-3450 (((-589 |#4|) (-589 |#4|) $) NIL (|has| |#1| (-515)))) (-2898 (((-3 $ "failed") (-589 |#4|)) NIL)) (-1996 (($ (-589 |#4|)) NIL)) (-3891 (((-3 $ "failed") $) 39)) (-3880 ((|#4| |#4| $) 57)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016))))) (-2231 (($ |#4| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-3143 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 73 (|has| |#1| (-515)))) (-3605 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-3058 ((|#4| |#4| $) NIL)) (-1830 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4248))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4248))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3161 (((-2 (|:| -3922 (-589 |#4|)) (|:| -3439 (-589 |#4|))) $) NIL)) (-2422 (((-108) |#4| $) NIL)) (-4171 (((-108) |#4| $) NIL)) (-3004 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2962 (((-2 (|:| |val| (-589 |#4|)) (|:| |towers| (-589 $))) (-589 |#4|) (-108) (-108)) 119)) (-3133 (((-589 |#4|) $) 16 (|has| $ (-6 -4248)))) (-2407 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2694 ((|#3| $) 33)) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#4|) $) 17 (|has| $ (-6 -4248)))) (-1348 (((-108) |#4| $) 25 (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016))))) (-3063 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#4| |#4|) $) 21)) (-4100 (((-589 |#3|) $) NIL)) (-2863 (((-108) |#3| $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-3726 (((-3 |#4| (-589 $)) |#4| |#4| $) NIL)) (-3216 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 $))) |#4| |#4| $) 97)) (-2247 (((-3 |#4| "failed") $) 37)) (-2818 (((-589 $) |#4| $) 80)) (-1446 (((-3 (-108) (-589 $)) |#4| $) NIL)) (-4226 (((-589 (-2 (|:| |val| (-108)) (|:| -2394 $))) |#4| $) 90) (((-108) |#4| $) 52)) (-1625 (((-589 $) |#4| $) 102) (((-589 $) (-589 |#4|) $) NIL) (((-589 $) (-589 |#4|) (-589 $)) 103) (((-589 $) |#4| (-589 $)) NIL)) (-1452 (((-589 $) (-589 |#4|) (-108) (-108) (-108)) 114)) (-2795 (($ |#4| $) 70) (($ (-589 |#4|) $) 71) (((-589 $) |#4| $ (-108) (-108) (-108) (-108) (-108)) 67)) (-3403 (((-589 |#4|) $) NIL)) (-3761 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1728 ((|#4| |#4| $) NIL)) (-1454 (((-108) $ $) NIL)) (-1916 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-515)))) (-2152 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2347 ((|#4| |#4| $) NIL)) (-2435 (((-1034) $) NIL)) (-3879 (((-3 |#4| "failed") $) 35)) (-2660 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-2594 (((-3 $ "failed") $ |#4|) 48)) (-1361 (($ $ |#4|) NIL) (((-589 $) |#4| $) 82) (((-589 $) |#4| (-589 $)) NIL) (((-589 $) (-589 |#4|) $) NIL) (((-589 $) (-589 |#4|) (-589 $)) 77)) (-2720 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 |#4|) (-589 |#4|)) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-271 |#4|)) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-589 (-271 |#4|))) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) 15)) (-4055 (($) 13)) (-1487 (((-710) $) NIL)) (-2452 (((-710) |#4| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016)))) (((-710) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) 12)) (-3077 (((-499) $) NIL (|has| |#4| (-564 (-499))))) (-3985 (($ (-589 |#4|)) 20)) (-4135 (($ $ |#3|) 42)) (-1318 (($ $ |#3|) 44)) (-3444 (($ $) NIL)) (-2023 (($ $ |#3|) NIL)) (-3976 (((-794) $) 31) (((-589 |#4|) $) 40)) (-3221 (((-710) $) NIL (|has| |#3| (-344)))) (-2459 (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3442 (((-108) $ (-1 (-108) |#4| (-589 |#4|))) NIL)) (-1611 (((-589 $) |#4| $) 79) (((-589 $) |#4| (-589 $)) NIL) (((-589 $) (-589 |#4|) $) NIL) (((-589 $) (-589 |#4|) (-589 $)) NIL)) (-1505 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-2969 (((-589 |#3|) $) NIL)) (-3553 (((-108) |#4| $) NIL)) (-4079 (((-108) |#3| $) 53)) (-4037 (((-108) $ $) NIL)) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-954 |#1| |#2| |#3| |#4|) (-13 (-992 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2795 ((-589 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -2311 ((-589 $) (-589 |#4|) (-108) (-108))) (-15 -2311 ((-589 $) (-589 |#4|) (-108) (-108) (-108) (-108))) (-15 -1452 ((-589 $) (-589 |#4|) (-108) (-108) (-108))) (-15 -2962 ((-2 (|:| |val| (-589 |#4|)) (|:| |towers| (-589 $))) (-589 |#4|) (-108) (-108))))) (-427) (-732) (-786) (-987 |#1| |#2| |#3|)) (T -954))
-((-2795 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-589 (-954 *5 *6 *7 *3))) (-5 *1 (-954 *5 *6 *7 *3)) (-4 *3 (-987 *5 *6 *7)))) (-2311 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-589 (-954 *5 *6 *7 *8))) (-5 *1 (-954 *5 *6 *7 *8)))) (-2311 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-589 (-954 *5 *6 *7 *8))) (-5 *1 (-954 *5 *6 *7 *8)))) (-1452 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-589 (-954 *5 *6 *7 *8))) (-5 *1 (-954 *5 *6 *7 *8)))) (-2962 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-987 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-589 *8)) (|:| |towers| (-589 (-954 *5 *6 *7 *8))))) (-5 *1 (-954 *5 *6 *7 *8)) (-5 *3 (-589 *8)))))
-(-13 (-992 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2795 ((-589 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -2311 ((-589 $) (-589 |#4|) (-108) (-108))) (-15 -2311 ((-589 $) (-589 |#4|) (-108) (-108) (-108) (-108))) (-15 -1452 ((-589 $) (-589 |#4|) (-108) (-108) (-108))) (-15 -2962 ((-2 (|:| |val| (-589 |#4|)) (|:| |towers| (-589 $))) (-589 |#4|) (-108) (-108)))))
-((-3602 (((-589 (-629 |#1|)) (-589 (-629 |#1|))) 57) (((-629 |#1|) (-629 |#1|)) 56) (((-589 (-629 |#1|)) (-589 (-629 |#1|)) (-589 (-629 |#1|))) 55) (((-629 |#1|) (-629 |#1|) (-629 |#1|)) 52)) (-3732 (((-589 (-629 |#1|)) (-589 (-629 |#1|)) (-852)) 51) (((-629 |#1|) (-629 |#1|) (-852)) 50)) (-1545 (((-589 (-629 (-523))) (-589 (-589 (-523)))) 67) (((-589 (-629 (-523))) (-589 (-836 (-523))) (-523)) 66) (((-629 (-523)) (-589 (-523))) 63) (((-629 (-523)) (-836 (-523)) (-523)) 62)) (-1414 (((-629 (-883 |#1|)) (-710)) 80)) (-1515 (((-589 (-629 |#1|)) (-589 (-629 |#1|)) (-852)) 36 (|has| |#1| (-6 (-4250 "*")))) (((-629 |#1|) (-629 |#1|) (-852)) 34 (|has| |#1| (-6 (-4250 "*"))))))
-(((-955 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4250 "*"))) (-15 -1515 ((-629 |#1|) (-629 |#1|) (-852))) |%noBranch|) (IF (|has| |#1| (-6 (-4250 "*"))) (-15 -1515 ((-589 (-629 |#1|)) (-589 (-629 |#1|)) (-852))) |%noBranch|) (-15 -1414 ((-629 (-883 |#1|)) (-710))) (-15 -3732 ((-629 |#1|) (-629 |#1|) (-852))) (-15 -3732 ((-589 (-629 |#1|)) (-589 (-629 |#1|)) (-852))) (-15 -3602 ((-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -3602 ((-589 (-629 |#1|)) (-589 (-629 |#1|)) (-589 (-629 |#1|)))) (-15 -3602 ((-629 |#1|) (-629 |#1|))) (-15 -3602 ((-589 (-629 |#1|)) (-589 (-629 |#1|)))) (-15 -1545 ((-629 (-523)) (-836 (-523)) (-523))) (-15 -1545 ((-629 (-523)) (-589 (-523)))) (-15 -1545 ((-589 (-629 (-523))) (-589 (-836 (-523))) (-523))) (-15 -1545 ((-589 (-629 (-523))) (-589 (-589 (-523)))))) (-973)) (T -955))
-((-1545 (*1 *2 *3) (-12 (-5 *3 (-589 (-589 (-523)))) (-5 *2 (-589 (-629 (-523)))) (-5 *1 (-955 *4)) (-4 *4 (-973)))) (-1545 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-836 (-523)))) (-5 *4 (-523)) (-5 *2 (-589 (-629 *4))) (-5 *1 (-955 *5)) (-4 *5 (-973)))) (-1545 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-629 (-523))) (-5 *1 (-955 *4)) (-4 *4 (-973)))) (-1545 (*1 *2 *3 *4) (-12 (-5 *3 (-836 (-523))) (-5 *4 (-523)) (-5 *2 (-629 *4)) (-5 *1 (-955 *5)) (-4 *5 (-973)))) (-3602 (*1 *2 *2) (-12 (-5 *2 (-589 (-629 *3))) (-4 *3 (-973)) (-5 *1 (-955 *3)))) (-3602 (*1 *2 *2) (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-955 *3)))) (-3602 (*1 *2 *2 *2) (-12 (-5 *2 (-589 (-629 *3))) (-4 *3 (-973)) (-5 *1 (-955 *3)))) (-3602 (*1 *2 *2 *2) (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-955 *3)))) (-3732 (*1 *2 *2 *3) (-12 (-5 *2 (-589 (-629 *4))) (-5 *3 (-852)) (-4 *4 (-973)) (-5 *1 (-955 *4)))) (-3732 (*1 *2 *2 *3) (-12 (-5 *2 (-629 *4)) (-5 *3 (-852)) (-4 *4 (-973)) (-5 *1 (-955 *4)))) (-1414 (*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-629 (-883 *4))) (-5 *1 (-955 *4)) (-4 *4 (-973)))) (-1515 (*1 *2 *2 *3) (-12 (-5 *2 (-589 (-629 *4))) (-5 *3 (-852)) (|has| *4 (-6 (-4250 "*"))) (-4 *4 (-973)) (-5 *1 (-955 *4)))) (-1515 (*1 *2 *2 *3) (-12 (-5 *2 (-629 *4)) (-5 *3 (-852)) (|has| *4 (-6 (-4250 "*"))) (-4 *4 (-973)) (-5 *1 (-955 *4)))))
-(-10 -7 (IF (|has| |#1| (-6 (-4250 "*"))) (-15 -1515 ((-629 |#1|) (-629 |#1|) (-852))) |%noBranch|) (IF (|has| |#1| (-6 (-4250 "*"))) (-15 -1515 ((-589 (-629 |#1|)) (-589 (-629 |#1|)) (-852))) |%noBranch|) (-15 -1414 ((-629 (-883 |#1|)) (-710))) (-15 -3732 ((-629 |#1|) (-629 |#1|) (-852))) (-15 -3732 ((-589 (-629 |#1|)) (-589 (-629 |#1|)) (-852))) (-15 -3602 ((-629 |#1|) (-629 |#1|) (-629 |#1|))) (-15 -3602 ((-589 (-629 |#1|)) (-589 (-629 |#1|)) (-589 (-629 |#1|)))) (-15 -3602 ((-629 |#1|) (-629 |#1|))) (-15 -3602 ((-589 (-629 |#1|)) (-589 (-629 |#1|)))) (-15 -1545 ((-629 (-523)) (-836 (-523)) (-523))) (-15 -1545 ((-629 (-523)) (-589 (-523)))) (-15 -1545 ((-589 (-629 (-523))) (-589 (-836 (-523))) (-523))) (-15 -1545 ((-589 (-629 (-523))) (-589 (-589 (-523))))))
-((-3957 (((-629 |#1|) (-589 (-629 |#1|)) (-1169 |#1|)) 51 (|has| |#1| (-284)))) (-1380 (((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)) (-1169 (-1169 |#1|))) 75 (|has| |#1| (-339))) (((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)) (-1169 |#1|)) 73 (|has| |#1| (-339)))) (-2353 (((-1169 |#1|) (-589 (-1169 |#1|)) (-523)) 77 (-12 (|has| |#1| (-339)) (|has| |#1| (-344))))) (-2318 (((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)) (-852)) 82 (-12 (|has| |#1| (-339)) (|has| |#1| (-344)))) (((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)) (-108)) 80 (-12 (|has| |#1| (-339)) (|has| |#1| (-344)))) (((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|))) 79 (-12 (|has| |#1| (-339)) (|has| |#1| (-344)))) (((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)) (-108) (-523) (-523)) 78 (-12 (|has| |#1| (-339)) (|has| |#1| (-344))))) (-3108 (((-108) (-589 (-629 |#1|))) 71 (|has| |#1| (-339))) (((-108) (-589 (-629 |#1|)) (-523)) 70 (|has| |#1| (-339)))) (-1985 (((-1169 (-1169 |#1|)) (-589 (-629 |#1|)) (-1169 |#1|)) 49 (|has| |#1| (-284)))) (-2560 (((-629 |#1|) (-589 (-629 |#1|)) (-629 |#1|)) 34)) (-3618 (((-629 |#1|) (-1169 (-1169 |#1|))) 31)) (-3278 (((-629 |#1|) (-589 (-629 |#1|)) (-589 (-629 |#1|)) (-523)) 66 (|has| |#1| (-339))) (((-629 |#1|) (-589 (-629 |#1|)) (-589 (-629 |#1|))) 65 (|has| |#1| (-339))) (((-629 |#1|) (-589 (-629 |#1|)) (-589 (-629 |#1|)) (-108) (-523)) 64 (|has| |#1| (-339)))))
-(((-956 |#1|) (-10 -7 (-15 -3618 ((-629 |#1|) (-1169 (-1169 |#1|)))) (-15 -2560 ((-629 |#1|) (-589 (-629 |#1|)) (-629 |#1|))) (IF (|has| |#1| (-284)) (PROGN (-15 -1985 ((-1169 (-1169 |#1|)) (-589 (-629 |#1|)) (-1169 |#1|))) (-15 -3957 ((-629 |#1|) (-589 (-629 |#1|)) (-1169 |#1|)))) |%noBranch|) (IF (|has| |#1| (-339)) (PROGN (-15 -3278 ((-629 |#1|) (-589 (-629 |#1|)) (-589 (-629 |#1|)) (-108) (-523))) (-15 -3278 ((-629 |#1|) (-589 (-629 |#1|)) (-589 (-629 |#1|)))) (-15 -3278 ((-629 |#1|) (-589 (-629 |#1|)) (-589 (-629 |#1|)) (-523))) (-15 -3108 ((-108) (-589 (-629 |#1|)) (-523))) (-15 -3108 ((-108) (-589 (-629 |#1|)))) (-15 -1380 ((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)) (-1169 |#1|))) (-15 -1380 ((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)) (-1169 (-1169 |#1|))))) |%noBranch|) (IF (|has| |#1| (-344)) (IF (|has| |#1| (-339)) (PROGN (-15 -2318 ((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)) (-108) (-523) (-523))) (-15 -2318 ((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)))) (-15 -2318 ((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)) (-108))) (-15 -2318 ((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)) (-852))) (-15 -2353 ((-1169 |#1|) (-589 (-1169 |#1|)) (-523)))) |%noBranch|) |%noBranch|)) (-973)) (T -956))
-((-2353 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-1169 *5))) (-5 *4 (-523)) (-5 *2 (-1169 *5)) (-5 *1 (-956 *5)) (-4 *5 (-339)) (-4 *5 (-344)) (-4 *5 (-973)))) (-2318 (*1 *2 *3 *4) (-12 (-5 *4 (-852)) (-4 *5 (-339)) (-4 *5 (-344)) (-4 *5 (-973)) (-5 *2 (-589 (-589 (-629 *5)))) (-5 *1 (-956 *5)) (-5 *3 (-589 (-629 *5))))) (-2318 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-339)) (-4 *5 (-344)) (-4 *5 (-973)) (-5 *2 (-589 (-589 (-629 *5)))) (-5 *1 (-956 *5)) (-5 *3 (-589 (-629 *5))))) (-2318 (*1 *2 *3) (-12 (-4 *4 (-339)) (-4 *4 (-344)) (-4 *4 (-973)) (-5 *2 (-589 (-589 (-629 *4)))) (-5 *1 (-956 *4)) (-5 *3 (-589 (-629 *4))))) (-2318 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-108)) (-5 *5 (-523)) (-4 *6 (-339)) (-4 *6 (-344)) (-4 *6 (-973)) (-5 *2 (-589 (-589 (-629 *6)))) (-5 *1 (-956 *6)) (-5 *3 (-589 (-629 *6))))) (-1380 (*1 *2 *3 *4) (-12 (-5 *4 (-1169 (-1169 *5))) (-4 *5 (-339)) (-4 *5 (-973)) (-5 *2 (-589 (-589 (-629 *5)))) (-5 *1 (-956 *5)) (-5 *3 (-589 (-629 *5))))) (-1380 (*1 *2 *3 *4) (-12 (-5 *4 (-1169 *5)) (-4 *5 (-339)) (-4 *5 (-973)) (-5 *2 (-589 (-589 (-629 *5)))) (-5 *1 (-956 *5)) (-5 *3 (-589 (-629 *5))))) (-3108 (*1 *2 *3) (-12 (-5 *3 (-589 (-629 *4))) (-4 *4 (-339)) (-4 *4 (-973)) (-5 *2 (-108)) (-5 *1 (-956 *4)))) (-3108 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-629 *5))) (-5 *4 (-523)) (-4 *5 (-339)) (-4 *5 (-973)) (-5 *2 (-108)) (-5 *1 (-956 *5)))) (-3278 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-589 (-629 *5))) (-5 *4 (-523)) (-5 *2 (-629 *5)) (-5 *1 (-956 *5)) (-4 *5 (-339)) (-4 *5 (-973)))) (-3278 (*1 *2 *3 *3) (-12 (-5 *3 (-589 (-629 *4))) (-5 *2 (-629 *4)) (-5 *1 (-956 *4)) (-4 *4 (-339)) (-4 *4 (-973)))) (-3278 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-589 (-629 *6))) (-5 *4 (-108)) (-5 *5 (-523)) (-5 *2 (-629 *6)) (-5 *1 (-956 *6)) (-4 *6 (-339)) (-4 *6 (-973)))) (-3957 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-629 *5))) (-5 *4 (-1169 *5)) (-4 *5 (-284)) (-4 *5 (-973)) (-5 *2 (-629 *5)) (-5 *1 (-956 *5)))) (-1985 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-629 *5))) (-4 *5 (-284)) (-4 *5 (-973)) (-5 *2 (-1169 (-1169 *5))) (-5 *1 (-956 *5)) (-5 *4 (-1169 *5)))) (-2560 (*1 *2 *3 *2) (-12 (-5 *3 (-589 (-629 *4))) (-5 *2 (-629 *4)) (-4 *4 (-973)) (-5 *1 (-956 *4)))) (-3618 (*1 *2 *3) (-12 (-5 *3 (-1169 (-1169 *4))) (-4 *4 (-973)) (-5 *2 (-629 *4)) (-5 *1 (-956 *4)))))
-(-10 -7 (-15 -3618 ((-629 |#1|) (-1169 (-1169 |#1|)))) (-15 -2560 ((-629 |#1|) (-589 (-629 |#1|)) (-629 |#1|))) (IF (|has| |#1| (-284)) (PROGN (-15 -1985 ((-1169 (-1169 |#1|)) (-589 (-629 |#1|)) (-1169 |#1|))) (-15 -3957 ((-629 |#1|) (-589 (-629 |#1|)) (-1169 |#1|)))) |%noBranch|) (IF (|has| |#1| (-339)) (PROGN (-15 -3278 ((-629 |#1|) (-589 (-629 |#1|)) (-589 (-629 |#1|)) (-108) (-523))) (-15 -3278 ((-629 |#1|) (-589 (-629 |#1|)) (-589 (-629 |#1|)))) (-15 -3278 ((-629 |#1|) (-589 (-629 |#1|)) (-589 (-629 |#1|)) (-523))) (-15 -3108 ((-108) (-589 (-629 |#1|)) (-523))) (-15 -3108 ((-108) (-589 (-629 |#1|)))) (-15 -1380 ((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)) (-1169 |#1|))) (-15 -1380 ((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)) (-1169 (-1169 |#1|))))) |%noBranch|) (IF (|has| |#1| (-344)) (IF (|has| |#1| (-339)) (PROGN (-15 -2318 ((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)) (-108) (-523) (-523))) (-15 -2318 ((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)))) (-15 -2318 ((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)) (-108))) (-15 -2318 ((-589 (-589 (-629 |#1|))) (-589 (-629 |#1|)) (-852))) (-15 -2353 ((-1169 |#1|) (-589 (-1169 |#1|)) (-523)))) |%noBranch|) |%noBranch|))
-((-3744 ((|#1| (-852) |#1|) 9)))
-(((-957 |#1|) (-10 -7 (-15 -3744 (|#1| (-852) |#1|))) (-13 (-1016) (-10 -8 (-15 -4103 ($ $ $))))) (T -957))
-((-3744 (*1 *2 *3 *2) (-12 (-5 *3 (-852)) (-5 *1 (-957 *2)) (-4 *2 (-13 (-1016) (-10 -8 (-15 -4103 ($ $ $))))))))
-(-10 -7 (-15 -3744 (|#1| (-852) |#1|)))
-((-3680 (((-589 (-2 (|:| |radval| (-292 (-523))) (|:| |radmult| (-523)) (|:| |radvect| (-589 (-629 (-292 (-523))))))) (-629 (-383 (-883 (-523))))) 59)) (-2929 (((-589 (-629 (-292 (-523)))) (-292 (-523)) (-629 (-383 (-883 (-523))))) 48)) (-2417 (((-589 (-292 (-523))) (-629 (-383 (-883 (-523))))) 41)) (-2555 (((-589 (-629 (-292 (-523)))) (-629 (-383 (-883 (-523))))) 69)) (-3231 (((-629 (-292 (-523))) (-629 (-292 (-523)))) 34)) (-2281 (((-589 (-629 (-292 (-523)))) (-589 (-629 (-292 (-523))))) 62)) (-2453 (((-3 (-629 (-292 (-523))) "failed") (-629 (-383 (-883 (-523))))) 66)))
-(((-958) (-10 -7 (-15 -3680 ((-589 (-2 (|:| |radval| (-292 (-523))) (|:| |radmult| (-523)) (|:| |radvect| (-589 (-629 (-292 (-523))))))) (-629 (-383 (-883 (-523)))))) (-15 -2929 ((-589 (-629 (-292 (-523)))) (-292 (-523)) (-629 (-383 (-883 (-523)))))) (-15 -2417 ((-589 (-292 (-523))) (-629 (-383 (-883 (-523)))))) (-15 -2453 ((-3 (-629 (-292 (-523))) "failed") (-629 (-383 (-883 (-523)))))) (-15 -3231 ((-629 (-292 (-523))) (-629 (-292 (-523))))) (-15 -2281 ((-589 (-629 (-292 (-523)))) (-589 (-629 (-292 (-523)))))) (-15 -2555 ((-589 (-629 (-292 (-523)))) (-629 (-383 (-883 (-523)))))))) (T -958))
-((-2555 (*1 *2 *3) (-12 (-5 *3 (-629 (-383 (-883 (-523))))) (-5 *2 (-589 (-629 (-292 (-523))))) (-5 *1 (-958)))) (-2281 (*1 *2 *2) (-12 (-5 *2 (-589 (-629 (-292 (-523))))) (-5 *1 (-958)))) (-3231 (*1 *2 *2) (-12 (-5 *2 (-629 (-292 (-523)))) (-5 *1 (-958)))) (-2453 (*1 *2 *3) (|partial| -12 (-5 *3 (-629 (-383 (-883 (-523))))) (-5 *2 (-629 (-292 (-523)))) (-5 *1 (-958)))) (-2417 (*1 *2 *3) (-12 (-5 *3 (-629 (-383 (-883 (-523))))) (-5 *2 (-589 (-292 (-523)))) (-5 *1 (-958)))) (-2929 (*1 *2 *3 *4) (-12 (-5 *4 (-629 (-383 (-883 (-523))))) (-5 *2 (-589 (-629 (-292 (-523))))) (-5 *1 (-958)) (-5 *3 (-292 (-523))))) (-3680 (*1 *2 *3) (-12 (-5 *3 (-629 (-383 (-883 (-523))))) (-5 *2 (-589 (-2 (|:| |radval| (-292 (-523))) (|:| |radmult| (-523)) (|:| |radvect| (-589 (-629 (-292 (-523)))))))) (-5 *1 (-958)))))
-(-10 -7 (-15 -3680 ((-589 (-2 (|:| |radval| (-292 (-523))) (|:| |radmult| (-523)) (|:| |radvect| (-589 (-629 (-292 (-523))))))) (-629 (-383 (-883 (-523)))))) (-15 -2929 ((-589 (-629 (-292 (-523)))) (-292 (-523)) (-629 (-383 (-883 (-523)))))) (-15 -2417 ((-589 (-292 (-523))) (-629 (-383 (-883 (-523)))))) (-15 -2453 ((-3 (-629 (-292 (-523))) "failed") (-629 (-383 (-883 (-523)))))) (-15 -3231 ((-629 (-292 (-523))) (-629 (-292 (-523))))) (-15 -2281 ((-589 (-629 (-292 (-523)))) (-589 (-629 (-292 (-523)))))) (-15 -2555 ((-589 (-629 (-292 (-523)))) (-629 (-383 (-883 (-523)))))))
-((-1998 ((|#1| |#1| (-852)) 9)))
-(((-959 |#1|) (-10 -7 (-15 -1998 (|#1| |#1| (-852)))) (-13 (-1016) (-10 -8 (-15 * ($ $ $))))) (T -959))
-((-1998 (*1 *2 *2 *3) (-12 (-5 *3 (-852)) (-5 *1 (-959 *2)) (-4 *2 (-13 (-1016) (-10 -8 (-15 * ($ $ $))))))))
-(-10 -7 (-15 -1998 (|#1| |#1| (-852))))
-((-3976 ((|#1| (-288)) 11) (((-1174) |#1|) 9)))
-(((-960 |#1|) (-10 -7 (-15 -3976 ((-1174) |#1|)) (-15 -3976 (|#1| (-288)))) (-1123)) (T -960))
-((-3976 (*1 *2 *3) (-12 (-5 *3 (-288)) (-5 *1 (-960 *2)) (-4 *2 (-1123)))) (-3976 (*1 *2 *3) (-12 (-5 *2 (-1174)) (-5 *1 (-960 *3)) (-4 *3 (-1123)))))
-(-10 -7 (-15 -3976 ((-1174) |#1|)) (-15 -3976 (|#1| (-288))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-1830 (($ |#4|) 25)) (-4211 (((-3 $ "failed") $) NIL)) (-3482 (((-108) $) NIL)) (-1816 ((|#4| $) 27)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 46) (($ (-523)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-1698 (((-710)) 43)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 21 T CONST)) (-1440 (($) 23 T CONST)) (-4037 (((-108) $ $) 40)) (-4115 (($ $) 31) (($ $ $) NIL)) (-4103 (($ $ $) 29)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 36) (($ $ $) 33) (($ |#1| $) 38) (($ $ |#1|) NIL)))
-(((-961 |#1| |#2| |#3| |#4| |#5|) (-13 (-158) (-37 |#1|) (-10 -8 (-15 -1830 ($ |#4|)) (-15 -3976 ($ |#4|)) (-15 -1816 (|#4| $)))) (-339) (-732) (-786) (-880 |#1| |#2| |#3|) (-589 |#4|)) (T -961))
-((-1830 (*1 *1 *2) (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-961 *3 *4 *5 *2 *6)) (-4 *2 (-880 *3 *4 *5)) (-14 *6 (-589 *2)))) (-3976 (*1 *1 *2) (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-961 *3 *4 *5 *2 *6)) (-4 *2 (-880 *3 *4 *5)) (-14 *6 (-589 *2)))) (-1816 (*1 *2 *1) (-12 (-4 *2 (-880 *3 *4 *5)) (-5 *1 (-961 *3 *4 *5 *2 *6)) (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-14 *6 (-589 *2)))))
-(-13 (-158) (-37 |#1|) (-10 -8 (-15 -1830 ($ |#4|)) (-15 -3976 ($ |#4|)) (-15 -1816 (|#4| $))))
-((-3260 (((-108) $ $) NIL (-3255 (|has| (-51) (-1016)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016))))) (-2340 (($) NIL) (($ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) NIL)) (-1666 (((-1174) $ (-1087) (-1087)) NIL (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) NIL)) (-2944 (((-108) (-108)) 39)) (-3516 (((-108) (-108)) 38)) (-4101 (((-51) $ (-1087) (-51)) NIL)) (-3627 (($ (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248)))) (-2521 (((-3 (-51) "failed") (-1087) $) NIL)) (-1640 (($) NIL T CONST)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016))))) (-1869 (($ (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) $) NIL (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-3 (-51) "failed") (-1087) $) NIL)) (-2231 (($ (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (($ (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248)))) (-1830 (((-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $ (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (((-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $ (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) NIL (|has| $ (-6 -4248))) (((-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248)))) (-3073 (((-51) $ (-1087) (-51)) NIL (|has| $ (-6 -4249)))) (-3002 (((-51) $ (-1087)) NIL)) (-3133 (((-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-589 (-51)) $) NIL (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-1087) $) NIL (|has| (-1087) (-786)))) (-3056 (((-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-589 (-51)) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-51) (-1016))))) (-2133 (((-1087) $) NIL (|has| (-1087) (-786)))) (-3063 (($ (-1 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4249))) (($ (-1 (-51) (-51)) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL) (($ (-1 (-51) (-51)) $) NIL) (($ (-1 (-51) (-51) (-51)) $ $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (-3255 (|has| (-51) (-1016)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016))))) (-1612 (((-589 (-1087)) $) 34)) (-2754 (((-108) (-1087) $) NIL)) (-2349 (((-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) $) NIL)) (-3862 (($ (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) $) NIL)) (-2909 (((-589 (-1087)) $) NIL)) (-2290 (((-108) (-1087) $) NIL)) (-2435 (((-1034) $) NIL (-3255 (|has| (-51) (-1016)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016))))) (-3879 (((-51) $) NIL (|has| (-1087) (-786)))) (-2660 (((-3 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) "failed") (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL)) (-2408 (($ $ (-51)) NIL (|has| $ (-6 -4249)))) (-1322 (((-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) $) NIL)) (-2720 (((-108) (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))))) NIL (-12 (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (($ $ (-271 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) NIL (-12 (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (($ $ (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) NIL (-12 (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (($ $ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) NIL (-12 (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (($ $ (-589 (-51)) (-589 (-51))) NIL (-12 (|has| (-51) (-286 (-51))) (|has| (-51) (-1016)))) (($ $ (-51) (-51)) NIL (-12 (|has| (-51) (-286 (-51))) (|has| (-51) (-1016)))) (($ $ (-271 (-51))) NIL (-12 (|has| (-51) (-286 (-51))) (|has| (-51) (-1016)))) (($ $ (-589 (-271 (-51)))) NIL (-12 (|has| (-51) (-286 (-51))) (|has| (-51) (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-51) (-1016))))) (-3184 (((-589 (-51)) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 (((-51) $ (-1087)) 35) (((-51) $ (-1087) (-51)) NIL)) (-1771 (($) NIL) (($ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) NIL)) (-2452 (((-710) (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (((-710) (-51) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-51) (-1016)))) (((-710) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-564 (-499))))) (-3985 (($ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) NIL)) (-3976 (((-794) $) 37 (-3255 (|has| (-51) (-563 (-794))) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-563 (-794)))))) (-1245 (($ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) NIL)) (-1505 (((-108) (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (-3255 (|has| (-51) (-1016)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016))))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-962) (-13 (-1100 (-1087) (-51)) (-10 -7 (-15 -2944 ((-108) (-108))) (-15 -3516 ((-108) (-108))) (-6 -4248)))) (T -962))
-((-2944 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-962)))) (-3516 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-962)))))
-(-13 (-1100 (-1087) (-51)) (-10 -7 (-15 -2944 ((-108) (-108))) (-15 -3516 ((-108) (-108))) (-6 -4248)))
-((-1996 ((|#2| $) 10)))
-(((-963 |#1| |#2|) (-10 -8 (-15 -1996 (|#2| |#1|))) (-964 |#2|) (-1123)) (T -963))
-NIL
-(-10 -8 (-15 -1996 (|#2| |#1|)))
-((-2898 (((-3 |#1| "failed") $) 7)) (-1996 ((|#1| $) 8)) (-3976 (($ |#1|) 6)))
-(((-964 |#1|) (-129) (-1123)) (T -964))
-((-1996 (*1 *2 *1) (-12 (-4 *1 (-964 *2)) (-4 *2 (-1123)))) (-2898 (*1 *2 *1) (|partial| -12 (-4 *1 (-964 *2)) (-4 *2 (-1123)))) (-3976 (*1 *1 *2) (-12 (-4 *1 (-964 *2)) (-4 *2 (-1123)))))
-(-13 (-10 -8 (-15 -3976 ($ |t#1|)) (-15 -2898 ((-3 |t#1| "failed") $)) (-15 -1996 (|t#1| $))))
-((-3729 (((-589 (-589 (-271 (-383 (-883 |#2|))))) (-589 (-883 |#2|)) (-589 (-1087))) 38)))
-(((-965 |#1| |#2|) (-10 -7 (-15 -3729 ((-589 (-589 (-271 (-383 (-883 |#2|))))) (-589 (-883 |#2|)) (-589 (-1087))))) (-515) (-13 (-515) (-964 |#1|))) (T -965))
-((-3729 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-883 *6))) (-5 *4 (-589 (-1087))) (-4 *6 (-13 (-515) (-964 *5))) (-4 *5 (-515)) (-5 *2 (-589 (-589 (-271 (-383 (-883 *6)))))) (-5 *1 (-965 *5 *6)))))
-(-10 -7 (-15 -3729 ((-589 (-589 (-271 (-383 (-883 |#2|))))) (-589 (-883 |#2|)) (-589 (-1087)))))
-((-2706 (((-355)) 15)) (-3994 (((-1 (-355)) (-355) (-355)) 20)) (-1425 (((-1 (-355)) (-710)) 43)) (-2682 (((-355)) 34)) (-2031 (((-1 (-355)) (-355) (-355)) 35)) (-3639 (((-355)) 26)) (-2960 (((-1 (-355)) (-355)) 27)) (-2514 (((-355) (-710)) 38)) (-1783 (((-1 (-355)) (-710)) 39)) (-3894 (((-1 (-355)) (-710) (-710)) 42)) (-3364 (((-1 (-355)) (-710) (-710)) 40)))
-(((-966) (-10 -7 (-15 -2706 ((-355))) (-15 -2682 ((-355))) (-15 -3639 ((-355))) (-15 -2514 ((-355) (-710))) (-15 -3994 ((-1 (-355)) (-355) (-355))) (-15 -2031 ((-1 (-355)) (-355) (-355))) (-15 -2960 ((-1 (-355)) (-355))) (-15 -1783 ((-1 (-355)) (-710))) (-15 -3364 ((-1 (-355)) (-710) (-710))) (-15 -3894 ((-1 (-355)) (-710) (-710))) (-15 -1425 ((-1 (-355)) (-710))))) (T -966))
-((-1425 (*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1 (-355))) (-5 *1 (-966)))) (-3894 (*1 *2 *3 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1 (-355))) (-5 *1 (-966)))) (-3364 (*1 *2 *3 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1 (-355))) (-5 *1 (-966)))) (-1783 (*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1 (-355))) (-5 *1 (-966)))) (-2960 (*1 *2 *3) (-12 (-5 *2 (-1 (-355))) (-5 *1 (-966)) (-5 *3 (-355)))) (-2031 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-355))) (-5 *1 (-966)) (-5 *3 (-355)))) (-3994 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-355))) (-5 *1 (-966)) (-5 *3 (-355)))) (-2514 (*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-355)) (-5 *1 (-966)))) (-3639 (*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-966)))) (-2682 (*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-966)))) (-2706 (*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-966)))))
-(-10 -7 (-15 -2706 ((-355))) (-15 -2682 ((-355))) (-15 -3639 ((-355))) (-15 -2514 ((-355) (-710))) (-15 -3994 ((-1 (-355)) (-355) (-355))) (-15 -2031 ((-1 (-355)) (-355) (-355))) (-15 -2960 ((-1 (-355)) (-355))) (-15 -1783 ((-1 (-355)) (-710))) (-15 -3364 ((-1 (-355)) (-710) (-710))) (-15 -3894 ((-1 (-355)) (-710) (-710))) (-15 -1425 ((-1 (-355)) (-710))))
-((-3573 (((-394 |#1|) |#1|) 33)))
-(((-967 |#1|) (-10 -7 (-15 -3573 ((-394 |#1|) |#1|))) (-1145 (-383 (-883 (-523))))) (T -967))
-((-3573 (*1 *2 *3) (-12 (-5 *2 (-394 *3)) (-5 *1 (-967 *3)) (-4 *3 (-1145 (-383 (-883 (-523))))))))
-(-10 -7 (-15 -3573 ((-394 |#1|) |#1|)))
-((-1379 (((-383 (-394 (-883 |#1|))) (-383 (-883 |#1|))) 14)))
-(((-968 |#1|) (-10 -7 (-15 -1379 ((-383 (-394 (-883 |#1|))) (-383 (-883 |#1|))))) (-284)) (T -968))
-((-1379 (*1 *2 *3) (-12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-284)) (-5 *2 (-383 (-394 (-883 *4)))) (-5 *1 (-968 *4)))))
-(-10 -7 (-15 -1379 ((-383 (-394 (-883 |#1|))) (-383 (-883 |#1|)))))
-((-3716 (((-589 (-1087)) (-383 (-883 |#1|))) 17)) (-3540 (((-383 (-1083 (-383 (-883 |#1|)))) (-383 (-883 |#1|)) (-1087)) 24)) (-3706 (((-383 (-883 |#1|)) (-383 (-1083 (-383 (-883 |#1|)))) (-1087)) 26)) (-1949 (((-3 (-1087) "failed") (-383 (-883 |#1|))) 20)) (-1349 (((-383 (-883 |#1|)) (-383 (-883 |#1|)) (-589 (-271 (-383 (-883 |#1|))))) 32) (((-383 (-883 |#1|)) (-383 (-883 |#1|)) (-271 (-383 (-883 |#1|)))) 33) (((-383 (-883 |#1|)) (-383 (-883 |#1|)) (-589 (-1087)) (-589 (-383 (-883 |#1|)))) 28) (((-383 (-883 |#1|)) (-383 (-883 |#1|)) (-1087) (-383 (-883 |#1|))) 29)) (-3976 (((-383 (-883 |#1|)) |#1|) 11)))
-(((-969 |#1|) (-10 -7 (-15 -3716 ((-589 (-1087)) (-383 (-883 |#1|)))) (-15 -1949 ((-3 (-1087) "failed") (-383 (-883 |#1|)))) (-15 -3540 ((-383 (-1083 (-383 (-883 |#1|)))) (-383 (-883 |#1|)) (-1087))) (-15 -3706 ((-383 (-883 |#1|)) (-383 (-1083 (-383 (-883 |#1|)))) (-1087))) (-15 -1349 ((-383 (-883 |#1|)) (-383 (-883 |#1|)) (-1087) (-383 (-883 |#1|)))) (-15 -1349 ((-383 (-883 |#1|)) (-383 (-883 |#1|)) (-589 (-1087)) (-589 (-383 (-883 |#1|))))) (-15 -1349 ((-383 (-883 |#1|)) (-383 (-883 |#1|)) (-271 (-383 (-883 |#1|))))) (-15 -1349 ((-383 (-883 |#1|)) (-383 (-883 |#1|)) (-589 (-271 (-383 (-883 |#1|)))))) (-15 -3976 ((-383 (-883 |#1|)) |#1|))) (-515)) (T -969))
-((-3976 (*1 *2 *3) (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-969 *3)) (-4 *3 (-515)))) (-1349 (*1 *2 *2 *3) (-12 (-5 *3 (-589 (-271 (-383 (-883 *4))))) (-5 *2 (-383 (-883 *4))) (-4 *4 (-515)) (-5 *1 (-969 *4)))) (-1349 (*1 *2 *2 *3) (-12 (-5 *3 (-271 (-383 (-883 *4)))) (-5 *2 (-383 (-883 *4))) (-4 *4 (-515)) (-5 *1 (-969 *4)))) (-1349 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-589 (-1087))) (-5 *4 (-589 (-383 (-883 *5)))) (-5 *2 (-383 (-883 *5))) (-4 *5 (-515)) (-5 *1 (-969 *5)))) (-1349 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-383 (-883 *4))) (-5 *3 (-1087)) (-4 *4 (-515)) (-5 *1 (-969 *4)))) (-3706 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-1083 (-383 (-883 *5))))) (-5 *4 (-1087)) (-5 *2 (-383 (-883 *5))) (-5 *1 (-969 *5)) (-4 *5 (-515)))) (-3540 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-4 *5 (-515)) (-5 *2 (-383 (-1083 (-383 (-883 *5))))) (-5 *1 (-969 *5)) (-5 *3 (-383 (-883 *5))))) (-1949 (*1 *2 *3) (|partial| -12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-515)) (-5 *2 (-1087)) (-5 *1 (-969 *4)))) (-3716 (*1 *2 *3) (-12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-515)) (-5 *2 (-589 (-1087))) (-5 *1 (-969 *4)))))
-(-10 -7 (-15 -3716 ((-589 (-1087)) (-383 (-883 |#1|)))) (-15 -1949 ((-3 (-1087) "failed") (-383 (-883 |#1|)))) (-15 -3540 ((-383 (-1083 (-383 (-883 |#1|)))) (-383 (-883 |#1|)) (-1087))) (-15 -3706 ((-383 (-883 |#1|)) (-383 (-1083 (-383 (-883 |#1|)))) (-1087))) (-15 -1349 ((-383 (-883 |#1|)) (-383 (-883 |#1|)) (-1087) (-383 (-883 |#1|)))) (-15 -1349 ((-383 (-883 |#1|)) (-383 (-883 |#1|)) (-589 (-1087)) (-589 (-383 (-883 |#1|))))) (-15 -1349 ((-383 (-883 |#1|)) (-383 (-883 |#1|)) (-271 (-383 (-883 |#1|))))) (-15 -1349 ((-383 (-883 |#1|)) (-383 (-883 |#1|)) (-589 (-271 (-383 (-883 |#1|)))))) (-15 -3976 ((-383 (-883 |#1|)) |#1|)))
-((-3260 (((-108) $ $) NIL)) (-2778 (((-589 (-2 (|:| -3922 $) (|:| -3439 (-589 (-719 |#1| (-796 |#2|)))))) (-589 (-719 |#1| (-796 |#2|)))) NIL)) (-2311 (((-589 $) (-589 (-719 |#1| (-796 |#2|)))) NIL) (((-589 $) (-589 (-719 |#1| (-796 |#2|))) (-108)) NIL) (((-589 $) (-589 (-719 |#1| (-796 |#2|))) (-108) (-108)) NIL)) (-3716 (((-589 (-796 |#2|)) $) NIL)) (-2011 (((-108) $) NIL)) (-2821 (((-108) $) NIL (|has| |#1| (-515)))) (-3103 (((-108) (-719 |#1| (-796 |#2|)) $) NIL) (((-108) $) NIL)) (-4165 (((-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)) $) NIL)) (-3763 (((-589 (-2 (|:| |val| (-719 |#1| (-796 |#2|))) (|:| -2394 $))) (-719 |#1| (-796 |#2|)) $) NIL)) (-3400 (((-2 (|:| |under| $) (|:| -1250 $) (|:| |upper| $)) $ (-796 |#2|)) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-1299 (($ (-1 (-108) (-719 |#1| (-796 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-3 (-719 |#1| (-796 |#2|)) "failed") $ (-796 |#2|)) NIL)) (-1640 (($) NIL T CONST)) (-1619 (((-108) $) NIL (|has| |#1| (-515)))) (-2927 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3685 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2457 (((-108) $) NIL (|has| |#1| (-515)))) (-3021 (((-589 (-719 |#1| (-796 |#2|))) (-589 (-719 |#1| (-796 |#2|))) $ (-1 (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|))) (-1 (-108) (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)))) NIL)) (-2341 (((-589 (-719 |#1| (-796 |#2|))) (-589 (-719 |#1| (-796 |#2|))) $) NIL (|has| |#1| (-515)))) (-3450 (((-589 (-719 |#1| (-796 |#2|))) (-589 (-719 |#1| (-796 |#2|))) $) NIL (|has| |#1| (-515)))) (-2898 (((-3 $ "failed") (-589 (-719 |#1| (-796 |#2|)))) NIL)) (-1996 (($ (-589 (-719 |#1| (-796 |#2|)))) NIL)) (-3891 (((-3 $ "failed") $) NIL)) (-3880 (((-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)) $) NIL)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-719 |#1| (-796 |#2|)) (-1016))))) (-2231 (($ (-719 |#1| (-796 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-719 |#1| (-796 |#2|)) (-1016)))) (($ (-1 (-108) (-719 |#1| (-796 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-3143 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-719 |#1| (-796 |#2|))) (|:| |den| |#1|)) (-719 |#1| (-796 |#2|)) $) NIL (|has| |#1| (-515)))) (-3605 (((-108) (-719 |#1| (-796 |#2|)) $ (-1 (-108) (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)))) NIL)) (-3058 (((-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)) $) NIL)) (-1830 (((-719 |#1| (-796 |#2|)) (-1 (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|))) $ (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|))) NIL (-12 (|has| $ (-6 -4248)) (|has| (-719 |#1| (-796 |#2|)) (-1016)))) (((-719 |#1| (-796 |#2|)) (-1 (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|))) $ (-719 |#1| (-796 |#2|))) NIL (|has| $ (-6 -4248))) (((-719 |#1| (-796 |#2|)) (-1 (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)) $ (-1 (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|))) (-1 (-108) (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)))) NIL)) (-3161 (((-2 (|:| -3922 (-589 (-719 |#1| (-796 |#2|)))) (|:| -3439 (-589 (-719 |#1| (-796 |#2|))))) $) NIL)) (-2422 (((-108) (-719 |#1| (-796 |#2|)) $) NIL)) (-4171 (((-108) (-719 |#1| (-796 |#2|)) $) NIL)) (-3004 (((-108) (-719 |#1| (-796 |#2|)) $) NIL) (((-108) $) NIL)) (-3133 (((-589 (-719 |#1| (-796 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-2407 (((-108) (-719 |#1| (-796 |#2|)) $) NIL) (((-108) $) NIL)) (-2694 (((-796 |#2|) $) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 (-719 |#1| (-796 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-719 |#1| (-796 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-719 |#1| (-796 |#2|)) (-1016))))) (-3063 (($ (-1 (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|))) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|))) $) NIL)) (-4100 (((-589 (-796 |#2|)) $) NIL)) (-2863 (((-108) (-796 |#2|) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-3726 (((-3 (-719 |#1| (-796 |#2|)) (-589 $)) (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)) $) NIL)) (-3216 (((-589 (-2 (|:| |val| (-719 |#1| (-796 |#2|))) (|:| -2394 $))) (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)) $) NIL)) (-2247 (((-3 (-719 |#1| (-796 |#2|)) "failed") $) NIL)) (-2818 (((-589 $) (-719 |#1| (-796 |#2|)) $) NIL)) (-1446 (((-3 (-108) (-589 $)) (-719 |#1| (-796 |#2|)) $) NIL)) (-4226 (((-589 (-2 (|:| |val| (-108)) (|:| -2394 $))) (-719 |#1| (-796 |#2|)) $) NIL) (((-108) (-719 |#1| (-796 |#2|)) $) NIL)) (-1625 (((-589 $) (-719 |#1| (-796 |#2|)) $) NIL) (((-589 $) (-589 (-719 |#1| (-796 |#2|))) $) NIL) (((-589 $) (-589 (-719 |#1| (-796 |#2|))) (-589 $)) NIL) (((-589 $) (-719 |#1| (-796 |#2|)) (-589 $)) NIL)) (-2795 (($ (-719 |#1| (-796 |#2|)) $) NIL) (($ (-589 (-719 |#1| (-796 |#2|))) $) NIL)) (-3403 (((-589 (-719 |#1| (-796 |#2|))) $) NIL)) (-3761 (((-108) (-719 |#1| (-796 |#2|)) $) NIL) (((-108) $) NIL)) (-1728 (((-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)) $) NIL)) (-1454 (((-108) $ $) NIL)) (-1916 (((-2 (|:| |num| (-719 |#1| (-796 |#2|))) (|:| |den| |#1|)) (-719 |#1| (-796 |#2|)) $) NIL (|has| |#1| (-515)))) (-2152 (((-108) (-719 |#1| (-796 |#2|)) $) NIL) (((-108) $) NIL)) (-2347 (((-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)) $) NIL)) (-2435 (((-1034) $) NIL)) (-3879 (((-3 (-719 |#1| (-796 |#2|)) "failed") $) NIL)) (-2660 (((-3 (-719 |#1| (-796 |#2|)) "failed") (-1 (-108) (-719 |#1| (-796 |#2|))) $) NIL)) (-2594 (((-3 $ "failed") $ (-719 |#1| (-796 |#2|))) NIL)) (-1361 (($ $ (-719 |#1| (-796 |#2|))) NIL) (((-589 $) (-719 |#1| (-796 |#2|)) $) NIL) (((-589 $) (-719 |#1| (-796 |#2|)) (-589 $)) NIL) (((-589 $) (-589 (-719 |#1| (-796 |#2|))) $) NIL) (((-589 $) (-589 (-719 |#1| (-796 |#2|))) (-589 $)) NIL)) (-2720 (((-108) (-1 (-108) (-719 |#1| (-796 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-719 |#1| (-796 |#2|))) (-589 (-719 |#1| (-796 |#2|)))) NIL (-12 (|has| (-719 |#1| (-796 |#2|)) (-286 (-719 |#1| (-796 |#2|)))) (|has| (-719 |#1| (-796 |#2|)) (-1016)))) (($ $ (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|))) NIL (-12 (|has| (-719 |#1| (-796 |#2|)) (-286 (-719 |#1| (-796 |#2|)))) (|has| (-719 |#1| (-796 |#2|)) (-1016)))) (($ $ (-271 (-719 |#1| (-796 |#2|)))) NIL (-12 (|has| (-719 |#1| (-796 |#2|)) (-286 (-719 |#1| (-796 |#2|)))) (|has| (-719 |#1| (-796 |#2|)) (-1016)))) (($ $ (-589 (-271 (-719 |#1| (-796 |#2|))))) NIL (-12 (|has| (-719 |#1| (-796 |#2|)) (-286 (-719 |#1| (-796 |#2|)))) (|has| (-719 |#1| (-796 |#2|)) (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1487 (((-710) $) NIL)) (-2452 (((-710) (-719 |#1| (-796 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-719 |#1| (-796 |#2|)) (-1016)))) (((-710) (-1 (-108) (-719 |#1| (-796 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| (-719 |#1| (-796 |#2|)) (-564 (-499))))) (-3985 (($ (-589 (-719 |#1| (-796 |#2|)))) NIL)) (-4135 (($ $ (-796 |#2|)) NIL)) (-1318 (($ $ (-796 |#2|)) NIL)) (-3444 (($ $) NIL)) (-2023 (($ $ (-796 |#2|)) NIL)) (-3976 (((-794) $) NIL) (((-589 (-719 |#1| (-796 |#2|))) $) NIL)) (-3221 (((-710) $) NIL (|has| (-796 |#2|) (-344)))) (-2459 (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 (-719 |#1| (-796 |#2|))))) "failed") (-589 (-719 |#1| (-796 |#2|))) (-1 (-108) (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)))) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 (-719 |#1| (-796 |#2|))))) "failed") (-589 (-719 |#1| (-796 |#2|))) (-1 (-108) (-719 |#1| (-796 |#2|))) (-1 (-108) (-719 |#1| (-796 |#2|)) (-719 |#1| (-796 |#2|)))) NIL)) (-3442 (((-108) $ (-1 (-108) (-719 |#1| (-796 |#2|)) (-589 (-719 |#1| (-796 |#2|))))) NIL)) (-1611 (((-589 $) (-719 |#1| (-796 |#2|)) $) NIL) (((-589 $) (-719 |#1| (-796 |#2|)) (-589 $)) NIL) (((-589 $) (-589 (-719 |#1| (-796 |#2|))) $) NIL) (((-589 $) (-589 (-719 |#1| (-796 |#2|))) (-589 $)) NIL)) (-1505 (((-108) (-1 (-108) (-719 |#1| (-796 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-2969 (((-589 (-796 |#2|)) $) NIL)) (-3553 (((-108) (-719 |#1| (-796 |#2|)) $) NIL)) (-4079 (((-108) (-796 |#2|) $) NIL)) (-4037 (((-108) $ $) NIL)) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-970 |#1| |#2|) (-13 (-992 |#1| (-495 (-796 |#2|)) (-796 |#2|) (-719 |#1| (-796 |#2|))) (-10 -8 (-15 -2311 ((-589 $) (-589 (-719 |#1| (-796 |#2|))) (-108) (-108))))) (-427) (-589 (-1087))) (T -970))
-((-2311 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-589 (-719 *5 (-796 *6)))) (-5 *4 (-108)) (-4 *5 (-427)) (-14 *6 (-589 (-1087))) (-5 *2 (-589 (-970 *5 *6))) (-5 *1 (-970 *5 *6)))))
-(-13 (-992 |#1| (-495 (-796 |#2|)) (-796 |#2|) (-719 |#1| (-796 |#2|))) (-10 -8 (-15 -2311 ((-589 $) (-589 (-719 |#1| (-796 |#2|))) (-108) (-108)))))
-((-3994 (((-1 (-523)) (-1011 (-523))) 33)) (-2312 (((-523) (-523) (-523) (-523) (-523)) 30)) (-3060 (((-1 (-523)) |RationalNumber|) NIL)) (-2444 (((-1 (-523)) |RationalNumber|) NIL)) (-1475 (((-1 (-523)) (-523) |RationalNumber|) NIL)))
-(((-971) (-10 -7 (-15 -3994 ((-1 (-523)) (-1011 (-523)))) (-15 -1475 ((-1 (-523)) (-523) |RationalNumber|)) (-15 -3060 ((-1 (-523)) |RationalNumber|)) (-15 -2444 ((-1 (-523)) |RationalNumber|)) (-15 -2312 ((-523) (-523) (-523) (-523) (-523))))) (T -971))
-((-2312 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-971)))) (-2444 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-523))) (-5 *1 (-971)))) (-3060 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-523))) (-5 *1 (-971)))) (-1475 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-523))) (-5 *1 (-971)) (-5 *3 (-523)))) (-3994 (*1 *2 *3) (-12 (-5 *3 (-1011 (-523))) (-5 *2 (-1 (-523))) (-5 *1 (-971)))))
-(-10 -7 (-15 -3994 ((-1 (-523)) (-1011 (-523)))) (-15 -1475 ((-1 (-523)) (-523) |RationalNumber|)) (-15 -3060 ((-1 (-523)) |RationalNumber|)) (-15 -2444 ((-1 (-523)) |RationalNumber|)) (-15 -2312 ((-523) (-523) (-523) (-523) (-523))))
-((-3976 (((-794) $) NIL) (($ (-523)) 10)))
-(((-972 |#1|) (-10 -8 (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|))) (-973)) (T -972))
-NIL
-(-10 -8 (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11) (($ (-523)) 28)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-973) (-129)) (T -973))
-((-1698 (*1 *2) (-12 (-4 *1 (-973)) (-5 *2 (-710)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-973)))))
-(-13 (-980) (-666) (-591 $) (-10 -8 (-15 -1698 ((-710))) (-15 -3976 ($ (-523))) (-6 -4245)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 $) . T) ((-666) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-2504 (((-383 (-883 |#2|)) (-589 |#2|) (-589 |#2|) (-710) (-710)) 45)))
-(((-974 |#1| |#2|) (-10 -7 (-15 -2504 ((-383 (-883 |#2|)) (-589 |#2|) (-589 |#2|) (-710) (-710)))) (-1087) (-339)) (T -974))
-((-2504 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-589 *6)) (-5 *4 (-710)) (-4 *6 (-339)) (-5 *2 (-383 (-883 *6))) (-5 *1 (-974 *5 *6)) (-14 *5 (-1087)))))
-(-10 -7 (-15 -2504 ((-383 (-883 |#2|)) (-589 |#2|) (-589 |#2|) (-710) (-710))))
-((-2624 (((-108) $) 29)) (-2108 (((-108) $) 16)) (-3656 (((-710) $) 13)) (-3668 (((-710) $) 14)) (-2395 (((-108) $) 26)) (-2791 (((-108) $) 31)))
-(((-975 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -3668 ((-710) |#1|)) (-15 -3656 ((-710) |#1|)) (-15 -2791 ((-108) |#1|)) (-15 -2624 ((-108) |#1|)) (-15 -2395 ((-108) |#1|)) (-15 -2108 ((-108) |#1|))) (-976 |#2| |#3| |#4| |#5| |#6|) (-710) (-710) (-973) (-216 |#3| |#4|) (-216 |#2| |#4|)) (T -975))
-NIL
-(-10 -8 (-15 -3668 ((-710) |#1|)) (-15 -3656 ((-710) |#1|)) (-15 -2791 ((-108) |#1|)) (-15 -2624 ((-108) |#1|)) (-15 -2395 ((-108) |#1|)) (-15 -2108 ((-108) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2624 (((-108) $) 51)) (-2999 (((-3 $ "failed") $ $) 19)) (-2108 (((-108) $) 53)) (-2282 (((-108) $ (-710)) 61)) (-1640 (($) 17 T CONST)) (-1561 (($ $) 34 (|has| |#3| (-284)))) (-2823 ((|#4| $ (-523)) 39)) (-2262 (((-710) $) 33 (|has| |#3| (-515)))) (-3002 ((|#3| $ (-523) (-523)) 41)) (-3133 (((-589 |#3|) $) 68 (|has| $ (-6 -4248)))) (-2534 (((-710) $) 32 (|has| |#3| (-515)))) (-3392 (((-589 |#5|) $) 31 (|has| |#3| (-515)))) (-3656 (((-710) $) 45)) (-3668 (((-710) $) 44)) (-1344 (((-108) $ (-710)) 60)) (-1392 (((-523) $) 49)) (-1219 (((-523) $) 47)) (-3056 (((-589 |#3|) $) 69 (|has| $ (-6 -4248)))) (-1348 (((-108) |#3| $) 71 (-12 (|has| |#3| (-1016)) (|has| $ (-6 -4248))))) (-2102 (((-523) $) 48)) (-3328 (((-523) $) 46)) (-3078 (($ (-589 (-589 |#3|))) 54)) (-3063 (($ (-1 |#3| |#3|) $) 64 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#3| |#3|) $) 63) (($ (-1 |#3| |#3| |#3|) $ $) 37)) (-3522 (((-589 (-589 |#3|)) $) 43)) (-4042 (((-108) $ (-710)) 59)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2469 (((-3 $ "failed") $ |#3|) 36 (|has| |#3| (-515)))) (-2720 (((-108) (-1 (-108) |#3|) $) 66 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 |#3|) (-589 |#3|)) 75 (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016)))) (($ $ |#3| |#3|) 74 (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016)))) (($ $ (-271 |#3|)) 73 (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016)))) (($ $ (-589 (-271 |#3|))) 72 (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016))))) (-2391 (((-108) $ $) 55)) (-3163 (((-108) $) 58)) (-4055 (($) 57)) (-1502 ((|#3| $ (-523) (-523)) 42) ((|#3| $ (-523) (-523) |#3|) 40)) (-2395 (((-108) $) 52)) (-2452 (((-710) |#3| $) 70 (-12 (|has| |#3| (-1016)) (|has| $ (-6 -4248)))) (((-710) (-1 (-108) |#3|) $) 67 (|has| $ (-6 -4248)))) (-4124 (($ $) 56)) (-2032 ((|#5| $ (-523)) 38)) (-3976 (((-794) $) 11)) (-1505 (((-108) (-1 (-108) |#3|) $) 65 (|has| $ (-6 -4248)))) (-2791 (((-108) $) 50)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4125 (($ $ |#3|) 35 (|has| |#3| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ |#3| $) 23) (($ $ |#3|) 26)) (-1271 (((-710) $) 62 (|has| $ (-6 -4248)))))
-(((-976 |#1| |#2| |#3| |#4| |#5|) (-129) (-710) (-710) (-973) (-216 |t#2| |t#3|) (-216 |t#1| |t#3|)) (T -976))
-((-3015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)))) (-3078 (*1 *1 *2) (-12 (-5 *2 (-589 (-589 *5))) (-4 *5 (-973)) (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)))) (-2108 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-108)))) (-2395 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-108)))) (-2624 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-108)))) (-2791 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-108)))) (-1392 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-523)))) (-2102 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-523)))) (-1219 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-523)))) (-3328 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-523)))) (-3656 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-710)))) (-3668 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-710)))) (-3522 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-589 (-589 *5))))) (-1502 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-523)) (-4 *1 (-976 *4 *5 *2 *6 *7)) (-4 *6 (-216 *5 *2)) (-4 *7 (-216 *4 *2)) (-4 *2 (-973)))) (-3002 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-523)) (-4 *1 (-976 *4 *5 *2 *6 *7)) (-4 *6 (-216 *5 *2)) (-4 *7 (-216 *4 *2)) (-4 *2 (-973)))) (-1502 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-523)) (-4 *1 (-976 *4 *5 *2 *6 *7)) (-4 *2 (-973)) (-4 *6 (-216 *5 *2)) (-4 *7 (-216 *4 *2)))) (-2823 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-4 *1 (-976 *4 *5 *6 *2 *7)) (-4 *6 (-973)) (-4 *7 (-216 *4 *6)) (-4 *2 (-216 *5 *6)))) (-2032 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-4 *1 (-976 *4 *5 *6 *7 *2)) (-4 *6 (-973)) (-4 *7 (-216 *5 *6)) (-4 *2 (-216 *4 *6)))) (-3015 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)))) (-2469 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-976 *3 *4 *2 *5 *6)) (-4 *2 (-973)) (-4 *5 (-216 *4 *2)) (-4 *6 (-216 *3 *2)) (-4 *2 (-515)))) (-4125 (*1 *1 *1 *2) (-12 (-4 *1 (-976 *3 *4 *2 *5 *6)) (-4 *2 (-973)) (-4 *5 (-216 *4 *2)) (-4 *6 (-216 *3 *2)) (-4 *2 (-339)))) (-1561 (*1 *1 *1) (-12 (-4 *1 (-976 *2 *3 *4 *5 *6)) (-4 *4 (-973)) (-4 *5 (-216 *3 *4)) (-4 *6 (-216 *2 *4)) (-4 *4 (-284)))) (-2262 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-4 *5 (-515)) (-5 *2 (-710)))) (-2534 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-4 *5 (-515)) (-5 *2 (-710)))) (-3392 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-4 *5 (-515)) (-5 *2 (-589 *7)))))
-(-13 (-107 |t#3| |t#3|) (-462 |t#3|) (-10 -8 (-6 -4248) (IF (|has| |t#3| (-158)) (-6 (-657 |t#3|)) |%noBranch|) (-15 -3078 ($ (-589 (-589 |t#3|)))) (-15 -2108 ((-108) $)) (-15 -2395 ((-108) $)) (-15 -2624 ((-108) $)) (-15 -2791 ((-108) $)) (-15 -1392 ((-523) $)) (-15 -2102 ((-523) $)) (-15 -1219 ((-523) $)) (-15 -3328 ((-523) $)) (-15 -3656 ((-710) $)) (-15 -3668 ((-710) $)) (-15 -3522 ((-589 (-589 |t#3|)) $)) (-15 -1502 (|t#3| $ (-523) (-523))) (-15 -3002 (|t#3| $ (-523) (-523))) (-15 -1502 (|t#3| $ (-523) (-523) |t#3|)) (-15 -2823 (|t#4| $ (-523))) (-15 -2032 (|t#5| $ (-523))) (-15 -3015 ($ (-1 |t#3| |t#3|) $)) (-15 -3015 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-515)) (-15 -2469 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-339)) (-15 -4125 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-284)) (-15 -1561 ($ $)) |%noBranch|) (IF (|has| |t#3| (-515)) (PROGN (-15 -2262 ((-710) $)) (-15 -2534 ((-710) $)) (-15 -3392 ((-589 |t#5|) $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-33) . T) ((-97) . T) ((-107 |#3| |#3|) . T) ((-124) . T) ((-563 (-794)) . T) ((-286 |#3|) -12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016))) ((-462 |#3|) . T) ((-484 |#3| |#3|) -12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016))) ((-591 |#3|) . T) ((-657 |#3|) |has| |#3| (-158)) ((-979 |#3|) . T) ((-1016) . T) ((-1123) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2624 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2108 (((-108) $) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-1640 (($) NIL T CONST)) (-1561 (($ $) 43 (|has| |#3| (-284)))) (-2823 (((-218 |#2| |#3|) $ (-523)) 32)) (-1427 (($ (-629 |#3|)) 41)) (-2262 (((-710) $) 45 (|has| |#3| (-515)))) (-3002 ((|#3| $ (-523) (-523)) NIL)) (-3133 (((-589 |#3|) $) NIL (|has| $ (-6 -4248)))) (-2534 (((-710) $) 47 (|has| |#3| (-515)))) (-3392 (((-589 (-218 |#1| |#3|)) $) 51 (|has| |#3| (-515)))) (-3656 (((-710) $) NIL)) (-3668 (((-710) $) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-1392 (((-523) $) NIL)) (-1219 (((-523) $) NIL)) (-3056 (((-589 |#3|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#3| (-1016))))) (-2102 (((-523) $) NIL)) (-3328 (((-523) $) NIL)) (-3078 (($ (-589 (-589 |#3|))) 27)) (-3063 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-3522 (((-589 (-589 |#3|)) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2469 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-515)))) (-2720 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 |#3|) (-589 |#3|)) NIL (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016)))) (($ $ (-271 |#3|)) NIL (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016)))) (($ $ (-589 (-271 |#3|))) NIL (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#3| $ (-523) (-523)) NIL) ((|#3| $ (-523) (-523) |#3|) NIL)) (-4012 (((-126)) 54 (|has| |#3| (-339)))) (-2395 (((-108) $) NIL)) (-2452 (((-710) |#3| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#3| (-1016)))) (((-710) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) 63 (|has| |#3| (-564 (-499))))) (-2032 (((-218 |#1| |#3|) $ (-523)) 36)) (-3976 (((-794) $) 16) (((-629 |#3|) $) 38)) (-1505 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4248)))) (-2791 (((-108) $) NIL)) (-1428 (($) 13 T CONST)) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ |#3|) NIL (|has| |#3| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-977 |#1| |#2| |#3|) (-13 (-976 |#1| |#2| |#3| (-218 |#2| |#3|) (-218 |#1| |#3|)) (-563 (-629 |#3|)) (-10 -8 (IF (|has| |#3| (-339)) (-6 (-1176 |#3|)) |%noBranch|) (IF (|has| |#3| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|) (-15 -1427 ($ (-629 |#3|))) (-15 -3976 ((-629 |#3|) $)))) (-710) (-710) (-973)) (T -977))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-629 *5)) (-5 *1 (-977 *3 *4 *5)) (-14 *3 (-710)) (-14 *4 (-710)) (-4 *5 (-973)))) (-1427 (*1 *1 *2) (-12 (-5 *2 (-629 *5)) (-4 *5 (-973)) (-5 *1 (-977 *3 *4 *5)) (-14 *3 (-710)) (-14 *4 (-710)))))
-(-13 (-976 |#1| |#2| |#3| (-218 |#2| |#3|) (-218 |#1| |#3|)) (-563 (-629 |#3|)) (-10 -8 (IF (|has| |#3| (-339)) (-6 (-1176 |#3|)) |%noBranch|) (IF (|has| |#3| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|) (-15 -1427 ($ (-629 |#3|))) (-15 -3976 ((-629 |#3|) $))))
-((-1830 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 34)) (-3015 ((|#10| (-1 |#7| |#3|) |#6|) 32)))
-(((-978 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -3015 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -1830 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|))) (-710) (-710) (-973) (-216 |#2| |#3|) (-216 |#1| |#3|) (-976 |#1| |#2| |#3| |#4| |#5|) (-973) (-216 |#2| |#7|) (-216 |#1| |#7|) (-976 |#1| |#2| |#7| |#8| |#9|)) (T -978))
-((-1830 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-973)) (-4 *2 (-973)) (-14 *5 (-710)) (-14 *6 (-710)) (-4 *8 (-216 *6 *7)) (-4 *9 (-216 *5 *7)) (-4 *10 (-216 *6 *2)) (-4 *11 (-216 *5 *2)) (-5 *1 (-978 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12)) (-4 *4 (-976 *5 *6 *7 *8 *9)) (-4 *12 (-976 *5 *6 *2 *10 *11)))) (-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-973)) (-4 *10 (-973)) (-14 *5 (-710)) (-14 *6 (-710)) (-4 *8 (-216 *6 *7)) (-4 *9 (-216 *5 *7)) (-4 *2 (-976 *5 *6 *10 *11 *12)) (-5 *1 (-978 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2)) (-4 *4 (-976 *5 *6 *7 *8 *9)) (-4 *11 (-216 *6 *10)) (-4 *12 (-216 *5 *10)))))
-(-10 -7 (-15 -3015 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -1830 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ |#1|) 23)))
-(((-979 |#1|) (-129) (-980)) (T -979))
-((* (*1 *1 *1 *2) (-12 (-4 *1 (-979 *2)) (-4 *2 (-980)))))
+((-1817 (($ $ (-1011 $)) 7) (($ $ (-1089)) 6)))
+(((-891) (-131)) (T -891))
+((-1817 (*1 *1 *1 *2) (-12 (-5 *2 (-1011 *1)) (-4 *1 (-891)))) (-1817 (*1 *1 *1 *2) (-12 (-4 *1 (-891)) (-5 *2 (-1089)))))
+(-13 (-10 -8 (-15 -1817 ($ $ (-1089))) (-15 -1817 ($ $ (-1011 $)))))
+((-3944 (((-2 (|:| -3482 (-591 (-525))) (|:| |poly| (-591 (-1085 |#1|))) (|:| |prim| (-1085 |#1|))) (-591 (-885 |#1|)) (-591 (-1089)) (-1089)) 25) (((-2 (|:| -3482 (-591 (-525))) (|:| |poly| (-591 (-1085 |#1|))) (|:| |prim| (-1085 |#1|))) (-591 (-885 |#1|)) (-591 (-1089))) 26) (((-2 (|:| |coef1| (-525)) (|:| |coef2| (-525)) (|:| |prim| (-1085 |#1|))) (-885 |#1|) (-1089) (-885 |#1|) (-1089)) 43)))
+(((-892 |#1|) (-10 -7 (-15 -3944 ((-2 (|:| |coef1| (-525)) (|:| |coef2| (-525)) (|:| |prim| (-1085 |#1|))) (-885 |#1|) (-1089) (-885 |#1|) (-1089))) (-15 -3944 ((-2 (|:| -3482 (-591 (-525))) (|:| |poly| (-591 (-1085 |#1|))) (|:| |prim| (-1085 |#1|))) (-591 (-885 |#1|)) (-591 (-1089)))) (-15 -3944 ((-2 (|:| -3482 (-591 (-525))) (|:| |poly| (-591 (-1085 |#1|))) (|:| |prim| (-1085 |#1|))) (-591 (-885 |#1|)) (-591 (-1089)) (-1089)))) (-13 (-341) (-138))) (T -892))
+((-3944 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-591 (-885 *6))) (-5 *4 (-591 (-1089))) (-5 *5 (-1089)) (-4 *6 (-13 (-341) (-138))) (-5 *2 (-2 (|:| -3482 (-591 (-525))) (|:| |poly| (-591 (-1085 *6))) (|:| |prim| (-1085 *6)))) (-5 *1 (-892 *6)))) (-3944 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-591 (-1089))) (-4 *5 (-13 (-341) (-138))) (-5 *2 (-2 (|:| -3482 (-591 (-525))) (|:| |poly| (-591 (-1085 *5))) (|:| |prim| (-1085 *5)))) (-5 *1 (-892 *5)))) (-3944 (*1 *2 *3 *4 *3 *4) (-12 (-5 *3 (-885 *5)) (-5 *4 (-1089)) (-4 *5 (-13 (-341) (-138))) (-5 *2 (-2 (|:| |coef1| (-525)) (|:| |coef2| (-525)) (|:| |prim| (-1085 *5)))) (-5 *1 (-892 *5)))))
+(-10 -7 (-15 -3944 ((-2 (|:| |coef1| (-525)) (|:| |coef2| (-525)) (|:| |prim| (-1085 |#1|))) (-885 |#1|) (-1089) (-885 |#1|) (-1089))) (-15 -3944 ((-2 (|:| -3482 (-591 (-525))) (|:| |poly| (-591 (-1085 |#1|))) (|:| |prim| (-1085 |#1|))) (-591 (-885 |#1|)) (-591 (-1089)))) (-15 -3944 ((-2 (|:| -3482 (-591 (-525))) (|:| |poly| (-591 (-1085 |#1|))) (|:| |prim| (-1085 |#1|))) (-591 (-885 |#1|)) (-591 (-1089)) (-1089))))
+((-2755 (((-591 |#1|) |#1| |#1|) 42)) (-2744 (((-108) |#1|) 39)) (-2890 ((|#1| |#1|) 65)) (-2338 ((|#1| |#1|) 64)))
+(((-893 |#1|) (-10 -7 (-15 -2744 ((-108) |#1|)) (-15 -2338 (|#1| |#1|)) (-15 -2890 (|#1| |#1|)) (-15 -2755 ((-591 |#1|) |#1| |#1|))) (-510)) (T -893))
+((-2755 (*1 *2 *3 *3) (-12 (-5 *2 (-591 *3)) (-5 *1 (-893 *3)) (-4 *3 (-510)))) (-2890 (*1 *2 *2) (-12 (-5 *1 (-893 *2)) (-4 *2 (-510)))) (-2338 (*1 *2 *2) (-12 (-5 *1 (-893 *2)) (-4 *2 (-510)))) (-2744 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-893 *3)) (-4 *3 (-510)))))
+(-10 -7 (-15 -2744 ((-108) |#1|)) (-15 -2338 (|#1| |#1|)) (-15 -2890 (|#1| |#1|)) (-15 -2755 ((-591 |#1|) |#1| |#1|)))
+((-4229 (((-1176) (-796)) 9)))
+(((-894) (-10 -7 (-15 -4229 ((-1176) (-796))))) (T -894))
+((-4229 (*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1176)) (-5 *1 (-894)))))
+(-10 -7 (-15 -4229 ((-1176) (-796))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 63 (|has| |#1| (-517)))) (-3706 (($ $) 64 (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) 28)) (-3528 (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) NIL)) (-1710 (($ $) 24)) (-4163 (((-3 $ "failed") $) 35)) (-3208 (($ $) NIL (|has| |#1| (-429)))) (-2056 (($ $ |#1| |#2| $) 48)) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) 16)) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| |#2|) NIL)) (-2624 ((|#2| $) 19)) (-4015 (($ (-1 |#2| |#2|) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-1661 (($ $) 23)) (-1678 ((|#1| $) 21)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) 40)) (-1646 ((|#1| $) NIL)) (-3678 (($ $ |#2| |#1| $) 73 (-12 (|has| |#2| (-126)) (|has| |#1| (-517))))) (-2089 (((-3 $ "failed") $ $) 75 (|has| |#1| (-517))) (((-3 $ "failed") $ |#1|) 70 (|has| |#1| (-517)))) (-1316 ((|#2| $) 17)) (-2668 ((|#1| $) NIL (|has| |#1| (-429)))) (-3022 (((-796) $) NIL) (($ (-525)) 39) (($ $) NIL (|has| |#1| (-517))) (($ |#1|) 34) (($ (-385 (-525))) NIL (-3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-966 (-385 (-525))))))) (-3654 (((-591 |#1|) $) NIL)) (-2560 ((|#1| $ |#2|) 31)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) 15)) (-1698 (($ $ $ (-712)) 59 (|has| |#1| (-160)))) (-2495 (((-108) $ $) 69 (|has| |#1| (-517)))) (-3710 (($ $ (-854)) 55) (($ $ (-712)) 56)) (-4191 (($) 22 T CONST)) (-4197 (($) 12 T CONST)) (-4096 (((-108) $ $) 68)) (-4173 (($ $ |#1|) 76 (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) 54) (($ $ (-712)) 52)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 51) (($ $ |#1|) 50) (($ |#1| $) 49) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))))
+(((-895 |#1| |#2|) (-13 (-304 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-517)) (IF (|has| |#2| (-126)) (-15 -3678 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4248)) (-6 -4248) |%noBranch|))) (-975) (-733)) (T -895))
+((-3678 (*1 *1 *1 *2 *3 *1) (-12 (-5 *1 (-895 *3 *2)) (-4 *2 (-126)) (-4 *3 (-517)) (-4 *3 (-975)) (-4 *2 (-733)))))
+(-13 (-304 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-517)) (IF (|has| |#2| (-126)) (-15 -3678 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4248)) (-6 -4248) |%noBranch|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL (-3321 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-126)) (|has| |#2| (-126))) (-12 (|has| |#1| (-734)) (|has| |#2| (-734)))))) (-2593 (($ $ $) 63 (-12 (|has| |#1| (-734)) (|has| |#2| (-734))))) (-2157 (((-3 $ "failed") $ $) 50 (-3321 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-126)) (|has| |#2| (-126))) (-12 (|has| |#1| (-734)) (|has| |#2| (-734)))))) (-3032 (((-712)) 34 (-12 (|has| |#1| (-346)) (|has| |#2| (-346))))) (-3953 ((|#2| $) 21)) (-1383 ((|#1| $) 20)) (-3798 (($) NIL (-3321 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-126)) (|has| |#2| (-126))) (-12 (|has| |#1| (-450)) (|has| |#2| (-450))) (-12 (|has| |#1| (-668)) (|has| |#2| (-668))) (-12 (|has| |#1| (-734)) (|has| |#2| (-734)))) CONST)) (-4163 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| |#1| (-450)) (|has| |#2| (-450))) (-12 (|has| |#1| (-668)) (|has| |#2| (-668)))))) (-3377 (($) NIL (-12 (|has| |#1| (-346)) (|has| |#2| (-346))))) (-2824 (((-108) $) NIL (-3321 (-12 (|has| |#1| (-450)) (|has| |#2| (-450))) (-12 (|has| |#1| (-668)) (|has| |#2| (-668)))))) (-3741 (($ $ $) NIL (-3321 (-12 (|has| |#1| (-734)) (|has| |#2| (-734))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))))) (-2478 (($ $ $) NIL (-3321 (-12 (|has| |#1| (-734)) (|has| |#2| (-734))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))))) (-3340 (($ |#1| |#2|) 19)) (-3016 (((-854) $) NIL (-12 (|has| |#1| (-346)) (|has| |#2| (-346))))) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 37 (-12 (|has| |#1| (-450)) (|has| |#2| (-450))))) (-2226 (($ (-854)) NIL (-12 (|has| |#1| (-346)) (|has| |#2| (-346))))) (-2047 (((-1036) $) NIL)) (-3228 (($ $ $) NIL (-12 (|has| |#1| (-450)) (|has| |#2| (-450))))) (-3619 (($ $ $) NIL (-12 (|has| |#1| (-450)) (|has| |#2| (-450))))) (-3022 (((-796) $) 14)) (-3710 (($ $ (-525)) NIL (-12 (|has| |#1| (-450)) (|has| |#2| (-450)))) (($ $ (-712)) NIL (-3321 (-12 (|has| |#1| (-450)) (|has| |#2| (-450))) (-12 (|has| |#1| (-668)) (|has| |#2| (-668))))) (($ $ (-854)) NIL (-3321 (-12 (|has| |#1| (-450)) (|has| |#2| (-450))) (-12 (|has| |#1| (-668)) (|has| |#2| (-668)))))) (-4191 (($) 40 (-3321 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-126)) (|has| |#2| (-126))) (-12 (|has| |#1| (-734)) (|has| |#2| (-734)))) CONST)) (-4197 (($) 24 (-3321 (-12 (|has| |#1| (-450)) (|has| |#2| (-450))) (-12 (|has| |#1| (-668)) (|has| |#2| (-668)))) CONST)) (-4135 (((-108) $ $) NIL (-3321 (-12 (|has| |#1| (-734)) (|has| |#2| (-734))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))))) (-4119 (((-108) $ $) NIL (-3321 (-12 (|has| |#1| (-734)) (|has| |#2| (-734))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))))) (-4096 (((-108) $ $) 18)) (-4126 (((-108) $ $) NIL (-3321 (-12 (|has| |#1| (-734)) (|has| |#2| (-734))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))))) (-4112 (((-108) $ $) 66 (-3321 (-12 (|has| |#1| (-734)) (|has| |#2| (-734))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))))) (-4173 (($ $ $) NIL (-12 (|has| |#1| (-450)) (|has| |#2| (-450))))) (-4164 (($ $ $) 56 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 53 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-4156 (($ $ $) 43 (-3321 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-126)) (|has| |#2| (-126))) (-12 (|has| |#1| (-734)) (|has| |#2| (-734)))))) (** (($ $ (-525)) NIL (-12 (|has| |#1| (-450)) (|has| |#2| (-450)))) (($ $ (-712)) 31 (-3321 (-12 (|has| |#1| (-450)) (|has| |#2| (-450))) (-12 (|has| |#1| (-668)) (|has| |#2| (-668))))) (($ $ (-854)) NIL (-3321 (-12 (|has| |#1| (-450)) (|has| |#2| (-450))) (-12 (|has| |#1| (-668)) (|has| |#2| (-668)))))) (* (($ (-525) $) 60 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ (-712) $) 46 (-3321 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-126)) (|has| |#2| (-126))) (-12 (|has| |#1| (-734)) (|has| |#2| (-734))))) (($ (-854) $) NIL (-3321 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-126)) (|has| |#2| (-126))) (-12 (|has| |#1| (-734)) (|has| |#2| (-734))))) (($ $ $) 27 (-3321 (-12 (|has| |#1| (-450)) (|has| |#2| (-450))) (-12 (|has| |#1| (-668)) (|has| |#2| (-668)))))))
+(((-896 |#1| |#2|) (-13 (-1018) (-10 -8 (IF (|has| |#1| (-346)) (IF (|has| |#2| (-346)) (-6 (-346)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-668)) (IF (|has| |#2| (-668)) (-6 (-668)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-126)) (IF (|has| |#2| (-126)) (-6 (-126)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-450)) (IF (|has| |#2| (-450)) (-6 (-450)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-734)) (IF (|has| |#2| (-734)) (-6 (-734)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-788)) (IF (|has| |#2| (-788)) (-6 (-788)) |%noBranch|) |%noBranch|) (-15 -3340 ($ |#1| |#2|)) (-15 -1383 (|#1| $)) (-15 -3953 (|#2| $)))) (-1018) (-1018)) (T -896))
+((-3340 (*1 *1 *2 *3) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))) (-1383 (*1 *2 *1) (-12 (-4 *2 (-1018)) (-5 *1 (-896 *2 *3)) (-4 *3 (-1018)))) (-3953 (*1 *2 *1) (-12 (-4 *2 (-1018)) (-5 *1 (-896 *3 *2)) (-4 *3 (-1018)))))
+(-13 (-1018) (-10 -8 (IF (|has| |#1| (-346)) (IF (|has| |#2| (-346)) (-6 (-346)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-668)) (IF (|has| |#2| (-668)) (-6 (-668)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-126)) (IF (|has| |#2| (-126)) (-6 (-126)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-450)) (IF (|has| |#2| (-450)) (-6 (-450)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-734)) (IF (|has| |#2| (-734)) (-6 (-734)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-788)) (IF (|has| |#2| (-788)) (-6 (-788)) |%noBranch|) |%noBranch|) (-15 -3340 ($ |#1| |#2|)) (-15 -1383 (|#1| $)) (-15 -3953 (|#2| $))))
+((-3024 (((-1022) $) 12)) (-1279 (($ (-1089) (-1022)) 13)) (-2400 (((-1089) $) 10)) (-3022 (((-796) $) 24)))
+(((-897) (-13 (-565 (-796)) (-10 -8 (-15 -2400 ((-1089) $)) (-15 -3024 ((-1022) $)) (-15 -1279 ($ (-1089) (-1022)))))) (T -897))
+((-2400 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-897)))) (-3024 (*1 *2 *1) (-12 (-5 *2 (-1022)) (-5 *1 (-897)))) (-1279 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1022)) (-5 *1 (-897)))))
+(-13 (-565 (-796)) (-10 -8 (-15 -2400 ((-1089) $)) (-15 -3024 ((-1022) $)) (-15 -1279 ($ (-1089) (-1022)))))
+((-1507 (((-1020 (-1089)) $) 19)) (-2767 (((-108) $) 26)) (-2037 (((-1089) $) 27)) (-3211 (((-108) $) 24)) (-3381 ((|#1| $) 25)) (-4024 (((-806 $ $) $) 34)) (-3424 (((-108) $) 33)) (-1209 (($ $ $) 12)) (-2015 (($ $) 29)) (-2063 (((-108) $) 28)) (-2247 (($ $) 10)) (-3582 (((-806 $ $) $) 36)) (-1543 (((-108) $) 35)) (-3917 (($ $ $) 13)) (-2776 (((-806 $ $) $) 38)) (-4030 (((-108) $) 37)) (-1520 (($ $ $) 14)) (-3022 (($ |#1|) 7) (($ (-1089)) 9) (((-796) $) 40 (|has| |#1| (-565 (-796))))) (-2227 (((-806 $ $) $) 32)) (-3173 (((-108) $) 30)) (-1213 (($ $ $) 11)))
+(((-898 |#1|) (-13 (-899) (-10 -8 (IF (|has| |#1| (-565 (-796))) (-6 (-565 (-796))) |%noBranch|) (-15 -3022 ($ |#1|)) (-15 -3022 ($ (-1089))) (-15 -1507 ((-1020 (-1089)) $)) (-15 -3211 ((-108) $)) (-15 -3381 (|#1| $)) (-15 -2767 ((-108) $)) (-15 -2037 ((-1089) $)) (-15 -2063 ((-108) $)) (-15 -2015 ($ $)) (-15 -3173 ((-108) $)) (-15 -2227 ((-806 $ $) $)) (-15 -3424 ((-108) $)) (-15 -4024 ((-806 $ $) $)) (-15 -1543 ((-108) $)) (-15 -3582 ((-806 $ $) $)) (-15 -4030 ((-108) $)) (-15 -2776 ((-806 $ $) $)))) (-899)) (T -898))
+((-3022 (*1 *1 *2) (-12 (-5 *1 (-898 *2)) (-4 *2 (-899)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-898 *3)) (-4 *3 (-899)))) (-1507 (*1 *2 *1) (-12 (-5 *2 (-1020 (-1089))) (-5 *1 (-898 *3)) (-4 *3 (-899)))) (-3211 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-898 *3)) (-4 *3 (-899)))) (-3381 (*1 *2 *1) (-12 (-5 *1 (-898 *2)) (-4 *2 (-899)))) (-2767 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-898 *3)) (-4 *3 (-899)))) (-2037 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-898 *3)) (-4 *3 (-899)))) (-2063 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-898 *3)) (-4 *3 (-899)))) (-2015 (*1 *1 *1) (-12 (-5 *1 (-898 *2)) (-4 *2 (-899)))) (-3173 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-898 *3)) (-4 *3 (-899)))) (-2227 (*1 *2 *1) (-12 (-5 *2 (-806 (-898 *3) (-898 *3))) (-5 *1 (-898 *3)) (-4 *3 (-899)))) (-3424 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-898 *3)) (-4 *3 (-899)))) (-4024 (*1 *2 *1) (-12 (-5 *2 (-806 (-898 *3) (-898 *3))) (-5 *1 (-898 *3)) (-4 *3 (-899)))) (-1543 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-898 *3)) (-4 *3 (-899)))) (-3582 (*1 *2 *1) (-12 (-5 *2 (-806 (-898 *3) (-898 *3))) (-5 *1 (-898 *3)) (-4 *3 (-899)))) (-4030 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-898 *3)) (-4 *3 (-899)))) (-2776 (*1 *2 *1) (-12 (-5 *2 (-806 (-898 *3) (-898 *3))) (-5 *1 (-898 *3)) (-4 *3 (-899)))))
+(-13 (-899) (-10 -8 (IF (|has| |#1| (-565 (-796))) (-6 (-565 (-796))) |%noBranch|) (-15 -3022 ($ |#1|)) (-15 -3022 ($ (-1089))) (-15 -1507 ((-1020 (-1089)) $)) (-15 -3211 ((-108) $)) (-15 -3381 (|#1| $)) (-15 -2767 ((-108) $)) (-15 -2037 ((-1089) $)) (-15 -2063 ((-108) $)) (-15 -2015 ($ $)) (-15 -3173 ((-108) $)) (-15 -2227 ((-806 $ $) $)) (-15 -3424 ((-108) $)) (-15 -4024 ((-806 $ $) $)) (-15 -1543 ((-108) $)) (-15 -3582 ((-806 $ $) $)) (-15 -4030 ((-108) $)) (-15 -2776 ((-806 $ $) $))))
+((-1209 (($ $ $) 8)) (-2247 (($ $) 6)) (-3917 (($ $ $) 9)) (-1520 (($ $ $) 10)) (-1213 (($ $ $) 7)))
+(((-899) (-131)) (T -899))
+((-1520 (*1 *1 *1 *1) (-4 *1 (-899))) (-3917 (*1 *1 *1 *1) (-4 *1 (-899))) (-1209 (*1 *1 *1 *1) (-4 *1 (-899))) (-1213 (*1 *1 *1 *1) (-4 *1 (-899))) (-2247 (*1 *1 *1) (-4 *1 (-899))))
+(-13 (-10 -8 (-15 -2247 ($ $)) (-15 -1213 ($ $ $)) (-15 -1209 ($ $ $)) (-15 -3917 ($ $ $)) (-15 -1520 ($ $ $))))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3891 (((-108) $ (-712)) 8)) (-3798 (($) 7 T CONST)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-2921 (($ $ $) 43)) (-2131 (($ $ $) 44)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-2478 ((|#1| $) 45)) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-1464 ((|#1| $) 39)) (-2470 (($ |#1| $) 40)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-3631 ((|#1| $) 41)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-1870 (($ (-591 |#1|)) 42)) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-900 |#1|) (-131) (-788)) (T -900))
+((-2478 (*1 *2 *1) (-12 (-4 *1 (-900 *2)) (-4 *2 (-788)))) (-2131 (*1 *1 *1 *1) (-12 (-4 *1 (-900 *2)) (-4 *2 (-788)))) (-2921 (*1 *1 *1 *1) (-12 (-4 *1 (-900 *2)) (-4 *2 (-788)))))
+(-13 (-102 |t#1|) (-10 -8 (-6 -4250) (-15 -2478 (|t#1| $)) (-15 -2131 ($ $ $)) (-15 -2921 ($ $ $))))
+(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-2151 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1399 |#2|)) |#2| |#2|) 85)) (-2944 ((|#2| |#2| |#2|) 83)) (-3852 (((-2 (|:| |coef2| |#2|) (|:| -1399 |#2|)) |#2| |#2|) 87)) (-2444 (((-2 (|:| |coef1| |#2|) (|:| -1399 |#2|)) |#2| |#2|) 89)) (-3559 (((-2 (|:| |coef2| |#2|) (|:| -3727 |#1|)) |#2| |#2|) 107 (|has| |#1| (-429)))) (-1795 (((-2 (|:| |coef2| |#2|) (|:| -2805 |#1|)) |#2| |#2|) 46)) (-1908 (((-2 (|:| |coef2| |#2|) (|:| -2805 |#1|)) |#2| |#2|) 64)) (-3693 (((-2 (|:| |coef1| |#2|) (|:| -2805 |#1|)) |#2| |#2|) 66)) (-1233 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 78)) (-3730 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-712)) 71)) (-3869 (((-2 (|:| |coef2| |#2|) (|:| -2976 |#1|)) |#2|) 97)) (-1202 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-712)) 74)) (-2825 (((-591 (-712)) |#2| |#2|) 82)) (-2262 ((|#1| |#2| |#2|) 42)) (-2946 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3727 |#1|)) |#2| |#2|) 105 (|has| |#1| (-429)))) (-3727 ((|#1| |#2| |#2|) 103 (|has| |#1| (-429)))) (-3887 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2805 |#1|)) |#2| |#2|) 44)) (-1873 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2805 |#1|)) |#2| |#2|) 63)) (-2805 ((|#1| |#2| |#2|) 61)) (-3867 (((-2 (|:| -3482 |#1|) (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2|) 35)) (-2039 ((|#2| |#2| |#2| |#2| |#1|) 53)) (-2888 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 76)) (-2627 ((|#2| |#2| |#2|) 75)) (-3062 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-712)) 69)) (-1577 ((|#2| |#2| |#2| (-712)) 67)) (-1399 ((|#2| |#2| |#2|) 111 (|has| |#1| (-429)))) (-2089 (((-1171 |#2|) (-1171 |#2|) |#1|) 21)) (-3999 (((-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2|) 39)) (-1671 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2976 |#1|)) |#2|) 95)) (-2976 ((|#1| |#2|) 92)) (-3100 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-712)) 73)) (-3021 ((|#2| |#2| |#2| (-712)) 72)) (-2345 (((-591 |#2|) |#2| |#2|) 80)) (-2852 ((|#2| |#2| |#1| |#1| (-712)) 50)) (-3335 ((|#1| |#1| |#1| (-712)) 49)) (* (((-1171 |#2|) |#1| (-1171 |#2|)) 16)))
+(((-901 |#1| |#2|) (-10 -7 (-15 -2805 (|#1| |#2| |#2|)) (-15 -1873 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2805 |#1|)) |#2| |#2|)) (-15 -1908 ((-2 (|:| |coef2| |#2|) (|:| -2805 |#1|)) |#2| |#2|)) (-15 -3693 ((-2 (|:| |coef1| |#2|) (|:| -2805 |#1|)) |#2| |#2|)) (-15 -1577 (|#2| |#2| |#2| (-712))) (-15 -3062 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-712))) (-15 -3730 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-712))) (-15 -3021 (|#2| |#2| |#2| (-712))) (-15 -3100 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-712))) (-15 -1202 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-712))) (-15 -2627 (|#2| |#2| |#2|)) (-15 -2888 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -1233 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2944 (|#2| |#2| |#2|)) (-15 -2151 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1399 |#2|)) |#2| |#2|)) (-15 -3852 ((-2 (|:| |coef2| |#2|) (|:| -1399 |#2|)) |#2| |#2|)) (-15 -2444 ((-2 (|:| |coef1| |#2|) (|:| -1399 |#2|)) |#2| |#2|)) (-15 -2976 (|#1| |#2|)) (-15 -1671 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2976 |#1|)) |#2|)) (-15 -3869 ((-2 (|:| |coef2| |#2|) (|:| -2976 |#1|)) |#2|)) (-15 -2345 ((-591 |#2|) |#2| |#2|)) (-15 -2825 ((-591 (-712)) |#2| |#2|)) (IF (|has| |#1| (-429)) (PROGN (-15 -3727 (|#1| |#2| |#2|)) (-15 -2946 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3727 |#1|)) |#2| |#2|)) (-15 -3559 ((-2 (|:| |coef2| |#2|) (|:| -3727 |#1|)) |#2| |#2|)) (-15 -1399 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1171 |#2|) |#1| (-1171 |#2|))) (-15 -2089 ((-1171 |#2|) (-1171 |#2|) |#1|)) (-15 -3867 ((-2 (|:| -3482 |#1|) (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2|)) (-15 -3999 ((-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2|)) (-15 -3335 (|#1| |#1| |#1| (-712))) (-15 -2852 (|#2| |#2| |#1| |#1| (-712))) (-15 -2039 (|#2| |#2| |#2| |#2| |#1|)) (-15 -2262 (|#1| |#2| |#2|)) (-15 -3887 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2805 |#1|)) |#2| |#2|)) (-15 -1795 ((-2 (|:| |coef2| |#2|) (|:| -2805 |#1|)) |#2| |#2|))) (-517) (-1147 |#1|)) (T -901))
+((-1795 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2805 *4))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-3887 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2805 *4))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-2262 (*1 *2 *3 *3) (-12 (-4 *2 (-517)) (-5 *1 (-901 *2 *3)) (-4 *3 (-1147 *2)))) (-2039 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-517)) (-5 *1 (-901 *3 *2)) (-4 *2 (-1147 *3)))) (-2852 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-712)) (-4 *3 (-517)) (-5 *1 (-901 *3 *2)) (-4 *2 (-1147 *3)))) (-3335 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-712)) (-4 *2 (-517)) (-5 *1 (-901 *2 *4)) (-4 *4 (-1147 *2)))) (-3999 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-3867 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| -3482 *4) (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-2089 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 *4)) (-4 *4 (-1147 *3)) (-4 *3 (-517)) (-5 *1 (-901 *3 *4)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1171 *4)) (-4 *4 (-1147 *3)) (-4 *3 (-517)) (-5 *1 (-901 *3 *4)))) (-1399 (*1 *2 *2 *2) (-12 (-4 *3 (-429)) (-4 *3 (-517)) (-5 *1 (-901 *3 *2)) (-4 *2 (-1147 *3)))) (-3559 (*1 *2 *3 *3) (-12 (-4 *4 (-429)) (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3727 *4))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-2946 (*1 *2 *3 *3) (-12 (-4 *4 (-429)) (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3727 *4))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-3727 (*1 *2 *3 *3) (-12 (-4 *2 (-517)) (-4 *2 (-429)) (-5 *1 (-901 *2 *3)) (-4 *3 (-1147 *2)))) (-2825 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-5 *2 (-591 (-712))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-2345 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-5 *2 (-591 *3)) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-3869 (*1 *2 *3) (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2976 *4))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-1671 (*1 *2 *3) (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2976 *4))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-2976 (*1 *2 *3) (-12 (-4 *2 (-517)) (-5 *1 (-901 *2 *3)) (-4 *3 (-1147 *2)))) (-2444 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1399 *3))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-3852 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1399 *3))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-2151 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1399 *3))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-2944 (*1 *2 *2 *2) (-12 (-4 *3 (-517)) (-5 *1 (-901 *3 *2)) (-4 *2 (-1147 *3)))) (-1233 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-2888 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-2627 (*1 *2 *2 *2) (-12 (-4 *3 (-517)) (-5 *1 (-901 *3 *2)) (-4 *2 (-1147 *3)))) (-1202 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-712)) (-4 *5 (-517)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-901 *5 *3)) (-4 *3 (-1147 *5)))) (-3100 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-712)) (-4 *5 (-517)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-901 *5 *3)) (-4 *3 (-1147 *5)))) (-3021 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-712)) (-4 *4 (-517)) (-5 *1 (-901 *4 *2)) (-4 *2 (-1147 *4)))) (-3730 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-712)) (-4 *5 (-517)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-901 *5 *3)) (-4 *3 (-1147 *5)))) (-3062 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-712)) (-4 *5 (-517)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-901 *5 *3)) (-4 *3 (-1147 *5)))) (-1577 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-712)) (-4 *4 (-517)) (-5 *1 (-901 *4 *2)) (-4 *2 (-1147 *4)))) (-3693 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2805 *4))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-1908 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2805 *4))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-1873 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2805 *4))) (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))) (-2805 (*1 *2 *3 *3) (-12 (-4 *2 (-517)) (-5 *1 (-901 *2 *3)) (-4 *3 (-1147 *2)))))
+(-10 -7 (-15 -2805 (|#1| |#2| |#2|)) (-15 -1873 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2805 |#1|)) |#2| |#2|)) (-15 -1908 ((-2 (|:| |coef2| |#2|) (|:| -2805 |#1|)) |#2| |#2|)) (-15 -3693 ((-2 (|:| |coef1| |#2|) (|:| -2805 |#1|)) |#2| |#2|)) (-15 -1577 (|#2| |#2| |#2| (-712))) (-15 -3062 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-712))) (-15 -3730 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-712))) (-15 -3021 (|#2| |#2| |#2| (-712))) (-15 -3100 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-712))) (-15 -1202 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-712))) (-15 -2627 (|#2| |#2| |#2|)) (-15 -2888 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -1233 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2944 (|#2| |#2| |#2|)) (-15 -2151 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1399 |#2|)) |#2| |#2|)) (-15 -3852 ((-2 (|:| |coef2| |#2|) (|:| -1399 |#2|)) |#2| |#2|)) (-15 -2444 ((-2 (|:| |coef1| |#2|) (|:| -1399 |#2|)) |#2| |#2|)) (-15 -2976 (|#1| |#2|)) (-15 -1671 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2976 |#1|)) |#2|)) (-15 -3869 ((-2 (|:| |coef2| |#2|) (|:| -2976 |#1|)) |#2|)) (-15 -2345 ((-591 |#2|) |#2| |#2|)) (-15 -2825 ((-591 (-712)) |#2| |#2|)) (IF (|has| |#1| (-429)) (PROGN (-15 -3727 (|#1| |#2| |#2|)) (-15 -2946 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3727 |#1|)) |#2| |#2|)) (-15 -3559 ((-2 (|:| |coef2| |#2|) (|:| -3727 |#1|)) |#2| |#2|)) (-15 -1399 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1171 |#2|) |#1| (-1171 |#2|))) (-15 -2089 ((-1171 |#2|) (-1171 |#2|) |#1|)) (-15 -3867 ((-2 (|:| -3482 |#1|) (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2|)) (-15 -3999 ((-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) |#2| |#2|)) (-15 -3335 (|#1| |#1| |#1| (-712))) (-15 -2852 (|#2| |#2| |#1| |#1| (-712))) (-15 -2039 (|#2| |#2| |#2| |#2| |#1|)) (-15 -2262 (|#1| |#2| |#2|)) (-15 -3887 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2805 |#1|)) |#2| |#2|)) (-15 -1795 ((-2 (|:| |coef2| |#2|) (|:| -2805 |#1|)) |#2| |#2|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) 27)) (-3798 (($) NIL T CONST)) (-3938 (((-591 (-591 (-525))) (-591 (-525))) 29)) (-2124 (((-525) $) 45)) (-3670 (($ (-591 (-525))) 17)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1408 (((-591 (-525)) $) 12)) (-3228 (($ $) 32)) (-3022 (((-796) $) 43) (((-591 (-525)) $) 10)) (-4191 (($) 7 T CONST)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 20)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 19)) (-4156 (($ $ $) 21)) (* (($ (-712) $) 25) (($ (-854) $) NIL)))
+(((-902) (-13 (-736) (-566 (-591 (-525))) (-10 -8 (-15 -3670 ($ (-591 (-525)))) (-15 -3938 ((-591 (-591 (-525))) (-591 (-525)))) (-15 -2124 ((-525) $)) (-15 -3228 ($ $)) (-15 -3022 ((-591 (-525)) $))))) (T -902))
+((-3670 (*1 *1 *2) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-902)))) (-3938 (*1 *2 *3) (-12 (-5 *2 (-591 (-591 (-525)))) (-5 *1 (-902)) (-5 *3 (-591 (-525))))) (-2124 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-902)))) (-3228 (*1 *1 *1) (-5 *1 (-902))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-902)))))
+(-13 (-736) (-566 (-591 (-525))) (-10 -8 (-15 -3670 ($ (-591 (-525)))) (-15 -3938 ((-591 (-591 (-525))) (-591 (-525)))) (-15 -2124 ((-525) $)) (-15 -3228 ($ $)) (-15 -3022 ((-591 (-525)) $))))
+((-4173 (($ $ |#2|) 30)) (-4164 (($ $) 22) (($ $ $) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 15) (($ $ $) NIL) (($ $ |#2|) 20) (($ |#2| $) 19) (($ (-385 (-525)) $) 26) (($ $ (-385 (-525))) 28)))
+(((-903 |#1| |#2| |#3| |#4|) (-10 -8 (-15 * (|#1| |#1| (-385 (-525)))) (-15 * (|#1| (-385 (-525)) |#1|)) (-15 -4173 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 -4164 (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-854) |#1|))) (-904 |#2| |#3| |#4|) (-975) (-733) (-788)) (T -903))
+NIL
+(-10 -8 (-15 * (|#1| |#1| (-385 (-525)))) (-15 * (|#1| (-385 (-525)) |#1|)) (-15 -4173 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 -4164 (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 * (|#1| (-854) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1507 (((-591 |#3|) $) 74)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 51 (|has| |#1| (-517)))) (-3706 (($ $) 52 (|has| |#1| (-517)))) (-1715 (((-108) $) 54 (|has| |#1| (-517)))) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-1710 (($ $) 60)) (-4163 (((-3 $ "failed") $) 34)) (-3123 (((-108) $) 73)) (-2824 (((-108) $) 31)) (-2202 (((-108) $) 62)) (-1480 (($ |#1| |#2|) 61) (($ $ |#3| |#2|) 76) (($ $ (-591 |#3|) (-591 |#2|)) 75)) (-1340 (($ (-1 |#1| |#1|) $) 63)) (-1661 (($ $) 65)) (-1678 ((|#1| $) 66)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2089 (((-3 $ "failed") $ $) 50 (|has| |#1| (-517)))) (-1316 ((|#2| $) 64)) (-3571 (($ $) 72)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ (-385 (-525))) 57 (|has| |#1| (-37 (-385 (-525))))) (($ $) 49 (|has| |#1| (-517))) (($ |#1|) 47 (|has| |#1| (-160)))) (-2560 ((|#1| $ |#2|) 59)) (-1437 (((-3 $ "failed") $) 48 (|has| |#1| (-136)))) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 53 (|has| |#1| (-517)))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4173 (($ $ |#1|) 58 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-385 (-525)) $) 56 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 55 (|has| |#1| (-37 (-385 (-525)))))))
+(((-904 |#1| |#2| |#3|) (-131) (-975) (-733) (-788)) (T -904))
+((-1678 (*1 *2 *1) (-12 (-4 *1 (-904 *2 *3 *4)) (-4 *3 (-733)) (-4 *4 (-788)) (-4 *2 (-975)))) (-1661 (*1 *1 *1) (-12 (-4 *1 (-904 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-733)) (-4 *4 (-788)))) (-1316 (*1 *2 *1) (-12 (-4 *1 (-904 *3 *2 *4)) (-4 *3 (-975)) (-4 *4 (-788)) (-4 *2 (-733)))) (-1480 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-904 *4 *3 *2)) (-4 *4 (-975)) (-4 *3 (-733)) (-4 *2 (-788)))) (-1480 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 *6)) (-5 *3 (-591 *5)) (-4 *1 (-904 *4 *5 *6)) (-4 *4 (-975)) (-4 *5 (-733)) (-4 *6 (-788)))) (-1507 (*1 *2 *1) (-12 (-4 *1 (-904 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-733)) (-4 *5 (-788)) (-5 *2 (-591 *5)))) (-3123 (*1 *2 *1) (-12 (-4 *1 (-904 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-733)) (-4 *5 (-788)) (-5 *2 (-108)))) (-3571 (*1 *1 *1) (-12 (-4 *1 (-904 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-733)) (-4 *4 (-788)))))
+(-13 (-46 |t#1| |t#2|) (-10 -8 (-15 -1480 ($ $ |t#3| |t#2|)) (-15 -1480 ($ $ (-591 |t#3|) (-591 |t#2|))) (-15 -1661 ($ $)) (-15 -1678 (|t#1| $)) (-15 -1316 (|t#2| $)) (-15 -1507 ((-591 |t#3|) $)) (-15 -3123 ((-108) $)) (-15 -3571 ($ $))))
+(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((-37 |#1|) |has| |#1| (-160)) ((-37 $) |has| |#1| (-517)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-385 (-525)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-269) |has| |#1| (-517)) ((-517) |has| |#1| (-517)) ((-593 #0#) |has| |#1| (-37 (-385 (-525)))) ((-593 |#1|) . T) ((-593 $) . T) ((-659 #0#) |has| |#1| (-37 (-385 (-525)))) ((-659 |#1|) |has| |#1| (-160)) ((-659 $) |has| |#1| (-517)) ((-668) . T) ((-981 #0#) |has| |#1| (-37 (-385 (-525)))) ((-981 |#1|) . T) ((-981 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3243 (((-1013 (-205)) $) 8)) (-3236 (((-1013 (-205)) $) 9)) (-3229 (((-1013 (-205)) $) 10)) (-3001 (((-591 (-591 (-876 (-205)))) $) 11)) (-3022 (((-796) $) 6)))
+(((-905) (-131)) (T -905))
+((-3001 (*1 *2 *1) (-12 (-4 *1 (-905)) (-5 *2 (-591 (-591 (-876 (-205))))))) (-3229 (*1 *2 *1) (-12 (-4 *1 (-905)) (-5 *2 (-1013 (-205))))) (-3236 (*1 *2 *1) (-12 (-4 *1 (-905)) (-5 *2 (-1013 (-205))))) (-3243 (*1 *2 *1) (-12 (-4 *1 (-905)) (-5 *2 (-1013 (-205))))))
+(-13 (-565 (-796)) (-10 -8 (-15 -3001 ((-591 (-591 (-876 (-205)))) $)) (-15 -3229 ((-1013 (-205)) $)) (-15 -3236 ((-1013 (-205)) $)) (-15 -3243 ((-1013 (-205)) $))))
+(((-565 (-796)) . T))
+((-1507 (((-591 |#4|) $) 23)) (-1430 (((-108) $) 48)) (-3490 (((-108) $) 47)) (-3327 (((-2 (|:| |under| $) (|:| -2662 $) (|:| |upper| $)) $ |#4|) 36)) (-3382 (((-108) $) 49)) (-2438 (((-108) $ $) 55)) (-2055 (((-108) $ $) 58)) (-1964 (((-108) $) 53)) (-3853 (((-591 |#5|) (-591 |#5|) $) 90)) (-1921 (((-591 |#5|) (-591 |#5|) $) 87)) (-3407 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 81)) (-3993 (((-591 |#4|) $) 27)) (-4174 (((-108) |#4| $) 30)) (-2934 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 73)) (-3134 (($ $ |#4|) 33)) (-3443 (($ $ |#4|) 32)) (-3010 (($ $ |#4|) 34)) (-4096 (((-108) $ $) 40)))
+(((-906 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3490 ((-108) |#1|)) (-15 -3853 ((-591 |#5|) (-591 |#5|) |#1|)) (-15 -1921 ((-591 |#5|) (-591 |#5|) |#1|)) (-15 -3407 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2934 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3382 ((-108) |#1|)) (-15 -2055 ((-108) |#1| |#1|)) (-15 -2438 ((-108) |#1| |#1|)) (-15 -1964 ((-108) |#1|)) (-15 -1430 ((-108) |#1|)) (-15 -3327 ((-2 (|:| |under| |#1|) (|:| -2662 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -3134 (|#1| |#1| |#4|)) (-15 -3010 (|#1| |#1| |#4|)) (-15 -3443 (|#1| |#1| |#4|)) (-15 -4174 ((-108) |#4| |#1|)) (-15 -3993 ((-591 |#4|) |#1|)) (-15 -1507 ((-591 |#4|) |#1|)) (-15 -4096 ((-108) |#1| |#1|))) (-907 |#2| |#3| |#4| |#5|) (-975) (-734) (-788) (-989 |#2| |#3| |#4|)) (T -906))
+NIL
+(-10 -8 (-15 -3490 ((-108) |#1|)) (-15 -3853 ((-591 |#5|) (-591 |#5|) |#1|)) (-15 -1921 ((-591 |#5|) (-591 |#5|) |#1|)) (-15 -3407 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2934 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3382 ((-108) |#1|)) (-15 -2055 ((-108) |#1| |#1|)) (-15 -2438 ((-108) |#1| |#1|)) (-15 -1964 ((-108) |#1|)) (-15 -1430 ((-108) |#1|)) (-15 -3327 ((-2 (|:| |under| |#1|) (|:| -2662 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -3134 (|#1| |#1| |#4|)) (-15 -3010 (|#1| |#1| |#4|)) (-15 -3443 (|#1| |#1| |#4|)) (-15 -4174 ((-108) |#4| |#1|)) (-15 -3993 ((-591 |#4|) |#1|)) (-15 -1507 ((-591 |#4|) |#1|)) (-15 -4096 ((-108) |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1507 (((-591 |#3|) $) 33)) (-1430 (((-108) $) 26)) (-3490 (((-108) $) 17 (|has| |#1| (-517)))) (-3327 (((-2 (|:| |under| $) (|:| -2662 $) (|:| |upper| $)) $ |#3|) 27)) (-3891 (((-108) $ (-712)) 44)) (-2305 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4250)))) (-3798 (($) 45 T CONST)) (-3382 (((-108) $) 22 (|has| |#1| (-517)))) (-2438 (((-108) $ $) 24 (|has| |#1| (-517)))) (-2055 (((-108) $ $) 23 (|has| |#1| (-517)))) (-1964 (((-108) $) 25 (|has| |#1| (-517)))) (-3853 (((-591 |#4|) (-591 |#4|) $) 18 (|has| |#1| (-517)))) (-1921 (((-591 |#4|) (-591 |#4|) $) 19 (|has| |#1| (-517)))) (-1251 (((-3 $ "failed") (-591 |#4|)) 36)) (-3528 (($ (-591 |#4|)) 35)) (-3098 (($ $) 68 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ |#4| $) 67 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4250)))) (-3407 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-517)))) (-1227 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4250))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4250)))) (-3454 (((-591 |#4|) $) 52 (|has| $ (-6 -4250)))) (-2009 ((|#3| $) 34)) (-2910 (((-108) $ (-712)) 43)) (-2552 (((-591 |#4|) $) 53 (|has| $ (-6 -4250)))) (-2141 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#4| |#4|) $) 47)) (-3993 (((-591 |#3|) $) 32)) (-4174 (((-108) |#3| $) 31)) (-3971 (((-108) $ (-712)) 42)) (-2339 (((-1072) $) 9)) (-2934 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-517)))) (-2047 (((-1036) $) 10)) (-2069 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-1623 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 |#4|) (-591 |#4|)) 59 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-273 |#4|)) 57 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-591 (-273 |#4|))) 56 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))) (-3493 (((-108) $ $) 38)) (-3028 (((-108) $) 41)) (-3209 (($) 40)) (-2064 (((-712) |#4| $) 54 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) (((-712) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4250)))) (-3199 (($ $) 39)) (-1408 (((-501) $) 69 (|has| |#4| (-566 (-501))))) (-3036 (($ (-591 |#4|)) 60)) (-3134 (($ $ |#3|) 28)) (-3443 (($ $ |#3|) 30)) (-3010 (($ $ |#3|) 29)) (-3022 (((-796) $) 11) (((-591 |#4|) $) 37)) (-4158 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 6)) (-4045 (((-712) $) 46 (|has| $ (-6 -4250)))))
+(((-907 |#1| |#2| |#3| |#4|) (-131) (-975) (-734) (-788) (-989 |t#1| |t#2| |t#3|)) (T -907))
+((-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *1 (-907 *3 *4 *5 *6)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *1 (-907 *3 *4 *5 *6)))) (-2009 (*1 *2 *1) (-12 (-4 *1 (-907 *3 *4 *2 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-989 *3 *4 *2)) (-4 *2 (-788)))) (-1507 (*1 *2 *1) (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-591 *5)))) (-3993 (*1 *2 *1) (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-591 *5)))) (-4174 (*1 *2 *3 *1) (-12 (-4 *1 (-907 *4 *5 *3 *6)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-788)) (-4 *6 (-989 *4 *5 *3)) (-5 *2 (-108)))) (-3443 (*1 *1 *1 *2) (-12 (-4 *1 (-907 *3 *4 *2 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *2 (-788)) (-4 *5 (-989 *3 *4 *2)))) (-3010 (*1 *1 *1 *2) (-12 (-4 *1 (-907 *3 *4 *2 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *2 (-788)) (-4 *5 (-989 *3 *4 *2)))) (-3134 (*1 *1 *1 *2) (-12 (-4 *1 (-907 *3 *4 *2 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *2 (-788)) (-4 *5 (-989 *3 *4 *2)))) (-3327 (*1 *2 *1 *3) (-12 (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-788)) (-4 *6 (-989 *4 *5 *3)) (-5 *2 (-2 (|:| |under| *1) (|:| -2662 *1) (|:| |upper| *1))) (-4 *1 (-907 *4 *5 *3 *6)))) (-1430 (*1 *2 *1) (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-108)))) (-1964 (*1 *2 *1) (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517)) (-5 *2 (-108)))) (-2438 (*1 *2 *1 *1) (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517)) (-5 *2 (-108)))) (-2055 (*1 *2 *1 *1) (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517)) (-5 *2 (-108)))) (-3382 (*1 *2 *1) (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517)) (-5 *2 (-108)))) (-2934 (*1 *2 *3 *1) (-12 (-4 *1 (-907 *4 *5 *6 *3)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-4 *4 (-517)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))) (-3407 (*1 *2 *3 *1) (-12 (-4 *1 (-907 *4 *5 *6 *3)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-4 *4 (-517)) (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))) (-1921 (*1 *2 *2 *1) (-12 (-5 *2 (-591 *6)) (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517)))) (-3853 (*1 *2 *2 *1) (-12 (-5 *2 (-591 *6)) (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517)))) (-3490 (*1 *2 *1) (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517)) (-5 *2 (-108)))))
+(-13 (-1018) (-142 |t#4|) (-565 (-591 |t#4|)) (-10 -8 (-6 -4250) (-15 -1251 ((-3 $ "failed") (-591 |t#4|))) (-15 -3528 ($ (-591 |t#4|))) (-15 -2009 (|t#3| $)) (-15 -1507 ((-591 |t#3|) $)) (-15 -3993 ((-591 |t#3|) $)) (-15 -4174 ((-108) |t#3| $)) (-15 -3443 ($ $ |t#3|)) (-15 -3010 ($ $ |t#3|)) (-15 -3134 ($ $ |t#3|)) (-15 -3327 ((-2 (|:| |under| $) (|:| -2662 $) (|:| |upper| $)) $ |t#3|)) (-15 -1430 ((-108) $)) (IF (|has| |t#1| (-517)) (PROGN (-15 -1964 ((-108) $)) (-15 -2438 ((-108) $ $)) (-15 -2055 ((-108) $ $)) (-15 -3382 ((-108) $)) (-15 -2934 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -3407 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -1921 ((-591 |t#4|) (-591 |t#4|) $)) (-15 -3853 ((-591 |t#4|) (-591 |t#4|) $)) (-15 -3490 ((-108) $))) |%noBranch|)))
+(((-33) . T) ((-97) . T) ((-565 (-591 |#4|)) . T) ((-565 (-796)) . T) ((-142 |#4|) . T) ((-566 (-501)) |has| |#4| (-566 (-501))) ((-288 |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))) ((-464 |#4|) . T) ((-486 |#4| |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))) ((-1018) . T) ((-1125) . T))
+((-1822 (((-591 |#4|) |#4| |#4|) 116)) (-1741 (((-591 |#4|) (-591 |#4|) (-108)) 105 (|has| |#1| (-429))) (((-591 |#4|) (-591 |#4|)) 106 (|has| |#1| (-429)))) (-1673 (((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 |#4|)) 35)) (-3889 (((-108) |#4|) 34)) (-1683 (((-591 |#4|) |#4|) 102 (|has| |#1| (-429)))) (-2998 (((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-1 (-108) |#4|) (-591 |#4|)) 20)) (-2993 (((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 (-1 (-108) |#4|)) (-591 |#4|)) 22)) (-1724 (((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 (-1 (-108) |#4|)) (-591 |#4|)) 23)) (-1447 (((-3 (-2 (|:| |bas| (-453 |#1| |#2| |#3| |#4|)) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|)) 73)) (-2592 (((-591 |#4|) (-591 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 85)) (-2409 (((-591 |#4|) (-591 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 109)) (-1311 (((-591 |#4|) (-591 |#4|)) 108)) (-4201 (((-591 |#4|) (-591 |#4|) (-591 |#4|) (-108)) 48) (((-591 |#4|) (-591 |#4|) (-591 |#4|)) 50)) (-2547 ((|#4| |#4| (-591 |#4|)) 49)) (-1643 (((-591 |#4|) (-591 |#4|) (-591 |#4|)) 112 (|has| |#1| (-429)))) (-2958 (((-591 |#4|) (-591 |#4|) (-591 |#4|)) 115 (|has| |#1| (-429)))) (-2250 (((-591 |#4|) (-591 |#4|) (-591 |#4|)) 114 (|has| |#1| (-429)))) (-2715 (((-591 |#4|) (-591 |#4|) (-591 |#4|) (-1 (-591 |#4|) (-591 |#4|))) 87) (((-591 |#4|) (-591 |#4|) (-591 |#4|)) 89) (((-591 |#4|) (-591 |#4|) |#4|) 119) (((-591 |#4|) |#4| |#4|) 117) (((-591 |#4|) (-591 |#4|)) 88)) (-1652 (((-591 |#4|) (-591 |#4|) (-591 |#4|)) 99 (-12 (|has| |#1| (-138)) (|has| |#1| (-286))))) (-1283 (((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 |#4|)) 41)) (-2091 (((-108) (-591 |#4|)) 62)) (-2224 (((-108) (-591 |#4|) (-591 (-591 |#4|))) 53)) (-3535 (((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 |#4|)) 29)) (-4190 (((-108) |#4|) 28)) (-3621 (((-591 |#4|) (-591 |#4|)) 98 (-12 (|has| |#1| (-138)) (|has| |#1| (-286))))) (-3667 (((-591 |#4|) (-591 |#4|)) 97 (-12 (|has| |#1| (-138)) (|has| |#1| (-286))))) (-2326 (((-591 |#4|) (-591 |#4|)) 66)) (-3095 (((-591 |#4|) (-591 |#4|)) 79)) (-1280 (((-108) (-591 |#4|) (-591 |#4|)) 51)) (-3568 (((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 |#4|)) 39)) (-4037 (((-108) |#4|) 36)))
+(((-908 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2715 ((-591 |#4|) (-591 |#4|))) (-15 -2715 ((-591 |#4|) |#4| |#4|)) (-15 -1311 ((-591 |#4|) (-591 |#4|))) (-15 -1822 ((-591 |#4|) |#4| |#4|)) (-15 -2715 ((-591 |#4|) (-591 |#4|) |#4|)) (-15 -2715 ((-591 |#4|) (-591 |#4|) (-591 |#4|))) (-15 -2715 ((-591 |#4|) (-591 |#4|) (-591 |#4|) (-1 (-591 |#4|) (-591 |#4|)))) (-15 -1280 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -2224 ((-108) (-591 |#4|) (-591 (-591 |#4|)))) (-15 -2091 ((-108) (-591 |#4|))) (-15 -2998 ((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-1 (-108) |#4|) (-591 |#4|))) (-15 -2993 ((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 (-1 (-108) |#4|)) (-591 |#4|))) (-15 -1724 ((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 (-1 (-108) |#4|)) (-591 |#4|))) (-15 -1283 ((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 |#4|))) (-15 -3889 ((-108) |#4|)) (-15 -1673 ((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 |#4|))) (-15 -4190 ((-108) |#4|)) (-15 -3535 ((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 |#4|))) (-15 -4037 ((-108) |#4|)) (-15 -3568 ((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 |#4|))) (-15 -4201 ((-591 |#4|) (-591 |#4|) (-591 |#4|))) (-15 -4201 ((-591 |#4|) (-591 |#4|) (-591 |#4|) (-108))) (-15 -2547 (|#4| |#4| (-591 |#4|))) (-15 -2326 ((-591 |#4|) (-591 |#4|))) (-15 -1447 ((-3 (-2 (|:| |bas| (-453 |#1| |#2| |#3| |#4|)) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|))) (-15 -3095 ((-591 |#4|) (-591 |#4|))) (-15 -2592 ((-591 |#4|) (-591 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2409 ((-591 |#4|) (-591 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-429)) (PROGN (-15 -1683 ((-591 |#4|) |#4|)) (-15 -1741 ((-591 |#4|) (-591 |#4|))) (-15 -1741 ((-591 |#4|) (-591 |#4|) (-108))) (-15 -1643 ((-591 |#4|) (-591 |#4|) (-591 |#4|))) (-15 -2250 ((-591 |#4|) (-591 |#4|) (-591 |#4|))) (-15 -2958 ((-591 |#4|) (-591 |#4|) (-591 |#4|)))) |%noBranch|) (IF (|has| |#1| (-286)) (IF (|has| |#1| (-138)) (PROGN (-15 -3667 ((-591 |#4|) (-591 |#4|))) (-15 -3621 ((-591 |#4|) (-591 |#4|))) (-15 -1652 ((-591 |#4|) (-591 |#4|) (-591 |#4|)))) |%noBranch|) |%noBranch|)) (-517) (-734) (-788) (-989 |#1| |#2| |#3|)) (T -908))
+((-1652 (*1 *2 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-138)) (-4 *3 (-286)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))) (-3621 (*1 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-138)) (-4 *3 (-286)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))) (-3667 (*1 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-138)) (-4 *3 (-286)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))) (-2958 (*1 *2 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-429)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))) (-2250 (*1 *2 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-429)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))) (-1643 (*1 *2 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-429)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))) (-1741 (*1 *2 *2 *3) (-12 (-5 *2 (-591 *7)) (-5 *3 (-108)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-908 *4 *5 *6 *7)))) (-1741 (*1 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-429)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))) (-1683 (*1 *2 *3) (-12 (-4 *4 (-429)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 *3)) (-5 *1 (-908 *4 *5 *6 *3)) (-4 *3 (-989 *4 *5 *6)))) (-2409 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-591 *8)) (-5 *3 (-1 (-108) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *1 (-908 *5 *6 *7 *8)))) (-2592 (*1 *2 *2 *3 *4 *5) (-12 (-5 *2 (-591 *9)) (-5 *3 (-1 (-108) *9)) (-5 *4 (-1 (-108) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-989 *6 *7 *8)) (-4 *6 (-517)) (-4 *7 (-734)) (-4 *8 (-788)) (-5 *1 (-908 *6 *7 *8 *9)))) (-3095 (*1 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))) (-1447 (*1 *2 *3) (|partial| -12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-2 (|:| |bas| (-453 *4 *5 *6 *7)) (|:| -1211 (-591 *7)))) (-5 *1 (-908 *4 *5 *6 *7)) (-5 *3 (-591 *7)))) (-2326 (*1 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))) (-2547 (*1 *2 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-989 *4 *5 *6)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-908 *4 *5 *6 *2)))) (-4201 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-591 *7)) (-5 *3 (-108)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-908 *4 *5 *6 *7)))) (-4201 (*1 *2 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))) (-3568 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-591 *7)) (|:| |badPols| (-591 *7)))) (-5 *1 (-908 *4 *5 *6 *7)) (-5 *3 (-591 *7)))) (-4037 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-908 *4 *5 *6 *3)) (-4 *3 (-989 *4 *5 *6)))) (-3535 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-591 *7)) (|:| |badPols| (-591 *7)))) (-5 *1 (-908 *4 *5 *6 *7)) (-5 *3 (-591 *7)))) (-4190 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-908 *4 *5 *6 *3)) (-4 *3 (-989 *4 *5 *6)))) (-1673 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-591 *7)) (|:| |badPols| (-591 *7)))) (-5 *1 (-908 *4 *5 *6 *7)) (-5 *3 (-591 *7)))) (-3889 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-908 *4 *5 *6 *3)) (-4 *3 (-989 *4 *5 *6)))) (-1283 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-591 *7)) (|:| |badPols| (-591 *7)))) (-5 *1 (-908 *4 *5 *6 *7)) (-5 *3 (-591 *7)))) (-1724 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-1 (-108) *8))) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-2 (|:| |goodPols| (-591 *8)) (|:| |badPols| (-591 *8)))) (-5 *1 (-908 *5 *6 *7 *8)) (-5 *4 (-591 *8)))) (-2993 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-1 (-108) *8))) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-2 (|:| |goodPols| (-591 *8)) (|:| |badPols| (-591 *8)))) (-5 *1 (-908 *5 *6 *7 *8)) (-5 *4 (-591 *8)))) (-2998 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-108) *8)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-2 (|:| |goodPols| (-591 *8)) (|:| |badPols| (-591 *8)))) (-5 *1 (-908 *5 *6 *7 *8)) (-5 *4 (-591 *8)))) (-2091 (*1 *2 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-908 *4 *5 *6 *7)))) (-2224 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-591 *8))) (-5 *3 (-591 *8)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-108)) (-5 *1 (-908 *5 *6 *7 *8)))) (-1280 (*1 *2 *3 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-908 *4 *5 *6 *7)))) (-2715 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 (-591 *7) (-591 *7))) (-5 *2 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-908 *4 *5 *6 *7)))) (-2715 (*1 *2 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))) (-2715 (*1 *2 *2 *3) (-12 (-5 *2 (-591 *3)) (-4 *3 (-989 *4 *5 *6)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-908 *4 *5 *6 *3)))) (-1822 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 *3)) (-5 *1 (-908 *4 *5 *6 *3)) (-4 *3 (-989 *4 *5 *6)))) (-1311 (*1 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))) (-2715 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 *3)) (-5 *1 (-908 *4 *5 *6 *3)) (-4 *3 (-989 *4 *5 *6)))) (-2715 (*1 *2 *2) (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))))
+(-10 -7 (-15 -2715 ((-591 |#4|) (-591 |#4|))) (-15 -2715 ((-591 |#4|) |#4| |#4|)) (-15 -1311 ((-591 |#4|) (-591 |#4|))) (-15 -1822 ((-591 |#4|) |#4| |#4|)) (-15 -2715 ((-591 |#4|) (-591 |#4|) |#4|)) (-15 -2715 ((-591 |#4|) (-591 |#4|) (-591 |#4|))) (-15 -2715 ((-591 |#4|) (-591 |#4|) (-591 |#4|) (-1 (-591 |#4|) (-591 |#4|)))) (-15 -1280 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -2224 ((-108) (-591 |#4|) (-591 (-591 |#4|)))) (-15 -2091 ((-108) (-591 |#4|))) (-15 -2998 ((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-1 (-108) |#4|) (-591 |#4|))) (-15 -2993 ((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 (-1 (-108) |#4|)) (-591 |#4|))) (-15 -1724 ((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 (-1 (-108) |#4|)) (-591 |#4|))) (-15 -1283 ((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 |#4|))) (-15 -3889 ((-108) |#4|)) (-15 -1673 ((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 |#4|))) (-15 -4190 ((-108) |#4|)) (-15 -3535 ((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 |#4|))) (-15 -4037 ((-108) |#4|)) (-15 -3568 ((-2 (|:| |goodPols| (-591 |#4|)) (|:| |badPols| (-591 |#4|))) (-591 |#4|))) (-15 -4201 ((-591 |#4|) (-591 |#4|) (-591 |#4|))) (-15 -4201 ((-591 |#4|) (-591 |#4|) (-591 |#4|) (-108))) (-15 -2547 (|#4| |#4| (-591 |#4|))) (-15 -2326 ((-591 |#4|) (-591 |#4|))) (-15 -1447 ((-3 (-2 (|:| |bas| (-453 |#1| |#2| |#3| |#4|)) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|))) (-15 -3095 ((-591 |#4|) (-591 |#4|))) (-15 -2592 ((-591 |#4|) (-591 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2409 ((-591 |#4|) (-591 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-429)) (PROGN (-15 -1683 ((-591 |#4|) |#4|)) (-15 -1741 ((-591 |#4|) (-591 |#4|))) (-15 -1741 ((-591 |#4|) (-591 |#4|) (-108))) (-15 -1643 ((-591 |#4|) (-591 |#4|) (-591 |#4|))) (-15 -2250 ((-591 |#4|) (-591 |#4|) (-591 |#4|))) (-15 -2958 ((-591 |#4|) (-591 |#4|) (-591 |#4|)))) |%noBranch|) (IF (|has| |#1| (-286)) (IF (|has| |#1| (-138)) (PROGN (-15 -3667 ((-591 |#4|) (-591 |#4|))) (-15 -3621 ((-591 |#4|) (-591 |#4|))) (-15 -1652 ((-591 |#4|) (-591 |#4|) (-591 |#4|)))) |%noBranch|) |%noBranch|))
+((-2207 (((-2 (|:| R (-631 |#1|)) (|:| A (-631 |#1|)) (|:| |Ainv| (-631 |#1|))) (-631 |#1|) (-94 |#1|) (-1 |#1| |#1|)) 19)) (-2356 (((-591 (-2 (|:| C (-631 |#1|)) (|:| |g| (-1171 |#1|)))) (-631 |#1|) (-1171 |#1|)) 36)) (-3108 (((-631 |#1|) (-631 |#1|) (-631 |#1|) (-94 |#1|) (-1 |#1| |#1|)) 16)))
+(((-909 |#1|) (-10 -7 (-15 -2207 ((-2 (|:| R (-631 |#1|)) (|:| A (-631 |#1|)) (|:| |Ainv| (-631 |#1|))) (-631 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -3108 ((-631 |#1|) (-631 |#1|) (-631 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -2356 ((-591 (-2 (|:| C (-631 |#1|)) (|:| |g| (-1171 |#1|)))) (-631 |#1|) (-1171 |#1|)))) (-341)) (T -909))
+((-2356 (*1 *2 *3 *4) (-12 (-4 *5 (-341)) (-5 *2 (-591 (-2 (|:| C (-631 *5)) (|:| |g| (-1171 *5))))) (-5 *1 (-909 *5)) (-5 *3 (-631 *5)) (-5 *4 (-1171 *5)))) (-3108 (*1 *2 *2 *2 *3 *4) (-12 (-5 *2 (-631 *5)) (-5 *3 (-94 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-341)) (-5 *1 (-909 *5)))) (-2207 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-94 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-341)) (-5 *2 (-2 (|:| R (-631 *6)) (|:| A (-631 *6)) (|:| |Ainv| (-631 *6)))) (-5 *1 (-909 *6)) (-5 *3 (-631 *6)))))
+(-10 -7 (-15 -2207 ((-2 (|:| R (-631 |#1|)) (|:| A (-631 |#1|)) (|:| |Ainv| (-631 |#1|))) (-631 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -3108 ((-631 |#1|) (-631 |#1|) (-631 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -2356 ((-591 (-2 (|:| C (-631 |#1|)) (|:| |g| (-1171 |#1|)))) (-631 |#1|) (-1171 |#1|))))
+((-2827 (((-396 |#4|) |#4|) 48)))
+(((-910 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2827 ((-396 |#4|) |#4|))) (-788) (-734) (-429) (-882 |#3| |#2| |#1|)) (T -910))
+((-2827 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-734)) (-4 *6 (-429)) (-5 *2 (-396 *3)) (-5 *1 (-910 *4 *5 *6 *3)) (-4 *3 (-882 *6 *5 *4)))))
+(-10 -7 (-15 -2827 ((-396 |#4|) |#4|)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-2168 (($ (-712)) 112 (|has| |#1| (-23)))) (-3296 (((-1176) $ (-525) (-525)) 40 (|has| $ (-6 -4251)))) (-3203 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-788)))) (-4026 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4251))) (($ $) 88 (-12 (|has| |#1| (-788)) (|has| $ (-6 -4251))))) (-3327 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-788)))) (-3891 (((-108) $ (-712)) 8)) (-3186 ((|#1| $ (-525) |#1|) 52 (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) 58 (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4250)))) (-3798 (($) 7 T CONST)) (-2598 (($ $) 90 (|has| $ (-6 -4251)))) (-2617 (($ $) 100)) (-3098 (($ $) 78 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ |#1| $) 77 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4250)))) (-3255 ((|#1| $ (-525) |#1|) 53 (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) 51)) (-3004 (((-525) (-1 (-108) |#1|) $) 97) (((-525) |#1| $) 96 (|has| |#1| (-1018))) (((-525) |#1| $ (-525)) 95 (|has| |#1| (-1018)))) (-3643 (($ (-591 |#1|)) 118)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-2166 (((-631 |#1|) $ $) 105 (|has| |#1| (-975)))) (-1268 (($ (-712) |#1|) 69)) (-2910 (((-108) $ (-712)) 9)) (-3630 (((-525) $) 43 (|has| (-525) (-788)))) (-3741 (($ $ $) 87 (|has| |#1| (-788)))) (-2131 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-788)))) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3468 (((-525) $) 44 (|has| (-525) (-788)))) (-2478 (($ $ $) 86 (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-4131 ((|#1| $) 102 (-12 (|has| |#1| (-975)) (|has| |#1| (-932))))) (-3971 (((-108) $ (-712)) 10)) (-1657 ((|#1| $) 103 (-12 (|has| |#1| (-975)) (|has| |#1| (-932))))) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-4189 (($ |#1| $ (-525)) 60) (($ $ $ (-525)) 59)) (-2511 (((-591 (-525)) $) 46)) (-2791 (((-108) (-525) $) 47)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-3066 ((|#1| $) 42 (|has| (-525) (-788)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-1941 (($ $ |#1|) 41 (|has| $ (-6 -4251)))) (-2784 (($ $ (-591 |#1|)) 115)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-1615 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) 48)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ (-525) |#1|) 50) ((|#1| $ (-525)) 49) (($ $ (-1138 (-525))) 63)) (-2109 ((|#1| $ $) 106 (|has| |#1| (-975)))) (-4224 (((-854) $) 117)) (-2777 (($ $ (-525)) 62) (($ $ (-1138 (-525))) 61)) (-4210 (($ $ $) 104)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-4063 (($ $ $ (-525)) 91 (|has| $ (-6 -4251)))) (-3199 (($ $) 13)) (-1408 (((-501) $) 79 (|has| |#1| (-566 (-501)))) (($ (-591 |#1|)) 116)) (-3036 (($ (-591 |#1|)) 70)) (-3690 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-591 $)) 65)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) 84 (|has| |#1| (-788)))) (-4119 (((-108) $ $) 83 (|has| |#1| (-788)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4126 (((-108) $ $) 85 (|has| |#1| (-788)))) (-4112 (((-108) $ $) 82 (|has| |#1| (-788)))) (-4164 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-4156 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-525) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-668))) (($ $ |#1|) 107 (|has| |#1| (-668)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-911 |#1|) (-131) (-975)) (T -911))
+((-3643 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-975)) (-4 *1 (-911 *3)))) (-4224 (*1 *2 *1) (-12 (-4 *1 (-911 *3)) (-4 *3 (-975)) (-5 *2 (-854)))) (-1408 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-975)) (-4 *1 (-911 *3)))) (-4210 (*1 *1 *1 *1) (-12 (-4 *1 (-911 *2)) (-4 *2 (-975)))) (-2784 (*1 *1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *1 (-911 *3)) (-4 *3 (-975)))))
+(-13 (-1169 |t#1|) (-10 -8 (-15 -3643 ($ (-591 |t#1|))) (-15 -4224 ((-854) $)) (-15 -1408 ($ (-591 |t#1|))) (-15 -4210 ($ $ $)) (-15 -2784 ($ $ (-591 |t#1|)))))
+(((-33) . T) ((-97) -3321 (|has| |#1| (-1018)) (|has| |#1| (-788))) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-788)) (|has| |#1| (-565 (-796)))) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-265 #0=(-525) |#1|) . T) ((-267 #0# |#1|) . T) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-351 |#1|) . T) ((-464 |#1|) . T) ((-558 #0# |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-596 |#1|) . T) ((-19 |#1|) . T) ((-788) |has| |#1| (-788)) ((-1018) -3321 (|has| |#1| (-1018)) (|has| |#1| (-788))) ((-1125) . T) ((-1169 |#1|) . T))
+((-1340 (((-876 |#2|) (-1 |#2| |#1|) (-876 |#1|)) 17)))
+(((-912 |#1| |#2|) (-10 -7 (-15 -1340 ((-876 |#2|) (-1 |#2| |#1|) (-876 |#1|)))) (-975) (-975)) (T -912))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-876 *5)) (-4 *5 (-975)) (-4 *6 (-975)) (-5 *2 (-876 *6)) (-5 *1 (-912 *5 *6)))))
+(-10 -7 (-15 -1340 ((-876 |#2|) (-1 |#2| |#1|) (-876 |#1|))))
+((-1318 ((|#1| (-876 |#1|)) 13)) (-3072 ((|#1| (-876 |#1|)) 12)) (-2918 ((|#1| (-876 |#1|)) 11)) (-2181 ((|#1| (-876 |#1|)) 15)) (-3692 ((|#1| (-876 |#1|)) 21)) (-2450 ((|#1| (-876 |#1|)) 14)) (-1887 ((|#1| (-876 |#1|)) 16)) (-2853 ((|#1| (-876 |#1|)) 20)) (-1872 ((|#1| (-876 |#1|)) 19)))
+(((-913 |#1|) (-10 -7 (-15 -2918 (|#1| (-876 |#1|))) (-15 -3072 (|#1| (-876 |#1|))) (-15 -1318 (|#1| (-876 |#1|))) (-15 -2450 (|#1| (-876 |#1|))) (-15 -2181 (|#1| (-876 |#1|))) (-15 -1887 (|#1| (-876 |#1|))) (-15 -1872 (|#1| (-876 |#1|))) (-15 -2853 (|#1| (-876 |#1|))) (-15 -3692 (|#1| (-876 |#1|)))) (-975)) (T -913))
+((-3692 (*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))) (-2853 (*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))) (-1872 (*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))) (-1887 (*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))) (-2181 (*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))) (-2450 (*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))) (-1318 (*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))) (-3072 (*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))) (-2918 (*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))))
+(-10 -7 (-15 -2918 (|#1| (-876 |#1|))) (-15 -3072 (|#1| (-876 |#1|))) (-15 -1318 (|#1| (-876 |#1|))) (-15 -2450 (|#1| (-876 |#1|))) (-15 -2181 (|#1| (-876 |#1|))) (-15 -1887 (|#1| (-876 |#1|))) (-15 -1872 (|#1| (-876 |#1|))) (-15 -2853 (|#1| (-876 |#1|))) (-15 -3692 (|#1| (-876 |#1|))))
+((-2523 (((-3 |#1| "failed") |#1|) 18)) (-3826 (((-3 |#1| "failed") |#1|) 6)) (-4091 (((-3 |#1| "failed") |#1|) 16)) (-1893 (((-3 |#1| "failed") |#1|) 4)) (-3325 (((-3 |#1| "failed") |#1|) 20)) (-3750 (((-3 |#1| "failed") |#1|) 8)) (-1906 (((-3 |#1| "failed") |#1| (-712)) 1)) (-1783 (((-3 |#1| "failed") |#1|) 3)) (-1606 (((-3 |#1| "failed") |#1|) 2)) (-3966 (((-3 |#1| "failed") |#1|) 21)) (-1939 (((-3 |#1| "failed") |#1|) 9)) (-3533 (((-3 |#1| "failed") |#1|) 19)) (-3068 (((-3 |#1| "failed") |#1|) 7)) (-1972 (((-3 |#1| "failed") |#1|) 17)) (-2773 (((-3 |#1| "failed") |#1|) 5)) (-4176 (((-3 |#1| "failed") |#1|) 24)) (-4085 (((-3 |#1| "failed") |#1|) 12)) (-1604 (((-3 |#1| "failed") |#1|) 22)) (-4050 (((-3 |#1| "failed") |#1|) 10)) (-2564 (((-3 |#1| "failed") |#1|) 26)) (-2830 (((-3 |#1| "failed") |#1|) 14)) (-2469 (((-3 |#1| "failed") |#1|) 27)) (-1524 (((-3 |#1| "failed") |#1|) 15)) (-1746 (((-3 |#1| "failed") |#1|) 25)) (-3740 (((-3 |#1| "failed") |#1|) 13)) (-2768 (((-3 |#1| "failed") |#1|) 23)) (-3181 (((-3 |#1| "failed") |#1|) 11)))
+(((-914 |#1|) (-131) (-1111)) (T -914))
+((-2469 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-2564 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-1746 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-4176 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-2768 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-1604 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-3966 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-3325 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-3533 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-2523 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-1972 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-4091 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-1524 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-2830 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-3740 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-4085 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-3181 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-4050 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-1939 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-3750 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-3068 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-3826 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-2773 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-1893 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-1783 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-1606 (*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))) (-1906 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-712)) (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(-13 (-10 -7 (-15 -1906 ((-3 |t#1| "failed") |t#1| (-712))) (-15 -1606 ((-3 |t#1| "failed") |t#1|)) (-15 -1783 ((-3 |t#1| "failed") |t#1|)) (-15 -1893 ((-3 |t#1| "failed") |t#1|)) (-15 -2773 ((-3 |t#1| "failed") |t#1|)) (-15 -3826 ((-3 |t#1| "failed") |t#1|)) (-15 -3068 ((-3 |t#1| "failed") |t#1|)) (-15 -3750 ((-3 |t#1| "failed") |t#1|)) (-15 -1939 ((-3 |t#1| "failed") |t#1|)) (-15 -4050 ((-3 |t#1| "failed") |t#1|)) (-15 -3181 ((-3 |t#1| "failed") |t#1|)) (-15 -4085 ((-3 |t#1| "failed") |t#1|)) (-15 -3740 ((-3 |t#1| "failed") |t#1|)) (-15 -2830 ((-3 |t#1| "failed") |t#1|)) (-15 -1524 ((-3 |t#1| "failed") |t#1|)) (-15 -4091 ((-3 |t#1| "failed") |t#1|)) (-15 -1972 ((-3 |t#1| "failed") |t#1|)) (-15 -2523 ((-3 |t#1| "failed") |t#1|)) (-15 -3533 ((-3 |t#1| "failed") |t#1|)) (-15 -3325 ((-3 |t#1| "failed") |t#1|)) (-15 -3966 ((-3 |t#1| "failed") |t#1|)) (-15 -1604 ((-3 |t#1| "failed") |t#1|)) (-15 -2768 ((-3 |t#1| "failed") |t#1|)) (-15 -4176 ((-3 |t#1| "failed") |t#1|)) (-15 -1746 ((-3 |t#1| "failed") |t#1|)) (-15 -2564 ((-3 |t#1| "failed") |t#1|)) (-15 -2469 ((-3 |t#1| "failed") |t#1|))))
+((-3538 ((|#4| |#4| (-591 |#3|)) 56) ((|#4| |#4| |#3|) 55)) (-1725 ((|#4| |#4| (-591 |#3|)) 23) ((|#4| |#4| |#3|) 19)) (-1340 ((|#4| (-1 |#4| (-885 |#1|)) |#4|) 30)))
+(((-915 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1725 (|#4| |#4| |#3|)) (-15 -1725 (|#4| |#4| (-591 |#3|))) (-15 -3538 (|#4| |#4| |#3|)) (-15 -3538 (|#4| |#4| (-591 |#3|))) (-15 -1340 (|#4| (-1 |#4| (-885 |#1|)) |#4|))) (-975) (-734) (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $)) (-15 -2037 ((-3 $ "failed") (-1089))))) (-882 (-885 |#1|) |#2| |#3|)) (T -915))
+((-1340 (*1 *2 *3 *2) (-12 (-5 *3 (-1 *2 (-885 *4))) (-4 *4 (-975)) (-4 *2 (-882 (-885 *4) *5 *6)) (-4 *5 (-734)) (-4 *6 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $)) (-15 -2037 ((-3 $ "failed") (-1089)))))) (-5 *1 (-915 *4 *5 *6 *2)))) (-3538 (*1 *2 *2 *3) (-12 (-5 *3 (-591 *6)) (-4 *6 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $)) (-15 -2037 ((-3 $ "failed") (-1089)))))) (-4 *4 (-975)) (-4 *5 (-734)) (-5 *1 (-915 *4 *5 *6 *2)) (-4 *2 (-882 (-885 *4) *5 *6)))) (-3538 (*1 *2 *2 *3) (-12 (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $)) (-15 -2037 ((-3 $ "failed") (-1089)))))) (-5 *1 (-915 *4 *5 *3 *2)) (-4 *2 (-882 (-885 *4) *5 *3)))) (-1725 (*1 *2 *2 *3) (-12 (-5 *3 (-591 *6)) (-4 *6 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $)) (-15 -2037 ((-3 $ "failed") (-1089)))))) (-4 *4 (-975)) (-4 *5 (-734)) (-5 *1 (-915 *4 *5 *6 *2)) (-4 *2 (-882 (-885 *4) *5 *6)))) (-1725 (*1 *2 *2 *3) (-12 (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $)) (-15 -2037 ((-3 $ "failed") (-1089)))))) (-5 *1 (-915 *4 *5 *3 *2)) (-4 *2 (-882 (-885 *4) *5 *3)))))
+(-10 -7 (-15 -1725 (|#4| |#4| |#3|)) (-15 -1725 (|#4| |#4| (-591 |#3|))) (-15 -3538 (|#4| |#4| |#3|)) (-15 -3538 (|#4| |#4| (-591 |#3|))) (-15 -1340 (|#4| (-1 |#4| (-885 |#1|)) |#4|)))
+((-2000 ((|#2| |#3|) 35)) (-1426 (((-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))) |#2|) 73)) (-3441 (((-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|)))) 89)))
+(((-916 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3441 ((-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))))) (-15 -1426 ((-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))) |#2|)) (-15 -2000 (|#2| |#3|))) (-327) (-1147 |#1|) (-1147 |#2|) (-666 |#2| |#3|)) (T -916))
+((-2000 (*1 *2 *3) (-12 (-4 *3 (-1147 *2)) (-4 *2 (-1147 *4)) (-5 *1 (-916 *4 *2 *3 *5)) (-4 *4 (-327)) (-4 *5 (-666 *2 *3)))) (-1426 (*1 *2 *3) (-12 (-4 *4 (-327)) (-4 *3 (-1147 *4)) (-4 *5 (-1147 *3)) (-5 *2 (-2 (|:| -4003 (-631 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-631 *3)))) (-5 *1 (-916 *4 *3 *5 *6)) (-4 *6 (-666 *3 *5)))) (-3441 (*1 *2) (-12 (-4 *3 (-327)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 *4)) (-5 *2 (-2 (|:| -4003 (-631 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-631 *4)))) (-5 *1 (-916 *3 *4 *5 *6)) (-4 *6 (-666 *4 *5)))))
+(-10 -7 (-15 -3441 ((-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))))) (-15 -1426 ((-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))) |#2|)) (-15 -2000 (|#2| |#3|)))
+((-2990 (((-918 (-385 (-525)) (-798 |#1|) (-220 |#2| (-712)) (-227 |#1| (-385 (-525)))) (-918 (-385 (-525)) (-798 |#1|) (-220 |#2| (-712)) (-227 |#1| (-385 (-525))))) 69)))
+(((-917 |#1| |#2|) (-10 -7 (-15 -2990 ((-918 (-385 (-525)) (-798 |#1|) (-220 |#2| (-712)) (-227 |#1| (-385 (-525)))) (-918 (-385 (-525)) (-798 |#1|) (-220 |#2| (-712)) (-227 |#1| (-385 (-525))))))) (-591 (-1089)) (-712)) (T -917))
+((-2990 (*1 *2 *2) (-12 (-5 *2 (-918 (-385 (-525)) (-798 *3) (-220 *4 (-712)) (-227 *3 (-385 (-525))))) (-14 *3 (-591 (-1089))) (-14 *4 (-712)) (-5 *1 (-917 *3 *4)))))
+(-10 -7 (-15 -2990 ((-918 (-385 (-525)) (-798 |#1|) (-220 |#2| (-712)) (-227 |#1| (-385 (-525)))) (-918 (-385 (-525)) (-798 |#1|) (-220 |#2| (-712)) (-227 |#1| (-385 (-525)))))))
+((-3008 (((-108) $ $) NIL)) (-4078 (((-3 (-108) "failed") $) 69)) (-2179 (($ $) 36 (-12 (|has| |#1| (-138)) (|has| |#1| (-286))))) (-2156 (($ $ (-3 (-108) "failed")) 70)) (-1537 (($ (-591 |#4|) |#4|) 25)) (-2339 (((-1072) $) NIL)) (-2780 (($ $) 67)) (-2047 (((-1036) $) NIL)) (-3028 (((-108) $) 68)) (-3209 (($) 30)) (-3301 ((|#4| $) 72)) (-3881 (((-591 |#4|) $) 71)) (-3022 (((-796) $) 66)) (-4096 (((-108) $ $) NIL)))
+(((-918 |#1| |#2| |#3| |#4|) (-13 (-1018) (-565 (-796)) (-10 -8 (-15 -3209 ($)) (-15 -1537 ($ (-591 |#4|) |#4|)) (-15 -4078 ((-3 (-108) "failed") $)) (-15 -2156 ($ $ (-3 (-108) "failed"))) (-15 -3028 ((-108) $)) (-15 -3881 ((-591 |#4|) $)) (-15 -3301 (|#4| $)) (-15 -2780 ($ $)) (IF (|has| |#1| (-286)) (IF (|has| |#1| (-138)) (-15 -2179 ($ $)) |%noBranch|) |%noBranch|))) (-429) (-788) (-734) (-882 |#1| |#3| |#2|)) (T -918))
+((-3209 (*1 *1) (-12 (-4 *2 (-429)) (-4 *3 (-788)) (-4 *4 (-734)) (-5 *1 (-918 *2 *3 *4 *5)) (-4 *5 (-882 *2 *4 *3)))) (-1537 (*1 *1 *2 *3) (-12 (-5 *2 (-591 *3)) (-4 *3 (-882 *4 *6 *5)) (-4 *4 (-429)) (-4 *5 (-788)) (-4 *6 (-734)) (-5 *1 (-918 *4 *5 *6 *3)))) (-4078 (*1 *2 *1) (|partial| -12 (-4 *3 (-429)) (-4 *4 (-788)) (-4 *5 (-734)) (-5 *2 (-108)) (-5 *1 (-918 *3 *4 *5 *6)) (-4 *6 (-882 *3 *5 *4)))) (-2156 (*1 *1 *1 *2) (-12 (-5 *2 (-3 (-108) "failed")) (-4 *3 (-429)) (-4 *4 (-788)) (-4 *5 (-734)) (-5 *1 (-918 *3 *4 *5 *6)) (-4 *6 (-882 *3 *5 *4)))) (-3028 (*1 *2 *1) (-12 (-4 *3 (-429)) (-4 *4 (-788)) (-4 *5 (-734)) (-5 *2 (-108)) (-5 *1 (-918 *3 *4 *5 *6)) (-4 *6 (-882 *3 *5 *4)))) (-3881 (*1 *2 *1) (-12 (-4 *3 (-429)) (-4 *4 (-788)) (-4 *5 (-734)) (-5 *2 (-591 *6)) (-5 *1 (-918 *3 *4 *5 *6)) (-4 *6 (-882 *3 *5 *4)))) (-3301 (*1 *2 *1) (-12 (-4 *2 (-882 *3 *5 *4)) (-5 *1 (-918 *3 *4 *5 *2)) (-4 *3 (-429)) (-4 *4 (-788)) (-4 *5 (-734)))) (-2780 (*1 *1 *1) (-12 (-4 *2 (-429)) (-4 *3 (-788)) (-4 *4 (-734)) (-5 *1 (-918 *2 *3 *4 *5)) (-4 *5 (-882 *2 *4 *3)))) (-2179 (*1 *1 *1) (-12 (-4 *2 (-138)) (-4 *2 (-286)) (-4 *2 (-429)) (-4 *3 (-788)) (-4 *4 (-734)) (-5 *1 (-918 *2 *3 *4 *5)) (-4 *5 (-882 *2 *4 *3)))))
+(-13 (-1018) (-565 (-796)) (-10 -8 (-15 -3209 ($)) (-15 -1537 ($ (-591 |#4|) |#4|)) (-15 -4078 ((-3 (-108) "failed") $)) (-15 -2156 ($ $ (-3 (-108) "failed"))) (-15 -3028 ((-108) $)) (-15 -3881 ((-591 |#4|) $)) (-15 -3301 (|#4| $)) (-15 -2780 ($ $)) (IF (|has| |#1| (-286)) (IF (|has| |#1| (-138)) (-15 -2179 ($ $)) |%noBranch|) |%noBranch|)))
+((-1274 (((-108) |#5| |#5|) 38)) (-3215 (((-108) |#5| |#5|) 52)) (-2665 (((-108) |#5| (-591 |#5|)) 74) (((-108) |#5| |#5|) 61)) (-3583 (((-108) (-591 |#4|) (-591 |#4|)) 58)) (-1366 (((-108) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) 63)) (-2751 (((-1176)) 33)) (-2016 (((-1176) (-1072) (-1072) (-1072)) 29)) (-3452 (((-591 |#5|) (-591 |#5|)) 81)) (-2410 (((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)))) 79)) (-3293 (((-591 (-2 (|:| -1317 (-591 |#4|)) (|:| -3374 |#5|) (|:| |ineq| (-591 |#4|)))) (-591 |#4|) (-591 |#5|) (-108) (-108)) 101)) (-2333 (((-108) |#5| |#5|) 47)) (-1349 (((-3 (-108) "failed") |#5| |#5|) 71)) (-1486 (((-108) (-591 |#4|) (-591 |#4|)) 57)) (-4129 (((-108) (-591 |#4|) (-591 |#4|)) 59)) (-2154 (((-108) (-591 |#4|) (-591 |#4|)) 60)) (-2340 (((-3 (-2 (|:| -1317 (-591 |#4|)) (|:| -3374 |#5|) (|:| |ineq| (-591 |#4|))) "failed") (-591 |#4|) |#5| (-591 |#4|) (-108) (-108) (-108) (-108) (-108)) 97)) (-3311 (((-591 |#5|) (-591 |#5|)) 43)))
+(((-919 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2016 ((-1176) (-1072) (-1072) (-1072))) (-15 -2751 ((-1176))) (-15 -1274 ((-108) |#5| |#5|)) (-15 -3311 ((-591 |#5|) (-591 |#5|))) (-15 -2333 ((-108) |#5| |#5|)) (-15 -3215 ((-108) |#5| |#5|)) (-15 -3583 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -1486 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -4129 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -2154 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -1349 ((-3 (-108) "failed") |#5| |#5|)) (-15 -2665 ((-108) |#5| |#5|)) (-15 -2665 ((-108) |#5| (-591 |#5|))) (-15 -3452 ((-591 |#5|) (-591 |#5|))) (-15 -1366 ((-108) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)))) (-15 -2410 ((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) (-15 -3293 ((-591 (-2 (|:| -1317 (-591 |#4|)) (|:| -3374 |#5|) (|:| |ineq| (-591 |#4|)))) (-591 |#4|) (-591 |#5|) (-108) (-108))) (-15 -2340 ((-3 (-2 (|:| -1317 (-591 |#4|)) (|:| -3374 |#5|) (|:| |ineq| (-591 |#4|))) "failed") (-591 |#4|) |#5| (-591 |#4|) (-108) (-108) (-108) (-108) (-108)))) (-429) (-734) (-788) (-989 |#1| |#2| |#3|) (-994 |#1| |#2| |#3| |#4|)) (T -919))
+((-2340 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-108)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *9 (-989 *6 *7 *8)) (-5 *2 (-2 (|:| -1317 (-591 *9)) (|:| -3374 *4) (|:| |ineq| (-591 *9)))) (-5 *1 (-919 *6 *7 *8 *9 *4)) (-5 *3 (-591 *9)) (-4 *4 (-994 *6 *7 *8 *9)))) (-3293 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-591 *10)) (-5 *5 (-108)) (-4 *10 (-994 *6 *7 *8 *9)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *9 (-989 *6 *7 *8)) (-5 *2 (-591 (-2 (|:| -1317 (-591 *9)) (|:| -3374 *10) (|:| |ineq| (-591 *9))))) (-5 *1 (-919 *6 *7 *8 *9 *10)) (-5 *3 (-591 *9)))) (-2410 (*1 *2 *2) (-12 (-5 *2 (-591 (-2 (|:| |val| (-591 *6)) (|:| -3374 *7)))) (-4 *6 (-989 *3 *4 *5)) (-4 *7 (-994 *3 *4 *5 *6)) (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-919 *3 *4 *5 *6 *7)))) (-1366 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-591 *7)) (|:| -3374 *8))) (-4 *7 (-989 *4 *5 *6)) (-4 *8 (-994 *4 *5 *6 *7)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-919 *4 *5 *6 *7 *8)))) (-3452 (*1 *2 *2) (-12 (-5 *2 (-591 *7)) (-4 *7 (-994 *3 *4 *5 *6)) (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *1 (-919 *3 *4 *5 *6 *7)))) (-2665 (*1 *2 *3 *4) (-12 (-5 *4 (-591 *3)) (-4 *3 (-994 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-989 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-919 *5 *6 *7 *8 *3)))) (-2665 (*1 *2 *3 *3) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-919 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7)))) (-1349 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-919 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7)))) (-2154 (*1 *2 *3 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-919 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))) (-4129 (*1 *2 *3 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-919 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))) (-1486 (*1 *2 *3 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-919 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))) (-3583 (*1 *2 *3 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-919 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))) (-3215 (*1 *2 *3 *3) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-919 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7)))) (-2333 (*1 *2 *3 *3) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-919 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7)))) (-3311 (*1 *2 *2) (-12 (-5 *2 (-591 *7)) (-4 *7 (-994 *3 *4 *5 *6)) (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *1 (-919 *3 *4 *5 *6 *7)))) (-1274 (*1 *2 *3 *3) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-919 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7)))) (-2751 (*1 *2) (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-1176)) (-5 *1 (-919 *3 *4 *5 *6 *7)) (-4 *7 (-994 *3 *4 *5 *6)))) (-2016 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1072)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-1176)) (-5 *1 (-919 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2016 ((-1176) (-1072) (-1072) (-1072))) (-15 -2751 ((-1176))) (-15 -1274 ((-108) |#5| |#5|)) (-15 -3311 ((-591 |#5|) (-591 |#5|))) (-15 -2333 ((-108) |#5| |#5|)) (-15 -3215 ((-108) |#5| |#5|)) (-15 -3583 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -1486 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -4129 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -2154 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -1349 ((-3 (-108) "failed") |#5| |#5|)) (-15 -2665 ((-108) |#5| |#5|)) (-15 -2665 ((-108) |#5| (-591 |#5|))) (-15 -3452 ((-591 |#5|) (-591 |#5|))) (-15 -1366 ((-108) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)))) (-15 -2410 ((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) (-15 -3293 ((-591 (-2 (|:| -1317 (-591 |#4|)) (|:| -3374 |#5|) (|:| |ineq| (-591 |#4|)))) (-591 |#4|) (-591 |#5|) (-108) (-108))) (-15 -2340 ((-3 (-2 (|:| -1317 (-591 |#4|)) (|:| -3374 |#5|) (|:| |ineq| (-591 |#4|))) "failed") (-591 |#4|) |#5| (-591 |#4|) (-108) (-108) (-108) (-108) (-108))))
+((-2037 (((-1089) $) 15)) (-3024 (((-1072) $) 16)) (-2717 (($ (-1089) (-1072)) 14)) (-3022 (((-796) $) 13)))
+(((-920) (-13 (-565 (-796)) (-10 -8 (-15 -2717 ($ (-1089) (-1072))) (-15 -2037 ((-1089) $)) (-15 -3024 ((-1072) $))))) (T -920))
+((-2717 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1072)) (-5 *1 (-920)))) (-2037 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-920)))) (-3024 (*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-920)))))
+(-13 (-565 (-796)) (-10 -8 (-15 -2717 ($ (-1089) (-1072))) (-15 -2037 ((-1089) $)) (-15 -3024 ((-1072) $))))
+((-1340 ((|#4| (-1 |#2| |#1|) |#3|) 14)))
+(((-921 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1340 (|#4| (-1 |#2| |#1|) |#3|))) (-517) (-517) (-923 |#1|) (-923 |#2|)) (T -921))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-517)) (-4 *6 (-517)) (-4 *2 (-923 *6)) (-5 *1 (-921 *5 *6 *4 *2)) (-4 *4 (-923 *5)))))
+(-10 -7 (-15 -1340 (|#4| (-1 |#2| |#1|) |#3|)))
+((-1251 (((-3 |#2| "failed") $) NIL) (((-3 (-1089) "failed") $) 65) (((-3 (-385 (-525)) "failed") $) NIL) (((-3 (-525) "failed") $) 95)) (-3528 ((|#2| $) NIL) (((-1089) $) 60) (((-385 (-525)) $) NIL) (((-525) $) 92)) (-3305 (((-631 (-525)) (-631 $)) NIL) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) 112) (((-631 |#2|) (-631 $)) 28)) (-3377 (($) 98)) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 75) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 84)) (-2368 (($ $) 10)) (-2085 (((-3 $ "failed") $) 20)) (-1340 (($ (-1 |#2| |#2|) $) 22)) (-3506 (($) 16)) (-3093 (($ $) 54)) (-3266 (($ $) NIL) (($ $ (-712)) NIL) (($ $ (-1089)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL) (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-1 |#2| |#2|)) 36)) (-2966 (($ $) 12)) (-1408 (((-825 (-525)) $) 70) (((-825 (-357)) $) 79) (((-501) $) 40) (((-357) $) 44) (((-205) $) 47)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) 90) (($ |#2|) NIL) (($ (-1089)) 57)) (-2128 (((-712)) 31)) (-4112 (((-108) $ $) 50)))
+(((-922 |#1| |#2|) (-10 -8 (-15 -4112 ((-108) |#1| |#1|)) (-15 -3506 (|#1|)) (-15 -2085 ((-3 |#1| "failed") |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -1408 ((-205) |#1|)) (-15 -1408 ((-357) |#1|)) (-15 -1408 ((-501) |#1|)) (-15 -3528 ((-1089) |#1|)) (-15 -1251 ((-3 (-1089) "failed") |#1|)) (-15 -3022 (|#1| (-1089))) (-15 -3377 (|#1|)) (-15 -3093 (|#1| |#1|)) (-15 -2966 (|#1| |#1|)) (-15 -2368 (|#1| |#1|)) (-15 -2011 ((-822 (-357) |#1|) |#1| (-825 (-357)) (-822 (-357) |#1|))) (-15 -2011 ((-822 (-525) |#1|) |#1| (-825 (-525)) (-822 (-525) |#1|))) (-15 -1408 ((-825 (-357)) |#1|)) (-15 -1408 ((-825 (-525)) |#1|)) (-15 -3305 ((-631 |#2|) (-631 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-631 (-525)) (-631 |#1|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3022 (|#1| |#2|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -3022 (|#1| |#1|)) (-15 -3022 (|#1| (-525))) (-15 -2128 ((-712))) (-15 -3022 ((-796) |#1|))) (-923 |#2|) (-517)) (T -922))
+((-2128 (*1 *2) (-12 (-4 *4 (-517)) (-5 *2 (-712)) (-5 *1 (-922 *3 *4)) (-4 *3 (-923 *4)))))
+(-10 -8 (-15 -4112 ((-108) |#1| |#1|)) (-15 -3506 (|#1|)) (-15 -2085 ((-3 |#1| "failed") |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -1408 ((-205) |#1|)) (-15 -1408 ((-357) |#1|)) (-15 -1408 ((-501) |#1|)) (-15 -3528 ((-1089) |#1|)) (-15 -1251 ((-3 (-1089) "failed") |#1|)) (-15 -3022 (|#1| (-1089))) (-15 -3377 (|#1|)) (-15 -3093 (|#1| |#1|)) (-15 -2966 (|#1| |#1|)) (-15 -2368 (|#1| |#1|)) (-15 -2011 ((-822 (-357) |#1|) |#1| (-825 (-357)) (-822 (-357) |#1|))) (-15 -2011 ((-822 (-525) |#1|) |#1| (-825 (-525)) (-822 (-525) |#1|))) (-15 -1408 ((-825 (-357)) |#1|)) (-15 -1408 ((-825 (-525)) |#1|)) (-15 -3305 ((-631 |#2|) (-631 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-631 (-525)) (-631 |#1|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3022 (|#1| |#2|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -3022 (|#1| |#1|)) (-15 -3022 (|#1| (-525))) (-15 -2128 ((-712))) (-15 -3022 ((-796) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1508 ((|#1| $) 139 (|has| |#1| (-286)))) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2157 (((-3 $ "failed") $ $) 19)) (-1965 (((-396 (-1085 $)) (-1085 $)) 130 (|has| |#1| (-842)))) (-1291 (($ $) 73)) (-2827 (((-396 $) $) 72)) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) 133 (|has| |#1| (-842)))) (-1947 (((-108) $ $) 59)) (-3329 (((-525) $) 120 (|has| |#1| (-761)))) (-3798 (($) 17 T CONST)) (-1251 (((-3 |#1| "failed") $) 178) (((-3 (-1089) "failed") $) 128 (|has| |#1| (-966 (-1089)))) (((-3 (-385 (-525)) "failed") $) 112 (|has| |#1| (-966 (-525)))) (((-3 (-525) "failed") $) 110 (|has| |#1| (-966 (-525))))) (-3528 ((|#1| $) 177) (((-1089) $) 127 (|has| |#1| (-966 (-1089)))) (((-385 (-525)) $) 111 (|has| |#1| (-966 (-525)))) (((-525) $) 109 (|has| |#1| (-966 (-525))))) (-2129 (($ $ $) 55)) (-3305 (((-631 (-525)) (-631 $)) 152 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 151 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) 150) (((-631 |#1|) (-631 $)) 149)) (-4163 (((-3 $ "failed") $) 34)) (-3377 (($) 137 (|has| |#1| (-510)))) (-2110 (($ $ $) 56)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 51)) (-2744 (((-108) $) 71)) (-2134 (((-108) $) 122 (|has| |#1| (-761)))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 146 (|has| |#1| (-819 (-525)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 145 (|has| |#1| (-819 (-357))))) (-2824 (((-108) $) 31)) (-2368 (($ $) 141)) (-1738 ((|#1| $) 143)) (-2085 (((-3 $ "failed") $) 108 (|has| |#1| (-1065)))) (-2732 (((-108) $) 121 (|has| |#1| (-761)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 52)) (-3741 (($ $ $) 118 (|has| |#1| (-788)))) (-2478 (($ $ $) 117 (|has| |#1| (-788)))) (-1340 (($ (-1 |#1| |#1|) $) 169)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-1622 (($ $) 70)) (-3506 (($) 107 (|has| |#1| (-1065)) CONST)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-3093 (($ $) 138 (|has| |#1| (-286)))) (-2662 ((|#1| $) 135 (|has| |#1| (-510)))) (-2916 (((-396 (-1085 $)) (-1085 $)) 132 (|has| |#1| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) 131 (|has| |#1| (-842)))) (-1348 (((-396 $) $) 74)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2089 (((-3 $ "failed") $ $) 42)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 50)) (-4132 (($ $ (-591 |#1|) (-591 |#1|)) 175 (|has| |#1| (-288 |#1|))) (($ $ |#1| |#1|) 174 (|has| |#1| (-288 |#1|))) (($ $ (-273 |#1|)) 173 (|has| |#1| (-288 |#1|))) (($ $ (-591 (-273 |#1|))) 172 (|has| |#1| (-288 |#1|))) (($ $ (-591 (-1089)) (-591 |#1|)) 171 (|has| |#1| (-486 (-1089) |#1|))) (($ $ (-1089) |#1|) 170 (|has| |#1| (-486 (-1089) |#1|)))) (-1712 (((-712) $) 58)) (-3164 (($ $ |#1|) 176 (|has| |#1| (-265 |#1| |#1|)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 57)) (-3266 (($ $) 168 (|has| |#1| (-213))) (($ $ (-712)) 166 (|has| |#1| (-213))) (($ $ (-1089)) 164 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) 163 (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) 162 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) 161 (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) 154) (($ $ (-1 |#1| |#1|)) 153)) (-2966 (($ $) 140)) (-1754 ((|#1| $) 142)) (-1408 (((-825 (-525)) $) 148 (|has| |#1| (-566 (-825 (-525))))) (((-825 (-357)) $) 147 (|has| |#1| (-566 (-825 (-357))))) (((-501) $) 125 (|has| |#1| (-566 (-501)))) (((-357) $) 124 (|has| |#1| (-951))) (((-205) $) 123 (|has| |#1| (-951)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) 134 (-1213 (|has| $ (-136)) (|has| |#1| (-842))))) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43) (($ (-385 (-525))) 65) (($ |#1|) 181) (($ (-1089)) 129 (|has| |#1| (-966 (-1089))))) (-1437 (((-3 $ "failed") $) 126 (-3321 (|has| |#1| (-136)) (-1213 (|has| $ (-136)) (|has| |#1| (-842)))))) (-2128 (((-712)) 29)) (-3862 ((|#1| $) 136 (|has| |#1| (-510)))) (-2495 (((-108) $ $) 39)) (-1539 (($ $) 119 (|has| |#1| (-761)))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 69)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $) 167 (|has| |#1| (-213))) (($ $ (-712)) 165 (|has| |#1| (-213))) (($ $ (-1089)) 160 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) 159 (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) 158 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) 157 (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) 156) (($ $ (-1 |#1| |#1|)) 155)) (-4135 (((-108) $ $) 115 (|has| |#1| (-788)))) (-4119 (((-108) $ $) 114 (|has| |#1| (-788)))) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 116 (|has| |#1| (-788)))) (-4112 (((-108) $ $) 113 (|has| |#1| (-788)))) (-4173 (($ $ $) 64) (($ |#1| |#1|) 144)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 68)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 (-525))) 67) (($ (-385 (-525)) $) 66) (($ |#1| $) 180) (($ $ |#1|) 179)))
+(((-923 |#1|) (-131) (-517)) (T -923))
+((-4173 (*1 *1 *2 *2) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)))) (-1738 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)))) (-1754 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)))) (-2368 (*1 *1 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)))) (-2966 (*1 *1 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)))) (-1508 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)) (-4 *2 (-286)))) (-3093 (*1 *1 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)) (-4 *2 (-286)))) (-3377 (*1 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-510)) (-4 *2 (-517)))) (-3862 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)) (-4 *2 (-510)))) (-2662 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)) (-4 *2 (-510)))))
+(-13 (-341) (-37 |t#1|) (-966 |t#1|) (-316 |t#1|) (-211 |t#1|) (-355 |t#1|) (-817 |t#1|) (-378 |t#1|) (-10 -8 (-15 -4173 ($ |t#1| |t#1|)) (-15 -1738 (|t#1| $)) (-15 -1754 (|t#1| $)) (-15 -2368 ($ $)) (-15 -2966 ($ $)) (IF (|has| |t#1| (-1065)) (-6 (-1065)) |%noBranch|) (IF (|has| |t#1| (-966 (-525))) (PROGN (-6 (-966 (-525))) (-6 (-966 (-385 (-525))))) |%noBranch|) (IF (|has| |t#1| (-788)) (-6 (-788)) |%noBranch|) (IF (|has| |t#1| (-761)) (-6 (-761)) |%noBranch|) (IF (|has| |t#1| (-951)) (-6 (-951)) |%noBranch|) (IF (|has| |t#1| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|) (IF (|has| |t#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |t#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |t#1| (-966 (-1089))) (-6 (-966 (-1089))) |%noBranch|) (IF (|has| |t#1| (-286)) (PROGN (-15 -1508 (|t#1| $)) (-15 -3093 ($ $))) |%noBranch|) (IF (|has| |t#1| (-510)) (PROGN (-15 -3377 ($)) (-15 -3862 (|t#1| $)) (-15 -2662 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-842)) (-6 (-842)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) . T) ((-37 |#1|) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) . T) ((-566 (-205)) |has| |#1| (-951)) ((-566 (-357)) |has| |#1| (-951)) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-566 (-825 (-357))) |has| |#1| (-566 (-825 (-357)))) ((-566 (-825 (-525))) |has| |#1| (-566 (-825 (-525)))) ((-211 |#1|) . T) ((-213) |has| |#1| (-213)) ((-223) . T) ((-265 |#1| $) |has| |#1| (-265 |#1| |#1|)) ((-269) . T) ((-286) . T) ((-288 |#1|) |has| |#1| (-288 |#1|)) ((-341) . T) ((-316 |#1|) . T) ((-355 |#1|) . T) ((-378 |#1|) . T) ((-429) . T) ((-486 (-1089) |#1|) |has| |#1| (-486 (-1089) |#1|)) ((-486 |#1| |#1|) |has| |#1| (-288 |#1|)) ((-517) . T) ((-593 #0#) . T) ((-593 |#1|) . T) ((-593 $) . T) ((-587 (-525)) |has| |#1| (-587 (-525))) ((-587 |#1|) . T) ((-659 #0#) . T) ((-659 |#1|) . T) ((-659 $) . T) ((-668) . T) ((-732) |has| |#1| (-761)) ((-733) |has| |#1| (-761)) ((-735) |has| |#1| (-761)) ((-736) |has| |#1| (-761)) ((-761) |has| |#1| (-761)) ((-786) |has| |#1| (-761)) ((-788) -3321 (|has| |#1| (-788)) (|has| |#1| (-761))) ((-833 (-1089)) |has| |#1| (-833 (-1089))) ((-819 (-357)) |has| |#1| (-819 (-357))) ((-819 (-525)) |has| |#1| (-819 (-525))) ((-817 |#1|) . T) ((-842) |has| |#1| (-842)) ((-853) . T) ((-951) |has| |#1| (-951)) ((-966 (-385 (-525))) |has| |#1| (-966 (-525))) ((-966 (-525)) |has| |#1| (-966 (-525))) ((-966 (-1089)) |has| |#1| (-966 (-1089))) ((-966 |#1|) . T) ((-981 #0#) . T) ((-981 |#1|) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1065) |has| |#1| (-1065)) ((-1125) . T) ((-1129) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-2904 (($ (-1056 |#1| |#2|)) 11)) (-3393 (((-1056 |#1| |#2|) $) 12)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3164 ((|#2| $ (-220 |#1| |#2|)) 16)) (-3022 (((-796) $) NIL)) (-4191 (($) NIL T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL)))
+(((-924 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -2904 ($ (-1056 |#1| |#2|))) (-15 -3393 ((-1056 |#1| |#2|) $)) (-15 -3164 (|#2| $ (-220 |#1| |#2|))))) (-854) (-341)) (T -924))
+((-2904 (*1 *1 *2) (-12 (-5 *2 (-1056 *3 *4)) (-14 *3 (-854)) (-4 *4 (-341)) (-5 *1 (-924 *3 *4)))) (-3393 (*1 *2 *1) (-12 (-5 *2 (-1056 *3 *4)) (-5 *1 (-924 *3 *4)) (-14 *3 (-854)) (-4 *4 (-341)))) (-3164 (*1 *2 *1 *3) (-12 (-5 *3 (-220 *4 *2)) (-14 *4 (-854)) (-4 *2 (-341)) (-5 *1 (-924 *4 *2)))))
+(-13 (-21) (-10 -8 (-15 -2904 ($ (-1056 |#1| |#2|))) (-15 -3393 ((-1056 |#1| |#2|) $)) (-15 -3164 (|#2| $ (-220 |#1| |#2|)))))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3891 (((-108) $ (-712)) 8)) (-3798 (($) 7 T CONST)) (-3474 (($ $) 46)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-1657 (((-712) $) 45)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-1464 ((|#1| $) 39)) (-2470 (($ |#1| $) 40)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-2620 ((|#1| $) 44)) (-3631 ((|#1| $) 41)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-1296 ((|#1| |#1| $) 48)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3723 ((|#1| $) 47)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-1870 (($ (-591 |#1|)) 42)) (-3133 ((|#1| $) 43)) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-925 |#1|) (-131) (-1125)) (T -925))
+((-1296 (*1 *2 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-1125)))) (-3723 (*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-1125)))) (-3474 (*1 *1 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-1125)))) (-1657 (*1 *2 *1) (-12 (-4 *1 (-925 *3)) (-4 *3 (-1125)) (-5 *2 (-712)))) (-2620 (*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-1125)))) (-3133 (*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-1125)))))
+(-13 (-102 |t#1|) (-10 -8 (-6 -4250) (-15 -1296 (|t#1| |t#1| $)) (-15 -3723 (|t#1| $)) (-15 -3474 ($ $)) (-15 -1657 ((-712) $)) (-15 -2620 (|t#1| $)) (-15 -3133 (|t#1| $))))
+(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-1800 (((-108) $) 42)) (-1251 (((-3 (-525) "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-3528 (((-525) $) NIL) (((-385 (-525)) $) NIL) ((|#2| $) 43)) (-1511 (((-3 (-385 (-525)) "failed") $) 78)) (-1352 (((-108) $) 72)) (-1726 (((-385 (-525)) $) 76)) (-2824 (((-108) $) 41)) (-2771 ((|#2| $) 22)) (-1340 (($ (-1 |#2| |#2|) $) 19)) (-1622 (($ $) 61)) (-3266 (($ $) NIL) (($ $ (-712)) NIL) (($ $ (-1089)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL) (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-1 |#2| |#2|)) 34)) (-1408 (((-501) $) 67)) (-3228 (($ $) 17)) (-3022 (((-796) $) 56) (($ (-525)) 38) (($ |#2|) 36) (($ (-385 (-525))) NIL)) (-2128 (((-712)) 10)) (-1539 ((|#2| $) 71)) (-4096 (((-108) $ $) 25)) (-4112 (((-108) $ $) 69)) (-4164 (($ $) 29) (($ $ $) 28)) (-4156 (($ $ $) 26)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 33) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 30) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL)))
+(((-926 |#1| |#2|) (-10 -8 (-15 -3022 (|#1| (-385 (-525)))) (-15 -4112 ((-108) |#1| |#1|)) (-15 * (|#1| (-385 (-525)) |#1|)) (-15 * (|#1| |#1| (-385 (-525)))) (-15 -1622 (|#1| |#1|)) (-15 -1408 ((-501) |#1|)) (-15 -1511 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -1726 ((-385 (-525)) |#1|)) (-15 -1352 ((-108) |#1|)) (-15 -1539 (|#2| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -3228 (|#1| |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -3022 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3022 (|#1| (-525))) (-15 -2128 ((-712))) (-15 -2824 ((-108) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 -4164 (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 -1800 ((-108) |#1|)) (-15 * (|#1| (-854) |#1|)) (-15 -4156 (|#1| |#1| |#1|)) (-15 -3022 ((-796) |#1|)) (-15 -4096 ((-108) |#1| |#1|))) (-927 |#2|) (-160)) (T -926))
+((-2128 (*1 *2) (-12 (-4 *4 (-160)) (-5 *2 (-712)) (-5 *1 (-926 *3 *4)) (-4 *3 (-927 *4)))))
+(-10 -8 (-15 -3022 (|#1| (-385 (-525)))) (-15 -4112 ((-108) |#1| |#1|)) (-15 * (|#1| (-385 (-525)) |#1|)) (-15 * (|#1| |#1| (-385 (-525)))) (-15 -1622 (|#1| |#1|)) (-15 -1408 ((-501) |#1|)) (-15 -1511 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -1726 ((-385 (-525)) |#1|)) (-15 -1352 ((-108) |#1|)) (-15 -1539 (|#2| |#1|)) (-15 -2771 (|#2| |#1|)) (-15 -3228 (|#1| |#1|)) (-15 -1340 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -3022 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3022 (|#1| (-525))) (-15 -2128 ((-712))) (-15 -2824 ((-108) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 -4164 (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|)) (-15 * (|#1| (-712) |#1|)) (-15 -1800 ((-108) |#1|)) (-15 * (|#1| (-854) |#1|)) (-15 -4156 (|#1| |#1| |#1|)) (-15 -3022 ((-796) |#1|)) (-15 -4096 ((-108) |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-1251 (((-3 (-525) "failed") $) 119 (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) 117 (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) 116)) (-3528 (((-525) $) 120 (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) 118 (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) 115)) (-3305 (((-631 (-525)) (-631 $)) 90 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 89 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) 88) (((-631 |#1|) (-631 $)) 87)) (-4163 (((-3 $ "failed") $) 34)) (-1373 ((|#1| $) 80)) (-1511 (((-3 (-385 (-525)) "failed") $) 76 (|has| |#1| (-510)))) (-1352 (((-108) $) 78 (|has| |#1| (-510)))) (-1726 (((-385 (-525)) $) 77 (|has| |#1| (-510)))) (-1995 (($ |#1| |#1| |#1| |#1|) 81)) (-2824 (((-108) $) 31)) (-2771 ((|#1| $) 82)) (-3741 (($ $ $) 68 (|has| |#1| (-788)))) (-2478 (($ $ $) 67 (|has| |#1| (-788)))) (-1340 (($ (-1 |#1| |#1|) $) 91)) (-2339 (((-1072) $) 9)) (-1622 (($ $) 73 (|has| |#1| (-341)))) (-2062 ((|#1| $) 83)) (-2411 ((|#1| $) 84)) (-1342 ((|#1| $) 85)) (-2047 (((-1036) $) 10)) (-4132 (($ $ (-591 |#1|) (-591 |#1|)) 97 (|has| |#1| (-288 |#1|))) (($ $ |#1| |#1|) 96 (|has| |#1| (-288 |#1|))) (($ $ (-273 |#1|)) 95 (|has| |#1| (-288 |#1|))) (($ $ (-591 (-273 |#1|))) 94 (|has| |#1| (-288 |#1|))) (($ $ (-591 (-1089)) (-591 |#1|)) 93 (|has| |#1| (-486 (-1089) |#1|))) (($ $ (-1089) |#1|) 92 (|has| |#1| (-486 (-1089) |#1|)))) (-3164 (($ $ |#1|) 98 (|has| |#1| (-265 |#1| |#1|)))) (-3266 (($ $) 114 (|has| |#1| (-213))) (($ $ (-712)) 112 (|has| |#1| (-213))) (($ $ (-1089)) 110 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) 109 (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) 108 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) 107 (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) 100) (($ $ (-1 |#1| |#1|)) 99)) (-1408 (((-501) $) 74 (|has| |#1| (-566 (-501))))) (-3228 (($ $) 86)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 37) (($ (-385 (-525))) 62 (-3321 (|has| |#1| (-341)) (|has| |#1| (-966 (-385 (-525))))))) (-1437 (((-3 $ "failed") $) 75 (|has| |#1| (-136)))) (-2128 (((-712)) 29)) (-1539 ((|#1| $) 79 (|has| |#1| (-984)))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 72 (|has| |#1| (-341)))) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $) 113 (|has| |#1| (-213))) (($ $ (-712)) 111 (|has| |#1| (-213))) (($ $ (-1089)) 106 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) 105 (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) 104 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) 103 (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) 102) (($ $ (-1 |#1| |#1|)) 101)) (-4135 (((-108) $ $) 65 (|has| |#1| (-788)))) (-4119 (((-108) $ $) 64 (|has| |#1| (-788)))) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 66 (|has| |#1| (-788)))) (-4112 (((-108) $ $) 63 (|has| |#1| (-788)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 71 (|has| |#1| (-341)))) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38) (($ $ (-385 (-525))) 70 (|has| |#1| (-341))) (($ (-385 (-525)) $) 69 (|has| |#1| (-341)))))
+(((-927 |#1|) (-131) (-160)) (T -927))
+((-3228 (*1 *1 *1) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160)))) (-1342 (*1 *2 *1) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160)))) (-2411 (*1 *2 *1) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160)))) (-2062 (*1 *2 *1) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160)))) (-2771 (*1 *2 *1) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160)))) (-1995 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160)))) (-1373 (*1 *2 *1) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160)))) (-1539 (*1 *2 *1) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160)) (-4 *2 (-984)))) (-1352 (*1 *2 *1) (-12 (-4 *1 (-927 *3)) (-4 *3 (-160)) (-4 *3 (-510)) (-5 *2 (-108)))) (-1726 (*1 *2 *1) (-12 (-4 *1 (-927 *3)) (-4 *3 (-160)) (-4 *3 (-510)) (-5 *2 (-385 (-525))))) (-1511 (*1 *2 *1) (|partial| -12 (-4 *1 (-927 *3)) (-4 *3 (-160)) (-4 *3 (-510)) (-5 *2 (-385 (-525))))))
+(-13 (-37 |t#1|) (-389 |t#1|) (-211 |t#1|) (-316 |t#1|) (-355 |t#1|) (-10 -8 (-15 -3228 ($ $)) (-15 -1342 (|t#1| $)) (-15 -2411 (|t#1| $)) (-15 -2062 (|t#1| $)) (-15 -2771 (|t#1| $)) (-15 -1995 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -1373 (|t#1| $)) (IF (|has| |t#1| (-269)) (-6 (-269)) |%noBranch|) (IF (|has| |t#1| (-788)) (-6 (-788)) |%noBranch|) (IF (|has| |t#1| (-341)) (-6 (-223)) |%noBranch|) (IF (|has| |t#1| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|) (IF (|has| |t#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |t#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |t#1| (-984)) (-15 -1539 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-510)) (PROGN (-15 -1352 ((-108) $)) (-15 -1726 ((-385 (-525)) $)) (-15 -1511 ((-3 (-385 (-525)) "failed") $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) |has| |#1| (-341)) ((-37 |#1|) . T) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-341)) ((-107 |#1| |#1|) . T) ((-107 $ $) -3321 (|has| |#1| (-341)) (|has| |#1| (-269))) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-211 |#1|) . T) ((-213) |has| |#1| (-213)) ((-223) |has| |#1| (-341)) ((-265 |#1| $) |has| |#1| (-265 |#1| |#1|)) ((-269) -3321 (|has| |#1| (-341)) (|has| |#1| (-269))) ((-288 |#1|) |has| |#1| (-288 |#1|)) ((-316 |#1|) . T) ((-355 |#1|) . T) ((-389 |#1|) . T) ((-486 (-1089) |#1|) |has| |#1| (-486 (-1089) |#1|)) ((-486 |#1| |#1|) |has| |#1| (-288 |#1|)) ((-593 #0#) |has| |#1| (-341)) ((-593 |#1|) . T) ((-593 $) . T) ((-587 (-525)) |has| |#1| (-587 (-525))) ((-587 |#1|) . T) ((-659 #0#) |has| |#1| (-341)) ((-659 |#1|) . T) ((-668) . T) ((-788) |has| |#1| (-788)) ((-833 (-1089)) |has| |#1| (-833 (-1089))) ((-966 (-385 (-525))) |has| |#1| (-966 (-385 (-525)))) ((-966 (-525)) |has| |#1| (-966 (-525))) ((-966 |#1|) . T) ((-981 #0#) |has| |#1| (-341)) ((-981 |#1|) . T) ((-981 $) -3321 (|has| |#1| (-341)) (|has| |#1| (-269))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-1340 ((|#3| (-1 |#4| |#2|) |#1|) 16)))
+(((-928 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1340 (|#3| (-1 |#4| |#2|) |#1|))) (-927 |#2|) (-160) (-927 |#4|) (-160)) (T -928))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-160)) (-4 *6 (-160)) (-4 *2 (-927 *6)) (-5 *1 (-928 *4 *5 *2 *6)) (-4 *4 (-927 *5)))))
+(-10 -7 (-15 -1340 (|#3| (-1 |#4| |#2|) |#1|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) NIL)) (-3528 (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) NIL) (((-631 |#1|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-1373 ((|#1| $) 12)) (-1511 (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-510)))) (-1352 (((-108) $) NIL (|has| |#1| (-510)))) (-1726 (((-385 (-525)) $) NIL (|has| |#1| (-510)))) (-1995 (($ |#1| |#1| |#1| |#1|) 16)) (-2824 (((-108) $) NIL)) (-2771 ((|#1| $) NIL)) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL (|has| |#1| (-341)))) (-2062 ((|#1| $) 15)) (-2411 ((|#1| $) 14)) (-1342 ((|#1| $) 13)) (-2047 (((-1036) $) NIL)) (-4132 (($ $ (-591 |#1|) (-591 |#1|)) NIL (|has| |#1| (-288 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-288 |#1|))) (($ $ (-273 |#1|)) NIL (|has| |#1| (-288 |#1|))) (($ $ (-591 (-273 |#1|))) NIL (|has| |#1| (-288 |#1|))) (($ $ (-591 (-1089)) (-591 |#1|)) NIL (|has| |#1| (-486 (-1089) |#1|))) (($ $ (-1089) |#1|) NIL (|has| |#1| (-486 (-1089) |#1|)))) (-3164 (($ $ |#1|) NIL (|has| |#1| (-265 |#1| |#1|)))) (-3266 (($ $) NIL (|has| |#1| (-213))) (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1408 (((-501) $) NIL (|has| |#1| (-566 (-501))))) (-3228 (($ $) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#1|) NIL) (($ (-385 (-525))) NIL (-3321 (|has| |#1| (-341)) (|has| |#1| (-966 (-385 (-525))))))) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) NIL)) (-1539 ((|#1| $) NIL (|has| |#1| (-984)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341)))) (-4191 (($) 8 T CONST)) (-4197 (($) 10 T CONST)) (-4196 (($ $) NIL (|has| |#1| (-213))) (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341)))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-385 (-525))) NIL (|has| |#1| (-341))) (($ (-385 (-525)) $) NIL (|has| |#1| (-341)))))
+(((-929 |#1|) (-927 |#1|) (-160)) (T -929))
+NIL
+(-927 |#1|)
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3891 (((-108) $ (-712)) NIL)) (-3798 (($) NIL T CONST)) (-3474 (($ $) 20)) (-3206 (($ (-591 |#1|)) 29)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-1657 (((-712) $) 22)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-1464 ((|#1| $) 24)) (-2470 (($ |#1| $) 15)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-2620 ((|#1| $) 23)) (-3631 ((|#1| $) 19)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1296 ((|#1| |#1| $) 14)) (-3028 (((-108) $) 17)) (-3209 (($) NIL)) (-3723 ((|#1| $) 18)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-1870 (($ (-591 |#1|)) NIL)) (-3133 ((|#1| $) 26)) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-930 |#1|) (-13 (-925 |#1|) (-10 -8 (-15 -3206 ($ (-591 |#1|))))) (-1018)) (T -930))
+((-3206 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-930 *3)))))
+(-13 (-925 |#1|) (-10 -8 (-15 -3206 ($ (-591 |#1|)))))
+((-1361 (($ $) 12)) (-3956 (($ $ (-525)) 13)))
+(((-931 |#1|) (-10 -8 (-15 -1361 (|#1| |#1|)) (-15 -3956 (|#1| |#1| (-525)))) (-932)) (T -931))
+NIL
+(-10 -8 (-15 -1361 (|#1| |#1|)) (-15 -3956 (|#1| |#1| (-525))))
+((-1361 (($ $) 6)) (-3956 (($ $ (-525)) 7)) (** (($ $ (-385 (-525))) 8)))
+(((-932) (-131)) (T -932))
+((** (*1 *1 *1 *2) (-12 (-4 *1 (-932)) (-5 *2 (-385 (-525))))) (-3956 (*1 *1 *1 *2) (-12 (-4 *1 (-932)) (-5 *2 (-525)))) (-1361 (*1 *1 *1) (-4 *1 (-932))))
+(-13 (-10 -8 (-15 -1361 ($ $)) (-15 -3956 ($ $ (-525))) (-15 ** ($ $ (-385 (-525))))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3816 (((-2 (|:| |num| (-1171 |#2|)) (|:| |den| |#2|)) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| (-385 |#2|) (-341)))) (-3706 (($ $) NIL (|has| (-385 |#2|) (-341)))) (-1715 (((-108) $) NIL (|has| (-385 |#2|) (-341)))) (-2796 (((-631 (-385 |#2|)) (-1171 $)) NIL) (((-631 (-385 |#2|))) NIL)) (-2569 (((-385 |#2|) $) NIL)) (-3734 (((-1099 (-854) (-712)) (-525)) NIL (|has| (-385 |#2|) (-327)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL (|has| (-385 |#2|) (-341)))) (-2827 (((-396 $) $) NIL (|has| (-385 |#2|) (-341)))) (-1947 (((-108) $ $) NIL (|has| (-385 |#2|) (-341)))) (-3032 (((-712)) NIL (|has| (-385 |#2|) (-346)))) (-1819 (((-108)) NIL)) (-4081 (((-108) |#1|) 148) (((-108) |#2|) 153)) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL (|has| (-385 |#2|) (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| (-385 |#2|) (-966 (-385 (-525))))) (((-3 (-385 |#2|) "failed") $) NIL)) (-3528 (((-525) $) NIL (|has| (-385 |#2|) (-966 (-525)))) (((-385 (-525)) $) NIL (|has| (-385 |#2|) (-966 (-385 (-525))))) (((-385 |#2|) $) NIL)) (-4171 (($ (-1171 (-385 |#2|)) (-1171 $)) NIL) (($ (-1171 (-385 |#2|))) 70) (($ (-1171 |#2|) |#2|) NIL)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-385 |#2|) (-327)))) (-2129 (($ $ $) NIL (|has| (-385 |#2|) (-341)))) (-3922 (((-631 (-385 |#2|)) $ (-1171 $)) NIL) (((-631 (-385 |#2|)) $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| (-385 |#2|) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| (-385 |#2|) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-385 |#2|))) (|:| |vec| (-1171 (-385 |#2|)))) (-631 $) (-1171 $)) NIL) (((-631 (-385 |#2|)) (-631 $)) NIL)) (-1598 (((-1171 $) (-1171 $)) NIL)) (-1227 (($ |#3|) 65) (((-3 $ "failed") (-385 |#3|)) NIL (|has| (-385 |#2|) (-341)))) (-4163 (((-3 $ "failed") $) NIL)) (-1205 (((-591 (-591 |#1|))) NIL (|has| |#1| (-346)))) (-1565 (((-108) |#1| |#1|) NIL)) (-4073 (((-854)) NIL)) (-3377 (($) NIL (|has| (-385 |#2|) (-346)))) (-3390 (((-108)) NIL)) (-2764 (((-108) |#1|) 56) (((-108) |#2|) 150)) (-2110 (($ $ $) NIL (|has| (-385 |#2|) (-341)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| (-385 |#2|) (-341)))) (-3208 (($ $) NIL)) (-3944 (($) NIL (|has| (-385 |#2|) (-327)))) (-4104 (((-108) $) NIL (|has| (-385 |#2|) (-327)))) (-2299 (($ $ (-712)) NIL (|has| (-385 |#2|) (-327))) (($ $) NIL (|has| (-385 |#2|) (-327)))) (-2744 (((-108) $) NIL (|has| (-385 |#2|) (-341)))) (-3873 (((-854) $) NIL (|has| (-385 |#2|) (-327))) (((-774 (-854)) $) NIL (|has| (-385 |#2|) (-327)))) (-2824 (((-108) $) NIL)) (-1739 (((-712)) NIL)) (-2101 (((-1171 $) (-1171 $)) NIL)) (-2771 (((-385 |#2|) $) NIL)) (-1957 (((-591 (-885 |#1|)) (-1089)) NIL (|has| |#1| (-341)))) (-2085 (((-3 $ "failed") $) NIL (|has| (-385 |#2|) (-327)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| (-385 |#2|) (-341)))) (-1382 ((|#3| $) NIL (|has| (-385 |#2|) (-341)))) (-3016 (((-854) $) NIL (|has| (-385 |#2|) (-346)))) (-1223 ((|#3| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| (-385 |#2|) (-341))) (($ $ $) NIL (|has| (-385 |#2|) (-341)))) (-2339 (((-1072) $) NIL)) (-3112 (((-631 (-385 |#2|))) 52)) (-1890 (((-631 (-385 |#2|))) 51)) (-1622 (($ $) NIL (|has| (-385 |#2|) (-341)))) (-3988 (($ (-1171 |#2|) |#2|) 71)) (-3202 (((-631 (-385 |#2|))) 50)) (-1891 (((-631 (-385 |#2|))) 49)) (-3870 (((-2 (|:| |num| (-631 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 86)) (-1351 (((-2 (|:| |num| (-1171 |#2|)) (|:| |den| |#2|)) $) 77)) (-3026 (((-1171 $)) 46)) (-3441 (((-1171 $)) 45)) (-2200 (((-108) $) NIL)) (-3053 (((-108) $) NIL) (((-108) $ |#1|) NIL) (((-108) $ |#2|) NIL)) (-3506 (($) NIL (|has| (-385 |#2|) (-327)) CONST)) (-2226 (($ (-854)) NIL (|has| (-385 |#2|) (-346)))) (-2506 (((-3 |#2| "failed")) 63)) (-2047 (((-1036) $) NIL)) (-1892 (((-712)) NIL)) (-3857 (($) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| (-385 |#2|) (-341)))) (-1399 (($ (-591 $)) NIL (|has| (-385 |#2|) (-341))) (($ $ $) NIL (|has| (-385 |#2|) (-341)))) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) NIL (|has| (-385 |#2|) (-327)))) (-1348 (((-396 $) $) NIL (|has| (-385 |#2|) (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-385 |#2|) (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| (-385 |#2|) (-341)))) (-2089 (((-3 $ "failed") $ $) NIL (|has| (-385 |#2|) (-341)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| (-385 |#2|) (-341)))) (-1712 (((-712) $) NIL (|has| (-385 |#2|) (-341)))) (-3164 ((|#1| $ |#1| |#1|) NIL)) (-3787 (((-3 |#2| "failed")) 62)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| (-385 |#2|) (-341)))) (-2976 (((-385 |#2|) (-1171 $)) NIL) (((-385 |#2|)) 42)) (-2953 (((-712) $) NIL (|has| (-385 |#2|) (-327))) (((-3 (-712) "failed") $ $) NIL (|has| (-385 |#2|) (-327)))) (-3266 (($ $ (-1 (-385 |#2|) (-385 |#2|)) (-712)) NIL (|has| (-385 |#2|) (-341))) (($ $ (-1 (-385 |#2|) (-385 |#2|))) NIL (|has| (-385 |#2|) (-341))) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-712)) NIL (-3321 (-12 (|has| (-385 |#2|) (-213)) (|has| (-385 |#2|) (-341))) (|has| (-385 |#2|) (-327)))) (($ $) NIL (-3321 (-12 (|has| (-385 |#2|) (-213)) (|has| (-385 |#2|) (-341))) (|has| (-385 |#2|) (-327))))) (-1244 (((-631 (-385 |#2|)) (-1171 $) (-1 (-385 |#2|) (-385 |#2|))) NIL (|has| (-385 |#2|) (-341)))) (-1478 ((|#3|) 53)) (-2616 (($) NIL (|has| (-385 |#2|) (-327)))) (-3572 (((-1171 (-385 |#2|)) $ (-1171 $)) NIL) (((-631 (-385 |#2|)) (-1171 $) (-1171 $)) NIL) (((-1171 (-385 |#2|)) $) 72) (((-631 (-385 |#2|)) (-1171 $)) NIL)) (-1408 (((-1171 (-385 |#2|)) $) NIL) (($ (-1171 (-385 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (|has| (-385 |#2|) (-327)))) (-4065 (((-1171 $) (-1171 $)) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ (-385 |#2|)) NIL) (($ (-385 (-525))) NIL (-3321 (|has| (-385 |#2|) (-966 (-385 (-525)))) (|has| (-385 |#2|) (-341)))) (($ $) NIL (|has| (-385 |#2|) (-341)))) (-1437 (($ $) NIL (|has| (-385 |#2|) (-327))) (((-3 $ "failed") $) NIL (|has| (-385 |#2|) (-136)))) (-3806 ((|#3| $) NIL)) (-2128 (((-712)) NIL)) (-3841 (((-108)) 60)) (-1466 (((-108) |#1|) 154) (((-108) |#2|) 155)) (-4003 (((-1171 $)) 125)) (-2495 (((-108) $ $) NIL (|has| (-385 |#2|) (-341)))) (-4206 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-3886 (((-108)) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| (-385 |#2|) (-341)))) (-4191 (($) 94 T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ (-1 (-385 |#2|) (-385 |#2|)) (-712)) NIL (|has| (-385 |#2|) (-341))) (($ $ (-1 (-385 |#2|) (-385 |#2|))) NIL (|has| (-385 |#2|) (-341))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| (-385 |#2|) (-341)) (|has| (-385 |#2|) (-833 (-1089))))) (($ $ (-712)) NIL (-3321 (-12 (|has| (-385 |#2|) (-213)) (|has| (-385 |#2|) (-341))) (|has| (-385 |#2|) (-327)))) (($ $) NIL (-3321 (-12 (|has| (-385 |#2|) (-213)) (|has| (-385 |#2|) (-341))) (|has| (-385 |#2|) (-327))))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ $) NIL (|has| (-385 |#2|) (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| (-385 |#2|) (-341)))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 |#2|)) NIL) (($ (-385 |#2|) $) NIL) (($ (-385 (-525)) $) NIL (|has| (-385 |#2|) (-341))) (($ $ (-385 (-525))) NIL (|has| (-385 |#2|) (-341)))))
+(((-933 |#1| |#2| |#3| |#4| |#5|) (-320 |#1| |#2| |#3|) (-1129) (-1147 |#1|) (-1147 (-385 |#2|)) (-385 |#2|) (-712)) (T -933))
+NIL
+(-320 |#1| |#2| |#3|)
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1885 (((-591 (-525)) $) 54)) (-3874 (($ (-591 (-525))) 62)) (-1508 (((-525) $) 40 (|has| (-525) (-286)))) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1947 (((-108) $ $) NIL)) (-3329 (((-525) $) NIL (|has| (-525) (-761)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) 49) (((-3 (-1089) "failed") $) NIL (|has| (-525) (-966 (-1089)))) (((-3 (-385 (-525)) "failed") $) 47 (|has| (-525) (-966 (-525)))) (((-3 (-525) "failed") $) 49 (|has| (-525) (-966 (-525))))) (-3528 (((-525) $) NIL) (((-1089) $) NIL (|has| (-525) (-966 (-1089)))) (((-385 (-525)) $) NIL (|has| (-525) (-966 (-525)))) (((-525) $) NIL (|has| (-525) (-966 (-525))))) (-2129 (($ $ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| (-525) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| (-525) (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL) (((-631 (-525)) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3377 (($) NIL (|has| (-525) (-510)))) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-4222 (((-591 (-525)) $) 60)) (-2134 (((-108) $) NIL (|has| (-525) (-761)))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (|has| (-525) (-819 (-525)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (|has| (-525) (-819 (-357))))) (-2824 (((-108) $) NIL)) (-2368 (($ $) NIL)) (-1738 (((-525) $) 37)) (-2085 (((-3 $ "failed") $) NIL (|has| (-525) (-1065)))) (-2732 (((-108) $) NIL (|has| (-525) (-761)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3741 (($ $ $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| (-525) (-788)))) (-1340 (($ (-1 (-525) (-525)) $) NIL)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL)) (-3506 (($) NIL (|has| (-525) (-1065)) CONST)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-3093 (($ $) NIL (|has| (-525) (-286))) (((-385 (-525)) $) 42)) (-3941 (((-1070 (-525)) $) 59)) (-2613 (($ (-591 (-525)) (-591 (-525))) 63)) (-2662 (((-525) $) 53 (|has| (-525) (-510)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| (-525) (-842)))) (-1348 (((-396 $) $) NIL)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-4132 (($ $ (-591 (-525)) (-591 (-525))) NIL (|has| (-525) (-288 (-525)))) (($ $ (-525) (-525)) NIL (|has| (-525) (-288 (-525)))) (($ $ (-273 (-525))) NIL (|has| (-525) (-288 (-525)))) (($ $ (-591 (-273 (-525)))) NIL (|has| (-525) (-288 (-525)))) (($ $ (-591 (-1089)) (-591 (-525))) NIL (|has| (-525) (-486 (-1089) (-525)))) (($ $ (-1089) (-525)) NIL (|has| (-525) (-486 (-1089) (-525))))) (-1712 (((-712) $) NIL)) (-3164 (($ $ (-525)) NIL (|has| (-525) (-265 (-525) (-525))))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3266 (($ $) 11 (|has| (-525) (-213))) (($ $ (-712)) NIL (|has| (-525) (-213))) (($ $ (-1089)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1 (-525) (-525)) (-712)) NIL) (($ $ (-1 (-525) (-525))) NIL)) (-2966 (($ $) NIL)) (-1754 (((-525) $) 39)) (-1413 (((-591 (-525)) $) 61)) (-1408 (((-825 (-525)) $) NIL (|has| (-525) (-566 (-825 (-525))))) (((-825 (-357)) $) NIL (|has| (-525) (-566 (-825 (-357))))) (((-501) $) NIL (|has| (-525) (-566 (-501)))) (((-357) $) NIL (|has| (-525) (-951))) (((-205) $) NIL (|has| (-525) (-951)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| (-525) (-842))))) (-3022 (((-796) $) 77) (($ (-525)) 43) (($ $) NIL) (($ (-385 (-525))) 20) (($ (-525)) 43) (($ (-1089)) NIL (|has| (-525) (-966 (-1089)))) (((-385 (-525)) $) 18)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| (-525) (-842))) (|has| (-525) (-136))))) (-2128 (((-712)) 9)) (-3862 (((-525) $) 51 (|has| (-525) (-510)))) (-2495 (((-108) $ $) NIL)) (-1539 (($ $) NIL (|has| (-525) (-761)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) 10 T CONST)) (-4197 (($) 12 T CONST)) (-4196 (($ $) NIL (|has| (-525) (-213))) (($ $ (-712)) NIL (|has| (-525) (-213))) (($ $ (-1089)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| (-525) (-833 (-1089)))) (($ $ (-1 (-525) (-525)) (-712)) NIL) (($ $ (-1 (-525) (-525))) NIL)) (-4135 (((-108) $ $) NIL (|has| (-525) (-788)))) (-4119 (((-108) $ $) NIL (|has| (-525) (-788)))) (-4096 (((-108) $ $) 14)) (-4126 (((-108) $ $) NIL (|has| (-525) (-788)))) (-4112 (((-108) $ $) 33 (|has| (-525) (-788)))) (-4173 (($ $ $) 29) (($ (-525) (-525)) 31)) (-4164 (($ $) 15) (($ $ $) 23)) (-4156 (($ $ $) 21)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 25) (($ $ $) 27) (($ $ (-385 (-525))) NIL) (($ (-385 (-525)) $) NIL) (($ (-525) $) 25) (($ $ (-525)) NIL)))
+(((-934 |#1|) (-13 (-923 (-525)) (-10 -8 (-15 -3022 ((-385 (-525)) $)) (-15 -3093 ((-385 (-525)) $)) (-15 -1885 ((-591 (-525)) $)) (-15 -3941 ((-1070 (-525)) $)) (-15 -4222 ((-591 (-525)) $)) (-15 -1413 ((-591 (-525)) $)) (-15 -3874 ($ (-591 (-525)))) (-15 -2613 ($ (-591 (-525)) (-591 (-525)))))) (-525)) (T -934))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525)))) (-3093 (*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525)))) (-1885 (*1 *2 *1) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525)))) (-3941 (*1 *2 *1) (-12 (-5 *2 (-1070 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525)))) (-4222 (*1 *2 *1) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525)))) (-1413 (*1 *2 *1) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525)))) (-3874 (*1 *1 *2) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525)))) (-2613 (*1 *1 *2 *2) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525)))))
+(-13 (-923 (-525)) (-10 -8 (-15 -3022 ((-385 (-525)) $)) (-15 -3093 ((-385 (-525)) $)) (-15 -1885 ((-591 (-525)) $)) (-15 -3941 ((-1070 (-525)) $)) (-15 -4222 ((-591 (-525)) $)) (-15 -1413 ((-591 (-525)) $)) (-15 -3874 ($ (-591 (-525)))) (-15 -2613 ($ (-591 (-525)) (-591 (-525))))))
+((-4083 (((-51) (-385 (-525)) (-525)) 9)))
+(((-935) (-10 -7 (-15 -4083 ((-51) (-385 (-525)) (-525))))) (T -935))
+((-4083 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-525))) (-5 *4 (-525)) (-5 *2 (-51)) (-5 *1 (-935)))))
+(-10 -7 (-15 -4083 ((-51) (-385 (-525)) (-525))))
+((-3032 (((-525)) 13)) (-1769 (((-525)) 16)) (-3378 (((-1176) (-525)) 15)) (-2497 (((-525) (-525)) 17) (((-525)) 12)))
+(((-936) (-10 -7 (-15 -2497 ((-525))) (-15 -3032 ((-525))) (-15 -2497 ((-525) (-525))) (-15 -3378 ((-1176) (-525))) (-15 -1769 ((-525))))) (T -936))
+((-1769 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-936)))) (-3378 (*1 *2 *3) (-12 (-5 *3 (-525)) (-5 *2 (-1176)) (-5 *1 (-936)))) (-2497 (*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-936)))) (-3032 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-936)))) (-2497 (*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-936)))))
+(-10 -7 (-15 -2497 ((-525))) (-15 -3032 ((-525))) (-15 -2497 ((-525) (-525))) (-15 -3378 ((-1176) (-525))) (-15 -1769 ((-525))))
+((-3646 (((-396 |#1|) |#1|) 41)) (-1348 (((-396 |#1|) |#1|) 40)))
+(((-937 |#1|) (-10 -7 (-15 -1348 ((-396 |#1|) |#1|)) (-15 -3646 ((-396 |#1|) |#1|))) (-1147 (-385 (-525)))) (T -937))
+((-3646 (*1 *2 *3) (-12 (-5 *2 (-396 *3)) (-5 *1 (-937 *3)) (-4 *3 (-1147 (-385 (-525)))))) (-1348 (*1 *2 *3) (-12 (-5 *2 (-396 *3)) (-5 *1 (-937 *3)) (-4 *3 (-1147 (-385 (-525)))))))
+(-10 -7 (-15 -1348 ((-396 |#1|) |#1|)) (-15 -3646 ((-396 |#1|) |#1|)))
+((-1511 (((-3 (-385 (-525)) "failed") |#1|) 15)) (-1352 (((-108) |#1|) 14)) (-1726 (((-385 (-525)) |#1|) 10)))
+(((-938 |#1|) (-10 -7 (-15 -1726 ((-385 (-525)) |#1|)) (-15 -1352 ((-108) |#1|)) (-15 -1511 ((-3 (-385 (-525)) "failed") |#1|))) (-966 (-385 (-525)))) (T -938))
+((-1511 (*1 *2 *3) (|partial| -12 (-5 *2 (-385 (-525))) (-5 *1 (-938 *3)) (-4 *3 (-966 *2)))) (-1352 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-938 *3)) (-4 *3 (-966 (-385 (-525)))))) (-1726 (*1 *2 *3) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-938 *3)) (-4 *3 (-966 *2)))))
+(-10 -7 (-15 -1726 ((-385 (-525)) |#1|)) (-15 -1352 ((-108) |#1|)) (-15 -1511 ((-3 (-385 (-525)) "failed") |#1|)))
+((-3186 ((|#2| $ "value" |#2|) 12)) (-3164 ((|#2| $ "value") 10)) (-1632 (((-108) $ $) 18)))
+(((-939 |#1| |#2|) (-10 -8 (-15 -3186 (|#2| |#1| "value" |#2|)) (-15 -1632 ((-108) |#1| |#1|)) (-15 -3164 (|#2| |#1| "value"))) (-940 |#2|) (-1125)) (T -939))
+NIL
+(-10 -8 (-15 -3186 (|#2| |#1| "value" |#2|)) (-15 -1632 ((-108) |#1| |#1|)) (-15 -3164 (|#2| |#1| "value")))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3024 ((|#1| $) 48)) (-3891 (((-108) $ (-712)) 8)) (-1780 ((|#1| $ |#1|) 39 (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) 41 (|has| $ (-6 -4251)))) (-3798 (($) 7 T CONST)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) 50)) (-2148 (((-108) $ $) 42 (|has| |#1| (-1018)))) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-2599 (((-591 |#1|) $) 45)) (-1203 (((-108) $) 49)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ "value") 47)) (-3505 (((-525) $ $) 44)) (-2237 (((-108) $) 46)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) 51)) (-1632 (((-108) $ $) 43 (|has| |#1| (-1018)))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-940 |#1|) (-131) (-1125)) (T -940))
+((-3860 (*1 *2 *1) (-12 (-4 *3 (-1125)) (-5 *2 (-591 *1)) (-4 *1 (-940 *3)))) (-4120 (*1 *2 *1) (-12 (-4 *3 (-1125)) (-5 *2 (-591 *1)) (-4 *1 (-940 *3)))) (-1203 (*1 *2 *1) (-12 (-4 *1 (-940 *3)) (-4 *3 (-1125)) (-5 *2 (-108)))) (-3024 (*1 *2 *1) (-12 (-4 *1 (-940 *2)) (-4 *2 (-1125)))) (-3164 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-940 *2)) (-4 *2 (-1125)))) (-2237 (*1 *2 *1) (-12 (-4 *1 (-940 *3)) (-4 *3 (-1125)) (-5 *2 (-108)))) (-2599 (*1 *2 *1) (-12 (-4 *1 (-940 *3)) (-4 *3 (-1125)) (-5 *2 (-591 *3)))) (-3505 (*1 *2 *1 *1) (-12 (-4 *1 (-940 *3)) (-4 *3 (-1125)) (-5 *2 (-525)))) (-1632 (*1 *2 *1 *1) (-12 (-4 *1 (-940 *3)) (-4 *3 (-1125)) (-4 *3 (-1018)) (-5 *2 (-108)))) (-2148 (*1 *2 *1 *1) (-12 (-4 *1 (-940 *3)) (-4 *3 (-1125)) (-4 *3 (-1018)) (-5 *2 (-108)))) (-3665 (*1 *1 *1 *2) (-12 (-5 *2 (-591 *1)) (|has| *1 (-6 -4251)) (-4 *1 (-940 *3)) (-4 *3 (-1125)))) (-3186 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4251)) (-4 *1 (-940 *2)) (-4 *2 (-1125)))) (-1780 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-940 *2)) (-4 *2 (-1125)))))
+(-13 (-464 |t#1|) (-10 -8 (-15 -3860 ((-591 $) $)) (-15 -4120 ((-591 $) $)) (-15 -1203 ((-108) $)) (-15 -3024 (|t#1| $)) (-15 -3164 (|t#1| $ "value")) (-15 -2237 ((-108) $)) (-15 -2599 ((-591 |t#1|) $)) (-15 -3505 ((-525) $ $)) (IF (|has| |t#1| (-1018)) (PROGN (-15 -1632 ((-108) $ $)) (-15 -2148 ((-108) $ $))) |%noBranch|) (IF (|has| $ (-6 -4251)) (PROGN (-15 -3665 ($ $ (-591 $))) (-15 -3186 (|t#1| $ "value" |t#1|)) (-15 -1780 (|t#1| $ |t#1|))) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-1361 (($ $) 9) (($ $ (-712)) 43) (($ (-385 (-525))) 13) (($ (-525)) 15)) (-3642 (((-3 $ "failed") (-1085 $) (-854) (-796)) 23) (((-3 $ "failed") (-1085 $) (-854)) 28)) (-3956 (($ $ (-525)) 49)) (-2128 (((-712)) 16)) (-1282 (((-591 $) (-1085 $)) NIL) (((-591 $) (-1085 (-385 (-525)))) 54) (((-591 $) (-1085 (-525))) 59) (((-591 $) (-885 $)) 63) (((-591 $) (-885 (-385 (-525)))) 67) (((-591 $) (-885 (-525))) 71)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL) (($ $ (-385 (-525))) 47)))
+(((-941 |#1|) (-10 -8 (-15 -1361 (|#1| (-525))) (-15 -1361 (|#1| (-385 (-525)))) (-15 -1361 (|#1| |#1| (-712))) (-15 -1282 ((-591 |#1|) (-885 (-525)))) (-15 -1282 ((-591 |#1|) (-885 (-385 (-525))))) (-15 -1282 ((-591 |#1|) (-885 |#1|))) (-15 -1282 ((-591 |#1|) (-1085 (-525)))) (-15 -1282 ((-591 |#1|) (-1085 (-385 (-525))))) (-15 -1282 ((-591 |#1|) (-1085 |#1|))) (-15 -3642 ((-3 |#1| "failed") (-1085 |#1|) (-854))) (-15 -3642 ((-3 |#1| "failed") (-1085 |#1|) (-854) (-796))) (-15 ** (|#1| |#1| (-385 (-525)))) (-15 -3956 (|#1| |#1| (-525))) (-15 -1361 (|#1| |#1|)) (-15 ** (|#1| |#1| (-525))) (-15 -2128 ((-712))) (-15 ** (|#1| |#1| (-712))) (-15 ** (|#1| |#1| (-854)))) (-942)) (T -941))
+((-2128 (*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-941 *3)) (-4 *3 (-942)))))
+(-10 -8 (-15 -1361 (|#1| (-525))) (-15 -1361 (|#1| (-385 (-525)))) (-15 -1361 (|#1| |#1| (-712))) (-15 -1282 ((-591 |#1|) (-885 (-525)))) (-15 -1282 ((-591 |#1|) (-885 (-385 (-525))))) (-15 -1282 ((-591 |#1|) (-885 |#1|))) (-15 -1282 ((-591 |#1|) (-1085 (-525)))) (-15 -1282 ((-591 |#1|) (-1085 (-385 (-525))))) (-15 -1282 ((-591 |#1|) (-1085 |#1|))) (-15 -3642 ((-3 |#1| "failed") (-1085 |#1|) (-854))) (-15 -3642 ((-3 |#1| "failed") (-1085 |#1|) (-854) (-796))) (-15 ** (|#1| |#1| (-385 (-525)))) (-15 -3956 (|#1| |#1| (-525))) (-15 -1361 (|#1| |#1|)) (-15 ** (|#1| |#1| (-525))) (-15 -2128 ((-712))) (-15 ** (|#1| |#1| (-712))) (-15 ** (|#1| |#1| (-854))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 89)) (-3706 (($ $) 90)) (-1715 (((-108) $) 92)) (-2157 (((-3 $ "failed") $ $) 19)) (-1291 (($ $) 109)) (-2827 (((-396 $) $) 110)) (-1361 (($ $) 73) (($ $ (-712)) 59) (($ (-385 (-525))) 58) (($ (-525)) 57)) (-1947 (((-108) $ $) 100)) (-3329 (((-525) $) 127)) (-3798 (($) 17 T CONST)) (-3642 (((-3 $ "failed") (-1085 $) (-854) (-796)) 67) (((-3 $ "failed") (-1085 $) (-854)) 66)) (-1251 (((-3 (-525) "failed") $) 85 (|has| (-385 (-525)) (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) 83 (|has| (-385 (-525)) (-966 (-385 (-525))))) (((-3 (-385 (-525)) "failed") $) 81)) (-3528 (((-525) $) 86 (|has| (-385 (-525)) (-966 (-525)))) (((-385 (-525)) $) 84 (|has| (-385 (-525)) (-966 (-385 (-525))))) (((-385 (-525)) $) 80)) (-3472 (($ $ (-796)) 56)) (-4018 (($ $ (-796)) 55)) (-2129 (($ $ $) 104)) (-4163 (((-3 $ "failed") $) 34)) (-2110 (($ $ $) 103)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 98)) (-2744 (((-108) $) 111)) (-2134 (((-108) $) 125)) (-2824 (((-108) $) 31)) (-3956 (($ $ (-525)) 72)) (-2732 (((-108) $) 126)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 107)) (-3741 (($ $ $) 124)) (-2478 (($ $ $) 123)) (-3976 (((-3 (-1085 $) "failed") $) 68)) (-2556 (((-3 (-796) "failed") $) 70)) (-2386 (((-3 (-1085 $) "failed") $) 69)) (-1356 (($ (-591 $)) 96) (($ $ $) 95)) (-2339 (((-1072) $) 9)) (-1622 (($ $) 112)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 97)) (-1399 (($ (-591 $)) 94) (($ $ $) 93)) (-1348 (((-396 $) $) 108)) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 106) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 105)) (-2089 (((-3 $ "failed") $ $) 88)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 99)) (-1712 (((-712) $) 101)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 102)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ (-385 (-525))) 117) (($ $) 87) (($ (-385 (-525))) 82) (($ (-525)) 79) (($ (-385 (-525))) 76)) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 91)) (-2176 (((-385 (-525)) $ $) 54)) (-1282 (((-591 $) (-1085 $)) 65) (((-591 $) (-1085 (-385 (-525)))) 64) (((-591 $) (-1085 (-525))) 63) (((-591 $) (-885 $)) 62) (((-591 $) (-885 (-385 (-525)))) 61) (((-591 $) (-885 (-525))) 60)) (-1539 (($ $) 128)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 113)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4135 (((-108) $ $) 121)) (-4119 (((-108) $ $) 120)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 122)) (-4112 (((-108) $ $) 119)) (-4173 (($ $ $) 118)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 114) (($ $ (-385 (-525))) 71)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ (-385 (-525)) $) 116) (($ $ (-385 (-525))) 115) (($ (-525) $) 78) (($ $ (-525)) 77) (($ (-385 (-525)) $) 75) (($ $ (-385 (-525))) 74)))
+(((-942) (-131)) (T -942))
+((-1361 (*1 *1 *1) (-4 *1 (-942))) (-2556 (*1 *2 *1) (|partial| -12 (-4 *1 (-942)) (-5 *2 (-796)))) (-2386 (*1 *2 *1) (|partial| -12 (-5 *2 (-1085 *1)) (-4 *1 (-942)))) (-3976 (*1 *2 *1) (|partial| -12 (-5 *2 (-1085 *1)) (-4 *1 (-942)))) (-3642 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1085 *1)) (-5 *3 (-854)) (-5 *4 (-796)) (-4 *1 (-942)))) (-3642 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1085 *1)) (-5 *3 (-854)) (-4 *1 (-942)))) (-1282 (*1 *2 *3) (-12 (-5 *3 (-1085 *1)) (-4 *1 (-942)) (-5 *2 (-591 *1)))) (-1282 (*1 *2 *3) (-12 (-5 *3 (-1085 (-385 (-525)))) (-5 *2 (-591 *1)) (-4 *1 (-942)))) (-1282 (*1 *2 *3) (-12 (-5 *3 (-1085 (-525))) (-5 *2 (-591 *1)) (-4 *1 (-942)))) (-1282 (*1 *2 *3) (-12 (-5 *3 (-885 *1)) (-4 *1 (-942)) (-5 *2 (-591 *1)))) (-1282 (*1 *2 *3) (-12 (-5 *3 (-885 (-385 (-525)))) (-5 *2 (-591 *1)) (-4 *1 (-942)))) (-1282 (*1 *2 *3) (-12 (-5 *3 (-885 (-525))) (-5 *2 (-591 *1)) (-4 *1 (-942)))) (-1361 (*1 *1 *1 *2) (-12 (-4 *1 (-942)) (-5 *2 (-712)))) (-1361 (*1 *1 *2) (-12 (-5 *2 (-385 (-525))) (-4 *1 (-942)))) (-1361 (*1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-942)))) (-3472 (*1 *1 *1 *2) (-12 (-4 *1 (-942)) (-5 *2 (-796)))) (-4018 (*1 *1 *1 *2) (-12 (-4 *1 (-942)) (-5 *2 (-796)))) (-2176 (*1 *2 *1 *1) (-12 (-4 *1 (-942)) (-5 *2 (-385 (-525))))))
+(-13 (-138) (-786) (-160) (-341) (-389 (-385 (-525))) (-37 (-525)) (-37 (-385 (-525))) (-932) (-10 -8 (-15 -2556 ((-3 (-796) "failed") $)) (-15 -2386 ((-3 (-1085 $) "failed") $)) (-15 -3976 ((-3 (-1085 $) "failed") $)) (-15 -3642 ((-3 $ "failed") (-1085 $) (-854) (-796))) (-15 -3642 ((-3 $ "failed") (-1085 $) (-854))) (-15 -1282 ((-591 $) (-1085 $))) (-15 -1282 ((-591 $) (-1085 (-385 (-525))))) (-15 -1282 ((-591 $) (-1085 (-525)))) (-15 -1282 ((-591 $) (-885 $))) (-15 -1282 ((-591 $) (-885 (-385 (-525))))) (-15 -1282 ((-591 $) (-885 (-525)))) (-15 -1361 ($ $ (-712))) (-15 -1361 ($ $)) (-15 -1361 ($ (-385 (-525)))) (-15 -1361 ($ (-525))) (-15 -3472 ($ $ (-796))) (-15 -4018 ($ $ (-796))) (-15 -2176 ((-385 (-525)) $ $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) . T) ((-37 #1=(-525)) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 #1# #1#) . T) ((-107 $ $) . T) ((-126) . T) ((-138) . T) ((-565 (-796)) . T) ((-160) . T) ((-223) . T) ((-269) . T) ((-286) . T) ((-341) . T) ((-389 (-385 (-525))) . T) ((-429) . T) ((-517) . T) ((-593 #0#) . T) ((-593 #1#) . T) ((-593 $) . T) ((-659 #0#) . T) ((-659 #1#) . T) ((-659 $) . T) ((-668) . T) ((-732) . T) ((-733) . T) ((-735) . T) ((-736) . T) ((-786) . T) ((-788) . T) ((-853) . T) ((-932) . T) ((-966 (-385 (-525))) . T) ((-966 (-525)) |has| (-385 (-525)) (-966 (-525))) ((-981 #0#) . T) ((-981 #1#) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1129) . T))
+((-2322 (((-2 (|:| |ans| |#2|) (|:| -3400 |#2|) (|:| |sol?| (-108))) (-525) |#2| |#2| (-1089) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-591 |#2|)) (-1 (-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 66)))
+(((-943 |#1| |#2|) (-10 -7 (-15 -2322 ((-2 (|:| |ans| |#2|) (|:| -3400 |#2|) (|:| |sol?| (-108))) (-525) |#2| |#2| (-1089) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-591 |#2|)) (-1 (-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-429) (-788) (-138) (-966 (-525)) (-587 (-525))) (-13 (-1111) (-27) (-408 |#1|))) (T -943))
+((-2322 (*1 *2 *3 *4 *4 *5 *6 *7) (-12 (-5 *5 (-1089)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-591 *4))) (-5 *7 (-1 (-3 (-2 (|:| -3060 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1111) (-27) (-408 *8))) (-4 *8 (-13 (-429) (-788) (-138) (-966 *3) (-587 *3))) (-5 *3 (-525)) (-5 *2 (-2 (|:| |ans| *4) (|:| -3400 *4) (|:| |sol?| (-108)))) (-5 *1 (-943 *8 *4)))))
+(-10 -7 (-15 -2322 ((-2 (|:| |ans| |#2|) (|:| -3400 |#2|) (|:| |sol?| (-108))) (-525) |#2| |#2| (-1089) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-591 |#2|)) (-1 (-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-3491 (((-3 (-591 |#2|) "failed") (-525) |#2| |#2| |#2| (-1089) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-591 |#2|)) (-1 (-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 53)))
+(((-944 |#1| |#2|) (-10 -7 (-15 -3491 ((-3 (-591 |#2|) "failed") (-525) |#2| |#2| |#2| (-1089) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-591 |#2|)) (-1 (-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-429) (-788) (-138) (-966 (-525)) (-587 (-525))) (-13 (-1111) (-27) (-408 |#1|))) (T -944))
+((-3491 (*1 *2 *3 *4 *4 *4 *5 *6 *7) (|partial| -12 (-5 *5 (-1089)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-591 *4))) (-5 *7 (-1 (-3 (-2 (|:| -3060 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1111) (-27) (-408 *8))) (-4 *8 (-13 (-429) (-788) (-138) (-966 *3) (-587 *3))) (-5 *3 (-525)) (-5 *2 (-591 *4)) (-5 *1 (-944 *8 *4)))))
+(-10 -7 (-15 -3491 ((-3 (-591 |#2|) "failed") (-525) |#2| |#2| |#2| (-1089) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-591 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-591 |#2|)) (-1 (-3 (-2 (|:| -3060 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-2282 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-108)))) (|:| -1317 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-525)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-525) (-1 |#2| |#2|)) 30)) (-1778 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-385 |#2|)) (|:| |c| (-385 |#2|)) (|:| -2447 |#2|)) "failed") (-385 |#2|) (-385 |#2|) (-1 |#2| |#2|)) 58)) (-1971 (((-2 (|:| |ans| (-385 |#2|)) (|:| |nosol| (-108))) (-385 |#2|) (-385 |#2|)) 63)))
+(((-945 |#1| |#2|) (-10 -7 (-15 -1778 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-385 |#2|)) (|:| |c| (-385 |#2|)) (|:| -2447 |#2|)) "failed") (-385 |#2|) (-385 |#2|) (-1 |#2| |#2|))) (-15 -1971 ((-2 (|:| |ans| (-385 |#2|)) (|:| |nosol| (-108))) (-385 |#2|) (-385 |#2|))) (-15 -2282 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-108)))) (|:| -1317 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-525)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-525) (-1 |#2| |#2|)))) (-13 (-341) (-138) (-966 (-525))) (-1147 |#1|)) (T -945))
+((-2282 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1147 *6)) (-4 *6 (-13 (-341) (-138) (-966 *4))) (-5 *4 (-525)) (-5 *2 (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-108)))) (|:| -1317 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-945 *6 *3)))) (-1971 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-341) (-138) (-966 (-525)))) (-4 *5 (-1147 *4)) (-5 *2 (-2 (|:| |ans| (-385 *5)) (|:| |nosol| (-108)))) (-5 *1 (-945 *4 *5)) (-5 *3 (-385 *5)))) (-1778 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-13 (-341) (-138) (-966 (-525)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-385 *6)) (|:| |c| (-385 *6)) (|:| -2447 *6))) (-5 *1 (-945 *5 *6)) (-5 *3 (-385 *6)))))
+(-10 -7 (-15 -1778 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-385 |#2|)) (|:| |c| (-385 |#2|)) (|:| -2447 |#2|)) "failed") (-385 |#2|) (-385 |#2|) (-1 |#2| |#2|))) (-15 -1971 ((-2 (|:| |ans| (-385 |#2|)) (|:| |nosol| (-108))) (-385 |#2|) (-385 |#2|))) (-15 -2282 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-108)))) (|:| -1317 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-525)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-525) (-1 |#2| |#2|))))
+((-2546 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-385 |#2|)) (|:| |h| |#2|) (|:| |c1| (-385 |#2|)) (|:| |c2| (-385 |#2|)) (|:| -2447 |#2|)) "failed") (-385 |#2|) (-385 |#2|) (-385 |#2|) (-1 |#2| |#2|)) 22)) (-2757 (((-3 (-591 (-385 |#2|)) "failed") (-385 |#2|) (-385 |#2|) (-385 |#2|)) 33)))
+(((-946 |#1| |#2|) (-10 -7 (-15 -2546 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-385 |#2|)) (|:| |h| |#2|) (|:| |c1| (-385 |#2|)) (|:| |c2| (-385 |#2|)) (|:| -2447 |#2|)) "failed") (-385 |#2|) (-385 |#2|) (-385 |#2|) (-1 |#2| |#2|))) (-15 -2757 ((-3 (-591 (-385 |#2|)) "failed") (-385 |#2|) (-385 |#2|) (-385 |#2|)))) (-13 (-341) (-138) (-966 (-525))) (-1147 |#1|)) (T -946))
+((-2757 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-341) (-138) (-966 (-525)))) (-4 *5 (-1147 *4)) (-5 *2 (-591 (-385 *5))) (-5 *1 (-946 *4 *5)) (-5 *3 (-385 *5)))) (-2546 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-13 (-341) (-138) (-966 (-525)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-385 *6)) (|:| |h| *6) (|:| |c1| (-385 *6)) (|:| |c2| (-385 *6)) (|:| -2447 *6))) (-5 *1 (-946 *5 *6)) (-5 *3 (-385 *6)))))
+(-10 -7 (-15 -2546 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-385 |#2|)) (|:| |h| |#2|) (|:| |c1| (-385 |#2|)) (|:| |c2| (-385 |#2|)) (|:| -2447 |#2|)) "failed") (-385 |#2|) (-385 |#2|) (-385 |#2|) (-1 |#2| |#2|))) (-15 -2757 ((-3 (-591 (-385 |#2|)) "failed") (-385 |#2|) (-385 |#2|) (-385 |#2|))))
+((-3628 (((-1 |#1|) (-591 (-2 (|:| -3024 |#1|) (|:| -3197 (-525))))) 37)) (-2880 (((-1 |#1|) (-1020 |#1|)) 45)) (-2581 (((-1 |#1|) (-1171 |#1|) (-1171 (-525)) (-525)) 34)))
+(((-947 |#1|) (-10 -7 (-15 -2880 ((-1 |#1|) (-1020 |#1|))) (-15 -3628 ((-1 |#1|) (-591 (-2 (|:| -3024 |#1|) (|:| -3197 (-525)))))) (-15 -2581 ((-1 |#1|) (-1171 |#1|) (-1171 (-525)) (-525)))) (-1018)) (T -947))
+((-2581 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1171 *6)) (-5 *4 (-1171 (-525))) (-5 *5 (-525)) (-4 *6 (-1018)) (-5 *2 (-1 *6)) (-5 *1 (-947 *6)))) (-3628 (*1 *2 *3) (-12 (-5 *3 (-591 (-2 (|:| -3024 *4) (|:| -3197 (-525))))) (-4 *4 (-1018)) (-5 *2 (-1 *4)) (-5 *1 (-947 *4)))) (-2880 (*1 *2 *3) (-12 (-5 *3 (-1020 *4)) (-4 *4 (-1018)) (-5 *2 (-1 *4)) (-5 *1 (-947 *4)))))
+(-10 -7 (-15 -2880 ((-1 |#1|) (-1020 |#1|))) (-15 -3628 ((-1 |#1|) (-591 (-2 (|:| -3024 |#1|) (|:| -3197 (-525)))))) (-15 -2581 ((-1 |#1|) (-1171 |#1|) (-1171 (-525)) (-525))))
+((-3873 (((-712) (-314 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
+(((-948 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3873 ((-712) (-314 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)))) (-341) (-1147 |#1|) (-1147 (-385 |#2|)) (-320 |#1| |#2| |#3|) (-13 (-346) (-341))) (T -948))
+((-3873 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-314 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-341)) (-4 *7 (-1147 *6)) (-4 *4 (-1147 (-385 *7))) (-4 *8 (-320 *6 *7 *4)) (-4 *9 (-13 (-346) (-341))) (-5 *2 (-712)) (-5 *1 (-948 *6 *7 *4 *8 *9)))))
+(-10 -7 (-15 -3873 ((-712) (-314 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
+((-2960 (((-3 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) "failed") |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) 31) (((-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-385 (-525))) 28)) (-3610 (((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-385 (-525))) 33) (((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-385 (-525))) 29) (((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) 32) (((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1|) 27)) (-2083 (((-591 (-385 (-525))) (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) 19)) (-1329 (((-385 (-525)) (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) 16)))
+(((-949 |#1|) (-10 -7 (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1|)) (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-385 (-525)))) (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-385 (-525)))) (-15 -2960 ((-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-385 (-525)))) (-15 -2960 ((-3 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) "failed") |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) (-15 -1329 ((-385 (-525)) (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) (-15 -2083 ((-591 (-385 (-525))) (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))))) (-1147 (-525))) (T -949))
+((-2083 (*1 *2 *3) (-12 (-5 *3 (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) (-5 *2 (-591 (-385 (-525)))) (-5 *1 (-949 *4)) (-4 *4 (-1147 (-525))))) (-1329 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) (-5 *2 (-385 (-525))) (-5 *1 (-949 *4)) (-4 *4 (-1147 (-525))))) (-2960 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) (-5 *1 (-949 *3)) (-4 *3 (-1147 (-525))))) (-2960 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) (-5 *4 (-385 (-525))) (-5 *1 (-949 *3)) (-4 *3 (-1147 (-525))))) (-3610 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-385 (-525))) (-5 *2 (-591 (-2 (|:| -3388 *5) (|:| -3400 *5)))) (-5 *1 (-949 *3)) (-4 *3 (-1147 (-525))) (-5 *4 (-2 (|:| -3388 *5) (|:| -3400 *5))))) (-3610 (*1 *2 *3 *4) (-12 (-5 *2 (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) (-5 *1 (-949 *3)) (-4 *3 (-1147 (-525))) (-5 *4 (-385 (-525))))) (-3610 (*1 *2 *3 *4) (-12 (-5 *2 (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) (-5 *1 (-949 *3)) (-4 *3 (-1147 (-525))) (-5 *4 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))))) (-3610 (*1 *2 *3) (-12 (-5 *2 (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) (-5 *1 (-949 *3)) (-4 *3 (-1147 (-525))))))
+(-10 -7 (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1|)) (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-385 (-525)))) (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-385 (-525)))) (-15 -2960 ((-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-385 (-525)))) (-15 -2960 ((-3 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) "failed") |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) (-15 -1329 ((-385 (-525)) (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) (-15 -2083 ((-591 (-385 (-525))) (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))))))
+((-2960 (((-3 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) "failed") |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) 35) (((-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-385 (-525))) 32)) (-3610 (((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-385 (-525))) 30) (((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-385 (-525))) 26) (((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) 28) (((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1|) 24)))
+(((-950 |#1|) (-10 -7 (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1|)) (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-385 (-525)))) (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-385 (-525)))) (-15 -2960 ((-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-385 (-525)))) (-15 -2960 ((-3 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) "failed") |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))))) (-1147 (-385 (-525)))) (T -950))
+((-2960 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) (-5 *1 (-950 *3)) (-4 *3 (-1147 (-385 (-525)))))) (-2960 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) (-5 *4 (-385 (-525))) (-5 *1 (-950 *3)) (-4 *3 (-1147 *4)))) (-3610 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-385 (-525))) (-5 *2 (-591 (-2 (|:| -3388 *5) (|:| -3400 *5)))) (-5 *1 (-950 *3)) (-4 *3 (-1147 *5)) (-5 *4 (-2 (|:| -3388 *5) (|:| -3400 *5))))) (-3610 (*1 *2 *3 *4) (-12 (-5 *4 (-385 (-525))) (-5 *2 (-591 (-2 (|:| -3388 *4) (|:| -3400 *4)))) (-5 *1 (-950 *3)) (-4 *3 (-1147 *4)))) (-3610 (*1 *2 *3 *4) (-12 (-5 *2 (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) (-5 *1 (-950 *3)) (-4 *3 (-1147 (-385 (-525)))) (-5 *4 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))))) (-3610 (*1 *2 *3) (-12 (-5 *2 (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) (-5 *1 (-950 *3)) (-4 *3 (-1147 (-385 (-525)))))))
+(-10 -7 (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1|)) (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))) (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-385 (-525)))) (-15 -3610 ((-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-385 (-525)))) (-15 -2960 ((-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-385 (-525)))) (-15 -2960 ((-3 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) "failed") |#1| (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))) (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))))
+((-1408 (((-205) $) 6) (((-357) $) 9)))
+(((-951) (-131)) (T -951))
+NIL
+(-13 (-566 (-205)) (-566 (-357)))
+(((-566 (-205)) . T) ((-566 (-357)) . T))
+((-4039 (((-591 (-357)) (-885 (-525)) (-357)) 28) (((-591 (-357)) (-885 (-385 (-525))) (-357)) 27)) (-4082 (((-591 (-591 (-357))) (-591 (-885 (-525))) (-591 (-1089)) (-357)) 37)))
+(((-952) (-10 -7 (-15 -4039 ((-591 (-357)) (-885 (-385 (-525))) (-357))) (-15 -4039 ((-591 (-357)) (-885 (-525)) (-357))) (-15 -4082 ((-591 (-591 (-357))) (-591 (-885 (-525))) (-591 (-1089)) (-357))))) (T -952))
+((-4082 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-591 (-885 (-525)))) (-5 *4 (-591 (-1089))) (-5 *2 (-591 (-591 (-357)))) (-5 *1 (-952)) (-5 *5 (-357)))) (-4039 (*1 *2 *3 *4) (-12 (-5 *3 (-885 (-525))) (-5 *2 (-591 (-357))) (-5 *1 (-952)) (-5 *4 (-357)))) (-4039 (*1 *2 *3 *4) (-12 (-5 *3 (-885 (-385 (-525)))) (-5 *2 (-591 (-357))) (-5 *1 (-952)) (-5 *4 (-357)))))
+(-10 -7 (-15 -4039 ((-591 (-357)) (-885 (-385 (-525))) (-357))) (-15 -4039 ((-591 (-357)) (-885 (-525)) (-357))) (-15 -4082 ((-591 (-591 (-357))) (-591 (-885 (-525))) (-591 (-1089)) (-357))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 70)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1361 (($ $) NIL) (($ $ (-712)) NIL) (($ (-385 (-525))) NIL) (($ (-525)) NIL)) (-1947 (((-108) $ $) NIL)) (-3329 (((-525) $) 65)) (-3798 (($) NIL T CONST)) (-3642 (((-3 $ "failed") (-1085 $) (-854) (-796)) NIL) (((-3 $ "failed") (-1085 $) (-854)) 50)) (-1251 (((-3 (-385 (-525)) "failed") $) NIL (|has| (-385 (-525)) (-966 (-385 (-525))))) (((-3 (-385 (-525)) "failed") $) NIL) (((-3 |#1| "failed") $) 107) (((-3 (-525) "failed") $) NIL (-3321 (|has| (-385 (-525)) (-966 (-525))) (|has| |#1| (-966 (-525)))))) (-3528 (((-385 (-525)) $) 15 (|has| (-385 (-525)) (-966 (-385 (-525))))) (((-385 (-525)) $) 15) ((|#1| $) 108) (((-525) $) NIL (-3321 (|has| (-385 (-525)) (-966 (-525))) (|has| |#1| (-966 (-525)))))) (-3472 (($ $ (-796)) 42)) (-4018 (($ $ (-796)) 43)) (-2129 (($ $ $) NIL)) (-1377 (((-385 (-525)) $ $) 19)) (-4163 (((-3 $ "failed") $) 83)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2134 (((-108) $) 61)) (-2824 (((-108) $) NIL)) (-3956 (($ $ (-525)) NIL)) (-2732 (((-108) $) 64)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-3976 (((-3 (-1085 $) "failed") $) 78)) (-2556 (((-3 (-796) "failed") $) 77)) (-2386 (((-3 (-1085 $) "failed") $) 75)) (-3963 (((-3 (-985 $ (-1085 $)) "failed") $) 73)) (-1356 (($ (-591 $)) NIL) (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 84)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ (-591 $)) NIL) (($ $ $) NIL)) (-1348 (((-396 $) $) NIL)) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3022 (((-796) $) 82) (($ (-525)) NIL) (($ (-385 (-525))) NIL) (($ $) 58) (($ (-385 (-525))) NIL) (($ (-525)) NIL) (($ (-385 (-525))) NIL) (($ |#1|) 110)) (-2128 (((-712)) NIL)) (-2495 (((-108) $ $) NIL)) (-2176 (((-385 (-525)) $ $) 25)) (-1282 (((-591 $) (-1085 $)) 56) (((-591 $) (-1085 (-385 (-525)))) NIL) (((-591 $) (-1085 (-525))) NIL) (((-591 $) (-885 $)) NIL) (((-591 $) (-885 (-385 (-525)))) NIL) (((-591 $) (-885 (-525))) NIL)) (-3811 (($ (-985 $ (-1085 $)) (-796)) 41)) (-1539 (($ $) 20)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL)) (-4191 (($) 29 T CONST)) (-4197 (($) 35 T CONST)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 71)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 22)) (-4173 (($ $ $) 33)) (-4164 (($ $) 34) (($ $ $) 69)) (-4156 (($ $ $) 103)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL) (($ $ (-385 (-525))) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 91) (($ $ $) 96) (($ (-385 (-525)) $) NIL) (($ $ (-385 (-525))) NIL) (($ (-525) $) 91) (($ $ (-525)) NIL) (($ (-385 (-525)) $) NIL) (($ $ (-385 (-525))) NIL) (($ |#1| $) 95) (($ $ |#1|) NIL)))
+(((-953 |#1|) (-13 (-942) (-389 |#1|) (-37 |#1|) (-10 -8 (-15 -3811 ($ (-985 $ (-1085 $)) (-796))) (-15 -3963 ((-3 (-985 $ (-1085 $)) "failed") $)) (-15 -1377 ((-385 (-525)) $ $)))) (-13 (-786) (-341) (-951))) (T -953))
+((-3811 (*1 *1 *2 *3) (-12 (-5 *2 (-985 (-953 *4) (-1085 (-953 *4)))) (-5 *3 (-796)) (-5 *1 (-953 *4)) (-4 *4 (-13 (-786) (-341) (-951))))) (-3963 (*1 *2 *1) (|partial| -12 (-5 *2 (-985 (-953 *3) (-1085 (-953 *3)))) (-5 *1 (-953 *3)) (-4 *3 (-13 (-786) (-341) (-951))))) (-1377 (*1 *2 *1 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-953 *3)) (-4 *3 (-13 (-786) (-341) (-951))))))
+(-13 (-942) (-389 |#1|) (-37 |#1|) (-10 -8 (-15 -3811 ($ (-985 $ (-1085 $)) (-796))) (-15 -3963 ((-3 (-985 $ (-1085 $)) "failed") $)) (-15 -1377 ((-385 (-525)) $ $))))
+((-4020 (((-2 (|:| -1317 |#2|) (|:| -4157 (-591 |#1|))) |#2| (-591 |#1|)) 20) ((|#2| |#2| |#1|) 15)))
+(((-954 |#1| |#2|) (-10 -7 (-15 -4020 (|#2| |#2| |#1|)) (-15 -4020 ((-2 (|:| -1317 |#2|) (|:| -4157 (-591 |#1|))) |#2| (-591 |#1|)))) (-341) (-601 |#1|)) (T -954))
+((-4020 (*1 *2 *3 *4) (-12 (-4 *5 (-341)) (-5 *2 (-2 (|:| -1317 *3) (|:| -4157 (-591 *5)))) (-5 *1 (-954 *5 *3)) (-5 *4 (-591 *5)) (-4 *3 (-601 *5)))) (-4020 (*1 *2 *2 *3) (-12 (-4 *3 (-341)) (-5 *1 (-954 *3 *2)) (-4 *2 (-601 *3)))))
+(-10 -7 (-15 -4020 (|#2| |#2| |#1|)) (-15 -4020 ((-2 (|:| -1317 |#2|) (|:| -4157 (-591 |#1|))) |#2| (-591 |#1|))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4116 ((|#1| $ |#1|) 14)) (-3186 ((|#1| $ |#1|) 12)) (-3126 (($ |#1|) 10)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-3164 ((|#1| $) 11)) (-4199 ((|#1| $) 13)) (-3022 (((-796) $) 21 (|has| |#1| (-1018)))) (-4096 (((-108) $ $) 9)))
+(((-955 |#1|) (-13 (-1125) (-10 -8 (-15 -3126 ($ |#1|)) (-15 -3164 (|#1| $)) (-15 -3186 (|#1| $ |#1|)) (-15 -4199 (|#1| $)) (-15 -4116 (|#1| $ |#1|)) (-15 -4096 ((-108) $ $)) (IF (|has| |#1| (-1018)) (-6 (-1018)) |%noBranch|))) (-1125)) (T -955))
+((-3126 (*1 *1 *2) (-12 (-5 *1 (-955 *2)) (-4 *2 (-1125)))) (-3164 (*1 *2 *1) (-12 (-5 *1 (-955 *2)) (-4 *2 (-1125)))) (-3186 (*1 *2 *1 *2) (-12 (-5 *1 (-955 *2)) (-4 *2 (-1125)))) (-4199 (*1 *2 *1) (-12 (-5 *1 (-955 *2)) (-4 *2 (-1125)))) (-4116 (*1 *2 *1 *2) (-12 (-5 *1 (-955 *2)) (-4 *2 (-1125)))) (-4096 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-955 *3)) (-4 *3 (-1125)))))
+(-13 (-1125) (-10 -8 (-15 -3126 ($ |#1|)) (-15 -3164 (|#1| $)) (-15 -3186 (|#1| $ |#1|)) (-15 -4199 (|#1| $)) (-15 -4116 (|#1| $ |#1|)) (-15 -4096 ((-108) $ $)) (IF (|has| |#1| (-1018)) (-6 (-1018)) |%noBranch|)))
+((-3008 (((-108) $ $) NIL)) (-3817 (((-591 (-2 (|:| -3529 $) (|:| -1976 (-591 |#4|)))) (-591 |#4|)) NIL)) (-2113 (((-591 $) (-591 |#4|)) 105) (((-591 $) (-591 |#4|) (-108)) 106) (((-591 $) (-591 |#4|) (-108) (-108)) 104) (((-591 $) (-591 |#4|) (-108) (-108) (-108) (-108)) 107)) (-1507 (((-591 |#3|) $) NIL)) (-1430 (((-108) $) NIL)) (-3490 (((-108) $) NIL (|has| |#1| (-517)))) (-3130 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1568 ((|#4| |#4| $) NIL)) (-1291 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 $))) |#4| $) 99)) (-3327 (((-2 (|:| |under| $) (|:| -2662 $) (|:| |upper| $)) $ |#3|) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-2305 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250))) (((-3 |#4| "failed") $ |#3|) 54)) (-3798 (($) NIL T CONST)) (-3382 (((-108) $) 26 (|has| |#1| (-517)))) (-2438 (((-108) $ $) NIL (|has| |#1| (-517)))) (-2055 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1964 (((-108) $) NIL (|has| |#1| (-517)))) (-2656 (((-591 |#4|) (-591 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3853 (((-591 |#4|) (-591 |#4|) $) NIL (|has| |#1| (-517)))) (-1921 (((-591 |#4|) (-591 |#4|) $) NIL (|has| |#1| (-517)))) (-1251 (((-3 $ "failed") (-591 |#4|)) NIL)) (-3528 (($ (-591 |#4|)) NIL)) (-3078 (((-3 $ "failed") $) 39)) (-2736 ((|#4| |#4| $) 57)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018))))) (-3677 (($ |#4| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-3407 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 73 (|has| |#1| (-517)))) (-3135 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-2933 ((|#4| |#4| $) NIL)) (-1227 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4250))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4250))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2719 (((-2 (|:| -3529 (-591 |#4|)) (|:| -1976 (-591 |#4|))) $) NIL)) (-1949 (((-108) |#4| $) NIL)) (-3485 (((-108) |#4| $) NIL)) (-1732 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1602 (((-2 (|:| |val| (-591 |#4|)) (|:| |towers| (-591 $))) (-591 |#4|) (-108) (-108)) 119)) (-3454 (((-591 |#4|) $) 16 (|has| $ (-6 -4250)))) (-1809 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2009 ((|#3| $) 33)) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#4|) $) 17 (|has| $ (-6 -4250)))) (-2141 (((-108) |#4| $) 25 (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018))))) (-3249 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#4| |#4|) $) 21)) (-3993 (((-591 |#3|) $) NIL)) (-4174 (((-108) |#3| $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-2711 (((-3 |#4| (-591 $)) |#4| |#4| $) NIL)) (-2627 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 $))) |#4| |#4| $) 97)) (-3708 (((-3 |#4| "failed") $) 37)) (-1933 (((-591 $) |#4| $) 80)) (-1372 (((-3 (-108) (-591 $)) |#4| $) NIL)) (-1406 (((-591 (-2 (|:| |val| (-108)) (|:| -3374 $))) |#4| $) 90) (((-108) |#4| $) 52)) (-3516 (((-591 $) |#4| $) 102) (((-591 $) (-591 |#4|) $) NIL) (((-591 $) (-591 |#4|) (-591 $)) 103) (((-591 $) |#4| (-591 $)) NIL)) (-3716 (((-591 $) (-591 |#4|) (-108) (-108) (-108)) 114)) (-2689 (($ |#4| $) 70) (($ (-591 |#4|) $) 71) (((-591 $) |#4| $ (-108) (-108) (-108) (-108) (-108)) 67)) (-3280 (((-591 |#4|) $) NIL)) (-3196 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-4066 ((|#4| |#4| $) NIL)) (-2154 (((-108) $ $) NIL)) (-2934 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-517)))) (-2115 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2731 ((|#4| |#4| $) NIL)) (-2047 (((-1036) $) NIL)) (-3066 (((-3 |#4| "failed") $) 35)) (-2069 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-1554 (((-3 $ "failed") $ |#4|) 48)) (-2784 (($ $ |#4|) NIL) (((-591 $) |#4| $) 82) (((-591 $) |#4| (-591 $)) NIL) (((-591 $) (-591 |#4|) $) NIL) (((-591 $) (-591 |#4|) (-591 $)) 77)) (-1623 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 |#4|) (-591 |#4|)) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-273 |#4|)) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-591 (-273 |#4|))) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) 15)) (-3209 (($) 13)) (-1316 (((-712) $) NIL)) (-2064 (((-712) |#4| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018)))) (((-712) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) 12)) (-1408 (((-501) $) NIL (|has| |#4| (-566 (-501))))) (-3036 (($ (-591 |#4|)) 20)) (-3134 (($ $ |#3|) 42)) (-3443 (($ $ |#3|) 44)) (-2487 (($ $) NIL)) (-3010 (($ $ |#3|) NIL)) (-3022 (((-796) $) 31) (((-591 |#4|) $) 40)) (-3223 (((-712) $) NIL (|has| |#3| (-346)))) (-2122 (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2165 (((-108) $ (-1 (-108) |#4| (-591 |#4|))) NIL)) (-2533 (((-591 $) |#4| $) 79) (((-591 $) |#4| (-591 $)) NIL) (((-591 $) (-591 |#4|) $) NIL) (((-591 $) (-591 |#4|) (-591 $)) NIL)) (-4158 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-3872 (((-591 |#3|) $) NIL)) (-1564 (((-108) |#4| $) NIL)) (-1884 (((-108) |#3| $) 53)) (-4096 (((-108) $ $) NIL)) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-956 |#1| |#2| |#3| |#4|) (-13 (-994 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2689 ((-591 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -2113 ((-591 $) (-591 |#4|) (-108) (-108))) (-15 -2113 ((-591 $) (-591 |#4|) (-108) (-108) (-108) (-108))) (-15 -3716 ((-591 $) (-591 |#4|) (-108) (-108) (-108))) (-15 -1602 ((-2 (|:| |val| (-591 |#4|)) (|:| |towers| (-591 $))) (-591 |#4|) (-108) (-108))))) (-429) (-734) (-788) (-989 |#1| |#2| |#3|)) (T -956))
+((-2689 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-591 (-956 *5 *6 *7 *3))) (-5 *1 (-956 *5 *6 *7 *3)) (-4 *3 (-989 *5 *6 *7)))) (-2113 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-591 (-956 *5 *6 *7 *8))) (-5 *1 (-956 *5 *6 *7 *8)))) (-2113 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-591 (-956 *5 *6 *7 *8))) (-5 *1 (-956 *5 *6 *7 *8)))) (-3716 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-591 (-956 *5 *6 *7 *8))) (-5 *1 (-956 *5 *6 *7 *8)))) (-1602 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-989 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-591 *8)) (|:| |towers| (-591 (-956 *5 *6 *7 *8))))) (-5 *1 (-956 *5 *6 *7 *8)) (-5 *3 (-591 *8)))))
+(-13 (-994 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2689 ((-591 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -2113 ((-591 $) (-591 |#4|) (-108) (-108))) (-15 -2113 ((-591 $) (-591 |#4|) (-108) (-108) (-108) (-108))) (-15 -3716 ((-591 $) (-591 |#4|) (-108) (-108) (-108))) (-15 -1602 ((-2 (|:| |val| (-591 |#4|)) (|:| |towers| (-591 $))) (-591 |#4|) (-108) (-108)))))
+((-2697 (((-591 (-631 |#1|)) (-591 (-631 |#1|))) 57) (((-631 |#1|) (-631 |#1|)) 56) (((-591 (-631 |#1|)) (-591 (-631 |#1|)) (-591 (-631 |#1|))) 55) (((-631 |#1|) (-631 |#1|) (-631 |#1|)) 52)) (-3125 (((-591 (-631 |#1|)) (-591 (-631 |#1|)) (-854)) 51) (((-631 |#1|) (-631 |#1|) (-854)) 50)) (-1222 (((-591 (-631 (-525))) (-591 (-591 (-525)))) 67) (((-591 (-631 (-525))) (-591 (-838 (-525))) (-525)) 66) (((-631 (-525)) (-591 (-525))) 63) (((-631 (-525)) (-838 (-525)) (-525)) 62)) (-3584 (((-631 (-885 |#1|)) (-712)) 80)) (-3650 (((-591 (-631 |#1|)) (-591 (-631 |#1|)) (-854)) 36 (|has| |#1| (-6 (-4252 "*")))) (((-631 |#1|) (-631 |#1|) (-854)) 34 (|has| |#1| (-6 (-4252 "*"))))))
+(((-957 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4252 "*"))) (-15 -3650 ((-631 |#1|) (-631 |#1|) (-854))) |%noBranch|) (IF (|has| |#1| (-6 (-4252 "*"))) (-15 -3650 ((-591 (-631 |#1|)) (-591 (-631 |#1|)) (-854))) |%noBranch|) (-15 -3584 ((-631 (-885 |#1|)) (-712))) (-15 -3125 ((-631 |#1|) (-631 |#1|) (-854))) (-15 -3125 ((-591 (-631 |#1|)) (-591 (-631 |#1|)) (-854))) (-15 -2697 ((-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -2697 ((-591 (-631 |#1|)) (-591 (-631 |#1|)) (-591 (-631 |#1|)))) (-15 -2697 ((-631 |#1|) (-631 |#1|))) (-15 -2697 ((-591 (-631 |#1|)) (-591 (-631 |#1|)))) (-15 -1222 ((-631 (-525)) (-838 (-525)) (-525))) (-15 -1222 ((-631 (-525)) (-591 (-525)))) (-15 -1222 ((-591 (-631 (-525))) (-591 (-838 (-525))) (-525))) (-15 -1222 ((-591 (-631 (-525))) (-591 (-591 (-525)))))) (-975)) (T -957))
+((-1222 (*1 *2 *3) (-12 (-5 *3 (-591 (-591 (-525)))) (-5 *2 (-591 (-631 (-525)))) (-5 *1 (-957 *4)) (-4 *4 (-975)))) (-1222 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-838 (-525)))) (-5 *4 (-525)) (-5 *2 (-591 (-631 *4))) (-5 *1 (-957 *5)) (-4 *5 (-975)))) (-1222 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-631 (-525))) (-5 *1 (-957 *4)) (-4 *4 (-975)))) (-1222 (*1 *2 *3 *4) (-12 (-5 *3 (-838 (-525))) (-5 *4 (-525)) (-5 *2 (-631 *4)) (-5 *1 (-957 *5)) (-4 *5 (-975)))) (-2697 (*1 *2 *2) (-12 (-5 *2 (-591 (-631 *3))) (-4 *3 (-975)) (-5 *1 (-957 *3)))) (-2697 (*1 *2 *2) (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-957 *3)))) (-2697 (*1 *2 *2 *2) (-12 (-5 *2 (-591 (-631 *3))) (-4 *3 (-975)) (-5 *1 (-957 *3)))) (-2697 (*1 *2 *2 *2) (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-957 *3)))) (-3125 (*1 *2 *2 *3) (-12 (-5 *2 (-591 (-631 *4))) (-5 *3 (-854)) (-4 *4 (-975)) (-5 *1 (-957 *4)))) (-3125 (*1 *2 *2 *3) (-12 (-5 *2 (-631 *4)) (-5 *3 (-854)) (-4 *4 (-975)) (-5 *1 (-957 *4)))) (-3584 (*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-631 (-885 *4))) (-5 *1 (-957 *4)) (-4 *4 (-975)))) (-3650 (*1 *2 *2 *3) (-12 (-5 *2 (-591 (-631 *4))) (-5 *3 (-854)) (|has| *4 (-6 (-4252 "*"))) (-4 *4 (-975)) (-5 *1 (-957 *4)))) (-3650 (*1 *2 *2 *3) (-12 (-5 *2 (-631 *4)) (-5 *3 (-854)) (|has| *4 (-6 (-4252 "*"))) (-4 *4 (-975)) (-5 *1 (-957 *4)))))
+(-10 -7 (IF (|has| |#1| (-6 (-4252 "*"))) (-15 -3650 ((-631 |#1|) (-631 |#1|) (-854))) |%noBranch|) (IF (|has| |#1| (-6 (-4252 "*"))) (-15 -3650 ((-591 (-631 |#1|)) (-591 (-631 |#1|)) (-854))) |%noBranch|) (-15 -3584 ((-631 (-885 |#1|)) (-712))) (-15 -3125 ((-631 |#1|) (-631 |#1|) (-854))) (-15 -3125 ((-591 (-631 |#1|)) (-591 (-631 |#1|)) (-854))) (-15 -2697 ((-631 |#1|) (-631 |#1|) (-631 |#1|))) (-15 -2697 ((-591 (-631 |#1|)) (-591 (-631 |#1|)) (-591 (-631 |#1|)))) (-15 -2697 ((-631 |#1|) (-631 |#1|))) (-15 -2697 ((-591 (-631 |#1|)) (-591 (-631 |#1|)))) (-15 -1222 ((-631 (-525)) (-838 (-525)) (-525))) (-15 -1222 ((-631 (-525)) (-591 (-525)))) (-15 -1222 ((-591 (-631 (-525))) (-591 (-838 (-525))) (-525))) (-15 -1222 ((-591 (-631 (-525))) (-591 (-591 (-525))))))
+((-3096 (((-631 |#1|) (-591 (-631 |#1|)) (-1171 |#1|)) 51 (|has| |#1| (-286)))) (-2787 (((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)) (-1171 (-1171 |#1|))) 75 (|has| |#1| (-341))) (((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)) (-1171 |#1|)) 73 (|has| |#1| (-341)))) (-2018 (((-1171 |#1|) (-591 (-1171 |#1|)) (-525)) 77 (-12 (|has| |#1| (-341)) (|has| |#1| (-346))))) (-1748 (((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)) (-854)) 82 (-12 (|has| |#1| (-341)) (|has| |#1| (-346)))) (((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)) (-108)) 80 (-12 (|has| |#1| (-341)) (|has| |#1| (-346)))) (((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|))) 79 (-12 (|has| |#1| (-341)) (|has| |#1| (-346)))) (((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)) (-108) (-525) (-525)) 78 (-12 (|has| |#1| (-341)) (|has| |#1| (-346))))) (-1370 (((-108) (-591 (-631 |#1|))) 71 (|has| |#1| (-341))) (((-108) (-591 (-631 |#1|)) (-525)) 70 (|has| |#1| (-341)))) (-2198 (((-1171 (-1171 |#1|)) (-591 (-631 |#1|)) (-1171 |#1|)) 49 (|has| |#1| (-286)))) (-3459 (((-631 |#1|) (-591 (-631 |#1|)) (-631 |#1|)) 34)) (-3859 (((-631 |#1|) (-1171 (-1171 |#1|))) 31)) (-1916 (((-631 |#1|) (-591 (-631 |#1|)) (-591 (-631 |#1|)) (-525)) 66 (|has| |#1| (-341))) (((-631 |#1|) (-591 (-631 |#1|)) (-591 (-631 |#1|))) 65 (|has| |#1| (-341))) (((-631 |#1|) (-591 (-631 |#1|)) (-591 (-631 |#1|)) (-108) (-525)) 64 (|has| |#1| (-341)))))
+(((-958 |#1|) (-10 -7 (-15 -3859 ((-631 |#1|) (-1171 (-1171 |#1|)))) (-15 -3459 ((-631 |#1|) (-591 (-631 |#1|)) (-631 |#1|))) (IF (|has| |#1| (-286)) (PROGN (-15 -2198 ((-1171 (-1171 |#1|)) (-591 (-631 |#1|)) (-1171 |#1|))) (-15 -3096 ((-631 |#1|) (-591 (-631 |#1|)) (-1171 |#1|)))) |%noBranch|) (IF (|has| |#1| (-341)) (PROGN (-15 -1916 ((-631 |#1|) (-591 (-631 |#1|)) (-591 (-631 |#1|)) (-108) (-525))) (-15 -1916 ((-631 |#1|) (-591 (-631 |#1|)) (-591 (-631 |#1|)))) (-15 -1916 ((-631 |#1|) (-591 (-631 |#1|)) (-591 (-631 |#1|)) (-525))) (-15 -1370 ((-108) (-591 (-631 |#1|)) (-525))) (-15 -1370 ((-108) (-591 (-631 |#1|)))) (-15 -2787 ((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)) (-1171 |#1|))) (-15 -2787 ((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)) (-1171 (-1171 |#1|))))) |%noBranch|) (IF (|has| |#1| (-346)) (IF (|has| |#1| (-341)) (PROGN (-15 -1748 ((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)) (-108) (-525) (-525))) (-15 -1748 ((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)))) (-15 -1748 ((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)) (-108))) (-15 -1748 ((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)) (-854))) (-15 -2018 ((-1171 |#1|) (-591 (-1171 |#1|)) (-525)))) |%noBranch|) |%noBranch|)) (-975)) (T -958))
+((-2018 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-1171 *5))) (-5 *4 (-525)) (-5 *2 (-1171 *5)) (-5 *1 (-958 *5)) (-4 *5 (-341)) (-4 *5 (-346)) (-4 *5 (-975)))) (-1748 (*1 *2 *3 *4) (-12 (-5 *4 (-854)) (-4 *5 (-341)) (-4 *5 (-346)) (-4 *5 (-975)) (-5 *2 (-591 (-591 (-631 *5)))) (-5 *1 (-958 *5)) (-5 *3 (-591 (-631 *5))))) (-1748 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-341)) (-4 *5 (-346)) (-4 *5 (-975)) (-5 *2 (-591 (-591 (-631 *5)))) (-5 *1 (-958 *5)) (-5 *3 (-591 (-631 *5))))) (-1748 (*1 *2 *3) (-12 (-4 *4 (-341)) (-4 *4 (-346)) (-4 *4 (-975)) (-5 *2 (-591 (-591 (-631 *4)))) (-5 *1 (-958 *4)) (-5 *3 (-591 (-631 *4))))) (-1748 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-108)) (-5 *5 (-525)) (-4 *6 (-341)) (-4 *6 (-346)) (-4 *6 (-975)) (-5 *2 (-591 (-591 (-631 *6)))) (-5 *1 (-958 *6)) (-5 *3 (-591 (-631 *6))))) (-2787 (*1 *2 *3 *4) (-12 (-5 *4 (-1171 (-1171 *5))) (-4 *5 (-341)) (-4 *5 (-975)) (-5 *2 (-591 (-591 (-631 *5)))) (-5 *1 (-958 *5)) (-5 *3 (-591 (-631 *5))))) (-2787 (*1 *2 *3 *4) (-12 (-5 *4 (-1171 *5)) (-4 *5 (-341)) (-4 *5 (-975)) (-5 *2 (-591 (-591 (-631 *5)))) (-5 *1 (-958 *5)) (-5 *3 (-591 (-631 *5))))) (-1370 (*1 *2 *3) (-12 (-5 *3 (-591 (-631 *4))) (-4 *4 (-341)) (-4 *4 (-975)) (-5 *2 (-108)) (-5 *1 (-958 *4)))) (-1370 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-631 *5))) (-5 *4 (-525)) (-4 *5 (-341)) (-4 *5 (-975)) (-5 *2 (-108)) (-5 *1 (-958 *5)))) (-1916 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-591 (-631 *5))) (-5 *4 (-525)) (-5 *2 (-631 *5)) (-5 *1 (-958 *5)) (-4 *5 (-341)) (-4 *5 (-975)))) (-1916 (*1 *2 *3 *3) (-12 (-5 *3 (-591 (-631 *4))) (-5 *2 (-631 *4)) (-5 *1 (-958 *4)) (-4 *4 (-341)) (-4 *4 (-975)))) (-1916 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-591 (-631 *6))) (-5 *4 (-108)) (-5 *5 (-525)) (-5 *2 (-631 *6)) (-5 *1 (-958 *6)) (-4 *6 (-341)) (-4 *6 (-975)))) (-3096 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-631 *5))) (-5 *4 (-1171 *5)) (-4 *5 (-286)) (-4 *5 (-975)) (-5 *2 (-631 *5)) (-5 *1 (-958 *5)))) (-2198 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-631 *5))) (-4 *5 (-286)) (-4 *5 (-975)) (-5 *2 (-1171 (-1171 *5))) (-5 *1 (-958 *5)) (-5 *4 (-1171 *5)))) (-3459 (*1 *2 *3 *2) (-12 (-5 *3 (-591 (-631 *4))) (-5 *2 (-631 *4)) (-4 *4 (-975)) (-5 *1 (-958 *4)))) (-3859 (*1 *2 *3) (-12 (-5 *3 (-1171 (-1171 *4))) (-4 *4 (-975)) (-5 *2 (-631 *4)) (-5 *1 (-958 *4)))))
+(-10 -7 (-15 -3859 ((-631 |#1|) (-1171 (-1171 |#1|)))) (-15 -3459 ((-631 |#1|) (-591 (-631 |#1|)) (-631 |#1|))) (IF (|has| |#1| (-286)) (PROGN (-15 -2198 ((-1171 (-1171 |#1|)) (-591 (-631 |#1|)) (-1171 |#1|))) (-15 -3096 ((-631 |#1|) (-591 (-631 |#1|)) (-1171 |#1|)))) |%noBranch|) (IF (|has| |#1| (-341)) (PROGN (-15 -1916 ((-631 |#1|) (-591 (-631 |#1|)) (-591 (-631 |#1|)) (-108) (-525))) (-15 -1916 ((-631 |#1|) (-591 (-631 |#1|)) (-591 (-631 |#1|)))) (-15 -1916 ((-631 |#1|) (-591 (-631 |#1|)) (-591 (-631 |#1|)) (-525))) (-15 -1370 ((-108) (-591 (-631 |#1|)) (-525))) (-15 -1370 ((-108) (-591 (-631 |#1|)))) (-15 -2787 ((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)) (-1171 |#1|))) (-15 -2787 ((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)) (-1171 (-1171 |#1|))))) |%noBranch|) (IF (|has| |#1| (-346)) (IF (|has| |#1| (-341)) (PROGN (-15 -1748 ((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)) (-108) (-525) (-525))) (-15 -1748 ((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)))) (-15 -1748 ((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)) (-108))) (-15 -1748 ((-591 (-591 (-631 |#1|))) (-591 (-631 |#1|)) (-854))) (-15 -2018 ((-1171 |#1|) (-591 (-1171 |#1|)) (-525)))) |%noBranch|) |%noBranch|))
+((-3458 ((|#1| (-854) |#1|) 9)))
+(((-959 |#1|) (-10 -7 (-15 -3458 (|#1| (-854) |#1|))) (-13 (-1018) (-10 -8 (-15 -4156 ($ $ $))))) (T -959))
+((-3458 (*1 *2 *3 *2) (-12 (-5 *3 (-854)) (-5 *1 (-959 *2)) (-4 *2 (-13 (-1018) (-10 -8 (-15 -4156 ($ $ $))))))))
+(-10 -7 (-15 -3458 (|#1| (-854) |#1|)))
+((-3003 (((-591 (-2 (|:| |radval| (-294 (-525))) (|:| |radmult| (-525)) (|:| |radvect| (-591 (-631 (-294 (-525))))))) (-631 (-385 (-885 (-525))))) 59)) (-2369 (((-591 (-631 (-294 (-525)))) (-294 (-525)) (-631 (-385 (-885 (-525))))) 48)) (-3129 (((-591 (-294 (-525))) (-631 (-385 (-885 (-525))))) 41)) (-1840 (((-591 (-631 (-294 (-525)))) (-631 (-385 (-885 (-525))))) 69)) (-3422 (((-631 (-294 (-525))) (-631 (-294 (-525)))) 34)) (-3771 (((-591 (-631 (-294 (-525)))) (-591 (-631 (-294 (-525))))) 62)) (-1653 (((-3 (-631 (-294 (-525))) "failed") (-631 (-385 (-885 (-525))))) 66)))
+(((-960) (-10 -7 (-15 -3003 ((-591 (-2 (|:| |radval| (-294 (-525))) (|:| |radmult| (-525)) (|:| |radvect| (-591 (-631 (-294 (-525))))))) (-631 (-385 (-885 (-525)))))) (-15 -2369 ((-591 (-631 (-294 (-525)))) (-294 (-525)) (-631 (-385 (-885 (-525)))))) (-15 -3129 ((-591 (-294 (-525))) (-631 (-385 (-885 (-525)))))) (-15 -1653 ((-3 (-631 (-294 (-525))) "failed") (-631 (-385 (-885 (-525)))))) (-15 -3422 ((-631 (-294 (-525))) (-631 (-294 (-525))))) (-15 -3771 ((-591 (-631 (-294 (-525)))) (-591 (-631 (-294 (-525)))))) (-15 -1840 ((-591 (-631 (-294 (-525)))) (-631 (-385 (-885 (-525)))))))) (T -960))
+((-1840 (*1 *2 *3) (-12 (-5 *3 (-631 (-385 (-885 (-525))))) (-5 *2 (-591 (-631 (-294 (-525))))) (-5 *1 (-960)))) (-3771 (*1 *2 *2) (-12 (-5 *2 (-591 (-631 (-294 (-525))))) (-5 *1 (-960)))) (-3422 (*1 *2 *2) (-12 (-5 *2 (-631 (-294 (-525)))) (-5 *1 (-960)))) (-1653 (*1 *2 *3) (|partial| -12 (-5 *3 (-631 (-385 (-885 (-525))))) (-5 *2 (-631 (-294 (-525)))) (-5 *1 (-960)))) (-3129 (*1 *2 *3) (-12 (-5 *3 (-631 (-385 (-885 (-525))))) (-5 *2 (-591 (-294 (-525)))) (-5 *1 (-960)))) (-2369 (*1 *2 *3 *4) (-12 (-5 *4 (-631 (-385 (-885 (-525))))) (-5 *2 (-591 (-631 (-294 (-525))))) (-5 *1 (-960)) (-5 *3 (-294 (-525))))) (-3003 (*1 *2 *3) (-12 (-5 *3 (-631 (-385 (-885 (-525))))) (-5 *2 (-591 (-2 (|:| |radval| (-294 (-525))) (|:| |radmult| (-525)) (|:| |radvect| (-591 (-631 (-294 (-525)))))))) (-5 *1 (-960)))))
+(-10 -7 (-15 -3003 ((-591 (-2 (|:| |radval| (-294 (-525))) (|:| |radmult| (-525)) (|:| |radvect| (-591 (-631 (-294 (-525))))))) (-631 (-385 (-885 (-525)))))) (-15 -2369 ((-591 (-631 (-294 (-525)))) (-294 (-525)) (-631 (-385 (-885 (-525)))))) (-15 -3129 ((-591 (-294 (-525))) (-631 (-385 (-885 (-525)))))) (-15 -1653 ((-3 (-631 (-294 (-525))) "failed") (-631 (-385 (-885 (-525)))))) (-15 -3422 ((-631 (-294 (-525))) (-631 (-294 (-525))))) (-15 -3771 ((-591 (-631 (-294 (-525)))) (-591 (-631 (-294 (-525)))))) (-15 -1840 ((-591 (-631 (-294 (-525)))) (-631 (-385 (-885 (-525)))))))
+((-4100 ((|#1| |#1| (-854)) 9)))
+(((-961 |#1|) (-10 -7 (-15 -4100 (|#1| |#1| (-854)))) (-13 (-1018) (-10 -8 (-15 * ($ $ $))))) (T -961))
+((-4100 (*1 *2 *2 *3) (-12 (-5 *3 (-854)) (-5 *1 (-961 *2)) (-4 *2 (-13 (-1018) (-10 -8 (-15 * ($ $ $))))))))
+(-10 -7 (-15 -4100 (|#1| |#1| (-854))))
+((-3022 ((|#1| (-290)) 11) (((-1176) |#1|) 9)))
+(((-962 |#1|) (-10 -7 (-15 -3022 ((-1176) |#1|)) (-15 -3022 (|#1| (-290)))) (-1125)) (T -962))
+((-3022 (*1 *2 *3) (-12 (-5 *3 (-290)) (-5 *1 (-962 *2)) (-4 *2 (-1125)))) (-3022 (*1 *2 *3) (-12 (-5 *2 (-1176)) (-5 *1 (-962 *3)) (-4 *3 (-1125)))))
+(-10 -7 (-15 -3022 ((-1176) |#1|)) (-15 -3022 (|#1| (-290))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1227 (($ |#4|) 25)) (-4163 (((-3 $ "failed") $) NIL)) (-2824 (((-108) $) NIL)) (-1223 ((|#4| $) 27)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 46) (($ (-525)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-2128 (((-712)) 43)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 21 T CONST)) (-4197 (($) 23 T CONST)) (-4096 (((-108) $ $) 40)) (-4164 (($ $) 31) (($ $ $) NIL)) (-4156 (($ $ $) 29)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 36) (($ $ $) 33) (($ |#1| $) 38) (($ $ |#1|) NIL)))
+(((-963 |#1| |#2| |#3| |#4| |#5|) (-13 (-160) (-37 |#1|) (-10 -8 (-15 -1227 ($ |#4|)) (-15 -3022 ($ |#4|)) (-15 -1223 (|#4| $)))) (-341) (-734) (-788) (-882 |#1| |#2| |#3|) (-591 |#4|)) (T -963))
+((-1227 (*1 *1 *2) (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-963 *3 *4 *5 *2 *6)) (-4 *2 (-882 *3 *4 *5)) (-14 *6 (-591 *2)))) (-3022 (*1 *1 *2) (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-963 *3 *4 *5 *2 *6)) (-4 *2 (-882 *3 *4 *5)) (-14 *6 (-591 *2)))) (-1223 (*1 *2 *1) (-12 (-4 *2 (-882 *3 *4 *5)) (-5 *1 (-963 *3 *4 *5 *2 *6)) (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-14 *6 (-591 *2)))))
+(-13 (-160) (-37 |#1|) (-10 -8 (-15 -1227 ($ |#4|)) (-15 -3022 ($ |#4|)) (-15 -1223 (|#4| $))))
+((-3008 (((-108) $ $) NIL (-3321 (|has| (-51) (-1018)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018))))) (-1260 (($) NIL) (($ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) NIL)) (-3296 (((-1176) $ (-1089) (-1089)) NIL (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) NIL)) (-3073 (((-108) (-108)) 39)) (-3006 (((-108) (-108)) 38)) (-3186 (((-51) $ (-1089) (-51)) NIL)) (-1797 (($ (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250)))) (-2401 (((-3 (-51) "failed") (-1089) $) NIL)) (-3798 (($) NIL T CONST)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018))))) (-3901 (($ (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) $) NIL (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-3 (-51) "failed") (-1089) $) NIL)) (-3677 (($ (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (($ (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250)))) (-1227 (((-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $ (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (((-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $ (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) NIL (|has| $ (-6 -4250))) (((-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250)))) (-3255 (((-51) $ (-1089) (-51)) NIL (|has| $ (-6 -4251)))) (-3217 (((-51) $ (-1089)) NIL)) (-3454 (((-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-591 (-51)) $) NIL (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-1089) $) NIL (|has| (-1089) (-788)))) (-2552 (((-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-591 (-51)) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-51) (-1018))))) (-3468 (((-1089) $) NIL (|has| (-1089) (-788)))) (-3249 (($ (-1 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4251))) (($ (-1 (-51) (-51)) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL) (($ (-1 (-51) (-51)) $) NIL) (($ (-1 (-51) (-51) (-51)) $ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (-3321 (|has| (-51) (-1018)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018))))) (-1542 (((-591 (-1089)) $) 34)) (-2484 (((-108) (-1089) $) NIL)) (-1464 (((-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) $) NIL)) (-2470 (($ (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) $) NIL)) (-2511 (((-591 (-1089)) $) NIL)) (-2791 (((-108) (-1089) $) NIL)) (-2047 (((-1036) $) NIL (-3321 (|has| (-51) (-1018)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018))))) (-3066 (((-51) $) NIL (|has| (-1089) (-788)))) (-2069 (((-3 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) "failed") (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL)) (-1941 (($ $ (-51)) NIL (|has| $ (-6 -4251)))) (-3631 (((-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) $) NIL)) (-1623 (((-108) (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))))) NIL (-12 (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (($ $ (-273 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) NIL (-12 (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (($ $ (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) NIL (-12 (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (($ $ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) NIL (-12 (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (($ $ (-591 (-51)) (-591 (-51))) NIL (-12 (|has| (-51) (-288 (-51))) (|has| (-51) (-1018)))) (($ $ (-51) (-51)) NIL (-12 (|has| (-51) (-288 (-51))) (|has| (-51) (-1018)))) (($ $ (-273 (-51))) NIL (-12 (|has| (-51) (-288 (-51))) (|has| (-51) (-1018)))) (($ $ (-591 (-273 (-51)))) NIL (-12 (|has| (-51) (-288 (-51))) (|has| (-51) (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-51) (-1018))))) (-3339 (((-591 (-51)) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 (((-51) $ (-1089)) 35) (((-51) $ (-1089) (-51)) NIL)) (-2311 (($) NIL) (($ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) NIL)) (-2064 (((-712) (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (((-712) (-51) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-51) (-1018)))) (((-712) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-566 (-501))))) (-3036 (($ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) NIL)) (-3022 (((-796) $) 37 (-3321 (|has| (-51) (-565 (-796))) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-565 (-796)))))) (-1870 (($ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) NIL)) (-4158 (((-108) (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (-3321 (|has| (-51) (-1018)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018))))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-964) (-13 (-1102 (-1089) (-51)) (-10 -7 (-15 -3073 ((-108) (-108))) (-15 -3006 ((-108) (-108))) (-6 -4250)))) (T -964))
+((-3073 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-964)))) (-3006 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-964)))))
+(-13 (-1102 (-1089) (-51)) (-10 -7 (-15 -3073 ((-108) (-108))) (-15 -3006 ((-108) (-108))) (-6 -4250)))
+((-3528 ((|#2| $) 10)))
+(((-965 |#1| |#2|) (-10 -8 (-15 -3528 (|#2| |#1|))) (-966 |#2|) (-1125)) (T -965))
+NIL
+(-10 -8 (-15 -3528 (|#2| |#1|)))
+((-1251 (((-3 |#1| "failed") $) 7)) (-3528 ((|#1| $) 8)) (-3022 (($ |#1|) 6)))
+(((-966 |#1|) (-131) (-1125)) (T -966))
+((-3528 (*1 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1125)))) (-1251 (*1 *2 *1) (|partial| -12 (-4 *1 (-966 *2)) (-4 *2 (-1125)))) (-3022 (*1 *1 *2) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1125)))))
+(-13 (-10 -8 (-15 -3022 ($ |t#1|)) (-15 -1251 ((-3 |t#1| "failed") $)) (-15 -3528 (|t#1| $))))
+((-2936 (((-591 (-591 (-273 (-385 (-885 |#2|))))) (-591 (-885 |#2|)) (-591 (-1089))) 38)))
+(((-967 |#1| |#2|) (-10 -7 (-15 -2936 ((-591 (-591 (-273 (-385 (-885 |#2|))))) (-591 (-885 |#2|)) (-591 (-1089))))) (-517) (-13 (-517) (-966 |#1|))) (T -967))
+((-2936 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-885 *6))) (-5 *4 (-591 (-1089))) (-4 *6 (-13 (-517) (-966 *5))) (-4 *5 (-517)) (-5 *2 (-591 (-591 (-273 (-385 (-885 *6)))))) (-5 *1 (-967 *5 *6)))))
+(-10 -7 (-15 -2936 ((-591 (-591 (-273 (-385 (-885 |#2|))))) (-591 (-885 |#2|)) (-591 (-1089)))))
+((-1410 (((-357)) 15)) (-2880 (((-1 (-357)) (-357) (-357)) 20)) (-2447 (((-1 (-357)) (-712)) 43)) (-2255 (((-357)) 34)) (-1572 (((-1 (-357)) (-357) (-357)) 35)) (-1514 (((-357)) 26)) (-1315 (((-1 (-357)) (-357)) 27)) (-2430 (((-357) (-712)) 38)) (-3732 (((-1 (-357)) (-712)) 39)) (-3576 (((-1 (-357)) (-712) (-712)) 42)) (-1617 (((-1 (-357)) (-712) (-712)) 40)))
+(((-968) (-10 -7 (-15 -1410 ((-357))) (-15 -2255 ((-357))) (-15 -1514 ((-357))) (-15 -2430 ((-357) (-712))) (-15 -2880 ((-1 (-357)) (-357) (-357))) (-15 -1572 ((-1 (-357)) (-357) (-357))) (-15 -1315 ((-1 (-357)) (-357))) (-15 -3732 ((-1 (-357)) (-712))) (-15 -1617 ((-1 (-357)) (-712) (-712))) (-15 -3576 ((-1 (-357)) (-712) (-712))) (-15 -2447 ((-1 (-357)) (-712))))) (T -968))
+((-2447 (*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1 (-357))) (-5 *1 (-968)))) (-3576 (*1 *2 *3 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1 (-357))) (-5 *1 (-968)))) (-1617 (*1 *2 *3 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1 (-357))) (-5 *1 (-968)))) (-3732 (*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1 (-357))) (-5 *1 (-968)))) (-1315 (*1 *2 *3) (-12 (-5 *2 (-1 (-357))) (-5 *1 (-968)) (-5 *3 (-357)))) (-1572 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-357))) (-5 *1 (-968)) (-5 *3 (-357)))) (-2880 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-357))) (-5 *1 (-968)) (-5 *3 (-357)))) (-2430 (*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-357)) (-5 *1 (-968)))) (-1514 (*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-968)))) (-2255 (*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-968)))) (-1410 (*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-968)))))
+(-10 -7 (-15 -1410 ((-357))) (-15 -2255 ((-357))) (-15 -1514 ((-357))) (-15 -2430 ((-357) (-712))) (-15 -2880 ((-1 (-357)) (-357) (-357))) (-15 -1572 ((-1 (-357)) (-357) (-357))) (-15 -1315 ((-1 (-357)) (-357))) (-15 -3732 ((-1 (-357)) (-712))) (-15 -1617 ((-1 (-357)) (-712) (-712))) (-15 -3576 ((-1 (-357)) (-712) (-712))) (-15 -2447 ((-1 (-357)) (-712))))
+((-1348 (((-396 |#1|) |#1|) 33)))
+(((-969 |#1|) (-10 -7 (-15 -1348 ((-396 |#1|) |#1|))) (-1147 (-385 (-885 (-525))))) (T -969))
+((-1348 (*1 *2 *3) (-12 (-5 *2 (-396 *3)) (-5 *1 (-969 *3)) (-4 *3 (-1147 (-385 (-885 (-525))))))))
+(-10 -7 (-15 -1348 ((-396 |#1|) |#1|)))
+((-4186 (((-385 (-396 (-885 |#1|))) (-385 (-885 |#1|))) 14)))
+(((-970 |#1|) (-10 -7 (-15 -4186 ((-385 (-396 (-885 |#1|))) (-385 (-885 |#1|))))) (-286)) (T -970))
+((-4186 (*1 *2 *3) (-12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-286)) (-5 *2 (-385 (-396 (-885 *4)))) (-5 *1 (-970 *4)))))
+(-10 -7 (-15 -4186 ((-385 (-396 (-885 |#1|))) (-385 (-885 |#1|)))))
+((-1507 (((-591 (-1089)) (-385 (-885 |#1|))) 17)) (-1312 (((-385 (-1085 (-385 (-885 |#1|)))) (-385 (-885 |#1|)) (-1089)) 24)) (-1493 (((-385 (-885 |#1|)) (-385 (-1085 (-385 (-885 |#1|)))) (-1089)) 26)) (-2254 (((-3 (-1089) "failed") (-385 (-885 |#1|))) 20)) (-4132 (((-385 (-885 |#1|)) (-385 (-885 |#1|)) (-591 (-273 (-385 (-885 |#1|))))) 32) (((-385 (-885 |#1|)) (-385 (-885 |#1|)) (-273 (-385 (-885 |#1|)))) 33) (((-385 (-885 |#1|)) (-385 (-885 |#1|)) (-591 (-1089)) (-591 (-385 (-885 |#1|)))) 28) (((-385 (-885 |#1|)) (-385 (-885 |#1|)) (-1089) (-385 (-885 |#1|))) 29)) (-3022 (((-385 (-885 |#1|)) |#1|) 11)))
+(((-971 |#1|) (-10 -7 (-15 -1507 ((-591 (-1089)) (-385 (-885 |#1|)))) (-15 -2254 ((-3 (-1089) "failed") (-385 (-885 |#1|)))) (-15 -1312 ((-385 (-1085 (-385 (-885 |#1|)))) (-385 (-885 |#1|)) (-1089))) (-15 -1493 ((-385 (-885 |#1|)) (-385 (-1085 (-385 (-885 |#1|)))) (-1089))) (-15 -4132 ((-385 (-885 |#1|)) (-385 (-885 |#1|)) (-1089) (-385 (-885 |#1|)))) (-15 -4132 ((-385 (-885 |#1|)) (-385 (-885 |#1|)) (-591 (-1089)) (-591 (-385 (-885 |#1|))))) (-15 -4132 ((-385 (-885 |#1|)) (-385 (-885 |#1|)) (-273 (-385 (-885 |#1|))))) (-15 -4132 ((-385 (-885 |#1|)) (-385 (-885 |#1|)) (-591 (-273 (-385 (-885 |#1|)))))) (-15 -3022 ((-385 (-885 |#1|)) |#1|))) (-517)) (T -971))
+((-3022 (*1 *2 *3) (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-971 *3)) (-4 *3 (-517)))) (-4132 (*1 *2 *2 *3) (-12 (-5 *3 (-591 (-273 (-385 (-885 *4))))) (-5 *2 (-385 (-885 *4))) (-4 *4 (-517)) (-5 *1 (-971 *4)))) (-4132 (*1 *2 *2 *3) (-12 (-5 *3 (-273 (-385 (-885 *4)))) (-5 *2 (-385 (-885 *4))) (-4 *4 (-517)) (-5 *1 (-971 *4)))) (-4132 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-591 (-1089))) (-5 *4 (-591 (-385 (-885 *5)))) (-5 *2 (-385 (-885 *5))) (-4 *5 (-517)) (-5 *1 (-971 *5)))) (-4132 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-385 (-885 *4))) (-5 *3 (-1089)) (-4 *4 (-517)) (-5 *1 (-971 *4)))) (-1493 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-1085 (-385 (-885 *5))))) (-5 *4 (-1089)) (-5 *2 (-385 (-885 *5))) (-5 *1 (-971 *5)) (-4 *5 (-517)))) (-1312 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-4 *5 (-517)) (-5 *2 (-385 (-1085 (-385 (-885 *5))))) (-5 *1 (-971 *5)) (-5 *3 (-385 (-885 *5))))) (-2254 (*1 *2 *3) (|partial| -12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-517)) (-5 *2 (-1089)) (-5 *1 (-971 *4)))) (-1507 (*1 *2 *3) (-12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-517)) (-5 *2 (-591 (-1089))) (-5 *1 (-971 *4)))))
+(-10 -7 (-15 -1507 ((-591 (-1089)) (-385 (-885 |#1|)))) (-15 -2254 ((-3 (-1089) "failed") (-385 (-885 |#1|)))) (-15 -1312 ((-385 (-1085 (-385 (-885 |#1|)))) (-385 (-885 |#1|)) (-1089))) (-15 -1493 ((-385 (-885 |#1|)) (-385 (-1085 (-385 (-885 |#1|)))) (-1089))) (-15 -4132 ((-385 (-885 |#1|)) (-385 (-885 |#1|)) (-1089) (-385 (-885 |#1|)))) (-15 -4132 ((-385 (-885 |#1|)) (-385 (-885 |#1|)) (-591 (-1089)) (-591 (-385 (-885 |#1|))))) (-15 -4132 ((-385 (-885 |#1|)) (-385 (-885 |#1|)) (-273 (-385 (-885 |#1|))))) (-15 -4132 ((-385 (-885 |#1|)) (-385 (-885 |#1|)) (-591 (-273 (-385 (-885 |#1|)))))) (-15 -3022 ((-385 (-885 |#1|)) |#1|)))
+((-3008 (((-108) $ $) NIL)) (-3817 (((-591 (-2 (|:| -3529 $) (|:| -1976 (-591 (-721 |#1| (-798 |#2|)))))) (-591 (-721 |#1| (-798 |#2|)))) NIL)) (-2113 (((-591 $) (-591 (-721 |#1| (-798 |#2|)))) NIL) (((-591 $) (-591 (-721 |#1| (-798 |#2|))) (-108)) NIL) (((-591 $) (-591 (-721 |#1| (-798 |#2|))) (-108) (-108)) NIL)) (-1507 (((-591 (-798 |#2|)) $) NIL)) (-1430 (((-108) $) NIL)) (-3490 (((-108) $) NIL (|has| |#1| (-517)))) (-3130 (((-108) (-721 |#1| (-798 |#2|)) $) NIL) (((-108) $) NIL)) (-1568 (((-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)) $) NIL)) (-1291 (((-591 (-2 (|:| |val| (-721 |#1| (-798 |#2|))) (|:| -3374 $))) (-721 |#1| (-798 |#2|)) $) NIL)) (-3327 (((-2 (|:| |under| $) (|:| -2662 $) (|:| |upper| $)) $ (-798 |#2|)) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-2305 (($ (-1 (-108) (-721 |#1| (-798 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-3 (-721 |#1| (-798 |#2|)) "failed") $ (-798 |#2|)) NIL)) (-3798 (($) NIL T CONST)) (-3382 (((-108) $) NIL (|has| |#1| (-517)))) (-2438 (((-108) $ $) NIL (|has| |#1| (-517)))) (-2055 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1964 (((-108) $) NIL (|has| |#1| (-517)))) (-2656 (((-591 (-721 |#1| (-798 |#2|))) (-591 (-721 |#1| (-798 |#2|))) $ (-1 (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|))) (-1 (-108) (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)))) NIL)) (-3853 (((-591 (-721 |#1| (-798 |#2|))) (-591 (-721 |#1| (-798 |#2|))) $) NIL (|has| |#1| (-517)))) (-1921 (((-591 (-721 |#1| (-798 |#2|))) (-591 (-721 |#1| (-798 |#2|))) $) NIL (|has| |#1| (-517)))) (-1251 (((-3 $ "failed") (-591 (-721 |#1| (-798 |#2|)))) NIL)) (-3528 (($ (-591 (-721 |#1| (-798 |#2|)))) NIL)) (-3078 (((-3 $ "failed") $) NIL)) (-2736 (((-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)) $) NIL)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-721 |#1| (-798 |#2|)) (-1018))))) (-3677 (($ (-721 |#1| (-798 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-721 |#1| (-798 |#2|)) (-1018)))) (($ (-1 (-108) (-721 |#1| (-798 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-3407 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-721 |#1| (-798 |#2|))) (|:| |den| |#1|)) (-721 |#1| (-798 |#2|)) $) NIL (|has| |#1| (-517)))) (-3135 (((-108) (-721 |#1| (-798 |#2|)) $ (-1 (-108) (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)))) NIL)) (-2933 (((-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)) $) NIL)) (-1227 (((-721 |#1| (-798 |#2|)) (-1 (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|))) $ (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|))) NIL (-12 (|has| $ (-6 -4250)) (|has| (-721 |#1| (-798 |#2|)) (-1018)))) (((-721 |#1| (-798 |#2|)) (-1 (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|))) $ (-721 |#1| (-798 |#2|))) NIL (|has| $ (-6 -4250))) (((-721 |#1| (-798 |#2|)) (-1 (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)) $ (-1 (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|))) (-1 (-108) (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)))) NIL)) (-2719 (((-2 (|:| -3529 (-591 (-721 |#1| (-798 |#2|)))) (|:| -1976 (-591 (-721 |#1| (-798 |#2|))))) $) NIL)) (-1949 (((-108) (-721 |#1| (-798 |#2|)) $) NIL)) (-3485 (((-108) (-721 |#1| (-798 |#2|)) $) NIL)) (-1732 (((-108) (-721 |#1| (-798 |#2|)) $) NIL) (((-108) $) NIL)) (-3454 (((-591 (-721 |#1| (-798 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-1809 (((-108) (-721 |#1| (-798 |#2|)) $) NIL) (((-108) $) NIL)) (-2009 (((-798 |#2|) $) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 (-721 |#1| (-798 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-721 |#1| (-798 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-721 |#1| (-798 |#2|)) (-1018))))) (-3249 (($ (-1 (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|))) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|))) $) NIL)) (-3993 (((-591 (-798 |#2|)) $) NIL)) (-4174 (((-108) (-798 |#2|) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-2711 (((-3 (-721 |#1| (-798 |#2|)) (-591 $)) (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)) $) NIL)) (-2627 (((-591 (-2 (|:| |val| (-721 |#1| (-798 |#2|))) (|:| -3374 $))) (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)) $) NIL)) (-3708 (((-3 (-721 |#1| (-798 |#2|)) "failed") $) NIL)) (-1933 (((-591 $) (-721 |#1| (-798 |#2|)) $) NIL)) (-1372 (((-3 (-108) (-591 $)) (-721 |#1| (-798 |#2|)) $) NIL)) (-1406 (((-591 (-2 (|:| |val| (-108)) (|:| -3374 $))) (-721 |#1| (-798 |#2|)) $) NIL) (((-108) (-721 |#1| (-798 |#2|)) $) NIL)) (-3516 (((-591 $) (-721 |#1| (-798 |#2|)) $) NIL) (((-591 $) (-591 (-721 |#1| (-798 |#2|))) $) NIL) (((-591 $) (-591 (-721 |#1| (-798 |#2|))) (-591 $)) NIL) (((-591 $) (-721 |#1| (-798 |#2|)) (-591 $)) NIL)) (-2689 (($ (-721 |#1| (-798 |#2|)) $) NIL) (($ (-591 (-721 |#1| (-798 |#2|))) $) NIL)) (-3280 (((-591 (-721 |#1| (-798 |#2|))) $) NIL)) (-3196 (((-108) (-721 |#1| (-798 |#2|)) $) NIL) (((-108) $) NIL)) (-4066 (((-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)) $) NIL)) (-2154 (((-108) $ $) NIL)) (-2934 (((-2 (|:| |num| (-721 |#1| (-798 |#2|))) (|:| |den| |#1|)) (-721 |#1| (-798 |#2|)) $) NIL (|has| |#1| (-517)))) (-2115 (((-108) (-721 |#1| (-798 |#2|)) $) NIL) (((-108) $) NIL)) (-2731 (((-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)) $) NIL)) (-2047 (((-1036) $) NIL)) (-3066 (((-3 (-721 |#1| (-798 |#2|)) "failed") $) NIL)) (-2069 (((-3 (-721 |#1| (-798 |#2|)) "failed") (-1 (-108) (-721 |#1| (-798 |#2|))) $) NIL)) (-1554 (((-3 $ "failed") $ (-721 |#1| (-798 |#2|))) NIL)) (-2784 (($ $ (-721 |#1| (-798 |#2|))) NIL) (((-591 $) (-721 |#1| (-798 |#2|)) $) NIL) (((-591 $) (-721 |#1| (-798 |#2|)) (-591 $)) NIL) (((-591 $) (-591 (-721 |#1| (-798 |#2|))) $) NIL) (((-591 $) (-591 (-721 |#1| (-798 |#2|))) (-591 $)) NIL)) (-1623 (((-108) (-1 (-108) (-721 |#1| (-798 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-721 |#1| (-798 |#2|))) (-591 (-721 |#1| (-798 |#2|)))) NIL (-12 (|has| (-721 |#1| (-798 |#2|)) (-288 (-721 |#1| (-798 |#2|)))) (|has| (-721 |#1| (-798 |#2|)) (-1018)))) (($ $ (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|))) NIL (-12 (|has| (-721 |#1| (-798 |#2|)) (-288 (-721 |#1| (-798 |#2|)))) (|has| (-721 |#1| (-798 |#2|)) (-1018)))) (($ $ (-273 (-721 |#1| (-798 |#2|)))) NIL (-12 (|has| (-721 |#1| (-798 |#2|)) (-288 (-721 |#1| (-798 |#2|)))) (|has| (-721 |#1| (-798 |#2|)) (-1018)))) (($ $ (-591 (-273 (-721 |#1| (-798 |#2|))))) NIL (-12 (|has| (-721 |#1| (-798 |#2|)) (-288 (-721 |#1| (-798 |#2|)))) (|has| (-721 |#1| (-798 |#2|)) (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-1316 (((-712) $) NIL)) (-2064 (((-712) (-721 |#1| (-798 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-721 |#1| (-798 |#2|)) (-1018)))) (((-712) (-1 (-108) (-721 |#1| (-798 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-721 |#1| (-798 |#2|)) (-566 (-501))))) (-3036 (($ (-591 (-721 |#1| (-798 |#2|)))) NIL)) (-3134 (($ $ (-798 |#2|)) NIL)) (-3443 (($ $ (-798 |#2|)) NIL)) (-2487 (($ $) NIL)) (-3010 (($ $ (-798 |#2|)) NIL)) (-3022 (((-796) $) NIL) (((-591 (-721 |#1| (-798 |#2|))) $) NIL)) (-3223 (((-712) $) NIL (|has| (-798 |#2|) (-346)))) (-2122 (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 (-721 |#1| (-798 |#2|))))) "failed") (-591 (-721 |#1| (-798 |#2|))) (-1 (-108) (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)))) NIL) (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 (-721 |#1| (-798 |#2|))))) "failed") (-591 (-721 |#1| (-798 |#2|))) (-1 (-108) (-721 |#1| (-798 |#2|))) (-1 (-108) (-721 |#1| (-798 |#2|)) (-721 |#1| (-798 |#2|)))) NIL)) (-2165 (((-108) $ (-1 (-108) (-721 |#1| (-798 |#2|)) (-591 (-721 |#1| (-798 |#2|))))) NIL)) (-2533 (((-591 $) (-721 |#1| (-798 |#2|)) $) NIL) (((-591 $) (-721 |#1| (-798 |#2|)) (-591 $)) NIL) (((-591 $) (-591 (-721 |#1| (-798 |#2|))) $) NIL) (((-591 $) (-591 (-721 |#1| (-798 |#2|))) (-591 $)) NIL)) (-4158 (((-108) (-1 (-108) (-721 |#1| (-798 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-3872 (((-591 (-798 |#2|)) $) NIL)) (-1564 (((-108) (-721 |#1| (-798 |#2|)) $) NIL)) (-1884 (((-108) (-798 |#2|) $) NIL)) (-4096 (((-108) $ $) NIL)) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-972 |#1| |#2|) (-13 (-994 |#1| (-497 (-798 |#2|)) (-798 |#2|) (-721 |#1| (-798 |#2|))) (-10 -8 (-15 -2113 ((-591 $) (-591 (-721 |#1| (-798 |#2|))) (-108) (-108))))) (-429) (-591 (-1089))) (T -972))
+((-2113 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-591 (-721 *5 (-798 *6)))) (-5 *4 (-108)) (-4 *5 (-429)) (-14 *6 (-591 (-1089))) (-5 *2 (-591 (-972 *5 *6))) (-5 *1 (-972 *5 *6)))))
+(-13 (-994 |#1| (-497 (-798 |#2|)) (-798 |#2|) (-721 |#1| (-798 |#2|))) (-10 -8 (-15 -2113 ((-591 $) (-591 (-721 |#1| (-798 |#2|))) (-108) (-108)))))
+((-2880 (((-1 (-525)) (-1013 (-525))) 33)) (-2223 (((-525) (-525) (-525) (-525) (-525)) 30)) (-1902 (((-1 (-525)) |RationalNumber|) NIL)) (-3260 (((-1 (-525)) |RationalNumber|) NIL)) (-2516 (((-1 (-525)) (-525) |RationalNumber|) NIL)))
+(((-973) (-10 -7 (-15 -2880 ((-1 (-525)) (-1013 (-525)))) (-15 -2516 ((-1 (-525)) (-525) |RationalNumber|)) (-15 -1902 ((-1 (-525)) |RationalNumber|)) (-15 -3260 ((-1 (-525)) |RationalNumber|)) (-15 -2223 ((-525) (-525) (-525) (-525) (-525))))) (T -973))
+((-2223 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-973)))) (-3260 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-525))) (-5 *1 (-973)))) (-1902 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-525))) (-5 *1 (-973)))) (-2516 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-525))) (-5 *1 (-973)) (-5 *3 (-525)))) (-2880 (*1 *2 *3) (-12 (-5 *3 (-1013 (-525))) (-5 *2 (-1 (-525))) (-5 *1 (-973)))))
+(-10 -7 (-15 -2880 ((-1 (-525)) (-1013 (-525)))) (-15 -2516 ((-1 (-525)) (-525) |RationalNumber|)) (-15 -1902 ((-1 (-525)) |RationalNumber|)) (-15 -3260 ((-1 (-525)) |RationalNumber|)) (-15 -2223 ((-525) (-525) (-525) (-525) (-525))))
+((-3022 (((-796) $) NIL) (($ (-525)) 10)))
+(((-974 |#1|) (-10 -8 (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|))) (-975)) (T -974))
+NIL
+(-10 -8 (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11) (($ (-525)) 28)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-975) (-131)) (T -975))
+((-2128 (*1 *2) (-12 (-4 *1 (-975)) (-5 *2 (-712)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-975)))))
+(-13 (-982) (-668) (-593 $) (-10 -8 (-15 -2128 ((-712))) (-15 -3022 ($ (-525))) (-6 -4247)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 $) . T) ((-668) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-2203 (((-385 (-885 |#2|)) (-591 |#2|) (-591 |#2|) (-712) (-712)) 45)))
+(((-976 |#1| |#2|) (-10 -7 (-15 -2203 ((-385 (-885 |#2|)) (-591 |#2|) (-591 |#2|) (-712) (-712)))) (-1089) (-341)) (T -976))
+((-2203 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-591 *6)) (-5 *4 (-712)) (-4 *6 (-341)) (-5 *2 (-385 (-885 *6))) (-5 *1 (-976 *5 *6)) (-14 *5 (-1089)))))
+(-10 -7 (-15 -2203 ((-385 (-885 |#2|)) (-591 |#2|) (-591 |#2|) (-712) (-712))))
+((-1290 (((-108) $) 29)) (-3079 (((-108) $) 16)) (-2281 (((-712) $) 13)) (-2296 (((-712) $) 14)) (-2740 (((-108) $) 26)) (-3489 (((-108) $) 31)))
+(((-977 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -2296 ((-712) |#1|)) (-15 -2281 ((-712) |#1|)) (-15 -3489 ((-108) |#1|)) (-15 -1290 ((-108) |#1|)) (-15 -2740 ((-108) |#1|)) (-15 -3079 ((-108) |#1|))) (-978 |#2| |#3| |#4| |#5| |#6|) (-712) (-712) (-975) (-218 |#3| |#4|) (-218 |#2| |#4|)) (T -977))
+NIL
+(-10 -8 (-15 -2296 ((-712) |#1|)) (-15 -2281 ((-712) |#1|)) (-15 -3489 ((-108) |#1|)) (-15 -1290 ((-108) |#1|)) (-15 -2740 ((-108) |#1|)) (-15 -3079 ((-108) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1290 (((-108) $) 51)) (-2157 (((-3 $ "failed") $ $) 19)) (-3079 (((-108) $) 53)) (-3891 (((-108) $ (-712)) 61)) (-3798 (($) 17 T CONST)) (-2753 (($ $) 34 (|has| |#3| (-286)))) (-3725 ((|#4| $ (-525)) 39)) (-4073 (((-712) $) 33 (|has| |#3| (-517)))) (-3217 ((|#3| $ (-525) (-525)) 41)) (-3454 (((-591 |#3|) $) 68 (|has| $ (-6 -4250)))) (-2482 (((-712) $) 32 (|has| |#3| (-517)))) (-2634 (((-591 |#5|) $) 31 (|has| |#3| (-517)))) (-2281 (((-712) $) 45)) (-2296 (((-712) $) 44)) (-2910 (((-108) $ (-712)) 60)) (-1755 (((-525) $) 49)) (-1639 (((-525) $) 47)) (-2552 (((-591 |#3|) $) 69 (|has| $ (-6 -4250)))) (-2141 (((-108) |#3| $) 71 (-12 (|has| |#3| (-1018)) (|has| $ (-6 -4250))))) (-4230 (((-525) $) 48)) (-2631 (((-525) $) 46)) (-3393 (($ (-591 (-591 |#3|))) 54)) (-3249 (($ (-1 |#3| |#3|) $) 64 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#3| |#3|) $) 63) (($ (-1 |#3| |#3| |#3|) $ $) 37)) (-3349 (((-591 (-591 |#3|)) $) 43)) (-3971 (((-108) $ (-712)) 59)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2089 (((-3 $ "failed") $ |#3|) 36 (|has| |#3| (-517)))) (-1623 (((-108) (-1 (-108) |#3|) $) 66 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 |#3|) (-591 |#3|)) 75 (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018)))) (($ $ |#3| |#3|) 74 (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018)))) (($ $ (-273 |#3|)) 73 (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018)))) (($ $ (-591 (-273 |#3|))) 72 (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018))))) (-3493 (((-108) $ $) 55)) (-3028 (((-108) $) 58)) (-3209 (($) 57)) (-3164 ((|#3| $ (-525) (-525)) 42) ((|#3| $ (-525) (-525) |#3|) 40)) (-2740 (((-108) $) 52)) (-2064 (((-712) |#3| $) 70 (-12 (|has| |#3| (-1018)) (|has| $ (-6 -4250)))) (((-712) (-1 (-108) |#3|) $) 67 (|has| $ (-6 -4250)))) (-3199 (($ $) 56)) (-1793 ((|#5| $ (-525)) 38)) (-3022 (((-796) $) 11)) (-4158 (((-108) (-1 (-108) |#3|) $) 65 (|has| $ (-6 -4250)))) (-3489 (((-108) $) 50)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4173 (($ $ |#3|) 35 (|has| |#3| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ |#3| $) 23) (($ $ |#3|) 26)) (-4045 (((-712) $) 62 (|has| $ (-6 -4250)))))
+(((-978 |#1| |#2| |#3| |#4| |#5|) (-131) (-712) (-712) (-975) (-218 |t#2| |t#3|) (-218 |t#1| |t#3|)) (T -978))
+((-1340 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)))) (-3393 (*1 *1 *2) (-12 (-5 *2 (-591 (-591 *5))) (-4 *5 (-975)) (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)))) (-3079 (*1 *2 *1) (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-108)))) (-2740 (*1 *2 *1) (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-108)))) (-1290 (*1 *2 *1) (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-108)))) (-3489 (*1 *2 *1) (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-108)))) (-1755 (*1 *2 *1) (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-525)))) (-4230 (*1 *2 *1) (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-525)))) (-1639 (*1 *2 *1) (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-525)))) (-2631 (*1 *2 *1) (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-525)))) (-2281 (*1 *2 *1) (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-712)))) (-2296 (*1 *2 *1) (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-712)))) (-3349 (*1 *2 *1) (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-591 (-591 *5))))) (-3164 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-525)) (-4 *1 (-978 *4 *5 *2 *6 *7)) (-4 *6 (-218 *5 *2)) (-4 *7 (-218 *4 *2)) (-4 *2 (-975)))) (-3217 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-525)) (-4 *1 (-978 *4 *5 *2 *6 *7)) (-4 *6 (-218 *5 *2)) (-4 *7 (-218 *4 *2)) (-4 *2 (-975)))) (-3164 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-525)) (-4 *1 (-978 *4 *5 *2 *6 *7)) (-4 *2 (-975)) (-4 *6 (-218 *5 *2)) (-4 *7 (-218 *4 *2)))) (-3725 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-4 *1 (-978 *4 *5 *6 *2 *7)) (-4 *6 (-975)) (-4 *7 (-218 *4 *6)) (-4 *2 (-218 *5 *6)))) (-1793 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-4 *1 (-978 *4 *5 *6 *7 *2)) (-4 *6 (-975)) (-4 *7 (-218 *5 *6)) (-4 *2 (-218 *4 *6)))) (-1340 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)))) (-2089 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-978 *3 *4 *2 *5 *6)) (-4 *2 (-975)) (-4 *5 (-218 *4 *2)) (-4 *6 (-218 *3 *2)) (-4 *2 (-517)))) (-4173 (*1 *1 *1 *2) (-12 (-4 *1 (-978 *3 *4 *2 *5 *6)) (-4 *2 (-975)) (-4 *5 (-218 *4 *2)) (-4 *6 (-218 *3 *2)) (-4 *2 (-341)))) (-2753 (*1 *1 *1) (-12 (-4 *1 (-978 *2 *3 *4 *5 *6)) (-4 *4 (-975)) (-4 *5 (-218 *3 *4)) (-4 *6 (-218 *2 *4)) (-4 *4 (-286)))) (-4073 (*1 *2 *1) (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-4 *5 (-517)) (-5 *2 (-712)))) (-2482 (*1 *2 *1) (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-4 *5 (-517)) (-5 *2 (-712)))) (-2634 (*1 *2 *1) (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-4 *5 (-517)) (-5 *2 (-591 *7)))))
+(-13 (-107 |t#3| |t#3|) (-464 |t#3|) (-10 -8 (-6 -4250) (IF (|has| |t#3| (-160)) (-6 (-659 |t#3|)) |%noBranch|) (-15 -3393 ($ (-591 (-591 |t#3|)))) (-15 -3079 ((-108) $)) (-15 -2740 ((-108) $)) (-15 -1290 ((-108) $)) (-15 -3489 ((-108) $)) (-15 -1755 ((-525) $)) (-15 -4230 ((-525) $)) (-15 -1639 ((-525) $)) (-15 -2631 ((-525) $)) (-15 -2281 ((-712) $)) (-15 -2296 ((-712) $)) (-15 -3349 ((-591 (-591 |t#3|)) $)) (-15 -3164 (|t#3| $ (-525) (-525))) (-15 -3217 (|t#3| $ (-525) (-525))) (-15 -3164 (|t#3| $ (-525) (-525) |t#3|)) (-15 -3725 (|t#4| $ (-525))) (-15 -1793 (|t#5| $ (-525))) (-15 -1340 ($ (-1 |t#3| |t#3|) $)) (-15 -1340 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-517)) (-15 -2089 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-341)) (-15 -4173 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-286)) (-15 -2753 ($ $)) |%noBranch|) (IF (|has| |t#3| (-517)) (PROGN (-15 -4073 ((-712) $)) (-15 -2482 ((-712) $)) (-15 -2634 ((-591 |t#5|) $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-33) . T) ((-97) . T) ((-107 |#3| |#3|) . T) ((-126) . T) ((-565 (-796)) . T) ((-288 |#3|) -12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018))) ((-464 |#3|) . T) ((-486 |#3| |#3|) -12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018))) ((-593 |#3|) . T) ((-659 |#3|) |has| |#3| (-160)) ((-981 |#3|) . T) ((-1018) . T) ((-1125) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1290 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3079 (((-108) $) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-3798 (($) NIL T CONST)) (-2753 (($ $) 43 (|has| |#3| (-286)))) (-3725 (((-220 |#2| |#3|) $ (-525)) 32)) (-1951 (($ (-631 |#3|)) 41)) (-4073 (((-712) $) 45 (|has| |#3| (-517)))) (-3217 ((|#3| $ (-525) (-525)) NIL)) (-3454 (((-591 |#3|) $) NIL (|has| $ (-6 -4250)))) (-2482 (((-712) $) 47 (|has| |#3| (-517)))) (-2634 (((-591 (-220 |#1| |#3|)) $) 51 (|has| |#3| (-517)))) (-2281 (((-712) $) NIL)) (-2296 (((-712) $) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-1755 (((-525) $) NIL)) (-1639 (((-525) $) NIL)) (-2552 (((-591 |#3|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#3| (-1018))))) (-4230 (((-525) $) NIL)) (-2631 (((-525) $) NIL)) (-3393 (($ (-591 (-591 |#3|))) 27)) (-3249 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-3349 (((-591 (-591 |#3|)) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2089 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-517)))) (-1623 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 |#3|) (-591 |#3|)) NIL (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018)))) (($ $ (-273 |#3|)) NIL (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018)))) (($ $ (-591 (-273 |#3|))) NIL (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#3| $ (-525) (-525)) NIL) ((|#3| $ (-525) (-525) |#3|) NIL)) (-4224 (((-128)) 54 (|has| |#3| (-341)))) (-2740 (((-108) $) NIL)) (-2064 (((-712) |#3| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#3| (-1018)))) (((-712) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) 63 (|has| |#3| (-566 (-501))))) (-1793 (((-220 |#1| |#3|) $ (-525)) 36)) (-3022 (((-796) $) 16) (((-631 |#3|) $) 38)) (-4158 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4250)))) (-3489 (((-108) $) NIL)) (-4191 (($) 13 T CONST)) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ |#3|) NIL (|has| |#3| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-979 |#1| |#2| |#3|) (-13 (-978 |#1| |#2| |#3| (-220 |#2| |#3|) (-220 |#1| |#3|)) (-565 (-631 |#3|)) (-10 -8 (IF (|has| |#3| (-341)) (-6 (-1178 |#3|)) |%noBranch|) (IF (|has| |#3| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|) (-15 -1951 ($ (-631 |#3|))) (-15 -3022 ((-631 |#3|) $)))) (-712) (-712) (-975)) (T -979))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-631 *5)) (-5 *1 (-979 *3 *4 *5)) (-14 *3 (-712)) (-14 *4 (-712)) (-4 *5 (-975)))) (-1951 (*1 *1 *2) (-12 (-5 *2 (-631 *5)) (-4 *5 (-975)) (-5 *1 (-979 *3 *4 *5)) (-14 *3 (-712)) (-14 *4 (-712)))))
+(-13 (-978 |#1| |#2| |#3| (-220 |#2| |#3|) (-220 |#1| |#3|)) (-565 (-631 |#3|)) (-10 -8 (IF (|has| |#3| (-341)) (-6 (-1178 |#3|)) |%noBranch|) (IF (|has| |#3| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|) (-15 -1951 ($ (-631 |#3|))) (-15 -3022 ((-631 |#3|) $))))
+((-1227 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 34)) (-1340 ((|#10| (-1 |#7| |#3|) |#6|) 32)))
+(((-980 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -1340 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -1227 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|))) (-712) (-712) (-975) (-218 |#2| |#3|) (-218 |#1| |#3|) (-978 |#1| |#2| |#3| |#4| |#5|) (-975) (-218 |#2| |#7|) (-218 |#1| |#7|) (-978 |#1| |#2| |#7| |#8| |#9|)) (T -980))
+((-1227 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-975)) (-4 *2 (-975)) (-14 *5 (-712)) (-14 *6 (-712)) (-4 *8 (-218 *6 *7)) (-4 *9 (-218 *5 *7)) (-4 *10 (-218 *6 *2)) (-4 *11 (-218 *5 *2)) (-5 *1 (-980 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12)) (-4 *4 (-978 *5 *6 *7 *8 *9)) (-4 *12 (-978 *5 *6 *2 *10 *11)))) (-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-975)) (-4 *10 (-975)) (-14 *5 (-712)) (-14 *6 (-712)) (-4 *8 (-218 *6 *7)) (-4 *9 (-218 *5 *7)) (-4 *2 (-978 *5 *6 *10 *11 *12)) (-5 *1 (-980 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2)) (-4 *4 (-978 *5 *6 *7 *8 *9)) (-4 *11 (-218 *6 *10)) (-4 *12 (-218 *5 *10)))))
+(-10 -7 (-15 -1340 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -1227 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ |#1|) 23)))
+(((-981 |#1|) (-131) (-982)) (T -981))
+((* (*1 *1 *1 *2) (-12 (-4 *1 (-981 *2)) (-4 *2 (-982)))))
(-13 (-21) (-10 -8 (-15 * ($ $ |t#1|))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-2573 (($ $ (-852)) 26)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-980) (-129)) (T -980))
-NIL
-(-13 (-21) (-1028))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-563 (-794)) . T) ((-1028) . T) ((-1016) . T))
-((-1756 (($ $) 16)) (-3710 (($ $) 22)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 49)) (-2765 (($ $) 24)) (-3934 (($ $) 11)) (-1250 (($ $) 38)) (-3077 (((-355) $) NIL) (((-203) $) NIL) (((-823 (-355)) $) 33)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL) (($ (-383 (-523))) 28) (($ (-523)) NIL) (($ (-383 (-523))) 28)) (-1698 (((-710)) 8)) (-1516 (($ $) 39)))
-(((-981 |#1|) (-10 -8 (-15 -3710 (|#1| |#1|)) (-15 -1756 (|#1| |#1|)) (-15 -3934 (|#1| |#1|)) (-15 -1250 (|#1| |#1|)) (-15 -1516 (|#1| |#1|)) (-15 -2765 (|#1| |#1|)) (-15 -2483 ((-820 (-355) |#1|) |#1| (-823 (-355)) (-820 (-355) |#1|))) (-15 -3077 ((-823 (-355)) |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -3976 (|#1| (-523))) (-15 -3077 ((-203) |#1|)) (-15 -3077 ((-355) |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -3976 (|#1| |#1|)) (-15 -3976 (|#1| (-523))) (-15 -1698 ((-710))) (-15 -3976 ((-794) |#1|))) (-982)) (T -981))
-((-1698 (*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-981 *3)) (-4 *3 (-982)))))
-(-10 -8 (-15 -3710 (|#1| |#1|)) (-15 -1756 (|#1| |#1|)) (-15 -3934 (|#1| |#1|)) (-15 -1250 (|#1| |#1|)) (-15 -1516 (|#1| |#1|)) (-15 -2765 (|#1| |#1|)) (-15 -2483 ((-820 (-355) |#1|) |#1| (-823 (-355)) (-820 (-355) |#1|))) (-15 -3077 ((-823 (-355)) |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -3976 (|#1| (-523))) (-15 -3077 ((-203) |#1|)) (-15 -3077 ((-355) |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -3976 (|#1| |#1|)) (-15 -3976 (|#1| (-523))) (-15 -1698 ((-710))) (-15 -3976 ((-794) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3964 (((-523) $) 89)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-1756 (($ $) 87)) (-2999 (((-3 $ "failed") $ $) 19)) (-3763 (($ $) 73)) (-2105 (((-394 $) $) 72)) (-3584 (($ $) 97)) (-3684 (((-108) $ $) 59)) (-2035 (((-523) $) 114)) (-1640 (($) 17 T CONST)) (-3710 (($ $) 86)) (-2898 (((-3 (-523) "failed") $) 102) (((-3 (-383 (-523)) "failed") $) 99)) (-1996 (((-523) $) 101) (((-383 (-523)) $) 98)) (-2501 (($ $ $) 55)) (-4211 (((-3 $ "failed") $) 34)) (-2486 (($ $ $) 56)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 51)) (-1330 (((-108) $) 71)) (-3702 (((-108) $) 112)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 93)) (-3482 (((-108) $) 31)) (-1324 (($ $ (-523)) 96)) (-2765 (($ $) 92)) (-4050 (((-108) $) 113)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 52)) (-3268 (($ $ $) 111)) (-2644 (($ $ $) 110)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-3071 (($ $) 70)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-3934 (($ $) 88)) (-1250 (($ $) 90)) (-3573 (((-394 $) $) 74)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2469 (((-3 $ "failed") $ $) 42)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 50)) (-3087 (((-710) $) 58)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 57)) (-3077 (((-355) $) 105) (((-203) $) 104) (((-823 (-355)) $) 94)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43) (($ (-383 (-523))) 65) (($ (-523)) 103) (($ (-383 (-523))) 100)) (-1698 (((-710)) 29)) (-1516 (($ $) 91)) (-3842 (((-108) $ $) 39)) (-3984 (($ $) 115)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 69)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4078 (((-108) $ $) 108)) (-4061 (((-108) $ $) 107)) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 109)) (-4052 (((-108) $ $) 106)) (-4125 (($ $ $) 64)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 68) (($ $ (-383 (-523))) 95)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 (-523))) 67) (($ (-383 (-523)) $) 66)))
-(((-982) (-129)) (T -982))
-((-3984 (*1 *1 *1) (-4 *1 (-982))) (-2765 (*1 *1 *1) (-4 *1 (-982))) (-1516 (*1 *1 *1) (-4 *1 (-982))) (-1250 (*1 *1 *1) (-4 *1 (-982))) (-3964 (*1 *2 *1) (-12 (-4 *1 (-982)) (-5 *2 (-523)))) (-3934 (*1 *1 *1) (-4 *1 (-982))) (-1756 (*1 *1 *1) (-4 *1 (-982))) (-3710 (*1 *1 *1) (-4 *1 (-982))))
-(-13 (-339) (-784) (-949) (-964 (-523)) (-964 (-383 (-523))) (-930) (-564 (-823 (-355))) (-817 (-355)) (-136) (-10 -8 (-15 -2765 ($ $)) (-15 -1516 ($ $)) (-15 -1250 ($ $)) (-15 -3964 ((-523) $)) (-15 -3934 ($ $)) (-15 -1756 ($ $)) (-15 -3710 ($ $)) (-15 -3984 ($ $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-124) . T) ((-136) . T) ((-563 (-794)) . T) ((-158) . T) ((-564 (-203)) . T) ((-564 (-355)) . T) ((-564 (-823 (-355))) . T) ((-221) . T) ((-267) . T) ((-284) . T) ((-339) . T) ((-427) . T) ((-515) . T) ((-591 #0#) . T) ((-591 $) . T) ((-657 #0#) . T) ((-657 $) . T) ((-666) . T) ((-730) . T) ((-731) . T) ((-733) . T) ((-734) . T) ((-784) . T) ((-786) . T) ((-817 (-355)) . T) ((-851) . T) ((-930) . T) ((-949) . T) ((-964 (-383 (-523))) . T) ((-964 (-523)) . T) ((-979 #0#) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1127) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) |#2| $) 23)) (-3843 ((|#1| $) 10)) (-2035 (((-523) |#2| $) 89)) (-2167 (((-3 $ "failed") |#2| (-852)) 58)) (-2438 ((|#1| $) 28)) (-3938 ((|#1| |#2| $ |#1|) 37)) (-1482 (($ $) 25)) (-4211 (((-3 |#2| "failed") |#2| $) 88)) (-3702 (((-108) |#2| $) NIL)) (-4050 (((-108) |#2| $) NIL)) (-1673 (((-108) |#2| $) 24)) (-2143 ((|#1| $) 90)) (-2428 ((|#1| $) 27)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3399 ((|#2| $) 80)) (-3976 (((-794) $) 71)) (-2523 ((|#1| |#2| $ |#1|) 38)) (-4057 (((-589 $) |#2|) 60)) (-4037 (((-108) $ $) 75)))
-(((-983 |#1| |#2|) (-13 (-989 |#1| |#2|) (-10 -8 (-15 -2428 (|#1| $)) (-15 -2438 (|#1| $)) (-15 -3843 (|#1| $)) (-15 -2143 (|#1| $)) (-15 -1482 ($ $)) (-15 -1673 ((-108) |#2| $)) (-15 -3938 (|#1| |#2| $ |#1|)))) (-13 (-784) (-339)) (-1145 |#1|)) (T -983))
-((-3938 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-784) (-339))) (-5 *1 (-983 *2 *3)) (-4 *3 (-1145 *2)))) (-2428 (*1 *2 *1) (-12 (-4 *2 (-13 (-784) (-339))) (-5 *1 (-983 *2 *3)) (-4 *3 (-1145 *2)))) (-2438 (*1 *2 *1) (-12 (-4 *2 (-13 (-784) (-339))) (-5 *1 (-983 *2 *3)) (-4 *3 (-1145 *2)))) (-3843 (*1 *2 *1) (-12 (-4 *2 (-13 (-784) (-339))) (-5 *1 (-983 *2 *3)) (-4 *3 (-1145 *2)))) (-2143 (*1 *2 *1) (-12 (-4 *2 (-13 (-784) (-339))) (-5 *1 (-983 *2 *3)) (-4 *3 (-1145 *2)))) (-1482 (*1 *1 *1) (-12 (-4 *2 (-13 (-784) (-339))) (-5 *1 (-983 *2 *3)) (-4 *3 (-1145 *2)))) (-1673 (*1 *2 *3 *1) (-12 (-4 *4 (-13 (-784) (-339))) (-5 *2 (-108)) (-5 *1 (-983 *4 *3)) (-4 *3 (-1145 *4)))))
-(-13 (-989 |#1| |#2|) (-10 -8 (-15 -2428 (|#1| $)) (-15 -2438 (|#1| $)) (-15 -3843 (|#1| $)) (-15 -2143 (|#1| $)) (-15 -1482 ($ $)) (-15 -1673 ((-108) |#2| $)) (-15 -3938 (|#1| |#2| $ |#1|))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-3333 (($ $ $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1746 (($ $ $ $) NIL)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-2035 (((-523) $) NIL)) (-3565 (($ $ $) NIL)) (-1640 (($) NIL T CONST)) (-3395 (($ (-1087)) 10) (($ (-523)) 7)) (-2898 (((-3 (-523) "failed") $) NIL)) (-1996 (((-523) $) NIL)) (-2501 (($ $ $) NIL)) (-2203 (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL) (((-629 (-523)) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-4031 (((-3 (-383 (-523)) "failed") $) NIL)) (-1310 (((-108) $) NIL)) (-1600 (((-383 (-523)) $) NIL)) (-3461 (($) NIL) (($ $) NIL)) (-2486 (($ $ $) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-1872 (($ $ $ $) NIL)) (-3389 (($ $ $) NIL)) (-3702 (((-108) $) NIL)) (-4080 (($ $ $) NIL)) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL)) (-3482 (((-108) $) NIL)) (-2126 (((-108) $) NIL)) (-1289 (((-3 $ "failed") $) NIL)) (-4050 (((-108) $) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2728 (($ $ $ $) NIL)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3541 (($ $) NIL)) (-3229 (($ $) NIL)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-1694 (($ $ $) NIL)) (-4105 (($) NIL T CONST)) (-2142 (($ $) NIL)) (-2435 (((-1034) $) NIL) (($ $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) NIL) (($ (-589 $)) NIL)) (-1763 (($ $) NIL)) (-3573 (((-394 $) $) NIL)) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3775 (((-108) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-4024 (($ $ (-710)) NIL) (($ $) NIL)) (-3012 (($ $) NIL)) (-4124 (($ $) NIL)) (-3077 (((-523) $) 16) (((-499) $) NIL) (((-823 (-523)) $) NIL) (((-355) $) NIL) (((-203) $) NIL) (($ (-1087)) 9)) (-3976 (((-794) $) 20) (($ (-523)) 6) (($ $) NIL) (($ (-523)) 6)) (-1698 (((-710)) NIL)) (-3505 (((-108) $ $) NIL)) (-1475 (($ $ $) NIL)) (-3912 (($) NIL)) (-3842 (((-108) $ $) NIL)) (-3348 (($ $ $ $) NIL)) (-3984 (($ $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ (-710)) NIL) (($ $) NIL)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) NIL)) (-4115 (($ $) 19) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL)))
-(((-984) (-13 (-508) (-10 -8 (-6 -4235) (-6 -4240) (-6 -4236) (-15 -3077 ($ (-1087))) (-15 -3395 ($ (-1087))) (-15 -3395 ($ (-523)))))) (T -984))
-((-3077 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-984)))) (-3395 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-984)))) (-3395 (*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-984)))))
-(-13 (-508) (-10 -8 (-6 -4235) (-6 -4240) (-6 -4236) (-15 -3077 ($ (-1087))) (-15 -3395 ($ (-1087))) (-15 -3395 ($ (-523)))))
-((-3260 (((-108) $ $) NIL (-3255 (|has| (-51) (-1016)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016))))) (-2340 (($) NIL) (($ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) NIL)) (-1666 (((-1174) $ (-1087) (-1087)) NIL (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) NIL)) (-4118 (($) 9)) (-4101 (((-51) $ (-1087) (-51)) NIL)) (-1812 (($ $) 30)) (-3784 (($ $) 28)) (-3180 (($ $) 27)) (-1263 (($ $) 29)) (-2040 (($ $) 32)) (-3434 (($ $) 33)) (-2747 (($ $) 26)) (-1530 (($ $) 31)) (-3627 (($ (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) 25 (|has| $ (-6 -4248)))) (-2521 (((-3 (-51) "failed") (-1087) $) 40)) (-1640 (($) NIL T CONST)) (-2467 (($) 7)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016))))) (-1869 (($ (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) $) 50 (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-3 (-51) "failed") (-1087) $) NIL)) (-2231 (($ (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (($ (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248)))) (-1830 (((-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $ (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (((-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $ (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) NIL (|has| $ (-6 -4248))) (((-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248)))) (-3295 (((-3 (-1070) "failed") $ (-1070) (-523)) 59)) (-3073 (((-51) $ (-1087) (-51)) NIL (|has| $ (-6 -4249)))) (-3002 (((-51) $ (-1087)) NIL)) (-3133 (((-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-589 (-51)) $) NIL (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-1087) $) NIL (|has| (-1087) (-786)))) (-3056 (((-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) 35 (|has| $ (-6 -4248))) (((-589 (-51)) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-51) (-1016))))) (-2133 (((-1087) $) NIL (|has| (-1087) (-786)))) (-3063 (($ (-1 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4249))) (($ (-1 (-51) (-51)) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL) (($ (-1 (-51) (-51)) $) NIL) (($ (-1 (-51) (-51) (-51)) $ $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (-3255 (|has| (-51) (-1016)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016))))) (-1612 (((-589 (-1087)) $) NIL)) (-2754 (((-108) (-1087) $) NIL)) (-2349 (((-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) $) NIL)) (-3862 (($ (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) $) 43)) (-2909 (((-589 (-1087)) $) NIL)) (-2290 (((-108) (-1087) $) NIL)) (-2435 (((-1034) $) NIL (-3255 (|has| (-51) (-1016)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016))))) (-2123 (((-355) $ (-1087)) 49)) (-1945 (((-589 (-1070)) $ (-1070)) 60)) (-3879 (((-51) $) NIL (|has| (-1087) (-786)))) (-2660 (((-3 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) "failed") (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL)) (-2408 (($ $ (-51)) NIL (|has| $ (-6 -4249)))) (-1322 (((-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) $) NIL)) (-2720 (((-108) (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))))) NIL (-12 (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (($ $ (-271 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) NIL (-12 (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (($ $ (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) NIL (-12 (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (($ $ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) NIL (-12 (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-286 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (($ $ (-589 (-51)) (-589 (-51))) NIL (-12 (|has| (-51) (-286 (-51))) (|has| (-51) (-1016)))) (($ $ (-51) (-51)) NIL (-12 (|has| (-51) (-286 (-51))) (|has| (-51) (-1016)))) (($ $ (-271 (-51))) NIL (-12 (|has| (-51) (-286 (-51))) (|has| (-51) (-1016)))) (($ $ (-589 (-271 (-51)))) NIL (-12 (|has| (-51) (-286 (-51))) (|has| (-51) (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-51) (-1016))))) (-3184 (((-589 (-51)) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 (((-51) $ (-1087)) NIL) (((-51) $ (-1087) (-51)) NIL)) (-1771 (($) NIL) (($ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) NIL)) (-1605 (($ $ (-1087)) 51)) (-2452 (((-710) (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016)))) (((-710) (-51) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-51) (-1016)))) (((-710) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-564 (-499))))) (-3985 (($ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) 37)) (-2785 (($ $ $) 38)) (-3976 (((-794) $) NIL (-3255 (|has| (-51) (-563 (-794))) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-563 (-794)))))) (-3599 (($ $ (-1087) (-355)) 47)) (-1813 (($ $ (-1087) (-355)) 48)) (-1245 (($ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))))) NIL)) (-1505 (((-108) (-1 (-108) (-2 (|:| -2402 (-1087)) (|:| -2746 (-51)))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (-3255 (|has| (-51) (-1016)) (|has| (-2 (|:| -2402 (-1087)) (|:| -2746 (-51))) (-1016))))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-985) (-13 (-1100 (-1087) (-51)) (-10 -8 (-15 -2785 ($ $ $)) (-15 -2467 ($)) (-15 -2747 ($ $)) (-15 -3180 ($ $)) (-15 -3784 ($ $)) (-15 -1263 ($ $)) (-15 -1530 ($ $)) (-15 -1812 ($ $)) (-15 -2040 ($ $)) (-15 -3434 ($ $)) (-15 -3599 ($ $ (-1087) (-355))) (-15 -1813 ($ $ (-1087) (-355))) (-15 -2123 ((-355) $ (-1087))) (-15 -1945 ((-589 (-1070)) $ (-1070))) (-15 -1605 ($ $ (-1087))) (-15 -4118 ($)) (-15 -3295 ((-3 (-1070) "failed") $ (-1070) (-523))) (-6 -4248)))) (T -985))
-((-2785 (*1 *1 *1 *1) (-5 *1 (-985))) (-2467 (*1 *1) (-5 *1 (-985))) (-2747 (*1 *1 *1) (-5 *1 (-985))) (-3180 (*1 *1 *1) (-5 *1 (-985))) (-3784 (*1 *1 *1) (-5 *1 (-985))) (-1263 (*1 *1 *1) (-5 *1 (-985))) (-1530 (*1 *1 *1) (-5 *1 (-985))) (-1812 (*1 *1 *1) (-5 *1 (-985))) (-2040 (*1 *1 *1) (-5 *1 (-985))) (-3434 (*1 *1 *1) (-5 *1 (-985))) (-3599 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-355)) (-5 *1 (-985)))) (-1813 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-355)) (-5 *1 (-985)))) (-2123 (*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-355)) (-5 *1 (-985)))) (-1945 (*1 *2 *1 *3) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-985)) (-5 *3 (-1070)))) (-1605 (*1 *1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-985)))) (-4118 (*1 *1) (-5 *1 (-985))) (-3295 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1070)) (-5 *3 (-523)) (-5 *1 (-985)))))
-(-13 (-1100 (-1087) (-51)) (-10 -8 (-15 -2785 ($ $ $)) (-15 -2467 ($)) (-15 -2747 ($ $)) (-15 -3180 ($ $)) (-15 -3784 ($ $)) (-15 -1263 ($ $)) (-15 -1530 ($ $)) (-15 -1812 ($ $)) (-15 -2040 ($ $)) (-15 -3434 ($ $)) (-15 -3599 ($ $ (-1087) (-355))) (-15 -1813 ($ $ (-1087) (-355))) (-15 -2123 ((-355) $ (-1087))) (-15 -1945 ((-589 (-1070)) $ (-1070))) (-15 -1605 ($ $ (-1087))) (-15 -4118 ($)) (-15 -3295 ((-3 (-1070) "failed") $ (-1070) (-523))) (-6 -4248)))
-((-3548 (($ $) 45)) (-2242 (((-108) $ $) 74)) (-2898 (((-3 |#2| "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL) (((-3 (-523) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-883 (-383 (-523)))) 227) (((-3 $ "failed") (-883 (-523))) 226) (((-3 $ "failed") (-883 |#2|)) 229)) (-1996 ((|#2| $) NIL) (((-383 (-523)) $) NIL) (((-523) $) NIL) ((|#4| $) NIL) (($ (-883 (-383 (-523)))) 215) (($ (-883 (-523))) 211) (($ (-883 |#2|)) 231)) (-3142 (($ $) NIL) (($ $ |#4|) 43)) (-3605 (((-108) $ $) 112) (((-108) $ (-589 $)) 113)) (-1759 (((-108) $) 56)) (-1579 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 107)) (-2004 (($ $) 138)) (-2503 (($ $) 134)) (-2280 (($ $) 133)) (-3533 (($ $ $) 79) (($ $ $ |#4|) 84)) (-3453 (($ $ $) 82) (($ $ $ |#4|) 86)) (-2407 (((-108) $ $) 121) (((-108) $ (-589 $)) 122)) (-2694 ((|#4| $) 33)) (-3291 (($ $ $) 110)) (-2627 (((-108) $) 55)) (-3196 (((-710) $) 35)) (-2946 (($ $) 152)) (-2756 (($ $) 149)) (-2789 (((-589 $) $) 68)) (-3678 (($ $) 57)) (-3147 (($ $) 145)) (-2172 (((-589 $) $) 65)) (-1248 (($ $) 59)) (-3119 ((|#2| $) NIL) (($ $ |#4|) 38)) (-2935 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1301 (-710))) $ $) 111)) (-3709 (((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3429 $) (|:| -3143 $)) $ $) 108) (((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3429 $) (|:| -3143 $)) $ $ |#4|) 109)) (-1937 (((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3143 $)) $ $) 104) (((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3143 $)) $ $ |#4|) 105)) (-3146 (($ $ $) 89) (($ $ $ |#4|) 95)) (-3321 (($ $ $) 90) (($ $ $ |#4|) 96)) (-1905 (((-589 $) $) 51)) (-3761 (((-108) $ $) 118) (((-108) $ (-589 $)) 119)) (-1728 (($ $ $) 103)) (-4105 (($ $) 37)) (-1454 (((-108) $ $) 72)) (-2152 (((-108) $ $) 114) (((-108) $ (-589 $)) 116)) (-2347 (($ $ $) 101)) (-3612 (($ $) 40)) (-2056 ((|#2| |#2| $) 142) (($ (-589 $)) NIL) (($ $ $) NIL)) (-2456 (($ $ |#2|) NIL) (($ $ $) 131)) (-3293 (($ $ |#2|) 126) (($ $ $) 129)) (-3228 (($ $) 48)) (-2451 (($ $) 52)) (-3077 (((-823 (-355)) $) NIL) (((-823 (-523)) $) NIL) (((-499) $) NIL) (($ (-883 (-383 (-523)))) 217) (($ (-883 (-523))) 213) (($ (-883 |#2|)) 228) (((-1070) $) 250) (((-883 |#2|) $) 162)) (-3976 (((-794) $) 30) (($ (-523)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-883 |#2|) $) 163) (($ (-383 (-523))) NIL) (($ $) NIL)) (-3999 (((-3 (-108) "failed") $ $) 71)))
-(((-986 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3976 (|#1| |#1|)) (-15 -2056 (|#1| |#1| |#1|)) (-15 -2056 (|#1| (-589 |#1|))) (-15 -3976 (|#1| (-383 (-523)))) (-15 -3976 ((-883 |#2|) |#1|)) (-15 -3077 ((-883 |#2|) |#1|)) (-15 -3077 ((-1070) |#1|)) (-15 -2946 (|#1| |#1|)) (-15 -2756 (|#1| |#1|)) (-15 -3147 (|#1| |#1|)) (-15 -2004 (|#1| |#1|)) (-15 -2056 (|#2| |#2| |#1|)) (-15 -2456 (|#1| |#1| |#1|)) (-15 -3293 (|#1| |#1| |#1|)) (-15 -2456 (|#1| |#1| |#2|)) (-15 -3293 (|#1| |#1| |#2|)) (-15 -2503 (|#1| |#1|)) (-15 -2280 (|#1| |#1|)) (-15 -3077 (|#1| (-883 |#2|))) (-15 -1996 (|#1| (-883 |#2|))) (-15 -2898 ((-3 |#1| "failed") (-883 |#2|))) (-15 -3077 (|#1| (-883 (-523)))) (-15 -1996 (|#1| (-883 (-523)))) (-15 -2898 ((-3 |#1| "failed") (-883 (-523)))) (-15 -3077 (|#1| (-883 (-383 (-523))))) (-15 -1996 (|#1| (-883 (-383 (-523))))) (-15 -2898 ((-3 |#1| "failed") (-883 (-383 (-523))))) (-15 -1728 (|#1| |#1| |#1|)) (-15 -2347 (|#1| |#1| |#1|)) (-15 -2935 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -1301 (-710))) |#1| |#1|)) (-15 -3291 (|#1| |#1| |#1|)) (-15 -1579 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -3709 ((-2 (|:| -2275 |#1|) (|:| |gap| (-710)) (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1| |#4|)) (-15 -3709 ((-2 (|:| -2275 |#1|) (|:| |gap| (-710)) (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -1937 ((-2 (|:| -2275 |#1|) (|:| |gap| (-710)) (|:| -3143 |#1|)) |#1| |#1| |#4|)) (-15 -1937 ((-2 (|:| -2275 |#1|) (|:| |gap| (-710)) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -3321 (|#1| |#1| |#1| |#4|)) (-15 -3146 (|#1| |#1| |#1| |#4|)) (-15 -3321 (|#1| |#1| |#1|)) (-15 -3146 (|#1| |#1| |#1|)) (-15 -3453 (|#1| |#1| |#1| |#4|)) (-15 -3533 (|#1| |#1| |#1| |#4|)) (-15 -3453 (|#1| |#1| |#1|)) (-15 -3533 (|#1| |#1| |#1|)) (-15 -2407 ((-108) |#1| (-589 |#1|))) (-15 -2407 ((-108) |#1| |#1|)) (-15 -3761 ((-108) |#1| (-589 |#1|))) (-15 -3761 ((-108) |#1| |#1|)) (-15 -2152 ((-108) |#1| (-589 |#1|))) (-15 -2152 ((-108) |#1| |#1|)) (-15 -3605 ((-108) |#1| (-589 |#1|))) (-15 -3605 ((-108) |#1| |#1|)) (-15 -2242 ((-108) |#1| |#1|)) (-15 -1454 ((-108) |#1| |#1|)) (-15 -3999 ((-3 (-108) "failed") |#1| |#1|)) (-15 -2789 ((-589 |#1|) |#1|)) (-15 -2172 ((-589 |#1|) |#1|)) (-15 -1248 (|#1| |#1|)) (-15 -3678 (|#1| |#1|)) (-15 -1759 ((-108) |#1|)) (-15 -2627 ((-108) |#1|)) (-15 -3142 (|#1| |#1| |#4|)) (-15 -3119 (|#1| |#1| |#4|)) (-15 -2451 (|#1| |#1|)) (-15 -1905 ((-589 |#1|) |#1|)) (-15 -3228 (|#1| |#1|)) (-15 -3548 (|#1| |#1|)) (-15 -3612 (|#1| |#1|)) (-15 -4105 (|#1| |#1|)) (-15 -3196 ((-710) |#1|)) (-15 -2694 (|#4| |#1|)) (-15 -3077 ((-499) |#1|)) (-15 -3077 ((-823 (-523)) |#1|)) (-15 -3077 ((-823 (-355)) |#1|)) (-15 -1996 (|#4| |#1|)) (-15 -2898 ((-3 |#4| "failed") |#1|)) (-15 -3976 (|#1| |#4|)) (-15 -3119 (|#2| |#1|)) (-15 -3142 (|#1| |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -3976 (|#1| |#2|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|))) (-987 |#2| |#3| |#4|) (-973) (-732) (-786)) (T -986))
-NIL
-(-10 -8 (-15 -3976 (|#1| |#1|)) (-15 -2056 (|#1| |#1| |#1|)) (-15 -2056 (|#1| (-589 |#1|))) (-15 -3976 (|#1| (-383 (-523)))) (-15 -3976 ((-883 |#2|) |#1|)) (-15 -3077 ((-883 |#2|) |#1|)) (-15 -3077 ((-1070) |#1|)) (-15 -2946 (|#1| |#1|)) (-15 -2756 (|#1| |#1|)) (-15 -3147 (|#1| |#1|)) (-15 -2004 (|#1| |#1|)) (-15 -2056 (|#2| |#2| |#1|)) (-15 -2456 (|#1| |#1| |#1|)) (-15 -3293 (|#1| |#1| |#1|)) (-15 -2456 (|#1| |#1| |#2|)) (-15 -3293 (|#1| |#1| |#2|)) (-15 -2503 (|#1| |#1|)) (-15 -2280 (|#1| |#1|)) (-15 -3077 (|#1| (-883 |#2|))) (-15 -1996 (|#1| (-883 |#2|))) (-15 -2898 ((-3 |#1| "failed") (-883 |#2|))) (-15 -3077 (|#1| (-883 (-523)))) (-15 -1996 (|#1| (-883 (-523)))) (-15 -2898 ((-3 |#1| "failed") (-883 (-523)))) (-15 -3077 (|#1| (-883 (-383 (-523))))) (-15 -1996 (|#1| (-883 (-383 (-523))))) (-15 -2898 ((-3 |#1| "failed") (-883 (-383 (-523))))) (-15 -1728 (|#1| |#1| |#1|)) (-15 -2347 (|#1| |#1| |#1|)) (-15 -2935 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -1301 (-710))) |#1| |#1|)) (-15 -3291 (|#1| |#1| |#1|)) (-15 -1579 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -3709 ((-2 (|:| -2275 |#1|) (|:| |gap| (-710)) (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1| |#4|)) (-15 -3709 ((-2 (|:| -2275 |#1|) (|:| |gap| (-710)) (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -1937 ((-2 (|:| -2275 |#1|) (|:| |gap| (-710)) (|:| -3143 |#1|)) |#1| |#1| |#4|)) (-15 -1937 ((-2 (|:| -2275 |#1|) (|:| |gap| (-710)) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -3321 (|#1| |#1| |#1| |#4|)) (-15 -3146 (|#1| |#1| |#1| |#4|)) (-15 -3321 (|#1| |#1| |#1|)) (-15 -3146 (|#1| |#1| |#1|)) (-15 -3453 (|#1| |#1| |#1| |#4|)) (-15 -3533 (|#1| |#1| |#1| |#4|)) (-15 -3453 (|#1| |#1| |#1|)) (-15 -3533 (|#1| |#1| |#1|)) (-15 -2407 ((-108) |#1| (-589 |#1|))) (-15 -2407 ((-108) |#1| |#1|)) (-15 -3761 ((-108) |#1| (-589 |#1|))) (-15 -3761 ((-108) |#1| |#1|)) (-15 -2152 ((-108) |#1| (-589 |#1|))) (-15 -2152 ((-108) |#1| |#1|)) (-15 -3605 ((-108) |#1| (-589 |#1|))) (-15 -3605 ((-108) |#1| |#1|)) (-15 -2242 ((-108) |#1| |#1|)) (-15 -1454 ((-108) |#1| |#1|)) (-15 -3999 ((-3 (-108) "failed") |#1| |#1|)) (-15 -2789 ((-589 |#1|) |#1|)) (-15 -2172 ((-589 |#1|) |#1|)) (-15 -1248 (|#1| |#1|)) (-15 -3678 (|#1| |#1|)) (-15 -1759 ((-108) |#1|)) (-15 -2627 ((-108) |#1|)) (-15 -3142 (|#1| |#1| |#4|)) (-15 -3119 (|#1| |#1| |#4|)) (-15 -2451 (|#1| |#1|)) (-15 -1905 ((-589 |#1|) |#1|)) (-15 -3228 (|#1| |#1|)) (-15 -3548 (|#1| |#1|)) (-15 -3612 (|#1| |#1|)) (-15 -4105 (|#1| |#1|)) (-15 -3196 ((-710) |#1|)) (-15 -2694 (|#4| |#1|)) (-15 -3077 ((-499) |#1|)) (-15 -3077 ((-823 (-523)) |#1|)) (-15 -3077 ((-823 (-355)) |#1|)) (-15 -1996 (|#4| |#1|)) (-15 -2898 ((-3 |#4| "failed") |#1|)) (-15 -3976 (|#1| |#4|)) (-15 -3119 (|#2| |#1|)) (-15 -3142 (|#1| |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -3976 (|#1| |#2|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3716 (((-589 |#3|) $) 110)) (-3540 (((-1083 $) $ |#3|) 125) (((-1083 |#1|) $) 124)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 87 (|has| |#1| (-515)))) (-3950 (($ $) 88 (|has| |#1| (-515)))) (-3226 (((-108) $) 90 (|has| |#1| (-515)))) (-2862 (((-710) $) 112) (((-710) $ (-589 |#3|)) 111)) (-3548 (($ $) 271)) (-2242 (((-108) $ $) 257)) (-2999 (((-3 $ "failed") $ $) 19)) (-3712 (($ $ $) 216 (|has| |#1| (-515)))) (-2530 (((-589 $) $ $) 211 (|has| |#1| (-515)))) (-2319 (((-394 (-1083 $)) (-1083 $)) 100 (|has| |#1| (-840)))) (-3763 (($ $) 98 (|has| |#1| (-427)))) (-2105 (((-394 $) $) 97 (|has| |#1| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) 103 (|has| |#1| (-840)))) (-1640 (($) 17 T CONST)) (-2898 (((-3 |#1| "failed") $) 164) (((-3 (-383 (-523)) "failed") $) 162 (|has| |#1| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) 160 (|has| |#1| (-964 (-523)))) (((-3 |#3| "failed") $) 136) (((-3 $ "failed") (-883 (-383 (-523)))) 231 (-12 (|has| |#1| (-37 (-383 (-523)))) (|has| |#3| (-564 (-1087))))) (((-3 $ "failed") (-883 (-523))) 228 (-3255 (-12 (-2575 (|has| |#1| (-37 (-383 (-523))))) (|has| |#1| (-37 (-523))) (|has| |#3| (-564 (-1087)))) (-12 (|has| |#1| (-37 (-383 (-523)))) (|has| |#3| (-564 (-1087)))))) (((-3 $ "failed") (-883 |#1|)) 225 (-3255 (-12 (-2575 (|has| |#1| (-37 (-383 (-523))))) (-2575 (|has| |#1| (-37 (-523)))) (|has| |#3| (-564 (-1087)))) (-12 (-2575 (|has| |#1| (-508))) (-2575 (|has| |#1| (-37 (-383 (-523))))) (|has| |#1| (-37 (-523))) (|has| |#3| (-564 (-1087)))) (-12 (-2575 (|has| |#1| (-921 (-523)))) (|has| |#1| (-37 (-383 (-523)))) (|has| |#3| (-564 (-1087))))))) (-1996 ((|#1| $) 165) (((-383 (-523)) $) 161 (|has| |#1| (-964 (-383 (-523))))) (((-523) $) 159 (|has| |#1| (-964 (-523)))) ((|#3| $) 135) (($ (-883 (-383 (-523)))) 230 (-12 (|has| |#1| (-37 (-383 (-523)))) (|has| |#3| (-564 (-1087))))) (($ (-883 (-523))) 227 (-3255 (-12 (-2575 (|has| |#1| (-37 (-383 (-523))))) (|has| |#1| (-37 (-523))) (|has| |#3| (-564 (-1087)))) (-12 (|has| |#1| (-37 (-383 (-523)))) (|has| |#3| (-564 (-1087)))))) (($ (-883 |#1|)) 224 (-3255 (-12 (-2575 (|has| |#1| (-37 (-383 (-523))))) (-2575 (|has| |#1| (-37 (-523)))) (|has| |#3| (-564 (-1087)))) (-12 (-2575 (|has| |#1| (-508))) (-2575 (|has| |#1| (-37 (-383 (-523))))) (|has| |#1| (-37 (-523))) (|has| |#3| (-564 (-1087)))) (-12 (-2575 (|has| |#1| (-921 (-523)))) (|has| |#1| (-37 (-383 (-523)))) (|has| |#3| (-564 (-1087))))))) (-2210 (($ $ $ |#3|) 108 (|has| |#1| (-158))) (($ $ $) 212 (|has| |#1| (-515)))) (-3142 (($ $) 154) (($ $ |#3|) 266)) (-2203 (((-629 (-523)) (-629 $)) 134 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 133 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) 132) (((-629 |#1|) (-629 $)) 131)) (-3605 (((-108) $ $) 256) (((-108) $ (-589 $)) 255)) (-4211 (((-3 $ "failed") $) 34)) (-1759 (((-108) $) 264)) (-1579 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 236)) (-2004 (($ $) 205 (|has| |#1| (-427)))) (-2213 (($ $) 176 (|has| |#1| (-427))) (($ $ |#3|) 105 (|has| |#1| (-427)))) (-3127 (((-589 $) $) 109)) (-1330 (((-108) $) 96 (|has| |#1| (-840)))) (-2503 (($ $) 221 (|has| |#1| (-515)))) (-2280 (($ $) 222 (|has| |#1| (-515)))) (-3533 (($ $ $) 248) (($ $ $ |#3|) 246)) (-3453 (($ $ $) 247) (($ $ $ |#3|) 245)) (-2067 (($ $ |#1| |#2| $) 172)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 84 (-12 (|has| |#3| (-817 (-355))) (|has| |#1| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 83 (-12 (|has| |#3| (-817 (-523))) (|has| |#1| (-817 (-523)))))) (-3482 (((-108) $) 31)) (-3288 (((-710) $) 169)) (-2407 (((-108) $ $) 250) (((-108) $ (-589 $)) 249)) (-1319 (($ $ $ $ $) 207 (|has| |#1| (-515)))) (-2694 ((|#3| $) 275)) (-3706 (($ (-1083 |#1|) |#3|) 117) (($ (-1083 $) |#3|) 116)) (-2738 (((-589 $) $) 126)) (-4060 (((-108) $) 152)) (-3694 (($ |#1| |#2|) 153) (($ $ |#3| (-710)) 119) (($ $ (-589 |#3|) (-589 (-710))) 118)) (-3291 (($ $ $) 235)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ |#3|) 120)) (-2627 (((-108) $) 265)) (-2140 ((|#2| $) 170) (((-710) $ |#3|) 122) (((-589 (-710)) $ (-589 |#3|)) 121)) (-3268 (($ $ $) 79 (|has| |#1| (-786)))) (-3196 (((-710) $) 274)) (-2644 (($ $ $) 78 (|has| |#1| (-786)))) (-3927 (($ (-1 |#2| |#2|) $) 171)) (-3015 (($ (-1 |#1| |#1|) $) 151)) (-1949 (((-3 |#3| "failed") $) 123)) (-2946 (($ $) 202 (|has| |#1| (-427)))) (-2756 (($ $) 203 (|has| |#1| (-427)))) (-2789 (((-589 $) $) 260)) (-3678 (($ $) 263)) (-3147 (($ $) 204 (|has| |#1| (-427)))) (-2172 (((-589 $) $) 261)) (-1248 (($ $) 262)) (-3107 (($ $) 149)) (-3119 ((|#1| $) 148) (($ $ |#3|) 267)) (-2012 (($ (-589 $)) 94 (|has| |#1| (-427))) (($ $ $) 93 (|has| |#1| (-427)))) (-2935 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1301 (-710))) $ $) 234)) (-3709 (((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3429 $) (|:| -3143 $)) $ $) 238) (((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3429 $) (|:| -3143 $)) $ $ |#3|) 237)) (-1937 (((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3143 $)) $ $) 240) (((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3143 $)) $ $ |#3|) 239)) (-3146 (($ $ $) 244) (($ $ $ |#3|) 242)) (-3321 (($ $ $) 243) (($ $ $ |#3|) 241)) (-3841 (((-1070) $) 9)) (-3216 (($ $ $) 210 (|has| |#1| (-515)))) (-1905 (((-589 $) $) 269)) (-3818 (((-3 (-589 $) "failed") $) 114)) (-1973 (((-3 (-589 $) "failed") $) 115)) (-3719 (((-3 (-2 (|:| |var| |#3|) (|:| -3262 (-710))) "failed") $) 113)) (-3761 (((-108) $ $) 252) (((-108) $ (-589 $)) 251)) (-1728 (($ $ $) 232)) (-4105 (($ $) 273)) (-1454 (((-108) $ $) 258)) (-2152 (((-108) $ $) 254) (((-108) $ (-589 $)) 253)) (-2347 (($ $ $) 233)) (-3612 (($ $) 272)) (-2435 (((-1034) $) 10)) (-3740 (((-2 (|:| -2056 $) (|:| |coef2| $)) $ $) 213 (|has| |#1| (-515)))) (-2440 (((-2 (|:| -2056 $) (|:| |coef1| $)) $ $) 214 (|has| |#1| (-515)))) (-3084 (((-108) $) 166)) (-3095 ((|#1| $) 167)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 95 (|has| |#1| (-427)))) (-2056 ((|#1| |#1| $) 206 (|has| |#1| (-427))) (($ (-589 $)) 92 (|has| |#1| (-427))) (($ $ $) 91 (|has| |#1| (-427)))) (-1893 (((-394 (-1083 $)) (-1083 $)) 102 (|has| |#1| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) 101 (|has| |#1| (-840)))) (-3573 (((-394 $) $) 99 (|has| |#1| (-840)))) (-3747 (((-2 (|:| -2056 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 215 (|has| |#1| (-515)))) (-2469 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-515))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-515)))) (-2456 (($ $ |#1|) 219 (|has| |#1| (-515))) (($ $ $) 217 (|has| |#1| (-515)))) (-3293 (($ $ |#1|) 220 (|has| |#1| (-515))) (($ $ $) 218 (|has| |#1| (-515)))) (-1349 (($ $ (-589 (-271 $))) 145) (($ $ (-271 $)) 144) (($ $ $ $) 143) (($ $ (-589 $) (-589 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-589 |#3|) (-589 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-589 |#3|) (-589 $)) 138)) (-4053 (($ $ |#3|) 107 (|has| |#1| (-158)))) (-4024 (($ $ |#3|) 42) (($ $ (-589 |#3|)) 41) (($ $ |#3| (-710)) 40) (($ $ (-589 |#3|) (-589 (-710))) 39)) (-1487 ((|#2| $) 150) (((-710) $ |#3|) 130) (((-589 (-710)) $ (-589 |#3|)) 129)) (-3228 (($ $) 270)) (-2451 (($ $) 268)) (-3077 (((-823 (-355)) $) 82 (-12 (|has| |#3| (-564 (-823 (-355)))) (|has| |#1| (-564 (-823 (-355)))))) (((-823 (-523)) $) 81 (-12 (|has| |#3| (-564 (-823 (-523)))) (|has| |#1| (-564 (-823 (-523)))))) (((-499) $) 80 (-12 (|has| |#3| (-564 (-499))) (|has| |#1| (-564 (-499))))) (($ (-883 (-383 (-523)))) 229 (-12 (|has| |#1| (-37 (-383 (-523)))) (|has| |#3| (-564 (-1087))))) (($ (-883 (-523))) 226 (-3255 (-12 (-2575 (|has| |#1| (-37 (-383 (-523))))) (|has| |#1| (-37 (-523))) (|has| |#3| (-564 (-1087)))) (-12 (|has| |#1| (-37 (-383 (-523)))) (|has| |#3| (-564 (-1087)))))) (($ (-883 |#1|)) 223 (|has| |#3| (-564 (-1087)))) (((-1070) $) 201 (-12 (|has| |#1| (-964 (-523))) (|has| |#3| (-564 (-1087))))) (((-883 |#1|) $) 200 (|has| |#3| (-564 (-1087))))) (-2267 ((|#1| $) 175 (|has| |#1| (-427))) (($ $ |#3|) 106 (|has| |#1| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) 104 (-2819 (|has| $ (-134)) (|has| |#1| (-840))))) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 163) (($ |#3|) 137) (((-883 |#1|) $) 199 (|has| |#3| (-564 (-1087)))) (($ (-383 (-523))) 72 (-3255 (|has| |#1| (-964 (-383 (-523)))) (|has| |#1| (-37 (-383 (-523)))))) (($ $) 85 (|has| |#1| (-515)))) (-1639 (((-589 |#1|) $) 168)) (-1234 ((|#1| $ |#2|) 155) (($ $ |#3| (-710)) 128) (($ $ (-589 |#3|) (-589 (-710))) 127)) (-2301 (((-3 $ "failed") $) 73 (-3255 (-2819 (|has| $ (-134)) (|has| |#1| (-840))) (|has| |#1| (-134))))) (-1698 (((-710)) 29)) (-2656 (($ $ $ (-710)) 173 (|has| |#1| (-158)))) (-3842 (((-108) $ $) 89 (|has| |#1| (-515)))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-3999 (((-3 (-108) "failed") $ $) 259)) (-1440 (($) 30 T CONST)) (-3893 (($ $ $ $ (-710)) 208 (|has| |#1| (-515)))) (-4142 (($ $ $ (-710)) 209 (|has| |#1| (-515)))) (-1943 (($ $ |#3|) 38) (($ $ (-589 |#3|)) 37) (($ $ |#3| (-710)) 36) (($ $ (-589 |#3|) (-589 (-710))) 35)) (-4078 (((-108) $ $) 76 (|has| |#1| (-786)))) (-4061 (((-108) $ $) 75 (|has| |#1| (-786)))) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 77 (|has| |#1| (-786)))) (-4052 (((-108) $ $) 74 (|has| |#1| (-786)))) (-4125 (($ $ |#1|) 156 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 (-523))) 158 (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) 157 (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
-(((-987 |#1| |#2| |#3|) (-129) (-973) (-732) (-786)) (T -987))
-((-2694 (*1 *2 *1) (-12 (-4 *1 (-987 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *2 (-786)))) (-3196 (*1 *2 *1) (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-710)))) (-4105 (*1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)))) (-3612 (*1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)))) (-3548 (*1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)))) (-3228 (*1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)))) (-1905 (*1 *2 *1) (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *1)) (-4 *1 (-987 *3 *4 *5)))) (-2451 (*1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)))) (-3119 (*1 *1 *1 *2) (-12 (-4 *1 (-987 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *2 (-786)))) (-3142 (*1 *1 *1 *2) (-12 (-4 *1 (-987 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *2 (-786)))) (-2627 (*1 *2 *1) (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108)))) (-1759 (*1 *2 *1) (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108)))) (-3678 (*1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)))) (-1248 (*1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)))) (-2172 (*1 *2 *1) (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *1)) (-4 *1 (-987 *3 *4 *5)))) (-2789 (*1 *2 *1) (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *1)) (-4 *1 (-987 *3 *4 *5)))) (-3999 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108)))) (-1454 (*1 *2 *1 *1) (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108)))) (-2242 (*1 *2 *1 *1) (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108)))) (-3605 (*1 *2 *1 *1) (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108)))) (-3605 (*1 *2 *1 *3) (-12 (-5 *3 (-589 *1)) (-4 *1 (-987 *4 *5 *6)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)))) (-2152 (*1 *2 *1 *1) (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108)))) (-2152 (*1 *2 *1 *3) (-12 (-5 *3 (-589 *1)) (-4 *1 (-987 *4 *5 *6)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)))) (-3761 (*1 *2 *1 *1) (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108)))) (-3761 (*1 *2 *1 *3) (-12 (-5 *3 (-589 *1)) (-4 *1 (-987 *4 *5 *6)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)))) (-2407 (*1 *2 *1 *1) (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108)))) (-2407 (*1 *2 *1 *3) (-12 (-5 *3 (-589 *1)) (-4 *1 (-987 *4 *5 *6)) (-4 *4 (-973)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)))) (-3533 (*1 *1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)))) (-3453 (*1 *1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)))) (-3533 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-987 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *2 (-786)))) (-3453 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-987 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *2 (-786)))) (-3146 (*1 *1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)))) (-3321 (*1 *1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)))) (-3146 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-987 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *2 (-786)))) (-3321 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-987 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *2 (-786)))) (-1937 (*1 *2 *1 *1) (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-2 (|:| -2275 *1) (|:| |gap| (-710)) (|:| -3143 *1))) (-4 *1 (-987 *3 *4 *5)))) (-1937 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-786)) (-5 *2 (-2 (|:| -2275 *1) (|:| |gap| (-710)) (|:| -3143 *1))) (-4 *1 (-987 *4 *5 *3)))) (-3709 (*1 *2 *1 *1) (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-2 (|:| -2275 *1) (|:| |gap| (-710)) (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-987 *3 *4 *5)))) (-3709 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-786)) (-5 *2 (-2 (|:| -2275 *1) (|:| |gap| (-710)) (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-987 *4 *5 *3)))) (-1579 (*1 *2 *1 *1) (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-987 *3 *4 *5)))) (-3291 (*1 *1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)))) (-2935 (*1 *2 *1 *1) (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -1301 (-710)))) (-4 *1 (-987 *3 *4 *5)))) (-2347 (*1 *1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)))) (-1728 (*1 *1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)))) (-2898 (*1 *1 *2) (|partial| -12 (-5 *2 (-883 (-383 (-523)))) (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-37 (-383 (-523)))) (-4 *5 (-564 (-1087))) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-883 (-383 (-523)))) (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-37 (-383 (-523)))) (-4 *5 (-564 (-1087))) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)))) (-3077 (*1 *1 *2) (-12 (-5 *2 (-883 (-383 (-523)))) (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-37 (-383 (-523)))) (-4 *5 (-564 (-1087))) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)))) (-2898 (*1 *1 *2) (|partial| -3255 (-12 (-5 *2 (-883 (-523))) (-4 *1 (-987 *3 *4 *5)) (-12 (-2575 (-4 *3 (-37 (-383 (-523))))) (-4 *3 (-37 (-523))) (-4 *5 (-564 (-1087)))) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))) (-12 (-5 *2 (-883 (-523))) (-4 *1 (-987 *3 *4 *5)) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *5 (-564 (-1087)))) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))))) (-1996 (*1 *1 *2) (-3255 (-12 (-5 *2 (-883 (-523))) (-4 *1 (-987 *3 *4 *5)) (-12 (-2575 (-4 *3 (-37 (-383 (-523))))) (-4 *3 (-37 (-523))) (-4 *5 (-564 (-1087)))) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))) (-12 (-5 *2 (-883 (-523))) (-4 *1 (-987 *3 *4 *5)) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *5 (-564 (-1087)))) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))))) (-3077 (*1 *1 *2) (-3255 (-12 (-5 *2 (-883 (-523))) (-4 *1 (-987 *3 *4 *5)) (-12 (-2575 (-4 *3 (-37 (-383 (-523))))) (-4 *3 (-37 (-523))) (-4 *5 (-564 (-1087)))) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))) (-12 (-5 *2 (-883 (-523))) (-4 *1 (-987 *3 *4 *5)) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *5 (-564 (-1087)))) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))))) (-2898 (*1 *1 *2) (|partial| -3255 (-12 (-5 *2 (-883 *3)) (-12 (-2575 (-4 *3 (-37 (-383 (-523))))) (-2575 (-4 *3 (-37 (-523)))) (-4 *5 (-564 (-1087)))) (-4 *3 (-973)) (-4 *1 (-987 *3 *4 *5)) (-4 *4 (-732)) (-4 *5 (-786))) (-12 (-5 *2 (-883 *3)) (-12 (-2575 (-4 *3 (-508))) (-2575 (-4 *3 (-37 (-383 (-523))))) (-4 *3 (-37 (-523))) (-4 *5 (-564 (-1087)))) (-4 *3 (-973)) (-4 *1 (-987 *3 *4 *5)) (-4 *4 (-732)) (-4 *5 (-786))) (-12 (-5 *2 (-883 *3)) (-12 (-2575 (-4 *3 (-921 (-523)))) (-4 *3 (-37 (-383 (-523)))) (-4 *5 (-564 (-1087)))) (-4 *3 (-973)) (-4 *1 (-987 *3 *4 *5)) (-4 *4 (-732)) (-4 *5 (-786))))) (-1996 (*1 *1 *2) (-3255 (-12 (-5 *2 (-883 *3)) (-12 (-2575 (-4 *3 (-37 (-383 (-523))))) (-2575 (-4 *3 (-37 (-523)))) (-4 *5 (-564 (-1087)))) (-4 *3 (-973)) (-4 *1 (-987 *3 *4 *5)) (-4 *4 (-732)) (-4 *5 (-786))) (-12 (-5 *2 (-883 *3)) (-12 (-2575 (-4 *3 (-508))) (-2575 (-4 *3 (-37 (-383 (-523))))) (-4 *3 (-37 (-523))) (-4 *5 (-564 (-1087)))) (-4 *3 (-973)) (-4 *1 (-987 *3 *4 *5)) (-4 *4 (-732)) (-4 *5 (-786))) (-12 (-5 *2 (-883 *3)) (-12 (-2575 (-4 *3 (-921 (-523)))) (-4 *3 (-37 (-383 (-523)))) (-4 *5 (-564 (-1087)))) (-4 *3 (-973)) (-4 *1 (-987 *3 *4 *5)) (-4 *4 (-732)) (-4 *5 (-786))))) (-3077 (*1 *1 *2) (-12 (-5 *2 (-883 *3)) (-4 *3 (-973)) (-4 *1 (-987 *3 *4 *5)) (-4 *5 (-564 (-1087))) (-4 *4 (-732)) (-4 *5 (-786)))) (-2280 (*1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-515)))) (-2503 (*1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-515)))) (-3293 (*1 *1 *1 *2) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-515)))) (-2456 (*1 *1 *1 *2) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-515)))) (-3293 (*1 *1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-515)))) (-2456 (*1 *1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-515)))) (-3712 (*1 *1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-515)))) (-3747 (*1 *2 *1 *1) (-12 (-4 *3 (-515)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-2 (|:| -2056 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-987 *3 *4 *5)))) (-2440 (*1 *2 *1 *1) (-12 (-4 *3 (-515)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-2 (|:| -2056 *1) (|:| |coef1| *1))) (-4 *1 (-987 *3 *4 *5)))) (-3740 (*1 *2 *1 *1) (-12 (-4 *3 (-515)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-2 (|:| -2056 *1) (|:| |coef2| *1))) (-4 *1 (-987 *3 *4 *5)))) (-2210 (*1 *1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-515)))) (-2530 (*1 *2 *1 *1) (-12 (-4 *3 (-515)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *1)) (-4 *1 (-987 *3 *4 *5)))) (-3216 (*1 *1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-515)))) (-4142 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *3 (-515)))) (-3893 (*1 *1 *1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *3 (-515)))) (-1319 (*1 *1 *1 *1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-515)))) (-2056 (*1 *2 *2 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-427)))) (-2004 (*1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-427)))) (-3147 (*1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-427)))) (-2756 (*1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-427)))) (-2946 (*1 *1 *1) (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-427)))))
-(-13 (-880 |t#1| |t#2| |t#3|) (-10 -8 (-15 -2694 (|t#3| $)) (-15 -3196 ((-710) $)) (-15 -4105 ($ $)) (-15 -3612 ($ $)) (-15 -3548 ($ $)) (-15 -3228 ($ $)) (-15 -1905 ((-589 $) $)) (-15 -2451 ($ $)) (-15 -3119 ($ $ |t#3|)) (-15 -3142 ($ $ |t#3|)) (-15 -2627 ((-108) $)) (-15 -1759 ((-108) $)) (-15 -3678 ($ $)) (-15 -1248 ($ $)) (-15 -2172 ((-589 $) $)) (-15 -2789 ((-589 $) $)) (-15 -3999 ((-3 (-108) "failed") $ $)) (-15 -1454 ((-108) $ $)) (-15 -2242 ((-108) $ $)) (-15 -3605 ((-108) $ $)) (-15 -3605 ((-108) $ (-589 $))) (-15 -2152 ((-108) $ $)) (-15 -2152 ((-108) $ (-589 $))) (-15 -3761 ((-108) $ $)) (-15 -3761 ((-108) $ (-589 $))) (-15 -2407 ((-108) $ $)) (-15 -2407 ((-108) $ (-589 $))) (-15 -3533 ($ $ $)) (-15 -3453 ($ $ $)) (-15 -3533 ($ $ $ |t#3|)) (-15 -3453 ($ $ $ |t#3|)) (-15 -3146 ($ $ $)) (-15 -3321 ($ $ $)) (-15 -3146 ($ $ $ |t#3|)) (-15 -3321 ($ $ $ |t#3|)) (-15 -1937 ((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3143 $)) $ $)) (-15 -1937 ((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3143 $)) $ $ |t#3|)) (-15 -3709 ((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3429 $) (|:| -3143 $)) $ $)) (-15 -3709 ((-2 (|:| -2275 $) (|:| |gap| (-710)) (|:| -3429 $) (|:| -3143 $)) $ $ |t#3|)) (-15 -1579 ((-2 (|:| -3429 $) (|:| -3143 $)) $ $)) (-15 -3291 ($ $ $)) (-15 -2935 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1301 (-710))) $ $)) (-15 -2347 ($ $ $)) (-15 -1728 ($ $ $)) (IF (|has| |t#3| (-564 (-1087))) (PROGN (-6 (-563 (-883 |t#1|))) (-6 (-564 (-883 |t#1|))) (IF (|has| |t#1| (-37 (-383 (-523)))) (PROGN (-15 -2898 ((-3 $ "failed") (-883 (-383 (-523))))) (-15 -1996 ($ (-883 (-383 (-523))))) (-15 -3077 ($ (-883 (-383 (-523))))) (-15 -2898 ((-3 $ "failed") (-883 (-523)))) (-15 -1996 ($ (-883 (-523)))) (-15 -3077 ($ (-883 (-523)))) (IF (|has| |t#1| (-921 (-523))) |%noBranch| (PROGN (-15 -2898 ((-3 $ "failed") (-883 |t#1|))) (-15 -1996 ($ (-883 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-37 (-523))) (IF (|has| |t#1| (-37 (-383 (-523)))) |%noBranch| (PROGN (-15 -2898 ((-3 $ "failed") (-883 (-523)))) (-15 -1996 ($ (-883 (-523)))) (-15 -3077 ($ (-883 (-523)))) (IF (|has| |t#1| (-508)) |%noBranch| (PROGN (-15 -2898 ((-3 $ "failed") (-883 |t#1|))) (-15 -1996 ($ (-883 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-37 (-523))) |%noBranch| (IF (|has| |t#1| (-37 (-383 (-523)))) |%noBranch| (PROGN (-15 -2898 ((-3 $ "failed") (-883 |t#1|))) (-15 -1996 ($ (-883 |t#1|)))))) (-15 -3077 ($ (-883 |t#1|))) (IF (|has| |t#1| (-964 (-523))) (-6 (-564 (-1070))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-515)) (PROGN (-15 -2280 ($ $)) (-15 -2503 ($ $)) (-15 -3293 ($ $ |t#1|)) (-15 -2456 ($ $ |t#1|)) (-15 -3293 ($ $ $)) (-15 -2456 ($ $ $)) (-15 -3712 ($ $ $)) (-15 -3747 ((-2 (|:| -2056 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2440 ((-2 (|:| -2056 $) (|:| |coef1| $)) $ $)) (-15 -3740 ((-2 (|:| -2056 $) (|:| |coef2| $)) $ $)) (-15 -2210 ($ $ $)) (-15 -2530 ((-589 $) $ $)) (-15 -3216 ($ $ $)) (-15 -4142 ($ $ $ (-710))) (-15 -3893 ($ $ $ $ (-710))) (-15 -1319 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-427)) (PROGN (-15 -2056 (|t#1| |t#1| $)) (-15 -2004 ($ $)) (-15 -3147 ($ $)) (-15 -2756 ($ $)) (-15 -2946 ($ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((-37 |#1|) |has| |#1| (-158)) ((-37 $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427))) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-383 (-523)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-158))) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-563 (-883 |#1|)) |has| |#3| (-564 (-1087))) ((-158) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-158))) ((-564 (-499)) -12 (|has| |#1| (-564 (-499))) (|has| |#3| (-564 (-499)))) ((-564 (-823 (-355))) -12 (|has| |#1| (-564 (-823 (-355)))) (|has| |#3| (-564 (-823 (-355))))) ((-564 (-823 (-523))) -12 (|has| |#1| (-564 (-823 (-523)))) (|has| |#3| (-564 (-823 (-523))))) ((-564 (-883 |#1|)) |has| |#3| (-564 (-1087))) ((-564 (-1070)) -12 (|has| |#1| (-964 (-523))) (|has| |#3| (-564 (-1087)))) ((-267) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427))) ((-286 $) . T) ((-302 |#1| |#2|) . T) ((-353 |#1|) . T) ((-387 |#1|) . T) ((-427) -3255 (|has| |#1| (-840)) (|has| |#1| (-427))) ((-484 |#3| |#1|) . T) ((-484 |#3| $) . T) ((-484 $ $) . T) ((-515) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427))) ((-591 #0#) |has| |#1| (-37 (-383 (-523)))) ((-591 |#1|) . T) ((-591 $) . T) ((-585 (-523)) |has| |#1| (-585 (-523))) ((-585 |#1|) . T) ((-657 #0#) |has| |#1| (-37 (-383 (-523)))) ((-657 |#1|) |has| |#1| (-158)) ((-657 $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427))) ((-666) . T) ((-786) |has| |#1| (-786)) ((-831 |#3|) . T) ((-817 (-355)) -12 (|has| |#1| (-817 (-355))) (|has| |#3| (-817 (-355)))) ((-817 (-523)) -12 (|has| |#1| (-817 (-523))) (|has| |#3| (-817 (-523)))) ((-880 |#1| |#2| |#3|) . T) ((-840) |has| |#1| (-840)) ((-964 (-383 (-523))) |has| |#1| (-964 (-383 (-523)))) ((-964 (-523)) |has| |#1| (-964 (-523))) ((-964 |#1|) . T) ((-964 |#3|) . T) ((-979 #0#) |has| |#1| (-37 (-383 (-523)))) ((-979 |#1|) . T) ((-979 $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-158))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1127) |has| |#1| (-840)))
-((-2388 (((-108) |#3| $) 13)) (-2167 (((-3 $ "failed") |#3| (-852)) 23)) (-4211 (((-3 |#3| "failed") |#3| $) 38)) (-3702 (((-108) |#3| $) 16)) (-4050 (((-108) |#3| $) 14)))
-(((-988 |#1| |#2| |#3|) (-10 -8 (-15 -2167 ((-3 |#1| "failed") |#3| (-852))) (-15 -4211 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3702 ((-108) |#3| |#1|)) (-15 -4050 ((-108) |#3| |#1|)) (-15 -2388 ((-108) |#3| |#1|))) (-989 |#2| |#3|) (-13 (-784) (-339)) (-1145 |#2|)) (T -988))
-NIL
-(-10 -8 (-15 -2167 ((-3 |#1| "failed") |#3| (-852))) (-15 -4211 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3702 ((-108) |#3| |#1|)) (-15 -4050 ((-108) |#3| |#1|)) (-15 -2388 ((-108) |#3| |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) |#2| $) 21)) (-2035 (((-523) |#2| $) 22)) (-2167 (((-3 $ "failed") |#2| (-852)) 15)) (-3938 ((|#1| |#2| $ |#1|) 13)) (-4211 (((-3 |#2| "failed") |#2| $) 18)) (-3702 (((-108) |#2| $) 19)) (-4050 (((-108) |#2| $) 20)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3399 ((|#2| $) 17)) (-3976 (((-794) $) 11)) (-2523 ((|#1| |#2| $ |#1|) 14)) (-4057 (((-589 $) |#2|) 16)) (-4037 (((-108) $ $) 6)))
-(((-989 |#1| |#2|) (-129) (-13 (-784) (-339)) (-1145 |t#1|)) (T -989))
-((-2035 (*1 *2 *3 *1) (-12 (-4 *1 (-989 *4 *3)) (-4 *4 (-13 (-784) (-339))) (-4 *3 (-1145 *4)) (-5 *2 (-523)))) (-2388 (*1 *2 *3 *1) (-12 (-4 *1 (-989 *4 *3)) (-4 *4 (-13 (-784) (-339))) (-4 *3 (-1145 *4)) (-5 *2 (-108)))) (-4050 (*1 *2 *3 *1) (-12 (-4 *1 (-989 *4 *3)) (-4 *4 (-13 (-784) (-339))) (-4 *3 (-1145 *4)) (-5 *2 (-108)))) (-3702 (*1 *2 *3 *1) (-12 (-4 *1 (-989 *4 *3)) (-4 *4 (-13 (-784) (-339))) (-4 *3 (-1145 *4)) (-5 *2 (-108)))) (-4211 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-989 *3 *2)) (-4 *3 (-13 (-784) (-339))) (-4 *2 (-1145 *3)))) (-3399 (*1 *2 *1) (-12 (-4 *1 (-989 *3 *2)) (-4 *3 (-13 (-784) (-339))) (-4 *2 (-1145 *3)))) (-4057 (*1 *2 *3) (-12 (-4 *4 (-13 (-784) (-339))) (-4 *3 (-1145 *4)) (-5 *2 (-589 *1)) (-4 *1 (-989 *4 *3)))) (-2167 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-852)) (-4 *4 (-13 (-784) (-339))) (-4 *1 (-989 *4 *2)) (-4 *2 (-1145 *4)))) (-2523 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-989 *2 *3)) (-4 *2 (-13 (-784) (-339))) (-4 *3 (-1145 *2)))) (-3938 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-989 *2 *3)) (-4 *2 (-13 (-784) (-339))) (-4 *3 (-1145 *2)))))
-(-13 (-1016) (-10 -8 (-15 -2035 ((-523) |t#2| $)) (-15 -2388 ((-108) |t#2| $)) (-15 -4050 ((-108) |t#2| $)) (-15 -3702 ((-108) |t#2| $)) (-15 -4211 ((-3 |t#2| "failed") |t#2| $)) (-15 -3399 (|t#2| $)) (-15 -4057 ((-589 $) |t#2|)) (-15 -2167 ((-3 $ "failed") |t#2| (-852))) (-15 -2523 (|t#1| |t#2| $ |t#1|)) (-15 -3938 (|t#1| |t#2| $ |t#1|))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-1359 (((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-589 |#4|) (-589 |#5|) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) (-710)) 96)) (-4181 (((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710)) 56)) (-2398 (((-1174) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-710)) 87)) (-3347 (((-710) (-589 |#4|) (-589 |#5|)) 27)) (-2006 (((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5|) 59) (((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710)) 58) (((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710) (-108)) 60)) (-3720 (((-589 |#5|) (-589 |#4|) (-589 |#5|) (-108) (-108) (-108) (-108) (-108)) 78) (((-589 |#5|) (-589 |#4|) (-589 |#5|) (-108) (-108)) 79)) (-3077 (((-1070) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) 82)) (-2512 (((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-108)) 55)) (-2350 (((-710) (-589 |#4|) (-589 |#5|)) 19)))
-(((-990 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2350 ((-710) (-589 |#4|) (-589 |#5|))) (-15 -3347 ((-710) (-589 |#4|) (-589 |#5|))) (-15 -2512 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-108))) (-15 -4181 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710))) (-15 -4181 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5|)) (-15 -2006 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710) (-108))) (-15 -2006 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710))) (-15 -2006 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5|)) (-15 -3720 ((-589 |#5|) (-589 |#4|) (-589 |#5|) (-108) (-108))) (-15 -3720 ((-589 |#5|) (-589 |#4|) (-589 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -1359 ((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-589 |#4|) (-589 |#5|) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) (-710))) (-15 -3077 ((-1070) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)))) (-15 -2398 ((-1174) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-710)))) (-427) (-732) (-786) (-987 |#1| |#2| |#3|) (-992 |#1| |#2| |#3| |#4|)) (T -990))
-((-2398 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-2 (|:| |val| (-589 *8)) (|:| -2394 *9)))) (-5 *4 (-710)) (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-992 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-1174)) (-5 *1 (-990 *5 *6 *7 *8 *9)))) (-3077 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-589 *7)) (|:| -2394 *8))) (-4 *7 (-987 *4 *5 *6)) (-4 *8 (-992 *4 *5 *6 *7)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-1070)) (-5 *1 (-990 *4 *5 *6 *7 *8)))) (-1359 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-589 *11)) (|:| |todo| (-589 (-2 (|:| |val| *3) (|:| -2394 *11)))))) (-5 *6 (-710)) (-5 *2 (-589 (-2 (|:| |val| (-589 *10)) (|:| -2394 *11)))) (-5 *3 (-589 *10)) (-5 *4 (-589 *11)) (-4 *10 (-987 *7 *8 *9)) (-4 *11 (-992 *7 *8 *9 *10)) (-4 *7 (-427)) (-4 *8 (-732)) (-4 *9 (-786)) (-5 *1 (-990 *7 *8 *9 *10 *11)))) (-3720 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-589 *9)) (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-992 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *1 (-990 *5 *6 *7 *8 *9)))) (-3720 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-589 *9)) (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-992 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *1 (-990 *5 *6 *7 *8 *9)))) (-2006 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-589 *4)) (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4)))))) (-5 *1 (-990 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-2006 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-710)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *3 (-987 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-589 *4)) (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4)))))) (-5 *1 (-990 *6 *7 *8 *3 *4)) (-4 *4 (-992 *6 *7 *8 *3)))) (-2006 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-710)) (-5 *6 (-108)) (-4 *7 (-427)) (-4 *8 (-732)) (-4 *9 (-786)) (-4 *3 (-987 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-589 *4)) (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4)))))) (-5 *1 (-990 *7 *8 *9 *3 *4)) (-4 *4 (-992 *7 *8 *9 *3)))) (-4181 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-589 *4)) (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4)))))) (-5 *1 (-990 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-4181 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-710)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *3 (-987 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-589 *4)) (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4)))))) (-5 *1 (-990 *6 *7 *8 *3 *4)) (-4 *4 (-992 *6 *7 *8 *3)))) (-2512 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-108)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *3 (-987 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-589 *4)) (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4)))))) (-5 *1 (-990 *6 *7 *8 *3 *4)) (-4 *4 (-992 *6 *7 *8 *3)))) (-3347 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *8)) (-5 *4 (-589 *9)) (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-992 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-710)) (-5 *1 (-990 *5 *6 *7 *8 *9)))) (-2350 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *8)) (-5 *4 (-589 *9)) (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-992 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-710)) (-5 *1 (-990 *5 *6 *7 *8 *9)))))
-(-10 -7 (-15 -2350 ((-710) (-589 |#4|) (-589 |#5|))) (-15 -3347 ((-710) (-589 |#4|) (-589 |#5|))) (-15 -2512 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-108))) (-15 -4181 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710))) (-15 -4181 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5|)) (-15 -2006 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710) (-108))) (-15 -2006 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710))) (-15 -2006 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5|)) (-15 -3720 ((-589 |#5|) (-589 |#4|) (-589 |#5|) (-108) (-108))) (-15 -3720 ((-589 |#5|) (-589 |#4|) (-589 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -1359 ((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-589 |#4|) (-589 |#5|) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) (-710))) (-15 -3077 ((-1070) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)))) (-15 -2398 ((-1174) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-710))))
-((-2422 (((-108) |#5| $) 21)) (-4171 (((-108) |#5| $) 24)) (-3004 (((-108) |#5| $) 16) (((-108) $) 45)) (-1625 (((-589 $) |#5| $) NIL) (((-589 $) (-589 |#5|) $) 77) (((-589 $) (-589 |#5|) (-589 $)) 75) (((-589 $) |#5| (-589 $)) 78)) (-1361 (($ $ |#5|) NIL) (((-589 $) |#5| $) NIL) (((-589 $) |#5| (-589 $)) 60) (((-589 $) (-589 |#5|) $) 62) (((-589 $) (-589 |#5|) (-589 $)) 64)) (-1611 (((-589 $) |#5| $) NIL) (((-589 $) |#5| (-589 $)) 54) (((-589 $) (-589 |#5|) $) 56) (((-589 $) (-589 |#5|) (-589 $)) 58)) (-3553 (((-108) |#5| $) 27)))
-(((-991 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1361 ((-589 |#1|) (-589 |#5|) (-589 |#1|))) (-15 -1361 ((-589 |#1|) (-589 |#5|) |#1|)) (-15 -1361 ((-589 |#1|) |#5| (-589 |#1|))) (-15 -1361 ((-589 |#1|) |#5| |#1|)) (-15 -1611 ((-589 |#1|) (-589 |#5|) (-589 |#1|))) (-15 -1611 ((-589 |#1|) (-589 |#5|) |#1|)) (-15 -1611 ((-589 |#1|) |#5| (-589 |#1|))) (-15 -1611 ((-589 |#1|) |#5| |#1|)) (-15 -1625 ((-589 |#1|) |#5| (-589 |#1|))) (-15 -1625 ((-589 |#1|) (-589 |#5|) (-589 |#1|))) (-15 -1625 ((-589 |#1|) (-589 |#5|) |#1|)) (-15 -1625 ((-589 |#1|) |#5| |#1|)) (-15 -4171 ((-108) |#5| |#1|)) (-15 -3004 ((-108) |#1|)) (-15 -3553 ((-108) |#5| |#1|)) (-15 -2422 ((-108) |#5| |#1|)) (-15 -3004 ((-108) |#5| |#1|)) (-15 -1361 (|#1| |#1| |#5|))) (-992 |#2| |#3| |#4| |#5|) (-427) (-732) (-786) (-987 |#2| |#3| |#4|)) (T -991))
-NIL
-(-10 -8 (-15 -1361 ((-589 |#1|) (-589 |#5|) (-589 |#1|))) (-15 -1361 ((-589 |#1|) (-589 |#5|) |#1|)) (-15 -1361 ((-589 |#1|) |#5| (-589 |#1|))) (-15 -1361 ((-589 |#1|) |#5| |#1|)) (-15 -1611 ((-589 |#1|) (-589 |#5|) (-589 |#1|))) (-15 -1611 ((-589 |#1|) (-589 |#5|) |#1|)) (-15 -1611 ((-589 |#1|) |#5| (-589 |#1|))) (-15 -1611 ((-589 |#1|) |#5| |#1|)) (-15 -1625 ((-589 |#1|) |#5| (-589 |#1|))) (-15 -1625 ((-589 |#1|) (-589 |#5|) (-589 |#1|))) (-15 -1625 ((-589 |#1|) (-589 |#5|) |#1|)) (-15 -1625 ((-589 |#1|) |#5| |#1|)) (-15 -4171 ((-108) |#5| |#1|)) (-15 -3004 ((-108) |#1|)) (-15 -3553 ((-108) |#5| |#1|)) (-15 -2422 ((-108) |#5| |#1|)) (-15 -3004 ((-108) |#5| |#1|)) (-15 -1361 (|#1| |#1| |#5|)))
-((-3260 (((-108) $ $) 7)) (-2778 (((-589 (-2 (|:| -3922 $) (|:| -3439 (-589 |#4|)))) (-589 |#4|)) 85)) (-2311 (((-589 $) (-589 |#4|)) 86) (((-589 $) (-589 |#4|) (-108)) 111)) (-3716 (((-589 |#3|) $) 33)) (-2011 (((-108) $) 26)) (-2821 (((-108) $) 17 (|has| |#1| (-515)))) (-3103 (((-108) |#4| $) 101) (((-108) $) 97)) (-4165 ((|#4| |#4| $) 92)) (-3763 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 $))) |#4| $) 126)) (-3400 (((-2 (|:| |under| $) (|:| -1250 $) (|:| |upper| $)) $ |#3|) 27)) (-2282 (((-108) $ (-710)) 44)) (-1299 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4248))) (((-3 |#4| "failed") $ |#3|) 79)) (-1640 (($) 45 T CONST)) (-1619 (((-108) $) 22 (|has| |#1| (-515)))) (-2927 (((-108) $ $) 24 (|has| |#1| (-515)))) (-3685 (((-108) $ $) 23 (|has| |#1| (-515)))) (-2457 (((-108) $) 25 (|has| |#1| (-515)))) (-3021 (((-589 |#4|) (-589 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-2341 (((-589 |#4|) (-589 |#4|) $) 18 (|has| |#1| (-515)))) (-3450 (((-589 |#4|) (-589 |#4|) $) 19 (|has| |#1| (-515)))) (-2898 (((-3 $ "failed") (-589 |#4|)) 36)) (-1996 (($ (-589 |#4|)) 35)) (-3891 (((-3 $ "failed") $) 82)) (-3880 ((|#4| |#4| $) 89)) (-3917 (($ $) 68 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ |#4| $) 67 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4248)))) (-3143 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-515)))) (-3605 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-3058 ((|#4| |#4| $) 87)) (-1830 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4248))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4248))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-3161 (((-2 (|:| -3922 (-589 |#4|)) (|:| -3439 (-589 |#4|))) $) 105)) (-2422 (((-108) |#4| $) 136)) (-4171 (((-108) |#4| $) 133)) (-3004 (((-108) |#4| $) 137) (((-108) $) 134)) (-3133 (((-589 |#4|) $) 52 (|has| $ (-6 -4248)))) (-2407 (((-108) |#4| $) 104) (((-108) $) 103)) (-2694 ((|#3| $) 34)) (-1344 (((-108) $ (-710)) 43)) (-3056 (((-589 |#4|) $) 53 (|has| $ (-6 -4248)))) (-1348 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#4| |#4|) $) 47)) (-4100 (((-589 |#3|) $) 32)) (-2863 (((-108) |#3| $) 31)) (-4042 (((-108) $ (-710)) 42)) (-3841 (((-1070) $) 9)) (-3726 (((-3 |#4| (-589 $)) |#4| |#4| $) 128)) (-3216 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 $))) |#4| |#4| $) 127)) (-2247 (((-3 |#4| "failed") $) 83)) (-2818 (((-589 $) |#4| $) 129)) (-1446 (((-3 (-108) (-589 $)) |#4| $) 132)) (-4226 (((-589 (-2 (|:| |val| (-108)) (|:| -2394 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-1625 (((-589 $) |#4| $) 125) (((-589 $) (-589 |#4|) $) 124) (((-589 $) (-589 |#4|) (-589 $)) 123) (((-589 $) |#4| (-589 $)) 122)) (-2795 (($ |#4| $) 117) (($ (-589 |#4|) $) 116)) (-3403 (((-589 |#4|) $) 107)) (-3761 (((-108) |#4| $) 99) (((-108) $) 95)) (-1728 ((|#4| |#4| $) 90)) (-1454 (((-108) $ $) 110)) (-1916 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-515)))) (-2152 (((-108) |#4| $) 100) (((-108) $) 96)) (-2347 ((|#4| |#4| $) 91)) (-2435 (((-1034) $) 10)) (-3879 (((-3 |#4| "failed") $) 84)) (-2660 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-2594 (((-3 $ "failed") $ |#4|) 78)) (-1361 (($ $ |#4|) 77) (((-589 $) |#4| $) 115) (((-589 $) |#4| (-589 $)) 114) (((-589 $) (-589 |#4|) $) 113) (((-589 $) (-589 |#4|) (-589 $)) 112)) (-2720 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 |#4|) (-589 |#4|)) 59 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-271 |#4|)) 57 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-589 (-271 |#4|))) 56 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))) (-2391 (((-108) $ $) 38)) (-3163 (((-108) $) 41)) (-4055 (($) 40)) (-1487 (((-710) $) 106)) (-2452 (((-710) |#4| $) 54 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) (((-710) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4248)))) (-4124 (($ $) 39)) (-3077 (((-499) $) 69 (|has| |#4| (-564 (-499))))) (-3985 (($ (-589 |#4|)) 60)) (-4135 (($ $ |#3|) 28)) (-1318 (($ $ |#3|) 30)) (-3444 (($ $) 88)) (-2023 (($ $ |#3|) 29)) (-3976 (((-794) $) 11) (((-589 |#4|) $) 37)) (-3221 (((-710) $) 76 (|has| |#3| (-344)))) (-2459 (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-3442 (((-108) $ (-1 (-108) |#4| (-589 |#4|))) 98)) (-1611 (((-589 $) |#4| $) 121) (((-589 $) |#4| (-589 $)) 120) (((-589 $) (-589 |#4|) $) 119) (((-589 $) (-589 |#4|) (-589 $)) 118)) (-1505 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4248)))) (-2969 (((-589 |#3|) $) 81)) (-3553 (((-108) |#4| $) 135)) (-4079 (((-108) |#3| $) 80)) (-4037 (((-108) $ $) 6)) (-1271 (((-710) $) 46 (|has| $ (-6 -4248)))))
-(((-992 |#1| |#2| |#3| |#4|) (-129) (-427) (-732) (-786) (-987 |t#1| |t#2| |t#3|)) (T -992))
-((-3004 (*1 *2 *3 *1) (-12 (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))) (-2422 (*1 *2 *3 *1) (-12 (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))) (-3553 (*1 *2 *3 *1) (-12 (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))) (-3004 (*1 *2 *1) (-12 (-4 *1 (-992 *3 *4 *5 *6)) (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-108)))) (-4171 (*1 *2 *3 *1) (-12 (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))) (-1446 (*1 *2 *3 *1) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-3 (-108) (-589 *1))) (-4 *1 (-992 *4 *5 *6 *3)))) (-4226 (*1 *2 *3 *1) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-589 (-2 (|:| |val| (-108)) (|:| -2394 *1)))) (-4 *1 (-992 *4 *5 *6 *3)))) (-4226 (*1 *2 *3 *1) (-12 (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))) (-2818 (*1 *2 *3 *1) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-589 *1)) (-4 *1 (-992 *4 *5 *6 *3)))) (-3726 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-3 *3 (-589 *1))) (-4 *1 (-992 *4 *5 *6 *3)))) (-3216 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *1)))) (-4 *1 (-992 *4 *5 *6 *3)))) (-3763 (*1 *2 *3 *1) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *1)))) (-4 *1 (-992 *4 *5 *6 *3)))) (-1625 (*1 *2 *3 *1) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-589 *1)) (-4 *1 (-992 *4 *5 *6 *3)))) (-1625 (*1 *2 *3 *1) (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 *1)) (-4 *1 (-992 *4 *5 *6 *7)))) (-1625 (*1 *2 *3 *2) (-12 (-5 *2 (-589 *1)) (-5 *3 (-589 *7)) (-4 *1 (-992 *4 *5 *6 *7)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)))) (-1625 (*1 *2 *3 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)))) (-1611 (*1 *2 *3 *1) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-589 *1)) (-4 *1 (-992 *4 *5 *6 *3)))) (-1611 (*1 *2 *3 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)))) (-1611 (*1 *2 *3 *1) (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 *1)) (-4 *1 (-992 *4 *5 *6 *7)))) (-1611 (*1 *2 *3 *2) (-12 (-5 *2 (-589 *1)) (-5 *3 (-589 *7)) (-4 *1 (-992 *4 *5 *6 *7)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)))) (-2795 (*1 *1 *2 *1) (-12 (-4 *1 (-992 *3 *4 *5 *2)) (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))) (-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-589 *6)) (-4 *1 (-992 *3 *4 *5 *6)) (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)))) (-1361 (*1 *2 *3 *1) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-589 *1)) (-4 *1 (-992 *4 *5 *6 *3)))) (-1361 (*1 *2 *3 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)))) (-1361 (*1 *2 *3 *1) (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 *1)) (-4 *1 (-992 *4 *5 *6 *7)))) (-1361 (*1 *2 *3 *2) (-12 (-5 *2 (-589 *1)) (-5 *3 (-589 *7)) (-4 *1 (-992 *4 *5 *6 *7)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)))) (-2311 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-589 *1)) (-4 *1 (-992 *5 *6 *7 *8)))))
-(-13 (-1117 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-15 -3004 ((-108) |t#4| $)) (-15 -2422 ((-108) |t#4| $)) (-15 -3553 ((-108) |t#4| $)) (-15 -3004 ((-108) $)) (-15 -4171 ((-108) |t#4| $)) (-15 -1446 ((-3 (-108) (-589 $)) |t#4| $)) (-15 -4226 ((-589 (-2 (|:| |val| (-108)) (|:| -2394 $))) |t#4| $)) (-15 -4226 ((-108) |t#4| $)) (-15 -2818 ((-589 $) |t#4| $)) (-15 -3726 ((-3 |t#4| (-589 $)) |t#4| |t#4| $)) (-15 -3216 ((-589 (-2 (|:| |val| |t#4|) (|:| -2394 $))) |t#4| |t#4| $)) (-15 -3763 ((-589 (-2 (|:| |val| |t#4|) (|:| -2394 $))) |t#4| $)) (-15 -1625 ((-589 $) |t#4| $)) (-15 -1625 ((-589 $) (-589 |t#4|) $)) (-15 -1625 ((-589 $) (-589 |t#4|) (-589 $))) (-15 -1625 ((-589 $) |t#4| (-589 $))) (-15 -1611 ((-589 $) |t#4| $)) (-15 -1611 ((-589 $) |t#4| (-589 $))) (-15 -1611 ((-589 $) (-589 |t#4|) $)) (-15 -1611 ((-589 $) (-589 |t#4|) (-589 $))) (-15 -2795 ($ |t#4| $)) (-15 -2795 ($ (-589 |t#4|) $)) (-15 -1361 ((-589 $) |t#4| $)) (-15 -1361 ((-589 $) |t#4| (-589 $))) (-15 -1361 ((-589 $) (-589 |t#4|) $)) (-15 -1361 ((-589 $) (-589 |t#4|) (-589 $))) (-15 -2311 ((-589 $) (-589 |t#4|) (-108)))))
-(((-33) . T) ((-97) . T) ((-563 (-589 |#4|)) . T) ((-563 (-794)) . T) ((-140 |#4|) . T) ((-564 (-499)) |has| |#4| (-564 (-499))) ((-286 |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))) ((-462 |#4|) . T) ((-484 |#4| |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))) ((-905 |#1| |#2| |#3| |#4|) . T) ((-1016) . T) ((-1117 |#1| |#2| |#3| |#4|) . T) ((-1123) . T))
-((-3017 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#5|) 81)) (-3043 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5|) 113)) (-1691 (((-589 |#5|) |#4| |#5|) 70)) (-2961 (((-589 (-2 (|:| |val| (-108)) (|:| -2394 |#5|))) |#4| |#5|) 46) (((-108) |#4| |#5|) 53)) (-3437 (((-1174)) 37)) (-2103 (((-1174)) 26)) (-3798 (((-1174) (-1070) (-1070) (-1070)) 33)) (-2867 (((-1174) (-1070) (-1070) (-1070)) 22)) (-3121 (((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) |#4| |#4| |#5|) 96)) (-2218 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) |#3| (-108)) 107) (((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5| (-108) (-108)) 50)) (-1754 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5|) 102)))
-(((-993 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2867 ((-1174) (-1070) (-1070) (-1070))) (-15 -2103 ((-1174))) (-15 -3798 ((-1174) (-1070) (-1070) (-1070))) (-15 -3437 ((-1174))) (-15 -3121 ((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) |#4| |#4| |#5|)) (-15 -2218 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -2218 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) |#3| (-108))) (-15 -1754 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5|)) (-15 -3043 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5|)) (-15 -2961 ((-108) |#4| |#5|)) (-15 -2961 ((-589 (-2 (|:| |val| (-108)) (|:| -2394 |#5|))) |#4| |#5|)) (-15 -1691 ((-589 |#5|) |#4| |#5|)) (-15 -3017 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#5|))) (-427) (-732) (-786) (-987 |#1| |#2| |#3|) (-992 |#1| |#2| |#3| |#4|)) (T -993))
-((-3017 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4)))) (-5 *1 (-993 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-1691 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 *4)) (-5 *1 (-993 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-2961 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 (-2 (|:| |val| (-108)) (|:| -2394 *4)))) (-5 *1 (-993 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-2961 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-993 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-3043 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4)))) (-5 *1 (-993 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-1754 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4)))) (-5 *1 (-993 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-2218 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-589 (-2 (|:| |val| (-589 *8)) (|:| -2394 *9)))) (-5 *5 (-108)) (-4 *8 (-987 *6 *7 *4)) (-4 *9 (-992 *6 *7 *4 *8)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *4 (-786)) (-5 *2 (-589 (-2 (|:| |val| *8) (|:| -2394 *9)))) (-5 *1 (-993 *6 *7 *4 *8 *9)))) (-2218 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-108)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *3 (-987 *6 *7 *8)) (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4)))) (-5 *1 (-993 *6 *7 *8 *3 *4)) (-4 *4 (-992 *6 *7 *8 *3)))) (-3121 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4)))) (-5 *1 (-993 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-3437 (*1 *2) (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-1174)) (-5 *1 (-993 *3 *4 *5 *6 *7)) (-4 *7 (-992 *3 *4 *5 *6)))) (-3798 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1070)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-1174)) (-5 *1 (-993 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))) (-2103 (*1 *2) (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-1174)) (-5 *1 (-993 *3 *4 *5 *6 *7)) (-4 *7 (-992 *3 *4 *5 *6)))) (-2867 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1070)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-1174)) (-5 *1 (-993 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2867 ((-1174) (-1070) (-1070) (-1070))) (-15 -2103 ((-1174))) (-15 -3798 ((-1174) (-1070) (-1070) (-1070))) (-15 -3437 ((-1174))) (-15 -3121 ((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) |#4| |#4| |#5|)) (-15 -2218 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -2218 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) |#3| (-108))) (-15 -1754 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5|)) (-15 -3043 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5|)) (-15 -2961 ((-108) |#4| |#5|)) (-15 -2961 ((-589 (-2 (|:| |val| (-108)) (|:| -2394 |#5|))) |#4| |#5|)) (-15 -1691 ((-589 |#5|) |#4| |#5|)) (-15 -3017 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#5|)))
-((-3260 (((-108) $ $) NIL)) (-1522 (((-1087) $) 8)) (-3841 (((-1070) $) 16)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 11)) (-4037 (((-108) $ $) 13)))
-(((-994 |#1|) (-13 (-1016) (-10 -8 (-15 -1522 ((-1087) $)))) (-1087)) (T -994))
-((-1522 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-994 *3)) (-14 *3 *2))))
-(-13 (-1016) (-10 -8 (-15 -1522 ((-1087) $))))
-((-3260 (((-108) $ $) NIL)) (-2430 (($ $ (-589 (-1087)) (-1 (-108) (-589 |#3|))) 33)) (-1329 (($ |#3| |#3|) 22) (($ |#3| |#3| (-589 (-1087))) 20)) (-2248 ((|#3| $) 13)) (-2898 (((-3 (-271 |#3|) "failed") $) 58)) (-1996 (((-271 |#3|) $) NIL)) (-3529 (((-589 (-1087)) $) 16)) (-3129 (((-823 |#1|) $) 11)) (-2239 ((|#3| $) 12)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-1502 ((|#3| $ |#3|) 27) ((|#3| $ |#3| (-852)) 39)) (-3976 (((-794) $) 86) (($ (-271 |#3|)) 21)) (-4037 (((-108) $ $) 36)))
-(((-995 |#1| |#2| |#3|) (-13 (-1016) (-263 |#3| |#3|) (-964 (-271 |#3|)) (-10 -8 (-15 -1329 ($ |#3| |#3|)) (-15 -1329 ($ |#3| |#3| (-589 (-1087)))) (-15 -2430 ($ $ (-589 (-1087)) (-1 (-108) (-589 |#3|)))) (-15 -3129 ((-823 |#1|) $)) (-15 -2239 (|#3| $)) (-15 -2248 (|#3| $)) (-15 -1502 (|#3| $ |#3| (-852))) (-15 -3529 ((-589 (-1087)) $)))) (-1016) (-13 (-973) (-817 |#1|) (-786) (-564 (-823 |#1|))) (-13 (-406 |#2|) (-817 |#1|) (-564 (-823 |#1|)))) (T -995))
-((-1329 (*1 *1 *2 *2) (-12 (-4 *3 (-1016)) (-4 *4 (-13 (-973) (-817 *3) (-786) (-564 (-823 *3)))) (-5 *1 (-995 *3 *4 *2)) (-4 *2 (-13 (-406 *4) (-817 *3) (-564 (-823 *3)))))) (-1329 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-589 (-1087))) (-4 *4 (-1016)) (-4 *5 (-13 (-973) (-817 *4) (-786) (-564 (-823 *4)))) (-5 *1 (-995 *4 *5 *2)) (-4 *2 (-13 (-406 *5) (-817 *4) (-564 (-823 *4)))))) (-2430 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 (-1087))) (-5 *3 (-1 (-108) (-589 *6))) (-4 *6 (-13 (-406 *5) (-817 *4) (-564 (-823 *4)))) (-4 *4 (-1016)) (-4 *5 (-13 (-973) (-817 *4) (-786) (-564 (-823 *4)))) (-5 *1 (-995 *4 *5 *6)))) (-3129 (*1 *2 *1) (-12 (-4 *3 (-1016)) (-4 *4 (-13 (-973) (-817 *3) (-786) (-564 *2))) (-5 *2 (-823 *3)) (-5 *1 (-995 *3 *4 *5)) (-4 *5 (-13 (-406 *4) (-817 *3) (-564 *2))))) (-2239 (*1 *2 *1) (-12 (-4 *3 (-1016)) (-4 *2 (-13 (-406 *4) (-817 *3) (-564 (-823 *3)))) (-5 *1 (-995 *3 *4 *2)) (-4 *4 (-13 (-973) (-817 *3) (-786) (-564 (-823 *3)))))) (-2248 (*1 *2 *1) (-12 (-4 *3 (-1016)) (-4 *2 (-13 (-406 *4) (-817 *3) (-564 (-823 *3)))) (-5 *1 (-995 *3 *4 *2)) (-4 *4 (-13 (-973) (-817 *3) (-786) (-564 (-823 *3)))))) (-1502 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-852)) (-4 *4 (-1016)) (-4 *5 (-13 (-973) (-817 *4) (-786) (-564 (-823 *4)))) (-5 *1 (-995 *4 *5 *2)) (-4 *2 (-13 (-406 *5) (-817 *4) (-564 (-823 *4)))))) (-3529 (*1 *2 *1) (-12 (-4 *3 (-1016)) (-4 *4 (-13 (-973) (-817 *3) (-786) (-564 (-823 *3)))) (-5 *2 (-589 (-1087))) (-5 *1 (-995 *3 *4 *5)) (-4 *5 (-13 (-406 *4) (-817 *3) (-564 (-823 *3)))))))
-(-13 (-1016) (-263 |#3| |#3|) (-964 (-271 |#3|)) (-10 -8 (-15 -1329 ($ |#3| |#3|)) (-15 -1329 ($ |#3| |#3| (-589 (-1087)))) (-15 -2430 ($ $ (-589 (-1087)) (-1 (-108) (-589 |#3|)))) (-15 -3129 ((-823 |#1|) $)) (-15 -2239 (|#3| $)) (-15 -2248 (|#3| $)) (-15 -1502 (|#3| $ |#3| (-852))) (-15 -3529 ((-589 (-1087)) $))))
-((-3260 (((-108) $ $) NIL)) (-2406 (($ (-589 (-995 |#1| |#2| |#3|))) 13)) (-2808 (((-589 (-995 |#1| |#2| |#3|)) $) 20)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-1502 ((|#3| $ |#3|) 23) ((|#3| $ |#3| (-852)) 26)) (-3976 (((-794) $) 16)) (-4037 (((-108) $ $) 19)))
-(((-996 |#1| |#2| |#3|) (-13 (-1016) (-263 |#3| |#3|) (-10 -8 (-15 -2406 ($ (-589 (-995 |#1| |#2| |#3|)))) (-15 -2808 ((-589 (-995 |#1| |#2| |#3|)) $)) (-15 -1502 (|#3| $ |#3| (-852))))) (-1016) (-13 (-973) (-817 |#1|) (-786) (-564 (-823 |#1|))) (-13 (-406 |#2|) (-817 |#1|) (-564 (-823 |#1|)))) (T -996))
-((-2406 (*1 *1 *2) (-12 (-5 *2 (-589 (-995 *3 *4 *5))) (-4 *3 (-1016)) (-4 *4 (-13 (-973) (-817 *3) (-786) (-564 (-823 *3)))) (-4 *5 (-13 (-406 *4) (-817 *3) (-564 (-823 *3)))) (-5 *1 (-996 *3 *4 *5)))) (-2808 (*1 *2 *1) (-12 (-4 *3 (-1016)) (-4 *4 (-13 (-973) (-817 *3) (-786) (-564 (-823 *3)))) (-5 *2 (-589 (-995 *3 *4 *5))) (-5 *1 (-996 *3 *4 *5)) (-4 *5 (-13 (-406 *4) (-817 *3) (-564 (-823 *3)))))) (-1502 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-852)) (-4 *4 (-1016)) (-4 *5 (-13 (-973) (-817 *4) (-786) (-564 (-823 *4)))) (-5 *1 (-996 *4 *5 *2)) (-4 *2 (-13 (-406 *5) (-817 *4) (-564 (-823 *4)))))))
-(-13 (-1016) (-263 |#3| |#3|) (-10 -8 (-15 -2406 ($ (-589 (-995 |#1| |#2| |#3|)))) (-15 -2808 ((-589 (-995 |#1| |#2| |#3|)) $)) (-15 -1502 (|#3| $ |#3| (-852)))))
-((-3124 (((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)) (-108) (-108)) 75) (((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|))) 77) (((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)) (-108)) 76)))
-(((-997 |#1| |#2|) (-10 -7 (-15 -3124 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)) (-108))) (-15 -3124 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)))) (-15 -3124 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)) (-108) (-108)))) (-13 (-284) (-136)) (-589 (-1087))) (T -997))
-((-3124 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-284) (-136))) (-5 *2 (-589 (-2 (|:| -2715 (-1083 *5)) (|:| -2411 (-589 (-883 *5)))))) (-5 *1 (-997 *5 *6)) (-5 *3 (-589 (-883 *5))) (-14 *6 (-589 (-1087))))) (-3124 (*1 *2 *3) (-12 (-4 *4 (-13 (-284) (-136))) (-5 *2 (-589 (-2 (|:| -2715 (-1083 *4)) (|:| -2411 (-589 (-883 *4)))))) (-5 *1 (-997 *4 *5)) (-5 *3 (-589 (-883 *4))) (-14 *5 (-589 (-1087))))) (-3124 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-284) (-136))) (-5 *2 (-589 (-2 (|:| -2715 (-1083 *5)) (|:| -2411 (-589 (-883 *5)))))) (-5 *1 (-997 *5 *6)) (-5 *3 (-589 (-883 *5))) (-14 *6 (-589 (-1087))))))
-(-10 -7 (-15 -3124 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)) (-108))) (-15 -3124 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)))) (-15 -3124 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)) (-108) (-108))))
-((-3573 (((-394 |#3|) |#3|) 18)))
-(((-998 |#1| |#2| |#3|) (-10 -7 (-15 -3573 ((-394 |#3|) |#3|))) (-1145 (-383 (-523))) (-13 (-339) (-136) (-664 (-383 (-523)) |#1|)) (-1145 |#2|)) (T -998))
-((-3573 (*1 *2 *3) (-12 (-4 *4 (-1145 (-383 (-523)))) (-4 *5 (-13 (-339) (-136) (-664 (-383 (-523)) *4))) (-5 *2 (-394 *3)) (-5 *1 (-998 *4 *5 *3)) (-4 *3 (-1145 *5)))))
-(-10 -7 (-15 -3573 ((-394 |#3|) |#3|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 126)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-339)))) (-3950 (($ $) NIL (|has| |#1| (-339)))) (-3226 (((-108) $) NIL (|has| |#1| (-339)))) (-1711 (((-629 |#1|) (-1169 $)) NIL) (((-629 |#1|)) 115)) (-4131 ((|#1| $) 119)) (-2794 (((-1097 (-852) (-710)) (-523)) NIL (|has| |#1| (-325)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL (|has| |#1| (-339)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3684 (((-108) $ $) NIL (|has| |#1| (-339)))) (-3843 (((-710)) 40 (|has| |#1| (-344)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) NIL)) (-1996 (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) NIL)) (-3322 (($ (-1169 |#1|) (-1169 $)) NIL) (($ (-1169 |#1|)) 43)) (-1829 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-325)))) (-2501 (($ $ $) NIL (|has| |#1| (-339)))) (-2545 (((-629 |#1|) $ (-1169 $)) NIL) (((-629 |#1|) $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) 106) (((-629 |#1|) (-629 $)) 101)) (-1830 (($ |#2|) 61) (((-3 $ "failed") (-383 |#2|)) NIL (|has| |#1| (-339)))) (-4211 (((-3 $ "failed") $) NIL)) (-2262 (((-852)) 77)) (-3461 (($) 44 (|has| |#1| (-344)))) (-2486 (($ $ $) NIL (|has| |#1| (-339)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#1| (-339)))) (-2097 (($) NIL (|has| |#1| (-325)))) (-1200 (((-108) $) NIL (|has| |#1| (-325)))) (-1419 (($ $ (-710)) NIL (|has| |#1| (-325))) (($ $) NIL (|has| |#1| (-325)))) (-1330 (((-108) $) NIL (|has| |#1| (-339)))) (-1500 (((-852) $) NIL (|has| |#1| (-325))) (((-772 (-852)) $) NIL (|has| |#1| (-325)))) (-3482 (((-108) $) NIL)) (-2765 ((|#1| $) NIL)) (-1289 (((-3 $ "failed") $) NIL (|has| |#1| (-325)))) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-2277 ((|#2| $) 84 (|has| |#1| (-339)))) (-4076 (((-852) $) 131 (|has| |#1| (-344)))) (-1816 ((|#2| $) 58)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL (|has| |#1| (-339)))) (-4105 (($) NIL (|has| |#1| (-325)) CONST)) (-2557 (($ (-852)) 125 (|has| |#1| (-344)))) (-2435 (((-1034) $) NIL)) (-4102 (($) 121)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-339)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3428 (((-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))) NIL (|has| |#1| (-325)))) (-3573 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-2469 (((-3 $ "failed") $ $) NIL (|has| |#1| (-339)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-3087 (((-710) $) NIL (|has| |#1| (-339)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-4053 ((|#1| (-1169 $)) NIL) ((|#1|) 109)) (-2041 (((-710) $) NIL (|has| |#1| (-325))) (((-3 (-710) "failed") $ $) NIL (|has| |#1| (-325)))) (-4024 (($ $) NIL (-3255 (-12 (|has| |#1| (-211)) (|has| |#1| (-339))) (|has| |#1| (-325)))) (($ $ (-710)) NIL (-3255 (-12 (|has| |#1| (-211)) (|has| |#1| (-339))) (|has| |#1| (-325)))) (($ $ (-1087)) NIL (-12 (|has| |#1| (-339)) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-339)) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-339)) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-339)) (|has| |#1| (-831 (-1087))))) (($ $ (-1 |#1| |#1|) (-710)) NIL (|has| |#1| (-339))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-339)))) (-1718 (((-629 |#1|) (-1169 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-339)))) (-3399 ((|#2|) 73)) (-2315 (($) NIL (|has| |#1| (-325)))) (-2411 (((-1169 |#1|) $ (-1169 $)) 89) (((-629 |#1|) (-1169 $) (-1169 $)) NIL) (((-1169 |#1|) $) 71) (((-629 |#1|) (-1169 $)) 85)) (-3077 (((-1169 |#1|) $) NIL) (($ (-1169 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (|has| |#1| (-325)))) (-3976 (((-794) $) 57) (($ (-523)) 53) (($ |#1|) 54) (($ $) NIL (|has| |#1| (-339))) (($ (-383 (-523))) NIL (-3255 (|has| |#1| (-339)) (|has| |#1| (-964 (-383 (-523))))))) (-2301 (($ $) NIL (|has| |#1| (-325))) (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1606 ((|#2| $) 82)) (-1698 (((-710)) 75)) (-2922 (((-1169 $)) 81)) (-3842 (((-108) $ $) NIL (|has| |#1| (-339)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339)))) (-1428 (($) 30 T CONST)) (-1440 (($) 19 T CONST)) (-1943 (($ $) NIL (-3255 (-12 (|has| |#1| (-211)) (|has| |#1| (-339))) (|has| |#1| (-325)))) (($ $ (-710)) NIL (-3255 (-12 (|has| |#1| (-211)) (|has| |#1| (-339))) (|has| |#1| (-325)))) (($ $ (-1087)) NIL (-12 (|has| |#1| (-339)) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-339)) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-339)) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-339)) (|has| |#1| (-831 (-1087))))) (($ $ (-1 |#1| |#1|) (-710)) NIL (|has| |#1| (-339))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-339)))) (-4037 (((-108) $ $) 63)) (-4125 (($ $ $) NIL (|has| |#1| (-339)))) (-4115 (($ $) 67) (($ $ $) NIL)) (-4103 (($ $ $) 65)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339)))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 51) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 48) (($ (-383 (-523)) $) NIL (|has| |#1| (-339))) (($ $ (-383 (-523))) NIL (|has| |#1| (-339)))))
-(((-999 |#1| |#2| |#3|) (-664 |#1| |#2|) (-158) (-1145 |#1|) |#2|) (T -999))
-NIL
-(-664 |#1| |#2|)
-((-3573 (((-394 |#3|) |#3|) 19)))
-(((-1000 |#1| |#2| |#3|) (-10 -7 (-15 -3573 ((-394 |#3|) |#3|))) (-1145 (-383 (-883 (-523)))) (-13 (-339) (-136) (-664 (-383 (-883 (-523))) |#1|)) (-1145 |#2|)) (T -1000))
-((-3573 (*1 *2 *3) (-12 (-4 *4 (-1145 (-383 (-883 (-523))))) (-4 *5 (-13 (-339) (-136) (-664 (-383 (-883 (-523))) *4))) (-5 *2 (-394 *3)) (-5 *1 (-1000 *4 *5 *3)) (-4 *3 (-1145 *5)))))
-(-10 -7 (-15 -3573 ((-394 |#3|) |#3|)))
-((-3260 (((-108) $ $) NIL)) (-3268 (($ $ $) 14)) (-2644 (($ $ $) 15)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3055 (($) 6)) (-3077 (((-1087) $) 18)) (-3976 (((-794) $) 12)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 13)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 8)))
-(((-1001) (-13 (-786) (-10 -8 (-15 -3055 ($)) (-15 -3077 ((-1087) $))))) (T -1001))
-((-3055 (*1 *1) (-5 *1 (-1001))) (-3077 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-1001)))))
-(-13 (-786) (-10 -8 (-15 -3055 ($)) (-15 -3077 ((-1087) $))))
-((-2441 ((|#1| |#1| (-1 (-523) |#1| |#1|)) 24) ((|#1| |#1| (-1 (-108) |#1|)) 20)) (-1814 (((-1174)) 15)) (-2488 (((-589 |#1|)) 9)))
-(((-1002 |#1|) (-10 -7 (-15 -1814 ((-1174))) (-15 -2488 ((-589 |#1|))) (-15 -2441 (|#1| |#1| (-1 (-108) |#1|))) (-15 -2441 (|#1| |#1| (-1 (-523) |#1| |#1|)))) (-125)) (T -1002))
-((-2441 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-523) *2 *2)) (-4 *2 (-125)) (-5 *1 (-1002 *2)))) (-2441 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *2)) (-4 *2 (-125)) (-5 *1 (-1002 *2)))) (-2488 (*1 *2) (-12 (-5 *2 (-589 *3)) (-5 *1 (-1002 *3)) (-4 *3 (-125)))) (-1814 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-1002 *3)) (-4 *3 (-125)))))
-(-10 -7 (-15 -1814 ((-1174))) (-15 -2488 ((-589 |#1|))) (-15 -2441 (|#1| |#1| (-1 (-108) |#1|))) (-15 -2441 (|#1| |#1| (-1 (-523) |#1| |#1|))))
-((-2392 (($ (-104) $) 15)) (-1460 (((-3 (-104) "failed") (-1087) $) 14)) (-4055 (($) 6)) (-3105 (($) 16)) (-2498 (($) 17)) (-1464 (((-589 (-160)) $) 9)) (-3976 (((-794) $) 20)))
-(((-1003) (-13 (-563 (-794)) (-10 -8 (-15 -4055 ($)) (-15 -1464 ((-589 (-160)) $)) (-15 -1460 ((-3 (-104) "failed") (-1087) $)) (-15 -2392 ($ (-104) $)) (-15 -3105 ($)) (-15 -2498 ($))))) (T -1003))
-((-4055 (*1 *1) (-5 *1 (-1003))) (-1464 (*1 *2 *1) (-12 (-5 *2 (-589 (-160))) (-5 *1 (-1003)))) (-1460 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1087)) (-5 *2 (-104)) (-5 *1 (-1003)))) (-2392 (*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-1003)))) (-3105 (*1 *1) (-5 *1 (-1003))) (-2498 (*1 *1) (-5 *1 (-1003))))
-(-13 (-563 (-794)) (-10 -8 (-15 -4055 ($)) (-15 -1464 ((-589 (-160)) $)) (-15 -1460 ((-3 (-104) "failed") (-1087) $)) (-15 -2392 ($ (-104) $)) (-15 -3105 ($)) (-15 -2498 ($))))
-((-2279 (((-1169 (-629 |#1|)) (-589 (-629 |#1|))) 42) (((-1169 (-629 (-883 |#1|))) (-589 (-1087)) (-629 (-883 |#1|))) 63) (((-1169 (-629 (-383 (-883 |#1|)))) (-589 (-1087)) (-629 (-383 (-883 |#1|)))) 79)) (-2411 (((-1169 |#1|) (-629 |#1|) (-589 (-629 |#1|))) 36)))
-(((-1004 |#1|) (-10 -7 (-15 -2279 ((-1169 (-629 (-383 (-883 |#1|)))) (-589 (-1087)) (-629 (-383 (-883 |#1|))))) (-15 -2279 ((-1169 (-629 (-883 |#1|))) (-589 (-1087)) (-629 (-883 |#1|)))) (-15 -2279 ((-1169 (-629 |#1|)) (-589 (-629 |#1|)))) (-15 -2411 ((-1169 |#1|) (-629 |#1|) (-589 (-629 |#1|))))) (-339)) (T -1004))
-((-2411 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-629 *5))) (-5 *3 (-629 *5)) (-4 *5 (-339)) (-5 *2 (-1169 *5)) (-5 *1 (-1004 *5)))) (-2279 (*1 *2 *3) (-12 (-5 *3 (-589 (-629 *4))) (-4 *4 (-339)) (-5 *2 (-1169 (-629 *4))) (-5 *1 (-1004 *4)))) (-2279 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-1087))) (-4 *5 (-339)) (-5 *2 (-1169 (-629 (-883 *5)))) (-5 *1 (-1004 *5)) (-5 *4 (-629 (-883 *5))))) (-2279 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-1087))) (-4 *5 (-339)) (-5 *2 (-1169 (-629 (-383 (-883 *5))))) (-5 *1 (-1004 *5)) (-5 *4 (-629 (-383 (-883 *5)))))))
-(-10 -7 (-15 -2279 ((-1169 (-629 (-383 (-883 |#1|)))) (-589 (-1087)) (-629 (-383 (-883 |#1|))))) (-15 -2279 ((-1169 (-629 (-883 |#1|))) (-589 (-1087)) (-629 (-883 |#1|)))) (-15 -2279 ((-1169 (-629 |#1|)) (-589 (-629 |#1|)))) (-15 -2411 ((-1169 |#1|) (-629 |#1|) (-589 (-629 |#1|)))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-4038 (((-589 (-710)) $) NIL) (((-589 (-710)) $ (-1087)) NIL)) (-1255 (((-710) $) NIL) (((-710) $ (-1087)) NIL)) (-3716 (((-589 (-1006 (-1087))) $) NIL)) (-3540 (((-1083 $) $ (-1006 (-1087))) NIL) (((-1083 |#1|) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-2862 (((-710) $) NIL) (((-710) $ (-589 (-1006 (-1087)))) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3763 (($ $) NIL (|has| |#1| (-427)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-2089 (($ $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-1006 (-1087)) "failed") $) NIL) (((-3 (-1087) "failed") $) NIL) (((-3 (-1039 |#1| (-1087)) "failed") $) NIL)) (-1996 ((|#1| $) NIL) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-1006 (-1087)) $) NIL) (((-1087) $) NIL) (((-1039 |#1| (-1087)) $) NIL)) (-2210 (($ $ $ (-1006 (-1087))) NIL (|has| |#1| (-158)))) (-3142 (($ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) NIL) (((-629 |#1|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2213 (($ $) NIL (|has| |#1| (-427))) (($ $ (-1006 (-1087))) NIL (|has| |#1| (-427)))) (-3127 (((-589 $) $) NIL)) (-1330 (((-108) $) NIL (|has| |#1| (-840)))) (-2067 (($ $ |#1| (-495 (-1006 (-1087))) $) NIL)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| (-1006 (-1087)) (-817 (-355))) (|has| |#1| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| (-1006 (-1087)) (-817 (-523))) (|has| |#1| (-817 (-523)))))) (-1500 (((-710) $ (-1087)) NIL) (((-710) $) NIL)) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) NIL)) (-3706 (($ (-1083 |#1|) (-1006 (-1087))) NIL) (($ (-1083 $) (-1006 (-1087))) NIL)) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-495 (-1006 (-1087)))) NIL) (($ $ (-1006 (-1087)) (-710)) NIL) (($ $ (-589 (-1006 (-1087))) (-589 (-710))) NIL)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ (-1006 (-1087))) NIL)) (-2140 (((-495 (-1006 (-1087))) $) NIL) (((-710) $ (-1006 (-1087))) NIL) (((-589 (-710)) $ (-589 (-1006 (-1087)))) NIL)) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3927 (($ (-1 (-495 (-1006 (-1087))) (-495 (-1006 (-1087)))) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-1647 (((-1 $ (-710)) (-1087)) NIL) (((-1 $ (-710)) $) NIL (|has| |#1| (-211)))) (-1949 (((-3 (-1006 (-1087)) "failed") $) NIL)) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-2298 (((-1006 (-1087)) $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-3841 (((-1070) $) NIL)) (-2522 (((-108) $) NIL)) (-3818 (((-3 (-589 $) "failed") $) NIL)) (-1973 (((-3 (-589 $) "failed") $) NIL)) (-3719 (((-3 (-2 (|:| |var| (-1006 (-1087))) (|:| -3262 (-710))) "failed") $) NIL)) (-4182 (($ $) NIL)) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) NIL)) (-3095 ((|#1| $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-427)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3573 (((-394 $) $) NIL (|has| |#1| (-840)))) (-2469 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-515)))) (-1349 (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-1006 (-1087)) |#1|) NIL) (($ $ (-589 (-1006 (-1087))) (-589 |#1|)) NIL) (($ $ (-1006 (-1087)) $) NIL) (($ $ (-589 (-1006 (-1087))) (-589 $)) NIL) (($ $ (-1087) $) NIL (|has| |#1| (-211))) (($ $ (-589 (-1087)) (-589 $)) NIL (|has| |#1| (-211))) (($ $ (-1087) |#1|) NIL (|has| |#1| (-211))) (($ $ (-589 (-1087)) (-589 |#1|)) NIL (|has| |#1| (-211)))) (-4053 (($ $ (-1006 (-1087))) NIL (|has| |#1| (-158)))) (-4024 (($ $ (-1006 (-1087))) NIL) (($ $ (-589 (-1006 (-1087)))) NIL) (($ $ (-1006 (-1087)) (-710)) NIL) (($ $ (-589 (-1006 (-1087))) (-589 (-710))) NIL) (($ $) NIL (|has| |#1| (-211))) (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1703 (((-589 (-1087)) $) NIL)) (-1487 (((-495 (-1006 (-1087))) $) NIL) (((-710) $ (-1006 (-1087))) NIL) (((-589 (-710)) $ (-589 (-1006 (-1087)))) NIL) (((-710) $ (-1087)) NIL)) (-3077 (((-823 (-355)) $) NIL (-12 (|has| (-1006 (-1087)) (-564 (-823 (-355)))) (|has| |#1| (-564 (-823 (-355)))))) (((-823 (-523)) $) NIL (-12 (|has| (-1006 (-1087)) (-564 (-823 (-523)))) (|has| |#1| (-564 (-823 (-523)))))) (((-499) $) NIL (-12 (|has| (-1006 (-1087)) (-564 (-499))) (|has| |#1| (-564 (-499)))))) (-2267 ((|#1| $) NIL (|has| |#1| (-427))) (($ $ (-1006 (-1087))) NIL (|has| |#1| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#1| (-840))))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#1|) NIL) (($ (-1006 (-1087))) NIL) (($ (-1087)) NIL) (($ (-1039 |#1| (-1087))) NIL) (($ (-383 (-523))) NIL (-3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-964 (-383 (-523)))))) (($ $) NIL (|has| |#1| (-515)))) (-1639 (((-589 |#1|) $) NIL)) (-1234 ((|#1| $ (-495 (-1006 (-1087)))) NIL) (($ $ (-1006 (-1087)) (-710)) NIL) (($ $ (-589 (-1006 (-1087))) (-589 (-710))) NIL)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#1| (-840))) (|has| |#1| (-134))))) (-1698 (((-710)) NIL)) (-2656 (($ $ $ (-710)) NIL (|has| |#1| (-158)))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ (-1006 (-1087))) NIL) (($ $ (-589 (-1006 (-1087)))) NIL) (($ $ (-1006 (-1087)) (-710)) NIL) (($ $ (-589 (-1006 (-1087))) (-589 (-710))) NIL) (($ $) NIL (|has| |#1| (-211))) (($ $ (-710)) NIL (|has| |#1| (-211))) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-1005 |#1|) (-13 (-230 |#1| (-1087) (-1006 (-1087)) (-495 (-1006 (-1087)))) (-964 (-1039 |#1| (-1087)))) (-973)) (T -1005))
-NIL
-(-13 (-230 |#1| (-1087) (-1006 (-1087)) (-495 (-1006 (-1087)))) (-964 (-1039 |#1| (-1087))))
-((-3260 (((-108) $ $) NIL)) (-1255 (((-710) $) NIL)) (-2354 ((|#1| $) 10)) (-2898 (((-3 |#1| "failed") $) NIL)) (-1996 ((|#1| $) NIL)) (-1500 (((-710) $) 11)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-1647 (($ |#1| (-710)) 9)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-4024 (($ $) NIL) (($ $ (-710)) NIL)) (-3976 (((-794) $) NIL) (($ |#1|) NIL)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 15)))
-(((-1006 |#1|) (-243 |#1|) (-786)) (T -1006))
-NIL
-(-243 |#1|)
-((-3015 (((-589 |#2|) (-1 |#2| |#1|) (-1011 |#1|)) 24 (|has| |#1| (-784))) (((-1011 |#2|) (-1 |#2| |#1|) (-1011 |#1|)) 14)))
-(((-1007 |#1| |#2|) (-10 -7 (-15 -3015 ((-1011 |#2|) (-1 |#2| |#1|) (-1011 |#1|))) (IF (|has| |#1| (-784)) (-15 -3015 ((-589 |#2|) (-1 |#2| |#1|) (-1011 |#1|))) |%noBranch|)) (-1123) (-1123)) (T -1007))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1011 *5)) (-4 *5 (-784)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-589 *6)) (-5 *1 (-1007 *5 *6)))) (-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1011 *5)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-1011 *6)) (-5 *1 (-1007 *5 *6)))))
-(-10 -7 (-15 -3015 ((-1011 |#2|) (-1 |#2| |#1|) (-1011 |#1|))) (IF (|has| |#1| (-784)) (-15 -3015 ((-589 |#2|) (-1 |#2| |#1|) (-1011 |#1|))) |%noBranch|))
-((-3015 (((-1009 |#2|) (-1 |#2| |#1|) (-1009 |#1|)) 19)))
-(((-1008 |#1| |#2|) (-10 -7 (-15 -3015 ((-1009 |#2|) (-1 |#2| |#1|) (-1009 |#1|)))) (-1123) (-1123)) (T -1008))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1009 *5)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-1009 *6)) (-5 *1 (-1008 *5 *6)))))
-(-10 -7 (-15 -3015 ((-1009 |#2|) (-1 |#2| |#1|) (-1009 |#1|))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2354 (((-1087) $) 11)) (-3975 (((-1011 |#1|) $) 12)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-3282 (($ (-1087) (-1011 |#1|)) 10)) (-3976 (((-794) $) 20 (|has| |#1| (-1016)))) (-4037 (((-108) $ $) 15 (|has| |#1| (-1016)))))
-(((-1009 |#1|) (-13 (-1123) (-10 -8 (-15 -3282 ($ (-1087) (-1011 |#1|))) (-15 -2354 ((-1087) $)) (-15 -3975 ((-1011 |#1|) $)) (IF (|has| |#1| (-1016)) (-6 (-1016)) |%noBranch|))) (-1123)) (T -1009))
-((-3282 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1011 *4)) (-4 *4 (-1123)) (-5 *1 (-1009 *4)))) (-2354 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-1009 *3)) (-4 *3 (-1123)))) (-3975 (*1 *2 *1) (-12 (-5 *2 (-1011 *3)) (-5 *1 (-1009 *3)) (-4 *3 (-1123)))))
-(-13 (-1123) (-10 -8 (-15 -3282 ($ (-1087) (-1011 |#1|))) (-15 -2354 ((-1087) $)) (-15 -3975 ((-1011 |#1|) $)) (IF (|has| |#1| (-1016)) (-6 (-1016)) |%noBranch|)))
-((-3975 (($ |#1| |#1|) 7)) (-3007 ((|#1| $) 10)) (-4173 ((|#1| $) 12)) (-4183 (((-523) $) 8)) (-2635 ((|#1| $) 9)) (-4193 ((|#1| $) 11)) (-3077 (($ |#1|) 6)) (-3860 (($ |#1| |#1|) 14)) (-3822 (($ $ (-523)) 13)))
-(((-1010 |#1|) (-129) (-1123)) (T -1010))
-((-3860 (*1 *1 *2 *2) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1123)))) (-3822 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-1010 *3)) (-4 *3 (-1123)))) (-4173 (*1 *2 *1) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1123)))) (-4193 (*1 *2 *1) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1123)))) (-3007 (*1 *2 *1) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1123)))) (-2635 (*1 *2 *1) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1123)))) (-4183 (*1 *2 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1123)) (-5 *2 (-523)))) (-3975 (*1 *1 *2 *2) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1123)))) (-3077 (*1 *1 *2) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1123)))))
-(-13 (-1123) (-10 -8 (-15 -3860 ($ |t#1| |t#1|)) (-15 -3822 ($ $ (-523))) (-15 -4173 (|t#1| $)) (-15 -4193 (|t#1| $)) (-15 -3007 (|t#1| $)) (-15 -2635 (|t#1| $)) (-15 -4183 ((-523) $)) (-15 -3975 ($ |t#1| |t#1|)) (-15 -3077 ($ |t#1|))))
-(((-1123) . T))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-3975 (($ |#1| |#1|) 15)) (-3015 (((-589 |#1|) (-1 |#1| |#1|) $) 38 (|has| |#1| (-784)))) (-3007 ((|#1| $) 10)) (-4173 ((|#1| $) 9)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-4183 (((-523) $) 14)) (-2635 ((|#1| $) 12)) (-4193 ((|#1| $) 11)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-1276 (((-589 |#1|) $) 36 (|has| |#1| (-784))) (((-589 |#1|) (-589 $)) 35 (|has| |#1| (-784)))) (-3077 (($ |#1|) 26)) (-3976 (((-794) $) 25 (|has| |#1| (-1016)))) (-3860 (($ |#1| |#1|) 8)) (-3822 (($ $ (-523)) 16)) (-4037 (((-108) $ $) 19 (|has| |#1| (-1016)))))
-(((-1011 |#1|) (-13 (-1010 |#1|) (-10 -7 (IF (|has| |#1| (-1016)) (-6 (-1016)) |%noBranch|) (IF (|has| |#1| (-784)) (-6 (-1012 |#1| (-589 |#1|))) |%noBranch|))) (-1123)) (T -1011))
-NIL
-(-13 (-1010 |#1|) (-10 -7 (IF (|has| |#1| (-1016)) (-6 (-1016)) |%noBranch|) (IF (|has| |#1| (-784)) (-6 (-1012 |#1| (-589 |#1|))) |%noBranch|)))
-((-3975 (($ |#1| |#1|) 7)) (-3015 ((|#2| (-1 |#1| |#1|) $) 16)) (-3007 ((|#1| $) 10)) (-4173 ((|#1| $) 12)) (-4183 (((-523) $) 8)) (-2635 ((|#1| $) 9)) (-4193 ((|#1| $) 11)) (-1276 ((|#2| (-589 $)) 18) ((|#2| $) 17)) (-3077 (($ |#1|) 6)) (-3860 (($ |#1| |#1|) 14)) (-3822 (($ $ (-523)) 13)))
-(((-1012 |#1| |#2|) (-129) (-784) (-1061 |t#1|)) (T -1012))
-((-1276 (*1 *2 *3) (-12 (-5 *3 (-589 *1)) (-4 *1 (-1012 *4 *2)) (-4 *4 (-784)) (-4 *2 (-1061 *4)))) (-1276 (*1 *2 *1) (-12 (-4 *1 (-1012 *3 *2)) (-4 *3 (-784)) (-4 *2 (-1061 *3)))) (-3015 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1012 *4 *2)) (-4 *4 (-784)) (-4 *2 (-1061 *4)))))
-(-13 (-1010 |t#1|) (-10 -8 (-15 -1276 (|t#2| (-589 $))) (-15 -1276 (|t#2| $)) (-15 -3015 (|t#2| (-1 |t#1| |t#1|) $))))
-(((-1010 |#1|) . T) ((-1123) . T))
-((-2073 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-1767 (($ $ $) 10)) (-2973 (($ $ $) NIL) (($ $ |#2|) 15)))
-(((-1013 |#1| |#2|) (-10 -8 (-15 -2073 (|#1| |#2| |#1|)) (-15 -2073 (|#1| |#1| |#2|)) (-15 -2073 (|#1| |#1| |#1|)) (-15 -1767 (|#1| |#1| |#1|)) (-15 -2973 (|#1| |#1| |#2|)) (-15 -2973 (|#1| |#1| |#1|))) (-1014 |#2|) (-1016)) (T -1013))
-NIL
-(-10 -8 (-15 -2073 (|#1| |#2| |#1|)) (-15 -2073 (|#1| |#1| |#2|)) (-15 -2073 (|#1| |#1| |#1|)) (-15 -1767 (|#1| |#1| |#1|)) (-15 -2973 (|#1| |#1| |#2|)) (-15 -2973 (|#1| |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-2073 (($ $ $) 18) (($ $ |#1|) 17) (($ |#1| $) 16)) (-1767 (($ $ $) 20)) (-2607 (((-108) $ $) 19)) (-2282 (((-108) $ (-710)) 35)) (-4033 (($) 25) (($ (-589 |#1|)) 24)) (-1299 (($ (-1 (-108) |#1|) $) 56 (|has| $ (-6 -4248)))) (-1640 (($) 36 T CONST)) (-3917 (($ $) 59 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ |#1| $) 58 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4248)))) (-3133 (((-589 |#1|) $) 43 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 34)) (-3056 (((-589 |#1|) $) 44 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 46 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 38)) (-4042 (((-108) $ (-710)) 33)) (-3841 (((-1070) $) 9)) (-1625 (($ $ $) 23)) (-2435 (((-1034) $) 10)) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 52)) (-2720 (((-108) (-1 (-108) |#1|) $) 41 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 |#1|) (-589 |#1|)) 50 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 49 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 48 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 (-271 |#1|))) 47 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 29)) (-3163 (((-108) $) 32)) (-4055 (($) 31)) (-2973 (($ $ $) 22) (($ $ |#1|) 21)) (-2452 (((-710) |#1| $) 45 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) (((-710) (-1 (-108) |#1|) $) 42 (|has| $ (-6 -4248)))) (-4124 (($ $) 30)) (-3077 (((-499) $) 60 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 51)) (-3976 (((-794) $) 11)) (-2000 (($) 27) (($ (-589 |#1|)) 26)) (-1505 (((-108) (-1 (-108) |#1|) $) 40 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 6)) (-4052 (((-108) $ $) 28)) (-1271 (((-710) $) 37 (|has| $ (-6 -4248)))))
-(((-1014 |#1|) (-129) (-1016)) (T -1014))
-((-4052 (*1 *2 *1 *1) (-12 (-4 *1 (-1014 *3)) (-4 *3 (-1016)) (-5 *2 (-108)))) (-2000 (*1 *1) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016)))) (-2000 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-4 *1 (-1014 *3)))) (-4033 (*1 *1) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016)))) (-4033 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-4 *1 (-1014 *3)))) (-1625 (*1 *1 *1 *1) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016)))) (-2973 (*1 *1 *1 *1) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016)))) (-2973 (*1 *1 *1 *2) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016)))) (-1767 (*1 *1 *1 *1) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016)))) (-2607 (*1 *2 *1 *1) (-12 (-4 *1 (-1014 *3)) (-4 *3 (-1016)) (-5 *2 (-108)))) (-2073 (*1 *1 *1 *1) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016)))) (-2073 (*1 *1 *1 *2) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016)))) (-2073 (*1 *1 *2 *1) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016)))))
-(-13 (-1016) (-140 |t#1|) (-10 -8 (-6 -4238) (-15 -4052 ((-108) $ $)) (-15 -2000 ($)) (-15 -2000 ($ (-589 |t#1|))) (-15 -4033 ($)) (-15 -4033 ($ (-589 |t#1|))) (-15 -1625 ($ $ $)) (-15 -2973 ($ $ $)) (-15 -2973 ($ $ |t#1|)) (-15 -1767 ($ $ $)) (-15 -2607 ((-108) $ $)) (-15 -2073 ($ $ $)) (-15 -2073 ($ $ |t#1|)) (-15 -2073 ($ |t#1| $))))
-(((-33) . T) ((-97) . T) ((-563 (-794)) . T) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-1016) . T) ((-1123) . T))
-((-3841 (((-1070) $) 10)) (-2435 (((-1034) $) 8)))
-(((-1015 |#1|) (-10 -8 (-15 -3841 ((-1070) |#1|)) (-15 -2435 ((-1034) |#1|))) (-1016)) (T -1015))
-NIL
-(-10 -8 (-15 -3841 ((-1070) |#1|)) (-15 -2435 ((-1034) |#1|)))
-((-3260 (((-108) $ $) 7)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-4037 (((-108) $ $) 6)))
-(((-1016) (-129)) (T -1016))
-((-2435 (*1 *2 *1) (-12 (-4 *1 (-1016)) (-5 *2 (-1034)))) (-3841 (*1 *2 *1) (-12 (-4 *1 (-1016)) (-5 *2 (-1070)))))
-(-13 (-97) (-563 (-794)) (-10 -8 (-15 -2435 ((-1034) $)) (-15 -3841 ((-1070) $))))
-(((-97) . T) ((-563 (-794)) . T))
-((-3260 (((-108) $ $) NIL)) (-3843 (((-710)) 30)) (-2887 (($ (-589 (-852))) 52)) (-3287 (((-3 $ "failed") $ (-852) (-852)) 58)) (-3461 (($) 32)) (-1348 (((-108) (-852) $) 35)) (-4076 (((-852) $) 50)) (-3841 (((-1070) $) NIL)) (-2557 (($ (-852)) 31)) (-4099 (((-3 $ "failed") $ (-852)) 55)) (-2435 (((-1034) $) NIL)) (-3681 (((-1169 $)) 40)) (-2328 (((-589 (-852)) $) 24)) (-3414 (((-710) $ (-852) (-852)) 56)) (-3976 (((-794) $) 29)) (-4037 (((-108) $ $) 21)))
-(((-1017 |#1| |#2|) (-13 (-344) (-10 -8 (-15 -4099 ((-3 $ "failed") $ (-852))) (-15 -3287 ((-3 $ "failed") $ (-852) (-852))) (-15 -2328 ((-589 (-852)) $)) (-15 -2887 ($ (-589 (-852)))) (-15 -3681 ((-1169 $))) (-15 -1348 ((-108) (-852) $)) (-15 -3414 ((-710) $ (-852) (-852))))) (-852) (-852)) (T -1017))
-((-4099 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-852)) (-5 *1 (-1017 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-3287 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-852)) (-5 *1 (-1017 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-2328 (*1 *2 *1) (-12 (-5 *2 (-589 (-852))) (-5 *1 (-1017 *3 *4)) (-14 *3 (-852)) (-14 *4 (-852)))) (-2887 (*1 *1 *2) (-12 (-5 *2 (-589 (-852))) (-5 *1 (-1017 *3 *4)) (-14 *3 (-852)) (-14 *4 (-852)))) (-3681 (*1 *2) (-12 (-5 *2 (-1169 (-1017 *3 *4))) (-5 *1 (-1017 *3 *4)) (-14 *3 (-852)) (-14 *4 (-852)))) (-1348 (*1 *2 *3 *1) (-12 (-5 *3 (-852)) (-5 *2 (-108)) (-5 *1 (-1017 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-3414 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-852)) (-5 *2 (-710)) (-5 *1 (-1017 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
-(-13 (-344) (-10 -8 (-15 -4099 ((-3 $ "failed") $ (-852))) (-15 -3287 ((-3 $ "failed") $ (-852) (-852))) (-15 -2328 ((-589 (-852)) $)) (-15 -2887 ($ (-589 (-852)))) (-15 -3681 ((-1169 $))) (-15 -1348 ((-108) (-852) $)) (-15 -3414 ((-710) $ (-852) (-852)))))
-((-3260 (((-108) $ $) NIL)) (-2054 (($) NIL (|has| |#1| (-344)))) (-2073 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 74)) (-1767 (($ $ $) 72)) (-2607 (((-108) $ $) 73)) (-2282 (((-108) $ (-710)) NIL)) (-3843 (((-710)) NIL (|has| |#1| (-344)))) (-4033 (($ (-589 |#1|)) NIL) (($) 13)) (-3627 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-1869 (($ |#1| $) 67 (|has| $ (-6 -4248))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-2231 (($ |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 41 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) 39 (|has| $ (-6 -4248)))) (-3461 (($) NIL (|has| |#1| (-344)))) (-3133 (((-589 |#1|) $) 19 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-3268 ((|#1| $) 57 (|has| |#1| (-786)))) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 66 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2644 ((|#1| $) 55 (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 34)) (-4076 (((-852) $) NIL (|has| |#1| (-344)))) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-1625 (($ $ $) 70)) (-2349 ((|#1| $) 25)) (-3862 (($ |#1| $) 65)) (-2557 (($ (-852)) NIL (|has| |#1| (-344)))) (-2435 (((-1034) $) NIL)) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 31)) (-1322 ((|#1| $) 27)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) 21)) (-4055 (($) 11)) (-2973 (($ $ |#1|) NIL) (($ $ $) 71)) (-1771 (($) NIL) (($ (-589 |#1|)) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) 16)) (-3077 (((-499) $) 52 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 61)) (-2479 (($ $) NIL (|has| |#1| (-344)))) (-3976 (((-794) $) NIL)) (-1596 (((-710) $) NIL)) (-2000 (($ (-589 |#1|)) NIL) (($) 12)) (-1245 (($ (-589 |#1|)) NIL)) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 54)) (-4052 (((-108) $ $) NIL)) (-1271 (((-710) $) 10 (|has| $ (-6 -4248)))))
-(((-1018 |#1|) (-401 |#1|) (-1016)) (T -1018))
-NIL
-(-401 |#1|)
-((-3260 (((-108) $ $) 7)) (-1972 (((-108) $) 32)) (-3854 ((|#2| $) 27)) (-1372 (((-108) $) 33)) (-1984 ((|#1| $) 28)) (-2297 (((-108) $) 35)) (-1652 (((-108) $) 37)) (-1818 (((-108) $) 34)) (-3841 (((-1070) $) 9)) (-3500 (((-108) $) 31)) (-3878 ((|#3| $) 26)) (-2435 (((-1034) $) 10)) (-3111 (((-108) $) 30)) (-1565 ((|#4| $) 25)) (-3483 ((|#5| $) 24)) (-1747 (((-108) $ $) 38)) (-1502 (($ $ (-523)) 14) (($ $ (-589 (-523))) 13)) (-3644 (((-589 $) $) 29)) (-3077 (($ (-589 $)) 23) (($ |#1|) 22) (($ |#2|) 21) (($ |#3|) 20) (($ |#4|) 19) (($ |#5|) 18)) (-3976 (((-794) $) 11)) (-3770 (($ $) 16)) (-3755 (($ $) 17)) (-1501 (((-108) $) 36)) (-4037 (((-108) $ $) 6)) (-1271 (((-523) $) 15)))
-(((-1019 |#1| |#2| |#3| |#4| |#5|) (-129) (-1016) (-1016) (-1016) (-1016) (-1016)) (T -1019))
-((-1747 (*1 *2 *1 *1) (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))) (-1652 (*1 *2 *1) (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))) (-1501 (*1 *2 *1) (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))) (-2297 (*1 *2 *1) (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))) (-1818 (*1 *2 *1) (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))) (-1372 (*1 *2 *1) (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))) (-1972 (*1 *2 *1) (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))) (-3500 (*1 *2 *1) (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))) (-3111 (*1 *2 *1) (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))) (-3644 (*1 *2 *1) (-12 (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-589 *1)) (-4 *1 (-1019 *3 *4 *5 *6 *7)))) (-1984 (*1 *2 *1) (-12 (-4 *1 (-1019 *2 *3 *4 *5 *6)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *2 (-1016)))) (-3854 (*1 *2 *1) (-12 (-4 *1 (-1019 *3 *2 *4 *5 *6)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *2 (-1016)))) (-3878 (*1 *2 *1) (-12 (-4 *1 (-1019 *3 *4 *2 *5 *6)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *2 (-1016)))) (-1565 (*1 *2 *1) (-12 (-4 *1 (-1019 *3 *4 *5 *2 *6)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *2 (-1016)))) (-3483 (*1 *2 *1) (-12 (-4 *1 (-1019 *3 *4 *5 *6 *2)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *2 (-1016)))) (-3077 (*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)))) (-3077 (*1 *1 *2) (-12 (-4 *1 (-1019 *2 *3 *4 *5 *6)) (-4 *2 (-1016)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)))) (-3077 (*1 *1 *2) (-12 (-4 *1 (-1019 *3 *2 *4 *5 *6)) (-4 *3 (-1016)) (-4 *2 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)))) (-3077 (*1 *1 *2) (-12 (-4 *1 (-1019 *3 *4 *2 *5 *6)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *2 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)))) (-3077 (*1 *1 *2) (-12 (-4 *1 (-1019 *3 *4 *5 *2 *6)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *2 (-1016)) (-4 *6 (-1016)))) (-3077 (*1 *1 *2) (-12 (-4 *1 (-1019 *3 *4 *5 *6 *2)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *2 (-1016)))) (-3755 (*1 *1 *1) (-12 (-4 *1 (-1019 *2 *3 *4 *5 *6)) (-4 *2 (-1016)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)))) (-3770 (*1 *1 *1) (-12 (-4 *1 (-1019 *2 *3 *4 *5 *6)) (-4 *2 (-1016)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)))) (-1271 (*1 *2 *1) (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-523)))) (-1502 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)))) (-1502 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-523))) (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)))))
-(-13 (-1016) (-10 -8 (-15 -1747 ((-108) $ $)) (-15 -1652 ((-108) $)) (-15 -1501 ((-108) $)) (-15 -2297 ((-108) $)) (-15 -1818 ((-108) $)) (-15 -1372 ((-108) $)) (-15 -1972 ((-108) $)) (-15 -3500 ((-108) $)) (-15 -3111 ((-108) $)) (-15 -3644 ((-589 $) $)) (-15 -1984 (|t#1| $)) (-15 -3854 (|t#2| $)) (-15 -3878 (|t#3| $)) (-15 -1565 (|t#4| $)) (-15 -3483 (|t#5| $)) (-15 -3077 ($ (-589 $))) (-15 -3077 ($ |t#1|)) (-15 -3077 ($ |t#2|)) (-15 -3077 ($ |t#3|)) (-15 -3077 ($ |t#4|)) (-15 -3077 ($ |t#5|)) (-15 -3755 ($ $)) (-15 -3770 ($ $)) (-15 -1271 ((-523) $)) (-15 -1502 ($ $ (-523))) (-15 -1502 ($ $ (-589 (-523))))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL)) (-1972 (((-108) $) NIL)) (-3854 (((-1087) $) NIL)) (-1372 (((-108) $) NIL)) (-1984 (((-1070) $) NIL)) (-2297 (((-108) $) NIL)) (-1652 (((-108) $) NIL)) (-1818 (((-108) $) NIL)) (-3841 (((-1070) $) NIL)) (-3500 (((-108) $) NIL)) (-3878 (((-523) $) NIL)) (-2435 (((-1034) $) NIL)) (-3111 (((-108) $) NIL)) (-1565 (((-203) $) NIL)) (-3483 (((-794) $) NIL)) (-1747 (((-108) $ $) NIL)) (-1502 (($ $ (-523)) NIL) (($ $ (-589 (-523))) NIL)) (-3644 (((-589 $) $) NIL)) (-3077 (($ (-589 $)) NIL) (($ (-1070)) NIL) (($ (-1087)) NIL) (($ (-523)) NIL) (($ (-203)) NIL) (($ (-794)) NIL)) (-3976 (((-794) $) NIL)) (-3770 (($ $) NIL)) (-3755 (($ $) NIL)) (-1501 (((-108) $) NIL)) (-4037 (((-108) $ $) NIL)) (-1271 (((-523) $) NIL)))
-(((-1020) (-1019 (-1070) (-1087) (-523) (-203) (-794))) (T -1020))
-NIL
-(-1019 (-1070) (-1087) (-523) (-203) (-794))
-((-3260 (((-108) $ $) NIL)) (-1972 (((-108) $) 38)) (-3854 ((|#2| $) 42)) (-1372 (((-108) $) 37)) (-1984 ((|#1| $) 41)) (-2297 (((-108) $) 35)) (-1652 (((-108) $) 14)) (-1818 (((-108) $) 36)) (-3841 (((-1070) $) NIL)) (-3500 (((-108) $) 39)) (-3878 ((|#3| $) 44)) (-2435 (((-1034) $) NIL)) (-3111 (((-108) $) 40)) (-1565 ((|#4| $) 43)) (-3483 ((|#5| $) 45)) (-1747 (((-108) $ $) 34)) (-1502 (($ $ (-523)) 56) (($ $ (-589 (-523))) 58)) (-3644 (((-589 $) $) 22)) (-3077 (($ (-589 $)) 46) (($ |#1|) 47) (($ |#2|) 48) (($ |#3|) 49) (($ |#4|) 50) (($ |#5|) 51)) (-3976 (((-794) $) 23)) (-3770 (($ $) 21)) (-3755 (($ $) 52)) (-1501 (((-108) $) 18)) (-4037 (((-108) $ $) 33)) (-1271 (((-523) $) 54)))
-(((-1021 |#1| |#2| |#3| |#4| |#5|) (-1019 |#1| |#2| |#3| |#4| |#5|) (-1016) (-1016) (-1016) (-1016) (-1016)) (T -1021))
-NIL
-(-1019 |#1| |#2| |#3| |#4| |#5|)
-((-2034 (((-1174) $) 23)) (-1744 (($ (-1087) (-410) |#2|) 11)) (-3976 (((-794) $) 16)))
-(((-1022 |#1| |#2|) (-13 (-371) (-10 -8 (-15 -1744 ($ (-1087) (-410) |#2|)))) (-786) (-406 |#1|)) (T -1022))
-((-1744 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1087)) (-5 *3 (-410)) (-4 *5 (-786)) (-5 *1 (-1022 *5 *4)) (-4 *4 (-406 *5)))))
-(-13 (-371) (-10 -8 (-15 -1744 ($ (-1087) (-410) |#2|))))
-((-1387 (((-108) |#5| |#5|) 38)) (-1837 (((-108) |#5| |#5|) 52)) (-3445 (((-108) |#5| (-589 |#5|)) 75) (((-108) |#5| |#5|) 61)) (-3093 (((-108) (-589 |#4|) (-589 |#4|)) 58)) (-3983 (((-108) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) 63)) (-3324 (((-1174)) 33)) (-2992 (((-1174) (-1070) (-1070) (-1070)) 29)) (-3350 (((-589 |#5|) (-589 |#5|)) 82)) (-3254 (((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)))) 80)) (-3141 (((-589 (-2 (|:| -1747 (-589 |#4|)) (|:| -2394 |#5|) (|:| |ineq| (-589 |#4|)))) (-589 |#4|) (-589 |#5|) (-108) (-108)) 102)) (-3859 (((-108) |#5| |#5|) 47)) (-1422 (((-3 (-108) "failed") |#5| |#5|) 71)) (-1661 (((-108) (-589 |#4|) (-589 |#4|)) 57)) (-2687 (((-108) (-589 |#4|) (-589 |#4|)) 59)) (-1454 (((-108) (-589 |#4|) (-589 |#4|)) 60)) (-1436 (((-3 (-2 (|:| -1747 (-589 |#4|)) (|:| -2394 |#5|) (|:| |ineq| (-589 |#4|))) "failed") (-589 |#4|) |#5| (-589 |#4|) (-108) (-108) (-108) (-108) (-108)) 98)) (-1636 (((-589 |#5|) (-589 |#5|)) 43)))
-(((-1023 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2992 ((-1174) (-1070) (-1070) (-1070))) (-15 -3324 ((-1174))) (-15 -1387 ((-108) |#5| |#5|)) (-15 -1636 ((-589 |#5|) (-589 |#5|))) (-15 -3859 ((-108) |#5| |#5|)) (-15 -1837 ((-108) |#5| |#5|)) (-15 -3093 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -1661 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -2687 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -1454 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -1422 ((-3 (-108) "failed") |#5| |#5|)) (-15 -3445 ((-108) |#5| |#5|)) (-15 -3445 ((-108) |#5| (-589 |#5|))) (-15 -3350 ((-589 |#5|) (-589 |#5|))) (-15 -3983 ((-108) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)))) (-15 -3254 ((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) (-15 -3141 ((-589 (-2 (|:| -1747 (-589 |#4|)) (|:| -2394 |#5|) (|:| |ineq| (-589 |#4|)))) (-589 |#4|) (-589 |#5|) (-108) (-108))) (-15 -1436 ((-3 (-2 (|:| -1747 (-589 |#4|)) (|:| -2394 |#5|) (|:| |ineq| (-589 |#4|))) "failed") (-589 |#4|) |#5| (-589 |#4|) (-108) (-108) (-108) (-108) (-108)))) (-427) (-732) (-786) (-987 |#1| |#2| |#3|) (-992 |#1| |#2| |#3| |#4|)) (T -1023))
-((-1436 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-108)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *9 (-987 *6 *7 *8)) (-5 *2 (-2 (|:| -1747 (-589 *9)) (|:| -2394 *4) (|:| |ineq| (-589 *9)))) (-5 *1 (-1023 *6 *7 *8 *9 *4)) (-5 *3 (-589 *9)) (-4 *4 (-992 *6 *7 *8 *9)))) (-3141 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-589 *10)) (-5 *5 (-108)) (-4 *10 (-992 *6 *7 *8 *9)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *9 (-987 *6 *7 *8)) (-5 *2 (-589 (-2 (|:| -1747 (-589 *9)) (|:| -2394 *10) (|:| |ineq| (-589 *9))))) (-5 *1 (-1023 *6 *7 *8 *9 *10)) (-5 *3 (-589 *9)))) (-3254 (*1 *2 *2) (-12 (-5 *2 (-589 (-2 (|:| |val| (-589 *6)) (|:| -2394 *7)))) (-4 *6 (-987 *3 *4 *5)) (-4 *7 (-992 *3 *4 *5 *6)) (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-1023 *3 *4 *5 *6 *7)))) (-3983 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-589 *7)) (|:| -2394 *8))) (-4 *7 (-987 *4 *5 *6)) (-4 *8 (-992 *4 *5 *6 *7)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-1023 *4 *5 *6 *7 *8)))) (-3350 (*1 *2 *2) (-12 (-5 *2 (-589 *7)) (-4 *7 (-992 *3 *4 *5 *6)) (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *1 (-1023 *3 *4 *5 *6 *7)))) (-3445 (*1 *2 *3 *4) (-12 (-5 *4 (-589 *3)) (-4 *3 (-992 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-987 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-1023 *5 *6 *7 *8 *3)))) (-3445 (*1 *2 *3 *3) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1023 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7)))) (-1422 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1023 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7)))) (-1454 (*1 *2 *3 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-1023 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))) (-2687 (*1 *2 *3 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-1023 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))) (-1661 (*1 *2 *3 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-1023 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))) (-3093 (*1 *2 *3 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108)) (-5 *1 (-1023 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))) (-1837 (*1 *2 *3 *3) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1023 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7)))) (-3859 (*1 *2 *3 *3) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1023 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7)))) (-1636 (*1 *2 *2) (-12 (-5 *2 (-589 *7)) (-4 *7 (-992 *3 *4 *5 *6)) (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *1 (-1023 *3 *4 *5 *6 *7)))) (-1387 (*1 *2 *3 *3) (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1023 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7)))) (-3324 (*1 *2) (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-1174)) (-5 *1 (-1023 *3 *4 *5 *6 *7)) (-4 *7 (-992 *3 *4 *5 *6)))) (-2992 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1070)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-1174)) (-5 *1 (-1023 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2992 ((-1174) (-1070) (-1070) (-1070))) (-15 -3324 ((-1174))) (-15 -1387 ((-108) |#5| |#5|)) (-15 -1636 ((-589 |#5|) (-589 |#5|))) (-15 -3859 ((-108) |#5| |#5|)) (-15 -1837 ((-108) |#5| |#5|)) (-15 -3093 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -1661 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -2687 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -1454 ((-108) (-589 |#4|) (-589 |#4|))) (-15 -1422 ((-3 (-108) "failed") |#5| |#5|)) (-15 -3445 ((-108) |#5| |#5|)) (-15 -3445 ((-108) |#5| (-589 |#5|))) (-15 -3350 ((-589 |#5|) (-589 |#5|))) (-15 -3983 ((-108) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)))) (-15 -3254 ((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) (-15 -3141 ((-589 (-2 (|:| -1747 (-589 |#4|)) (|:| -2394 |#5|) (|:| |ineq| (-589 |#4|)))) (-589 |#4|) (-589 |#5|) (-108) (-108))) (-15 -1436 ((-3 (-2 (|:| -1747 (-589 |#4|)) (|:| -2394 |#5|) (|:| |ineq| (-589 |#4|))) "failed") (-589 |#4|) |#5| (-589 |#4|) (-108) (-108) (-108) (-108) (-108))))
-((-2151 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#5|) 96)) (-4174 (((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) |#4| |#4| |#5|) 72)) (-1662 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5|) 90)) (-3550 (((-589 |#5|) |#4| |#5|) 110)) (-2571 (((-589 |#5|) |#4| |#5|) 117)) (-3224 (((-589 |#5|) |#4| |#5|) 118)) (-3265 (((-589 (-2 (|:| |val| (-108)) (|:| -2394 |#5|))) |#4| |#5|) 97)) (-1441 (((-589 (-2 (|:| |val| (-108)) (|:| -2394 |#5|))) |#4| |#5|) 116)) (-2380 (((-589 (-2 (|:| |val| (-108)) (|:| -2394 |#5|))) |#4| |#5|) 46) (((-108) |#4| |#5|) 53)) (-2977 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) |#3| (-108)) 84) (((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5| (-108) (-108)) 50)) (-3385 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5|) 79)) (-3437 (((-1174)) 37)) (-2103 (((-1174)) 26)) (-3798 (((-1174) (-1070) (-1070) (-1070)) 33)) (-2867 (((-1174) (-1070) (-1070) (-1070)) 22)))
-(((-1024 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2867 ((-1174) (-1070) (-1070) (-1070))) (-15 -2103 ((-1174))) (-15 -3798 ((-1174) (-1070) (-1070) (-1070))) (-15 -3437 ((-1174))) (-15 -4174 ((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) |#4| |#4| |#5|)) (-15 -2977 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -2977 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) |#3| (-108))) (-15 -3385 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5|)) (-15 -1662 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5|)) (-15 -2380 ((-108) |#4| |#5|)) (-15 -3265 ((-589 (-2 (|:| |val| (-108)) (|:| -2394 |#5|))) |#4| |#5|)) (-15 -3550 ((-589 |#5|) |#4| |#5|)) (-15 -1441 ((-589 (-2 (|:| |val| (-108)) (|:| -2394 |#5|))) |#4| |#5|)) (-15 -2571 ((-589 |#5|) |#4| |#5|)) (-15 -2380 ((-589 (-2 (|:| |val| (-108)) (|:| -2394 |#5|))) |#4| |#5|)) (-15 -3224 ((-589 |#5|) |#4| |#5|)) (-15 -2151 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#5|))) (-427) (-732) (-786) (-987 |#1| |#2| |#3|) (-992 |#1| |#2| |#3| |#4|)) (T -1024))
-((-2151 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4)))) (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-3224 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 *4)) (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-2380 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 (-2 (|:| |val| (-108)) (|:| -2394 *4)))) (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-2571 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 *4)) (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-1441 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 (-2 (|:| |val| (-108)) (|:| -2394 *4)))) (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-3550 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 *4)) (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-3265 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 (-2 (|:| |val| (-108)) (|:| -2394 *4)))) (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-2380 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-1662 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4)))) (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-3385 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4)))) (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-2977 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-589 (-2 (|:| |val| (-589 *8)) (|:| -2394 *9)))) (-5 *5 (-108)) (-4 *8 (-987 *6 *7 *4)) (-4 *9 (-992 *6 *7 *4 *8)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *4 (-786)) (-5 *2 (-589 (-2 (|:| |val| *8) (|:| -2394 *9)))) (-5 *1 (-1024 *6 *7 *4 *8 *9)))) (-2977 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-108)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *3 (-987 *6 *7 *8)) (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4)))) (-5 *1 (-1024 *6 *7 *8 *3 *4)) (-4 *4 (-992 *6 *7 *8 *3)))) (-4174 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4)))) (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))) (-3437 (*1 *2) (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-1174)) (-5 *1 (-1024 *3 *4 *5 *6 *7)) (-4 *7 (-992 *3 *4 *5 *6)))) (-3798 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1070)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-1174)) (-5 *1 (-1024 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))) (-2103 (*1 *2) (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-1174)) (-5 *1 (-1024 *3 *4 *5 *6 *7)) (-4 *7 (-992 *3 *4 *5 *6)))) (-2867 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1070)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-1174)) (-5 *1 (-1024 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2867 ((-1174) (-1070) (-1070) (-1070))) (-15 -2103 ((-1174))) (-15 -3798 ((-1174) (-1070) (-1070) (-1070))) (-15 -3437 ((-1174))) (-15 -4174 ((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) |#4| |#4| |#5|)) (-15 -2977 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -2977 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) |#3| (-108))) (-15 -3385 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5|)) (-15 -1662 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#4| |#5|)) (-15 -2380 ((-108) |#4| |#5|)) (-15 -3265 ((-589 (-2 (|:| |val| (-108)) (|:| -2394 |#5|))) |#4| |#5|)) (-15 -3550 ((-589 |#5|) |#4| |#5|)) (-15 -1441 ((-589 (-2 (|:| |val| (-108)) (|:| -2394 |#5|))) |#4| |#5|)) (-15 -2571 ((-589 |#5|) |#4| |#5|)) (-15 -2380 ((-589 (-2 (|:| |val| (-108)) (|:| -2394 |#5|))) |#4| |#5|)) (-15 -3224 ((-589 |#5|) |#4| |#5|)) (-15 -2151 ((-589 (-2 (|:| |val| |#4|) (|:| -2394 |#5|))) |#4| |#5|)))
-((-3260 (((-108) $ $) 7)) (-2778 (((-589 (-2 (|:| -3922 $) (|:| -3439 (-589 |#4|)))) (-589 |#4|)) 85)) (-2311 (((-589 $) (-589 |#4|)) 86) (((-589 $) (-589 |#4|) (-108)) 111)) (-3716 (((-589 |#3|) $) 33)) (-2011 (((-108) $) 26)) (-2821 (((-108) $) 17 (|has| |#1| (-515)))) (-3103 (((-108) |#4| $) 101) (((-108) $) 97)) (-4165 ((|#4| |#4| $) 92)) (-3763 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 $))) |#4| $) 126)) (-3400 (((-2 (|:| |under| $) (|:| -1250 $) (|:| |upper| $)) $ |#3|) 27)) (-2282 (((-108) $ (-710)) 44)) (-1299 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4248))) (((-3 |#4| "failed") $ |#3|) 79)) (-1640 (($) 45 T CONST)) (-1619 (((-108) $) 22 (|has| |#1| (-515)))) (-2927 (((-108) $ $) 24 (|has| |#1| (-515)))) (-3685 (((-108) $ $) 23 (|has| |#1| (-515)))) (-2457 (((-108) $) 25 (|has| |#1| (-515)))) (-3021 (((-589 |#4|) (-589 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-2341 (((-589 |#4|) (-589 |#4|) $) 18 (|has| |#1| (-515)))) (-3450 (((-589 |#4|) (-589 |#4|) $) 19 (|has| |#1| (-515)))) (-2898 (((-3 $ "failed") (-589 |#4|)) 36)) (-1996 (($ (-589 |#4|)) 35)) (-3891 (((-3 $ "failed") $) 82)) (-3880 ((|#4| |#4| $) 89)) (-3917 (($ $) 68 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ |#4| $) 67 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4248)))) (-3143 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-515)))) (-3605 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-3058 ((|#4| |#4| $) 87)) (-1830 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4248))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4248))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-3161 (((-2 (|:| -3922 (-589 |#4|)) (|:| -3439 (-589 |#4|))) $) 105)) (-2422 (((-108) |#4| $) 136)) (-4171 (((-108) |#4| $) 133)) (-3004 (((-108) |#4| $) 137) (((-108) $) 134)) (-3133 (((-589 |#4|) $) 52 (|has| $ (-6 -4248)))) (-2407 (((-108) |#4| $) 104) (((-108) $) 103)) (-2694 ((|#3| $) 34)) (-1344 (((-108) $ (-710)) 43)) (-3056 (((-589 |#4|) $) 53 (|has| $ (-6 -4248)))) (-1348 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#4| |#4|) $) 47)) (-4100 (((-589 |#3|) $) 32)) (-2863 (((-108) |#3| $) 31)) (-4042 (((-108) $ (-710)) 42)) (-3841 (((-1070) $) 9)) (-3726 (((-3 |#4| (-589 $)) |#4| |#4| $) 128)) (-3216 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 $))) |#4| |#4| $) 127)) (-2247 (((-3 |#4| "failed") $) 83)) (-2818 (((-589 $) |#4| $) 129)) (-1446 (((-3 (-108) (-589 $)) |#4| $) 132)) (-4226 (((-589 (-2 (|:| |val| (-108)) (|:| -2394 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-1625 (((-589 $) |#4| $) 125) (((-589 $) (-589 |#4|) $) 124) (((-589 $) (-589 |#4|) (-589 $)) 123) (((-589 $) |#4| (-589 $)) 122)) (-2795 (($ |#4| $) 117) (($ (-589 |#4|) $) 116)) (-3403 (((-589 |#4|) $) 107)) (-3761 (((-108) |#4| $) 99) (((-108) $) 95)) (-1728 ((|#4| |#4| $) 90)) (-1454 (((-108) $ $) 110)) (-1916 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-515)))) (-2152 (((-108) |#4| $) 100) (((-108) $) 96)) (-2347 ((|#4| |#4| $) 91)) (-2435 (((-1034) $) 10)) (-3879 (((-3 |#4| "failed") $) 84)) (-2660 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-2594 (((-3 $ "failed") $ |#4|) 78)) (-1361 (($ $ |#4|) 77) (((-589 $) |#4| $) 115) (((-589 $) |#4| (-589 $)) 114) (((-589 $) (-589 |#4|) $) 113) (((-589 $) (-589 |#4|) (-589 $)) 112)) (-2720 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 |#4|) (-589 |#4|)) 59 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-271 |#4|)) 57 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-589 (-271 |#4|))) 56 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))) (-2391 (((-108) $ $) 38)) (-3163 (((-108) $) 41)) (-4055 (($) 40)) (-1487 (((-710) $) 106)) (-2452 (((-710) |#4| $) 54 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) (((-710) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4248)))) (-4124 (($ $) 39)) (-3077 (((-499) $) 69 (|has| |#4| (-564 (-499))))) (-3985 (($ (-589 |#4|)) 60)) (-4135 (($ $ |#3|) 28)) (-1318 (($ $ |#3|) 30)) (-3444 (($ $) 88)) (-2023 (($ $ |#3|) 29)) (-3976 (((-794) $) 11) (((-589 |#4|) $) 37)) (-3221 (((-710) $) 76 (|has| |#3| (-344)))) (-2459 (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-3442 (((-108) $ (-1 (-108) |#4| (-589 |#4|))) 98)) (-1611 (((-589 $) |#4| $) 121) (((-589 $) |#4| (-589 $)) 120) (((-589 $) (-589 |#4|) $) 119) (((-589 $) (-589 |#4|) (-589 $)) 118)) (-1505 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4248)))) (-2969 (((-589 |#3|) $) 81)) (-3553 (((-108) |#4| $) 135)) (-4079 (((-108) |#3| $) 80)) (-4037 (((-108) $ $) 6)) (-1271 (((-710) $) 46 (|has| $ (-6 -4248)))))
-(((-1025 |#1| |#2| |#3| |#4|) (-129) (-427) (-732) (-786) (-987 |t#1| |t#2| |t#3|)) (T -1025))
-NIL
-(-13 (-992 |t#1| |t#2| |t#3| |t#4|))
-(((-33) . T) ((-97) . T) ((-563 (-589 |#4|)) . T) ((-563 (-794)) . T) ((-140 |#4|) . T) ((-564 (-499)) |has| |#4| (-564 (-499))) ((-286 |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))) ((-462 |#4|) . T) ((-484 |#4| |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))) ((-905 |#1| |#2| |#3| |#4|) . T) ((-992 |#1| |#2| |#3| |#4|) . T) ((-1016) . T) ((-1117 |#1| |#2| |#3| |#4|) . T) ((-1123) . T))
-((-1633 (((-589 (-523)) (-523) (-523) (-523)) 22)) (-2851 (((-589 (-523)) (-523) (-523) (-523)) 12)) (-4059 (((-589 (-523)) (-523) (-523) (-523)) 18)) (-3661 (((-523) (-523) (-523)) 9)) (-2446 (((-1169 (-523)) (-589 (-523)) (-1169 (-523)) (-523)) 46) (((-1169 (-523)) (-1169 (-523)) (-1169 (-523)) (-523)) 41)) (-1726 (((-589 (-523)) (-589 (-523)) (-589 (-523)) (-108)) 28)) (-3928 (((-629 (-523)) (-589 (-523)) (-589 (-523)) (-629 (-523))) 45)) (-1604 (((-629 (-523)) (-589 (-523)) (-589 (-523))) 33)) (-3889 (((-589 (-629 (-523))) (-589 (-523))) 35)) (-3199 (((-589 (-523)) (-589 (-523)) (-589 (-523)) (-629 (-523))) 49)) (-1734 (((-629 (-523)) (-589 (-523)) (-589 (-523)) (-589 (-523))) 57)))
-(((-1026) (-10 -7 (-15 -1734 ((-629 (-523)) (-589 (-523)) (-589 (-523)) (-589 (-523)))) (-15 -3199 ((-589 (-523)) (-589 (-523)) (-589 (-523)) (-629 (-523)))) (-15 -3889 ((-589 (-629 (-523))) (-589 (-523)))) (-15 -1604 ((-629 (-523)) (-589 (-523)) (-589 (-523)))) (-15 -3928 ((-629 (-523)) (-589 (-523)) (-589 (-523)) (-629 (-523)))) (-15 -1726 ((-589 (-523)) (-589 (-523)) (-589 (-523)) (-108))) (-15 -2446 ((-1169 (-523)) (-1169 (-523)) (-1169 (-523)) (-523))) (-15 -2446 ((-1169 (-523)) (-589 (-523)) (-1169 (-523)) (-523))) (-15 -3661 ((-523) (-523) (-523))) (-15 -4059 ((-589 (-523)) (-523) (-523) (-523))) (-15 -2851 ((-589 (-523)) (-523) (-523) (-523))) (-15 -1633 ((-589 (-523)) (-523) (-523) (-523))))) (T -1026))
-((-1633 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-1026)) (-5 *3 (-523)))) (-2851 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-1026)) (-5 *3 (-523)))) (-4059 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-1026)) (-5 *3 (-523)))) (-3661 (*1 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-1026)))) (-2446 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1169 (-523))) (-5 *3 (-589 (-523))) (-5 *4 (-523)) (-5 *1 (-1026)))) (-2446 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1169 (-523))) (-5 *3 (-523)) (-5 *1 (-1026)))) (-1726 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-589 (-523))) (-5 *3 (-108)) (-5 *1 (-1026)))) (-3928 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-629 (-523))) (-5 *3 (-589 (-523))) (-5 *1 (-1026)))) (-1604 (*1 *2 *3 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-629 (-523))) (-5 *1 (-1026)))) (-3889 (*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-589 (-629 (-523)))) (-5 *1 (-1026)))) (-3199 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-589 (-523))) (-5 *3 (-629 (-523))) (-5 *1 (-1026)))) (-1734 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-629 (-523))) (-5 *1 (-1026)))))
-(-10 -7 (-15 -1734 ((-629 (-523)) (-589 (-523)) (-589 (-523)) (-589 (-523)))) (-15 -3199 ((-589 (-523)) (-589 (-523)) (-589 (-523)) (-629 (-523)))) (-15 -3889 ((-589 (-629 (-523))) (-589 (-523)))) (-15 -1604 ((-629 (-523)) (-589 (-523)) (-589 (-523)))) (-15 -3928 ((-629 (-523)) (-589 (-523)) (-589 (-523)) (-629 (-523)))) (-15 -1726 ((-589 (-523)) (-589 (-523)) (-589 (-523)) (-108))) (-15 -2446 ((-1169 (-523)) (-1169 (-523)) (-1169 (-523)) (-523))) (-15 -2446 ((-1169 (-523)) (-589 (-523)) (-1169 (-523)) (-523))) (-15 -3661 ((-523) (-523) (-523))) (-15 -4059 ((-589 (-523)) (-523) (-523) (-523))) (-15 -2851 ((-589 (-523)) (-523) (-523) (-523))) (-15 -1633 ((-589 (-523)) (-523) (-523) (-523))))
-((-2573 (($ $ (-852)) 12)) (** (($ $ (-852)) 10)))
-(((-1027 |#1|) (-10 -8 (-15 -2573 (|#1| |#1| (-852))) (-15 ** (|#1| |#1| (-852)))) (-1028)) (T -1027))
-NIL
-(-10 -8 (-15 -2573 (|#1| |#1| (-852))) (-15 ** (|#1| |#1| (-852))))
-((-3260 (((-108) $ $) 7)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-2573 (($ $ (-852)) 13)) (-4037 (((-108) $ $) 6)) (** (($ $ (-852)) 14)) (* (($ $ $) 15)))
-(((-1028) (-129)) (T -1028))
-((* (*1 *1 *1 *1) (-4 *1 (-1028))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1028)) (-5 *2 (-852)))) (-2573 (*1 *1 *1 *2) (-12 (-4 *1 (-1028)) (-5 *2 (-852)))))
-(-13 (-1016) (-10 -8 (-15 * ($ $ $)) (-15 ** ($ $ (-852))) (-15 -2573 ($ $ (-852)))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-3260 (((-108) $ $) NIL (|has| |#3| (-1016)))) (-2388 (((-108) $) NIL (|has| |#3| (-124)))) (-1932 (($ (-852)) NIL (|has| |#3| (-973)))) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-1773 (($ $ $) NIL (|has| |#3| (-732)))) (-2999 (((-3 $ "failed") $ $) NIL (|has| |#3| (-124)))) (-2282 (((-108) $ (-710)) NIL)) (-3843 (((-710)) NIL (|has| |#3| (-344)))) (-2035 (((-523) $) NIL (|has| |#3| (-784)))) (-4101 ((|#3| $ (-523) |#3|) NIL (|has| $ (-6 -4249)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL (-12 (|has| |#3| (-964 (-523))) (|has| |#3| (-1016)))) (((-3 (-383 (-523)) "failed") $) NIL (-12 (|has| |#3| (-964 (-383 (-523)))) (|has| |#3| (-1016)))) (((-3 |#3| "failed") $) NIL (|has| |#3| (-1016)))) (-1996 (((-523) $) NIL (-12 (|has| |#3| (-964 (-523))) (|has| |#3| (-1016)))) (((-383 (-523)) $) NIL (-12 (|has| |#3| (-964 (-383 (-523)))) (|has| |#3| (-1016)))) ((|#3| $) NIL (|has| |#3| (-1016)))) (-2203 (((-629 (-523)) (-629 $)) NIL (-12 (|has| |#3| (-585 (-523))) (|has| |#3| (-973)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (-12 (|has| |#3| (-585 (-523))) (|has| |#3| (-973)))) (((-2 (|:| -2373 (-629 |#3|)) (|:| |vec| (-1169 |#3|))) (-629 $) (-1169 $)) NIL (|has| |#3| (-973))) (((-629 |#3|) (-629 $)) NIL (|has| |#3| (-973)))) (-4211 (((-3 $ "failed") $) NIL (|has| |#3| (-973)))) (-3461 (($) NIL (|has| |#3| (-344)))) (-3073 ((|#3| $ (-523) |#3|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#3| $ (-523)) 12)) (-3702 (((-108) $) NIL (|has| |#3| (-784)))) (-3133 (((-589 |#3|) $) NIL (|has| $ (-6 -4248)))) (-3482 (((-108) $) NIL (|has| |#3| (-973)))) (-4050 (((-108) $) NIL (|has| |#3| (-784)))) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) NIL (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (-3255 (|has| |#3| (-732)) (|has| |#3| (-784))))) (-3056 (((-589 |#3|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#3| (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (-3255 (|has| |#3| (-732)) (|has| |#3| (-784))))) (-3063 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#3| |#3|) $) NIL)) (-4076 (((-852) $) NIL (|has| |#3| (-344)))) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#3| (-1016)))) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2557 (($ (-852)) NIL (|has| |#3| (-344)))) (-2435 (((-1034) $) NIL (|has| |#3| (-1016)))) (-3879 ((|#3| $) NIL (|has| (-523) (-786)))) (-2408 (($ $ |#3|) NIL (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#3|))) NIL (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016)))) (($ $ (-271 |#3|)) NIL (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016)))) (($ $ (-589 |#3|) (-589 |#3|)) NIL (-12 (|has| |#3| (-286 |#3|)) (|has| |#3| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#3| (-1016))))) (-3184 (((-589 |#3|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#3| $ (-523) |#3|) NIL) ((|#3| $ (-523)) NIL)) (-1879 ((|#3| $ $) NIL (|has| |#3| (-973)))) (-3621 (($ (-1169 |#3|)) NIL)) (-4012 (((-126)) NIL (|has| |#3| (-339)))) (-4024 (($ $) NIL (-12 (|has| |#3| (-211)) (|has| |#3| (-973)))) (($ $ (-710)) NIL (-12 (|has| |#3| (-211)) (|has| |#3| (-973)))) (($ $ (-1087)) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-1 |#3| |#3|) (-710)) NIL (|has| |#3| (-973))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-973)))) (-2452 (((-710) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4248))) (((-710) |#3| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#3| (-1016))))) (-4124 (($ $) NIL)) (-3976 (((-1169 |#3|) $) NIL) (($ (-523)) NIL (-3255 (-12 (|has| |#3| (-964 (-523))) (|has| |#3| (-1016))) (|has| |#3| (-973)))) (($ (-383 (-523))) NIL (-12 (|has| |#3| (-964 (-383 (-523)))) (|has| |#3| (-1016)))) (($ |#3|) NIL (|has| |#3| (-1016))) (((-794) $) NIL (|has| |#3| (-563 (-794))))) (-1698 (((-710)) NIL (|has| |#3| (-973)))) (-1505 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4248)))) (-3984 (($ $) NIL (|has| |#3| (-784)))) (-2573 (($ $ (-710)) NIL (|has| |#3| (-973))) (($ $ (-852)) NIL (|has| |#3| (-973)))) (-1428 (($) NIL (|has| |#3| (-124)) CONST)) (-1440 (($) NIL (|has| |#3| (-973)) CONST)) (-1943 (($ $) NIL (-12 (|has| |#3| (-211)) (|has| |#3| (-973)))) (($ $ (-710)) NIL (-12 (|has| |#3| (-211)) (|has| |#3| (-973)))) (($ $ (-1087)) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#3| (-831 (-1087))) (|has| |#3| (-973)))) (($ $ (-1 |#3| |#3|) (-710)) NIL (|has| |#3| (-973))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-973)))) (-4078 (((-108) $ $) NIL (-3255 (|has| |#3| (-732)) (|has| |#3| (-784))))) (-4061 (((-108) $ $) NIL (-3255 (|has| |#3| (-732)) (|has| |#3| (-784))))) (-4037 (((-108) $ $) NIL (|has| |#3| (-1016)))) (-4070 (((-108) $ $) NIL (-3255 (|has| |#3| (-732)) (|has| |#3| (-784))))) (-4052 (((-108) $ $) 17 (-3255 (|has| |#3| (-732)) (|has| |#3| (-784))))) (-4125 (($ $ |#3|) NIL (|has| |#3| (-339)))) (-4115 (($ $ $) NIL (|has| |#3| (-973))) (($ $) NIL (|has| |#3| (-973)))) (-4103 (($ $ $) NIL (|has| |#3| (-25)))) (** (($ $ (-710)) NIL (|has| |#3| (-973))) (($ $ (-852)) NIL (|has| |#3| (-973)))) (* (($ $ $) NIL (|has| |#3| (-973))) (($ (-523) $) NIL (|has| |#3| (-973))) (($ $ |#3|) NIL (|has| |#3| (-666))) (($ |#3| $) NIL (|has| |#3| (-666))) (($ (-710) $) NIL (|has| |#3| (-124))) (($ (-852) $) NIL (|has| |#3| (-25)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-1029 |#1| |#2| |#3|) (-216 |#1| |#3|) (-710) (-710) (-732)) (T -1029))
-NIL
-(-216 |#1| |#3|)
-((-2723 (((-589 (-1142 |#2| |#1|)) (-1142 |#2| |#1|) (-1142 |#2| |#1|)) 37)) (-2245 (((-523) (-1142 |#2| |#1|)) 68 (|has| |#1| (-427)))) (-2710 (((-523) (-1142 |#2| |#1|)) 54)) (-3871 (((-589 (-1142 |#2| |#1|)) (-1142 |#2| |#1|) (-1142 |#2| |#1|)) 45)) (-2274 (((-523) (-1142 |#2| |#1|) (-1142 |#2| |#1|)) 56 (|has| |#1| (-427)))) (-3634 (((-589 |#1|) (-1142 |#2| |#1|) (-1142 |#2| |#1|)) 48)) (-1333 (((-523) (-1142 |#2| |#1|) (-1142 |#2| |#1|)) 53)))
-(((-1030 |#1| |#2|) (-10 -7 (-15 -2723 ((-589 (-1142 |#2| |#1|)) (-1142 |#2| |#1|) (-1142 |#2| |#1|))) (-15 -3871 ((-589 (-1142 |#2| |#1|)) (-1142 |#2| |#1|) (-1142 |#2| |#1|))) (-15 -3634 ((-589 |#1|) (-1142 |#2| |#1|) (-1142 |#2| |#1|))) (-15 -1333 ((-523) (-1142 |#2| |#1|) (-1142 |#2| |#1|))) (-15 -2710 ((-523) (-1142 |#2| |#1|))) (IF (|has| |#1| (-427)) (PROGN (-15 -2274 ((-523) (-1142 |#2| |#1|) (-1142 |#2| |#1|))) (-15 -2245 ((-523) (-1142 |#2| |#1|)))) |%noBranch|)) (-759) (-1087)) (T -1030))
-((-2245 (*1 *2 *3) (-12 (-5 *3 (-1142 *5 *4)) (-4 *4 (-427)) (-4 *4 (-759)) (-14 *5 (-1087)) (-5 *2 (-523)) (-5 *1 (-1030 *4 *5)))) (-2274 (*1 *2 *3 *3) (-12 (-5 *3 (-1142 *5 *4)) (-4 *4 (-427)) (-4 *4 (-759)) (-14 *5 (-1087)) (-5 *2 (-523)) (-5 *1 (-1030 *4 *5)))) (-2710 (*1 *2 *3) (-12 (-5 *3 (-1142 *5 *4)) (-4 *4 (-759)) (-14 *5 (-1087)) (-5 *2 (-523)) (-5 *1 (-1030 *4 *5)))) (-1333 (*1 *2 *3 *3) (-12 (-5 *3 (-1142 *5 *4)) (-4 *4 (-759)) (-14 *5 (-1087)) (-5 *2 (-523)) (-5 *1 (-1030 *4 *5)))) (-3634 (*1 *2 *3 *3) (-12 (-5 *3 (-1142 *5 *4)) (-4 *4 (-759)) (-14 *5 (-1087)) (-5 *2 (-589 *4)) (-5 *1 (-1030 *4 *5)))) (-3871 (*1 *2 *3 *3) (-12 (-4 *4 (-759)) (-14 *5 (-1087)) (-5 *2 (-589 (-1142 *5 *4))) (-5 *1 (-1030 *4 *5)) (-5 *3 (-1142 *5 *4)))) (-2723 (*1 *2 *3 *3) (-12 (-4 *4 (-759)) (-14 *5 (-1087)) (-5 *2 (-589 (-1142 *5 *4))) (-5 *1 (-1030 *4 *5)) (-5 *3 (-1142 *5 *4)))))
-(-10 -7 (-15 -2723 ((-589 (-1142 |#2| |#1|)) (-1142 |#2| |#1|) (-1142 |#2| |#1|))) (-15 -3871 ((-589 (-1142 |#2| |#1|)) (-1142 |#2| |#1|) (-1142 |#2| |#1|))) (-15 -3634 ((-589 |#1|) (-1142 |#2| |#1|) (-1142 |#2| |#1|))) (-15 -1333 ((-523) (-1142 |#2| |#1|) (-1142 |#2| |#1|))) (-15 -2710 ((-523) (-1142 |#2| |#1|))) (IF (|has| |#1| (-427)) (PROGN (-15 -2274 ((-523) (-1142 |#2| |#1|) (-1142 |#2| |#1|))) (-15 -2245 ((-523) (-1142 |#2| |#1|)))) |%noBranch|))
-((-2035 (((-3 (-523) "failed") |#2| (-1087) |#2| (-1070)) 17) (((-3 (-523) "failed") |#2| (-1087) (-779 |#2|)) 15) (((-3 (-523) "failed") |#2|) 54)))
-(((-1031 |#1| |#2|) (-10 -7 (-15 -2035 ((-3 (-523) "failed") |#2|)) (-15 -2035 ((-3 (-523) "failed") |#2| (-1087) (-779 |#2|))) (-15 -2035 ((-3 (-523) "failed") |#2| (-1087) |#2| (-1070)))) (-13 (-515) (-786) (-964 (-523)) (-585 (-523)) (-427)) (-13 (-27) (-1109) (-406 |#1|))) (T -1031))
-((-2035 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-1087)) (-5 *5 (-1070)) (-4 *6 (-13 (-515) (-786) (-964 *2) (-585 *2) (-427))) (-5 *2 (-523)) (-5 *1 (-1031 *6 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *6))))) (-2035 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1087)) (-5 *5 (-779 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *6))) (-4 *6 (-13 (-515) (-786) (-964 *2) (-585 *2) (-427))) (-5 *2 (-523)) (-5 *1 (-1031 *6 *3)))) (-2035 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-515) (-786) (-964 *2) (-585 *2) (-427))) (-5 *2 (-523)) (-5 *1 (-1031 *4 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *4))))))
-(-10 -7 (-15 -2035 ((-3 (-523) "failed") |#2|)) (-15 -2035 ((-3 (-523) "failed") |#2| (-1087) (-779 |#2|))) (-15 -2035 ((-3 (-523) "failed") |#2| (-1087) |#2| (-1070))))
-((-2035 (((-3 (-523) "failed") (-383 (-883 |#1|)) (-1087) (-383 (-883 |#1|)) (-1070)) 35) (((-3 (-523) "failed") (-383 (-883 |#1|)) (-1087) (-779 (-383 (-883 |#1|)))) 30) (((-3 (-523) "failed") (-383 (-883 |#1|))) 13)))
-(((-1032 |#1|) (-10 -7 (-15 -2035 ((-3 (-523) "failed") (-383 (-883 |#1|)))) (-15 -2035 ((-3 (-523) "failed") (-383 (-883 |#1|)) (-1087) (-779 (-383 (-883 |#1|))))) (-15 -2035 ((-3 (-523) "failed") (-383 (-883 |#1|)) (-1087) (-383 (-883 |#1|)) (-1070)))) (-427)) (T -1032))
-((-2035 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-383 (-883 *6))) (-5 *4 (-1087)) (-5 *5 (-1070)) (-4 *6 (-427)) (-5 *2 (-523)) (-5 *1 (-1032 *6)))) (-2035 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1087)) (-5 *5 (-779 (-383 (-883 *6)))) (-5 *3 (-383 (-883 *6))) (-4 *6 (-427)) (-5 *2 (-523)) (-5 *1 (-1032 *6)))) (-2035 (*1 *2 *3) (|partial| -12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-427)) (-5 *2 (-523)) (-5 *1 (-1032 *4)))))
-(-10 -7 (-15 -2035 ((-3 (-523) "failed") (-383 (-883 |#1|)))) (-15 -2035 ((-3 (-523) "failed") (-383 (-883 |#1|)) (-1087) (-779 (-383 (-883 |#1|))))) (-15 -2035 ((-3 (-523) "failed") (-383 (-883 |#1|)) (-1087) (-383 (-883 |#1|)) (-1070))))
-((-1804 (((-292 (-523)) (-47)) 12)))
-(((-1033) (-10 -7 (-15 -1804 ((-292 (-523)) (-47))))) (T -1033))
-((-1804 (*1 *2 *3) (-12 (-5 *3 (-47)) (-5 *2 (-292 (-523))) (-5 *1 (-1033)))))
-(-10 -7 (-15 -1804 ((-292 (-523)) (-47))))
-((-3260 (((-108) $ $) NIL)) (-3382 (($ $) 41)) (-2388 (((-108) $) 65)) (-3485 (($ $ $) 48)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 85)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-3333 (($ $ $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1746 (($ $ $ $) 74)) (-3763 (($ $) NIL)) (-2105 (((-394 $) $) NIL)) (-3684 (((-108) $ $) NIL)) (-2035 (((-523) $) NIL)) (-3565 (($ $ $) 71)) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL)) (-1996 (((-523) $) NIL)) (-2501 (($ $ $) 59)) (-2203 (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 79) (((-629 (-523)) (-629 $)) 28)) (-4211 (((-3 $ "failed") $) NIL)) (-4031 (((-3 (-383 (-523)) "failed") $) NIL)) (-1310 (((-108) $) NIL)) (-1600 (((-383 (-523)) $) NIL)) (-3461 (($) 82) (($ $) 83)) (-2486 (($ $ $) 58)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL)) (-1330 (((-108) $) NIL)) (-1872 (($ $ $ $) NIL)) (-3389 (($ $ $) 80)) (-3702 (((-108) $) NIL)) (-4080 (($ $ $) NIL)) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL)) (-3482 (((-108) $) 66)) (-2126 (((-108) $) 64)) (-2575 (($ $) 42)) (-1289 (((-3 $ "failed") $) NIL)) (-4050 (((-108) $) 75)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-2728 (($ $ $ $) 72)) (-3268 (($ $ $) 68) (($) 39)) (-2644 (($ $ $) 67) (($) 38)) (-3541 (($ $) NIL)) (-3229 (($ $) 70)) (-2012 (($ $ $) NIL) (($ (-589 $)) NIL)) (-3841 (((-1070) $) NIL)) (-1694 (($ $ $) NIL)) (-4105 (($) NIL T CONST)) (-2142 (($ $) 50)) (-2435 (((-1034) $) NIL) (($ $) 69)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL)) (-2056 (($ $ $) 62) (($ (-589 $)) NIL)) (-1763 (($ $) NIL)) (-3573 (((-394 $) $) NIL)) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL)) (-2469 (((-3 $ "failed") $ $) NIL)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL)) (-3775 (((-108) $) NIL)) (-3087 (((-710) $) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 61)) (-4024 (($ $ (-710)) NIL) (($ $) NIL)) (-3012 (($ $) 51)) (-4124 (($ $) NIL)) (-3077 (((-523) $) 32) (((-499) $) NIL) (((-823 (-523)) $) NIL) (((-355) $) NIL) (((-203) $) NIL)) (-3976 (((-794) $) 31) (($ (-523)) 81) (($ $) NIL) (($ (-523)) 81)) (-1698 (((-710)) NIL)) (-3505 (((-108) $ $) NIL)) (-1475 (($ $ $) NIL)) (-3912 (($) 37)) (-3842 (((-108) $ $) NIL)) (-3348 (($ $ $ $) 73)) (-3984 (($ $) 63)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-2526 (($ $ $) 44)) (-1428 (($) 35 T CONST)) (-2472 (($ $ $) 47)) (-1440 (($) 36 T CONST)) (-3342 (((-1070) $) 21) (((-1070) $ (-108)) 23) (((-1174) (-761) $) 24) (((-1174) (-761) $ (-108)) 25)) (-2480 (($ $) 45)) (-1943 (($ $ (-710)) NIL) (($ $) NIL)) (-2463 (($ $ $) 46)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 40)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 49)) (-2516 (($ $ $) 43)) (-4115 (($ $) 52) (($ $ $) 54)) (-4103 (($ $ $) 53)) (** (($ $ (-852)) NIL) (($ $ (-710)) 57)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 34) (($ $ $) 55)))
-(((-1034) (-13 (-508) (-604) (-767) (-10 -8 (-6 -4235) (-6 -4240) (-6 -4236) (-15 -2644 ($)) (-15 -3268 ($)) (-15 -2575 ($ $)) (-15 -3382 ($ $)) (-15 -2516 ($ $ $)) (-15 -2526 ($ $ $)) (-15 -3485 ($ $ $)) (-15 -2480 ($ $)) (-15 -2463 ($ $ $)) (-15 -2472 ($ $ $))))) (T -1034))
-((-2526 (*1 *1 *1 *1) (-5 *1 (-1034))) (-2516 (*1 *1 *1 *1) (-5 *1 (-1034))) (-3382 (*1 *1 *1) (-5 *1 (-1034))) (-2644 (*1 *1) (-5 *1 (-1034))) (-3268 (*1 *1) (-5 *1 (-1034))) (-2575 (*1 *1 *1) (-5 *1 (-1034))) (-3485 (*1 *1 *1 *1) (-5 *1 (-1034))) (-2480 (*1 *1 *1) (-5 *1 (-1034))) (-2463 (*1 *1 *1 *1) (-5 *1 (-1034))) (-2472 (*1 *1 *1 *1) (-5 *1 (-1034))))
-(-13 (-508) (-604) (-767) (-10 -8 (-6 -4235) (-6 -4240) (-6 -4236) (-15 -2644 ($)) (-15 -3268 ($)) (-15 -2575 ($ $)) (-15 -3382 ($ $)) (-15 -2516 ($ $ $)) (-15 -2526 ($ $ $)) (-15 -3485 ($ $ $)) (-15 -2480 ($ $)) (-15 -2463 ($ $ $)) (-15 -2472 ($ $ $))))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-3346 ((|#1| $) 44)) (-2282 (((-108) $ (-710)) 8)) (-1640 (($) 7 T CONST)) (-2230 ((|#1| |#1| $) 46)) (-2868 ((|#1| $) 45)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2349 ((|#1| $) 39)) (-3862 (($ |#1| $) 40)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-1322 ((|#1| $) 41)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-4120 (((-710) $) 43)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1245 (($ (-589 |#1|)) 42)) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-1035 |#1|) (-129) (-1123)) (T -1035))
-((-2230 (*1 *2 *2 *1) (-12 (-4 *1 (-1035 *2)) (-4 *2 (-1123)))) (-2868 (*1 *2 *1) (-12 (-4 *1 (-1035 *2)) (-4 *2 (-1123)))) (-3346 (*1 *2 *1) (-12 (-4 *1 (-1035 *2)) (-4 *2 (-1123)))) (-4120 (*1 *2 *1) (-12 (-4 *1 (-1035 *3)) (-4 *3 (-1123)) (-5 *2 (-710)))))
-(-13 (-102 |t#1|) (-10 -8 (-6 -4248) (-15 -2230 (|t#1| |t#1| $)) (-15 -2868 (|t#1| $)) (-15 -3346 (|t#1| $)) (-15 -4120 ((-710) $))))
-(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-4131 ((|#3| $) 76)) (-2898 (((-3 (-523) "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL) (((-3 |#3| "failed") $) 40)) (-1996 (((-523) $) NIL) (((-383 (-523)) $) NIL) ((|#3| $) 37)) (-2203 (((-629 (-523)) (-629 $)) NIL) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL) (((-2 (|:| -2373 (-629 |#3|)) (|:| |vec| (-1169 |#3|))) (-629 $) (-1169 $)) 73) (((-629 |#3|) (-629 $)) 65)) (-4024 (($ $ (-1 |#3| |#3|)) 19) (($ $ (-1 |#3| |#3|) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087)) NIL) (($ $ (-710)) NIL) (($ $) NIL)) (-3092 ((|#3| $) 78)) (-4088 ((|#4| $) 32)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ (-383 (-523))) NIL) (($ |#3|) 16)) (** (($ $ (-852)) NIL) (($ $ (-710)) 15) (($ $ (-523)) 82)))
-(((-1036 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 ** (|#1| |#1| (-523))) (-15 -3092 (|#3| |#1|)) (-15 -4131 (|#3| |#1|)) (-15 -4088 (|#4| |#1|)) (-15 -2203 ((-629 |#3|) (-629 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 |#3|)) (|:| |vec| (-1169 |#3|))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-629 (-523)) (-629 |#1|))) (-15 -1996 (|#3| |#1|)) (-15 -2898 ((-3 |#3| "failed") |#1|)) (-15 -3976 (|#1| |#3|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -4024 (|#1| |#1| (-1 |#3| |#3|) (-710))) (-15 -4024 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3976 (|#1| (-523))) (-15 ** (|#1| |#1| (-710))) (-15 ** (|#1| |#1| (-852))) (-15 -3976 ((-794) |#1|))) (-1037 |#2| |#3| |#4| |#5|) (-710) (-973) (-216 |#2| |#3|) (-216 |#2| |#3|)) (T -1036))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-523))) (-15 -3092 (|#3| |#1|)) (-15 -4131 (|#3| |#1|)) (-15 -4088 (|#4| |#1|)) (-15 -2203 ((-629 |#3|) (-629 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 |#3|)) (|:| |vec| (-1169 |#3|))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 |#1|) (-1169 |#1|))) (-15 -2203 ((-629 (-523)) (-629 |#1|))) (-15 -1996 (|#3| |#1|)) (-15 -2898 ((-3 |#3| "failed") |#1|)) (-15 -3976 (|#1| |#3|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-523) |#1|)) (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -4024 (|#1| |#1| (-1 |#3| |#3|) (-710))) (-15 -4024 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3976 (|#1| (-523))) (-15 ** (|#1| |#1| (-710))) (-15 ** (|#1| |#1| (-852))) (-15 -3976 ((-794) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-4131 ((|#2| $) 72)) (-2624 (((-108) $) 112)) (-2999 (((-3 $ "failed") $ $) 19)) (-2108 (((-108) $) 110)) (-2282 (((-108) $ (-710)) 102)) (-1370 (($ |#2|) 75)) (-1640 (($) 17 T CONST)) (-1561 (($ $) 129 (|has| |#2| (-284)))) (-2823 ((|#3| $ (-523)) 124)) (-2898 (((-3 (-523) "failed") $) 86 (|has| |#2| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) 84 (|has| |#2| (-964 (-383 (-523))))) (((-3 |#2| "failed") $) 81)) (-1996 (((-523) $) 87 (|has| |#2| (-964 (-523)))) (((-383 (-523)) $) 85 (|has| |#2| (-964 (-383 (-523))))) ((|#2| $) 80)) (-2203 (((-629 (-523)) (-629 $)) 79 (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 78 (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) 77) (((-629 |#2|) (-629 $)) 76)) (-4211 (((-3 $ "failed") $) 34)) (-2262 (((-710) $) 130 (|has| |#2| (-515)))) (-3002 ((|#2| $ (-523) (-523)) 122)) (-3133 (((-589 |#2|) $) 95 (|has| $ (-6 -4248)))) (-3482 (((-108) $) 31)) (-2534 (((-710) $) 131 (|has| |#2| (-515)))) (-3392 (((-589 |#4|) $) 132 (|has| |#2| (-515)))) (-3656 (((-710) $) 118)) (-3668 (((-710) $) 119)) (-1344 (((-108) $ (-710)) 103)) (-2082 ((|#2| $) 67 (|has| |#2| (-6 (-4250 "*"))))) (-1392 (((-523) $) 114)) (-1219 (((-523) $) 116)) (-3056 (((-589 |#2|) $) 94 (|has| $ (-6 -4248)))) (-1348 (((-108) |#2| $) 92 (-12 (|has| |#2| (-1016)) (|has| $ (-6 -4248))))) (-2102 (((-523) $) 115)) (-3328 (((-523) $) 117)) (-3078 (($ (-589 (-589 |#2|))) 109)) (-3063 (($ (-1 |#2| |#2|) $) 99 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#2| |#2| |#2|) $ $) 126) (($ (-1 |#2| |#2|) $) 100)) (-3522 (((-589 (-589 |#2|)) $) 120)) (-4042 (((-108) $ (-710)) 104)) (-3841 (((-1070) $) 9)) (-3714 (((-3 $ "failed") $) 66 (|has| |#2| (-339)))) (-2435 (((-1034) $) 10)) (-2469 (((-3 $ "failed") $ |#2|) 127 (|has| |#2| (-515)))) (-2720 (((-108) (-1 (-108) |#2|) $) 97 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#2|))) 91 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) 90 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) 89 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) 88 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))) (-2391 (((-108) $ $) 108)) (-3163 (((-108) $) 105)) (-4055 (($) 106)) (-1502 ((|#2| $ (-523) (-523) |#2|) 123) ((|#2| $ (-523) (-523)) 121)) (-4024 (($ $ (-1 |#2| |#2|)) 52) (($ $ (-1 |#2| |#2|) (-710)) 51) (($ $ (-589 (-1087)) (-589 (-710))) 44 (|has| |#2| (-831 (-1087)))) (($ $ (-1087) (-710)) 43 (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087))) 42 (|has| |#2| (-831 (-1087)))) (($ $ (-1087)) 41 (|has| |#2| (-831 (-1087)))) (($ $ (-710)) 39 (|has| |#2| (-211))) (($ $) 37 (|has| |#2| (-211)))) (-3092 ((|#2| $) 71)) (-2148 (($ (-589 |#2|)) 74)) (-2395 (((-108) $) 111)) (-4088 ((|#3| $) 73)) (-1273 ((|#2| $) 68 (|has| |#2| (-6 (-4250 "*"))))) (-2452 (((-710) (-1 (-108) |#2|) $) 96 (|has| $ (-6 -4248))) (((-710) |#2| $) 93 (-12 (|has| |#2| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 107)) (-2032 ((|#4| $ (-523)) 125)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ (-383 (-523))) 83 (|has| |#2| (-964 (-383 (-523))))) (($ |#2|) 82)) (-1698 (((-710)) 29)) (-1505 (((-108) (-1 (-108) |#2|) $) 98 (|has| $ (-6 -4248)))) (-2791 (((-108) $) 113)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ (-1 |#2| |#2|)) 50) (($ $ (-1 |#2| |#2|) (-710)) 49) (($ $ (-589 (-1087)) (-589 (-710))) 48 (|has| |#2| (-831 (-1087)))) (($ $ (-1087) (-710)) 47 (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087))) 46 (|has| |#2| (-831 (-1087)))) (($ $ (-1087)) 45 (|has| |#2| (-831 (-1087)))) (($ $ (-710)) 40 (|has| |#2| (-211))) (($ $) 38 (|has| |#2| (-211)))) (-4037 (((-108) $ $) 6)) (-4125 (($ $ |#2|) 128 (|has| |#2| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 65 (|has| |#2| (-339)))) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#2|) 134) (($ |#2| $) 133) ((|#4| $ |#4|) 70) ((|#3| |#3| $) 69)) (-1271 (((-710) $) 101 (|has| $ (-6 -4248)))))
-(((-1037 |#1| |#2| |#3| |#4|) (-129) (-710) (-973) (-216 |t#1| |t#2|) (-216 |t#1| |t#2|)) (T -1037))
-((-1370 (*1 *1 *2) (-12 (-4 *2 (-973)) (-4 *1 (-1037 *3 *2 *4 *5)) (-4 *4 (-216 *3 *2)) (-4 *5 (-216 *3 *2)))) (-2148 (*1 *1 *2) (-12 (-5 *2 (-589 *4)) (-4 *4 (-973)) (-4 *1 (-1037 *3 *4 *5 *6)) (-4 *5 (-216 *3 *4)) (-4 *6 (-216 *3 *4)))) (-4088 (*1 *2 *1) (-12 (-4 *1 (-1037 *3 *4 *2 *5)) (-4 *4 (-973)) (-4 *5 (-216 *3 *4)) (-4 *2 (-216 *3 *4)))) (-4131 (*1 *2 *1) (-12 (-4 *1 (-1037 *3 *2 *4 *5)) (-4 *4 (-216 *3 *2)) (-4 *5 (-216 *3 *2)) (-4 *2 (-973)))) (-3092 (*1 *2 *1) (-12 (-4 *1 (-1037 *3 *2 *4 *5)) (-4 *4 (-216 *3 *2)) (-4 *5 (-216 *3 *2)) (-4 *2 (-973)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-1037 *3 *4 *5 *2)) (-4 *4 (-973)) (-4 *5 (-216 *3 *4)) (-4 *2 (-216 *3 *4)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-1037 *3 *4 *2 *5)) (-4 *4 (-973)) (-4 *2 (-216 *3 *4)) (-4 *5 (-216 *3 *4)))) (-1273 (*1 *2 *1) (-12 (-4 *1 (-1037 *3 *2 *4 *5)) (-4 *4 (-216 *3 *2)) (-4 *5 (-216 *3 *2)) (|has| *2 (-6 (-4250 "*"))) (-4 *2 (-973)))) (-2082 (*1 *2 *1) (-12 (-4 *1 (-1037 *3 *2 *4 *5)) (-4 *4 (-216 *3 *2)) (-4 *5 (-216 *3 *2)) (|has| *2 (-6 (-4250 "*"))) (-4 *2 (-973)))) (-3714 (*1 *1 *1) (|partial| -12 (-4 *1 (-1037 *2 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-216 *2 *3)) (-4 *5 (-216 *2 *3)) (-4 *3 (-339)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-1037 *3 *4 *5 *6)) (-4 *4 (-973)) (-4 *5 (-216 *3 *4)) (-4 *6 (-216 *3 *4)) (-4 *4 (-339)))))
-(-13 (-209 |t#2|) (-107 |t#2| |t#2|) (-976 |t#1| |t#1| |t#2| |t#3| |t#4|) (-387 |t#2|) (-353 |t#2|) (-10 -8 (IF (|has| |t#2| (-158)) (-6 (-657 |t#2|)) |%noBranch|) (-15 -1370 ($ |t#2|)) (-15 -2148 ($ (-589 |t#2|))) (-15 -4088 (|t#3| $)) (-15 -4131 (|t#2| $)) (-15 -3092 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4250 "*"))) (PROGN (-6 (-37 |t#2|)) (-15 -1273 (|t#2| $)) (-15 -2082 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-339)) (PROGN (-15 -3714 ((-3 $ "failed") $)) (-15 ** ($ $ (-523)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-33) . T) ((-37 |#2|) |has| |#2| (-6 (-4250 "*"))) ((-97) . T) ((-107 |#2| |#2|) . T) ((-124) . T) ((-563 (-794)) . T) ((-209 |#2|) . T) ((-211) |has| |#2| (-211)) ((-286 |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((-353 |#2|) . T) ((-387 |#2|) . T) ((-462 |#2|) . T) ((-484 |#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((-591 |#2|) . T) ((-591 $) . T) ((-585 (-523)) |has| |#2| (-585 (-523))) ((-585 |#2|) . T) ((-657 |#2|) -3255 (|has| |#2| (-158)) (|has| |#2| (-6 (-4250 "*")))) ((-666) . T) ((-831 (-1087)) |has| |#2| (-831 (-1087))) ((-976 |#1| |#1| |#2| |#3| |#4|) . T) ((-964 (-383 (-523))) |has| |#2| (-964 (-383 (-523)))) ((-964 (-523)) |has| |#2| (-964 (-523))) ((-964 |#2|) . T) ((-979 |#2|) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1123) . T))
-((-2510 ((|#4| |#4|) 70)) (-2661 ((|#4| |#4|) 65)) (-3635 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2922 (-589 |#3|))) |#4| |#3|) 78)) (-3076 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 69)) (-2537 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 67)))
-(((-1038 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2661 (|#4| |#4|)) (-15 -2537 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -2510 (|#4| |#4|)) (-15 -3076 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -3635 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2922 (-589 |#3|))) |#4| |#3|))) (-284) (-349 |#1|) (-349 |#1|) (-627 |#1| |#2| |#3|)) (T -1038))
-((-3635 (*1 *2 *3 *4) (-12 (-4 *5 (-284)) (-4 *6 (-349 *5)) (-4 *4 (-349 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4)))) (-5 *1 (-1038 *5 *6 *4 *3)) (-4 *3 (-627 *5 *6 *4)))) (-3076 (*1 *2 *3) (-12 (-4 *4 (-284)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4)) (-5 *2 (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3))) (-5 *1 (-1038 *4 *5 *6 *3)) (-4 *3 (-627 *4 *5 *6)))) (-2510 (*1 *2 *2) (-12 (-4 *3 (-284)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *1 (-1038 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))) (-2537 (*1 *2 *3) (-12 (-4 *4 (-284)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4)) (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3))) (-5 *1 (-1038 *4 *5 *6 *3)) (-4 *3 (-627 *4 *5 *6)))) (-2661 (*1 *2 *2) (-12 (-4 *3 (-284)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *1 (-1038 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))))
-(-10 -7 (-15 -2661 (|#4| |#4|)) (-15 -2537 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -2510 (|#4| |#4|)) (-15 -3076 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -3635 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2922 (-589 |#3|))) |#4| |#3|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 17)) (-3716 (((-589 |#2|) $) 161)) (-3540 (((-1083 $) $ |#2|) 54) (((-1083 |#1|) $) 43)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 110 (|has| |#1| (-515)))) (-3950 (($ $) 112 (|has| |#1| (-515)))) (-3226 (((-108) $) 114 (|has| |#1| (-515)))) (-2862 (((-710) $) NIL) (((-710) $ (-589 |#2|)) 194)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3763 (($ $) NIL (|has| |#1| (-427)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) 158) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 |#2| "failed") $) NIL)) (-1996 ((|#1| $) 156) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-523) $) NIL (|has| |#1| (-964 (-523)))) ((|#2| $) NIL)) (-2210 (($ $ $ |#2|) NIL (|has| |#1| (-158)))) (-3142 (($ $) 198)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) NIL) (((-629 |#1|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) 82)) (-2213 (($ $) NIL (|has| |#1| (-427))) (($ $ |#2|) NIL (|has| |#1| (-427)))) (-3127 (((-589 $) $) NIL)) (-1330 (((-108) $) NIL (|has| |#1| (-840)))) (-2067 (($ $ |#1| (-495 |#2|) $) NIL)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| |#1| (-817 (-355))) (|has| |#2| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| |#1| (-817 (-523))) (|has| |#2| (-817 (-523)))))) (-3482 (((-108) $) 19)) (-3288 (((-710) $) 26)) (-3706 (($ (-1083 |#1|) |#2|) 48) (($ (-1083 $) |#2|) 64)) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) 32)) (-3694 (($ |#1| (-495 |#2|)) 71) (($ $ |#2| (-710)) 52) (($ $ (-589 |#2|) (-589 (-710))) NIL)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ |#2|) NIL)) (-2140 (((-495 |#2|) $) 188) (((-710) $ |#2|) 189) (((-589 (-710)) $ (-589 |#2|)) 190)) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3927 (($ (-1 (-495 |#2|) (-495 |#2|)) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) 122)) (-1949 (((-3 |#2| "failed") $) 163)) (-3107 (($ $) 197)) (-3119 ((|#1| $) 37)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-3841 (((-1070) $) NIL)) (-3818 (((-3 (-589 $) "failed") $) NIL)) (-1973 (((-3 (-589 $) "failed") $) NIL)) (-3719 (((-3 (-2 (|:| |var| |#2|) (|:| -3262 (-710))) "failed") $) NIL)) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) 33)) (-3095 ((|#1| $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 140 (|has| |#1| (-427)))) (-2056 (($ (-589 $)) 145 (|has| |#1| (-427))) (($ $ $) 132 (|has| |#1| (-427)))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#1| (-840)))) (-3573 (((-394 $) $) NIL (|has| |#1| (-840)))) (-2469 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515))) (((-3 $ "failed") $ $) 120 (|has| |#1| (-515)))) (-1349 (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ |#2| |#1|) 166) (($ $ (-589 |#2|) (-589 |#1|)) 179) (($ $ |#2| $) 165) (($ $ (-589 |#2|) (-589 $)) 178)) (-4053 (($ $ |#2|) NIL (|has| |#1| (-158)))) (-4024 (($ $ |#2|) 196) (($ $ (-589 |#2|)) NIL) (($ $ |#2| (-710)) NIL) (($ $ (-589 |#2|) (-589 (-710))) NIL)) (-1487 (((-495 |#2|) $) 184) (((-710) $ |#2|) 180) (((-589 (-710)) $ (-589 |#2|)) 182)) (-3077 (((-823 (-355)) $) NIL (-12 (|has| |#1| (-564 (-823 (-355)))) (|has| |#2| (-564 (-823 (-355)))))) (((-823 (-523)) $) NIL (-12 (|has| |#1| (-564 (-823 (-523)))) (|has| |#2| (-564 (-823 (-523)))))) (((-499) $) NIL (-12 (|has| |#1| (-564 (-499))) (|has| |#2| (-564 (-499)))))) (-2267 ((|#1| $) 128 (|has| |#1| (-427))) (($ $ |#2|) 131 (|has| |#1| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#1| (-840))))) (-3976 (((-794) $) 151) (($ (-523)) 76) (($ |#1|) 77) (($ |#2|) 28) (($ $) NIL (|has| |#1| (-515))) (($ (-383 (-523))) NIL (-3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-964 (-383 (-523))))))) (-1639 (((-589 |#1|) $) 154)) (-1234 ((|#1| $ (-495 |#2|)) 73) (($ $ |#2| (-710)) NIL) (($ $ (-589 |#2|) (-589 (-710))) NIL)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#1| (-840))) (|has| |#1| (-134))))) (-1698 (((-710)) 79)) (-2656 (($ $ $ (-710)) NIL (|has| |#1| (-158)))) (-3842 (((-108) $ $) 117 (|has| |#1| (-515)))) (-2573 (($ $ (-852)) 102) (($ $ (-710)) 104)) (-1428 (($) 12 T CONST)) (-1440 (($) 14 T CONST)) (-1943 (($ $ |#2|) NIL) (($ $ (-589 |#2|)) NIL) (($ $ |#2| (-710)) NIL) (($ $ (-589 |#2|) (-589 (-710))) NIL)) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) 97)) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4125 (($ $ |#1|) 126 (|has| |#1| (-339)))) (-4115 (($ $) 85) (($ $ $) 95)) (-4103 (($ $ $) 49)) (** (($ $ (-852)) 103) (($ $ (-710)) 100)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 88) (($ $ $) 65) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) 90) (($ $ |#1|) NIL)))
-(((-1039 |#1| |#2|) (-880 |#1| (-495 |#2|) |#2|) (-973) (-786)) (T -1039))
-NIL
-(-880 |#1| (-495 |#2|) |#2|)
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3716 (((-589 |#2|) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-3695 (($ $) 143 (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) 119 (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3669 (($ $) 139 (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) 115 (|has| |#1| (-37 (-383 (-523)))))) (-3717 (($ $) 147 (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) 123 (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) NIL T CONST)) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3241 (((-883 |#1|) $ (-710)) NIL) (((-883 |#1|) $ (-710) (-710)) NIL)) (-2294 (((-108) $) NIL)) (-2188 (($) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1500 (((-710) $ |#2|) NIL) (((-710) $ |#2| (-710)) NIL)) (-3482 (((-108) $) NIL)) (-1324 (($ $ (-523)) NIL (|has| |#1| (-37 (-383 (-523)))))) (-4060 (((-108) $) NIL)) (-3694 (($ $ (-589 |#2|) (-589 (-495 |#2|))) NIL) (($ $ |#2| (-495 |#2|)) NIL) (($ |#1| (-495 |#2|)) NIL) (($ $ |#2| (-710)) 58) (($ $ (-589 |#2|) (-589 (-710))) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-2062 (($ $) 113 (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2669 (($ $ |#2|) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ |#2| |#1|) 166 (|has| |#1| (-37 (-383 (-523)))))) (-2435 (((-1034) $) NIL)) (-3951 (($ (-1 $) |#2| |#1|) 165 (|has| |#1| (-37 (-383 (-523)))))) (-1361 (($ $ (-710)) 15)) (-2469 (((-3 $ "failed") $ $) NIL (|has| |#1| (-515)))) (-1847 (($ $) 111 (|has| |#1| (-37 (-383 (-523)))))) (-1349 (($ $ |#2| $) 97) (($ $ (-589 |#2|) (-589 $)) 90) (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL)) (-4024 (($ $ |#2|) 100) (($ $ (-589 |#2|)) NIL) (($ $ |#2| (-710)) NIL) (($ $ (-589 |#2|) (-589 (-710))) NIL)) (-1487 (((-495 |#2|) $) NIL)) (-1938 (((-1 (-1068 |#3|) |#3|) (-589 |#2|) (-589 (-1068 |#3|))) 79)) (-3730 (($ $) 149 (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) 125 (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) 145 (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) 121 (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) 141 (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) 117 (|has| |#1| (-37 (-383 (-523)))))) (-3749 (($ $) 17)) (-3976 (((-794) $) 182) (($ (-523)) NIL) (($ |#1|) 44 (|has| |#1| (-158))) (($ $) NIL (|has| |#1| (-515))) (($ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ |#2|) 65) (($ |#3|) 63)) (-1234 ((|#1| $ (-495 |#2|)) NIL) (($ $ |#2| (-710)) NIL) (($ $ (-589 |#2|) (-589 (-710))) NIL) ((|#3| $ (-710)) 42)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) NIL)) (-3768 (($ $) 155 (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) 131 (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3743 (($ $) 151 (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) 127 (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) 159 (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) 135 (|has| |#1| (-37 (-383 (-523)))))) (-3135 (($ $) 161 (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) 137 (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) 157 (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) 133 (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) 153 (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) 129 (|has| |#1| (-37 (-383 (-523)))))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 18 T CONST)) (-1440 (($) 10 T CONST)) (-1943 (($ $ |#2|) NIL) (($ $ (-589 |#2|)) NIL) (($ $ |#2| (-710)) NIL) (($ $ (-589 |#2|) (-589 (-710))) NIL)) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ |#1|) 184 (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) 61)) (** (($ $ (-852)) NIL) (($ $ (-710)) 70) (($ $ $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 103 (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 60) (($ $ (-383 (-523))) 108 (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) 106 (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) 47) (($ $ |#1|) 48) (($ |#3| $) 46)))
-(((-1040 |#1| |#2| |#3|) (-13 (-680 |#1| |#2|) (-10 -8 (-15 -1234 (|#3| $ (-710))) (-15 -3976 ($ |#2|)) (-15 -3976 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -1938 ((-1 (-1068 |#3|) |#3|) (-589 |#2|) (-589 (-1068 |#3|)))) (IF (|has| |#1| (-37 (-383 (-523)))) (PROGN (-15 -2669 ($ $ |#2| |#1|)) (-15 -3951 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-973) (-786) (-880 |#1| (-495 |#2|) |#2|)) (T -1040))
-((-1234 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-4 *2 (-880 *4 (-495 *5) *5)) (-5 *1 (-1040 *4 *5 *2)) (-4 *4 (-973)) (-4 *5 (-786)))) (-3976 (*1 *1 *2) (-12 (-4 *3 (-973)) (-4 *2 (-786)) (-5 *1 (-1040 *3 *2 *4)) (-4 *4 (-880 *3 (-495 *2) *2)))) (-3976 (*1 *1 *2) (-12 (-4 *3 (-973)) (-4 *4 (-786)) (-5 *1 (-1040 *3 *4 *2)) (-4 *2 (-880 *3 (-495 *4) *4)))) (* (*1 *1 *2 *1) (-12 (-4 *3 (-973)) (-4 *4 (-786)) (-5 *1 (-1040 *3 *4 *2)) (-4 *2 (-880 *3 (-495 *4) *4)))) (-1938 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *6)) (-5 *4 (-589 (-1068 *7))) (-4 *6 (-786)) (-4 *7 (-880 *5 (-495 *6) *6)) (-4 *5 (-973)) (-5 *2 (-1 (-1068 *7) *7)) (-5 *1 (-1040 *5 *6 *7)))) (-2669 (*1 *1 *1 *2 *3) (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-4 *2 (-786)) (-5 *1 (-1040 *3 *2 *4)) (-4 *4 (-880 *3 (-495 *2) *2)))) (-3951 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1040 *4 *3 *5))) (-4 *4 (-37 (-383 (-523)))) (-4 *4 (-973)) (-4 *3 (-786)) (-5 *1 (-1040 *4 *3 *5)) (-4 *5 (-880 *4 (-495 *3) *3)))))
-(-13 (-680 |#1| |#2|) (-10 -8 (-15 -1234 (|#3| $ (-710))) (-15 -3976 ($ |#2|)) (-15 -3976 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -1938 ((-1 (-1068 |#3|) |#3|) (-589 |#2|) (-589 (-1068 |#3|)))) (IF (|has| |#1| (-37 (-383 (-523)))) (PROGN (-15 -2669 ($ $ |#2| |#1|)) (-15 -3951 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
-((-3260 (((-108) $ $) 7)) (-2778 (((-589 (-2 (|:| -3922 $) (|:| -3439 (-589 |#4|)))) (-589 |#4|)) 85)) (-2311 (((-589 $) (-589 |#4|)) 86) (((-589 $) (-589 |#4|) (-108)) 111)) (-3716 (((-589 |#3|) $) 33)) (-2011 (((-108) $) 26)) (-2821 (((-108) $) 17 (|has| |#1| (-515)))) (-3103 (((-108) |#4| $) 101) (((-108) $) 97)) (-4165 ((|#4| |#4| $) 92)) (-3763 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 $))) |#4| $) 126)) (-3400 (((-2 (|:| |under| $) (|:| -1250 $) (|:| |upper| $)) $ |#3|) 27)) (-2282 (((-108) $ (-710)) 44)) (-1299 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4248))) (((-3 |#4| "failed") $ |#3|) 79)) (-1640 (($) 45 T CONST)) (-1619 (((-108) $) 22 (|has| |#1| (-515)))) (-2927 (((-108) $ $) 24 (|has| |#1| (-515)))) (-3685 (((-108) $ $) 23 (|has| |#1| (-515)))) (-2457 (((-108) $) 25 (|has| |#1| (-515)))) (-3021 (((-589 |#4|) (-589 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-2341 (((-589 |#4|) (-589 |#4|) $) 18 (|has| |#1| (-515)))) (-3450 (((-589 |#4|) (-589 |#4|) $) 19 (|has| |#1| (-515)))) (-2898 (((-3 $ "failed") (-589 |#4|)) 36)) (-1996 (($ (-589 |#4|)) 35)) (-3891 (((-3 $ "failed") $) 82)) (-3880 ((|#4| |#4| $) 89)) (-3917 (($ $) 68 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ |#4| $) 67 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4248)))) (-3143 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-515)))) (-3605 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-3058 ((|#4| |#4| $) 87)) (-1830 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4248))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4248))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-3161 (((-2 (|:| -3922 (-589 |#4|)) (|:| -3439 (-589 |#4|))) $) 105)) (-2422 (((-108) |#4| $) 136)) (-4171 (((-108) |#4| $) 133)) (-3004 (((-108) |#4| $) 137) (((-108) $) 134)) (-3133 (((-589 |#4|) $) 52 (|has| $ (-6 -4248)))) (-2407 (((-108) |#4| $) 104) (((-108) $) 103)) (-2694 ((|#3| $) 34)) (-1344 (((-108) $ (-710)) 43)) (-3056 (((-589 |#4|) $) 53 (|has| $ (-6 -4248)))) (-1348 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#4| |#4|) $) 47)) (-4100 (((-589 |#3|) $) 32)) (-2863 (((-108) |#3| $) 31)) (-4042 (((-108) $ (-710)) 42)) (-3841 (((-1070) $) 9)) (-3726 (((-3 |#4| (-589 $)) |#4| |#4| $) 128)) (-3216 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 $))) |#4| |#4| $) 127)) (-2247 (((-3 |#4| "failed") $) 83)) (-2818 (((-589 $) |#4| $) 129)) (-1446 (((-3 (-108) (-589 $)) |#4| $) 132)) (-4226 (((-589 (-2 (|:| |val| (-108)) (|:| -2394 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-1625 (((-589 $) |#4| $) 125) (((-589 $) (-589 |#4|) $) 124) (((-589 $) (-589 |#4|) (-589 $)) 123) (((-589 $) |#4| (-589 $)) 122)) (-2795 (($ |#4| $) 117) (($ (-589 |#4|) $) 116)) (-3403 (((-589 |#4|) $) 107)) (-3761 (((-108) |#4| $) 99) (((-108) $) 95)) (-1728 ((|#4| |#4| $) 90)) (-1454 (((-108) $ $) 110)) (-1916 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-515)))) (-2152 (((-108) |#4| $) 100) (((-108) $) 96)) (-2347 ((|#4| |#4| $) 91)) (-2435 (((-1034) $) 10)) (-3879 (((-3 |#4| "failed") $) 84)) (-2660 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-2594 (((-3 $ "failed") $ |#4|) 78)) (-1361 (($ $ |#4|) 77) (((-589 $) |#4| $) 115) (((-589 $) |#4| (-589 $)) 114) (((-589 $) (-589 |#4|) $) 113) (((-589 $) (-589 |#4|) (-589 $)) 112)) (-2720 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 |#4|) (-589 |#4|)) 59 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-271 |#4|)) 57 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-589 (-271 |#4|))) 56 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))) (-2391 (((-108) $ $) 38)) (-3163 (((-108) $) 41)) (-4055 (($) 40)) (-1487 (((-710) $) 106)) (-2452 (((-710) |#4| $) 54 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) (((-710) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4248)))) (-4124 (($ $) 39)) (-3077 (((-499) $) 69 (|has| |#4| (-564 (-499))))) (-3985 (($ (-589 |#4|)) 60)) (-4135 (($ $ |#3|) 28)) (-1318 (($ $ |#3|) 30)) (-3444 (($ $) 88)) (-2023 (($ $ |#3|) 29)) (-3976 (((-794) $) 11) (((-589 |#4|) $) 37)) (-3221 (((-710) $) 76 (|has| |#3| (-344)))) (-2459 (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-3442 (((-108) $ (-1 (-108) |#4| (-589 |#4|))) 98)) (-1611 (((-589 $) |#4| $) 121) (((-589 $) |#4| (-589 $)) 120) (((-589 $) (-589 |#4|) $) 119) (((-589 $) (-589 |#4|) (-589 $)) 118)) (-1505 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4248)))) (-2969 (((-589 |#3|) $) 81)) (-3553 (((-108) |#4| $) 135)) (-4079 (((-108) |#3| $) 80)) (-4037 (((-108) $ $) 6)) (-1271 (((-710) $) 46 (|has| $ (-6 -4248)))))
-(((-1041 |#1| |#2| |#3| |#4|) (-129) (-427) (-732) (-786) (-987 |t#1| |t#2| |t#3|)) (T -1041))
-NIL
-(-13 (-1025 |t#1| |t#2| |t#3| |t#4|) (-723 |t#1| |t#2| |t#3| |t#4|))
-(((-33) . T) ((-97) . T) ((-563 (-589 |#4|)) . T) ((-563 (-794)) . T) ((-140 |#4|) . T) ((-564 (-499)) |has| |#4| (-564 (-499))) ((-286 |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))) ((-462 |#4|) . T) ((-484 |#4| |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))) ((-723 |#1| |#2| |#3| |#4|) . T) ((-905 |#1| |#2| |#3| |#4|) . T) ((-992 |#1| |#2| |#3| |#4|) . T) ((-1016) . T) ((-1025 |#1| |#2| |#3| |#4|) . T) ((-1117 |#1| |#2| |#3| |#4|) . T) ((-1123) . T))
-((-3911 (((-589 |#2|) |#1|) 12)) (-3582 (((-589 |#2|) |#2| |#2| |#2| |#2| |#2|) 38) (((-589 |#2|) |#1|) 49)) (-2016 (((-589 |#2|) |#2| |#2| |#2|) 36) (((-589 |#2|) |#1|) 47)) (-1795 ((|#2| |#1|) 43)) (-3170 (((-2 (|:| |solns| (-589 |#2|)) (|:| |maps| (-589 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 17)) (-3219 (((-589 |#2|) |#2| |#2|) 35) (((-589 |#2|) |#1|) 46)) (-2917 (((-589 |#2|) |#2| |#2| |#2| |#2|) 37) (((-589 |#2|) |#1|) 48)) (-3746 ((|#2| |#2| |#2| |#2| |#2| |#2|) 42)) (-1824 ((|#2| |#2| |#2| |#2|) 40)) (-2684 ((|#2| |#2| |#2|) 39)) (-4075 ((|#2| |#2| |#2| |#2| |#2|) 41)))
-(((-1042 |#1| |#2|) (-10 -7 (-15 -3911 ((-589 |#2|) |#1|)) (-15 -1795 (|#2| |#1|)) (-15 -3170 ((-2 (|:| |solns| (-589 |#2|)) (|:| |maps| (-589 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3219 ((-589 |#2|) |#1|)) (-15 -2016 ((-589 |#2|) |#1|)) (-15 -2917 ((-589 |#2|) |#1|)) (-15 -3582 ((-589 |#2|) |#1|)) (-15 -3219 ((-589 |#2|) |#2| |#2|)) (-15 -2016 ((-589 |#2|) |#2| |#2| |#2|)) (-15 -2917 ((-589 |#2|) |#2| |#2| |#2| |#2|)) (-15 -3582 ((-589 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -2684 (|#2| |#2| |#2|)) (-15 -1824 (|#2| |#2| |#2| |#2|)) (-15 -4075 (|#2| |#2| |#2| |#2| |#2|)) (-15 -3746 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1145 |#2|) (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (T -1042))
-((-3746 (*1 *2 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (-5 *1 (-1042 *3 *2)) (-4 *3 (-1145 *2)))) (-4075 (*1 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (-5 *1 (-1042 *3 *2)) (-4 *3 (-1145 *2)))) (-1824 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (-5 *1 (-1042 *3 *2)) (-4 *3 (-1145 *2)))) (-2684 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (-5 *1 (-1042 *3 *2)) (-4 *3 (-1145 *2)))) (-3582 (*1 *2 *3 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (-5 *2 (-589 *3)) (-5 *1 (-1042 *4 *3)) (-4 *4 (-1145 *3)))) (-2917 (*1 *2 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (-5 *2 (-589 *3)) (-5 *1 (-1042 *4 *3)) (-4 *4 (-1145 *3)))) (-2016 (*1 *2 *3 *3 *3) (-12 (-4 *3 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (-5 *2 (-589 *3)) (-5 *1 (-1042 *4 *3)) (-4 *4 (-1145 *3)))) (-3219 (*1 *2 *3 *3) (-12 (-4 *3 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (-5 *2 (-589 *3)) (-5 *1 (-1042 *4 *3)) (-4 *4 (-1145 *3)))) (-3582 (*1 *2 *3) (-12 (-4 *4 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (-5 *2 (-589 *4)) (-5 *1 (-1042 *3 *4)) (-4 *3 (-1145 *4)))) (-2917 (*1 *2 *3) (-12 (-4 *4 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (-5 *2 (-589 *4)) (-5 *1 (-1042 *3 *4)) (-4 *3 (-1145 *4)))) (-2016 (*1 *2 *3) (-12 (-4 *4 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (-5 *2 (-589 *4)) (-5 *1 (-1042 *3 *4)) (-4 *3 (-1145 *4)))) (-3219 (*1 *2 *3) (-12 (-4 *4 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (-5 *2 (-589 *4)) (-5 *1 (-1042 *3 *4)) (-4 *3 (-1145 *4)))) (-3170 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *5 *5)) (-4 *5 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (-5 *2 (-2 (|:| |solns| (-589 *5)) (|:| |maps| (-589 (-2 (|:| |arg| *5) (|:| |res| *5)))))) (-5 *1 (-1042 *3 *5)) (-4 *3 (-1145 *5)))) (-1795 (*1 *2 *3) (-12 (-4 *2 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (-5 *1 (-1042 *3 *2)) (-4 *3 (-1145 *2)))) (-3911 (*1 *2 *3) (-12 (-4 *4 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523))))))) (-5 *2 (-589 *4)) (-5 *1 (-1042 *3 *4)) (-4 *3 (-1145 *4)))))
-(-10 -7 (-15 -3911 ((-589 |#2|) |#1|)) (-15 -1795 (|#2| |#1|)) (-15 -3170 ((-2 (|:| |solns| (-589 |#2|)) (|:| |maps| (-589 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3219 ((-589 |#2|) |#1|)) (-15 -2016 ((-589 |#2|) |#1|)) (-15 -2917 ((-589 |#2|) |#1|)) (-15 -3582 ((-589 |#2|) |#1|)) (-15 -3219 ((-589 |#2|) |#2| |#2|)) (-15 -2016 ((-589 |#2|) |#2| |#2| |#2|)) (-15 -2917 ((-589 |#2|) |#2| |#2| |#2| |#2|)) (-15 -3582 ((-589 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -2684 (|#2| |#2| |#2|)) (-15 -1824 (|#2| |#2| |#2| |#2|)) (-15 -4075 (|#2| |#2| |#2| |#2| |#2|)) (-15 -3746 (|#2| |#2| |#2| |#2| |#2| |#2|)))
-((-2936 (((-589 (-589 (-271 (-292 |#1|)))) (-589 (-271 (-383 (-883 |#1|))))) 95) (((-589 (-589 (-271 (-292 |#1|)))) (-589 (-271 (-383 (-883 |#1|)))) (-589 (-1087))) 94) (((-589 (-589 (-271 (-292 |#1|)))) (-589 (-383 (-883 |#1|)))) 92) (((-589 (-589 (-271 (-292 |#1|)))) (-589 (-383 (-883 |#1|))) (-589 (-1087))) 90) (((-589 (-271 (-292 |#1|))) (-271 (-383 (-883 |#1|)))) 75) (((-589 (-271 (-292 |#1|))) (-271 (-383 (-883 |#1|))) (-1087)) 76) (((-589 (-271 (-292 |#1|))) (-383 (-883 |#1|))) 70) (((-589 (-271 (-292 |#1|))) (-383 (-883 |#1|)) (-1087)) 59)) (-1917 (((-589 (-589 (-292 |#1|))) (-589 (-383 (-883 |#1|))) (-589 (-1087))) 88) (((-589 (-292 |#1|)) (-383 (-883 |#1|)) (-1087)) 43)) (-2625 (((-1077 (-589 (-292 |#1|)) (-589 (-271 (-292 |#1|)))) (-383 (-883 |#1|)) (-1087)) 98) (((-1077 (-589 (-292 |#1|)) (-589 (-271 (-292 |#1|)))) (-271 (-383 (-883 |#1|))) (-1087)) 97)))
-(((-1043 |#1|) (-10 -7 (-15 -2936 ((-589 (-271 (-292 |#1|))) (-383 (-883 |#1|)) (-1087))) (-15 -2936 ((-589 (-271 (-292 |#1|))) (-383 (-883 |#1|)))) (-15 -2936 ((-589 (-271 (-292 |#1|))) (-271 (-383 (-883 |#1|))) (-1087))) (-15 -2936 ((-589 (-271 (-292 |#1|))) (-271 (-383 (-883 |#1|))))) (-15 -2936 ((-589 (-589 (-271 (-292 |#1|)))) (-589 (-383 (-883 |#1|))) (-589 (-1087)))) (-15 -2936 ((-589 (-589 (-271 (-292 |#1|)))) (-589 (-383 (-883 |#1|))))) (-15 -2936 ((-589 (-589 (-271 (-292 |#1|)))) (-589 (-271 (-383 (-883 |#1|)))) (-589 (-1087)))) (-15 -2936 ((-589 (-589 (-271 (-292 |#1|)))) (-589 (-271 (-383 (-883 |#1|)))))) (-15 -1917 ((-589 (-292 |#1|)) (-383 (-883 |#1|)) (-1087))) (-15 -1917 ((-589 (-589 (-292 |#1|))) (-589 (-383 (-883 |#1|))) (-589 (-1087)))) (-15 -2625 ((-1077 (-589 (-292 |#1|)) (-589 (-271 (-292 |#1|)))) (-271 (-383 (-883 |#1|))) (-1087))) (-15 -2625 ((-1077 (-589 (-292 |#1|)) (-589 (-271 (-292 |#1|)))) (-383 (-883 |#1|)) (-1087)))) (-13 (-284) (-786) (-136))) (T -1043))
-((-2625 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-1087)) (-4 *5 (-13 (-284) (-786) (-136))) (-5 *2 (-1077 (-589 (-292 *5)) (-589 (-271 (-292 *5))))) (-5 *1 (-1043 *5)))) (-2625 (*1 *2 *3 *4) (-12 (-5 *3 (-271 (-383 (-883 *5)))) (-5 *4 (-1087)) (-4 *5 (-13 (-284) (-786) (-136))) (-5 *2 (-1077 (-589 (-292 *5)) (-589 (-271 (-292 *5))))) (-5 *1 (-1043 *5)))) (-1917 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-383 (-883 *5)))) (-5 *4 (-589 (-1087))) (-4 *5 (-13 (-284) (-786) (-136))) (-5 *2 (-589 (-589 (-292 *5)))) (-5 *1 (-1043 *5)))) (-1917 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-1087)) (-4 *5 (-13 (-284) (-786) (-136))) (-5 *2 (-589 (-292 *5))) (-5 *1 (-1043 *5)))) (-2936 (*1 *2 *3) (-12 (-5 *3 (-589 (-271 (-383 (-883 *4))))) (-4 *4 (-13 (-284) (-786) (-136))) (-5 *2 (-589 (-589 (-271 (-292 *4))))) (-5 *1 (-1043 *4)))) (-2936 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-271 (-383 (-883 *5))))) (-5 *4 (-589 (-1087))) (-4 *5 (-13 (-284) (-786) (-136))) (-5 *2 (-589 (-589 (-271 (-292 *5))))) (-5 *1 (-1043 *5)))) (-2936 (*1 *2 *3) (-12 (-5 *3 (-589 (-383 (-883 *4)))) (-4 *4 (-13 (-284) (-786) (-136))) (-5 *2 (-589 (-589 (-271 (-292 *4))))) (-5 *1 (-1043 *4)))) (-2936 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-383 (-883 *5)))) (-5 *4 (-589 (-1087))) (-4 *5 (-13 (-284) (-786) (-136))) (-5 *2 (-589 (-589 (-271 (-292 *5))))) (-5 *1 (-1043 *5)))) (-2936 (*1 *2 *3) (-12 (-5 *3 (-271 (-383 (-883 *4)))) (-4 *4 (-13 (-284) (-786) (-136))) (-5 *2 (-589 (-271 (-292 *4)))) (-5 *1 (-1043 *4)))) (-2936 (*1 *2 *3 *4) (-12 (-5 *3 (-271 (-383 (-883 *5)))) (-5 *4 (-1087)) (-4 *5 (-13 (-284) (-786) (-136))) (-5 *2 (-589 (-271 (-292 *5)))) (-5 *1 (-1043 *5)))) (-2936 (*1 *2 *3) (-12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-13 (-284) (-786) (-136))) (-5 *2 (-589 (-271 (-292 *4)))) (-5 *1 (-1043 *4)))) (-2936 (*1 *2 *3 *4) (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-1087)) (-4 *5 (-13 (-284) (-786) (-136))) (-5 *2 (-589 (-271 (-292 *5)))) (-5 *1 (-1043 *5)))))
-(-10 -7 (-15 -2936 ((-589 (-271 (-292 |#1|))) (-383 (-883 |#1|)) (-1087))) (-15 -2936 ((-589 (-271 (-292 |#1|))) (-383 (-883 |#1|)))) (-15 -2936 ((-589 (-271 (-292 |#1|))) (-271 (-383 (-883 |#1|))) (-1087))) (-15 -2936 ((-589 (-271 (-292 |#1|))) (-271 (-383 (-883 |#1|))))) (-15 -2936 ((-589 (-589 (-271 (-292 |#1|)))) (-589 (-383 (-883 |#1|))) (-589 (-1087)))) (-15 -2936 ((-589 (-589 (-271 (-292 |#1|)))) (-589 (-383 (-883 |#1|))))) (-15 -2936 ((-589 (-589 (-271 (-292 |#1|)))) (-589 (-271 (-383 (-883 |#1|)))) (-589 (-1087)))) (-15 -2936 ((-589 (-589 (-271 (-292 |#1|)))) (-589 (-271 (-383 (-883 |#1|)))))) (-15 -1917 ((-589 (-292 |#1|)) (-383 (-883 |#1|)) (-1087))) (-15 -1917 ((-589 (-589 (-292 |#1|))) (-589 (-383 (-883 |#1|))) (-589 (-1087)))) (-15 -2625 ((-1077 (-589 (-292 |#1|)) (-589 (-271 (-292 |#1|)))) (-271 (-383 (-883 |#1|))) (-1087))) (-15 -2625 ((-1077 (-589 (-292 |#1|)) (-589 (-271 (-292 |#1|)))) (-383 (-883 |#1|)) (-1087))))
-((-2683 (((-383 (-1083 (-292 |#1|))) (-1169 (-292 |#1|)) (-383 (-1083 (-292 |#1|))) (-523)) 29)) (-1969 (((-383 (-1083 (-292 |#1|))) (-383 (-1083 (-292 |#1|))) (-383 (-1083 (-292 |#1|))) (-383 (-1083 (-292 |#1|)))) 40)))
-(((-1044 |#1|) (-10 -7 (-15 -1969 ((-383 (-1083 (-292 |#1|))) (-383 (-1083 (-292 |#1|))) (-383 (-1083 (-292 |#1|))) (-383 (-1083 (-292 |#1|))))) (-15 -2683 ((-383 (-1083 (-292 |#1|))) (-1169 (-292 |#1|)) (-383 (-1083 (-292 |#1|))) (-523)))) (-13 (-515) (-786))) (T -1044))
-((-2683 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-383 (-1083 (-292 *5)))) (-5 *3 (-1169 (-292 *5))) (-5 *4 (-523)) (-4 *5 (-13 (-515) (-786))) (-5 *1 (-1044 *5)))) (-1969 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-383 (-1083 (-292 *3)))) (-4 *3 (-13 (-515) (-786))) (-5 *1 (-1044 *3)))))
-(-10 -7 (-15 -1969 ((-383 (-1083 (-292 |#1|))) (-383 (-1083 (-292 |#1|))) (-383 (-1083 (-292 |#1|))) (-383 (-1083 (-292 |#1|))))) (-15 -2683 ((-383 (-1083 (-292 |#1|))) (-1169 (-292 |#1|)) (-383 (-1083 (-292 |#1|))) (-523))))
-((-3911 (((-589 (-589 (-271 (-292 |#1|)))) (-589 (-271 (-292 |#1|))) (-589 (-1087))) 222) (((-589 (-271 (-292 |#1|))) (-292 |#1|) (-1087)) 20) (((-589 (-271 (-292 |#1|))) (-271 (-292 |#1|)) (-1087)) 26) (((-589 (-271 (-292 |#1|))) (-271 (-292 |#1|))) 25) (((-589 (-271 (-292 |#1|))) (-292 |#1|)) 21)))
-(((-1045 |#1|) (-10 -7 (-15 -3911 ((-589 (-271 (-292 |#1|))) (-292 |#1|))) (-15 -3911 ((-589 (-271 (-292 |#1|))) (-271 (-292 |#1|)))) (-15 -3911 ((-589 (-271 (-292 |#1|))) (-271 (-292 |#1|)) (-1087))) (-15 -3911 ((-589 (-271 (-292 |#1|))) (-292 |#1|) (-1087))) (-15 -3911 ((-589 (-589 (-271 (-292 |#1|)))) (-589 (-271 (-292 |#1|))) (-589 (-1087))))) (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (T -1045))
-((-3911 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-1087))) (-4 *5 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *2 (-589 (-589 (-271 (-292 *5))))) (-5 *1 (-1045 *5)) (-5 *3 (-589 (-271 (-292 *5)))))) (-3911 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-4 *5 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *2 (-589 (-271 (-292 *5)))) (-5 *1 (-1045 *5)) (-5 *3 (-292 *5)))) (-3911 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-4 *5 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *2 (-589 (-271 (-292 *5)))) (-5 *1 (-1045 *5)) (-5 *3 (-271 (-292 *5))))) (-3911 (*1 *2 *3) (-12 (-4 *4 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *2 (-589 (-271 (-292 *4)))) (-5 *1 (-1045 *4)) (-5 *3 (-271 (-292 *4))))) (-3911 (*1 *2 *3) (-12 (-4 *4 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136))) (-5 *2 (-589 (-271 (-292 *4)))) (-5 *1 (-1045 *4)) (-5 *3 (-292 *4)))))
-(-10 -7 (-15 -3911 ((-589 (-271 (-292 |#1|))) (-292 |#1|))) (-15 -3911 ((-589 (-271 (-292 |#1|))) (-271 (-292 |#1|)))) (-15 -3911 ((-589 (-271 (-292 |#1|))) (-271 (-292 |#1|)) (-1087))) (-15 -3911 ((-589 (-271 (-292 |#1|))) (-292 |#1|) (-1087))) (-15 -3911 ((-589 (-589 (-271 (-292 |#1|)))) (-589 (-271 (-292 |#1|))) (-589 (-1087)))))
-((-3570 ((|#2| |#2|) 20 (|has| |#1| (-786))) ((|#2| |#2| (-1 (-108) |#1| |#1|)) 17)) (-2393 ((|#2| |#2|) 19 (|has| |#1| (-786))) ((|#2| |#2| (-1 (-108) |#1| |#1|)) 16)))
-(((-1046 |#1| |#2|) (-10 -7 (-15 -2393 (|#2| |#2| (-1 (-108) |#1| |#1|))) (-15 -3570 (|#2| |#2| (-1 (-108) |#1| |#1|))) (IF (|has| |#1| (-786)) (PROGN (-15 -2393 (|#2| |#2|)) (-15 -3570 (|#2| |#2|))) |%noBranch|)) (-1123) (-13 (-556 (-523) |#1|) (-10 -7 (-6 -4248) (-6 -4249)))) (T -1046))
-((-3570 (*1 *2 *2) (-12 (-4 *3 (-786)) (-4 *3 (-1123)) (-5 *1 (-1046 *3 *2)) (-4 *2 (-13 (-556 (-523) *3) (-10 -7 (-6 -4248) (-6 -4249)))))) (-2393 (*1 *2 *2) (-12 (-4 *3 (-786)) (-4 *3 (-1123)) (-5 *1 (-1046 *3 *2)) (-4 *2 (-13 (-556 (-523) *3) (-10 -7 (-6 -4248) (-6 -4249)))))) (-3570 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1123)) (-5 *1 (-1046 *4 *2)) (-4 *2 (-13 (-556 (-523) *4) (-10 -7 (-6 -4248) (-6 -4249)))))) (-2393 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1123)) (-5 *1 (-1046 *4 *2)) (-4 *2 (-13 (-556 (-523) *4) (-10 -7 (-6 -4248) (-6 -4249)))))))
-(-10 -7 (-15 -2393 (|#2| |#2| (-1 (-108) |#1| |#1|))) (-15 -3570 (|#2| |#2| (-1 (-108) |#1| |#1|))) (IF (|has| |#1| (-786)) (PROGN (-15 -2393 (|#2| |#2|)) (-15 -3570 (|#2| |#2|))) |%noBranch|))
-((-3260 (((-108) $ $) NIL)) (-3213 (((-1076 3 |#1|) $) 108)) (-2760 (((-108) $) 72)) (-2271 (($ $ (-589 (-874 |#1|))) 20) (($ $ (-589 (-589 |#1|))) 75) (($ (-589 (-874 |#1|))) 74) (((-589 (-874 |#1|)) $) 73)) (-2731 (((-108) $) 41)) (-3195 (($ $ (-874 |#1|)) 46) (($ $ (-589 |#1|)) 51) (($ $ (-710)) 53) (($ (-874 |#1|)) 47) (((-874 |#1|) $) 45)) (-3899 (((-2 (|:| -1961 (-710)) (|:| |curves| (-710)) (|:| |polygons| (-710)) (|:| |constructs| (-710))) $) 106)) (-4168 (((-710) $) 26)) (-1244 (((-710) $) 25)) (-3849 (($ $ (-710) (-874 |#1|)) 39)) (-4134 (((-108) $) 82)) (-1265 (($ $ (-589 (-589 (-874 |#1|))) (-589 (-157)) (-157)) 89) (($ $ (-589 (-589 (-589 |#1|))) (-589 (-157)) (-157)) 91) (($ $ (-589 (-589 (-874 |#1|))) (-108) (-108)) 85) (($ $ (-589 (-589 (-589 |#1|))) (-108) (-108)) 93) (($ (-589 (-589 (-874 |#1|)))) 86) (($ (-589 (-589 (-874 |#1|))) (-108) (-108)) 87) (((-589 (-589 (-874 |#1|))) $) 84)) (-3123 (($ (-589 $)) 28) (($ $ $) 29)) (-2024 (((-589 (-157)) $) 103)) (-1730 (((-589 (-874 |#1|)) $) 97)) (-3659 (((-589 (-589 (-157))) $) 102)) (-3048 (((-589 (-589 (-589 (-874 |#1|)))) $) NIL)) (-2060 (((-589 (-589 (-589 (-710)))) $) 100)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3000 (((-710) $ (-589 (-874 |#1|))) 37)) (-1627 (((-108) $) 54)) (-1246 (($ $ (-589 (-874 |#1|))) 56) (($ $ (-589 (-589 |#1|))) 62) (($ (-589 (-874 |#1|))) 57) (((-589 (-874 |#1|)) $) 55)) (-3243 (($) 23) (($ (-1076 3 |#1|)) 24)) (-4124 (($ $) 35)) (-1892 (((-589 $) $) 34)) (-2670 (($ (-589 $)) 31)) (-2146 (((-589 $) $) 33)) (-3976 (((-794) $) 112)) (-3587 (((-108) $) 64)) (-4071 (($ $ (-589 (-874 |#1|))) 66) (($ $ (-589 (-589 |#1|))) 69) (($ (-589 (-874 |#1|))) 67) (((-589 (-874 |#1|)) $) 65)) (-4064 (($ $) 107)) (-4037 (((-108) $ $) NIL)))
-(((-1047 |#1|) (-1048 |#1|) (-973)) (T -1047))
-NIL
-(-1048 |#1|)
-((-3260 (((-108) $ $) 7)) (-3213 (((-1076 3 |#1|) $) 13)) (-2760 (((-108) $) 29)) (-2271 (($ $ (-589 (-874 |#1|))) 33) (($ $ (-589 (-589 |#1|))) 32) (($ (-589 (-874 |#1|))) 31) (((-589 (-874 |#1|)) $) 30)) (-2731 (((-108) $) 44)) (-3195 (($ $ (-874 |#1|)) 49) (($ $ (-589 |#1|)) 48) (($ $ (-710)) 47) (($ (-874 |#1|)) 46) (((-874 |#1|) $) 45)) (-3899 (((-2 (|:| -1961 (-710)) (|:| |curves| (-710)) (|:| |polygons| (-710)) (|:| |constructs| (-710))) $) 15)) (-4168 (((-710) $) 58)) (-1244 (((-710) $) 59)) (-3849 (($ $ (-710) (-874 |#1|)) 50)) (-4134 (((-108) $) 21)) (-1265 (($ $ (-589 (-589 (-874 |#1|))) (-589 (-157)) (-157)) 28) (($ $ (-589 (-589 (-589 |#1|))) (-589 (-157)) (-157)) 27) (($ $ (-589 (-589 (-874 |#1|))) (-108) (-108)) 26) (($ $ (-589 (-589 (-589 |#1|))) (-108) (-108)) 25) (($ (-589 (-589 (-874 |#1|)))) 24) (($ (-589 (-589 (-874 |#1|))) (-108) (-108)) 23) (((-589 (-589 (-874 |#1|))) $) 22)) (-3123 (($ (-589 $)) 57) (($ $ $) 56)) (-2024 (((-589 (-157)) $) 16)) (-1730 (((-589 (-874 |#1|)) $) 20)) (-3659 (((-589 (-589 (-157))) $) 17)) (-3048 (((-589 (-589 (-589 (-874 |#1|)))) $) 18)) (-2060 (((-589 (-589 (-589 (-710)))) $) 19)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3000 (((-710) $ (-589 (-874 |#1|))) 51)) (-1627 (((-108) $) 39)) (-1246 (($ $ (-589 (-874 |#1|))) 43) (($ $ (-589 (-589 |#1|))) 42) (($ (-589 (-874 |#1|))) 41) (((-589 (-874 |#1|)) $) 40)) (-3243 (($) 61) (($ (-1076 3 |#1|)) 60)) (-4124 (($ $) 52)) (-1892 (((-589 $) $) 53)) (-2670 (($ (-589 $)) 55)) (-2146 (((-589 $) $) 54)) (-3976 (((-794) $) 11)) (-3587 (((-108) $) 34)) (-4071 (($ $ (-589 (-874 |#1|))) 38) (($ $ (-589 (-589 |#1|))) 37) (($ (-589 (-874 |#1|))) 36) (((-589 (-874 |#1|)) $) 35)) (-4064 (($ $) 14)) (-4037 (((-108) $ $) 6)))
-(((-1048 |#1|) (-129) (-973)) (T -1048))
-((-3976 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-794)))) (-3243 (*1 *1) (-12 (-4 *1 (-1048 *2)) (-4 *2 (-973)))) (-3243 (*1 *1 *2) (-12 (-5 *2 (-1076 3 *3)) (-4 *3 (-973)) (-4 *1 (-1048 *3)))) (-1244 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-710)))) (-4168 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-710)))) (-3123 (*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-1048 *3)) (-4 *3 (-973)))) (-3123 (*1 *1 *1 *1) (-12 (-4 *1 (-1048 *2)) (-4 *2 (-973)))) (-2670 (*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-1048 *3)) (-4 *3 (-973)))) (-2146 (*1 *2 *1) (-12 (-4 *3 (-973)) (-5 *2 (-589 *1)) (-4 *1 (-1048 *3)))) (-1892 (*1 *2 *1) (-12 (-4 *3 (-973)) (-5 *2 (-589 *1)) (-4 *1 (-1048 *3)))) (-4124 (*1 *1 *1) (-12 (-4 *1 (-1048 *2)) (-4 *2 (-973)))) (-3000 (*1 *2 *1 *3) (-12 (-5 *3 (-589 (-874 *4))) (-4 *1 (-1048 *4)) (-4 *4 (-973)) (-5 *2 (-710)))) (-3849 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-710)) (-5 *3 (-874 *4)) (-4 *1 (-1048 *4)) (-4 *4 (-973)))) (-3195 (*1 *1 *1 *2) (-12 (-5 *2 (-874 *3)) (-4 *1 (-1048 *3)) (-4 *3 (-973)))) (-3195 (*1 *1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *1 (-1048 *3)) (-4 *3 (-973)))) (-3195 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-1048 *3)) (-4 *3 (-973)))) (-3195 (*1 *1 *2) (-12 (-5 *2 (-874 *3)) (-4 *3 (-973)) (-4 *1 (-1048 *3)))) (-3195 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-874 *3)))) (-2731 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-108)))) (-1246 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-874 *3))) (-4 *1 (-1048 *3)) (-4 *3 (-973)))) (-1246 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-589 *3))) (-4 *1 (-1048 *3)) (-4 *3 (-973)))) (-1246 (*1 *1 *2) (-12 (-5 *2 (-589 (-874 *3))) (-4 *3 (-973)) (-4 *1 (-1048 *3)))) (-1246 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-589 (-874 *3))))) (-1627 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-108)))) (-4071 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-874 *3))) (-4 *1 (-1048 *3)) (-4 *3 (-973)))) (-4071 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-589 *3))) (-4 *1 (-1048 *3)) (-4 *3 (-973)))) (-4071 (*1 *1 *2) (-12 (-5 *2 (-589 (-874 *3))) (-4 *3 (-973)) (-4 *1 (-1048 *3)))) (-4071 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-589 (-874 *3))))) (-3587 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-108)))) (-2271 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-874 *3))) (-4 *1 (-1048 *3)) (-4 *3 (-973)))) (-2271 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-589 *3))) (-4 *1 (-1048 *3)) (-4 *3 (-973)))) (-2271 (*1 *1 *2) (-12 (-5 *2 (-589 (-874 *3))) (-4 *3 (-973)) (-4 *1 (-1048 *3)))) (-2271 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-589 (-874 *3))))) (-2760 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-108)))) (-1265 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-589 (-589 (-874 *5)))) (-5 *3 (-589 (-157))) (-5 *4 (-157)) (-4 *1 (-1048 *5)) (-4 *5 (-973)))) (-1265 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-589 (-589 (-589 *5)))) (-5 *3 (-589 (-157))) (-5 *4 (-157)) (-4 *1 (-1048 *5)) (-4 *5 (-973)))) (-1265 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-589 (-589 (-874 *4)))) (-5 *3 (-108)) (-4 *1 (-1048 *4)) (-4 *4 (-973)))) (-1265 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-589 (-589 (-589 *4)))) (-5 *3 (-108)) (-4 *1 (-1048 *4)) (-4 *4 (-973)))) (-1265 (*1 *1 *2) (-12 (-5 *2 (-589 (-589 (-874 *3)))) (-4 *3 (-973)) (-4 *1 (-1048 *3)))) (-1265 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-589 (-589 (-874 *4)))) (-5 *3 (-108)) (-4 *4 (-973)) (-4 *1 (-1048 *4)))) (-1265 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-589 (-589 (-874 *3)))))) (-4134 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-108)))) (-1730 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-589 (-874 *3))))) (-2060 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-589 (-589 (-589 (-710))))))) (-3048 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-589 (-589 (-589 (-874 *3))))))) (-3659 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-589 (-589 (-157)))))) (-2024 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-589 (-157))))) (-3899 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-2 (|:| -1961 (-710)) (|:| |curves| (-710)) (|:| |polygons| (-710)) (|:| |constructs| (-710)))))) (-4064 (*1 *1 *1) (-12 (-4 *1 (-1048 *2)) (-4 *2 (-973)))) (-3213 (*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-1076 3 *3)))))
-(-13 (-1016) (-10 -8 (-15 -3243 ($)) (-15 -3243 ($ (-1076 3 |t#1|))) (-15 -1244 ((-710) $)) (-15 -4168 ((-710) $)) (-15 -3123 ($ (-589 $))) (-15 -3123 ($ $ $)) (-15 -2670 ($ (-589 $))) (-15 -2146 ((-589 $) $)) (-15 -1892 ((-589 $) $)) (-15 -4124 ($ $)) (-15 -3000 ((-710) $ (-589 (-874 |t#1|)))) (-15 -3849 ($ $ (-710) (-874 |t#1|))) (-15 -3195 ($ $ (-874 |t#1|))) (-15 -3195 ($ $ (-589 |t#1|))) (-15 -3195 ($ $ (-710))) (-15 -3195 ($ (-874 |t#1|))) (-15 -3195 ((-874 |t#1|) $)) (-15 -2731 ((-108) $)) (-15 -1246 ($ $ (-589 (-874 |t#1|)))) (-15 -1246 ($ $ (-589 (-589 |t#1|)))) (-15 -1246 ($ (-589 (-874 |t#1|)))) (-15 -1246 ((-589 (-874 |t#1|)) $)) (-15 -1627 ((-108) $)) (-15 -4071 ($ $ (-589 (-874 |t#1|)))) (-15 -4071 ($ $ (-589 (-589 |t#1|)))) (-15 -4071 ($ (-589 (-874 |t#1|)))) (-15 -4071 ((-589 (-874 |t#1|)) $)) (-15 -3587 ((-108) $)) (-15 -2271 ($ $ (-589 (-874 |t#1|)))) (-15 -2271 ($ $ (-589 (-589 |t#1|)))) (-15 -2271 ($ (-589 (-874 |t#1|)))) (-15 -2271 ((-589 (-874 |t#1|)) $)) (-15 -2760 ((-108) $)) (-15 -1265 ($ $ (-589 (-589 (-874 |t#1|))) (-589 (-157)) (-157))) (-15 -1265 ($ $ (-589 (-589 (-589 |t#1|))) (-589 (-157)) (-157))) (-15 -1265 ($ $ (-589 (-589 (-874 |t#1|))) (-108) (-108))) (-15 -1265 ($ $ (-589 (-589 (-589 |t#1|))) (-108) (-108))) (-15 -1265 ($ (-589 (-589 (-874 |t#1|))))) (-15 -1265 ($ (-589 (-589 (-874 |t#1|))) (-108) (-108))) (-15 -1265 ((-589 (-589 (-874 |t#1|))) $)) (-15 -4134 ((-108) $)) (-15 -1730 ((-589 (-874 |t#1|)) $)) (-15 -2060 ((-589 (-589 (-589 (-710)))) $)) (-15 -3048 ((-589 (-589 (-589 (-874 |t#1|)))) $)) (-15 -3659 ((-589 (-589 (-157))) $)) (-15 -2024 ((-589 (-157)) $)) (-15 -3899 ((-2 (|:| -1961 (-710)) (|:| |curves| (-710)) (|:| |polygons| (-710)) (|:| |constructs| (-710))) $)) (-15 -4064 ($ $)) (-15 -3213 ((-1076 3 |t#1|) $)) (-15 -3976 ((-794) $))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-2455 (((-589 (-1092)) (-1070)) 9)))
-(((-1049) (-10 -7 (-15 -2455 ((-589 (-1092)) (-1070))))) (T -1049))
-((-2455 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-589 (-1092))) (-5 *1 (-1049)))))
-(-10 -7 (-15 -2455 ((-589 (-1092)) (-1070))))
-((-3038 (((-1174) (-589 (-794))) 23) (((-1174) (-794)) 22)) (-4195 (((-1174) (-589 (-794))) 21) (((-1174) (-794)) 20)) (-2034 (((-1174) (-589 (-794))) 19) (((-1174) (-794)) 11) (((-1174) (-1070) (-794)) 17)))
-(((-1050) (-10 -7 (-15 -2034 ((-1174) (-1070) (-794))) (-15 -2034 ((-1174) (-794))) (-15 -4195 ((-1174) (-794))) (-15 -3038 ((-1174) (-794))) (-15 -2034 ((-1174) (-589 (-794)))) (-15 -4195 ((-1174) (-589 (-794)))) (-15 -3038 ((-1174) (-589 (-794)))))) (T -1050))
-((-3038 (*1 *2 *3) (-12 (-5 *3 (-589 (-794))) (-5 *2 (-1174)) (-5 *1 (-1050)))) (-4195 (*1 *2 *3) (-12 (-5 *3 (-589 (-794))) (-5 *2 (-1174)) (-5 *1 (-1050)))) (-2034 (*1 *2 *3) (-12 (-5 *3 (-589 (-794))) (-5 *2 (-1174)) (-5 *1 (-1050)))) (-3038 (*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1174)) (-5 *1 (-1050)))) (-4195 (*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1174)) (-5 *1 (-1050)))) (-2034 (*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1174)) (-5 *1 (-1050)))) (-2034 (*1 *2 *3 *4) (-12 (-5 *3 (-1070)) (-5 *4 (-794)) (-5 *2 (-1174)) (-5 *1 (-1050)))))
-(-10 -7 (-15 -2034 ((-1174) (-1070) (-794))) (-15 -2034 ((-1174) (-794))) (-15 -4195 ((-1174) (-794))) (-15 -3038 ((-1174) (-794))) (-15 -2034 ((-1174) (-589 (-794)))) (-15 -4195 ((-1174) (-589 (-794)))) (-15 -3038 ((-1174) (-589 (-794)))))
-((-2431 (($ $ $) 10)) (-3959 (($ $) 9)) (-2985 (($ $ $) 13)) (-3558 (($ $ $) 15)) (-3198 (($ $ $) 12)) (-1278 (($ $ $) 14)) (-3506 (($ $) 17)) (-2773 (($ $) 16)) (-3984 (($ $) 6)) (-3034 (($ $ $) 11) (($ $) 7)) (-3364 (($ $ $) 8)))
-(((-1051) (-129)) (T -1051))
-((-3506 (*1 *1 *1) (-4 *1 (-1051))) (-2773 (*1 *1 *1) (-4 *1 (-1051))) (-3558 (*1 *1 *1 *1) (-4 *1 (-1051))) (-1278 (*1 *1 *1 *1) (-4 *1 (-1051))) (-2985 (*1 *1 *1 *1) (-4 *1 (-1051))) (-3198 (*1 *1 *1 *1) (-4 *1 (-1051))) (-3034 (*1 *1 *1 *1) (-4 *1 (-1051))) (-2431 (*1 *1 *1 *1) (-4 *1 (-1051))) (-3959 (*1 *1 *1) (-4 *1 (-1051))) (-3364 (*1 *1 *1 *1) (-4 *1 (-1051))) (-3034 (*1 *1 *1) (-4 *1 (-1051))) (-3984 (*1 *1 *1) (-4 *1 (-1051))))
-(-13 (-10 -8 (-15 -3984 ($ $)) (-15 -3034 ($ $)) (-15 -3364 ($ $ $)) (-15 -3959 ($ $)) (-15 -2431 ($ $ $)) (-15 -3034 ($ $ $)) (-15 -3198 ($ $ $)) (-15 -2985 ($ $ $)) (-15 -1278 ($ $ $)) (-15 -3558 ($ $ $)) (-15 -2773 ($ $)) (-15 -3506 ($ $))))
-((-3260 (((-108) $ $) 41)) (-2058 ((|#1| $) 15)) (-3314 (((-108) $ $ (-1 (-108) |#2| |#2|)) 36)) (-4188 (((-108) $) 17)) (-2117 (($ $ |#1|) 28)) (-1409 (($ $ (-108)) 30)) (-1965 (($ $) 31)) (-1784 (($ $ |#2|) 29)) (-3841 (((-1070) $) NIL)) (-2718 (((-108) $ $ (-1 (-108) |#1| |#1|) (-1 (-108) |#2| |#2|)) 35)) (-2435 (((-1034) $) NIL)) (-3163 (((-108) $) 14)) (-4055 (($) 10)) (-4124 (($ $) 27)) (-3985 (($ |#1| |#2| (-108)) 18) (($ |#1| |#2|) 19) (($ (-2 (|:| |val| |#1|) (|:| -2394 |#2|))) 21) (((-589 $) (-589 (-2 (|:| |val| |#1|) (|:| -2394 |#2|)))) 24) (((-589 $) |#1| (-589 |#2|)) 26)) (-2470 ((|#2| $) 16)) (-3976 (((-794) $) 50)) (-4037 (((-108) $ $) 39)))
-(((-1052 |#1| |#2|) (-13 (-1016) (-10 -8 (-15 -4055 ($)) (-15 -3163 ((-108) $)) (-15 -2058 (|#1| $)) (-15 -2470 (|#2| $)) (-15 -4188 ((-108) $)) (-15 -3985 ($ |#1| |#2| (-108))) (-15 -3985 ($ |#1| |#2|)) (-15 -3985 ($ (-2 (|:| |val| |#1|) (|:| -2394 |#2|)))) (-15 -3985 ((-589 $) (-589 (-2 (|:| |val| |#1|) (|:| -2394 |#2|))))) (-15 -3985 ((-589 $) |#1| (-589 |#2|))) (-15 -4124 ($ $)) (-15 -2117 ($ $ |#1|)) (-15 -1784 ($ $ |#2|)) (-15 -1409 ($ $ (-108))) (-15 -1965 ($ $)) (-15 -2718 ((-108) $ $ (-1 (-108) |#1| |#1|) (-1 (-108) |#2| |#2|))) (-15 -3314 ((-108) $ $ (-1 (-108) |#2| |#2|))))) (-13 (-1016) (-33)) (-13 (-1016) (-33))) (T -1052))
-((-4055 (*1 *1) (-12 (-5 *1 (-1052 *2 *3)) (-4 *2 (-13 (-1016) (-33))) (-4 *3 (-13 (-1016) (-33))))) (-3163 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1052 *3 *4)) (-4 *3 (-13 (-1016) (-33))) (-4 *4 (-13 (-1016) (-33))))) (-2058 (*1 *2 *1) (-12 (-4 *2 (-13 (-1016) (-33))) (-5 *1 (-1052 *2 *3)) (-4 *3 (-13 (-1016) (-33))))) (-2470 (*1 *2 *1) (-12 (-4 *2 (-13 (-1016) (-33))) (-5 *1 (-1052 *3 *2)) (-4 *3 (-13 (-1016) (-33))))) (-4188 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1052 *3 *4)) (-4 *3 (-13 (-1016) (-33))) (-4 *4 (-13 (-1016) (-33))))) (-3985 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-108)) (-5 *1 (-1052 *2 *3)) (-4 *2 (-13 (-1016) (-33))) (-4 *3 (-13 (-1016) (-33))))) (-3985 (*1 *1 *2 *3) (-12 (-5 *1 (-1052 *2 *3)) (-4 *2 (-13 (-1016) (-33))) (-4 *3 (-13 (-1016) (-33))))) (-3985 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -2394 *4))) (-4 *3 (-13 (-1016) (-33))) (-4 *4 (-13 (-1016) (-33))) (-5 *1 (-1052 *3 *4)))) (-3985 (*1 *2 *3) (-12 (-5 *3 (-589 (-2 (|:| |val| *4) (|:| -2394 *5)))) (-4 *4 (-13 (-1016) (-33))) (-4 *5 (-13 (-1016) (-33))) (-5 *2 (-589 (-1052 *4 *5))) (-5 *1 (-1052 *4 *5)))) (-3985 (*1 *2 *3 *4) (-12 (-5 *4 (-589 *5)) (-4 *5 (-13 (-1016) (-33))) (-5 *2 (-589 (-1052 *3 *5))) (-5 *1 (-1052 *3 *5)) (-4 *3 (-13 (-1016) (-33))))) (-4124 (*1 *1 *1) (-12 (-5 *1 (-1052 *2 *3)) (-4 *2 (-13 (-1016) (-33))) (-4 *3 (-13 (-1016) (-33))))) (-2117 (*1 *1 *1 *2) (-12 (-5 *1 (-1052 *2 *3)) (-4 *2 (-13 (-1016) (-33))) (-4 *3 (-13 (-1016) (-33))))) (-1784 (*1 *1 *1 *2) (-12 (-5 *1 (-1052 *3 *2)) (-4 *3 (-13 (-1016) (-33))) (-4 *2 (-13 (-1016) (-33))))) (-1409 (*1 *1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1052 *3 *4)) (-4 *3 (-13 (-1016) (-33))) (-4 *4 (-13 (-1016) (-33))))) (-1965 (*1 *1 *1) (-12 (-5 *1 (-1052 *2 *3)) (-4 *2 (-13 (-1016) (-33))) (-4 *3 (-13 (-1016) (-33))))) (-2718 (*1 *2 *1 *1 *3 *4) (-12 (-5 *3 (-1 (-108) *5 *5)) (-5 *4 (-1 (-108) *6 *6)) (-4 *5 (-13 (-1016) (-33))) (-4 *6 (-13 (-1016) (-33))) (-5 *2 (-108)) (-5 *1 (-1052 *5 *6)))) (-3314 (*1 *2 *1 *1 *3) (-12 (-5 *3 (-1 (-108) *5 *5)) (-4 *5 (-13 (-1016) (-33))) (-5 *2 (-108)) (-5 *1 (-1052 *4 *5)) (-4 *4 (-13 (-1016) (-33))))))
-(-13 (-1016) (-10 -8 (-15 -4055 ($)) (-15 -3163 ((-108) $)) (-15 -2058 (|#1| $)) (-15 -2470 (|#2| $)) (-15 -4188 ((-108) $)) (-15 -3985 ($ |#1| |#2| (-108))) (-15 -3985 ($ |#1| |#2|)) (-15 -3985 ($ (-2 (|:| |val| |#1|) (|:| -2394 |#2|)))) (-15 -3985 ((-589 $) (-589 (-2 (|:| |val| |#1|) (|:| -2394 |#2|))))) (-15 -3985 ((-589 $) |#1| (-589 |#2|))) (-15 -4124 ($ $)) (-15 -2117 ($ $ |#1|)) (-15 -1784 ($ $ |#2|)) (-15 -1409 ($ $ (-108))) (-15 -1965 ($ $)) (-15 -2718 ((-108) $ $ (-1 (-108) |#1| |#1|) (-1 (-108) |#2| |#2|))) (-15 -3314 ((-108) $ $ (-1 (-108) |#2| |#2|)))))
-((-3260 (((-108) $ $) NIL (|has| (-1052 |#1| |#2|) (-1016)))) (-2058 (((-1052 |#1| |#2|) $) 25)) (-2157 (($ $) 76)) (-2324 (((-108) (-1052 |#1| |#2|) $ (-1 (-108) |#2| |#2|)) 85)) (-1583 (($ $ $ (-589 (-1052 |#1| |#2|))) 90) (($ $ $ (-589 (-1052 |#1| |#2|)) (-1 (-108) |#2| |#2|)) 91)) (-2282 (((-108) $ (-710)) NIL)) (-3365 (((-1052 |#1| |#2|) $ (-1052 |#1| |#2|)) 43 (|has| $ (-6 -4249)))) (-4101 (((-1052 |#1| |#2|) $ "value" (-1052 |#1| |#2|)) NIL (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) 41 (|has| $ (-6 -4249)))) (-1640 (($) NIL T CONST)) (-2209 (((-589 (-2 (|:| |val| |#1|) (|:| -2394 |#2|))) $) 80)) (-1869 (($ (-1052 |#1| |#2|) $) 39)) (-2231 (($ (-1052 |#1| |#2|) $) 31)) (-3133 (((-589 (-1052 |#1| |#2|)) $) NIL (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) 51)) (-1555 (((-108) (-1052 |#1| |#2|) $) 82)) (-3339 (((-108) $ $) NIL (|has| (-1052 |#1| |#2|) (-1016)))) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 (-1052 |#1| |#2|)) $) 55 (|has| $ (-6 -4248)))) (-1348 (((-108) (-1052 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-1052 |#1| |#2|) (-1016))))) (-3063 (($ (-1 (-1052 |#1| |#2|) (-1052 |#1| |#2|)) $) 47 (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-1052 |#1| |#2|) (-1052 |#1| |#2|)) $) 46)) (-4042 (((-108) $ (-710)) NIL)) (-2112 (((-589 (-1052 |#1| |#2|)) $) 53)) (-3391 (((-108) $) 42)) (-3841 (((-1070) $) NIL (|has| (-1052 |#1| |#2|) (-1016)))) (-2435 (((-1034) $) NIL (|has| (-1052 |#1| |#2|) (-1016)))) (-2099 (((-3 $ "failed") $) 75)) (-2720 (((-108) (-1 (-108) (-1052 |#1| |#2|)) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-1052 |#1| |#2|)))) NIL (-12 (|has| (-1052 |#1| |#2|) (-286 (-1052 |#1| |#2|))) (|has| (-1052 |#1| |#2|) (-1016)))) (($ $ (-271 (-1052 |#1| |#2|))) NIL (-12 (|has| (-1052 |#1| |#2|) (-286 (-1052 |#1| |#2|))) (|has| (-1052 |#1| |#2|) (-1016)))) (($ $ (-1052 |#1| |#2|) (-1052 |#1| |#2|)) NIL (-12 (|has| (-1052 |#1| |#2|) (-286 (-1052 |#1| |#2|))) (|has| (-1052 |#1| |#2|) (-1016)))) (($ $ (-589 (-1052 |#1| |#2|)) (-589 (-1052 |#1| |#2|))) NIL (-12 (|has| (-1052 |#1| |#2|) (-286 (-1052 |#1| |#2|))) (|has| (-1052 |#1| |#2|) (-1016))))) (-2391 (((-108) $ $) 50)) (-3163 (((-108) $) 22)) (-4055 (($) 24)) (-1502 (((-1052 |#1| |#2|) $ "value") NIL)) (-2981 (((-523) $ $) NIL)) (-2837 (((-108) $) 44)) (-2452 (((-710) (-1 (-108) (-1052 |#1| |#2|)) $) NIL (|has| $ (-6 -4248))) (((-710) (-1052 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-1052 |#1| |#2|) (-1016))))) (-4124 (($ $) 49)) (-3985 (($ (-1052 |#1| |#2|)) 9) (($ |#1| |#2| (-589 $)) 12) (($ |#1| |#2| (-589 (-1052 |#1| |#2|))) 14) (($ |#1| |#2| |#1| (-589 |#2|)) 17)) (-3302 (((-589 |#2|) $) 81)) (-3976 (((-794) $) 73 (|has| (-1052 |#1| |#2|) (-563 (-794))))) (-2464 (((-589 $) $) 28)) (-4004 (((-108) $ $) NIL (|has| (-1052 |#1| |#2|) (-1016)))) (-1505 (((-108) (-1 (-108) (-1052 |#1| |#2|)) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 64 (|has| (-1052 |#1| |#2|) (-1016)))) (-1271 (((-710) $) 58 (|has| $ (-6 -4248)))))
-(((-1053 |#1| |#2|) (-13 (-938 (-1052 |#1| |#2|)) (-10 -8 (-6 -4249) (-6 -4248) (-15 -2099 ((-3 $ "failed") $)) (-15 -2157 ($ $)) (-15 -3985 ($ (-1052 |#1| |#2|))) (-15 -3985 ($ |#1| |#2| (-589 $))) (-15 -3985 ($ |#1| |#2| (-589 (-1052 |#1| |#2|)))) (-15 -3985 ($ |#1| |#2| |#1| (-589 |#2|))) (-15 -3302 ((-589 |#2|) $)) (-15 -2209 ((-589 (-2 (|:| |val| |#1|) (|:| -2394 |#2|))) $)) (-15 -1555 ((-108) (-1052 |#1| |#2|) $)) (-15 -2324 ((-108) (-1052 |#1| |#2|) $ (-1 (-108) |#2| |#2|))) (-15 -2231 ($ (-1052 |#1| |#2|) $)) (-15 -1869 ($ (-1052 |#1| |#2|) $)) (-15 -1583 ($ $ $ (-589 (-1052 |#1| |#2|)))) (-15 -1583 ($ $ $ (-589 (-1052 |#1| |#2|)) (-1 (-108) |#2| |#2|))))) (-13 (-1016) (-33)) (-13 (-1016) (-33))) (T -1053))
-((-2099 (*1 *1 *1) (|partial| -12 (-5 *1 (-1053 *2 *3)) (-4 *2 (-13 (-1016) (-33))) (-4 *3 (-13 (-1016) (-33))))) (-2157 (*1 *1 *1) (-12 (-5 *1 (-1053 *2 *3)) (-4 *2 (-13 (-1016) (-33))) (-4 *3 (-13 (-1016) (-33))))) (-3985 (*1 *1 *2) (-12 (-5 *2 (-1052 *3 *4)) (-4 *3 (-13 (-1016) (-33))) (-4 *4 (-13 (-1016) (-33))) (-5 *1 (-1053 *3 *4)))) (-3985 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-589 (-1053 *2 *3))) (-5 *1 (-1053 *2 *3)) (-4 *2 (-13 (-1016) (-33))) (-4 *3 (-13 (-1016) (-33))))) (-3985 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-589 (-1052 *2 *3))) (-4 *2 (-13 (-1016) (-33))) (-4 *3 (-13 (-1016) (-33))) (-5 *1 (-1053 *2 *3)))) (-3985 (*1 *1 *2 *3 *2 *4) (-12 (-5 *4 (-589 *3)) (-4 *3 (-13 (-1016) (-33))) (-5 *1 (-1053 *2 *3)) (-4 *2 (-13 (-1016) (-33))))) (-3302 (*1 *2 *1) (-12 (-5 *2 (-589 *4)) (-5 *1 (-1053 *3 *4)) (-4 *3 (-13 (-1016) (-33))) (-4 *4 (-13 (-1016) (-33))))) (-2209 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4)))) (-5 *1 (-1053 *3 *4)) (-4 *3 (-13 (-1016) (-33))) (-4 *4 (-13 (-1016) (-33))))) (-1555 (*1 *2 *3 *1) (-12 (-5 *3 (-1052 *4 *5)) (-4 *4 (-13 (-1016) (-33))) (-4 *5 (-13 (-1016) (-33))) (-5 *2 (-108)) (-5 *1 (-1053 *4 *5)))) (-2324 (*1 *2 *3 *1 *4) (-12 (-5 *3 (-1052 *5 *6)) (-5 *4 (-1 (-108) *6 *6)) (-4 *5 (-13 (-1016) (-33))) (-4 *6 (-13 (-1016) (-33))) (-5 *2 (-108)) (-5 *1 (-1053 *5 *6)))) (-2231 (*1 *1 *2 *1) (-12 (-5 *2 (-1052 *3 *4)) (-4 *3 (-13 (-1016) (-33))) (-4 *4 (-13 (-1016) (-33))) (-5 *1 (-1053 *3 *4)))) (-1869 (*1 *1 *2 *1) (-12 (-5 *2 (-1052 *3 *4)) (-4 *3 (-13 (-1016) (-33))) (-4 *4 (-13 (-1016) (-33))) (-5 *1 (-1053 *3 *4)))) (-1583 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-589 (-1052 *3 *4))) (-4 *3 (-13 (-1016) (-33))) (-4 *4 (-13 (-1016) (-33))) (-5 *1 (-1053 *3 *4)))) (-1583 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-589 (-1052 *4 *5))) (-5 *3 (-1 (-108) *5 *5)) (-4 *4 (-13 (-1016) (-33))) (-4 *5 (-13 (-1016) (-33))) (-5 *1 (-1053 *4 *5)))))
-(-13 (-938 (-1052 |#1| |#2|)) (-10 -8 (-6 -4249) (-6 -4248) (-15 -2099 ((-3 $ "failed") $)) (-15 -2157 ($ $)) (-15 -3985 ($ (-1052 |#1| |#2|))) (-15 -3985 ($ |#1| |#2| (-589 $))) (-15 -3985 ($ |#1| |#2| (-589 (-1052 |#1| |#2|)))) (-15 -3985 ($ |#1| |#2| |#1| (-589 |#2|))) (-15 -3302 ((-589 |#2|) $)) (-15 -2209 ((-589 (-2 (|:| |val| |#1|) (|:| -2394 |#2|))) $)) (-15 -1555 ((-108) (-1052 |#1| |#2|) $)) (-15 -2324 ((-108) (-1052 |#1| |#2|) $ (-1 (-108) |#2| |#2|))) (-15 -2231 ($ (-1052 |#1| |#2|) $)) (-15 -1869 ($ (-1052 |#1| |#2|) $)) (-15 -1583 ($ $ $ (-589 (-1052 |#1| |#2|)))) (-15 -1583 ($ $ $ (-589 (-1052 |#1| |#2|)) (-1 (-108) |#2| |#2|)))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1659 (($ $) NIL)) (-4131 ((|#2| $) NIL)) (-2624 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3527 (($ (-629 |#2|)) 47)) (-2108 (((-108) $) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-1370 (($ |#2|) 9)) (-1640 (($) NIL T CONST)) (-1561 (($ $) 60 (|has| |#2| (-284)))) (-2823 (((-218 |#1| |#2|) $ (-523)) 34)) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#2| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#2| (-964 (-383 (-523))))) (((-3 |#2| "failed") $) NIL)) (-1996 (((-523) $) NIL (|has| |#2| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#2| (-964 (-383 (-523))))) ((|#2| $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) NIL) (((-629 |#2|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) 74)) (-2262 (((-710) $) 62 (|has| |#2| (-515)))) (-3002 ((|#2| $ (-523) (-523)) NIL)) (-3133 (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-3482 (((-108) $) NIL)) (-2534 (((-710) $) 64 (|has| |#2| (-515)))) (-3392 (((-589 (-218 |#1| |#2|)) $) 68 (|has| |#2| (-515)))) (-3656 (((-710) $) NIL)) (-3668 (((-710) $) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-2082 ((|#2| $) 58 (|has| |#2| (-6 (-4250 "*"))))) (-1392 (((-523) $) NIL)) (-1219 (((-523) $) NIL)) (-3056 (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-2102 (((-523) $) NIL)) (-3328 (((-523) $) NIL)) (-3078 (($ (-589 (-589 |#2|))) 29)) (-3063 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-3522 (((-589 (-589 |#2|)) $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-3714 (((-3 $ "failed") $) 71 (|has| |#2| (-339)))) (-2435 (((-1034) $) NIL)) (-2469 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-515)))) (-2720 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#2|))) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#2| $ (-523) (-523) |#2|) NIL) ((|#2| $ (-523) (-523)) NIL)) (-4024 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-710)) NIL (|has| |#2| (-211))) (($ $) NIL (|has| |#2| (-211)))) (-3092 ((|#2| $) NIL)) (-2148 (($ (-589 |#2|)) 42)) (-2395 (((-108) $) NIL)) (-4088 (((-218 |#1| |#2|) $) NIL)) (-1273 ((|#2| $) 56 (|has| |#2| (-6 (-4250 "*"))))) (-2452 (((-710) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248))) (((-710) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-4124 (($ $) NIL)) (-3077 (((-499) $) 83 (|has| |#2| (-564 (-499))))) (-2032 (((-218 |#1| |#2|) $ (-523)) 36)) (-3976 (((-794) $) 39) (($ (-523)) NIL) (($ (-383 (-523))) NIL (|has| |#2| (-964 (-383 (-523))))) (($ |#2|) NIL) (((-629 |#2|) $) 44)) (-1698 (((-710)) 17)) (-1505 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-2791 (((-108) $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 11 T CONST)) (-1440 (($) 14 T CONST)) (-1943 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-710)) NIL (|has| |#2| (-211))) (($ $) NIL (|has| |#2| (-211)))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ |#2|) NIL (|has| |#2| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) 54) (($ $ (-523)) 73 (|has| |#2| (-339)))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-218 |#1| |#2|) $ (-218 |#1| |#2|)) 50) (((-218 |#1| |#2|) (-218 |#1| |#2|) $) 52)) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-1054 |#1| |#2|) (-13 (-1037 |#1| |#2| (-218 |#1| |#2|) (-218 |#1| |#2|)) (-563 (-629 |#2|)) (-10 -8 (-15 -1659 ($ $)) (-15 -3527 ($ (-629 |#2|))) (-15 -3976 ((-629 |#2|) $)) (IF (|has| |#2| (-6 (-4250 "*"))) (-6 -4237) |%noBranch|) (IF (|has| |#2| (-6 (-4250 "*"))) (IF (|has| |#2| (-6 -4245)) (-6 -4245) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|))) (-710) (-973)) (T -1054))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-629 *4)) (-5 *1 (-1054 *3 *4)) (-14 *3 (-710)) (-4 *4 (-973)))) (-1659 (*1 *1 *1) (-12 (-5 *1 (-1054 *2 *3)) (-14 *2 (-710)) (-4 *3 (-973)))) (-3527 (*1 *1 *2) (-12 (-5 *2 (-629 *4)) (-4 *4 (-973)) (-5 *1 (-1054 *3 *4)) (-14 *3 (-710)))))
-(-13 (-1037 |#1| |#2| (-218 |#1| |#2|) (-218 |#1| |#2|)) (-563 (-629 |#2|)) (-10 -8 (-15 -1659 ($ $)) (-15 -3527 ($ (-629 |#2|))) (-15 -3976 ((-629 |#2|) $)) (IF (|has| |#2| (-6 (-4250 "*"))) (-6 -4237) |%noBranch|) (IF (|has| |#2| (-6 (-4250 "*"))) (IF (|has| |#2| (-6 -4245)) (-6 -4245) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-564 (-499))) (-6 (-564 (-499))) |%noBranch|)))
-((-2889 (($ $) 19)) (-1865 (($ $ (-133)) 10) (($ $ (-130)) 14)) (-3458 (((-108) $ $) 24)) (-4017 (($ $) 17)) (-1502 (((-133) $ (-523) (-133)) NIL) (((-133) $ (-523)) NIL) (($ $ (-1136 (-523))) NIL) (($ $ $) 29)) (-3976 (($ (-133)) 27) (((-794) $) NIL)))
-(((-1055 |#1|) (-10 -8 (-15 -3976 ((-794) |#1|)) (-15 -1502 (|#1| |#1| |#1|)) (-15 -1865 (|#1| |#1| (-130))) (-15 -1865 (|#1| |#1| (-133))) (-15 -3976 (|#1| (-133))) (-15 -3458 ((-108) |#1| |#1|)) (-15 -2889 (|#1| |#1|)) (-15 -4017 (|#1| |#1|)) (-15 -1502 (|#1| |#1| (-1136 (-523)))) (-15 -1502 ((-133) |#1| (-523))) (-15 -1502 ((-133) |#1| (-523) (-133)))) (-1056)) (T -1055))
-NIL
-(-10 -8 (-15 -3976 ((-794) |#1|)) (-15 -1502 (|#1| |#1| |#1|)) (-15 -1865 (|#1| |#1| (-130))) (-15 -1865 (|#1| |#1| (-133))) (-15 -3976 (|#1| (-133))) (-15 -3458 ((-108) |#1| |#1|)) (-15 -2889 (|#1| |#1|)) (-15 -4017 (|#1| |#1|)) (-15 -1502 (|#1| |#1| (-1136 (-523)))) (-15 -1502 ((-133) |#1| (-523))) (-15 -1502 ((-133) |#1| (-523) (-133))))
-((-3260 (((-108) $ $) 19 (|has| (-133) (-1016)))) (-3440 (($ $) 120)) (-2889 (($ $) 121)) (-1865 (($ $ (-133)) 108) (($ $ (-130)) 107)) (-1666 (((-1174) $ (-523) (-523)) 40 (|has| $ (-6 -4249)))) (-3436 (((-108) $ $) 118)) (-3411 (((-108) $ $ (-523)) 117)) (-1380 (((-589 $) $ (-133)) 110) (((-589 $) $ (-130)) 109)) (-4159 (((-108) (-1 (-108) (-133) (-133)) $) 98) (((-108) $) 92 (|has| (-133) (-786)))) (-2361 (($ (-1 (-108) (-133) (-133)) $) 89 (|has| $ (-6 -4249))) (($ $) 88 (-12 (|has| (-133) (-786)) (|has| $ (-6 -4249))))) (-3400 (($ (-1 (-108) (-133) (-133)) $) 99) (($ $) 93 (|has| (-133) (-786)))) (-2282 (((-108) $ (-710)) 8)) (-4101 (((-133) $ (-523) (-133)) 52 (|has| $ (-6 -4249))) (((-133) $ (-1136 (-523)) (-133)) 58 (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) (-133)) $) 75 (|has| $ (-6 -4248)))) (-1640 (($) 7 T CONST)) (-2589 (($ $ (-133)) 104) (($ $ (-130)) 103)) (-4091 (($ $) 90 (|has| $ (-6 -4249)))) (-4082 (($ $) 100)) (-2925 (($ $ (-1136 (-523)) $) 114)) (-3917 (($ $) 78 (-12 (|has| (-133) (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ (-133) $) 77 (-12 (|has| (-133) (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) (-133)) $) 74 (|has| $ (-6 -4248)))) (-1830 (((-133) (-1 (-133) (-133) (-133)) $ (-133) (-133)) 76 (-12 (|has| (-133) (-1016)) (|has| $ (-6 -4248)))) (((-133) (-1 (-133) (-133) (-133)) $ (-133)) 73 (|has| $ (-6 -4248))) (((-133) (-1 (-133) (-133) (-133)) $) 72 (|has| $ (-6 -4248)))) (-3073 (((-133) $ (-523) (-133)) 53 (|has| $ (-6 -4249)))) (-3002 (((-133) $ (-523)) 51)) (-3458 (((-108) $ $) 119)) (-1894 (((-523) (-1 (-108) (-133)) $) 97) (((-523) (-133) $) 96 (|has| (-133) (-1016))) (((-523) (-133) $ (-523)) 95 (|has| (-133) (-1016))) (((-523) $ $ (-523)) 113) (((-523) (-130) $ (-523)) 112)) (-3133 (((-589 (-133)) $) 30 (|has| $ (-6 -4248)))) (-2348 (($ (-710) (-133)) 69)) (-1344 (((-108) $ (-710)) 9)) (-1798 (((-523) $) 43 (|has| (-523) (-786)))) (-3268 (($ $ $) 87 (|has| (-133) (-786)))) (-3123 (($ (-1 (-108) (-133) (-133)) $ $) 101) (($ $ $) 94 (|has| (-133) (-786)))) (-3056 (((-589 (-133)) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) (-133) $) 27 (-12 (|has| (-133) (-1016)) (|has| $ (-6 -4248))))) (-2133 (((-523) $) 44 (|has| (-523) (-786)))) (-2644 (($ $ $) 86 (|has| (-133) (-786)))) (-1221 (((-108) $ $ (-133)) 115)) (-3312 (((-710) $ $ (-133)) 116)) (-3063 (($ (-1 (-133) (-133)) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-133) (-133)) $) 35) (($ (-1 (-133) (-133) (-133)) $ $) 64)) (-1593 (($ $) 122)) (-4017 (($ $) 123)) (-4042 (((-108) $ (-710)) 10)) (-2599 (($ $ (-133)) 106) (($ $ (-130)) 105)) (-3841 (((-1070) $) 22 (|has| (-133) (-1016)))) (-3334 (($ (-133) $ (-523)) 60) (($ $ $ (-523)) 59)) (-2909 (((-589 (-523)) $) 46)) (-2290 (((-108) (-523) $) 47)) (-2435 (((-1034) $) 21 (|has| (-133) (-1016)))) (-3879 (((-133) $) 42 (|has| (-523) (-786)))) (-2660 (((-3 (-133) "failed") (-1 (-108) (-133)) $) 71)) (-2408 (($ $ (-133)) 41 (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) (-133)) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-133)))) 26 (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016)))) (($ $ (-271 (-133))) 25 (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016)))) (($ $ (-133) (-133)) 24 (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016)))) (($ $ (-589 (-133)) (-589 (-133))) 23 (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016))))) (-2391 (((-108) $ $) 14)) (-1410 (((-108) (-133) $) 45 (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016))))) (-3184 (((-589 (-133)) $) 48)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 (((-133) $ (-523) (-133)) 50) (((-133) $ (-523)) 49) (($ $ (-1136 (-523))) 63) (($ $ $) 102)) (-3725 (($ $ (-523)) 62) (($ $ (-1136 (-523))) 61)) (-2452 (((-710) (-1 (-108) (-133)) $) 31 (|has| $ (-6 -4248))) (((-710) (-133) $) 28 (-12 (|has| (-133) (-1016)) (|has| $ (-6 -4248))))) (-2580 (($ $ $ (-523)) 91 (|has| $ (-6 -4249)))) (-4124 (($ $) 13)) (-3077 (((-499) $) 79 (|has| (-133) (-564 (-499))))) (-3985 (($ (-589 (-133))) 70)) (-2785 (($ $ (-133)) 68) (($ (-133) $) 67) (($ $ $) 66) (($ (-589 $)) 65)) (-3976 (($ (-133)) 111) (((-794) $) 18 (|has| (-133) (-563 (-794))))) (-1505 (((-108) (-1 (-108) (-133)) $) 33 (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) 84 (|has| (-133) (-786)))) (-4061 (((-108) $ $) 83 (|has| (-133) (-786)))) (-4037 (((-108) $ $) 20 (|has| (-133) (-1016)))) (-4070 (((-108) $ $) 85 (|has| (-133) (-786)))) (-4052 (((-108) $ $) 82 (|has| (-133) (-786)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-1056) (-129)) (T -1056))
-((-4017 (*1 *1 *1) (-4 *1 (-1056))) (-1593 (*1 *1 *1) (-4 *1 (-1056))) (-2889 (*1 *1 *1) (-4 *1 (-1056))) (-3440 (*1 *1 *1) (-4 *1 (-1056))) (-3458 (*1 *2 *1 *1) (-12 (-4 *1 (-1056)) (-5 *2 (-108)))) (-3436 (*1 *2 *1 *1) (-12 (-4 *1 (-1056)) (-5 *2 (-108)))) (-3411 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1056)) (-5 *3 (-523)) (-5 *2 (-108)))) (-3312 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1056)) (-5 *3 (-133)) (-5 *2 (-710)))) (-1221 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1056)) (-5 *3 (-133)) (-5 *2 (-108)))) (-2925 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1056)) (-5 *2 (-1136 (-523))))) (-1894 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-523)))) (-1894 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-523)) (-5 *3 (-130)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-133)) (-4 *1 (-1056)))) (-1380 (*1 *2 *1 *3) (-12 (-5 *3 (-133)) (-5 *2 (-589 *1)) (-4 *1 (-1056)))) (-1380 (*1 *2 *1 *3) (-12 (-5 *3 (-130)) (-5 *2 (-589 *1)) (-4 *1 (-1056)))) (-1865 (*1 *1 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-133)))) (-1865 (*1 *1 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-130)))) (-2599 (*1 *1 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-133)))) (-2599 (*1 *1 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-130)))) (-2589 (*1 *1 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-133)))) (-2589 (*1 *1 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-130)))) (-1502 (*1 *1 *1 *1) (-4 *1 (-1056))))
-(-13 (-19 (-133)) (-10 -8 (-15 -4017 ($ $)) (-15 -1593 ($ $)) (-15 -2889 ($ $)) (-15 -3440 ($ $)) (-15 -3458 ((-108) $ $)) (-15 -3436 ((-108) $ $)) (-15 -3411 ((-108) $ $ (-523))) (-15 -3312 ((-710) $ $ (-133))) (-15 -1221 ((-108) $ $ (-133))) (-15 -2925 ($ $ (-1136 (-523)) $)) (-15 -1894 ((-523) $ $ (-523))) (-15 -1894 ((-523) (-130) $ (-523))) (-15 -3976 ($ (-133))) (-15 -1380 ((-589 $) $ (-133))) (-15 -1380 ((-589 $) $ (-130))) (-15 -1865 ($ $ (-133))) (-15 -1865 ($ $ (-130))) (-15 -2599 ($ $ (-133))) (-15 -2599 ($ $ (-130))) (-15 -2589 ($ $ (-133))) (-15 -2589 ($ $ (-130))) (-15 -1502 ($ $ $))))
-(((-33) . T) ((-97) -3255 (|has| (-133) (-1016)) (|has| (-133) (-786))) ((-563 (-794)) -3255 (|has| (-133) (-1016)) (|has| (-133) (-786)) (|has| (-133) (-563 (-794)))) ((-140 #0=(-133)) . T) ((-564 (-499)) |has| (-133) (-564 (-499))) ((-263 #1=(-523) #0#) . T) ((-265 #1# #0#) . T) ((-286 #0#) -12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016))) ((-349 #0#) . T) ((-462 #0#) . T) ((-556 #1# #0#) . T) ((-484 #0# #0#) -12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016))) ((-594 #0#) . T) ((-19 #0#) . T) ((-786) |has| (-133) (-786)) ((-1016) -3255 (|has| (-133) (-1016)) (|has| (-133) (-786))) ((-1123) . T))
-((-1359 (((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-589 |#4|) (-589 |#5|) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) (-710)) 94)) (-4181 (((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5|) 55) (((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710)) 54)) (-2398 (((-1174) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-710)) 85)) (-3347 (((-710) (-589 |#4|) (-589 |#5|)) 27)) (-2006 (((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710)) 56) (((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710) (-108)) 58)) (-3720 (((-589 |#5|) (-589 |#4|) (-589 |#5|) (-108) (-108) (-108) (-108) (-108)) 76) (((-589 |#5|) (-589 |#4|) (-589 |#5|) (-108) (-108)) 77)) (-3077 (((-1070) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) 80)) (-2512 (((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5|) 53)) (-2350 (((-710) (-589 |#4|) (-589 |#5|)) 19)))
-(((-1057 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2350 ((-710) (-589 |#4|) (-589 |#5|))) (-15 -3347 ((-710) (-589 |#4|) (-589 |#5|))) (-15 -2512 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5|)) (-15 -4181 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710))) (-15 -4181 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5|)) (-15 -2006 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710) (-108))) (-15 -2006 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710))) (-15 -2006 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5|)) (-15 -3720 ((-589 |#5|) (-589 |#4|) (-589 |#5|) (-108) (-108))) (-15 -3720 ((-589 |#5|) (-589 |#4|) (-589 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -1359 ((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-589 |#4|) (-589 |#5|) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) (-710))) (-15 -3077 ((-1070) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)))) (-15 -2398 ((-1174) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-710)))) (-427) (-732) (-786) (-987 |#1| |#2| |#3|) (-1025 |#1| |#2| |#3| |#4|)) (T -1057))
-((-2398 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-2 (|:| |val| (-589 *8)) (|:| -2394 *9)))) (-5 *4 (-710)) (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-1025 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-1174)) (-5 *1 (-1057 *5 *6 *7 *8 *9)))) (-3077 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-589 *7)) (|:| -2394 *8))) (-4 *7 (-987 *4 *5 *6)) (-4 *8 (-1025 *4 *5 *6 *7)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-1070)) (-5 *1 (-1057 *4 *5 *6 *7 *8)))) (-1359 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-589 *11)) (|:| |todo| (-589 (-2 (|:| |val| *3) (|:| -2394 *11)))))) (-5 *6 (-710)) (-5 *2 (-589 (-2 (|:| |val| (-589 *10)) (|:| -2394 *11)))) (-5 *3 (-589 *10)) (-5 *4 (-589 *11)) (-4 *10 (-987 *7 *8 *9)) (-4 *11 (-1025 *7 *8 *9 *10)) (-4 *7 (-427)) (-4 *8 (-732)) (-4 *9 (-786)) (-5 *1 (-1057 *7 *8 *9 *10 *11)))) (-3720 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-589 *9)) (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-1025 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *1 (-1057 *5 *6 *7 *8 *9)))) (-3720 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-589 *9)) (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-1025 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *1 (-1057 *5 *6 *7 *8 *9)))) (-2006 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-589 *4)) (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4)))))) (-5 *1 (-1057 *5 *6 *7 *3 *4)) (-4 *4 (-1025 *5 *6 *7 *3)))) (-2006 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-710)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *3 (-987 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-589 *4)) (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4)))))) (-5 *1 (-1057 *6 *7 *8 *3 *4)) (-4 *4 (-1025 *6 *7 *8 *3)))) (-2006 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-710)) (-5 *6 (-108)) (-4 *7 (-427)) (-4 *8 (-732)) (-4 *9 (-786)) (-4 *3 (-987 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-589 *4)) (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4)))))) (-5 *1 (-1057 *7 *8 *9 *3 *4)) (-4 *4 (-1025 *7 *8 *9 *3)))) (-4181 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-589 *4)) (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4)))))) (-5 *1 (-1057 *5 *6 *7 *3 *4)) (-4 *4 (-1025 *5 *6 *7 *3)))) (-4181 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-710)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *3 (-987 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-589 *4)) (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4)))))) (-5 *1 (-1057 *6 *7 *8 *3 *4)) (-4 *4 (-1025 *6 *7 *8 *3)))) (-2512 (*1 *2 *3 *4) (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-589 *4)) (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4)))))) (-5 *1 (-1057 *5 *6 *7 *3 *4)) (-4 *4 (-1025 *5 *6 *7 *3)))) (-3347 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *8)) (-5 *4 (-589 *9)) (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-1025 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-710)) (-5 *1 (-1057 *5 *6 *7 *8 *9)))) (-2350 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *8)) (-5 *4 (-589 *9)) (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-1025 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-710)) (-5 *1 (-1057 *5 *6 *7 *8 *9)))))
-(-10 -7 (-15 -2350 ((-710) (-589 |#4|) (-589 |#5|))) (-15 -3347 ((-710) (-589 |#4|) (-589 |#5|))) (-15 -2512 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5|)) (-15 -4181 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710))) (-15 -4181 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5|)) (-15 -2006 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710) (-108))) (-15 -2006 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5| (-710))) (-15 -2006 ((-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) |#4| |#5|)) (-15 -3720 ((-589 |#5|) (-589 |#4|) (-589 |#5|) (-108) (-108))) (-15 -3720 ((-589 |#5|) (-589 |#4|) (-589 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -1359 ((-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-589 |#4|) (-589 |#5|) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-2 (|:| |done| (-589 |#5|)) (|:| |todo| (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))))) (-710))) (-15 -3077 ((-1070) (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|)))) (-15 -2398 ((-1174) (-589 (-2 (|:| |val| (-589 |#4|)) (|:| -2394 |#5|))) (-710))))
-((-3260 (((-108) $ $) NIL)) (-2778 (((-589 (-2 (|:| -3922 $) (|:| -3439 (-589 |#4|)))) (-589 |#4|)) NIL)) (-2311 (((-589 $) (-589 |#4|)) 110) (((-589 $) (-589 |#4|) (-108)) 111) (((-589 $) (-589 |#4|) (-108) (-108)) 109) (((-589 $) (-589 |#4|) (-108) (-108) (-108) (-108)) 112)) (-3716 (((-589 |#3|) $) NIL)) (-2011 (((-108) $) NIL)) (-2821 (((-108) $) NIL (|has| |#1| (-515)))) (-3103 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-4165 ((|#4| |#4| $) NIL)) (-3763 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 $))) |#4| $) 84)) (-3400 (((-2 (|:| |under| $) (|:| -1250 $) (|:| |upper| $)) $ |#3|) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-1299 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248))) (((-3 |#4| "failed") $ |#3|) 62)) (-1640 (($) NIL T CONST)) (-1619 (((-108) $) 26 (|has| |#1| (-515)))) (-2927 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3685 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2457 (((-108) $) NIL (|has| |#1| (-515)))) (-3021 (((-589 |#4|) (-589 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2341 (((-589 |#4|) (-589 |#4|) $) NIL (|has| |#1| (-515)))) (-3450 (((-589 |#4|) (-589 |#4|) $) NIL (|has| |#1| (-515)))) (-2898 (((-3 $ "failed") (-589 |#4|)) NIL)) (-1996 (($ (-589 |#4|)) NIL)) (-3891 (((-3 $ "failed") $) 39)) (-3880 ((|#4| |#4| $) 65)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016))))) (-2231 (($ |#4| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-3143 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 78 (|has| |#1| (-515)))) (-3605 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-3058 ((|#4| |#4| $) NIL)) (-1830 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4248))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4248))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3161 (((-2 (|:| -3922 (-589 |#4|)) (|:| -3439 (-589 |#4|))) $) NIL)) (-2422 (((-108) |#4| $) NIL)) (-4171 (((-108) |#4| $) NIL)) (-3004 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2962 (((-2 (|:| |val| (-589 |#4|)) (|:| |towers| (-589 $))) (-589 |#4|) (-108) (-108)) 124)) (-3133 (((-589 |#4|) $) 16 (|has| $ (-6 -4248)))) (-2407 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2694 ((|#3| $) 33)) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#4|) $) 17 (|has| $ (-6 -4248)))) (-1348 (((-108) |#4| $) 25 (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016))))) (-3063 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#4| |#4|) $) 21)) (-4100 (((-589 |#3|) $) NIL)) (-2863 (((-108) |#3| $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-3726 (((-3 |#4| (-589 $)) |#4| |#4| $) NIL)) (-3216 (((-589 (-2 (|:| |val| |#4|) (|:| -2394 $))) |#4| |#4| $) 103)) (-2247 (((-3 |#4| "failed") $) 37)) (-2818 (((-589 $) |#4| $) 88)) (-1446 (((-3 (-108) (-589 $)) |#4| $) NIL)) (-4226 (((-589 (-2 (|:| |val| (-108)) (|:| -2394 $))) |#4| $) 98) (((-108) |#4| $) 53)) (-1625 (((-589 $) |#4| $) 107) (((-589 $) (-589 |#4|) $) NIL) (((-589 $) (-589 |#4|) (-589 $)) 108) (((-589 $) |#4| (-589 $)) NIL)) (-1452 (((-589 $) (-589 |#4|) (-108) (-108) (-108)) 119)) (-2795 (($ |#4| $) 75) (($ (-589 |#4|) $) 76) (((-589 $) |#4| $ (-108) (-108) (-108) (-108) (-108)) 74)) (-3403 (((-589 |#4|) $) NIL)) (-3761 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1728 ((|#4| |#4| $) NIL)) (-1454 (((-108) $ $) NIL)) (-1916 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-515)))) (-2152 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2347 ((|#4| |#4| $) NIL)) (-2435 (((-1034) $) NIL)) (-3879 (((-3 |#4| "failed") $) 35)) (-2660 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-2594 (((-3 $ "failed") $ |#4|) 48)) (-1361 (($ $ |#4|) NIL) (((-589 $) |#4| $) 90) (((-589 $) |#4| (-589 $)) NIL) (((-589 $) (-589 |#4|) $) NIL) (((-589 $) (-589 |#4|) (-589 $)) 86)) (-2720 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 |#4|) (-589 |#4|)) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-271 |#4|)) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-589 (-271 |#4|))) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) 15)) (-4055 (($) 13)) (-1487 (((-710) $) NIL)) (-2452 (((-710) |#4| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016)))) (((-710) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) 12)) (-3077 (((-499) $) NIL (|has| |#4| (-564 (-499))))) (-3985 (($ (-589 |#4|)) 20)) (-4135 (($ $ |#3|) 42)) (-1318 (($ $ |#3|) 44)) (-3444 (($ $) NIL)) (-2023 (($ $ |#3|) NIL)) (-3976 (((-794) $) 31) (((-589 |#4|) $) 40)) (-3221 (((-710) $) NIL (|has| |#3| (-344)))) (-2459 (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3442 (((-108) $ (-1 (-108) |#4| (-589 |#4|))) NIL)) (-1611 (((-589 $) |#4| $) 54) (((-589 $) |#4| (-589 $)) NIL) (((-589 $) (-589 |#4|) $) NIL) (((-589 $) (-589 |#4|) (-589 $)) NIL)) (-1505 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-2969 (((-589 |#3|) $) NIL)) (-3553 (((-108) |#4| $) NIL)) (-4079 (((-108) |#3| $) 61)) (-4037 (((-108) $ $) NIL)) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-1058 |#1| |#2| |#3| |#4|) (-13 (-1025 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2795 ((-589 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -2311 ((-589 $) (-589 |#4|) (-108) (-108))) (-15 -2311 ((-589 $) (-589 |#4|) (-108) (-108) (-108) (-108))) (-15 -1452 ((-589 $) (-589 |#4|) (-108) (-108) (-108))) (-15 -2962 ((-2 (|:| |val| (-589 |#4|)) (|:| |towers| (-589 $))) (-589 |#4|) (-108) (-108))))) (-427) (-732) (-786) (-987 |#1| |#2| |#3|)) (T -1058))
-((-2795 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-589 (-1058 *5 *6 *7 *3))) (-5 *1 (-1058 *5 *6 *7 *3)) (-4 *3 (-987 *5 *6 *7)))) (-2311 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-589 (-1058 *5 *6 *7 *8))) (-5 *1 (-1058 *5 *6 *7 *8)))) (-2311 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-589 (-1058 *5 *6 *7 *8))) (-5 *1 (-1058 *5 *6 *7 *8)))) (-1452 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-589 (-1058 *5 *6 *7 *8))) (-5 *1 (-1058 *5 *6 *7 *8)))) (-2962 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-987 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-589 *8)) (|:| |towers| (-589 (-1058 *5 *6 *7 *8))))) (-5 *1 (-1058 *5 *6 *7 *8)) (-5 *3 (-589 *8)))))
-(-13 (-1025 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2795 ((-589 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -2311 ((-589 $) (-589 |#4|) (-108) (-108))) (-15 -2311 ((-589 $) (-589 |#4|) (-108) (-108) (-108) (-108))) (-15 -1452 ((-589 $) (-589 |#4|) (-108) (-108) (-108))) (-15 -2962 ((-2 (|:| |val| (-589 |#4|)) (|:| |towers| (-589 $))) (-589 |#4|) (-108) (-108)))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-3346 ((|#1| $) 34)) (-2849 (($ (-589 |#1|)) 39)) (-2282 (((-108) $ (-710)) NIL)) (-1640 (($) NIL T CONST)) (-2230 ((|#1| |#1| $) 36)) (-2868 ((|#1| $) 32)) (-3133 (((-589 |#1|) $) 18 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3063 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 22)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2349 ((|#1| $) 35)) (-3862 (($ |#1| $) 37)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-1322 ((|#1| $) 33)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) 31)) (-4055 (($) 38)) (-4120 (((-710) $) 29)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) 27)) (-3976 (((-794) $) 14 (|has| |#1| (-563 (-794))))) (-1245 (($ (-589 |#1|)) NIL)) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 17 (|has| |#1| (-1016)))) (-1271 (((-710) $) 30 (|has| $ (-6 -4248)))))
-(((-1059 |#1|) (-13 (-1035 |#1|) (-10 -8 (-15 -2849 ($ (-589 |#1|))))) (-1123)) (T -1059))
-((-2849 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-5 *1 (-1059 *3)))))
-(-13 (-1035 |#1|) (-10 -8 (-15 -2849 ($ (-589 |#1|)))))
-((-4101 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1136 (-523)) |#2|) 44) ((|#2| $ (-523) |#2|) 41)) (-2527 (((-108) $) 12)) (-3063 (($ (-1 |#2| |#2|) $) 39)) (-3879 ((|#2| $) NIL) (($ $ (-710)) 17)) (-2408 (($ $ |#2|) 40)) (-3214 (((-108) $) 11)) (-1502 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1136 (-523))) 31) ((|#2| $ (-523)) 23) ((|#2| $ (-523) |#2|) NIL)) (-1622 (($ $ $) 47) (($ $ |#2|) NIL)) (-2785 (($ $ $) 33) (($ |#2| $) NIL) (($ (-589 $)) 36) (($ $ |#2|) NIL)))
-(((-1060 |#1| |#2|) (-10 -8 (-15 -2527 ((-108) |#1|)) (-15 -3214 ((-108) |#1|)) (-15 -4101 (|#2| |#1| (-523) |#2|)) (-15 -1502 (|#2| |#1| (-523) |#2|)) (-15 -1502 (|#2| |#1| (-523))) (-15 -2408 (|#1| |#1| |#2|)) (-15 -2785 (|#1| |#1| |#2|)) (-15 -2785 (|#1| (-589 |#1|))) (-15 -1502 (|#1| |#1| (-1136 (-523)))) (-15 -4101 (|#2| |#1| (-1136 (-523)) |#2|)) (-15 -4101 (|#2| |#1| "last" |#2|)) (-15 -4101 (|#1| |#1| "rest" |#1|)) (-15 -4101 (|#2| |#1| "first" |#2|)) (-15 -1622 (|#1| |#1| |#2|)) (-15 -1622 (|#1| |#1| |#1|)) (-15 -1502 (|#2| |#1| "last")) (-15 -1502 (|#1| |#1| "rest")) (-15 -3879 (|#1| |#1| (-710))) (-15 -1502 (|#2| |#1| "first")) (-15 -3879 (|#2| |#1|)) (-15 -2785 (|#1| |#2| |#1|)) (-15 -2785 (|#1| |#1| |#1|)) (-15 -4101 (|#2| |#1| "value" |#2|)) (-15 -1502 (|#2| |#1| "value")) (-15 -3063 (|#1| (-1 |#2| |#2|) |#1|))) (-1061 |#2|) (-1123)) (T -1060))
-NIL
-(-10 -8 (-15 -2527 ((-108) |#1|)) (-15 -3214 ((-108) |#1|)) (-15 -4101 (|#2| |#1| (-523) |#2|)) (-15 -1502 (|#2| |#1| (-523) |#2|)) (-15 -1502 (|#2| |#1| (-523))) (-15 -2408 (|#1| |#1| |#2|)) (-15 -2785 (|#1| |#1| |#2|)) (-15 -2785 (|#1| (-589 |#1|))) (-15 -1502 (|#1| |#1| (-1136 (-523)))) (-15 -4101 (|#2| |#1| (-1136 (-523)) |#2|)) (-15 -4101 (|#2| |#1| "last" |#2|)) (-15 -4101 (|#1| |#1| "rest" |#1|)) (-15 -4101 (|#2| |#1| "first" |#2|)) (-15 -1622 (|#1| |#1| |#2|)) (-15 -1622 (|#1| |#1| |#1|)) (-15 -1502 (|#2| |#1| "last")) (-15 -1502 (|#1| |#1| "rest")) (-15 -3879 (|#1| |#1| (-710))) (-15 -1502 (|#2| |#1| "first")) (-15 -3879 (|#2| |#1|)) (-15 -2785 (|#1| |#2| |#1|)) (-15 -2785 (|#1| |#1| |#1|)) (-15 -4101 (|#2| |#1| "value" |#2|)) (-15 -1502 (|#2| |#1| "value")) (-15 -3063 (|#1| (-1 |#2| |#2|) |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2058 ((|#1| $) 48)) (-3972 ((|#1| $) 65)) (-3548 (($ $) 67)) (-1666 (((-1174) $ (-523) (-523)) 97 (|has| $ (-6 -4249)))) (-3117 (($ $ (-523)) 52 (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) 8)) (-3365 ((|#1| $ |#1|) 39 (|has| $ (-6 -4249)))) (-3546 (($ $ $) 56 (|has| $ (-6 -4249)))) (-2535 ((|#1| $ |#1|) 54 (|has| $ (-6 -4249)))) (-1957 ((|#1| $ |#1|) 58 (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4249))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4249))) (($ $ "rest" $) 55 (|has| $ (-6 -4249))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) 117 (|has| $ (-6 -4249))) ((|#1| $ (-523) |#1|) 86 (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) 41 (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) |#1|) $) 102 (|has| $ (-6 -4248)))) (-3962 ((|#1| $) 66)) (-1640 (($) 7 T CONST)) (-3891 (($ $) 73) (($ $ (-710)) 71)) (-3917 (($ $) 99 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ (-1 (-108) |#1|) $) 103 (|has| $ (-6 -4248))) (($ |#1| $) 100 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3073 ((|#1| $ (-523) |#1|) 85 (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) 87)) (-2527 (((-108) $) 83)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) 50)) (-3339 (((-108) $ $) 42 (|has| |#1| (-1016)))) (-2348 (($ (-710) |#1|) 108)) (-1344 (((-108) $ (-710)) 9)) (-1798 (((-523) $) 95 (|has| (-523) (-786)))) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2133 (((-523) $) 94 (|has| (-523) (-786)))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-4042 (((-108) $ (-710)) 10)) (-2112 (((-589 |#1|) $) 45)) (-3391 (((-108) $) 49)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2247 ((|#1| $) 70) (($ $ (-710)) 68)) (-3334 (($ $ $ (-523)) 116) (($ |#1| $ (-523)) 115)) (-2909 (((-589 (-523)) $) 92)) (-2290 (((-108) (-523) $) 91)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-3879 ((|#1| $) 76) (($ $ (-710)) 74)) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 106)) (-2408 (($ $ |#1|) 96 (|has| $ (-6 -4249)))) (-3214 (((-108) $) 84)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-1410 (((-108) |#1| $) 93 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) 90)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1136 (-523))) 112) ((|#1| $ (-523)) 89) ((|#1| $ (-523) |#1|) 88)) (-2981 (((-523) $ $) 44)) (-3725 (($ $ (-1136 (-523))) 114) (($ $ (-523)) 113)) (-2837 (((-108) $) 46)) (-2238 (($ $) 62)) (-4198 (($ $) 59 (|has| $ (-6 -4249)))) (-3647 (((-710) $) 63)) (-2801 (($ $) 64)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-3077 (((-499) $) 98 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 107)) (-1622 (($ $ $) 61 (|has| $ (-6 -4249))) (($ $ |#1|) 60 (|has| $ (-6 -4249)))) (-2785 (($ $ $) 78) (($ |#1| $) 77) (($ (-589 $)) 110) (($ $ |#1|) 109)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) 51)) (-4004 (((-108) $ $) 43 (|has| |#1| (-1016)))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-1061 |#1|) (-129) (-1123)) (T -1061))
-((-3214 (*1 *2 *1) (-12 (-4 *1 (-1061 *3)) (-4 *3 (-1123)) (-5 *2 (-108)))) (-2527 (*1 *2 *1) (-12 (-4 *1 (-1061 *3)) (-4 *3 (-1123)) (-5 *2 (-108)))))
-(-13 (-1157 |t#1|) (-594 |t#1|) (-10 -8 (-15 -3214 ((-108) $)) (-15 -2527 ((-108) $))))
-(((-33) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-263 #0=(-523) |#1|) . T) ((-265 #0# |#1|) . T) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-556 #0# |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-594 |#1|) . T) ((-938 |#1|) . T) ((-1016) |has| |#1| (-1016)) ((-1123) . T) ((-1157 |#1|) . T))
-((-3260 (((-108) $ $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-2340 (($) NIL) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-1666 (((-1174) $ |#1| |#1|) NIL (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#2| $ |#1| |#2|) NIL)) (-3627 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-2521 (((-3 |#2| "failed") |#1| $) NIL)) (-1640 (($) NIL T CONST)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-1869 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-3 |#2| "failed") |#1| $) NIL)) (-2231 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1830 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4248))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#2| $ |#1|) NIL)) (-3133 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-1798 ((|#1| $) NIL (|has| |#1| (-786)))) (-3056 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-2133 ((|#1| $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4249))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-1612 (((-589 |#1|) $) NIL)) (-2754 (((-108) |#1| $) NIL)) (-2349 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-3862 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-2909 (((-589 |#1|) $) NIL)) (-2290 (((-108) |#1| $) NIL)) (-2435 (((-1034) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-3879 ((|#2| $) NIL (|has| |#1| (-786)))) (-2660 (((-3 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) "failed") (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL)) (-2408 (($ $ |#2|) NIL (|has| $ (-6 -4249)))) (-1322 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-2720 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 (-271 |#2|))) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-3184 (((-589 |#2|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-1771 (($) NIL) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-2452 (((-710) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-710) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016)))) (((-710) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-564 (-499))))) (-3985 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-3976 (((-794) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-563 (-794))) (|has| |#2| (-563 (-794)))))) (-1245 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-1505 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-1062 |#1| |#2| |#3|) (-1100 |#1| |#2|) (-1016) (-1016) |#2|) (T -1062))
-NIL
-(-1100 |#1| |#2|)
-((-3260 (((-108) $ $) 7)) (-1289 (((-3 $ "failed") $) 13)) (-3841 (((-1070) $) 9)) (-4105 (($) 14 T CONST)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11)) (-4037 (((-108) $ $) 6)))
-(((-1063) (-129)) (T -1063))
-((-4105 (*1 *1) (-4 *1 (-1063))) (-1289 (*1 *1 *1) (|partial| -4 *1 (-1063))))
-(-13 (-1016) (-10 -8 (-15 -4105 ($) -1982) (-15 -1289 ((-3 $ "failed") $))))
-(((-97) . T) ((-563 (-794)) . T) ((-1016) . T))
-((-2378 (((-1068 |#1|) (-1068 |#1|)) 17)) (-4191 (((-1068 |#1|) (-1068 |#1|)) 13)) (-1438 (((-1068 |#1|) (-1068 |#1|) (-523) (-523)) 20)) (-1762 (((-1068 |#1|) (-1068 |#1|)) 15)))
-(((-1064 |#1|) (-10 -7 (-15 -4191 ((-1068 |#1|) (-1068 |#1|))) (-15 -1762 ((-1068 |#1|) (-1068 |#1|))) (-15 -2378 ((-1068 |#1|) (-1068 |#1|))) (-15 -1438 ((-1068 |#1|) (-1068 |#1|) (-523) (-523)))) (-13 (-515) (-136))) (T -1064))
-((-1438 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1068 *4)) (-5 *3 (-523)) (-4 *4 (-13 (-515) (-136))) (-5 *1 (-1064 *4)))) (-2378 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-13 (-515) (-136))) (-5 *1 (-1064 *3)))) (-1762 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-13 (-515) (-136))) (-5 *1 (-1064 *3)))) (-4191 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-13 (-515) (-136))) (-5 *1 (-1064 *3)))))
-(-10 -7 (-15 -4191 ((-1068 |#1|) (-1068 |#1|))) (-15 -1762 ((-1068 |#1|) (-1068 |#1|))) (-15 -2378 ((-1068 |#1|) (-1068 |#1|))) (-15 -1438 ((-1068 |#1|) (-1068 |#1|) (-523) (-523))))
-((-2785 (((-1068 |#1|) (-1068 (-1068 |#1|))) 15)))
-(((-1065 |#1|) (-10 -7 (-15 -2785 ((-1068 |#1|) (-1068 (-1068 |#1|))))) (-1123)) (T -1065))
-((-2785 (*1 *2 *3) (-12 (-5 *3 (-1068 (-1068 *4))) (-5 *2 (-1068 *4)) (-5 *1 (-1065 *4)) (-4 *4 (-1123)))))
-(-10 -7 (-15 -2785 ((-1068 |#1|) (-1068 (-1068 |#1|)))))
-((-1586 (((-1068 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1068 |#1|)) 25)) (-1830 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1068 |#1|)) 26)) (-3015 (((-1068 |#2|) (-1 |#2| |#1|) (-1068 |#1|)) 16)))
-(((-1066 |#1| |#2|) (-10 -7 (-15 -3015 ((-1068 |#2|) (-1 |#2| |#1|) (-1068 |#1|))) (-15 -1586 ((-1068 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1068 |#1|))) (-15 -1830 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1068 |#1|)))) (-1123) (-1123)) (T -1066))
-((-1830 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1068 *5)) (-4 *5 (-1123)) (-4 *2 (-1123)) (-5 *1 (-1066 *5 *2)))) (-1586 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1068 *6)) (-4 *6 (-1123)) (-4 *3 (-1123)) (-5 *2 (-1068 *3)) (-5 *1 (-1066 *6 *3)))) (-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1068 *5)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-1068 *6)) (-5 *1 (-1066 *5 *6)))))
-(-10 -7 (-15 -3015 ((-1068 |#2|) (-1 |#2| |#1|) (-1068 |#1|))) (-15 -1586 ((-1068 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1068 |#1|))) (-15 -1830 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1068 |#1|))))
-((-3015 (((-1068 |#3|) (-1 |#3| |#1| |#2|) (-1068 |#1|) (-1068 |#2|)) 21)))
-(((-1067 |#1| |#2| |#3|) (-10 -7 (-15 -3015 ((-1068 |#3|) (-1 |#3| |#1| |#2|) (-1068 |#1|) (-1068 |#2|)))) (-1123) (-1123) (-1123)) (T -1067))
-((-3015 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1068 *6)) (-5 *5 (-1068 *7)) (-4 *6 (-1123)) (-4 *7 (-1123)) (-4 *8 (-1123)) (-5 *2 (-1068 *8)) (-5 *1 (-1067 *6 *7 *8)))))
-(-10 -7 (-15 -3015 ((-1068 |#3|) (-1 |#3| |#1| |#2|) (-1068 |#1|) (-1068 |#2|))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2058 ((|#1| $) NIL)) (-3972 ((|#1| $) NIL)) (-3548 (($ $) 49)) (-1666 (((-1174) $ (-523) (-523)) 74 (|has| $ (-6 -4249)))) (-3117 (($ $ (-523)) 108 (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) NIL)) (-2240 (((-794) $) 38 (|has| |#1| (-1016)))) (-3489 (((-108)) 39 (|has| |#1| (-1016)))) (-3365 ((|#1| $ |#1|) NIL (|has| $ (-6 -4249)))) (-3546 (($ $ $) 96 (|has| $ (-6 -4249))) (($ $ (-523) $) 119)) (-2535 ((|#1| $ |#1|) 105 (|has| $ (-6 -4249)))) (-1957 ((|#1| $ |#1|) 100 (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4249))) ((|#1| $ "first" |#1|) 102 (|has| $ (-6 -4249))) (($ $ "rest" $) 104 (|has| $ (-6 -4249))) ((|#1| $ "last" |#1|) 107 (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) 87 (|has| $ (-6 -4249))) ((|#1| $ (-523) |#1|) 53 (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) NIL (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) |#1|) $) 56)) (-3962 ((|#1| $) NIL)) (-1640 (($) NIL T CONST)) (-2177 (($ $) 14)) (-3891 (($ $) 29) (($ $ (-710)) 86)) (-4069 (((-108) (-589 |#1|) $) 114 (|has| |#1| (-1016)))) (-1389 (($ (-589 |#1|)) 110)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2231 (($ |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) (($ (-1 (-108) |#1|) $) 55)) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3073 ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) NIL)) (-2527 (((-108) $) NIL)) (-3133 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-3337 (((-1174) (-523) $) 118 (|has| |#1| (-1016)))) (-3609 (((-710) $) 116)) (-1378 (((-589 $) $) NIL)) (-3339 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2348 (($ (-710) |#1|) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) NIL (|has| (-523) (-786)))) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-3063 (($ (-1 |#1| |#1|) $) 71 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 61) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-4042 (((-108) $ (-710)) NIL)) (-2112 (((-589 |#1|) $) NIL)) (-3391 (((-108) $) NIL)) (-3438 (($ $) 88)) (-3457 (((-108) $) 13)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2247 ((|#1| $) NIL) (($ $ (-710)) NIL)) (-3334 (($ $ $ (-523)) NIL) (($ |#1| $ (-523)) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) 72)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-1252 (($ (-1 |#1|)) 121) (($ (-1 |#1| |#1|) |#1|) 122)) (-3803 ((|#1| $) 10)) (-3879 ((|#1| $) 28) (($ $ (-710)) 47)) (-2739 (((-2 (|:| |cycle?| (-108)) (|:| -2831 (-710)) (|:| |period| (-710))) (-710) $) 25)) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1284 (($ (-1 (-108) |#1|) $) 123)) (-1291 (($ (-1 (-108) |#1|) $) 124)) (-2408 (($ $ |#1|) 66 (|has| $ (-6 -4249)))) (-1361 (($ $ (-523)) 32)) (-3214 (((-108) $) 70)) (-3300 (((-108) $) 12)) (-1796 (((-108) $) 115)) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 20)) (-1410 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) NIL)) (-3163 (((-108) $) 15)) (-4055 (($) 41)) (-1502 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1136 (-523))) NIL) ((|#1| $ (-523)) 52) ((|#1| $ (-523) |#1|) NIL)) (-2981 (((-523) $ $) 46)) (-3725 (($ $ (-1136 (-523))) NIL) (($ $ (-523)) NIL)) (-1705 (($ (-1 $)) 45)) (-2837 (((-108) $) 67)) (-2238 (($ $) 68)) (-4198 (($ $) 97 (|has| $ (-6 -4249)))) (-3647 (((-710) $) NIL)) (-2801 (($ $) NIL)) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) 42)) (-3077 (((-499) $) NIL (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 51)) (-4019 (($ |#1| $) 95)) (-1622 (($ $ $) 98 (|has| $ (-6 -4249))) (($ $ |#1|) 99 (|has| $ (-6 -4249)))) (-2785 (($ $ $) 76) (($ |#1| $) 43) (($ (-589 $)) 81) (($ $ |#1|) 75)) (-3749 (($ $) 48)) (-3976 (($ (-589 |#1|)) 109) (((-794) $) 40 (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) NIL)) (-4004 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 112 (|has| |#1| (-1016)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-1068 |#1|) (-13 (-616 |#1|) (-10 -8 (-6 -4249) (-15 -3976 ($ (-589 |#1|))) (-15 -1389 ($ (-589 |#1|))) (IF (|has| |#1| (-1016)) (-15 -4069 ((-108) (-589 |#1|) $)) |%noBranch|) (-15 -2739 ((-2 (|:| |cycle?| (-108)) (|:| -2831 (-710)) (|:| |period| (-710))) (-710) $)) (-15 -1705 ($ (-1 $))) (-15 -4019 ($ |#1| $)) (IF (|has| |#1| (-1016)) (PROGN (-15 -3337 ((-1174) (-523) $)) (-15 -2240 ((-794) $)) (-15 -3489 ((-108)))) |%noBranch|) (-15 -3546 ($ $ (-523) $)) (-15 -1252 ($ (-1 |#1|))) (-15 -1252 ($ (-1 |#1| |#1|) |#1|)) (-15 -1284 ($ (-1 (-108) |#1|) $)) (-15 -1291 ($ (-1 (-108) |#1|) $)))) (-1123)) (T -1068))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-5 *1 (-1068 *3)))) (-1389 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-5 *1 (-1068 *3)))) (-4069 (*1 *2 *3 *1) (-12 (-5 *3 (-589 *4)) (-4 *4 (-1016)) (-4 *4 (-1123)) (-5 *2 (-108)) (-5 *1 (-1068 *4)))) (-2739 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-108)) (|:| -2831 (-710)) (|:| |period| (-710)))) (-5 *1 (-1068 *4)) (-4 *4 (-1123)) (-5 *3 (-710)))) (-1705 (*1 *1 *2) (-12 (-5 *2 (-1 (-1068 *3))) (-5 *1 (-1068 *3)) (-4 *3 (-1123)))) (-4019 (*1 *1 *2 *1) (-12 (-5 *1 (-1068 *2)) (-4 *2 (-1123)))) (-3337 (*1 *2 *3 *1) (-12 (-5 *3 (-523)) (-5 *2 (-1174)) (-5 *1 (-1068 *4)) (-4 *4 (-1016)) (-4 *4 (-1123)))) (-2240 (*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-1068 *3)) (-4 *3 (-1016)) (-4 *3 (-1123)))) (-3489 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1068 *3)) (-4 *3 (-1016)) (-4 *3 (-1123)))) (-3546 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-1068 *3)) (-4 *3 (-1123)))) (-1252 (*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1123)) (-5 *1 (-1068 *3)))) (-1252 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1123)) (-5 *1 (-1068 *3)))) (-1284 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1123)) (-5 *1 (-1068 *3)))) (-1291 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1123)) (-5 *1 (-1068 *3)))))
-(-13 (-616 |#1|) (-10 -8 (-6 -4249) (-15 -3976 ($ (-589 |#1|))) (-15 -1389 ($ (-589 |#1|))) (IF (|has| |#1| (-1016)) (-15 -4069 ((-108) (-589 |#1|) $)) |%noBranch|) (-15 -2739 ((-2 (|:| |cycle?| (-108)) (|:| -2831 (-710)) (|:| |period| (-710))) (-710) $)) (-15 -1705 ($ (-1 $))) (-15 -4019 ($ |#1| $)) (IF (|has| |#1| (-1016)) (PROGN (-15 -3337 ((-1174) (-523) $)) (-15 -2240 ((-794) $)) (-15 -3489 ((-108)))) |%noBranch|) (-15 -3546 ($ $ (-523) $)) (-15 -1252 ($ (-1 |#1|))) (-15 -1252 ($ (-1 |#1| |#1|) |#1|)) (-15 -1284 ($ (-1 (-108) |#1|) $)) (-15 -1291 ($ (-1 (-108) |#1|) $))))
-((-3260 (((-108) $ $) 19)) (-3440 (($ $) 120)) (-2889 (($ $) 121)) (-1865 (($ $ (-133)) 108) (($ $ (-130)) 107)) (-1666 (((-1174) $ (-523) (-523)) 40 (|has| $ (-6 -4249)))) (-3436 (((-108) $ $) 118)) (-3411 (((-108) $ $ (-523)) 117)) (-1984 (($ (-523)) 127)) (-1380 (((-589 $) $ (-133)) 110) (((-589 $) $ (-130)) 109)) (-4159 (((-108) (-1 (-108) (-133) (-133)) $) 98) (((-108) $) 92 (|has| (-133) (-786)))) (-2361 (($ (-1 (-108) (-133) (-133)) $) 89 (|has| $ (-6 -4249))) (($ $) 88 (-12 (|has| (-133) (-786)) (|has| $ (-6 -4249))))) (-3400 (($ (-1 (-108) (-133) (-133)) $) 99) (($ $) 93 (|has| (-133) (-786)))) (-2282 (((-108) $ (-710)) 8)) (-4101 (((-133) $ (-523) (-133)) 52 (|has| $ (-6 -4249))) (((-133) $ (-1136 (-523)) (-133)) 58 (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) (-133)) $) 75 (|has| $ (-6 -4248)))) (-1640 (($) 7 T CONST)) (-2589 (($ $ (-133)) 104) (($ $ (-130)) 103)) (-4091 (($ $) 90 (|has| $ (-6 -4249)))) (-4082 (($ $) 100)) (-2925 (($ $ (-1136 (-523)) $) 114)) (-3917 (($ $) 78 (-12 (|has| (-133) (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ (-133) $) 77 (-12 (|has| (-133) (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) (-133)) $) 74 (|has| $ (-6 -4248)))) (-1830 (((-133) (-1 (-133) (-133) (-133)) $ (-133) (-133)) 76 (-12 (|has| (-133) (-1016)) (|has| $ (-6 -4248)))) (((-133) (-1 (-133) (-133) (-133)) $ (-133)) 73 (|has| $ (-6 -4248))) (((-133) (-1 (-133) (-133) (-133)) $) 72 (|has| $ (-6 -4248)))) (-3073 (((-133) $ (-523) (-133)) 53 (|has| $ (-6 -4249)))) (-3002 (((-133) $ (-523)) 51)) (-3458 (((-108) $ $) 119)) (-1894 (((-523) (-1 (-108) (-133)) $) 97) (((-523) (-133) $) 96 (|has| (-133) (-1016))) (((-523) (-133) $ (-523)) 95 (|has| (-133) (-1016))) (((-523) $ $ (-523)) 113) (((-523) (-130) $ (-523)) 112)) (-3133 (((-589 (-133)) $) 30 (|has| $ (-6 -4248)))) (-2348 (($ (-710) (-133)) 69)) (-1344 (((-108) $ (-710)) 9)) (-1798 (((-523) $) 43 (|has| (-523) (-786)))) (-3268 (($ $ $) 87 (|has| (-133) (-786)))) (-3123 (($ (-1 (-108) (-133) (-133)) $ $) 101) (($ $ $) 94 (|has| (-133) (-786)))) (-3056 (((-589 (-133)) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) (-133) $) 27 (-12 (|has| (-133) (-1016)) (|has| $ (-6 -4248))))) (-2133 (((-523) $) 44 (|has| (-523) (-786)))) (-2644 (($ $ $) 86 (|has| (-133) (-786)))) (-1221 (((-108) $ $ (-133)) 115)) (-3312 (((-710) $ $ (-133)) 116)) (-3063 (($ (-1 (-133) (-133)) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-133) (-133)) $) 35) (($ (-1 (-133) (-133) (-133)) $ $) 64)) (-1593 (($ $) 122)) (-4017 (($ $) 123)) (-4042 (((-108) $ (-710)) 10)) (-2599 (($ $ (-133)) 106) (($ $ (-130)) 105)) (-3841 (((-1070) $) 22)) (-3334 (($ (-133) $ (-523)) 60) (($ $ $ (-523)) 59)) (-2909 (((-589 (-523)) $) 46)) (-2290 (((-108) (-523) $) 47)) (-2435 (((-1034) $) 21)) (-3879 (((-133) $) 42 (|has| (-523) (-786)))) (-2660 (((-3 (-133) "failed") (-1 (-108) (-133)) $) 71)) (-2408 (($ $ (-133)) 41 (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) (-133)) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-133)))) 26 (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016)))) (($ $ (-271 (-133))) 25 (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016)))) (($ $ (-133) (-133)) 24 (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016)))) (($ $ (-589 (-133)) (-589 (-133))) 23 (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016))))) (-2391 (((-108) $ $) 14)) (-1410 (((-108) (-133) $) 45 (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016))))) (-3184 (((-589 (-133)) $) 48)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 (((-133) $ (-523) (-133)) 50) (((-133) $ (-523)) 49) (($ $ (-1136 (-523))) 63) (($ $ $) 102)) (-3725 (($ $ (-523)) 62) (($ $ (-1136 (-523))) 61)) (-2452 (((-710) (-1 (-108) (-133)) $) 31 (|has| $ (-6 -4248))) (((-710) (-133) $) 28 (-12 (|has| (-133) (-1016)) (|has| $ (-6 -4248))))) (-2580 (($ $ $ (-523)) 91 (|has| $ (-6 -4249)))) (-4124 (($ $) 13)) (-3077 (((-499) $) 79 (|has| (-133) (-564 (-499))))) (-3985 (($ (-589 (-133))) 70)) (-2785 (($ $ (-133)) 68) (($ (-133) $) 67) (($ $ $) 66) (($ (-589 $)) 65)) (-3976 (($ (-133)) 111) (((-794) $) 18)) (-1505 (((-108) (-1 (-108) (-133)) $) 33 (|has| $ (-6 -4248)))) (-3342 (((-1070) $) 131) (((-1070) $ (-108)) 130) (((-1174) (-761) $) 129) (((-1174) (-761) $ (-108)) 128)) (-4078 (((-108) $ $) 84 (|has| (-133) (-786)))) (-4061 (((-108) $ $) 83 (|has| (-133) (-786)))) (-4037 (((-108) $ $) 20)) (-4070 (((-108) $ $) 85 (|has| (-133) (-786)))) (-4052 (((-108) $ $) 82 (|has| (-133) (-786)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-1069) (-129)) (T -1069))
-((-1984 (*1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-1069)))))
-(-13 (-1056) (-1016) (-767) (-10 -8 (-15 -1984 ($ (-523)))))
-(((-33) . T) ((-97) . T) ((-563 (-794)) . T) ((-140 #0=(-133)) . T) ((-564 (-499)) |has| (-133) (-564 (-499))) ((-263 #1=(-523) #0#) . T) ((-265 #1# #0#) . T) ((-286 #0#) -12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016))) ((-349 #0#) . T) ((-462 #0#) . T) ((-556 #1# #0#) . T) ((-484 #0# #0#) -12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016))) ((-594 #0#) . T) ((-19 #0#) . T) ((-767) . T) ((-786) |has| (-133) (-786)) ((-1016) . T) ((-1056) . T) ((-1123) . T))
-((-3260 (((-108) $ $) NIL)) (-3440 (($ $) NIL)) (-2889 (($ $) NIL)) (-1865 (($ $ (-133)) NIL) (($ $ (-130)) NIL)) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-3436 (((-108) $ $) NIL)) (-3411 (((-108) $ $ (-523)) NIL)) (-1984 (($ (-523)) 7)) (-1380 (((-589 $) $ (-133)) NIL) (((-589 $) $ (-130)) NIL)) (-4159 (((-108) (-1 (-108) (-133) (-133)) $) NIL) (((-108) $) NIL (|has| (-133) (-786)))) (-2361 (($ (-1 (-108) (-133) (-133)) $) NIL (|has| $ (-6 -4249))) (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| (-133) (-786))))) (-3400 (($ (-1 (-108) (-133) (-133)) $) NIL) (($ $) NIL (|has| (-133) (-786)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 (((-133) $ (-523) (-133)) NIL (|has| $ (-6 -4249))) (((-133) $ (-1136 (-523)) (-133)) NIL (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-2589 (($ $ (-133)) NIL) (($ $ (-130)) NIL)) (-4091 (($ $) NIL (|has| $ (-6 -4249)))) (-4082 (($ $) NIL)) (-2925 (($ $ (-1136 (-523)) $) NIL)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016))))) (-2231 (($ (-133) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016)))) (($ (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248)))) (-1830 (((-133) (-1 (-133) (-133) (-133)) $ (-133) (-133)) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016)))) (((-133) (-1 (-133) (-133) (-133)) $ (-133)) NIL (|has| $ (-6 -4248))) (((-133) (-1 (-133) (-133) (-133)) $) NIL (|has| $ (-6 -4248)))) (-3073 (((-133) $ (-523) (-133)) NIL (|has| $ (-6 -4249)))) (-3002 (((-133) $ (-523)) NIL)) (-3458 (((-108) $ $) NIL)) (-1894 (((-523) (-1 (-108) (-133)) $) NIL) (((-523) (-133) $) NIL (|has| (-133) (-1016))) (((-523) (-133) $ (-523)) NIL (|has| (-133) (-1016))) (((-523) $ $ (-523)) NIL) (((-523) (-130) $ (-523)) NIL)) (-3133 (((-589 (-133)) $) NIL (|has| $ (-6 -4248)))) (-2348 (($ (-710) (-133)) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) NIL (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (|has| (-133) (-786)))) (-3123 (($ (-1 (-108) (-133) (-133)) $ $) NIL) (($ $ $) NIL (|has| (-133) (-786)))) (-3056 (((-589 (-133)) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-133) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| (-133) (-786)))) (-1221 (((-108) $ $ (-133)) NIL)) (-3312 (((-710) $ $ (-133)) NIL)) (-3063 (($ (-1 (-133) (-133)) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-133) (-133)) $) NIL) (($ (-1 (-133) (-133) (-133)) $ $) NIL)) (-1593 (($ $) NIL)) (-4017 (($ $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-2599 (($ $ (-133)) NIL) (($ $ (-130)) NIL)) (-3841 (((-1070) $) NIL)) (-3334 (($ (-133) $ (-523)) NIL) (($ $ $ (-523)) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2435 (((-1034) $) NIL)) (-3879 (((-133) $) NIL (|has| (-523) (-786)))) (-2660 (((-3 (-133) "failed") (-1 (-108) (-133)) $) NIL)) (-2408 (($ $ (-133)) NIL (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-133)))) NIL (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016)))) (($ $ (-271 (-133))) NIL (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016)))) (($ $ (-133) (-133)) NIL (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016)))) (($ $ (-589 (-133)) (-589 (-133))) NIL (-12 (|has| (-133) (-286 (-133))) (|has| (-133) (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) (-133) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016))))) (-3184 (((-589 (-133)) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 (((-133) $ (-523) (-133)) NIL) (((-133) $ (-523)) NIL) (($ $ (-1136 (-523))) NIL) (($ $ $) NIL)) (-3725 (($ $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-2452 (((-710) (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248))) (((-710) (-133) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-133) (-1016))))) (-2580 (($ $ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| (-133) (-564 (-499))))) (-3985 (($ (-589 (-133))) NIL)) (-2785 (($ $ (-133)) NIL) (($ (-133) $) NIL) (($ $ $) NIL) (($ (-589 $)) NIL)) (-3976 (($ (-133)) NIL) (((-794) $) NIL)) (-1505 (((-108) (-1 (-108) (-133)) $) NIL (|has| $ (-6 -4248)))) (-3342 (((-1070) $) 18) (((-1070) $ (-108)) 20) (((-1174) (-761) $) 21) (((-1174) (-761) $ (-108)) 22)) (-4078 (((-108) $ $) NIL (|has| (-133) (-786)))) (-4061 (((-108) $ $) NIL (|has| (-133) (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| (-133) (-786)))) (-4052 (((-108) $ $) NIL (|has| (-133) (-786)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-1070) (-1069)) (T -1070))
-NIL
-(-1069)
-((-3260 (((-108) $ $) NIL (-3255 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)) (|has| |#1| (-1016))))) (-2340 (($) NIL) (($ (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) NIL)) (-1666 (((-1174) $ (-1070) (-1070)) NIL (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#1| $ (-1070) |#1|) NIL)) (-3627 (($ (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248)))) (-2521 (((-3 |#1| "failed") (-1070) $) NIL)) (-1640 (($) NIL T CONST)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016))))) (-1869 (($ (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $) NIL (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248))) (((-3 |#1| "failed") (-1070) $) NIL)) (-2231 (($ (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)))) (($ (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248)))) (-1830 (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $ (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)))) (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $ (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) NIL (|has| $ (-6 -4248))) (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#1| $ (-1070) |#1|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-1070)) NIL)) (-3133 (((-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248))) (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-1070) $) NIL (|has| (-1070) (-786)))) (-3056 (((-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248))) (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)))) (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2133 (((-1070) $) NIL (|has| (-1070) (-786)))) (-3063 (($ (-1 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4249))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (-3255 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)) (|has| |#1| (-1016))))) (-1612 (((-589 (-1070)) $) NIL)) (-2754 (((-108) (-1070) $) NIL)) (-2349 (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $) NIL)) (-3862 (($ (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $) NIL)) (-2909 (((-589 (-1070)) $) NIL)) (-2290 (((-108) (-1070) $) NIL)) (-2435 (((-1034) $) NIL (-3255 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)) (|has| |#1| (-1016))))) (-3879 ((|#1| $) NIL (|has| (-1070) (-786)))) (-2660 (((-3 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) "failed") (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL)) (-2408 (($ $ |#1|) NIL (|has| $ (-6 -4249)))) (-1322 (((-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $) NIL)) (-2720 (((-108) (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))))) NIL (-12 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)))) (($ $ (-271 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) NIL (-12 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)))) (($ $ (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) NIL (-12 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)))) (($ $ (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) NIL (-12 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-286 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#1| $ (-1070)) NIL) ((|#1| $ (-1070) |#1|) NIL)) (-1771 (($) NIL) (($ (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) NIL)) (-2452 (((-710) (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-564 (-499))))) (-3985 (($ (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) NIL)) (-3976 (((-794) $) NIL (-3255 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-563 (-794))) (|has| |#1| (-563 (-794)))))) (-1245 (($ (-589 (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)))) NIL)) (-1505 (((-108) (-1 (-108) (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (-3255 (|has| (-2 (|:| -2402 (-1070)) (|:| -2746 |#1|)) (-1016)) (|has| |#1| (-1016))))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-1071 |#1|) (-13 (-1100 (-1070) |#1|) (-10 -7 (-6 -4248))) (-1016)) (T -1071))
-NIL
-(-13 (-1100 (-1070) |#1|) (-10 -7 (-6 -4248)))
-((-3491 (((-1068 |#1|) (-1068 |#1|)) 77)) (-4211 (((-3 (-1068 |#1|) "failed") (-1068 |#1|)) 37)) (-3498 (((-1068 |#1|) (-383 (-523)) (-1068 |#1|)) 117 (|has| |#1| (-37 (-383 (-523)))))) (-1301 (((-1068 |#1|) |#1| (-1068 |#1|)) 122 (|has| |#1| (-339)))) (-3935 (((-1068 |#1|) (-1068 |#1|)) 90)) (-1859 (((-1068 (-523)) (-523)) 57)) (-3571 (((-1068 |#1|) (-1068 (-1068 |#1|))) 108 (|has| |#1| (-37 (-383 (-523)))))) (-1591 (((-1068 |#1|) (-523) (-523) (-1068 |#1|)) 95)) (-1511 (((-1068 |#1|) |#1| (-523)) 45)) (-3303 (((-1068 |#1|) (-1068 |#1|) (-1068 |#1|)) 60)) (-2696 (((-1068 |#1|) (-1068 |#1|) (-1068 |#1|)) 119 (|has| |#1| (-339)))) (-1399 (((-1068 |#1|) |#1| (-1 (-1068 |#1|))) 107 (|has| |#1| (-37 (-383 (-523)))))) (-2520 (((-1068 |#1|) (-1 |#1| (-523)) |#1| (-1 (-1068 |#1|))) 120 (|has| |#1| (-339)))) (-2223 (((-1068 |#1|) (-1068 |#1|)) 89)) (-1665 (((-1068 |#1|) (-1068 |#1|)) 76)) (-3617 (((-1068 |#1|) (-523) (-523) (-1068 |#1|)) 96)) (-2669 (((-1068 |#1|) |#1| (-1068 |#1|)) 105 (|has| |#1| (-37 (-383 (-523)))))) (-1609 (((-1068 (-523)) (-523)) 56)) (-4089 (((-1068 |#1|) |#1|) 59)) (-2329 (((-1068 |#1|) (-1068 |#1|) (-523) (-523)) 92)) (-3387 (((-1068 |#1|) (-1 |#1| (-523)) (-1068 |#1|)) 66)) (-2469 (((-3 (-1068 |#1|) "failed") (-1068 |#1|) (-1068 |#1|)) 35)) (-2299 (((-1068 |#1|) (-1068 |#1|)) 91)) (-1349 (((-1068 |#1|) (-1068 |#1|) |#1|) 71)) (-1576 (((-1068 |#1|) (-1068 |#1|)) 62)) (-3363 (((-1068 |#1|) (-1068 |#1|) (-1068 |#1|)) 72)) (-3976 (((-1068 |#1|) |#1|) 67)) (-2193 (((-1068 |#1|) (-1068 (-1068 |#1|))) 82)) (-4125 (((-1068 |#1|) (-1068 |#1|) (-1068 |#1|)) 36)) (-4115 (((-1068 |#1|) (-1068 |#1|)) 21) (((-1068 |#1|) (-1068 |#1|) (-1068 |#1|)) 23)) (-4103 (((-1068 |#1|) (-1068 |#1|) (-1068 |#1|)) 17)) (* (((-1068 |#1|) (-1068 |#1|) |#1|) 29) (((-1068 |#1|) |#1| (-1068 |#1|)) 26) (((-1068 |#1|) (-1068 |#1|) (-1068 |#1|)) 27)))
-(((-1072 |#1|) (-10 -7 (-15 -4103 ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -4115 ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -4115 ((-1068 |#1|) (-1068 |#1|))) (-15 * ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 * ((-1068 |#1|) |#1| (-1068 |#1|))) (-15 * ((-1068 |#1|) (-1068 |#1|) |#1|)) (-15 -2469 ((-3 (-1068 |#1|) "failed") (-1068 |#1|) (-1068 |#1|))) (-15 -4125 ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -4211 ((-3 (-1068 |#1|) "failed") (-1068 |#1|))) (-15 -1511 ((-1068 |#1|) |#1| (-523))) (-15 -1609 ((-1068 (-523)) (-523))) (-15 -1859 ((-1068 (-523)) (-523))) (-15 -4089 ((-1068 |#1|) |#1|)) (-15 -3303 ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -1576 ((-1068 |#1|) (-1068 |#1|))) (-15 -3387 ((-1068 |#1|) (-1 |#1| (-523)) (-1068 |#1|))) (-15 -3976 ((-1068 |#1|) |#1|)) (-15 -1349 ((-1068 |#1|) (-1068 |#1|) |#1|)) (-15 -3363 ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -1665 ((-1068 |#1|) (-1068 |#1|))) (-15 -3491 ((-1068 |#1|) (-1068 |#1|))) (-15 -2193 ((-1068 |#1|) (-1068 (-1068 |#1|)))) (-15 -2223 ((-1068 |#1|) (-1068 |#1|))) (-15 -3935 ((-1068 |#1|) (-1068 |#1|))) (-15 -2299 ((-1068 |#1|) (-1068 |#1|))) (-15 -2329 ((-1068 |#1|) (-1068 |#1|) (-523) (-523))) (-15 -1591 ((-1068 |#1|) (-523) (-523) (-1068 |#1|))) (-15 -3617 ((-1068 |#1|) (-523) (-523) (-1068 |#1|))) (IF (|has| |#1| (-37 (-383 (-523)))) (PROGN (-15 -2669 ((-1068 |#1|) |#1| (-1068 |#1|))) (-15 -1399 ((-1068 |#1|) |#1| (-1 (-1068 |#1|)))) (-15 -3571 ((-1068 |#1|) (-1068 (-1068 |#1|)))) (-15 -3498 ((-1068 |#1|) (-383 (-523)) (-1068 |#1|)))) |%noBranch|) (IF (|has| |#1| (-339)) (PROGN (-15 -2696 ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -2520 ((-1068 |#1|) (-1 |#1| (-523)) |#1| (-1 (-1068 |#1|)))) (-15 -1301 ((-1068 |#1|) |#1| (-1068 |#1|)))) |%noBranch|)) (-973)) (T -1072))
-((-1301 (*1 *2 *3 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-339)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-2520 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *4 (-523))) (-5 *5 (-1 (-1068 *4))) (-4 *4 (-339)) (-4 *4 (-973)) (-5 *2 (-1068 *4)) (-5 *1 (-1072 *4)))) (-2696 (*1 *2 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-339)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-3498 (*1 *2 *3 *2) (-12 (-5 *2 (-1068 *4)) (-4 *4 (-37 *3)) (-4 *4 (-973)) (-5 *3 (-383 (-523))) (-5 *1 (-1072 *4)))) (-3571 (*1 *2 *3) (-12 (-5 *3 (-1068 (-1068 *4))) (-5 *2 (-1068 *4)) (-5 *1 (-1072 *4)) (-4 *4 (-37 (-383 (-523)))) (-4 *4 (-973)))) (-1399 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-1068 *3))) (-5 *2 (-1068 *3)) (-5 *1 (-1072 *3)) (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)))) (-2669 (*1 *2 *3 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-3617 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1068 *4)) (-5 *3 (-523)) (-4 *4 (-973)) (-5 *1 (-1072 *4)))) (-1591 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1068 *4)) (-5 *3 (-523)) (-4 *4 (-973)) (-5 *1 (-1072 *4)))) (-2329 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1068 *4)) (-5 *3 (-523)) (-4 *4 (-973)) (-5 *1 (-1072 *4)))) (-2299 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-3935 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-2223 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-2193 (*1 *2 *3) (-12 (-5 *3 (-1068 (-1068 *4))) (-5 *2 (-1068 *4)) (-5 *1 (-1072 *4)) (-4 *4 (-973)))) (-3491 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-1665 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-3363 (*1 *2 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-1349 (*1 *2 *2 *3) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-3976 (*1 *2 *3) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-1072 *3)) (-4 *3 (-973)))) (-3387 (*1 *2 *3 *2) (-12 (-5 *2 (-1068 *4)) (-5 *3 (-1 *4 (-523))) (-4 *4 (-973)) (-5 *1 (-1072 *4)))) (-1576 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-3303 (*1 *2 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-4089 (*1 *2 *3) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-1072 *3)) (-4 *3 (-973)))) (-1859 (*1 *2 *3) (-12 (-5 *2 (-1068 (-523))) (-5 *1 (-1072 *4)) (-4 *4 (-973)) (-5 *3 (-523)))) (-1609 (*1 *2 *3) (-12 (-5 *2 (-1068 (-523))) (-5 *1 (-1072 *4)) (-4 *4 (-973)) (-5 *3 (-523)))) (-1511 (*1 *2 *3 *4) (-12 (-5 *4 (-523)) (-5 *2 (-1068 *3)) (-5 *1 (-1072 *3)) (-4 *3 (-973)))) (-4211 (*1 *2 *2) (|partial| -12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-4125 (*1 *2 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-2469 (*1 *2 *2 *2) (|partial| -12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (* (*1 *2 *2 *3) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-4115 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-4115 (*1 *2 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))) (-4103 (*1 *2 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))))
-(-10 -7 (-15 -4103 ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -4115 ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -4115 ((-1068 |#1|) (-1068 |#1|))) (-15 * ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 * ((-1068 |#1|) |#1| (-1068 |#1|))) (-15 * ((-1068 |#1|) (-1068 |#1|) |#1|)) (-15 -2469 ((-3 (-1068 |#1|) "failed") (-1068 |#1|) (-1068 |#1|))) (-15 -4125 ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -4211 ((-3 (-1068 |#1|) "failed") (-1068 |#1|))) (-15 -1511 ((-1068 |#1|) |#1| (-523))) (-15 -1609 ((-1068 (-523)) (-523))) (-15 -1859 ((-1068 (-523)) (-523))) (-15 -4089 ((-1068 |#1|) |#1|)) (-15 -3303 ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -1576 ((-1068 |#1|) (-1068 |#1|))) (-15 -3387 ((-1068 |#1|) (-1 |#1| (-523)) (-1068 |#1|))) (-15 -3976 ((-1068 |#1|) |#1|)) (-15 -1349 ((-1068 |#1|) (-1068 |#1|) |#1|)) (-15 -3363 ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -1665 ((-1068 |#1|) (-1068 |#1|))) (-15 -3491 ((-1068 |#1|) (-1068 |#1|))) (-15 -2193 ((-1068 |#1|) (-1068 (-1068 |#1|)))) (-15 -2223 ((-1068 |#1|) (-1068 |#1|))) (-15 -3935 ((-1068 |#1|) (-1068 |#1|))) (-15 -2299 ((-1068 |#1|) (-1068 |#1|))) (-15 -2329 ((-1068 |#1|) (-1068 |#1|) (-523) (-523))) (-15 -1591 ((-1068 |#1|) (-523) (-523) (-1068 |#1|))) (-15 -3617 ((-1068 |#1|) (-523) (-523) (-1068 |#1|))) (IF (|has| |#1| (-37 (-383 (-523)))) (PROGN (-15 -2669 ((-1068 |#1|) |#1| (-1068 |#1|))) (-15 -1399 ((-1068 |#1|) |#1| (-1 (-1068 |#1|)))) (-15 -3571 ((-1068 |#1|) (-1068 (-1068 |#1|)))) (-15 -3498 ((-1068 |#1|) (-383 (-523)) (-1068 |#1|)))) |%noBranch|) (IF (|has| |#1| (-339)) (PROGN (-15 -2696 ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -2520 ((-1068 |#1|) (-1 |#1| (-523)) |#1| (-1 (-1068 |#1|)))) (-15 -1301 ((-1068 |#1|) |#1| (-1068 |#1|)))) |%noBranch|))
-((-3695 (((-1068 |#1|) (-1068 |#1|)) 57)) (-2608 (((-1068 |#1|) (-1068 |#1|)) 39)) (-3669 (((-1068 |#1|) (-1068 |#1|)) 53)) (-2588 (((-1068 |#1|) (-1068 |#1|)) 35)) (-3717 (((-1068 |#1|) (-1068 |#1|)) 60)) (-2629 (((-1068 |#1|) (-1068 |#1|)) 42)) (-2062 (((-1068 |#1|) (-1068 |#1|)) 31)) (-1847 (((-1068 |#1|) (-1068 |#1|)) 27)) (-3730 (((-1068 |#1|) (-1068 |#1|)) 61)) (-2641 (((-1068 |#1|) (-1068 |#1|)) 43)) (-3707 (((-1068 |#1|) (-1068 |#1|)) 58)) (-2617 (((-1068 |#1|) (-1068 |#1|)) 40)) (-3683 (((-1068 |#1|) (-1068 |#1|)) 55)) (-2598 (((-1068 |#1|) (-1068 |#1|)) 37)) (-3768 (((-1068 |#1|) (-1068 |#1|)) 65)) (-2680 (((-1068 |#1|) (-1068 |#1|)) 47)) (-3743 (((-1068 |#1|) (-1068 |#1|)) 63)) (-2655 (((-1068 |#1|) (-1068 |#1|)) 45)) (-3793 (((-1068 |#1|) (-1068 |#1|)) 68)) (-3645 (((-1068 |#1|) (-1068 |#1|)) 50)) (-3135 (((-1068 |#1|) (-1068 |#1|)) 69)) (-3657 (((-1068 |#1|) (-1068 |#1|)) 51)) (-3780 (((-1068 |#1|) (-1068 |#1|)) 67)) (-3632 (((-1068 |#1|) (-1068 |#1|)) 49)) (-3756 (((-1068 |#1|) (-1068 |#1|)) 66)) (-2667 (((-1068 |#1|) (-1068 |#1|)) 48)) (** (((-1068 |#1|) (-1068 |#1|) (-1068 |#1|)) 33)))
-(((-1073 |#1|) (-10 -7 (-15 -1847 ((-1068 |#1|) (-1068 |#1|))) (-15 -2062 ((-1068 |#1|) (-1068 |#1|))) (-15 ** ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -2588 ((-1068 |#1|) (-1068 |#1|))) (-15 -2598 ((-1068 |#1|) (-1068 |#1|))) (-15 -2608 ((-1068 |#1|) (-1068 |#1|))) (-15 -2617 ((-1068 |#1|) (-1068 |#1|))) (-15 -2629 ((-1068 |#1|) (-1068 |#1|))) (-15 -2641 ((-1068 |#1|) (-1068 |#1|))) (-15 -2655 ((-1068 |#1|) (-1068 |#1|))) (-15 -2667 ((-1068 |#1|) (-1068 |#1|))) (-15 -2680 ((-1068 |#1|) (-1068 |#1|))) (-15 -3632 ((-1068 |#1|) (-1068 |#1|))) (-15 -3645 ((-1068 |#1|) (-1068 |#1|))) (-15 -3657 ((-1068 |#1|) (-1068 |#1|))) (-15 -3669 ((-1068 |#1|) (-1068 |#1|))) (-15 -3683 ((-1068 |#1|) (-1068 |#1|))) (-15 -3695 ((-1068 |#1|) (-1068 |#1|))) (-15 -3707 ((-1068 |#1|) (-1068 |#1|))) (-15 -3717 ((-1068 |#1|) (-1068 |#1|))) (-15 -3730 ((-1068 |#1|) (-1068 |#1|))) (-15 -3743 ((-1068 |#1|) (-1068 |#1|))) (-15 -3756 ((-1068 |#1|) (-1068 |#1|))) (-15 -3768 ((-1068 |#1|) (-1068 |#1|))) (-15 -3780 ((-1068 |#1|) (-1068 |#1|))) (-15 -3793 ((-1068 |#1|) (-1068 |#1|))) (-15 -3135 ((-1068 |#1|) (-1068 |#1|)))) (-37 (-383 (-523)))) (T -1073))
-((-3135 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-3793 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-3780 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-3768 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-3756 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-3743 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-3730 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-3717 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-3707 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-3695 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-3683 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-3669 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-3657 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-3645 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-3632 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-2680 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-2667 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-2655 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-2641 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-2629 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-2617 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-2608 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-2598 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-2588 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-2062 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))) (-1847 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1073 *3)))))
-(-10 -7 (-15 -1847 ((-1068 |#1|) (-1068 |#1|))) (-15 -2062 ((-1068 |#1|) (-1068 |#1|))) (-15 ** ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -2588 ((-1068 |#1|) (-1068 |#1|))) (-15 -2598 ((-1068 |#1|) (-1068 |#1|))) (-15 -2608 ((-1068 |#1|) (-1068 |#1|))) (-15 -2617 ((-1068 |#1|) (-1068 |#1|))) (-15 -2629 ((-1068 |#1|) (-1068 |#1|))) (-15 -2641 ((-1068 |#1|) (-1068 |#1|))) (-15 -2655 ((-1068 |#1|) (-1068 |#1|))) (-15 -2667 ((-1068 |#1|) (-1068 |#1|))) (-15 -2680 ((-1068 |#1|) (-1068 |#1|))) (-15 -3632 ((-1068 |#1|) (-1068 |#1|))) (-15 -3645 ((-1068 |#1|) (-1068 |#1|))) (-15 -3657 ((-1068 |#1|) (-1068 |#1|))) (-15 -3669 ((-1068 |#1|) (-1068 |#1|))) (-15 -3683 ((-1068 |#1|) (-1068 |#1|))) (-15 -3695 ((-1068 |#1|) (-1068 |#1|))) (-15 -3707 ((-1068 |#1|) (-1068 |#1|))) (-15 -3717 ((-1068 |#1|) (-1068 |#1|))) (-15 -3730 ((-1068 |#1|) (-1068 |#1|))) (-15 -3743 ((-1068 |#1|) (-1068 |#1|))) (-15 -3756 ((-1068 |#1|) (-1068 |#1|))) (-15 -3768 ((-1068 |#1|) (-1068 |#1|))) (-15 -3780 ((-1068 |#1|) (-1068 |#1|))) (-15 -3793 ((-1068 |#1|) (-1068 |#1|))) (-15 -3135 ((-1068 |#1|) (-1068 |#1|))))
-((-3695 (((-1068 |#1|) (-1068 |#1|)) 100)) (-2608 (((-1068 |#1|) (-1068 |#1|)) 64)) (-4108 (((-2 (|:| -3669 (-1068 |#1|)) (|:| -3683 (-1068 |#1|))) (-1068 |#1|)) 96)) (-3669 (((-1068 |#1|) (-1068 |#1|)) 97)) (-2135 (((-2 (|:| -2588 (-1068 |#1|)) (|:| -2598 (-1068 |#1|))) (-1068 |#1|)) 53)) (-2588 (((-1068 |#1|) (-1068 |#1|)) 54)) (-3717 (((-1068 |#1|) (-1068 |#1|)) 102)) (-2629 (((-1068 |#1|) (-1068 |#1|)) 71)) (-2062 (((-1068 |#1|) (-1068 |#1|)) 39)) (-1847 (((-1068 |#1|) (-1068 |#1|)) 36)) (-3730 (((-1068 |#1|) (-1068 |#1|)) 103)) (-2641 (((-1068 |#1|) (-1068 |#1|)) 72)) (-3707 (((-1068 |#1|) (-1068 |#1|)) 101)) (-2617 (((-1068 |#1|) (-1068 |#1|)) 67)) (-3683 (((-1068 |#1|) (-1068 |#1|)) 98)) (-2598 (((-1068 |#1|) (-1068 |#1|)) 55)) (-3768 (((-1068 |#1|) (-1068 |#1|)) 111)) (-2680 (((-1068 |#1|) (-1068 |#1|)) 86)) (-3743 (((-1068 |#1|) (-1068 |#1|)) 105)) (-2655 (((-1068 |#1|) (-1068 |#1|)) 82)) (-3793 (((-1068 |#1|) (-1068 |#1|)) 115)) (-3645 (((-1068 |#1|) (-1068 |#1|)) 90)) (-3135 (((-1068 |#1|) (-1068 |#1|)) 117)) (-3657 (((-1068 |#1|) (-1068 |#1|)) 92)) (-3780 (((-1068 |#1|) (-1068 |#1|)) 113)) (-3632 (((-1068 |#1|) (-1068 |#1|)) 88)) (-3756 (((-1068 |#1|) (-1068 |#1|)) 107)) (-2667 (((-1068 |#1|) (-1068 |#1|)) 84)) (** (((-1068 |#1|) (-1068 |#1|) (-1068 |#1|)) 40)))
-(((-1074 |#1|) (-10 -7 (-15 -1847 ((-1068 |#1|) (-1068 |#1|))) (-15 -2062 ((-1068 |#1|) (-1068 |#1|))) (-15 ** ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -2135 ((-2 (|:| -2588 (-1068 |#1|)) (|:| -2598 (-1068 |#1|))) (-1068 |#1|))) (-15 -2588 ((-1068 |#1|) (-1068 |#1|))) (-15 -2598 ((-1068 |#1|) (-1068 |#1|))) (-15 -2608 ((-1068 |#1|) (-1068 |#1|))) (-15 -2617 ((-1068 |#1|) (-1068 |#1|))) (-15 -2629 ((-1068 |#1|) (-1068 |#1|))) (-15 -2641 ((-1068 |#1|) (-1068 |#1|))) (-15 -2655 ((-1068 |#1|) (-1068 |#1|))) (-15 -2667 ((-1068 |#1|) (-1068 |#1|))) (-15 -2680 ((-1068 |#1|) (-1068 |#1|))) (-15 -3632 ((-1068 |#1|) (-1068 |#1|))) (-15 -3645 ((-1068 |#1|) (-1068 |#1|))) (-15 -3657 ((-1068 |#1|) (-1068 |#1|))) (-15 -4108 ((-2 (|:| -3669 (-1068 |#1|)) (|:| -3683 (-1068 |#1|))) (-1068 |#1|))) (-15 -3669 ((-1068 |#1|) (-1068 |#1|))) (-15 -3683 ((-1068 |#1|) (-1068 |#1|))) (-15 -3695 ((-1068 |#1|) (-1068 |#1|))) (-15 -3707 ((-1068 |#1|) (-1068 |#1|))) (-15 -3717 ((-1068 |#1|) (-1068 |#1|))) (-15 -3730 ((-1068 |#1|) (-1068 |#1|))) (-15 -3743 ((-1068 |#1|) (-1068 |#1|))) (-15 -3756 ((-1068 |#1|) (-1068 |#1|))) (-15 -3768 ((-1068 |#1|) (-1068 |#1|))) (-15 -3780 ((-1068 |#1|) (-1068 |#1|))) (-15 -3793 ((-1068 |#1|) (-1068 |#1|))) (-15 -3135 ((-1068 |#1|) (-1068 |#1|)))) (-37 (-383 (-523)))) (T -1074))
-((-3135 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-3793 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-3780 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-3768 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-3756 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-3743 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-3730 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-3717 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-3707 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-3695 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-3683 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-3669 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-4108 (*1 *2 *3) (-12 (-4 *4 (-37 (-383 (-523)))) (-5 *2 (-2 (|:| -3669 (-1068 *4)) (|:| -3683 (-1068 *4)))) (-5 *1 (-1074 *4)) (-5 *3 (-1068 *4)))) (-3657 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-3645 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-3632 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-2680 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-2667 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-2655 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-2641 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-2629 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-2617 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-2608 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-2598 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-2588 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-2135 (*1 *2 *3) (-12 (-4 *4 (-37 (-383 (-523)))) (-5 *2 (-2 (|:| -2588 (-1068 *4)) (|:| -2598 (-1068 *4)))) (-5 *1 (-1074 *4)) (-5 *3 (-1068 *4)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-2062 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))) (-1847 (*1 *2 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1074 *3)))))
-(-10 -7 (-15 -1847 ((-1068 |#1|) (-1068 |#1|))) (-15 -2062 ((-1068 |#1|) (-1068 |#1|))) (-15 ** ((-1068 |#1|) (-1068 |#1|) (-1068 |#1|))) (-15 -2135 ((-2 (|:| -2588 (-1068 |#1|)) (|:| -2598 (-1068 |#1|))) (-1068 |#1|))) (-15 -2588 ((-1068 |#1|) (-1068 |#1|))) (-15 -2598 ((-1068 |#1|) (-1068 |#1|))) (-15 -2608 ((-1068 |#1|) (-1068 |#1|))) (-15 -2617 ((-1068 |#1|) (-1068 |#1|))) (-15 -2629 ((-1068 |#1|) (-1068 |#1|))) (-15 -2641 ((-1068 |#1|) (-1068 |#1|))) (-15 -2655 ((-1068 |#1|) (-1068 |#1|))) (-15 -2667 ((-1068 |#1|) (-1068 |#1|))) (-15 -2680 ((-1068 |#1|) (-1068 |#1|))) (-15 -3632 ((-1068 |#1|) (-1068 |#1|))) (-15 -3645 ((-1068 |#1|) (-1068 |#1|))) (-15 -3657 ((-1068 |#1|) (-1068 |#1|))) (-15 -4108 ((-2 (|:| -3669 (-1068 |#1|)) (|:| -3683 (-1068 |#1|))) (-1068 |#1|))) (-15 -3669 ((-1068 |#1|) (-1068 |#1|))) (-15 -3683 ((-1068 |#1|) (-1068 |#1|))) (-15 -3695 ((-1068 |#1|) (-1068 |#1|))) (-15 -3707 ((-1068 |#1|) (-1068 |#1|))) (-15 -3717 ((-1068 |#1|) (-1068 |#1|))) (-15 -3730 ((-1068 |#1|) (-1068 |#1|))) (-15 -3743 ((-1068 |#1|) (-1068 |#1|))) (-15 -3756 ((-1068 |#1|) (-1068 |#1|))) (-15 -3768 ((-1068 |#1|) (-1068 |#1|))) (-15 -3780 ((-1068 |#1|) (-1068 |#1|))) (-15 -3793 ((-1068 |#1|) (-1068 |#1|))) (-15 -3135 ((-1068 |#1|) (-1068 |#1|))))
-((-3738 (((-888 |#2|) |#2| |#2|) 35)) (-2213 ((|#2| |#2| |#1|) 19 (|has| |#1| (-284)))))
-(((-1075 |#1| |#2|) (-10 -7 (-15 -3738 ((-888 |#2|) |#2| |#2|)) (IF (|has| |#1| (-284)) (-15 -2213 (|#2| |#2| |#1|)) |%noBranch|)) (-515) (-1145 |#1|)) (T -1075))
-((-2213 (*1 *2 *2 *3) (-12 (-4 *3 (-284)) (-4 *3 (-515)) (-5 *1 (-1075 *3 *2)) (-4 *2 (-1145 *3)))) (-3738 (*1 *2 *3 *3) (-12 (-4 *4 (-515)) (-5 *2 (-888 *3)) (-5 *1 (-1075 *4 *3)) (-4 *3 (-1145 *4)))))
-(-10 -7 (-15 -3738 ((-888 |#2|) |#2| |#2|)) (IF (|has| |#1| (-284)) (-15 -2213 (|#2| |#2| |#1|)) |%noBranch|))
-((-3260 (((-108) $ $) NIL)) (-2597 (($ $ (-589 (-710))) 67)) (-3213 (($) 26)) (-4145 (($ $) 42)) (-3340 (((-589 $) $) 51)) (-1986 (((-108) $) 16)) (-1525 (((-589 (-874 |#2|)) $) 74)) (-1411 (($ $) 68)) (-1426 (((-710) $) 37)) (-2348 (($) 25)) (-2914 (($ $ (-589 (-710)) (-874 |#2|)) 60) (($ $ (-589 (-710)) (-710)) 61) (($ $ (-710) (-874 |#2|)) 63)) (-3123 (($ $ $) 48) (($ (-589 $)) 50)) (-4217 (((-710) $) 75)) (-3391 (((-108) $) 15)) (-3841 (((-1070) $) NIL)) (-3018 (((-108) $) 18)) (-2435 (((-1034) $) NIL)) (-2497 (((-157) $) 73)) (-2903 (((-874 |#2|) $) 69)) (-1368 (((-710) $) 70)) (-2197 (((-108) $) 72)) (-2569 (($ $ (-589 (-710)) (-157)) 66)) (-2858 (($ $) 43)) (-3976 (((-794) $) 86)) (-3636 (($ $ (-589 (-710)) (-108)) 65)) (-2464 (((-589 $) $) 11)) (-1535 (($ $ (-710)) 36)) (-3304 (($ $) 32)) (-2156 (($ $ $ (-874 |#2|) (-710)) 56)) (-2899 (($ $ (-874 |#2|)) 55)) (-2295 (($ $ (-589 (-710)) (-874 |#2|)) 54) (($ $ (-589 (-710)) (-710)) 58) (((-710) $ (-874 |#2|)) 59)) (-4037 (((-108) $ $) 80)))
-(((-1076 |#1| |#2|) (-13 (-1016) (-10 -8 (-15 -3391 ((-108) $)) (-15 -1986 ((-108) $)) (-15 -3018 ((-108) $)) (-15 -2348 ($)) (-15 -3213 ($)) (-15 -3304 ($ $)) (-15 -1535 ($ $ (-710))) (-15 -2464 ((-589 $) $)) (-15 -1426 ((-710) $)) (-15 -4145 ($ $)) (-15 -2858 ($ $)) (-15 -3123 ($ $ $)) (-15 -3123 ($ (-589 $))) (-15 -3340 ((-589 $) $)) (-15 -2295 ($ $ (-589 (-710)) (-874 |#2|))) (-15 -2899 ($ $ (-874 |#2|))) (-15 -2156 ($ $ $ (-874 |#2|) (-710))) (-15 -2914 ($ $ (-589 (-710)) (-874 |#2|))) (-15 -2295 ($ $ (-589 (-710)) (-710))) (-15 -2914 ($ $ (-589 (-710)) (-710))) (-15 -2295 ((-710) $ (-874 |#2|))) (-15 -2914 ($ $ (-710) (-874 |#2|))) (-15 -3636 ($ $ (-589 (-710)) (-108))) (-15 -2569 ($ $ (-589 (-710)) (-157))) (-15 -2597 ($ $ (-589 (-710)))) (-15 -2903 ((-874 |#2|) $)) (-15 -1368 ((-710) $)) (-15 -2197 ((-108) $)) (-15 -2497 ((-157) $)) (-15 -4217 ((-710) $)) (-15 -1411 ($ $)) (-15 -1525 ((-589 (-874 |#2|)) $)))) (-852) (-973)) (T -1076))
-((-3391 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)) (-4 *4 (-973)))) (-1986 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)) (-4 *4 (-973)))) (-3018 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)) (-4 *4 (-973)))) (-2348 (*1 *1) (-12 (-5 *1 (-1076 *2 *3)) (-14 *2 (-852)) (-4 *3 (-973)))) (-3213 (*1 *1) (-12 (-5 *1 (-1076 *2 *3)) (-14 *2 (-852)) (-4 *3 (-973)))) (-3304 (*1 *1 *1) (-12 (-5 *1 (-1076 *2 *3)) (-14 *2 (-852)) (-4 *3 (-973)))) (-1535 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)) (-4 *4 (-973)))) (-2464 (*1 *2 *1) (-12 (-5 *2 (-589 (-1076 *3 *4))) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)) (-4 *4 (-973)))) (-1426 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)) (-4 *4 (-973)))) (-4145 (*1 *1 *1) (-12 (-5 *1 (-1076 *2 *3)) (-14 *2 (-852)) (-4 *3 (-973)))) (-2858 (*1 *1 *1) (-12 (-5 *1 (-1076 *2 *3)) (-14 *2 (-852)) (-4 *3 (-973)))) (-3123 (*1 *1 *1 *1) (-12 (-5 *1 (-1076 *2 *3)) (-14 *2 (-852)) (-4 *3 (-973)))) (-3123 (*1 *1 *2) (-12 (-5 *2 (-589 (-1076 *3 *4))) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)) (-4 *4 (-973)))) (-3340 (*1 *2 *1) (-12 (-5 *2 (-589 (-1076 *3 *4))) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)) (-4 *4 (-973)))) (-2295 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 (-710))) (-5 *3 (-874 *5)) (-4 *5 (-973)) (-5 *1 (-1076 *4 *5)) (-14 *4 (-852)))) (-2899 (*1 *1 *1 *2) (-12 (-5 *2 (-874 *4)) (-4 *4 (-973)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)))) (-2156 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-874 *5)) (-5 *3 (-710)) (-4 *5 (-973)) (-5 *1 (-1076 *4 *5)) (-14 *4 (-852)))) (-2914 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 (-710))) (-5 *3 (-874 *5)) (-4 *5 (-973)) (-5 *1 (-1076 *4 *5)) (-14 *4 (-852)))) (-2295 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 (-710))) (-5 *3 (-710)) (-5 *1 (-1076 *4 *5)) (-14 *4 (-852)) (-4 *5 (-973)))) (-2914 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 (-710))) (-5 *3 (-710)) (-5 *1 (-1076 *4 *5)) (-14 *4 (-852)) (-4 *5 (-973)))) (-2295 (*1 *2 *1 *3) (-12 (-5 *3 (-874 *5)) (-4 *5 (-973)) (-5 *2 (-710)) (-5 *1 (-1076 *4 *5)) (-14 *4 (-852)))) (-2914 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-710)) (-5 *3 (-874 *5)) (-4 *5 (-973)) (-5 *1 (-1076 *4 *5)) (-14 *4 (-852)))) (-3636 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 (-710))) (-5 *3 (-108)) (-5 *1 (-1076 *4 *5)) (-14 *4 (-852)) (-4 *5 (-973)))) (-2569 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-589 (-710))) (-5 *3 (-157)) (-5 *1 (-1076 *4 *5)) (-14 *4 (-852)) (-4 *5 (-973)))) (-2597 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-710))) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)) (-4 *4 (-973)))) (-2903 (*1 *2 *1) (-12 (-5 *2 (-874 *4)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)) (-4 *4 (-973)))) (-1368 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)) (-4 *4 (-973)))) (-2197 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)) (-4 *4 (-973)))) (-2497 (*1 *2 *1) (-12 (-5 *2 (-157)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)) (-4 *4 (-973)))) (-4217 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)) (-4 *4 (-973)))) (-1411 (*1 *1 *1) (-12 (-5 *1 (-1076 *2 *3)) (-14 *2 (-852)) (-4 *3 (-973)))) (-1525 (*1 *2 *1) (-12 (-5 *2 (-589 (-874 *4))) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852)) (-4 *4 (-973)))))
-(-13 (-1016) (-10 -8 (-15 -3391 ((-108) $)) (-15 -1986 ((-108) $)) (-15 -3018 ((-108) $)) (-15 -2348 ($)) (-15 -3213 ($)) (-15 -3304 ($ $)) (-15 -1535 ($ $ (-710))) (-15 -2464 ((-589 $) $)) (-15 -1426 ((-710) $)) (-15 -4145 ($ $)) (-15 -2858 ($ $)) (-15 -3123 ($ $ $)) (-15 -3123 ($ (-589 $))) (-15 -3340 ((-589 $) $)) (-15 -2295 ($ $ (-589 (-710)) (-874 |#2|))) (-15 -2899 ($ $ (-874 |#2|))) (-15 -2156 ($ $ $ (-874 |#2|) (-710))) (-15 -2914 ($ $ (-589 (-710)) (-874 |#2|))) (-15 -2295 ($ $ (-589 (-710)) (-710))) (-15 -2914 ($ $ (-589 (-710)) (-710))) (-15 -2295 ((-710) $ (-874 |#2|))) (-15 -2914 ($ $ (-710) (-874 |#2|))) (-15 -3636 ($ $ (-589 (-710)) (-108))) (-15 -2569 ($ $ (-589 (-710)) (-157))) (-15 -2597 ($ $ (-589 (-710)))) (-15 -2903 ((-874 |#2|) $)) (-15 -1368 ((-710) $)) (-15 -2197 ((-108) $)) (-15 -2497 ((-157) $)) (-15 -4217 ((-710) $)) (-15 -1411 ($ $)) (-15 -1525 ((-589 (-874 |#2|)) $))))
-((-3260 (((-108) $ $) NIL)) (-2248 ((|#2| $) 11)) (-2239 ((|#1| $) 10)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3985 (($ |#1| |#2|) 9)) (-3976 (((-794) $) 16)) (-4037 (((-108) $ $) NIL)))
-(((-1077 |#1| |#2|) (-13 (-1016) (-10 -8 (-15 -3985 ($ |#1| |#2|)) (-15 -2239 (|#1| $)) (-15 -2248 (|#2| $)))) (-1016) (-1016)) (T -1077))
-((-3985 (*1 *1 *2 *3) (-12 (-5 *1 (-1077 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))) (-2239 (*1 *2 *1) (-12 (-4 *2 (-1016)) (-5 *1 (-1077 *2 *3)) (-4 *3 (-1016)))) (-2248 (*1 *2 *1) (-12 (-4 *2 (-1016)) (-5 *1 (-1077 *3 *2)) (-4 *3 (-1016)))))
-(-13 (-1016) (-10 -8 (-15 -3985 ($ |#1| |#2|)) (-15 -2239 (|#1| $)) (-15 -2248 (|#2| $))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3964 (((-1085 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-284)) (|has| |#1| (-339))))) (-3716 (((-589 (-1001)) $) NIL)) (-2354 (((-1087) $) 11)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1085 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))) (|has| |#1| (-515))))) (-3950 (($ $) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1085 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))) (|has| |#1| (-515))))) (-3226 (((-108) $) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1085 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))) (|has| |#1| (-515))))) (-1756 (($ $ (-523)) NIL) (($ $ (-523) (-523)) 66)) (-2736 (((-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))) $) NIL)) (-2088 (((-1085 |#1| |#2| |#3|) $) 36)) (-4146 (((-3 (-1085 |#1| |#2| |#3|) "failed") $) 29)) (-3781 (((-1085 |#1| |#2| |#3|) $) 30)) (-3695 (($ $) 107 (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) 83 (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))))) (-3763 (($ $) NIL (|has| |#1| (-339)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3584 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))))) (-3684 (((-108) $ $) NIL (|has| |#1| (-339)))) (-3669 (($ $) 103 (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) 79 (|has| |#1| (-37 (-383 (-523)))))) (-2035 (((-523) $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))))) (-3223 (($ (-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|)))) NIL)) (-3717 (($ $) 111 (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) 87 (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-1085 |#1| |#2| |#3|) "failed") $) 31) (((-3 (-1087) "failed") $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-964 (-1087))) (|has| |#1| (-339)))) (((-3 (-383 (-523)) "failed") $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-964 (-523))) (|has| |#1| (-339)))) (((-3 (-523) "failed") $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-964 (-523))) (|has| |#1| (-339))))) (-1996 (((-1085 |#1| |#2| |#3|) $) 131) (((-1087) $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-964 (-1087))) (|has| |#1| (-339)))) (((-383 (-523)) $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-964 (-523))) (|has| |#1| (-339)))) (((-523) $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-964 (-523))) (|has| |#1| (-339))))) (-3113 (($ $) 34) (($ (-523) $) 35)) (-2501 (($ $ $) NIL (|has| |#1| (-339)))) (-3142 (($ $) NIL)) (-2203 (((-629 (-1085 |#1| |#2| |#3|)) (-629 $)) NIL (|has| |#1| (-339))) (((-2 (|:| -2373 (-629 (-1085 |#1| |#2| |#3|))) (|:| |vec| (-1169 (-1085 |#1| |#2| |#3|)))) (-629 $) (-1169 $)) NIL (|has| |#1| (-339))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-585 (-523))) (|has| |#1| (-339)))) (((-629 (-523)) (-629 $)) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-585 (-523))) (|has| |#1| (-339))))) (-4211 (((-3 $ "failed") $) 48)) (-2015 (((-383 (-883 |#1|)) $ (-523)) 65 (|has| |#1| (-515))) (((-383 (-883 |#1|)) $ (-523) (-523)) 67 (|has| |#1| (-515)))) (-3461 (($) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-508)) (|has| |#1| (-339))))) (-2486 (($ $ $) NIL (|has| |#1| (-339)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#1| (-339)))) (-1330 (((-108) $) NIL (|has| |#1| (-339)))) (-3702 (((-108) $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))))) (-2294 (((-108) $) 25)) (-2188 (($) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-817 (-523))) (|has| |#1| (-339)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-817 (-355))) (|has| |#1| (-339))))) (-1500 (((-523) $) NIL) (((-523) $ (-523)) 24)) (-3482 (((-108) $) NIL)) (-2364 (($ $) NIL (|has| |#1| (-339)))) (-2164 (((-1085 |#1| |#2| |#3|) $) 38 (|has| |#1| (-339)))) (-1324 (($ $ (-523)) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1289 (((-3 $ "failed") $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-1063)) (|has| |#1| (-339))))) (-4050 (((-108) $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))))) (-3059 (($ $ (-852)) NIL)) (-2950 (($ (-1 |#1| (-523)) $) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-523)) 18) (($ $ (-1001) (-523)) NIL) (($ $ (-589 (-1001)) (-589 (-523))) NIL)) (-3268 (($ $ $) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1085 |#1| |#2| |#3|) (-786)) (|has| |#1| (-339)))))) (-2644 (($ $ $) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1085 |#1| |#2| |#3|) (-786)) (|has| |#1| (-339)))))) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1085 |#1| |#2| |#3|) (-1085 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-339)))) (-2062 (($ $) 72 (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3794 (($ (-523) (-1085 |#1| |#2| |#3|)) 33)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL (|has| |#1| (-339)))) (-2669 (($ $) 70 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087)) NIL (-3255 (-12 (|has| |#1| (-15 -2669 (|#1| |#1| (-1087)))) (|has| |#1| (-15 -3716 ((-589 (-1087)) |#1|))) (|has| |#1| (-37 (-383 (-523))))) (-12 (|has| |#1| (-29 (-523))) (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-889)) (|has| |#1| (-1109))))) (($ $ (-1165 |#2|)) 71 (|has| |#1| (-37 (-383 (-523)))))) (-4105 (($) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-1063)) (|has| |#1| (-339))) CONST)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-339)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3934 (($ $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-284)) (|has| |#1| (-339))))) (-1250 (((-1085 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-508)) (|has| |#1| (-339))))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))))) (-3573 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-1361 (($ $ (-523)) 145)) (-2469 (((-3 $ "failed") $ $) 49 (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1085 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))) (|has| |#1| (-515))))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-1847 (($ $) 73 (|has| |#1| (-37 (-383 (-523)))))) (-1349 (((-1068 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-523))))) (($ $ (-1087) (-1085 |#1| |#2| |#3|)) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-484 (-1087) (-1085 |#1| |#2| |#3|))) (|has| |#1| (-339)))) (($ $ (-589 (-1087)) (-589 (-1085 |#1| |#2| |#3|))) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-484 (-1087) (-1085 |#1| |#2| |#3|))) (|has| |#1| (-339)))) (($ $ (-589 (-271 (-1085 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-286 (-1085 |#1| |#2| |#3|))) (|has| |#1| (-339)))) (($ $ (-271 (-1085 |#1| |#2| |#3|))) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-286 (-1085 |#1| |#2| |#3|))) (|has| |#1| (-339)))) (($ $ (-1085 |#1| |#2| |#3|) (-1085 |#1| |#2| |#3|)) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-286 (-1085 |#1| |#2| |#3|))) (|has| |#1| (-339)))) (($ $ (-589 (-1085 |#1| |#2| |#3|)) (-589 (-1085 |#1| |#2| |#3|))) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-286 (-1085 |#1| |#2| |#3|))) (|has| |#1| (-339))))) (-3087 (((-710) $) NIL (|has| |#1| (-339)))) (-1502 ((|#1| $ (-523)) NIL) (($ $ $) 54 (|has| (-523) (-1028))) (($ $ (-1085 |#1| |#2| |#3|)) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-263 (-1085 |#1| |#2| |#3|) (-1085 |#1| |#2| |#3|))) (|has| |#1| (-339))))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-4024 (($ $ (-1 (-1085 |#1| |#2| |#3|) (-1085 |#1| |#2| |#3|))) NIL (|has| |#1| (-339))) (($ $ (-1 (-1085 |#1| |#2| |#3|) (-1085 |#1| |#2| |#3|)) (-710)) NIL (|has| |#1| (-339))) (($ $ (-1165 |#2|)) 51) (($ $ (-710)) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $) 50 (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-1087) (-710)) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-589 (-1087))) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-1087)) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))))) (-3758 (($ $) NIL (|has| |#1| (-339)))) (-2171 (((-1085 |#1| |#2| |#3|) $) 41 (|has| |#1| (-339)))) (-1487 (((-523) $) 37)) (-3730 (($ $) 113 (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) 89 (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) 109 (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) 85 (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) 105 (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) 81 (|has| |#1| (-37 (-383 (-523)))))) (-3077 (((-499) $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-564 (-499))) (|has| |#1| (-339)))) (((-355) $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-949)) (|has| |#1| (-339)))) (((-203) $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-949)) (|has| |#1| (-339)))) (((-823 (-355)) $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-564 (-823 (-355)))) (|has| |#1| (-339)))) (((-823 (-523)) $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-564 (-823 (-523)))) (|has| |#1| (-339))))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| (-1085 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))))) (-3749 (($ $) NIL)) (-3976 (((-794) $) 149) (($ (-523)) NIL) (($ |#1|) NIL (|has| |#1| (-158))) (($ (-1085 |#1| |#2| |#3|)) 27) (($ (-1165 |#2|)) 23) (($ (-1087)) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-964 (-1087))) (|has| |#1| (-339)))) (($ $) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1085 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))) (|has| |#1| (-515)))) (($ (-383 (-523))) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-964 (-523))) (|has| |#1| (-339))) (|has| |#1| (-37 (-383 (-523))))))) (-1234 ((|#1| $ (-523)) 68)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| (-1085 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))) (-12 (|has| (-1085 |#1| |#2| |#3|) (-134)) (|has| |#1| (-339))) (|has| |#1| (-134))))) (-1698 (((-710)) NIL)) (-3882 ((|#1| $) 12)) (-1516 (((-1085 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-508)) (|has| |#1| (-339))))) (-3768 (($ $) 119 (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) 95 (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1085 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))) (|has| |#1| (-515))))) (-3743 (($ $) 115 (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) 91 (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) 123 (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) 99 (|has| |#1| (-37 (-383 (-523)))))) (-2523 ((|#1| $ (-523)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-523)))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-3135 (($ $) 125 (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) 101 (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) 121 (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) 97 (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) 117 (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) 93 (|has| |#1| (-37 (-383 (-523)))))) (-3984 (($ $) NIL (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339)))) (-1428 (($) 20 T CONST)) (-1440 (($) 16 T CONST)) (-1943 (($ $ (-1 (-1085 |#1| |#2| |#3|) (-1085 |#1| |#2| |#3|))) NIL (|has| |#1| (-339))) (($ $ (-1 (-1085 |#1| |#2| |#3|) (-1085 |#1| |#2| |#3|)) (-710)) NIL (|has| |#1| (-339))) (($ $ (-710)) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-1087) (-710)) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-589 (-1087))) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-1087)) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))))) (-4078 (((-108) $ $) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1085 |#1| |#2| |#3|) (-786)) (|has| |#1| (-339)))))) (-4061 (((-108) $ $) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1085 |#1| |#2| |#3|) (-786)) (|has| |#1| (-339)))))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1085 |#1| |#2| |#3|) (-786)) (|has| |#1| (-339)))))) (-4052 (((-108) $ $) NIL (-3255 (-12 (|has| (-1085 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1085 |#1| |#2| |#3|) (-786)) (|has| |#1| (-339)))))) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339))) (($ $ $) 44 (|has| |#1| (-339))) (($ (-1085 |#1| |#2| |#3|) (-1085 |#1| |#2| |#3|)) 45 (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) 21)) (** (($ $ (-852)) NIL) (($ $ (-710)) 53) (($ $ (-523)) NIL (|has| |#1| (-339))) (($ $ $) 74 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 128 (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 32) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1085 |#1| |#2| |#3|)) 43 (|has| |#1| (-339))) (($ (-1085 |#1| |#2| |#3|) $) 42 (|has| |#1| (-339))) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))))
-(((-1078 |#1| |#2| |#3|) (-13 (-1131 |#1| (-1085 |#1| |#2| |#3|)) (-10 -8 (-15 -3976 ($ (-1165 |#2|))) (-15 -4024 ($ $ (-1165 |#2|))) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1165 |#2|))) |%noBranch|))) (-973) (-1087) |#1|) (T -1078))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1078 *3 *4 *5)) (-4 *3 (-973)) (-14 *5 *3))) (-4024 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1078 *3 *4 *5)) (-4 *3 (-973)) (-14 *5 *3))) (-2669 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1078 *3 *4 *5)) (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-14 *5 *3))))
-(-13 (-1131 |#1| (-1085 |#1| |#2| |#3|)) (-10 -8 (-15 -3976 ($ (-1165 |#2|))) (-15 -4024 ($ $ (-1165 |#2|))) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1165 |#2|))) |%noBranch|)))
-((-3903 ((|#2| |#2| (-1009 |#2|)) 26) ((|#2| |#2| (-1087)) 28)))
-(((-1079 |#1| |#2|) (-10 -7 (-15 -3903 (|#2| |#2| (-1087))) (-15 -3903 (|#2| |#2| (-1009 |#2|)))) (-13 (-515) (-786) (-964 (-523)) (-585 (-523))) (-13 (-406 |#1|) (-147) (-27) (-1109))) (T -1079))
-((-3903 (*1 *2 *2 *3) (-12 (-5 *3 (-1009 *2)) (-4 *2 (-13 (-406 *4) (-147) (-27) (-1109))) (-4 *4 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-1079 *4 *2)))) (-3903 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-515) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-1079 *4 *2)) (-4 *2 (-13 (-406 *4) (-147) (-27) (-1109))))))
-(-10 -7 (-15 -3903 (|#2| |#2| (-1087))) (-15 -3903 (|#2| |#2| (-1009 |#2|))))
-((-3903 (((-3 (-383 (-883 |#1|)) (-292 |#1|)) (-383 (-883 |#1|)) (-1009 (-383 (-883 |#1|)))) 31) (((-383 (-883 |#1|)) (-883 |#1|) (-1009 (-883 |#1|))) 44) (((-3 (-383 (-883 |#1|)) (-292 |#1|)) (-383 (-883 |#1|)) (-1087)) 33) (((-383 (-883 |#1|)) (-883 |#1|) (-1087)) 36)))
-(((-1080 |#1|) (-10 -7 (-15 -3903 ((-383 (-883 |#1|)) (-883 |#1|) (-1087))) (-15 -3903 ((-3 (-383 (-883 |#1|)) (-292 |#1|)) (-383 (-883 |#1|)) (-1087))) (-15 -3903 ((-383 (-883 |#1|)) (-883 |#1|) (-1009 (-883 |#1|)))) (-15 -3903 ((-3 (-383 (-883 |#1|)) (-292 |#1|)) (-383 (-883 |#1|)) (-1009 (-383 (-883 |#1|)))))) (-13 (-515) (-786) (-964 (-523)))) (T -1080))
-((-3903 (*1 *2 *3 *4) (-12 (-5 *4 (-1009 (-383 (-883 *5)))) (-5 *3 (-383 (-883 *5))) (-4 *5 (-13 (-515) (-786) (-964 (-523)))) (-5 *2 (-3 *3 (-292 *5))) (-5 *1 (-1080 *5)))) (-3903 (*1 *2 *3 *4) (-12 (-5 *4 (-1009 (-883 *5))) (-5 *3 (-883 *5)) (-4 *5 (-13 (-515) (-786) (-964 (-523)))) (-5 *2 (-383 *3)) (-5 *1 (-1080 *5)))) (-3903 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-4 *5 (-13 (-515) (-786) (-964 (-523)))) (-5 *2 (-3 (-383 (-883 *5)) (-292 *5))) (-5 *1 (-1080 *5)) (-5 *3 (-383 (-883 *5))))) (-3903 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-4 *5 (-13 (-515) (-786) (-964 (-523)))) (-5 *2 (-383 (-883 *5))) (-5 *1 (-1080 *5)) (-5 *3 (-883 *5)))))
-(-10 -7 (-15 -3903 ((-383 (-883 |#1|)) (-883 |#1|) (-1087))) (-15 -3903 ((-3 (-383 (-883 |#1|)) (-292 |#1|)) (-383 (-883 |#1|)) (-1087))) (-15 -3903 ((-383 (-883 |#1|)) (-883 |#1|) (-1009 (-883 |#1|)))) (-15 -3903 ((-3 (-383 (-883 |#1|)) (-292 |#1|)) (-383 (-883 |#1|)) (-1009 (-383 (-883 |#1|))))))
-((-3015 (((-1083 |#2|) (-1 |#2| |#1|) (-1083 |#1|)) 13)))
-(((-1081 |#1| |#2|) (-10 -7 (-15 -3015 ((-1083 |#2|) (-1 |#2| |#1|) (-1083 |#1|)))) (-973) (-973)) (T -1081))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1083 *5)) (-4 *5 (-973)) (-4 *6 (-973)) (-5 *2 (-1083 *6)) (-5 *1 (-1081 *5 *6)))))
-(-10 -7 (-15 -3015 ((-1083 |#2|) (-1 |#2| |#1|) (-1083 |#1|))))
-((-2105 (((-394 (-1083 (-383 |#4|))) (-1083 (-383 |#4|))) 51)) (-3573 (((-394 (-1083 (-383 |#4|))) (-1083 (-383 |#4|))) 52)))
-(((-1082 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3573 ((-394 (-1083 (-383 |#4|))) (-1083 (-383 |#4|)))) (-15 -2105 ((-394 (-1083 (-383 |#4|))) (-1083 (-383 |#4|))))) (-732) (-786) (-427) (-880 |#3| |#1| |#2|)) (T -1082))
-((-2105 (*1 *2 *3) (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-427)) (-4 *7 (-880 *6 *4 *5)) (-5 *2 (-394 (-1083 (-383 *7)))) (-5 *1 (-1082 *4 *5 *6 *7)) (-5 *3 (-1083 (-383 *7))))) (-3573 (*1 *2 *3) (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-427)) (-4 *7 (-880 *6 *4 *5)) (-5 *2 (-394 (-1083 (-383 *7)))) (-5 *1 (-1082 *4 *5 *6 *7)) (-5 *3 (-1083 (-383 *7))))))
-(-10 -7 (-15 -3573 ((-394 (-1083 (-383 |#4|))) (-1083 (-383 |#4|)))) (-15 -2105 ((-394 (-1083 (-383 |#4|))) (-1083 (-383 |#4|)))))
-((-3260 (((-108) $ $) 139)) (-2388 (((-108) $) 30)) (-1288 (((-1169 |#1|) $ (-710)) NIL)) (-3716 (((-589 (-1001)) $) NIL)) (-2115 (($ (-1083 |#1|)) NIL)) (-3540 (((-1083 $) $ (-1001)) 60) (((-1083 |#1|) $) 49)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) 134 (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-2862 (((-710) $) NIL) (((-710) $ (-589 (-1001))) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3712 (($ $ $) 128 (|has| |#1| (-515)))) (-2319 (((-394 (-1083 $)) (-1083 $)) 73 (|has| |#1| (-840)))) (-3763 (($ $) NIL (|has| |#1| (-427)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) 93 (|has| |#1| (-840)))) (-3684 (((-108) $ $) NIL (|has| |#1| (-339)))) (-2891 (($ $ (-710)) 42)) (-1544 (($ $ (-710)) 43)) (-3340 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-427)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#1| "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-1001) "failed") $) NIL)) (-1996 ((|#1| $) NIL) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-1001) $) NIL)) (-2210 (($ $ $ (-1001)) NIL (|has| |#1| (-158))) ((|#1| $ $) 130 (|has| |#1| (-158)))) (-2501 (($ $ $) NIL (|has| |#1| (-339)))) (-3142 (($ $) 58)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) NIL) (((-629 |#1|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2486 (($ $ $) NIL (|has| |#1| (-339)))) (-1365 (($ $ $) 106)) (-3547 (($ $ $) NIL (|has| |#1| (-515)))) (-1579 (((-2 (|:| -2275 |#1|) (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-515)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#1| (-339)))) (-2213 (($ $) 135 (|has| |#1| (-427))) (($ $ (-1001)) NIL (|has| |#1| (-427)))) (-3127 (((-589 $) $) NIL)) (-1330 (((-108) $) NIL (|has| |#1| (-840)))) (-2067 (($ $ |#1| (-710) $) 47)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| (-1001) (-817 (-355))) (|has| |#1| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| (-1001) (-817 (-523))) (|has| |#1| (-817 (-523)))))) (-3204 (((-794) $ (-794)) 119)) (-1500 (((-710) $ $) NIL (|has| |#1| (-515)))) (-3482 (((-108) $) 32)) (-3288 (((-710) $) NIL)) (-1289 (((-3 $ "failed") $) NIL (|has| |#1| (-1063)))) (-3706 (($ (-1083 |#1|) (-1001)) 51) (($ (-1083 $) (-1001)) 67)) (-3059 (($ $ (-710)) 34)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-710)) 65) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ (-1001)) NIL) (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 123)) (-2140 (((-710) $) NIL) (((-710) $ (-1001)) NIL) (((-589 (-710)) $ (-589 (-1001))) NIL)) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3927 (($ (-1 (-710) (-710)) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-1489 (((-1083 |#1|) $) NIL)) (-1949 (((-3 (-1001) "failed") $) NIL)) (-3107 (($ $) NIL)) (-3119 ((|#1| $) 54)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) NIL (|has| |#1| (-427)))) (-3841 (((-1070) $) NIL)) (-3809 (((-2 (|:| -3429 $) (|:| -3143 $)) $ (-710)) 41)) (-3818 (((-3 (-589 $) "failed") $) NIL)) (-1973 (((-3 (-589 $) "failed") $) NIL)) (-3719 (((-3 (-2 (|:| |var| (-1001)) (|:| -3262 (-710))) "failed") $) NIL)) (-2669 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-4105 (($) NIL (|has| |#1| (-1063)) CONST)) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) 33)) (-3095 ((|#1| $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 81 (|has| |#1| (-427)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-427))) (($ $ $) 137 (|has| |#1| (-427)))) (-3664 (($ $ (-710) |#1| $) 101)) (-1893 (((-394 (-1083 $)) (-1083 $)) 79 (|has| |#1| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) 78 (|has| |#1| (-840)))) (-3573 (((-394 $) $) 86 (|has| |#1| (-840)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-2469 (((-3 $ "failed") $ |#1|) 133 (|has| |#1| (-515))) (((-3 $ "failed") $ $) 102 (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-1349 (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-1001) |#1|) NIL) (($ $ (-589 (-1001)) (-589 |#1|)) NIL) (($ $ (-1001) $) NIL) (($ $ (-589 (-1001)) (-589 $)) NIL)) (-3087 (((-710) $) NIL (|has| |#1| (-339)))) (-1502 ((|#1| $ |#1|) 121) (($ $ $) 122) (((-383 $) (-383 $) (-383 $)) NIL (|has| |#1| (-515))) ((|#1| (-383 $) |#1|) NIL (|has| |#1| (-339))) (((-383 $) $ (-383 $)) NIL (|has| |#1| (-515)))) (-1451 (((-3 $ "failed") $ (-710)) 37)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 140 (|has| |#1| (-339)))) (-4053 (($ $ (-1001)) NIL (|has| |#1| (-158))) ((|#1| $) 126 (|has| |#1| (-158)))) (-4024 (($ $ (-1001)) NIL) (($ $ (-589 (-1001))) NIL) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL) (($ $ (-710)) NIL) (($ $) NIL) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-1487 (((-710) $) 56) (((-710) $ (-1001)) NIL) (((-589 (-710)) $ (-589 (-1001))) NIL)) (-3077 (((-823 (-355)) $) NIL (-12 (|has| (-1001) (-564 (-823 (-355)))) (|has| |#1| (-564 (-823 (-355)))))) (((-823 (-523)) $) NIL (-12 (|has| (-1001) (-564 (-823 (-523)))) (|has| |#1| (-564 (-823 (-523)))))) (((-499) $) NIL (-12 (|has| (-1001) (-564 (-499))) (|has| |#1| (-564 (-499)))))) (-2267 ((|#1| $) 132 (|has| |#1| (-427))) (($ $ (-1001)) NIL (|has| |#1| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#1| (-840))))) (-2670 (((-3 $ "failed") $ $) NIL (|has| |#1| (-515))) (((-3 (-383 $) "failed") (-383 $) $) NIL (|has| |#1| (-515)))) (-3976 (((-794) $) 120) (($ (-523)) NIL) (($ |#1|) 55) (($ (-1001)) NIL) (($ (-383 (-523))) NIL (-3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-964 (-383 (-523)))))) (($ $) NIL (|has| |#1| (-515)))) (-1639 (((-589 |#1|) $) NIL)) (-1234 ((|#1| $ (-710)) NIL) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#1| (-840))) (|has| |#1| (-134))))) (-1698 (((-710)) NIL)) (-2656 (($ $ $ (-710)) 28 (|has| |#1| (-158)))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2573 (($ $ (-852)) 15) (($ $ (-710)) 16)) (-1428 (($) 17 T CONST)) (-1440 (($) 18 T CONST)) (-1943 (($ $ (-1001)) NIL) (($ $ (-589 (-1001))) NIL) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL) (($ $ (-710)) NIL) (($ $) NIL) (($ $ (-1087)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) 98)) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4125 (($ $ |#1|) 141 (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) 68)) (** (($ $ (-852)) 14) (($ $ (-710)) 12)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 27) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) 104) (($ $ |#1|) NIL)))
-(((-1083 |#1|) (-13 (-1145 |#1|) (-10 -8 (-15 -3204 ((-794) $ (-794))) (-15 -3664 ($ $ (-710) |#1| $)))) (-973)) (T -1083))
-((-3204 (*1 *2 *1 *2) (-12 (-5 *2 (-794)) (-5 *1 (-1083 *3)) (-4 *3 (-973)))) (-3664 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-710)) (-5 *1 (-1083 *3)) (-4 *3 (-973)))))
-(-13 (-1145 |#1|) (-10 -8 (-15 -3204 ((-794) $ (-794))) (-15 -3664 ($ $ (-710) |#1| $))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3716 (((-589 (-1001)) $) NIL)) (-2354 (((-1087) $) 11)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-1756 (($ $ (-383 (-523))) NIL) (($ $ (-383 (-523)) (-383 (-523))) NIL)) (-2736 (((-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#1|))) $) NIL)) (-3695 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL (|has| |#1| (-339)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3584 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3684 (((-108) $ $) NIL (|has| |#1| (-339)))) (-3669 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3223 (($ (-710) (-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#1|)))) NIL)) (-3717 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-1078 |#1| |#2| |#3|) "failed") $) 33) (((-3 (-1085 |#1| |#2| |#3|) "failed") $) 36)) (-1996 (((-1078 |#1| |#2| |#3|) $) NIL) (((-1085 |#1| |#2| |#3|) $) NIL)) (-2501 (($ $ $) NIL (|has| |#1| (-339)))) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3640 (((-383 (-523)) $) 55)) (-2486 (($ $ $) NIL (|has| |#1| (-339)))) (-3047 (($ (-383 (-523)) (-1078 |#1| |#2| |#3|)) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#1| (-339)))) (-1330 (((-108) $) NIL (|has| |#1| (-339)))) (-2294 (((-108) $) NIL)) (-2188 (($) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1500 (((-383 (-523)) $) NIL) (((-383 (-523)) $ (-383 (-523))) NIL)) (-3482 (((-108) $) NIL)) (-1324 (($ $ (-523)) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3059 (($ $ (-852)) NIL) (($ $ (-383 (-523))) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-383 (-523))) 20) (($ $ (-1001) (-383 (-523))) NIL) (($ $ (-589 (-1001)) (-589 (-383 (-523)))) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-2062 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3901 (((-1078 |#1| |#2| |#3|) $) 41)) (-1512 (((-3 (-1078 |#1| |#2| |#3|) "failed") $) NIL)) (-3794 (((-1078 |#1| |#2| |#3|) $) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL (|has| |#1| (-339)))) (-2669 (($ $) 39 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087)) NIL (-3255 (-12 (|has| |#1| (-15 -2669 (|#1| |#1| (-1087)))) (|has| |#1| (-15 -3716 ((-589 (-1087)) |#1|))) (|has| |#1| (-37 (-383 (-523))))) (-12 (|has| |#1| (-29 (-523))) (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-889)) (|has| |#1| (-1109))))) (($ $ (-1165 |#2|)) 40 (|has| |#1| (-37 (-383 (-523)))))) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-339)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3573 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-1361 (($ $ (-383 (-523))) NIL)) (-2469 (((-3 $ "failed") $ $) NIL (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-1847 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1349 (((-1068 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-383 (-523))))))) (-3087 (((-710) $) NIL (|has| |#1| (-339)))) (-1502 ((|#1| $ (-383 (-523))) NIL) (($ $ $) NIL (|has| (-383 (-523)) (-1028)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $ (-1165 |#2|)) 38)) (-1487 (((-383 (-523)) $) NIL)) (-3730 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3749 (($ $) NIL)) (-3976 (((-794) $) 58) (($ (-523)) NIL) (($ |#1|) NIL (|has| |#1| (-158))) (($ (-1078 |#1| |#2| |#3|)) 30) (($ (-1085 |#1| |#2| |#3|)) 31) (($ (-1165 |#2|)) 26) (($ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $) NIL (|has| |#1| (-515)))) (-1234 ((|#1| $ (-383 (-523))) NIL)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) NIL)) (-3882 ((|#1| $) 12)) (-3768 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3743 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2523 ((|#1| $ (-383 (-523))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-383 (-523))))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-3135 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339)))) (-1428 (($) 22 T CONST)) (-1440 (($) 16 T CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) 24)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))))
-(((-1084 |#1| |#2| |#3|) (-13 (-1152 |#1| (-1078 |#1| |#2| |#3|)) (-964 (-1085 |#1| |#2| |#3|)) (-10 -8 (-15 -3976 ($ (-1165 |#2|))) (-15 -4024 ($ $ (-1165 |#2|))) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1165 |#2|))) |%noBranch|))) (-973) (-1087) |#1|) (T -1084))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1084 *3 *4 *5)) (-4 *3 (-973)) (-14 *5 *3))) (-4024 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1084 *3 *4 *5)) (-4 *3 (-973)) (-14 *5 *3))) (-2669 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1084 *3 *4 *5)) (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-14 *5 *3))))
-(-13 (-1152 |#1| (-1078 |#1| |#2| |#3|)) (-964 (-1085 |#1| |#2| |#3|)) (-10 -8 (-15 -3976 ($ (-1165 |#2|))) (-15 -4024 ($ $ (-1165 |#2|))) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1165 |#2|))) |%noBranch|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 125)) (-3716 (((-589 (-1001)) $) NIL)) (-2354 (((-1087) $) 116)) (-1247 (((-1142 |#2| |#1|) $ (-710)) 63)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-1756 (($ $ (-710)) 79) (($ $ (-710) (-710)) 76)) (-2736 (((-1068 (-2 (|:| |k| (-710)) (|:| |c| |#1|))) $) 102)) (-3695 (($ $) 169 (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) 145 (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3669 (($ $) 165 (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) 141 (|has| |#1| (-37 (-383 (-523)))))) (-3223 (($ (-1068 (-2 (|:| |k| (-710)) (|:| |c| |#1|)))) 115) (($ (-1068 |#1|)) 110)) (-3717 (($ $) 173 (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) 149 (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) NIL T CONST)) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) 23)) (-1506 (($ $) 26)) (-3241 (((-883 |#1|) $ (-710)) 75) (((-883 |#1|) $ (-710) (-710)) 77)) (-2294 (((-108) $) 120)) (-2188 (($) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1500 (((-710) $) 122) (((-710) $ (-710)) 124)) (-3482 (((-108) $) NIL)) (-1324 (($ $ (-523)) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3059 (($ $ (-852)) NIL)) (-2950 (($ (-1 |#1| (-523)) $) NIL)) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-710)) 13) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-2062 (($ $) 131 (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2669 (($ $) 129 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087)) NIL (-3255 (-12 (|has| |#1| (-15 -2669 (|#1| |#1| (-1087)))) (|has| |#1| (-15 -3716 ((-589 (-1087)) |#1|))) (|has| |#1| (-37 (-383 (-523))))) (-12 (|has| |#1| (-29 (-523))) (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-889)) (|has| |#1| (-1109))))) (($ $ (-1165 |#2|)) 130 (|has| |#1| (-37 (-383 (-523)))))) (-2435 (((-1034) $) NIL)) (-1361 (($ $ (-710)) 15)) (-2469 (((-3 $ "failed") $ $) 24 (|has| |#1| (-515)))) (-1847 (($ $) 133 (|has| |#1| (-37 (-383 (-523)))))) (-1349 (((-1068 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-710)))))) (-1502 ((|#1| $ (-710)) 119) (($ $ $) 128 (|has| (-710) (-1028)))) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-710) |#1|)))) (($ $) 27 (|has| |#1| (-15 * (|#1| (-710) |#1|)))) (($ $ (-1165 |#2|)) 29)) (-1487 (((-710) $) NIL)) (-3730 (($ $) 175 (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) 151 (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) 171 (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) 147 (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) 167 (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) 143 (|has| |#1| (-37 (-383 (-523)))))) (-3749 (($ $) NIL)) (-3976 (((-794) $) 201) (($ (-523)) NIL) (($ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $) NIL (|has| |#1| (-515))) (($ |#1|) 126 (|has| |#1| (-158))) (($ (-1142 |#2| |#1|)) 51) (($ (-1165 |#2|)) 32)) (-1639 (((-1068 |#1|) $) 98)) (-1234 ((|#1| $ (-710)) 118)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) NIL)) (-3882 ((|#1| $) 54)) (-3768 (($ $) 181 (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) 157 (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3743 (($ $) 177 (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) 153 (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) 185 (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) 161 (|has| |#1| (-37 (-383 (-523)))))) (-2523 ((|#1| $ (-710)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-710)))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-3135 (($ $) 187 (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) 163 (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) 183 (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) 159 (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) 179 (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) 155 (|has| |#1| (-37 (-383 (-523)))))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 17 T CONST)) (-1440 (($) 19 T CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-710) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-710) |#1|))))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) 194)) (-4103 (($ $ $) 31)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ |#1|) 198 (|has| |#1| (-339))) (($ $ $) 134 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 137 (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 132) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))))
-(((-1085 |#1| |#2| |#3|) (-13 (-1160 |#1|) (-10 -8 (-15 -3976 ($ (-1142 |#2| |#1|))) (-15 -1247 ((-1142 |#2| |#1|) $ (-710))) (-15 -3976 ($ (-1165 |#2|))) (-15 -4024 ($ $ (-1165 |#2|))) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1165 |#2|))) |%noBranch|))) (-973) (-1087) |#1|) (T -1085))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1142 *4 *3)) (-4 *3 (-973)) (-14 *4 (-1087)) (-14 *5 *3) (-5 *1 (-1085 *3 *4 *5)))) (-1247 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1142 *5 *4)) (-5 *1 (-1085 *4 *5 *6)) (-4 *4 (-973)) (-14 *5 (-1087)) (-14 *6 *4))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1085 *3 *4 *5)) (-4 *3 (-973)) (-14 *5 *3))) (-4024 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1085 *3 *4 *5)) (-4 *3 (-973)) (-14 *5 *3))) (-2669 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1085 *3 *4 *5)) (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-14 *5 *3))))
-(-13 (-1160 |#1|) (-10 -8 (-15 -3976 ($ (-1142 |#2| |#1|))) (-15 -1247 ((-1142 |#2| |#1|) $ (-710))) (-15 -3976 ($ (-1165 |#2|))) (-15 -4024 ($ $ (-1165 |#2|))) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1165 |#2|))) |%noBranch|)))
-((-3976 (((-794) $) 27) (($ (-1087)) 29)) (-3255 (($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $))) 40)) (-3245 (($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $))) 33) (($ $) 34)) (-1714 (($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $))) 35)) (-1700 (($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $))) 37)) (-1686 (($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $))) 36)) (-1672 (($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $))) 38)) (-2533 (($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $))) 41)) (-12 (($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $))) 39)))
-(((-1086) (-13 (-563 (-794)) (-10 -8 (-15 -3976 ($ (-1087))) (-15 -1714 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -1686 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -1700 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -1672 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -3255 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -2533 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -3245 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -3245 ($ $))))) (T -1086))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-1086)))) (-1714 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086)))) (-5 *1 (-1086)))) (-1686 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086)))) (-5 *1 (-1086)))) (-1700 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086)))) (-5 *1 (-1086)))) (-1672 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086)))) (-5 *1 (-1086)))) (-3255 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086)))) (-5 *1 (-1086)))) (-2533 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086)))) (-5 *1 (-1086)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086)))) (-5 *1 (-1086)))) (-3245 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086)))) (-5 *1 (-1086)))) (-3245 (*1 *1 *1) (-5 *1 (-1086))))
-(-13 (-563 (-794)) (-10 -8 (-15 -3976 ($ (-1087))) (-15 -1714 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -1686 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -1700 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -1672 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -3255 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -2533 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)) (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -3245 ($ (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355))) (|:| CF (-292 (-155 (-355)))) (|:| |switch| $)))) (-15 -3245 ($ $))))
-((-3260 (((-108) $ $) NIL)) (-3688 (($ $ (-589 (-794))) 59)) (-2484 (($ $ (-589 (-794))) 57)) (-1984 (((-1070) $) 84)) (-3239 (((-2 (|:| -3753 (-589 (-794))) (|:| -1773 (-589 (-794))) (|:| |presup| (-589 (-794))) (|:| -2065 (-589 (-794))) (|:| |args| (-589 (-794)))) $) 87)) (-3963 (((-108) $) 22)) (-1912 (($ $ (-589 (-589 (-794)))) 56) (($ $ (-2 (|:| -3753 (-589 (-794))) (|:| -1773 (-589 (-794))) (|:| |presup| (-589 (-794))) (|:| -2065 (-589 (-794))) (|:| |args| (-589 (-794))))) 82)) (-1640 (($) 124 T CONST)) (-3471 (((-1174)) 106)) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 66) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 73)) (-2348 (($) 95) (($ $) 101)) (-1522 (($ $) 83)) (-3268 (($ $ $) NIL)) (-2644 (($ $ $) NIL)) (-3745 (((-589 $) $) 107)) (-3841 (((-1070) $) 90)) (-2435 (((-1034) $) NIL)) (-1502 (($ $ (-589 (-794))) 58)) (-3077 (((-499) $) 46) (((-1087) $) 47) (((-823 (-523)) $) 77) (((-823 (-355)) $) 75)) (-3976 (((-794) $) 53) (($ (-1070)) 48)) (-4224 (($ $ (-589 (-794))) 60)) (-3342 (((-1070) $) 33) (((-1070) $ (-108)) 34) (((-1174) (-761) $) 35) (((-1174) (-761) $ (-108)) 36)) (-4078 (((-108) $ $) NIL)) (-4061 (((-108) $ $) NIL)) (-4037 (((-108) $ $) 49)) (-4070 (((-108) $ $) NIL)) (-4052 (((-108) $ $) 50)))
-(((-1087) (-13 (-786) (-564 (-499)) (-767) (-564 (-1087)) (-564 (-823 (-523))) (-564 (-823 (-355))) (-817 (-523)) (-817 (-355)) (-10 -8 (-15 -2348 ($)) (-15 -2348 ($ $)) (-15 -3471 ((-1174))) (-15 -3976 ($ (-1070))) (-15 -1522 ($ $)) (-15 -3963 ((-108) $)) (-15 -3239 ((-2 (|:| -3753 (-589 (-794))) (|:| -1773 (-589 (-794))) (|:| |presup| (-589 (-794))) (|:| -2065 (-589 (-794))) (|:| |args| (-589 (-794)))) $)) (-15 -1912 ($ $ (-589 (-589 (-794))))) (-15 -1912 ($ $ (-2 (|:| -3753 (-589 (-794))) (|:| -1773 (-589 (-794))) (|:| |presup| (-589 (-794))) (|:| -2065 (-589 (-794))) (|:| |args| (-589 (-794)))))) (-15 -2484 ($ $ (-589 (-794)))) (-15 -3688 ($ $ (-589 (-794)))) (-15 -4224 ($ $ (-589 (-794)))) (-15 -1502 ($ $ (-589 (-794)))) (-15 -1984 ((-1070) $)) (-15 -3745 ((-589 $) $)) (-15 -1640 ($) -1982)))) (T -1087))
-((-2348 (*1 *1) (-5 *1 (-1087))) (-2348 (*1 *1 *1) (-5 *1 (-1087))) (-3471 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-1087)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1087)))) (-1522 (*1 *1 *1) (-5 *1 (-1087))) (-3963 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1087)))) (-3239 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -3753 (-589 (-794))) (|:| -1773 (-589 (-794))) (|:| |presup| (-589 (-794))) (|:| -2065 (-589 (-794))) (|:| |args| (-589 (-794))))) (-5 *1 (-1087)))) (-1912 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-589 (-794)))) (-5 *1 (-1087)))) (-1912 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -3753 (-589 (-794))) (|:| -1773 (-589 (-794))) (|:| |presup| (-589 (-794))) (|:| -2065 (-589 (-794))) (|:| |args| (-589 (-794))))) (-5 *1 (-1087)))) (-2484 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-1087)))) (-3688 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-1087)))) (-4224 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-1087)))) (-1502 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-1087)))) (-1984 (*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-1087)))) (-3745 (*1 *2 *1) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-1087)))) (-1640 (*1 *1) (-5 *1 (-1087))))
-(-13 (-786) (-564 (-499)) (-767) (-564 (-1087)) (-564 (-823 (-523))) (-564 (-823 (-355))) (-817 (-523)) (-817 (-355)) (-10 -8 (-15 -2348 ($)) (-15 -2348 ($ $)) (-15 -3471 ((-1174))) (-15 -3976 ($ (-1070))) (-15 -1522 ($ $)) (-15 -3963 ((-108) $)) (-15 -3239 ((-2 (|:| -3753 (-589 (-794))) (|:| -1773 (-589 (-794))) (|:| |presup| (-589 (-794))) (|:| -2065 (-589 (-794))) (|:| |args| (-589 (-794)))) $)) (-15 -1912 ($ $ (-589 (-589 (-794))))) (-15 -1912 ($ $ (-2 (|:| -3753 (-589 (-794))) (|:| -1773 (-589 (-794))) (|:| |presup| (-589 (-794))) (|:| -2065 (-589 (-794))) (|:| |args| (-589 (-794)))))) (-15 -2484 ($ $ (-589 (-794)))) (-15 -3688 ($ $ (-589 (-794)))) (-15 -4224 ($ $ (-589 (-794)))) (-15 -1502 ($ $ (-589 (-794)))) (-15 -1984 ((-1070) $)) (-15 -3745 ((-589 $) $)) (-15 -1640 ($) -1982)))
-((-2078 (((-1169 |#1|) |#1| (-852)) 16) (((-1169 |#1|) (-589 |#1|)) 20)))
-(((-1088 |#1|) (-10 -7 (-15 -2078 ((-1169 |#1|) (-589 |#1|))) (-15 -2078 ((-1169 |#1|) |#1| (-852)))) (-973)) (T -1088))
-((-2078 (*1 *2 *3 *4) (-12 (-5 *4 (-852)) (-5 *2 (-1169 *3)) (-5 *1 (-1088 *3)) (-4 *3 (-973)))) (-2078 (*1 *2 *3) (-12 (-5 *3 (-589 *4)) (-4 *4 (-973)) (-5 *2 (-1169 *4)) (-5 *1 (-1088 *4)))))
-(-10 -7 (-15 -2078 ((-1169 |#1|) (-589 |#1|))) (-15 -2078 ((-1169 |#1|) |#1| (-852))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL (|has| |#1| (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#1| (-964 (-383 (-523))))) (((-3 |#1| "failed") $) NIL)) (-1996 (((-523) $) NIL (|has| |#1| (-964 (-523)))) (((-383 (-523)) $) NIL (|has| |#1| (-964 (-383 (-523))))) ((|#1| $) NIL)) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2213 (($ $) NIL (|has| |#1| (-427)))) (-2067 (($ $ |#1| (-900) $) NIL)) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) NIL)) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-900)) NIL)) (-2140 (((-900) $) NIL)) (-3927 (($ (-1 (-900) (-900)) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) NIL)) (-3095 ((|#1| $) NIL)) (-3664 (($ $ (-900) |#1| $) NIL (-12 (|has| (-900) (-124)) (|has| |#1| (-515))))) (-2469 (((-3 $ "failed") $ $) NIL (|has| |#1| (-515))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-515)))) (-1487 (((-900) $) NIL)) (-2267 ((|#1| $) NIL (|has| |#1| (-427)))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ $) NIL (|has| |#1| (-515))) (($ |#1|) NIL) (($ (-383 (-523))) NIL (-3255 (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-964 (-383 (-523))))))) (-1639 (((-589 |#1|) $) NIL)) (-1234 ((|#1| $ (-900)) NIL)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) NIL)) (-2656 (($ $ $ (-710)) NIL (|has| |#1| (-158)))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 9 T CONST)) (-1440 (($) 14 T CONST)) (-4037 (((-108) $ $) 16)) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) 19)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) 13) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))))
-(((-1089 |#1|) (-13 (-302 |#1| (-900)) (-10 -8 (IF (|has| |#1| (-515)) (IF (|has| (-900) (-124)) (-15 -3664 ($ $ (-900) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4246)) (-6 -4246) |%noBranch|))) (-973)) (T -1089))
-((-3664 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-900)) (-4 *2 (-124)) (-5 *1 (-1089 *3)) (-4 *3 (-515)) (-4 *3 (-973)))))
-(-13 (-302 |#1| (-900)) (-10 -8 (IF (|has| |#1| (-515)) (IF (|has| (-900) (-124)) (-15 -3664 ($ $ (-900) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4246)) (-6 -4246) |%noBranch|)))
-((-2665 (((-1091) (-1087) $) 25)) (-3566 (($) 29)) (-2137 (((-3 (|:| |fst| (-410)) (|:| -3164 "void")) (-1087) $) 22)) (-3008 (((-1174) (-1087) (-3 (|:| |fst| (-410)) (|:| -3164 "void")) $) 41) (((-1174) (-1087) (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) 42) (((-1174) (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) 43)) (-2784 (((-1174) (-1087)) 58)) (-2185 (((-1174) (-1087) $) 55) (((-1174) (-1087)) 56) (((-1174)) 57)) (-3094 (((-1174) (-1087)) 37)) (-2141 (((-1087)) 36)) (-4055 (($) 34)) (-3829 (((-413) (-1087) (-413) (-1087) $) 45) (((-413) (-589 (-1087)) (-413) (-1087) $) 49) (((-413) (-1087) (-413)) 46) (((-413) (-1087) (-413) (-1087)) 50)) (-2628 (((-1087)) 35)) (-3976 (((-794) $) 28)) (-1663 (((-1174)) 30) (((-1174) (-1087)) 33)) (-3464 (((-589 (-1087)) (-1087) $) 24)) (-3051 (((-1174) (-1087) (-589 (-1087)) $) 38) (((-1174) (-1087) (-589 (-1087))) 39) (((-1174) (-589 (-1087))) 40)))
-(((-1090) (-13 (-563 (-794)) (-10 -8 (-15 -3566 ($)) (-15 -1663 ((-1174))) (-15 -1663 ((-1174) (-1087))) (-15 -3829 ((-413) (-1087) (-413) (-1087) $)) (-15 -3829 ((-413) (-589 (-1087)) (-413) (-1087) $)) (-15 -3829 ((-413) (-1087) (-413))) (-15 -3829 ((-413) (-1087) (-413) (-1087))) (-15 -3094 ((-1174) (-1087))) (-15 -2628 ((-1087))) (-15 -2141 ((-1087))) (-15 -3051 ((-1174) (-1087) (-589 (-1087)) $)) (-15 -3051 ((-1174) (-1087) (-589 (-1087)))) (-15 -3051 ((-1174) (-589 (-1087)))) (-15 -3008 ((-1174) (-1087) (-3 (|:| |fst| (-410)) (|:| -3164 "void")) $)) (-15 -3008 ((-1174) (-1087) (-3 (|:| |fst| (-410)) (|:| -3164 "void")))) (-15 -3008 ((-1174) (-3 (|:| |fst| (-410)) (|:| -3164 "void")))) (-15 -2185 ((-1174) (-1087) $)) (-15 -2185 ((-1174) (-1087))) (-15 -2185 ((-1174))) (-15 -2784 ((-1174) (-1087))) (-15 -4055 ($)) (-15 -2137 ((-3 (|:| |fst| (-410)) (|:| -3164 "void")) (-1087) $)) (-15 -3464 ((-589 (-1087)) (-1087) $)) (-15 -2665 ((-1091) (-1087) $))))) (T -1090))
-((-3566 (*1 *1) (-5 *1 (-1090))) (-1663 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-1090)))) (-1663 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1174)) (-5 *1 (-1090)))) (-3829 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-413)) (-5 *3 (-1087)) (-5 *1 (-1090)))) (-3829 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-413)) (-5 *3 (-589 (-1087))) (-5 *4 (-1087)) (-5 *1 (-1090)))) (-3829 (*1 *2 *3 *2) (-12 (-5 *2 (-413)) (-5 *3 (-1087)) (-5 *1 (-1090)))) (-3829 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-413)) (-5 *3 (-1087)) (-5 *1 (-1090)))) (-3094 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1174)) (-5 *1 (-1090)))) (-2628 (*1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-1090)))) (-2141 (*1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-1090)))) (-3051 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-589 (-1087))) (-5 *3 (-1087)) (-5 *2 (-1174)) (-5 *1 (-1090)))) (-3051 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-1087))) (-5 *3 (-1087)) (-5 *2 (-1174)) (-5 *1 (-1090)))) (-3051 (*1 *2 *3) (-12 (-5 *3 (-589 (-1087))) (-5 *2 (-1174)) (-5 *1 (-1090)))) (-3008 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1087)) (-5 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-5 *2 (-1174)) (-5 *1 (-1090)))) (-3008 (*1 *2 *3 *4) (-12 (-5 *3 (-1087)) (-5 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-5 *2 (-1174)) (-5 *1 (-1090)))) (-3008 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-5 *2 (-1174)) (-5 *1 (-1090)))) (-2185 (*1 *2 *3 *1) (-12 (-5 *3 (-1087)) (-5 *2 (-1174)) (-5 *1 (-1090)))) (-2185 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1174)) (-5 *1 (-1090)))) (-2185 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-1090)))) (-2784 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1174)) (-5 *1 (-1090)))) (-4055 (*1 *1) (-5 *1 (-1090))) (-2137 (*1 *2 *3 *1) (-12 (-5 *3 (-1087)) (-5 *2 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-5 *1 (-1090)))) (-3464 (*1 *2 *3 *1) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-1090)) (-5 *3 (-1087)))) (-2665 (*1 *2 *3 *1) (-12 (-5 *3 (-1087)) (-5 *2 (-1091)) (-5 *1 (-1090)))))
-(-13 (-563 (-794)) (-10 -8 (-15 -3566 ($)) (-15 -1663 ((-1174))) (-15 -1663 ((-1174) (-1087))) (-15 -3829 ((-413) (-1087) (-413) (-1087) $)) (-15 -3829 ((-413) (-589 (-1087)) (-413) (-1087) $)) (-15 -3829 ((-413) (-1087) (-413))) (-15 -3829 ((-413) (-1087) (-413) (-1087))) (-15 -3094 ((-1174) (-1087))) (-15 -2628 ((-1087))) (-15 -2141 ((-1087))) (-15 -3051 ((-1174) (-1087) (-589 (-1087)) $)) (-15 -3051 ((-1174) (-1087) (-589 (-1087)))) (-15 -3051 ((-1174) (-589 (-1087)))) (-15 -3008 ((-1174) (-1087) (-3 (|:| |fst| (-410)) (|:| -3164 "void")) $)) (-15 -3008 ((-1174) (-1087) (-3 (|:| |fst| (-410)) (|:| -3164 "void")))) (-15 -3008 ((-1174) (-3 (|:| |fst| (-410)) (|:| -3164 "void")))) (-15 -2185 ((-1174) (-1087) $)) (-15 -2185 ((-1174) (-1087))) (-15 -2185 ((-1174))) (-15 -2784 ((-1174) (-1087))) (-15 -4055 ($)) (-15 -2137 ((-3 (|:| |fst| (-410)) (|:| -3164 "void")) (-1087) $)) (-15 -3464 ((-589 (-1087)) (-1087) $)) (-15 -2665 ((-1091) (-1087) $))))
-((-3971 (((-589 (-589 (-3 (|:| -1522 (-1087)) (|:| |bounds| (-589 (-3 (|:| S (-1087)) (|:| P (-883 (-523))))))))) $) 59)) (-4128 (((-589 (-3 (|:| -1522 (-1087)) (|:| |bounds| (-589 (-3 (|:| S (-1087)) (|:| P (-883 (-523)))))))) (-410) $) 43)) (-1974 (($ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-413))))) 17)) (-2784 (((-1174) $) 67)) (-2053 (((-589 (-1087)) $) 22)) (-2051 (((-1020) $) 55)) (-1294 (((-413) (-1087) $) 27)) (-2317 (((-589 (-1087)) $) 30)) (-4055 (($) 19)) (-3829 (((-413) (-589 (-1087)) (-413) $) 25) (((-413) (-1087) (-413) $) 24)) (-3976 (((-794) $) 9) (((-1097 (-1087) (-413)) $) 13)))
-(((-1091) (-13 (-563 (-794)) (-10 -8 (-15 -3976 ((-1097 (-1087) (-413)) $)) (-15 -4055 ($)) (-15 -3829 ((-413) (-589 (-1087)) (-413) $)) (-15 -3829 ((-413) (-1087) (-413) $)) (-15 -1294 ((-413) (-1087) $)) (-15 -2053 ((-589 (-1087)) $)) (-15 -4128 ((-589 (-3 (|:| -1522 (-1087)) (|:| |bounds| (-589 (-3 (|:| S (-1087)) (|:| P (-883 (-523)))))))) (-410) $)) (-15 -2317 ((-589 (-1087)) $)) (-15 -3971 ((-589 (-589 (-3 (|:| -1522 (-1087)) (|:| |bounds| (-589 (-3 (|:| S (-1087)) (|:| P (-883 (-523))))))))) $)) (-15 -2051 ((-1020) $)) (-15 -2784 ((-1174) $)) (-15 -1974 ($ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-413))))))))) (T -1091))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-1097 (-1087) (-413))) (-5 *1 (-1091)))) (-4055 (*1 *1) (-5 *1 (-1091))) (-3829 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-413)) (-5 *3 (-589 (-1087))) (-5 *1 (-1091)))) (-3829 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-413)) (-5 *3 (-1087)) (-5 *1 (-1091)))) (-1294 (*1 *2 *3 *1) (-12 (-5 *3 (-1087)) (-5 *2 (-413)) (-5 *1 (-1091)))) (-2053 (*1 *2 *1) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-1091)))) (-4128 (*1 *2 *3 *1) (-12 (-5 *3 (-410)) (-5 *2 (-589 (-3 (|:| -1522 (-1087)) (|:| |bounds| (-589 (-3 (|:| S (-1087)) (|:| P (-883 (-523))))))))) (-5 *1 (-1091)))) (-2317 (*1 *2 *1) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-1091)))) (-3971 (*1 *2 *1) (-12 (-5 *2 (-589 (-589 (-3 (|:| -1522 (-1087)) (|:| |bounds| (-589 (-3 (|:| S (-1087)) (|:| P (-883 (-523)))))))))) (-5 *1 (-1091)))) (-2051 (*1 *2 *1) (-12 (-5 *2 (-1020)) (-5 *1 (-1091)))) (-2784 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-1091)))) (-1974 (*1 *1 *2) (-12 (-5 *2 (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-413))))) (-5 *1 (-1091)))))
-(-13 (-563 (-794)) (-10 -8 (-15 -3976 ((-1097 (-1087) (-413)) $)) (-15 -4055 ($)) (-15 -3829 ((-413) (-589 (-1087)) (-413) $)) (-15 -3829 ((-413) (-1087) (-413) $)) (-15 -1294 ((-413) (-1087) $)) (-15 -2053 ((-589 (-1087)) $)) (-15 -4128 ((-589 (-3 (|:| -1522 (-1087)) (|:| |bounds| (-589 (-3 (|:| S (-1087)) (|:| P (-883 (-523)))))))) (-410) $)) (-15 -2317 ((-589 (-1087)) $)) (-15 -3971 ((-589 (-589 (-3 (|:| -1522 (-1087)) (|:| |bounds| (-589 (-3 (|:| S (-1087)) (|:| P (-883 (-523))))))))) $)) (-15 -2051 ((-1020) $)) (-15 -2784 ((-1174) $)) (-15 -1974 ($ (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-413))))))))
-((-3260 (((-108) $ $) NIL)) (-1431 (((-108) $) 42)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-1376 (((-3 (-523) (-203) (-1087) (-1070) $) $) 50)) (-1637 (((-589 $) $) 55)) (-3077 (((-1020) $) 24) (($ (-1020)) 25)) (-2468 (((-108) $) 52)) (-3976 (((-794) $) NIL) (($ (-523)) 26) (((-523) $) 28) (($ (-203)) 29) (((-203) $) 31) (($ (-1087)) 32) (((-1087) $) 34) (($ (-1070)) 35) (((-1070) $) 37)) (-1415 (((-108) $ (|[\|\|]| (-523))) 11) (((-108) $ (|[\|\|]| (-203))) 15) (((-108) $ (|[\|\|]| (-1087))) 23) (((-108) $ (|[\|\|]| (-1070))) 19)) (-3593 (($ (-1087) (-589 $)) 39) (($ $ (-589 $)) 40)) (-4143 (((-523) $) 27) (((-203) $) 30) (((-1087) $) 33) (((-1070) $) 36)) (-4037 (((-108) $ $) 7)))
-(((-1092) (-13 (-1164) (-1016) (-10 -8 (-15 -3077 ((-1020) $)) (-15 -3077 ($ (-1020))) (-15 -3976 ($ (-523))) (-15 -3976 ((-523) $)) (-15 -4143 ((-523) $)) (-15 -3976 ($ (-203))) (-15 -3976 ((-203) $)) (-15 -4143 ((-203) $)) (-15 -3976 ($ (-1087))) (-15 -3976 ((-1087) $)) (-15 -4143 ((-1087) $)) (-15 -3976 ($ (-1070))) (-15 -3976 ((-1070) $)) (-15 -4143 ((-1070) $)) (-15 -3593 ($ (-1087) (-589 $))) (-15 -3593 ($ $ (-589 $))) (-15 -1431 ((-108) $)) (-15 -1376 ((-3 (-523) (-203) (-1087) (-1070) $) $)) (-15 -1637 ((-589 $) $)) (-15 -2468 ((-108) $)) (-15 -1415 ((-108) $ (|[\|\|]| (-523)))) (-15 -1415 ((-108) $ (|[\|\|]| (-203)))) (-15 -1415 ((-108) $ (|[\|\|]| (-1087)))) (-15 -1415 ((-108) $ (|[\|\|]| (-1070))))))) (T -1092))
-((-3077 (*1 *2 *1) (-12 (-5 *2 (-1020)) (-5 *1 (-1092)))) (-3077 (*1 *1 *2) (-12 (-5 *2 (-1020)) (-5 *1 (-1092)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-1092)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-1092)))) (-4143 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-1092)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-203)) (-5 *1 (-1092)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-203)) (-5 *1 (-1092)))) (-4143 (*1 *2 *1) (-12 (-5 *2 (-203)) (-5 *1 (-1092)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-1092)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-1092)))) (-4143 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-1092)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1092)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-1092)))) (-4143 (*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-1092)))) (-3593 (*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-1092))) (-5 *1 (-1092)))) (-3593 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-1092))) (-5 *1 (-1092)))) (-1431 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1092)))) (-1376 (*1 *2 *1) (-12 (-5 *2 (-3 (-523) (-203) (-1087) (-1070) (-1092))) (-5 *1 (-1092)))) (-1637 (*1 *2 *1) (-12 (-5 *2 (-589 (-1092))) (-5 *1 (-1092)))) (-2468 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1092)))) (-1415 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-523))) (-5 *2 (-108)) (-5 *1 (-1092)))) (-1415 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-203))) (-5 *2 (-108)) (-5 *1 (-1092)))) (-1415 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1087))) (-5 *2 (-108)) (-5 *1 (-1092)))) (-1415 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1070))) (-5 *2 (-108)) (-5 *1 (-1092)))))
-(-13 (-1164) (-1016) (-10 -8 (-15 -3077 ((-1020) $)) (-15 -3077 ($ (-1020))) (-15 -3976 ($ (-523))) (-15 -3976 ((-523) $)) (-15 -4143 ((-523) $)) (-15 -3976 ($ (-203))) (-15 -3976 ((-203) $)) (-15 -4143 ((-203) $)) (-15 -3976 ($ (-1087))) (-15 -3976 ((-1087) $)) (-15 -4143 ((-1087) $)) (-15 -3976 ($ (-1070))) (-15 -3976 ((-1070) $)) (-15 -4143 ((-1070) $)) (-15 -3593 ($ (-1087) (-589 $))) (-15 -3593 ($ $ (-589 $))) (-15 -1431 ((-108) $)) (-15 -1376 ((-3 (-523) (-203) (-1087) (-1070) $) $)) (-15 -1637 ((-589 $) $)) (-15 -2468 ((-108) $)) (-15 -1415 ((-108) $ (|[\|\|]| (-523)))) (-15 -1415 ((-108) $ (|[\|\|]| (-203)))) (-15 -1415 ((-108) $ (|[\|\|]| (-1087)))) (-15 -1415 ((-108) $ (|[\|\|]| (-1070))))))
-((-1616 (((-589 (-589 (-883 |#1|))) (-589 (-383 (-883 |#1|))) (-589 (-1087))) 57)) (-3911 (((-589 (-271 (-383 (-883 |#1|)))) (-271 (-383 (-883 |#1|)))) 69) (((-589 (-271 (-383 (-883 |#1|)))) (-383 (-883 |#1|))) 65) (((-589 (-271 (-383 (-883 |#1|)))) (-271 (-383 (-883 |#1|))) (-1087)) 70) (((-589 (-271 (-383 (-883 |#1|)))) (-383 (-883 |#1|)) (-1087)) 64) (((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-271 (-383 (-883 |#1|))))) 93) (((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-383 (-883 |#1|)))) 92) (((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-271 (-383 (-883 |#1|)))) (-589 (-1087))) 94) (((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-383 (-883 |#1|))) (-589 (-1087))) 91)))
-(((-1093 |#1|) (-10 -7 (-15 -3911 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-383 (-883 |#1|))) (-589 (-1087)))) (-15 -3911 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-271 (-383 (-883 |#1|)))) (-589 (-1087)))) (-15 -3911 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-383 (-883 |#1|))))) (-15 -3911 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-271 (-383 (-883 |#1|)))))) (-15 -3911 ((-589 (-271 (-383 (-883 |#1|)))) (-383 (-883 |#1|)) (-1087))) (-15 -3911 ((-589 (-271 (-383 (-883 |#1|)))) (-271 (-383 (-883 |#1|))) (-1087))) (-15 -3911 ((-589 (-271 (-383 (-883 |#1|)))) (-383 (-883 |#1|)))) (-15 -3911 ((-589 (-271 (-383 (-883 |#1|)))) (-271 (-383 (-883 |#1|))))) (-15 -1616 ((-589 (-589 (-883 |#1|))) (-589 (-383 (-883 |#1|))) (-589 (-1087))))) (-515)) (T -1093))
-((-1616 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-383 (-883 *5)))) (-5 *4 (-589 (-1087))) (-4 *5 (-515)) (-5 *2 (-589 (-589 (-883 *5)))) (-5 *1 (-1093 *5)))) (-3911 (*1 *2 *3) (-12 (-4 *4 (-515)) (-5 *2 (-589 (-271 (-383 (-883 *4))))) (-5 *1 (-1093 *4)) (-5 *3 (-271 (-383 (-883 *4)))))) (-3911 (*1 *2 *3) (-12 (-4 *4 (-515)) (-5 *2 (-589 (-271 (-383 (-883 *4))))) (-5 *1 (-1093 *4)) (-5 *3 (-383 (-883 *4))))) (-3911 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-4 *5 (-515)) (-5 *2 (-589 (-271 (-383 (-883 *5))))) (-5 *1 (-1093 *5)) (-5 *3 (-271 (-383 (-883 *5)))))) (-3911 (*1 *2 *3 *4) (-12 (-5 *4 (-1087)) (-4 *5 (-515)) (-5 *2 (-589 (-271 (-383 (-883 *5))))) (-5 *1 (-1093 *5)) (-5 *3 (-383 (-883 *5))))) (-3911 (*1 *2 *3) (-12 (-4 *4 (-515)) (-5 *2 (-589 (-589 (-271 (-383 (-883 *4)))))) (-5 *1 (-1093 *4)) (-5 *3 (-589 (-271 (-383 (-883 *4))))))) (-3911 (*1 *2 *3) (-12 (-5 *3 (-589 (-383 (-883 *4)))) (-4 *4 (-515)) (-5 *2 (-589 (-589 (-271 (-383 (-883 *4)))))) (-5 *1 (-1093 *4)))) (-3911 (*1 *2 *3 *4) (-12 (-5 *4 (-589 (-1087))) (-4 *5 (-515)) (-5 *2 (-589 (-589 (-271 (-383 (-883 *5)))))) (-5 *1 (-1093 *5)) (-5 *3 (-589 (-271 (-383 (-883 *5))))))) (-3911 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-383 (-883 *5)))) (-5 *4 (-589 (-1087))) (-4 *5 (-515)) (-5 *2 (-589 (-589 (-271 (-383 (-883 *5)))))) (-5 *1 (-1093 *5)))))
-(-10 -7 (-15 -3911 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-383 (-883 |#1|))) (-589 (-1087)))) (-15 -3911 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-271 (-383 (-883 |#1|)))) (-589 (-1087)))) (-15 -3911 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-383 (-883 |#1|))))) (-15 -3911 ((-589 (-589 (-271 (-383 (-883 |#1|))))) (-589 (-271 (-383 (-883 |#1|)))))) (-15 -3911 ((-589 (-271 (-383 (-883 |#1|)))) (-383 (-883 |#1|)) (-1087))) (-15 -3911 ((-589 (-271 (-383 (-883 |#1|)))) (-271 (-383 (-883 |#1|))) (-1087))) (-15 -3911 ((-589 (-271 (-383 (-883 |#1|)))) (-383 (-883 |#1|)))) (-15 -3911 ((-589 (-271 (-383 (-883 |#1|)))) (-271 (-383 (-883 |#1|))))) (-15 -1616 ((-589 (-589 (-883 |#1|))) (-589 (-383 (-883 |#1|))) (-589 (-1087)))))
-((-3517 (((-1070)) 7)) (-3646 (((-1070)) 9)) (-3679 (((-1174) (-1070)) 11)) (-3783 (((-1070)) 8)))
-(((-1094) (-10 -7 (-15 -3517 ((-1070))) (-15 -3783 ((-1070))) (-15 -3646 ((-1070))) (-15 -3679 ((-1174) (-1070))))) (T -1094))
-((-3679 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1094)))) (-3646 (*1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1094)))) (-3783 (*1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1094)))) (-3517 (*1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1094)))))
-(-10 -7 (-15 -3517 ((-1070))) (-15 -3783 ((-1070))) (-15 -3646 ((-1070))) (-15 -3679 ((-1174) (-1070))))
-((-3217 (((-589 (-589 |#1|)) (-589 (-589 |#1|)) (-589 (-589 (-589 |#1|)))) 38)) (-3567 (((-589 (-589 (-589 |#1|))) (-589 (-589 |#1|))) 24)) (-1634 (((-1096 (-589 |#1|)) (-589 |#1|)) 34)) (-3128 (((-589 (-589 |#1|)) (-589 |#1|)) 30)) (-2971 (((-2 (|:| |f1| (-589 |#1|)) (|:| |f2| (-589 (-589 (-589 |#1|)))) (|:| |f3| (-589 (-589 |#1|))) (|:| |f4| (-589 (-589 (-589 |#1|))))) (-589 (-589 (-589 |#1|)))) 37)) (-2875 (((-2 (|:| |f1| (-589 |#1|)) (|:| |f2| (-589 (-589 (-589 |#1|)))) (|:| |f3| (-589 (-589 |#1|))) (|:| |f4| (-589 (-589 (-589 |#1|))))) (-589 |#1|) (-589 (-589 (-589 |#1|))) (-589 (-589 |#1|)) (-589 (-589 (-589 |#1|))) (-589 (-589 (-589 |#1|))) (-589 (-589 (-589 |#1|)))) 36)) (-4006 (((-589 (-589 |#1|)) (-589 (-589 |#1|))) 28)) (-3714 (((-589 |#1|) (-589 |#1|)) 31)) (-3148 (((-589 (-589 (-589 |#1|))) (-589 |#1|) (-589 (-589 (-589 |#1|)))) 18)) (-3415 (((-589 (-589 (-589 |#1|))) (-1 (-108) |#1| |#1|) (-589 |#1|) (-589 (-589 (-589 |#1|)))) 16)) (-4010 (((-2 (|:| |fs| (-108)) (|:| |sd| (-589 |#1|)) (|:| |td| (-589 (-589 |#1|)))) (-1 (-108) |#1| |#1|) (-589 |#1|) (-589 (-589 |#1|))) 14)) (-3175 (((-589 (-589 |#1|)) (-589 (-589 (-589 |#1|)))) 39)) (-2611 (((-589 (-589 |#1|)) (-1096 (-589 |#1|))) 41)))
-(((-1095 |#1|) (-10 -7 (-15 -4010 ((-2 (|:| |fs| (-108)) (|:| |sd| (-589 |#1|)) (|:| |td| (-589 (-589 |#1|)))) (-1 (-108) |#1| |#1|) (-589 |#1|) (-589 (-589 |#1|)))) (-15 -3415 ((-589 (-589 (-589 |#1|))) (-1 (-108) |#1| |#1|) (-589 |#1|) (-589 (-589 (-589 |#1|))))) (-15 -3148 ((-589 (-589 (-589 |#1|))) (-589 |#1|) (-589 (-589 (-589 |#1|))))) (-15 -3217 ((-589 (-589 |#1|)) (-589 (-589 |#1|)) (-589 (-589 (-589 |#1|))))) (-15 -3175 ((-589 (-589 |#1|)) (-589 (-589 (-589 |#1|))))) (-15 -2611 ((-589 (-589 |#1|)) (-1096 (-589 |#1|)))) (-15 -3567 ((-589 (-589 (-589 |#1|))) (-589 (-589 |#1|)))) (-15 -1634 ((-1096 (-589 |#1|)) (-589 |#1|))) (-15 -4006 ((-589 (-589 |#1|)) (-589 (-589 |#1|)))) (-15 -3128 ((-589 (-589 |#1|)) (-589 |#1|))) (-15 -3714 ((-589 |#1|) (-589 |#1|))) (-15 -2875 ((-2 (|:| |f1| (-589 |#1|)) (|:| |f2| (-589 (-589 (-589 |#1|)))) (|:| |f3| (-589 (-589 |#1|))) (|:| |f4| (-589 (-589 (-589 |#1|))))) (-589 |#1|) (-589 (-589 (-589 |#1|))) (-589 (-589 |#1|)) (-589 (-589 (-589 |#1|))) (-589 (-589 (-589 |#1|))) (-589 (-589 (-589 |#1|))))) (-15 -2971 ((-2 (|:| |f1| (-589 |#1|)) (|:| |f2| (-589 (-589 (-589 |#1|)))) (|:| |f3| (-589 (-589 |#1|))) (|:| |f4| (-589 (-589 (-589 |#1|))))) (-589 (-589 (-589 |#1|)))))) (-786)) (T -1095))
-((-2971 (*1 *2 *3) (-12 (-4 *4 (-786)) (-5 *2 (-2 (|:| |f1| (-589 *4)) (|:| |f2| (-589 (-589 (-589 *4)))) (|:| |f3| (-589 (-589 *4))) (|:| |f4| (-589 (-589 (-589 *4)))))) (-5 *1 (-1095 *4)) (-5 *3 (-589 (-589 (-589 *4)))))) (-2875 (*1 *2 *3 *4 *5 *4 *4 *4) (-12 (-4 *6 (-786)) (-5 *3 (-589 *6)) (-5 *5 (-589 *3)) (-5 *2 (-2 (|:| |f1| *3) (|:| |f2| (-589 *5)) (|:| |f3| *5) (|:| |f4| (-589 *5)))) (-5 *1 (-1095 *6)) (-5 *4 (-589 *5)))) (-3714 (*1 *2 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-786)) (-5 *1 (-1095 *3)))) (-3128 (*1 *2 *3) (-12 (-4 *4 (-786)) (-5 *2 (-589 (-589 *4))) (-5 *1 (-1095 *4)) (-5 *3 (-589 *4)))) (-4006 (*1 *2 *2) (-12 (-5 *2 (-589 (-589 *3))) (-4 *3 (-786)) (-5 *1 (-1095 *3)))) (-1634 (*1 *2 *3) (-12 (-4 *4 (-786)) (-5 *2 (-1096 (-589 *4))) (-5 *1 (-1095 *4)) (-5 *3 (-589 *4)))) (-3567 (*1 *2 *3) (-12 (-4 *4 (-786)) (-5 *2 (-589 (-589 (-589 *4)))) (-5 *1 (-1095 *4)) (-5 *3 (-589 (-589 *4))))) (-2611 (*1 *2 *3) (-12 (-5 *3 (-1096 (-589 *4))) (-4 *4 (-786)) (-5 *2 (-589 (-589 *4))) (-5 *1 (-1095 *4)))) (-3175 (*1 *2 *3) (-12 (-5 *3 (-589 (-589 (-589 *4)))) (-5 *2 (-589 (-589 *4))) (-5 *1 (-1095 *4)) (-4 *4 (-786)))) (-3217 (*1 *2 *2 *3) (-12 (-5 *3 (-589 (-589 (-589 *4)))) (-5 *2 (-589 (-589 *4))) (-4 *4 (-786)) (-5 *1 (-1095 *4)))) (-3148 (*1 *2 *3 *2) (-12 (-5 *2 (-589 (-589 (-589 *4)))) (-5 *3 (-589 *4)) (-4 *4 (-786)) (-5 *1 (-1095 *4)))) (-3415 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-589 (-589 (-589 *5)))) (-5 *3 (-1 (-108) *5 *5)) (-5 *4 (-589 *5)) (-4 *5 (-786)) (-5 *1 (-1095 *5)))) (-4010 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-108) *6 *6)) (-4 *6 (-786)) (-5 *4 (-589 *6)) (-5 *2 (-2 (|:| |fs| (-108)) (|:| |sd| *4) (|:| |td| (-589 *4)))) (-5 *1 (-1095 *6)) (-5 *5 (-589 *4)))))
-(-10 -7 (-15 -4010 ((-2 (|:| |fs| (-108)) (|:| |sd| (-589 |#1|)) (|:| |td| (-589 (-589 |#1|)))) (-1 (-108) |#1| |#1|) (-589 |#1|) (-589 (-589 |#1|)))) (-15 -3415 ((-589 (-589 (-589 |#1|))) (-1 (-108) |#1| |#1|) (-589 |#1|) (-589 (-589 (-589 |#1|))))) (-15 -3148 ((-589 (-589 (-589 |#1|))) (-589 |#1|) (-589 (-589 (-589 |#1|))))) (-15 -3217 ((-589 (-589 |#1|)) (-589 (-589 |#1|)) (-589 (-589 (-589 |#1|))))) (-15 -3175 ((-589 (-589 |#1|)) (-589 (-589 (-589 |#1|))))) (-15 -2611 ((-589 (-589 |#1|)) (-1096 (-589 |#1|)))) (-15 -3567 ((-589 (-589 (-589 |#1|))) (-589 (-589 |#1|)))) (-15 -1634 ((-1096 (-589 |#1|)) (-589 |#1|))) (-15 -4006 ((-589 (-589 |#1|)) (-589 (-589 |#1|)))) (-15 -3128 ((-589 (-589 |#1|)) (-589 |#1|))) (-15 -3714 ((-589 |#1|) (-589 |#1|))) (-15 -2875 ((-2 (|:| |f1| (-589 |#1|)) (|:| |f2| (-589 (-589 (-589 |#1|)))) (|:| |f3| (-589 (-589 |#1|))) (|:| |f4| (-589 (-589 (-589 |#1|))))) (-589 |#1|) (-589 (-589 (-589 |#1|))) (-589 (-589 |#1|)) (-589 (-589 (-589 |#1|))) (-589 (-589 (-589 |#1|))) (-589 (-589 (-589 |#1|))))) (-15 -2971 ((-2 (|:| |f1| (-589 |#1|)) (|:| |f2| (-589 (-589 (-589 |#1|)))) (|:| |f3| (-589 (-589 |#1|))) (|:| |f4| (-589 (-589 (-589 |#1|))))) (-589 (-589 (-589 |#1|))))))
-((-2854 (($ (-589 (-589 |#1|))) 10)) (-3522 (((-589 (-589 |#1|)) $) 11)) (-3976 (((-794) $) 26)))
-(((-1096 |#1|) (-10 -8 (-15 -2854 ($ (-589 (-589 |#1|)))) (-15 -3522 ((-589 (-589 |#1|)) $)) (-15 -3976 ((-794) $))) (-1016)) (T -1096))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-1096 *3)) (-4 *3 (-1016)))) (-3522 (*1 *2 *1) (-12 (-5 *2 (-589 (-589 *3))) (-5 *1 (-1096 *3)) (-4 *3 (-1016)))) (-2854 (*1 *1 *2) (-12 (-5 *2 (-589 (-589 *3))) (-4 *3 (-1016)) (-5 *1 (-1096 *3)))))
-(-10 -8 (-15 -2854 ($ (-589 (-589 |#1|)))) (-15 -3522 ((-589 (-589 |#1|)) $)) (-15 -3976 ((-794) $)))
-((-3260 (((-108) $ $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-2340 (($) NIL) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-1666 (((-1174) $ |#1| |#1|) NIL (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#2| $ |#1| |#2|) NIL)) (-3627 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-2521 (((-3 |#2| "failed") |#1| $) NIL)) (-1640 (($) NIL T CONST)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-1869 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-3 |#2| "failed") |#1| $) NIL)) (-2231 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-1830 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (|has| $ (-6 -4248))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#2| $ |#1|) NIL)) (-3133 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) NIL)) (-1798 ((|#1| $) NIL (|has| |#1| (-786)))) (-3056 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-589 |#2|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-2133 ((|#1| $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4249))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-1612 (((-589 |#1|) $) NIL)) (-2754 (((-108) |#1| $) NIL)) (-2349 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-3862 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-2909 (((-589 |#1|) $) NIL)) (-2290 (((-108) |#1| $) NIL)) (-2435 (((-1034) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-3879 ((|#2| $) NIL (|has| |#1| (-786)))) (-2660 (((-3 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) "failed") (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL)) (-2408 (($ $ |#2|) NIL (|has| $ (-6 -4249)))) (-1322 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL)) (-2720 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 (-271 |#2|))) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-3184 (((-589 |#2|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-1771 (($) NIL) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-2452 (((-710) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) NIL (-12 (|has| $ (-6 -4248)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (((-710) |#2| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016)))) (((-710) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-564 (-499))))) (-3985 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-3976 (((-794) $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-563 (-794))) (|has| |#2| (-563 (-794)))))) (-1245 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) NIL)) (-1505 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) NIL (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) NIL (-3255 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| |#2| (-1016))))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-1097 |#1| |#2|) (-13 (-1100 |#1| |#2|) (-10 -7 (-6 -4248))) (-1016) (-1016)) (T -1097))
-NIL
-(-13 (-1100 |#1| |#2|) (-10 -7 (-6 -4248)))
-((-1416 ((|#1| (-589 |#1|)) 32)) (-2716 ((|#1| |#1| (-523)) 18)) (-2591 (((-1083 |#1|) |#1| (-852)) 15)))
-(((-1098 |#1|) (-10 -7 (-15 -1416 (|#1| (-589 |#1|))) (-15 -2591 ((-1083 |#1|) |#1| (-852))) (-15 -2716 (|#1| |#1| (-523)))) (-339)) (T -1098))
-((-2716 (*1 *2 *2 *3) (-12 (-5 *3 (-523)) (-5 *1 (-1098 *2)) (-4 *2 (-339)))) (-2591 (*1 *2 *3 *4) (-12 (-5 *4 (-852)) (-5 *2 (-1083 *3)) (-5 *1 (-1098 *3)) (-4 *3 (-339)))) (-1416 (*1 *2 *3) (-12 (-5 *3 (-589 *2)) (-5 *1 (-1098 *2)) (-4 *2 (-339)))))
-(-10 -7 (-15 -1416 (|#1| (-589 |#1|))) (-15 -2591 ((-1083 |#1|) |#1| (-852))) (-15 -2716 (|#1| |#1| (-523))))
-((-2340 (($) 10) (($ (-589 (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)))) 14)) (-1869 (($ (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) $) 61) (($ (-1 (-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-3133 (((-589 (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) $) 39) (((-589 |#3|) $) 41)) (-3063 (($ (-1 (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) $) 53) (($ (-1 |#3| |#3|) $) 33)) (-3015 (($ (-1 (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) $) 51) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-2349 (((-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) $) 54)) (-3862 (($ (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) $) 16)) (-2909 (((-589 |#2|) $) 19)) (-2290 (((-108) |#2| $) 59)) (-2660 (((-3 (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) "failed") (-1 (-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) $) 58)) (-1322 (((-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) $) 63)) (-2720 (((-108) (-1 (-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) $) NIL) (((-108) (-1 (-108) |#3|) $) 67)) (-3184 (((-589 |#3|) $) 43)) (-1502 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-2452 (((-710) (-1 (-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) $) NIL) (((-710) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) $) NIL) (((-710) |#3| $) NIL) (((-710) (-1 (-108) |#3|) $) 68)) (-3976 (((-794) $) 27)) (-1505 (((-108) (-1 (-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) $) NIL) (((-108) (-1 (-108) |#3|) $) 65)) (-4037 (((-108) $ $) 49)))
-(((-1099 |#1| |#2| |#3|) (-10 -8 (-15 -3976 ((-794) |#1|)) (-15 -4037 ((-108) |#1| |#1|)) (-15 -3015 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -2340 (|#1| (-589 (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))))) (-15 -2340 (|#1|)) (-15 -3015 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3063 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1505 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -2720 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -2452 ((-710) (-1 (-108) |#3|) |#1|)) (-15 -3133 ((-589 |#3|) |#1|)) (-15 -2452 ((-710) |#3| |#1|)) (-15 -1502 (|#3| |#1| |#2| |#3|)) (-15 -1502 (|#3| |#1| |#2|)) (-15 -3184 ((-589 |#3|) |#1|)) (-15 -2290 ((-108) |#2| |#1|)) (-15 -2909 ((-589 |#2|) |#1|)) (-15 -1869 ((-3 |#3| "failed") |#2| |#1|)) (-15 -1869 (|#1| (-1 (-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|)) (-15 -1869 (|#1| (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) |#1|)) (-15 -2660 ((-3 (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) "failed") (-1 (-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|)) (-15 -2349 ((-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) |#1|)) (-15 -3862 (|#1| (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) |#1|)) (-15 -1322 ((-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) |#1|)) (-15 -2452 ((-710) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) |#1|)) (-15 -3133 ((-589 (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|)) (-15 -2452 ((-710) (-1 (-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|)) (-15 -2720 ((-108) (-1 (-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|)) (-15 -1505 ((-108) (-1 (-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|)) (-15 -3063 (|#1| (-1 (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|)) (-15 -3015 (|#1| (-1 (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|))) (-1100 |#2| |#3|) (-1016) (-1016)) (T -1099))
-NIL
-(-10 -8 (-15 -3976 ((-794) |#1|)) (-15 -4037 ((-108) |#1| |#1|)) (-15 -3015 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -2340 (|#1| (-589 (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))))) (-15 -2340 (|#1|)) (-15 -3015 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3063 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1505 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -2720 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -2452 ((-710) (-1 (-108) |#3|) |#1|)) (-15 -3133 ((-589 |#3|) |#1|)) (-15 -2452 ((-710) |#3| |#1|)) (-15 -1502 (|#3| |#1| |#2| |#3|)) (-15 -1502 (|#3| |#1| |#2|)) (-15 -3184 ((-589 |#3|) |#1|)) (-15 -2290 ((-108) |#2| |#1|)) (-15 -2909 ((-589 |#2|) |#1|)) (-15 -1869 ((-3 |#3| "failed") |#2| |#1|)) (-15 -1869 (|#1| (-1 (-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|)) (-15 -1869 (|#1| (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) |#1|)) (-15 -2660 ((-3 (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) "failed") (-1 (-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|)) (-15 -2349 ((-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) |#1|)) (-15 -3862 (|#1| (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) |#1|)) (-15 -1322 ((-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) |#1|)) (-15 -2452 ((-710) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) |#1|)) (-15 -3133 ((-589 (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|)) (-15 -2452 ((-710) (-1 (-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|)) (-15 -2720 ((-108) (-1 (-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|)) (-15 -1505 ((-108) (-1 (-108) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|)) (-15 -3063 (|#1| (-1 (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|)) (-15 -3015 (|#1| (-1 (-2 (|:| -2402 |#2|) (|:| -2746 |#3|)) (-2 (|:| -2402 |#2|) (|:| -2746 |#3|))) |#1|)))
-((-3260 (((-108) $ $) 19 (-3255 (|has| |#2| (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-2340 (($) 72) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 71)) (-1666 (((-1174) $ |#1| |#1|) 99 (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) 8)) (-4101 ((|#2| $ |#1| |#2|) 73)) (-3627 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 45 (|has| $ (-6 -4248)))) (-1299 (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 55 (|has| $ (-6 -4248)))) (-2521 (((-3 |#2| "failed") |#1| $) 61)) (-1640 (($) 7 T CONST)) (-3917 (($ $) 58 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248))))) (-1869 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 47 (|has| $ (-6 -4248))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 46 (|has| $ (-6 -4248))) (((-3 |#2| "failed") |#1| $) 62)) (-2231 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 54 (|has| $ (-6 -4248)))) (-1830 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 56 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248)))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 53 (|has| $ (-6 -4248))) (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 52 (|has| $ (-6 -4248)))) (-3073 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4249)))) (-3002 ((|#2| $ |#1|) 88)) (-3133 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 30 (|has| $ (-6 -4248))) (((-589 |#2|) $) 79 (|has| $ (-6 -4248)))) (-1344 (((-108) $ (-710)) 9)) (-1798 ((|#1| $) 96 (|has| |#1| (-786)))) (-3056 (((-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 29 (|has| $ (-6 -4248))) (((-589 |#2|) $) 80 (|has| $ (-6 -4248)))) (-1348 (((-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248)))) (((-108) |#2| $) 82 (-12 (|has| |#2| (-1016)) (|has| $ (-6 -4248))))) (-2133 ((|#1| $) 95 (|has| |#1| (-786)))) (-3063 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 34 (|has| $ (-6 -4249))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4249)))) (-3015 (($ (-1 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70)) (-4042 (((-108) $ (-710)) 10)) (-3841 (((-1070) $) 22 (-3255 (|has| |#2| (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-1612 (((-589 |#1|) $) 63)) (-2754 (((-108) |#1| $) 64)) (-2349 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 39)) (-3862 (($ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 40)) (-2909 (((-589 |#1|) $) 93)) (-2290 (((-108) |#1| $) 92)) (-2435 (((-1034) $) 21 (-3255 (|has| |#2| (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-3879 ((|#2| $) 97 (|has| |#1| (-786)))) (-2660 (((-3 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) "failed") (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 51)) (-2408 (($ $ |#2|) 98 (|has| $ (-6 -4249)))) (-1322 (((-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 41)) (-2720 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 32 (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) 77 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))))) 26 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-271 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 25 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) 24 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 23 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)))) (($ $ (-589 |#2|) (-589 |#2|)) 86 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-271 |#2|)) 84 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016)))) (($ $ (-589 (-271 |#2|))) 83 (-12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))))) (-2391 (((-108) $ $) 14)) (-1410 (((-108) |#2| $) 94 (-12 (|has| $ (-6 -4248)) (|has| |#2| (-1016))))) (-3184 (((-589 |#2|) $) 91)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89)) (-1771 (($) 49) (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 48)) (-2452 (((-710) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 31 (|has| $ (-6 -4248))) (((-710) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| $ (-6 -4248)))) (((-710) |#2| $) 81 (-12 (|has| |#2| (-1016)) (|has| $ (-6 -4248)))) (((-710) (-1 (-108) |#2|) $) 78 (|has| $ (-6 -4248)))) (-4124 (($ $) 13)) (-3077 (((-499) $) 59 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-564 (-499))))) (-3985 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 50)) (-3976 (((-794) $) 18 (-3255 (|has| |#2| (-563 (-794))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-563 (-794)))))) (-1245 (($ (-589 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) 42)) (-1505 (((-108) (-1 (-108) (-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) $) 33 (|has| $ (-6 -4248))) (((-108) (-1 (-108) |#2|) $) 76 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (-3255 (|has| |#2| (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-1100 |#1| |#2|) (-129) (-1016) (-1016)) (T -1100))
-((-4101 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1100 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1016)))) (-2340 (*1 *1) (-12 (-4 *1 (-1100 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))) (-2340 (*1 *1 *2) (-12 (-5 *2 (-589 (-2 (|:| -2402 *3) (|:| -2746 *4)))) (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *1 (-1100 *3 *4)))) (-3015 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1100 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016)))))
-(-13 (-560 |t#1| |t#2|) (-556 |t#1| |t#2|) (-10 -8 (-15 -4101 (|t#2| $ |t#1| |t#2|)) (-15 -2340 ($)) (-15 -2340 ($ (-589 (-2 (|:| -2402 |t#1|) (|:| -2746 |t#2|))))) (-15 -3015 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
-(((-33) . T) ((-102 #0=(-2 (|:| -2402 |#1|) (|:| -2746 |#2|))) . T) ((-97) -3255 (|has| |#2| (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))) ((-563 (-794)) -3255 (|has| |#2| (-1016)) (|has| |#2| (-563 (-794))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-563 (-794)))) ((-140 #0#) . T) ((-564 (-499)) |has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-564 (-499))) ((-207 #0#) . T) ((-213 #0#) . T) ((-263 |#1| |#2|) . T) ((-265 |#1| |#2|) . T) ((-286 #0#) -12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))) ((-286 |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((-462 #0#) . T) ((-462 |#2|) . T) ((-556 |#1| |#2|) . T) ((-484 #0# #0#) -12 (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-286 (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)))) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))) ((-484 |#2| |#2|) -12 (|has| |#2| (-286 |#2|)) (|has| |#2| (-1016))) ((-560 |#1| |#2|) . T) ((-1016) -3255 (|has| |#2| (-1016)) (|has| (-2 (|:| -2402 |#1|) (|:| -2746 |#2|)) (-1016))) ((-1123) . T))
-((-3876 (((-108)) 24)) (-2792 (((-1174) (-1070)) 26)) (-1445 (((-108)) 36)) (-2852 (((-1174)) 34)) (-2038 (((-1174) (-1070) (-1070)) 25)) (-4209 (((-108)) 37)) (-3862 (((-1174) |#1| |#2|) 44)) (-4048 (((-1174)) 20)) (-3671 (((-3 |#2| "failed") |#1|) 42)) (-1908 (((-1174)) 35)))
-(((-1101 |#1| |#2|) (-10 -7 (-15 -4048 ((-1174))) (-15 -2038 ((-1174) (-1070) (-1070))) (-15 -2792 ((-1174) (-1070))) (-15 -2852 ((-1174))) (-15 -1908 ((-1174))) (-15 -3876 ((-108))) (-15 -1445 ((-108))) (-15 -4209 ((-108))) (-15 -3671 ((-3 |#2| "failed") |#1|)) (-15 -3862 ((-1174) |#1| |#2|))) (-1016) (-1016)) (T -1101))
-((-3862 (*1 *2 *3 *4) (-12 (-5 *2 (-1174)) (-5 *1 (-1101 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016)))) (-3671 (*1 *2 *3) (|partial| -12 (-4 *2 (-1016)) (-5 *1 (-1101 *3 *2)) (-4 *3 (-1016)))) (-4209 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1101 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016)))) (-1445 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1101 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016)))) (-3876 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1101 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016)))) (-1908 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-1101 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016)))) (-2852 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-1101 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016)))) (-2792 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1101 *4 *5)) (-4 *4 (-1016)) (-4 *5 (-1016)))) (-2038 (*1 *2 *3 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1101 *4 *5)) (-4 *4 (-1016)) (-4 *5 (-1016)))) (-4048 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-1101 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016)))))
-(-10 -7 (-15 -4048 ((-1174))) (-15 -2038 ((-1174) (-1070) (-1070))) (-15 -2792 ((-1174) (-1070))) (-15 -2852 ((-1174))) (-15 -1908 ((-1174))) (-15 -3876 ((-108))) (-15 -1445 ((-108))) (-15 -4209 ((-108))) (-15 -3671 ((-3 |#2| "failed") |#1|)) (-15 -3862 ((-1174) |#1| |#2|)))
-((-2414 (((-1070) (-1070)) 18)) (-1400 (((-51) (-1070)) 21)))
-(((-1102) (-10 -7 (-15 -1400 ((-51) (-1070))) (-15 -2414 ((-1070) (-1070))))) (T -1102))
-((-2414 (*1 *2 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1102)))) (-1400 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-51)) (-5 *1 (-1102)))))
-(-10 -7 (-15 -1400 ((-51) (-1070))) (-15 -2414 ((-1070) (-1070))))
-((-3976 (((-1104) |#1|) 11)))
-(((-1103 |#1|) (-10 -7 (-15 -3976 ((-1104) |#1|))) (-1016)) (T -1103))
-((-3976 (*1 *2 *3) (-12 (-5 *2 (-1104)) (-5 *1 (-1103 *3)) (-4 *3 (-1016)))))
-(-10 -7 (-15 -3976 ((-1104) |#1|)))
-((-3260 (((-108) $ $) NIL)) (-1954 (((-589 (-1070)) $) 34)) (-2604 (((-589 (-1070)) $ (-589 (-1070))) 37)) (-3520 (((-589 (-1070)) $ (-589 (-1070))) 36)) (-2442 (((-589 (-1070)) $ (-589 (-1070))) 38)) (-2120 (((-589 (-1070)) $) 33)) (-2348 (($) 22)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3967 (((-589 (-1070)) $) 35)) (-3942 (((-1174) $ (-523)) 29) (((-1174) $) 30)) (-3077 (($ (-794) (-523)) 26) (($ (-794) (-523) (-794)) NIL)) (-3976 (((-794) $) 40) (($ (-794)) 24)) (-4037 (((-108) $ $) NIL)))
-(((-1104) (-13 (-1016) (-10 -8 (-15 -3976 ($ (-794))) (-15 -3077 ($ (-794) (-523))) (-15 -3077 ($ (-794) (-523) (-794))) (-15 -3942 ((-1174) $ (-523))) (-15 -3942 ((-1174) $)) (-15 -3967 ((-589 (-1070)) $)) (-15 -1954 ((-589 (-1070)) $)) (-15 -2348 ($)) (-15 -2120 ((-589 (-1070)) $)) (-15 -2442 ((-589 (-1070)) $ (-589 (-1070)))) (-15 -2604 ((-589 (-1070)) $ (-589 (-1070)))) (-15 -3520 ((-589 (-1070)) $ (-589 (-1070))))))) (T -1104))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-794)) (-5 *1 (-1104)))) (-3077 (*1 *1 *2 *3) (-12 (-5 *2 (-794)) (-5 *3 (-523)) (-5 *1 (-1104)))) (-3077 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-794)) (-5 *3 (-523)) (-5 *1 (-1104)))) (-3942 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *2 (-1174)) (-5 *1 (-1104)))) (-3942 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-1104)))) (-3967 (*1 *2 *1) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1104)))) (-1954 (*1 *2 *1) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1104)))) (-2348 (*1 *1) (-5 *1 (-1104))) (-2120 (*1 *2 *1) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1104)))) (-2442 (*1 *2 *1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1104)))) (-2604 (*1 *2 *1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1104)))) (-3520 (*1 *2 *1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1104)))))
-(-13 (-1016) (-10 -8 (-15 -3976 ($ (-794))) (-15 -3077 ($ (-794) (-523))) (-15 -3077 ($ (-794) (-523) (-794))) (-15 -3942 ((-1174) $ (-523))) (-15 -3942 ((-1174) $)) (-15 -3967 ((-589 (-1070)) $)) (-15 -1954 ((-589 (-1070)) $)) (-15 -2348 ($)) (-15 -2120 ((-589 (-1070)) $)) (-15 -2442 ((-589 (-1070)) $ (-589 (-1070)))) (-15 -2604 ((-589 (-1070)) $ (-589 (-1070)))) (-15 -3520 ((-589 (-1070)) $ (-589 (-1070))))))
-((-3260 (((-108) $ $) NIL)) (-3075 (((-1070) $ (-1070)) 17) (((-1070) $) 16)) (-1929 (((-1070) $ (-1070)) 15)) (-1590 (($ $ (-1070)) NIL)) (-2671 (((-3 (-1070) "failed") $) 11)) (-3626 (((-1070) $) 8)) (-1302 (((-3 (-1070) "failed") $) 12)) (-2214 (((-1070) $) 9)) (-3439 (($ (-364)) NIL) (($ (-364) (-1070)) NIL)) (-1522 (((-364) $) NIL)) (-3841 (((-1070) $) NIL)) (-2965 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3352 (((-108) $) 18)) (-3976 (((-794) $) NIL)) (-1833 (($ $) NIL)) (-4037 (((-108) $ $) NIL)))
-(((-1105) (-13 (-340 (-364) (-1070)) (-10 -8 (-15 -3075 ((-1070) $ (-1070))) (-15 -3075 ((-1070) $)) (-15 -3626 ((-1070) $)) (-15 -2671 ((-3 (-1070) "failed") $)) (-15 -1302 ((-3 (-1070) "failed") $)) (-15 -3352 ((-108) $))))) (T -1105))
-((-3075 (*1 *2 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1105)))) (-3075 (*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-1105)))) (-3626 (*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-1105)))) (-2671 (*1 *2 *1) (|partial| -12 (-5 *2 (-1070)) (-5 *1 (-1105)))) (-1302 (*1 *2 *1) (|partial| -12 (-5 *2 (-1070)) (-5 *1 (-1105)))) (-3352 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1105)))))
-(-13 (-340 (-364) (-1070)) (-10 -8 (-15 -3075 ((-1070) $ (-1070))) (-15 -3075 ((-1070) $)) (-15 -3626 ((-1070) $)) (-15 -2671 ((-3 (-1070) "failed") $)) (-15 -1302 ((-3 (-1070) "failed") $)) (-15 -3352 ((-108) $))))
-((-2035 (((-3 (-523) "failed") |#1|) 19)) (-2229 (((-3 (-523) "failed") |#1|) 14)) (-2741 (((-523) (-1070)) 28)))
-(((-1106 |#1|) (-10 -7 (-15 -2035 ((-3 (-523) "failed") |#1|)) (-15 -2229 ((-3 (-523) "failed") |#1|)) (-15 -2741 ((-523) (-1070)))) (-973)) (T -1106))
-((-2741 (*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-523)) (-5 *1 (-1106 *4)) (-4 *4 (-973)))) (-2229 (*1 *2 *3) (|partial| -12 (-5 *2 (-523)) (-5 *1 (-1106 *3)) (-4 *3 (-973)))) (-2035 (*1 *2 *3) (|partial| -12 (-5 *2 (-523)) (-5 *1 (-1106 *3)) (-4 *3 (-973)))))
-(-10 -7 (-15 -2035 ((-3 (-523) "failed") |#1|)) (-15 -2229 ((-3 (-523) "failed") |#1|)) (-15 -2741 ((-523) (-1070))))
-((-1554 (((-1047 (-203))) 9)))
-(((-1107) (-10 -7 (-15 -1554 ((-1047 (-203)))))) (T -1107))
-((-1554 (*1 *2) (-12 (-5 *2 (-1047 (-203))) (-5 *1 (-1107)))))
-(-10 -7 (-15 -1554 ((-1047 (-203)))))
-((-2188 (($) 11)) (-3768 (($ $) 35)) (-3743 (($ $) 33)) (-2655 (($ $) 25)) (-3793 (($ $) 17)) (-3135 (($ $) 15)) (-3780 (($ $) 19)) (-3632 (($ $) 30)) (-3756 (($ $) 34)) (-2667 (($ $) 29)))
-(((-1108 |#1|) (-10 -8 (-15 -2188 (|#1|)) (-15 -3768 (|#1| |#1|)) (-15 -3743 (|#1| |#1|)) (-15 -3793 (|#1| |#1|)) (-15 -3135 (|#1| |#1|)) (-15 -3780 (|#1| |#1|)) (-15 -3756 (|#1| |#1|)) (-15 -2655 (|#1| |#1|)) (-15 -3632 (|#1| |#1|)) (-15 -2667 (|#1| |#1|))) (-1109)) (T -1108))
-NIL
-(-10 -8 (-15 -2188 (|#1|)) (-15 -3768 (|#1| |#1|)) (-15 -3743 (|#1| |#1|)) (-15 -3793 (|#1| |#1|)) (-15 -3135 (|#1| |#1|)) (-15 -3780 (|#1| |#1|)) (-15 -3756 (|#1| |#1|)) (-15 -2655 (|#1| |#1|)) (-15 -3632 (|#1| |#1|)) (-15 -2667 (|#1| |#1|)))
-((-3695 (($ $) 26)) (-2608 (($ $) 11)) (-3669 (($ $) 27)) (-2588 (($ $) 10)) (-3717 (($ $) 28)) (-2629 (($ $) 9)) (-2188 (($) 16)) (-2062 (($ $) 19)) (-1847 (($ $) 18)) (-3730 (($ $) 29)) (-2641 (($ $) 8)) (-3707 (($ $) 30)) (-2617 (($ $) 7)) (-3683 (($ $) 31)) (-2598 (($ $) 6)) (-3768 (($ $) 20)) (-2680 (($ $) 32)) (-3743 (($ $) 21)) (-2655 (($ $) 33)) (-3793 (($ $) 22)) (-3645 (($ $) 34)) (-3135 (($ $) 23)) (-3657 (($ $) 35)) (-3780 (($ $) 24)) (-3632 (($ $) 36)) (-3756 (($ $) 25)) (-2667 (($ $) 37)) (** (($ $ $) 17)))
-(((-1109) (-129)) (T -1109))
-((-2188 (*1 *1) (-4 *1 (-1109))))
-(-13 (-1112) (-91) (-464) (-34) (-261) (-10 -8 (-15 -2188 ($))))
-(((-34) . T) ((-91) . T) ((-261) . T) ((-464) . T) ((-1112) . T))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2058 ((|#1| $) 17)) (-4129 (($ |#1| (-589 $)) 23) (($ (-589 |#1|)) 27) (($ |#1|) 25)) (-2282 (((-108) $ (-710)) 48)) (-3365 ((|#1| $ |#1|) 14 (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) 13 (|has| $ (-6 -4249)))) (-1640 (($) NIL T CONST)) (-3133 (((-589 |#1|) $) 52 (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) 43)) (-3339 (((-108) $ $) 33 (|has| |#1| (-1016)))) (-1344 (((-108) $ (-710)) 41)) (-3056 (((-589 |#1|) $) 53 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 51 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3063 (($ (-1 |#1| |#1|) $) 24 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 22)) (-4042 (((-108) $ (-710)) 40)) (-2112 (((-589 |#1|) $) 37)) (-3391 (((-108) $) 36)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-2720 (((-108) (-1 (-108) |#1|) $) 50 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 74)) (-3163 (((-108) $) 9)) (-4055 (($) 10)) (-1502 ((|#1| $ "value") NIL)) (-2981 (((-523) $ $) 32)) (-2928 (((-589 $) $) 59)) (-1855 (((-108) $ $) 77)) (-1820 (((-589 $) $) 72)) (-2832 (($ $) 73)) (-2837 (((-108) $) 56)) (-2452 (((-710) (-1 (-108) |#1|) $) 20 (|has| $ (-6 -4248))) (((-710) |#1| $) 16 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-4124 (($ $) 58)) (-3976 (((-794) $) 61 (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) 12)) (-4004 (((-108) $ $) 29 (|has| |#1| (-1016)))) (-1505 (((-108) (-1 (-108) |#1|) $) 49 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 28 (|has| |#1| (-1016)))) (-1271 (((-710) $) 39 (|has| $ (-6 -4248)))))
-(((-1110 |#1|) (-13 (-938 |#1|) (-10 -8 (-6 -4248) (-6 -4249) (-15 -4129 ($ |#1| (-589 $))) (-15 -4129 ($ (-589 |#1|))) (-15 -4129 ($ |#1|)) (-15 -2837 ((-108) $)) (-15 -2832 ($ $)) (-15 -1820 ((-589 $) $)) (-15 -1855 ((-108) $ $)) (-15 -2928 ((-589 $) $)))) (-1016)) (T -1110))
-((-2837 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1110 *3)) (-4 *3 (-1016)))) (-4129 (*1 *1 *2 *3) (-12 (-5 *3 (-589 (-1110 *2))) (-5 *1 (-1110 *2)) (-4 *2 (-1016)))) (-4129 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-1110 *3)))) (-4129 (*1 *1 *2) (-12 (-5 *1 (-1110 *2)) (-4 *2 (-1016)))) (-2832 (*1 *1 *1) (-12 (-5 *1 (-1110 *2)) (-4 *2 (-1016)))) (-1820 (*1 *2 *1) (-12 (-5 *2 (-589 (-1110 *3))) (-5 *1 (-1110 *3)) (-4 *3 (-1016)))) (-1855 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1110 *3)) (-4 *3 (-1016)))) (-2928 (*1 *2 *1) (-12 (-5 *2 (-589 (-1110 *3))) (-5 *1 (-1110 *3)) (-4 *3 (-1016)))))
-(-13 (-938 |#1|) (-10 -8 (-6 -4248) (-6 -4249) (-15 -4129 ($ |#1| (-589 $))) (-15 -4129 ($ (-589 |#1|))) (-15 -4129 ($ |#1|)) (-15 -2837 ((-108) $)) (-15 -2832 ($ $)) (-15 -1820 ((-589 $) $)) (-15 -1855 ((-108) $ $)) (-15 -2928 ((-589 $) $))))
-((-2608 (($ $) 15)) (-2629 (($ $) 12)) (-2641 (($ $) 10)) (-2617 (($ $) 17)))
-(((-1111 |#1|) (-10 -8 (-15 -2617 (|#1| |#1|)) (-15 -2641 (|#1| |#1|)) (-15 -2629 (|#1| |#1|)) (-15 -2608 (|#1| |#1|))) (-1112)) (T -1111))
-NIL
-(-10 -8 (-15 -2617 (|#1| |#1|)) (-15 -2641 (|#1| |#1|)) (-15 -2629 (|#1| |#1|)) (-15 -2608 (|#1| |#1|)))
-((-2608 (($ $) 11)) (-2588 (($ $) 10)) (-2629 (($ $) 9)) (-2641 (($ $) 8)) (-2617 (($ $) 7)) (-2598 (($ $) 6)))
-(((-1112) (-129)) (T -1112))
-((-2608 (*1 *1 *1) (-4 *1 (-1112))) (-2588 (*1 *1 *1) (-4 *1 (-1112))) (-2629 (*1 *1 *1) (-4 *1 (-1112))) (-2641 (*1 *1 *1) (-4 *1 (-1112))) (-2617 (*1 *1 *1) (-4 *1 (-1112))) (-2598 (*1 *1 *1) (-4 *1 (-1112))))
-(-13 (-10 -8 (-15 -2598 ($ $)) (-15 -2617 ($ $)) (-15 -2641 ($ $)) (-15 -2629 ($ $)) (-15 -2588 ($ $)) (-15 -2608 ($ $))))
-((-4083 ((|#2| |#2|) 88)) (-1241 (((-108) |#2|) 26)) (-3597 ((|#2| |#2|) 30)) (-3610 ((|#2| |#2|) 32)) (-3368 ((|#2| |#2| (-1087)) 83) ((|#2| |#2|) 84)) (-3305 (((-155 |#2|) |#2|) 28)) (-3072 ((|#2| |#2| (-1087)) 85) ((|#2| |#2|) 86)))
-(((-1113 |#1| |#2|) (-10 -7 (-15 -3368 (|#2| |#2|)) (-15 -3368 (|#2| |#2| (-1087))) (-15 -3072 (|#2| |#2|)) (-15 -3072 (|#2| |#2| (-1087))) (-15 -4083 (|#2| |#2|)) (-15 -3597 (|#2| |#2|)) (-15 -3610 (|#2| |#2|)) (-15 -1241 ((-108) |#2|)) (-15 -3305 ((-155 |#2|) |#2|))) (-13 (-427) (-786) (-964 (-523)) (-585 (-523))) (-13 (-27) (-1109) (-406 |#1|))) (T -1113))
-((-3305 (*1 *2 *3) (-12 (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-155 *3)) (-5 *1 (-1113 *4 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *4))))) (-1241 (*1 *2 *3) (-12 (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *2 (-108)) (-5 *1 (-1113 *4 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *4))))) (-3610 (*1 *2 *2) (-12 (-4 *3 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-1113 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *3))))) (-3597 (*1 *2 *2) (-12 (-4 *3 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-1113 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *3))))) (-4083 (*1 *2 *2) (-12 (-4 *3 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-1113 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *3))))) (-3072 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-1113 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *4))))) (-3072 (*1 *2 *2) (-12 (-4 *3 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-1113 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *3))))) (-3368 (*1 *2 *2 *3) (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-1113 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *4))))) (-3368 (*1 *2 *2) (-12 (-4 *3 (-13 (-427) (-786) (-964 (-523)) (-585 (-523)))) (-5 *1 (-1113 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *3))))))
-(-10 -7 (-15 -3368 (|#2| |#2|)) (-15 -3368 (|#2| |#2| (-1087))) (-15 -3072 (|#2| |#2|)) (-15 -3072 (|#2| |#2| (-1087))) (-15 -4083 (|#2| |#2|)) (-15 -3597 (|#2| |#2|)) (-15 -3610 (|#2| |#2|)) (-15 -1241 ((-108) |#2|)) (-15 -3305 ((-155 |#2|) |#2|)))
-((-2957 ((|#4| |#4| |#1|) 27)) (-2926 ((|#4| |#4| |#1|) 28)))
-(((-1114 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2957 (|#4| |#4| |#1|)) (-15 -2926 (|#4| |#4| |#1|))) (-515) (-349 |#1|) (-349 |#1|) (-627 |#1| |#2| |#3|)) (T -1114))
-((-2926 (*1 *2 *2 *3) (-12 (-4 *3 (-515)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *1 (-1114 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))) (-2957 (*1 *2 *2 *3) (-12 (-4 *3 (-515)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-5 *1 (-1114 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))))
-(-10 -7 (-15 -2957 (|#4| |#4| |#1|)) (-15 -2926 (|#4| |#4| |#1|)))
-((-1439 ((|#2| |#2|) 134)) (-3885 ((|#2| |#2|) 131)) (-3134 ((|#2| |#2|) 122)) (-4092 ((|#2| |#2|) 119)) (-2351 ((|#2| |#2|) 127)) (-1281 ((|#2| |#2|) 115)) (-3271 ((|#2| |#2|) 43)) (-1316 ((|#2| |#2|) 95)) (-1804 ((|#2| |#2|) 75)) (-3497 ((|#2| |#2|) 129)) (-3604 ((|#2| |#2|) 117)) (-3240 ((|#2| |#2|) 139)) (-1366 ((|#2| |#2|) 137)) (-3101 ((|#2| |#2|) 138)) (-2374 ((|#2| |#2|) 136)) (-1799 ((|#2| |#2|) 149)) (-3728 ((|#2| |#2|) 30 (-12 (|has| |#2| (-564 (-823 |#1|))) (|has| |#2| (-817 |#1|)) (|has| |#1| (-564 (-823 |#1|))) (|has| |#1| (-817 |#1|))))) (-2030 ((|#2| |#2|) 76)) (-1542 ((|#2| |#2|) 140)) (-1276 ((|#2| |#2|) 141)) (-1823 ((|#2| |#2|) 128)) (-3419 ((|#2| |#2|) 116)) (-3398 ((|#2| |#2|) 135)) (-3191 ((|#2| |#2|) 133)) (-3080 ((|#2| |#2|) 123)) (-3366 ((|#2| |#2|) 121)) (-1559 ((|#2| |#2|) 125)) (-2289 ((|#2| |#2|) 113)))
-(((-1115 |#1| |#2|) (-10 -7 (-15 -1276 (|#2| |#2|)) (-15 -1804 (|#2| |#2|)) (-15 -1799 (|#2| |#2|)) (-15 -1316 (|#2| |#2|)) (-15 -3271 (|#2| |#2|)) (-15 -2030 (|#2| |#2|)) (-15 -1542 (|#2| |#2|)) (-15 -2289 (|#2| |#2|)) (-15 -1559 (|#2| |#2|)) (-15 -3080 (|#2| |#2|)) (-15 -3398 (|#2| |#2|)) (-15 -3419 (|#2| |#2|)) (-15 -1823 (|#2| |#2|)) (-15 -3604 (|#2| |#2|)) (-15 -3497 (|#2| |#2|)) (-15 -1281 (|#2| |#2|)) (-15 -2351 (|#2| |#2|)) (-15 -3134 (|#2| |#2|)) (-15 -1439 (|#2| |#2|)) (-15 -4092 (|#2| |#2|)) (-15 -3885 (|#2| |#2|)) (-15 -3366 (|#2| |#2|)) (-15 -3191 (|#2| |#2|)) (-15 -2374 (|#2| |#2|)) (-15 -1366 (|#2| |#2|)) (-15 -3101 (|#2| |#2|)) (-15 -3240 (|#2| |#2|)) (IF (|has| |#1| (-817 |#1|)) (IF (|has| |#1| (-564 (-823 |#1|))) (IF (|has| |#2| (-564 (-823 |#1|))) (IF (|has| |#2| (-817 |#1|)) (-15 -3728 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-13 (-786) (-427)) (-13 (-406 |#1|) (-1109))) (T -1115))
-((-3728 (*1 *2 *2) (-12 (-4 *3 (-564 (-823 *3))) (-4 *3 (-817 *3)) (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-564 (-823 *3))) (-4 *2 (-817 *3)) (-4 *2 (-13 (-406 *3) (-1109))))) (-3240 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-3101 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-1366 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-2374 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-3191 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-3366 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-3885 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-4092 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-1439 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-3134 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-2351 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-1281 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-3497 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-3604 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-1823 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-3419 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-3398 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-3080 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-1559 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-2289 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-1542 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-2030 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-3271 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-1316 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-1799 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-1804 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))) (-1276 (*1 *2 *2) (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-406 *3) (-1109))))))
-(-10 -7 (-15 -1276 (|#2| |#2|)) (-15 -1804 (|#2| |#2|)) (-15 -1799 (|#2| |#2|)) (-15 -1316 (|#2| |#2|)) (-15 -3271 (|#2| |#2|)) (-15 -2030 (|#2| |#2|)) (-15 -1542 (|#2| |#2|)) (-15 -2289 (|#2| |#2|)) (-15 -1559 (|#2| |#2|)) (-15 -3080 (|#2| |#2|)) (-15 -3398 (|#2| |#2|)) (-15 -3419 (|#2| |#2|)) (-15 -1823 (|#2| |#2|)) (-15 -3604 (|#2| |#2|)) (-15 -3497 (|#2| |#2|)) (-15 -1281 (|#2| |#2|)) (-15 -2351 (|#2| |#2|)) (-15 -3134 (|#2| |#2|)) (-15 -1439 (|#2| |#2|)) (-15 -4092 (|#2| |#2|)) (-15 -3885 (|#2| |#2|)) (-15 -3366 (|#2| |#2|)) (-15 -3191 (|#2| |#2|)) (-15 -2374 (|#2| |#2|)) (-15 -1366 (|#2| |#2|)) (-15 -3101 (|#2| |#2|)) (-15 -3240 (|#2| |#2|)) (IF (|has| |#1| (-817 |#1|)) (IF (|has| |#1| (-564 (-823 |#1|))) (IF (|has| |#2| (-564 (-823 |#1|))) (IF (|has| |#2| (-817 |#1|)) (-15 -3728 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
-((-3103 (((-108) |#5| $) 60) (((-108) $) 102)) (-4165 ((|#5| |#5| $) 75)) (-1299 (($ (-1 (-108) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 119)) (-3021 (((-589 |#5|) (-589 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|)) 73)) (-2898 (((-3 $ "failed") (-589 |#5|)) 126)) (-3891 (((-3 $ "failed") $) 112)) (-3880 ((|#5| |#5| $) 94)) (-3605 (((-108) |#5| $ (-1 (-108) |#5| |#5|)) 31)) (-3058 ((|#5| |#5| $) 98)) (-1830 ((|#5| (-1 |#5| |#5| |#5|) $ |#5| |#5|) NIL) ((|#5| (-1 |#5| |#5| |#5|) $ |#5|) NIL) ((|#5| (-1 |#5| |#5| |#5|) $) NIL) ((|#5| |#5| $ (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|)) 69)) (-3161 (((-2 (|:| -3922 (-589 |#5|)) (|:| -3439 (-589 |#5|))) $) 55)) (-2407 (((-108) |#5| $) 58) (((-108) $) 103)) (-2694 ((|#4| $) 108)) (-2247 (((-3 |#5| "failed") $) 110)) (-3403 (((-589 |#5|) $) 49)) (-3761 (((-108) |#5| $) 67) (((-108) $) 107)) (-1728 ((|#5| |#5| $) 81)) (-1454 (((-108) $ $) 27)) (-2152 (((-108) |#5| $) 63) (((-108) $) 105)) (-2347 ((|#5| |#5| $) 78)) (-3879 (((-3 |#5| "failed") $) 109)) (-1361 (($ $ |#5|) 127)) (-1487 (((-710) $) 52)) (-3985 (($ (-589 |#5|)) 124)) (-4135 (($ $ |#4|) 122)) (-1318 (($ $ |#4|) 121)) (-3444 (($ $) 120)) (-3976 (((-794) $) NIL) (((-589 |#5|) $) 113)) (-3221 (((-710) $) 130)) (-2459 (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#5|))) "failed") (-589 |#5|) (-1 (-108) |#5| |#5|)) 43) (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#5|))) "failed") (-589 |#5|) (-1 (-108) |#5|) (-1 (-108) |#5| |#5|)) 45)) (-3442 (((-108) $ (-1 (-108) |#5| (-589 |#5|))) 100)) (-2969 (((-589 |#4|) $) 115)) (-4079 (((-108) |#4| $) 118)) (-4037 (((-108) $ $) 19)))
-(((-1116 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3221 ((-710) |#1|)) (-15 -1361 (|#1| |#1| |#5|)) (-15 -1299 ((-3 |#5| "failed") |#1| |#4|)) (-15 -4079 ((-108) |#4| |#1|)) (-15 -2969 ((-589 |#4|) |#1|)) (-15 -3891 ((-3 |#1| "failed") |#1|)) (-15 -2247 ((-3 |#5| "failed") |#1|)) (-15 -3879 ((-3 |#5| "failed") |#1|)) (-15 -3058 (|#5| |#5| |#1|)) (-15 -3444 (|#1| |#1|)) (-15 -3880 (|#5| |#5| |#1|)) (-15 -1728 (|#5| |#5| |#1|)) (-15 -2347 (|#5| |#5| |#1|)) (-15 -4165 (|#5| |#5| |#1|)) (-15 -3021 ((-589 |#5|) (-589 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -1830 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -3761 ((-108) |#1|)) (-15 -2152 ((-108) |#1|)) (-15 -3103 ((-108) |#1|)) (-15 -3442 ((-108) |#1| (-1 (-108) |#5| (-589 |#5|)))) (-15 -3761 ((-108) |#5| |#1|)) (-15 -2152 ((-108) |#5| |#1|)) (-15 -3103 ((-108) |#5| |#1|)) (-15 -3605 ((-108) |#5| |#1| (-1 (-108) |#5| |#5|))) (-15 -2407 ((-108) |#1|)) (-15 -2407 ((-108) |#5| |#1|)) (-15 -3161 ((-2 (|:| -3922 (-589 |#5|)) (|:| -3439 (-589 |#5|))) |#1|)) (-15 -1487 ((-710) |#1|)) (-15 -3403 ((-589 |#5|) |#1|)) (-15 -2459 ((-3 (-2 (|:| |bas| |#1|) (|:| -3346 (-589 |#5|))) "failed") (-589 |#5|) (-1 (-108) |#5|) (-1 (-108) |#5| |#5|))) (-15 -2459 ((-3 (-2 (|:| |bas| |#1|) (|:| -3346 (-589 |#5|))) "failed") (-589 |#5|) (-1 (-108) |#5| |#5|))) (-15 -1454 ((-108) |#1| |#1|)) (-15 -4135 (|#1| |#1| |#4|)) (-15 -1318 (|#1| |#1| |#4|)) (-15 -2694 (|#4| |#1|)) (-15 -2898 ((-3 |#1| "failed") (-589 |#5|))) (-15 -3976 ((-589 |#5|) |#1|)) (-15 -3985 (|#1| (-589 |#5|))) (-15 -1830 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -1830 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1299 (|#1| (-1 (-108) |#5|) |#1|)) (-15 -1830 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3976 ((-794) |#1|)) (-15 -4037 ((-108) |#1| |#1|))) (-1117 |#2| |#3| |#4| |#5|) (-515) (-732) (-786) (-987 |#2| |#3| |#4|)) (T -1116))
-NIL
-(-10 -8 (-15 -3221 ((-710) |#1|)) (-15 -1361 (|#1| |#1| |#5|)) (-15 -1299 ((-3 |#5| "failed") |#1| |#4|)) (-15 -4079 ((-108) |#4| |#1|)) (-15 -2969 ((-589 |#4|) |#1|)) (-15 -3891 ((-3 |#1| "failed") |#1|)) (-15 -2247 ((-3 |#5| "failed") |#1|)) (-15 -3879 ((-3 |#5| "failed") |#1|)) (-15 -3058 (|#5| |#5| |#1|)) (-15 -3444 (|#1| |#1|)) (-15 -3880 (|#5| |#5| |#1|)) (-15 -1728 (|#5| |#5| |#1|)) (-15 -2347 (|#5| |#5| |#1|)) (-15 -4165 (|#5| |#5| |#1|)) (-15 -3021 ((-589 |#5|) (-589 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -1830 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -3761 ((-108) |#1|)) (-15 -2152 ((-108) |#1|)) (-15 -3103 ((-108) |#1|)) (-15 -3442 ((-108) |#1| (-1 (-108) |#5| (-589 |#5|)))) (-15 -3761 ((-108) |#5| |#1|)) (-15 -2152 ((-108) |#5| |#1|)) (-15 -3103 ((-108) |#5| |#1|)) (-15 -3605 ((-108) |#5| |#1| (-1 (-108) |#5| |#5|))) (-15 -2407 ((-108) |#1|)) (-15 -2407 ((-108) |#5| |#1|)) (-15 -3161 ((-2 (|:| -3922 (-589 |#5|)) (|:| -3439 (-589 |#5|))) |#1|)) (-15 -1487 ((-710) |#1|)) (-15 -3403 ((-589 |#5|) |#1|)) (-15 -2459 ((-3 (-2 (|:| |bas| |#1|) (|:| -3346 (-589 |#5|))) "failed") (-589 |#5|) (-1 (-108) |#5|) (-1 (-108) |#5| |#5|))) (-15 -2459 ((-3 (-2 (|:| |bas| |#1|) (|:| -3346 (-589 |#5|))) "failed") (-589 |#5|) (-1 (-108) |#5| |#5|))) (-15 -1454 ((-108) |#1| |#1|)) (-15 -4135 (|#1| |#1| |#4|)) (-15 -1318 (|#1| |#1| |#4|)) (-15 -2694 (|#4| |#1|)) (-15 -2898 ((-3 |#1| "failed") (-589 |#5|))) (-15 -3976 ((-589 |#5|) |#1|)) (-15 -3985 (|#1| (-589 |#5|))) (-15 -1830 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -1830 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1299 (|#1| (-1 (-108) |#5|) |#1|)) (-15 -1830 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3976 ((-794) |#1|)) (-15 -4037 ((-108) |#1| |#1|)))
-((-3260 (((-108) $ $) 7)) (-2778 (((-589 (-2 (|:| -3922 $) (|:| -3439 (-589 |#4|)))) (-589 |#4|)) 85)) (-2311 (((-589 $) (-589 |#4|)) 86)) (-3716 (((-589 |#3|) $) 33)) (-2011 (((-108) $) 26)) (-2821 (((-108) $) 17 (|has| |#1| (-515)))) (-3103 (((-108) |#4| $) 101) (((-108) $) 97)) (-4165 ((|#4| |#4| $) 92)) (-3400 (((-2 (|:| |under| $) (|:| -1250 $) (|:| |upper| $)) $ |#3|) 27)) (-2282 (((-108) $ (-710)) 44)) (-1299 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4248))) (((-3 |#4| "failed") $ |#3|) 79)) (-1640 (($) 45 T CONST)) (-1619 (((-108) $) 22 (|has| |#1| (-515)))) (-2927 (((-108) $ $) 24 (|has| |#1| (-515)))) (-3685 (((-108) $ $) 23 (|has| |#1| (-515)))) (-2457 (((-108) $) 25 (|has| |#1| (-515)))) (-3021 (((-589 |#4|) (-589 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-2341 (((-589 |#4|) (-589 |#4|) $) 18 (|has| |#1| (-515)))) (-3450 (((-589 |#4|) (-589 |#4|) $) 19 (|has| |#1| (-515)))) (-2898 (((-3 $ "failed") (-589 |#4|)) 36)) (-1996 (($ (-589 |#4|)) 35)) (-3891 (((-3 $ "failed") $) 82)) (-3880 ((|#4| |#4| $) 89)) (-3917 (($ $) 68 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ |#4| $) 67 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4248)))) (-3143 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-515)))) (-3605 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-3058 ((|#4| |#4| $) 87)) (-1830 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4248))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4248))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-3161 (((-2 (|:| -3922 (-589 |#4|)) (|:| -3439 (-589 |#4|))) $) 105)) (-3133 (((-589 |#4|) $) 52 (|has| $ (-6 -4248)))) (-2407 (((-108) |#4| $) 104) (((-108) $) 103)) (-2694 ((|#3| $) 34)) (-1344 (((-108) $ (-710)) 43)) (-3056 (((-589 |#4|) $) 53 (|has| $ (-6 -4248)))) (-1348 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#4| |#4|) $) 47)) (-4100 (((-589 |#3|) $) 32)) (-2863 (((-108) |#3| $) 31)) (-4042 (((-108) $ (-710)) 42)) (-3841 (((-1070) $) 9)) (-2247 (((-3 |#4| "failed") $) 83)) (-3403 (((-589 |#4|) $) 107)) (-3761 (((-108) |#4| $) 99) (((-108) $) 95)) (-1728 ((|#4| |#4| $) 90)) (-1454 (((-108) $ $) 110)) (-1916 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-515)))) (-2152 (((-108) |#4| $) 100) (((-108) $) 96)) (-2347 ((|#4| |#4| $) 91)) (-2435 (((-1034) $) 10)) (-3879 (((-3 |#4| "failed") $) 84)) (-2660 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-2594 (((-3 $ "failed") $ |#4|) 78)) (-1361 (($ $ |#4|) 77)) (-2720 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 |#4|) (-589 |#4|)) 59 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-271 |#4|)) 57 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-589 (-271 |#4|))) 56 (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))) (-2391 (((-108) $ $) 38)) (-3163 (((-108) $) 41)) (-4055 (($) 40)) (-1487 (((-710) $) 106)) (-2452 (((-710) |#4| $) 54 (-12 (|has| |#4| (-1016)) (|has| $ (-6 -4248)))) (((-710) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4248)))) (-4124 (($ $) 39)) (-3077 (((-499) $) 69 (|has| |#4| (-564 (-499))))) (-3985 (($ (-589 |#4|)) 60)) (-4135 (($ $ |#3|) 28)) (-1318 (($ $ |#3|) 30)) (-3444 (($ $) 88)) (-2023 (($ $ |#3|) 29)) (-3976 (((-794) $) 11) (((-589 |#4|) $) 37)) (-3221 (((-710) $) 76 (|has| |#3| (-344)))) (-2459 (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-3442 (((-108) $ (-1 (-108) |#4| (-589 |#4|))) 98)) (-1505 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4248)))) (-2969 (((-589 |#3|) $) 81)) (-4079 (((-108) |#3| $) 80)) (-4037 (((-108) $ $) 6)) (-1271 (((-710) $) 46 (|has| $ (-6 -4248)))))
-(((-1117 |#1| |#2| |#3| |#4|) (-129) (-515) (-732) (-786) (-987 |t#1| |t#2| |t#3|)) (T -1117))
-((-1454 (*1 *2 *1 *1) (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-108)))) (-2459 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1 (-108) *8 *8)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-2 (|:| |bas| *1) (|:| -3346 (-589 *8)))) (-5 *3 (-589 *8)) (-4 *1 (-1117 *5 *6 *7 *8)))) (-2459 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 (-108) *9)) (-5 *5 (-1 (-108) *9 *9)) (-4 *9 (-987 *6 *7 *8)) (-4 *6 (-515)) (-4 *7 (-732)) (-4 *8 (-786)) (-5 *2 (-2 (|:| |bas| *1) (|:| -3346 (-589 *9)))) (-5 *3 (-589 *9)) (-4 *1 (-1117 *6 *7 *8 *9)))) (-3403 (*1 *2 *1) (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-589 *6)))) (-1487 (*1 *2 *1) (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-710)))) (-3161 (*1 *2 *1) (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-2 (|:| -3922 (-589 *6)) (|:| -3439 (-589 *6)))))) (-2407 (*1 *2 *3 *1) (-12 (-4 *1 (-1117 *4 *5 *6 *3)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))) (-2407 (*1 *2 *1) (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-108)))) (-3605 (*1 *2 *3 *1 *4) (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *1 (-1117 *5 *6 *7 *3)) (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-108)))) (-3103 (*1 *2 *3 *1) (-12 (-4 *1 (-1117 *4 *5 *6 *3)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))) (-2152 (*1 *2 *3 *1) (-12 (-4 *1 (-1117 *4 *5 *6 *3)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))) (-3761 (*1 *2 *3 *1) (-12 (-4 *1 (-1117 *4 *5 *6 *3)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))) (-3442 (*1 *2 *1 *3) (-12 (-5 *3 (-1 (-108) *7 (-589 *7))) (-4 *1 (-1117 *4 *5 *6 *7)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108)))) (-3103 (*1 *2 *1) (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-108)))) (-2152 (*1 *2 *1) (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-108)))) (-3761 (*1 *2 *1) (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-108)))) (-1830 (*1 *2 *2 *1 *3 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-108) *2 *2)) (-4 *1 (-1117 *5 *6 *7 *2)) (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *2 (-987 *5 *6 *7)))) (-3021 (*1 *2 *2 *1 *3 *4) (-12 (-5 *2 (-589 *8)) (-5 *3 (-1 *8 *8 *8)) (-5 *4 (-1 (-108) *8 *8)) (-4 *1 (-1117 *5 *6 *7 *8)) (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-987 *5 *6 *7)))) (-4165 (*1 *2 *2 *1) (-12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))) (-2347 (*1 *2 *2 *1) (-12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))) (-1728 (*1 *2 *2 *1) (-12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))) (-3880 (*1 *2 *2 *1) (-12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))) (-3444 (*1 *1 *1) (-12 (-4 *1 (-1117 *2 *3 *4 *5)) (-4 *2 (-515)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *5 (-987 *2 *3 *4)))) (-3058 (*1 *2 *2 *1) (-12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))) (-2311 (*1 *2 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 *1)) (-4 *1 (-1117 *4 *5 *6 *7)))) (-2778 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-589 (-2 (|:| -3922 *1) (|:| -3439 (-589 *7))))) (-5 *3 (-589 *7)) (-4 *1 (-1117 *4 *5 *6 *7)))) (-3879 (*1 *2 *1) (|partial| -12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))) (-2247 (*1 *2 *1) (|partial| -12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))) (-3891 (*1 *1 *1) (|partial| -12 (-4 *1 (-1117 *2 *3 *4 *5)) (-4 *2 (-515)) (-4 *3 (-732)) (-4 *4 (-786)) (-4 *5 (-987 *2 *3 *4)))) (-2969 (*1 *2 *1) (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-589 *5)))) (-4079 (*1 *2 *3 *1) (-12 (-4 *1 (-1117 *4 *5 *3 *6)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *3 (-786)) (-4 *6 (-987 *4 *5 *3)) (-5 *2 (-108)))) (-1299 (*1 *2 *1 *3) (|partial| -12 (-4 *1 (-1117 *4 *5 *3 *2)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *3 (-786)) (-4 *2 (-987 *4 *5 *3)))) (-2594 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))) (-1361 (*1 *1 *1 *2) (-12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))) (-3221 (*1 *2 *1) (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-4 *5 (-344)) (-5 *2 (-710)))))
-(-13 (-905 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-6 -4248) (-6 -4249) (-15 -1454 ((-108) $ $)) (-15 -2459 ((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |t#4|))) "failed") (-589 |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -2459 ((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |t#4|))) "failed") (-589 |t#4|) (-1 (-108) |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -3403 ((-589 |t#4|) $)) (-15 -1487 ((-710) $)) (-15 -3161 ((-2 (|:| -3922 (-589 |t#4|)) (|:| -3439 (-589 |t#4|))) $)) (-15 -2407 ((-108) |t#4| $)) (-15 -2407 ((-108) $)) (-15 -3605 ((-108) |t#4| $ (-1 (-108) |t#4| |t#4|))) (-15 -3103 ((-108) |t#4| $)) (-15 -2152 ((-108) |t#4| $)) (-15 -3761 ((-108) |t#4| $)) (-15 -3442 ((-108) $ (-1 (-108) |t#4| (-589 |t#4|)))) (-15 -3103 ((-108) $)) (-15 -2152 ((-108) $)) (-15 -3761 ((-108) $)) (-15 -1830 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -3021 ((-589 |t#4|) (-589 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -4165 (|t#4| |t#4| $)) (-15 -2347 (|t#4| |t#4| $)) (-15 -1728 (|t#4| |t#4| $)) (-15 -3880 (|t#4| |t#4| $)) (-15 -3444 ($ $)) (-15 -3058 (|t#4| |t#4| $)) (-15 -2311 ((-589 $) (-589 |t#4|))) (-15 -2778 ((-589 (-2 (|:| -3922 $) (|:| -3439 (-589 |t#4|)))) (-589 |t#4|))) (-15 -3879 ((-3 |t#4| "failed") $)) (-15 -2247 ((-3 |t#4| "failed") $)) (-15 -3891 ((-3 $ "failed") $)) (-15 -2969 ((-589 |t#3|) $)) (-15 -4079 ((-108) |t#3| $)) (-15 -1299 ((-3 |t#4| "failed") $ |t#3|)) (-15 -2594 ((-3 $ "failed") $ |t#4|)) (-15 -1361 ($ $ |t#4|)) (IF (|has| |t#3| (-344)) (-15 -3221 ((-710) $)) |%noBranch|)))
-(((-33) . T) ((-97) . T) ((-563 (-589 |#4|)) . T) ((-563 (-794)) . T) ((-140 |#4|) . T) ((-564 (-499)) |has| |#4| (-564 (-499))) ((-286 |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))) ((-462 |#4|) . T) ((-484 |#4| |#4|) -12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))) ((-905 |#1| |#2| |#3| |#4|) . T) ((-1016) . T) ((-1123) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3716 (((-589 (-1087)) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-3695 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3669 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3717 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) NIL T CONST)) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3241 (((-883 |#1|) $ (-710)) 17) (((-883 |#1|) $ (-710) (-710)) NIL)) (-2294 (((-108) $) NIL)) (-2188 (($) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1500 (((-710) $ (-1087)) NIL) (((-710) $ (-1087) (-710)) NIL)) (-3482 (((-108) $) NIL)) (-1324 (($ $ (-523)) NIL (|has| |#1| (-37 (-383 (-523)))))) (-4060 (((-108) $) NIL)) (-3694 (($ $ (-589 (-1087)) (-589 (-495 (-1087)))) NIL) (($ $ (-1087) (-495 (-1087))) NIL) (($ |#1| (-495 (-1087))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-2062 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2669 (($ $ (-1087)) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087) |#1|) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2435 (((-1034) $) NIL)) (-3951 (($ (-1 $) (-1087) |#1|) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1361 (($ $ (-710)) NIL)) (-2469 (((-3 $ "failed") $ $) NIL (|has| |#1| (-515)))) (-1847 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1349 (($ $ (-1087) $) NIL) (($ $ (-589 (-1087)) (-589 $)) NIL) (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL)) (-4024 (($ $ (-1087)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL)) (-1487 (((-495 (-1087)) $) NIL)) (-3730 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3749 (($ $) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#1|) NIL (|has| |#1| (-158))) (($ $) NIL (|has| |#1| (-515))) (($ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ (-1087)) NIL) (($ (-883 |#1|)) NIL)) (-1234 ((|#1| $ (-495 (-1087))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL) (((-883 |#1|) $ (-710)) NIL)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) NIL)) (-3768 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3743 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3135 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) NIL T CONST)) (-1943 (($ $ (-1087)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL)) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-1118 |#1|) (-13 (-680 |#1| (-1087)) (-10 -8 (-15 -1234 ((-883 |#1|) $ (-710))) (-15 -3976 ($ (-1087))) (-15 -3976 ($ (-883 |#1|))) (IF (|has| |#1| (-37 (-383 (-523)))) (PROGN (-15 -2669 ($ $ (-1087) |#1|)) (-15 -3951 ($ (-1 $) (-1087) |#1|))) |%noBranch|))) (-973)) (T -1118))
-((-1234 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-5 *2 (-883 *4)) (-5 *1 (-1118 *4)) (-4 *4 (-973)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-1118 *3)) (-4 *3 (-973)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-883 *3)) (-4 *3 (-973)) (-5 *1 (-1118 *3)))) (-2669 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *1 (-1118 *3)) (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)))) (-3951 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1118 *4))) (-5 *3 (-1087)) (-5 *1 (-1118 *4)) (-4 *4 (-37 (-383 (-523)))) (-4 *4 (-973)))))
-(-13 (-680 |#1| (-1087)) (-10 -8 (-15 -1234 ((-883 |#1|) $ (-710))) (-15 -3976 ($ (-1087))) (-15 -3976 ($ (-883 |#1|))) (IF (|has| |#1| (-37 (-383 (-523)))) (PROGN (-15 -2669 ($ $ (-1087) |#1|)) (-15 -3951 ($ (-1 $) (-1087) |#1|))) |%noBranch|)))
-((-1939 (($ |#1| (-589 (-589 (-874 (-203)))) (-108)) 19)) (-1550 (((-108) $ (-108)) 18)) (-3852 (((-108) $) 17)) (-1498 (((-589 (-589 (-874 (-203)))) $) 13)) (-2737 ((|#1| $) 8)) (-1572 (((-108) $) 15)))
-(((-1119 |#1|) (-10 -8 (-15 -2737 (|#1| $)) (-15 -1498 ((-589 (-589 (-874 (-203)))) $)) (-15 -1572 ((-108) $)) (-15 -3852 ((-108) $)) (-15 -1550 ((-108) $ (-108))) (-15 -1939 ($ |#1| (-589 (-589 (-874 (-203)))) (-108)))) (-903)) (T -1119))
-((-1939 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-589 (-589 (-874 (-203))))) (-5 *4 (-108)) (-5 *1 (-1119 *2)) (-4 *2 (-903)))) (-1550 (*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1119 *3)) (-4 *3 (-903)))) (-3852 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1119 *3)) (-4 *3 (-903)))) (-1572 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1119 *3)) (-4 *3 (-903)))) (-1498 (*1 *2 *1) (-12 (-5 *2 (-589 (-589 (-874 (-203))))) (-5 *1 (-1119 *3)) (-4 *3 (-903)))) (-2737 (*1 *2 *1) (-12 (-5 *1 (-1119 *2)) (-4 *2 (-903)))))
-(-10 -8 (-15 -2737 (|#1| $)) (-15 -1498 ((-589 (-589 (-874 (-203)))) $)) (-15 -1572 ((-108) $)) (-15 -3852 ((-108) $)) (-15 -1550 ((-108) $ (-108))) (-15 -1939 ($ |#1| (-589 (-589 (-874 (-203)))) (-108))))
-((-1932 (((-874 (-203)) (-874 (-203))) 25)) (-3195 (((-874 (-203)) (-203) (-203) (-203) (-203)) 10)) (-1309 (((-589 (-874 (-203))) (-874 (-203)) (-874 (-203)) (-874 (-203)) (-203) (-589 (-589 (-203)))) 37)) (-1879 (((-203) (-874 (-203)) (-874 (-203))) 21)) (-1707 (((-874 (-203)) (-874 (-203)) (-874 (-203))) 22)) (-2458 (((-589 (-589 (-203))) (-523)) 31)) (-4115 (((-874 (-203)) (-874 (-203)) (-874 (-203))) 20)) (-4103 (((-874 (-203)) (-874 (-203)) (-874 (-203))) 19)) (* (((-874 (-203)) (-203) (-874 (-203))) 18)))
-(((-1120) (-10 -7 (-15 -3195 ((-874 (-203)) (-203) (-203) (-203) (-203))) (-15 * ((-874 (-203)) (-203) (-874 (-203)))) (-15 -4103 ((-874 (-203)) (-874 (-203)) (-874 (-203)))) (-15 -4115 ((-874 (-203)) (-874 (-203)) (-874 (-203)))) (-15 -1879 ((-203) (-874 (-203)) (-874 (-203)))) (-15 -1707 ((-874 (-203)) (-874 (-203)) (-874 (-203)))) (-15 -1932 ((-874 (-203)) (-874 (-203)))) (-15 -2458 ((-589 (-589 (-203))) (-523))) (-15 -1309 ((-589 (-874 (-203))) (-874 (-203)) (-874 (-203)) (-874 (-203)) (-203) (-589 (-589 (-203))))))) (T -1120))
-((-1309 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-589 (-589 (-203)))) (-5 *4 (-203)) (-5 *2 (-589 (-874 *4))) (-5 *1 (-1120)) (-5 *3 (-874 *4)))) (-2458 (*1 *2 *3) (-12 (-5 *3 (-523)) (-5 *2 (-589 (-589 (-203)))) (-5 *1 (-1120)))) (-1932 (*1 *2 *2) (-12 (-5 *2 (-874 (-203))) (-5 *1 (-1120)))) (-1707 (*1 *2 *2 *2) (-12 (-5 *2 (-874 (-203))) (-5 *1 (-1120)))) (-1879 (*1 *2 *3 *3) (-12 (-5 *3 (-874 (-203))) (-5 *2 (-203)) (-5 *1 (-1120)))) (-4115 (*1 *2 *2 *2) (-12 (-5 *2 (-874 (-203))) (-5 *1 (-1120)))) (-4103 (*1 *2 *2 *2) (-12 (-5 *2 (-874 (-203))) (-5 *1 (-1120)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-874 (-203))) (-5 *3 (-203)) (-5 *1 (-1120)))) (-3195 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-874 (-203))) (-5 *1 (-1120)) (-5 *3 (-203)))))
-(-10 -7 (-15 -3195 ((-874 (-203)) (-203) (-203) (-203) (-203))) (-15 * ((-874 (-203)) (-203) (-874 (-203)))) (-15 -4103 ((-874 (-203)) (-874 (-203)) (-874 (-203)))) (-15 -4115 ((-874 (-203)) (-874 (-203)) (-874 (-203)))) (-15 -1879 ((-203) (-874 (-203)) (-874 (-203)))) (-15 -1707 ((-874 (-203)) (-874 (-203)) (-874 (-203)))) (-15 -1932 ((-874 (-203)) (-874 (-203)))) (-15 -2458 ((-589 (-589 (-203))) (-523))) (-15 -1309 ((-589 (-874 (-203))) (-874 (-203)) (-874 (-203)) (-874 (-203)) (-203) (-589 (-589 (-203))))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-1299 ((|#1| $ (-710)) 13)) (-3229 (((-710) $) 12)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-3976 (((-888 |#1|) $) 10) (($ (-888 |#1|)) 9) (((-794) $) 23 (|has| |#1| (-563 (-794))))) (-4037 (((-108) $ $) 16 (|has| |#1| (-1016)))))
-(((-1121 |#1|) (-13 (-563 (-888 |#1|)) (-10 -8 (-15 -3976 ($ (-888 |#1|))) (-15 -1299 (|#1| $ (-710))) (-15 -3229 ((-710) $)) (IF (|has| |#1| (-563 (-794))) (-6 (-563 (-794))) |%noBranch|) (IF (|has| |#1| (-1016)) (-6 (-1016)) |%noBranch|))) (-1123)) (T -1121))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-888 *3)) (-4 *3 (-1123)) (-5 *1 (-1121 *3)))) (-1299 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-5 *1 (-1121 *2)) (-4 *2 (-1123)))) (-3229 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-1121 *3)) (-4 *3 (-1123)))))
-(-13 (-563 (-888 |#1|)) (-10 -8 (-15 -3976 ($ (-888 |#1|))) (-15 -1299 (|#1| $ (-710))) (-15 -3229 ((-710) $)) (IF (|has| |#1| (-563 (-794))) (-6 (-563 (-794))) |%noBranch|) (IF (|has| |#1| (-1016)) (-6 (-1016)) |%noBranch|)))
-((-3031 (((-394 (-1083 (-1083 |#1|))) (-1083 (-1083 |#1|)) (-523)) 80)) (-2033 (((-394 (-1083 (-1083 |#1|))) (-1083 (-1083 |#1|))) 74)) (-3968 (((-394 (-1083 (-1083 |#1|))) (-1083 (-1083 |#1|))) 59)))
-(((-1122 |#1|) (-10 -7 (-15 -2033 ((-394 (-1083 (-1083 |#1|))) (-1083 (-1083 |#1|)))) (-15 -3968 ((-394 (-1083 (-1083 |#1|))) (-1083 (-1083 |#1|)))) (-15 -3031 ((-394 (-1083 (-1083 |#1|))) (-1083 (-1083 |#1|)) (-523)))) (-325)) (T -1122))
-((-3031 (*1 *2 *3 *4) (-12 (-5 *4 (-523)) (-4 *5 (-325)) (-5 *2 (-394 (-1083 (-1083 *5)))) (-5 *1 (-1122 *5)) (-5 *3 (-1083 (-1083 *5))))) (-3968 (*1 *2 *3) (-12 (-4 *4 (-325)) (-5 *2 (-394 (-1083 (-1083 *4)))) (-5 *1 (-1122 *4)) (-5 *3 (-1083 (-1083 *4))))) (-2033 (*1 *2 *3) (-12 (-4 *4 (-325)) (-5 *2 (-394 (-1083 (-1083 *4)))) (-5 *1 (-1122 *4)) (-5 *3 (-1083 (-1083 *4))))))
-(-10 -7 (-15 -2033 ((-394 (-1083 (-1083 |#1|))) (-1083 (-1083 |#1|)))) (-15 -3968 ((-394 (-1083 (-1083 |#1|))) (-1083 (-1083 |#1|)))) (-15 -3031 ((-394 (-1083 (-1083 |#1|))) (-1083 (-1083 |#1|)) (-523))))
-NIL
-(((-1123) (-129)) (T -1123))
-NIL
-(-13 (-10 -7 (-6 -2500)))
-((-2601 (((-108)) 15)) (-2948 (((-1174) (-589 |#1|) (-589 |#1|)) 19) (((-1174) (-589 |#1|)) 20)) (-1344 (((-108) |#1| |#1|) 32 (|has| |#1| (-786)))) (-4042 (((-108) |#1| |#1| (-1 (-108) |#1| |#1|)) 27) (((-3 (-108) "failed") |#1| |#1|) 25)) (-1253 ((|#1| (-589 |#1|)) 33 (|has| |#1| (-786))) ((|#1| (-589 |#1|) (-1 (-108) |#1| |#1|)) 28)) (-3130 (((-2 (|:| -3007 (-589 |#1|)) (|:| -2635 (-589 |#1|)))) 17)))
-(((-1124 |#1|) (-10 -7 (-15 -2948 ((-1174) (-589 |#1|))) (-15 -2948 ((-1174) (-589 |#1|) (-589 |#1|))) (-15 -3130 ((-2 (|:| -3007 (-589 |#1|)) (|:| -2635 (-589 |#1|))))) (-15 -4042 ((-3 (-108) "failed") |#1| |#1|)) (-15 -4042 ((-108) |#1| |#1| (-1 (-108) |#1| |#1|))) (-15 -1253 (|#1| (-589 |#1|) (-1 (-108) |#1| |#1|))) (-15 -2601 ((-108))) (IF (|has| |#1| (-786)) (PROGN (-15 -1253 (|#1| (-589 |#1|))) (-15 -1344 ((-108) |#1| |#1|))) |%noBranch|)) (-1016)) (T -1124))
-((-1344 (*1 *2 *3 *3) (-12 (-5 *2 (-108)) (-5 *1 (-1124 *3)) (-4 *3 (-786)) (-4 *3 (-1016)))) (-1253 (*1 *2 *3) (-12 (-5 *3 (-589 *2)) (-4 *2 (-1016)) (-4 *2 (-786)) (-5 *1 (-1124 *2)))) (-2601 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1124 *3)) (-4 *3 (-1016)))) (-1253 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *2)) (-5 *4 (-1 (-108) *2 *2)) (-5 *1 (-1124 *2)) (-4 *2 (-1016)))) (-4042 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *3 (-1016)) (-5 *2 (-108)) (-5 *1 (-1124 *3)))) (-4042 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-108)) (-5 *1 (-1124 *3)) (-4 *3 (-1016)))) (-3130 (*1 *2) (-12 (-5 *2 (-2 (|:| -3007 (-589 *3)) (|:| -2635 (-589 *3)))) (-5 *1 (-1124 *3)) (-4 *3 (-1016)))) (-2948 (*1 *2 *3 *3) (-12 (-5 *3 (-589 *4)) (-4 *4 (-1016)) (-5 *2 (-1174)) (-5 *1 (-1124 *4)))) (-2948 (*1 *2 *3) (-12 (-5 *3 (-589 *4)) (-4 *4 (-1016)) (-5 *2 (-1174)) (-5 *1 (-1124 *4)))))
-(-10 -7 (-15 -2948 ((-1174) (-589 |#1|))) (-15 -2948 ((-1174) (-589 |#1|) (-589 |#1|))) (-15 -3130 ((-2 (|:| -3007 (-589 |#1|)) (|:| -2635 (-589 |#1|))))) (-15 -4042 ((-3 (-108) "failed") |#1| |#1|)) (-15 -4042 ((-108) |#1| |#1| (-1 (-108) |#1| |#1|))) (-15 -1253 (|#1| (-589 |#1|) (-1 (-108) |#1| |#1|))) (-15 -2601 ((-108))) (IF (|has| |#1| (-786)) (PROGN (-15 -1253 (|#1| (-589 |#1|))) (-15 -1344 ((-108) |#1| |#1|))) |%noBranch|))
-((-4141 (((-1174) (-589 (-1087)) (-589 (-1087))) 13) (((-1174) (-589 (-1087))) 11)) (-2198 (((-1174)) 14)) (-1509 (((-2 (|:| -2635 (-589 (-1087))) (|:| -3007 (-589 (-1087))))) 18)))
-(((-1125) (-10 -7 (-15 -4141 ((-1174) (-589 (-1087)))) (-15 -4141 ((-1174) (-589 (-1087)) (-589 (-1087)))) (-15 -1509 ((-2 (|:| -2635 (-589 (-1087))) (|:| -3007 (-589 (-1087)))))) (-15 -2198 ((-1174))))) (T -1125))
-((-2198 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-1125)))) (-1509 (*1 *2) (-12 (-5 *2 (-2 (|:| -2635 (-589 (-1087))) (|:| -3007 (-589 (-1087))))) (-5 *1 (-1125)))) (-4141 (*1 *2 *3 *3) (-12 (-5 *3 (-589 (-1087))) (-5 *2 (-1174)) (-5 *1 (-1125)))) (-4141 (*1 *2 *3) (-12 (-5 *3 (-589 (-1087))) (-5 *2 (-1174)) (-5 *1 (-1125)))))
-(-10 -7 (-15 -4141 ((-1174) (-589 (-1087)))) (-15 -4141 ((-1174) (-589 (-1087)) (-589 (-1087)))) (-15 -1509 ((-2 (|:| -2635 (-589 (-1087))) (|:| -3007 (-589 (-1087)))))) (-15 -2198 ((-1174))))
-((-3763 (($ $) 17)) (-1330 (((-108) $) 24)))
-(((-1126 |#1|) (-10 -8 (-15 -3763 (|#1| |#1|)) (-15 -1330 ((-108) |#1|))) (-1127)) (T -1126))
-NIL
-(-10 -8 (-15 -3763 (|#1| |#1|)) (-15 -1330 ((-108) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-2999 (((-3 $ "failed") $ $) 19)) (-3763 (($ $) 51)) (-2105 (((-394 $) $) 52)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-1330 (((-108) $) 53)) (-3482 (((-108) $) 31)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-3573 (((-394 $) $) 50)) (-2469 (((-3 $ "failed") $ $) 42)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43)) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 39)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24)))
-(((-1127) (-129)) (T -1127))
-((-1330 (*1 *2 *1) (-12 (-4 *1 (-1127)) (-5 *2 (-108)))) (-2105 (*1 *2 *1) (-12 (-5 *2 (-394 *1)) (-4 *1 (-1127)))) (-3763 (*1 *1 *1) (-4 *1 (-1127))) (-3573 (*1 *2 *1) (-12 (-5 *2 (-394 *1)) (-4 *1 (-1127)))))
-(-13 (-427) (-10 -8 (-15 -1330 ((-108) $)) (-15 -2105 ((-394 $) $)) (-15 -3763 ($ $)) (-15 -3573 ((-394 $) $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-563 (-794)) . T) ((-158) . T) ((-267) . T) ((-427) . T) ((-515) . T) ((-591 $) . T) ((-657 $) . T) ((-666) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3015 (((-1133 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1133 |#1| |#3| |#5|)) 23)))
-(((-1128 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3015 ((-1133 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1133 |#1| |#3| |#5|)))) (-973) (-973) (-1087) (-1087) |#1| |#2|) (T -1128))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1133 *5 *7 *9)) (-4 *5 (-973)) (-4 *6 (-973)) (-14 *7 (-1087)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1133 *6 *8 *10)) (-5 *1 (-1128 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1087)))))
-(-10 -7 (-15 -3015 ((-1133 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1133 |#1| |#3| |#5|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3716 (((-589 (-1001)) $) 74)) (-2354 (((-1087) $) 103)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 51 (|has| |#1| (-515)))) (-3950 (($ $) 52 (|has| |#1| (-515)))) (-3226 (((-108) $) 54 (|has| |#1| (-515)))) (-1756 (($ $ (-523)) 98) (($ $ (-523) (-523)) 97)) (-2736 (((-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))) $) 105)) (-3695 (($ $) 135 (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) 118 (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) 19)) (-3763 (($ $) 162 (|has| |#1| (-339)))) (-2105 (((-394 $) $) 163 (|has| |#1| (-339)))) (-3584 (($ $) 117 (|has| |#1| (-37 (-383 (-523)))))) (-3684 (((-108) $ $) 153 (|has| |#1| (-339)))) (-3669 (($ $) 134 (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) 119 (|has| |#1| (-37 (-383 (-523)))))) (-3223 (($ (-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|)))) 174)) (-3717 (($ $) 133 (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) 120 (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) 17 T CONST)) (-2501 (($ $ $) 157 (|has| |#1| (-339)))) (-3142 (($ $) 60)) (-4211 (((-3 $ "failed") $) 34)) (-2015 (((-383 (-883 |#1|)) $ (-523)) 172 (|has| |#1| (-515))) (((-383 (-883 |#1|)) $ (-523) (-523)) 171 (|has| |#1| (-515)))) (-2486 (($ $ $) 156 (|has| |#1| (-339)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 151 (|has| |#1| (-339)))) (-1330 (((-108) $) 164 (|has| |#1| (-339)))) (-2294 (((-108) $) 73)) (-2188 (($) 145 (|has| |#1| (-37 (-383 (-523)))))) (-1500 (((-523) $) 100) (((-523) $ (-523)) 99)) (-3482 (((-108) $) 31)) (-1324 (($ $ (-523)) 116 (|has| |#1| (-37 (-383 (-523)))))) (-3059 (($ $ (-852)) 101)) (-2950 (($ (-1 |#1| (-523)) $) 173)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 160 (|has| |#1| (-339)))) (-4060 (((-108) $) 62)) (-3694 (($ |#1| (-523)) 61) (($ $ (-1001) (-523)) 76) (($ $ (-589 (-1001)) (-589 (-523))) 75)) (-3015 (($ (-1 |#1| |#1|) $) 63)) (-2062 (($ $) 142 (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) 65)) (-3119 ((|#1| $) 66)) (-2012 (($ (-589 $)) 149 (|has| |#1| (-339))) (($ $ $) 148 (|has| |#1| (-339)))) (-3841 (((-1070) $) 9)) (-3071 (($ $) 165 (|has| |#1| (-339)))) (-2669 (($ $) 170 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087)) 169 (-3255 (-12 (|has| |#1| (-29 (-523))) (|has| |#1| (-889)) (|has| |#1| (-1109)) (|has| |#1| (-37 (-383 (-523))))) (-12 (|has| |#1| (-15 -3716 ((-589 (-1087)) |#1|))) (|has| |#1| (-15 -2669 (|#1| |#1| (-1087)))) (|has| |#1| (-37 (-383 (-523)))))))) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 150 (|has| |#1| (-339)))) (-2056 (($ (-589 $)) 147 (|has| |#1| (-339))) (($ $ $) 146 (|has| |#1| (-339)))) (-3573 (((-394 $) $) 161 (|has| |#1| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 158 (|has| |#1| (-339)))) (-1361 (($ $ (-523)) 95)) (-2469 (((-3 $ "failed") $ $) 50 (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 152 (|has| |#1| (-339)))) (-1847 (($ $) 143 (|has| |#1| (-37 (-383 (-523)))))) (-1349 (((-1068 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-523)))))) (-3087 (((-710) $) 154 (|has| |#1| (-339)))) (-1502 ((|#1| $ (-523)) 104) (($ $ $) 81 (|has| (-523) (-1028)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 155 (|has| |#1| (-339)))) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) 89 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-1087) (-710)) 88 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-589 (-1087))) 87 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-1087)) 86 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-710)) 84 (|has| |#1| (-15 * (|#1| (-523) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (-1487 (((-523) $) 64)) (-3730 (($ $) 132 (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) 121 (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) 131 (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) 122 (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) 130 (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) 123 (|has| |#1| (-37 (-383 (-523)))))) (-3749 (($ $) 72)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 47 (|has| |#1| (-158))) (($ (-383 (-523))) 57 (|has| |#1| (-37 (-383 (-523))))) (($ $) 49 (|has| |#1| (-515)))) (-1234 ((|#1| $ (-523)) 59)) (-2301 (((-3 $ "failed") $) 48 (|has| |#1| (-134)))) (-1698 (((-710)) 29)) (-3882 ((|#1| $) 102)) (-3768 (($ $) 141 (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) 129 (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) 53 (|has| |#1| (-515)))) (-3743 (($ $) 140 (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) 128 (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) 139 (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) 127 (|has| |#1| (-37 (-383 (-523)))))) (-2523 ((|#1| $ (-523)) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-523)))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-3135 (($ $) 138 (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) 126 (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) 137 (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) 125 (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) 136 (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) 124 (|has| |#1| (-37 (-383 (-523)))))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 166 (|has| |#1| (-339)))) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) 93 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-1087) (-710)) 92 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-589 (-1087))) 91 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-1087)) 90 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-710)) 85 (|has| |#1| (-15 * (|#1| (-523) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (-4037 (((-108) $ $) 6)) (-4125 (($ $ |#1|) 58 (|has| |#1| (-339))) (($ $ $) 168 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 167 (|has| |#1| (-339))) (($ $ $) 144 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 115 (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-383 (-523)) $) 56 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 55 (|has| |#1| (-37 (-383 (-523)))))))
-(((-1129 |#1|) (-129) (-973)) (T -1129))
-((-3223 (*1 *1 *2) (-12 (-5 *2 (-1068 (-2 (|:| |k| (-523)) (|:| |c| *3)))) (-4 *3 (-973)) (-4 *1 (-1129 *3)))) (-2950 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-523))) (-4 *1 (-1129 *3)) (-4 *3 (-973)))) (-2015 (*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-4 *1 (-1129 *4)) (-4 *4 (-973)) (-4 *4 (-515)) (-5 *2 (-383 (-883 *4))))) (-2015 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-523)) (-4 *1 (-1129 *4)) (-4 *4 (-973)) (-4 *4 (-515)) (-5 *2 (-383 (-883 *4))))) (-2669 (*1 *1 *1) (-12 (-4 *1 (-1129 *2)) (-4 *2 (-973)) (-4 *2 (-37 (-383 (-523)))))) (-2669 (*1 *1 *1 *2) (-3255 (-12 (-5 *2 (-1087)) (-4 *1 (-1129 *3)) (-4 *3 (-973)) (-12 (-4 *3 (-29 (-523))) (-4 *3 (-889)) (-4 *3 (-1109)) (-4 *3 (-37 (-383 (-523)))))) (-12 (-5 *2 (-1087)) (-4 *1 (-1129 *3)) (-4 *3 (-973)) (-12 (|has| *3 (-15 -3716 ((-589 *2) *3))) (|has| *3 (-15 -2669 (*3 *3 *2))) (-4 *3 (-37 (-383 (-523)))))))))
-(-13 (-1147 |t#1| (-523)) (-10 -8 (-15 -3223 ($ (-1068 (-2 (|:| |k| (-523)) (|:| |c| |t#1|))))) (-15 -2950 ($ (-1 |t#1| (-523)) $)) (IF (|has| |t#1| (-515)) (PROGN (-15 -2015 ((-383 (-883 |t#1|)) $ (-523))) (-15 -2015 ((-383 (-883 |t#1|)) $ (-523) (-523)))) |%noBranch|) (IF (|has| |t#1| (-37 (-383 (-523)))) (PROGN (-15 -2669 ($ $)) (IF (|has| |t#1| (-15 -2669 (|t#1| |t#1| (-1087)))) (IF (|has| |t#1| (-15 -3716 ((-589 (-1087)) |t#1|))) (-15 -2669 ($ $ (-1087))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1109)) (IF (|has| |t#1| (-889)) (IF (|has| |t#1| (-29 (-523))) (-15 -2669 ($ $ (-1087))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-930)) (-6 (-1109))) |%noBranch|) (IF (|has| |t#1| (-339)) (-6 (-339)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-523)) . T) ((-25) . T) ((-37 #1=(-383 (-523))) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-37 |#1|) |has| |#1| (-158)) ((-37 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-34) |has| |#1| (-37 (-383 (-523)))) ((-91) |has| |#1| (-37 (-383 (-523)))) ((-97) . T) ((-107 #1# #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339)) (|has| |#1| (-158))) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) -3255 (|has| |#1| (-515)) (|has| |#1| (-339)) (|has| |#1| (-158))) ((-211) |has| |#1| (-15 * (|#1| (-523) |#1|))) ((-221) |has| |#1| (-339)) ((-261) |has| |#1| (-37 (-383 (-523)))) ((-263 $ $) |has| (-523) (-1028)) ((-267) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-284) |has| |#1| (-339)) ((-339) |has| |#1| (-339)) ((-427) |has| |#1| (-339)) ((-464) |has| |#1| (-37 (-383 (-523)))) ((-515) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-591 #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-591 |#1|) . T) ((-591 $) . T) ((-657 #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-657 |#1|) |has| |#1| (-158)) ((-657 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-666) . T) ((-831 (-1087)) -12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))) ((-902 |#1| #0# (-1001)) . T) ((-851) |has| |#1| (-339)) ((-930) |has| |#1| (-37 (-383 (-523)))) ((-979 #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-979 |#1|) . T) ((-979 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339)) (|has| |#1| (-158))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1109) |has| |#1| (-37 (-383 (-523)))) ((-1112) |has| |#1| (-37 (-383 (-523)))) ((-1127) |has| |#1| (-339)) ((-1147 |#1| #0#) . T))
-((-2388 (((-108) $) 12)) (-2898 (((-3 |#3| "failed") $) 17) (((-3 (-1087) "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL) (((-3 (-523) "failed") $) NIL)) (-1996 ((|#3| $) 14) (((-1087) $) NIL) (((-383 (-523)) $) NIL) (((-523) $) NIL)))
-(((-1130 |#1| |#2| |#3|) (-10 -8 (-15 -1996 ((-523) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1996 ((-1087) |#1|)) (-15 -2898 ((-3 (-1087) "failed") |#1|)) (-15 -1996 (|#3| |#1|)) (-15 -2898 ((-3 |#3| "failed") |#1|)) (-15 -2388 ((-108) |#1|))) (-1131 |#2| |#3|) (-973) (-1160 |#2|)) (T -1130))
-NIL
-(-10 -8 (-15 -1996 ((-523) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -1996 ((-1087) |#1|)) (-15 -2898 ((-3 (-1087) "failed") |#1|)) (-15 -1996 (|#3| |#1|)) (-15 -2898 ((-3 |#3| "failed") |#1|)) (-15 -2388 ((-108) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3964 ((|#2| $) 231 (-2819 (|has| |#2| (-284)) (|has| |#1| (-339))))) (-3716 (((-589 (-1001)) $) 74)) (-2354 (((-1087) $) 103)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 51 (|has| |#1| (-515)))) (-3950 (($ $) 52 (|has| |#1| (-515)))) (-3226 (((-108) $) 54 (|has| |#1| (-515)))) (-1756 (($ $ (-523)) 98) (($ $ (-523) (-523)) 97)) (-2736 (((-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))) $) 105)) (-2088 ((|#2| $) 267)) (-4146 (((-3 |#2| "failed") $) 263)) (-3781 ((|#2| $) 264)) (-3695 (($ $) 135 (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) 118 (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) 19)) (-2319 (((-394 (-1083 $)) (-1083 $)) 240 (-2819 (|has| |#2| (-840)) (|has| |#1| (-339))))) (-3763 (($ $) 162 (|has| |#1| (-339)))) (-2105 (((-394 $) $) 163 (|has| |#1| (-339)))) (-3584 (($ $) 117 (|has| |#1| (-37 (-383 (-523)))))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) 237 (-2819 (|has| |#2| (-840)) (|has| |#1| (-339))))) (-3684 (((-108) $ $) 153 (|has| |#1| (-339)))) (-3669 (($ $) 134 (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) 119 (|has| |#1| (-37 (-383 (-523)))))) (-2035 (((-523) $) 249 (-2819 (|has| |#2| (-759)) (|has| |#1| (-339))))) (-3223 (($ (-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|)))) 174)) (-3717 (($ $) 133 (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) 120 (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) 17 T CONST)) (-2898 (((-3 |#2| "failed") $) 270) (((-3 (-523) "failed") $) 259 (-2819 (|has| |#2| (-964 (-523))) (|has| |#1| (-339)))) (((-3 (-383 (-523)) "failed") $) 257 (-2819 (|has| |#2| (-964 (-523))) (|has| |#1| (-339)))) (((-3 (-1087) "failed") $) 242 (-2819 (|has| |#2| (-964 (-1087))) (|has| |#1| (-339))))) (-1996 ((|#2| $) 269) (((-523) $) 260 (-2819 (|has| |#2| (-964 (-523))) (|has| |#1| (-339)))) (((-383 (-523)) $) 258 (-2819 (|has| |#2| (-964 (-523))) (|has| |#1| (-339)))) (((-1087) $) 243 (-2819 (|has| |#2| (-964 (-1087))) (|has| |#1| (-339))))) (-3113 (($ $) 266) (($ (-523) $) 265)) (-2501 (($ $ $) 157 (|has| |#1| (-339)))) (-3142 (($ $) 60)) (-2203 (((-629 |#2|) (-629 $)) 221 (|has| |#1| (-339))) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) 220 (|has| |#1| (-339))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 219 (-2819 (|has| |#2| (-585 (-523))) (|has| |#1| (-339)))) (((-629 (-523)) (-629 $)) 218 (-2819 (|has| |#2| (-585 (-523))) (|has| |#1| (-339))))) (-4211 (((-3 $ "failed") $) 34)) (-2015 (((-383 (-883 |#1|)) $ (-523)) 172 (|has| |#1| (-515))) (((-383 (-883 |#1|)) $ (-523) (-523)) 171 (|has| |#1| (-515)))) (-3461 (($) 233 (-2819 (|has| |#2| (-508)) (|has| |#1| (-339))))) (-2486 (($ $ $) 156 (|has| |#1| (-339)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 151 (|has| |#1| (-339)))) (-1330 (((-108) $) 164 (|has| |#1| (-339)))) (-3702 (((-108) $) 247 (-2819 (|has| |#2| (-759)) (|has| |#1| (-339))))) (-2294 (((-108) $) 73)) (-2188 (($) 145 (|has| |#1| (-37 (-383 (-523)))))) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 225 (-2819 (|has| |#2| (-817 (-355))) (|has| |#1| (-339)))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 224 (-2819 (|has| |#2| (-817 (-523))) (|has| |#1| (-339))))) (-1500 (((-523) $) 100) (((-523) $ (-523)) 99)) (-3482 (((-108) $) 31)) (-2364 (($ $) 229 (|has| |#1| (-339)))) (-2164 ((|#2| $) 227 (|has| |#1| (-339)))) (-1324 (($ $ (-523)) 116 (|has| |#1| (-37 (-383 (-523)))))) (-1289 (((-3 $ "failed") $) 261 (-2819 (|has| |#2| (-1063)) (|has| |#1| (-339))))) (-4050 (((-108) $) 248 (-2819 (|has| |#2| (-759)) (|has| |#1| (-339))))) (-3059 (($ $ (-852)) 101)) (-2950 (($ (-1 |#1| (-523)) $) 173)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 160 (|has| |#1| (-339)))) (-4060 (((-108) $) 62)) (-3694 (($ |#1| (-523)) 61) (($ $ (-1001) (-523)) 76) (($ $ (-589 (-1001)) (-589 (-523))) 75)) (-3268 (($ $ $) 251 (-2819 (|has| |#2| (-786)) (|has| |#1| (-339))))) (-2644 (($ $ $) 252 (-2819 (|has| |#2| (-786)) (|has| |#1| (-339))))) (-3015 (($ (-1 |#1| |#1|) $) 63) (($ (-1 |#2| |#2|) $) 213 (|has| |#1| (-339)))) (-2062 (($ $) 142 (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) 65)) (-3119 ((|#1| $) 66)) (-2012 (($ (-589 $)) 149 (|has| |#1| (-339))) (($ $ $) 148 (|has| |#1| (-339)))) (-3794 (($ (-523) |#2|) 268)) (-3841 (((-1070) $) 9)) (-3071 (($ $) 165 (|has| |#1| (-339)))) (-2669 (($ $) 170 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087)) 169 (-3255 (-12 (|has| |#1| (-29 (-523))) (|has| |#1| (-889)) (|has| |#1| (-1109)) (|has| |#1| (-37 (-383 (-523))))) (-12 (|has| |#1| (-15 -3716 ((-589 (-1087)) |#1|))) (|has| |#1| (-15 -2669 (|#1| |#1| (-1087)))) (|has| |#1| (-37 (-383 (-523)))))))) (-4105 (($) 262 (-2819 (|has| |#2| (-1063)) (|has| |#1| (-339))) CONST)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 150 (|has| |#1| (-339)))) (-2056 (($ (-589 $)) 147 (|has| |#1| (-339))) (($ $ $) 146 (|has| |#1| (-339)))) (-3934 (($ $) 232 (-2819 (|has| |#2| (-284)) (|has| |#1| (-339))))) (-1250 ((|#2| $) 235 (-2819 (|has| |#2| (-508)) (|has| |#1| (-339))))) (-1893 (((-394 (-1083 $)) (-1083 $)) 238 (-2819 (|has| |#2| (-840)) (|has| |#1| (-339))))) (-4034 (((-394 (-1083 $)) (-1083 $)) 239 (-2819 (|has| |#2| (-840)) (|has| |#1| (-339))))) (-3573 (((-394 $) $) 161 (|has| |#1| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 158 (|has| |#1| (-339)))) (-1361 (($ $ (-523)) 95)) (-2469 (((-3 $ "failed") $ $) 50 (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 152 (|has| |#1| (-339)))) (-1847 (($ $) 143 (|has| |#1| (-37 (-383 (-523)))))) (-1349 (((-1068 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-523))))) (($ $ (-1087) |#2|) 212 (-2819 (|has| |#2| (-484 (-1087) |#2|)) (|has| |#1| (-339)))) (($ $ (-589 (-1087)) (-589 |#2|)) 211 (-2819 (|has| |#2| (-484 (-1087) |#2|)) (|has| |#1| (-339)))) (($ $ (-589 (-271 |#2|))) 210 (-2819 (|has| |#2| (-286 |#2|)) (|has| |#1| (-339)))) (($ $ (-271 |#2|)) 209 (-2819 (|has| |#2| (-286 |#2|)) (|has| |#1| (-339)))) (($ $ |#2| |#2|) 208 (-2819 (|has| |#2| (-286 |#2|)) (|has| |#1| (-339)))) (($ $ (-589 |#2|) (-589 |#2|)) 207 (-2819 (|has| |#2| (-286 |#2|)) (|has| |#1| (-339))))) (-3087 (((-710) $) 154 (|has| |#1| (-339)))) (-1502 ((|#1| $ (-523)) 104) (($ $ $) 81 (|has| (-523) (-1028))) (($ $ |#2|) 206 (-2819 (|has| |#2| (-263 |#2| |#2|)) (|has| |#1| (-339))))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 155 (|has| |#1| (-339)))) (-4024 (($ $ (-1 |#2| |#2|)) 217 (|has| |#1| (-339))) (($ $ (-1 |#2| |#2|) (-710)) 216 (|has| |#1| (-339))) (($ $ (-710)) 84 (-3255 (-2819 (|has| |#2| (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $) 82 (-3255 (-2819 (|has| |#2| (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-589 (-1087)) (-589 (-710))) 89 (-3255 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|)))))) (($ $ (-1087) (-710)) 88 (-3255 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|)))))) (($ $ (-589 (-1087))) 87 (-3255 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|)))))) (($ $ (-1087)) 86 (-3255 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))))) (-3758 (($ $) 230 (|has| |#1| (-339)))) (-2171 ((|#2| $) 228 (|has| |#1| (-339)))) (-1487 (((-523) $) 64)) (-3730 (($ $) 132 (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) 121 (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) 131 (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) 122 (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) 130 (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) 123 (|has| |#1| (-37 (-383 (-523)))))) (-3077 (((-203) $) 246 (-2819 (|has| |#2| (-949)) (|has| |#1| (-339)))) (((-355) $) 245 (-2819 (|has| |#2| (-949)) (|has| |#1| (-339)))) (((-499) $) 244 (-2819 (|has| |#2| (-564 (-499))) (|has| |#1| (-339)))) (((-823 (-355)) $) 223 (-2819 (|has| |#2| (-564 (-823 (-355)))) (|has| |#1| (-339)))) (((-823 (-523)) $) 222 (-2819 (|has| |#2| (-564 (-823 (-523)))) (|has| |#1| (-339))))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) 236 (-2819 (-2819 (|has| $ (-134)) (|has| |#2| (-840))) (|has| |#1| (-339))))) (-3749 (($ $) 72)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 47 (|has| |#1| (-158))) (($ |#2|) 271) (($ (-1087)) 241 (-2819 (|has| |#2| (-964 (-1087))) (|has| |#1| (-339)))) (($ (-383 (-523))) 57 (|has| |#1| (-37 (-383 (-523))))) (($ $) 49 (|has| |#1| (-515)))) (-1234 ((|#1| $ (-523)) 59)) (-2301 (((-3 $ "failed") $) 48 (-3255 (-2819 (-3255 (|has| |#2| (-134)) (-2819 (|has| $ (-134)) (|has| |#2| (-840)))) (|has| |#1| (-339))) (|has| |#1| (-134))))) (-1698 (((-710)) 29)) (-3882 ((|#1| $) 102)) (-1516 ((|#2| $) 234 (-2819 (|has| |#2| (-508)) (|has| |#1| (-339))))) (-3768 (($ $) 141 (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) 129 (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) 53 (|has| |#1| (-515)))) (-3743 (($ $) 140 (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) 128 (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) 139 (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) 127 (|has| |#1| (-37 (-383 (-523)))))) (-2523 ((|#1| $ (-523)) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-523)))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-3135 (($ $) 138 (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) 126 (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) 137 (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) 125 (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) 136 (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) 124 (|has| |#1| (-37 (-383 (-523)))))) (-3984 (($ $) 250 (-2819 (|has| |#2| (-759)) (|has| |#1| (-339))))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 166 (|has| |#1| (-339)))) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ (-1 |#2| |#2|)) 215 (|has| |#1| (-339))) (($ $ (-1 |#2| |#2|) (-710)) 214 (|has| |#1| (-339))) (($ $ (-710)) 85 (-3255 (-2819 (|has| |#2| (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $) 83 (-3255 (-2819 (|has| |#2| (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-589 (-1087)) (-589 (-710))) 93 (-3255 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|)))))) (($ $ (-1087) (-710)) 92 (-3255 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|)))))) (($ $ (-589 (-1087))) 91 (-3255 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|)))))) (($ $ (-1087)) 90 (-3255 (-2819 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))))) (-4078 (((-108) $ $) 254 (-2819 (|has| |#2| (-786)) (|has| |#1| (-339))))) (-4061 (((-108) $ $) 255 (-2819 (|has| |#2| (-786)) (|has| |#1| (-339))))) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 253 (-2819 (|has| |#2| (-786)) (|has| |#1| (-339))))) (-4052 (((-108) $ $) 256 (-2819 (|has| |#2| (-786)) (|has| |#1| (-339))))) (-4125 (($ $ |#1|) 58 (|has| |#1| (-339))) (($ $ $) 168 (|has| |#1| (-339))) (($ |#2| |#2|) 226 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 167 (|has| |#1| (-339))) (($ $ $) 144 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 115 (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ |#2|) 205 (|has| |#1| (-339))) (($ |#2| $) 204 (|has| |#1| (-339))) (($ (-383 (-523)) $) 56 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 55 (|has| |#1| (-37 (-383 (-523)))))))
-(((-1131 |#1| |#2|) (-129) (-973) (-1160 |t#1|)) (T -1131))
-((-1487 (*1 *2 *1) (-12 (-4 *1 (-1131 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1160 *3)) (-5 *2 (-523)))) (-3976 (*1 *1 *2) (-12 (-4 *3 (-973)) (-4 *1 (-1131 *3 *2)) (-4 *2 (-1160 *3)))) (-3794 (*1 *1 *2 *3) (-12 (-5 *2 (-523)) (-4 *4 (-973)) (-4 *1 (-1131 *4 *3)) (-4 *3 (-1160 *4)))) (-2088 (*1 *2 *1) (-12 (-4 *1 (-1131 *3 *2)) (-4 *3 (-973)) (-4 *2 (-1160 *3)))) (-3113 (*1 *1 *1) (-12 (-4 *1 (-1131 *2 *3)) (-4 *2 (-973)) (-4 *3 (-1160 *2)))) (-3113 (*1 *1 *2 *1) (-12 (-5 *2 (-523)) (-4 *1 (-1131 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1160 *3)))) (-3781 (*1 *2 *1) (-12 (-4 *1 (-1131 *3 *2)) (-4 *3 (-973)) (-4 *2 (-1160 *3)))) (-4146 (*1 *2 *1) (|partial| -12 (-4 *1 (-1131 *3 *2)) (-4 *3 (-973)) (-4 *2 (-1160 *3)))))
-(-13 (-1129 |t#1|) (-964 |t#2|) (-10 -8 (-15 -3794 ($ (-523) |t#2|)) (-15 -1487 ((-523) $)) (-15 -2088 (|t#2| $)) (-15 -3113 ($ $)) (-15 -3113 ($ (-523) $)) (-15 -3976 ($ |t#2|)) (-15 -3781 (|t#2| $)) (-15 -4146 ((-3 |t#2| "failed") $)) (IF (|has| |t#1| (-339)) (-6 (-921 |t#2|)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-523)) . T) ((-25) . T) ((-37 #1=(-383 (-523))) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-37 |#1|) |has| |#1| (-158)) ((-37 |#2|) |has| |#1| (-339)) ((-37 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-34) |has| |#1| (-37 (-383 (-523)))) ((-91) |has| |#1| (-37 (-383 (-523)))) ((-97) . T) ((-107 #1# #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-107 |#1| |#1|) . T) ((-107 |#2| |#2|) |has| |#1| (-339)) ((-107 $ $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339)) (|has| |#1| (-158))) ((-124) . T) ((-134) -3255 (-12 (|has| |#1| (-339)) (|has| |#2| (-134))) (|has| |#1| (-134))) ((-136) -3255 (-12 (|has| |#1| (-339)) (|has| |#2| (-136))) (|has| |#1| (-136))) ((-563 (-794)) . T) ((-158) -3255 (|has| |#1| (-515)) (|has| |#1| (-339)) (|has| |#1| (-158))) ((-564 (-203)) -12 (|has| |#1| (-339)) (|has| |#2| (-949))) ((-564 (-355)) -12 (|has| |#1| (-339)) (|has| |#2| (-949))) ((-564 (-499)) -12 (|has| |#1| (-339)) (|has| |#2| (-564 (-499)))) ((-564 (-823 (-355))) -12 (|has| |#1| (-339)) (|has| |#2| (-564 (-823 (-355))))) ((-564 (-823 (-523))) -12 (|has| |#1| (-339)) (|has| |#2| (-564 (-823 (-523))))) ((-209 |#2|) |has| |#1| (-339)) ((-211) -3255 (-12 (|has| |#1| (-339)) (|has| |#2| (-211))) (|has| |#1| (-15 * (|#1| (-523) |#1|)))) ((-221) |has| |#1| (-339)) ((-261) |has| |#1| (-37 (-383 (-523)))) ((-263 |#2| $) -12 (|has| |#1| (-339)) (|has| |#2| (-263 |#2| |#2|))) ((-263 $ $) |has| (-523) (-1028)) ((-267) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-284) |has| |#1| (-339)) ((-286 |#2|) -12 (|has| |#1| (-339)) (|has| |#2| (-286 |#2|))) ((-339) |has| |#1| (-339)) ((-314 |#2|) |has| |#1| (-339)) ((-353 |#2|) |has| |#1| (-339)) ((-376 |#2|) |has| |#1| (-339)) ((-427) |has| |#1| (-339)) ((-464) |has| |#1| (-37 (-383 (-523)))) ((-484 (-1087) |#2|) -12 (|has| |#1| (-339)) (|has| |#2| (-484 (-1087) |#2|))) ((-484 |#2| |#2|) -12 (|has| |#1| (-339)) (|has| |#2| (-286 |#2|))) ((-515) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-591 #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-591 |#1|) . T) ((-591 |#2|) |has| |#1| (-339)) ((-591 $) . T) ((-585 (-523)) -12 (|has| |#1| (-339)) (|has| |#2| (-585 (-523)))) ((-585 |#2|) |has| |#1| (-339)) ((-657 #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-657 |#1|) |has| |#1| (-158)) ((-657 |#2|) |has| |#1| (-339)) ((-657 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-666) . T) ((-730) -12 (|has| |#1| (-339)) (|has| |#2| (-759))) ((-731) -12 (|has| |#1| (-339)) (|has| |#2| (-759))) ((-733) -12 (|has| |#1| (-339)) (|has| |#2| (-759))) ((-734) -12 (|has| |#1| (-339)) (|has| |#2| (-759))) ((-759) -12 (|has| |#1| (-339)) (|has| |#2| (-759))) ((-784) -12 (|has| |#1| (-339)) (|has| |#2| (-759))) ((-786) -3255 (-12 (|has| |#1| (-339)) (|has| |#2| (-786))) (-12 (|has| |#1| (-339)) (|has| |#2| (-759)))) ((-831 (-1087)) -3255 (-12 (|has| |#1| (-339)) (|has| |#2| (-831 (-1087)))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))) ((-817 (-355)) -12 (|has| |#1| (-339)) (|has| |#2| (-817 (-355)))) ((-817 (-523)) -12 (|has| |#1| (-339)) (|has| |#2| (-817 (-523)))) ((-815 |#2|) |has| |#1| (-339)) ((-840) -12 (|has| |#1| (-339)) (|has| |#2| (-840))) ((-902 |#1| #0# (-1001)) . T) ((-851) |has| |#1| (-339)) ((-921 |#2|) |has| |#1| (-339)) ((-930) |has| |#1| (-37 (-383 (-523)))) ((-949) -12 (|has| |#1| (-339)) (|has| |#2| (-949))) ((-964 (-383 (-523))) -12 (|has| |#1| (-339)) (|has| |#2| (-964 (-523)))) ((-964 (-523)) -12 (|has| |#1| (-339)) (|has| |#2| (-964 (-523)))) ((-964 (-1087)) -12 (|has| |#1| (-339)) (|has| |#2| (-964 (-1087)))) ((-964 |#2|) . T) ((-979 #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-979 |#1|) . T) ((-979 |#2|) |has| |#1| (-339)) ((-979 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339)) (|has| |#1| (-158))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1063) -12 (|has| |#1| (-339)) (|has| |#2| (-1063))) ((-1109) |has| |#1| (-37 (-383 (-523)))) ((-1112) |has| |#1| (-37 (-383 (-523)))) ((-1123) |has| |#1| (-339)) ((-1127) |has| |#1| (-339)) ((-1129 |#1|) . T) ((-1147 |#1| #0#) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 70)) (-3964 ((|#2| $) NIL (-12 (|has| |#2| (-284)) (|has| |#1| (-339))))) (-3716 (((-589 (-1001)) $) NIL)) (-2354 (((-1087) $) 88)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-1756 (($ $ (-523)) 97) (($ $ (-523) (-523)) 99)) (-2736 (((-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))) $) 47)) (-2088 ((|#2| $) 11)) (-4146 (((-3 |#2| "failed") $) 30)) (-3781 ((|#2| $) 31)) (-3695 (($ $) 192 (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) 168 (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (-12 (|has| |#2| (-840)) (|has| |#1| (-339))))) (-3763 (($ $) NIL (|has| |#1| (-339)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3584 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (-12 (|has| |#2| (-840)) (|has| |#1| (-339))))) (-3684 (((-108) $ $) NIL (|has| |#1| (-339)))) (-3669 (($ $) 188 (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) 164 (|has| |#1| (-37 (-383 (-523)))))) (-2035 (((-523) $) NIL (-12 (|has| |#2| (-759)) (|has| |#1| (-339))))) (-3223 (($ (-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|)))) 57)) (-3717 (($ $) 196 (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) 172 (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#2| "failed") $) 144) (((-3 (-523) "failed") $) NIL (-12 (|has| |#2| (-964 (-523))) (|has| |#1| (-339)))) (((-3 (-383 (-523)) "failed") $) NIL (-12 (|has| |#2| (-964 (-523))) (|has| |#1| (-339)))) (((-3 (-1087) "failed") $) NIL (-12 (|has| |#2| (-964 (-1087))) (|has| |#1| (-339))))) (-1996 ((|#2| $) 143) (((-523) $) NIL (-12 (|has| |#2| (-964 (-523))) (|has| |#1| (-339)))) (((-383 (-523)) $) NIL (-12 (|has| |#2| (-964 (-523))) (|has| |#1| (-339)))) (((-1087) $) NIL (-12 (|has| |#2| (-964 (-1087))) (|has| |#1| (-339))))) (-3113 (($ $) 61) (($ (-523) $) 24)) (-2501 (($ $ $) NIL (|has| |#1| (-339)))) (-3142 (($ $) NIL)) (-2203 (((-629 |#2|) (-629 $)) NIL (|has| |#1| (-339))) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) NIL (|has| |#1| (-339))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (-12 (|has| |#2| (-585 (-523))) (|has| |#1| (-339)))) (((-629 (-523)) (-629 $)) NIL (-12 (|has| |#2| (-585 (-523))) (|has| |#1| (-339))))) (-4211 (((-3 $ "failed") $) 77)) (-2015 (((-383 (-883 |#1|)) $ (-523)) 112 (|has| |#1| (-515))) (((-383 (-883 |#1|)) $ (-523) (-523)) 114 (|has| |#1| (-515)))) (-3461 (($) NIL (-12 (|has| |#2| (-508)) (|has| |#1| (-339))))) (-2486 (($ $ $) NIL (|has| |#1| (-339)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#1| (-339)))) (-1330 (((-108) $) NIL (|has| |#1| (-339)))) (-3702 (((-108) $) NIL (-12 (|has| |#2| (-759)) (|has| |#1| (-339))))) (-2294 (((-108) $) 64)) (-2188 (($) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| |#2| (-817 (-355))) (|has| |#1| (-339)))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| |#2| (-817 (-523))) (|has| |#1| (-339))))) (-1500 (((-523) $) 93) (((-523) $ (-523)) 95)) (-3482 (((-108) $) NIL)) (-2364 (($ $) NIL (|has| |#1| (-339)))) (-2164 ((|#2| $) 151 (|has| |#1| (-339)))) (-1324 (($ $ (-523)) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1289 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1063)) (|has| |#1| (-339))))) (-4050 (((-108) $) NIL (-12 (|has| |#2| (-759)) (|has| |#1| (-339))))) (-3059 (($ $ (-852)) 136)) (-2950 (($ (-1 |#1| (-523)) $) 132)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-523)) 19) (($ $ (-1001) (-523)) NIL) (($ $ (-589 (-1001)) (-589 (-523))) NIL)) (-3268 (($ $ $) NIL (-12 (|has| |#2| (-786)) (|has| |#1| (-339))))) (-2644 (($ $ $) NIL (-12 (|has| |#2| (-786)) (|has| |#1| (-339))))) (-3015 (($ (-1 |#1| |#1|) $) 129) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-339)))) (-2062 (($ $) 162 (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3794 (($ (-523) |#2|) 10)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 145 (|has| |#1| (-339)))) (-2669 (($ $) 214 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087)) 219 (-3255 (-12 (|has| |#1| (-15 -2669 (|#1| |#1| (-1087)))) (|has| |#1| (-15 -3716 ((-589 (-1087)) |#1|))) (|has| |#1| (-37 (-383 (-523))))) (-12 (|has| |#1| (-29 (-523))) (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-889)) (|has| |#1| (-1109)))))) (-4105 (($) NIL (-12 (|has| |#2| (-1063)) (|has| |#1| (-339))) CONST)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-339)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3934 (($ $) NIL (-12 (|has| |#2| (-284)) (|has| |#1| (-339))))) (-1250 ((|#2| $) NIL (-12 (|has| |#2| (-508)) (|has| |#1| (-339))))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (-12 (|has| |#2| (-840)) (|has| |#1| (-339))))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (-12 (|has| |#2| (-840)) (|has| |#1| (-339))))) (-3573 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-1361 (($ $ (-523)) 126)) (-2469 (((-3 $ "failed") $ $) 116 (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-1847 (($ $) 160 (|has| |#1| (-37 (-383 (-523)))))) (-1349 (((-1068 |#1|) $ |#1|) 85 (|has| |#1| (-15 ** (|#1| |#1| (-523))))) (($ $ (-1087) |#2|) NIL (-12 (|has| |#2| (-484 (-1087) |#2|)) (|has| |#1| (-339)))) (($ $ (-589 (-1087)) (-589 |#2|)) NIL (-12 (|has| |#2| (-484 (-1087) |#2|)) (|has| |#1| (-339)))) (($ $ (-589 (-271 |#2|))) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#1| (-339)))) (($ $ (-271 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#1| (-339)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#1| (-339)))) (($ $ (-589 |#2|) (-589 |#2|)) NIL (-12 (|has| |#2| (-286 |#2|)) (|has| |#1| (-339))))) (-3087 (((-710) $) NIL (|has| |#1| (-339)))) (-1502 ((|#1| $ (-523)) 91) (($ $ $) 79 (|has| (-523) (-1028))) (($ $ |#2|) NIL (-12 (|has| |#2| (-263 |#2| |#2|)) (|has| |#1| (-339))))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-4024 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-339))) (($ $ (-1 |#2| |#2|) (-710)) NIL (|has| |#1| (-339))) (($ $ (-710)) NIL (-3255 (-12 (|has| |#2| (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $) 137 (-3255 (-12 (|has| |#2| (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-3255 (-12 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-1087) (-710)) NIL (-3255 (-12 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-589 (-1087))) NIL (-3255 (-12 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-1087)) 140 (-3255 (-12 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))))) (-3758 (($ $) NIL (|has| |#1| (-339)))) (-2171 ((|#2| $) 152 (|has| |#1| (-339)))) (-1487 (((-523) $) 12)) (-3730 (($ $) 198 (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) 174 (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) 194 (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) 170 (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) 190 (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) 166 (|has| |#1| (-37 (-383 (-523)))))) (-3077 (((-203) $) NIL (-12 (|has| |#2| (-949)) (|has| |#1| (-339)))) (((-355) $) NIL (-12 (|has| |#2| (-949)) (|has| |#1| (-339)))) (((-499) $) NIL (-12 (|has| |#2| (-564 (-499))) (|has| |#1| (-339)))) (((-823 (-355)) $) NIL (-12 (|has| |#2| (-564 (-823 (-355)))) (|has| |#1| (-339)))) (((-823 (-523)) $) NIL (-12 (|has| |#2| (-564 (-823 (-523)))) (|has| |#1| (-339))))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#2| (-840)) (|has| |#1| (-339))))) (-3749 (($ $) 124)) (-3976 (((-794) $) 245) (($ (-523)) 23) (($ |#1|) 21 (|has| |#1| (-158))) (($ |#2|) 20) (($ (-1087)) NIL (-12 (|has| |#2| (-964 (-1087))) (|has| |#1| (-339)))) (($ (-383 (-523))) 155 (|has| |#1| (-37 (-383 (-523))))) (($ $) NIL (|has| |#1| (-515)))) (-1234 ((|#1| $ (-523)) 74)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#2| (-840)) (|has| |#1| (-339))) (-12 (|has| |#2| (-134)) (|has| |#1| (-339))) (|has| |#1| (-134))))) (-1698 (((-710)) 142)) (-3882 ((|#1| $) 90)) (-1516 ((|#2| $) NIL (-12 (|has| |#2| (-508)) (|has| |#1| (-339))))) (-3768 (($ $) 204 (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) 180 (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3743 (($ $) 200 (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) 176 (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) 208 (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) 184 (|has| |#1| (-37 (-383 (-523)))))) (-2523 ((|#1| $ (-523)) 122 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-523)))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-3135 (($ $) 210 (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) 186 (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) 206 (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) 182 (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) 202 (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) 178 (|has| |#1| (-37 (-383 (-523)))))) (-3984 (($ $) NIL (-12 (|has| |#2| (-759)) (|has| |#1| (-339))))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339)))) (-1428 (($) 13 T CONST)) (-1440 (($) 17 T CONST)) (-1943 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-339))) (($ $ (-1 |#2| |#2|) (-710)) NIL (|has| |#1| (-339))) (($ $ (-710)) NIL (-3255 (-12 (|has| |#2| (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $) NIL (-3255 (-12 (|has| |#2| (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-3255 (-12 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-1087) (-710)) NIL (-3255 (-12 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-589 (-1087))) NIL (-3255 (-12 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-1087)) NIL (-3255 (-12 (|has| |#2| (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))))) (-4078 (((-108) $ $) NIL (-12 (|has| |#2| (-786)) (|has| |#1| (-339))))) (-4061 (((-108) $ $) NIL (-12 (|has| |#2| (-786)) (|has| |#1| (-339))))) (-4037 (((-108) $ $) 63)) (-4070 (((-108) $ $) NIL (-12 (|has| |#2| (-786)) (|has| |#1| (-339))))) (-4052 (((-108) $ $) NIL (-12 (|has| |#2| (-786)) (|has| |#1| (-339))))) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339))) (($ $ $) 149 (|has| |#1| (-339))) (($ |#2| |#2|) 150 (|has| |#1| (-339)))) (-4115 (($ $) 213) (($ $ $) 68)) (-4103 (($ $ $) 66)) (** (($ $ (-852)) NIL) (($ $ (-710)) 73) (($ $ (-523)) 146 (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 158 (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 139) (($ $ |#2|) 148 (|has| |#1| (-339))) (($ |#2| $) 147 (|has| |#1| (-339))) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))))
-(((-1132 |#1| |#2|) (-1131 |#1| |#2|) (-973) (-1160 |#1|)) (T -1132))
-NIL
-(-1131 |#1| |#2|)
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3964 (((-1161 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-284)) (|has| |#1| (-339))))) (-3716 (((-589 (-1001)) $) NIL)) (-2354 (((-1087) $) 10)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1161 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))) (|has| |#1| (-515))))) (-3950 (($ $) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1161 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))) (|has| |#1| (-515))))) (-3226 (((-108) $) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1161 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))) (|has| |#1| (-515))))) (-1756 (($ $ (-523)) NIL) (($ $ (-523) (-523)) NIL)) (-2736 (((-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|))) $) NIL)) (-2088 (((-1161 |#1| |#2| |#3|) $) NIL)) (-4146 (((-3 (-1161 |#1| |#2| |#3|) "failed") $) NIL)) (-3781 (((-1161 |#1| |#2| |#3|) $) NIL)) (-3695 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) NIL)) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))))) (-3763 (($ $) NIL (|has| |#1| (-339)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3584 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))))) (-3684 (((-108) $ $) NIL (|has| |#1| (-339)))) (-3669 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2035 (((-523) $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))))) (-3223 (($ (-1068 (-2 (|:| |k| (-523)) (|:| |c| |#1|)))) NIL)) (-3717 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-1161 |#1| |#2| |#3|) "failed") $) NIL) (((-3 (-1087) "failed") $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-964 (-1087))) (|has| |#1| (-339)))) (((-3 (-383 (-523)) "failed") $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-964 (-523))) (|has| |#1| (-339)))) (((-3 (-523) "failed") $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-964 (-523))) (|has| |#1| (-339))))) (-1996 (((-1161 |#1| |#2| |#3|) $) NIL) (((-1087) $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-964 (-1087))) (|has| |#1| (-339)))) (((-383 (-523)) $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-964 (-523))) (|has| |#1| (-339)))) (((-523) $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-964 (-523))) (|has| |#1| (-339))))) (-3113 (($ $) NIL) (($ (-523) $) NIL)) (-2501 (($ $ $) NIL (|has| |#1| (-339)))) (-3142 (($ $) NIL)) (-2203 (((-629 (-1161 |#1| |#2| |#3|)) (-629 $)) NIL (|has| |#1| (-339))) (((-2 (|:| -2373 (-629 (-1161 |#1| |#2| |#3|))) (|:| |vec| (-1169 (-1161 |#1| |#2| |#3|)))) (-629 $) (-1169 $)) NIL (|has| |#1| (-339))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-585 (-523))) (|has| |#1| (-339)))) (((-629 (-523)) (-629 $)) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-585 (-523))) (|has| |#1| (-339))))) (-4211 (((-3 $ "failed") $) NIL)) (-2015 (((-383 (-883 |#1|)) $ (-523)) NIL (|has| |#1| (-515))) (((-383 (-883 |#1|)) $ (-523) (-523)) NIL (|has| |#1| (-515)))) (-3461 (($) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-508)) (|has| |#1| (-339))))) (-2486 (($ $ $) NIL (|has| |#1| (-339)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#1| (-339)))) (-1330 (((-108) $) NIL (|has| |#1| (-339)))) (-3702 (((-108) $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))))) (-2294 (((-108) $) NIL)) (-2188 (($) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2483 (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-817 (-523))) (|has| |#1| (-339)))) (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-817 (-355))) (|has| |#1| (-339))))) (-1500 (((-523) $) NIL) (((-523) $ (-523)) NIL)) (-3482 (((-108) $) NIL)) (-2364 (($ $) NIL (|has| |#1| (-339)))) (-2164 (((-1161 |#1| |#2| |#3|) $) NIL (|has| |#1| (-339)))) (-1324 (($ $ (-523)) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1289 (((-3 $ "failed") $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-1063)) (|has| |#1| (-339))))) (-4050 (((-108) $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))))) (-3059 (($ $ (-852)) NIL)) (-2950 (($ (-1 |#1| (-523)) $) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-523)) 17) (($ $ (-1001) (-523)) NIL) (($ $ (-589 (-1001)) (-589 (-523))) NIL)) (-3268 (($ $ $) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1161 |#1| |#2| |#3|) (-786)) (|has| |#1| (-339)))))) (-2644 (($ $ $) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1161 |#1| |#2| |#3|) (-786)) (|has| |#1| (-339)))))) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1161 |#1| |#2| |#3|) (-1161 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-339)))) (-2062 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3794 (($ (-523) (-1161 |#1| |#2| |#3|)) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL (|has| |#1| (-339)))) (-2669 (($ $) 25 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087)) NIL (-3255 (-12 (|has| |#1| (-15 -2669 (|#1| |#1| (-1087)))) (|has| |#1| (-15 -3716 ((-589 (-1087)) |#1|))) (|has| |#1| (-37 (-383 (-523))))) (-12 (|has| |#1| (-29 (-523))) (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-889)) (|has| |#1| (-1109))))) (($ $ (-1165 |#2|)) 26 (|has| |#1| (-37 (-383 (-523)))))) (-4105 (($) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-1063)) (|has| |#1| (-339))) CONST)) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-339)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3934 (($ $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-284)) (|has| |#1| (-339))))) (-1250 (((-1161 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-508)) (|has| |#1| (-339))))) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))))) (-3573 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-1361 (($ $ (-523)) NIL)) (-2469 (((-3 $ "failed") $ $) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1161 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))) (|has| |#1| (-515))))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-1847 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1349 (((-1068 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-523))))) (($ $ (-1087) (-1161 |#1| |#2| |#3|)) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-484 (-1087) (-1161 |#1| |#2| |#3|))) (|has| |#1| (-339)))) (($ $ (-589 (-1087)) (-589 (-1161 |#1| |#2| |#3|))) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-484 (-1087) (-1161 |#1| |#2| |#3|))) (|has| |#1| (-339)))) (($ $ (-589 (-271 (-1161 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-286 (-1161 |#1| |#2| |#3|))) (|has| |#1| (-339)))) (($ $ (-271 (-1161 |#1| |#2| |#3|))) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-286 (-1161 |#1| |#2| |#3|))) (|has| |#1| (-339)))) (($ $ (-1161 |#1| |#2| |#3|) (-1161 |#1| |#2| |#3|)) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-286 (-1161 |#1| |#2| |#3|))) (|has| |#1| (-339)))) (($ $ (-589 (-1161 |#1| |#2| |#3|)) (-589 (-1161 |#1| |#2| |#3|))) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-286 (-1161 |#1| |#2| |#3|))) (|has| |#1| (-339))))) (-3087 (((-710) $) NIL (|has| |#1| (-339)))) (-1502 ((|#1| $ (-523)) NIL) (($ $ $) NIL (|has| (-523) (-1028))) (($ $ (-1161 |#1| |#2| |#3|)) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-263 (-1161 |#1| |#2| |#3|) (-1161 |#1| |#2| |#3|))) (|has| |#1| (-339))))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-4024 (($ $ (-1 (-1161 |#1| |#2| |#3|) (-1161 |#1| |#2| |#3|))) NIL (|has| |#1| (-339))) (($ $ (-1 (-1161 |#1| |#2| |#3|) (-1161 |#1| |#2| |#3|)) (-710)) NIL (|has| |#1| (-339))) (($ $ (-1165 |#2|)) 24) (($ $ (-710)) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $) 23 (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-1087) (-710)) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-589 (-1087))) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-1087)) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))))) (-3758 (($ $) NIL (|has| |#1| (-339)))) (-2171 (((-1161 |#1| |#2| |#3|) $) NIL (|has| |#1| (-339)))) (-1487 (((-523) $) NIL)) (-3730 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3077 (((-499) $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-564 (-499))) (|has| |#1| (-339)))) (((-355) $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-949)) (|has| |#1| (-339)))) (((-203) $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-949)) (|has| |#1| (-339)))) (((-823 (-355)) $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-564 (-823 (-355)))) (|has| |#1| (-339)))) (((-823 (-523)) $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-564 (-823 (-523)))) (|has| |#1| (-339))))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| (-1161 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))))) (-3749 (($ $) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#1|) NIL (|has| |#1| (-158))) (($ (-1161 |#1| |#2| |#3|)) NIL) (($ (-1165 |#2|)) 22) (($ (-1087)) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-964 (-1087))) (|has| |#1| (-339)))) (($ $) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1161 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))) (|has| |#1| (-515)))) (($ (-383 (-523))) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-964 (-523))) (|has| |#1| (-339))) (|has| |#1| (-37 (-383 (-523))))))) (-1234 ((|#1| $ (-523)) NIL)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| (-1161 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))) (-12 (|has| (-1161 |#1| |#2| |#3|) (-134)) (|has| |#1| (-339))) (|has| |#1| (-134))))) (-1698 (((-710)) NIL)) (-3882 ((|#1| $) 11)) (-1516 (((-1161 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-508)) (|has| |#1| (-339))))) (-3768 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1161 |#1| |#2| |#3|) (-840)) (|has| |#1| (-339))) (|has| |#1| (-515))))) (-3743 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2523 ((|#1| $ (-523)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-523)))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-3135 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3984 (($ $) NIL (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339)))) (-1428 (($) 19 T CONST)) (-1440 (($) 15 T CONST)) (-1943 (($ $ (-1 (-1161 |#1| |#2| |#3|) (-1161 |#1| |#2| |#3|))) NIL (|has| |#1| (-339))) (($ $ (-1 (-1161 |#1| |#2| |#3|) (-1161 |#1| |#2| |#3|)) (-710)) NIL (|has| |#1| (-339))) (($ $ (-710)) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-211)) (|has| |#1| (-339))) (|has| |#1| (-15 * (|#1| (-523) |#1|))))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-1087) (-710)) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-589 (-1087))) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087)))))) (($ $ (-1087)) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-831 (-1087))) (|has| |#1| (-339))) (-12 (|has| |#1| (-15 * (|#1| (-523) |#1|))) (|has| |#1| (-831 (-1087))))))) (-4078 (((-108) $ $) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1161 |#1| |#2| |#3|) (-786)) (|has| |#1| (-339)))))) (-4061 (((-108) $ $) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1161 |#1| |#2| |#3|) (-786)) (|has| |#1| (-339)))))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1161 |#1| |#2| |#3|) (-786)) (|has| |#1| (-339)))))) (-4052 (((-108) $ $) NIL (-3255 (-12 (|has| (-1161 |#1| |#2| |#3|) (-759)) (|has| |#1| (-339))) (-12 (|has| (-1161 |#1| |#2| |#3|) (-786)) (|has| |#1| (-339)))))) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339))) (($ (-1161 |#1| |#2| |#3|) (-1161 |#1| |#2| |#3|)) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) 20)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1161 |#1| |#2| |#3|)) NIL (|has| |#1| (-339))) (($ (-1161 |#1| |#2| |#3|) $) NIL (|has| |#1| (-339))) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))))
-(((-1133 |#1| |#2| |#3|) (-13 (-1131 |#1| (-1161 |#1| |#2| |#3|)) (-10 -8 (-15 -3976 ($ (-1165 |#2|))) (-15 -4024 ($ $ (-1165 |#2|))) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1165 |#2|))) |%noBranch|))) (-973) (-1087) |#1|) (T -1133))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1133 *3 *4 *5)) (-4 *3 (-973)) (-14 *5 *3))) (-4024 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1133 *3 *4 *5)) (-4 *3 (-973)) (-14 *5 *3))) (-2669 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1133 *3 *4 *5)) (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-14 *5 *3))))
-(-13 (-1131 |#1| (-1161 |#1| |#2| |#3|)) (-10 -8 (-15 -3976 ($ (-1165 |#2|))) (-15 -4024 ($ $ (-1165 |#2|))) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1165 |#2|))) |%noBranch|)))
-((-1919 (((-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| |#1|) (|:| -3269 (-523)))))) |#1| (-108)) 12)) (-1398 (((-394 |#1|) |#1|) 22)) (-3573 (((-394 |#1|) |#1|) 21)))
-(((-1134 |#1|) (-10 -7 (-15 -3573 ((-394 |#1|) |#1|)) (-15 -1398 ((-394 |#1|) |#1|)) (-15 -1919 ((-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| |#1|) (|:| -3269 (-523)))))) |#1| (-108)))) (-1145 (-523))) (T -1134))
-((-1919 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-5 *2 (-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| *3) (|:| -3269 (-523))))))) (-5 *1 (-1134 *3)) (-4 *3 (-1145 (-523))))) (-1398 (*1 *2 *3) (-12 (-5 *2 (-394 *3)) (-5 *1 (-1134 *3)) (-4 *3 (-1145 (-523))))) (-3573 (*1 *2 *3) (-12 (-5 *2 (-394 *3)) (-5 *1 (-1134 *3)) (-4 *3 (-1145 (-523))))))
-(-10 -7 (-15 -3573 ((-394 |#1|) |#1|)) (-15 -1398 ((-394 |#1|) |#1|)) (-15 -1919 ((-2 (|:| |contp| (-523)) (|:| -3286 (-589 (-2 (|:| |irr| |#1|) (|:| -3269 (-523)))))) |#1| (-108))))
-((-3015 (((-1068 |#2|) (-1 |#2| |#1|) (-1136 |#1|)) 23 (|has| |#1| (-784))) (((-1136 |#2|) (-1 |#2| |#1|) (-1136 |#1|)) 17)))
-(((-1135 |#1| |#2|) (-10 -7 (-15 -3015 ((-1136 |#2|) (-1 |#2| |#1|) (-1136 |#1|))) (IF (|has| |#1| (-784)) (-15 -3015 ((-1068 |#2|) (-1 |#2| |#1|) (-1136 |#1|))) |%noBranch|)) (-1123) (-1123)) (T -1135))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1136 *5)) (-4 *5 (-784)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-1068 *6)) (-5 *1 (-1135 *5 *6)))) (-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1136 *5)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-1136 *6)) (-5 *1 (-1135 *5 *6)))))
-(-10 -7 (-15 -3015 ((-1136 |#2|) (-1 |#2| |#1|) (-1136 |#1|))) (IF (|has| |#1| (-784)) (-15 -3015 ((-1068 |#2|) (-1 |#2| |#1|) (-1136 |#1|))) |%noBranch|))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-3975 (($ |#1| |#1|) 9) (($ |#1|) 8)) (-3015 (((-1068 |#1|) (-1 |#1| |#1|) $) 41 (|has| |#1| (-784)))) (-3007 ((|#1| $) 14)) (-4173 ((|#1| $) 10)) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-4183 (((-523) $) 18)) (-2635 ((|#1| $) 17)) (-4193 ((|#1| $) 11)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-1831 (((-108) $) 16)) (-1276 (((-1068 |#1|) $) 38 (|has| |#1| (-784))) (((-1068 |#1|) (-589 $)) 37 (|has| |#1| (-784)))) (-3077 (($ |#1|) 25)) (-3976 (($ (-1011 |#1|)) 24) (((-794) $) 34 (|has| |#1| (-1016)))) (-3860 (($ |#1| |#1|) 20) (($ |#1|) 19)) (-3822 (($ $ (-523)) 13)) (-4037 (((-108) $ $) 27 (|has| |#1| (-1016)))))
-(((-1136 |#1|) (-13 (-1010 |#1|) (-10 -8 (-15 -3860 ($ |#1|)) (-15 -3975 ($ |#1|)) (-15 -3976 ($ (-1011 |#1|))) (-15 -1831 ((-108) $)) (IF (|has| |#1| (-1016)) (-6 (-1016)) |%noBranch|) (IF (|has| |#1| (-784)) (-6 (-1012 |#1| (-1068 |#1|))) |%noBranch|))) (-1123)) (T -1136))
-((-3860 (*1 *1 *2) (-12 (-5 *1 (-1136 *2)) (-4 *2 (-1123)))) (-3975 (*1 *1 *2) (-12 (-5 *1 (-1136 *2)) (-4 *2 (-1123)))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-1011 *3)) (-4 *3 (-1123)) (-5 *1 (-1136 *3)))) (-1831 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1136 *3)) (-4 *3 (-1123)))))
-(-13 (-1010 |#1|) (-10 -8 (-15 -3860 ($ |#1|)) (-15 -3975 ($ |#1|)) (-15 -3976 ($ (-1011 |#1|))) (-15 -1831 ((-108) $)) (IF (|has| |#1| (-1016)) (-6 (-1016)) |%noBranch|) (IF (|has| |#1| (-784)) (-6 (-1012 |#1| (-1068 |#1|))) |%noBranch|)))
-((-3015 (((-1142 |#3| |#4|) (-1 |#4| |#2|) (-1142 |#1| |#2|)) 15)))
-(((-1137 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3015 ((-1142 |#3| |#4|) (-1 |#4| |#2|) (-1142 |#1| |#2|)))) (-1087) (-973) (-1087) (-973)) (T -1137))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1142 *5 *6)) (-14 *5 (-1087)) (-4 *6 (-973)) (-4 *8 (-973)) (-5 *2 (-1142 *7 *8)) (-5 *1 (-1137 *5 *6 *7 *8)) (-14 *7 (-1087)))))
-(-10 -7 (-15 -3015 ((-1142 |#3| |#4|) (-1 |#4| |#2|) (-1142 |#1| |#2|))))
-((-3538 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-2848 ((|#1| |#3|) 13)) (-3992 ((|#3| |#3|) 19)))
-(((-1138 |#1| |#2| |#3|) (-10 -7 (-15 -2848 (|#1| |#3|)) (-15 -3992 (|#3| |#3|)) (-15 -3538 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-515) (-921 |#1|) (-1145 |#2|)) (T -1138))
-((-3538 (*1 *2 *3) (-12 (-4 *4 (-515)) (-4 *5 (-921 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1138 *4 *5 *3)) (-4 *3 (-1145 *5)))) (-3992 (*1 *2 *2) (-12 (-4 *3 (-515)) (-4 *4 (-921 *3)) (-5 *1 (-1138 *3 *4 *2)) (-4 *2 (-1145 *4)))) (-2848 (*1 *2 *3) (-12 (-4 *4 (-921 *2)) (-4 *2 (-515)) (-5 *1 (-1138 *2 *4 *3)) (-4 *3 (-1145 *4)))))
-(-10 -7 (-15 -2848 (|#1| |#3|)) (-15 -3992 (|#3| |#3|)) (-15 -3538 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-1483 (((-3 |#2| "failed") |#2| (-710) |#1|) 29)) (-1883 (((-3 |#2| "failed") |#2| (-710)) 30)) (-3856 (((-3 (-2 (|:| -2428 |#2|) (|:| -2438 |#2|)) "failed") |#2|) 43)) (-2712 (((-589 |#2|) |#2|) 45)) (-2553 (((-3 |#2| "failed") |#2| |#2|) 40)))
-(((-1139 |#1| |#2|) (-10 -7 (-15 -1883 ((-3 |#2| "failed") |#2| (-710))) (-15 -1483 ((-3 |#2| "failed") |#2| (-710) |#1|)) (-15 -2553 ((-3 |#2| "failed") |#2| |#2|)) (-15 -3856 ((-3 (-2 (|:| -2428 |#2|) (|:| -2438 |#2|)) "failed") |#2|)) (-15 -2712 ((-589 |#2|) |#2|))) (-13 (-515) (-136)) (-1145 |#1|)) (T -1139))
-((-2712 (*1 *2 *3) (-12 (-4 *4 (-13 (-515) (-136))) (-5 *2 (-589 *3)) (-5 *1 (-1139 *4 *3)) (-4 *3 (-1145 *4)))) (-3856 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-515) (-136))) (-5 *2 (-2 (|:| -2428 *3) (|:| -2438 *3))) (-5 *1 (-1139 *4 *3)) (-4 *3 (-1145 *4)))) (-2553 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-515) (-136))) (-5 *1 (-1139 *3 *2)) (-4 *2 (-1145 *3)))) (-1483 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-710)) (-4 *4 (-13 (-515) (-136))) (-5 *1 (-1139 *4 *2)) (-4 *2 (-1145 *4)))) (-1883 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-710)) (-4 *4 (-13 (-515) (-136))) (-5 *1 (-1139 *4 *2)) (-4 *2 (-1145 *4)))))
-(-10 -7 (-15 -1883 ((-3 |#2| "failed") |#2| (-710))) (-15 -1483 ((-3 |#2| "failed") |#2| (-710) |#1|)) (-15 -2553 ((-3 |#2| "failed") |#2| |#2|)) (-15 -3856 ((-3 (-2 (|:| -2428 |#2|) (|:| -2438 |#2|)) "failed") |#2|)) (-15 -2712 ((-589 |#2|) |#2|)))
-((-1836 (((-3 (-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) "failed") |#2| |#2|) 32)))
-(((-1140 |#1| |#2|) (-10 -7 (-15 -1836 ((-3 (-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) "failed") |#2| |#2|))) (-515) (-1145 |#1|)) (T -1140))
-((-1836 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-515)) (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-1140 *4 *3)) (-4 *3 (-1145 *4)))))
-(-10 -7 (-15 -1836 ((-3 (-2 (|:| -3429 |#2|) (|:| -3143 |#2|)) "failed") |#2| |#2|)))
-((-1607 ((|#2| |#2| |#2|) 19)) (-3327 ((|#2| |#2| |#2|) 30)) (-1626 ((|#2| |#2| |#2| (-710) (-710)) 36)))
-(((-1141 |#1| |#2|) (-10 -7 (-15 -1607 (|#2| |#2| |#2|)) (-15 -3327 (|#2| |#2| |#2|)) (-15 -1626 (|#2| |#2| |#2| (-710) (-710)))) (-973) (-1145 |#1|)) (T -1141))
-((-1626 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-710)) (-4 *4 (-973)) (-5 *1 (-1141 *4 *2)) (-4 *2 (-1145 *4)))) (-3327 (*1 *2 *2 *2) (-12 (-4 *3 (-973)) (-5 *1 (-1141 *3 *2)) (-4 *2 (-1145 *3)))) (-1607 (*1 *2 *2 *2) (-12 (-4 *3 (-973)) (-5 *1 (-1141 *3 *2)) (-4 *2 (-1145 *3)))))
-(-10 -7 (-15 -1607 (|#2| |#2| |#2|)) (-15 -3327 (|#2| |#2| |#2|)) (-15 -1626 (|#2| |#2| |#2| (-710) (-710))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1288 (((-1169 |#2|) $ (-710)) NIL)) (-3716 (((-589 (-1001)) $) NIL)) (-2115 (($ (-1083 |#2|)) NIL)) (-3540 (((-1083 $) $ (-1001)) NIL) (((-1083 |#2|) $) NIL)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#2| (-515)))) (-3950 (($ $) NIL (|has| |#2| (-515)))) (-3226 (((-108) $) NIL (|has| |#2| (-515)))) (-2862 (((-710) $) NIL) (((-710) $ (-589 (-1001))) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3712 (($ $ $) NIL (|has| |#2| (-515)))) (-2319 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-3763 (($ $) NIL (|has| |#2| (-427)))) (-2105 (((-394 $) $) NIL (|has| |#2| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-3684 (((-108) $ $) NIL (|has| |#2| (-339)))) (-2891 (($ $ (-710)) NIL)) (-1544 (($ $ (-710)) NIL)) (-3340 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-427)))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#2| "failed") $) NIL) (((-3 (-383 (-523)) "failed") $) NIL (|has| |#2| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) NIL (|has| |#2| (-964 (-523)))) (((-3 (-1001) "failed") $) NIL)) (-1996 ((|#2| $) NIL) (((-383 (-523)) $) NIL (|has| |#2| (-964 (-383 (-523))))) (((-523) $) NIL (|has| |#2| (-964 (-523)))) (((-1001) $) NIL)) (-2210 (($ $ $ (-1001)) NIL (|has| |#2| (-158))) ((|#2| $ $) NIL (|has| |#2| (-158)))) (-2501 (($ $ $) NIL (|has| |#2| (-339)))) (-3142 (($ $) NIL)) (-2203 (((-629 (-523)) (-629 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) NIL (|has| |#2| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#2|)) (|:| |vec| (-1169 |#2|))) (-629 $) (-1169 $)) NIL) (((-629 |#2|) (-629 $)) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-2486 (($ $ $) NIL (|has| |#2| (-339)))) (-1365 (($ $ $) NIL)) (-3547 (($ $ $) NIL (|has| |#2| (-515)))) (-1579 (((-2 (|:| -2275 |#2|) (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#2| (-515)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#2| (-339)))) (-2213 (($ $) NIL (|has| |#2| (-427))) (($ $ (-1001)) NIL (|has| |#2| (-427)))) (-3127 (((-589 $) $) NIL)) (-1330 (((-108) $) NIL (|has| |#2| (-840)))) (-2067 (($ $ |#2| (-710) $) NIL)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) NIL (-12 (|has| (-1001) (-817 (-355))) (|has| |#2| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) NIL (-12 (|has| (-1001) (-817 (-523))) (|has| |#2| (-817 (-523)))))) (-1500 (((-710) $ $) NIL (|has| |#2| (-515)))) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) NIL)) (-1289 (((-3 $ "failed") $) NIL (|has| |#2| (-1063)))) (-3706 (($ (-1083 |#2|) (-1001)) NIL) (($ (-1083 $) (-1001)) NIL)) (-3059 (($ $ (-710)) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#2| (-339)))) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-3694 (($ |#2| (-710)) 17) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ (-1001)) NIL) (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL)) (-2140 (((-710) $) NIL) (((-710) $ (-1001)) NIL) (((-589 (-710)) $ (-589 (-1001))) NIL)) (-3268 (($ $ $) NIL (|has| |#2| (-786)))) (-2644 (($ $ $) NIL (|has| |#2| (-786)))) (-3927 (($ (-1 (-710) (-710)) $) NIL)) (-3015 (($ (-1 |#2| |#2|) $) NIL)) (-1489 (((-1083 |#2|) $) NIL)) (-1949 (((-3 (-1001) "failed") $) NIL)) (-3107 (($ $) NIL)) (-3119 ((|#2| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#2| (-427))) (($ $ $) NIL (|has| |#2| (-427)))) (-3841 (((-1070) $) NIL)) (-3809 (((-2 (|:| -3429 $) (|:| -3143 $)) $ (-710)) NIL)) (-3818 (((-3 (-589 $) "failed") $) NIL)) (-1973 (((-3 (-589 $) "failed") $) NIL)) (-3719 (((-3 (-2 (|:| |var| (-1001)) (|:| -3262 (-710))) "failed") $) NIL)) (-2669 (($ $) NIL (|has| |#2| (-37 (-383 (-523)))))) (-4105 (($) NIL (|has| |#2| (-1063)) CONST)) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) NIL)) (-3095 ((|#2| $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#2| (-427)))) (-2056 (($ (-589 $)) NIL (|has| |#2| (-427))) (($ $ $) NIL (|has| |#2| (-427)))) (-3664 (($ $ (-710) |#2| $) NIL)) (-1893 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) NIL (|has| |#2| (-840)))) (-3573 (((-394 $) $) NIL (|has| |#2| (-840)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#2| (-339)))) (-2469 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-515))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#2| (-339)))) (-1349 (($ $ (-589 (-271 $))) NIL) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-1001) |#2|) NIL) (($ $ (-589 (-1001)) (-589 |#2|)) NIL) (($ $ (-1001) $) NIL) (($ $ (-589 (-1001)) (-589 $)) NIL)) (-3087 (((-710) $) NIL (|has| |#2| (-339)))) (-1502 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-383 $) (-383 $) (-383 $)) NIL (|has| |#2| (-515))) ((|#2| (-383 $) |#2|) NIL (|has| |#2| (-339))) (((-383 $) $ (-383 $)) NIL (|has| |#2| (-515)))) (-1451 (((-3 $ "failed") $ (-710)) NIL)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#2| (-339)))) (-4053 (($ $ (-1001)) NIL (|has| |#2| (-158))) ((|#2| $) NIL (|has| |#2| (-158)))) (-4024 (($ $ (-1001)) NIL) (($ $ (-589 (-1001))) NIL) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL) (($ $ (-710)) NIL) (($ $) NIL) (($ $ (-1087)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) $) NIL)) (-1487 (((-710) $) NIL) (((-710) $ (-1001)) NIL) (((-589 (-710)) $ (-589 (-1001))) NIL)) (-3077 (((-823 (-355)) $) NIL (-12 (|has| (-1001) (-564 (-823 (-355)))) (|has| |#2| (-564 (-823 (-355)))))) (((-823 (-523)) $) NIL (-12 (|has| (-1001) (-564 (-823 (-523)))) (|has| |#2| (-564 (-823 (-523)))))) (((-499) $) NIL (-12 (|has| (-1001) (-564 (-499))) (|has| |#2| (-564 (-499)))))) (-2267 ((|#2| $) NIL (|has| |#2| (-427))) (($ $ (-1001)) NIL (|has| |#2| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) NIL (-12 (|has| $ (-134)) (|has| |#2| (-840))))) (-2670 (((-3 $ "failed") $ $) NIL (|has| |#2| (-515))) (((-3 (-383 $) "failed") (-383 $) $) NIL (|has| |#2| (-515)))) (-3976 (((-794) $) 13) (($ (-523)) NIL) (($ |#2|) NIL) (($ (-1001)) NIL) (($ (-1165 |#1|)) 19) (($ (-383 (-523))) NIL (-3255 (|has| |#2| (-37 (-383 (-523)))) (|has| |#2| (-964 (-383 (-523)))))) (($ $) NIL (|has| |#2| (-515)))) (-1639 (((-589 |#2|) $) NIL)) (-1234 ((|#2| $ (-710)) NIL) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL)) (-2301 (((-3 $ "failed") $) NIL (-3255 (-12 (|has| $ (-134)) (|has| |#2| (-840))) (|has| |#2| (-134))))) (-1698 (((-710)) NIL)) (-2656 (($ $ $ (-710)) NIL (|has| |#2| (-158)))) (-3842 (((-108) $ $) NIL (|has| |#2| (-515)))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-1440 (($) 14 T CONST)) (-1943 (($ $ (-1001)) NIL) (($ $ (-589 (-1001))) NIL) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL) (($ $ (-710)) NIL) (($ $) NIL) (($ $ (-1087)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1087) (-710)) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) NIL (|has| |#2| (-831 (-1087)))) (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-4078 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4037 (((-108) $ $) NIL)) (-4070 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#2| (-786)))) (-4125 (($ $ |#2|) NIL (|has| |#2| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-383 (-523))) NIL (|has| |#2| (-37 (-383 (-523))))) (($ (-383 (-523)) $) NIL (|has| |#2| (-37 (-383 (-523))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-1142 |#1| |#2|) (-13 (-1145 |#2|) (-10 -8 (-15 -3976 ($ (-1165 |#1|))) (-15 -3664 ($ $ (-710) |#2| $)))) (-1087) (-973)) (T -1142))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1165 *3)) (-14 *3 (-1087)) (-5 *1 (-1142 *3 *4)) (-4 *4 (-973)))) (-3664 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-710)) (-5 *1 (-1142 *4 *3)) (-14 *4 (-1087)) (-4 *3 (-973)))))
-(-13 (-1145 |#2|) (-10 -8 (-15 -3976 ($ (-1165 |#1|))) (-15 -3664 ($ $ (-710) |#2| $))))
-((-3015 ((|#4| (-1 |#3| |#1|) |#2|) 22)))
-(((-1143 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3015 (|#4| (-1 |#3| |#1|) |#2|))) (-973) (-1145 |#1|) (-973) (-1145 |#3|)) (T -1143))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-973)) (-4 *6 (-973)) (-4 *2 (-1145 *6)) (-5 *1 (-1143 *5 *4 *6 *2)) (-4 *4 (-1145 *5)))))
-(-10 -7 (-15 -3015 (|#4| (-1 |#3| |#1|) |#2|)))
-((-1288 (((-1169 |#2|) $ (-710)) 114)) (-3716 (((-589 (-1001)) $) 15)) (-2115 (($ (-1083 |#2|)) 67)) (-2862 (((-710) $) NIL) (((-710) $ (-589 (-1001))) 18)) (-2319 (((-394 (-1083 $)) (-1083 $)) 185)) (-3763 (($ $) 175)) (-2105 (((-394 $) $) 173)) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) 82)) (-2891 (($ $ (-710)) 71)) (-1544 (($ $ (-710)) 73)) (-3340 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 130)) (-2898 (((-3 |#2| "failed") $) 117) (((-3 (-383 (-523)) "failed") $) NIL) (((-3 (-523) "failed") $) NIL) (((-3 (-1001) "failed") $) NIL)) (-1996 ((|#2| $) 115) (((-383 (-523)) $) NIL) (((-523) $) NIL) (((-1001) $) NIL)) (-3547 (($ $ $) 151)) (-1579 (((-2 (|:| -2275 |#2|) (|:| -3429 $) (|:| -3143 $)) $ $) 153)) (-1500 (((-710) $ $) 170)) (-1289 (((-3 $ "failed") $) 123)) (-3694 (($ |#2| (-710)) NIL) (($ $ (-1001) (-710)) 47) (($ $ (-589 (-1001)) (-589 (-710))) NIL)) (-2140 (((-710) $) NIL) (((-710) $ (-1001)) 42) (((-589 (-710)) $ (-589 (-1001))) 43)) (-1489 (((-1083 |#2|) $) 59)) (-1949 (((-3 (-1001) "failed") $) 40)) (-3809 (((-2 (|:| -3429 $) (|:| -3143 $)) $ (-710)) 70)) (-2669 (($ $) 197)) (-4105 (($) 119)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 182)) (-1893 (((-394 (-1083 $)) (-1083 $)) 88)) (-4034 (((-394 (-1083 $)) (-1083 $)) 86)) (-3573 (((-394 $) $) 107)) (-1349 (($ $ (-589 (-271 $))) 39) (($ $ (-271 $)) NIL) (($ $ $ $) NIL) (($ $ (-589 $) (-589 $)) NIL) (($ $ (-1001) |#2|) 31) (($ $ (-589 (-1001)) (-589 |#2|)) 28) (($ $ (-1001) $) 25) (($ $ (-589 (-1001)) (-589 $)) 23)) (-3087 (((-710) $) 188)) (-1502 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-383 $) (-383 $) (-383 $)) 147) ((|#2| (-383 $) |#2|) 187) (((-383 $) $ (-383 $)) 169)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 191)) (-4024 (($ $ (-1001)) 140) (($ $ (-589 (-1001))) NIL) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL) (($ $ (-710)) NIL) (($ $) 138) (($ $ (-1087)) NIL) (($ $ (-589 (-1087))) NIL) (($ $ (-1087) (-710)) NIL) (($ $ (-589 (-1087)) (-589 (-710))) NIL) (($ $ (-1 |#2| |#2|) (-710)) NIL) (($ $ (-1 |#2| |#2|)) 137) (($ $ (-1 |#2| |#2|) $) 134)) (-1487 (((-710) $) NIL) (((-710) $ (-1001)) 16) (((-589 (-710)) $ (-589 (-1001))) 20)) (-2267 ((|#2| $) NIL) (($ $ (-1001)) 125)) (-2670 (((-3 $ "failed") $ $) 161) (((-3 (-383 $) "failed") (-383 $) $) 157)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#2|) NIL) (($ (-1001)) 51) (($ (-383 (-523))) NIL) (($ $) NIL)))
-(((-1144 |#1| |#2|) (-10 -8 (-15 -3976 (|#1| |#1|)) (-15 -2701 ((-1083 |#1|) (-1083 |#1|) (-1083 |#1|))) (-15 -2105 ((-394 |#1|) |#1|)) (-15 -3763 (|#1| |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -4105 (|#1|)) (-15 -1289 ((-3 |#1| "failed") |#1|)) (-15 -1502 ((-383 |#1|) |#1| (-383 |#1|))) (-15 -3087 ((-710) |#1|)) (-15 -1227 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -2669 (|#1| |#1|)) (-15 -1502 (|#2| (-383 |#1|) |#2|)) (-15 -3340 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -1579 ((-2 (|:| -2275 |#2|) (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -3547 (|#1| |#1| |#1|)) (-15 -2670 ((-3 (-383 |#1|) "failed") (-383 |#1|) |#1|)) (-15 -2670 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1500 ((-710) |#1| |#1|)) (-15 -1502 ((-383 |#1|) (-383 |#1|) (-383 |#1|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -1544 (|#1| |#1| (-710))) (-15 -2891 (|#1| |#1| (-710))) (-15 -3809 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| (-710))) (-15 -2115 (|#1| (-1083 |#2|))) (-15 -1489 ((-1083 |#2|) |#1|)) (-15 -1288 ((-1169 |#2|) |#1| (-710))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -1502 (|#1| |#1| |#1|)) (-15 -1502 (|#2| |#1| |#2|)) (-15 -3573 ((-394 |#1|) |#1|)) (-15 -2319 ((-394 (-1083 |#1|)) (-1083 |#1|))) (-15 -4034 ((-394 (-1083 |#1|)) (-1083 |#1|))) (-15 -1893 ((-394 (-1083 |#1|)) (-1083 |#1|))) (-15 -3908 ((-3 (-589 (-1083 |#1|)) "failed") (-589 (-1083 |#1|)) (-1083 |#1|))) (-15 -2267 (|#1| |#1| (-1001))) (-15 -3716 ((-589 (-1001)) |#1|)) (-15 -2862 ((-710) |#1| (-589 (-1001)))) (-15 -2862 ((-710) |#1|)) (-15 -3694 (|#1| |#1| (-589 (-1001)) (-589 (-710)))) (-15 -3694 (|#1| |#1| (-1001) (-710))) (-15 -2140 ((-589 (-710)) |#1| (-589 (-1001)))) (-15 -2140 ((-710) |#1| (-1001))) (-15 -1949 ((-3 (-1001) "failed") |#1|)) (-15 -1487 ((-589 (-710)) |#1| (-589 (-1001)))) (-15 -1487 ((-710) |#1| (-1001))) (-15 -1996 ((-1001) |#1|)) (-15 -2898 ((-3 (-1001) "failed") |#1|)) (-15 -3976 (|#1| (-1001))) (-15 -1349 (|#1| |#1| (-589 (-1001)) (-589 |#1|))) (-15 -1349 (|#1| |#1| (-1001) |#1|)) (-15 -1349 (|#1| |#1| (-589 (-1001)) (-589 |#2|))) (-15 -1349 (|#1| |#1| (-1001) |#2|)) (-15 -1349 (|#1| |#1| (-589 |#1|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#1| |#1|)) (-15 -1349 (|#1| |#1| (-271 |#1|))) (-15 -1349 (|#1| |#1| (-589 (-271 |#1|)))) (-15 -1487 ((-710) |#1|)) (-15 -3694 (|#1| |#2| (-710))) (-15 -1996 ((-523) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -3976 (|#1| |#2|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2140 ((-710) |#1|)) (-15 -2267 (|#2| |#1|)) (-15 -4024 (|#1| |#1| (-589 (-1001)) (-589 (-710)))) (-15 -4024 (|#1| |#1| (-1001) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1001)))) (-15 -4024 (|#1| |#1| (-1001))) (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|))) (-1145 |#2|) (-973)) (T -1144))
-NIL
-(-10 -8 (-15 -3976 (|#1| |#1|)) (-15 -2701 ((-1083 |#1|) (-1083 |#1|) (-1083 |#1|))) (-15 -2105 ((-394 |#1|) |#1|)) (-15 -3763 (|#1| |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -4105 (|#1|)) (-15 -1289 ((-3 |#1| "failed") |#1|)) (-15 -1502 ((-383 |#1|) |#1| (-383 |#1|))) (-15 -3087 ((-710) |#1|)) (-15 -1227 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -2669 (|#1| |#1|)) (-15 -1502 (|#2| (-383 |#1|) |#2|)) (-15 -3340 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -1579 ((-2 (|:| -2275 |#2|) (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| |#1|)) (-15 -3547 (|#1| |#1| |#1|)) (-15 -2670 ((-3 (-383 |#1|) "failed") (-383 |#1|) |#1|)) (-15 -2670 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1500 ((-710) |#1| |#1|)) (-15 -1502 ((-383 |#1|) (-383 |#1|) (-383 |#1|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -1544 (|#1| |#1| (-710))) (-15 -2891 (|#1| |#1| (-710))) (-15 -3809 ((-2 (|:| -3429 |#1|) (|:| -3143 |#1|)) |#1| (-710))) (-15 -2115 (|#1| (-1083 |#2|))) (-15 -1489 ((-1083 |#2|) |#1|)) (-15 -1288 ((-1169 |#2|) |#1| (-710))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4024 (|#1| |#1| (-1 |#2| |#2|) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)) (-589 (-710)))) (-15 -4024 (|#1| |#1| (-1087) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1087)))) (-15 -4024 (|#1| |#1| (-1087))) (-15 -4024 (|#1| |#1|)) (-15 -4024 (|#1| |#1| (-710))) (-15 -1502 (|#1| |#1| |#1|)) (-15 -1502 (|#2| |#1| |#2|)) (-15 -3573 ((-394 |#1|) |#1|)) (-15 -2319 ((-394 (-1083 |#1|)) (-1083 |#1|))) (-15 -4034 ((-394 (-1083 |#1|)) (-1083 |#1|))) (-15 -1893 ((-394 (-1083 |#1|)) (-1083 |#1|))) (-15 -3908 ((-3 (-589 (-1083 |#1|)) "failed") (-589 (-1083 |#1|)) (-1083 |#1|))) (-15 -2267 (|#1| |#1| (-1001))) (-15 -3716 ((-589 (-1001)) |#1|)) (-15 -2862 ((-710) |#1| (-589 (-1001)))) (-15 -2862 ((-710) |#1|)) (-15 -3694 (|#1| |#1| (-589 (-1001)) (-589 (-710)))) (-15 -3694 (|#1| |#1| (-1001) (-710))) (-15 -2140 ((-589 (-710)) |#1| (-589 (-1001)))) (-15 -2140 ((-710) |#1| (-1001))) (-15 -1949 ((-3 (-1001) "failed") |#1|)) (-15 -1487 ((-589 (-710)) |#1| (-589 (-1001)))) (-15 -1487 ((-710) |#1| (-1001))) (-15 -1996 ((-1001) |#1|)) (-15 -2898 ((-3 (-1001) "failed") |#1|)) (-15 -3976 (|#1| (-1001))) (-15 -1349 (|#1| |#1| (-589 (-1001)) (-589 |#1|))) (-15 -1349 (|#1| |#1| (-1001) |#1|)) (-15 -1349 (|#1| |#1| (-589 (-1001)) (-589 |#2|))) (-15 -1349 (|#1| |#1| (-1001) |#2|)) (-15 -1349 (|#1| |#1| (-589 |#1|) (-589 |#1|))) (-15 -1349 (|#1| |#1| |#1| |#1|)) (-15 -1349 (|#1| |#1| (-271 |#1|))) (-15 -1349 (|#1| |#1| (-589 (-271 |#1|)))) (-15 -1487 ((-710) |#1|)) (-15 -3694 (|#1| |#2| (-710))) (-15 -1996 ((-523) |#1|)) (-15 -2898 ((-3 (-523) "failed") |#1|)) (-15 -1996 ((-383 (-523)) |#1|)) (-15 -2898 ((-3 (-383 (-523)) "failed") |#1|)) (-15 -3976 (|#1| |#2|)) (-15 -2898 ((-3 |#2| "failed") |#1|)) (-15 -1996 (|#2| |#1|)) (-15 -2140 ((-710) |#1|)) (-15 -2267 (|#2| |#1|)) (-15 -4024 (|#1| |#1| (-589 (-1001)) (-589 (-710)))) (-15 -4024 (|#1| |#1| (-1001) (-710))) (-15 -4024 (|#1| |#1| (-589 (-1001)))) (-15 -4024 (|#1| |#1| (-1001))) (-15 -3976 (|#1| (-523))) (-15 -3976 ((-794) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-1288 (((-1169 |#1|) $ (-710)) 238)) (-3716 (((-589 (-1001)) $) 110)) (-2115 (($ (-1083 |#1|)) 236)) (-3540 (((-1083 $) $ (-1001)) 125) (((-1083 |#1|) $) 124)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 87 (|has| |#1| (-515)))) (-3950 (($ $) 88 (|has| |#1| (-515)))) (-3226 (((-108) $) 90 (|has| |#1| (-515)))) (-2862 (((-710) $) 112) (((-710) $ (-589 (-1001))) 111)) (-2999 (((-3 $ "failed") $ $) 19)) (-3712 (($ $ $) 223 (|has| |#1| (-515)))) (-2319 (((-394 (-1083 $)) (-1083 $)) 100 (|has| |#1| (-840)))) (-3763 (($ $) 98 (|has| |#1| (-427)))) (-2105 (((-394 $) $) 97 (|has| |#1| (-427)))) (-3908 (((-3 (-589 (-1083 $)) "failed") (-589 (-1083 $)) (-1083 $)) 103 (|has| |#1| (-840)))) (-3684 (((-108) $ $) 208 (|has| |#1| (-339)))) (-2891 (($ $ (-710)) 231)) (-1544 (($ $ (-710)) 230)) (-3340 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 218 (|has| |#1| (-427)))) (-1640 (($) 17 T CONST)) (-2898 (((-3 |#1| "failed") $) 164) (((-3 (-383 (-523)) "failed") $) 162 (|has| |#1| (-964 (-383 (-523))))) (((-3 (-523) "failed") $) 160 (|has| |#1| (-964 (-523)))) (((-3 (-1001) "failed") $) 136)) (-1996 ((|#1| $) 165) (((-383 (-523)) $) 161 (|has| |#1| (-964 (-383 (-523))))) (((-523) $) 159 (|has| |#1| (-964 (-523)))) (((-1001) $) 135)) (-2210 (($ $ $ (-1001)) 108 (|has| |#1| (-158))) ((|#1| $ $) 226 (|has| |#1| (-158)))) (-2501 (($ $ $) 212 (|has| |#1| (-339)))) (-3142 (($ $) 154)) (-2203 (((-629 (-523)) (-629 $)) 134 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 (-523))) (|:| |vec| (-1169 (-523)))) (-629 $) (-1169 $)) 133 (|has| |#1| (-585 (-523)))) (((-2 (|:| -2373 (-629 |#1|)) (|:| |vec| (-1169 |#1|))) (-629 $) (-1169 $)) 132) (((-629 |#1|) (-629 $)) 131)) (-4211 (((-3 $ "failed") $) 34)) (-2486 (($ $ $) 211 (|has| |#1| (-339)))) (-1365 (($ $ $) 229)) (-3547 (($ $ $) 220 (|has| |#1| (-515)))) (-1579 (((-2 (|:| -2275 |#1|) (|:| -3429 $) (|:| -3143 $)) $ $) 219 (|has| |#1| (-515)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 206 (|has| |#1| (-339)))) (-2213 (($ $) 176 (|has| |#1| (-427))) (($ $ (-1001)) 105 (|has| |#1| (-427)))) (-3127 (((-589 $) $) 109)) (-1330 (((-108) $) 96 (|has| |#1| (-840)))) (-2067 (($ $ |#1| (-710) $) 172)) (-2483 (((-820 (-355) $) $ (-823 (-355)) (-820 (-355) $)) 84 (-12 (|has| (-1001) (-817 (-355))) (|has| |#1| (-817 (-355))))) (((-820 (-523) $) $ (-823 (-523)) (-820 (-523) $)) 83 (-12 (|has| (-1001) (-817 (-523))) (|has| |#1| (-817 (-523)))))) (-1500 (((-710) $ $) 224 (|has| |#1| (-515)))) (-3482 (((-108) $) 31)) (-3288 (((-710) $) 169)) (-1289 (((-3 $ "failed") $) 204 (|has| |#1| (-1063)))) (-3706 (($ (-1083 |#1|) (-1001)) 117) (($ (-1083 $) (-1001)) 116)) (-3059 (($ $ (-710)) 235)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 215 (|has| |#1| (-339)))) (-2738 (((-589 $) $) 126)) (-4060 (((-108) $) 152)) (-3694 (($ |#1| (-710)) 153) (($ $ (-1001) (-710)) 119) (($ $ (-589 (-1001)) (-589 (-710))) 118)) (-1353 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $ (-1001)) 120) (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 233)) (-2140 (((-710) $) 170) (((-710) $ (-1001)) 122) (((-589 (-710)) $ (-589 (-1001))) 121)) (-3268 (($ $ $) 79 (|has| |#1| (-786)))) (-2644 (($ $ $) 78 (|has| |#1| (-786)))) (-3927 (($ (-1 (-710) (-710)) $) 171)) (-3015 (($ (-1 |#1| |#1|) $) 151)) (-1489 (((-1083 |#1|) $) 237)) (-1949 (((-3 (-1001) "failed") $) 123)) (-3107 (($ $) 149)) (-3119 ((|#1| $) 148)) (-2012 (($ (-589 $)) 94 (|has| |#1| (-427))) (($ $ $) 93 (|has| |#1| (-427)))) (-3841 (((-1070) $) 9)) (-3809 (((-2 (|:| -3429 $) (|:| -3143 $)) $ (-710)) 232)) (-3818 (((-3 (-589 $) "failed") $) 114)) (-1973 (((-3 (-589 $) "failed") $) 115)) (-3719 (((-3 (-2 (|:| |var| (-1001)) (|:| -3262 (-710))) "failed") $) 113)) (-2669 (($ $) 216 (|has| |#1| (-37 (-383 (-523)))))) (-4105 (($) 203 (|has| |#1| (-1063)) CONST)) (-2435 (((-1034) $) 10)) (-3084 (((-108) $) 166)) (-3095 ((|#1| $) 167)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 95 (|has| |#1| (-427)))) (-2056 (($ (-589 $)) 92 (|has| |#1| (-427))) (($ $ $) 91 (|has| |#1| (-427)))) (-1893 (((-394 (-1083 $)) (-1083 $)) 102 (|has| |#1| (-840)))) (-4034 (((-394 (-1083 $)) (-1083 $)) 101 (|has| |#1| (-840)))) (-3573 (((-394 $) $) 99 (|has| |#1| (-840)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 214 (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 213 (|has| |#1| (-339)))) (-2469 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-515))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 207 (|has| |#1| (-339)))) (-1349 (($ $ (-589 (-271 $))) 145) (($ $ (-271 $)) 144) (($ $ $ $) 143) (($ $ (-589 $) (-589 $)) 142) (($ $ (-1001) |#1|) 141) (($ $ (-589 (-1001)) (-589 |#1|)) 140) (($ $ (-1001) $) 139) (($ $ (-589 (-1001)) (-589 $)) 138)) (-3087 (((-710) $) 209 (|has| |#1| (-339)))) (-1502 ((|#1| $ |#1|) 256) (($ $ $) 255) (((-383 $) (-383 $) (-383 $)) 225 (|has| |#1| (-515))) ((|#1| (-383 $) |#1|) 217 (|has| |#1| (-339))) (((-383 $) $ (-383 $)) 205 (|has| |#1| (-515)))) (-1451 (((-3 $ "failed") $ (-710)) 234)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 210 (|has| |#1| (-339)))) (-4053 (($ $ (-1001)) 107 (|has| |#1| (-158))) ((|#1| $) 227 (|has| |#1| (-158)))) (-4024 (($ $ (-1001)) 42) (($ $ (-589 (-1001))) 41) (($ $ (-1001) (-710)) 40) (($ $ (-589 (-1001)) (-589 (-710))) 39) (($ $ (-710)) 253) (($ $) 251) (($ $ (-1087)) 250 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) 249 (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) 248 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) 247 (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) 240) (($ $ (-1 |#1| |#1|)) 239) (($ $ (-1 |#1| |#1|) $) 228)) (-1487 (((-710) $) 150) (((-710) $ (-1001)) 130) (((-589 (-710)) $ (-589 (-1001))) 129)) (-3077 (((-823 (-355)) $) 82 (-12 (|has| (-1001) (-564 (-823 (-355)))) (|has| |#1| (-564 (-823 (-355)))))) (((-823 (-523)) $) 81 (-12 (|has| (-1001) (-564 (-823 (-523)))) (|has| |#1| (-564 (-823 (-523)))))) (((-499) $) 80 (-12 (|has| (-1001) (-564 (-499))) (|has| |#1| (-564 (-499)))))) (-2267 ((|#1| $) 175 (|has| |#1| (-427))) (($ $ (-1001)) 106 (|has| |#1| (-427)))) (-2326 (((-3 (-1169 $) "failed") (-629 $)) 104 (-2819 (|has| $ (-134)) (|has| |#1| (-840))))) (-2670 (((-3 $ "failed") $ $) 222 (|has| |#1| (-515))) (((-3 (-383 $) "failed") (-383 $) $) 221 (|has| |#1| (-515)))) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 163) (($ (-1001)) 137) (($ (-383 (-523))) 72 (-3255 (|has| |#1| (-964 (-383 (-523)))) (|has| |#1| (-37 (-383 (-523)))))) (($ $) 85 (|has| |#1| (-515)))) (-1639 (((-589 |#1|) $) 168)) (-1234 ((|#1| $ (-710)) 155) (($ $ (-1001) (-710)) 128) (($ $ (-589 (-1001)) (-589 (-710))) 127)) (-2301 (((-3 $ "failed") $) 73 (-3255 (-2819 (|has| $ (-134)) (|has| |#1| (-840))) (|has| |#1| (-134))))) (-1698 (((-710)) 29)) (-2656 (($ $ $ (-710)) 173 (|has| |#1| (-158)))) (-3842 (((-108) $ $) 89 (|has| |#1| (-515)))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ (-1001)) 38) (($ $ (-589 (-1001))) 37) (($ $ (-1001) (-710)) 36) (($ $ (-589 (-1001)) (-589 (-710))) 35) (($ $ (-710)) 254) (($ $) 252) (($ $ (-1087)) 246 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087))) 245 (|has| |#1| (-831 (-1087)))) (($ $ (-1087) (-710)) 244 (|has| |#1| (-831 (-1087)))) (($ $ (-589 (-1087)) (-589 (-710))) 243 (|has| |#1| (-831 (-1087)))) (($ $ (-1 |#1| |#1|) (-710)) 242) (($ $ (-1 |#1| |#1|)) 241)) (-4078 (((-108) $ $) 76 (|has| |#1| (-786)))) (-4061 (((-108) $ $) 75 (|has| |#1| (-786)))) (-4037 (((-108) $ $) 6)) (-4070 (((-108) $ $) 77 (|has| |#1| (-786)))) (-4052 (((-108) $ $) 74 (|has| |#1| (-786)))) (-4125 (($ $ |#1|) 156 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 (-523))) 158 (|has| |#1| (-37 (-383 (-523))))) (($ (-383 (-523)) $) 157 (|has| |#1| (-37 (-383 (-523))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
-(((-1145 |#1|) (-129) (-973)) (T -1145))
-((-1288 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-4 *1 (-1145 *4)) (-4 *4 (-973)) (-5 *2 (-1169 *4)))) (-1489 (*1 *2 *1) (-12 (-4 *1 (-1145 *3)) (-4 *3 (-973)) (-5 *2 (-1083 *3)))) (-2115 (*1 *1 *2) (-12 (-5 *2 (-1083 *3)) (-4 *3 (-973)) (-4 *1 (-1145 *3)))) (-3059 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-1145 *3)) (-4 *3 (-973)))) (-1451 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-710)) (-4 *1 (-1145 *3)) (-4 *3 (-973)))) (-1353 (*1 *2 *1 *1) (-12 (-4 *3 (-973)) (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-1145 *3)))) (-3809 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-4 *4 (-973)) (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-1145 *4)))) (-2891 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-1145 *3)) (-4 *3 (-973)))) (-1544 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-1145 *3)) (-4 *3 (-973)))) (-1365 (*1 *1 *1 *1) (-12 (-4 *1 (-1145 *2)) (-4 *2 (-973)))) (-4024 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1145 *3)) (-4 *3 (-973)))) (-4053 (*1 *2 *1) (-12 (-4 *1 (-1145 *2)) (-4 *2 (-973)) (-4 *2 (-158)))) (-2210 (*1 *2 *1 *1) (-12 (-4 *1 (-1145 *2)) (-4 *2 (-973)) (-4 *2 (-158)))) (-1502 (*1 *2 *2 *2) (-12 (-5 *2 (-383 *1)) (-4 *1 (-1145 *3)) (-4 *3 (-973)) (-4 *3 (-515)))) (-1500 (*1 *2 *1 *1) (-12 (-4 *1 (-1145 *3)) (-4 *3 (-973)) (-4 *3 (-515)) (-5 *2 (-710)))) (-3712 (*1 *1 *1 *1) (-12 (-4 *1 (-1145 *2)) (-4 *2 (-973)) (-4 *2 (-515)))) (-2670 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1145 *2)) (-4 *2 (-973)) (-4 *2 (-515)))) (-2670 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-383 *1)) (-4 *1 (-1145 *3)) (-4 *3 (-973)) (-4 *3 (-515)))) (-3547 (*1 *1 *1 *1) (-12 (-4 *1 (-1145 *2)) (-4 *2 (-973)) (-4 *2 (-515)))) (-1579 (*1 *2 *1 *1) (-12 (-4 *3 (-515)) (-4 *3 (-973)) (-5 *2 (-2 (|:| -2275 *3) (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-1145 *3)))) (-3340 (*1 *2 *1 *1) (-12 (-4 *3 (-427)) (-4 *3 (-973)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1145 *3)))) (-1502 (*1 *2 *3 *2) (-12 (-5 *3 (-383 *1)) (-4 *1 (-1145 *2)) (-4 *2 (-973)) (-4 *2 (-339)))) (-2669 (*1 *1 *1) (-12 (-4 *1 (-1145 *2)) (-4 *2 (-973)) (-4 *2 (-37 (-383 (-523)))))))
-(-13 (-880 |t#1| (-710) (-1001)) (-263 |t#1| |t#1|) (-263 $ $) (-211) (-209 |t#1|) (-10 -8 (-15 -1288 ((-1169 |t#1|) $ (-710))) (-15 -1489 ((-1083 |t#1|) $)) (-15 -2115 ($ (-1083 |t#1|))) (-15 -3059 ($ $ (-710))) (-15 -1451 ((-3 $ "failed") $ (-710))) (-15 -1353 ((-2 (|:| -3429 $) (|:| -3143 $)) $ $)) (-15 -3809 ((-2 (|:| -3429 $) (|:| -3143 $)) $ (-710))) (-15 -2891 ($ $ (-710))) (-15 -1544 ($ $ (-710))) (-15 -1365 ($ $ $)) (-15 -4024 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1063)) (-6 (-1063)) |%noBranch|) (IF (|has| |t#1| (-158)) (PROGN (-15 -4053 (|t#1| $)) (-15 -2210 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-515)) (PROGN (-6 (-263 (-383 $) (-383 $))) (-15 -1502 ((-383 $) (-383 $) (-383 $))) (-15 -1500 ((-710) $ $)) (-15 -3712 ($ $ $)) (-15 -2670 ((-3 $ "failed") $ $)) (-15 -2670 ((-3 (-383 $) "failed") (-383 $) $)) (-15 -3547 ($ $ $)) (-15 -1579 ((-2 (|:| -2275 |t#1|) (|:| -3429 $) (|:| -3143 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-427)) (-15 -3340 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-339)) (PROGN (-6 (-284)) (-6 -4244) (-15 -1502 (|t#1| (-383 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-37 (-383 (-523)))) (-15 -2669 ($ $)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-710)) . T) ((-25) . T) ((-37 #1=(-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((-37 |#1|) |has| |#1| (-158)) ((-37 $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-339))) ((-97) . T) ((-107 #1# #1#) |has| |#1| (-37 (-383 (-523)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-339)) (|has| |#1| (-158))) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-339)) (|has| |#1| (-158))) ((-564 (-499)) -12 (|has| (-1001) (-564 (-499))) (|has| |#1| (-564 (-499)))) ((-564 (-823 (-355))) -12 (|has| (-1001) (-564 (-823 (-355)))) (|has| |#1| (-564 (-823 (-355))))) ((-564 (-823 (-523))) -12 (|has| (-1001) (-564 (-823 (-523)))) (|has| |#1| (-564 (-823 (-523))))) ((-209 |#1|) . T) ((-211) . T) ((-263 (-383 $) (-383 $)) |has| |#1| (-515)) ((-263 |#1| |#1|) . T) ((-263 $ $) . T) ((-267) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-339))) ((-284) |has| |#1| (-339)) ((-286 $) . T) ((-302 |#1| #0#) . T) ((-353 |#1|) . T) ((-387 |#1|) . T) ((-427) -3255 (|has| |#1| (-840)) (|has| |#1| (-427)) (|has| |#1| (-339))) ((-484 #2=(-1001) |#1|) . T) ((-484 #2# $) . T) ((-484 $ $) . T) ((-515) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-339))) ((-591 #1#) |has| |#1| (-37 (-383 (-523)))) ((-591 |#1|) . T) ((-591 $) . T) ((-585 (-523)) |has| |#1| (-585 (-523))) ((-585 |#1|) . T) ((-657 #1#) |has| |#1| (-37 (-383 (-523)))) ((-657 |#1|) |has| |#1| (-158)) ((-657 $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-339))) ((-666) . T) ((-786) |has| |#1| (-786)) ((-831 #2#) . T) ((-831 (-1087)) |has| |#1| (-831 (-1087))) ((-817 (-355)) -12 (|has| (-1001) (-817 (-355))) (|has| |#1| (-817 (-355)))) ((-817 (-523)) -12 (|has| (-1001) (-817 (-523))) (|has| |#1| (-817 (-523)))) ((-880 |#1| #0# #2#) . T) ((-840) |has| |#1| (-840)) ((-851) |has| |#1| (-339)) ((-964 (-383 (-523))) |has| |#1| (-964 (-383 (-523)))) ((-964 (-523)) |has| |#1| (-964 (-523))) ((-964 #2#) . T) ((-964 |#1|) . T) ((-979 #1#) |has| |#1| (-37 (-383 (-523)))) ((-979 |#1|) . T) ((-979 $) -3255 (|has| |#1| (-840)) (|has| |#1| (-515)) (|has| |#1| (-427)) (|has| |#1| (-339)) (|has| |#1| (-158))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1063) |has| |#1| (-1063)) ((-1127) |has| |#1| (-840)))
-((-3716 (((-589 (-1001)) $) 28)) (-3142 (($ $) 25)) (-3694 (($ |#2| |#3|) NIL) (($ $ (-1001) |#3|) 22) (($ $ (-589 (-1001)) (-589 |#3|)) 21)) (-3107 (($ $) 14)) (-3119 ((|#2| $) 12)) (-1487 ((|#3| $) 10)))
-(((-1146 |#1| |#2| |#3|) (-10 -8 (-15 -3716 ((-589 (-1001)) |#1|)) (-15 -3694 (|#1| |#1| (-589 (-1001)) (-589 |#3|))) (-15 -3694 (|#1| |#1| (-1001) |#3|)) (-15 -3142 (|#1| |#1|)) (-15 -3694 (|#1| |#2| |#3|)) (-15 -1487 (|#3| |#1|)) (-15 -3107 (|#1| |#1|)) (-15 -3119 (|#2| |#1|))) (-1147 |#2| |#3|) (-973) (-731)) (T -1146))
-NIL
-(-10 -8 (-15 -3716 ((-589 (-1001)) |#1|)) (-15 -3694 (|#1| |#1| (-589 (-1001)) (-589 |#3|))) (-15 -3694 (|#1| |#1| (-1001) |#3|)) (-15 -3142 (|#1| |#1|)) (-15 -3694 (|#1| |#2| |#3|)) (-15 -1487 (|#3| |#1|)) (-15 -3107 (|#1| |#1|)) (-15 -3119 (|#2| |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3716 (((-589 (-1001)) $) 74)) (-2354 (((-1087) $) 103)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 51 (|has| |#1| (-515)))) (-3950 (($ $) 52 (|has| |#1| (-515)))) (-3226 (((-108) $) 54 (|has| |#1| (-515)))) (-1756 (($ $ |#2|) 98) (($ $ |#2| |#2|) 97)) (-2736 (((-1068 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 105)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3142 (($ $) 60)) (-4211 (((-3 $ "failed") $) 34)) (-2294 (((-108) $) 73)) (-1500 ((|#2| $) 100) ((|#2| $ |#2|) 99)) (-3482 (((-108) $) 31)) (-3059 (($ $ (-852)) 101)) (-4060 (((-108) $) 62)) (-3694 (($ |#1| |#2|) 61) (($ $ (-1001) |#2|) 76) (($ $ (-589 (-1001)) (-589 |#2|)) 75)) (-3015 (($ (-1 |#1| |#1|) $) 63)) (-3107 (($ $) 65)) (-3119 ((|#1| $) 66)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-1361 (($ $ |#2|) 95)) (-2469 (((-3 $ "failed") $ $) 50 (|has| |#1| (-515)))) (-1349 (((-1068 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-1502 ((|#1| $ |#2|) 104) (($ $ $) 81 (|has| |#2| (-1028)))) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) 89 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1087) (-710)) 88 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-589 (-1087))) 87 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1087)) 86 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-710)) 84 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-1487 ((|#2| $) 64)) (-3749 (($ $) 72)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ (-383 (-523))) 57 (|has| |#1| (-37 (-383 (-523))))) (($ $) 49 (|has| |#1| (-515))) (($ |#1|) 47 (|has| |#1| (-158)))) (-1234 ((|#1| $ |#2|) 59)) (-2301 (((-3 $ "failed") $) 48 (|has| |#1| (-134)))) (-1698 (((-710)) 29)) (-3882 ((|#1| $) 102)) (-3842 (((-108) $ $) 53 (|has| |#1| (-515)))) (-2523 ((|#1| $ |#2|) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) 93 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1087) (-710)) 92 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-589 (-1087))) 91 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1087)) 90 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-710)) 85 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-4037 (((-108) $ $) 6)) (-4125 (($ $ |#1|) 58 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-383 (-523)) $) 56 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 55 (|has| |#1| (-37 (-383 (-523)))))))
-(((-1147 |#1| |#2|) (-129) (-973) (-731)) (T -1147))
-((-2736 (*1 *2 *1) (-12 (-4 *1 (-1147 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731)) (-5 *2 (-1068 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-1502 (*1 *2 *1 *3) (-12 (-4 *1 (-1147 *2 *3)) (-4 *3 (-731)) (-4 *2 (-973)))) (-2354 (*1 *2 *1) (-12 (-4 *1 (-1147 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731)) (-5 *2 (-1087)))) (-3882 (*1 *2 *1) (-12 (-4 *1 (-1147 *2 *3)) (-4 *3 (-731)) (-4 *2 (-973)))) (-3059 (*1 *1 *1 *2) (-12 (-5 *2 (-852)) (-4 *1 (-1147 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731)))) (-1500 (*1 *2 *1) (-12 (-4 *1 (-1147 *3 *2)) (-4 *3 (-973)) (-4 *2 (-731)))) (-1500 (*1 *2 *1 *2) (-12 (-4 *1 (-1147 *3 *2)) (-4 *3 (-973)) (-4 *2 (-731)))) (-1756 (*1 *1 *1 *2) (-12 (-4 *1 (-1147 *3 *2)) (-4 *3 (-973)) (-4 *2 (-731)))) (-1756 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1147 *3 *2)) (-4 *3 (-973)) (-4 *2 (-731)))) (-2523 (*1 *2 *1 *3) (-12 (-4 *1 (-1147 *2 *3)) (-4 *3 (-731)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3976 (*2 (-1087)))) (-4 *2 (-973)))) (-1361 (*1 *1 *1 *2) (-12 (-4 *1 (-1147 *3 *2)) (-4 *3 (-973)) (-4 *2 (-731)))) (-1349 (*1 *2 *1 *3) (-12 (-4 *1 (-1147 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731)) (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1068 *3)))))
-(-13 (-902 |t#1| |t#2| (-1001)) (-10 -8 (-15 -2736 ((-1068 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -1502 (|t#1| $ |t#2|)) (-15 -2354 ((-1087) $)) (-15 -3882 (|t#1| $)) (-15 -3059 ($ $ (-852))) (-15 -1500 (|t#2| $)) (-15 -1500 (|t#2| $ |t#2|)) (-15 -1756 ($ $ |t#2|)) (-15 -1756 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -3976 (|t#1| (-1087)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -2523 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -1361 ($ $ |t#2|)) (IF (|has| |t#2| (-1028)) (-6 (-263 $ $)) |%noBranch|) (IF (|has| |t#1| (-15 * (|t#1| |t#2| |t#1|))) (PROGN (-6 (-211)) (IF (|has| |t#1| (-831 (-1087))) (-6 (-831 (-1087))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -1349 ((-1068 |t#1|) $ |t#1|)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((-37 |#1|) |has| |#1| (-158)) ((-37 $) |has| |#1| (-515)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-383 (-523)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-211) |has| |#1| (-15 * (|#1| |#2| |#1|))) ((-263 $ $) |has| |#2| (-1028)) ((-267) |has| |#1| (-515)) ((-515) |has| |#1| (-515)) ((-591 #0#) |has| |#1| (-37 (-383 (-523)))) ((-591 |#1|) . T) ((-591 $) . T) ((-657 #0#) |has| |#1| (-37 (-383 (-523)))) ((-657 |#1|) |has| |#1| (-158)) ((-657 $) |has| |#1| (-515)) ((-666) . T) ((-831 (-1087)) -12 (|has| |#1| (-15 * (|#1| |#2| |#1|))) (|has| |#1| (-831 (-1087)))) ((-902 |#1| |#2| (-1001)) . T) ((-979 #0#) |has| |#1| (-37 (-383 (-523)))) ((-979 |#1|) . T) ((-979 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3763 ((|#2| |#2|) 12)) (-2105 (((-394 |#2|) |#2|) 14)) (-2882 (((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-523))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-523)))) 30)))
-(((-1148 |#1| |#2|) (-10 -7 (-15 -2105 ((-394 |#2|) |#2|)) (-15 -3763 (|#2| |#2|)) (-15 -2882 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-523))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-523)))))) (-515) (-13 (-1145 |#1|) (-515) (-10 -8 (-15 -2056 ($ $ $))))) (T -1148))
-((-2882 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4) (|:| |xpnt| (-523)))) (-4 *4 (-13 (-1145 *3) (-515) (-10 -8 (-15 -2056 ($ $ $))))) (-4 *3 (-515)) (-5 *1 (-1148 *3 *4)))) (-3763 (*1 *2 *2) (-12 (-4 *3 (-515)) (-5 *1 (-1148 *3 *2)) (-4 *2 (-13 (-1145 *3) (-515) (-10 -8 (-15 -2056 ($ $ $))))))) (-2105 (*1 *2 *3) (-12 (-4 *4 (-515)) (-5 *2 (-394 *3)) (-5 *1 (-1148 *4 *3)) (-4 *3 (-13 (-1145 *4) (-515) (-10 -8 (-15 -2056 ($ $ $))))))))
-(-10 -7 (-15 -2105 ((-394 |#2|) |#2|)) (-15 -3763 (|#2| |#2|)) (-15 -2882 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-523))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-523))))))
-((-3015 (((-1154 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1154 |#1| |#3| |#5|)) 24)))
-(((-1149 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3015 ((-1154 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1154 |#1| |#3| |#5|)))) (-973) (-973) (-1087) (-1087) |#1| |#2|) (T -1149))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1154 *5 *7 *9)) (-4 *5 (-973)) (-4 *6 (-973)) (-14 *7 (-1087)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1154 *6 *8 *10)) (-5 *1 (-1149 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1087)))))
-(-10 -7 (-15 -3015 ((-1154 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1154 |#1| |#3| |#5|))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3716 (((-589 (-1001)) $) 74)) (-2354 (((-1087) $) 103)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 51 (|has| |#1| (-515)))) (-3950 (($ $) 52 (|has| |#1| (-515)))) (-3226 (((-108) $) 54 (|has| |#1| (-515)))) (-1756 (($ $ (-383 (-523))) 98) (($ $ (-383 (-523)) (-383 (-523))) 97)) (-2736 (((-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#1|))) $) 105)) (-3695 (($ $) 135 (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) 118 (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) 19)) (-3763 (($ $) 162 (|has| |#1| (-339)))) (-2105 (((-394 $) $) 163 (|has| |#1| (-339)))) (-3584 (($ $) 117 (|has| |#1| (-37 (-383 (-523)))))) (-3684 (((-108) $ $) 153 (|has| |#1| (-339)))) (-3669 (($ $) 134 (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) 119 (|has| |#1| (-37 (-383 (-523)))))) (-3223 (($ (-710) (-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#1|)))) 172)) (-3717 (($ $) 133 (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) 120 (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) 17 T CONST)) (-2501 (($ $ $) 157 (|has| |#1| (-339)))) (-3142 (($ $) 60)) (-4211 (((-3 $ "failed") $) 34)) (-2486 (($ $ $) 156 (|has| |#1| (-339)))) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 151 (|has| |#1| (-339)))) (-1330 (((-108) $) 164 (|has| |#1| (-339)))) (-2294 (((-108) $) 73)) (-2188 (($) 145 (|has| |#1| (-37 (-383 (-523)))))) (-1500 (((-383 (-523)) $) 100) (((-383 (-523)) $ (-383 (-523))) 99)) (-3482 (((-108) $) 31)) (-1324 (($ $ (-523)) 116 (|has| |#1| (-37 (-383 (-523)))))) (-3059 (($ $ (-852)) 101) (($ $ (-383 (-523))) 171)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 160 (|has| |#1| (-339)))) (-4060 (((-108) $) 62)) (-3694 (($ |#1| (-383 (-523))) 61) (($ $ (-1001) (-383 (-523))) 76) (($ $ (-589 (-1001)) (-589 (-383 (-523)))) 75)) (-3015 (($ (-1 |#1| |#1|) $) 63)) (-2062 (($ $) 142 (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) 65)) (-3119 ((|#1| $) 66)) (-2012 (($ (-589 $)) 149 (|has| |#1| (-339))) (($ $ $) 148 (|has| |#1| (-339)))) (-3841 (((-1070) $) 9)) (-3071 (($ $) 165 (|has| |#1| (-339)))) (-2669 (($ $) 170 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087)) 169 (-3255 (-12 (|has| |#1| (-29 (-523))) (|has| |#1| (-889)) (|has| |#1| (-1109)) (|has| |#1| (-37 (-383 (-523))))) (-12 (|has| |#1| (-15 -3716 ((-589 (-1087)) |#1|))) (|has| |#1| (-15 -2669 (|#1| |#1| (-1087)))) (|has| |#1| (-37 (-383 (-523)))))))) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 150 (|has| |#1| (-339)))) (-2056 (($ (-589 $)) 147 (|has| |#1| (-339))) (($ $ $) 146 (|has| |#1| (-339)))) (-3573 (((-394 $) $) 161 (|has| |#1| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 158 (|has| |#1| (-339)))) (-1361 (($ $ (-383 (-523))) 95)) (-2469 (((-3 $ "failed") $ $) 50 (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 152 (|has| |#1| (-339)))) (-1847 (($ $) 143 (|has| |#1| (-37 (-383 (-523)))))) (-1349 (((-1068 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-383 (-523))))))) (-3087 (((-710) $) 154 (|has| |#1| (-339)))) (-1502 ((|#1| $ (-383 (-523))) 104) (($ $ $) 81 (|has| (-383 (-523)) (-1028)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 155 (|has| |#1| (-339)))) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) 89 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-1087) (-710)) 88 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-589 (-1087))) 87 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-1087)) 86 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-710)) 84 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (-1487 (((-383 (-523)) $) 64)) (-3730 (($ $) 132 (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) 121 (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) 131 (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) 122 (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) 130 (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) 123 (|has| |#1| (-37 (-383 (-523)))))) (-3749 (($ $) 72)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 47 (|has| |#1| (-158))) (($ (-383 (-523))) 57 (|has| |#1| (-37 (-383 (-523))))) (($ $) 49 (|has| |#1| (-515)))) (-1234 ((|#1| $ (-383 (-523))) 59)) (-2301 (((-3 $ "failed") $) 48 (|has| |#1| (-134)))) (-1698 (((-710)) 29)) (-3882 ((|#1| $) 102)) (-3768 (($ $) 141 (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) 129 (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) 53 (|has| |#1| (-515)))) (-3743 (($ $) 140 (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) 128 (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) 139 (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) 127 (|has| |#1| (-37 (-383 (-523)))))) (-2523 ((|#1| $ (-383 (-523))) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-383 (-523))))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-3135 (($ $) 138 (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) 126 (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) 137 (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) 125 (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) 136 (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) 124 (|has| |#1| (-37 (-383 (-523)))))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 166 (|has| |#1| (-339)))) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) 93 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-1087) (-710)) 92 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-589 (-1087))) 91 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-1087)) 90 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-710)) 85 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (-4037 (((-108) $ $) 6)) (-4125 (($ $ |#1|) 58 (|has| |#1| (-339))) (($ $ $) 168 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 167 (|has| |#1| (-339))) (($ $ $) 144 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 115 (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-383 (-523)) $) 56 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 55 (|has| |#1| (-37 (-383 (-523)))))))
-(((-1150 |#1|) (-129) (-973)) (T -1150))
-((-3223 (*1 *1 *2 *3) (-12 (-5 *2 (-710)) (-5 *3 (-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| *4)))) (-4 *4 (-973)) (-4 *1 (-1150 *4)))) (-3059 (*1 *1 *1 *2) (-12 (-5 *2 (-383 (-523))) (-4 *1 (-1150 *3)) (-4 *3 (-973)))) (-2669 (*1 *1 *1) (-12 (-4 *1 (-1150 *2)) (-4 *2 (-973)) (-4 *2 (-37 (-383 (-523)))))) (-2669 (*1 *1 *1 *2) (-3255 (-12 (-5 *2 (-1087)) (-4 *1 (-1150 *3)) (-4 *3 (-973)) (-12 (-4 *3 (-29 (-523))) (-4 *3 (-889)) (-4 *3 (-1109)) (-4 *3 (-37 (-383 (-523)))))) (-12 (-5 *2 (-1087)) (-4 *1 (-1150 *3)) (-4 *3 (-973)) (-12 (|has| *3 (-15 -3716 ((-589 *2) *3))) (|has| *3 (-15 -2669 (*3 *3 *2))) (-4 *3 (-37 (-383 (-523)))))))))
-(-13 (-1147 |t#1| (-383 (-523))) (-10 -8 (-15 -3223 ($ (-710) (-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| |t#1|))))) (-15 -3059 ($ $ (-383 (-523)))) (IF (|has| |t#1| (-37 (-383 (-523)))) (PROGN (-15 -2669 ($ $)) (IF (|has| |t#1| (-15 -2669 (|t#1| |t#1| (-1087)))) (IF (|has| |t#1| (-15 -3716 ((-589 (-1087)) |t#1|))) (-15 -2669 ($ $ (-1087))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1109)) (IF (|has| |t#1| (-889)) (IF (|has| |t#1| (-29 (-523))) (-15 -2669 ($ $ (-1087))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-930)) (-6 (-1109))) |%noBranch|) (IF (|has| |t#1| (-339)) (-6 (-339)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-383 (-523))) . T) ((-25) . T) ((-37 #1=(-383 (-523))) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-37 |#1|) |has| |#1| (-158)) ((-37 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-34) |has| |#1| (-37 (-383 (-523)))) ((-91) |has| |#1| (-37 (-383 (-523)))) ((-97) . T) ((-107 #1# #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339)) (|has| |#1| (-158))) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) -3255 (|has| |#1| (-515)) (|has| |#1| (-339)) (|has| |#1| (-158))) ((-211) |has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) ((-221) |has| |#1| (-339)) ((-261) |has| |#1| (-37 (-383 (-523)))) ((-263 $ $) |has| (-383 (-523)) (-1028)) ((-267) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-284) |has| |#1| (-339)) ((-339) |has| |#1| (-339)) ((-427) |has| |#1| (-339)) ((-464) |has| |#1| (-37 (-383 (-523)))) ((-515) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-591 #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-591 |#1|) . T) ((-591 $) . T) ((-657 #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-657 |#1|) |has| |#1| (-158)) ((-657 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-666) . T) ((-831 (-1087)) -12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087)))) ((-902 |#1| #0# (-1001)) . T) ((-851) |has| |#1| (-339)) ((-930) |has| |#1| (-37 (-383 (-523)))) ((-979 #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-979 |#1|) . T) ((-979 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339)) (|has| |#1| (-158))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1109) |has| |#1| (-37 (-383 (-523)))) ((-1112) |has| |#1| (-37 (-383 (-523)))) ((-1127) |has| |#1| (-339)) ((-1147 |#1| #0#) . T))
-((-2388 (((-108) $) 12)) (-2898 (((-3 |#3| "failed") $) 17)) (-1996 ((|#3| $) 14)))
-(((-1151 |#1| |#2| |#3|) (-10 -8 (-15 -1996 (|#3| |#1|)) (-15 -2898 ((-3 |#3| "failed") |#1|)) (-15 -2388 ((-108) |#1|))) (-1152 |#2| |#3|) (-973) (-1129 |#2|)) (T -1151))
-NIL
-(-10 -8 (-15 -1996 (|#3| |#1|)) (-15 -2898 ((-3 |#3| "failed") |#1|)) (-15 -2388 ((-108) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3716 (((-589 (-1001)) $) 74)) (-2354 (((-1087) $) 103)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 51 (|has| |#1| (-515)))) (-3950 (($ $) 52 (|has| |#1| (-515)))) (-3226 (((-108) $) 54 (|has| |#1| (-515)))) (-1756 (($ $ (-383 (-523))) 98) (($ $ (-383 (-523)) (-383 (-523))) 97)) (-2736 (((-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#1|))) $) 105)) (-3695 (($ $) 135 (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) 118 (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) 19)) (-3763 (($ $) 162 (|has| |#1| (-339)))) (-2105 (((-394 $) $) 163 (|has| |#1| (-339)))) (-3584 (($ $) 117 (|has| |#1| (-37 (-383 (-523)))))) (-3684 (((-108) $ $) 153 (|has| |#1| (-339)))) (-3669 (($ $) 134 (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) 119 (|has| |#1| (-37 (-383 (-523)))))) (-3223 (($ (-710) (-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#1|)))) 172)) (-3717 (($ $) 133 (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) 120 (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) 17 T CONST)) (-2898 (((-3 |#2| "failed") $) 183)) (-1996 ((|#2| $) 182)) (-2501 (($ $ $) 157 (|has| |#1| (-339)))) (-3142 (($ $) 60)) (-4211 (((-3 $ "failed") $) 34)) (-3640 (((-383 (-523)) $) 180)) (-2486 (($ $ $) 156 (|has| |#1| (-339)))) (-3047 (($ (-383 (-523)) |#2|) 181)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 151 (|has| |#1| (-339)))) (-1330 (((-108) $) 164 (|has| |#1| (-339)))) (-2294 (((-108) $) 73)) (-2188 (($) 145 (|has| |#1| (-37 (-383 (-523)))))) (-1500 (((-383 (-523)) $) 100) (((-383 (-523)) $ (-383 (-523))) 99)) (-3482 (((-108) $) 31)) (-1324 (($ $ (-523)) 116 (|has| |#1| (-37 (-383 (-523)))))) (-3059 (($ $ (-852)) 101) (($ $ (-383 (-523))) 171)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 160 (|has| |#1| (-339)))) (-4060 (((-108) $) 62)) (-3694 (($ |#1| (-383 (-523))) 61) (($ $ (-1001) (-383 (-523))) 76) (($ $ (-589 (-1001)) (-589 (-383 (-523)))) 75)) (-3015 (($ (-1 |#1| |#1|) $) 63)) (-2062 (($ $) 142 (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) 65)) (-3119 ((|#1| $) 66)) (-2012 (($ (-589 $)) 149 (|has| |#1| (-339))) (($ $ $) 148 (|has| |#1| (-339)))) (-3901 ((|#2| $) 179)) (-1512 (((-3 |#2| "failed") $) 177)) (-3794 ((|#2| $) 178)) (-3841 (((-1070) $) 9)) (-3071 (($ $) 165 (|has| |#1| (-339)))) (-2669 (($ $) 170 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087)) 169 (-3255 (-12 (|has| |#1| (-29 (-523))) (|has| |#1| (-889)) (|has| |#1| (-1109)) (|has| |#1| (-37 (-383 (-523))))) (-12 (|has| |#1| (-15 -3716 ((-589 (-1087)) |#1|))) (|has| |#1| (-15 -2669 (|#1| |#1| (-1087)))) (|has| |#1| (-37 (-383 (-523)))))))) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 150 (|has| |#1| (-339)))) (-2056 (($ (-589 $)) 147 (|has| |#1| (-339))) (($ $ $) 146 (|has| |#1| (-339)))) (-3573 (((-394 $) $) 161 (|has| |#1| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 158 (|has| |#1| (-339)))) (-1361 (($ $ (-383 (-523))) 95)) (-2469 (((-3 $ "failed") $ $) 50 (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 152 (|has| |#1| (-339)))) (-1847 (($ $) 143 (|has| |#1| (-37 (-383 (-523)))))) (-1349 (((-1068 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-383 (-523))))))) (-3087 (((-710) $) 154 (|has| |#1| (-339)))) (-1502 ((|#1| $ (-383 (-523))) 104) (($ $ $) 81 (|has| (-383 (-523)) (-1028)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 155 (|has| |#1| (-339)))) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) 89 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-1087) (-710)) 88 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-589 (-1087))) 87 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-1087)) 86 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-710)) 84 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (-1487 (((-383 (-523)) $) 64)) (-3730 (($ $) 132 (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) 121 (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) 131 (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) 122 (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) 130 (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) 123 (|has| |#1| (-37 (-383 (-523)))))) (-3749 (($ $) 72)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 47 (|has| |#1| (-158))) (($ |#2|) 184) (($ (-383 (-523))) 57 (|has| |#1| (-37 (-383 (-523))))) (($ $) 49 (|has| |#1| (-515)))) (-1234 ((|#1| $ (-383 (-523))) 59)) (-2301 (((-3 $ "failed") $) 48 (|has| |#1| (-134)))) (-1698 (((-710)) 29)) (-3882 ((|#1| $) 102)) (-3768 (($ $) 141 (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) 129 (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) 53 (|has| |#1| (-515)))) (-3743 (($ $) 140 (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) 128 (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) 139 (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) 127 (|has| |#1| (-37 (-383 (-523)))))) (-2523 ((|#1| $ (-383 (-523))) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-383 (-523))))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-3135 (($ $) 138 (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) 126 (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) 137 (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) 125 (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) 136 (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) 124 (|has| |#1| (-37 (-383 (-523)))))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 166 (|has| |#1| (-339)))) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) 93 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-1087) (-710)) 92 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-589 (-1087))) 91 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-1087)) 90 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (($ $ (-710)) 85 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (-4037 (((-108) $ $) 6)) (-4125 (($ $ |#1|) 58 (|has| |#1| (-339))) (($ $ $) 168 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 167 (|has| |#1| (-339))) (($ $ $) 144 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 115 (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-383 (-523)) $) 56 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 55 (|has| |#1| (-37 (-383 (-523)))))))
-(((-1152 |#1| |#2|) (-129) (-973) (-1129 |t#1|)) (T -1152))
-((-1487 (*1 *2 *1) (-12 (-4 *1 (-1152 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1129 *3)) (-5 *2 (-383 (-523))))) (-3976 (*1 *1 *2) (-12 (-4 *3 (-973)) (-4 *1 (-1152 *3 *2)) (-4 *2 (-1129 *3)))) (-3047 (*1 *1 *2 *3) (-12 (-5 *2 (-383 (-523))) (-4 *4 (-973)) (-4 *1 (-1152 *4 *3)) (-4 *3 (-1129 *4)))) (-3640 (*1 *2 *1) (-12 (-4 *1 (-1152 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1129 *3)) (-5 *2 (-383 (-523))))) (-3901 (*1 *2 *1) (-12 (-4 *1 (-1152 *3 *2)) (-4 *3 (-973)) (-4 *2 (-1129 *3)))) (-3794 (*1 *2 *1) (-12 (-4 *1 (-1152 *3 *2)) (-4 *3 (-973)) (-4 *2 (-1129 *3)))) (-1512 (*1 *2 *1) (|partial| -12 (-4 *1 (-1152 *3 *2)) (-4 *3 (-973)) (-4 *2 (-1129 *3)))))
-(-13 (-1150 |t#1|) (-964 |t#2|) (-10 -8 (-15 -3047 ($ (-383 (-523)) |t#2|)) (-15 -3640 ((-383 (-523)) $)) (-15 -3901 (|t#2| $)) (-15 -1487 ((-383 (-523)) $)) (-15 -3976 ($ |t#2|)) (-15 -3794 (|t#2| $)) (-15 -1512 ((-3 |t#2| "failed") $))))
-(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-383 (-523))) . T) ((-25) . T) ((-37 #1=(-383 (-523))) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-37 |#1|) |has| |#1| (-158)) ((-37 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-34) |has| |#1| (-37 (-383 (-523)))) ((-91) |has| |#1| (-37 (-383 (-523)))) ((-97) . T) ((-107 #1# #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339)) (|has| |#1| (-158))) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) -3255 (|has| |#1| (-515)) (|has| |#1| (-339)) (|has| |#1| (-158))) ((-211) |has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) ((-221) |has| |#1| (-339)) ((-261) |has| |#1| (-37 (-383 (-523)))) ((-263 $ $) |has| (-383 (-523)) (-1028)) ((-267) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-284) |has| |#1| (-339)) ((-339) |has| |#1| (-339)) ((-427) |has| |#1| (-339)) ((-464) |has| |#1| (-37 (-383 (-523)))) ((-515) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-591 #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-591 |#1|) . T) ((-591 $) . T) ((-657 #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-657 |#1|) |has| |#1| (-158)) ((-657 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339))) ((-666) . T) ((-831 (-1087)) -12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087)))) ((-902 |#1| #0# (-1001)) . T) ((-851) |has| |#1| (-339)) ((-930) |has| |#1| (-37 (-383 (-523)))) ((-964 |#2|) . T) ((-979 #1#) -3255 (|has| |#1| (-339)) (|has| |#1| (-37 (-383 (-523))))) ((-979 |#1|) . T) ((-979 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-339)) (|has| |#1| (-158))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1109) |has| |#1| (-37 (-383 (-523)))) ((-1112) |has| |#1| (-37 (-383 (-523)))) ((-1127) |has| |#1| (-339)) ((-1147 |#1| #0#) . T) ((-1150 |#1|) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3716 (((-589 (-1001)) $) NIL)) (-2354 (((-1087) $) 96)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-1756 (($ $ (-383 (-523))) 106) (($ $ (-383 (-523)) (-383 (-523))) 108)) (-2736 (((-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#1|))) $) 51)) (-3695 (($ $) 180 (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) 156 (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL (|has| |#1| (-339)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3584 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3684 (((-108) $ $) NIL (|has| |#1| (-339)))) (-3669 (($ $) 176 (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) 152 (|has| |#1| (-37 (-383 (-523)))))) (-3223 (($ (-710) (-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#1|)))) 61)) (-3717 (($ $) 184 (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) 160 (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#2| "failed") $) NIL)) (-1996 ((|#2| $) NIL)) (-2501 (($ $ $) NIL (|has| |#1| (-339)))) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) 79)) (-3640 (((-383 (-523)) $) 13)) (-2486 (($ $ $) NIL (|has| |#1| (-339)))) (-3047 (($ (-383 (-523)) |#2|) 11)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#1| (-339)))) (-1330 (((-108) $) NIL (|has| |#1| (-339)))) (-2294 (((-108) $) 68)) (-2188 (($) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1500 (((-383 (-523)) $) 103) (((-383 (-523)) $ (-383 (-523))) 104)) (-3482 (((-108) $) NIL)) (-1324 (($ $ (-523)) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3059 (($ $ (-852)) 120) (($ $ (-383 (-523))) 118)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-383 (-523))) 31) (($ $ (-1001) (-383 (-523))) NIL) (($ $ (-589 (-1001)) (-589 (-383 (-523)))) NIL)) (-3015 (($ (-1 |#1| |#1|) $) 115)) (-2062 (($ $) 150 (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3901 ((|#2| $) 12)) (-1512 (((-3 |#2| "failed") $) 41)) (-3794 ((|#2| $) 42)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) 93 (|has| |#1| (-339)))) (-2669 (($ $) 135 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087)) 140 (-3255 (-12 (|has| |#1| (-15 -2669 (|#1| |#1| (-1087)))) (|has| |#1| (-15 -3716 ((-589 (-1087)) |#1|))) (|has| |#1| (-37 (-383 (-523))))) (-12 (|has| |#1| (-29 (-523))) (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-889)) (|has| |#1| (-1109)))))) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-339)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3573 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-1361 (($ $ (-383 (-523))) 112)) (-2469 (((-3 $ "failed") $ $) NIL (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-1847 (($ $) 148 (|has| |#1| (-37 (-383 (-523)))))) (-1349 (((-1068 |#1|) $ |#1|) 90 (|has| |#1| (-15 ** (|#1| |#1| (-383 (-523))))))) (-3087 (((-710) $) NIL (|has| |#1| (-339)))) (-1502 ((|#1| $ (-383 (-523))) 100) (($ $ $) 86 (|has| (-383 (-523)) (-1028)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) 127 (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $) 124 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (-1487 (((-383 (-523)) $) 16)) (-3730 (($ $) 186 (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) 162 (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) 182 (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) 158 (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) 178 (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) 154 (|has| |#1| (-37 (-383 (-523)))))) (-3749 (($ $) 110)) (-3976 (((-794) $) NIL) (($ (-523)) 35) (($ |#1|) 27 (|has| |#1| (-158))) (($ |#2|) 32) (($ (-383 (-523))) 128 (|has| |#1| (-37 (-383 (-523))))) (($ $) NIL (|has| |#1| (-515)))) (-1234 ((|#1| $ (-383 (-523))) 99)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) 117)) (-3882 ((|#1| $) 98)) (-3768 (($ $) 192 (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) 168 (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3743 (($ $) 188 (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) 164 (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) 196 (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) 172 (|has| |#1| (-37 (-383 (-523)))))) (-2523 ((|#1| $ (-383 (-523))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-383 (-523))))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-3135 (($ $) 198 (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) 174 (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) 194 (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) 170 (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) 190 (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) 166 (|has| |#1| (-37 (-383 (-523)))))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339)))) (-1428 (($) 21 T CONST)) (-1440 (($) 17 T CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (-4037 (((-108) $ $) 66)) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339))) (($ $ $) 92 (|has| |#1| (-339)))) (-4115 (($ $) 131) (($ $ $) 72)) (-4103 (($ $ $) 70)) (** (($ $ (-852)) NIL) (($ $ (-710)) 76) (($ $ (-523)) 145 (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 146 (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 74) (($ $ |#1|) NIL) (($ |#1| $) 126) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))))
-(((-1153 |#1| |#2|) (-1152 |#1| |#2|) (-973) (-1129 |#1|)) (T -1153))
-NIL
-(-1152 |#1| |#2|)
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3716 (((-589 (-1001)) $) NIL)) (-2354 (((-1087) $) 11)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) NIL (|has| |#1| (-515)))) (-1756 (($ $ (-383 (-523))) NIL) (($ $ (-383 (-523)) (-383 (-523))) NIL)) (-2736 (((-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#1|))) $) NIL)) (-3695 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3763 (($ $) NIL (|has| |#1| (-339)))) (-2105 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3584 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3684 (((-108) $ $) NIL (|has| |#1| (-339)))) (-3669 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3223 (($ (-710) (-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#1|)))) NIL)) (-3717 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-1133 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1161 |#1| |#2| |#3|) "failed") $) 22)) (-1996 (((-1133 |#1| |#2| |#3|) $) NIL) (((-1161 |#1| |#2| |#3|) $) NIL)) (-2501 (($ $ $) NIL (|has| |#1| (-339)))) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3640 (((-383 (-523)) $) 57)) (-2486 (($ $ $) NIL (|has| |#1| (-339)))) (-3047 (($ (-383 (-523)) (-1133 |#1| |#2| |#3|)) NIL)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) NIL (|has| |#1| (-339)))) (-1330 (((-108) $) NIL (|has| |#1| (-339)))) (-2294 (((-108) $) NIL)) (-2188 (($) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1500 (((-383 (-523)) $) NIL) (((-383 (-523)) $ (-383 (-523))) NIL)) (-3482 (((-108) $) NIL)) (-1324 (($ $ (-523)) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3059 (($ $ (-852)) NIL) (($ $ (-383 (-523))) NIL)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-383 (-523))) 30) (($ $ (-1001) (-383 (-523))) NIL) (($ $ (-589 (-1001)) (-589 (-383 (-523)))) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-2062 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-2012 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3901 (((-1133 |#1| |#2| |#3|) $) 60)) (-1512 (((-3 (-1133 |#1| |#2| |#3|) "failed") $) NIL)) (-3794 (((-1133 |#1| |#2| |#3|) $) NIL)) (-3841 (((-1070) $) NIL)) (-3071 (($ $) NIL (|has| |#1| (-339)))) (-2669 (($ $) 39 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087)) NIL (-3255 (-12 (|has| |#1| (-15 -2669 (|#1| |#1| (-1087)))) (|has| |#1| (-15 -3716 ((-589 (-1087)) |#1|))) (|has| |#1| (-37 (-383 (-523))))) (-12 (|has| |#1| (-29 (-523))) (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-889)) (|has| |#1| (-1109))))) (($ $ (-1165 |#2|)) 40 (|has| |#1| (-37 (-383 (-523)))))) (-2435 (((-1034) $) NIL)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) NIL (|has| |#1| (-339)))) (-2056 (($ (-589 $)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-3573 (((-394 $) $) NIL (|has| |#1| (-339)))) (-3263 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-339))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) NIL (|has| |#1| (-339)))) (-1361 (($ $ (-383 (-523))) NIL)) (-2469 (((-3 $ "failed") $ $) NIL (|has| |#1| (-515)))) (-2057 (((-3 (-589 $) "failed") (-589 $) $) NIL (|has| |#1| (-339)))) (-1847 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1349 (((-1068 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-383 (-523))))))) (-3087 (((-710) $) NIL (|has| |#1| (-339)))) (-1502 ((|#1| $ (-383 (-523))) NIL) (($ $ $) NIL (|has| (-383 (-523)) (-1028)))) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) NIL (|has| |#1| (-339)))) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $ (-1165 |#2|)) 38)) (-1487 (((-383 (-523)) $) NIL)) (-3730 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3749 (($ $) NIL)) (-3976 (((-794) $) 89) (($ (-523)) NIL) (($ |#1|) NIL (|has| |#1| (-158))) (($ (-1133 |#1| |#2| |#3|)) 16) (($ (-1161 |#1| |#2| |#3|)) 17) (($ (-1165 |#2|)) 36) (($ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $) NIL (|has| |#1| (-515)))) (-1234 ((|#1| $ (-383 (-523))) NIL)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) NIL)) (-3882 ((|#1| $) 12)) (-3768 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3743 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2523 ((|#1| $ (-383 (-523))) 62 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-383 (-523))))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-3135 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339)))) (-1428 (($) 32 T CONST)) (-1440 (($) 26 T CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-383 (-523)) |#1|))))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) 34)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ (-523)) NIL (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))))
-(((-1154 |#1| |#2| |#3|) (-13 (-1152 |#1| (-1133 |#1| |#2| |#3|)) (-964 (-1161 |#1| |#2| |#3|)) (-10 -8 (-15 -3976 ($ (-1165 |#2|))) (-15 -4024 ($ $ (-1165 |#2|))) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1165 |#2|))) |%noBranch|))) (-973) (-1087) |#1|) (T -1154))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1154 *3 *4 *5)) (-4 *3 (-973)) (-14 *5 *3))) (-4024 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1154 *3 *4 *5)) (-4 *3 (-973)) (-14 *5 *3))) (-2669 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1154 *3 *4 *5)) (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-14 *5 *3))))
-(-13 (-1152 |#1| (-1133 |#1| |#2| |#3|)) (-964 (-1161 |#1| |#2| |#3|)) (-10 -8 (-15 -3976 ($ (-1165 |#2|))) (-15 -4024 ($ $ (-1165 |#2|))) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1165 |#2|))) |%noBranch|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 34)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL)) (-3950 (($ $) NIL)) (-3226 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 (-523) "failed") $) NIL (|has| (-1154 |#2| |#3| |#4|) (-964 (-523)))) (((-3 (-383 (-523)) "failed") $) NIL (|has| (-1154 |#2| |#3| |#4|) (-964 (-383 (-523))))) (((-3 (-1154 |#2| |#3| |#4|) "failed") $) 20)) (-1996 (((-523) $) NIL (|has| (-1154 |#2| |#3| |#4|) (-964 (-523)))) (((-383 (-523)) $) NIL (|has| (-1154 |#2| |#3| |#4|) (-964 (-383 (-523))))) (((-1154 |#2| |#3| |#4|) $) NIL)) (-3142 (($ $) 35)) (-4211 (((-3 $ "failed") $) 25)) (-2213 (($ $) NIL (|has| (-1154 |#2| |#3| |#4|) (-427)))) (-2067 (($ $ (-1154 |#2| |#3| |#4|) (-295 |#2| |#3| |#4|) $) NIL)) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) 11)) (-4060 (((-108) $) NIL)) (-3694 (($ (-1154 |#2| |#3| |#4|) (-295 |#2| |#3| |#4|)) 23)) (-2140 (((-295 |#2| |#3| |#4|) $) NIL)) (-3927 (($ (-1 (-295 |#2| |#3| |#4|) (-295 |#2| |#3| |#4|)) $) NIL)) (-3015 (($ (-1 (-1154 |#2| |#3| |#4|) (-1154 |#2| |#3| |#4|)) $) NIL)) (-3202 (((-3 (-779 |#2|) "failed") $) 75)) (-3107 (($ $) NIL)) (-3119 (((-1154 |#2| |#3| |#4|) $) 18)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3084 (((-108) $) NIL)) (-3095 (((-1154 |#2| |#3| |#4|) $) NIL)) (-2469 (((-3 $ "failed") $ (-1154 |#2| |#3| |#4|)) NIL (|has| (-1154 |#2| |#3| |#4|) (-515))) (((-3 $ "failed") $ $) NIL)) (-2631 (((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1154 |#2| |#3| |#4|)) (|:| |%expon| (-295 |#2| |#3| |#4|)) (|:| |%expTerms| (-589 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#2|)))))) (|:| |%type| (-1070))) "failed") $) 58)) (-1487 (((-295 |#2| |#3| |#4|) $) 14)) (-2267 (((-1154 |#2| |#3| |#4|) $) NIL (|has| (-1154 |#2| |#3| |#4|) (-427)))) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ (-1154 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-383 (-523))) NIL (-3255 (|has| (-1154 |#2| |#3| |#4|) (-37 (-383 (-523)))) (|has| (-1154 |#2| |#3| |#4|) (-964 (-383 (-523))))))) (-1639 (((-589 (-1154 |#2| |#3| |#4|)) $) NIL)) (-1234 (((-1154 |#2| |#3| |#4|) $ (-295 |#2| |#3| |#4|)) NIL)) (-2301 (((-3 $ "failed") $) NIL (|has| (-1154 |#2| |#3| |#4|) (-134)))) (-1698 (((-710)) NIL)) (-2656 (($ $ $ (-710)) NIL (|has| (-1154 |#2| |#3| |#4|) (-158)))) (-3842 (((-108) $ $) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 63 T CONST)) (-1440 (($) NIL T CONST)) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ (-1154 |#2| |#3| |#4|)) NIL (|has| (-1154 |#2| |#3| |#4|) (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ (-1154 |#2| |#3| |#4|)) NIL) (($ (-1154 |#2| |#3| |#4|) $) NIL) (($ (-383 (-523)) $) NIL (|has| (-1154 |#2| |#3| |#4|) (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| (-1154 |#2| |#3| |#4|) (-37 (-383 (-523)))))))
-(((-1155 |#1| |#2| |#3| |#4|) (-13 (-302 (-1154 |#2| |#3| |#4|) (-295 |#2| |#3| |#4|)) (-515) (-10 -8 (-15 -3202 ((-3 (-779 |#2|) "failed") $)) (-15 -2631 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1154 |#2| |#3| |#4|)) (|:| |%expon| (-295 |#2| |#3| |#4|)) (|:| |%expTerms| (-589 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#2|)))))) (|:| |%type| (-1070))) "failed") $)))) (-13 (-786) (-964 (-523)) (-585 (-523)) (-427)) (-13 (-27) (-1109) (-406 |#1|)) (-1087) |#2|) (T -1155))
-((-3202 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-786) (-964 (-523)) (-585 (-523)) (-427))) (-5 *2 (-779 *4)) (-5 *1 (-1155 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1109) (-406 *3))) (-14 *5 (-1087)) (-14 *6 *4))) (-2631 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-786) (-964 (-523)) (-585 (-523)) (-427))) (-5 *2 (-2 (|:| |%term| (-2 (|:| |%coef| (-1154 *4 *5 *6)) (|:| |%expon| (-295 *4 *5 *6)) (|:| |%expTerms| (-589 (-2 (|:| |k| (-383 (-523))) (|:| |c| *4)))))) (|:| |%type| (-1070)))) (-5 *1 (-1155 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1109) (-406 *3))) (-14 *5 (-1087)) (-14 *6 *4))))
-(-13 (-302 (-1154 |#2| |#3| |#4|) (-295 |#2| |#3| |#4|)) (-515) (-10 -8 (-15 -3202 ((-3 (-779 |#2|) "failed") $)) (-15 -2631 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1154 |#2| |#3| |#4|)) (|:| |%expon| (-295 |#2| |#3| |#4|)) (|:| |%expTerms| (-589 (-2 (|:| |k| (-383 (-523))) (|:| |c| |#2|)))))) (|:| |%type| (-1070))) "failed") $))))
-((-2058 ((|#2| $) 29)) (-3972 ((|#2| $) 18)) (-3548 (($ $) 36)) (-3117 (($ $ (-523)) 64)) (-2282 (((-108) $ (-710)) 33)) (-3365 ((|#2| $ |#2|) 61)) (-2535 ((|#2| $ |#2|) 59)) (-4101 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 52) (($ $ "rest" $) 56) ((|#2| $ "last" |#2|) 54)) (-3508 (($ $ (-589 $)) 60)) (-3962 ((|#2| $) 17)) (-3891 (($ $) NIL) (($ $ (-710)) 42)) (-1378 (((-589 $) $) 26)) (-3339 (((-108) $ $) 50)) (-1344 (((-108) $ (-710)) 32)) (-4042 (((-108) $ (-710)) 31)) (-3391 (((-108) $) 28)) (-2247 ((|#2| $) 24) (($ $ (-710)) 46)) (-1502 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-2837 (((-108) $) 22)) (-2238 (($ $) 39)) (-4198 (($ $) 65)) (-3647 (((-710) $) 41)) (-2801 (($ $) 40)) (-2785 (($ $ $) 58) (($ |#2| $) NIL)) (-2464 (((-589 $) $) 27)) (-4037 (((-108) $ $) 48)) (-1271 (((-710) $) 35)))
-(((-1156 |#1| |#2|) (-10 -8 (-15 -3117 (|#1| |#1| (-523))) (-15 -4101 (|#2| |#1| "last" |#2|)) (-15 -2535 (|#2| |#1| |#2|)) (-15 -4101 (|#1| |#1| "rest" |#1|)) (-15 -4101 (|#2| |#1| "first" |#2|)) (-15 -4198 (|#1| |#1|)) (-15 -2238 (|#1| |#1|)) (-15 -3647 ((-710) |#1|)) (-15 -2801 (|#1| |#1|)) (-15 -3972 (|#2| |#1|)) (-15 -3962 (|#2| |#1|)) (-15 -3548 (|#1| |#1|)) (-15 -2247 (|#1| |#1| (-710))) (-15 -1502 (|#2| |#1| "last")) (-15 -2247 (|#2| |#1|)) (-15 -3891 (|#1| |#1| (-710))) (-15 -1502 (|#1| |#1| "rest")) (-15 -3891 (|#1| |#1|)) (-15 -1502 (|#2| |#1| "first")) (-15 -2785 (|#1| |#2| |#1|)) (-15 -2785 (|#1| |#1| |#1|)) (-15 -3365 (|#2| |#1| |#2|)) (-15 -4101 (|#2| |#1| "value" |#2|)) (-15 -3508 (|#1| |#1| (-589 |#1|))) (-15 -3339 ((-108) |#1| |#1|)) (-15 -2837 ((-108) |#1|)) (-15 -1502 (|#2| |#1| "value")) (-15 -2058 (|#2| |#1|)) (-15 -3391 ((-108) |#1|)) (-15 -1378 ((-589 |#1|) |#1|)) (-15 -2464 ((-589 |#1|) |#1|)) (-15 -4037 ((-108) |#1| |#1|)) (-15 -1271 ((-710) |#1|)) (-15 -2282 ((-108) |#1| (-710))) (-15 -1344 ((-108) |#1| (-710))) (-15 -4042 ((-108) |#1| (-710)))) (-1157 |#2|) (-1123)) (T -1156))
-NIL
-(-10 -8 (-15 -3117 (|#1| |#1| (-523))) (-15 -4101 (|#2| |#1| "last" |#2|)) (-15 -2535 (|#2| |#1| |#2|)) (-15 -4101 (|#1| |#1| "rest" |#1|)) (-15 -4101 (|#2| |#1| "first" |#2|)) (-15 -4198 (|#1| |#1|)) (-15 -2238 (|#1| |#1|)) (-15 -3647 ((-710) |#1|)) (-15 -2801 (|#1| |#1|)) (-15 -3972 (|#2| |#1|)) (-15 -3962 (|#2| |#1|)) (-15 -3548 (|#1| |#1|)) (-15 -2247 (|#1| |#1| (-710))) (-15 -1502 (|#2| |#1| "last")) (-15 -2247 (|#2| |#1|)) (-15 -3891 (|#1| |#1| (-710))) (-15 -1502 (|#1| |#1| "rest")) (-15 -3891 (|#1| |#1|)) (-15 -1502 (|#2| |#1| "first")) (-15 -2785 (|#1| |#2| |#1|)) (-15 -2785 (|#1| |#1| |#1|)) (-15 -3365 (|#2| |#1| |#2|)) (-15 -4101 (|#2| |#1| "value" |#2|)) (-15 -3508 (|#1| |#1| (-589 |#1|))) (-15 -3339 ((-108) |#1| |#1|)) (-15 -2837 ((-108) |#1|)) (-15 -1502 (|#2| |#1| "value")) (-15 -2058 (|#2| |#1|)) (-15 -3391 ((-108) |#1|)) (-15 -1378 ((-589 |#1|) |#1|)) (-15 -2464 ((-589 |#1|) |#1|)) (-15 -4037 ((-108) |#1| |#1|)) (-15 -1271 ((-710) |#1|)) (-15 -2282 ((-108) |#1| (-710))) (-15 -1344 ((-108) |#1| (-710))) (-15 -4042 ((-108) |#1| (-710))))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2058 ((|#1| $) 48)) (-3972 ((|#1| $) 65)) (-3548 (($ $) 67)) (-3117 (($ $ (-523)) 52 (|has| $ (-6 -4249)))) (-2282 (((-108) $ (-710)) 8)) (-3365 ((|#1| $ |#1|) 39 (|has| $ (-6 -4249)))) (-3546 (($ $ $) 56 (|has| $ (-6 -4249)))) (-2535 ((|#1| $ |#1|) 54 (|has| $ (-6 -4249)))) (-1957 ((|#1| $ |#1|) 58 (|has| $ (-6 -4249)))) (-4101 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4249))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4249))) (($ $ "rest" $) 55 (|has| $ (-6 -4249))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4249)))) (-3508 (($ $ (-589 $)) 41 (|has| $ (-6 -4249)))) (-3962 ((|#1| $) 66)) (-1640 (($) 7 T CONST)) (-3891 (($ $) 73) (($ $ (-710)) 71)) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-1378 (((-589 $) $) 50)) (-3339 (((-108) $ $) 42 (|has| |#1| (-1016)))) (-1344 (((-108) $ (-710)) 9)) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35)) (-4042 (((-108) $ (-710)) 10)) (-2112 (((-589 |#1|) $) 45)) (-3391 (((-108) $) 49)) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-2247 ((|#1| $) 70) (($ $ (-710)) 68)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-3879 ((|#1| $) 76) (($ $ (-710)) 74)) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69)) (-2981 (((-523) $ $) 44)) (-2837 (((-108) $) 46)) (-2238 (($ $) 62)) (-4198 (($ $) 59 (|has| $ (-6 -4249)))) (-3647 (((-710) $) 63)) (-2801 (($ $) 64)) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-4124 (($ $) 13)) (-1622 (($ $ $) 61 (|has| $ (-6 -4249))) (($ $ |#1|) 60 (|has| $ (-6 -4249)))) (-2785 (($ $ $) 78) (($ |#1| $) 77)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-2464 (((-589 $) $) 51)) (-4004 (((-108) $ $) 43 (|has| |#1| (-1016)))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-1157 |#1|) (-129) (-1123)) (T -1157))
-((-2785 (*1 *1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-2785 (*1 *1 *2 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-3879 (*1 *2 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-1502 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-3879 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-1157 *3)) (-4 *3 (-1123)))) (-3891 (*1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-1502 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1157 *3)) (-4 *3 (-1123)))) (-3891 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-1157 *3)) (-4 *3 (-1123)))) (-2247 (*1 *2 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-1502 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-2247 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-1157 *3)) (-4 *3 (-1123)))) (-3548 (*1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-3962 (*1 *2 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-3972 (*1 *2 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-2801 (*1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-3647 (*1 *2 *1) (-12 (-4 *1 (-1157 *3)) (-4 *3 (-1123)) (-5 *2 (-710)))) (-2238 (*1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-1622 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-1622 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-4198 (*1 *1 *1) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-1957 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-4101 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-3546 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-4101 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4249)) (-4 *1 (-1157 *3)) (-4 *3 (-1123)))) (-2535 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-4101 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2)) (-4 *2 (-1123)))) (-3117 (*1 *1 *1 *2) (-12 (-5 *2 (-523)) (|has| *1 (-6 -4249)) (-4 *1 (-1157 *3)) (-4 *3 (-1123)))))
-(-13 (-938 |t#1|) (-10 -8 (-15 -2785 ($ $ $)) (-15 -2785 ($ |t#1| $)) (-15 -3879 (|t#1| $)) (-15 -1502 (|t#1| $ "first")) (-15 -3879 ($ $ (-710))) (-15 -3891 ($ $)) (-15 -1502 ($ $ "rest")) (-15 -3891 ($ $ (-710))) (-15 -2247 (|t#1| $)) (-15 -1502 (|t#1| $ "last")) (-15 -2247 ($ $ (-710))) (-15 -3548 ($ $)) (-15 -3962 (|t#1| $)) (-15 -3972 (|t#1| $)) (-15 -2801 ($ $)) (-15 -3647 ((-710) $)) (-15 -2238 ($ $)) (IF (|has| $ (-6 -4249)) (PROGN (-15 -1622 ($ $ $)) (-15 -1622 ($ $ |t#1|)) (-15 -4198 ($ $)) (-15 -1957 (|t#1| $ |t#1|)) (-15 -4101 (|t#1| $ "first" |t#1|)) (-15 -3546 ($ $ $)) (-15 -4101 ($ $ "rest" $)) (-15 -2535 (|t#1| $ |t#1|)) (-15 -4101 (|t#1| $ "last" |t#1|)) (-15 -3117 ($ $ (-523)))) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1016)) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-563 (-794)))) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-462 |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-938 |#1|) . T) ((-1016) |has| |#1| (-1016)) ((-1123) . T))
-((-3015 ((|#4| (-1 |#2| |#1|) |#3|) 17)))
-(((-1158 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3015 (|#4| (-1 |#2| |#1|) |#3|))) (-973) (-973) (-1160 |#1|) (-1160 |#2|)) (T -1158))
-((-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-973)) (-4 *6 (-973)) (-4 *2 (-1160 *6)) (-5 *1 (-1158 *5 *6 *4 *2)) (-4 *4 (-1160 *5)))))
-(-10 -7 (-15 -3015 (|#4| (-1 |#2| |#1|) |#3|)))
-((-2388 (((-108) $) 15)) (-3695 (($ $) 92)) (-2608 (($ $) 68)) (-3669 (($ $) 88)) (-2588 (($ $) 64)) (-3717 (($ $) 96)) (-2629 (($ $) 72)) (-2062 (($ $) 62)) (-1847 (($ $) 60)) (-3730 (($ $) 98)) (-2641 (($ $) 74)) (-3707 (($ $) 94)) (-2617 (($ $) 70)) (-3683 (($ $) 90)) (-2598 (($ $) 66)) (-3976 (((-794) $) 48) (($ (-523)) NIL) (($ (-383 (-523))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-3768 (($ $) 104)) (-2680 (($ $) 80)) (-3743 (($ $) 100)) (-2655 (($ $) 76)) (-3793 (($ $) 108)) (-3645 (($ $) 84)) (-3135 (($ $) 110)) (-3657 (($ $) 86)) (-3780 (($ $) 106)) (-3632 (($ $) 82)) (-3756 (($ $) 102)) (-2667 (($ $) 78)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ |#2|) 52) (($ $ $) 55) (($ $ (-383 (-523))) 58)))
-(((-1159 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-383 (-523)))) (-15 -2608 (|#1| |#1|)) (-15 -2588 (|#1| |#1|)) (-15 -2629 (|#1| |#1|)) (-15 -2641 (|#1| |#1|)) (-15 -2617 (|#1| |#1|)) (-15 -2598 (|#1| |#1|)) (-15 -2667 (|#1| |#1|)) (-15 -3632 (|#1| |#1|)) (-15 -3657 (|#1| |#1|)) (-15 -3645 (|#1| |#1|)) (-15 -2655 (|#1| |#1|)) (-15 -2680 (|#1| |#1|)) (-15 -3683 (|#1| |#1|)) (-15 -3707 (|#1| |#1|)) (-15 -3730 (|#1| |#1|)) (-15 -3717 (|#1| |#1|)) (-15 -3669 (|#1| |#1|)) (-15 -3695 (|#1| |#1|)) (-15 -3756 (|#1| |#1|)) (-15 -3780 (|#1| |#1|)) (-15 -3135 (|#1| |#1|)) (-15 -3793 (|#1| |#1|)) (-15 -3743 (|#1| |#1|)) (-15 -3768 (|#1| |#1|)) (-15 -2062 (|#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3976 (|#1| |#2|)) (-15 -3976 (|#1| |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -3976 (|#1| (-523))) (-15 ** (|#1| |#1| (-710))) (-15 ** (|#1| |#1| (-852))) (-15 -2388 ((-108) |#1|)) (-15 -3976 ((-794) |#1|))) (-1160 |#2|) (-973)) (T -1159))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-383 (-523)))) (-15 -2608 (|#1| |#1|)) (-15 -2588 (|#1| |#1|)) (-15 -2629 (|#1| |#1|)) (-15 -2641 (|#1| |#1|)) (-15 -2617 (|#1| |#1|)) (-15 -2598 (|#1| |#1|)) (-15 -2667 (|#1| |#1|)) (-15 -3632 (|#1| |#1|)) (-15 -3657 (|#1| |#1|)) (-15 -3645 (|#1| |#1|)) (-15 -2655 (|#1| |#1|)) (-15 -2680 (|#1| |#1|)) (-15 -3683 (|#1| |#1|)) (-15 -3707 (|#1| |#1|)) (-15 -3730 (|#1| |#1|)) (-15 -3717 (|#1| |#1|)) (-15 -3669 (|#1| |#1|)) (-15 -3695 (|#1| |#1|)) (-15 -3756 (|#1| |#1|)) (-15 -3780 (|#1| |#1|)) (-15 -3135 (|#1| |#1|)) (-15 -3793 (|#1| |#1|)) (-15 -3743 (|#1| |#1|)) (-15 -3768 (|#1| |#1|)) (-15 -2062 (|#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3976 (|#1| |#2|)) (-15 -3976 (|#1| |#1|)) (-15 -3976 (|#1| (-383 (-523)))) (-15 -3976 (|#1| (-523))) (-15 ** (|#1| |#1| (-710))) (-15 ** (|#1| |#1| (-852))) (-15 -2388 ((-108) |#1|)) (-15 -3976 ((-794) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3716 (((-589 (-1001)) $) 74)) (-2354 (((-1087) $) 103)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 51 (|has| |#1| (-515)))) (-3950 (($ $) 52 (|has| |#1| (-515)))) (-3226 (((-108) $) 54 (|has| |#1| (-515)))) (-1756 (($ $ (-710)) 98) (($ $ (-710) (-710)) 97)) (-2736 (((-1068 (-2 (|:| |k| (-710)) (|:| |c| |#1|))) $) 105)) (-3695 (($ $) 135 (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) 118 (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) 19)) (-3584 (($ $) 117 (|has| |#1| (-37 (-383 (-523)))))) (-3669 (($ $) 134 (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) 119 (|has| |#1| (-37 (-383 (-523)))))) (-3223 (($ (-1068 (-2 (|:| |k| (-710)) (|:| |c| |#1|)))) 155) (($ (-1068 |#1|)) 153)) (-3717 (($ $) 133 (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) 120 (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) 17 T CONST)) (-3142 (($ $) 60)) (-4211 (((-3 $ "failed") $) 34)) (-1506 (($ $) 152)) (-3241 (((-883 |#1|) $ (-710)) 150) (((-883 |#1|) $ (-710) (-710)) 149)) (-2294 (((-108) $) 73)) (-2188 (($) 145 (|has| |#1| (-37 (-383 (-523)))))) (-1500 (((-710) $) 100) (((-710) $ (-710)) 99)) (-3482 (((-108) $) 31)) (-1324 (($ $ (-523)) 116 (|has| |#1| (-37 (-383 (-523)))))) (-3059 (($ $ (-852)) 101)) (-2950 (($ (-1 |#1| (-523)) $) 151)) (-4060 (((-108) $) 62)) (-3694 (($ |#1| (-710)) 61) (($ $ (-1001) (-710)) 76) (($ $ (-589 (-1001)) (-589 (-710))) 75)) (-3015 (($ (-1 |#1| |#1|) $) 63)) (-2062 (($ $) 142 (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) 65)) (-3119 ((|#1| $) 66)) (-3841 (((-1070) $) 9)) (-2669 (($ $) 147 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087)) 146 (-3255 (-12 (|has| |#1| (-29 (-523))) (|has| |#1| (-889)) (|has| |#1| (-1109)) (|has| |#1| (-37 (-383 (-523))))) (-12 (|has| |#1| (-15 -3716 ((-589 (-1087)) |#1|))) (|has| |#1| (-15 -2669 (|#1| |#1| (-1087)))) (|has| |#1| (-37 (-383 (-523)))))))) (-2435 (((-1034) $) 10)) (-1361 (($ $ (-710)) 95)) (-2469 (((-3 $ "failed") $ $) 50 (|has| |#1| (-515)))) (-1847 (($ $) 143 (|has| |#1| (-37 (-383 (-523)))))) (-1349 (((-1068 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-710)))))) (-1502 ((|#1| $ (-710)) 104) (($ $ $) 81 (|has| (-710) (-1028)))) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) 89 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-710) |#1|))))) (($ $ (-1087) (-710)) 88 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-710) |#1|))))) (($ $ (-589 (-1087))) 87 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-710) |#1|))))) (($ $ (-1087)) 86 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-710) |#1|))))) (($ $ (-710)) 84 (|has| |#1| (-15 * (|#1| (-710) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-710) |#1|))))) (-1487 (((-710) $) 64)) (-3730 (($ $) 132 (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) 121 (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) 131 (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) 122 (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) 130 (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) 123 (|has| |#1| (-37 (-383 (-523)))))) (-3749 (($ $) 72)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ (-383 (-523))) 57 (|has| |#1| (-37 (-383 (-523))))) (($ $) 49 (|has| |#1| (-515))) (($ |#1|) 47 (|has| |#1| (-158)))) (-1639 (((-1068 |#1|) $) 154)) (-1234 ((|#1| $ (-710)) 59)) (-2301 (((-3 $ "failed") $) 48 (|has| |#1| (-134)))) (-1698 (((-710)) 29)) (-3882 ((|#1| $) 102)) (-3768 (($ $) 141 (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) 129 (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) 53 (|has| |#1| (-515)))) (-3743 (($ $) 140 (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) 128 (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) 139 (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) 127 (|has| |#1| (-37 (-383 (-523)))))) (-2523 ((|#1| $ (-710)) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-710)))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-3135 (($ $) 138 (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) 126 (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) 137 (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) 125 (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) 136 (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) 124 (|has| |#1| (-37 (-383 (-523)))))) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) 93 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-710) |#1|))))) (($ $ (-1087) (-710)) 92 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-710) |#1|))))) (($ $ (-589 (-1087))) 91 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-710) |#1|))))) (($ $ (-1087)) 90 (-12 (|has| |#1| (-831 (-1087))) (|has| |#1| (-15 * (|#1| (-710) |#1|))))) (($ $ (-710)) 85 (|has| |#1| (-15 * (|#1| (-710) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-710) |#1|))))) (-4037 (((-108) $ $) 6)) (-4125 (($ $ |#1|) 58 (|has| |#1| (-339)))) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ |#1|) 148 (|has| |#1| (-339))) (($ $ $) 144 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 115 (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-383 (-523)) $) 56 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) 55 (|has| |#1| (-37 (-383 (-523)))))))
-(((-1160 |#1|) (-129) (-973)) (T -1160))
-((-3223 (*1 *1 *2) (-12 (-5 *2 (-1068 (-2 (|:| |k| (-710)) (|:| |c| *3)))) (-4 *3 (-973)) (-4 *1 (-1160 *3)))) (-1639 (*1 *2 *1) (-12 (-4 *1 (-1160 *3)) (-4 *3 (-973)) (-5 *2 (-1068 *3)))) (-3223 (*1 *1 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-4 *1 (-1160 *3)))) (-1506 (*1 *1 *1) (-12 (-4 *1 (-1160 *2)) (-4 *2 (-973)))) (-2950 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-523))) (-4 *1 (-1160 *3)) (-4 *3 (-973)))) (-3241 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-4 *1 (-1160 *4)) (-4 *4 (-973)) (-5 *2 (-883 *4)))) (-3241 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-710)) (-4 *1 (-1160 *4)) (-4 *4 (-973)) (-5 *2 (-883 *4)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1160 *2)) (-4 *2 (-973)) (-4 *2 (-339)))) (-2669 (*1 *1 *1) (-12 (-4 *1 (-1160 *2)) (-4 *2 (-973)) (-4 *2 (-37 (-383 (-523)))))) (-2669 (*1 *1 *1 *2) (-3255 (-12 (-5 *2 (-1087)) (-4 *1 (-1160 *3)) (-4 *3 (-973)) (-12 (-4 *3 (-29 (-523))) (-4 *3 (-889)) (-4 *3 (-1109)) (-4 *3 (-37 (-383 (-523)))))) (-12 (-5 *2 (-1087)) (-4 *1 (-1160 *3)) (-4 *3 (-973)) (-12 (|has| *3 (-15 -3716 ((-589 *2) *3))) (|has| *3 (-15 -2669 (*3 *3 *2))) (-4 *3 (-37 (-383 (-523)))))))))
-(-13 (-1147 |t#1| (-710)) (-10 -8 (-15 -3223 ($ (-1068 (-2 (|:| |k| (-710)) (|:| |c| |t#1|))))) (-15 -1639 ((-1068 |t#1|) $)) (-15 -3223 ($ (-1068 |t#1|))) (-15 -1506 ($ $)) (-15 -2950 ($ (-1 |t#1| (-523)) $)) (-15 -3241 ((-883 |t#1|) $ (-710))) (-15 -3241 ((-883 |t#1|) $ (-710) (-710))) (IF (|has| |t#1| (-339)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-37 (-383 (-523)))) (PROGN (-15 -2669 ($ $)) (IF (|has| |t#1| (-15 -2669 (|t#1| |t#1| (-1087)))) (IF (|has| |t#1| (-15 -3716 ((-589 (-1087)) |t#1|))) (-15 -2669 ($ $ (-1087))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1109)) (IF (|has| |t#1| (-889)) (IF (|has| |t#1| (-29 (-523))) (-15 -2669 ($ $ (-1087))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-930)) (-6 (-1109))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-710)) . T) ((-25) . T) ((-37 #1=(-383 (-523))) |has| |#1| (-37 (-383 (-523)))) ((-37 |#1|) |has| |#1| (-158)) ((-37 $) |has| |#1| (-515)) ((-34) |has| |#1| (-37 (-383 (-523)))) ((-91) |has| |#1| (-37 (-383 (-523)))) ((-97) . T) ((-107 #1# #1#) |has| |#1| (-37 (-383 (-523)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-124) . T) ((-134) |has| |#1| (-134)) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-211) |has| |#1| (-15 * (|#1| (-710) |#1|))) ((-261) |has| |#1| (-37 (-383 (-523)))) ((-263 $ $) |has| (-710) (-1028)) ((-267) |has| |#1| (-515)) ((-464) |has| |#1| (-37 (-383 (-523)))) ((-515) |has| |#1| (-515)) ((-591 #1#) |has| |#1| (-37 (-383 (-523)))) ((-591 |#1|) . T) ((-591 $) . T) ((-657 #1#) |has| |#1| (-37 (-383 (-523)))) ((-657 |#1|) |has| |#1| (-158)) ((-657 $) |has| |#1| (-515)) ((-666) . T) ((-831 (-1087)) -12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087)))) ((-902 |#1| #0# (-1001)) . T) ((-930) |has| |#1| (-37 (-383 (-523)))) ((-979 #1#) |has| |#1| (-37 (-383 (-523)))) ((-979 |#1|) . T) ((-979 $) -3255 (|has| |#1| (-515)) (|has| |#1| (-158))) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1109) |has| |#1| (-37 (-383 (-523)))) ((-1112) |has| |#1| (-37 (-383 (-523)))) ((-1147 |#1| #0#) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-3716 (((-589 (-1001)) $) NIL)) (-2354 (((-1087) $) 87)) (-1247 (((-1142 |#2| |#1|) $ (-710)) 73)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) NIL (|has| |#1| (-515)))) (-3950 (($ $) NIL (|has| |#1| (-515)))) (-3226 (((-108) $) 137 (|has| |#1| (-515)))) (-1756 (($ $ (-710)) 122) (($ $ (-710) (-710)) 124)) (-2736 (((-1068 (-2 (|:| |k| (-710)) (|:| |c| |#1|))) $) 42)) (-3695 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2608 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2999 (((-3 $ "failed") $ $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3669 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2588 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3223 (($ (-1068 (-2 (|:| |k| (-710)) (|:| |c| |#1|)))) 53) (($ (-1068 |#1|)) NIL)) (-3717 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2629 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1640 (($) NIL T CONST)) (-3491 (($ $) 128)) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-1506 (($ $) 135)) (-3241 (((-883 |#1|) $ (-710)) 63) (((-883 |#1|) $ (-710) (-710)) 65)) (-2294 (((-108) $) NIL)) (-2188 (($) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1500 (((-710) $) NIL) (((-710) $ (-710)) NIL)) (-3482 (((-108) $) NIL)) (-3935 (($ $) 112)) (-1324 (($ $ (-523)) NIL (|has| |#1| (-37 (-383 (-523)))))) (-1591 (($ (-523) (-523) $) 130)) (-3059 (($ $ (-852)) 134)) (-2950 (($ (-1 |#1| (-523)) $) 106)) (-4060 (((-108) $) NIL)) (-3694 (($ |#1| (-710)) 15) (($ $ (-1001) (-710)) NIL) (($ $ (-589 (-1001)) (-589 (-710))) NIL)) (-3015 (($ (-1 |#1| |#1|) $) 94)) (-2062 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3107 (($ $) NIL)) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2223 (($ $) 110)) (-1665 (($ $) 108)) (-3617 (($ (-523) (-523) $) 132)) (-2669 (($ $) 145 (|has| |#1| (-37 (-383 (-523))))) (($ $ (-1087)) 151 (-3255 (-12 (|has| |#1| (-15 -2669 (|#1| |#1| (-1087)))) (|has| |#1| (-15 -3716 ((-589 (-1087)) |#1|))) (|has| |#1| (-37 (-383 (-523))))) (-12 (|has| |#1| (-29 (-523))) (|has| |#1| (-37 (-383 (-523)))) (|has| |#1| (-889)) (|has| |#1| (-1109))))) (($ $ (-1165 |#2|)) 146 (|has| |#1| (-37 (-383 (-523)))))) (-2435 (((-1034) $) NIL)) (-2329 (($ $ (-523) (-523)) 116)) (-1361 (($ $ (-710)) 118)) (-2469 (((-3 $ "failed") $ $) NIL (|has| |#1| (-515)))) (-1847 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2299 (($ $) 114)) (-1349 (((-1068 |#1|) $ |#1|) 96 (|has| |#1| (-15 ** (|#1| |#1| (-710)))))) (-1502 ((|#1| $ (-710)) 91) (($ $ $) 126 (|has| (-710) (-1028)))) (-4024 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) 103 (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-710) |#1|)))) (($ $) 98 (|has| |#1| (-15 * (|#1| (-710) |#1|)))) (($ $ (-1165 |#2|)) 99)) (-1487 (((-710) $) NIL)) (-3730 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2641 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3707 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2617 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3683 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2598 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3749 (($ $) 120)) (-3976 (((-794) $) NIL) (($ (-523)) 24) (($ (-383 (-523))) 143 (|has| |#1| (-37 (-383 (-523))))) (($ $) NIL (|has| |#1| (-515))) (($ |#1|) 23 (|has| |#1| (-158))) (($ (-1142 |#2| |#1|)) 80) (($ (-1165 |#2|)) 20)) (-1639 (((-1068 |#1|) $) NIL)) (-1234 ((|#1| $ (-710)) 90)) (-2301 (((-3 $ "failed") $) NIL (|has| |#1| (-134)))) (-1698 (((-710)) NIL)) (-3882 ((|#1| $) 88)) (-3768 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2680 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3842 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3743 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2655 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3793 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3645 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2523 ((|#1| $ (-710)) 86 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-710)))) (|has| |#1| (-15 -3976 (|#1| (-1087))))))) (-3135 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3657 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3780 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3632 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-3756 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2667 (($ $) NIL (|has| |#1| (-37 (-383 (-523)))))) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 17 T CONST)) (-1440 (($) 13 T CONST)) (-1943 (($ $ (-589 (-1087)) (-589 (-710))) NIL (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087) (-710)) NIL (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-589 (-1087))) NIL (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-1087)) NIL (-12 (|has| |#1| (-15 * (|#1| (-710) |#1|))) (|has| |#1| (-831 (-1087))))) (($ $ (-710)) NIL (|has| |#1| (-15 * (|#1| (-710) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-710) |#1|))))) (-4037 (((-108) $ $) NIL)) (-4125 (($ $ |#1|) NIL (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) 102)) (-4103 (($ $ $) 18)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL) (($ $ |#1|) 140 (|has| |#1| (-339))) (($ $ $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 101) (($ (-383 (-523)) $) NIL (|has| |#1| (-37 (-383 (-523))))) (($ $ (-383 (-523))) NIL (|has| |#1| (-37 (-383 (-523)))))))
-(((-1161 |#1| |#2| |#3|) (-13 (-1160 |#1|) (-10 -8 (-15 -3976 ($ (-1142 |#2| |#1|))) (-15 -1247 ((-1142 |#2| |#1|) $ (-710))) (-15 -3976 ($ (-1165 |#2|))) (-15 -4024 ($ $ (-1165 |#2|))) (-15 -1665 ($ $)) (-15 -2223 ($ $)) (-15 -3935 ($ $)) (-15 -2299 ($ $)) (-15 -2329 ($ $ (-523) (-523))) (-15 -3491 ($ $)) (-15 -1591 ($ (-523) (-523) $)) (-15 -3617 ($ (-523) (-523) $)) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1165 |#2|))) |%noBranch|))) (-973) (-1087) |#1|) (T -1161))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-1142 *4 *3)) (-4 *3 (-973)) (-14 *4 (-1087)) (-14 *5 *3) (-5 *1 (-1161 *3 *4 *5)))) (-1247 (*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1142 *5 *4)) (-5 *1 (-1161 *4 *5 *6)) (-4 *4 (-973)) (-14 *5 (-1087)) (-14 *6 *4))) (-3976 (*1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1161 *3 *4 *5)) (-4 *3 (-973)) (-14 *5 *3))) (-4024 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1161 *3 *4 *5)) (-4 *3 (-973)) (-14 *5 *3))) (-1665 (*1 *1 *1) (-12 (-5 *1 (-1161 *2 *3 *4)) (-4 *2 (-973)) (-14 *3 (-1087)) (-14 *4 *2))) (-2223 (*1 *1 *1) (-12 (-5 *1 (-1161 *2 *3 *4)) (-4 *2 (-973)) (-14 *3 (-1087)) (-14 *4 *2))) (-3935 (*1 *1 *1) (-12 (-5 *1 (-1161 *2 *3 *4)) (-4 *2 (-973)) (-14 *3 (-1087)) (-14 *4 *2))) (-2299 (*1 *1 *1) (-12 (-5 *1 (-1161 *2 *3 *4)) (-4 *2 (-973)) (-14 *3 (-1087)) (-14 *4 *2))) (-2329 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-1161 *3 *4 *5)) (-4 *3 (-973)) (-14 *4 (-1087)) (-14 *5 *3))) (-3491 (*1 *1 *1) (-12 (-5 *1 (-1161 *2 *3 *4)) (-4 *2 (-973)) (-14 *3 (-1087)) (-14 *4 *2))) (-1591 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-1161 *3 *4 *5)) (-4 *3 (-973)) (-14 *4 (-1087)) (-14 *5 *3))) (-3617 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-1161 *3 *4 *5)) (-4 *3 (-973)) (-14 *4 (-1087)) (-14 *5 *3))) (-2669 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1161 *3 *4 *5)) (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-14 *5 *3))))
-(-13 (-1160 |#1|) (-10 -8 (-15 -3976 ($ (-1142 |#2| |#1|))) (-15 -1247 ((-1142 |#2| |#1|) $ (-710))) (-15 -3976 ($ (-1165 |#2|))) (-15 -4024 ($ $ (-1165 |#2|))) (-15 -1665 ($ $)) (-15 -2223 ($ $)) (-15 -3935 ($ $)) (-15 -2299 ($ $)) (-15 -2329 ($ $ (-523) (-523))) (-15 -3491 ($ $)) (-15 -1591 ($ (-523) (-523) $)) (-15 -3617 ($ (-523) (-523) $)) (IF (|has| |#1| (-37 (-383 (-523)))) (-15 -2669 ($ $ (-1165 |#2|))) |%noBranch|)))
-((-2066 (((-1 (-1068 |#1|) (-589 (-1068 |#1|))) (-1 |#2| (-589 |#2|))) 24)) (-2894 (((-1 (-1068 |#1|) (-1068 |#1|) (-1068 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-1632 (((-1 (-1068 |#1|) (-1068 |#1|)) (-1 |#2| |#2|)) 13)) (-2800 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-1630 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-3921 ((|#2| (-1 |#2| (-589 |#2|)) (-589 |#1|)) 54)) (-2705 (((-589 |#2|) (-589 |#1|) (-589 (-1 |#2| (-589 |#2|)))) 61)) (-3112 ((|#2| |#2| |#2|) 43)))
-(((-1162 |#1| |#2|) (-10 -7 (-15 -1632 ((-1 (-1068 |#1|) (-1068 |#1|)) (-1 |#2| |#2|))) (-15 -2894 ((-1 (-1068 |#1|) (-1068 |#1|) (-1068 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2066 ((-1 (-1068 |#1|) (-589 (-1068 |#1|))) (-1 |#2| (-589 |#2|)))) (-15 -3112 (|#2| |#2| |#2|)) (-15 -1630 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -2800 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3921 (|#2| (-1 |#2| (-589 |#2|)) (-589 |#1|))) (-15 -2705 ((-589 |#2|) (-589 |#1|) (-589 (-1 |#2| (-589 |#2|)))))) (-37 (-383 (-523))) (-1160 |#1|)) (T -1162))
-((-2705 (*1 *2 *3 *4) (-12 (-5 *3 (-589 *5)) (-5 *4 (-589 (-1 *6 (-589 *6)))) (-4 *5 (-37 (-383 (-523)))) (-4 *6 (-1160 *5)) (-5 *2 (-589 *6)) (-5 *1 (-1162 *5 *6)))) (-3921 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-589 *2))) (-5 *4 (-589 *5)) (-4 *5 (-37 (-383 (-523)))) (-4 *2 (-1160 *5)) (-5 *1 (-1162 *5 *2)))) (-2800 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1160 *4)) (-5 *1 (-1162 *4 *2)) (-4 *4 (-37 (-383 (-523)))))) (-1630 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1160 *4)) (-5 *1 (-1162 *4 *2)) (-4 *4 (-37 (-383 (-523)))))) (-3112 (*1 *2 *2 *2) (-12 (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1162 *3 *2)) (-4 *2 (-1160 *3)))) (-2066 (*1 *2 *3) (-12 (-5 *3 (-1 *5 (-589 *5))) (-4 *5 (-1160 *4)) (-4 *4 (-37 (-383 (-523)))) (-5 *2 (-1 (-1068 *4) (-589 (-1068 *4)))) (-5 *1 (-1162 *4 *5)))) (-2894 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1160 *4)) (-4 *4 (-37 (-383 (-523)))) (-5 *2 (-1 (-1068 *4) (-1068 *4) (-1068 *4))) (-5 *1 (-1162 *4 *5)))) (-1632 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1160 *4)) (-4 *4 (-37 (-383 (-523)))) (-5 *2 (-1 (-1068 *4) (-1068 *4))) (-5 *1 (-1162 *4 *5)))))
-(-10 -7 (-15 -1632 ((-1 (-1068 |#1|) (-1068 |#1|)) (-1 |#2| |#2|))) (-15 -2894 ((-1 (-1068 |#1|) (-1068 |#1|) (-1068 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2066 ((-1 (-1068 |#1|) (-589 (-1068 |#1|))) (-1 |#2| (-589 |#2|)))) (-15 -3112 (|#2| |#2| |#2|)) (-15 -1630 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -2800 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3921 (|#2| (-1 |#2| (-589 |#2|)) (-589 |#1|))) (-15 -2705 ((-589 |#2|) (-589 |#1|) (-589 (-1 |#2| (-589 |#2|))))))
-((-3479 ((|#2| |#4| (-710)) 30)) (-1887 ((|#4| |#2|) 25)) (-1358 ((|#4| (-383 |#2|)) 52 (|has| |#1| (-515)))) (-3029 (((-1 |#4| (-589 |#4|)) |#3|) 46)))
-(((-1163 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1887 (|#4| |#2|)) (-15 -3479 (|#2| |#4| (-710))) (-15 -3029 ((-1 |#4| (-589 |#4|)) |#3|)) (IF (|has| |#1| (-515)) (-15 -1358 (|#4| (-383 |#2|))) |%noBranch|)) (-973) (-1145 |#1|) (-599 |#2|) (-1160 |#1|)) (T -1163))
-((-1358 (*1 *2 *3) (-12 (-5 *3 (-383 *5)) (-4 *5 (-1145 *4)) (-4 *4 (-515)) (-4 *4 (-973)) (-4 *2 (-1160 *4)) (-5 *1 (-1163 *4 *5 *6 *2)) (-4 *6 (-599 *5)))) (-3029 (*1 *2 *3) (-12 (-4 *4 (-973)) (-4 *5 (-1145 *4)) (-5 *2 (-1 *6 (-589 *6))) (-5 *1 (-1163 *4 *5 *3 *6)) (-4 *3 (-599 *5)) (-4 *6 (-1160 *4)))) (-3479 (*1 *2 *3 *4) (-12 (-5 *4 (-710)) (-4 *5 (-973)) (-4 *2 (-1145 *5)) (-5 *1 (-1163 *5 *2 *6 *3)) (-4 *6 (-599 *2)) (-4 *3 (-1160 *5)))) (-1887 (*1 *2 *3) (-12 (-4 *4 (-973)) (-4 *3 (-1145 *4)) (-4 *2 (-1160 *4)) (-5 *1 (-1163 *4 *3 *5 *2)) (-4 *5 (-599 *3)))))
-(-10 -7 (-15 -1887 (|#4| |#2|)) (-15 -3479 (|#2| |#4| (-710))) (-15 -3029 ((-1 |#4| (-589 |#4|)) |#3|)) (IF (|has| |#1| (-515)) (-15 -1358 (|#4| (-383 |#2|))) |%noBranch|))
-NIL
-(((-1164) (-129)) (T -1164))
-NIL
-(-13 (-10 -7 (-6 -2500)))
-((-3260 (((-108) $ $) NIL)) (-2354 (((-1087)) 12)) (-3841 (((-1070) $) 17)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 11) (((-1087) $) 8)) (-4037 (((-108) $ $) 14)))
-(((-1165 |#1|) (-13 (-1016) (-563 (-1087)) (-10 -8 (-15 -3976 ((-1087) $)) (-15 -2354 ((-1087))))) (-1087)) (T -1165))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-1165 *3)) (-14 *3 *2))) (-2354 (*1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-1165 *3)) (-14 *3 *2))))
-(-13 (-1016) (-563 (-1087)) (-10 -8 (-15 -3976 ((-1087) $)) (-15 -2354 ((-1087)))))
-((-2448 (($ (-710)) 18)) (-3677 (((-629 |#2|) $ $) 40)) (-2581 ((|#2| $) 48)) (-3229 ((|#2| $) 47)) (-1879 ((|#2| $ $) 35)) (-1707 (($ $ $) 44)) (-4115 (($ $) 22) (($ $ $) 28)) (-4103 (($ $ $) 15)) (* (($ (-523) $) 25) (($ |#2| $) 31) (($ $ |#2|) 30)))
-(((-1166 |#1| |#2|) (-10 -8 (-15 -2581 (|#2| |#1|)) (-15 -3229 (|#2| |#1|)) (-15 -1707 (|#1| |#1| |#1|)) (-15 -3677 ((-629 |#2|) |#1| |#1|)) (-15 -1879 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 -4115 (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|)) (-15 -2448 (|#1| (-710))) (-15 -4103 (|#1| |#1| |#1|))) (-1167 |#2|) (-1123)) (T -1166))
-NIL
-(-10 -8 (-15 -2581 (|#2| |#1|)) (-15 -3229 (|#2| |#1|)) (-15 -1707 (|#1| |#1| |#1|)) (-15 -3677 ((-629 |#2|) |#1| |#1|)) (-15 -1879 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-523) |#1|)) (-15 -4115 (|#1| |#1| |#1|)) (-15 -4115 (|#1| |#1|)) (-15 -2448 (|#1| (-710))) (-15 -4103 (|#1| |#1| |#1|)))
-((-3260 (((-108) $ $) 19 (|has| |#1| (-1016)))) (-2448 (($ (-710)) 112 (|has| |#1| (-23)))) (-1666 (((-1174) $ (-523) (-523)) 40 (|has| $ (-6 -4249)))) (-4159 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-786)))) (-2361 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4249))) (($ $) 88 (-12 (|has| |#1| (-786)) (|has| $ (-6 -4249))))) (-3400 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-786)))) (-2282 (((-108) $ (-710)) 8)) (-4101 ((|#1| $ (-523) |#1|) 52 (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) 58 (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4248)))) (-1640 (($) 7 T CONST)) (-4091 (($ $) 90 (|has| $ (-6 -4249)))) (-4082 (($ $) 100)) (-3917 (($ $) 78 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2231 (($ |#1| $) 77 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4248)))) (-3073 ((|#1| $ (-523) |#1|) 53 (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) 51)) (-1894 (((-523) (-1 (-108) |#1|) $) 97) (((-523) |#1| $) 96 (|has| |#1| (-1016))) (((-523) |#1| $ (-523)) 95 (|has| |#1| (-1016)))) (-3133 (((-589 |#1|) $) 30 (|has| $ (-6 -4248)))) (-3677 (((-629 |#1|) $ $) 105 (|has| |#1| (-973)))) (-2348 (($ (-710) |#1|) 69)) (-1344 (((-108) $ (-710)) 9)) (-1798 (((-523) $) 43 (|has| (-523) (-786)))) (-3268 (($ $ $) 87 (|has| |#1| (-786)))) (-3123 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-786)))) (-3056 (((-589 |#1|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2133 (((-523) $) 44 (|has| (-523) (-786)))) (-2644 (($ $ $) 86 (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2581 ((|#1| $) 102 (-12 (|has| |#1| (-973)) (|has| |#1| (-930))))) (-4042 (((-108) $ (-710)) 10)) (-3229 ((|#1| $) 103 (-12 (|has| |#1| (-973)) (|has| |#1| (-930))))) (-3841 (((-1070) $) 22 (|has| |#1| (-1016)))) (-3334 (($ |#1| $ (-523)) 60) (($ $ $ (-523)) 59)) (-2909 (((-589 (-523)) $) 46)) (-2290 (((-108) (-523) $) 47)) (-2435 (((-1034) $) 21 (|has| |#1| (-1016)))) (-3879 ((|#1| $) 42 (|has| (-523) (-786)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-2408 (($ $ |#1|) 41 (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) 26 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) 25 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) 23 (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) 14)) (-1410 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) 48)) (-3163 (((-108) $) 11)) (-4055 (($) 12)) (-1502 ((|#1| $ (-523) |#1|) 50) ((|#1| $ (-523)) 49) (($ $ (-1136 (-523))) 63)) (-1879 ((|#1| $ $) 106 (|has| |#1| (-973)))) (-3725 (($ $ (-523)) 62) (($ $ (-1136 (-523))) 61)) (-1707 (($ $ $) 104 (|has| |#1| (-973)))) (-2452 (((-710) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4248))) (((-710) |#1| $) 28 (-12 (|has| |#1| (-1016)) (|has| $ (-6 -4248))))) (-2580 (($ $ $ (-523)) 91 (|has| $ (-6 -4249)))) (-4124 (($ $) 13)) (-3077 (((-499) $) 79 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 70)) (-2785 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-589 $)) 65)) (-3976 (((-794) $) 18 (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) 84 (|has| |#1| (-786)))) (-4061 (((-108) $ $) 83 (|has| |#1| (-786)))) (-4037 (((-108) $ $) 20 (|has| |#1| (-1016)))) (-4070 (((-108) $ $) 85 (|has| |#1| (-786)))) (-4052 (((-108) $ $) 82 (|has| |#1| (-786)))) (-4115 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-4103 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-523) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-666))) (($ $ |#1|) 107 (|has| |#1| (-666)))) (-1271 (((-710) $) 6 (|has| $ (-6 -4248)))))
-(((-1167 |#1|) (-129) (-1123)) (T -1167))
-((-4103 (*1 *1 *1 *1) (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-25)))) (-2448 (*1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-1167 *3)) (-4 *3 (-23)) (-4 *3 (-1123)))) (-4115 (*1 *1 *1) (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-21)))) (-4115 (*1 *1 *1 *1) (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-21)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-523)) (-4 *1 (-1167 *3)) (-4 *3 (-1123)) (-4 *3 (-21)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-666)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-666)))) (-1879 (*1 *2 *1 *1) (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-973)))) (-3677 (*1 *2 *1 *1) (-12 (-4 *1 (-1167 *3)) (-4 *3 (-1123)) (-4 *3 (-973)) (-5 *2 (-629 *3)))) (-1707 (*1 *1 *1 *1) (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-973)))) (-3229 (*1 *2 *1) (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-930)) (-4 *2 (-973)))) (-2581 (*1 *2 *1) (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-930)) (-4 *2 (-973)))))
-(-13 (-19 |t#1|) (-10 -8 (IF (|has| |t#1| (-25)) (-15 -4103 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -2448 ($ (-710))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -4115 ($ $)) (-15 -4115 ($ $ $)) (-15 * ($ (-523) $))) |%noBranch|) (IF (|has| |t#1| (-666)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-973)) (PROGN (-15 -1879 (|t#1| $ $)) (-15 -3677 ((-629 |t#1|) $ $)) (-15 -1707 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-930)) (IF (|has| |t#1| (-973)) (PROGN (-15 -3229 (|t#1| $)) (-15 -2581 (|t#1| $))) |%noBranch|) |%noBranch|)))
-(((-33) . T) ((-97) -3255 (|has| |#1| (-1016)) (|has| |#1| (-786))) ((-563 (-794)) -3255 (|has| |#1| (-1016)) (|has| |#1| (-786)) (|has| |#1| (-563 (-794)))) ((-140 |#1|) . T) ((-564 (-499)) |has| |#1| (-564 (-499))) ((-263 #0=(-523) |#1|) . T) ((-265 #0# |#1|) . T) ((-286 |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-349 |#1|) . T) ((-462 |#1|) . T) ((-556 #0# |#1|) . T) ((-484 |#1| |#1|) -12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))) ((-594 |#1|) . T) ((-19 |#1|) . T) ((-786) |has| |#1| (-786)) ((-1016) -3255 (|has| |#1| (-1016)) (|has| |#1| (-786))) ((-1123) . T))
-((-1586 (((-1169 |#2|) (-1 |#2| |#1| |#2|) (-1169 |#1|) |#2|) 13)) (-1830 ((|#2| (-1 |#2| |#1| |#2|) (-1169 |#1|) |#2|) 15)) (-3015 (((-3 (-1169 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1169 |#1|)) 28) (((-1169 |#2|) (-1 |#2| |#1|) (-1169 |#1|)) 18)))
-(((-1168 |#1| |#2|) (-10 -7 (-15 -1586 ((-1169 |#2|) (-1 |#2| |#1| |#2|) (-1169 |#1|) |#2|)) (-15 -1830 (|#2| (-1 |#2| |#1| |#2|) (-1169 |#1|) |#2|)) (-15 -3015 ((-1169 |#2|) (-1 |#2| |#1|) (-1169 |#1|))) (-15 -3015 ((-3 (-1169 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1169 |#1|)))) (-1123) (-1123)) (T -1168))
-((-3015 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1169 *5)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-1169 *6)) (-5 *1 (-1168 *5 *6)))) (-3015 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1169 *5)) (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-1169 *6)) (-5 *1 (-1168 *5 *6)))) (-1830 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1169 *5)) (-4 *5 (-1123)) (-4 *2 (-1123)) (-5 *1 (-1168 *5 *2)))) (-1586 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1169 *6)) (-4 *6 (-1123)) (-4 *5 (-1123)) (-5 *2 (-1169 *5)) (-5 *1 (-1168 *6 *5)))))
-(-10 -7 (-15 -1586 ((-1169 |#2|) (-1 |#2| |#1| |#2|) (-1169 |#1|) |#2|)) (-15 -1830 (|#2| (-1 |#2| |#1| |#2|) (-1169 |#1|) |#2|)) (-15 -3015 ((-1169 |#2|) (-1 |#2| |#1|) (-1169 |#1|))) (-15 -3015 ((-3 (-1169 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1169 |#1|))))
-((-3260 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-2448 (($ (-710)) NIL (|has| |#1| (-23)))) (-4014 (($ (-589 |#1|)) 9)) (-1666 (((-1174) $ (-523) (-523)) NIL (|has| $ (-6 -4249)))) (-4159 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-786)))) (-2361 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4249))) (($ $) NIL (-12 (|has| $ (-6 -4249)) (|has| |#1| (-786))))) (-3400 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-786)))) (-2282 (((-108) $ (-710)) NIL)) (-4101 ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249))) ((|#1| $ (-1136 (-523)) |#1|) NIL (|has| $ (-6 -4249)))) (-1299 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1640 (($) NIL T CONST)) (-4091 (($ $) NIL (|has| $ (-6 -4249)))) (-4082 (($ $) NIL)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2231 (($ |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1830 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4248))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4248)))) (-3073 ((|#1| $ (-523) |#1|) NIL (|has| $ (-6 -4249)))) (-3002 ((|#1| $ (-523)) NIL)) (-1894 (((-523) (-1 (-108) |#1|) $) NIL) (((-523) |#1| $) NIL (|has| |#1| (-1016))) (((-523) |#1| $ (-523)) NIL (|has| |#1| (-1016)))) (-3133 (((-589 |#1|) $) 15 (|has| $ (-6 -4248)))) (-3677 (((-629 |#1|) $ $) NIL (|has| |#1| (-973)))) (-2348 (($ (-710) |#1|) NIL)) (-1344 (((-108) $ (-710)) NIL)) (-1798 (((-523) $) NIL (|has| (-523) (-786)))) (-3268 (($ $ $) NIL (|has| |#1| (-786)))) (-3123 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-786)))) (-3056 (((-589 |#1|) $) NIL (|has| $ (-6 -4248)))) (-1348 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2133 (((-523) $) NIL (|has| (-523) (-786)))) (-2644 (($ $ $) NIL (|has| |#1| (-786)))) (-3063 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2581 ((|#1| $) NIL (-12 (|has| |#1| (-930)) (|has| |#1| (-973))))) (-4042 (((-108) $ (-710)) NIL)) (-3229 ((|#1| $) NIL (-12 (|has| |#1| (-930)) (|has| |#1| (-973))))) (-3841 (((-1070) $) NIL (|has| |#1| (-1016)))) (-3334 (($ |#1| $ (-523)) NIL) (($ $ $ (-523)) NIL)) (-2909 (((-589 (-523)) $) NIL)) (-2290 (((-108) (-523) $) NIL)) (-2435 (((-1034) $) NIL (|has| |#1| (-1016)))) (-3879 ((|#1| $) NIL (|has| (-523) (-786)))) (-2660 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2408 (($ $ |#1|) NIL (|has| $ (-6 -4249)))) (-2720 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 (-271 |#1|))) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-271 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016)))) (($ $ (-589 |#1|) (-589 |#1|)) NIL (-12 (|has| |#1| (-286 |#1|)) (|has| |#1| (-1016))))) (-2391 (((-108) $ $) NIL)) (-1410 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-3184 (((-589 |#1|) $) NIL)) (-3163 (((-108) $) NIL)) (-4055 (($) NIL)) (-1502 ((|#1| $ (-523) |#1|) NIL) ((|#1| $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-1879 ((|#1| $ $) NIL (|has| |#1| (-973)))) (-3725 (($ $ (-523)) NIL) (($ $ (-1136 (-523))) NIL)) (-1707 (($ $ $) NIL (|has| |#1| (-973)))) (-2452 (((-710) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248))) (((-710) |#1| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#1| (-1016))))) (-2580 (($ $ $ (-523)) NIL (|has| $ (-6 -4249)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) 19 (|has| |#1| (-564 (-499))))) (-3985 (($ (-589 |#1|)) 8)) (-2785 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-589 $)) NIL)) (-3976 (((-794) $) NIL (|has| |#1| (-563 (-794))))) (-1505 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4248)))) (-4078 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4061 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4037 (((-108) $ $) NIL (|has| |#1| (-1016)))) (-4070 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4052 (((-108) $ $) NIL (|has| |#1| (-786)))) (-4115 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-4103 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-523) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-666))) (($ $ |#1|) NIL (|has| |#1| (-666)))) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-1169 |#1|) (-13 (-1167 |#1|) (-10 -8 (-15 -4014 ($ (-589 |#1|))))) (-1123)) (T -1169))
-((-4014 (*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-5 *1 (-1169 *3)))))
-(-13 (-1167 |#1|) (-10 -8 (-15 -4014 ($ (-589 |#1|)))))
-((-3260 (((-108) $ $) NIL)) (-3232 (((-1070) $ (-1070)) 90) (((-1070) $ (-1070) (-1070)) 88) (((-1070) $ (-1070) (-589 (-1070))) 87)) (-4197 (($) 59)) (-1810 (((-1174) $ (-443) (-852)) 45)) (-3459 (((-1174) $ (-852) (-1070)) 73) (((-1174) $ (-852) (-805)) 74)) (-3049 (((-1174) $ (-852) (-355) (-355)) 48)) (-2793 (((-1174) $ (-1070)) 69)) (-4109 (((-1174) $ (-852) (-1070)) 78)) (-1254 (((-1174) $ (-852) (-355) (-355)) 49)) (-4132 (((-1174) $ (-852) (-852)) 46)) (-3116 (((-1174) $) 70)) (-3064 (((-1174) $ (-852) (-1070)) 77)) (-3832 (((-1174) $ (-443) (-852)) 31)) (-1961 (((-1174) $ (-852) (-1070)) 76)) (-2412 (((-589 (-240)) $) 23) (($ $ (-589 (-240))) 24)) (-2769 (((-1174) $ (-710) (-710)) 43)) (-4005 (($ $) 60) (($ (-443) (-589 (-240))) 61)) (-3841 (((-1070) $) NIL)) (-2402 (((-523) $) 38)) (-2435 (((-1034) $) NIL)) (-3563 (((-1169 (-3 (-443) "undefined")) $) 37)) (-3512 (((-1169 (-2 (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203)) (|:| -1961 (-523)) (|:| -2226 (-523)) (|:| |spline| (-523)) (|:| -3156 (-523)) (|:| |axesColor| (-805)) (|:| -3459 (-523)) (|:| |unitsColor| (-805)) (|:| |showing| (-523)))) $) 36)) (-1570 (((-1174) $ (-852) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-523) (-805) (-523) (-805) (-523)) 68)) (-3323 (((-589 (-874 (-203))) $) NIL)) (-1999 (((-443) $ (-852)) 33)) (-2745 (((-1174) $ (-710) (-710) (-852) (-852)) 40)) (-1360 (((-1174) $ (-1070)) 79)) (-2226 (((-1174) $ (-852) (-1070)) 75)) (-3976 (((-794) $) 85)) (-3922 (((-1174) $) 80)) (-3156 (((-1174) $ (-852) (-1070)) 71) (((-1174) $ (-852) (-805)) 72)) (-4037 (((-108) $ $) NIL)))
-(((-1170) (-13 (-1016) (-10 -8 (-15 -3323 ((-589 (-874 (-203))) $)) (-15 -4197 ($)) (-15 -4005 ($ $)) (-15 -2412 ((-589 (-240)) $)) (-15 -2412 ($ $ (-589 (-240)))) (-15 -4005 ($ (-443) (-589 (-240)))) (-15 -1570 ((-1174) $ (-852) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-523) (-805) (-523) (-805) (-523))) (-15 -3512 ((-1169 (-2 (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203)) (|:| -1961 (-523)) (|:| -2226 (-523)) (|:| |spline| (-523)) (|:| -3156 (-523)) (|:| |axesColor| (-805)) (|:| -3459 (-523)) (|:| |unitsColor| (-805)) (|:| |showing| (-523)))) $)) (-15 -3563 ((-1169 (-3 (-443) "undefined")) $)) (-15 -2793 ((-1174) $ (-1070))) (-15 -3832 ((-1174) $ (-443) (-852))) (-15 -1999 ((-443) $ (-852))) (-15 -3156 ((-1174) $ (-852) (-1070))) (-15 -3156 ((-1174) $ (-852) (-805))) (-15 -3459 ((-1174) $ (-852) (-1070))) (-15 -3459 ((-1174) $ (-852) (-805))) (-15 -1961 ((-1174) $ (-852) (-1070))) (-15 -3064 ((-1174) $ (-852) (-1070))) (-15 -2226 ((-1174) $ (-852) (-1070))) (-15 -1360 ((-1174) $ (-1070))) (-15 -3922 ((-1174) $)) (-15 -2745 ((-1174) $ (-710) (-710) (-852) (-852))) (-15 -1254 ((-1174) $ (-852) (-355) (-355))) (-15 -3049 ((-1174) $ (-852) (-355) (-355))) (-15 -4109 ((-1174) $ (-852) (-1070))) (-15 -2769 ((-1174) $ (-710) (-710))) (-15 -1810 ((-1174) $ (-443) (-852))) (-15 -4132 ((-1174) $ (-852) (-852))) (-15 -3232 ((-1070) $ (-1070))) (-15 -3232 ((-1070) $ (-1070) (-1070))) (-15 -3232 ((-1070) $ (-1070) (-589 (-1070)))) (-15 -3116 ((-1174) $)) (-15 -2402 ((-523) $)) (-15 -3976 ((-794) $))))) (T -1170))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-1170)))) (-3323 (*1 *2 *1) (-12 (-5 *2 (-589 (-874 (-203)))) (-5 *1 (-1170)))) (-4197 (*1 *1) (-5 *1 (-1170))) (-4005 (*1 *1 *1) (-5 *1 (-1170))) (-2412 (*1 *2 *1) (-12 (-5 *2 (-589 (-240))) (-5 *1 (-1170)))) (-2412 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-240))) (-5 *1 (-1170)))) (-4005 (*1 *1 *2 *3) (-12 (-5 *2 (-443)) (-5 *3 (-589 (-240))) (-5 *1 (-1170)))) (-1570 (*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5) (-12 (-5 *3 (-852)) (-5 *4 (-203)) (-5 *5 (-523)) (-5 *6 (-805)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-3512 (*1 *2 *1) (-12 (-5 *2 (-1169 (-2 (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203)) (|:| -1961 (-523)) (|:| -2226 (-523)) (|:| |spline| (-523)) (|:| -3156 (-523)) (|:| |axesColor| (-805)) (|:| -3459 (-523)) (|:| |unitsColor| (-805)) (|:| |showing| (-523))))) (-5 *1 (-1170)))) (-3563 (*1 *2 *1) (-12 (-5 *2 (-1169 (-3 (-443) "undefined"))) (-5 *1 (-1170)))) (-2793 (*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-3832 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-443)) (-5 *4 (-852)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-1999 (*1 *2 *1 *3) (-12 (-5 *3 (-852)) (-5 *2 (-443)) (-5 *1 (-1170)))) (-3156 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-852)) (-5 *4 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-3156 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-852)) (-5 *4 (-805)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-3459 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-852)) (-5 *4 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-3459 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-852)) (-5 *4 (-805)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-1961 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-852)) (-5 *4 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-3064 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-852)) (-5 *4 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-2226 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-852)) (-5 *4 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-1360 (*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-3922 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-1170)))) (-2745 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-710)) (-5 *4 (-852)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-1254 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-852)) (-5 *4 (-355)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-3049 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-852)) (-5 *4 (-355)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-4109 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-852)) (-5 *4 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-2769 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-1810 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-443)) (-5 *4 (-852)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-4132 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1174)) (-5 *1 (-1170)))) (-3232 (*1 *2 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1170)))) (-3232 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1170)))) (-3232 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-589 (-1070))) (-5 *2 (-1070)) (-5 *1 (-1170)))) (-3116 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-1170)))) (-2402 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-1170)))))
-(-13 (-1016) (-10 -8 (-15 -3323 ((-589 (-874 (-203))) $)) (-15 -4197 ($)) (-15 -4005 ($ $)) (-15 -2412 ((-589 (-240)) $)) (-15 -2412 ($ $ (-589 (-240)))) (-15 -4005 ($ (-443) (-589 (-240)))) (-15 -1570 ((-1174) $ (-852) (-203) (-203) (-203) (-203) (-523) (-523) (-523) (-523) (-805) (-523) (-805) (-523))) (-15 -3512 ((-1169 (-2 (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203)) (|:| -1961 (-523)) (|:| -2226 (-523)) (|:| |spline| (-523)) (|:| -3156 (-523)) (|:| |axesColor| (-805)) (|:| -3459 (-523)) (|:| |unitsColor| (-805)) (|:| |showing| (-523)))) $)) (-15 -3563 ((-1169 (-3 (-443) "undefined")) $)) (-15 -2793 ((-1174) $ (-1070))) (-15 -3832 ((-1174) $ (-443) (-852))) (-15 -1999 ((-443) $ (-852))) (-15 -3156 ((-1174) $ (-852) (-1070))) (-15 -3156 ((-1174) $ (-852) (-805))) (-15 -3459 ((-1174) $ (-852) (-1070))) (-15 -3459 ((-1174) $ (-852) (-805))) (-15 -1961 ((-1174) $ (-852) (-1070))) (-15 -3064 ((-1174) $ (-852) (-1070))) (-15 -2226 ((-1174) $ (-852) (-1070))) (-15 -1360 ((-1174) $ (-1070))) (-15 -3922 ((-1174) $)) (-15 -2745 ((-1174) $ (-710) (-710) (-852) (-852))) (-15 -1254 ((-1174) $ (-852) (-355) (-355))) (-15 -3049 ((-1174) $ (-852) (-355) (-355))) (-15 -4109 ((-1174) $ (-852) (-1070))) (-15 -2769 ((-1174) $ (-710) (-710))) (-15 -1810 ((-1174) $ (-443) (-852))) (-15 -4132 ((-1174) $ (-852) (-852))) (-15 -3232 ((-1070) $ (-1070))) (-15 -3232 ((-1070) $ (-1070) (-1070))) (-15 -3232 ((-1070) $ (-1070) (-589 (-1070)))) (-15 -3116 ((-1174) $)) (-15 -2402 ((-523) $)) (-15 -3976 ((-794) $))))
-((-3260 (((-108) $ $) NIL)) (-3641 (((-1174) $ (-355)) 140) (((-1174) $ (-355) (-355) (-355)) 141)) (-3232 (((-1070) $ (-1070)) 148) (((-1070) $ (-1070) (-1070)) 146) (((-1070) $ (-1070) (-589 (-1070))) 145)) (-2101 (($) 50)) (-1696 (((-1174) $ (-355) (-355) (-355) (-355) (-355)) 116) (((-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203))) $) 114) (((-1174) $ (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203)))) 115) (((-1174) $ (-523) (-523) (-355) (-355) (-355)) 117) (((-1174) $ (-355) (-355)) 118) (((-1174) $ (-355) (-355) (-355)) 125)) (-3569 (((-355)) 97) (((-355) (-355)) 98)) (-2529 (((-355)) 92) (((-355) (-355)) 94)) (-3169 (((-355)) 95) (((-355) (-355)) 96)) (-1406 (((-355)) 101) (((-355) (-355)) 102)) (-3412 (((-355)) 99) (((-355) (-355)) 100)) (-3049 (((-1174) $ (-355) (-355)) 142)) (-2793 (((-1174) $ (-1070)) 126)) (-3213 (((-1047 (-203)) $) 51) (($ $ (-1047 (-203))) 52)) (-1896 (((-1174) $ (-1070)) 154)) (-3177 (((-1174) $ (-1070)) 155)) (-4160 (((-1174) $ (-355) (-355)) 124) (((-1174) $ (-523) (-523)) 139)) (-4132 (((-1174) $ (-852) (-852)) 132)) (-3116 (((-1174) $) 112)) (-1613 (((-1174) $ (-1070)) 153)) (-2059 (((-1174) $ (-1070)) 109)) (-2412 (((-589 (-240)) $) 53) (($ $ (-589 (-240))) 54)) (-2769 (((-1174) $ (-710) (-710)) 131)) (-3849 (((-1174) $ (-710) (-874 (-203))) 160)) (-3237 (($ $) 56) (($ (-1047 (-203)) (-1070)) 57) (($ (-1047 (-203)) (-589 (-240))) 58)) (-1523 (((-1174) $ (-355) (-355) (-355)) 106)) (-3841 (((-1070) $) NIL)) (-2402 (((-523) $) 103)) (-3956 (((-1174) $ (-355)) 143)) (-3190 (((-1174) $ (-355)) 158)) (-2435 (((-1034) $) NIL)) (-2036 (((-1174) $ (-355)) 157)) (-3309 (((-1174) $ (-1070)) 111)) (-2745 (((-1174) $ (-710) (-710) (-852) (-852)) 130)) (-1774 (((-1174) $ (-1070)) 108)) (-1360 (((-1174) $ (-1070)) 110)) (-3252 (((-1174) $ (-144) (-144)) 129)) (-3976 (((-794) $) 137)) (-3922 (((-1174) $) 113)) (-4058 (((-1174) $ (-1070)) 156)) (-3156 (((-1174) $ (-1070)) 107)) (-4037 (((-108) $ $) NIL)))
-(((-1171) (-13 (-1016) (-10 -8 (-15 -2529 ((-355))) (-15 -2529 ((-355) (-355))) (-15 -3169 ((-355))) (-15 -3169 ((-355) (-355))) (-15 -3569 ((-355))) (-15 -3569 ((-355) (-355))) (-15 -3412 ((-355))) (-15 -3412 ((-355) (-355))) (-15 -1406 ((-355))) (-15 -1406 ((-355) (-355))) (-15 -2101 ($)) (-15 -3237 ($ $)) (-15 -3237 ($ (-1047 (-203)) (-1070))) (-15 -3237 ($ (-1047 (-203)) (-589 (-240)))) (-15 -3213 ((-1047 (-203)) $)) (-15 -3213 ($ $ (-1047 (-203)))) (-15 -3849 ((-1174) $ (-710) (-874 (-203)))) (-15 -2412 ((-589 (-240)) $)) (-15 -2412 ($ $ (-589 (-240)))) (-15 -2769 ((-1174) $ (-710) (-710))) (-15 -4132 ((-1174) $ (-852) (-852))) (-15 -2793 ((-1174) $ (-1070))) (-15 -2745 ((-1174) $ (-710) (-710) (-852) (-852))) (-15 -1696 ((-1174) $ (-355) (-355) (-355) (-355) (-355))) (-15 -1696 ((-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203))) $)) (-15 -1696 ((-1174) $ (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203))))) (-15 -1696 ((-1174) $ (-523) (-523) (-355) (-355) (-355))) (-15 -1696 ((-1174) $ (-355) (-355))) (-15 -1696 ((-1174) $ (-355) (-355) (-355))) (-15 -1360 ((-1174) $ (-1070))) (-15 -3156 ((-1174) $ (-1070))) (-15 -1774 ((-1174) $ (-1070))) (-15 -2059 ((-1174) $ (-1070))) (-15 -3309 ((-1174) $ (-1070))) (-15 -4160 ((-1174) $ (-355) (-355))) (-15 -4160 ((-1174) $ (-523) (-523))) (-15 -3641 ((-1174) $ (-355))) (-15 -3641 ((-1174) $ (-355) (-355) (-355))) (-15 -3049 ((-1174) $ (-355) (-355))) (-15 -1613 ((-1174) $ (-1070))) (-15 -2036 ((-1174) $ (-355))) (-15 -3190 ((-1174) $ (-355))) (-15 -1896 ((-1174) $ (-1070))) (-15 -3177 ((-1174) $ (-1070))) (-15 -4058 ((-1174) $ (-1070))) (-15 -1523 ((-1174) $ (-355) (-355) (-355))) (-15 -3956 ((-1174) $ (-355))) (-15 -3116 ((-1174) $)) (-15 -3252 ((-1174) $ (-144) (-144))) (-15 -3232 ((-1070) $ (-1070))) (-15 -3232 ((-1070) $ (-1070) (-1070))) (-15 -3232 ((-1070) $ (-1070) (-589 (-1070)))) (-15 -3922 ((-1174) $)) (-15 -2402 ((-523) $))))) (T -1171))
-((-2529 (*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171)))) (-2529 (*1 *2 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171)))) (-3169 (*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171)))) (-3169 (*1 *2 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171)))) (-3569 (*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171)))) (-3569 (*1 *2 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171)))) (-3412 (*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171)))) (-3412 (*1 *2 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171)))) (-1406 (*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171)))) (-1406 (*1 *2 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171)))) (-2101 (*1 *1) (-5 *1 (-1171))) (-3237 (*1 *1 *1) (-5 *1 (-1171))) (-3237 (*1 *1 *2 *3) (-12 (-5 *2 (-1047 (-203))) (-5 *3 (-1070)) (-5 *1 (-1171)))) (-3237 (*1 *1 *2 *3) (-12 (-5 *2 (-1047 (-203))) (-5 *3 (-589 (-240))) (-5 *1 (-1171)))) (-3213 (*1 *2 *1) (-12 (-5 *2 (-1047 (-203))) (-5 *1 (-1171)))) (-3213 (*1 *1 *1 *2) (-12 (-5 *2 (-1047 (-203))) (-5 *1 (-1171)))) (-3849 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-710)) (-5 *4 (-874 (-203))) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-2412 (*1 *2 *1) (-12 (-5 *2 (-589 (-240))) (-5 *1 (-1171)))) (-2412 (*1 *1 *1 *2) (-12 (-5 *2 (-589 (-240))) (-5 *1 (-1171)))) (-2769 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-4132 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-2793 (*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-2745 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-710)) (-5 *4 (-852)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-1696 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-1696 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203)))) (-5 *1 (-1171)))) (-1696 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203)))) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-1696 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-523)) (-5 *4 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-1696 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-1696 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-1360 (*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-3156 (*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-1774 (*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-2059 (*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-3309 (*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-4160 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-4160 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-523)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-3641 (*1 *2 *1 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-3641 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-3049 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-1613 (*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-2036 (*1 *2 *1 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-3190 (*1 *2 *1 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-1896 (*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-3177 (*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-4058 (*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-1523 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-3956 (*1 *2 *1 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-3116 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-1171)))) (-3252 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-144)) (-5 *2 (-1174)) (-5 *1 (-1171)))) (-3232 (*1 *2 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1171)))) (-3232 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1171)))) (-3232 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-589 (-1070))) (-5 *2 (-1070)) (-5 *1 (-1171)))) (-3922 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-1171)))) (-2402 (*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-1171)))))
-(-13 (-1016) (-10 -8 (-15 -2529 ((-355))) (-15 -2529 ((-355) (-355))) (-15 -3169 ((-355))) (-15 -3169 ((-355) (-355))) (-15 -3569 ((-355))) (-15 -3569 ((-355) (-355))) (-15 -3412 ((-355))) (-15 -3412 ((-355) (-355))) (-15 -1406 ((-355))) (-15 -1406 ((-355) (-355))) (-15 -2101 ($)) (-15 -3237 ($ $)) (-15 -3237 ($ (-1047 (-203)) (-1070))) (-15 -3237 ($ (-1047 (-203)) (-589 (-240)))) (-15 -3213 ((-1047 (-203)) $)) (-15 -3213 ($ $ (-1047 (-203)))) (-15 -3849 ((-1174) $ (-710) (-874 (-203)))) (-15 -2412 ((-589 (-240)) $)) (-15 -2412 ($ $ (-589 (-240)))) (-15 -2769 ((-1174) $ (-710) (-710))) (-15 -4132 ((-1174) $ (-852) (-852))) (-15 -2793 ((-1174) $ (-1070))) (-15 -2745 ((-1174) $ (-710) (-710) (-852) (-852))) (-15 -1696 ((-1174) $ (-355) (-355) (-355) (-355) (-355))) (-15 -1696 ((-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203))) $)) (-15 -1696 ((-1174) $ (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203)) (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203)) (|:| |deltaX| (-203)) (|:| |deltaY| (-203))))) (-15 -1696 ((-1174) $ (-523) (-523) (-355) (-355) (-355))) (-15 -1696 ((-1174) $ (-355) (-355))) (-15 -1696 ((-1174) $ (-355) (-355) (-355))) (-15 -1360 ((-1174) $ (-1070))) (-15 -3156 ((-1174) $ (-1070))) (-15 -1774 ((-1174) $ (-1070))) (-15 -2059 ((-1174) $ (-1070))) (-15 -3309 ((-1174) $ (-1070))) (-15 -4160 ((-1174) $ (-355) (-355))) (-15 -4160 ((-1174) $ (-523) (-523))) (-15 -3641 ((-1174) $ (-355))) (-15 -3641 ((-1174) $ (-355) (-355) (-355))) (-15 -3049 ((-1174) $ (-355) (-355))) (-15 -1613 ((-1174) $ (-1070))) (-15 -2036 ((-1174) $ (-355))) (-15 -3190 ((-1174) $ (-355))) (-15 -1896 ((-1174) $ (-1070))) (-15 -3177 ((-1174) $ (-1070))) (-15 -4058 ((-1174) $ (-1070))) (-15 -1523 ((-1174) $ (-355) (-355) (-355))) (-15 -3956 ((-1174) $ (-355))) (-15 -3116 ((-1174) $)) (-15 -3252 ((-1174) $ (-144) (-144))) (-15 -3232 ((-1070) $ (-1070))) (-15 -3232 ((-1070) $ (-1070) (-1070))) (-15 -3232 ((-1070) $ (-1070) (-589 (-1070)))) (-15 -3922 ((-1174) $)) (-15 -2402 ((-523) $))))
-((-3549 (((-589 (-1070)) (-589 (-1070))) 94) (((-589 (-1070))) 90)) (-3235 (((-589 (-1070))) 88)) (-2648 (((-589 (-852)) (-589 (-852))) 63) (((-589 (-852))) 60)) (-3940 (((-589 (-710)) (-589 (-710))) 57) (((-589 (-710))) 53)) (-3543 (((-1174)) 65)) (-3096 (((-852) (-852)) 81) (((-852)) 80)) (-2369 (((-852) (-852)) 79) (((-852)) 78)) (-2352 (((-805) (-805)) 75) (((-805)) 74)) (-2355 (((-203)) 85) (((-203) (-355)) 87)) (-2094 (((-852)) 82) (((-852) (-852)) 83)) (-2836 (((-852) (-852)) 77) (((-852)) 76)) (-4086 (((-805) (-805)) 69) (((-805)) 67)) (-4176 (((-805) (-805)) 71) (((-805)) 70)) (-3413 (((-805) (-805)) 73) (((-805)) 72)))
-(((-1172) (-10 -7 (-15 -4086 ((-805))) (-15 -4086 ((-805) (-805))) (-15 -4176 ((-805))) (-15 -4176 ((-805) (-805))) (-15 -3413 ((-805))) (-15 -3413 ((-805) (-805))) (-15 -2352 ((-805))) (-15 -2352 ((-805) (-805))) (-15 -2836 ((-852))) (-15 -2836 ((-852) (-852))) (-15 -3940 ((-589 (-710)))) (-15 -3940 ((-589 (-710)) (-589 (-710)))) (-15 -2648 ((-589 (-852)))) (-15 -2648 ((-589 (-852)) (-589 (-852)))) (-15 -3543 ((-1174))) (-15 -3549 ((-589 (-1070)))) (-15 -3549 ((-589 (-1070)) (-589 (-1070)))) (-15 -3235 ((-589 (-1070)))) (-15 -2369 ((-852))) (-15 -3096 ((-852))) (-15 -2369 ((-852) (-852))) (-15 -3096 ((-852) (-852))) (-15 -2094 ((-852) (-852))) (-15 -2094 ((-852))) (-15 -2355 ((-203) (-355))) (-15 -2355 ((-203))))) (T -1172))
-((-2355 (*1 *2) (-12 (-5 *2 (-203)) (-5 *1 (-1172)))) (-2355 (*1 *2 *3) (-12 (-5 *3 (-355)) (-5 *2 (-203)) (-5 *1 (-1172)))) (-2094 (*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172)))) (-2094 (*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172)))) (-3096 (*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172)))) (-2369 (*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172)))) (-3096 (*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172)))) (-2369 (*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172)))) (-3235 (*1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1172)))) (-3549 (*1 *2 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1172)))) (-3549 (*1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1172)))) (-3543 (*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-1172)))) (-2648 (*1 *2 *2) (-12 (-5 *2 (-589 (-852))) (-5 *1 (-1172)))) (-2648 (*1 *2) (-12 (-5 *2 (-589 (-852))) (-5 *1 (-1172)))) (-3940 (*1 *2 *2) (-12 (-5 *2 (-589 (-710))) (-5 *1 (-1172)))) (-3940 (*1 *2) (-12 (-5 *2 (-589 (-710))) (-5 *1 (-1172)))) (-2836 (*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172)))) (-2836 (*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172)))) (-2352 (*1 *2 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172)))) (-2352 (*1 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172)))) (-3413 (*1 *2 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172)))) (-3413 (*1 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172)))) (-4176 (*1 *2 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172)))) (-4176 (*1 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172)))) (-4086 (*1 *2 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172)))) (-4086 (*1 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172)))))
-(-10 -7 (-15 -4086 ((-805))) (-15 -4086 ((-805) (-805))) (-15 -4176 ((-805))) (-15 -4176 ((-805) (-805))) (-15 -3413 ((-805))) (-15 -3413 ((-805) (-805))) (-15 -2352 ((-805))) (-15 -2352 ((-805) (-805))) (-15 -2836 ((-852))) (-15 -2836 ((-852) (-852))) (-15 -3940 ((-589 (-710)))) (-15 -3940 ((-589 (-710)) (-589 (-710)))) (-15 -2648 ((-589 (-852)))) (-15 -2648 ((-589 (-852)) (-589 (-852)))) (-15 -3543 ((-1174))) (-15 -3549 ((-589 (-1070)))) (-15 -3549 ((-589 (-1070)) (-589 (-1070)))) (-15 -3235 ((-589 (-1070)))) (-15 -2369 ((-852))) (-15 -3096 ((-852))) (-15 -2369 ((-852) (-852))) (-15 -3096 ((-852) (-852))) (-15 -2094 ((-852) (-852))) (-15 -2094 ((-852))) (-15 -2355 ((-203) (-355))) (-15 -2355 ((-203))))
-((-3837 (((-443) (-589 (-589 (-874 (-203)))) (-589 (-240))) 21) (((-443) (-589 (-589 (-874 (-203))))) 20) (((-443) (-589 (-589 (-874 (-203)))) (-805) (-805) (-852) (-589 (-240))) 19)) (-3409 (((-1170) (-589 (-589 (-874 (-203)))) (-589 (-240))) 27) (((-1170) (-589 (-589 (-874 (-203)))) (-805) (-805) (-852) (-589 (-240))) 26)) (-3976 (((-1170) (-443)) 38)))
-(((-1173) (-10 -7 (-15 -3837 ((-443) (-589 (-589 (-874 (-203)))) (-805) (-805) (-852) (-589 (-240)))) (-15 -3837 ((-443) (-589 (-589 (-874 (-203)))))) (-15 -3837 ((-443) (-589 (-589 (-874 (-203)))) (-589 (-240)))) (-15 -3409 ((-1170) (-589 (-589 (-874 (-203)))) (-805) (-805) (-852) (-589 (-240)))) (-15 -3409 ((-1170) (-589 (-589 (-874 (-203)))) (-589 (-240)))) (-15 -3976 ((-1170) (-443))))) (T -1173))
-((-3976 (*1 *2 *3) (-12 (-5 *3 (-443)) (-5 *2 (-1170)) (-5 *1 (-1173)))) (-3409 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-589 (-874 (-203))))) (-5 *4 (-589 (-240))) (-5 *2 (-1170)) (-5 *1 (-1173)))) (-3409 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-589 (-589 (-874 (-203))))) (-5 *4 (-805)) (-5 *5 (-852)) (-5 *6 (-589 (-240))) (-5 *2 (-1170)) (-5 *1 (-1173)))) (-3837 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-589 (-874 (-203))))) (-5 *4 (-589 (-240))) (-5 *2 (-443)) (-5 *1 (-1173)))) (-3837 (*1 *2 *3) (-12 (-5 *3 (-589 (-589 (-874 (-203))))) (-5 *2 (-443)) (-5 *1 (-1173)))) (-3837 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-589 (-589 (-874 (-203))))) (-5 *4 (-805)) (-5 *5 (-852)) (-5 *6 (-589 (-240))) (-5 *2 (-443)) (-5 *1 (-1173)))))
-(-10 -7 (-15 -3837 ((-443) (-589 (-589 (-874 (-203)))) (-805) (-805) (-852) (-589 (-240)))) (-15 -3837 ((-443) (-589 (-589 (-874 (-203)))))) (-15 -3837 ((-443) (-589 (-589 (-874 (-203)))) (-589 (-240)))) (-15 -3409 ((-1170) (-589 (-589 (-874 (-203)))) (-805) (-805) (-852) (-589 (-240)))) (-15 -3409 ((-1170) (-589 (-589 (-874 (-203)))) (-589 (-240)))) (-15 -3976 ((-1170) (-443))))
-((-3164 (($) 7)) (-3976 (((-794) $) 10)))
-(((-1174) (-10 -8 (-15 -3164 ($)) (-15 -3976 ((-794) $)))) (T -1174))
-((-3976 (*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-1174)))) (-3164 (*1 *1) (-5 *1 (-1174))))
-(-10 -8 (-15 -3164 ($)) (-15 -3976 ((-794) $)))
-((-4125 (($ $ |#2|) 10)))
-(((-1175 |#1| |#2|) (-10 -8 (-15 -4125 (|#1| |#1| |#2|))) (-1176 |#2|) (-339)) (T -1175))
-NIL
-(-10 -8 (-15 -4125 (|#1| |#1| |#2|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-4012 (((-126)) 28)) (-3976 (((-794) $) 11)) (-1428 (($) 18 T CONST)) (-4037 (((-108) $ $) 6)) (-4125 (($ $ |#1|) 29)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
-(((-1176 |#1|) (-129) (-339)) (T -1176))
-((-4125 (*1 *1 *1 *2) (-12 (-4 *1 (-1176 *2)) (-4 *2 (-339)))) (-4012 (*1 *2) (-12 (-4 *1 (-1176 *3)) (-4 *3 (-339)) (-5 *2 (-126)))))
-(-13 (-657 |t#1|) (-10 -8 (-15 -4125 ($ $ |t#1|)) (-15 -4012 ((-126)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 |#1|) . T) ((-657 |#1|) . T) ((-979 |#1|) . T) ((-1016) . T))
-((-1510 (((-589 (-1118 |#1|)) (-1087) (-1118 |#1|)) 78)) (-1740 (((-1068 (-1068 (-883 |#1|))) (-1087) (-1068 (-883 |#1|))) 57)) (-3900 (((-1 (-1068 (-1118 |#1|)) (-1068 (-1118 |#1|))) (-710) (-1118 |#1|) (-1068 (-1118 |#1|))) 68)) (-2249 (((-1 (-1068 (-883 |#1|)) (-1068 (-883 |#1|))) (-710)) 59)) (-3138 (((-1 (-1083 (-883 |#1|)) (-883 |#1|)) (-1087)) 29)) (-3443 (((-1 (-1068 (-883 |#1|)) (-1068 (-883 |#1|))) (-710)) 58)))
-(((-1177 |#1|) (-10 -7 (-15 -2249 ((-1 (-1068 (-883 |#1|)) (-1068 (-883 |#1|))) (-710))) (-15 -3443 ((-1 (-1068 (-883 |#1|)) (-1068 (-883 |#1|))) (-710))) (-15 -1740 ((-1068 (-1068 (-883 |#1|))) (-1087) (-1068 (-883 |#1|)))) (-15 -3138 ((-1 (-1083 (-883 |#1|)) (-883 |#1|)) (-1087))) (-15 -1510 ((-589 (-1118 |#1|)) (-1087) (-1118 |#1|))) (-15 -3900 ((-1 (-1068 (-1118 |#1|)) (-1068 (-1118 |#1|))) (-710) (-1118 |#1|) (-1068 (-1118 |#1|))))) (-339)) (T -1177))
-((-3900 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-710)) (-4 *6 (-339)) (-5 *4 (-1118 *6)) (-5 *2 (-1 (-1068 *4) (-1068 *4))) (-5 *1 (-1177 *6)) (-5 *5 (-1068 *4)))) (-1510 (*1 *2 *3 *4) (-12 (-5 *3 (-1087)) (-4 *5 (-339)) (-5 *2 (-589 (-1118 *5))) (-5 *1 (-1177 *5)) (-5 *4 (-1118 *5)))) (-3138 (*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1 (-1083 (-883 *4)) (-883 *4))) (-5 *1 (-1177 *4)) (-4 *4 (-339)))) (-1740 (*1 *2 *3 *4) (-12 (-5 *3 (-1087)) (-4 *5 (-339)) (-5 *2 (-1068 (-1068 (-883 *5)))) (-5 *1 (-1177 *5)) (-5 *4 (-1068 (-883 *5))))) (-3443 (*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1 (-1068 (-883 *4)) (-1068 (-883 *4)))) (-5 *1 (-1177 *4)) (-4 *4 (-339)))) (-2249 (*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1 (-1068 (-883 *4)) (-1068 (-883 *4)))) (-5 *1 (-1177 *4)) (-4 *4 (-339)))))
-(-10 -7 (-15 -2249 ((-1 (-1068 (-883 |#1|)) (-1068 (-883 |#1|))) (-710))) (-15 -3443 ((-1 (-1068 (-883 |#1|)) (-1068 (-883 |#1|))) (-710))) (-15 -1740 ((-1068 (-1068 (-883 |#1|))) (-1087) (-1068 (-883 |#1|)))) (-15 -3138 ((-1 (-1083 (-883 |#1|)) (-883 |#1|)) (-1087))) (-15 -1510 ((-589 (-1118 |#1|)) (-1087) (-1118 |#1|))) (-15 -3900 ((-1 (-1068 (-1118 |#1|)) (-1068 (-1118 |#1|))) (-710) (-1118 |#1|) (-1068 (-1118 |#1|)))))
-((-3329 (((-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))) |#2|) 75)) (-3835 (((-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|)))) 74)))
-(((-1178 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3835 ((-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))))) (-15 -3329 ((-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))) |#2|))) (-325) (-1145 |#1|) (-1145 |#2|) (-385 |#2| |#3|)) (T -1178))
-((-3329 (*1 *2 *3) (-12 (-4 *4 (-325)) (-4 *3 (-1145 *4)) (-4 *5 (-1145 *3)) (-5 *2 (-2 (|:| -2922 (-629 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-629 *3)))) (-5 *1 (-1178 *4 *3 *5 *6)) (-4 *6 (-385 *3 *5)))) (-3835 (*1 *2) (-12 (-4 *3 (-325)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 *4)) (-5 *2 (-2 (|:| -2922 (-629 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-629 *4)))) (-5 *1 (-1178 *3 *4 *5 *6)) (-4 *6 (-385 *4 *5)))))
-(-10 -7 (-15 -3835 ((-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))))) (-15 -3329 ((-2 (|:| -2922 (-629 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-629 |#2|))) |#2|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 43)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-4211 (((-3 $ "failed") $) NIL)) (-3482 (((-108) $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-3976 (((-794) $) 64) (($ (-523)) NIL) ((|#4| $) 54) (($ |#4|) 49) (($ |#1|) NIL (|has| |#1| (-158)))) (-1698 (((-710)) NIL)) (-3788 (((-1174) (-710)) 16)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 27 T CONST)) (-1440 (($) 67 T CONST)) (-4037 (((-108) $ $) 69)) (-4125 (((-3 $ "failed") $ $) NIL (|has| |#1| (-339)))) (-4115 (($ $) 71) (($ $ $) NIL)) (-4103 (($ $ $) 47)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 73) (($ |#1| $) NIL (|has| |#1| (-158))) (($ $ |#1|) NIL (|has| |#1| (-158)))))
-(((-1179 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-13 (-973) (-10 -8 (IF (|has| |#1| (-158)) (-6 (-37 |#1|)) |%noBranch|) (-15 -3976 (|#4| $)) (IF (|has| |#1| (-339)) (-15 -4125 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3976 ($ |#4|)) (-15 -3788 ((-1174) (-710))))) (-973) (-786) (-732) (-880 |#1| |#3| |#2|) (-589 |#2|) (-589 (-710)) (-710)) (T -1179))
-((-3976 (*1 *2 *1) (-12 (-4 *2 (-880 *3 *5 *4)) (-5 *1 (-1179 *3 *4 *5 *2 *6 *7 *8)) (-4 *3 (-973)) (-4 *4 (-786)) (-4 *5 (-732)) (-14 *6 (-589 *4)) (-14 *7 (-589 (-710))) (-14 *8 (-710)))) (-4125 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-339)) (-4 *2 (-973)) (-4 *3 (-786)) (-4 *4 (-732)) (-14 *6 (-589 *3)) (-5 *1 (-1179 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-880 *2 *4 *3)) (-14 *7 (-589 (-710))) (-14 *8 (-710)))) (-3976 (*1 *1 *2) (-12 (-4 *3 (-973)) (-4 *4 (-786)) (-4 *5 (-732)) (-14 *6 (-589 *4)) (-5 *1 (-1179 *3 *4 *5 *2 *6 *7 *8)) (-4 *2 (-880 *3 *5 *4)) (-14 *7 (-589 (-710))) (-14 *8 (-710)))) (-3788 (*1 *2 *3) (-12 (-5 *3 (-710)) (-4 *4 (-973)) (-4 *5 (-786)) (-4 *6 (-732)) (-14 *8 (-589 *5)) (-5 *2 (-1174)) (-5 *1 (-1179 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-880 *4 *6 *5)) (-14 *9 (-589 *3)) (-14 *10 *3))))
-(-13 (-973) (-10 -8 (IF (|has| |#1| (-158)) (-6 (-37 |#1|)) |%noBranch|) (-15 -3976 (|#4| $)) (IF (|has| |#1| (-339)) (-15 -4125 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3976 ($ |#4|)) (-15 -3788 ((-1174) (-710)))))
-((-3260 (((-108) $ $) NIL)) (-2778 (((-589 (-2 (|:| -3922 $) (|:| -3439 (-589 |#4|)))) (-589 |#4|)) NIL)) (-2311 (((-589 $) (-589 |#4|)) 88)) (-3716 (((-589 |#3|) $) NIL)) (-2011 (((-108) $) NIL)) (-2821 (((-108) $) NIL (|has| |#1| (-515)))) (-3103 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-4165 ((|#4| |#4| $) NIL)) (-3400 (((-2 (|:| |under| $) (|:| -1250 $) (|:| |upper| $)) $ |#3|) NIL)) (-2282 (((-108) $ (-710)) NIL)) (-1299 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248))) (((-3 |#4| "failed") $ |#3|) NIL)) (-1640 (($) NIL T CONST)) (-1619 (((-108) $) NIL (|has| |#1| (-515)))) (-2927 (((-108) $ $) NIL (|has| |#1| (-515)))) (-3685 (((-108) $ $) NIL (|has| |#1| (-515)))) (-2457 (((-108) $) NIL (|has| |#1| (-515)))) (-3021 (((-589 |#4|) (-589 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 28)) (-2341 (((-589 |#4|) (-589 |#4|) $) 25 (|has| |#1| (-515)))) (-3450 (((-589 |#4|) (-589 |#4|) $) NIL (|has| |#1| (-515)))) (-2898 (((-3 $ "failed") (-589 |#4|)) NIL)) (-1996 (($ (-589 |#4|)) NIL)) (-3891 (((-3 $ "failed") $) 70)) (-3880 ((|#4| |#4| $) 75)) (-3917 (($ $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016))))) (-2231 (($ |#4| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-3143 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-515)))) (-3605 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-3058 ((|#4| |#4| $) NIL)) (-1830 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4248))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4248))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3161 (((-2 (|:| -3922 (-589 |#4|)) (|:| -3439 (-589 |#4|))) $) NIL)) (-3133 (((-589 |#4|) $) NIL (|has| $ (-6 -4248)))) (-2407 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2694 ((|#3| $) 76)) (-1344 (((-108) $ (-710)) NIL)) (-3056 (((-589 |#4|) $) 29 (|has| $ (-6 -4248)))) (-1348 (((-108) |#4| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016))))) (-3042 (((-3 $ "failed") (-589 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 32) (((-3 $ "failed") (-589 |#4|)) 35)) (-3063 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4249)))) (-3015 (($ (-1 |#4| |#4|) $) NIL)) (-4100 (((-589 |#3|) $) NIL)) (-2863 (((-108) |#3| $) NIL)) (-4042 (((-108) $ (-710)) NIL)) (-3841 (((-1070) $) NIL)) (-2247 (((-3 |#4| "failed") $) NIL)) (-3403 (((-589 |#4|) $) 50)) (-3761 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1728 ((|#4| |#4| $) 74)) (-1454 (((-108) $ $) 85)) (-1916 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-515)))) (-2152 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2347 ((|#4| |#4| $) NIL)) (-2435 (((-1034) $) NIL)) (-3879 (((-3 |#4| "failed") $) 69)) (-2660 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-2594 (((-3 $ "failed") $ |#4|) NIL)) (-1361 (($ $ |#4|) NIL)) (-2720 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-1349 (($ $ (-589 |#4|) (-589 |#4|)) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-271 |#4|)) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016)))) (($ $ (-589 (-271 |#4|))) NIL (-12 (|has| |#4| (-286 |#4|)) (|has| |#4| (-1016))))) (-2391 (((-108) $ $) NIL)) (-3163 (((-108) $) 67)) (-4055 (($) 42)) (-1487 (((-710) $) NIL)) (-2452 (((-710) |#4| $) NIL (-12 (|has| $ (-6 -4248)) (|has| |#4| (-1016)))) (((-710) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-4124 (($ $) NIL)) (-3077 (((-499) $) NIL (|has| |#4| (-564 (-499))))) (-3985 (($ (-589 |#4|)) NIL)) (-4135 (($ $ |#3|) NIL)) (-1318 (($ $ |#3|) NIL)) (-3444 (($ $) NIL)) (-2023 (($ $ |#3|) NIL)) (-3976 (((-794) $) NIL) (((-589 |#4|) $) 57)) (-3221 (((-710) $) NIL (|has| |#3| (-344)))) (-2460 (((-3 $ "failed") (-589 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 40) (((-3 $ "failed") (-589 |#4|)) 41)) (-2020 (((-589 $) (-589 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 65) (((-589 $) (-589 |#4|)) 66)) (-2459 (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4| |#4|)) 24) (((-3 (-2 (|:| |bas| $) (|:| -3346 (-589 |#4|))) "failed") (-589 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3442 (((-108) $ (-1 (-108) |#4| (-589 |#4|))) NIL)) (-1505 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4248)))) (-2969 (((-589 |#3|) $) NIL)) (-4079 (((-108) |#3| $) NIL)) (-4037 (((-108) $ $) NIL)) (-1271 (((-710) $) NIL (|has| $ (-6 -4248)))))
-(((-1180 |#1| |#2| |#3| |#4|) (-13 (-1117 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3042 ((-3 $ "failed") (-589 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3042 ((-3 $ "failed") (-589 |#4|))) (-15 -2460 ((-3 $ "failed") (-589 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2460 ((-3 $ "failed") (-589 |#4|))) (-15 -2020 ((-589 $) (-589 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2020 ((-589 $) (-589 |#4|))))) (-515) (-732) (-786) (-987 |#1| |#2| |#3|)) (T -1180))
-((-3042 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-589 *8)) (-5 *3 (-1 (-108) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *1 (-1180 *5 *6 *7 *8)))) (-3042 (*1 *1 *2) (|partial| -12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-1180 *3 *4 *5 *6)))) (-2460 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-589 *8)) (-5 *3 (-1 (-108) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *1 (-1180 *5 *6 *7 *8)))) (-2460 (*1 *1 *2) (|partial| -12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-1180 *3 *4 *5 *6)))) (-2020 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-589 *9)) (-5 *4 (-1 (-108) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-987 *6 *7 *8)) (-4 *6 (-515)) (-4 *7 (-732)) (-4 *8 (-786)) (-5 *2 (-589 (-1180 *6 *7 *8 *9))) (-5 *1 (-1180 *6 *7 *8 *9)))) (-2020 (*1 *2 *3) (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 (-1180 *4 *5 *6 *7))) (-5 *1 (-1180 *4 *5 *6 *7)))))
-(-13 (-1117 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3042 ((-3 $ "failed") (-589 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3042 ((-3 $ "failed") (-589 |#4|))) (-15 -2460 ((-3 $ "failed") (-589 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2460 ((-3 $ "failed") (-589 |#4|))) (-15 -2020 ((-589 $) (-589 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2020 ((-589 $) (-589 |#4|)))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-2999 (((-3 $ "failed") $ $) 19)) (-1640 (($) 17 T CONST)) (-4211 (((-3 $ "failed") $) 34)) (-3482 (((-108) $) 31)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#1|) 38)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
-(((-1181 |#1|) (-129) (-973)) (T -1181))
-((-3976 (*1 *1 *2) (-12 (-4 *1 (-1181 *2)) (-4 *2 (-973)))))
-(-13 (-973) (-107 |t#1| |t#1|) (-10 -8 (-15 -3976 ($ |t#1|)) (IF (|has| |t#1| (-158)) (-6 (-37 |t#1|)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) |has| |#1| (-158)) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 |#1|) . T) ((-591 $) . T) ((-657 |#1|) |has| |#1| (-158)) ((-666) . T) ((-979 |#1|) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T))
-((-3260 (((-108) $ $) 60)) (-2388 (((-108) $) NIL)) (-1304 (((-589 |#1|) $) 45)) (-3944 (($ $ (-710)) 39)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2127 (($ $ (-710)) 18 (|has| |#2| (-158))) (($ $ $) 19 (|has| |#2| (-158)))) (-1640 (($) NIL T CONST)) (-3168 (($ $ $) 63) (($ $ (-758 |#1|)) 49) (($ $ |#1|) 53)) (-2898 (((-3 (-758 |#1|) "failed") $) NIL)) (-1996 (((-758 |#1|) $) NIL)) (-3142 (($ $) 32)) (-4211 (((-3 $ "failed") $) NIL)) (-3460 (((-108) $) NIL)) (-2897 (($ $) NIL)) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) NIL)) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-1511 (($ (-758 |#1|) |#2|) 31)) (-2471 (($ $) 33)) (-3418 (((-2 (|:| |k| (-758 |#1|)) (|:| |c| |#2|)) $) 12)) (-2042 (((-758 |#1|) $) NIL)) (-3046 (((-758 |#1|) $) 34)) (-3015 (($ (-1 |#2| |#2|) $) NIL)) (-2475 (($ $ $) 62) (($ $ (-758 |#1|)) 51) (($ $ |#1|) 55)) (-2859 (((-2 (|:| |k| (-758 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3107 (((-758 |#1|) $) 28)) (-3119 ((|#2| $) 30)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-1487 (((-710) $) 36)) (-2592 (((-108) $) 40)) (-1982 ((|#2| $) NIL)) (-3976 (((-794) $) NIL) (($ (-758 |#1|)) 24) (($ |#1|) 25) (($ |#2|) NIL) (($ (-523)) NIL)) (-1639 (((-589 |#2|) $) NIL)) (-1234 ((|#2| $ (-758 |#1|)) NIL)) (-2275 ((|#2| $ $) 65) ((|#2| $ (-758 |#1|)) NIL)) (-1698 (((-710)) NIL)) (-2573 (($ $ (-710)) NIL) (($ $ (-852)) NIL)) (-1428 (($) 13 T CONST)) (-1440 (($) 15 T CONST)) (-1776 (((-589 (-2 (|:| |k| (-758 |#1|)) (|:| |c| |#2|))) $) NIL)) (-4037 (((-108) $ $) 38)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) 22)) (** (($ $ (-710)) NIL) (($ $ (-852)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ |#2| $) 21) (($ $ |#2|) 61) (($ |#2| (-758 |#1|)) NIL) (($ |#1| $) 27) (($ $ $) NIL)))
-(((-1182 |#1| |#2|) (-13 (-358 |#2| (-758 |#1|)) (-1188 |#1| |#2|)) (-786) (-973)) (T -1182))
-NIL
-(-13 (-358 |#2| (-758 |#1|)) (-1188 |#1| |#2|))
-((-2062 ((|#3| |#3| (-710)) 23)) (-1847 ((|#3| |#3| (-710)) 28)) (-1382 ((|#3| |#3| |#3| (-710)) 29)))
-(((-1183 |#1| |#2| |#3|) (-10 -7 (-15 -1847 (|#3| |#3| (-710))) (-15 -2062 (|#3| |#3| (-710))) (-15 -1382 (|#3| |#3| |#3| (-710)))) (-13 (-973) (-657 (-383 (-523)))) (-786) (-1188 |#2| |#1|)) (T -1183))
-((-1382 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-710)) (-4 *4 (-13 (-973) (-657 (-383 (-523))))) (-4 *5 (-786)) (-5 *1 (-1183 *4 *5 *2)) (-4 *2 (-1188 *5 *4)))) (-2062 (*1 *2 *2 *3) (-12 (-5 *3 (-710)) (-4 *4 (-13 (-973) (-657 (-383 (-523))))) (-4 *5 (-786)) (-5 *1 (-1183 *4 *5 *2)) (-4 *2 (-1188 *5 *4)))) (-1847 (*1 *2 *2 *3) (-12 (-5 *3 (-710)) (-4 *4 (-13 (-973) (-657 (-383 (-523))))) (-4 *5 (-786)) (-5 *1 (-1183 *4 *5 *2)) (-4 *2 (-1188 *5 *4)))))
-(-10 -7 (-15 -1847 (|#3| |#3| (-710))) (-15 -2062 (|#3| |#3| (-710))) (-15 -1382 (|#3| |#3| |#3| (-710))))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-1304 (((-589 |#1|) $) 40)) (-2999 (((-3 $ "failed") $ $) 19)) (-2127 (($ $ $) 43 (|has| |#2| (-158))) (($ $ (-710)) 42 (|has| |#2| (-158)))) (-1640 (($) 17 T CONST)) (-3168 (($ $ |#1|) 54) (($ $ (-758 |#1|)) 53) (($ $ $) 52)) (-2898 (((-3 (-758 |#1|) "failed") $) 64)) (-1996 (((-758 |#1|) $) 63)) (-4211 (((-3 $ "failed") $) 34)) (-3460 (((-108) $) 45)) (-2897 (($ $) 44)) (-3482 (((-108) $) 31)) (-4060 (((-108) $) 50)) (-1511 (($ (-758 |#1|) |#2|) 51)) (-2471 (($ $) 49)) (-3418 (((-2 (|:| |k| (-758 |#1|)) (|:| |c| |#2|)) $) 60)) (-2042 (((-758 |#1|) $) 61)) (-3015 (($ (-1 |#2| |#2|) $) 41)) (-2475 (($ $ |#1|) 57) (($ $ (-758 |#1|)) 56) (($ $ $) 55)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-2592 (((-108) $) 47)) (-1982 ((|#2| $) 46)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#2|) 68) (($ (-758 |#1|)) 65) (($ |#1|) 48)) (-2275 ((|#2| $ (-758 |#1|)) 59) ((|#2| $ $) 58)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ |#2| $) 67) (($ $ |#2|) 66) (($ |#1| $) 62)))
-(((-1184 |#1| |#2|) (-129) (-786) (-973)) (T -1184))
-((* (*1 *1 *1 *2) (-12 (-4 *1 (-1184 *3 *2)) (-4 *3 (-786)) (-4 *2 (-973)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973)))) (-2042 (*1 *2 *1) (-12 (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)) (-5 *2 (-758 *3)))) (-3418 (*1 *2 *1) (-12 (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)) (-5 *2 (-2 (|:| |k| (-758 *3)) (|:| |c| *4))))) (-2275 (*1 *2 *1 *3) (-12 (-5 *3 (-758 *4)) (-4 *1 (-1184 *4 *2)) (-4 *4 (-786)) (-4 *2 (-973)))) (-2275 (*1 *2 *1 *1) (-12 (-4 *1 (-1184 *3 *2)) (-4 *3 (-786)) (-4 *2 (-973)))) (-2475 (*1 *1 *1 *2) (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973)))) (-2475 (*1 *1 *1 *2) (-12 (-5 *2 (-758 *3)) (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)))) (-2475 (*1 *1 *1 *1) (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973)))) (-3168 (*1 *1 *1 *2) (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973)))) (-3168 (*1 *1 *1 *2) (-12 (-5 *2 (-758 *3)) (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)))) (-3168 (*1 *1 *1 *1) (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973)))) (-1511 (*1 *1 *2 *3) (-12 (-5 *2 (-758 *4)) (-4 *4 (-786)) (-4 *1 (-1184 *4 *3)) (-4 *3 (-973)))) (-4060 (*1 *2 *1) (-12 (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)) (-5 *2 (-108)))) (-2471 (*1 *1 *1) (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973)))) (-3976 (*1 *1 *2) (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973)))) (-2592 (*1 *2 *1) (-12 (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)) (-5 *2 (-108)))) (-1982 (*1 *2 *1) (-12 (-4 *1 (-1184 *3 *2)) (-4 *3 (-786)) (-4 *2 (-973)))) (-3460 (*1 *2 *1) (-12 (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)) (-5 *2 (-108)))) (-2897 (*1 *1 *1) (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973)))) (-2127 (*1 *1 *1 *1) (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973)) (-4 *3 (-158)))) (-2127 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)) (-4 *4 (-158)))) (-3015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)))) (-1304 (*1 *2 *1) (-12 (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)) (-5 *2 (-589 *3)))))
-(-13 (-973) (-1181 |t#2|) (-964 (-758 |t#1|)) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#2|)) (-15 -2042 ((-758 |t#1|) $)) (-15 -3418 ((-2 (|:| |k| (-758 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -2275 (|t#2| $ (-758 |t#1|))) (-15 -2275 (|t#2| $ $)) (-15 -2475 ($ $ |t#1|)) (-15 -2475 ($ $ (-758 |t#1|))) (-15 -2475 ($ $ $)) (-15 -3168 ($ $ |t#1|)) (-15 -3168 ($ $ (-758 |t#1|))) (-15 -3168 ($ $ $)) (-15 -1511 ($ (-758 |t#1|) |t#2|)) (-15 -4060 ((-108) $)) (-15 -2471 ($ $)) (-15 -3976 ($ |t#1|)) (-15 -2592 ((-108) $)) (-15 -1982 (|t#2| $)) (-15 -3460 ((-108) $)) (-15 -2897 ($ $)) (IF (|has| |t#2| (-158)) (PROGN (-15 -2127 ($ $ $)) (-15 -2127 ($ $ (-710)))) |%noBranch|) (-15 -3015 ($ (-1 |t#2| |t#2|) $)) (-15 -1304 ((-589 |t#1|) $)) (IF (|has| |t#2| (-6 -4241)) (-6 -4241) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#2|) |has| |#2| (-158)) ((-97) . T) ((-107 |#2| |#2|) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 |#2|) . T) ((-591 $) . T) ((-657 |#2|) |has| |#2| (-158)) ((-666) . T) ((-964 (-758 |#1|)) . T) ((-979 |#2|) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1181 |#2|) . T))
-((-3867 (((-108) $) 15)) (-4079 (((-108) $) 14)) (-1732 (($ $) 19) (($ $ (-710)) 20)))
-(((-1185 |#1| |#2|) (-10 -8 (-15 -1732 (|#1| |#1| (-710))) (-15 -1732 (|#1| |#1|)) (-15 -3867 ((-108) |#1|)) (-15 -4079 ((-108) |#1|))) (-1186 |#2|) (-339)) (T -1185))
-NIL
-(-10 -8 (-15 -1732 (|#1| |#1| (-710))) (-15 -1732 (|#1| |#1|)) (-15 -3867 ((-108) |#1|)) (-15 -4079 ((-108) |#1|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-3001 (((-2 (|:| -1895 $) (|:| -4235 $) (|:| |associate| $)) $) 41)) (-3950 (($ $) 40)) (-3226 (((-108) $) 38)) (-3867 (((-108) $) 94)) (-4154 (((-710)) 90)) (-2999 (((-3 $ "failed") $ $) 19)) (-3763 (($ $) 73)) (-2105 (((-394 $) $) 72)) (-3684 (((-108) $ $) 59)) (-1640 (($) 17 T CONST)) (-2898 (((-3 |#1| "failed") $) 101)) (-1996 ((|#1| $) 100)) (-2501 (($ $ $) 55)) (-4211 (((-3 $ "failed") $) 34)) (-2486 (($ $ $) 56)) (-1992 (((-2 (|:| -2275 (-589 $)) (|:| -4102 $)) (-589 $)) 51)) (-1419 (($ $ (-710)) 87 (-3255 (|has| |#1| (-134)) (|has| |#1| (-344)))) (($ $) 86 (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1330 (((-108) $) 71)) (-1500 (((-772 (-852)) $) 84 (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-3482 (((-108) $) 31)) (-3331 (((-3 (-589 $) "failed") (-589 $) $) 52)) (-2012 (($ $ $) 46) (($ (-589 $)) 45)) (-3841 (((-1070) $) 9)) (-3071 (($ $) 70)) (-4203 (((-108) $) 93)) (-2435 (((-1034) $) 10)) (-2701 (((-1083 $) (-1083 $) (-1083 $)) 44)) (-2056 (($ $ $) 48) (($ (-589 $)) 47)) (-3573 (((-394 $) $) 74)) (-3718 (((-772 (-852))) 91)) (-3263 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4102 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2469 (((-3 $ "failed") $ $) 42)) (-2057 (((-3 (-589 $) "failed") (-589 $) $) 50)) (-3087 (((-710) $) 58)) (-1227 (((-2 (|:| -3429 $) (|:| -3143 $)) $ $) 57)) (-2041 (((-3 (-710) "failed") $ $) 85 (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-4012 (((-126)) 99)) (-1487 (((-772 (-852)) $) 92)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ $) 43) (($ (-383 (-523))) 65) (($ |#1|) 102)) (-2301 (((-3 $ "failed") $) 83 (-3255 (|has| |#1| (-134)) (|has| |#1| (-344))))) (-1698 (((-710)) 29)) (-3842 (((-108) $ $) 39)) (-4079 (((-108) $) 95)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33) (($ $ (-523)) 69)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-1732 (($ $) 89 (|has| |#1| (-344))) (($ $ (-710)) 88 (|has| |#1| (-344)))) (-4037 (((-108) $ $) 6)) (-4125 (($ $ $) 64) (($ $ |#1|) 98)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32) (($ $ (-523)) 68)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ $ (-383 (-523))) 67) (($ (-383 (-523)) $) 66) (($ $ |#1|) 97) (($ |#1| $) 96)))
-(((-1186 |#1|) (-129) (-339)) (T -1186))
-((-4079 (*1 *2 *1) (-12 (-4 *1 (-1186 *3)) (-4 *3 (-339)) (-5 *2 (-108)))) (-3867 (*1 *2 *1) (-12 (-4 *1 (-1186 *3)) (-4 *3 (-339)) (-5 *2 (-108)))) (-4203 (*1 *2 *1) (-12 (-4 *1 (-1186 *3)) (-4 *3 (-339)) (-5 *2 (-108)))) (-1487 (*1 *2 *1) (-12 (-4 *1 (-1186 *3)) (-4 *3 (-339)) (-5 *2 (-772 (-852))))) (-3718 (*1 *2) (-12 (-4 *1 (-1186 *3)) (-4 *3 (-339)) (-5 *2 (-772 (-852))))) (-4154 (*1 *2) (-12 (-4 *1 (-1186 *3)) (-4 *3 (-339)) (-5 *2 (-710)))) (-1732 (*1 *1 *1) (-12 (-4 *1 (-1186 *2)) (-4 *2 (-339)) (-4 *2 (-344)))) (-1732 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-1186 *3)) (-4 *3 (-339)) (-4 *3 (-344)))))
-(-13 (-339) (-964 |t#1|) (-1176 |t#1|) (-10 -8 (IF (|has| |t#1| (-136)) (-6 (-136)) |%noBranch|) (IF (|has| |t#1| (-134)) (-6 (-378)) |%noBranch|) (-15 -4079 ((-108) $)) (-15 -3867 ((-108) $)) (-15 -4203 ((-108) $)) (-15 -1487 ((-772 (-852)) $)) (-15 -3718 ((-772 (-852)))) (-15 -4154 ((-710))) (IF (|has| |t#1| (-344)) (PROGN (-6 (-378)) (-15 -1732 ($ $)) (-15 -1732 ($ $ (-710)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-383 (-523))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-124) . T) ((-134) -3255 (|has| |#1| (-344)) (|has| |#1| (-134))) ((-136) |has| |#1| (-136)) ((-563 (-794)) . T) ((-158) . T) ((-221) . T) ((-267) . T) ((-284) . T) ((-339) . T) ((-378) -3255 (|has| |#1| (-344)) (|has| |#1| (-134))) ((-427) . T) ((-515) . T) ((-591 #0#) . T) ((-591 |#1|) . T) ((-591 $) . T) ((-657 #0#) . T) ((-657 |#1|) . T) ((-657 $) . T) ((-666) . T) ((-851) . T) ((-964 |#1|) . T) ((-979 #0#) . T) ((-979 |#1|) . T) ((-979 $) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1127) . T) ((-1176 |#1|) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1304 (((-589 |#1|) $) 86)) (-3944 (($ $ (-710)) 89)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2127 (($ $ $) NIL (|has| |#2| (-158))) (($ $ (-710)) NIL (|has| |#2| (-158)))) (-1640 (($) NIL T CONST)) (-3168 (($ $ |#1|) NIL) (($ $ (-758 |#1|)) NIL) (($ $ $) NIL)) (-2898 (((-3 (-758 |#1|) "failed") $) NIL) (((-3 (-824 |#1|) "failed") $) NIL)) (-1996 (((-758 |#1|) $) NIL) (((-824 |#1|) $) NIL)) (-3142 (($ $) 88)) (-4211 (((-3 $ "failed") $) NIL)) (-3460 (((-108) $) 77)) (-2897 (($ $) 81)) (-2996 (($ $ $ (-710)) 90)) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) NIL)) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-1511 (($ (-758 |#1|) |#2|) NIL) (($ (-824 |#1|) |#2|) 26)) (-2471 (($ $) 103)) (-3418 (((-2 (|:| |k| (-758 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2042 (((-758 |#1|) $) NIL)) (-3046 (((-758 |#1|) $) NIL)) (-3015 (($ (-1 |#2| |#2|) $) NIL)) (-2475 (($ $ |#1|) NIL) (($ $ (-758 |#1|)) NIL) (($ $ $) NIL)) (-2062 (($ $ (-710)) 97 (|has| |#2| (-657 (-383 (-523)))))) (-2859 (((-2 (|:| |k| (-824 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3107 (((-824 |#1|) $) 70)) (-3119 ((|#2| $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-1847 (($ $ (-710)) 94 (|has| |#2| (-657 (-383 (-523)))))) (-1487 (((-710) $) 87)) (-2592 (((-108) $) 71)) (-1982 ((|#2| $) 75)) (-3976 (((-794) $) 57) (($ (-523)) NIL) (($ |#2|) 51) (($ (-758 |#1|)) NIL) (($ |#1|) 59) (($ (-824 |#1|)) NIL) (($ (-607 |#1| |#2|)) 43) (((-1182 |#1| |#2|) $) 64) (((-1191 |#1| |#2|) $) 69)) (-1639 (((-589 |#2|) $) NIL)) (-1234 ((|#2| $ (-824 |#1|)) NIL)) (-2275 ((|#2| $ (-758 |#1|)) NIL) ((|#2| $ $) NIL)) (-1698 (((-710)) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 21 T CONST)) (-1440 (($) 25 T CONST)) (-1776 (((-589 (-2 (|:| |k| (-824 |#1|)) (|:| |c| |#2|))) $) NIL)) (-1287 (((-3 (-607 |#1| |#2|) "failed") $) 102)) (-4037 (((-108) $ $) 65)) (-4115 (($ $) 96) (($ $ $) 95)) (-4103 (($ $ $) 20)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 44) (($ |#2| $) 19) (($ $ |#2|) NIL) (($ |#1| $) NIL) (($ |#2| (-824 |#1|)) NIL)))
-(((-1187 |#1| |#2|) (-13 (-1188 |#1| |#2|) (-358 |#2| (-824 |#1|)) (-10 -8 (-15 -3976 ($ (-607 |#1| |#2|))) (-15 -3976 ((-1182 |#1| |#2|) $)) (-15 -3976 ((-1191 |#1| |#2|) $)) (-15 -1287 ((-3 (-607 |#1| |#2|) "failed") $)) (-15 -2996 ($ $ $ (-710))) (IF (|has| |#2| (-657 (-383 (-523)))) (PROGN (-15 -1847 ($ $ (-710))) (-15 -2062 ($ $ (-710)))) |%noBranch|))) (-786) (-158)) (T -1187))
-((-3976 (*1 *1 *2) (-12 (-5 *2 (-607 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158)) (-5 *1 (-1187 *3 *4)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-1182 *3 *4)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-1191 *3 *4)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158)))) (-1287 (*1 *2 *1) (|partial| -12 (-5 *2 (-607 *3 *4)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158)))) (-2996 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158)))) (-1847 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-1187 *3 *4)) (-4 *4 (-657 (-383 (-523)))) (-4 *3 (-786)) (-4 *4 (-158)))) (-2062 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-1187 *3 *4)) (-4 *4 (-657 (-383 (-523)))) (-4 *3 (-786)) (-4 *4 (-158)))))
-(-13 (-1188 |#1| |#2|) (-358 |#2| (-824 |#1|)) (-10 -8 (-15 -3976 ($ (-607 |#1| |#2|))) (-15 -3976 ((-1182 |#1| |#2|) $)) (-15 -3976 ((-1191 |#1| |#2|) $)) (-15 -1287 ((-3 (-607 |#1| |#2|) "failed") $)) (-15 -2996 ($ $ $ (-710))) (IF (|has| |#2| (-657 (-383 (-523)))) (PROGN (-15 -1847 ($ $ (-710))) (-15 -2062 ($ $ (-710)))) |%noBranch|)))
-((-3260 (((-108) $ $) 7)) (-2388 (((-108) $) 16)) (-1304 (((-589 |#1|) $) 40)) (-3944 (($ $ (-710)) 73)) (-2999 (((-3 $ "failed") $ $) 19)) (-2127 (($ $ $) 43 (|has| |#2| (-158))) (($ $ (-710)) 42 (|has| |#2| (-158)))) (-1640 (($) 17 T CONST)) (-3168 (($ $ |#1|) 54) (($ $ (-758 |#1|)) 53) (($ $ $) 52)) (-2898 (((-3 (-758 |#1|) "failed") $) 64)) (-1996 (((-758 |#1|) $) 63)) (-4211 (((-3 $ "failed") $) 34)) (-3460 (((-108) $) 45)) (-2897 (($ $) 44)) (-3482 (((-108) $) 31)) (-4060 (((-108) $) 50)) (-1511 (($ (-758 |#1|) |#2|) 51)) (-2471 (($ $) 49)) (-3418 (((-2 (|:| |k| (-758 |#1|)) (|:| |c| |#2|)) $) 60)) (-2042 (((-758 |#1|) $) 61)) (-3046 (((-758 |#1|) $) 75)) (-3015 (($ (-1 |#2| |#2|) $) 41)) (-2475 (($ $ |#1|) 57) (($ $ (-758 |#1|)) 56) (($ $ $) 55)) (-3841 (((-1070) $) 9)) (-2435 (((-1034) $) 10)) (-1487 (((-710) $) 74)) (-2592 (((-108) $) 47)) (-1982 ((|#2| $) 46)) (-3976 (((-794) $) 11) (($ (-523)) 28) (($ |#2|) 68) (($ (-758 |#1|)) 65) (($ |#1|) 48)) (-2275 ((|#2| $ (-758 |#1|)) 59) ((|#2| $ $) 58)) (-1698 (((-710)) 29)) (-2573 (($ $ (-852)) 26) (($ $ (-710)) 33)) (-1428 (($) 18 T CONST)) (-1440 (($) 30 T CONST)) (-4037 (((-108) $ $) 6)) (-4115 (($ $) 22) (($ $ $) 21)) (-4103 (($ $ $) 14)) (** (($ $ (-852)) 25) (($ $ (-710)) 32)) (* (($ (-852) $) 13) (($ (-710) $) 15) (($ (-523) $) 20) (($ $ $) 24) (($ |#2| $) 67) (($ $ |#2|) 66) (($ |#1| $) 62)))
-(((-1188 |#1| |#2|) (-129) (-786) (-973)) (T -1188))
-((-3046 (*1 *2 *1) (-12 (-4 *1 (-1188 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)) (-5 *2 (-758 *3)))) (-1487 (*1 *2 *1) (-12 (-4 *1 (-1188 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)) (-5 *2 (-710)))) (-3944 (*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-1188 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)))))
-(-13 (-1184 |t#1| |t#2|) (-10 -8 (-15 -3046 ((-758 |t#1|) $)) (-15 -1487 ((-710) $)) (-15 -3944 ($ $ (-710)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#2|) |has| |#2| (-158)) ((-97) . T) ((-107 |#2| |#2|) . T) ((-124) . T) ((-563 (-794)) . T) ((-591 |#2|) . T) ((-591 $) . T) ((-657 |#2|) |has| |#2| (-158)) ((-666) . T) ((-964 (-758 |#1|)) . T) ((-979 |#2|) . T) ((-973) . T) ((-980) . T) ((-1028) . T) ((-1016) . T) ((-1181 |#2|) . T) ((-1184 |#1| |#2|) . T))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-1304 (((-589 (-1087)) $) NIL)) (-3086 (($ (-1182 (-1087) |#1|)) NIL)) (-3944 (($ $ (-710)) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2127 (($ $ $) NIL (|has| |#1| (-158))) (($ $ (-710)) NIL (|has| |#1| (-158)))) (-1640 (($) NIL T CONST)) (-3168 (($ $ (-1087)) NIL) (($ $ (-758 (-1087))) NIL) (($ $ $) NIL)) (-2898 (((-3 (-758 (-1087)) "failed") $) NIL)) (-1996 (((-758 (-1087)) $) NIL)) (-4211 (((-3 $ "failed") $) NIL)) (-3460 (((-108) $) NIL)) (-2897 (($ $) NIL)) (-3482 (((-108) $) NIL)) (-4060 (((-108) $) NIL)) (-1511 (($ (-758 (-1087)) |#1|) NIL)) (-2471 (($ $) NIL)) (-3418 (((-2 (|:| |k| (-758 (-1087))) (|:| |c| |#1|)) $) NIL)) (-2042 (((-758 (-1087)) $) NIL)) (-3046 (((-758 (-1087)) $) NIL)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-2475 (($ $ (-1087)) NIL) (($ $ (-758 (-1087))) NIL) (($ $ $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-1276 (((-1182 (-1087) |#1|) $) NIL)) (-1487 (((-710) $) NIL)) (-2592 (((-108) $) NIL)) (-1982 ((|#1| $) NIL)) (-3976 (((-794) $) NIL) (($ (-523)) NIL) (($ |#1|) NIL) (($ (-758 (-1087))) NIL) (($ (-1087)) NIL)) (-2275 ((|#1| $ (-758 (-1087))) NIL) ((|#1| $ $) NIL)) (-1698 (((-710)) NIL)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) NIL T CONST)) (-4020 (((-589 (-2 (|:| |k| (-1087)) (|:| |c| $))) $) NIL)) (-1440 (($) NIL T CONST)) (-4037 (((-108) $ $) NIL)) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) NIL)) (** (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-1087) $) NIL)))
-(((-1189 |#1|) (-13 (-1188 (-1087) |#1|) (-10 -8 (-15 -1276 ((-1182 (-1087) |#1|) $)) (-15 -3086 ($ (-1182 (-1087) |#1|))) (-15 -4020 ((-589 (-2 (|:| |k| (-1087)) (|:| |c| $))) $)))) (-973)) (T -1189))
-((-1276 (*1 *2 *1) (-12 (-5 *2 (-1182 (-1087) *3)) (-5 *1 (-1189 *3)) (-4 *3 (-973)))) (-3086 (*1 *1 *2) (-12 (-5 *2 (-1182 (-1087) *3)) (-4 *3 (-973)) (-5 *1 (-1189 *3)))) (-4020 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| |k| (-1087)) (|:| |c| (-1189 *3))))) (-5 *1 (-1189 *3)) (-4 *3 (-973)))))
-(-13 (-1188 (-1087) |#1|) (-10 -8 (-15 -1276 ((-1182 (-1087) |#1|) $)) (-15 -3086 ($ (-1182 (-1087) |#1|))) (-15 -4020 ((-589 (-2 (|:| |k| (-1087)) (|:| |c| $))) $))))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) NIL)) (-2999 (((-3 $ "failed") $ $) NIL)) (-1640 (($) NIL T CONST)) (-2898 (((-3 |#2| "failed") $) NIL)) (-1996 ((|#2| $) NIL)) (-3142 (($ $) NIL)) (-4211 (((-3 $ "failed") $) 36)) (-3460 (((-108) $) 30)) (-2897 (($ $) 32)) (-3482 (((-108) $) NIL)) (-3288 (((-710) $) NIL)) (-2738 (((-589 $) $) NIL)) (-4060 (((-108) $) NIL)) (-1511 (($ |#2| |#1|) NIL)) (-2042 ((|#2| $) 19)) (-3046 ((|#2| $) 16)) (-3015 (($ (-1 |#1| |#1|) $) NIL)) (-2859 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-3107 ((|#2| $) NIL)) (-3119 ((|#1| $) NIL)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-2592 (((-108) $) 27)) (-1982 ((|#1| $) 28)) (-3976 (((-794) $) 55) (($ (-523)) 40) (($ |#1|) 35) (($ |#2|) NIL)) (-1639 (((-589 |#1|) $) NIL)) (-1234 ((|#1| $ |#2|) NIL)) (-2275 ((|#1| $ |#2|) 24)) (-1698 (((-710)) 14)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 25 T CONST)) (-1440 (($) 11 T CONST)) (-1776 (((-589 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-4037 (((-108) $ $) 26)) (-4125 (($ $ |#1|) 57 (|has| |#1| (-339)))) (-4115 (($ $) NIL) (($ $ $) NIL)) (-4103 (($ $ $) 44)) (** (($ $ (-852)) NIL) (($ $ (-710)) 46)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) NIL) (($ $ $) 45) (($ |#1| $) 41) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-1271 (((-710) $) 15)))
-(((-1190 |#1| |#2|) (-13 (-973) (-1181 |#1|) (-358 |#1| |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -1271 ((-710) $)) (-15 -3976 ($ |#2|)) (-15 -3046 (|#2| $)) (-15 -2042 (|#2| $)) (-15 -3142 ($ $)) (-15 -2275 (|#1| $ |#2|)) (-15 -2592 ((-108) $)) (-15 -1982 (|#1| $)) (-15 -3460 ((-108) $)) (-15 -2897 ($ $)) (-15 -3015 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-339)) (-15 -4125 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4241)) (-6 -4241) |%noBranch|) (IF (|has| |#1| (-6 -4245)) (-6 -4245) |%noBranch|) (IF (|has| |#1| (-6 -4246)) (-6 -4246) |%noBranch|))) (-973) (-782)) (T -1190))
-((* (*1 *1 *1 *2) (-12 (-5 *1 (-1190 *2 *3)) (-4 *2 (-973)) (-4 *3 (-782)))) (-3142 (*1 *1 *1) (-12 (-5 *1 (-1190 *2 *3)) (-4 *2 (-973)) (-4 *3 (-782)))) (-3015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-973)) (-5 *1 (-1190 *3 *4)) (-4 *4 (-782)))) (-3976 (*1 *1 *2) (-12 (-5 *1 (-1190 *3 *2)) (-4 *3 (-973)) (-4 *2 (-782)))) (-1271 (*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-1190 *3 *4)) (-4 *3 (-973)) (-4 *4 (-782)))) (-3046 (*1 *2 *1) (-12 (-4 *2 (-782)) (-5 *1 (-1190 *3 *2)) (-4 *3 (-973)))) (-2042 (*1 *2 *1) (-12 (-4 *2 (-782)) (-5 *1 (-1190 *3 *2)) (-4 *3 (-973)))) (-2275 (*1 *2 *1 *3) (-12 (-4 *2 (-973)) (-5 *1 (-1190 *2 *3)) (-4 *3 (-782)))) (-2592 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1190 *3 *4)) (-4 *3 (-973)) (-4 *4 (-782)))) (-1982 (*1 *2 *1) (-12 (-4 *2 (-973)) (-5 *1 (-1190 *2 *3)) (-4 *3 (-782)))) (-3460 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1190 *3 *4)) (-4 *3 (-973)) (-4 *4 (-782)))) (-2897 (*1 *1 *1) (-12 (-5 *1 (-1190 *2 *3)) (-4 *2 (-973)) (-4 *3 (-782)))) (-4125 (*1 *1 *1 *2) (-12 (-5 *1 (-1190 *2 *3)) (-4 *2 (-339)) (-4 *2 (-973)) (-4 *3 (-782)))))
-(-13 (-973) (-1181 |#1|) (-358 |#1| |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -1271 ((-710) $)) (-15 -3976 ($ |#2|)) (-15 -3046 (|#2| $)) (-15 -2042 (|#2| $)) (-15 -3142 ($ $)) (-15 -2275 (|#1| $ |#2|)) (-15 -2592 ((-108) $)) (-15 -1982 (|#1| $)) (-15 -3460 ((-108) $)) (-15 -2897 ($ $)) (-15 -3015 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-339)) (-15 -4125 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4241)) (-6 -4241) |%noBranch|) (IF (|has| |#1| (-6 -4245)) (-6 -4245) |%noBranch|) (IF (|has| |#1| (-6 -4246)) (-6 -4246) |%noBranch|)))
-((-3260 (((-108) $ $) 26)) (-2388 (((-108) $) NIL)) (-1304 (((-589 |#1|) $) 120)) (-3086 (($ (-1182 |#1| |#2|)) 44)) (-3944 (($ $ (-710)) 32)) (-2999 (((-3 $ "failed") $ $) NIL)) (-2127 (($ $ $) 48 (|has| |#2| (-158))) (($ $ (-710)) 46 (|has| |#2| (-158)))) (-1640 (($) NIL T CONST)) (-3168 (($ $ |#1|) 102) (($ $ (-758 |#1|)) 103) (($ $ $) 25)) (-2898 (((-3 (-758 |#1|) "failed") $) NIL)) (-1996 (((-758 |#1|) $) NIL)) (-4211 (((-3 $ "failed") $) 110)) (-3460 (((-108) $) 105)) (-2897 (($ $) 106)) (-3482 (((-108) $) NIL)) (-4060 (((-108) $) NIL)) (-1511 (($ (-758 |#1|) |#2|) 19)) (-2471 (($ $) NIL)) (-3418 (((-2 (|:| |k| (-758 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2042 (((-758 |#1|) $) 111)) (-3046 (((-758 |#1|) $) 114)) (-3015 (($ (-1 |#2| |#2|) $) 119)) (-2475 (($ $ |#1|) 100) (($ $ (-758 |#1|)) 101) (($ $ $) 56)) (-3841 (((-1070) $) NIL)) (-2435 (((-1034) $) NIL)) (-1276 (((-1182 |#1| |#2|) $) 84)) (-1487 (((-710) $) 117)) (-2592 (((-108) $) 70)) (-1982 ((|#2| $) 28)) (-3976 (((-794) $) 63) (($ (-523)) 77) (($ |#2|) 74) (($ (-758 |#1|)) 17) (($ |#1|) 73)) (-2275 ((|#2| $ (-758 |#1|)) 104) ((|#2| $ $) 27)) (-1698 (((-710)) 108)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 14 T CONST)) (-4020 (((-589 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 53)) (-1440 (($) 29 T CONST)) (-4037 (((-108) $ $) 13)) (-4115 (($ $) 88) (($ $ $) 91)) (-4103 (($ $ $) 55)) (** (($ $ (-852)) NIL) (($ $ (-710)) 49)) (* (($ (-852) $) NIL) (($ (-710) $) 47) (($ (-523) $) 94) (($ $ $) 21) (($ |#2| $) 18) (($ $ |#2|) 20) (($ |#1| $) 82)))
-(((-1191 |#1| |#2|) (-13 (-1188 |#1| |#2|) (-10 -8 (-15 -1276 ((-1182 |#1| |#2|) $)) (-15 -3086 ($ (-1182 |#1| |#2|))) (-15 -4020 ((-589 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-786) (-973)) (T -1191))
-((-1276 (*1 *2 *1) (-12 (-5 *2 (-1182 *3 *4)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)))) (-3086 (*1 *1 *2) (-12 (-5 *2 (-1182 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)) (-5 *1 (-1191 *3 *4)))) (-4020 (*1 *2 *1) (-12 (-5 *2 (-589 (-2 (|:| |k| *3) (|:| |c| (-1191 *3 *4))))) (-5 *1 (-1191 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)))))
-(-13 (-1188 |#1| |#2|) (-10 -8 (-15 -1276 ((-1182 |#1| |#2|) $)) (-15 -3086 ($ (-1182 |#1| |#2|))) (-15 -4020 ((-589 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
-((-4028 (((-589 (-1068 |#1|)) (-1 (-589 (-1068 |#1|)) (-589 (-1068 |#1|))) (-523)) 15) (((-1068 |#1|) (-1 (-1068 |#1|) (-1068 |#1|))) 11)))
-(((-1192 |#1|) (-10 -7 (-15 -4028 ((-1068 |#1|) (-1 (-1068 |#1|) (-1068 |#1|)))) (-15 -4028 ((-589 (-1068 |#1|)) (-1 (-589 (-1068 |#1|)) (-589 (-1068 |#1|))) (-523)))) (-1123)) (T -1192))
-((-4028 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-589 (-1068 *5)) (-589 (-1068 *5)))) (-5 *4 (-523)) (-5 *2 (-589 (-1068 *5))) (-5 *1 (-1192 *5)) (-4 *5 (-1123)))) (-4028 (*1 *2 *3) (-12 (-5 *3 (-1 (-1068 *4) (-1068 *4))) (-5 *2 (-1068 *4)) (-5 *1 (-1192 *4)) (-4 *4 (-1123)))))
-(-10 -7 (-15 -4028 ((-1068 |#1|) (-1 (-1068 |#1|) (-1068 |#1|)))) (-15 -4028 ((-589 (-1068 |#1|)) (-1 (-589 (-1068 |#1|)) (-589 (-1068 |#1|))) (-523))))
-((-4040 (((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|))) 148) (((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)) (-108)) 147) (((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)) (-108) (-108)) 146) (((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)) (-108) (-108) (-108)) 145) (((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-970 |#1| |#2|)) 130)) (-4225 (((-589 (-970 |#1| |#2|)) (-589 (-883 |#1|))) 72) (((-589 (-970 |#1| |#2|)) (-589 (-883 |#1|)) (-108)) 71) (((-589 (-970 |#1| |#2|)) (-589 (-883 |#1|)) (-108) (-108)) 70)) (-2105 (((-589 (-1058 |#1| (-495 (-796 |#3|)) (-796 |#3|) (-719 |#1| (-796 |#3|)))) (-970 |#1| |#2|)) 61)) (-1556 (((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|))) 115) (((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)) (-108)) 114) (((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)) (-108) (-108)) 113) (((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)) (-108) (-108) (-108)) 112) (((-589 (-589 (-951 (-383 |#1|)))) (-970 |#1| |#2|)) 107)) (-3542 (((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|))) 120) (((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)) (-108)) 119) (((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)) (-108) (-108)) 118) (((-589 (-589 (-951 (-383 |#1|)))) (-970 |#1| |#2|)) 117)) (-3077 (((-589 (-719 |#1| (-796 |#3|))) (-1058 |#1| (-495 (-796 |#3|)) (-796 |#3|) (-719 |#1| (-796 |#3|)))) 98) (((-1083 (-951 (-383 |#1|))) (-1083 |#1|)) 89) (((-883 (-951 (-383 |#1|))) (-719 |#1| (-796 |#3|))) 96) (((-883 (-951 (-383 |#1|))) (-883 |#1|)) 94) (((-719 |#1| (-796 |#3|)) (-719 |#1| (-796 |#2|))) 33)))
-(((-1193 |#1| |#2| |#3|) (-10 -7 (-15 -4225 ((-589 (-970 |#1| |#2|)) (-589 (-883 |#1|)) (-108) (-108))) (-15 -4225 ((-589 (-970 |#1| |#2|)) (-589 (-883 |#1|)) (-108))) (-15 -4225 ((-589 (-970 |#1| |#2|)) (-589 (-883 |#1|)))) (-15 -4040 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-970 |#1| |#2|))) (-15 -4040 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)) (-108) (-108) (-108))) (-15 -4040 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)) (-108) (-108))) (-15 -4040 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)) (-108))) (-15 -4040 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)))) (-15 -1556 ((-589 (-589 (-951 (-383 |#1|)))) (-970 |#1| |#2|))) (-15 -1556 ((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)) (-108) (-108) (-108))) (-15 -1556 ((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)) (-108) (-108))) (-15 -1556 ((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)) (-108))) (-15 -1556 ((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)))) (-15 -3542 ((-589 (-589 (-951 (-383 |#1|)))) (-970 |#1| |#2|))) (-15 -3542 ((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)) (-108) (-108))) (-15 -3542 ((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)) (-108))) (-15 -3542 ((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)))) (-15 -2105 ((-589 (-1058 |#1| (-495 (-796 |#3|)) (-796 |#3|) (-719 |#1| (-796 |#3|)))) (-970 |#1| |#2|))) (-15 -3077 ((-719 |#1| (-796 |#3|)) (-719 |#1| (-796 |#2|)))) (-15 -3077 ((-883 (-951 (-383 |#1|))) (-883 |#1|))) (-15 -3077 ((-883 (-951 (-383 |#1|))) (-719 |#1| (-796 |#3|)))) (-15 -3077 ((-1083 (-951 (-383 |#1|))) (-1083 |#1|))) (-15 -3077 ((-589 (-719 |#1| (-796 |#3|))) (-1058 |#1| (-495 (-796 |#3|)) (-796 |#3|) (-719 |#1| (-796 |#3|)))))) (-13 (-784) (-284) (-136) (-949)) (-589 (-1087)) (-589 (-1087))) (T -1193))
-((-3077 (*1 *2 *3) (-12 (-5 *3 (-1058 *4 (-495 (-796 *6)) (-796 *6) (-719 *4 (-796 *6)))) (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-14 *6 (-589 (-1087))) (-5 *2 (-589 (-719 *4 (-796 *6)))) (-5 *1 (-1193 *4 *5 *6)) (-14 *5 (-589 (-1087))))) (-3077 (*1 *2 *3) (-12 (-5 *3 (-1083 *4)) (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-1083 (-951 (-383 *4)))) (-5 *1 (-1193 *4 *5 *6)) (-14 *5 (-589 (-1087))) (-14 *6 (-589 (-1087))))) (-3077 (*1 *2 *3) (-12 (-5 *3 (-719 *4 (-796 *6))) (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-14 *6 (-589 (-1087))) (-5 *2 (-883 (-951 (-383 *4)))) (-5 *1 (-1193 *4 *5 *6)) (-14 *5 (-589 (-1087))))) (-3077 (*1 *2 *3) (-12 (-5 *3 (-883 *4)) (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-883 (-951 (-383 *4)))) (-5 *1 (-1193 *4 *5 *6)) (-14 *5 (-589 (-1087))) (-14 *6 (-589 (-1087))))) (-3077 (*1 *2 *3) (-12 (-5 *3 (-719 *4 (-796 *5))) (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-14 *5 (-589 (-1087))) (-5 *2 (-719 *4 (-796 *6))) (-5 *1 (-1193 *4 *5 *6)) (-14 *6 (-589 (-1087))))) (-2105 (*1 *2 *3) (-12 (-5 *3 (-970 *4 *5)) (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-14 *5 (-589 (-1087))) (-5 *2 (-589 (-1058 *4 (-495 (-796 *6)) (-796 *6) (-719 *4 (-796 *6))))) (-5 *1 (-1193 *4 *5 *6)) (-14 *6 (-589 (-1087))))) (-3542 (*1 *2 *3) (-12 (-5 *3 (-589 (-883 *4))) (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-589 (-589 (-951 (-383 *4))))) (-5 *1 (-1193 *4 *5 *6)) (-14 *5 (-589 (-1087))) (-14 *6 (-589 (-1087))))) (-3542 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-589 (-589 (-951 (-383 *5))))) (-5 *1 (-1193 *5 *6 *7)) (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087))))) (-3542 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-589 (-589 (-951 (-383 *5))))) (-5 *1 (-1193 *5 *6 *7)) (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087))))) (-3542 (*1 *2 *3) (-12 (-5 *3 (-970 *4 *5)) (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-14 *5 (-589 (-1087))) (-5 *2 (-589 (-589 (-951 (-383 *4))))) (-5 *1 (-1193 *4 *5 *6)) (-14 *6 (-589 (-1087))))) (-1556 (*1 *2 *3) (-12 (-5 *3 (-589 (-883 *4))) (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-589 (-589 (-951 (-383 *4))))) (-5 *1 (-1193 *4 *5 *6)) (-14 *5 (-589 (-1087))) (-14 *6 (-589 (-1087))))) (-1556 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-589 (-589 (-951 (-383 *5))))) (-5 *1 (-1193 *5 *6 *7)) (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087))))) (-1556 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-589 (-589 (-951 (-383 *5))))) (-5 *1 (-1193 *5 *6 *7)) (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087))))) (-1556 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-589 (-589 (-951 (-383 *5))))) (-5 *1 (-1193 *5 *6 *7)) (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087))))) (-1556 (*1 *2 *3) (-12 (-5 *3 (-970 *4 *5)) (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-14 *5 (-589 (-1087))) (-5 *2 (-589 (-589 (-951 (-383 *4))))) (-5 *1 (-1193 *4 *5 *6)) (-14 *6 (-589 (-1087))))) (-4040 (*1 *2 *3) (-12 (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-589 (-2 (|:| -2715 (-1083 *4)) (|:| -2411 (-589 (-883 *4)))))) (-5 *1 (-1193 *4 *5 *6)) (-5 *3 (-589 (-883 *4))) (-14 *5 (-589 (-1087))) (-14 *6 (-589 (-1087))))) (-4040 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-589 (-2 (|:| -2715 (-1083 *5)) (|:| -2411 (-589 (-883 *5)))))) (-5 *1 (-1193 *5 *6 *7)) (-5 *3 (-589 (-883 *5))) (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087))))) (-4040 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-589 (-2 (|:| -2715 (-1083 *5)) (|:| -2411 (-589 (-883 *5)))))) (-5 *1 (-1193 *5 *6 *7)) (-5 *3 (-589 (-883 *5))) (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087))))) (-4040 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-589 (-2 (|:| -2715 (-1083 *5)) (|:| -2411 (-589 (-883 *5)))))) (-5 *1 (-1193 *5 *6 *7)) (-5 *3 (-589 (-883 *5))) (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087))))) (-4040 (*1 *2 *3) (-12 (-5 *3 (-970 *4 *5)) (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-14 *5 (-589 (-1087))) (-5 *2 (-589 (-2 (|:| -2715 (-1083 *4)) (|:| -2411 (-589 (-883 *4)))))) (-5 *1 (-1193 *4 *5 *6)) (-14 *6 (-589 (-1087))))) (-4225 (*1 *2 *3) (-12 (-5 *3 (-589 (-883 *4))) (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-589 (-970 *4 *5))) (-5 *1 (-1193 *4 *5 *6)) (-14 *5 (-589 (-1087))) (-14 *6 (-589 (-1087))))) (-4225 (*1 *2 *3 *4) (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-589 (-970 *5 *6))) (-5 *1 (-1193 *5 *6 *7)) (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087))))) (-4225 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-784) (-284) (-136) (-949))) (-5 *2 (-589 (-970 *5 *6))) (-5 *1 (-1193 *5 *6 *7)) (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087))))))
-(-10 -7 (-15 -4225 ((-589 (-970 |#1| |#2|)) (-589 (-883 |#1|)) (-108) (-108))) (-15 -4225 ((-589 (-970 |#1| |#2|)) (-589 (-883 |#1|)) (-108))) (-15 -4225 ((-589 (-970 |#1| |#2|)) (-589 (-883 |#1|)))) (-15 -4040 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-970 |#1| |#2|))) (-15 -4040 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)) (-108) (-108) (-108))) (-15 -4040 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)) (-108) (-108))) (-15 -4040 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)) (-108))) (-15 -4040 ((-589 (-2 (|:| -2715 (-1083 |#1|)) (|:| -2411 (-589 (-883 |#1|))))) (-589 (-883 |#1|)))) (-15 -1556 ((-589 (-589 (-951 (-383 |#1|)))) (-970 |#1| |#2|))) (-15 -1556 ((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)) (-108) (-108) (-108))) (-15 -1556 ((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)) (-108) (-108))) (-15 -1556 ((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)) (-108))) (-15 -1556 ((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)))) (-15 -3542 ((-589 (-589 (-951 (-383 |#1|)))) (-970 |#1| |#2|))) (-15 -3542 ((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)) (-108) (-108))) (-15 -3542 ((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)) (-108))) (-15 -3542 ((-589 (-589 (-951 (-383 |#1|)))) (-589 (-883 |#1|)))) (-15 -2105 ((-589 (-1058 |#1| (-495 (-796 |#3|)) (-796 |#3|) (-719 |#1| (-796 |#3|)))) (-970 |#1| |#2|))) (-15 -3077 ((-719 |#1| (-796 |#3|)) (-719 |#1| (-796 |#2|)))) (-15 -3077 ((-883 (-951 (-383 |#1|))) (-883 |#1|))) (-15 -3077 ((-883 (-951 (-383 |#1|))) (-719 |#1| (-796 |#3|)))) (-15 -3077 ((-1083 (-951 (-383 |#1|))) (-1083 |#1|))) (-15 -3077 ((-589 (-719 |#1| (-796 |#3|))) (-1058 |#1| (-495 (-796 |#3|)) (-796 |#3|) (-719 |#1| (-796 |#3|))))))
-((-2491 (((-3 (-1169 (-383 (-523))) "failed") (-1169 |#1|) |#1|) 21)) (-3256 (((-108) (-1169 |#1|)) 12)) (-1990 (((-3 (-1169 (-523)) "failed") (-1169 |#1|)) 16)))
-(((-1194 |#1|) (-10 -7 (-15 -3256 ((-108) (-1169 |#1|))) (-15 -1990 ((-3 (-1169 (-523)) "failed") (-1169 |#1|))) (-15 -2491 ((-3 (-1169 (-383 (-523))) "failed") (-1169 |#1|) |#1|))) (-585 (-523))) (T -1194))
-((-2491 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1169 *4)) (-4 *4 (-585 (-523))) (-5 *2 (-1169 (-383 (-523)))) (-5 *1 (-1194 *4)))) (-1990 (*1 *2 *3) (|partial| -12 (-5 *3 (-1169 *4)) (-4 *4 (-585 (-523))) (-5 *2 (-1169 (-523))) (-5 *1 (-1194 *4)))) (-3256 (*1 *2 *3) (-12 (-5 *3 (-1169 *4)) (-4 *4 (-585 (-523))) (-5 *2 (-108)) (-5 *1 (-1194 *4)))))
-(-10 -7 (-15 -3256 ((-108) (-1169 |#1|))) (-15 -1990 ((-3 (-1169 (-523)) "failed") (-1169 |#1|))) (-15 -2491 ((-3 (-1169 (-383 (-523))) "failed") (-1169 |#1|) |#1|)))
-((-3260 (((-108) $ $) NIL)) (-2388 (((-108) $) 11)) (-2999 (((-3 $ "failed") $ $) NIL)) (-3843 (((-710)) 8)) (-1640 (($) NIL T CONST)) (-4211 (((-3 $ "failed") $) 43)) (-3461 (($) 36)) (-3482 (((-108) $) NIL)) (-1289 (((-3 $ "failed") $) 29)) (-4076 (((-852) $) 15)) (-3841 (((-1070) $) NIL)) (-4105 (($) 25 T CONST)) (-2557 (($ (-852)) 37)) (-2435 (((-1034) $) NIL)) (-3077 (((-523) $) 13)) (-3976 (((-794) $) 22) (($ (-523)) 19)) (-1698 (((-710)) 9)) (-2573 (($ $ (-852)) NIL) (($ $ (-710)) NIL)) (-1428 (($) 23 T CONST)) (-1440 (($) 24 T CONST)) (-4037 (((-108) $ $) 27)) (-4115 (($ $) 38) (($ $ $) 35)) (-4103 (($ $ $) 26)) (** (($ $ (-852)) NIL) (($ $ (-710)) 40)) (* (($ (-852) $) NIL) (($ (-710) $) NIL) (($ (-523) $) 32) (($ $ $) 31)))
-(((-1195 |#1|) (-13 (-158) (-344) (-564 (-523)) (-1063)) (-852)) (T -1195))
-NIL
-(-13 (-158) (-344) (-564 (-523)) (-1063))
-NIL
-NIL
-NIL
-NIL
-NIL
-NIL
-NIL
-NIL
-NIL
-NIL
-NIL
-NIL
-((-3 3139929 3139934 3139939 NIL NIL NIL NIL (NIL) -8 NIL NIL) (-2 3139914 3139919 3139924 NIL NIL NIL NIL (NIL) -8 NIL NIL) (-1 3139899 3139904 3139909 NIL NIL NIL NIL (NIL) -8 NIL NIL) (0 3139884 3139889 3139894 NIL NIL NIL NIL (NIL) -8 NIL NIL) (-1195 3139014 3139759 3139836 "ZMOD" 3139841 NIL ZMOD (NIL NIL) -8 NIL NIL) (-1194 3138124 3138288 3138497 "ZLINDEP" 3138846 NIL ZLINDEP (NIL T) -7 NIL NIL) (-1193 3127528 3129273 3131225 "ZDSOLVE" 3136273 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL) (-1192 3126774 3126915 3127104 "YSTREAM" 3127374 NIL YSTREAM (NIL T) -7 NIL NIL) (-1191 3124543 3126079 3126282 "XRPOLY" 3126617 NIL XRPOLY (NIL T T) -8 NIL NIL) (-1190 3121005 3122334 3122916 "XPR" 3124007 NIL XPR (NIL T T) -8 NIL NIL) (-1189 3118719 3120340 3120543 "XPOLY" 3120836 NIL XPOLY (NIL T) -8 NIL NIL) (-1188 3116533 3117911 3117965 "XPOLYC" 3118250 NIL XPOLYC (NIL T T) -9 NIL 3118363) (-1187 3112905 3115050 3115438 "XPBWPOLY" 3116191 NIL XPBWPOLY (NIL T T) -8 NIL NIL) (-1186 3108833 3111146 3111188 "XF" 3111809 NIL XF (NIL T) -9 NIL 3112208) (-1185 3108454 3108542 3108711 "XF-" 3108716 NIL XF- (NIL T T) -8 NIL NIL) (-1184 3103834 3105133 3105187 "XFALG" 3107335 NIL XFALG (NIL T T) -9 NIL 3108122) (-1183 3102971 3103075 3103279 "XEXPPKG" 3103726 NIL XEXPPKG (NIL T T T) -7 NIL NIL) (-1182 3101070 3102822 3102917 "XDPOLY" 3102922 NIL XDPOLY (NIL T T) -8 NIL NIL) (-1181 3099949 3100559 3100601 "XALG" 3100663 NIL XALG (NIL T) -9 NIL 3100782) (-1180 3093425 3097933 3098426 "WUTSET" 3099541 NIL WUTSET (NIL T T T T) -8 NIL NIL) (-1179 3091237 3092044 3092395 "WP" 3093207 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL) (-1178 3090123 3090321 3090616 "WFFINTBS" 3091034 NIL WFFINTBS (NIL T T T T) -7 NIL NIL) (-1177 3088027 3088454 3088916 "WEIER" 3089695 NIL WEIER (NIL T) -7 NIL NIL) (-1176 3087176 3087600 3087642 "VSPACE" 3087778 NIL VSPACE (NIL T) -9 NIL 3087852) (-1175 3087014 3087041 3087132 "VSPACE-" 3087137 NIL VSPACE- (NIL T T) -8 NIL NIL) (-1174 3086760 3086803 3086874 "VOID" 3086965 T VOID (NIL) -8 NIL NIL) (-1173 3084896 3085255 3085661 "VIEW" 3086376 T VIEW (NIL) -7 NIL NIL) (-1172 3081321 3081959 3082696 "VIEWDEF" 3084181 T VIEWDEF (NIL) -7 NIL NIL) (-1171 3070659 3072869 3075042 "VIEW3D" 3079170 T VIEW3D (NIL) -8 NIL NIL) (-1170 3062941 3064570 3066149 "VIEW2D" 3069102 T VIEW2D (NIL) -8 NIL NIL) (-1169 3058350 3062711 3062803 "VECTOR" 3062884 NIL VECTOR (NIL T) -8 NIL NIL) (-1168 3056927 3057186 3057504 "VECTOR2" 3058080 NIL VECTOR2 (NIL T T) -7 NIL NIL) (-1167 3050467 3054719 3054762 "VECTCAT" 3055750 NIL VECTCAT (NIL T) -9 NIL 3056334) (-1166 3049481 3049735 3050125 "VECTCAT-" 3050130 NIL VECTCAT- (NIL T T) -8 NIL NIL) (-1165 3048962 3049132 3049252 "VARIABLE" 3049396 NIL VARIABLE (NIL NIL) -8 NIL NIL) (-1164 3048895 3048900 3048930 "UTYPE" 3048935 T UTYPE (NIL) -9 NIL NIL) (-1163 3047730 3047884 3048145 "UTSODETL" 3048721 NIL UTSODETL (NIL T T T T) -7 NIL NIL) (-1162 3045170 3045630 3046154 "UTSODE" 3047271 NIL UTSODE (NIL T T) -7 NIL NIL) (-1161 3037014 3042810 3043298 "UTS" 3044739 NIL UTS (NIL T NIL NIL) -8 NIL NIL) (-1160 3028359 3033724 3033766 "UTSCAT" 3034867 NIL UTSCAT (NIL T) -9 NIL 3035624) (-1159 3025714 3026430 3027418 "UTSCAT-" 3027423 NIL UTSCAT- (NIL T T) -8 NIL NIL) (-1158 3025345 3025388 3025519 "UTS2" 3025665 NIL UTS2 (NIL T T T T) -7 NIL NIL) (-1157 3019621 3022186 3022229 "URAGG" 3024299 NIL URAGG (NIL T) -9 NIL 3025021) (-1156 3016560 3017423 3018546 "URAGG-" 3018551 NIL URAGG- (NIL T T) -8 NIL NIL) (-1155 3012246 3015177 3015648 "UPXSSING" 3016224 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL) (-1154 3004137 3011367 3011647 "UPXS" 3012023 NIL UPXS (NIL T NIL NIL) -8 NIL NIL) (-1153 2997166 3004042 3004113 "UPXSCONS" 3004118 NIL UPXSCONS (NIL T T) -8 NIL NIL) (-1152 2987455 2994285 2994346 "UPXSCCA" 2994995 NIL UPXSCCA (NIL T T) -9 NIL 2995236) (-1151 2987094 2987179 2987352 "UPXSCCA-" 2987357 NIL UPXSCCA- (NIL T T T) -8 NIL NIL) (-1150 2977305 2983908 2983950 "UPXSCAT" 2984593 NIL UPXSCAT (NIL T) -9 NIL 2985201) (-1149 2976739 2976818 2976995 "UPXS2" 2977220 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL) (-1148 2975393 2975646 2975997 "UPSQFREE" 2976482 NIL UPSQFREE (NIL T T) -7 NIL NIL) (-1147 2969284 2972339 2972393 "UPSCAT" 2973542 NIL UPSCAT (NIL T T) -9 NIL 2974316) (-1146 2968489 2968696 2969022 "UPSCAT-" 2969027 NIL UPSCAT- (NIL T T T) -8 NIL NIL) (-1145 2954575 2962612 2962654 "UPOLYC" 2964732 NIL UPOLYC (NIL T) -9 NIL 2965953) (-1144 2945905 2948330 2951476 "UPOLYC-" 2951481 NIL UPOLYC- (NIL T T) -8 NIL NIL) (-1143 2945536 2945579 2945710 "UPOLYC2" 2945856 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL) (-1142 2936955 2945105 2945242 "UP" 2945446 NIL UP (NIL NIL T) -8 NIL NIL) (-1141 2936298 2936405 2936568 "UPMP" 2936844 NIL UPMP (NIL T T) -7 NIL NIL) (-1140 2935851 2935932 2936071 "UPDIVP" 2936211 NIL UPDIVP (NIL T T) -7 NIL NIL) (-1139 2934419 2934668 2934984 "UPDECOMP" 2935600 NIL UPDECOMP (NIL T T) -7 NIL NIL) (-1138 2933654 2933766 2933951 "UPCDEN" 2934303 NIL UPCDEN (NIL T T T) -7 NIL NIL) (-1137 2933177 2933246 2933393 "UP2" 2933579 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL) (-1136 2931694 2932381 2932658 "UNISEG" 2932935 NIL UNISEG (NIL T) -8 NIL NIL) (-1135 2930909 2931036 2931241 "UNISEG2" 2931537 NIL UNISEG2 (NIL T T) -7 NIL NIL) (-1134 2929969 2930149 2930375 "UNIFACT" 2930725 NIL UNIFACT (NIL T) -7 NIL NIL) (-1133 2913865 2929150 2929400 "ULS" 2929776 NIL ULS (NIL T NIL NIL) -8 NIL NIL) (-1132 2901830 2913770 2913841 "ULSCONS" 2913846 NIL ULSCONS (NIL T T) -8 NIL NIL) (-1131 2884580 2896593 2896654 "ULSCCAT" 2897366 NIL ULSCCAT (NIL T T) -9 NIL 2897662) (-1130 2883631 2883876 2884263 "ULSCCAT-" 2884268 NIL ULSCCAT- (NIL T T T) -8 NIL NIL) (-1129 2873621 2880138 2880180 "ULSCAT" 2881036 NIL ULSCAT (NIL T) -9 NIL 2881766) (-1128 2873055 2873134 2873311 "ULS2" 2873536 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL) (-1127 2871453 2872420 2872450 "UFD" 2872662 T UFD (NIL) -9 NIL 2872776) (-1126 2871247 2871293 2871388 "UFD-" 2871393 NIL UFD- (NIL T) -8 NIL NIL) (-1125 2870329 2870512 2870728 "UDVO" 2871053 T UDVO (NIL) -7 NIL NIL) (-1124 2868145 2868554 2869025 "UDPO" 2869893 NIL UDPO (NIL T) -7 NIL NIL) (-1123 2868078 2868083 2868113 "TYPE" 2868118 T TYPE (NIL) -9 NIL NIL) (-1122 2867049 2867251 2867491 "TWOFACT" 2867872 NIL TWOFACT (NIL T) -7 NIL NIL) (-1121 2865987 2866324 2866587 "TUPLE" 2866821 NIL TUPLE (NIL T) -8 NIL NIL) (-1120 2863678 2864197 2864736 "TUBETOOL" 2865470 T TUBETOOL (NIL) -7 NIL NIL) (-1119 2862527 2862732 2862973 "TUBE" 2863471 NIL TUBE (NIL T) -8 NIL NIL) (-1118 2857251 2861505 2861787 "TS" 2862279 NIL TS (NIL T) -8 NIL NIL) (-1117 2845955 2850047 2850143 "TSETCAT" 2855377 NIL TSETCAT (NIL T T T T) -9 NIL 2856908) (-1116 2840690 2842288 2844178 "TSETCAT-" 2844183 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL) (-1115 2834953 2835799 2836741 "TRMANIP" 2839826 NIL TRMANIP (NIL T T) -7 NIL NIL) (-1114 2834394 2834457 2834620 "TRIMAT" 2834885 NIL TRIMAT (NIL T T T T) -7 NIL NIL) (-1113 2832200 2832437 2832800 "TRIGMNIP" 2834143 NIL TRIGMNIP (NIL T T) -7 NIL NIL) (-1112 2831720 2831833 2831863 "TRIGCAT" 2832076 T TRIGCAT (NIL) -9 NIL NIL) (-1111 2831389 2831468 2831609 "TRIGCAT-" 2831614 NIL TRIGCAT- (NIL T) -8 NIL NIL) (-1110 2828288 2830249 2830529 "TREE" 2831144 NIL TREE (NIL T) -8 NIL NIL) (-1109 2827562 2828090 2828120 "TRANFUN" 2828155 T TRANFUN (NIL) -9 NIL 2828221) (-1108 2826841 2827032 2827312 "TRANFUN-" 2827317 NIL TRANFUN- (NIL T) -8 NIL NIL) (-1107 2826645 2826677 2826738 "TOPSP" 2826802 T TOPSP (NIL) -7 NIL NIL) (-1106 2825997 2826112 2826265 "TOOLSIGN" 2826526 NIL TOOLSIGN (NIL T) -7 NIL NIL) (-1105 2824658 2825174 2825413 "TEXTFILE" 2825780 T TEXTFILE (NIL) -8 NIL NIL) (-1104 2822523 2823037 2823475 "TEX" 2824242 T TEX (NIL) -8 NIL NIL) (-1103 2822304 2822335 2822407 "TEX1" 2822486 NIL TEX1 (NIL T) -7 NIL NIL) (-1102 2821952 2822015 2822105 "TEMUTL" 2822236 T TEMUTL (NIL) -7 NIL NIL) (-1101 2820106 2820386 2820711 "TBCMPPK" 2821675 NIL TBCMPPK (NIL T T) -7 NIL NIL) (-1100 2811995 2818267 2818323 "TBAGG" 2818723 NIL TBAGG (NIL T T) -9 NIL 2818934) (-1099 2807065 2808553 2810307 "TBAGG-" 2810312 NIL TBAGG- (NIL T T T) -8 NIL NIL) (-1098 2806449 2806556 2806701 "TANEXP" 2806954 NIL TANEXP (NIL T) -7 NIL NIL) (-1097 2799950 2806306 2806399 "TABLE" 2806404 NIL TABLE (NIL T T) -8 NIL NIL) (-1096 2799362 2799461 2799599 "TABLEAU" 2799847 NIL TABLEAU (NIL T) -8 NIL NIL) (-1095 2793970 2795190 2796438 "TABLBUMP" 2798148 NIL TABLBUMP (NIL T) -7 NIL NIL) (-1094 2793398 2793498 2793626 "SYSTEM" 2793864 T SYSTEM (NIL) -7 NIL NIL) (-1093 2789861 2790556 2791339 "SYSSOLP" 2792649 NIL SYSSOLP (NIL T) -7 NIL NIL) (-1092 2786152 2786860 2787594 "SYNTAX" 2789149 T SYNTAX (NIL) -8 NIL NIL) (-1091 2783286 2783894 2784532 "SYMTAB" 2785536 T SYMTAB (NIL) -8 NIL NIL) (-1090 2778535 2779437 2780420 "SYMS" 2782325 T SYMS (NIL) -8 NIL NIL) (-1089 2775768 2777995 2778224 "SYMPOLY" 2778340 NIL SYMPOLY (NIL T) -8 NIL NIL) (-1088 2775288 2775363 2775485 "SYMFUNC" 2775680 NIL SYMFUNC (NIL T) -7 NIL NIL) (-1087 2771265 2772525 2773347 "SYMBOL" 2774488 T SYMBOL (NIL) -8 NIL NIL) (-1086 2764804 2766493 2768213 "SWITCH" 2769567 T SWITCH (NIL) -8 NIL NIL) (-1085 2758034 2763631 2763933 "SUTS" 2764559 NIL SUTS (NIL T NIL NIL) -8 NIL NIL) (-1084 2749924 2757155 2757435 "SUPXS" 2757811 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL) (-1083 2741416 2749545 2749670 "SUP" 2749833 NIL SUP (NIL T) -8 NIL NIL) (-1082 2740575 2740702 2740919 "SUPFRACF" 2741284 NIL SUPFRACF (NIL T T T T) -7 NIL NIL) (-1081 2740200 2740259 2740370 "SUP2" 2740510 NIL SUP2 (NIL T T) -7 NIL NIL) (-1080 2738618 2738892 2739254 "SUMRF" 2739899 NIL SUMRF (NIL T) -7 NIL NIL) (-1079 2737935 2738001 2738199 "SUMFS" 2738539 NIL SUMFS (NIL T T) -7 NIL NIL) (-1078 2721871 2737116 2737366 "SULS" 2737742 NIL SULS (NIL T NIL NIL) -8 NIL NIL) (-1077 2721193 2721396 2721536 "SUCH" 2721779 NIL SUCH (NIL T T) -8 NIL NIL) (-1076 2715120 2716132 2717090 "SUBSPACE" 2720281 NIL SUBSPACE (NIL NIL T) -8 NIL NIL) (-1075 2714550 2714640 2714804 "SUBRESP" 2715008 NIL SUBRESP (NIL T T) -7 NIL NIL) (-1074 2707919 2709215 2710526 "STTF" 2713286 NIL STTF (NIL T) -7 NIL NIL) (-1073 2702092 2703212 2704359 "STTFNC" 2706819 NIL STTFNC (NIL T) -7 NIL NIL) (-1072 2693443 2695310 2697103 "STTAYLOR" 2700333 NIL STTAYLOR (NIL T) -7 NIL NIL) (-1071 2686687 2693307 2693390 "STRTBL" 2693395 NIL STRTBL (NIL T) -8 NIL NIL) (-1070 2682078 2686642 2686673 "STRING" 2686678 T STRING (NIL) -8 NIL NIL) (-1069 2676967 2681452 2681482 "STRICAT" 2681541 T STRICAT (NIL) -9 NIL 2681603) (-1068 2669683 2674490 2675110 "STREAM" 2676382 NIL STREAM (NIL T) -8 NIL NIL) (-1067 2669193 2669270 2669414 "STREAM3" 2669600 NIL STREAM3 (NIL T T T) -7 NIL NIL) (-1066 2668175 2668358 2668593 "STREAM2" 2669006 NIL STREAM2 (NIL T T) -7 NIL NIL) (-1065 2667863 2667915 2668008 "STREAM1" 2668117 NIL STREAM1 (NIL T) -7 NIL NIL) (-1064 2666879 2667060 2667291 "STINPROD" 2667679 NIL STINPROD (NIL T) -7 NIL NIL) (-1063 2666458 2666642 2666672 "STEP" 2666752 T STEP (NIL) -9 NIL 2666830) (-1062 2660001 2666357 2666434 "STBL" 2666439 NIL STBL (NIL T T NIL) -8 NIL NIL) (-1061 2655177 2659224 2659267 "STAGG" 2659420 NIL STAGG (NIL T) -9 NIL 2659509) (-1060 2652879 2653481 2654353 "STAGG-" 2654358 NIL STAGG- (NIL T T) -8 NIL NIL) (-1059 2651074 2652649 2652741 "STACK" 2652822 NIL STACK (NIL T) -8 NIL NIL) (-1058 2643805 2649221 2649676 "SREGSET" 2650704 NIL SREGSET (NIL T T T T) -8 NIL NIL) (-1057 2636245 2637613 2639125 "SRDCMPK" 2642411 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL) (-1056 2629213 2633686 2633716 "SRAGG" 2635019 T SRAGG (NIL) -9 NIL 2635627) (-1055 2628230 2628485 2628864 "SRAGG-" 2628869 NIL SRAGG- (NIL T) -8 NIL NIL) (-1054 2622679 2627149 2627576 "SQMATRIX" 2627849 NIL SQMATRIX (NIL NIL T) -8 NIL NIL) (-1053 2616431 2619399 2620125 "SPLTREE" 2622025 NIL SPLTREE (NIL T T) -8 NIL NIL) (-1052 2612421 2613087 2613733 "SPLNODE" 2615857 NIL SPLNODE (NIL T T) -8 NIL NIL) (-1051 2611468 2611701 2611731 "SPFCAT" 2612175 T SPFCAT (NIL) -9 NIL NIL) (-1050 2610205 2610415 2610679 "SPECOUT" 2611226 T SPECOUT (NIL) -7 NIL NIL) (-1049 2609966 2610006 2610075 "SPADPRSR" 2610158 T SPADPRSR (NIL) -7 NIL NIL) (-1048 2601989 2603736 2603778 "SPACEC" 2608101 NIL SPACEC (NIL T) -9 NIL 2609917) (-1047 2600160 2601922 2601970 "SPACE3" 2601975 NIL SPACE3 (NIL T) -8 NIL NIL) (-1046 2598912 2599083 2599374 "SORTPAK" 2599965 NIL SORTPAK (NIL T T) -7 NIL NIL) (-1045 2596968 2597271 2597689 "SOLVETRA" 2598576 NIL SOLVETRA (NIL T) -7 NIL NIL) (-1044 2595979 2596201 2596475 "SOLVESER" 2596741 NIL SOLVESER (NIL T) -7 NIL NIL) (-1043 2591199 2592080 2593082 "SOLVERAD" 2595031 NIL SOLVERAD (NIL T) -7 NIL NIL) (-1042 2587014 2587623 2588352 "SOLVEFOR" 2590566 NIL SOLVEFOR (NIL T T) -7 NIL NIL) (-1041 2581314 2586366 2586462 "SNTSCAT" 2586467 NIL SNTSCAT (NIL T T T T) -9 NIL 2586537) (-1040 2575418 2579645 2580035 "SMTS" 2581004 NIL SMTS (NIL T T T) -8 NIL NIL) (-1039 2569828 2575307 2575383 "SMP" 2575388 NIL SMP (NIL T T) -8 NIL NIL) (-1038 2567987 2568288 2568686 "SMITH" 2569525 NIL SMITH (NIL T T T T) -7 NIL NIL) (-1037 2560952 2565148 2565250 "SMATCAT" 2566590 NIL SMATCAT (NIL NIL T T T) -9 NIL 2567139) (-1036 2557893 2558716 2559893 "SMATCAT-" 2559898 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL) (-1035 2555607 2557130 2557173 "SKAGG" 2557434 NIL SKAGG (NIL T) -9 NIL 2557569) (-1034 2551665 2554711 2554989 "SINT" 2555351 T SINT (NIL) -8 NIL NIL) (-1033 2551437 2551475 2551541 "SIMPAN" 2551621 T SIMPAN (NIL) -7 NIL NIL) (-1032 2550275 2550496 2550771 "SIGNRF" 2551196 NIL SIGNRF (NIL T) -7 NIL NIL) (-1031 2549084 2549235 2549525 "SIGNEF" 2550104 NIL SIGNEF (NIL T T) -7 NIL NIL) (-1030 2546774 2547228 2547734 "SHP" 2548625 NIL SHP (NIL T NIL) -7 NIL NIL) (-1029 2540627 2546675 2546751 "SHDP" 2546756 NIL SHDP (NIL NIL NIL T) -8 NIL NIL) (-1028 2540117 2540309 2540339 "SGROUP" 2540491 T SGROUP (NIL) -9 NIL 2540578) (-1027 2539887 2539939 2540043 "SGROUP-" 2540048 NIL SGROUP- (NIL T) -8 NIL NIL) (-1026 2536723 2537420 2538143 "SGCF" 2539186 T SGCF (NIL) -7 NIL NIL) (-1025 2531122 2536174 2536270 "SFRTCAT" 2536275 NIL SFRTCAT (NIL T T T T) -9 NIL 2536313) (-1024 2524582 2525597 2526731 "SFRGCD" 2530105 NIL SFRGCD (NIL T T T T T) -7 NIL NIL) (-1023 2517748 2518819 2520003 "SFQCMPK" 2523515 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL) (-1022 2517370 2517459 2517569 "SFORT" 2517689 NIL SFORT (NIL T T) -8 NIL NIL) (-1021 2516515 2517210 2517331 "SEXOF" 2517336 NIL SEXOF (NIL T T T T T) -8 NIL NIL) (-1020 2515649 2516396 2516464 "SEX" 2516469 T SEX (NIL) -8 NIL NIL) (-1019 2510426 2511115 2511210 "SEXCAT" 2514981 NIL SEXCAT (NIL T T T T T) -9 NIL 2515600) (-1018 2507606 2510360 2510408 "SET" 2510413 NIL SET (NIL T) -8 NIL NIL) (-1017 2505857 2506319 2506624 "SETMN" 2507347 NIL SETMN (NIL NIL NIL) -8 NIL NIL) (-1016 2505465 2505591 2505621 "SETCAT" 2505738 T SETCAT (NIL) -9 NIL 2505822) (-1015 2505245 2505297 2505396 "SETCAT-" 2505401 NIL SETCAT- (NIL T) -8 NIL NIL) (-1014 2501633 2503707 2503750 "SETAGG" 2504620 NIL SETAGG (NIL T) -9 NIL 2504960) (-1013 2501091 2501207 2501444 "SETAGG-" 2501449 NIL SETAGG- (NIL T T) -8 NIL NIL) (-1012 2500295 2500588 2500649 "SEGXCAT" 2500935 NIL SEGXCAT (NIL T T) -9 NIL 2501055) (-1011 2499351 2499961 2500143 "SEG" 2500148 NIL SEG (NIL T) -8 NIL NIL) (-1010 2498258 2498471 2498514 "SEGCAT" 2499096 NIL SEGCAT (NIL T) -9 NIL 2499334) (-1009 2497307 2497637 2497837 "SEGBIND" 2498093 NIL SEGBIND (NIL T) -8 NIL NIL) (-1008 2496928 2496987 2497100 "SEGBIND2" 2497242 NIL SEGBIND2 (NIL T T) -7 NIL NIL) (-1007 2496147 2496273 2496477 "SEG2" 2496772 NIL SEG2 (NIL T T) -7 NIL NIL) (-1006 2495584 2496082 2496129 "SDVAR" 2496134 NIL SDVAR (NIL T) -8 NIL NIL) (-1005 2487836 2495357 2495485 "SDPOL" 2495490 NIL SDPOL (NIL T) -8 NIL NIL) (-1004 2486429 2486695 2487014 "SCPKG" 2487551 NIL SCPKG (NIL T) -7 NIL NIL) (-1003 2485566 2485745 2485945 "SCOPE" 2486251 T SCOPE (NIL) -8 NIL NIL) (-1002 2484787 2484920 2485099 "SCACHE" 2485421 NIL SCACHE (NIL T) -7 NIL NIL) (-1001 2484226 2484547 2484632 "SAOS" 2484724 T SAOS (NIL) -8 NIL NIL) (-1000 2483791 2483826 2483999 "SAERFFC" 2484185 NIL SAERFFC (NIL T T T) -7 NIL NIL) (-999 2477687 2483690 2483768 "SAE" 2483773 NIL SAE (NIL T T NIL) -8 NIL NIL) (-998 2477283 2477318 2477475 "SAEFACT" 2477646 NIL SAEFACT (NIL T T T) -7 NIL NIL) (-997 2475609 2475923 2476322 "RURPK" 2476949 NIL RURPK (NIL T NIL) -7 NIL NIL) (-996 2474262 2474539 2474846 "RULESET" 2475445 NIL RULESET (NIL T T T) -8 NIL NIL) (-995 2471470 2471973 2472434 "RULE" 2473944 NIL RULE (NIL T T T) -8 NIL NIL) (-994 2471112 2471267 2471348 "RULECOLD" 2471422 NIL RULECOLD (NIL NIL) -8 NIL NIL) (-993 2466004 2466798 2467714 "RSETGCD" 2470311 NIL RSETGCD (NIL T T T T T) -7 NIL NIL) (-992 2455319 2460371 2460465 "RSETCAT" 2464530 NIL RSETCAT (NIL T T T T) -9 NIL 2465627) (-991 2453250 2453789 2454609 "RSETCAT-" 2454614 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL) (-990 2445680 2447055 2448571 "RSDCMPK" 2451849 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL) (-989 2443698 2444139 2444211 "RRCC" 2445287 NIL RRCC (NIL T T) -9 NIL 2445631) (-988 2443052 2443226 2443502 "RRCC-" 2443507 NIL RRCC- (NIL T T T) -8 NIL NIL) (-987 2417419 2427044 2427108 "RPOLCAT" 2437610 NIL RPOLCAT (NIL T T T) -9 NIL 2440768) (-986 2408923 2411261 2414379 "RPOLCAT-" 2414384 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL) (-985 2399989 2407153 2407633 "ROUTINE" 2408463 T ROUTINE (NIL) -8 NIL NIL) (-984 2396694 2399545 2399692 "ROMAN" 2399862 T ROMAN (NIL) -8 NIL NIL) (-983 2394980 2395565 2395822 "ROIRC" 2396500 NIL ROIRC (NIL T T) -8 NIL NIL) (-982 2391385 2393689 2393717 "RNS" 2394013 T RNS (NIL) -9 NIL 2394283) (-981 2389899 2390282 2390813 "RNS-" 2390886 NIL RNS- (NIL T) -8 NIL NIL) (-980 2389325 2389733 2389761 "RNG" 2389766 T RNG (NIL) -9 NIL 2389787) (-979 2388723 2389085 2389125 "RMODULE" 2389185 NIL RMODULE (NIL T) -9 NIL 2389227) (-978 2387575 2387669 2387999 "RMCAT2" 2388624 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL) (-977 2384289 2386758 2387079 "RMATRIX" 2387310 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL) (-976 2377286 2379520 2379632 "RMATCAT" 2382941 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2383923) (-975 2376665 2376812 2377115 "RMATCAT-" 2377120 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL) (-974 2376235 2376310 2376436 "RINTERP" 2376584 NIL RINTERP (NIL NIL T) -7 NIL NIL) (-973 2375286 2375850 2375878 "RING" 2375988 T RING (NIL) -9 NIL 2376082) (-972 2375081 2375125 2375219 "RING-" 2375224 NIL RING- (NIL T) -8 NIL NIL) (-971 2373929 2374166 2374422 "RIDIST" 2374845 T RIDIST (NIL) -7 NIL NIL) (-970 2365251 2373403 2373606 "RGCHAIN" 2373778 NIL RGCHAIN (NIL T NIL) -8 NIL NIL) (-969 2362256 2362870 2363538 "RF" 2364615 NIL RF (NIL T) -7 NIL NIL) (-968 2361905 2361968 2362069 "RFFACTOR" 2362187 NIL RFFACTOR (NIL T) -7 NIL NIL) (-967 2361633 2361668 2361763 "RFFACT" 2361864 NIL RFFACT (NIL T) -7 NIL NIL) (-966 2359763 2360127 2360507 "RFDIST" 2361273 T RFDIST (NIL) -7 NIL NIL) (-965 2359221 2359313 2359473 "RETSOL" 2359665 NIL RETSOL (NIL T T) -7 NIL NIL) (-964 2358814 2358894 2358935 "RETRACT" 2359125 NIL RETRACT (NIL T) -9 NIL NIL) (-963 2358666 2358691 2358775 "RETRACT-" 2358780 NIL RETRACT- (NIL T T) -8 NIL NIL) (-962 2351524 2358323 2358448 "RESULT" 2358561 T RESULT (NIL) -8 NIL NIL) (-961 2350109 2350798 2350995 "RESRING" 2351427 NIL RESRING (NIL T T T T NIL) -8 NIL NIL) (-960 2349749 2349798 2349894 "RESLATC" 2350046 NIL RESLATC (NIL T) -7 NIL NIL) (-959 2349458 2349492 2349597 "REPSQ" 2349708 NIL REPSQ (NIL T) -7 NIL NIL) (-958 2346889 2347469 2348069 "REP" 2348878 T REP (NIL) -7 NIL NIL) (-957 2346590 2346624 2346733 "REPDB" 2346848 NIL REPDB (NIL T) -7 NIL NIL) (-956 2340535 2341914 2343134 "REP2" 2345402 NIL REP2 (NIL T) -7 NIL NIL) (-955 2336941 2337622 2338427 "REP1" 2339762 NIL REP1 (NIL T) -7 NIL NIL) (-954 2329687 2335102 2335554 "REGSET" 2336572 NIL REGSET (NIL T T T T) -8 NIL NIL) (-953 2328508 2328843 2329091 "REF" 2329472 NIL REF (NIL T) -8 NIL NIL) (-952 2327889 2327992 2328157 "REDORDER" 2328392 NIL REDORDER (NIL T T) -7 NIL NIL) (-951 2323858 2327123 2327344 "RECLOS" 2327720 NIL RECLOS (NIL T) -8 NIL NIL) (-950 2322915 2323096 2323309 "REALSOLV" 2323665 T REALSOLV (NIL) -7 NIL NIL) (-949 2322763 2322804 2322832 "REAL" 2322837 T REAL (NIL) -9 NIL 2322872) (-948 2319254 2320056 2320938 "REAL0Q" 2321928 NIL REAL0Q (NIL T) -7 NIL NIL) (-947 2314865 2315853 2316912 "REAL0" 2318235 NIL REAL0 (NIL T) -7 NIL NIL) (-946 2314273 2314345 2314550 "RDIV" 2314787 NIL RDIV (NIL T T T T T) -7 NIL NIL) (-945 2313346 2313520 2313731 "RDIST" 2314095 NIL RDIST (NIL T) -7 NIL NIL) (-944 2311950 2312237 2312606 "RDETRS" 2313054 NIL RDETRS (NIL T T) -7 NIL NIL) (-943 2309771 2310225 2310760 "RDETR" 2311492 NIL RDETR (NIL T T) -7 NIL NIL) (-942 2308387 2308665 2309066 "RDEEFS" 2309487 NIL RDEEFS (NIL T T) -7 NIL NIL) (-941 2306887 2307193 2307622 "RDEEF" 2308075 NIL RDEEF (NIL T T) -7 NIL NIL) (-940 2301172 2304104 2304132 "RCFIELD" 2305409 T RCFIELD (NIL) -9 NIL 2306139) (-939 2299241 2299745 2300438 "RCFIELD-" 2300511 NIL RCFIELD- (NIL T) -8 NIL NIL) (-938 2295573 2297358 2297399 "RCAGG" 2298470 NIL RCAGG (NIL T) -9 NIL 2298935) (-937 2295204 2295298 2295458 "RCAGG-" 2295463 NIL RCAGG- (NIL T T) -8 NIL NIL) (-936 2294548 2294660 2294822 "RATRET" 2295088 NIL RATRET (NIL T) -7 NIL NIL) (-935 2294105 2294172 2294291 "RATFACT" 2294476 NIL RATFACT (NIL T) -7 NIL NIL) (-934 2293420 2293540 2293690 "RANDSRC" 2293975 T RANDSRC (NIL) -7 NIL NIL) (-933 2293157 2293201 2293272 "RADUTIL" 2293369 T RADUTIL (NIL) -7 NIL NIL) (-932 2286164 2291900 2292217 "RADIX" 2292872 NIL RADIX (NIL NIL) -8 NIL NIL) (-931 2277734 2286008 2286136 "RADFF" 2286141 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL) (-930 2277386 2277461 2277489 "RADCAT" 2277646 T RADCAT (NIL) -9 NIL NIL) (-929 2277171 2277219 2277316 "RADCAT-" 2277321 NIL RADCAT- (NIL T) -8 NIL NIL) (-928 2275322 2276946 2277035 "QUEUE" 2277115 NIL QUEUE (NIL T) -8 NIL NIL) (-927 2271819 2275259 2275304 "QUAT" 2275309 NIL QUAT (NIL T) -8 NIL NIL) (-926 2271457 2271500 2271627 "QUATCT2" 2271770 NIL QUATCT2 (NIL T T T T) -7 NIL NIL) (-925 2265251 2268631 2268671 "QUATCAT" 2269450 NIL QUATCAT (NIL T) -9 NIL 2270215) (-924 2261395 2262432 2263819 "QUATCAT-" 2263913 NIL QUATCAT- (NIL T T) -8 NIL NIL) (-923 2258916 2260480 2260521 "QUAGG" 2260896 NIL QUAGG (NIL T) -9 NIL 2261071) (-922 2257841 2258314 2258486 "QFORM" 2258788 NIL QFORM (NIL NIL T) -8 NIL NIL) (-921 2249138 2254396 2254436 "QFCAT" 2255094 NIL QFCAT (NIL T) -9 NIL 2256087) (-920 2244710 2245911 2247502 "QFCAT-" 2247596 NIL QFCAT- (NIL T T) -8 NIL NIL) (-919 2244348 2244391 2244518 "QFCAT2" 2244661 NIL QFCAT2 (NIL T T T T) -7 NIL NIL) (-918 2243808 2243918 2244048 "QEQUAT" 2244238 T QEQUAT (NIL) -8 NIL NIL) (-917 2236994 2238065 2239247 "QCMPACK" 2242741 NIL QCMPACK (NIL T T T T T) -7 NIL NIL) (-916 2234570 2234991 2235419 "QALGSET" 2236649 NIL QALGSET (NIL T T T T) -8 NIL NIL) (-915 2233815 2233989 2234221 "QALGSET2" 2234390 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL) (-914 2232506 2232729 2233046 "PWFFINTB" 2233588 NIL PWFFINTB (NIL T T T T) -7 NIL NIL) (-913 2230694 2230862 2231215 "PUSHVAR" 2232320 NIL PUSHVAR (NIL T T T T) -7 NIL NIL) (-912 2226612 2227666 2227707 "PTRANFN" 2229591 NIL PTRANFN (NIL T) -9 NIL NIL) (-911 2225024 2225315 2225636 "PTPACK" 2226323 NIL PTPACK (NIL T) -7 NIL NIL) (-910 2224660 2224717 2224824 "PTFUNC2" 2224961 NIL PTFUNC2 (NIL T T) -7 NIL NIL) (-909 2219137 2223478 2223518 "PTCAT" 2223886 NIL PTCAT (NIL T) -9 NIL 2224048) (-908 2218795 2218830 2218954 "PSQFR" 2219096 NIL PSQFR (NIL T T T T) -7 NIL NIL) (-907 2217390 2217688 2218022 "PSEUDLIN" 2218493 NIL PSEUDLIN (NIL T) -7 NIL NIL) (-906 2204198 2206562 2208885 "PSETPK" 2215150 NIL PSETPK (NIL T T T T) -7 NIL NIL) (-905 2197285 2199999 2200093 "PSETCAT" 2203074 NIL PSETCAT (NIL T T T T) -9 NIL 2203888) (-904 2195123 2195757 2196576 "PSETCAT-" 2196581 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL) (-903 2194472 2194637 2194665 "PSCURVE" 2194933 T PSCURVE (NIL) -9 NIL 2195100) (-902 2190924 2192450 2192514 "PSCAT" 2193350 NIL PSCAT (NIL T T T) -9 NIL 2193590) (-901 2189988 2190204 2190603 "PSCAT-" 2190608 NIL PSCAT- (NIL T T T T) -8 NIL NIL) (-900 2188640 2189273 2189487 "PRTITION" 2189794 T PRTITION (NIL) -8 NIL NIL) (-899 2177738 2179944 2182132 "PRS" 2186502 NIL PRS (NIL T T) -7 NIL NIL) (-898 2175597 2177089 2177129 "PRQAGG" 2177312 NIL PRQAGG (NIL T) -9 NIL 2177414) (-897 2175168 2175270 2175298 "PROPLOG" 2175483 T PROPLOG (NIL) -9 NIL NIL) (-896 2172291 2172856 2173383 "PROPFRML" 2174673 NIL PROPFRML (NIL T) -8 NIL NIL) (-895 2171751 2171861 2171991 "PROPERTY" 2172181 T PROPERTY (NIL) -8 NIL NIL) (-894 2165525 2169917 2170737 "PRODUCT" 2170977 NIL PRODUCT (NIL T T) -8 NIL NIL) (-893 2162801 2164985 2165218 "PR" 2165336 NIL PR (NIL T T) -8 NIL NIL) (-892 2162597 2162629 2162688 "PRINT" 2162762 T PRINT (NIL) -7 NIL NIL) (-891 2161937 2162054 2162206 "PRIMES" 2162477 NIL PRIMES (NIL T) -7 NIL NIL) (-890 2160002 2160403 2160869 "PRIMELT" 2161516 NIL PRIMELT (NIL T) -7 NIL NIL) (-889 2159731 2159780 2159808 "PRIMCAT" 2159932 T PRIMCAT (NIL) -9 NIL NIL) (-888 2155892 2159669 2159714 "PRIMARR" 2159719 NIL PRIMARR (NIL T) -8 NIL NIL) (-887 2154899 2155077 2155305 "PRIMARR2" 2155710 NIL PRIMARR2 (NIL T T) -7 NIL NIL) (-886 2154542 2154598 2154709 "PREASSOC" 2154837 NIL PREASSOC (NIL T T) -7 NIL NIL) (-885 2154017 2154150 2154178 "PPCURVE" 2154383 T PPCURVE (NIL) -9 NIL 2154519) (-884 2151376 2151775 2152367 "POLYROOT" 2153598 NIL POLYROOT (NIL T T T T T) -7 NIL NIL) (-883 2145282 2150982 2151141 "POLY" 2151249 NIL POLY (NIL T) -8 NIL NIL) (-882 2144667 2144725 2144958 "POLYLIFT" 2145218 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL) (-881 2140952 2141401 2142029 "POLYCATQ" 2144212 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL) (-880 2127993 2133390 2133454 "POLYCAT" 2136939 NIL POLYCAT (NIL T T T) -9 NIL 2138866) (-879 2121444 2123305 2125688 "POLYCAT-" 2125693 NIL POLYCAT- (NIL T T T T) -8 NIL NIL) (-878 2121033 2121101 2121220 "POLY2UP" 2121370 NIL POLY2UP (NIL NIL T) -7 NIL NIL) (-877 2120669 2120726 2120833 "POLY2" 2120970 NIL POLY2 (NIL T T) -7 NIL NIL) (-876 2119354 2119593 2119869 "POLUTIL" 2120443 NIL POLUTIL (NIL T T) -7 NIL NIL) (-875 2117716 2117993 2118323 "POLTOPOL" 2119076 NIL POLTOPOL (NIL NIL T) -7 NIL NIL) (-874 2113239 2117653 2117698 "POINT" 2117703 NIL POINT (NIL T) -8 NIL NIL) (-873 2111426 2111783 2112158 "PNTHEORY" 2112884 T PNTHEORY (NIL) -7 NIL NIL) (-872 2109854 2110151 2110560 "PMTOOLS" 2111124 NIL PMTOOLS (NIL T T T) -7 NIL NIL) (-871 2109447 2109525 2109642 "PMSYM" 2109770 NIL PMSYM (NIL T) -7 NIL NIL) (-870 2108957 2109026 2109200 "PMQFCAT" 2109372 NIL PMQFCAT (NIL T T T) -7 NIL NIL) (-869 2108312 2108422 2108578 "PMPRED" 2108834 NIL PMPRED (NIL T) -7 NIL NIL) (-868 2107708 2107794 2107955 "PMPREDFS" 2108213 NIL PMPREDFS (NIL T T T) -7 NIL NIL) (-867 2106354 2106562 2106946 "PMPLCAT" 2107470 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL) (-866 2105886 2105965 2106117 "PMLSAGG" 2106269 NIL PMLSAGG (NIL T T T) -7 NIL NIL) (-865 2105363 2105439 2105619 "PMKERNEL" 2105804 NIL PMKERNEL (NIL T T) -7 NIL NIL) (-864 2104980 2105055 2105168 "PMINS" 2105282 NIL PMINS (NIL T) -7 NIL NIL) (-863 2104410 2104479 2104694 "PMFS" 2104905 NIL PMFS (NIL T T T) -7 NIL NIL) (-862 2103641 2103759 2103963 "PMDOWN" 2104287 NIL PMDOWN (NIL T T T) -7 NIL NIL) (-861 2102804 2102963 2103145 "PMASS" 2103479 T PMASS (NIL) -7 NIL NIL) (-860 2102078 2102189 2102352 "PMASSFS" 2102690 NIL PMASSFS (NIL T T) -7 NIL NIL) (-859 2101733 2101801 2101895 "PLOTTOOL" 2102004 T PLOTTOOL (NIL) -7 NIL NIL) (-858 2096355 2097544 2098692 "PLOT" 2100605 T PLOT (NIL) -8 NIL NIL) (-857 2092169 2093203 2094124 "PLOT3D" 2095454 T PLOT3D (NIL) -8 NIL NIL) (-856 2091081 2091258 2091493 "PLOT1" 2091973 NIL PLOT1 (NIL T) -7 NIL NIL) (-855 2066475 2071147 2075998 "PLEQN" 2086347 NIL PLEQN (NIL T T T T) -7 NIL NIL) (-854 2065793 2065915 2066095 "PINTERP" 2066340 NIL PINTERP (NIL NIL T) -7 NIL NIL) (-853 2065486 2065533 2065636 "PINTERPA" 2065740 NIL PINTERPA (NIL T T) -7 NIL NIL) (-852 2064713 2065280 2065373 "PI" 2065413 T PI (NIL) -8 NIL NIL) (-851 2063105 2064090 2064118 "PID" 2064300 T PID (NIL) -9 NIL 2064434) (-850 2062830 2062867 2062955 "PICOERCE" 2063062 NIL PICOERCE (NIL T) -7 NIL NIL) (-849 2062150 2062289 2062465 "PGROEB" 2062686 NIL PGROEB (NIL T) -7 NIL NIL) (-848 2057737 2058551 2059456 "PGE" 2061265 T PGE (NIL) -7 NIL NIL) (-847 2055861 2056107 2056473 "PGCD" 2057454 NIL PGCD (NIL T T T T) -7 NIL NIL) (-846 2055199 2055302 2055463 "PFRPAC" 2055745 NIL PFRPAC (NIL T) -7 NIL NIL) (-845 2051814 2053747 2054100 "PFR" 2054878 NIL PFR (NIL T) -8 NIL NIL) (-844 2050203 2050447 2050772 "PFOTOOLS" 2051561 NIL PFOTOOLS (NIL T T) -7 NIL NIL) (-843 2048736 2048975 2049326 "PFOQ" 2049960 NIL PFOQ (NIL T T T) -7 NIL NIL) (-842 2047213 2047425 2047787 "PFO" 2048520 NIL PFO (NIL T T T T T) -7 NIL NIL) (-841 2043736 2047102 2047171 "PF" 2047176 NIL PF (NIL NIL) -8 NIL NIL) (-840 2041165 2042446 2042474 "PFECAT" 2043059 T PFECAT (NIL) -9 NIL 2043443) (-839 2040610 2040764 2040978 "PFECAT-" 2040983 NIL PFECAT- (NIL T) -8 NIL NIL) (-838 2039214 2039465 2039766 "PFBRU" 2040359 NIL PFBRU (NIL T T) -7 NIL NIL) (-837 2037081 2037432 2037864 "PFBR" 2038865 NIL PFBR (NIL T T T T) -7 NIL NIL) (-836 2032933 2034457 2035133 "PERM" 2036438 NIL PERM (NIL T) -8 NIL NIL) (-835 2028198 2029140 2030010 "PERMGRP" 2032096 NIL PERMGRP (NIL T) -8 NIL NIL) (-834 2026269 2027262 2027303 "PERMCAT" 2027749 NIL PERMCAT (NIL T) -9 NIL 2028054) (-833 2025924 2025965 2026088 "PERMAN" 2026222 NIL PERMAN (NIL NIL T) -7 NIL NIL) (-832 2023364 2025493 2025624 "PENDTREE" 2025826 NIL PENDTREE (NIL T) -8 NIL NIL) (-831 2021437 2022215 2022256 "PDRING" 2022913 NIL PDRING (NIL T) -9 NIL 2023198) (-830 2020540 2020758 2021120 "PDRING-" 2021125 NIL PDRING- (NIL T T) -8 NIL NIL) (-829 2017681 2018432 2019123 "PDEPROB" 2019869 T PDEPROB (NIL) -8 NIL NIL) (-828 2015252 2015748 2016297 "PDEPACK" 2017152 T PDEPACK (NIL) -7 NIL NIL) (-827 2014164 2014354 2014605 "PDECOMP" 2015051 NIL PDECOMP (NIL T T) -7 NIL NIL) (-826 2011776 2012591 2012619 "PDECAT" 2013404 T PDECAT (NIL) -9 NIL 2014115) (-825 2011529 2011562 2011651 "PCOMP" 2011737 NIL PCOMP (NIL T T) -7 NIL NIL) (-824 2009736 2010332 2010628 "PBWLB" 2011259 NIL PBWLB (NIL T) -8 NIL NIL) (-823 2002244 2003813 2005149 "PATTERN" 2008421 NIL PATTERN (NIL T) -8 NIL NIL) (-822 2001876 2001933 2002042 "PATTERN2" 2002181 NIL PATTERN2 (NIL T T) -7 NIL NIL) (-821 1999633 2000021 2000478 "PATTERN1" 2001465 NIL PATTERN1 (NIL T T) -7 NIL NIL) (-820 1997028 1997582 1998063 "PATRES" 1999198 NIL PATRES (NIL T T) -8 NIL NIL) (-819 1996592 1996659 1996791 "PATRES2" 1996955 NIL PATRES2 (NIL T T T) -7 NIL NIL) (-818 1994489 1994889 1995294 "PATMATCH" 1996261 NIL PATMATCH (NIL T T T) -7 NIL NIL) (-817 1994026 1994209 1994250 "PATMAB" 1994357 NIL PATMAB (NIL T) -9 NIL 1994440) (-816 1992571 1992880 1993138 "PATLRES" 1993831 NIL PATLRES (NIL T T T) -8 NIL NIL) (-815 1992117 1992240 1992281 "PATAB" 1992286 NIL PATAB (NIL T) -9 NIL 1992458) (-814 1989598 1990130 1990703 "PARTPERM" 1991564 T PARTPERM (NIL) -7 NIL NIL) (-813 1989219 1989282 1989384 "PARSURF" 1989529 NIL PARSURF (NIL T) -8 NIL NIL) (-812 1988851 1988908 1989017 "PARSU2" 1989156 NIL PARSU2 (NIL T T) -7 NIL NIL) (-811 1988615 1988655 1988722 "PARSER" 1988804 T PARSER (NIL) -7 NIL NIL) (-810 1988236 1988299 1988401 "PARSCURV" 1988546 NIL PARSCURV (NIL T) -8 NIL NIL) (-809 1987868 1987925 1988034 "PARSC2" 1988173 NIL PARSC2 (NIL T T) -7 NIL NIL) (-808 1987507 1987565 1987662 "PARPCURV" 1987804 NIL PARPCURV (NIL T) -8 NIL NIL) (-807 1987139 1987196 1987305 "PARPC2" 1987444 NIL PARPC2 (NIL T T) -7 NIL NIL) (-806 1986659 1986745 1986864 "PAN2EXPR" 1987040 T PAN2EXPR (NIL) -7 NIL NIL) (-805 1985465 1985780 1986008 "PALETTE" 1986451 T PALETTE (NIL) -8 NIL NIL) (-804 1983933 1984470 1984830 "PAIR" 1985151 NIL PAIR (NIL T T) -8 NIL NIL) (-803 1977783 1983192 1983386 "PADICRC" 1983788 NIL PADICRC (NIL NIL T) -8 NIL NIL) (-802 1970991 1977129 1977313 "PADICRAT" 1977631 NIL PADICRAT (NIL NIL) -8 NIL NIL) (-801 1969295 1970928 1970973 "PADIC" 1970978 NIL PADIC (NIL NIL) -8 NIL NIL) (-800 1966500 1968074 1968114 "PADICCT" 1968695 NIL PADICCT (NIL NIL) -9 NIL 1968977) (-799 1965457 1965657 1965925 "PADEPAC" 1966287 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL) (-798 1964669 1964802 1965008 "PADE" 1965319 NIL PADE (NIL T T T) -7 NIL NIL) (-797 1962680 1963512 1963827 "OWP" 1964437 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL) (-796 1961789 1962285 1962457 "OVAR" 1962548 NIL OVAR (NIL NIL) -8 NIL NIL) (-795 1961053 1961174 1961335 "OUT" 1961648 T OUT (NIL) -7 NIL NIL) (-794 1950107 1952278 1954448 "OUTFORM" 1958903 T OUTFORM (NIL) -8 NIL NIL) (-793 1949515 1949836 1949925 "OSI" 1950038 T OSI (NIL) -8 NIL NIL) (-792 1948260 1948487 1948772 "ORTHPOL" 1949262 NIL ORTHPOL (NIL T) -7 NIL NIL) (-791 1945631 1947921 1948059 "OREUP" 1948203 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL) (-790 1943027 1945324 1945450 "ORESUP" 1945573 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL) (-789 1940562 1941062 1941622 "OREPCTO" 1942516 NIL OREPCTO (NIL T T) -7 NIL NIL) (-788 1934472 1936678 1936718 "OREPCAT" 1939039 NIL OREPCAT (NIL T) -9 NIL 1940142) (-787 1931620 1932402 1933459 "OREPCAT-" 1933464 NIL OREPCAT- (NIL T T) -8 NIL NIL) (-786 1930798 1931070 1931098 "ORDSET" 1931407 T ORDSET (NIL) -9 NIL 1931571) (-785 1930317 1930439 1930632 "ORDSET-" 1930637 NIL ORDSET- (NIL T) -8 NIL NIL) (-784 1928931 1929732 1929760 "ORDRING" 1929962 T ORDRING (NIL) -9 NIL 1930086) (-783 1928576 1928670 1928814 "ORDRING-" 1928819 NIL ORDRING- (NIL T) -8 NIL NIL) (-782 1927952 1928433 1928461 "ORDMON" 1928466 T ORDMON (NIL) -9 NIL 1928487) (-781 1927114 1927261 1927456 "ORDFUNS" 1927801 NIL ORDFUNS (NIL NIL T) -7 NIL NIL) (-780 1926626 1926985 1927013 "ORDFIN" 1927018 T ORDFIN (NIL) -9 NIL 1927039) (-779 1923138 1925212 1925621 "ORDCOMP" 1926250 NIL ORDCOMP (NIL T) -8 NIL NIL) (-778 1922404 1922531 1922717 "ORDCOMP2" 1922998 NIL ORDCOMP2 (NIL T T) -7 NIL NIL) (-777 1918911 1919794 1920631 "OPTPROB" 1921587 T OPTPROB (NIL) -8 NIL NIL) (-776 1915753 1916382 1917076 "OPTPACK" 1918237 T OPTPACK (NIL) -7 NIL NIL) (-775 1913479 1914215 1914243 "OPTCAT" 1915058 T OPTCAT (NIL) -9 NIL 1915704) (-774 1913247 1913286 1913352 "OPQUERY" 1913433 T OPQUERY (NIL) -7 NIL NIL) (-773 1910383 1911574 1912074 "OP" 1912779 NIL OP (NIL T) -8 NIL NIL) (-772 1907148 1909180 1909549 "ONECOMP" 1910047 NIL ONECOMP (NIL T) -8 NIL NIL) (-771 1906453 1906568 1906742 "ONECOMP2" 1907020 NIL ONECOMP2 (NIL T T) -7 NIL NIL) (-770 1905872 1905978 1906108 "OMSERVER" 1906343 T OMSERVER (NIL) -7 NIL NIL) (-769 1902761 1905313 1905353 "OMSAGG" 1905414 NIL OMSAGG (NIL T) -9 NIL 1905478) (-768 1901384 1901647 1901929 "OMPKG" 1902499 T OMPKG (NIL) -7 NIL NIL) (-767 1900814 1900917 1900945 "OM" 1901244 T OM (NIL) -9 NIL NIL) (-766 1899353 1900366 1900534 "OMLO" 1900695 NIL OMLO (NIL T T) -8 NIL NIL) (-765 1898283 1898430 1898656 "OMEXPR" 1899179 NIL OMEXPR (NIL T) -7 NIL NIL) (-764 1897601 1897829 1897965 "OMERR" 1898167 T OMERR (NIL) -8 NIL NIL) (-763 1896779 1897022 1897182 "OMERRK" 1897461 T OMERRK (NIL) -8 NIL NIL) (-762 1896257 1896456 1896564 "OMENC" 1896691 T OMENC (NIL) -8 NIL NIL) (-761 1890152 1891337 1892508 "OMDEV" 1895106 T OMDEV (NIL) -8 NIL NIL) (-760 1889221 1889392 1889586 "OMCONN" 1889978 T OMCONN (NIL) -8 NIL NIL) (-759 1887837 1888823 1888851 "OINTDOM" 1888856 T OINTDOM (NIL) -9 NIL 1888877) (-758 1883599 1884829 1885544 "OFMONOID" 1887154 NIL OFMONOID (NIL T) -8 NIL NIL) (-757 1883037 1883536 1883581 "ODVAR" 1883586 NIL ODVAR (NIL T) -8 NIL NIL) (-756 1880162 1882534 1882719 "ODR" 1882912 NIL ODR (NIL T T NIL) -8 NIL NIL) (-755 1872468 1879941 1880065 "ODPOL" 1880070 NIL ODPOL (NIL T) -8 NIL NIL) (-754 1866291 1872340 1872445 "ODP" 1872450 NIL ODP (NIL NIL T NIL) -8 NIL NIL) (-753 1865057 1865272 1865547 "ODETOOLS" 1866065 NIL ODETOOLS (NIL T T) -7 NIL NIL) (-752 1862026 1862682 1863398 "ODESYS" 1864390 NIL ODESYS (NIL T T) -7 NIL NIL) (-751 1856930 1857838 1858861 "ODERTRIC" 1861101 NIL ODERTRIC (NIL T T) -7 NIL NIL) (-750 1856356 1856438 1856632 "ODERED" 1856842 NIL ODERED (NIL T T T T T) -7 NIL NIL) (-749 1853258 1853806 1854481 "ODERAT" 1855779 NIL ODERAT (NIL T T) -7 NIL NIL) (-748 1850226 1850690 1851286 "ODEPRRIC" 1852787 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL) (-747 1848095 1848664 1849173 "ODEPROB" 1849737 T ODEPROB (NIL) -8 NIL NIL) (-746 1844627 1845110 1845756 "ODEPRIM" 1847574 NIL ODEPRIM (NIL T T T T) -7 NIL NIL) (-745 1843880 1843982 1844240 "ODEPAL" 1844519 NIL ODEPAL (NIL T T T T) -7 NIL NIL) (-744 1840082 1840863 1841717 "ODEPACK" 1843046 T ODEPACK (NIL) -7 NIL NIL) (-743 1839119 1839226 1839454 "ODEINT" 1839971 NIL ODEINT (NIL T T) -7 NIL NIL) (-742 1833220 1834645 1836092 "ODEIFTBL" 1837692 T ODEIFTBL (NIL) -8 NIL NIL) (-741 1828564 1829350 1830308 "ODEEF" 1832379 NIL ODEEF (NIL T T) -7 NIL NIL) (-740 1827901 1827990 1828219 "ODECONST" 1828469 NIL ODECONST (NIL T T T) -7 NIL NIL) (-739 1826059 1826692 1826720 "ODECAT" 1827323 T ODECAT (NIL) -9 NIL 1827852) (-738 1822931 1825771 1825890 "OCT" 1825972 NIL OCT (NIL T) -8 NIL NIL) (-737 1822569 1822612 1822739 "OCTCT2" 1822882 NIL OCTCT2 (NIL T T T T) -7 NIL NIL) (-736 1817403 1819841 1819881 "OC" 1820977 NIL OC (NIL T) -9 NIL 1821834) (-735 1814630 1815378 1816368 "OC-" 1816462 NIL OC- (NIL T T) -8 NIL NIL) (-734 1814009 1814451 1814479 "OCAMON" 1814484 T OCAMON (NIL) -9 NIL 1814505) (-733 1813463 1813870 1813898 "OASGP" 1813903 T OASGP (NIL) -9 NIL 1813923) (-732 1812751 1813214 1813242 "OAMONS" 1813282 T OAMONS (NIL) -9 NIL 1813325) (-731 1812192 1812599 1812627 "OAMON" 1812632 T OAMON (NIL) -9 NIL 1812652) (-730 1811497 1811989 1812017 "OAGROUP" 1812022 T OAGROUP (NIL) -9 NIL 1812042) (-729 1811187 1811237 1811325 "NUMTUBE" 1811441 NIL NUMTUBE (NIL T) -7 NIL NIL) (-728 1804760 1806278 1807814 "NUMQUAD" 1809671 T NUMQUAD (NIL) -7 NIL NIL) (-727 1800516 1801504 1802529 "NUMODE" 1803755 T NUMODE (NIL) -7 NIL NIL) (-726 1797920 1798766 1798794 "NUMINT" 1799711 T NUMINT (NIL) -9 NIL 1800467) (-725 1796868 1797065 1797283 "NUMFMT" 1797722 T NUMFMT (NIL) -7 NIL NIL) (-724 1783250 1786184 1788714 "NUMERIC" 1794377 NIL NUMERIC (NIL T) -7 NIL NIL) (-723 1777651 1782703 1782797 "NTSCAT" 1782802 NIL NTSCAT (NIL T T T T) -9 NIL 1782840) (-722 1776845 1777010 1777203 "NTPOLFN" 1777490 NIL NTPOLFN (NIL T) -7 NIL NIL) (-721 1764661 1773687 1774497 "NSUP" 1776067 NIL NSUP (NIL T) -8 NIL NIL) (-720 1764297 1764354 1764461 "NSUP2" 1764598 NIL NSUP2 (NIL T T) -7 NIL NIL) (-719 1754259 1764076 1764206 "NSMP" 1764211 NIL NSMP (NIL T T) -8 NIL NIL) (-718 1752691 1752992 1753349 "NREP" 1753947 NIL NREP (NIL T) -7 NIL NIL) (-717 1751282 1751534 1751892 "NPCOEF" 1752434 NIL NPCOEF (NIL T T T T T) -7 NIL NIL) (-716 1750348 1750463 1750679 "NORMRETR" 1751163 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL) (-715 1748401 1748691 1749098 "NORMPK" 1750056 NIL NORMPK (NIL T T T T T) -7 NIL NIL) (-714 1748086 1748114 1748238 "NORMMA" 1748367 NIL NORMMA (NIL T T T T) -7 NIL NIL) (-713 1747913 1748043 1748072 "NONE" 1748077 T NONE (NIL) -8 NIL NIL) (-712 1747702 1747731 1747800 "NONE1" 1747877 NIL NONE1 (NIL T) -7 NIL NIL) (-711 1747187 1747249 1747434 "NODE1" 1747634 NIL NODE1 (NIL T T) -7 NIL NIL) (-710 1745480 1746350 1746605 "NNI" 1746952 T NNI (NIL) -8 NIL NIL) (-709 1743900 1744213 1744577 "NLINSOL" 1745148 NIL NLINSOL (NIL T) -7 NIL NIL) (-708 1740067 1741035 1741957 "NIPROB" 1742998 T NIPROB (NIL) -8 NIL NIL) (-707 1738824 1739058 1739360 "NFINTBAS" 1739829 NIL NFINTBAS (NIL T T) -7 NIL NIL) (-706 1737532 1737763 1738044 "NCODIV" 1738592 NIL NCODIV (NIL T T) -7 NIL NIL) (-705 1737294 1737331 1737406 "NCNTFRAC" 1737489 NIL NCNTFRAC (NIL T) -7 NIL NIL) (-704 1735474 1735838 1736258 "NCEP" 1736919 NIL NCEP (NIL T) -7 NIL NIL) (-703 1734386 1735125 1735153 "NASRING" 1735263 T NASRING (NIL) -9 NIL 1735337) (-702 1734181 1734225 1734319 "NASRING-" 1734324 NIL NASRING- (NIL T) -8 NIL NIL) (-701 1733335 1733834 1733862 "NARNG" 1733979 T NARNG (NIL) -9 NIL 1734070) (-700 1733027 1733094 1733228 "NARNG-" 1733233 NIL NARNG- (NIL T) -8 NIL NIL) (-699 1731906 1732113 1732348 "NAGSP" 1732812 T NAGSP (NIL) -7 NIL NIL) (-698 1723330 1724976 1726611 "NAGS" 1730291 T NAGS (NIL) -7 NIL NIL) (-697 1721894 1722198 1722525 "NAGF07" 1723023 T NAGF07 (NIL) -7 NIL NIL) (-696 1716476 1717756 1719052 "NAGF04" 1720618 T NAGF04 (NIL) -7 NIL NIL) (-695 1709508 1711106 1712723 "NAGF02" 1714879 T NAGF02 (NIL) -7 NIL NIL) (-694 1704772 1705862 1706969 "NAGF01" 1708421 T NAGF01 (NIL) -7 NIL NIL) (-693 1698432 1699990 1701567 "NAGE04" 1703215 T NAGE04 (NIL) -7 NIL NIL) (-692 1689673 1691776 1693888 "NAGE02" 1696340 T NAGE02 (NIL) -7 NIL NIL) (-691 1685666 1686603 1687557 "NAGE01" 1688739 T NAGE01 (NIL) -7 NIL NIL) (-690 1683473 1684004 1684559 "NAGD03" 1685131 T NAGD03 (NIL) -7 NIL NIL) (-689 1675259 1677178 1679123 "NAGD02" 1681548 T NAGD02 (NIL) -7 NIL NIL) (-688 1669118 1670531 1671959 "NAGD01" 1673851 T NAGD01 (NIL) -7 NIL NIL) (-687 1665375 1666185 1667010 "NAGC06" 1668313 T NAGC06 (NIL) -7 NIL NIL) (-686 1663852 1664181 1664534 "NAGC05" 1665042 T NAGC05 (NIL) -7 NIL NIL) (-685 1663236 1663353 1663495 "NAGC02" 1663730 T NAGC02 (NIL) -7 NIL NIL) (-684 1662298 1662855 1662895 "NAALG" 1662974 NIL NAALG (NIL T) -9 NIL 1663035) (-683 1662133 1662162 1662252 "NAALG-" 1662257 NIL NAALG- (NIL T T) -8 NIL NIL) (-682 1656083 1657191 1658378 "MULTSQFR" 1661029 NIL MULTSQFR (NIL T T T T) -7 NIL NIL) (-681 1655402 1655477 1655661 "MULTFACT" 1655995 NIL MULTFACT (NIL T T T T) -7 NIL NIL) (-680 1648596 1652507 1652559 "MTSCAT" 1653619 NIL MTSCAT (NIL T T) -9 NIL 1654133) (-679 1648308 1648362 1648454 "MTHING" 1648536 NIL MTHING (NIL T) -7 NIL NIL) (-678 1648100 1648133 1648193 "MSYSCMD" 1648268 T MSYSCMD (NIL) -7 NIL NIL) (-677 1644212 1646855 1647175 "MSET" 1647813 NIL MSET (NIL T) -8 NIL NIL) (-676 1641308 1643774 1643815 "MSETAGG" 1643820 NIL MSETAGG (NIL T) -9 NIL 1643854) (-675 1637164 1638706 1639447 "MRING" 1640611 NIL MRING (NIL T T) -8 NIL NIL) (-674 1636734 1636801 1636930 "MRF2" 1637091 NIL MRF2 (NIL T T T) -7 NIL NIL) (-673 1636352 1636387 1636531 "MRATFAC" 1636693 NIL MRATFAC (NIL T T T T) -7 NIL NIL) (-672 1633964 1634259 1634690 "MPRFF" 1636057 NIL MPRFF (NIL T T T T) -7 NIL NIL) (-671 1627984 1633819 1633915 "MPOLY" 1633920 NIL MPOLY (NIL NIL T) -8 NIL NIL) (-670 1627474 1627509 1627717 "MPCPF" 1627943 NIL MPCPF (NIL T T T T) -7 NIL NIL) (-669 1626990 1627033 1627216 "MPC3" 1627425 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL) (-668 1626191 1626272 1626491 "MPC2" 1626905 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL) (-667 1624492 1624829 1625219 "MONOTOOL" 1625851 NIL MONOTOOL (NIL T T) -7 NIL NIL) (-666 1623617 1623952 1623980 "MONOID" 1624257 T MONOID (NIL) -9 NIL 1624429) (-665 1622995 1623158 1623401 "MONOID-" 1623406 NIL MONOID- (NIL T) -8 NIL NIL) (-664 1613976 1619962 1620021 "MONOGEN" 1620695 NIL MONOGEN (NIL T T) -9 NIL 1621151) (-663 1611194 1611929 1612929 "MONOGEN-" 1613048 NIL MONOGEN- (NIL T T T) -8 NIL NIL) (-662 1610054 1610474 1610502 "MONADWU" 1610894 T MONADWU (NIL) -9 NIL 1611132) (-661 1609426 1609585 1609833 "MONADWU-" 1609838 NIL MONADWU- (NIL T) -8 NIL NIL) (-660 1608812 1609030 1609058 "MONAD" 1609265 T MONAD (NIL) -9 NIL 1609377) (-659 1608497 1608575 1608707 "MONAD-" 1608712 NIL MONAD- (NIL T) -8 NIL NIL) (-658 1606748 1607410 1607689 "MOEBIUS" 1608250 NIL MOEBIUS (NIL T) -8 NIL NIL) (-657 1606142 1606520 1606560 "MODULE" 1606565 NIL MODULE (NIL T) -9 NIL 1606591) (-656 1605710 1605806 1605996 "MODULE-" 1606001 NIL MODULE- (NIL T T) -8 NIL NIL) (-655 1603381 1604076 1604402 "MODRING" 1605535 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL) (-654 1600337 1601502 1602019 "MODOP" 1602913 NIL MODOP (NIL T T) -8 NIL NIL) (-653 1598524 1598976 1599317 "MODMONOM" 1600136 NIL MODMONOM (NIL T T NIL) -8 NIL NIL) (-652 1588203 1596728 1597150 "MODMON" 1598152 NIL MODMON (NIL T T) -8 NIL NIL) (-651 1585329 1587047 1587323 "MODFIELD" 1588078 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL) (-650 1584333 1584610 1584800 "MMLFORM" 1585159 T MMLFORM (NIL) -8 NIL NIL) (-649 1583859 1583902 1584081 "MMAP" 1584284 NIL MMAP (NIL T T T T T T) -7 NIL NIL) (-648 1582096 1582873 1582913 "MLO" 1583330 NIL MLO (NIL T) -9 NIL 1583571) (-647 1579463 1579978 1580580 "MLIFT" 1581577 NIL MLIFT (NIL T T T T) -7 NIL NIL) (-646 1578854 1578938 1579092 "MKUCFUNC" 1579374 NIL MKUCFUNC (NIL T T T) -7 NIL NIL) (-645 1578453 1578523 1578646 "MKRECORD" 1578777 NIL MKRECORD (NIL T T) -7 NIL NIL) (-644 1577501 1577662 1577890 "MKFUNC" 1578264 NIL MKFUNC (NIL T) -7 NIL NIL) (-643 1576889 1576993 1577149 "MKFLCFN" 1577384 NIL MKFLCFN (NIL T) -7 NIL NIL) (-642 1576315 1576682 1576771 "MKCHSET" 1576833 NIL MKCHSET (NIL T) -8 NIL NIL) (-641 1575592 1575694 1575879 "MKBCFUNC" 1576208 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL) (-640 1572276 1575146 1575282 "MINT" 1575476 T MINT (NIL) -8 NIL NIL) (-639 1571088 1571331 1571608 "MHROWRED" 1572031 NIL MHROWRED (NIL T) -7 NIL NIL) (-638 1566359 1569533 1569957 "MFLOAT" 1570684 T MFLOAT (NIL) -8 NIL NIL) (-637 1565716 1565792 1565963 "MFINFACT" 1566271 NIL MFINFACT (NIL T T T T) -7 NIL NIL) (-636 1562031 1562879 1563763 "MESH" 1564852 T MESH (NIL) -7 NIL NIL) (-635 1560421 1560733 1561086 "MDDFACT" 1561718 NIL MDDFACT (NIL T) -7 NIL NIL) (-634 1557264 1559581 1559622 "MDAGG" 1559877 NIL MDAGG (NIL T) -9 NIL 1560020) (-633 1546962 1556557 1556764 "MCMPLX" 1557077 T MCMPLX (NIL) -8 NIL NIL) (-632 1546103 1546249 1546449 "MCDEN" 1546811 NIL MCDEN (NIL T T) -7 NIL NIL) (-631 1543993 1544263 1544643 "MCALCFN" 1545833 NIL MCALCFN (NIL T T T T) -7 NIL NIL) (-630 1541615 1542138 1542699 "MATSTOR" 1543464 NIL MATSTOR (NIL T) -7 NIL NIL) (-629 1537624 1540990 1541237 "MATRIX" 1541400 NIL MATRIX (NIL T) -8 NIL NIL) (-628 1533393 1534097 1534833 "MATLIN" 1536981 NIL MATLIN (NIL T T T T) -7 NIL NIL) (-627 1523591 1526729 1526805 "MATCAT" 1531643 NIL MATCAT (NIL T T T) -9 NIL 1533060) (-626 1519956 1520969 1522324 "MATCAT-" 1522329 NIL MATCAT- (NIL T T T T) -8 NIL NIL) (-625 1518558 1518711 1519042 "MATCAT2" 1519791 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL) (-624 1516670 1516994 1517378 "MAPPKG3" 1518233 NIL MAPPKG3 (NIL T T T) -7 NIL NIL) (-623 1515651 1515824 1516046 "MAPPKG2" 1516494 NIL MAPPKG2 (NIL T T) -7 NIL NIL) (-622 1514150 1514434 1514761 "MAPPKG1" 1515357 NIL MAPPKG1 (NIL T) -7 NIL NIL) (-621 1513761 1513819 1513942 "MAPHACK3" 1514086 NIL MAPHACK3 (NIL T T T) -7 NIL NIL) (-620 1513353 1513414 1513528 "MAPHACK2" 1513693 NIL MAPHACK2 (NIL T T) -7 NIL NIL) (-619 1512791 1512894 1513036 "MAPHACK1" 1513244 NIL MAPHACK1 (NIL T) -7 NIL NIL) (-618 1510899 1511493 1511796 "MAGMA" 1512520 NIL MAGMA (NIL T) -8 NIL NIL) (-617 1507373 1509143 1509603 "M3D" 1510472 NIL M3D (NIL T) -8 NIL NIL) (-616 1501529 1505744 1505785 "LZSTAGG" 1506567 NIL LZSTAGG (NIL T) -9 NIL 1506862) (-615 1497502 1498660 1500117 "LZSTAGG-" 1500122 NIL LZSTAGG- (NIL T T) -8 NIL NIL) (-614 1494618 1495395 1495881 "LWORD" 1497048 NIL LWORD (NIL T) -8 NIL NIL) (-613 1487778 1494389 1494523 "LSQM" 1494528 NIL LSQM (NIL NIL T) -8 NIL NIL) (-612 1487002 1487141 1487369 "LSPP" 1487633 NIL LSPP (NIL T T T T) -7 NIL NIL) (-611 1484814 1485115 1485571 "LSMP" 1486691 NIL LSMP (NIL T T T T) -7 NIL NIL) (-610 1481593 1482267 1482997 "LSMP1" 1484116 NIL LSMP1 (NIL T) -7 NIL NIL) (-609 1475520 1480762 1480803 "LSAGG" 1480865 NIL LSAGG (NIL T) -9 NIL 1480943) (-608 1472215 1473139 1474352 "LSAGG-" 1474357 NIL LSAGG- (NIL T T) -8 NIL NIL) (-607 1469841 1471359 1471608 "LPOLY" 1472010 NIL LPOLY (NIL T T) -8 NIL NIL) (-606 1469423 1469508 1469631 "LPEFRAC" 1469750 NIL LPEFRAC (NIL T) -7 NIL NIL) (-605 1467770 1468517 1468770 "LO" 1469255 NIL LO (NIL T T T) -8 NIL NIL) (-604 1467424 1467536 1467564 "LOGIC" 1467675 T LOGIC (NIL) -9 NIL 1467755) (-603 1467286 1467309 1467380 "LOGIC-" 1467385 NIL LOGIC- (NIL T) -8 NIL NIL) (-602 1466479 1466619 1466812 "LODOOPS" 1467142 NIL LODOOPS (NIL T T) -7 NIL NIL) (-601 1463897 1466396 1466461 "LODO" 1466466 NIL LODO (NIL T NIL) -8 NIL NIL) (-600 1462443 1462678 1463029 "LODOF" 1463644 NIL LODOF (NIL T T) -7 NIL NIL) (-599 1458863 1461299 1461339 "LODOCAT" 1461771 NIL LODOCAT (NIL T) -9 NIL 1461982) (-598 1458597 1458655 1458781 "LODOCAT-" 1458786 NIL LODOCAT- (NIL T T) -8 NIL NIL) (-597 1455911 1458438 1458556 "LODO2" 1458561 NIL LODO2 (NIL T T) -8 NIL NIL) (-596 1453340 1455848 1455893 "LODO1" 1455898 NIL LODO1 (NIL T) -8 NIL NIL) (-595 1452203 1452368 1452679 "LODEEF" 1453163 NIL LODEEF (NIL T T T) -7 NIL NIL) (-594 1447490 1450334 1450375 "LNAGG" 1451322 NIL LNAGG (NIL T) -9 NIL 1451766) (-593 1446637 1446851 1447193 "LNAGG-" 1447198 NIL LNAGG- (NIL T T) -8 NIL NIL) (-592 1442802 1443564 1444202 "LMOPS" 1446053 NIL LMOPS (NIL T T NIL) -8 NIL NIL) (-591 1442200 1442562 1442602 "LMODULE" 1442662 NIL LMODULE (NIL T) -9 NIL 1442704) (-590 1439446 1441845 1441968 "LMDICT" 1442110 NIL LMDICT (NIL T) -8 NIL NIL) (-589 1432673 1438392 1438690 "LIST" 1439181 NIL LIST (NIL T) -8 NIL NIL) (-588 1432198 1432272 1432411 "LIST3" 1432593 NIL LIST3 (NIL T T T) -7 NIL NIL) (-587 1431205 1431383 1431611 "LIST2" 1432016 NIL LIST2 (NIL T T) -7 NIL NIL) (-586 1429339 1429651 1430050 "LIST2MAP" 1430852 NIL LIST2MAP (NIL T T) -7 NIL NIL) (-585 1428052 1428732 1428772 "LINEXP" 1429025 NIL LINEXP (NIL T) -9 NIL 1429173) (-584 1426699 1426959 1427256 "LINDEP" 1427804 NIL LINDEP (NIL T T) -7 NIL NIL) (-583 1423466 1424185 1424962 "LIMITRF" 1425954 NIL LIMITRF (NIL T) -7 NIL NIL) (-582 1421746 1422041 1422456 "LIMITPS" 1423161 NIL LIMITPS (NIL T T) -7 NIL NIL) (-581 1416201 1421257 1421485 "LIE" 1421567 NIL LIE (NIL T T) -8 NIL NIL) (-580 1415252 1415695 1415735 "LIECAT" 1415875 NIL LIECAT (NIL T) -9 NIL 1416026) (-579 1415093 1415120 1415208 "LIECAT-" 1415213 NIL LIECAT- (NIL T T) -8 NIL NIL) (-578 1407705 1414542 1414707 "LIB" 1414948 T LIB (NIL) -8 NIL NIL) (-577 1403342 1404223 1405158 "LGROBP" 1406822 NIL LGROBP (NIL NIL T) -7 NIL NIL) (-576 1401208 1401482 1401844 "LF" 1403063 NIL LF (NIL T T) -7 NIL NIL) (-575 1400048 1400740 1400768 "LFCAT" 1400975 T LFCAT (NIL) -9 NIL 1401114) (-574 1396960 1397586 1398272 "LEXTRIPK" 1399414 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL) (-573 1393666 1394530 1395033 "LEXP" 1396540 NIL LEXP (NIL T T NIL) -8 NIL NIL) (-572 1392064 1392377 1392778 "LEADCDET" 1393348 NIL LEADCDET (NIL T T T T) -7 NIL NIL) (-571 1391260 1391334 1391561 "LAZM3PK" 1391985 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL) (-570 1386177 1389339 1389876 "LAUPOL" 1390773 NIL LAUPOL (NIL T T) -8 NIL NIL) (-569 1385744 1385788 1385955 "LAPLACE" 1386127 NIL LAPLACE (NIL T T) -7 NIL NIL) (-568 1383672 1384845 1385096 "LA" 1385577 NIL LA (NIL T T T) -8 NIL NIL) (-567 1382735 1383329 1383369 "LALG" 1383430 NIL LALG (NIL T) -9 NIL 1383488) (-566 1382450 1382509 1382644 "LALG-" 1382649 NIL LALG- (NIL T T) -8 NIL NIL) (-565 1381360 1381547 1381844 "KOVACIC" 1382250 NIL KOVACIC (NIL T T) -7 NIL NIL) (-564 1381195 1381219 1381260 "KONVERT" 1381322 NIL KONVERT (NIL T) -9 NIL NIL) (-563 1381030 1381054 1381095 "KOERCE" 1381157 NIL KOERCE (NIL T) -9 NIL NIL) (-562 1378764 1379524 1379917 "KERNEL" 1380669 NIL KERNEL (NIL T) -8 NIL NIL) (-561 1378266 1378347 1378477 "KERNEL2" 1378678 NIL KERNEL2 (NIL T T) -7 NIL NIL) (-560 1372118 1376806 1376860 "KDAGG" 1377237 NIL KDAGG (NIL T T) -9 NIL 1377443) (-559 1371647 1371771 1371976 "KDAGG-" 1371981 NIL KDAGG- (NIL T T T) -8 NIL NIL) (-558 1364822 1371308 1371463 "KAFILE" 1371525 NIL KAFILE (NIL T) -8 NIL NIL) (-557 1359277 1364333 1364561 "JORDAN" 1364643 NIL JORDAN (NIL T T) -8 NIL NIL) (-556 1355577 1357483 1357537 "IXAGG" 1358466 NIL IXAGG (NIL T T) -9 NIL 1358925) (-555 1354496 1354802 1355221 "IXAGG-" 1355226 NIL IXAGG- (NIL T T T) -8 NIL NIL) (-554 1350081 1354418 1354477 "IVECTOR" 1354482 NIL IVECTOR (NIL T NIL) -8 NIL NIL) (-553 1348847 1349084 1349350 "ITUPLE" 1349848 NIL ITUPLE (NIL T) -8 NIL NIL) (-552 1347283 1347460 1347766 "ITRIGMNP" 1348669 NIL ITRIGMNP (NIL T T T) -7 NIL NIL) (-551 1346028 1346232 1346515 "ITFUN3" 1347059 NIL ITFUN3 (NIL T T T) -7 NIL NIL) (-550 1345660 1345717 1345826 "ITFUN2" 1345965 NIL ITFUN2 (NIL T T) -7 NIL NIL) (-549 1343462 1344533 1344830 "ITAYLOR" 1345395 NIL ITAYLOR (NIL T) -8 NIL NIL) (-548 1332450 1337648 1338807 "ISUPS" 1342335 NIL ISUPS (NIL T) -8 NIL NIL) (-547 1331554 1331694 1331930 "ISUMP" 1332297 NIL ISUMP (NIL T T T T) -7 NIL NIL) (-546 1326818 1331355 1331434 "ISTRING" 1331507 NIL ISTRING (NIL NIL) -8 NIL NIL) (-545 1326031 1326112 1326327 "IRURPK" 1326732 NIL IRURPK (NIL T T T T T) -7 NIL NIL) (-544 1324967 1325168 1325408 "IRSN" 1325811 T IRSN (NIL) -7 NIL NIL) (-543 1323002 1323357 1323792 "IRRF2F" 1324605 NIL IRRF2F (NIL T) -7 NIL NIL) (-542 1322749 1322787 1322863 "IRREDFFX" 1322958 NIL IRREDFFX (NIL T) -7 NIL NIL) (-541 1321364 1321623 1321922 "IROOT" 1322482 NIL IROOT (NIL T) -7 NIL NIL) (-540 1318002 1319053 1319743 "IR" 1320706 NIL IR (NIL T) -8 NIL NIL) (-539 1315615 1316110 1316676 "IR2" 1317480 NIL IR2 (NIL T T) -7 NIL NIL) (-538 1314691 1314804 1315024 "IR2F" 1315498 NIL IR2F (NIL T T) -7 NIL NIL) (-537 1314482 1314516 1314576 "IPRNTPK" 1314651 T IPRNTPK (NIL) -7 NIL NIL) (-536 1311036 1314371 1314440 "IPF" 1314445 NIL IPF (NIL NIL) -8 NIL NIL) (-535 1309353 1310961 1311018 "IPADIC" 1311023 NIL IPADIC (NIL NIL NIL) -8 NIL NIL) (-534 1308852 1308910 1309099 "INVLAPLA" 1309289 NIL INVLAPLA (NIL T T) -7 NIL NIL) (-533 1298501 1300854 1303240 "INTTR" 1306516 NIL INTTR (NIL T T) -7 NIL NIL) (-532 1294849 1295590 1296453 "INTTOOLS" 1297687 NIL INTTOOLS (NIL T T) -7 NIL NIL) (-531 1294435 1294526 1294643 "INTSLPE" 1294752 T INTSLPE (NIL) -7 NIL NIL) (-530 1292385 1294358 1294417 "INTRVL" 1294422 NIL INTRVL (NIL T) -8 NIL NIL) (-529 1289992 1290504 1291078 "INTRF" 1291870 NIL INTRF (NIL T) -7 NIL NIL) (-528 1289407 1289504 1289645 "INTRET" 1289890 NIL INTRET (NIL T) -7 NIL NIL) (-527 1287409 1287798 1288267 "INTRAT" 1289015 NIL INTRAT (NIL T T) -7 NIL NIL) (-526 1284642 1285225 1285850 "INTPM" 1286894 NIL INTPM (NIL T T) -7 NIL NIL) (-525 1281351 1281950 1282694 "INTPAF" 1284028 NIL INTPAF (NIL T T T) -7 NIL NIL) (-524 1276594 1277540 1278575 "INTPACK" 1280336 T INTPACK (NIL) -7 NIL NIL) (-523 1273448 1276323 1276450 "INT" 1276487 T INT (NIL) -8 NIL NIL) (-522 1272700 1272852 1273060 "INTHERTR" 1273290 NIL INTHERTR (NIL T T) -7 NIL NIL) (-521 1272139 1272219 1272407 "INTHERAL" 1272614 NIL INTHERAL (NIL T T T T) -7 NIL NIL) (-520 1269985 1270428 1270885 "INTHEORY" 1271702 T INTHEORY (NIL) -7 NIL NIL) (-519 1261307 1262928 1264706 "INTG0" 1268337 NIL INTG0 (NIL T T T) -7 NIL NIL) (-518 1241880 1246670 1251480 "INTFTBL" 1256517 T INTFTBL (NIL) -8 NIL NIL) (-517 1241129 1241267 1241440 "INTFACT" 1241739 NIL INTFACT (NIL T) -7 NIL NIL) (-516 1238520 1238966 1239529 "INTEF" 1240683 NIL INTEF (NIL T T) -7 NIL NIL) (-515 1236982 1237731 1237759 "INTDOM" 1238060 T INTDOM (NIL) -9 NIL 1238267) (-514 1236351 1236525 1236767 "INTDOM-" 1236772 NIL INTDOM- (NIL T) -8 NIL NIL) (-513 1232844 1234776 1234830 "INTCAT" 1235629 NIL INTCAT (NIL T) -9 NIL 1235948) (-512 1232317 1232419 1232547 "INTBIT" 1232736 T INTBIT (NIL) -7 NIL NIL) (-511 1230992 1231146 1231459 "INTALG" 1232162 NIL INTALG (NIL T T T T T) -7 NIL NIL) (-510 1230449 1230539 1230709 "INTAF" 1230896 NIL INTAF (NIL T T) -7 NIL NIL) (-509 1223903 1230259 1230399 "INTABL" 1230404 NIL INTABL (NIL T T T) -8 NIL NIL) (-508 1218854 1221583 1221611 "INS" 1222579 T INS (NIL) -9 NIL 1223260) (-507 1216094 1216865 1217839 "INS-" 1217912 NIL INS- (NIL T) -8 NIL NIL) (-506 1214873 1215100 1215397 "INPSIGN" 1215847 NIL INPSIGN (NIL T T) -7 NIL NIL) (-505 1213991 1214108 1214305 "INPRODPF" 1214753 NIL INPRODPF (NIL T T) -7 NIL NIL) (-504 1212885 1213002 1213239 "INPRODFF" 1213871 NIL INPRODFF (NIL T T T T) -7 NIL NIL) (-503 1211885 1212037 1212297 "INNMFACT" 1212721 NIL INNMFACT (NIL T T T T) -7 NIL NIL) (-502 1211082 1211179 1211367 "INMODGCD" 1211784 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL) (-501 1209591 1209835 1210159 "INFSP" 1210827 NIL INFSP (NIL T T T) -7 NIL NIL) (-500 1208775 1208892 1209075 "INFPROD0" 1209471 NIL INFPROD0 (NIL T T) -7 NIL NIL) (-499 1205785 1206944 1207435 "INFORM" 1208292 T INFORM (NIL) -8 NIL NIL) (-498 1205395 1205455 1205553 "INFORM1" 1205720 NIL INFORM1 (NIL T) -7 NIL NIL) (-497 1204918 1205007 1205121 "INFINITY" 1205301 T INFINITY (NIL) -7 NIL NIL) (-496 1203535 1203784 1204105 "INEP" 1204666 NIL INEP (NIL T T T) -7 NIL NIL) (-495 1202811 1203432 1203497 "INDE" 1203502 NIL INDE (NIL T) -8 NIL NIL) (-494 1202375 1202443 1202560 "INCRMAPS" 1202738 NIL INCRMAPS (NIL T) -7 NIL NIL) (-493 1197686 1198611 1199555 "INBFF" 1201463 NIL INBFF (NIL T) -7 NIL NIL) (-492 1194181 1197531 1197634 "IMATRIX" 1197639 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL) (-491 1192893 1193016 1193331 "IMATQF" 1194037 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL) (-490 1191113 1191340 1191677 "IMATLIN" 1192649 NIL IMATLIN (NIL T T T T) -7 NIL NIL) (-489 1185739 1191037 1191095 "ILIST" 1191100 NIL ILIST (NIL T NIL) -8 NIL NIL) (-488 1183692 1185599 1185712 "IIARRAY2" 1185717 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL) (-487 1179060 1183603 1183667 "IFF" 1183672 NIL IFF (NIL NIL NIL) -8 NIL NIL) (-486 1174103 1178352 1178540 "IFARRAY" 1178917 NIL IFARRAY (NIL T NIL) -8 NIL NIL) (-485 1173310 1174007 1174080 "IFAMON" 1174085 NIL IFAMON (NIL T T NIL) -8 NIL NIL) (-484 1172894 1172959 1173013 "IEVALAB" 1173220 NIL IEVALAB (NIL T T) -9 NIL NIL) (-483 1172569 1172637 1172797 "IEVALAB-" 1172802 NIL IEVALAB- (NIL T T T) -8 NIL NIL) (-482 1172227 1172483 1172546 "IDPO" 1172551 NIL IDPO (NIL T T) -8 NIL NIL) (-481 1171504 1172116 1172191 "IDPOAMS" 1172196 NIL IDPOAMS (NIL T T) -8 NIL NIL) (-480 1170838 1171393 1171468 "IDPOAM" 1171473 NIL IDPOAM (NIL T T) -8 NIL NIL) (-479 1169924 1170174 1170227 "IDPC" 1170640 NIL IDPC (NIL T T) -9 NIL 1170789) (-478 1169420 1169816 1169889 "IDPAM" 1169894 NIL IDPAM (NIL T T) -8 NIL NIL) (-477 1168823 1169312 1169385 "IDPAG" 1169390 NIL IDPAG (NIL T T) -8 NIL NIL) (-476 1165078 1165926 1166821 "IDECOMP" 1167980 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL) (-475 1157951 1159001 1160048 "IDEAL" 1164114 NIL IDEAL (NIL T T T T) -8 NIL NIL) (-474 1157115 1157227 1157426 "ICDEN" 1157835 NIL ICDEN (NIL T T T T) -7 NIL NIL) (-473 1156214 1156595 1156742 "ICARD" 1156988 T ICARD (NIL) -8 NIL NIL) (-472 1154286 1154599 1155002 "IBPTOOLS" 1155891 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL) (-471 1149900 1153906 1154019 "IBITS" 1154205 NIL IBITS (NIL NIL) -8 NIL NIL) (-470 1146623 1147199 1147894 "IBATOOL" 1149317 NIL IBATOOL (NIL T T T) -7 NIL NIL) (-469 1144403 1144864 1145397 "IBACHIN" 1146158 NIL IBACHIN (NIL T T T) -7 NIL NIL) (-468 1142280 1144249 1144352 "IARRAY2" 1144357 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL) (-467 1138433 1142206 1142263 "IARRAY1" 1142268 NIL IARRAY1 (NIL T NIL) -8 NIL NIL) (-466 1132371 1136851 1137329 "IAN" 1137975 T IAN (NIL) -8 NIL NIL) (-465 1131882 1131939 1132112 "IALGFACT" 1132308 NIL IALGFACT (NIL T T T T) -7 NIL NIL) (-464 1131410 1131523 1131551 "HYPCAT" 1131758 T HYPCAT (NIL) -9 NIL NIL) (-463 1130948 1131065 1131251 "HYPCAT-" 1131256 NIL HYPCAT- (NIL T) -8 NIL NIL) (-462 1127628 1128959 1129000 "HOAGG" 1129981 NIL HOAGG (NIL T) -9 NIL 1130660) (-461 1126222 1126621 1127147 "HOAGG-" 1127152 NIL HOAGG- (NIL T T) -8 NIL NIL) (-460 1120052 1125663 1125829 "HEXADEC" 1126076 T HEXADEC (NIL) -8 NIL NIL) (-459 1118800 1119022 1119285 "HEUGCD" 1119829 NIL HEUGCD (NIL T) -7 NIL NIL) (-458 1117903 1118637 1118767 "HELLFDIV" 1118772 NIL HELLFDIV (NIL T T T T) -8 NIL NIL) (-457 1116131 1117680 1117768 "HEAP" 1117847 NIL HEAP (NIL T) -8 NIL NIL) (-456 1109998 1116046 1116108 "HDP" 1116113 NIL HDP (NIL NIL T) -8 NIL NIL) (-455 1103710 1109635 1109786 "HDMP" 1109899 NIL HDMP (NIL NIL T) -8 NIL NIL) (-454 1103035 1103174 1103338 "HB" 1103566 T HB (NIL) -7 NIL NIL) (-453 1096532 1102881 1102985 "HASHTBL" 1102990 NIL HASHTBL (NIL T T NIL) -8 NIL NIL) (-452 1094285 1096160 1096339 "HACKPI" 1096373 T HACKPI (NIL) -8 NIL NIL) (-451 1089981 1094139 1094251 "GTSET" 1094256 NIL GTSET (NIL T T T T) -8 NIL NIL) (-450 1083507 1089859 1089957 "GSTBL" 1089962 NIL GSTBL (NIL T T T NIL) -8 NIL NIL) (-449 1075740 1082543 1082807 "GSERIES" 1083298 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL) (-448 1074763 1075216 1075244 "GROUP" 1075505 T GROUP (NIL) -9 NIL 1075664) (-447 1073879 1074102 1074446 "GROUP-" 1074451 NIL GROUP- (NIL T) -8 NIL NIL) (-446 1072248 1072567 1072954 "GROEBSOL" 1073556 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL) (-445 1071189 1071451 1071502 "GRMOD" 1072031 NIL GRMOD (NIL T T) -9 NIL 1072199) (-444 1070957 1070993 1071121 "GRMOD-" 1071126 NIL GRMOD- (NIL T T T) -8 NIL NIL) (-443 1066283 1067311 1068311 "GRIMAGE" 1069977 T GRIMAGE (NIL) -8 NIL NIL) (-442 1064750 1065010 1065334 "GRDEF" 1065979 T GRDEF (NIL) -7 NIL NIL) (-441 1064194 1064310 1064451 "GRAY" 1064629 T GRAY (NIL) -7 NIL NIL) (-440 1063428 1063808 1063859 "GRALG" 1064012 NIL GRALG (NIL T T) -9 NIL 1064104) (-439 1063089 1063162 1063325 "GRALG-" 1063330 NIL GRALG- (NIL T T T) -8 NIL NIL) (-438 1059897 1062678 1062854 "GPOLSET" 1062996 NIL GPOLSET (NIL T T T T) -8 NIL NIL) (-437 1059253 1059310 1059567 "GOSPER" 1059834 NIL GOSPER (NIL T T T T T) -7 NIL NIL) (-436 1055012 1055691 1056217 "GMODPOL" 1058952 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL) (-435 1054017 1054201 1054439 "GHENSEL" 1054824 NIL GHENSEL (NIL T T) -7 NIL NIL) (-434 1048083 1048926 1049952 "GENUPS" 1053101 NIL GENUPS (NIL T T) -7 NIL NIL) (-433 1047780 1047831 1047920 "GENUFACT" 1048026 NIL GENUFACT (NIL T) -7 NIL NIL) (-432 1047192 1047269 1047434 "GENPGCD" 1047698 NIL GENPGCD (NIL T T T T) -7 NIL NIL) (-431 1046666 1046701 1046914 "GENMFACT" 1047151 NIL GENMFACT (NIL T T T T T) -7 NIL NIL) (-430 1045234 1045489 1045796 "GENEEZ" 1046409 NIL GENEEZ (NIL T T) -7 NIL NIL) (-429 1039108 1044847 1045008 "GDMP" 1045157 NIL GDMP (NIL NIL T T) -8 NIL NIL) (-428 1028488 1032879 1033985 "GCNAALG" 1038091 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL) (-427 1026910 1027782 1027810 "GCDDOM" 1028065 T GCDDOM (NIL) -9 NIL 1028222) (-426 1026380 1026507 1026722 "GCDDOM-" 1026727 NIL GCDDOM- (NIL T) -8 NIL NIL) (-425 1025052 1025237 1025541 "GB" 1026159 NIL GB (NIL T T T T) -7 NIL NIL) (-424 1013672 1015998 1018390 "GBINTERN" 1022743 NIL GBINTERN (NIL T T T T) -7 NIL NIL) (-423 1011509 1011801 1012222 "GBF" 1013347 NIL GBF (NIL T T T T) -7 NIL NIL) (-422 1010290 1010455 1010722 "GBEUCLID" 1011325 NIL GBEUCLID (NIL T T T T) -7 NIL NIL) (-421 1009639 1009764 1009913 "GAUSSFAC" 1010161 T GAUSSFAC (NIL) -7 NIL NIL) (-420 1008016 1008318 1008631 "GALUTIL" 1009358 NIL GALUTIL (NIL T) -7 NIL NIL) (-419 1006333 1006607 1006930 "GALPOLYU" 1007743 NIL GALPOLYU (NIL T T) -7 NIL NIL) (-418 1003722 1004012 1004417 "GALFACTU" 1006030 NIL GALFACTU (NIL T T T) -7 NIL NIL) (-417 995528 997027 998635 "GALFACT" 1002154 NIL GALFACT (NIL T) -7 NIL NIL) (-416 992916 993574 993602 "FVFUN" 994758 T FVFUN (NIL) -9 NIL 995478) (-415 992182 992364 992392 "FVC" 992683 T FVC (NIL) -9 NIL 992866) (-414 991824 991979 992060 "FUNCTION" 992134 NIL FUNCTION (NIL NIL) -8 NIL NIL) (-413 989494 990045 990534 "FT" 991355 T FT (NIL) -8 NIL NIL) (-412 988312 988795 988998 "FTEM" 989311 T FTEM (NIL) -8 NIL NIL) (-411 986577 986865 987267 "FSUPFACT" 988004 NIL FSUPFACT (NIL T T T) -7 NIL NIL) (-410 984974 985263 985595 "FST" 986265 T FST (NIL) -8 NIL NIL) (-409 984149 984255 984449 "FSRED" 984856 NIL FSRED (NIL T T) -7 NIL NIL) (-408 982828 983083 983437 "FSPRMELT" 983864 NIL FSPRMELT (NIL T T) -7 NIL NIL) (-407 979913 980351 980850 "FSPECF" 982391 NIL FSPECF (NIL T T) -7 NIL NIL) (-406 962287 970844 970884 "FS" 974722 NIL FS (NIL T) -9 NIL 977004) (-405 950937 953927 957983 "FS-" 958280 NIL FS- (NIL T T) -8 NIL NIL) (-404 950453 950507 950683 "FSINT" 950878 NIL FSINT (NIL T T) -7 NIL NIL) (-403 948734 949446 949749 "FSERIES" 950232 NIL FSERIES (NIL T T) -8 NIL NIL) (-402 947752 947868 948098 "FSCINT" 948614 NIL FSCINT (NIL T T) -7 NIL NIL) (-401 943987 946697 946738 "FSAGG" 947108 NIL FSAGG (NIL T) -9 NIL 947367) (-400 941749 942350 943146 "FSAGG-" 943241 NIL FSAGG- (NIL T T) -8 NIL NIL) (-399 940791 940934 941161 "FSAGG2" 941602 NIL FSAGG2 (NIL T T T T) -7 NIL NIL) (-398 938450 938729 939282 "FS2UPS" 940509 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL) (-397 938036 938079 938232 "FS2" 938401 NIL FS2 (NIL T T T T) -7 NIL NIL) (-396 936896 937067 937375 "FS2EXPXP" 937861 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL) (-395 936322 936437 936589 "FRUTIL" 936776 NIL FRUTIL (NIL T) -7 NIL NIL) (-394 927742 931821 933177 "FR" 934998 NIL FR (NIL T) -8 NIL NIL) (-393 922819 925462 925502 "FRNAALG" 926898 NIL FRNAALG (NIL T) -9 NIL 927505) (-392 918497 919568 920843 "FRNAALG-" 921593 NIL FRNAALG- (NIL T T) -8 NIL NIL) (-391 918135 918178 918305 "FRNAAF2" 918448 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL) (-390 916500 916992 917286 "FRMOD" 917948 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL) (-389 914222 914891 915207 "FRIDEAL" 916291 NIL FRIDEAL (NIL T T T T) -8 NIL NIL) (-388 913421 913508 913795 "FRIDEAL2" 914129 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL) (-387 912679 913087 913128 "FRETRCT" 913133 NIL FRETRCT (NIL T) -9 NIL 913304) (-386 911791 912022 912373 "FRETRCT-" 912378 NIL FRETRCT- (NIL T T) -8 NIL NIL) (-385 909001 910221 910280 "FRAMALG" 911162 NIL FRAMALG (NIL T T) -9 NIL 911454) (-384 907134 907590 908220 "FRAMALG-" 908443 NIL FRAMALG- (NIL T T T) -8 NIL NIL) (-383 901036 906609 906885 "FRAC" 906890 NIL FRAC (NIL T) -8 NIL NIL) (-382 900672 900729 900836 "FRAC2" 900973 NIL FRAC2 (NIL T T) -7 NIL NIL) (-381 900308 900365 900472 "FR2" 900609 NIL FR2 (NIL T T) -7 NIL NIL) (-380 894982 897895 897923 "FPS" 899042 T FPS (NIL) -9 NIL 899598) (-379 894431 894540 894704 "FPS-" 894850 NIL FPS- (NIL T) -8 NIL NIL) (-378 891880 893577 893605 "FPC" 893830 T FPC (NIL) -9 NIL 893972) (-377 891673 891713 891810 "FPC-" 891815 NIL FPC- (NIL T) -8 NIL NIL) (-376 890552 891162 891203 "FPATMAB" 891208 NIL FPATMAB (NIL T) -9 NIL 891360) (-375 888252 888728 889154 "FPARFRAC" 890189 NIL FPARFRAC (NIL T T) -8 NIL NIL) (-374 883645 884144 884826 "FORTRAN" 887684 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL) (-373 881361 881861 882400 "FORT" 883126 T FORT (NIL) -7 NIL NIL) (-372 879037 879599 879627 "FORTFN" 880687 T FORTFN (NIL) -9 NIL 881311) (-371 878801 878851 878879 "FORTCAT" 878938 T FORTCAT (NIL) -9 NIL 879000) (-370 876861 877344 877743 "FORMULA" 878422 T FORMULA (NIL) -8 NIL NIL) (-369 876649 876679 876748 "FORMULA1" 876825 NIL FORMULA1 (NIL T) -7 NIL NIL) (-368 876172 876224 876397 "FORDER" 876591 NIL FORDER (NIL T T T T) -7 NIL NIL) (-367 875268 875432 875625 "FOP" 875999 T FOP (NIL) -7 NIL NIL) (-366 873876 874548 874722 "FNLA" 875150 NIL FNLA (NIL NIL NIL T) -8 NIL NIL) (-365 872545 872934 872962 "FNCAT" 873534 T FNCAT (NIL) -9 NIL 873827) (-364 872111 872504 872532 "FNAME" 872537 T FNAME (NIL) -8 NIL NIL) (-363 870771 871744 871772 "FMTC" 871777 T FMTC (NIL) -9 NIL 871812) (-362 867089 868296 868924 "FMONOID" 870176 NIL FMONOID (NIL T) -8 NIL NIL) (-361 866309 866832 866980 "FM" 866985 NIL FM (NIL T T) -8 NIL NIL) (-360 863733 864379 864407 "FMFUN" 865551 T FMFUN (NIL) -9 NIL 866259) (-359 863002 863183 863211 "FMC" 863501 T FMC (NIL) -9 NIL 863683) (-358 860232 861066 861119 "FMCAT" 862301 NIL FMCAT (NIL T T) -9 NIL 862795) (-357 859127 860000 860099 "FM1" 860177 NIL FM1 (NIL T T) -8 NIL NIL) (-356 856901 857317 857811 "FLOATRP" 858678 NIL FLOATRP (NIL T) -7 NIL NIL) (-355 850387 854557 855187 "FLOAT" 856291 T FLOAT (NIL) -8 NIL NIL) (-354 847825 848325 848903 "FLOATCP" 849854 NIL FLOATCP (NIL T) -7 NIL NIL) (-353 846614 847462 847502 "FLINEXP" 847507 NIL FLINEXP (NIL T) -9 NIL 847600) (-352 845769 846004 846331 "FLINEXP-" 846336 NIL FLINEXP- (NIL T T) -8 NIL NIL) (-351 844845 844989 845213 "FLASORT" 845621 NIL FLASORT (NIL T T) -7 NIL NIL) (-350 842064 842906 842958 "FLALG" 844185 NIL FLALG (NIL T T) -9 NIL 844652) (-349 835849 839551 839592 "FLAGG" 840854 NIL FLAGG (NIL T) -9 NIL 841506) (-348 834575 834914 835404 "FLAGG-" 835409 NIL FLAGG- (NIL T T) -8 NIL NIL) (-347 833617 833760 833987 "FLAGG2" 834428 NIL FLAGG2 (NIL T T T T) -7 NIL NIL) (-346 830590 831608 831667 "FINRALG" 832795 NIL FINRALG (NIL T T) -9 NIL 833303) (-345 829750 829979 830318 "FINRALG-" 830323 NIL FINRALG- (NIL T T T) -8 NIL NIL) (-344 829157 829370 829398 "FINITE" 829594 T FINITE (NIL) -9 NIL 829701) (-343 821617 823778 823818 "FINAALG" 827485 NIL FINAALG (NIL T) -9 NIL 828938) (-342 816958 817999 819143 "FINAALG-" 820522 NIL FINAALG- (NIL T T) -8 NIL NIL) (-341 816353 816713 816816 "FILE" 816888 NIL FILE (NIL T) -8 NIL NIL) (-340 815038 815350 815404 "FILECAT" 816088 NIL FILECAT (NIL T T) -9 NIL 816304) (-339 812901 814457 814485 "FIELD" 814525 T FIELD (NIL) -9 NIL 814605) (-338 811521 811906 812417 "FIELD-" 812422 NIL FIELD- (NIL T) -8 NIL NIL) (-337 809336 810158 810504 "FGROUP" 811208 NIL FGROUP (NIL T) -8 NIL NIL) (-336 808426 808590 808810 "FGLMICPK" 809168 NIL FGLMICPK (NIL T NIL) -7 NIL NIL) (-335 804228 808351 808408 "FFX" 808413 NIL FFX (NIL T NIL) -8 NIL NIL) (-334 803829 803890 804025 "FFSLPE" 804161 NIL FFSLPE (NIL T T T) -7 NIL NIL) (-333 799822 800601 801397 "FFPOLY" 803065 NIL FFPOLY (NIL T) -7 NIL NIL) (-332 799326 799362 799571 "FFPOLY2" 799780 NIL FFPOLY2 (NIL T T) -7 NIL NIL) (-331 795147 799245 799308 "FFP" 799313 NIL FFP (NIL T NIL) -8 NIL NIL) (-330 790515 795058 795122 "FF" 795127 NIL FF (NIL NIL NIL) -8 NIL NIL) (-329 785611 789858 790048 "FFNBX" 790369 NIL FFNBX (NIL T NIL) -8 NIL NIL) (-328 780520 784746 785004 "FFNBP" 785465 NIL FFNBP (NIL T NIL) -8 NIL NIL) (-327 775123 779804 780015 "FFNB" 780353 NIL FFNB (NIL NIL NIL) -8 NIL NIL) (-326 773955 774153 774468 "FFINTBAS" 774920 NIL FFINTBAS (NIL T T T) -7 NIL NIL) (-325 770179 772419 772447 "FFIELDC" 773067 T FFIELDC (NIL) -9 NIL 773443) (-324 768842 769212 769709 "FFIELDC-" 769714 NIL FFIELDC- (NIL T) -8 NIL NIL) (-323 768412 768457 768581 "FFHOM" 768784 NIL FFHOM (NIL T T T) -7 NIL NIL) (-322 766110 766594 767111 "FFF" 767927 NIL FFF (NIL T) -7 NIL NIL) (-321 761698 765852 765953 "FFCGX" 766053 NIL FFCGX (NIL T NIL) -8 NIL NIL) (-320 757300 761430 761537 "FFCGP" 761641 NIL FFCGP (NIL T NIL) -8 NIL NIL) (-319 752453 757027 757135 "FFCG" 757236 NIL FFCG (NIL NIL NIL) -8 NIL NIL) (-318 734399 743522 743608 "FFCAT" 748773 NIL FFCAT (NIL T T T) -9 NIL 750260) (-317 729597 730644 731958 "FFCAT-" 733188 NIL FFCAT- (NIL T T T T) -8 NIL NIL) (-316 729008 729051 729286 "FFCAT2" 729548 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL) (-315 718208 721998 723215 "FEXPR" 727863 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL) (-314 717208 717643 717684 "FEVALAB" 717768 NIL FEVALAB (NIL T) -9 NIL 718029) (-313 716367 716577 716915 "FEVALAB-" 716920 NIL FEVALAB- (NIL T T) -8 NIL NIL) (-312 714960 715750 715953 "FDIV" 716266 NIL FDIV (NIL T T T T) -8 NIL NIL) (-311 712027 712742 712857 "FDIVCAT" 714425 NIL FDIVCAT (NIL T T T T) -9 NIL 714862) (-310 711789 711816 711986 "FDIVCAT-" 711991 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL) (-309 711009 711096 711373 "FDIV2" 711696 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL) (-308 709695 709954 710243 "FCPAK1" 710740 T FCPAK1 (NIL) -7 NIL NIL) (-307 708823 709195 709336 "FCOMP" 709586 NIL FCOMP (NIL T) -8 NIL NIL) (-306 692458 695872 699433 "FC" 705282 T FC (NIL) -8 NIL NIL) (-305 685054 689100 689140 "FAXF" 690942 NIL FAXF (NIL T) -9 NIL 691633) (-304 682333 682988 683813 "FAXF-" 684278 NIL FAXF- (NIL T T) -8 NIL NIL) (-303 677433 681709 681885 "FARRAY" 682190 NIL FARRAY (NIL T) -8 NIL NIL) (-302 672824 674895 674947 "FAMR" 675959 NIL FAMR (NIL T T) -9 NIL 676419) (-301 671715 672017 672451 "FAMR-" 672456 NIL FAMR- (NIL T T T) -8 NIL NIL) (-300 670911 671637 671690 "FAMONOID" 671695 NIL FAMONOID (NIL T) -8 NIL NIL) (-299 668744 669428 669481 "FAMONC" 670422 NIL FAMONC (NIL T T) -9 NIL 670807) (-298 667436 668498 668635 "FAGROUP" 668640 NIL FAGROUP (NIL T) -8 NIL NIL) (-297 665239 665558 665960 "FACUTIL" 667117 NIL FACUTIL (NIL T T T T) -7 NIL NIL) (-296 664338 664523 664745 "FACTFUNC" 665049 NIL FACTFUNC (NIL T) -7 NIL NIL) (-295 656658 663589 663801 "EXPUPXS" 664194 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL) (-294 654141 654681 655267 "EXPRTUBE" 656092 T EXPRTUBE (NIL) -7 NIL NIL) (-293 650335 650927 651664 "EXPRODE" 653480 NIL EXPRODE (NIL T T) -7 NIL NIL) (-292 635494 648994 649420 "EXPR" 649941 NIL EXPR (NIL T) -8 NIL NIL) (-291 629922 630509 631321 "EXPR2UPS" 634792 NIL EXPR2UPS (NIL T T) -7 NIL NIL) (-290 629558 629615 629722 "EXPR2" 629859 NIL EXPR2 (NIL T T) -7 NIL NIL) (-289 620912 628695 628990 "EXPEXPAN" 629396 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL) (-288 620739 620869 620898 "EXIT" 620903 T EXIT (NIL) -8 NIL NIL) (-287 620366 620428 620541 "EVALCYC" 620671 NIL EVALCYC (NIL T) -7 NIL NIL) (-286 619907 620025 620066 "EVALAB" 620236 NIL EVALAB (NIL T) -9 NIL 620340) (-285 619388 619510 619731 "EVALAB-" 619736 NIL EVALAB- (NIL T T) -8 NIL NIL) (-284 616851 618163 618191 "EUCDOM" 618746 T EUCDOM (NIL) -9 NIL 619096) (-283 615256 615698 616288 "EUCDOM-" 616293 NIL EUCDOM- (NIL T) -8 NIL NIL) (-282 602834 605582 608322 "ESTOOLS" 612536 T ESTOOLS (NIL) -7 NIL NIL) (-281 602470 602527 602634 "ESTOOLS2" 602771 NIL ESTOOLS2 (NIL T T) -7 NIL NIL) (-280 602221 602263 602343 "ESTOOLS1" 602422 NIL ESTOOLS1 (NIL T) -7 NIL NIL) (-279 596159 597883 597911 "ES" 600675 T ES (NIL) -9 NIL 602081) (-278 591106 592393 594210 "ES-" 594374 NIL ES- (NIL T) -8 NIL NIL) (-277 587481 588241 589021 "ESCONT" 590346 T ESCONT (NIL) -7 NIL NIL) (-276 587226 587258 587340 "ESCONT1" 587443 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL) (-275 586901 586951 587051 "ES2" 587170 NIL ES2 (NIL T T) -7 NIL NIL) (-274 586531 586589 586698 "ES1" 586837 NIL ES1 (NIL T T) -7 NIL NIL) (-273 585747 585876 586052 "ERROR" 586375 T ERROR (NIL) -7 NIL NIL) (-272 579250 585606 585697 "EQTBL" 585702 NIL EQTBL (NIL T T) -8 NIL NIL) (-271 571687 574568 576015 "EQ" 577836 NIL -2533 (NIL T) -8 NIL NIL) (-270 571319 571376 571485 "EQ2" 571624 NIL EQ2 (NIL T T) -7 NIL NIL) (-269 566611 567657 568750 "EP" 570258 NIL EP (NIL T) -7 NIL NIL) (-268 565194 565494 565811 "ENV" 566314 T ENV (NIL) -8 NIL NIL) (-267 564354 564918 564946 "ENTIRER" 564951 T ENTIRER (NIL) -9 NIL 564996) (-266 560810 562309 562679 "EMR" 564153 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL) (-265 559954 560139 560193 "ELTAGG" 560573 NIL ELTAGG (NIL T T) -9 NIL 560784) (-264 559673 559735 559876 "ELTAGG-" 559881 NIL ELTAGG- (NIL T T T) -8 NIL NIL) (-263 559462 559491 559545 "ELTAB" 559629 NIL ELTAB (NIL T T) -9 NIL NIL) (-262 558588 558734 558933 "ELFUTS" 559313 NIL ELFUTS (NIL T T) -7 NIL NIL) (-261 558330 558386 558414 "ELEMFUN" 558519 T ELEMFUN (NIL) -9 NIL NIL) (-260 558200 558221 558289 "ELEMFUN-" 558294 NIL ELEMFUN- (NIL T) -8 NIL NIL) (-259 553092 556301 556342 "ELAGG" 557282 NIL ELAGG (NIL T) -9 NIL 557745) (-258 551377 551811 552474 "ELAGG-" 552479 NIL ELAGG- (NIL T T) -8 NIL NIL) (-257 550034 550314 550609 "ELABEXPR" 551102 T ELABEXPR (NIL) -8 NIL NIL) (-256 542902 544701 545528 "EFUPXS" 549310 NIL EFUPXS (NIL T T T T) -8 NIL NIL) (-255 536352 538153 538963 "EFULS" 542178 NIL EFULS (NIL T T T) -8 NIL NIL) (-254 533783 534141 534619 "EFSTRUC" 535984 NIL EFSTRUC (NIL T T) -7 NIL NIL) (-253 522855 524420 525980 "EF" 532298 NIL EF (NIL T T) -7 NIL NIL) (-252 521956 522340 522489 "EAB" 522726 T EAB (NIL) -8 NIL NIL) (-251 521169 521915 521943 "E04UCFA" 521948 T E04UCFA (NIL) -8 NIL NIL) (-250 520382 521128 521156 "E04NAFA" 521161 T E04NAFA (NIL) -8 NIL NIL) (-249 519595 520341 520369 "E04MBFA" 520374 T E04MBFA (NIL) -8 NIL NIL) (-248 518808 519554 519582 "E04JAFA" 519587 T E04JAFA (NIL) -8 NIL NIL) (-247 518023 518767 518795 "E04GCFA" 518800 T E04GCFA (NIL) -8 NIL NIL) (-246 517238 517982 518010 "E04FDFA" 518015 T E04FDFA (NIL) -8 NIL NIL) (-245 516451 517197 517225 "E04DGFA" 517230 T E04DGFA (NIL) -8 NIL NIL) (-244 510636 511981 513343 "E04AGNT" 515109 T E04AGNT (NIL) -7 NIL NIL) (-243 509363 509843 509883 "DVARCAT" 510358 NIL DVARCAT (NIL T) -9 NIL 510556) (-242 508567 508779 509093 "DVARCAT-" 509098 NIL DVARCAT- (NIL T T) -8 NIL NIL) (-241 501429 508369 508496 "DSMP" 508501 NIL DSMP (NIL T T T) -8 NIL NIL) (-240 496239 497374 498442 "DROPT" 500381 T DROPT (NIL) -8 NIL NIL) (-239 495904 495963 496061 "DROPT1" 496174 NIL DROPT1 (NIL T) -7 NIL NIL) (-238 491019 492145 493282 "DROPT0" 494787 T DROPT0 (NIL) -7 NIL NIL) (-237 489364 489689 490075 "DRAWPT" 490653 T DRAWPT (NIL) -7 NIL NIL) (-236 483951 484874 485953 "DRAW" 488338 NIL DRAW (NIL T) -7 NIL NIL) (-235 483584 483637 483755 "DRAWHACK" 483892 NIL DRAWHACK (NIL T) -7 NIL NIL) (-234 482315 482584 482875 "DRAWCX" 483313 T DRAWCX (NIL) -7 NIL NIL) (-233 481833 481901 482051 "DRAWCURV" 482241 NIL DRAWCURV (NIL T T) -7 NIL NIL) (-232 472304 474263 476378 "DRAWCFUN" 479738 T DRAWCFUN (NIL) -7 NIL NIL) (-231 469118 471000 471041 "DQAGG" 471670 NIL DQAGG (NIL T) -9 NIL 471943) (-230 457625 464363 464445 "DPOLCAT" 466283 NIL DPOLCAT (NIL T T T T) -9 NIL 466827) (-229 452465 453811 455768 "DPOLCAT-" 455773 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL) (-228 446549 452327 452424 "DPMO" 452429 NIL DPMO (NIL NIL T T) -8 NIL NIL) (-227 440536 446330 446496 "DPMM" 446501 NIL DPMM (NIL NIL T T T) -8 NIL NIL) (-226 440049 440147 440267 "DOMAIN" 440436 T DOMAIN (NIL) -8 NIL NIL) (-225 433761 439686 439837 "DMP" 439950 NIL DMP (NIL NIL T) -8 NIL NIL) (-224 433361 433417 433561 "DLP" 433699 NIL DLP (NIL T) -7 NIL NIL) (-223 427005 432462 432689 "DLIST" 433166 NIL DLIST (NIL T) -8 NIL NIL) (-222 423852 425861 425902 "DLAGG" 426452 NIL DLAGG (NIL T) -9 NIL 426681) (-221 422562 423254 423282 "DIVRING" 423432 T DIVRING (NIL) -9 NIL 423540) (-220 421550 421803 422196 "DIVRING-" 422201 NIL DIVRING- (NIL T) -8 NIL NIL) (-219 419652 420009 420415 "DISPLAY" 421164 T DISPLAY (NIL) -7 NIL NIL) (-218 413541 419566 419629 "DIRPROD" 419634 NIL DIRPROD (NIL NIL T) -8 NIL NIL) (-217 412389 412592 412857 "DIRPROD2" 413334 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL) (-216 402020 408025 408078 "DIRPCAT" 408486 NIL DIRPCAT (NIL NIL T) -9 NIL 409313) (-215 399346 399988 400869 "DIRPCAT-" 401206 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL) (-214 398633 398793 398979 "DIOSP" 399180 T DIOSP (NIL) -7 NIL NIL) (-213 395336 397546 397587 "DIOPS" 398021 NIL DIOPS (NIL T) -9 NIL 398250) (-212 394885 394999 395190 "DIOPS-" 395195 NIL DIOPS- (NIL T T) -8 NIL NIL) (-211 393757 394395 394423 "DIFRING" 394610 T DIFRING (NIL) -9 NIL 394719) (-210 393403 393480 393632 "DIFRING-" 393637 NIL DIFRING- (NIL T) -8 NIL NIL) (-209 391193 392475 392515 "DIFEXT" 392874 NIL DIFEXT (NIL T) -9 NIL 393167) (-208 389479 389907 390572 "DIFEXT-" 390577 NIL DIFEXT- (NIL T T) -8 NIL NIL) (-207 386802 389012 389053 "DIAGG" 389058 NIL DIAGG (NIL T) -9 NIL 389078) (-206 386186 386343 386595 "DIAGG-" 386600 NIL DIAGG- (NIL T T) -8 NIL NIL) (-205 381651 385145 385422 "DHMATRIX" 385955 NIL DHMATRIX (NIL T) -8 NIL NIL) (-204 377263 378172 379182 "DFSFUN" 380661 T DFSFUN (NIL) -7 NIL NIL) (-203 372049 375977 376342 "DFLOAT" 376918 T DFLOAT (NIL) -8 NIL NIL) (-202 370282 370563 370958 "DFINTTLS" 371757 NIL DFINTTLS (NIL T T) -7 NIL NIL) (-201 367315 368317 368715 "DERHAM" 369949 NIL DERHAM (NIL T NIL) -8 NIL NIL) (-200 365164 367090 367179 "DEQUEUE" 367259 NIL DEQUEUE (NIL T) -8 NIL NIL) (-199 364382 364515 364710 "DEGRED" 365026 NIL DEGRED (NIL T T) -7 NIL NIL) (-198 360782 361527 362379 "DEFINTRF" 363610 NIL DEFINTRF (NIL T) -7 NIL NIL) (-197 358313 358782 359380 "DEFINTEF" 360301 NIL DEFINTEF (NIL T T) -7 NIL NIL) (-196 352143 357754 357920 "DECIMAL" 358167 T DECIMAL (NIL) -8 NIL NIL) (-195 349655 350113 350619 "DDFACT" 351687 NIL DDFACT (NIL T T) -7 NIL NIL) (-194 349251 349294 349445 "DBLRESP" 349606 NIL DBLRESP (NIL T T T T) -7 NIL NIL) (-193 346961 347295 347664 "DBASE" 349009 NIL DBASE (NIL T) -8 NIL NIL) (-192 346096 346920 346948 "D03FAFA" 346953 T D03FAFA (NIL) -8 NIL NIL) (-191 345232 346055 346083 "D03EEFA" 346088 T D03EEFA (NIL) -8 NIL NIL) (-190 343182 343648 344137 "D03AGNT" 344763 T D03AGNT (NIL) -7 NIL NIL) (-189 342500 343141 343169 "D02EJFA" 343174 T D02EJFA (NIL) -8 NIL NIL) (-188 341818 342459 342487 "D02CJFA" 342492 T D02CJFA (NIL) -8 NIL NIL) (-187 341136 341777 341805 "D02BHFA" 341810 T D02BHFA (NIL) -8 NIL NIL) (-186 340454 341095 341123 "D02BBFA" 341128 T D02BBFA (NIL) -8 NIL NIL) (-185 333652 335240 336846 "D02AGNT" 338868 T D02AGNT (NIL) -7 NIL NIL) (-184 331421 331943 332489 "D01WGTS" 333126 T D01WGTS (NIL) -7 NIL NIL) (-183 330524 331380 331408 "D01TRNS" 331413 T D01TRNS (NIL) -8 NIL NIL) (-182 329627 330483 330511 "D01GBFA" 330516 T D01GBFA (NIL) -8 NIL NIL) (-181 328730 329586 329614 "D01FCFA" 329619 T D01FCFA (NIL) -8 NIL NIL) (-180 327833 328689 328717 "D01ASFA" 328722 T D01ASFA (NIL) -8 NIL NIL) (-179 326936 327792 327820 "D01AQFA" 327825 T D01AQFA (NIL) -8 NIL NIL) (-178 326039 326895 326923 "D01APFA" 326928 T D01APFA (NIL) -8 NIL NIL) (-177 325142 325998 326026 "D01ANFA" 326031 T D01ANFA (NIL) -8 NIL NIL) (-176 324245 325101 325129 "D01AMFA" 325134 T D01AMFA (NIL) -8 NIL NIL) (-175 323348 324204 324232 "D01ALFA" 324237 T D01ALFA (NIL) -8 NIL NIL) (-174 322451 323307 323335 "D01AKFA" 323340 T D01AKFA (NIL) -8 NIL NIL) (-173 321554 322410 322438 "D01AJFA" 322443 T D01AJFA (NIL) -8 NIL NIL) (-172 314858 316407 317966 "D01AGNT" 320015 T D01AGNT (NIL) -7 NIL NIL) (-171 314195 314323 314475 "CYCLOTOM" 314726 T CYCLOTOM (NIL) -7 NIL NIL) (-170 310930 311643 312370 "CYCLES" 313488 T CYCLES (NIL) -7 NIL NIL) (-169 310242 310376 310547 "CVMP" 310791 NIL CVMP (NIL T) -7 NIL NIL) (-168 308023 308281 308656 "CTRIGMNP" 309970 NIL CTRIGMNP (NIL T T) -7 NIL NIL) (-167 307628 307711 307816 "CTORCALL" 307938 T CTORCALL (NIL) -8 NIL NIL) (-166 307002 307101 307254 "CSTTOOLS" 307525 NIL CSTTOOLS (NIL T T) -7 NIL NIL) (-165 302801 303458 304216 "CRFP" 306314 NIL CRFP (NIL T T) -7 NIL NIL) (-164 301848 302033 302261 "CRAPACK" 302605 NIL CRAPACK (NIL T) -7 NIL NIL) (-163 301232 301333 301537 "CPMATCH" 301724 NIL CPMATCH (NIL T T T) -7 NIL NIL) (-162 300957 300985 301091 "CPIMA" 301198 NIL CPIMA (NIL T T T) -7 NIL NIL) (-161 297321 297993 298711 "COORDSYS" 300292 NIL COORDSYS (NIL T) -7 NIL NIL) (-160 296705 296834 296984 "CONTOUR" 297191 T CONTOUR (NIL) -8 NIL NIL) (-159 292566 294708 295200 "CONTFRAC" 296245 NIL CONTFRAC (NIL T) -8 NIL NIL) (-158 291720 292284 292312 "COMRING" 292317 T COMRING (NIL) -9 NIL 292368) (-157 290801 291078 291262 "COMPPROP" 291556 T COMPPROP (NIL) -8 NIL NIL) (-156 290462 290497 290625 "COMPLPAT" 290760 NIL COMPLPAT (NIL T T T) -7 NIL NIL) (-155 280443 290271 290380 "COMPLEX" 290385 NIL COMPLEX (NIL T) -8 NIL NIL) (-154 280079 280136 280243 "COMPLEX2" 280380 NIL COMPLEX2 (NIL T T) -7 NIL NIL) (-153 279797 279832 279930 "COMPFACT" 280038 NIL COMPFACT (NIL T T) -7 NIL NIL) (-152 264132 274426 274466 "COMPCAT" 275468 NIL COMPCAT (NIL T) -9 NIL 276861) (-151 253647 256571 260198 "COMPCAT-" 260554 NIL COMPCAT- (NIL T T) -8 NIL NIL) (-150 253378 253406 253508 "COMMUPC" 253613 NIL COMMUPC (NIL T T T) -7 NIL NIL) (-149 253173 253206 253265 "COMMONOP" 253339 T COMMONOP (NIL) -7 NIL NIL) (-148 252756 252924 253011 "COMM" 253106 T COMM (NIL) -8 NIL NIL) (-147 252005 252199 252227 "COMBOPC" 252565 T COMBOPC (NIL) -9 NIL 252740) (-146 250901 251111 251353 "COMBINAT" 251795 NIL COMBINAT (NIL T) -7 NIL NIL) (-145 247099 247672 248312 "COMBF" 250323 NIL COMBF (NIL T T) -7 NIL NIL) (-144 245885 246215 246450 "COLOR" 246884 T COLOR (NIL) -8 NIL NIL) (-143 245525 245572 245697 "CMPLXRT" 245832 NIL CMPLXRT (NIL T T) -7 NIL NIL) (-142 241027 242055 243135 "CLIP" 244465 T CLIP (NIL) -7 NIL NIL) (-141 239365 240135 240373 "CLIF" 240855 NIL CLIF (NIL NIL T NIL) -8 NIL NIL) (-140 235588 237512 237553 "CLAGG" 238482 NIL CLAGG (NIL T) -9 NIL 239018) (-139 234010 234467 235050 "CLAGG-" 235055 NIL CLAGG- (NIL T T) -8 NIL NIL) (-138 233554 233639 233779 "CINTSLPE" 233919 NIL CINTSLPE (NIL T T) -7 NIL NIL) (-137 231055 231526 232074 "CHVAR" 233082 NIL CHVAR (NIL T T T) -7 NIL NIL) (-136 230278 230842 230870 "CHARZ" 230875 T CHARZ (NIL) -9 NIL 230889) (-135 230032 230072 230150 "CHARPOL" 230232 NIL CHARPOL (NIL T) -7 NIL NIL) (-134 229139 229736 229764 "CHARNZ" 229811 T CHARNZ (NIL) -9 NIL 229866) (-133 227164 227829 228164 "CHAR" 228824 T CHAR (NIL) -8 NIL NIL) (-132 226890 226951 226979 "CFCAT" 227090 T CFCAT (NIL) -9 NIL NIL) (-131 226135 226246 226428 "CDEN" 226774 NIL CDEN (NIL T T T) -7 NIL NIL) (-130 222127 225288 225568 "CCLASS" 225875 T CCLASS (NIL) -8 NIL NIL) (-129 222046 222072 222107 "CATEGORY" 222112 T -10 (NIL) -8 NIL NIL) (-128 217098 218075 218828 "CARTEN" 221349 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL) (-127 216206 216354 216575 "CARTEN2" 216945 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL) (-126 214504 215358 215614 "CARD" 215970 T CARD (NIL) -8 NIL NIL) (-125 213877 214205 214233 "CACHSET" 214365 T CACHSET (NIL) -9 NIL 214442) (-124 213374 213670 213698 "CABMON" 213748 T CABMON (NIL) -9 NIL 213804) (-123 210931 213066 213173 "BTREE" 213300 NIL BTREE (NIL T) -8 NIL NIL) (-122 208429 210579 210701 "BTOURN" 210841 NIL BTOURN (NIL T) -8 NIL NIL) (-121 205848 207901 207942 "BTCAT" 208010 NIL BTCAT (NIL T) -9 NIL 208087) (-120 205515 205595 205744 "BTCAT-" 205749 NIL BTCAT- (NIL T T) -8 NIL NIL) (-119 200736 204607 204635 "BTAGG" 204891 T BTAGG (NIL) -9 NIL 205070) (-118 200159 200303 200533 "BTAGG-" 200538 NIL BTAGG- (NIL T) -8 NIL NIL) (-117 197203 199437 199652 "BSTREE" 199976 NIL BSTREE (NIL T) -8 NIL NIL) (-116 196341 196467 196651 "BRILL" 197059 NIL BRILL (NIL T) -7 NIL NIL) (-115 193043 195070 195111 "BRAGG" 195760 NIL BRAGG (NIL T) -9 NIL 196017) (-114 191572 191978 192533 "BRAGG-" 192538 NIL BRAGG- (NIL T T) -8 NIL NIL) (-113 184780 190918 191102 "BPADICRT" 191420 NIL BPADICRT (NIL NIL) -8 NIL NIL) (-112 183084 184717 184762 "BPADIC" 184767 NIL BPADIC (NIL NIL) -8 NIL NIL) (-111 182784 182814 182927 "BOUNDZRO" 183048 NIL BOUNDZRO (NIL T T) -7 NIL NIL) (-110 178299 179390 180257 "BOP" 181937 T BOP (NIL) -8 NIL NIL) (-109 175920 176364 176884 "BOP1" 177812 NIL BOP1 (NIL T) -7 NIL NIL) (-108 174539 175250 175473 "BOOLEAN" 175717 T BOOLEAN (NIL) -8 NIL NIL) (-107 173906 174284 174336 "BMODULE" 174341 NIL BMODULE (NIL T T) -9 NIL 174405) (-106 169716 173704 173777 "BITS" 173853 T BITS (NIL) -8 NIL NIL) (-105 168813 169248 169400 "BINFILE" 169584 T BINFILE (NIL) -8 NIL NIL) (-104 168225 168347 168489 "BINDING" 168691 T BINDING (NIL) -8 NIL NIL) (-103 162059 167669 167834 "BINARY" 168080 T BINARY (NIL) -8 NIL NIL) (-102 159887 161315 161356 "BGAGG" 161616 NIL BGAGG (NIL T) -9 NIL 161753) (-101 159718 159750 159841 "BGAGG-" 159846 NIL BGAGG- (NIL T T) -8 NIL NIL) (-100 158816 159102 159307 "BFUNCT" 159533 T BFUNCT (NIL) -8 NIL NIL) (-99 157517 157695 157980 "BEZOUT" 158640 NIL BEZOUT (NIL T T T T T) -7 NIL NIL) (-98 154042 156377 156705 "BBTREE" 157220 NIL BBTREE (NIL T) -8 NIL NIL) (-97 153780 153833 153859 "BASTYPE" 153976 T BASTYPE (NIL) -9 NIL NIL) (-96 153635 153664 153734 "BASTYPE-" 153739 NIL BASTYPE- (NIL T) -8 NIL NIL) (-95 153073 153149 153299 "BALFACT" 153546 NIL BALFACT (NIL T T) -7 NIL NIL) (-94 151895 152492 152677 "AUTOMOR" 152918 NIL AUTOMOR (NIL T) -8 NIL NIL) (-93 151621 151626 151652 "ATTREG" 151657 T ATTREG (NIL) -9 NIL NIL) (-92 149900 150318 150670 "ATTRBUT" 151287 T ATTRBUT (NIL) -8 NIL NIL) (-91 149436 149549 149575 "ATRIG" 149776 T ATRIG (NIL) -9 NIL NIL) (-90 149245 149286 149373 "ATRIG-" 149378 NIL ATRIG- (NIL T) -8 NIL NIL) (-89 147442 149021 149109 "ASTACK" 149188 NIL ASTACK (NIL T) -8 NIL NIL) (-88 145947 146244 146609 "ASSOCEQ" 147124 NIL ASSOCEQ (NIL T T) -7 NIL NIL) (-87 144979 145606 145730 "ASP9" 145854 NIL ASP9 (NIL NIL) -8 NIL NIL) (-86 144743 144927 144966 "ASP8" 144971 NIL ASP8 (NIL NIL) -8 NIL NIL) (-85 143612 144348 144490 "ASP80" 144632 NIL ASP80 (NIL NIL) -8 NIL NIL) (-84 142511 143247 143379 "ASP7" 143511 NIL ASP7 (NIL NIL) -8 NIL NIL) (-83 141465 142188 142306 "ASP78" 142424 NIL ASP78 (NIL NIL) -8 NIL NIL) (-82 140434 141145 141262 "ASP77" 141379 NIL ASP77 (NIL NIL) -8 NIL NIL) (-81 139346 140072 140203 "ASP74" 140334 NIL ASP74 (NIL NIL) -8 NIL NIL) (-80 138246 138981 139113 "ASP73" 139245 NIL ASP73 (NIL NIL) -8 NIL NIL) (-79 137201 137923 138041 "ASP6" 138159 NIL ASP6 (NIL NIL) -8 NIL NIL) (-78 136149 136878 136996 "ASP55" 137114 NIL ASP55 (NIL NIL) -8 NIL NIL) (-77 135099 135823 135942 "ASP50" 136061 NIL ASP50 (NIL NIL) -8 NIL NIL) (-76 134187 134800 134910 "ASP4" 135020 NIL ASP4 (NIL NIL) -8 NIL NIL) (-75 133275 133888 133998 "ASP49" 134108 NIL ASP49 (NIL NIL) -8 NIL NIL) (-74 132060 132814 132982 "ASP42" 133164 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL) (-73 130837 131593 131763 "ASP41" 131947 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL) (-72 129787 130514 130632 "ASP35" 130750 NIL ASP35 (NIL NIL) -8 NIL NIL) (-71 129552 129735 129774 "ASP34" 129779 NIL ASP34 (NIL NIL) -8 NIL NIL) (-70 129289 129356 129432 "ASP33" 129507 NIL ASP33 (NIL NIL) -8 NIL NIL) (-69 128184 128924 129056 "ASP31" 129188 NIL ASP31 (NIL NIL) -8 NIL NIL) (-68 127949 128132 128171 "ASP30" 128176 NIL ASP30 (NIL NIL) -8 NIL NIL) (-67 127684 127753 127829 "ASP29" 127904 NIL ASP29 (NIL NIL) -8 NIL NIL) (-66 127449 127632 127671 "ASP28" 127676 NIL ASP28 (NIL NIL) -8 NIL NIL) (-65 127214 127397 127436 "ASP27" 127441 NIL ASP27 (NIL NIL) -8 NIL NIL) (-64 126298 126912 127023 "ASP24" 127134 NIL ASP24 (NIL NIL) -8 NIL NIL) (-63 125214 125939 126069 "ASP20" 126199 NIL ASP20 (NIL NIL) -8 NIL NIL) (-62 124302 124915 125025 "ASP1" 125135 NIL ASP1 (NIL NIL) -8 NIL NIL) (-61 123246 123976 124095 "ASP19" 124214 NIL ASP19 (NIL NIL) -8 NIL NIL) (-60 122983 123050 123126 "ASP12" 123201 NIL ASP12 (NIL NIL) -8 NIL NIL) (-59 121835 122582 122726 "ASP10" 122870 NIL ASP10 (NIL NIL) -8 NIL NIL) (-58 119734 121679 121770 "ARRAY2" 121775 NIL ARRAY2 (NIL T) -8 NIL NIL) (-57 115550 119382 119496 "ARRAY1" 119651 NIL ARRAY1 (NIL T) -8 NIL NIL) (-56 114582 114755 114976 "ARRAY12" 115373 NIL ARRAY12 (NIL T T) -7 NIL NIL) (-55 108942 110813 110888 "ARR2CAT" 113518 NIL ARR2CAT (NIL T T T) -9 NIL 114276) (-54 106376 107120 108074 "ARR2CAT-" 108079 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL) (-53 105136 105286 105589 "APPRULE" 106214 NIL APPRULE (NIL T T T) -7 NIL NIL) (-52 104789 104837 104955 "APPLYORE" 105082 NIL APPLYORE (NIL T T T) -7 NIL NIL) (-51 103763 104054 104249 "ANY" 104612 T ANY (NIL) -8 NIL NIL) (-50 103041 103164 103321 "ANY1" 103637 NIL ANY1 (NIL T) -7 NIL NIL) (-49 100573 101491 101816 "ANTISYM" 102766 NIL ANTISYM (NIL T NIL) -8 NIL NIL) (-48 100088 100277 100374 "ANON" 100494 T ANON (NIL) -8 NIL NIL) (-47 94165 98633 99084 "AN" 99655 T AN (NIL) -8 NIL NIL) (-46 90519 91917 91967 "AMR" 92706 NIL AMR (NIL T T) -9 NIL 93305) (-45 89632 89853 90215 "AMR-" 90220 NIL AMR- (NIL T T T) -8 NIL NIL) (-44 74182 89549 89610 "ALIST" 89615 NIL ALIST (NIL T T) -8 NIL NIL) (-43 71019 73776 73945 "ALGSC" 74100 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL) (-42 67575 68129 68736 "ALGPKG" 70459 NIL ALGPKG (NIL T T) -7 NIL NIL) (-41 66852 66953 67137 "ALGMFACT" 67461 NIL ALGMFACT (NIL T T T) -7 NIL NIL) (-40 62602 63282 63936 "ALGMANIP" 66376 NIL ALGMANIP (NIL T T) -7 NIL NIL) (-39 53921 62228 62378 "ALGFF" 62535 NIL ALGFF (NIL T T T NIL) -8 NIL NIL) (-38 53117 53248 53427 "ALGFACT" 53779 NIL ALGFACT (NIL T) -7 NIL NIL) (-37 52108 52718 52756 "ALGEBRA" 52816 NIL ALGEBRA (NIL T) -9 NIL 52874) (-36 51826 51885 52017 "ALGEBRA-" 52022 NIL ALGEBRA- (NIL T T) -8 NIL NIL) (-35 34087 49830 49882 "ALAGG" 50018 NIL ALAGG (NIL T T) -9 NIL 50179) (-34 33623 33736 33762 "AHYP" 33963 T AHYP (NIL) -9 NIL NIL) (-33 32554 32802 32828 "AGG" 33327 T AGG (NIL) -9 NIL 33606) (-32 31988 32150 32364 "AGG-" 32369 NIL AGG- (NIL T) -8 NIL NIL) (-31 29675 30093 30510 "AF" 31631 NIL AF (NIL T T) -7 NIL NIL) (-30 28944 29202 29358 "ACPLOT" 29537 T ACPLOT (NIL) -8 NIL NIL) (-29 18411 26357 26408 "ACFS" 27119 NIL ACFS (NIL T) -9 NIL 27358) (-28 16425 16915 17690 "ACFS-" 17695 NIL ACFS- (NIL T T) -8 NIL NIL) (-27 12693 14649 14675 "ACF" 15554 T ACF (NIL) -9 NIL 15966) (-26 11397 11731 12224 "ACF-" 12229 NIL ACF- (NIL T) -8 NIL NIL) (-25 10996 11165 11191 "ABELSG" 11283 T ABELSG (NIL) -9 NIL 11348) (-24 10863 10888 10954 "ABELSG-" 10959 NIL ABELSG- (NIL T) -8 NIL NIL) (-23 10233 10494 10520 "ABELMON" 10690 T ABELMON (NIL) -9 NIL 10802) (-22 9897 9981 10119 "ABELMON-" 10124 NIL ABELMON- (NIL T) -8 NIL NIL) (-21 9232 9578 9604 "ABELGRP" 9729 T ABELGRP (NIL) -9 NIL 9811) (-20 8695 8824 9040 "ABELGRP-" 9045 NIL ABELGRP- (NIL T) -8 NIL NIL) (-19 4333 8035 8074 "A1AGG" 8079 NIL A1AGG (NIL T) -9 NIL 8119) (-18 30 1251 2813 "A1AGG-" 2818 NIL A1AGG- (NIL T T) -8 NIL NIL)) \ No newline at end of file
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-3710 (($ $ (-854)) 26)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-982) (-131)) (T -982))
+NIL
+(-13 (-21) (-1030))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-126) . T) ((-565 (-796)) . T) ((-1030) . T) ((-1018) . T))
+((-2121 (($ $) 16)) (-2562 (($ $) 22)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 49)) (-2771 (($ $) 24)) (-3093 (($ $) 11)) (-2662 (($ $) 38)) (-1408 (((-357) $) NIL) (((-205) $) NIL) (((-825 (-357)) $) 33)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL) (($ (-385 (-525))) 28) (($ (-525)) NIL) (($ (-385 (-525))) 28)) (-2128 (((-712)) 8)) (-3862 (($ $) 39)))
+(((-983 |#1|) (-10 -8 (-15 -2562 (|#1| |#1|)) (-15 -2121 (|#1| |#1|)) (-15 -3093 (|#1| |#1|)) (-15 -2662 (|#1| |#1|)) (-15 -3862 (|#1| |#1|)) (-15 -2771 (|#1| |#1|)) (-15 -2011 ((-822 (-357) |#1|) |#1| (-825 (-357)) (-822 (-357) |#1|))) (-15 -1408 ((-825 (-357)) |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -3022 (|#1| (-525))) (-15 -1408 ((-205) |#1|)) (-15 -1408 ((-357) |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -3022 (|#1| |#1|)) (-15 -3022 (|#1| (-525))) (-15 -2128 ((-712))) (-15 -3022 ((-796) |#1|))) (-984)) (T -983))
+((-2128 (*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-983 *3)) (-4 *3 (-984)))))
+(-10 -8 (-15 -2562 (|#1| |#1|)) (-15 -2121 (|#1| |#1|)) (-15 -3093 (|#1| |#1|)) (-15 -2662 (|#1| |#1|)) (-15 -3862 (|#1| |#1|)) (-15 -2771 (|#1| |#1|)) (-15 -2011 ((-822 (-357) |#1|) |#1| (-825 (-357)) (-822 (-357) |#1|))) (-15 -1408 ((-825 (-357)) |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -3022 (|#1| (-525))) (-15 -1408 ((-205) |#1|)) (-15 -1408 ((-357) |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -3022 (|#1| |#1|)) (-15 -3022 (|#1| (-525))) (-15 -2128 ((-712))) (-15 -3022 ((-796) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1508 (((-525) $) 89)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2121 (($ $) 87)) (-2157 (((-3 $ "failed") $ $) 19)) (-1291 (($ $) 73)) (-2827 (((-396 $) $) 72)) (-1361 (($ $) 97)) (-1947 (((-108) $ $) 59)) (-3329 (((-525) $) 114)) (-3798 (($) 17 T CONST)) (-2562 (($ $) 86)) (-1251 (((-3 (-525) "failed") $) 102) (((-3 (-385 (-525)) "failed") $) 99)) (-3528 (((-525) $) 101) (((-385 (-525)) $) 98)) (-2129 (($ $ $) 55)) (-4163 (((-3 $ "failed") $) 34)) (-2110 (($ $ $) 56)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 51)) (-2744 (((-108) $) 71)) (-2134 (((-108) $) 112)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 93)) (-2824 (((-108) $) 31)) (-3956 (($ $ (-525)) 96)) (-2771 (($ $) 92)) (-2732 (((-108) $) 113)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 52)) (-3741 (($ $ $) 111)) (-2478 (($ $ $) 110)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-1622 (($ $) 70)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-3093 (($ $) 88)) (-2662 (($ $) 90)) (-1348 (((-396 $) $) 74)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2089 (((-3 $ "failed") $ $) 42)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 50)) (-1712 (((-712) $) 58)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 57)) (-1408 (((-357) $) 105) (((-205) $) 104) (((-825 (-357)) $) 94)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43) (($ (-385 (-525))) 65) (($ (-525)) 103) (($ (-385 (-525))) 100)) (-2128 (((-712)) 29)) (-3862 (($ $) 91)) (-2495 (((-108) $ $) 39)) (-1539 (($ $) 115)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 69)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4135 (((-108) $ $) 108)) (-4119 (((-108) $ $) 107)) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 109)) (-4112 (((-108) $ $) 106)) (-4173 (($ $ $) 64)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 68) (($ $ (-385 (-525))) 95)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 (-525))) 67) (($ (-385 (-525)) $) 66)))
+(((-984) (-131)) (T -984))
+((-1539 (*1 *1 *1) (-4 *1 (-984))) (-2771 (*1 *1 *1) (-4 *1 (-984))) (-3862 (*1 *1 *1) (-4 *1 (-984))) (-2662 (*1 *1 *1) (-4 *1 (-984))) (-1508 (*1 *2 *1) (-12 (-4 *1 (-984)) (-5 *2 (-525)))) (-3093 (*1 *1 *1) (-4 *1 (-984))) (-2121 (*1 *1 *1) (-4 *1 (-984))) (-2562 (*1 *1 *1) (-4 *1 (-984))))
+(-13 (-341) (-786) (-951) (-966 (-525)) (-966 (-385 (-525))) (-932) (-566 (-825 (-357))) (-819 (-357)) (-138) (-10 -8 (-15 -2771 ($ $)) (-15 -3862 ($ $)) (-15 -2662 ($ $)) (-15 -1508 ((-525) $)) (-15 -3093 ($ $)) (-15 -2121 ($ $)) (-15 -2562 ($ $)) (-15 -1539 ($ $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-126) . T) ((-138) . T) ((-565 (-796)) . T) ((-160) . T) ((-566 (-205)) . T) ((-566 (-357)) . T) ((-566 (-825 (-357))) . T) ((-223) . T) ((-269) . T) ((-286) . T) ((-341) . T) ((-429) . T) ((-517) . T) ((-593 #0#) . T) ((-593 $) . T) ((-659 #0#) . T) ((-659 $) . T) ((-668) . T) ((-732) . T) ((-733) . T) ((-735) . T) ((-736) . T) ((-786) . T) ((-788) . T) ((-819 (-357)) . T) ((-853) . T) ((-932) . T) ((-951) . T) ((-966 (-385 (-525))) . T) ((-966 (-525)) . T) ((-981 #0#) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1129) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) |#2| $) 23)) (-3032 ((|#1| $) 10)) (-3329 (((-525) |#2| $) 88)) (-3642 (((-3 $ "failed") |#2| (-854)) 57)) (-3400 ((|#1| $) 28)) (-1377 ((|#1| |#2| $ |#1|) 37)) (-2960 (($ $) 25)) (-4163 (((-3 |#2| "failed") |#2| $) 87)) (-2134 (((-108) |#2| $) NIL)) (-2732 (((-108) |#2| $) NIL)) (-3810 (((-108) |#2| $) 24)) (-1521 ((|#1| $) 89)) (-3388 ((|#1| $) 27)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1478 ((|#2| $) 79)) (-3022 (((-796) $) 70)) (-2176 ((|#1| |#2| $ |#1|) 38)) (-1282 (((-591 $) |#2|) 59)) (-4096 (((-108) $ $) 74)))
+(((-985 |#1| |#2|) (-13 (-991 |#1| |#2|) (-10 -8 (-15 -3388 (|#1| $)) (-15 -3400 (|#1| $)) (-15 -3032 (|#1| $)) (-15 -1521 (|#1| $)) (-15 -2960 ($ $)) (-15 -3810 ((-108) |#2| $)) (-15 -1377 (|#1| |#2| $ |#1|)))) (-13 (-786) (-341)) (-1147 |#1|)) (T -985))
+((-1377 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-786) (-341))) (-5 *1 (-985 *2 *3)) (-4 *3 (-1147 *2)))) (-3388 (*1 *2 *1) (-12 (-4 *2 (-13 (-786) (-341))) (-5 *1 (-985 *2 *3)) (-4 *3 (-1147 *2)))) (-3400 (*1 *2 *1) (-12 (-4 *2 (-13 (-786) (-341))) (-5 *1 (-985 *2 *3)) (-4 *3 (-1147 *2)))) (-3032 (*1 *2 *1) (-12 (-4 *2 (-13 (-786) (-341))) (-5 *1 (-985 *2 *3)) (-4 *3 (-1147 *2)))) (-1521 (*1 *2 *1) (-12 (-4 *2 (-13 (-786) (-341))) (-5 *1 (-985 *2 *3)) (-4 *3 (-1147 *2)))) (-2960 (*1 *1 *1) (-12 (-4 *2 (-13 (-786) (-341))) (-5 *1 (-985 *2 *3)) (-4 *3 (-1147 *2)))) (-3810 (*1 *2 *3 *1) (-12 (-4 *4 (-13 (-786) (-341))) (-5 *2 (-108)) (-5 *1 (-985 *4 *3)) (-4 *3 (-1147 *4)))))
+(-13 (-991 |#1| |#2|) (-10 -8 (-15 -3388 (|#1| $)) (-15 -3400 (|#1| $)) (-15 -3032 (|#1| $)) (-15 -1521 (|#1| $)) (-15 -2960 ($ $)) (-15 -3810 ((-108) |#2| $)) (-15 -1377 (|#1| |#2| $ |#1|))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-3391 (($ $ $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1737 (($ $ $ $) NIL)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3329 (((-525) $) NIL)) (-3427 (($ $ $) NIL)) (-3798 (($) NIL T CONST)) (-3013 (($ (-1089)) 10) (($ (-525)) 7)) (-1251 (((-3 (-525) "failed") $) NIL)) (-3528 (((-525) $) NIL)) (-2129 (($ $ $) NIL)) (-3305 (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL) (((-631 (-525)) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-1511 (((-3 (-385 (-525)) "failed") $) NIL)) (-1352 (((-108) $) NIL)) (-1726 (((-385 (-525)) $) NIL)) (-3377 (($) NIL) (($ $) NIL)) (-2110 (($ $ $) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2467 (($ $ $ $) NIL)) (-3046 (($ $ $) NIL)) (-2134 (((-108) $) NIL)) (-1994 (($ $ $) NIL)) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL)) (-2824 (((-108) $) NIL)) (-2419 (((-108) $) NIL)) (-2085 (((-3 $ "failed") $) NIL)) (-2732 (((-108) $) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3989 (($ $ $ $) NIL)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-3291 (($ $) NIL)) (-1657 (($ $) NIL)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-2885 (($ $ $) NIL)) (-3506 (($) NIL T CONST)) (-1699 (($ $) NIL)) (-2047 (((-1036) $) NIL) (($ $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) NIL) (($ (-591 $)) NIL)) (-1603 (($ $) NIL)) (-1348 (((-396 $) $) NIL)) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3451 (((-108) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-3266 (($ $ (-712)) NIL) (($ $) NIL)) (-4140 (($ $) NIL)) (-3199 (($ $) NIL)) (-1408 (((-525) $) 16) (((-501) $) NIL) (((-825 (-525)) $) NIL) (((-357) $) NIL) (((-205) $) NIL) (($ (-1089)) 9)) (-3022 (((-796) $) 20) (($ (-525)) 6) (($ $) NIL) (($ (-525)) 6)) (-2128 (((-712)) NIL)) (-1932 (((-108) $ $) NIL)) (-2516 (($ $ $) NIL)) (-2672 (($) NIL)) (-2495 (((-108) $ $) NIL)) (-1938 (($ $ $ $) NIL)) (-1539 (($ $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ (-712)) NIL) (($ $) NIL)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) NIL)) (-4164 (($ $) 19) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL)))
+(((-986) (-13 (-510) (-10 -8 (-6 -4237) (-6 -4242) (-6 -4238) (-15 -1408 ($ (-1089))) (-15 -3013 ($ (-1089))) (-15 -3013 ($ (-525)))))) (T -986))
+((-1408 (*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-986)))) (-3013 (*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-986)))) (-3013 (*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-986)))))
+(-13 (-510) (-10 -8 (-6 -4237) (-6 -4242) (-6 -4238) (-15 -1408 ($ (-1089))) (-15 -3013 ($ (-1089))) (-15 -3013 ($ (-525)))))
+((-3008 (((-108) $ $) NIL (-3321 (|has| (-51) (-1018)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018))))) (-1260 (($) NIL) (($ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) NIL)) (-3296 (((-1176) $ (-1089) (-1089)) NIL (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) NIL)) (-2324 (($) 9)) (-3186 (((-51) $ (-1089) (-51)) NIL)) (-1945 (($ $) 30)) (-2259 (($ $) 28)) (-1473 (($ $) 27)) (-1445 (($ $) 29)) (-2810 (($ $) 32)) (-1756 (($ $) 33)) (-2140 (($ $) 26)) (-3897 (($ $) 31)) (-1797 (($ (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) 25 (|has| $ (-6 -4250)))) (-2401 (((-3 (-51) "failed") (-1089) $) 40)) (-3798 (($) NIL T CONST)) (-4102 (($) 7)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018))))) (-3901 (($ (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) $) 50 (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-3 (-51) "failed") (-1089) $) NIL)) (-3677 (($ (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (($ (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250)))) (-1227 (((-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $ (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (((-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $ (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) NIL (|has| $ (-6 -4250))) (((-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250)))) (-2873 (((-3 (-1072) "failed") $ (-1072) (-525)) 59)) (-3255 (((-51) $ (-1089) (-51)) NIL (|has| $ (-6 -4251)))) (-3217 (((-51) $ (-1089)) NIL)) (-3454 (((-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-591 (-51)) $) NIL (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-1089) $) NIL (|has| (-1089) (-788)))) (-2552 (((-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) 35 (|has| $ (-6 -4250))) (((-591 (-51)) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-51) (-1018))))) (-3468 (((-1089) $) NIL (|has| (-1089) (-788)))) (-3249 (($ (-1 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4251))) (($ (-1 (-51) (-51)) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL) (($ (-1 (-51) (-51)) $) NIL) (($ (-1 (-51) (-51) (-51)) $ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (-3321 (|has| (-51) (-1018)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018))))) (-1542 (((-591 (-1089)) $) NIL)) (-2484 (((-108) (-1089) $) NIL)) (-1464 (((-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) $) NIL)) (-2470 (($ (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) $) 43)) (-2511 (((-591 (-1089)) $) NIL)) (-2791 (((-108) (-1089) $) NIL)) (-2047 (((-1036) $) NIL (-3321 (|has| (-51) (-1018)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018))))) (-2060 (((-357) $ (-1089)) 49)) (-3544 (((-591 (-1072)) $ (-1072)) 60)) (-3066 (((-51) $) NIL (|has| (-1089) (-788)))) (-2069 (((-3 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) "failed") (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL)) (-1941 (($ $ (-51)) NIL (|has| $ (-6 -4251)))) (-3631 (((-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) $) NIL)) (-1623 (((-108) (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))))) NIL (-12 (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (($ $ (-273 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) NIL (-12 (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (($ $ (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) NIL (-12 (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (($ $ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) NIL (-12 (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-288 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (($ $ (-591 (-51)) (-591 (-51))) NIL (-12 (|has| (-51) (-288 (-51))) (|has| (-51) (-1018)))) (($ $ (-51) (-51)) NIL (-12 (|has| (-51) (-288 (-51))) (|has| (-51) (-1018)))) (($ $ (-273 (-51))) NIL (-12 (|has| (-51) (-288 (-51))) (|has| (-51) (-1018)))) (($ $ (-591 (-273 (-51)))) NIL (-12 (|has| (-51) (-288 (-51))) (|has| (-51) (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-51) (-1018))))) (-3339 (((-591 (-51)) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 (((-51) $ (-1089)) NIL) (((-51) $ (-1089) (-51)) NIL)) (-2311 (($) NIL) (($ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) NIL)) (-3648 (($ $ (-1089)) 51)) (-2064 (((-712) (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018)))) (((-712) (-51) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-51) (-1018)))) (((-712) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-566 (-501))))) (-3036 (($ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) 37)) (-3690 (($ $ $) 38)) (-3022 (((-796) $) NIL (-3321 (|has| (-51) (-565 (-796))) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-565 (-796)))))) (-3597 (($ $ (-1089) (-357)) 47)) (-3368 (($ $ (-1089) (-357)) 48)) (-1870 (($ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))))) NIL)) (-4158 (((-108) (-1 (-108) (-2 (|:| -2019 (-1089)) (|:| -1221 (-51)))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (-3321 (|has| (-51) (-1018)) (|has| (-2 (|:| -2019 (-1089)) (|:| -1221 (-51))) (-1018))))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-987) (-13 (-1102 (-1089) (-51)) (-10 -8 (-15 -3690 ($ $ $)) (-15 -4102 ($)) (-15 -2140 ($ $)) (-15 -1473 ($ $)) (-15 -2259 ($ $)) (-15 -1445 ($ $)) (-15 -3897 ($ $)) (-15 -1945 ($ $)) (-15 -2810 ($ $)) (-15 -1756 ($ $)) (-15 -3597 ($ $ (-1089) (-357))) (-15 -3368 ($ $ (-1089) (-357))) (-15 -2060 ((-357) $ (-1089))) (-15 -3544 ((-591 (-1072)) $ (-1072))) (-15 -3648 ($ $ (-1089))) (-15 -2324 ($)) (-15 -2873 ((-3 (-1072) "failed") $ (-1072) (-525))) (-6 -4250)))) (T -987))
+((-3690 (*1 *1 *1 *1) (-5 *1 (-987))) (-4102 (*1 *1) (-5 *1 (-987))) (-2140 (*1 *1 *1) (-5 *1 (-987))) (-1473 (*1 *1 *1) (-5 *1 (-987))) (-2259 (*1 *1 *1) (-5 *1 (-987))) (-1445 (*1 *1 *1) (-5 *1 (-987))) (-3897 (*1 *1 *1) (-5 *1 (-987))) (-1945 (*1 *1 *1) (-5 *1 (-987))) (-2810 (*1 *1 *1) (-5 *1 (-987))) (-1756 (*1 *1 *1) (-5 *1 (-987))) (-3597 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-357)) (-5 *1 (-987)))) (-3368 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-357)) (-5 *1 (-987)))) (-2060 (*1 *2 *1 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-357)) (-5 *1 (-987)))) (-3544 (*1 *2 *1 *3) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-987)) (-5 *3 (-1072)))) (-3648 (*1 *1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-987)))) (-2324 (*1 *1) (-5 *1 (-987))) (-2873 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1072)) (-5 *3 (-525)) (-5 *1 (-987)))))
+(-13 (-1102 (-1089) (-51)) (-10 -8 (-15 -3690 ($ $ $)) (-15 -4102 ($)) (-15 -2140 ($ $)) (-15 -1473 ($ $)) (-15 -2259 ($ $)) (-15 -1445 ($ $)) (-15 -3897 ($ $)) (-15 -1945 ($ $)) (-15 -2810 ($ $)) (-15 -1756 ($ $)) (-15 -3597 ($ $ (-1089) (-357))) (-15 -3368 ($ $ (-1089) (-357))) (-15 -2060 ((-357) $ (-1089))) (-15 -3544 ((-591 (-1072)) $ (-1072))) (-15 -3648 ($ $ (-1089))) (-15 -2324 ($)) (-15 -2873 ((-3 (-1072) "failed") $ (-1072) (-525))) (-6 -4250)))
+((-3970 (($ $) 45)) (-2385 (((-108) $ $) 74)) (-1251 (((-3 |#2| "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL) (((-3 (-525) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-885 (-385 (-525)))) 227) (((-3 $ "failed") (-885 (-525))) 226) (((-3 $ "failed") (-885 |#2|)) 229)) (-3528 ((|#2| $) NIL) (((-385 (-525)) $) NIL) (((-525) $) NIL) ((|#4| $) NIL) (($ (-885 (-385 (-525)))) 215) (($ (-885 (-525))) 211) (($ (-885 |#2|)) 231)) (-1710 (($ $) NIL) (($ $ |#4|) 43)) (-3135 (((-108) $ $) 112) (((-108) $ (-591 $)) 113)) (-2509 (((-108) $) 56)) (-3867 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 107)) (-2587 (($ $) 138)) (-2053 (($ $) 134)) (-1706 (($ $) 133)) (-2658 (($ $ $) 79) (($ $ $ |#4|) 84)) (-3585 (($ $ $) 82) (($ $ $ |#4|) 86)) (-1809 (((-108) $ $) 121) (((-108) $ (-591 $)) 122)) (-2009 ((|#4| $) 33)) (-2402 (($ $ $) 110)) (-1860 (((-108) $) 55)) (-2537 (((-712) $) 35)) (-1265 (($ $) 152)) (-2628 (($ $) 149)) (-3274 (((-591 $) $) 68)) (-2896 (($ $) 57)) (-2779 (($ $) 145)) (-2150 (((-591 $) $) 65)) (-3587 (($ $) 59)) (-1678 ((|#2| $) NIL) (($ $ |#4|) 38)) (-2816 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -2741 (-712))) $ $) 111)) (-4184 (((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -2963 $) (|:| -3407 $)) $ $) 108) (((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -2963 $) (|:| -3407 $)) $ $ |#4|) 109)) (-1380 (((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -3407 $)) $ $) 104) (((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -3407 $)) $ $ |#4|) 105)) (-2597 (($ $ $) 89) (($ $ $ |#4|) 95)) (-4074 (($ $ $) 90) (($ $ $ |#4|) 96)) (-3878 (((-591 $) $) 51)) (-3196 (((-108) $ $) 118) (((-108) $ (-591 $)) 119)) (-4066 (($ $ $) 103)) (-3506 (($ $) 37)) (-2154 (((-108) $ $) 72)) (-2115 (((-108) $ $) 114) (((-108) $ (-591 $)) 116)) (-2731 (($ $ $) 101)) (-1762 (($ $) 40)) (-1399 ((|#2| |#2| $) 142) (($ (-591 $)) NIL) (($ $ $) NIL)) (-1851 (($ $ |#2|) NIL) (($ $ $) 131)) (-2638 (($ $ |#2|) 126) (($ $ $) 129)) (-3303 (($ $) 48)) (-3486 (($ $) 52)) (-1408 (((-825 (-357)) $) NIL) (((-825 (-525)) $) NIL) (((-501) $) NIL) (($ (-885 (-385 (-525)))) 217) (($ (-885 (-525))) 213) (($ (-885 |#2|)) 228) (((-1072) $) 250) (((-885 |#2|) $) 162)) (-3022 (((-796) $) 30) (($ (-525)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-885 |#2|) $) 163) (($ (-385 (-525))) NIL) (($ $) NIL)) (-1217 (((-3 (-108) "failed") $ $) 71)))
+(((-988 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3022 (|#1| |#1|)) (-15 -1399 (|#1| |#1| |#1|)) (-15 -1399 (|#1| (-591 |#1|))) (-15 -3022 (|#1| (-385 (-525)))) (-15 -3022 ((-885 |#2|) |#1|)) (-15 -1408 ((-885 |#2|) |#1|)) (-15 -1408 ((-1072) |#1|)) (-15 -1265 (|#1| |#1|)) (-15 -2628 (|#1| |#1|)) (-15 -2779 (|#1| |#1|)) (-15 -2587 (|#1| |#1|)) (-15 -1399 (|#2| |#2| |#1|)) (-15 -1851 (|#1| |#1| |#1|)) (-15 -2638 (|#1| |#1| |#1|)) (-15 -1851 (|#1| |#1| |#2|)) (-15 -2638 (|#1| |#1| |#2|)) (-15 -2053 (|#1| |#1|)) (-15 -1706 (|#1| |#1|)) (-15 -1408 (|#1| (-885 |#2|))) (-15 -3528 (|#1| (-885 |#2|))) (-15 -1251 ((-3 |#1| "failed") (-885 |#2|))) (-15 -1408 (|#1| (-885 (-525)))) (-15 -3528 (|#1| (-885 (-525)))) (-15 -1251 ((-3 |#1| "failed") (-885 (-525)))) (-15 -1408 (|#1| (-885 (-385 (-525))))) (-15 -3528 (|#1| (-885 (-385 (-525))))) (-15 -1251 ((-3 |#1| "failed") (-885 (-385 (-525))))) (-15 -4066 (|#1| |#1| |#1|)) (-15 -2731 (|#1| |#1| |#1|)) (-15 -2816 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -2741 (-712))) |#1| |#1|)) (-15 -2402 (|#1| |#1| |#1|)) (-15 -3867 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -4184 ((-2 (|:| -3482 |#1|) (|:| |gap| (-712)) (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1| |#4|)) (-15 -4184 ((-2 (|:| -3482 |#1|) (|:| |gap| (-712)) (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -1380 ((-2 (|:| -3482 |#1|) (|:| |gap| (-712)) (|:| -3407 |#1|)) |#1| |#1| |#4|)) (-15 -1380 ((-2 (|:| -3482 |#1|) (|:| |gap| (-712)) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -4074 (|#1| |#1| |#1| |#4|)) (-15 -2597 (|#1| |#1| |#1| |#4|)) (-15 -4074 (|#1| |#1| |#1|)) (-15 -2597 (|#1| |#1| |#1|)) (-15 -3585 (|#1| |#1| |#1| |#4|)) (-15 -2658 (|#1| |#1| |#1| |#4|)) (-15 -3585 (|#1| |#1| |#1|)) (-15 -2658 (|#1| |#1| |#1|)) (-15 -1809 ((-108) |#1| (-591 |#1|))) (-15 -1809 ((-108) |#1| |#1|)) (-15 -3196 ((-108) |#1| (-591 |#1|))) (-15 -3196 ((-108) |#1| |#1|)) (-15 -2115 ((-108) |#1| (-591 |#1|))) (-15 -2115 ((-108) |#1| |#1|)) (-15 -3135 ((-108) |#1| (-591 |#1|))) (-15 -3135 ((-108) |#1| |#1|)) (-15 -2385 ((-108) |#1| |#1|)) (-15 -2154 ((-108) |#1| |#1|)) (-15 -1217 ((-3 (-108) "failed") |#1| |#1|)) (-15 -3274 ((-591 |#1|) |#1|)) (-15 -2150 ((-591 |#1|) |#1|)) (-15 -3587 (|#1| |#1|)) (-15 -2896 (|#1| |#1|)) (-15 -2509 ((-108) |#1|)) (-15 -1860 ((-108) |#1|)) (-15 -1710 (|#1| |#1| |#4|)) (-15 -1678 (|#1| |#1| |#4|)) (-15 -3486 (|#1| |#1|)) (-15 -3878 ((-591 |#1|) |#1|)) (-15 -3303 (|#1| |#1|)) (-15 -3970 (|#1| |#1|)) (-15 -1762 (|#1| |#1|)) (-15 -3506 (|#1| |#1|)) (-15 -2537 ((-712) |#1|)) (-15 -2009 (|#4| |#1|)) (-15 -1408 ((-501) |#1|)) (-15 -1408 ((-825 (-525)) |#1|)) (-15 -1408 ((-825 (-357)) |#1|)) (-15 -3528 (|#4| |#1|)) (-15 -1251 ((-3 |#4| "failed") |#1|)) (-15 -3022 (|#1| |#4|)) (-15 -1678 (|#2| |#1|)) (-15 -1710 (|#1| |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3022 (|#1| |#2|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|))) (-989 |#2| |#3| |#4|) (-975) (-734) (-788)) (T -988))
+NIL
+(-10 -8 (-15 -3022 (|#1| |#1|)) (-15 -1399 (|#1| |#1| |#1|)) (-15 -1399 (|#1| (-591 |#1|))) (-15 -3022 (|#1| (-385 (-525)))) (-15 -3022 ((-885 |#2|) |#1|)) (-15 -1408 ((-885 |#2|) |#1|)) (-15 -1408 ((-1072) |#1|)) (-15 -1265 (|#1| |#1|)) (-15 -2628 (|#1| |#1|)) (-15 -2779 (|#1| |#1|)) (-15 -2587 (|#1| |#1|)) (-15 -1399 (|#2| |#2| |#1|)) (-15 -1851 (|#1| |#1| |#1|)) (-15 -2638 (|#1| |#1| |#1|)) (-15 -1851 (|#1| |#1| |#2|)) (-15 -2638 (|#1| |#1| |#2|)) (-15 -2053 (|#1| |#1|)) (-15 -1706 (|#1| |#1|)) (-15 -1408 (|#1| (-885 |#2|))) (-15 -3528 (|#1| (-885 |#2|))) (-15 -1251 ((-3 |#1| "failed") (-885 |#2|))) (-15 -1408 (|#1| (-885 (-525)))) (-15 -3528 (|#1| (-885 (-525)))) (-15 -1251 ((-3 |#1| "failed") (-885 (-525)))) (-15 -1408 (|#1| (-885 (-385 (-525))))) (-15 -3528 (|#1| (-885 (-385 (-525))))) (-15 -1251 ((-3 |#1| "failed") (-885 (-385 (-525))))) (-15 -4066 (|#1| |#1| |#1|)) (-15 -2731 (|#1| |#1| |#1|)) (-15 -2816 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -2741 (-712))) |#1| |#1|)) (-15 -2402 (|#1| |#1| |#1|)) (-15 -3867 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -4184 ((-2 (|:| -3482 |#1|) (|:| |gap| (-712)) (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1| |#4|)) (-15 -4184 ((-2 (|:| -3482 |#1|) (|:| |gap| (-712)) (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -1380 ((-2 (|:| -3482 |#1|) (|:| |gap| (-712)) (|:| -3407 |#1|)) |#1| |#1| |#4|)) (-15 -1380 ((-2 (|:| -3482 |#1|) (|:| |gap| (-712)) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -4074 (|#1| |#1| |#1| |#4|)) (-15 -2597 (|#1| |#1| |#1| |#4|)) (-15 -4074 (|#1| |#1| |#1|)) (-15 -2597 (|#1| |#1| |#1|)) (-15 -3585 (|#1| |#1| |#1| |#4|)) (-15 -2658 (|#1| |#1| |#1| |#4|)) (-15 -3585 (|#1| |#1| |#1|)) (-15 -2658 (|#1| |#1| |#1|)) (-15 -1809 ((-108) |#1| (-591 |#1|))) (-15 -1809 ((-108) |#1| |#1|)) (-15 -3196 ((-108) |#1| (-591 |#1|))) (-15 -3196 ((-108) |#1| |#1|)) (-15 -2115 ((-108) |#1| (-591 |#1|))) (-15 -2115 ((-108) |#1| |#1|)) (-15 -3135 ((-108) |#1| (-591 |#1|))) (-15 -3135 ((-108) |#1| |#1|)) (-15 -2385 ((-108) |#1| |#1|)) (-15 -2154 ((-108) |#1| |#1|)) (-15 -1217 ((-3 (-108) "failed") |#1| |#1|)) (-15 -3274 ((-591 |#1|) |#1|)) (-15 -2150 ((-591 |#1|) |#1|)) (-15 -3587 (|#1| |#1|)) (-15 -2896 (|#1| |#1|)) (-15 -2509 ((-108) |#1|)) (-15 -1860 ((-108) |#1|)) (-15 -1710 (|#1| |#1| |#4|)) (-15 -1678 (|#1| |#1| |#4|)) (-15 -3486 (|#1| |#1|)) (-15 -3878 ((-591 |#1|) |#1|)) (-15 -3303 (|#1| |#1|)) (-15 -3970 (|#1| |#1|)) (-15 -1762 (|#1| |#1|)) (-15 -3506 (|#1| |#1|)) (-15 -2537 ((-712) |#1|)) (-15 -2009 (|#4| |#1|)) (-15 -1408 ((-501) |#1|)) (-15 -1408 ((-825 (-525)) |#1|)) (-15 -1408 ((-825 (-357)) |#1|)) (-15 -3528 (|#4| |#1|)) (-15 -1251 ((-3 |#4| "failed") |#1|)) (-15 -3022 (|#1| |#4|)) (-15 -1678 (|#2| |#1|)) (-15 -1710 (|#1| |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3022 (|#1| |#2|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1507 (((-591 |#3|) $) 110)) (-1312 (((-1085 $) $ |#3|) 125) (((-1085 |#1|) $) 124)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 87 (|has| |#1| (-517)))) (-3706 (($ $) 88 (|has| |#1| (-517)))) (-1715 (((-108) $) 90 (|has| |#1| (-517)))) (-4090 (((-712) $) 112) (((-712) $ (-591 |#3|)) 111)) (-3970 (($ $) 271)) (-2385 (((-108) $ $) 257)) (-2157 (((-3 $ "failed") $ $) 19)) (-2944 (($ $ $) 216 (|has| |#1| (-517)))) (-2206 (((-591 $) $ $) 211 (|has| |#1| (-517)))) (-1965 (((-396 (-1085 $)) (-1085 $)) 100 (|has| |#1| (-842)))) (-1291 (($ $) 98 (|has| |#1| (-429)))) (-2827 (((-396 $) $) 97 (|has| |#1| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) 103 (|has| |#1| (-842)))) (-3798 (($) 17 T CONST)) (-1251 (((-3 |#1| "failed") $) 164) (((-3 (-385 (-525)) "failed") $) 162 (|has| |#1| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) 160 (|has| |#1| (-966 (-525)))) (((-3 |#3| "failed") $) 136) (((-3 $ "failed") (-885 (-385 (-525)))) 231 (-12 (|has| |#1| (-37 (-385 (-525)))) (|has| |#3| (-566 (-1089))))) (((-3 $ "failed") (-885 (-525))) 228 (-3321 (-12 (-2247 (|has| |#1| (-37 (-385 (-525))))) (|has| |#1| (-37 (-525))) (|has| |#3| (-566 (-1089)))) (-12 (|has| |#1| (-37 (-385 (-525)))) (|has| |#3| (-566 (-1089)))))) (((-3 $ "failed") (-885 |#1|)) 225 (-3321 (-12 (-2247 (|has| |#1| (-37 (-385 (-525))))) (-2247 (|has| |#1| (-37 (-525)))) (|has| |#3| (-566 (-1089)))) (-12 (-2247 (|has| |#1| (-510))) (-2247 (|has| |#1| (-37 (-385 (-525))))) (|has| |#1| (-37 (-525))) (|has| |#3| (-566 (-1089)))) (-12 (-2247 (|has| |#1| (-923 (-525)))) (|has| |#1| (-37 (-385 (-525)))) (|has| |#3| (-566 (-1089))))))) (-3528 ((|#1| $) 165) (((-385 (-525)) $) 161 (|has| |#1| (-966 (-385 (-525))))) (((-525) $) 159 (|has| |#1| (-966 (-525)))) ((|#3| $) 135) (($ (-885 (-385 (-525)))) 230 (-12 (|has| |#1| (-37 (-385 (-525)))) (|has| |#3| (-566 (-1089))))) (($ (-885 (-525))) 227 (-3321 (-12 (-2247 (|has| |#1| (-37 (-385 (-525))))) (|has| |#1| (-37 (-525))) (|has| |#3| (-566 (-1089)))) (-12 (|has| |#1| (-37 (-385 (-525)))) (|has| |#3| (-566 (-1089)))))) (($ (-885 |#1|)) 224 (-3321 (-12 (-2247 (|has| |#1| (-37 (-385 (-525))))) (-2247 (|has| |#1| (-37 (-525)))) (|has| |#3| (-566 (-1089)))) (-12 (-2247 (|has| |#1| (-510))) (-2247 (|has| |#1| (-37 (-385 (-525))))) (|has| |#1| (-37 (-525))) (|has| |#3| (-566 (-1089)))) (-12 (-2247 (|has| |#1| (-923 (-525)))) (|has| |#1| (-37 (-385 (-525)))) (|has| |#3| (-566 (-1089))))))) (-2805 (($ $ $ |#3|) 108 (|has| |#1| (-160))) (($ $ $) 212 (|has| |#1| (-517)))) (-1710 (($ $) 154) (($ $ |#3|) 266)) (-3305 (((-631 (-525)) (-631 $)) 134 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 133 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) 132) (((-631 |#1|) (-631 $)) 131)) (-3135 (((-108) $ $) 256) (((-108) $ (-591 $)) 255)) (-4163 (((-3 $ "failed") $) 34)) (-2509 (((-108) $) 264)) (-3867 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 236)) (-2587 (($ $) 205 (|has| |#1| (-429)))) (-3208 (($ $) 176 (|has| |#1| (-429))) (($ $ |#3|) 105 (|has| |#1| (-429)))) (-1695 (((-591 $) $) 109)) (-2744 (((-108) $) 96 (|has| |#1| (-842)))) (-2053 (($ $) 221 (|has| |#1| (-517)))) (-1706 (($ $) 222 (|has| |#1| (-517)))) (-2658 (($ $ $) 248) (($ $ $ |#3|) 246)) (-3585 (($ $ $) 247) (($ $ $ |#3|) 245)) (-2056 (($ $ |#1| |#2| $) 172)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 84 (-12 (|has| |#3| (-819 (-357))) (|has| |#1| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 83 (-12 (|has| |#3| (-819 (-525))) (|has| |#1| (-819 (-525)))))) (-2824 (((-108) $) 31)) (-4010 (((-712) $) 169)) (-1809 (((-108) $ $) 250) (((-108) $ (-591 $)) 249)) (-3534 (($ $ $ $ $) 207 (|has| |#1| (-517)))) (-2009 ((|#3| $) 275)) (-1493 (($ (-1085 |#1|) |#3|) 117) (($ (-1085 $) |#3|) 116)) (-1922 (((-591 $) $) 126)) (-2202 (((-108) $) 152)) (-1480 (($ |#1| |#2|) 153) (($ $ |#3| (-712)) 119) (($ $ (-591 |#3|) (-591 (-712))) 118)) (-2402 (($ $ $) 235)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ |#3|) 120)) (-1860 (((-108) $) 265)) (-2624 ((|#2| $) 170) (((-712) $ |#3|) 122) (((-591 (-712)) $ (-591 |#3|)) 121)) (-3741 (($ $ $) 79 (|has| |#1| (-788)))) (-2537 (((-712) $) 274)) (-2478 (($ $ $) 78 (|has| |#1| (-788)))) (-4015 (($ (-1 |#2| |#2|) $) 171)) (-1340 (($ (-1 |#1| |#1|) $) 151)) (-2254 (((-3 |#3| "failed") $) 123)) (-1265 (($ $) 202 (|has| |#1| (-429)))) (-2628 (($ $) 203 (|has| |#1| (-429)))) (-3274 (((-591 $) $) 260)) (-2896 (($ $) 263)) (-2779 (($ $) 204 (|has| |#1| (-429)))) (-2150 (((-591 $) $) 261)) (-3587 (($ $) 262)) (-1661 (($ $) 149)) (-1678 ((|#1| $) 148) (($ $ |#3|) 267)) (-1356 (($ (-591 $)) 94 (|has| |#1| (-429))) (($ $ $) 93 (|has| |#1| (-429)))) (-2816 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -2741 (-712))) $ $) 234)) (-4184 (((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -2963 $) (|:| -3407 $)) $ $) 238) (((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -2963 $) (|:| -3407 $)) $ $ |#3|) 237)) (-1380 (((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -3407 $)) $ $) 240) (((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -3407 $)) $ $ |#3|) 239)) (-2597 (($ $ $) 244) (($ $ $ |#3|) 242)) (-4074 (($ $ $) 243) (($ $ $ |#3|) 241)) (-2339 (((-1072) $) 9)) (-2627 (($ $ $) 210 (|has| |#1| (-517)))) (-3878 (((-591 $) $) 269)) (-3376 (((-3 (-591 $) "failed") $) 114)) (-2010 (((-3 (-591 $) "failed") $) 115)) (-2292 (((-3 (-2 (|:| |var| |#3|) (|:| -2008 (-712))) "failed") $) 113)) (-3196 (((-108) $ $) 252) (((-108) $ (-591 $)) 251)) (-4066 (($ $ $) 232)) (-3506 (($ $) 273)) (-2154 (((-108) $ $) 258)) (-2115 (((-108) $ $) 254) (((-108) $ (-591 $)) 253)) (-2731 (($ $ $) 233)) (-1762 (($ $) 272)) (-2047 (((-1036) $) 10)) (-1747 (((-2 (|:| -1399 $) (|:| |coef2| $)) $ $) 213 (|has| |#1| (-517)))) (-3113 (((-2 (|:| -1399 $) (|:| |coef1| $)) $ $) 214 (|has| |#1| (-517)))) (-1634 (((-108) $) 166)) (-1646 ((|#1| $) 167)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 95 (|has| |#1| (-429)))) (-1399 ((|#1| |#1| $) 206 (|has| |#1| (-429))) (($ (-591 $)) 92 (|has| |#1| (-429))) (($ $ $) 91 (|has| |#1| (-429)))) (-2916 (((-396 (-1085 $)) (-1085 $)) 102 (|has| |#1| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) 101 (|has| |#1| (-842)))) (-1348 (((-396 $) $) 99 (|has| |#1| (-842)))) (-3412 (((-2 (|:| -1399 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 215 (|has| |#1| (-517)))) (-2089 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-517))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-517)))) (-1851 (($ $ |#1|) 219 (|has| |#1| (-517))) (($ $ $) 217 (|has| |#1| (-517)))) (-2638 (($ $ |#1|) 220 (|has| |#1| (-517))) (($ $ $) 218 (|has| |#1| (-517)))) (-4132 (($ $ (-591 (-273 $))) 145) (($ $ (-273 $)) 144) (($ $ $ $) 143) (($ $ (-591 $) (-591 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-591 |#3|) (-591 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-591 |#3|) (-591 $)) 138)) (-2976 (($ $ |#3|) 107 (|has| |#1| (-160)))) (-3266 (($ $ |#3|) 42) (($ $ (-591 |#3|)) 41) (($ $ |#3| (-712)) 40) (($ $ (-591 |#3|) (-591 (-712))) 39)) (-1316 ((|#2| $) 150) (((-712) $ |#3|) 130) (((-591 (-712)) $ (-591 |#3|)) 129)) (-3303 (($ $) 270)) (-3486 (($ $) 268)) (-1408 (((-825 (-357)) $) 82 (-12 (|has| |#3| (-566 (-825 (-357)))) (|has| |#1| (-566 (-825 (-357)))))) (((-825 (-525)) $) 81 (-12 (|has| |#3| (-566 (-825 (-525)))) (|has| |#1| (-566 (-825 (-525)))))) (((-501) $) 80 (-12 (|has| |#3| (-566 (-501))) (|has| |#1| (-566 (-501))))) (($ (-885 (-385 (-525)))) 229 (-12 (|has| |#1| (-37 (-385 (-525)))) (|has| |#3| (-566 (-1089))))) (($ (-885 (-525))) 226 (-3321 (-12 (-2247 (|has| |#1| (-37 (-385 (-525))))) (|has| |#1| (-37 (-525))) (|has| |#3| (-566 (-1089)))) (-12 (|has| |#1| (-37 (-385 (-525)))) (|has| |#3| (-566 (-1089)))))) (($ (-885 |#1|)) 223 (|has| |#3| (-566 (-1089)))) (((-1072) $) 201 (-12 (|has| |#1| (-966 (-525))) (|has| |#3| (-566 (-1089))))) (((-885 |#1|) $) 200 (|has| |#3| (-566 (-1089))))) (-2668 ((|#1| $) 175 (|has| |#1| (-429))) (($ $ |#3|) 106 (|has| |#1| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) 104 (-1213 (|has| $ (-136)) (|has| |#1| (-842))))) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 163) (($ |#3|) 137) (((-885 |#1|) $) 199 (|has| |#3| (-566 (-1089)))) (($ (-385 (-525))) 72 (-3321 (|has| |#1| (-966 (-385 (-525)))) (|has| |#1| (-37 (-385 (-525)))))) (($ $) 85 (|has| |#1| (-517)))) (-3654 (((-591 |#1|) $) 168)) (-2560 ((|#1| $ |#2|) 155) (($ $ |#3| (-712)) 128) (($ $ (-591 |#3|) (-591 (-712))) 127)) (-1437 (((-3 $ "failed") $) 73 (-3321 (-1213 (|has| $ (-136)) (|has| |#1| (-842))) (|has| |#1| (-136))))) (-2128 (((-712)) 29)) (-1698 (($ $ $ (-712)) 173 (|has| |#1| (-160)))) (-2495 (((-108) $ $) 89 (|has| |#1| (-517)))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-1217 (((-3 (-108) "failed") $ $) 259)) (-4197 (($) 30 T CONST)) (-3919 (($ $ $ $ (-712)) 208 (|has| |#1| (-517)))) (-1761 (($ $ $ (-712)) 209 (|has| |#1| (-517)))) (-4196 (($ $ |#3|) 38) (($ $ (-591 |#3|)) 37) (($ $ |#3| (-712)) 36) (($ $ (-591 |#3|) (-591 (-712))) 35)) (-4135 (((-108) $ $) 76 (|has| |#1| (-788)))) (-4119 (((-108) $ $) 75 (|has| |#1| (-788)))) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 77 (|has| |#1| (-788)))) (-4112 (((-108) $ $) 74 (|has| |#1| (-788)))) (-4173 (($ $ |#1|) 156 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 (-525))) 158 (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) 157 (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+(((-989 |#1| |#2| |#3|) (-131) (-975) (-734) (-788)) (T -989))
+((-2009 (*1 *2 *1) (-12 (-4 *1 (-989 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *2 (-788)))) (-2537 (*1 *2 *1) (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-712)))) (-3506 (*1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)))) (-1762 (*1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)))) (-3970 (*1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)))) (-3303 (*1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)))) (-3878 (*1 *2 *1) (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *1)) (-4 *1 (-989 *3 *4 *5)))) (-3486 (*1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)))) (-1678 (*1 *1 *1 *2) (-12 (-4 *1 (-989 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *2 (-788)))) (-1710 (*1 *1 *1 *2) (-12 (-4 *1 (-989 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *2 (-788)))) (-1860 (*1 *2 *1) (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108)))) (-2509 (*1 *2 *1) (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108)))) (-2896 (*1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)))) (-3587 (*1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)))) (-2150 (*1 *2 *1) (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *1)) (-4 *1 (-989 *3 *4 *5)))) (-3274 (*1 *2 *1) (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *1)) (-4 *1 (-989 *3 *4 *5)))) (-1217 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108)))) (-2154 (*1 *2 *1 *1) (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108)))) (-2385 (*1 *2 *1 *1) (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108)))) (-3135 (*1 *2 *1 *1) (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108)))) (-3135 (*1 *2 *1 *3) (-12 (-5 *3 (-591 *1)) (-4 *1 (-989 *4 *5 *6)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)))) (-2115 (*1 *2 *1 *1) (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108)))) (-2115 (*1 *2 *1 *3) (-12 (-5 *3 (-591 *1)) (-4 *1 (-989 *4 *5 *6)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)))) (-3196 (*1 *2 *1 *1) (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108)))) (-3196 (*1 *2 *1 *3) (-12 (-5 *3 (-591 *1)) (-4 *1 (-989 *4 *5 *6)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)))) (-1809 (*1 *2 *1 *1) (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108)))) (-1809 (*1 *2 *1 *3) (-12 (-5 *3 (-591 *1)) (-4 *1 (-989 *4 *5 *6)) (-4 *4 (-975)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)))) (-2658 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)))) (-3585 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)))) (-2658 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-989 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *2 (-788)))) (-3585 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-989 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *2 (-788)))) (-2597 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)))) (-4074 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)))) (-2597 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-989 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *2 (-788)))) (-4074 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-989 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *2 (-788)))) (-1380 (*1 *2 *1 *1) (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-2 (|:| -3482 *1) (|:| |gap| (-712)) (|:| -3407 *1))) (-4 *1 (-989 *3 *4 *5)))) (-1380 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-788)) (-5 *2 (-2 (|:| -3482 *1) (|:| |gap| (-712)) (|:| -3407 *1))) (-4 *1 (-989 *4 *5 *3)))) (-4184 (*1 *2 *1 *1) (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-2 (|:| -3482 *1) (|:| |gap| (-712)) (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-989 *3 *4 *5)))) (-4184 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-788)) (-5 *2 (-2 (|:| -3482 *1) (|:| |gap| (-712)) (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-989 *4 *5 *3)))) (-3867 (*1 *2 *1 *1) (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-989 *3 *4 *5)))) (-2402 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)))) (-2816 (*1 *2 *1 *1) (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -2741 (-712)))) (-4 *1 (-989 *3 *4 *5)))) (-2731 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)))) (-4066 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)))) (-1251 (*1 *1 *2) (|partial| -12 (-5 *2 (-885 (-385 (-525)))) (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-37 (-385 (-525)))) (-4 *5 (-566 (-1089))) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)))) (-3528 (*1 *1 *2) (-12 (-5 *2 (-885 (-385 (-525)))) (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-37 (-385 (-525)))) (-4 *5 (-566 (-1089))) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)))) (-1408 (*1 *1 *2) (-12 (-5 *2 (-885 (-385 (-525)))) (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-37 (-385 (-525)))) (-4 *5 (-566 (-1089))) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)))) (-1251 (*1 *1 *2) (|partial| -3321 (-12 (-5 *2 (-885 (-525))) (-4 *1 (-989 *3 *4 *5)) (-12 (-2247 (-4 *3 (-37 (-385 (-525))))) (-4 *3 (-37 (-525))) (-4 *5 (-566 (-1089)))) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))) (-12 (-5 *2 (-885 (-525))) (-4 *1 (-989 *3 *4 *5)) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *5 (-566 (-1089)))) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))))) (-3528 (*1 *1 *2) (-3321 (-12 (-5 *2 (-885 (-525))) (-4 *1 (-989 *3 *4 *5)) (-12 (-2247 (-4 *3 (-37 (-385 (-525))))) (-4 *3 (-37 (-525))) (-4 *5 (-566 (-1089)))) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))) (-12 (-5 *2 (-885 (-525))) (-4 *1 (-989 *3 *4 *5)) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *5 (-566 (-1089)))) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))))) (-1408 (*1 *1 *2) (-3321 (-12 (-5 *2 (-885 (-525))) (-4 *1 (-989 *3 *4 *5)) (-12 (-2247 (-4 *3 (-37 (-385 (-525))))) (-4 *3 (-37 (-525))) (-4 *5 (-566 (-1089)))) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))) (-12 (-5 *2 (-885 (-525))) (-4 *1 (-989 *3 *4 *5)) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *5 (-566 (-1089)))) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))))) (-1251 (*1 *1 *2) (|partial| -3321 (-12 (-5 *2 (-885 *3)) (-12 (-2247 (-4 *3 (-37 (-385 (-525))))) (-2247 (-4 *3 (-37 (-525)))) (-4 *5 (-566 (-1089)))) (-4 *3 (-975)) (-4 *1 (-989 *3 *4 *5)) (-4 *4 (-734)) (-4 *5 (-788))) (-12 (-5 *2 (-885 *3)) (-12 (-2247 (-4 *3 (-510))) (-2247 (-4 *3 (-37 (-385 (-525))))) (-4 *3 (-37 (-525))) (-4 *5 (-566 (-1089)))) (-4 *3 (-975)) (-4 *1 (-989 *3 *4 *5)) (-4 *4 (-734)) (-4 *5 (-788))) (-12 (-5 *2 (-885 *3)) (-12 (-2247 (-4 *3 (-923 (-525)))) (-4 *3 (-37 (-385 (-525)))) (-4 *5 (-566 (-1089)))) (-4 *3 (-975)) (-4 *1 (-989 *3 *4 *5)) (-4 *4 (-734)) (-4 *5 (-788))))) (-3528 (*1 *1 *2) (-3321 (-12 (-5 *2 (-885 *3)) (-12 (-2247 (-4 *3 (-37 (-385 (-525))))) (-2247 (-4 *3 (-37 (-525)))) (-4 *5 (-566 (-1089)))) (-4 *3 (-975)) (-4 *1 (-989 *3 *4 *5)) (-4 *4 (-734)) (-4 *5 (-788))) (-12 (-5 *2 (-885 *3)) (-12 (-2247 (-4 *3 (-510))) (-2247 (-4 *3 (-37 (-385 (-525))))) (-4 *3 (-37 (-525))) (-4 *5 (-566 (-1089)))) (-4 *3 (-975)) (-4 *1 (-989 *3 *4 *5)) (-4 *4 (-734)) (-4 *5 (-788))) (-12 (-5 *2 (-885 *3)) (-12 (-2247 (-4 *3 (-923 (-525)))) (-4 *3 (-37 (-385 (-525)))) (-4 *5 (-566 (-1089)))) (-4 *3 (-975)) (-4 *1 (-989 *3 *4 *5)) (-4 *4 (-734)) (-4 *5 (-788))))) (-1408 (*1 *1 *2) (-12 (-5 *2 (-885 *3)) (-4 *3 (-975)) (-4 *1 (-989 *3 *4 *5)) (-4 *5 (-566 (-1089))) (-4 *4 (-734)) (-4 *5 (-788)))) (-1706 (*1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-517)))) (-2053 (*1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-517)))) (-2638 (*1 *1 *1 *2) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-517)))) (-1851 (*1 *1 *1 *2) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-517)))) (-2638 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-517)))) (-1851 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-517)))) (-2944 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-517)))) (-3412 (*1 *2 *1 *1) (-12 (-4 *3 (-517)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-2 (|:| -1399 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-989 *3 *4 *5)))) (-3113 (*1 *2 *1 *1) (-12 (-4 *3 (-517)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-2 (|:| -1399 *1) (|:| |coef1| *1))) (-4 *1 (-989 *3 *4 *5)))) (-1747 (*1 *2 *1 *1) (-12 (-4 *3 (-517)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-2 (|:| -1399 *1) (|:| |coef2| *1))) (-4 *1 (-989 *3 *4 *5)))) (-2805 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-517)))) (-2206 (*1 *2 *1 *1) (-12 (-4 *3 (-517)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *1)) (-4 *1 (-989 *3 *4 *5)))) (-2627 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-517)))) (-1761 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *3 (-517)))) (-3919 (*1 *1 *1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *3 (-517)))) (-3534 (*1 *1 *1 *1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-517)))) (-1399 (*1 *2 *2 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-429)))) (-2587 (*1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-429)))) (-2779 (*1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-429)))) (-2628 (*1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-429)))) (-1265 (*1 *1 *1) (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-429)))))
+(-13 (-882 |t#1| |t#2| |t#3|) (-10 -8 (-15 -2009 (|t#3| $)) (-15 -2537 ((-712) $)) (-15 -3506 ($ $)) (-15 -1762 ($ $)) (-15 -3970 ($ $)) (-15 -3303 ($ $)) (-15 -3878 ((-591 $) $)) (-15 -3486 ($ $)) (-15 -1678 ($ $ |t#3|)) (-15 -1710 ($ $ |t#3|)) (-15 -1860 ((-108) $)) (-15 -2509 ((-108) $)) (-15 -2896 ($ $)) (-15 -3587 ($ $)) (-15 -2150 ((-591 $) $)) (-15 -3274 ((-591 $) $)) (-15 -1217 ((-3 (-108) "failed") $ $)) (-15 -2154 ((-108) $ $)) (-15 -2385 ((-108) $ $)) (-15 -3135 ((-108) $ $)) (-15 -3135 ((-108) $ (-591 $))) (-15 -2115 ((-108) $ $)) (-15 -2115 ((-108) $ (-591 $))) (-15 -3196 ((-108) $ $)) (-15 -3196 ((-108) $ (-591 $))) (-15 -1809 ((-108) $ $)) (-15 -1809 ((-108) $ (-591 $))) (-15 -2658 ($ $ $)) (-15 -3585 ($ $ $)) (-15 -2658 ($ $ $ |t#3|)) (-15 -3585 ($ $ $ |t#3|)) (-15 -2597 ($ $ $)) (-15 -4074 ($ $ $)) (-15 -2597 ($ $ $ |t#3|)) (-15 -4074 ($ $ $ |t#3|)) (-15 -1380 ((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -3407 $)) $ $)) (-15 -1380 ((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -3407 $)) $ $ |t#3|)) (-15 -4184 ((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -2963 $) (|:| -3407 $)) $ $)) (-15 -4184 ((-2 (|:| -3482 $) (|:| |gap| (-712)) (|:| -2963 $) (|:| -3407 $)) $ $ |t#3|)) (-15 -3867 ((-2 (|:| -2963 $) (|:| -3407 $)) $ $)) (-15 -2402 ($ $ $)) (-15 -2816 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -2741 (-712))) $ $)) (-15 -2731 ($ $ $)) (-15 -4066 ($ $ $)) (IF (|has| |t#3| (-566 (-1089))) (PROGN (-6 (-565 (-885 |t#1|))) (-6 (-566 (-885 |t#1|))) (IF (|has| |t#1| (-37 (-385 (-525)))) (PROGN (-15 -1251 ((-3 $ "failed") (-885 (-385 (-525))))) (-15 -3528 ($ (-885 (-385 (-525))))) (-15 -1408 ($ (-885 (-385 (-525))))) (-15 -1251 ((-3 $ "failed") (-885 (-525)))) (-15 -3528 ($ (-885 (-525)))) (-15 -1408 ($ (-885 (-525)))) (IF (|has| |t#1| (-923 (-525))) |%noBranch| (PROGN (-15 -1251 ((-3 $ "failed") (-885 |t#1|))) (-15 -3528 ($ (-885 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-37 (-525))) (IF (|has| |t#1| (-37 (-385 (-525)))) |%noBranch| (PROGN (-15 -1251 ((-3 $ "failed") (-885 (-525)))) (-15 -3528 ($ (-885 (-525)))) (-15 -1408 ($ (-885 (-525)))) (IF (|has| |t#1| (-510)) |%noBranch| (PROGN (-15 -1251 ((-3 $ "failed") (-885 |t#1|))) (-15 -3528 ($ (-885 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-37 (-525))) |%noBranch| (IF (|has| |t#1| (-37 (-385 (-525)))) |%noBranch| (PROGN (-15 -1251 ((-3 $ "failed") (-885 |t#1|))) (-15 -3528 ($ (-885 |t#1|)))))) (-15 -1408 ($ (-885 |t#1|))) (IF (|has| |t#1| (-966 (-525))) (-6 (-566 (-1072))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-517)) (PROGN (-15 -1706 ($ $)) (-15 -2053 ($ $)) (-15 -2638 ($ $ |t#1|)) (-15 -1851 ($ $ |t#1|)) (-15 -2638 ($ $ $)) (-15 -1851 ($ $ $)) (-15 -2944 ($ $ $)) (-15 -3412 ((-2 (|:| -1399 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3113 ((-2 (|:| -1399 $) (|:| |coef1| $)) $ $)) (-15 -1747 ((-2 (|:| -1399 $) (|:| |coef2| $)) $ $)) (-15 -2805 ($ $ $)) (-15 -2206 ((-591 $) $ $)) (-15 -2627 ($ $ $)) (-15 -1761 ($ $ $ (-712))) (-15 -3919 ($ $ $ $ (-712))) (-15 -3534 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-429)) (PROGN (-15 -1399 (|t#1| |t#1| $)) (-15 -2587 ($ $)) (-15 -2779 ($ $)) (-15 -2628 ($ $)) (-15 -1265 ($ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((-37 |#1|) |has| |#1| (-160)) ((-37 $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429))) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-385 (-525)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-160))) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-565 (-885 |#1|)) |has| |#3| (-566 (-1089))) ((-160) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-160))) ((-566 (-501)) -12 (|has| |#1| (-566 (-501))) (|has| |#3| (-566 (-501)))) ((-566 (-825 (-357))) -12 (|has| |#1| (-566 (-825 (-357)))) (|has| |#3| (-566 (-825 (-357))))) ((-566 (-825 (-525))) -12 (|has| |#1| (-566 (-825 (-525)))) (|has| |#3| (-566 (-825 (-525))))) ((-566 (-885 |#1|)) |has| |#3| (-566 (-1089))) ((-566 (-1072)) -12 (|has| |#1| (-966 (-525))) (|has| |#3| (-566 (-1089)))) ((-269) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429))) ((-288 $) . T) ((-304 |#1| |#2|) . T) ((-355 |#1|) . T) ((-389 |#1|) . T) ((-429) -3321 (|has| |#1| (-842)) (|has| |#1| (-429))) ((-486 |#3| |#1|) . T) ((-486 |#3| $) . T) ((-486 $ $) . T) ((-517) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429))) ((-593 #0#) |has| |#1| (-37 (-385 (-525)))) ((-593 |#1|) . T) ((-593 $) . T) ((-587 (-525)) |has| |#1| (-587 (-525))) ((-587 |#1|) . T) ((-659 #0#) |has| |#1| (-37 (-385 (-525)))) ((-659 |#1|) |has| |#1| (-160)) ((-659 $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429))) ((-668) . T) ((-788) |has| |#1| (-788)) ((-833 |#3|) . T) ((-819 (-357)) -12 (|has| |#1| (-819 (-357))) (|has| |#3| (-819 (-357)))) ((-819 (-525)) -12 (|has| |#1| (-819 (-525))) (|has| |#3| (-819 (-525)))) ((-882 |#1| |#2| |#3|) . T) ((-842) |has| |#1| (-842)) ((-966 (-385 (-525))) |has| |#1| (-966 (-385 (-525)))) ((-966 (-525)) |has| |#1| (-966 (-525))) ((-966 |#1|) . T) ((-966 |#3|) . T) ((-981 #0#) |has| |#1| (-37 (-385 (-525)))) ((-981 |#1|) . T) ((-981 $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-160))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1129) |has| |#1| (-842)))
+((-1800 (((-108) |#3| $) 13)) (-3642 (((-3 $ "failed") |#3| (-854)) 23)) (-4163 (((-3 |#3| "failed") |#3| $) 38)) (-2134 (((-108) |#3| $) 16)) (-2732 (((-108) |#3| $) 14)))
+(((-990 |#1| |#2| |#3|) (-10 -8 (-15 -3642 ((-3 |#1| "failed") |#3| (-854))) (-15 -4163 ((-3 |#3| "failed") |#3| |#1|)) (-15 -2134 ((-108) |#3| |#1|)) (-15 -2732 ((-108) |#3| |#1|)) (-15 -1800 ((-108) |#3| |#1|))) (-991 |#2| |#3|) (-13 (-786) (-341)) (-1147 |#2|)) (T -990))
+NIL
+(-10 -8 (-15 -3642 ((-3 |#1| "failed") |#3| (-854))) (-15 -4163 ((-3 |#3| "failed") |#3| |#1|)) (-15 -2134 ((-108) |#3| |#1|)) (-15 -2732 ((-108) |#3| |#1|)) (-15 -1800 ((-108) |#3| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) |#2| $) 21)) (-3329 (((-525) |#2| $) 22)) (-3642 (((-3 $ "failed") |#2| (-854)) 15)) (-1377 ((|#1| |#2| $ |#1|) 13)) (-4163 (((-3 |#2| "failed") |#2| $) 18)) (-2134 (((-108) |#2| $) 19)) (-2732 (((-108) |#2| $) 20)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-1478 ((|#2| $) 17)) (-3022 (((-796) $) 11)) (-2176 ((|#1| |#2| $ |#1|) 14)) (-1282 (((-591 $) |#2|) 16)) (-4096 (((-108) $ $) 6)))
+(((-991 |#1| |#2|) (-131) (-13 (-786) (-341)) (-1147 |t#1|)) (T -991))
+((-3329 (*1 *2 *3 *1) (-12 (-4 *1 (-991 *4 *3)) (-4 *4 (-13 (-786) (-341))) (-4 *3 (-1147 *4)) (-5 *2 (-525)))) (-1800 (*1 *2 *3 *1) (-12 (-4 *1 (-991 *4 *3)) (-4 *4 (-13 (-786) (-341))) (-4 *3 (-1147 *4)) (-5 *2 (-108)))) (-2732 (*1 *2 *3 *1) (-12 (-4 *1 (-991 *4 *3)) (-4 *4 (-13 (-786) (-341))) (-4 *3 (-1147 *4)) (-5 *2 (-108)))) (-2134 (*1 *2 *3 *1) (-12 (-4 *1 (-991 *4 *3)) (-4 *4 (-13 (-786) (-341))) (-4 *3 (-1147 *4)) (-5 *2 (-108)))) (-4163 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-991 *3 *2)) (-4 *3 (-13 (-786) (-341))) (-4 *2 (-1147 *3)))) (-1478 (*1 *2 *1) (-12 (-4 *1 (-991 *3 *2)) (-4 *3 (-13 (-786) (-341))) (-4 *2 (-1147 *3)))) (-1282 (*1 *2 *3) (-12 (-4 *4 (-13 (-786) (-341))) (-4 *3 (-1147 *4)) (-5 *2 (-591 *1)) (-4 *1 (-991 *4 *3)))) (-3642 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-854)) (-4 *4 (-13 (-786) (-341))) (-4 *1 (-991 *4 *2)) (-4 *2 (-1147 *4)))) (-2176 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-991 *2 *3)) (-4 *2 (-13 (-786) (-341))) (-4 *3 (-1147 *2)))) (-1377 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-991 *2 *3)) (-4 *2 (-13 (-786) (-341))) (-4 *3 (-1147 *2)))))
+(-13 (-1018) (-10 -8 (-15 -3329 ((-525) |t#2| $)) (-15 -1800 ((-108) |t#2| $)) (-15 -2732 ((-108) |t#2| $)) (-15 -2134 ((-108) |t#2| $)) (-15 -4163 ((-3 |t#2| "failed") |t#2| $)) (-15 -1478 (|t#2| $)) (-15 -1282 ((-591 $) |t#2|)) (-15 -3642 ((-3 $ "failed") |t#2| (-854))) (-15 -2176 (|t#1| |t#2| $ |t#1|)) (-15 -1377 (|t#1| |t#2| $ |t#1|))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-2572 (((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-591 |#4|) (-591 |#5|) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) (-712)) 96)) (-2532 (((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712)) 56)) (-1394 (((-1176) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-712)) 87)) (-1788 (((-712) (-591 |#4|) (-591 |#5|)) 27)) (-2844 (((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5|) 59) (((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712)) 58) (((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712) (-108)) 60)) (-3702 (((-591 |#5|) (-591 |#4|) (-591 |#5|) (-108) (-108) (-108) (-108) (-108)) 78) (((-591 |#5|) (-591 |#4|) (-591 |#5|) (-108) (-108)) 79)) (-1408 (((-1072) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) 82)) (-2178 (((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-108)) 55)) (-1605 (((-712) (-591 |#4|) (-591 |#5|)) 19)))
+(((-992 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1605 ((-712) (-591 |#4|) (-591 |#5|))) (-15 -1788 ((-712) (-591 |#4|) (-591 |#5|))) (-15 -2178 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-108))) (-15 -2532 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712))) (-15 -2532 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5|)) (-15 -2844 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712) (-108))) (-15 -2844 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712))) (-15 -2844 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5|)) (-15 -3702 ((-591 |#5|) (-591 |#4|) (-591 |#5|) (-108) (-108))) (-15 -3702 ((-591 |#5|) (-591 |#4|) (-591 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -2572 ((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-591 |#4|) (-591 |#5|) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) (-712))) (-15 -1408 ((-1072) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)))) (-15 -1394 ((-1176) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-712)))) (-429) (-734) (-788) (-989 |#1| |#2| |#3|) (-994 |#1| |#2| |#3| |#4|)) (T -992))
+((-1394 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-2 (|:| |val| (-591 *8)) (|:| -3374 *9)))) (-5 *4 (-712)) (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-994 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-1176)) (-5 *1 (-992 *5 *6 *7 *8 *9)))) (-1408 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-591 *7)) (|:| -3374 *8))) (-4 *7 (-989 *4 *5 *6)) (-4 *8 (-994 *4 *5 *6 *7)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-1072)) (-5 *1 (-992 *4 *5 *6 *7 *8)))) (-2572 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-591 *11)) (|:| |todo| (-591 (-2 (|:| |val| *3) (|:| -3374 *11)))))) (-5 *6 (-712)) (-5 *2 (-591 (-2 (|:| |val| (-591 *10)) (|:| -3374 *11)))) (-5 *3 (-591 *10)) (-5 *4 (-591 *11)) (-4 *10 (-989 *7 *8 *9)) (-4 *11 (-994 *7 *8 *9 *10)) (-4 *7 (-429)) (-4 *8 (-734)) (-4 *9 (-788)) (-5 *1 (-992 *7 *8 *9 *10 *11)))) (-3702 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-591 *9)) (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-994 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *1 (-992 *5 *6 *7 *8 *9)))) (-3702 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-591 *9)) (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-994 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *1 (-992 *5 *6 *7 *8 *9)))) (-2844 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-591 *4)) (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4)))))) (-5 *1 (-992 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-2844 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-712)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *3 (-989 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-591 *4)) (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4)))))) (-5 *1 (-992 *6 *7 *8 *3 *4)) (-4 *4 (-994 *6 *7 *8 *3)))) (-2844 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-712)) (-5 *6 (-108)) (-4 *7 (-429)) (-4 *8 (-734)) (-4 *9 (-788)) (-4 *3 (-989 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-591 *4)) (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4)))))) (-5 *1 (-992 *7 *8 *9 *3 *4)) (-4 *4 (-994 *7 *8 *9 *3)))) (-2532 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-591 *4)) (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4)))))) (-5 *1 (-992 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-2532 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-712)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *3 (-989 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-591 *4)) (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4)))))) (-5 *1 (-992 *6 *7 *8 *3 *4)) (-4 *4 (-994 *6 *7 *8 *3)))) (-2178 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-108)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *3 (-989 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-591 *4)) (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4)))))) (-5 *1 (-992 *6 *7 *8 *3 *4)) (-4 *4 (-994 *6 *7 *8 *3)))) (-1788 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *8)) (-5 *4 (-591 *9)) (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-994 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-712)) (-5 *1 (-992 *5 *6 *7 *8 *9)))) (-1605 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *8)) (-5 *4 (-591 *9)) (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-994 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-712)) (-5 *1 (-992 *5 *6 *7 *8 *9)))))
+(-10 -7 (-15 -1605 ((-712) (-591 |#4|) (-591 |#5|))) (-15 -1788 ((-712) (-591 |#4|) (-591 |#5|))) (-15 -2178 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-108))) (-15 -2532 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712))) (-15 -2532 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5|)) (-15 -2844 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712) (-108))) (-15 -2844 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712))) (-15 -2844 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5|)) (-15 -3702 ((-591 |#5|) (-591 |#4|) (-591 |#5|) (-108) (-108))) (-15 -3702 ((-591 |#5|) (-591 |#4|) (-591 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -2572 ((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-591 |#4|) (-591 |#5|) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) (-712))) (-15 -1408 ((-1072) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)))) (-15 -1394 ((-1176) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-712))))
+((-1949 (((-108) |#5| $) 21)) (-3485 (((-108) |#5| $) 24)) (-1732 (((-108) |#5| $) 16) (((-108) $) 45)) (-3516 (((-591 $) |#5| $) NIL) (((-591 $) (-591 |#5|) $) 77) (((-591 $) (-591 |#5|) (-591 $)) 75) (((-591 $) |#5| (-591 $)) 78)) (-2784 (($ $ |#5|) NIL) (((-591 $) |#5| $) NIL) (((-591 $) |#5| (-591 $)) 60) (((-591 $) (-591 |#5|) $) 62) (((-591 $) (-591 |#5|) (-591 $)) 64)) (-2533 (((-591 $) |#5| $) NIL) (((-591 $) |#5| (-591 $)) 54) (((-591 $) (-591 |#5|) $) 56) (((-591 $) (-591 |#5|) (-591 $)) 58)) (-1564 (((-108) |#5| $) 27)))
+(((-993 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2784 ((-591 |#1|) (-591 |#5|) (-591 |#1|))) (-15 -2784 ((-591 |#1|) (-591 |#5|) |#1|)) (-15 -2784 ((-591 |#1|) |#5| (-591 |#1|))) (-15 -2784 ((-591 |#1|) |#5| |#1|)) (-15 -2533 ((-591 |#1|) (-591 |#5|) (-591 |#1|))) (-15 -2533 ((-591 |#1|) (-591 |#5|) |#1|)) (-15 -2533 ((-591 |#1|) |#5| (-591 |#1|))) (-15 -2533 ((-591 |#1|) |#5| |#1|)) (-15 -3516 ((-591 |#1|) |#5| (-591 |#1|))) (-15 -3516 ((-591 |#1|) (-591 |#5|) (-591 |#1|))) (-15 -3516 ((-591 |#1|) (-591 |#5|) |#1|)) (-15 -3516 ((-591 |#1|) |#5| |#1|)) (-15 -3485 ((-108) |#5| |#1|)) (-15 -1732 ((-108) |#1|)) (-15 -1564 ((-108) |#5| |#1|)) (-15 -1949 ((-108) |#5| |#1|)) (-15 -1732 ((-108) |#5| |#1|)) (-15 -2784 (|#1| |#1| |#5|))) (-994 |#2| |#3| |#4| |#5|) (-429) (-734) (-788) (-989 |#2| |#3| |#4|)) (T -993))
+NIL
+(-10 -8 (-15 -2784 ((-591 |#1|) (-591 |#5|) (-591 |#1|))) (-15 -2784 ((-591 |#1|) (-591 |#5|) |#1|)) (-15 -2784 ((-591 |#1|) |#5| (-591 |#1|))) (-15 -2784 ((-591 |#1|) |#5| |#1|)) (-15 -2533 ((-591 |#1|) (-591 |#5|) (-591 |#1|))) (-15 -2533 ((-591 |#1|) (-591 |#5|) |#1|)) (-15 -2533 ((-591 |#1|) |#5| (-591 |#1|))) (-15 -2533 ((-591 |#1|) |#5| |#1|)) (-15 -3516 ((-591 |#1|) |#5| (-591 |#1|))) (-15 -3516 ((-591 |#1|) (-591 |#5|) (-591 |#1|))) (-15 -3516 ((-591 |#1|) (-591 |#5|) |#1|)) (-15 -3516 ((-591 |#1|) |#5| |#1|)) (-15 -3485 ((-108) |#5| |#1|)) (-15 -1732 ((-108) |#1|)) (-15 -1564 ((-108) |#5| |#1|)) (-15 -1949 ((-108) |#5| |#1|)) (-15 -1732 ((-108) |#5| |#1|)) (-15 -2784 (|#1| |#1| |#5|)))
+((-3008 (((-108) $ $) 7)) (-3817 (((-591 (-2 (|:| -3529 $) (|:| -1976 (-591 |#4|)))) (-591 |#4|)) 85)) (-2113 (((-591 $) (-591 |#4|)) 86) (((-591 $) (-591 |#4|) (-108)) 111)) (-1507 (((-591 |#3|) $) 33)) (-1430 (((-108) $) 26)) (-3490 (((-108) $) 17 (|has| |#1| (-517)))) (-3130 (((-108) |#4| $) 101) (((-108) $) 97)) (-1568 ((|#4| |#4| $) 92)) (-1291 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 $))) |#4| $) 126)) (-3327 (((-2 (|:| |under| $) (|:| -2662 $) (|:| |upper| $)) $ |#3|) 27)) (-3891 (((-108) $ (-712)) 44)) (-2305 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4250))) (((-3 |#4| "failed") $ |#3|) 79)) (-3798 (($) 45 T CONST)) (-3382 (((-108) $) 22 (|has| |#1| (-517)))) (-2438 (((-108) $ $) 24 (|has| |#1| (-517)))) (-2055 (((-108) $ $) 23 (|has| |#1| (-517)))) (-1964 (((-108) $) 25 (|has| |#1| (-517)))) (-2656 (((-591 |#4|) (-591 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-3853 (((-591 |#4|) (-591 |#4|) $) 18 (|has| |#1| (-517)))) (-1921 (((-591 |#4|) (-591 |#4|) $) 19 (|has| |#1| (-517)))) (-1251 (((-3 $ "failed") (-591 |#4|)) 36)) (-3528 (($ (-591 |#4|)) 35)) (-3078 (((-3 $ "failed") $) 82)) (-2736 ((|#4| |#4| $) 89)) (-3098 (($ $) 68 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ |#4| $) 67 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4250)))) (-3407 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-517)))) (-3135 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-2933 ((|#4| |#4| $) 87)) (-1227 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4250))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4250))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-2719 (((-2 (|:| -3529 (-591 |#4|)) (|:| -1976 (-591 |#4|))) $) 105)) (-1949 (((-108) |#4| $) 136)) (-3485 (((-108) |#4| $) 133)) (-1732 (((-108) |#4| $) 137) (((-108) $) 134)) (-3454 (((-591 |#4|) $) 52 (|has| $ (-6 -4250)))) (-1809 (((-108) |#4| $) 104) (((-108) $) 103)) (-2009 ((|#3| $) 34)) (-2910 (((-108) $ (-712)) 43)) (-2552 (((-591 |#4|) $) 53 (|has| $ (-6 -4250)))) (-2141 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#4| |#4|) $) 47)) (-3993 (((-591 |#3|) $) 32)) (-4174 (((-108) |#3| $) 31)) (-3971 (((-108) $ (-712)) 42)) (-2339 (((-1072) $) 9)) (-2711 (((-3 |#4| (-591 $)) |#4| |#4| $) 128)) (-2627 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 $))) |#4| |#4| $) 127)) (-3708 (((-3 |#4| "failed") $) 83)) (-1933 (((-591 $) |#4| $) 129)) (-1372 (((-3 (-108) (-591 $)) |#4| $) 132)) (-1406 (((-591 (-2 (|:| |val| (-108)) (|:| -3374 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-3516 (((-591 $) |#4| $) 125) (((-591 $) (-591 |#4|) $) 124) (((-591 $) (-591 |#4|) (-591 $)) 123) (((-591 $) |#4| (-591 $)) 122)) (-2689 (($ |#4| $) 117) (($ (-591 |#4|) $) 116)) (-3280 (((-591 |#4|) $) 107)) (-3196 (((-108) |#4| $) 99) (((-108) $) 95)) (-4066 ((|#4| |#4| $) 90)) (-2154 (((-108) $ $) 110)) (-2934 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-517)))) (-2115 (((-108) |#4| $) 100) (((-108) $) 96)) (-2731 ((|#4| |#4| $) 91)) (-2047 (((-1036) $) 10)) (-3066 (((-3 |#4| "failed") $) 84)) (-2069 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-1554 (((-3 $ "failed") $ |#4|) 78)) (-2784 (($ $ |#4|) 77) (((-591 $) |#4| $) 115) (((-591 $) |#4| (-591 $)) 114) (((-591 $) (-591 |#4|) $) 113) (((-591 $) (-591 |#4|) (-591 $)) 112)) (-1623 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 |#4|) (-591 |#4|)) 59 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-273 |#4|)) 57 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-591 (-273 |#4|))) 56 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))) (-3493 (((-108) $ $) 38)) (-3028 (((-108) $) 41)) (-3209 (($) 40)) (-1316 (((-712) $) 106)) (-2064 (((-712) |#4| $) 54 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) (((-712) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4250)))) (-3199 (($ $) 39)) (-1408 (((-501) $) 69 (|has| |#4| (-566 (-501))))) (-3036 (($ (-591 |#4|)) 60)) (-3134 (($ $ |#3|) 28)) (-3443 (($ $ |#3|) 30)) (-2487 (($ $) 88)) (-3010 (($ $ |#3|) 29)) (-3022 (((-796) $) 11) (((-591 |#4|) $) 37)) (-3223 (((-712) $) 76 (|has| |#3| (-346)))) (-2122 (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-2165 (((-108) $ (-1 (-108) |#4| (-591 |#4|))) 98)) (-2533 (((-591 $) |#4| $) 121) (((-591 $) |#4| (-591 $)) 120) (((-591 $) (-591 |#4|) $) 119) (((-591 $) (-591 |#4|) (-591 $)) 118)) (-4158 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4250)))) (-3872 (((-591 |#3|) $) 81)) (-1564 (((-108) |#4| $) 135)) (-1884 (((-108) |#3| $) 80)) (-4096 (((-108) $ $) 6)) (-4045 (((-712) $) 46 (|has| $ (-6 -4250)))))
+(((-994 |#1| |#2| |#3| |#4|) (-131) (-429) (-734) (-788) (-989 |t#1| |t#2| |t#3|)) (T -994))
+((-1732 (*1 *2 *3 *1) (-12 (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))) (-1949 (*1 *2 *3 *1) (-12 (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))) (-1564 (*1 *2 *3 *1) (-12 (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))) (-1732 (*1 *2 *1) (-12 (-4 *1 (-994 *3 *4 *5 *6)) (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-108)))) (-3485 (*1 *2 *3 *1) (-12 (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))) (-1372 (*1 *2 *3 *1) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-3 (-108) (-591 *1))) (-4 *1 (-994 *4 *5 *6 *3)))) (-1406 (*1 *2 *3 *1) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-591 (-2 (|:| |val| (-108)) (|:| -3374 *1)))) (-4 *1 (-994 *4 *5 *6 *3)))) (-1406 (*1 *2 *3 *1) (-12 (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))) (-1933 (*1 *2 *3 *1) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-591 *1)) (-4 *1 (-994 *4 *5 *6 *3)))) (-2711 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-3 *3 (-591 *1))) (-4 *1 (-994 *4 *5 *6 *3)))) (-2627 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *1)))) (-4 *1 (-994 *4 *5 *6 *3)))) (-1291 (*1 *2 *3 *1) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *1)))) (-4 *1 (-994 *4 *5 *6 *3)))) (-3516 (*1 *2 *3 *1) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-591 *1)) (-4 *1 (-994 *4 *5 *6 *3)))) (-3516 (*1 *2 *3 *1) (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 *1)) (-4 *1 (-994 *4 *5 *6 *7)))) (-3516 (*1 *2 *3 *2) (-12 (-5 *2 (-591 *1)) (-5 *3 (-591 *7)) (-4 *1 (-994 *4 *5 *6 *7)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)))) (-3516 (*1 *2 *3 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)))) (-2533 (*1 *2 *3 *1) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-591 *1)) (-4 *1 (-994 *4 *5 *6 *3)))) (-2533 (*1 *2 *3 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)))) (-2533 (*1 *2 *3 *1) (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 *1)) (-4 *1 (-994 *4 *5 *6 *7)))) (-2533 (*1 *2 *3 *2) (-12 (-5 *2 (-591 *1)) (-5 *3 (-591 *7)) (-4 *1 (-994 *4 *5 *6 *7)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)))) (-2689 (*1 *1 *2 *1) (-12 (-4 *1 (-994 *3 *4 *5 *2)) (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))) (-2689 (*1 *1 *2 *1) (-12 (-5 *2 (-591 *6)) (-4 *1 (-994 *3 *4 *5 *6)) (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)))) (-2784 (*1 *2 *3 *1) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-591 *1)) (-4 *1 (-994 *4 *5 *6 *3)))) (-2784 (*1 *2 *3 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)))) (-2784 (*1 *2 *3 *1) (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 *1)) (-4 *1 (-994 *4 *5 *6 *7)))) (-2784 (*1 *2 *3 *2) (-12 (-5 *2 (-591 *1)) (-5 *3 (-591 *7)) (-4 *1 (-994 *4 *5 *6 *7)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)))) (-2113 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-591 *1)) (-4 *1 (-994 *5 *6 *7 *8)))))
+(-13 (-1119 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-15 -1732 ((-108) |t#4| $)) (-15 -1949 ((-108) |t#4| $)) (-15 -1564 ((-108) |t#4| $)) (-15 -1732 ((-108) $)) (-15 -3485 ((-108) |t#4| $)) (-15 -1372 ((-3 (-108) (-591 $)) |t#4| $)) (-15 -1406 ((-591 (-2 (|:| |val| (-108)) (|:| -3374 $))) |t#4| $)) (-15 -1406 ((-108) |t#4| $)) (-15 -1933 ((-591 $) |t#4| $)) (-15 -2711 ((-3 |t#4| (-591 $)) |t#4| |t#4| $)) (-15 -2627 ((-591 (-2 (|:| |val| |t#4|) (|:| -3374 $))) |t#4| |t#4| $)) (-15 -1291 ((-591 (-2 (|:| |val| |t#4|) (|:| -3374 $))) |t#4| $)) (-15 -3516 ((-591 $) |t#4| $)) (-15 -3516 ((-591 $) (-591 |t#4|) $)) (-15 -3516 ((-591 $) (-591 |t#4|) (-591 $))) (-15 -3516 ((-591 $) |t#4| (-591 $))) (-15 -2533 ((-591 $) |t#4| $)) (-15 -2533 ((-591 $) |t#4| (-591 $))) (-15 -2533 ((-591 $) (-591 |t#4|) $)) (-15 -2533 ((-591 $) (-591 |t#4|) (-591 $))) (-15 -2689 ($ |t#4| $)) (-15 -2689 ($ (-591 |t#4|) $)) (-15 -2784 ((-591 $) |t#4| $)) (-15 -2784 ((-591 $) |t#4| (-591 $))) (-15 -2784 ((-591 $) (-591 |t#4|) $)) (-15 -2784 ((-591 $) (-591 |t#4|) (-591 $))) (-15 -2113 ((-591 $) (-591 |t#4|) (-108)))))
+(((-33) . T) ((-97) . T) ((-565 (-591 |#4|)) . T) ((-565 (-796)) . T) ((-142 |#4|) . T) ((-566 (-501)) |has| |#4| (-566 (-501))) ((-288 |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))) ((-464 |#4|) . T) ((-486 |#4| |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))) ((-907 |#1| |#2| |#3| |#4|) . T) ((-1018) . T) ((-1119 |#1| |#2| |#3| |#4|) . T) ((-1125) . T))
+((-4087 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#5|) 81)) (-2915 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5|) 113)) (-4198 (((-591 |#5|) |#4| |#5|) 70)) (-1461 (((-591 (-2 (|:| |val| (-108)) (|:| -3374 |#5|))) |#4| |#5|) 46) (((-108) |#4| |#5|) 53)) (-3418 (((-1176)) 37)) (-2595 (((-1176)) 26)) (-1677 (((-1176) (-1072) (-1072) (-1072)) 33)) (-2974 (((-1176) (-1072) (-1072) (-1072)) 22)) (-3819 (((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) |#4| |#4| |#5|) 96)) (-1701 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) |#3| (-108)) 107) (((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5| (-108) (-108)) 50)) (-3804 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5|) 102)))
+(((-995 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2974 ((-1176) (-1072) (-1072) (-1072))) (-15 -2595 ((-1176))) (-15 -1677 ((-1176) (-1072) (-1072) (-1072))) (-15 -3418 ((-1176))) (-15 -3819 ((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) |#4| |#4| |#5|)) (-15 -1701 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -1701 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) |#3| (-108))) (-15 -3804 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5|)) (-15 -2915 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5|)) (-15 -1461 ((-108) |#4| |#5|)) (-15 -1461 ((-591 (-2 (|:| |val| (-108)) (|:| -3374 |#5|))) |#4| |#5|)) (-15 -4198 ((-591 |#5|) |#4| |#5|)) (-15 -4087 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#5|))) (-429) (-734) (-788) (-989 |#1| |#2| |#3|) (-994 |#1| |#2| |#3| |#4|)) (T -995))
+((-4087 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4)))) (-5 *1 (-995 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-4198 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 *4)) (-5 *1 (-995 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-1461 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 (-2 (|:| |val| (-108)) (|:| -3374 *4)))) (-5 *1 (-995 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-1461 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-995 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-2915 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4)))) (-5 *1 (-995 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-3804 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4)))) (-5 *1 (-995 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-1701 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-591 (-2 (|:| |val| (-591 *8)) (|:| -3374 *9)))) (-5 *5 (-108)) (-4 *8 (-989 *6 *7 *4)) (-4 *9 (-994 *6 *7 *4 *8)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *4 (-788)) (-5 *2 (-591 (-2 (|:| |val| *8) (|:| -3374 *9)))) (-5 *1 (-995 *6 *7 *4 *8 *9)))) (-1701 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-108)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *3 (-989 *6 *7 *8)) (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4)))) (-5 *1 (-995 *6 *7 *8 *3 *4)) (-4 *4 (-994 *6 *7 *8 *3)))) (-3819 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4)))) (-5 *1 (-995 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-3418 (*1 *2) (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-1176)) (-5 *1 (-995 *3 *4 *5 *6 *7)) (-4 *7 (-994 *3 *4 *5 *6)))) (-1677 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1072)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-1176)) (-5 *1 (-995 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))) (-2595 (*1 *2) (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-1176)) (-5 *1 (-995 *3 *4 *5 *6 *7)) (-4 *7 (-994 *3 *4 *5 *6)))) (-2974 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1072)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-1176)) (-5 *1 (-995 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2974 ((-1176) (-1072) (-1072) (-1072))) (-15 -2595 ((-1176))) (-15 -1677 ((-1176) (-1072) (-1072) (-1072))) (-15 -3418 ((-1176))) (-15 -3819 ((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) |#4| |#4| |#5|)) (-15 -1701 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -1701 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) |#3| (-108))) (-15 -3804 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5|)) (-15 -2915 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5|)) (-15 -1461 ((-108) |#4| |#5|)) (-15 -1461 ((-591 (-2 (|:| |val| (-108)) (|:| -3374 |#5|))) |#4| |#5|)) (-15 -4198 ((-591 |#5|) |#4| |#5|)) (-15 -4087 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#5|)))
+((-3008 (((-108) $ $) NIL)) (-2400 (((-1089) $) 8)) (-2339 (((-1072) $) 16)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 11)) (-4096 (((-108) $ $) 13)))
+(((-996 |#1|) (-13 (-1018) (-10 -8 (-15 -2400 ((-1089) $)))) (-1089)) (T -996))
+((-2400 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-996 *3)) (-14 *3 *2))))
+(-13 (-1018) (-10 -8 (-15 -2400 ((-1089) $))))
+((-3008 (((-108) $ $) NIL)) (-2819 (($ $ (-591 (-1089)) (-1 (-108) (-591 |#3|))) 33)) (-3109 (($ |#3| |#3|) 22) (($ |#3| |#3| (-591 (-1089))) 20)) (-3246 ((|#3| $) 13)) (-1251 (((-3 (-273 |#3|) "failed") $) 58)) (-3528 (((-273 |#3|) $) NIL)) (-2217 (((-591 (-1089)) $) 16)) (-2159 (((-825 |#1|) $) 11)) (-3239 ((|#3| $) 12)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3164 ((|#3| $ |#3|) 27) ((|#3| $ |#3| (-854)) 39)) (-3022 (((-796) $) 86) (($ (-273 |#3|)) 21)) (-4096 (((-108) $ $) 36)))
+(((-997 |#1| |#2| |#3|) (-13 (-1018) (-265 |#3| |#3|) (-966 (-273 |#3|)) (-10 -8 (-15 -3109 ($ |#3| |#3|)) (-15 -3109 ($ |#3| |#3| (-591 (-1089)))) (-15 -2819 ($ $ (-591 (-1089)) (-1 (-108) (-591 |#3|)))) (-15 -2159 ((-825 |#1|) $)) (-15 -3239 (|#3| $)) (-15 -3246 (|#3| $)) (-15 -3164 (|#3| $ |#3| (-854))) (-15 -2217 ((-591 (-1089)) $)))) (-1018) (-13 (-975) (-819 |#1|) (-788) (-566 (-825 |#1|))) (-13 (-408 |#2|) (-819 |#1|) (-566 (-825 |#1|)))) (T -997))
+((-3109 (*1 *1 *2 *2) (-12 (-4 *3 (-1018)) (-4 *4 (-13 (-975) (-819 *3) (-788) (-566 (-825 *3)))) (-5 *1 (-997 *3 *4 *2)) (-4 *2 (-13 (-408 *4) (-819 *3) (-566 (-825 *3)))))) (-3109 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-591 (-1089))) (-4 *4 (-1018)) (-4 *5 (-13 (-975) (-819 *4) (-788) (-566 (-825 *4)))) (-5 *1 (-997 *4 *5 *2)) (-4 *2 (-13 (-408 *5) (-819 *4) (-566 (-825 *4)))))) (-2819 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 (-1089))) (-5 *3 (-1 (-108) (-591 *6))) (-4 *6 (-13 (-408 *5) (-819 *4) (-566 (-825 *4)))) (-4 *4 (-1018)) (-4 *5 (-13 (-975) (-819 *4) (-788) (-566 (-825 *4)))) (-5 *1 (-997 *4 *5 *6)))) (-2159 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-13 (-975) (-819 *3) (-788) (-566 *2))) (-5 *2 (-825 *3)) (-5 *1 (-997 *3 *4 *5)) (-4 *5 (-13 (-408 *4) (-819 *3) (-566 *2))))) (-3239 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *2 (-13 (-408 *4) (-819 *3) (-566 (-825 *3)))) (-5 *1 (-997 *3 *4 *2)) (-4 *4 (-13 (-975) (-819 *3) (-788) (-566 (-825 *3)))))) (-3246 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *2 (-13 (-408 *4) (-819 *3) (-566 (-825 *3)))) (-5 *1 (-997 *3 *4 *2)) (-4 *4 (-13 (-975) (-819 *3) (-788) (-566 (-825 *3)))))) (-3164 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-854)) (-4 *4 (-1018)) (-4 *5 (-13 (-975) (-819 *4) (-788) (-566 (-825 *4)))) (-5 *1 (-997 *4 *5 *2)) (-4 *2 (-13 (-408 *5) (-819 *4) (-566 (-825 *4)))))) (-2217 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-13 (-975) (-819 *3) (-788) (-566 (-825 *3)))) (-5 *2 (-591 (-1089))) (-5 *1 (-997 *3 *4 *5)) (-4 *5 (-13 (-408 *4) (-819 *3) (-566 (-825 *3)))))))
+(-13 (-1018) (-265 |#3| |#3|) (-966 (-273 |#3|)) (-10 -8 (-15 -3109 ($ |#3| |#3|)) (-15 -3109 ($ |#3| |#3| (-591 (-1089)))) (-15 -2819 ($ $ (-591 (-1089)) (-1 (-108) (-591 |#3|)))) (-15 -2159 ((-825 |#1|) $)) (-15 -3239 (|#3| $)) (-15 -3246 (|#3| $)) (-15 -3164 (|#3| $ |#3| (-854))) (-15 -2217 ((-591 (-1089)) $))))
+((-3008 (((-108) $ $) NIL)) (-2783 (($ (-591 (-997 |#1| |#2| |#3|))) 13)) (-3858 (((-591 (-997 |#1| |#2| |#3|)) $) 20)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3164 ((|#3| $ |#3|) 23) ((|#3| $ |#3| (-854)) 26)) (-3022 (((-796) $) 16)) (-4096 (((-108) $ $) 19)))
+(((-998 |#1| |#2| |#3|) (-13 (-1018) (-265 |#3| |#3|) (-10 -8 (-15 -2783 ($ (-591 (-997 |#1| |#2| |#3|)))) (-15 -3858 ((-591 (-997 |#1| |#2| |#3|)) $)) (-15 -3164 (|#3| $ |#3| (-854))))) (-1018) (-13 (-975) (-819 |#1|) (-788) (-566 (-825 |#1|))) (-13 (-408 |#2|) (-819 |#1|) (-566 (-825 |#1|)))) (T -998))
+((-2783 (*1 *1 *2) (-12 (-5 *2 (-591 (-997 *3 *4 *5))) (-4 *3 (-1018)) (-4 *4 (-13 (-975) (-819 *3) (-788) (-566 (-825 *3)))) (-4 *5 (-13 (-408 *4) (-819 *3) (-566 (-825 *3)))) (-5 *1 (-998 *3 *4 *5)))) (-3858 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-13 (-975) (-819 *3) (-788) (-566 (-825 *3)))) (-5 *2 (-591 (-997 *3 *4 *5))) (-5 *1 (-998 *3 *4 *5)) (-4 *5 (-13 (-408 *4) (-819 *3) (-566 (-825 *3)))))) (-3164 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-854)) (-4 *4 (-1018)) (-4 *5 (-13 (-975) (-819 *4) (-788) (-566 (-825 *4)))) (-5 *1 (-998 *4 *5 *2)) (-4 *2 (-13 (-408 *5) (-819 *4) (-566 (-825 *4)))))))
+(-13 (-1018) (-265 |#3| |#3|) (-10 -8 (-15 -2783 ($ (-591 (-997 |#1| |#2| |#3|)))) (-15 -3858 ((-591 (-997 |#1| |#2| |#3|)) $)) (-15 -3164 (|#3| $ |#3| (-854)))))
+((-2270 (((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)) (-108) (-108)) 75) (((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|))) 77) (((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)) (-108)) 76)))
+(((-999 |#1| |#2|) (-10 -7 (-15 -2270 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)) (-108))) (-15 -2270 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)))) (-15 -2270 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)) (-108) (-108)))) (-13 (-286) (-138)) (-591 (-1089))) (T -999))
+((-2270 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-286) (-138))) (-5 *2 (-591 (-2 (|:| -2274 (-1085 *5)) (|:| -3572 (-591 (-885 *5)))))) (-5 *1 (-999 *5 *6)) (-5 *3 (-591 (-885 *5))) (-14 *6 (-591 (-1089))))) (-2270 (*1 *2 *3) (-12 (-4 *4 (-13 (-286) (-138))) (-5 *2 (-591 (-2 (|:| -2274 (-1085 *4)) (|:| -3572 (-591 (-885 *4)))))) (-5 *1 (-999 *4 *5)) (-5 *3 (-591 (-885 *4))) (-14 *5 (-591 (-1089))))) (-2270 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-286) (-138))) (-5 *2 (-591 (-2 (|:| -2274 (-1085 *5)) (|:| -3572 (-591 (-885 *5)))))) (-5 *1 (-999 *5 *6)) (-5 *3 (-591 (-885 *5))) (-14 *6 (-591 (-1089))))))
+(-10 -7 (-15 -2270 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)) (-108))) (-15 -2270 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)))) (-15 -2270 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)) (-108) (-108))))
+((-1348 (((-396 |#3|) |#3|) 18)))
+(((-1000 |#1| |#2| |#3|) (-10 -7 (-15 -1348 ((-396 |#3|) |#3|))) (-1147 (-385 (-525))) (-13 (-341) (-138) (-666 (-385 (-525)) |#1|)) (-1147 |#2|)) (T -1000))
+((-1348 (*1 *2 *3) (-12 (-4 *4 (-1147 (-385 (-525)))) (-4 *5 (-13 (-341) (-138) (-666 (-385 (-525)) *4))) (-5 *2 (-396 *3)) (-5 *1 (-1000 *4 *5 *3)) (-4 *3 (-1147 *5)))))
+(-10 -7 (-15 -1348 ((-396 |#3|) |#3|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 126)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-341)))) (-3706 (($ $) NIL (|has| |#1| (-341)))) (-1715 (((-108) $) NIL (|has| |#1| (-341)))) (-2796 (((-631 |#1|) (-1171 $)) NIL) (((-631 |#1|)) 115)) (-2569 ((|#1| $) 119)) (-3734 (((-1099 (-854) (-712)) (-525)) NIL (|has| |#1| (-327)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL (|has| |#1| (-341)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-341)))) (-1947 (((-108) $ $) NIL (|has| |#1| (-341)))) (-3032 (((-712)) 40 (|has| |#1| (-346)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) NIL)) (-3528 (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) NIL)) (-4171 (($ (-1171 |#1|) (-1171 $)) NIL) (($ (-1171 |#1|)) 43)) (-2625 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-327)))) (-2129 (($ $ $) NIL (|has| |#1| (-341)))) (-3922 (((-631 |#1|) $ (-1171 $)) NIL) (((-631 |#1|) $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) 106) (((-631 |#1|) (-631 $)) 101)) (-1227 (($ |#2|) 61) (((-3 $ "failed") (-385 |#2|)) NIL (|has| |#1| (-341)))) (-4163 (((-3 $ "failed") $) NIL)) (-4073 (((-854)) 77)) (-3377 (($) 44 (|has| |#1| (-346)))) (-2110 (($ $ $) NIL (|has| |#1| (-341)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#1| (-341)))) (-3944 (($) NIL (|has| |#1| (-327)))) (-4104 (((-108) $) NIL (|has| |#1| (-327)))) (-2299 (($ $ (-712)) NIL (|has| |#1| (-327))) (($ $) NIL (|has| |#1| (-327)))) (-2744 (((-108) $) NIL (|has| |#1| (-341)))) (-3873 (((-854) $) NIL (|has| |#1| (-327))) (((-774 (-854)) $) NIL (|has| |#1| (-327)))) (-2824 (((-108) $) NIL)) (-2771 ((|#1| $) NIL)) (-2085 (((-3 $ "failed") $) NIL (|has| |#1| (-327)))) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-1382 ((|#2| $) 84 (|has| |#1| (-341)))) (-3016 (((-854) $) 131 (|has| |#1| (-346)))) (-1223 ((|#2| $) 58)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL (|has| |#1| (-341)))) (-3506 (($) NIL (|has| |#1| (-327)) CONST)) (-2226 (($ (-854)) 125 (|has| |#1| (-346)))) (-2047 (((-1036) $) NIL)) (-3857 (($) 121)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-341)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-2846 (((-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))) NIL (|has| |#1| (-327)))) (-1348 (((-396 $) $) NIL (|has| |#1| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2089 (((-3 $ "failed") $ $) NIL (|has| |#1| (-341)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-1712 (((-712) $) NIL (|has| |#1| (-341)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-2976 ((|#1| (-1171 $)) NIL) ((|#1|) 109)) (-2953 (((-712) $) NIL (|has| |#1| (-327))) (((-3 (-712) "failed") $ $) NIL (|has| |#1| (-327)))) (-3266 (($ $) NIL (-3321 (-12 (|has| |#1| (-213)) (|has| |#1| (-341))) (|has| |#1| (-327)))) (($ $ (-712)) NIL (-3321 (-12 (|has| |#1| (-213)) (|has| |#1| (-341))) (|has| |#1| (-327)))) (($ $ (-1089)) NIL (-12 (|has| |#1| (-341)) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-341)) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-341)) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-341)) (|has| |#1| (-833 (-1089))))) (($ $ (-1 |#1| |#1|) (-712)) NIL (|has| |#1| (-341))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-341)))) (-1244 (((-631 |#1|) (-1171 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-341)))) (-1478 ((|#2|) 73)) (-2616 (($) NIL (|has| |#1| (-327)))) (-3572 (((-1171 |#1|) $ (-1171 $)) 89) (((-631 |#1|) (-1171 $) (-1171 $)) NIL) (((-1171 |#1|) $) 71) (((-631 |#1|) (-1171 $)) 85)) (-1408 (((-1171 |#1|) $) NIL) (($ (-1171 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (|has| |#1| (-327)))) (-3022 (((-796) $) 57) (($ (-525)) 53) (($ |#1|) 54) (($ $) NIL (|has| |#1| (-341))) (($ (-385 (-525))) NIL (-3321 (|has| |#1| (-341)) (|has| |#1| (-966 (-385 (-525))))))) (-1437 (($ $) NIL (|has| |#1| (-327))) (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-3806 ((|#2| $) 82)) (-2128 (((-712)) 75)) (-4003 (((-1171 $)) 81)) (-2495 (((-108) $ $) NIL (|has| |#1| (-341)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341)))) (-4191 (($) 30 T CONST)) (-4197 (($) 19 T CONST)) (-4196 (($ $) NIL (-3321 (-12 (|has| |#1| (-213)) (|has| |#1| (-341))) (|has| |#1| (-327)))) (($ $ (-712)) NIL (-3321 (-12 (|has| |#1| (-213)) (|has| |#1| (-341))) (|has| |#1| (-327)))) (($ $ (-1089)) NIL (-12 (|has| |#1| (-341)) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-341)) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-341)) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-341)) (|has| |#1| (-833 (-1089))))) (($ $ (-1 |#1| |#1|) (-712)) NIL (|has| |#1| (-341))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-341)))) (-4096 (((-108) $ $) 63)) (-4173 (($ $ $) NIL (|has| |#1| (-341)))) (-4164 (($ $) 67) (($ $ $) NIL)) (-4156 (($ $ $) 65)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341)))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 51) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 48) (($ (-385 (-525)) $) NIL (|has| |#1| (-341))) (($ $ (-385 (-525))) NIL (|has| |#1| (-341)))))
+(((-1001 |#1| |#2| |#3|) (-666 |#1| |#2|) (-160) (-1147 |#1|) |#2|) (T -1001))
+NIL
+(-666 |#1| |#2|)
+((-1348 (((-396 |#3|) |#3|) 19)))
+(((-1002 |#1| |#2| |#3|) (-10 -7 (-15 -1348 ((-396 |#3|) |#3|))) (-1147 (-385 (-885 (-525)))) (-13 (-341) (-138) (-666 (-385 (-885 (-525))) |#1|)) (-1147 |#2|)) (T -1002))
+((-1348 (*1 *2 *3) (-12 (-4 *4 (-1147 (-385 (-885 (-525))))) (-4 *5 (-13 (-341) (-138) (-666 (-385 (-885 (-525))) *4))) (-5 *2 (-396 *3)) (-5 *1 (-1002 *4 *5 *3)) (-4 *3 (-1147 *5)))))
+(-10 -7 (-15 -1348 ((-396 |#3|) |#3|)))
+((-3008 (((-108) $ $) NIL)) (-3741 (($ $ $) 14)) (-2478 (($ $ $) 15)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-4192 (($) 6)) (-1408 (((-1089) $) 18)) (-3022 (((-796) $) 12)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 13)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 8)))
+(((-1003) (-13 (-788) (-10 -8 (-15 -4192 ($)) (-15 -1408 ((-1089) $))))) (T -1003))
+((-4192 (*1 *1) (-5 *1 (-1003))) (-1408 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-1003)))))
+(-13 (-788) (-10 -8 (-15 -4192 ($)) (-15 -1408 ((-1089) $))))
+((-3142 ((|#1| |#1| (-1 (-525) |#1| |#1|)) 24) ((|#1| |#1| (-1 (-108) |#1|)) 20)) (-1375 (((-1176)) 15)) (-2349 (((-591 |#1|)) 9)))
+(((-1004 |#1|) (-10 -7 (-15 -1375 ((-1176))) (-15 -2349 ((-591 |#1|))) (-15 -3142 (|#1| |#1| (-1 (-108) |#1|))) (-15 -3142 (|#1| |#1| (-1 (-525) |#1| |#1|)))) (-127)) (T -1004))
+((-3142 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-525) *2 *2)) (-4 *2 (-127)) (-5 *1 (-1004 *2)))) (-3142 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *2)) (-4 *2 (-127)) (-5 *1 (-1004 *2)))) (-2349 (*1 *2) (-12 (-5 *2 (-591 *3)) (-5 *1 (-1004 *3)) (-4 *3 (-127)))) (-1375 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-1004 *3)) (-4 *3 (-127)))))
+(-10 -7 (-15 -1375 ((-1176))) (-15 -2349 ((-591 |#1|))) (-15 -3142 (|#1| |#1| (-1 (-108) |#1|))) (-15 -3142 (|#1| |#1| (-1 (-525) |#1| |#1|))))
+((-3620 (($ (-104) $) 15)) (-1590 (((-3 (-104) "failed") (-1089) $) 14)) (-3209 (($) 6)) (-3245 (($) 16)) (-1734 (($) 17)) (-3480 (((-591 (-162)) $) 9)) (-3022 (((-796) $) 20)))
+(((-1005) (-13 (-565 (-796)) (-10 -8 (-15 -3209 ($)) (-15 -3480 ((-591 (-162)) $)) (-15 -1590 ((-3 (-104) "failed") (-1089) $)) (-15 -3620 ($ (-104) $)) (-15 -3245 ($)) (-15 -1734 ($))))) (T -1005))
+((-3209 (*1 *1) (-5 *1 (-1005))) (-3480 (*1 *2 *1) (-12 (-5 *2 (-591 (-162))) (-5 *1 (-1005)))) (-1590 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1089)) (-5 *2 (-104)) (-5 *1 (-1005)))) (-3620 (*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-1005)))) (-3245 (*1 *1) (-5 *1 (-1005))) (-1734 (*1 *1) (-5 *1 (-1005))))
+(-13 (-565 (-796)) (-10 -8 (-15 -3209 ($)) (-15 -3480 ((-591 (-162)) $)) (-15 -1590 ((-3 (-104) "failed") (-1089) $)) (-15 -3620 ($ (-104) $)) (-15 -3245 ($)) (-15 -1734 ($))))
+((-1593 (((-1171 (-631 |#1|)) (-591 (-631 |#1|))) 42) (((-1171 (-631 (-885 |#1|))) (-591 (-1089)) (-631 (-885 |#1|))) 63) (((-1171 (-631 (-385 (-885 |#1|)))) (-591 (-1089)) (-631 (-385 (-885 |#1|)))) 79)) (-3572 (((-1171 |#1|) (-631 |#1|) (-591 (-631 |#1|))) 36)))
+(((-1006 |#1|) (-10 -7 (-15 -1593 ((-1171 (-631 (-385 (-885 |#1|)))) (-591 (-1089)) (-631 (-385 (-885 |#1|))))) (-15 -1593 ((-1171 (-631 (-885 |#1|))) (-591 (-1089)) (-631 (-885 |#1|)))) (-15 -1593 ((-1171 (-631 |#1|)) (-591 (-631 |#1|)))) (-15 -3572 ((-1171 |#1|) (-631 |#1|) (-591 (-631 |#1|))))) (-341)) (T -1006))
+((-3572 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-631 *5))) (-5 *3 (-631 *5)) (-4 *5 (-341)) (-5 *2 (-1171 *5)) (-5 *1 (-1006 *5)))) (-1593 (*1 *2 *3) (-12 (-5 *3 (-591 (-631 *4))) (-4 *4 (-341)) (-5 *2 (-1171 (-631 *4))) (-5 *1 (-1006 *4)))) (-1593 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-1089))) (-4 *5 (-341)) (-5 *2 (-1171 (-631 (-885 *5)))) (-5 *1 (-1006 *5)) (-5 *4 (-631 (-885 *5))))) (-1593 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-1089))) (-4 *5 (-341)) (-5 *2 (-1171 (-631 (-385 (-885 *5))))) (-5 *1 (-1006 *5)) (-5 *4 (-631 (-385 (-885 *5)))))))
+(-10 -7 (-15 -1593 ((-1171 (-631 (-385 (-885 |#1|)))) (-591 (-1089)) (-631 (-385 (-885 |#1|))))) (-15 -1593 ((-1171 (-631 (-885 |#1|))) (-591 (-1089)) (-631 (-885 |#1|)))) (-15 -1593 ((-1171 (-631 |#1|)) (-591 (-631 |#1|)))) (-15 -3572 ((-1171 |#1|) (-631 |#1|) (-591 (-631 |#1|)))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1773 (((-591 (-712)) $) NIL) (((-591 (-712)) $ (-1089)) NIL)) (-3197 (((-712) $) NIL) (((-712) $ (-1089)) NIL)) (-1507 (((-591 (-1008 (-1089))) $) NIL)) (-1312 (((-1085 $) $ (-1008 (-1089))) NIL) (((-1085 |#1|) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-4090 (((-712) $) NIL) (((-712) $ (-591 (-1008 (-1089)))) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1291 (($ $) NIL (|has| |#1| (-429)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1257 (($ $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-1008 (-1089)) "failed") $) NIL) (((-3 (-1089) "failed") $) NIL) (((-3 (-1041 |#1| (-1089)) "failed") $) NIL)) (-3528 ((|#1| $) NIL) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-1008 (-1089)) $) NIL) (((-1089) $) NIL) (((-1041 |#1| (-1089)) $) NIL)) (-2805 (($ $ $ (-1008 (-1089))) NIL (|has| |#1| (-160)))) (-1710 (($ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) NIL) (((-631 |#1|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3208 (($ $) NIL (|has| |#1| (-429))) (($ $ (-1008 (-1089))) NIL (|has| |#1| (-429)))) (-1695 (((-591 $) $) NIL)) (-2744 (((-108) $) NIL (|has| |#1| (-842)))) (-2056 (($ $ |#1| (-497 (-1008 (-1089))) $) NIL)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| (-1008 (-1089)) (-819 (-357))) (|has| |#1| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| (-1008 (-1089)) (-819 (-525))) (|has| |#1| (-819 (-525)))))) (-3873 (((-712) $ (-1089)) NIL) (((-712) $) NIL)) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) NIL)) (-1493 (($ (-1085 |#1|) (-1008 (-1089))) NIL) (($ (-1085 $) (-1008 (-1089))) NIL)) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-497 (-1008 (-1089)))) NIL) (($ $ (-1008 (-1089)) (-712)) NIL) (($ $ (-591 (-1008 (-1089))) (-591 (-712))) NIL)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ (-1008 (-1089))) NIL)) (-2624 (((-497 (-1008 (-1089))) $) NIL) (((-712) $ (-1008 (-1089))) NIL) (((-591 (-712)) $ (-591 (-1008 (-1089)))) NIL)) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-4015 (($ (-1 (-497 (-1008 (-1089))) (-497 (-1008 (-1089)))) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-2492 (((-1 $ (-712)) (-1089)) NIL) (((-1 $ (-712)) $) NIL (|has| |#1| (-213)))) (-2254 (((-3 (-1008 (-1089)) "failed") $) NIL)) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-1968 (((-1008 (-1089)) $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2339 (((-1072) $) NIL)) (-3326 (((-108) $) NIL)) (-3376 (((-3 (-591 $) "failed") $) NIL)) (-2010 (((-3 (-591 $) "failed") $) NIL)) (-2292 (((-3 (-2 (|:| |var| (-1008 (-1089))) (|:| -2008 (-712))) "failed") $) NIL)) (-2794 (($ $) NIL)) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) NIL)) (-1646 ((|#1| $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-429)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1348 (((-396 $) $) NIL (|has| |#1| (-842)))) (-2089 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-517)))) (-4132 (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-1008 (-1089)) |#1|) NIL) (($ $ (-591 (-1008 (-1089))) (-591 |#1|)) NIL) (($ $ (-1008 (-1089)) $) NIL) (($ $ (-591 (-1008 (-1089))) (-591 $)) NIL) (($ $ (-1089) $) NIL (|has| |#1| (-213))) (($ $ (-591 (-1089)) (-591 $)) NIL (|has| |#1| (-213))) (($ $ (-1089) |#1|) NIL (|has| |#1| (-213))) (($ $ (-591 (-1089)) (-591 |#1|)) NIL (|has| |#1| (-213)))) (-2976 (($ $ (-1008 (-1089))) NIL (|has| |#1| (-160)))) (-3266 (($ $ (-1008 (-1089))) NIL) (($ $ (-591 (-1008 (-1089)))) NIL) (($ $ (-1008 (-1089)) (-712)) NIL) (($ $ (-591 (-1008 (-1089))) (-591 (-712))) NIL) (($ $) NIL (|has| |#1| (-213))) (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3945 (((-591 (-1089)) $) NIL)) (-1316 (((-497 (-1008 (-1089))) $) NIL) (((-712) $ (-1008 (-1089))) NIL) (((-591 (-712)) $ (-591 (-1008 (-1089)))) NIL) (((-712) $ (-1089)) NIL)) (-1408 (((-825 (-357)) $) NIL (-12 (|has| (-1008 (-1089)) (-566 (-825 (-357)))) (|has| |#1| (-566 (-825 (-357)))))) (((-825 (-525)) $) NIL (-12 (|has| (-1008 (-1089)) (-566 (-825 (-525)))) (|has| |#1| (-566 (-825 (-525)))))) (((-501) $) NIL (-12 (|has| (-1008 (-1089)) (-566 (-501))) (|has| |#1| (-566 (-501)))))) (-2668 ((|#1| $) NIL (|has| |#1| (-429))) (($ $ (-1008 (-1089))) NIL (|has| |#1| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#1| (-842))))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#1|) NIL) (($ (-1008 (-1089))) NIL) (($ (-1089)) NIL) (($ (-1041 |#1| (-1089))) NIL) (($ (-385 (-525))) NIL (-3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-966 (-385 (-525)))))) (($ $) NIL (|has| |#1| (-517)))) (-3654 (((-591 |#1|) $) NIL)) (-2560 ((|#1| $ (-497 (-1008 (-1089)))) NIL) (($ $ (-1008 (-1089)) (-712)) NIL) (($ $ (-591 (-1008 (-1089))) (-591 (-712))) NIL)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#1| (-842))) (|has| |#1| (-136))))) (-2128 (((-712)) NIL)) (-1698 (($ $ $ (-712)) NIL (|has| |#1| (-160)))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ (-1008 (-1089))) NIL) (($ $ (-591 (-1008 (-1089)))) NIL) (($ $ (-1008 (-1089)) (-712)) NIL) (($ $ (-591 (-1008 (-1089))) (-591 (-712))) NIL) (($ $) NIL (|has| |#1| (-213))) (($ $ (-712)) NIL (|has| |#1| (-213))) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-1007 |#1|) (-13 (-232 |#1| (-1089) (-1008 (-1089)) (-497 (-1008 (-1089)))) (-966 (-1041 |#1| (-1089)))) (-975)) (T -1007))
+NIL
+(-13 (-232 |#1| (-1089) (-1008 (-1089)) (-497 (-1008 (-1089)))) (-966 (-1041 |#1| (-1089))))
+((-3008 (((-108) $ $) NIL)) (-3197 (((-712) $) NIL)) (-2037 ((|#1| $) 10)) (-1251 (((-3 |#1| "failed") $) NIL)) (-3528 ((|#1| $) NIL)) (-3873 (((-712) $) 11)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2492 (($ |#1| (-712)) 9)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3266 (($ $) NIL) (($ $ (-712)) NIL)) (-3022 (((-796) $) NIL) (($ |#1|) NIL)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 15)))
+(((-1008 |#1|) (-245 |#1|) (-788)) (T -1008))
+NIL
+(-245 |#1|)
+((-1340 (((-591 |#2|) (-1 |#2| |#1|) (-1013 |#1|)) 24 (|has| |#1| (-786))) (((-1013 |#2|) (-1 |#2| |#1|) (-1013 |#1|)) 14)))
+(((-1009 |#1| |#2|) (-10 -7 (-15 -1340 ((-1013 |#2|) (-1 |#2| |#1|) (-1013 |#1|))) (IF (|has| |#1| (-786)) (-15 -1340 ((-591 |#2|) (-1 |#2| |#1|) (-1013 |#1|))) |%noBranch|)) (-1125) (-1125)) (T -1009))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1013 *5)) (-4 *5 (-786)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-591 *6)) (-5 *1 (-1009 *5 *6)))) (-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1013 *5)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-1013 *6)) (-5 *1 (-1009 *5 *6)))))
+(-10 -7 (-15 -1340 ((-1013 |#2|) (-1 |#2| |#1|) (-1013 |#1|))) (IF (|has| |#1| (-786)) (-15 -1340 ((-591 |#2|) (-1 |#2| |#1|) (-1013 |#1|))) |%noBranch|))
+((-1340 (((-1011 |#2|) (-1 |#2| |#1|) (-1011 |#1|)) 19)))
+(((-1010 |#1| |#2|) (-10 -7 (-15 -1340 ((-1011 |#2|) (-1 |#2| |#1|) (-1011 |#1|)))) (-1125) (-1125)) (T -1010))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1011 *5)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-1011 *6)) (-5 *1 (-1010 *5 *6)))))
+(-10 -7 (-15 -1340 ((-1011 |#2|) (-1 |#2| |#1|) (-1011 |#1|))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-2037 (((-1089) $) 11)) (-3746 (((-1013 |#1|) $) 12)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-2717 (($ (-1089) (-1013 |#1|)) 10)) (-3022 (((-796) $) 20 (|has| |#1| (-1018)))) (-4096 (((-108) $ $) 15 (|has| |#1| (-1018)))))
+(((-1011 |#1|) (-13 (-1125) (-10 -8 (-15 -2717 ($ (-1089) (-1013 |#1|))) (-15 -2037 ((-1089) $)) (-15 -3746 ((-1013 |#1|) $)) (IF (|has| |#1| (-1018)) (-6 (-1018)) |%noBranch|))) (-1125)) (T -1011))
+((-2717 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1013 *4)) (-4 *4 (-1125)) (-5 *1 (-1011 *4)))) (-2037 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-1011 *3)) (-4 *3 (-1125)))) (-3746 (*1 *2 *1) (-12 (-5 *2 (-1013 *3)) (-5 *1 (-1011 *3)) (-4 *3 (-1125)))))
+(-13 (-1125) (-10 -8 (-15 -2717 ($ (-1089) (-1013 |#1|))) (-15 -2037 ((-1089) $)) (-15 -3746 ((-1013 |#1|) $)) (IF (|has| |#1| (-1018)) (-6 (-1018)) |%noBranch|)))
+((-3746 (($ |#1| |#1|) 7)) (-2023 ((|#1| $) 10)) (-3960 ((|#1| $) 12)) (-3972 (((-525) $) 8)) (-2397 ((|#1| $) 9)) (-3983 ((|#1| $) 11)) (-1408 (($ |#1|) 6)) (-1416 (($ |#1| |#1|) 14)) (-3921 (($ $ (-525)) 13)))
+(((-1012 |#1|) (-131) (-1125)) (T -1012))
+((-1416 (*1 *1 *2 *2) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1125)))) (-3921 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-1012 *3)) (-4 *3 (-1125)))) (-3960 (*1 *2 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1125)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1125)))) (-2023 (*1 *2 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1125)))) (-2397 (*1 *2 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1125)))) (-3972 (*1 *2 *1) (-12 (-4 *1 (-1012 *3)) (-4 *3 (-1125)) (-5 *2 (-525)))) (-3746 (*1 *1 *2 *2) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1125)))) (-1408 (*1 *1 *2) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1125)))))
+(-13 (-1125) (-10 -8 (-15 -1416 ($ |t#1| |t#1|)) (-15 -3921 ($ $ (-525))) (-15 -3960 (|t#1| $)) (-15 -3983 (|t#1| $)) (-15 -2023 (|t#1| $)) (-15 -2397 (|t#1| $)) (-15 -3972 ((-525) $)) (-15 -3746 ($ |t#1| |t#1|)) (-15 -1408 ($ |t#1|))))
+(((-1125) . T))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3746 (($ |#1| |#1|) 15)) (-1340 (((-591 |#1|) (-1 |#1| |#1|) $) 38 (|has| |#1| (-786)))) (-2023 ((|#1| $) 10)) (-3960 ((|#1| $) 9)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-3972 (((-525) $) 14)) (-2397 ((|#1| $) 12)) (-3983 ((|#1| $) 11)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-4093 (((-591 |#1|) $) 36 (|has| |#1| (-786))) (((-591 |#1|) (-591 $)) 35 (|has| |#1| (-786)))) (-1408 (($ |#1|) 26)) (-3022 (((-796) $) 25 (|has| |#1| (-1018)))) (-1416 (($ |#1| |#1|) 8)) (-3921 (($ $ (-525)) 16)) (-4096 (((-108) $ $) 19 (|has| |#1| (-1018)))))
+(((-1013 |#1|) (-13 (-1012 |#1|) (-10 -7 (IF (|has| |#1| (-1018)) (-6 (-1018)) |%noBranch|) (IF (|has| |#1| (-786)) (-6 (-1014 |#1| (-591 |#1|))) |%noBranch|))) (-1125)) (T -1013))
+NIL
+(-13 (-1012 |#1|) (-10 -7 (IF (|has| |#1| (-1018)) (-6 (-1018)) |%noBranch|) (IF (|has| |#1| (-786)) (-6 (-1014 |#1| (-591 |#1|))) |%noBranch|)))
+((-3746 (($ |#1| |#1|) 7)) (-1340 ((|#2| (-1 |#1| |#1|) $) 16)) (-2023 ((|#1| $) 10)) (-3960 ((|#1| $) 12)) (-3972 (((-525) $) 8)) (-2397 ((|#1| $) 9)) (-3983 ((|#1| $) 11)) (-4093 ((|#2| (-591 $)) 18) ((|#2| $) 17)) (-1408 (($ |#1|) 6)) (-1416 (($ |#1| |#1|) 14)) (-3921 (($ $ (-525)) 13)))
+(((-1014 |#1| |#2|) (-131) (-786) (-1063 |t#1|)) (T -1014))
+((-4093 (*1 *2 *3) (-12 (-5 *3 (-591 *1)) (-4 *1 (-1014 *4 *2)) (-4 *4 (-786)) (-4 *2 (-1063 *4)))) (-4093 (*1 *2 *1) (-12 (-4 *1 (-1014 *3 *2)) (-4 *3 (-786)) (-4 *2 (-1063 *3)))) (-1340 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1014 *4 *2)) (-4 *4 (-786)) (-4 *2 (-1063 *4)))))
+(-13 (-1012 |t#1|) (-10 -8 (-15 -4093 (|t#2| (-591 $))) (-15 -4093 (|t#2| $)) (-15 -1340 (|t#2| (-1 |t#1| |t#1|) $))))
+(((-1012 |#1|) . T) ((-1125) . T))
+((-1414 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-3595 (($ $ $) 10)) (-3097 (($ $ $) NIL) (($ $ |#2|) 15)))
+(((-1015 |#1| |#2|) (-10 -8 (-15 -1414 (|#1| |#2| |#1|)) (-15 -1414 (|#1| |#1| |#2|)) (-15 -1414 (|#1| |#1| |#1|)) (-15 -3595 (|#1| |#1| |#1|)) (-15 -3097 (|#1| |#1| |#2|)) (-15 -3097 (|#1| |#1| |#1|))) (-1016 |#2|) (-1018)) (T -1015))
+NIL
+(-10 -8 (-15 -1414 (|#1| |#2| |#1|)) (-15 -1414 (|#1| |#1| |#2|)) (-15 -1414 (|#1| |#1| |#1|)) (-15 -3595 (|#1| |#1| |#1|)) (-15 -3097 (|#1| |#1| |#2|)) (-15 -3097 (|#1| |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1414 (($ $ $) 18) (($ $ |#1|) 17) (($ |#1| $) 16)) (-3595 (($ $ $) 20)) (-3214 (((-108) $ $) 19)) (-3891 (((-108) $ (-712)) 35)) (-2442 (($) 25) (($ (-591 |#1|)) 24)) (-2305 (($ (-1 (-108) |#1|) $) 56 (|has| $ (-6 -4250)))) (-3798 (($) 36 T CONST)) (-3098 (($ $) 59 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ |#1| $) 58 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4250)))) (-3454 (((-591 |#1|) $) 43 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 34)) (-2552 (((-591 |#1|) $) 44 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 46 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 38)) (-3971 (((-108) $ (-712)) 33)) (-2339 (((-1072) $) 9)) (-3516 (($ $ $) 23)) (-2047 (((-1036) $) 10)) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 52)) (-1623 (((-108) (-1 (-108) |#1|) $) 41 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 |#1|) (-591 |#1|)) 50 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 49 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 48 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 (-273 |#1|))) 47 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 29)) (-3028 (((-108) $) 32)) (-3209 (($) 31)) (-3097 (($ $ $) 22) (($ $ |#1|) 21)) (-2064 (((-712) |#1| $) 45 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) (((-712) (-1 (-108) |#1|) $) 42 (|has| $ (-6 -4250)))) (-3199 (($ $) 30)) (-1408 (((-501) $) 60 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 51)) (-3022 (((-796) $) 11)) (-2973 (($) 27) (($ (-591 |#1|)) 26)) (-4158 (((-108) (-1 (-108) |#1|) $) 40 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 6)) (-4112 (((-108) $ $) 28)) (-4045 (((-712) $) 37 (|has| $ (-6 -4250)))))
+(((-1016 |#1|) (-131) (-1018)) (T -1016))
+((-4112 (*1 *2 *1 *1) (-12 (-4 *1 (-1016 *3)) (-4 *3 (-1018)) (-5 *2 (-108)))) (-2973 (*1 *1) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018)))) (-2973 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-4 *1 (-1016 *3)))) (-2442 (*1 *1) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018)))) (-2442 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-4 *1 (-1016 *3)))) (-3516 (*1 *1 *1 *1) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018)))) (-3097 (*1 *1 *1 *1) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018)))) (-3097 (*1 *1 *1 *2) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018)))) (-3595 (*1 *1 *1 *1) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018)))) (-3214 (*1 *2 *1 *1) (-12 (-4 *1 (-1016 *3)) (-4 *3 (-1018)) (-5 *2 (-108)))) (-1414 (*1 *1 *1 *1) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018)))) (-1414 (*1 *1 *1 *2) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018)))) (-1414 (*1 *1 *2 *1) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018)))))
+(-13 (-1018) (-142 |t#1|) (-10 -8 (-6 -4240) (-15 -4112 ((-108) $ $)) (-15 -2973 ($)) (-15 -2973 ($ (-591 |t#1|))) (-15 -2442 ($)) (-15 -2442 ($ (-591 |t#1|))) (-15 -3516 ($ $ $)) (-15 -3097 ($ $ $)) (-15 -3097 ($ $ |t#1|)) (-15 -3595 ($ $ $)) (-15 -3214 ((-108) $ $)) (-15 -1414 ($ $ $)) (-15 -1414 ($ $ |t#1|)) (-15 -1414 ($ |t#1| $))))
+(((-33) . T) ((-97) . T) ((-565 (-796)) . T) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-1018) . T) ((-1125) . T))
+((-2339 (((-1072) $) 10)) (-2047 (((-1036) $) 8)))
+(((-1017 |#1|) (-10 -8 (-15 -2339 ((-1072) |#1|)) (-15 -2047 ((-1036) |#1|))) (-1018)) (T -1017))
+NIL
+(-10 -8 (-15 -2339 ((-1072) |#1|)) (-15 -2047 ((-1036) |#1|)))
+((-3008 (((-108) $ $) 7)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4096 (((-108) $ $) 6)))
+(((-1018) (-131)) (T -1018))
+((-2047 (*1 *2 *1) (-12 (-4 *1 (-1018)) (-5 *2 (-1036)))) (-2339 (*1 *2 *1) (-12 (-4 *1 (-1018)) (-5 *2 (-1072)))))
+(-13 (-97) (-565 (-796)) (-10 -8 (-15 -2047 ((-1036) $)) (-15 -2339 ((-1072) $))))
+(((-97) . T) ((-565 (-796)) . T))
+((-3008 (((-108) $ $) NIL)) (-3032 (((-712)) 30)) (-3512 (($ (-591 (-854))) 52)) (-3900 (((-3 $ "failed") $ (-854) (-854)) 58)) (-3377 (($) 32)) (-2141 (((-108) (-854) $) 35)) (-3016 (((-854) $) 50)) (-2339 (((-1072) $) NIL)) (-2226 (($ (-854)) 31)) (-3813 (((-3 $ "failed") $ (-854)) 55)) (-2047 (((-1036) $) NIL)) (-1740 (((-1171 $)) 40)) (-2404 (((-591 (-854)) $) 24)) (-2576 (((-712) $ (-854) (-854)) 56)) (-3022 (((-796) $) 29)) (-4096 (((-108) $ $) 21)))
+(((-1019 |#1| |#2|) (-13 (-346) (-10 -8 (-15 -3813 ((-3 $ "failed") $ (-854))) (-15 -3900 ((-3 $ "failed") $ (-854) (-854))) (-15 -2404 ((-591 (-854)) $)) (-15 -3512 ($ (-591 (-854)))) (-15 -1740 ((-1171 $))) (-15 -2141 ((-108) (-854) $)) (-15 -2576 ((-712) $ (-854) (-854))))) (-854) (-854)) (T -1019))
+((-3813 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-854)) (-5 *1 (-1019 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-3900 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-854)) (-5 *1 (-1019 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-2404 (*1 *2 *1) (-12 (-5 *2 (-591 (-854))) (-5 *1 (-1019 *3 *4)) (-14 *3 (-854)) (-14 *4 (-854)))) (-3512 (*1 *1 *2) (-12 (-5 *2 (-591 (-854))) (-5 *1 (-1019 *3 *4)) (-14 *3 (-854)) (-14 *4 (-854)))) (-1740 (*1 *2) (-12 (-5 *2 (-1171 (-1019 *3 *4))) (-5 *1 (-1019 *3 *4)) (-14 *3 (-854)) (-14 *4 (-854)))) (-2141 (*1 *2 *3 *1) (-12 (-5 *3 (-854)) (-5 *2 (-108)) (-5 *1 (-1019 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-2576 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-854)) (-5 *2 (-712)) (-5 *1 (-1019 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
+(-13 (-346) (-10 -8 (-15 -3813 ((-3 $ "failed") $ (-854))) (-15 -3900 ((-3 $ "failed") $ (-854) (-854))) (-15 -2404 ((-591 (-854)) $)) (-15 -3512 ($ (-591 (-854)))) (-15 -1740 ((-1171 $))) (-15 -2141 ((-108) (-854) $)) (-15 -2576 ((-712) $ (-854) (-854)))))
+((-3008 (((-108) $ $) NIL)) (-3794 (($) NIL (|has| |#1| (-346)))) (-1414 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 74)) (-3595 (($ $ $) 72)) (-3214 (((-108) $ $) 73)) (-3891 (((-108) $ (-712)) NIL)) (-3032 (((-712)) NIL (|has| |#1| (-346)))) (-2442 (($ (-591 |#1|)) NIL) (($) 13)) (-1797 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3901 (($ |#1| $) 67 (|has| $ (-6 -4250))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3677 (($ |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 41 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) 39 (|has| $ (-6 -4250)))) (-3377 (($) NIL (|has| |#1| (-346)))) (-3454 (((-591 |#1|) $) 19 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-3741 ((|#1| $) 57 (|has| |#1| (-788)))) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 66 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-2478 ((|#1| $) 55 (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 34)) (-3016 (((-854) $) NIL (|has| |#1| (-346)))) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-3516 (($ $ $) 70)) (-1464 ((|#1| $) 25)) (-2470 (($ |#1| $) 65)) (-2226 (($ (-854)) NIL (|has| |#1| (-346)))) (-2047 (((-1036) $) NIL)) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 31)) (-3631 ((|#1| $) 27)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) 21)) (-3209 (($) 11)) (-3097 (($ $ |#1|) NIL) (($ $ $) 71)) (-2311 (($) NIL) (($ (-591 |#1|)) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) 16)) (-1408 (((-501) $) 52 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 61)) (-3030 (($ $) NIL (|has| |#1| (-346)))) (-3022 (((-796) $) NIL)) (-2512 (((-712) $) NIL)) (-2973 (($ (-591 |#1|)) NIL) (($) 12)) (-1870 (($ (-591 |#1|)) NIL)) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 54)) (-4112 (((-108) $ $) NIL)) (-4045 (((-712) $) 10 (|has| $ (-6 -4250)))))
+(((-1020 |#1|) (-403 |#1|) (-1018)) (T -1020))
+NIL
+(-403 |#1|)
+((-3008 (((-108) $ $) 7)) (-1896 (((-108) $) 32)) (-1599 ((|#2| $) 27)) (-1721 (((-108) $) 33)) (-1432 ((|#1| $) 28)) (-1261 (((-108) $) 35)) (-2754 (((-108) $) 37)) (-3738 (((-108) $) 34)) (-2339 (((-1072) $) 9)) (-2666 (((-108) $) 31)) (-1624 ((|#3| $) 26)) (-2047 (((-1036) $) 10)) (-1663 (((-108) $) 30)) (-2286 ((|#4| $) 25)) (-2002 ((|#5| $) 24)) (-1317 (((-108) $ $) 38)) (-3164 (($ $ (-525)) 14) (($ $ (-591 (-525))) 13)) (-1434 (((-591 $) $) 29)) (-1408 (($ (-591 $)) 23) (($ |#1|) 22) (($ |#2|) 21) (($ |#3|) 20) (($ |#4|) 19) (($ |#5|) 18)) (-3022 (((-796) $) 11)) (-2957 (($ $) 16)) (-2943 (($ $) 17)) (-3880 (((-108) $) 36)) (-4096 (((-108) $ $) 6)) (-4045 (((-525) $) 15)))
+(((-1021 |#1| |#2| |#3| |#4| |#5|) (-131) (-1018) (-1018) (-1018) (-1018) (-1018)) (T -1021))
+((-1317 (*1 *2 *1 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))) (-2754 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))) (-3880 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))) (-1261 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))) (-3738 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))) (-1721 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))) (-1896 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))) (-2666 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))) (-1663 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))) (-1434 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-591 *1)) (-4 *1 (-1021 *3 *4 *5 *6 *7)))) (-1432 (*1 *2 *1) (-12 (-4 *1 (-1021 *2 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1018)))) (-1599 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *2 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1018)))) (-1624 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *2 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1018)))) (-2286 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *2 *6)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1018)))) (-2002 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *2)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1018)))) (-1408 (*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)))) (-1408 (*1 *1 *2) (-12 (-4 *1 (-1021 *2 *3 *4 *5 *6)) (-4 *2 (-1018)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)))) (-1408 (*1 *1 *2) (-12 (-4 *1 (-1021 *3 *2 *4 *5 *6)) (-4 *3 (-1018)) (-4 *2 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)))) (-1408 (*1 *1 *2) (-12 (-4 *1 (-1021 *3 *4 *2 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *2 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)))) (-1408 (*1 *1 *2) (-12 (-4 *1 (-1021 *3 *4 *5 *2 *6)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *2 (-1018)) (-4 *6 (-1018)))) (-1408 (*1 *1 *2) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *2)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1018)))) (-2943 (*1 *1 *1) (-12 (-4 *1 (-1021 *2 *3 *4 *5 *6)) (-4 *2 (-1018)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)))) (-2957 (*1 *1 *1) (-12 (-4 *1 (-1021 *2 *3 *4 *5 *6)) (-4 *2 (-1018)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)))) (-4045 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-525)))) (-3164 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)))) (-3164 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-525))) (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)))))
+(-13 (-1018) (-10 -8 (-15 -1317 ((-108) $ $)) (-15 -2754 ((-108) $)) (-15 -3880 ((-108) $)) (-15 -1261 ((-108) $)) (-15 -3738 ((-108) $)) (-15 -1721 ((-108) $)) (-15 -1896 ((-108) $)) (-15 -2666 ((-108) $)) (-15 -1663 ((-108) $)) (-15 -1434 ((-591 $) $)) (-15 -1432 (|t#1| $)) (-15 -1599 (|t#2| $)) (-15 -1624 (|t#3| $)) (-15 -2286 (|t#4| $)) (-15 -2002 (|t#5| $)) (-15 -1408 ($ (-591 $))) (-15 -1408 ($ |t#1|)) (-15 -1408 ($ |t#2|)) (-15 -1408 ($ |t#3|)) (-15 -1408 ($ |t#4|)) (-15 -1408 ($ |t#5|)) (-15 -2943 ($ $)) (-15 -2957 ($ $)) (-15 -4045 ((-525) $)) (-15 -3164 ($ $ (-525))) (-15 -3164 ($ $ (-591 (-525))))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL)) (-1896 (((-108) $) NIL)) (-1599 (((-1089) $) NIL)) (-1721 (((-108) $) NIL)) (-1432 (((-1072) $) NIL)) (-1261 (((-108) $) NIL)) (-2754 (((-108) $) NIL)) (-3738 (((-108) $) NIL)) (-2339 (((-1072) $) NIL)) (-2666 (((-108) $) NIL)) (-1624 (((-525) $) NIL)) (-2047 (((-1036) $) NIL)) (-1663 (((-108) $) NIL)) (-2286 (((-205) $) NIL)) (-2002 (((-796) $) NIL)) (-1317 (((-108) $ $) NIL)) (-3164 (($ $ (-525)) NIL) (($ $ (-591 (-525))) NIL)) (-1434 (((-591 $) $) NIL)) (-1408 (($ (-591 $)) NIL) (($ (-1072)) NIL) (($ (-1089)) NIL) (($ (-525)) NIL) (($ (-205)) NIL) (($ (-796)) NIL)) (-3022 (((-796) $) NIL)) (-2957 (($ $) NIL)) (-2943 (($ $) NIL)) (-3880 (((-108) $) NIL)) (-4096 (((-108) $ $) NIL)) (-4045 (((-525) $) NIL)))
+(((-1022) (-1021 (-1072) (-1089) (-525) (-205) (-796))) (T -1022))
+NIL
+(-1021 (-1072) (-1089) (-525) (-205) (-796))
+((-3008 (((-108) $ $) NIL)) (-1896 (((-108) $) 38)) (-1599 ((|#2| $) 42)) (-1721 (((-108) $) 37)) (-1432 ((|#1| $) 41)) (-1261 (((-108) $) 35)) (-2754 (((-108) $) 14)) (-3738 (((-108) $) 36)) (-2339 (((-1072) $) NIL)) (-2666 (((-108) $) 39)) (-1624 ((|#3| $) 44)) (-2047 (((-1036) $) NIL)) (-1663 (((-108) $) 40)) (-2286 ((|#4| $) 43)) (-2002 ((|#5| $) 45)) (-1317 (((-108) $ $) 34)) (-3164 (($ $ (-525)) 56) (($ $ (-591 (-525))) 58)) (-1434 (((-591 $) $) 22)) (-1408 (($ (-591 $)) 46) (($ |#1|) 47) (($ |#2|) 48) (($ |#3|) 49) (($ |#4|) 50) (($ |#5|) 51)) (-3022 (((-796) $) 23)) (-2957 (($ $) 21)) (-2943 (($ $) 52)) (-3880 (((-108) $) 18)) (-4096 (((-108) $ $) 33)) (-4045 (((-525) $) 54)))
+(((-1023 |#1| |#2| |#3| |#4| |#5|) (-1021 |#1| |#2| |#3| |#4| |#5|) (-1018) (-1018) (-1018) (-1018) (-1018)) (T -1023))
+NIL
+(-1021 |#1| |#2| |#3| |#4| |#5|)
+((-3178 (((-1176) $) 23)) (-3379 (($ (-1089) (-412) |#2|) 11)) (-3022 (((-796) $) 16)))
+(((-1024 |#1| |#2|) (-13 (-373) (-10 -8 (-15 -3379 ($ (-1089) (-412) |#2|)))) (-788) (-408 |#1|)) (T -1024))
+((-3379 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1089)) (-5 *3 (-412)) (-4 *5 (-788)) (-5 *1 (-1024 *5 *4)) (-4 *4 (-408 *5)))))
+(-13 (-373) (-10 -8 (-15 -3379 ($ (-1089) (-412) |#2|))))
+((-1274 (((-108) |#5| |#5|) 38)) (-3215 (((-108) |#5| |#5|) 52)) (-2665 (((-108) |#5| (-591 |#5|)) 75) (((-108) |#5| |#5|) 61)) (-3583 (((-108) (-591 |#4|) (-591 |#4|)) 58)) (-1366 (((-108) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) 63)) (-2751 (((-1176)) 33)) (-2016 (((-1176) (-1072) (-1072) (-1072)) 29)) (-3452 (((-591 |#5|) (-591 |#5|)) 82)) (-2410 (((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)))) 80)) (-3293 (((-591 (-2 (|:| -1317 (-591 |#4|)) (|:| -3374 |#5|) (|:| |ineq| (-591 |#4|)))) (-591 |#4|) (-591 |#5|) (-108) (-108)) 102)) (-2333 (((-108) |#5| |#5|) 47)) (-1349 (((-3 (-108) "failed") |#5| |#5|) 71)) (-1486 (((-108) (-591 |#4|) (-591 |#4|)) 57)) (-4129 (((-108) (-591 |#4|) (-591 |#4|)) 59)) (-2154 (((-108) (-591 |#4|) (-591 |#4|)) 60)) (-2340 (((-3 (-2 (|:| -1317 (-591 |#4|)) (|:| -3374 |#5|) (|:| |ineq| (-591 |#4|))) "failed") (-591 |#4|) |#5| (-591 |#4|) (-108) (-108) (-108) (-108) (-108)) 98)) (-3311 (((-591 |#5|) (-591 |#5|)) 43)))
+(((-1025 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2016 ((-1176) (-1072) (-1072) (-1072))) (-15 -2751 ((-1176))) (-15 -1274 ((-108) |#5| |#5|)) (-15 -3311 ((-591 |#5|) (-591 |#5|))) (-15 -2333 ((-108) |#5| |#5|)) (-15 -3215 ((-108) |#5| |#5|)) (-15 -3583 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -1486 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -4129 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -2154 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -1349 ((-3 (-108) "failed") |#5| |#5|)) (-15 -2665 ((-108) |#5| |#5|)) (-15 -2665 ((-108) |#5| (-591 |#5|))) (-15 -3452 ((-591 |#5|) (-591 |#5|))) (-15 -1366 ((-108) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)))) (-15 -2410 ((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) (-15 -3293 ((-591 (-2 (|:| -1317 (-591 |#4|)) (|:| -3374 |#5|) (|:| |ineq| (-591 |#4|)))) (-591 |#4|) (-591 |#5|) (-108) (-108))) (-15 -2340 ((-3 (-2 (|:| -1317 (-591 |#4|)) (|:| -3374 |#5|) (|:| |ineq| (-591 |#4|))) "failed") (-591 |#4|) |#5| (-591 |#4|) (-108) (-108) (-108) (-108) (-108)))) (-429) (-734) (-788) (-989 |#1| |#2| |#3|) (-994 |#1| |#2| |#3| |#4|)) (T -1025))
+((-2340 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-108)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *9 (-989 *6 *7 *8)) (-5 *2 (-2 (|:| -1317 (-591 *9)) (|:| -3374 *4) (|:| |ineq| (-591 *9)))) (-5 *1 (-1025 *6 *7 *8 *9 *4)) (-5 *3 (-591 *9)) (-4 *4 (-994 *6 *7 *8 *9)))) (-3293 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-591 *10)) (-5 *5 (-108)) (-4 *10 (-994 *6 *7 *8 *9)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *9 (-989 *6 *7 *8)) (-5 *2 (-591 (-2 (|:| -1317 (-591 *9)) (|:| -3374 *10) (|:| |ineq| (-591 *9))))) (-5 *1 (-1025 *6 *7 *8 *9 *10)) (-5 *3 (-591 *9)))) (-2410 (*1 *2 *2) (-12 (-5 *2 (-591 (-2 (|:| |val| (-591 *6)) (|:| -3374 *7)))) (-4 *6 (-989 *3 *4 *5)) (-4 *7 (-994 *3 *4 *5 *6)) (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-1025 *3 *4 *5 *6 *7)))) (-1366 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-591 *7)) (|:| -3374 *8))) (-4 *7 (-989 *4 *5 *6)) (-4 *8 (-994 *4 *5 *6 *7)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-1025 *4 *5 *6 *7 *8)))) (-3452 (*1 *2 *2) (-12 (-5 *2 (-591 *7)) (-4 *7 (-994 *3 *4 *5 *6)) (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *1 (-1025 *3 *4 *5 *6 *7)))) (-2665 (*1 *2 *3 *4) (-12 (-5 *4 (-591 *3)) (-4 *3 (-994 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-989 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-1025 *5 *6 *7 *8 *3)))) (-2665 (*1 *2 *3 *3) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1025 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7)))) (-1349 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1025 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7)))) (-2154 (*1 *2 *3 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-1025 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))) (-4129 (*1 *2 *3 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-1025 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))) (-1486 (*1 *2 *3 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-1025 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))) (-3583 (*1 *2 *3 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108)) (-5 *1 (-1025 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))) (-3215 (*1 *2 *3 *3) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1025 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7)))) (-2333 (*1 *2 *3 *3) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1025 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7)))) (-3311 (*1 *2 *2) (-12 (-5 *2 (-591 *7)) (-4 *7 (-994 *3 *4 *5 *6)) (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *1 (-1025 *3 *4 *5 *6 *7)))) (-1274 (*1 *2 *3 *3) (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1025 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7)))) (-2751 (*1 *2) (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-1176)) (-5 *1 (-1025 *3 *4 *5 *6 *7)) (-4 *7 (-994 *3 *4 *5 *6)))) (-2016 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1072)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-1176)) (-5 *1 (-1025 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2016 ((-1176) (-1072) (-1072) (-1072))) (-15 -2751 ((-1176))) (-15 -1274 ((-108) |#5| |#5|)) (-15 -3311 ((-591 |#5|) (-591 |#5|))) (-15 -2333 ((-108) |#5| |#5|)) (-15 -3215 ((-108) |#5| |#5|)) (-15 -3583 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -1486 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -4129 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -2154 ((-108) (-591 |#4|) (-591 |#4|))) (-15 -1349 ((-3 (-108) "failed") |#5| |#5|)) (-15 -2665 ((-108) |#5| |#5|)) (-15 -2665 ((-108) |#5| (-591 |#5|))) (-15 -3452 ((-591 |#5|) (-591 |#5|))) (-15 -1366 ((-108) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)))) (-15 -2410 ((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) (-15 -3293 ((-591 (-2 (|:| -1317 (-591 |#4|)) (|:| -3374 |#5|) (|:| |ineq| (-591 |#4|)))) (-591 |#4|) (-591 |#5|) (-108) (-108))) (-15 -2340 ((-3 (-2 (|:| -1317 (-591 |#4|)) (|:| -3374 |#5|) (|:| |ineq| (-591 |#4|))) "failed") (-591 |#4|) |#5| (-591 |#4|) (-108) (-108) (-108) (-108) (-108))))
+((-3908 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#5|) 96)) (-3700 (((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) |#4| |#4| |#5|) 72)) (-1576 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5|) 90)) (-2522 (((-591 |#5|) |#4| |#5|) 110)) (-2359 (((-591 |#5|) |#4| |#5|) 117)) (-1439 (((-591 |#5|) |#4| |#5|) 118)) (-3222 (((-591 (-2 (|:| |val| (-108)) (|:| -3374 |#5|))) |#4| |#5|) 97)) (-1503 (((-591 (-2 (|:| |val| (-108)) (|:| -3374 |#5|))) |#4| |#5|) 116)) (-2856 (((-591 (-2 (|:| |val| (-108)) (|:| -3374 |#5|))) |#4| |#5|) 46) (((-108) |#4| |#5|) 53)) (-1494 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) |#3| (-108)) 84) (((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5| (-108) (-108)) 50)) (-2712 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5|) 79)) (-3418 (((-1176)) 37)) (-2595 (((-1176)) 26)) (-1677 (((-1176) (-1072) (-1072) (-1072)) 33)) (-2974 (((-1176) (-1072) (-1072) (-1072)) 22)))
+(((-1026 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2974 ((-1176) (-1072) (-1072) (-1072))) (-15 -2595 ((-1176))) (-15 -1677 ((-1176) (-1072) (-1072) (-1072))) (-15 -3418 ((-1176))) (-15 -3700 ((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) |#4| |#4| |#5|)) (-15 -1494 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -1494 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) |#3| (-108))) (-15 -2712 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5|)) (-15 -1576 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5|)) (-15 -2856 ((-108) |#4| |#5|)) (-15 -3222 ((-591 (-2 (|:| |val| (-108)) (|:| -3374 |#5|))) |#4| |#5|)) (-15 -2522 ((-591 |#5|) |#4| |#5|)) (-15 -1503 ((-591 (-2 (|:| |val| (-108)) (|:| -3374 |#5|))) |#4| |#5|)) (-15 -2359 ((-591 |#5|) |#4| |#5|)) (-15 -2856 ((-591 (-2 (|:| |val| (-108)) (|:| -3374 |#5|))) |#4| |#5|)) (-15 -1439 ((-591 |#5|) |#4| |#5|)) (-15 -3908 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#5|))) (-429) (-734) (-788) (-989 |#1| |#2| |#3|) (-994 |#1| |#2| |#3| |#4|)) (T -1026))
+((-3908 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4)))) (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-1439 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 *4)) (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-2856 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 (-2 (|:| |val| (-108)) (|:| -3374 *4)))) (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-2359 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 *4)) (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-1503 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 (-2 (|:| |val| (-108)) (|:| -3374 *4)))) (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-2522 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 *4)) (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-3222 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 (-2 (|:| |val| (-108)) (|:| -3374 *4)))) (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-2856 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-1576 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4)))) (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-2712 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4)))) (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-1494 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-591 (-2 (|:| |val| (-591 *8)) (|:| -3374 *9)))) (-5 *5 (-108)) (-4 *8 (-989 *6 *7 *4)) (-4 *9 (-994 *6 *7 *4 *8)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *4 (-788)) (-5 *2 (-591 (-2 (|:| |val| *8) (|:| -3374 *9)))) (-5 *1 (-1026 *6 *7 *4 *8 *9)))) (-1494 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-108)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *3 (-989 *6 *7 *8)) (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4)))) (-5 *1 (-1026 *6 *7 *8 *3 *4)) (-4 *4 (-994 *6 *7 *8 *3)))) (-3700 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4)))) (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))) (-3418 (*1 *2) (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-1176)) (-5 *1 (-1026 *3 *4 *5 *6 *7)) (-4 *7 (-994 *3 *4 *5 *6)))) (-1677 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1072)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-1176)) (-5 *1 (-1026 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))) (-2595 (*1 *2) (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-1176)) (-5 *1 (-1026 *3 *4 *5 *6 *7)) (-4 *7 (-994 *3 *4 *5 *6)))) (-2974 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1072)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-1176)) (-5 *1 (-1026 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2974 ((-1176) (-1072) (-1072) (-1072))) (-15 -2595 ((-1176))) (-15 -1677 ((-1176) (-1072) (-1072) (-1072))) (-15 -3418 ((-1176))) (-15 -3700 ((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) |#4| |#4| |#5|)) (-15 -1494 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -1494 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) |#3| (-108))) (-15 -2712 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5|)) (-15 -1576 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#4| |#5|)) (-15 -2856 ((-108) |#4| |#5|)) (-15 -3222 ((-591 (-2 (|:| |val| (-108)) (|:| -3374 |#5|))) |#4| |#5|)) (-15 -2522 ((-591 |#5|) |#4| |#5|)) (-15 -1503 ((-591 (-2 (|:| |val| (-108)) (|:| -3374 |#5|))) |#4| |#5|)) (-15 -2359 ((-591 |#5|) |#4| |#5|)) (-15 -2856 ((-591 (-2 (|:| |val| (-108)) (|:| -3374 |#5|))) |#4| |#5|)) (-15 -1439 ((-591 |#5|) |#4| |#5|)) (-15 -3908 ((-591 (-2 (|:| |val| |#4|) (|:| -3374 |#5|))) |#4| |#5|)))
+((-3008 (((-108) $ $) 7)) (-3817 (((-591 (-2 (|:| -3529 $) (|:| -1976 (-591 |#4|)))) (-591 |#4|)) 85)) (-2113 (((-591 $) (-591 |#4|)) 86) (((-591 $) (-591 |#4|) (-108)) 111)) (-1507 (((-591 |#3|) $) 33)) (-1430 (((-108) $) 26)) (-3490 (((-108) $) 17 (|has| |#1| (-517)))) (-3130 (((-108) |#4| $) 101) (((-108) $) 97)) (-1568 ((|#4| |#4| $) 92)) (-1291 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 $))) |#4| $) 126)) (-3327 (((-2 (|:| |under| $) (|:| -2662 $) (|:| |upper| $)) $ |#3|) 27)) (-3891 (((-108) $ (-712)) 44)) (-2305 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4250))) (((-3 |#4| "failed") $ |#3|) 79)) (-3798 (($) 45 T CONST)) (-3382 (((-108) $) 22 (|has| |#1| (-517)))) (-2438 (((-108) $ $) 24 (|has| |#1| (-517)))) (-2055 (((-108) $ $) 23 (|has| |#1| (-517)))) (-1964 (((-108) $) 25 (|has| |#1| (-517)))) (-2656 (((-591 |#4|) (-591 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-3853 (((-591 |#4|) (-591 |#4|) $) 18 (|has| |#1| (-517)))) (-1921 (((-591 |#4|) (-591 |#4|) $) 19 (|has| |#1| (-517)))) (-1251 (((-3 $ "failed") (-591 |#4|)) 36)) (-3528 (($ (-591 |#4|)) 35)) (-3078 (((-3 $ "failed") $) 82)) (-2736 ((|#4| |#4| $) 89)) (-3098 (($ $) 68 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ |#4| $) 67 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4250)))) (-3407 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-517)))) (-3135 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-2933 ((|#4| |#4| $) 87)) (-1227 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4250))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4250))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-2719 (((-2 (|:| -3529 (-591 |#4|)) (|:| -1976 (-591 |#4|))) $) 105)) (-1949 (((-108) |#4| $) 136)) (-3485 (((-108) |#4| $) 133)) (-1732 (((-108) |#4| $) 137) (((-108) $) 134)) (-3454 (((-591 |#4|) $) 52 (|has| $ (-6 -4250)))) (-1809 (((-108) |#4| $) 104) (((-108) $) 103)) (-2009 ((|#3| $) 34)) (-2910 (((-108) $ (-712)) 43)) (-2552 (((-591 |#4|) $) 53 (|has| $ (-6 -4250)))) (-2141 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#4| |#4|) $) 47)) (-3993 (((-591 |#3|) $) 32)) (-4174 (((-108) |#3| $) 31)) (-3971 (((-108) $ (-712)) 42)) (-2339 (((-1072) $) 9)) (-2711 (((-3 |#4| (-591 $)) |#4| |#4| $) 128)) (-2627 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 $))) |#4| |#4| $) 127)) (-3708 (((-3 |#4| "failed") $) 83)) (-1933 (((-591 $) |#4| $) 129)) (-1372 (((-3 (-108) (-591 $)) |#4| $) 132)) (-1406 (((-591 (-2 (|:| |val| (-108)) (|:| -3374 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-3516 (((-591 $) |#4| $) 125) (((-591 $) (-591 |#4|) $) 124) (((-591 $) (-591 |#4|) (-591 $)) 123) (((-591 $) |#4| (-591 $)) 122)) (-2689 (($ |#4| $) 117) (($ (-591 |#4|) $) 116)) (-3280 (((-591 |#4|) $) 107)) (-3196 (((-108) |#4| $) 99) (((-108) $) 95)) (-4066 ((|#4| |#4| $) 90)) (-2154 (((-108) $ $) 110)) (-2934 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-517)))) (-2115 (((-108) |#4| $) 100) (((-108) $) 96)) (-2731 ((|#4| |#4| $) 91)) (-2047 (((-1036) $) 10)) (-3066 (((-3 |#4| "failed") $) 84)) (-2069 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-1554 (((-3 $ "failed") $ |#4|) 78)) (-2784 (($ $ |#4|) 77) (((-591 $) |#4| $) 115) (((-591 $) |#4| (-591 $)) 114) (((-591 $) (-591 |#4|) $) 113) (((-591 $) (-591 |#4|) (-591 $)) 112)) (-1623 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 |#4|) (-591 |#4|)) 59 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-273 |#4|)) 57 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-591 (-273 |#4|))) 56 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))) (-3493 (((-108) $ $) 38)) (-3028 (((-108) $) 41)) (-3209 (($) 40)) (-1316 (((-712) $) 106)) (-2064 (((-712) |#4| $) 54 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) (((-712) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4250)))) (-3199 (($ $) 39)) (-1408 (((-501) $) 69 (|has| |#4| (-566 (-501))))) (-3036 (($ (-591 |#4|)) 60)) (-3134 (($ $ |#3|) 28)) (-3443 (($ $ |#3|) 30)) (-2487 (($ $) 88)) (-3010 (($ $ |#3|) 29)) (-3022 (((-796) $) 11) (((-591 |#4|) $) 37)) (-3223 (((-712) $) 76 (|has| |#3| (-346)))) (-2122 (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-2165 (((-108) $ (-1 (-108) |#4| (-591 |#4|))) 98)) (-2533 (((-591 $) |#4| $) 121) (((-591 $) |#4| (-591 $)) 120) (((-591 $) (-591 |#4|) $) 119) (((-591 $) (-591 |#4|) (-591 $)) 118)) (-4158 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4250)))) (-3872 (((-591 |#3|) $) 81)) (-1564 (((-108) |#4| $) 135)) (-1884 (((-108) |#3| $) 80)) (-4096 (((-108) $ $) 6)) (-4045 (((-712) $) 46 (|has| $ (-6 -4250)))))
+(((-1027 |#1| |#2| |#3| |#4|) (-131) (-429) (-734) (-788) (-989 |t#1| |t#2| |t#3|)) (T -1027))
+NIL
+(-13 (-994 |t#1| |t#2| |t#3| |t#4|))
+(((-33) . T) ((-97) . T) ((-565 (-591 |#4|)) . T) ((-565 (-796)) . T) ((-142 |#4|) . T) ((-566 (-501)) |has| |#4| (-566 (-501))) ((-288 |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))) ((-464 |#4|) . T) ((-486 |#4| |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))) ((-907 |#1| |#2| |#3| |#4|) . T) ((-994 |#1| |#2| |#3| |#4|) . T) ((-1018) . T) ((-1119 |#1| |#2| |#3| |#4|) . T) ((-1125) . T))
+((-1538 (((-591 (-525)) (-525) (-525) (-525)) 22)) (-1659 (((-591 (-525)) (-525) (-525) (-525)) 12)) (-1607 (((-591 (-525)) (-525) (-525) (-525)) 18)) (-2093 (((-525) (-525) (-525)) 9)) (-3272 (((-1171 (-525)) (-591 (-525)) (-1171 (-525)) (-525)) 46) (((-1171 (-525)) (-1171 (-525)) (-1171 (-525)) (-525)) 41)) (-3930 (((-591 (-525)) (-591 (-525)) (-591 (-525)) (-108)) 28)) (-4068 (((-631 (-525)) (-591 (-525)) (-591 (-525)) (-631 (-525))) 45)) (-3530 (((-631 (-525)) (-591 (-525)) (-591 (-525))) 33)) (-2230 (((-591 (-631 (-525))) (-591 (-525))) 35)) (-4182 (((-591 (-525)) (-591 (-525)) (-591 (-525)) (-631 (-525))) 49)) (-2710 (((-631 (-525)) (-591 (-525)) (-591 (-525)) (-591 (-525))) 57)))
+(((-1028) (-10 -7 (-15 -2710 ((-631 (-525)) (-591 (-525)) (-591 (-525)) (-591 (-525)))) (-15 -4182 ((-591 (-525)) (-591 (-525)) (-591 (-525)) (-631 (-525)))) (-15 -2230 ((-591 (-631 (-525))) (-591 (-525)))) (-15 -3530 ((-631 (-525)) (-591 (-525)) (-591 (-525)))) (-15 -4068 ((-631 (-525)) (-591 (-525)) (-591 (-525)) (-631 (-525)))) (-15 -3930 ((-591 (-525)) (-591 (-525)) (-591 (-525)) (-108))) (-15 -3272 ((-1171 (-525)) (-1171 (-525)) (-1171 (-525)) (-525))) (-15 -3272 ((-1171 (-525)) (-591 (-525)) (-1171 (-525)) (-525))) (-15 -2093 ((-525) (-525) (-525))) (-15 -1607 ((-591 (-525)) (-525) (-525) (-525))) (-15 -1659 ((-591 (-525)) (-525) (-525) (-525))) (-15 -1538 ((-591 (-525)) (-525) (-525) (-525))))) (T -1028))
+((-1538 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-1028)) (-5 *3 (-525)))) (-1659 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-1028)) (-5 *3 (-525)))) (-1607 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-1028)) (-5 *3 (-525)))) (-2093 (*1 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-1028)))) (-3272 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1171 (-525))) (-5 *3 (-591 (-525))) (-5 *4 (-525)) (-5 *1 (-1028)))) (-3272 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1171 (-525))) (-5 *3 (-525)) (-5 *1 (-1028)))) (-3930 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-591 (-525))) (-5 *3 (-108)) (-5 *1 (-1028)))) (-4068 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-631 (-525))) (-5 *3 (-591 (-525))) (-5 *1 (-1028)))) (-3530 (*1 *2 *3 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-631 (-525))) (-5 *1 (-1028)))) (-2230 (*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-591 (-631 (-525)))) (-5 *1 (-1028)))) (-4182 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-591 (-525))) (-5 *3 (-631 (-525))) (-5 *1 (-1028)))) (-2710 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-631 (-525))) (-5 *1 (-1028)))))
+(-10 -7 (-15 -2710 ((-631 (-525)) (-591 (-525)) (-591 (-525)) (-591 (-525)))) (-15 -4182 ((-591 (-525)) (-591 (-525)) (-591 (-525)) (-631 (-525)))) (-15 -2230 ((-591 (-631 (-525))) (-591 (-525)))) (-15 -3530 ((-631 (-525)) (-591 (-525)) (-591 (-525)))) (-15 -4068 ((-631 (-525)) (-591 (-525)) (-591 (-525)) (-631 (-525)))) (-15 -3930 ((-591 (-525)) (-591 (-525)) (-591 (-525)) (-108))) (-15 -3272 ((-1171 (-525)) (-1171 (-525)) (-1171 (-525)) (-525))) (-15 -3272 ((-1171 (-525)) (-591 (-525)) (-1171 (-525)) (-525))) (-15 -2093 ((-525) (-525) (-525))) (-15 -1607 ((-591 (-525)) (-525) (-525) (-525))) (-15 -1659 ((-591 (-525)) (-525) (-525) (-525))) (-15 -1538 ((-591 (-525)) (-525) (-525) (-525))))
+((-3710 (($ $ (-854)) 12)) (** (($ $ (-854)) 10)))
+(((-1029 |#1|) (-10 -8 (-15 -3710 (|#1| |#1| (-854))) (-15 ** (|#1| |#1| (-854)))) (-1030)) (T -1029))
+NIL
+(-10 -8 (-15 -3710 (|#1| |#1| (-854))) (-15 ** (|#1| |#1| (-854))))
+((-3008 (((-108) $ $) 7)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-3710 (($ $ (-854)) 13)) (-4096 (((-108) $ $) 6)) (** (($ $ (-854)) 14)) (* (($ $ $) 15)))
+(((-1030) (-131)) (T -1030))
+((* (*1 *1 *1 *1) (-4 *1 (-1030))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1030)) (-5 *2 (-854)))) (-3710 (*1 *1 *1 *2) (-12 (-4 *1 (-1030)) (-5 *2 (-854)))))
+(-13 (-1018) (-10 -8 (-15 * ($ $ $)) (-15 ** ($ $ (-854))) (-15 -3710 ($ $ (-854)))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-3008 (((-108) $ $) NIL (|has| |#3| (-1018)))) (-1800 (((-108) $) NIL (|has| |#3| (-126)))) (-2092 (($ (-854)) NIL (|has| |#3| (-975)))) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-2593 (($ $ $) NIL (|has| |#3| (-734)))) (-2157 (((-3 $ "failed") $ $) NIL (|has| |#3| (-126)))) (-3891 (((-108) $ (-712)) NIL)) (-3032 (((-712)) NIL (|has| |#3| (-346)))) (-3329 (((-525) $) NIL (|has| |#3| (-786)))) (-3186 ((|#3| $ (-525) |#3|) NIL (|has| $ (-6 -4251)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL (-12 (|has| |#3| (-966 (-525))) (|has| |#3| (-1018)))) (((-3 (-385 (-525)) "failed") $) NIL (-12 (|has| |#3| (-966 (-385 (-525)))) (|has| |#3| (-1018)))) (((-3 |#3| "failed") $) NIL (|has| |#3| (-1018)))) (-3528 (((-525) $) NIL (-12 (|has| |#3| (-966 (-525))) (|has| |#3| (-1018)))) (((-385 (-525)) $) NIL (-12 (|has| |#3| (-966 (-385 (-525)))) (|has| |#3| (-1018)))) ((|#3| $) NIL (|has| |#3| (-1018)))) (-3305 (((-631 (-525)) (-631 $)) NIL (-12 (|has| |#3| (-587 (-525))) (|has| |#3| (-975)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (-12 (|has| |#3| (-587 (-525))) (|has| |#3| (-975)))) (((-2 (|:| -4057 (-631 |#3|)) (|:| |vec| (-1171 |#3|))) (-631 $) (-1171 $)) NIL (|has| |#3| (-975))) (((-631 |#3|) (-631 $)) NIL (|has| |#3| (-975)))) (-4163 (((-3 $ "failed") $) NIL (|has| |#3| (-975)))) (-3377 (($) NIL (|has| |#3| (-346)))) (-3255 ((|#3| $ (-525) |#3|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#3| $ (-525)) 12)) (-2134 (((-108) $) NIL (|has| |#3| (-786)))) (-3454 (((-591 |#3|) $) NIL (|has| $ (-6 -4250)))) (-2824 (((-108) $) NIL (|has| |#3| (-975)))) (-2732 (((-108) $) NIL (|has| |#3| (-786)))) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) NIL (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (-3321 (|has| |#3| (-734)) (|has| |#3| (-786))))) (-2552 (((-591 |#3|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#3| (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (-3321 (|has| |#3| (-734)) (|has| |#3| (-786))))) (-3249 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#3| |#3|) $) NIL)) (-3016 (((-854) $) NIL (|has| |#3| (-346)))) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#3| (-1018)))) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2226 (($ (-854)) NIL (|has| |#3| (-346)))) (-2047 (((-1036) $) NIL (|has| |#3| (-1018)))) (-3066 ((|#3| $) NIL (|has| (-525) (-788)))) (-1941 (($ $ |#3|) NIL (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#3|))) NIL (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018)))) (($ $ (-273 |#3|)) NIL (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018)))) (($ $ (-591 |#3|) (-591 |#3|)) NIL (-12 (|has| |#3| (-288 |#3|)) (|has| |#3| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#3| (-1018))))) (-3339 (((-591 |#3|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#3| $ (-525) |#3|) NIL) ((|#3| $ (-525)) NIL)) (-2109 ((|#3| $ $) NIL (|has| |#3| (-975)))) (-1395 (($ (-1171 |#3|)) NIL)) (-4224 (((-128)) NIL (|has| |#3| (-341)))) (-3266 (($ $) NIL (-12 (|has| |#3| (-213)) (|has| |#3| (-975)))) (($ $ (-712)) NIL (-12 (|has| |#3| (-213)) (|has| |#3| (-975)))) (($ $ (-1089)) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-1 |#3| |#3|) (-712)) NIL (|has| |#3| (-975))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-975)))) (-2064 (((-712) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4250))) (((-712) |#3| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#3| (-1018))))) (-3199 (($ $) NIL)) (-3022 (((-1171 |#3|) $) NIL) (($ (-525)) NIL (-3321 (-12 (|has| |#3| (-966 (-525))) (|has| |#3| (-1018))) (|has| |#3| (-975)))) (($ (-385 (-525))) NIL (-12 (|has| |#3| (-966 (-385 (-525)))) (|has| |#3| (-1018)))) (($ |#3|) NIL (|has| |#3| (-1018))) (((-796) $) NIL (|has| |#3| (-565 (-796))))) (-2128 (((-712)) NIL (|has| |#3| (-975)))) (-4158 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4250)))) (-1539 (($ $) NIL (|has| |#3| (-786)))) (-3710 (($ $ (-712)) NIL (|has| |#3| (-975))) (($ $ (-854)) NIL (|has| |#3| (-975)))) (-4191 (($) NIL (|has| |#3| (-126)) CONST)) (-4197 (($) NIL (|has| |#3| (-975)) CONST)) (-4196 (($ $) NIL (-12 (|has| |#3| (-213)) (|has| |#3| (-975)))) (($ $ (-712)) NIL (-12 (|has| |#3| (-213)) (|has| |#3| (-975)))) (($ $ (-1089)) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#3| (-833 (-1089))) (|has| |#3| (-975)))) (($ $ (-1 |#3| |#3|) (-712)) NIL (|has| |#3| (-975))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-975)))) (-4135 (((-108) $ $) NIL (-3321 (|has| |#3| (-734)) (|has| |#3| (-786))))) (-4119 (((-108) $ $) NIL (-3321 (|has| |#3| (-734)) (|has| |#3| (-786))))) (-4096 (((-108) $ $) NIL (|has| |#3| (-1018)))) (-4126 (((-108) $ $) NIL (-3321 (|has| |#3| (-734)) (|has| |#3| (-786))))) (-4112 (((-108) $ $) 17 (-3321 (|has| |#3| (-734)) (|has| |#3| (-786))))) (-4173 (($ $ |#3|) NIL (|has| |#3| (-341)))) (-4164 (($ $ $) NIL (|has| |#3| (-975))) (($ $) NIL (|has| |#3| (-975)))) (-4156 (($ $ $) NIL (|has| |#3| (-25)))) (** (($ $ (-712)) NIL (|has| |#3| (-975))) (($ $ (-854)) NIL (|has| |#3| (-975)))) (* (($ $ $) NIL (|has| |#3| (-975))) (($ (-525) $) NIL (|has| |#3| (-975))) (($ $ |#3|) NIL (|has| |#3| (-668))) (($ |#3| $) NIL (|has| |#3| (-668))) (($ (-712) $) NIL (|has| |#3| (-126))) (($ (-854) $) NIL (|has| |#3| (-25)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-1031 |#1| |#2| |#3|) (-218 |#1| |#3|) (-712) (-712) (-734)) (T -1031))
+NIL
+(-218 |#1| |#3|)
+((-2049 (((-591 (-1144 |#2| |#1|)) (-1144 |#2| |#1|) (-1144 |#2| |#1|)) 37)) (-2493 (((-525) (-1144 |#2| |#1|)) 68 (|has| |#1| (-429)))) (-3414 (((-525) (-1144 |#2| |#1|)) 54)) (-3888 (((-591 (-1144 |#2| |#1|)) (-1144 |#2| |#1|) (-1144 |#2| |#1|)) 45)) (-1232 (((-525) (-1144 |#2| |#1|) (-1144 |#2| |#1|)) 56 (|has| |#1| (-429)))) (-2260 (((-591 |#1|) (-1144 |#2| |#1|) (-1144 |#2| |#1|)) 48)) (-1854 (((-525) (-1144 |#2| |#1|) (-1144 |#2| |#1|)) 53)))
+(((-1032 |#1| |#2|) (-10 -7 (-15 -2049 ((-591 (-1144 |#2| |#1|)) (-1144 |#2| |#1|) (-1144 |#2| |#1|))) (-15 -3888 ((-591 (-1144 |#2| |#1|)) (-1144 |#2| |#1|) (-1144 |#2| |#1|))) (-15 -2260 ((-591 |#1|) (-1144 |#2| |#1|) (-1144 |#2| |#1|))) (-15 -1854 ((-525) (-1144 |#2| |#1|) (-1144 |#2| |#1|))) (-15 -3414 ((-525) (-1144 |#2| |#1|))) (IF (|has| |#1| (-429)) (PROGN (-15 -1232 ((-525) (-1144 |#2| |#1|) (-1144 |#2| |#1|))) (-15 -2493 ((-525) (-1144 |#2| |#1|)))) |%noBranch|)) (-761) (-1089)) (T -1032))
+((-2493 (*1 *2 *3) (-12 (-5 *3 (-1144 *5 *4)) (-4 *4 (-429)) (-4 *4 (-761)) (-14 *5 (-1089)) (-5 *2 (-525)) (-5 *1 (-1032 *4 *5)))) (-1232 (*1 *2 *3 *3) (-12 (-5 *3 (-1144 *5 *4)) (-4 *4 (-429)) (-4 *4 (-761)) (-14 *5 (-1089)) (-5 *2 (-525)) (-5 *1 (-1032 *4 *5)))) (-3414 (*1 *2 *3) (-12 (-5 *3 (-1144 *5 *4)) (-4 *4 (-761)) (-14 *5 (-1089)) (-5 *2 (-525)) (-5 *1 (-1032 *4 *5)))) (-1854 (*1 *2 *3 *3) (-12 (-5 *3 (-1144 *5 *4)) (-4 *4 (-761)) (-14 *5 (-1089)) (-5 *2 (-525)) (-5 *1 (-1032 *4 *5)))) (-2260 (*1 *2 *3 *3) (-12 (-5 *3 (-1144 *5 *4)) (-4 *4 (-761)) (-14 *5 (-1089)) (-5 *2 (-591 *4)) (-5 *1 (-1032 *4 *5)))) (-3888 (*1 *2 *3 *3) (-12 (-4 *4 (-761)) (-14 *5 (-1089)) (-5 *2 (-591 (-1144 *5 *4))) (-5 *1 (-1032 *4 *5)) (-5 *3 (-1144 *5 *4)))) (-2049 (*1 *2 *3 *3) (-12 (-4 *4 (-761)) (-14 *5 (-1089)) (-5 *2 (-591 (-1144 *5 *4))) (-5 *1 (-1032 *4 *5)) (-5 *3 (-1144 *5 *4)))))
+(-10 -7 (-15 -2049 ((-591 (-1144 |#2| |#1|)) (-1144 |#2| |#1|) (-1144 |#2| |#1|))) (-15 -3888 ((-591 (-1144 |#2| |#1|)) (-1144 |#2| |#1|) (-1144 |#2| |#1|))) (-15 -2260 ((-591 |#1|) (-1144 |#2| |#1|) (-1144 |#2| |#1|))) (-15 -1854 ((-525) (-1144 |#2| |#1|) (-1144 |#2| |#1|))) (-15 -3414 ((-525) (-1144 |#2| |#1|))) (IF (|has| |#1| (-429)) (PROGN (-15 -1232 ((-525) (-1144 |#2| |#1|) (-1144 |#2| |#1|))) (-15 -2493 ((-525) (-1144 |#2| |#1|)))) |%noBranch|))
+((-3329 (((-3 (-525) "failed") |#2| (-1089) |#2| (-1072)) 17) (((-3 (-525) "failed") |#2| (-1089) (-781 |#2|)) 15) (((-3 (-525) "failed") |#2|) 54)))
+(((-1033 |#1| |#2|) (-10 -7 (-15 -3329 ((-3 (-525) "failed") |#2|)) (-15 -3329 ((-3 (-525) "failed") |#2| (-1089) (-781 |#2|))) (-15 -3329 ((-3 (-525) "failed") |#2| (-1089) |#2| (-1072)))) (-13 (-517) (-788) (-966 (-525)) (-587 (-525)) (-429)) (-13 (-27) (-1111) (-408 |#1|))) (T -1033))
+((-3329 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-1089)) (-5 *5 (-1072)) (-4 *6 (-13 (-517) (-788) (-966 *2) (-587 *2) (-429))) (-5 *2 (-525)) (-5 *1 (-1033 *6 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *6))))) (-3329 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1089)) (-5 *5 (-781 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *6))) (-4 *6 (-13 (-517) (-788) (-966 *2) (-587 *2) (-429))) (-5 *2 (-525)) (-5 *1 (-1033 *6 *3)))) (-3329 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-517) (-788) (-966 *2) (-587 *2) (-429))) (-5 *2 (-525)) (-5 *1 (-1033 *4 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *4))))))
+(-10 -7 (-15 -3329 ((-3 (-525) "failed") |#2|)) (-15 -3329 ((-3 (-525) "failed") |#2| (-1089) (-781 |#2|))) (-15 -3329 ((-3 (-525) "failed") |#2| (-1089) |#2| (-1072))))
+((-3329 (((-3 (-525) "failed") (-385 (-885 |#1|)) (-1089) (-385 (-885 |#1|)) (-1072)) 35) (((-3 (-525) "failed") (-385 (-885 |#1|)) (-1089) (-781 (-385 (-885 |#1|)))) 30) (((-3 (-525) "failed") (-385 (-885 |#1|))) 13)))
+(((-1034 |#1|) (-10 -7 (-15 -3329 ((-3 (-525) "failed") (-385 (-885 |#1|)))) (-15 -3329 ((-3 (-525) "failed") (-385 (-885 |#1|)) (-1089) (-781 (-385 (-885 |#1|))))) (-15 -3329 ((-3 (-525) "failed") (-385 (-885 |#1|)) (-1089) (-385 (-885 |#1|)) (-1072)))) (-429)) (T -1034))
+((-3329 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-385 (-885 *6))) (-5 *4 (-1089)) (-5 *5 (-1072)) (-4 *6 (-429)) (-5 *2 (-525)) (-5 *1 (-1034 *6)))) (-3329 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1089)) (-5 *5 (-781 (-385 (-885 *6)))) (-5 *3 (-385 (-885 *6))) (-4 *6 (-429)) (-5 *2 (-525)) (-5 *1 (-1034 *6)))) (-3329 (*1 *2 *3) (|partial| -12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-429)) (-5 *2 (-525)) (-5 *1 (-1034 *4)))))
+(-10 -7 (-15 -3329 ((-3 (-525) "failed") (-385 (-885 |#1|)))) (-15 -3329 ((-3 (-525) "failed") (-385 (-885 |#1|)) (-1089) (-781 (-385 (-885 |#1|))))) (-15 -3329 ((-3 (-525) "failed") (-385 (-885 |#1|)) (-1089) (-385 (-885 |#1|)) (-1072))))
+((-2179 (((-294 (-525)) (-47)) 12)))
+(((-1035) (-10 -7 (-15 -2179 ((-294 (-525)) (-47))))) (T -1035))
+((-2179 (*1 *2 *3) (-12 (-5 *3 (-47)) (-5 *2 (-294 (-525))) (-5 *1 (-1035)))))
+(-10 -7 (-15 -2179 ((-294 (-525)) (-47))))
+((-3008 (((-108) $ $) NIL)) (-1917 (($ $) 41)) (-1800 (((-108) $) 65)) (-3931 (($ $ $) 48)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 85)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-3391 (($ $ $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1737 (($ $ $ $) 74)) (-1291 (($ $) NIL)) (-2827 (((-396 $) $) NIL)) (-1947 (((-108) $ $) NIL)) (-3329 (((-525) $) NIL)) (-3427 (($ $ $) 71)) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL)) (-3528 (((-525) $) NIL)) (-2129 (($ $ $) 59)) (-3305 (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 79) (((-631 (-525)) (-631 $)) 28)) (-4163 (((-3 $ "failed") $) NIL)) (-1511 (((-3 (-385 (-525)) "failed") $) NIL)) (-1352 (((-108) $) NIL)) (-1726 (((-385 (-525)) $) NIL)) (-3377 (($) 82) (($ $) 83)) (-2110 (($ $ $) 58)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL)) (-2744 (((-108) $) NIL)) (-2467 (($ $ $ $) NIL)) (-3046 (($ $ $) 80)) (-2134 (((-108) $) NIL)) (-1994 (($ $ $) NIL)) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL)) (-2824 (((-108) $) 66)) (-2419 (((-108) $) 64)) (-2247 (($ $) 42)) (-2085 (((-3 $ "failed") $) NIL)) (-2732 (((-108) $) 75)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3989 (($ $ $ $) 72)) (-3741 (($ $ $) 68) (($) 39)) (-2478 (($ $ $) 67) (($) 38)) (-3291 (($ $) NIL)) (-1657 (($ $) 70)) (-1356 (($ $ $) NIL) (($ (-591 $)) NIL)) (-2339 (((-1072) $) NIL)) (-2885 (($ $ $) NIL)) (-3506 (($) NIL T CONST)) (-1699 (($ $) 50)) (-2047 (((-1036) $) NIL) (($ $) 69)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL)) (-1399 (($ $ $) 62) (($ (-591 $)) NIL)) (-1603 (($ $) NIL)) (-1348 (((-396 $) $) NIL)) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL)) (-2089 (((-3 $ "failed") $ $) NIL)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL)) (-3451 (((-108) $) NIL)) (-1712 (((-712) $) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 61)) (-3266 (($ $ (-712)) NIL) (($ $) NIL)) (-4140 (($ $) 51)) (-3199 (($ $) NIL)) (-1408 (((-525) $) 32) (((-501) $) NIL) (((-825 (-525)) $) NIL) (((-357) $) NIL) (((-205) $) NIL)) (-3022 (((-796) $) 31) (($ (-525)) 81) (($ $) NIL) (($ (-525)) 81)) (-2128 (((-712)) NIL)) (-1932 (((-108) $ $) NIL)) (-2516 (($ $ $) NIL)) (-2672 (($) 37)) (-2495 (((-108) $ $) NIL)) (-1938 (($ $ $ $) 73)) (-1539 (($ $) 63)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-3625 (($ $ $) 44)) (-4191 (($) 35 T CONST)) (-2201 (($ $ $) 47)) (-4197 (($) 36 T CONST)) (-2563 (((-1072) $) 21) (((-1072) $ (-108)) 23) (((-1176) (-763) $) 24) (((-1176) (-763) $ (-108)) 25)) (-2213 (($ $) 45)) (-4196 (($ $ (-712)) NIL) (($ $) NIL)) (-2191 (($ $ $) 46)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 40)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 49)) (-3613 (($ $ $) 43)) (-4164 (($ $) 52) (($ $ $) 54)) (-4156 (($ $ $) 53)) (** (($ $ (-854)) NIL) (($ $ (-712)) 57)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 34) (($ $ $) 55)))
+(((-1036) (-13 (-510) (-606) (-769) (-10 -8 (-6 -4237) (-6 -4242) (-6 -4238) (-15 -2478 ($)) (-15 -3741 ($)) (-15 -2247 ($ $)) (-15 -1917 ($ $)) (-15 -3613 ($ $ $)) (-15 -3625 ($ $ $)) (-15 -3931 ($ $ $)) (-15 -2213 ($ $)) (-15 -2191 ($ $ $)) (-15 -2201 ($ $ $))))) (T -1036))
+((-3625 (*1 *1 *1 *1) (-5 *1 (-1036))) (-3613 (*1 *1 *1 *1) (-5 *1 (-1036))) (-1917 (*1 *1 *1) (-5 *1 (-1036))) (-2478 (*1 *1) (-5 *1 (-1036))) (-3741 (*1 *1) (-5 *1 (-1036))) (-2247 (*1 *1 *1) (-5 *1 (-1036))) (-3931 (*1 *1 *1 *1) (-5 *1 (-1036))) (-2213 (*1 *1 *1) (-5 *1 (-1036))) (-2191 (*1 *1 *1 *1) (-5 *1 (-1036))) (-2201 (*1 *1 *1 *1) (-5 *1 (-1036))))
+(-13 (-510) (-606) (-769) (-10 -8 (-6 -4237) (-6 -4242) (-6 -4238) (-15 -2478 ($)) (-15 -3741 ($)) (-15 -2247 ($ $)) (-15 -1917 ($ $)) (-15 -3613 ($ $ $)) (-15 -3625 ($ $ $)) (-15 -3931 ($ $ $)) (-15 -2213 ($ $)) (-15 -2191 ($ $ $)) (-15 -2201 ($ $ $))))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-1211 ((|#1| $) 44)) (-3891 (((-108) $ (-712)) 8)) (-3798 (($) 7 T CONST)) (-1275 ((|#1| |#1| $) 46)) (-1764 ((|#1| $) 45)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-1464 ((|#1| $) 39)) (-2470 (($ |#1| $) 40)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-3631 ((|#1| $) 41)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-1326 (((-712) $) 43)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-1870 (($ (-591 |#1|)) 42)) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-1037 |#1|) (-131) (-1125)) (T -1037))
+((-1275 (*1 *2 *2 *1) (-12 (-4 *1 (-1037 *2)) (-4 *2 (-1125)))) (-1764 (*1 *2 *1) (-12 (-4 *1 (-1037 *2)) (-4 *2 (-1125)))) (-1211 (*1 *2 *1) (-12 (-4 *1 (-1037 *2)) (-4 *2 (-1125)))) (-1326 (*1 *2 *1) (-12 (-4 *1 (-1037 *3)) (-4 *3 (-1125)) (-5 *2 (-712)))))
+(-13 (-102 |t#1|) (-10 -8 (-6 -4250) (-15 -1275 (|t#1| |t#1| $)) (-15 -1764 (|t#1| $)) (-15 -1211 (|t#1| $)) (-15 -1326 ((-712) $))))
+(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-2569 ((|#3| $) 76)) (-1251 (((-3 (-525) "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL) (((-3 |#3| "failed") $) 40)) (-3528 (((-525) $) NIL) (((-385 (-525)) $) NIL) ((|#3| $) 37)) (-3305 (((-631 (-525)) (-631 $)) NIL) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL) (((-2 (|:| -4057 (-631 |#3|)) (|:| |vec| (-1171 |#3|))) (-631 $) (-1171 $)) 73) (((-631 |#3|) (-631 $)) 65)) (-3266 (($ $ (-1 |#3| |#3|)) 19) (($ $ (-1 |#3| |#3|) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089)) NIL) (($ $ (-712)) NIL) (($ $) NIL)) (-3499 ((|#3| $) 78)) (-4067 ((|#4| $) 32)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ (-385 (-525))) NIL) (($ |#3|) 16)) (** (($ $ (-854)) NIL) (($ $ (-712)) 15) (($ $ (-525)) 82)))
+(((-1038 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 ** (|#1| |#1| (-525))) (-15 -3499 (|#3| |#1|)) (-15 -2569 (|#3| |#1|)) (-15 -4067 (|#4| |#1|)) (-15 -3305 ((-631 |#3|) (-631 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 |#3|)) (|:| |vec| (-1171 |#3|))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-631 (-525)) (-631 |#1|))) (-15 -3528 (|#3| |#1|)) (-15 -1251 ((-3 |#3| "failed") |#1|)) (-15 -3022 (|#1| |#3|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -3266 (|#1| |#1| (-1 |#3| |#3|) (-712))) (-15 -3266 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3022 (|#1| (-525))) (-15 ** (|#1| |#1| (-712))) (-15 ** (|#1| |#1| (-854))) (-15 -3022 ((-796) |#1|))) (-1039 |#2| |#3| |#4| |#5|) (-712) (-975) (-218 |#2| |#3|) (-218 |#2| |#3|)) (T -1038))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-525))) (-15 -3499 (|#3| |#1|)) (-15 -2569 (|#3| |#1|)) (-15 -4067 (|#4| |#1|)) (-15 -3305 ((-631 |#3|) (-631 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 |#3|)) (|:| |vec| (-1171 |#3|))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 |#1|) (-1171 |#1|))) (-15 -3305 ((-631 (-525)) (-631 |#1|))) (-15 -3528 (|#3| |#1|)) (-15 -1251 ((-3 |#3| "failed") |#1|)) (-15 -3022 (|#1| |#3|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-525) |#1|)) (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -3266 (|#1| |#1| (-1 |#3| |#3|) (-712))) (-15 -3266 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3022 (|#1| (-525))) (-15 ** (|#1| |#1| (-712))) (-15 ** (|#1| |#1| (-854))) (-15 -3022 ((-796) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2569 ((|#2| $) 72)) (-1290 (((-108) $) 112)) (-2157 (((-3 $ "failed") $ $) 19)) (-3079 (((-108) $) 110)) (-3891 (((-108) $ (-712)) 102)) (-1504 (($ |#2|) 75)) (-3798 (($) 17 T CONST)) (-2753 (($ $) 129 (|has| |#2| (-286)))) (-3725 ((|#3| $ (-525)) 124)) (-1251 (((-3 (-525) "failed") $) 86 (|has| |#2| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) 84 (|has| |#2| (-966 (-385 (-525))))) (((-3 |#2| "failed") $) 81)) (-3528 (((-525) $) 87 (|has| |#2| (-966 (-525)))) (((-385 (-525)) $) 85 (|has| |#2| (-966 (-385 (-525))))) ((|#2| $) 80)) (-3305 (((-631 (-525)) (-631 $)) 79 (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 78 (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) 77) (((-631 |#2|) (-631 $)) 76)) (-4163 (((-3 $ "failed") $) 34)) (-4073 (((-712) $) 130 (|has| |#2| (-517)))) (-3217 ((|#2| $ (-525) (-525)) 122)) (-3454 (((-591 |#2|) $) 95 (|has| $ (-6 -4250)))) (-2824 (((-108) $) 31)) (-2482 (((-712) $) 131 (|has| |#2| (-517)))) (-2634 (((-591 |#4|) $) 132 (|has| |#2| (-517)))) (-2281 (((-712) $) 118)) (-2296 (((-712) $) 119)) (-2910 (((-108) $ (-712)) 103)) (-2807 ((|#2| $) 67 (|has| |#2| (-6 (-4252 "*"))))) (-1755 (((-525) $) 114)) (-1639 (((-525) $) 116)) (-2552 (((-591 |#2|) $) 94 (|has| $ (-6 -4250)))) (-2141 (((-108) |#2| $) 92 (-12 (|has| |#2| (-1018)) (|has| $ (-6 -4250))))) (-4230 (((-525) $) 115)) (-2631 (((-525) $) 117)) (-3393 (($ (-591 (-591 |#2|))) 109)) (-3249 (($ (-1 |#2| |#2|) $) 99 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#2| |#2| |#2|) $ $) 126) (($ (-1 |#2| |#2|) $) 100)) (-3349 (((-591 (-591 |#2|)) $) 120)) (-3971 (((-108) $ (-712)) 104)) (-2339 (((-1072) $) 9)) (-1914 (((-3 $ "failed") $) 66 (|has| |#2| (-341)))) (-2047 (((-1036) $) 10)) (-2089 (((-3 $ "failed") $ |#2|) 127 (|has| |#2| (-517)))) (-1623 (((-108) (-1 (-108) |#2|) $) 97 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#2|))) 91 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) 90 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) 89 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) 88 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))) (-3493 (((-108) $ $) 108)) (-3028 (((-108) $) 105)) (-3209 (($) 106)) (-3164 ((|#2| $ (-525) (-525) |#2|) 123) ((|#2| $ (-525) (-525)) 121)) (-3266 (($ $ (-1 |#2| |#2|)) 52) (($ $ (-1 |#2| |#2|) (-712)) 51) (($ $ (-591 (-1089)) (-591 (-712))) 44 (|has| |#2| (-833 (-1089)))) (($ $ (-1089) (-712)) 43 (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089))) 42 (|has| |#2| (-833 (-1089)))) (($ $ (-1089)) 41 (|has| |#2| (-833 (-1089)))) (($ $ (-712)) 39 (|has| |#2| (-213))) (($ $) 37 (|has| |#2| (-213)))) (-3499 ((|#2| $) 71)) (-3487 (($ (-591 |#2|)) 74)) (-2740 (((-108) $) 111)) (-4067 ((|#3| $) 73)) (-2238 ((|#2| $) 68 (|has| |#2| (-6 (-4252 "*"))))) (-2064 (((-712) (-1 (-108) |#2|) $) 96 (|has| $ (-6 -4250))) (((-712) |#2| $) 93 (-12 (|has| |#2| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 107)) (-1793 ((|#4| $ (-525)) 125)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ (-385 (-525))) 83 (|has| |#2| (-966 (-385 (-525))))) (($ |#2|) 82)) (-2128 (((-712)) 29)) (-4158 (((-108) (-1 (-108) |#2|) $) 98 (|has| $ (-6 -4250)))) (-3489 (((-108) $) 113)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ (-1 |#2| |#2|)) 50) (($ $ (-1 |#2| |#2|) (-712)) 49) (($ $ (-591 (-1089)) (-591 (-712))) 48 (|has| |#2| (-833 (-1089)))) (($ $ (-1089) (-712)) 47 (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089))) 46 (|has| |#2| (-833 (-1089)))) (($ $ (-1089)) 45 (|has| |#2| (-833 (-1089)))) (($ $ (-712)) 40 (|has| |#2| (-213))) (($ $) 38 (|has| |#2| (-213)))) (-4096 (((-108) $ $) 6)) (-4173 (($ $ |#2|) 128 (|has| |#2| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 65 (|has| |#2| (-341)))) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#2|) 134) (($ |#2| $) 133) ((|#4| $ |#4|) 70) ((|#3| |#3| $) 69)) (-4045 (((-712) $) 101 (|has| $ (-6 -4250)))))
+(((-1039 |#1| |#2| |#3| |#4|) (-131) (-712) (-975) (-218 |t#1| |t#2|) (-218 |t#1| |t#2|)) (T -1039))
+((-1504 (*1 *1 *2) (-12 (-4 *2 (-975)) (-4 *1 (-1039 *3 *2 *4 *5)) (-4 *4 (-218 *3 *2)) (-4 *5 (-218 *3 *2)))) (-3487 (*1 *1 *2) (-12 (-5 *2 (-591 *4)) (-4 *4 (-975)) (-4 *1 (-1039 *3 *4 *5 *6)) (-4 *5 (-218 *3 *4)) (-4 *6 (-218 *3 *4)))) (-4067 (*1 *2 *1) (-12 (-4 *1 (-1039 *3 *4 *2 *5)) (-4 *4 (-975)) (-4 *5 (-218 *3 *4)) (-4 *2 (-218 *3 *4)))) (-2569 (*1 *2 *1) (-12 (-4 *1 (-1039 *3 *2 *4 *5)) (-4 *4 (-218 *3 *2)) (-4 *5 (-218 *3 *2)) (-4 *2 (-975)))) (-3499 (*1 *2 *1) (-12 (-4 *1 (-1039 *3 *2 *4 *5)) (-4 *4 (-218 *3 *2)) (-4 *5 (-218 *3 *2)) (-4 *2 (-975)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-1039 *3 *4 *5 *2)) (-4 *4 (-975)) (-4 *5 (-218 *3 *4)) (-4 *2 (-218 *3 *4)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-1039 *3 *4 *2 *5)) (-4 *4 (-975)) (-4 *2 (-218 *3 *4)) (-4 *5 (-218 *3 *4)))) (-2238 (*1 *2 *1) (-12 (-4 *1 (-1039 *3 *2 *4 *5)) (-4 *4 (-218 *3 *2)) (-4 *5 (-218 *3 *2)) (|has| *2 (-6 (-4252 "*"))) (-4 *2 (-975)))) (-2807 (*1 *2 *1) (-12 (-4 *1 (-1039 *3 *2 *4 *5)) (-4 *4 (-218 *3 *2)) (-4 *5 (-218 *3 *2)) (|has| *2 (-6 (-4252 "*"))) (-4 *2 (-975)))) (-1914 (*1 *1 *1) (|partial| -12 (-4 *1 (-1039 *2 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-218 *2 *3)) (-4 *5 (-218 *2 *3)) (-4 *3 (-341)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-1039 *3 *4 *5 *6)) (-4 *4 (-975)) (-4 *5 (-218 *3 *4)) (-4 *6 (-218 *3 *4)) (-4 *4 (-341)))))
+(-13 (-211 |t#2|) (-107 |t#2| |t#2|) (-978 |t#1| |t#1| |t#2| |t#3| |t#4|) (-389 |t#2|) (-355 |t#2|) (-10 -8 (IF (|has| |t#2| (-160)) (-6 (-659 |t#2|)) |%noBranch|) (-15 -1504 ($ |t#2|)) (-15 -3487 ($ (-591 |t#2|))) (-15 -4067 (|t#3| $)) (-15 -2569 (|t#2| $)) (-15 -3499 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4252 "*"))) (PROGN (-6 (-37 |t#2|)) (-15 -2238 (|t#2| $)) (-15 -2807 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-341)) (PROGN (-15 -1914 ((-3 $ "failed") $)) (-15 ** ($ $ (-525)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-33) . T) ((-37 |#2|) |has| |#2| (-6 (-4252 "*"))) ((-97) . T) ((-107 |#2| |#2|) . T) ((-126) . T) ((-565 (-796)) . T) ((-211 |#2|) . T) ((-213) |has| |#2| (-213)) ((-288 |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((-355 |#2|) . T) ((-389 |#2|) . T) ((-464 |#2|) . T) ((-486 |#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((-593 |#2|) . T) ((-593 $) . T) ((-587 (-525)) |has| |#2| (-587 (-525))) ((-587 |#2|) . T) ((-659 |#2|) -3321 (|has| |#2| (-160)) (|has| |#2| (-6 (-4252 "*")))) ((-668) . T) ((-833 (-1089)) |has| |#2| (-833 (-1089))) ((-978 |#1| |#1| |#2| |#3| |#4|) . T) ((-966 (-385 (-525))) |has| |#2| (-966 (-385 (-525)))) ((-966 (-525)) |has| |#2| (-966 (-525))) ((-966 |#2|) . T) ((-981 |#2|) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1125) . T))
+((-2437 ((|#4| |#4|) 70)) (-2167 ((|#4| |#4|) 65)) (-2420 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4003 (-591 |#3|))) |#4| |#3|) 78)) (-3035 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 69)) (-1533 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 67)))
+(((-1040 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2167 (|#4| |#4|)) (-15 -1533 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -2437 (|#4| |#4|)) (-15 -3035 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -2420 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4003 (-591 |#3|))) |#4| |#3|))) (-286) (-351 |#1|) (-351 |#1|) (-629 |#1| |#2| |#3|)) (T -1040))
+((-2420 (*1 *2 *3 *4) (-12 (-4 *5 (-286)) (-4 *6 (-351 *5)) (-4 *4 (-351 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4)))) (-5 *1 (-1040 *5 *6 *4 *3)) (-4 *3 (-629 *5 *6 *4)))) (-3035 (*1 *2 *3) (-12 (-4 *4 (-286)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4)) (-5 *2 (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3))) (-5 *1 (-1040 *4 *5 *6 *3)) (-4 *3 (-629 *4 *5 *6)))) (-2437 (*1 *2 *2) (-12 (-4 *3 (-286)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *1 (-1040 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))) (-1533 (*1 *2 *3) (-12 (-4 *4 (-286)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4)) (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3))) (-5 *1 (-1040 *4 *5 *6 *3)) (-4 *3 (-629 *4 *5 *6)))) (-2167 (*1 *2 *2) (-12 (-4 *3 (-286)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *1 (-1040 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))))
+(-10 -7 (-15 -2167 (|#4| |#4|)) (-15 -1533 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -2437 (|#4| |#4|)) (-15 -3035 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -2420 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4003 (-591 |#3|))) |#4| |#3|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 17)) (-1507 (((-591 |#2|) $) 161)) (-1312 (((-1085 $) $ |#2|) 54) (((-1085 |#1|) $) 43)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 110 (|has| |#1| (-517)))) (-3706 (($ $) 112 (|has| |#1| (-517)))) (-1715 (((-108) $) 114 (|has| |#1| (-517)))) (-4090 (((-712) $) NIL) (((-712) $ (-591 |#2|)) 194)) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1291 (($ $) NIL (|has| |#1| (-429)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) 158) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 |#2| "failed") $) NIL)) (-3528 ((|#1| $) 156) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-525) $) NIL (|has| |#1| (-966 (-525)))) ((|#2| $) NIL)) (-2805 (($ $ $ |#2|) NIL (|has| |#1| (-160)))) (-1710 (($ $) 198)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) NIL) (((-631 |#1|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) 82)) (-3208 (($ $) NIL (|has| |#1| (-429))) (($ $ |#2|) NIL (|has| |#1| (-429)))) (-1695 (((-591 $) $) NIL)) (-2744 (((-108) $) NIL (|has| |#1| (-842)))) (-2056 (($ $ |#1| (-497 |#2|) $) NIL)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| |#1| (-819 (-357))) (|has| |#2| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| |#1| (-819 (-525))) (|has| |#2| (-819 (-525)))))) (-2824 (((-108) $) 19)) (-4010 (((-712) $) 26)) (-1493 (($ (-1085 |#1|) |#2|) 48) (($ (-1085 $) |#2|) 64)) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) 32)) (-1480 (($ |#1| (-497 |#2|)) 71) (($ $ |#2| (-712)) 52) (($ $ (-591 |#2|) (-591 (-712))) NIL)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ |#2|) NIL)) (-2624 (((-497 |#2|) $) 188) (((-712) $ |#2|) 189) (((-591 (-712)) $ (-591 |#2|)) 190)) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-4015 (($ (-1 (-497 |#2|) (-497 |#2|)) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) 122)) (-2254 (((-3 |#2| "failed") $) 163)) (-1661 (($ $) 197)) (-1678 ((|#1| $) 37)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2339 (((-1072) $) NIL)) (-3376 (((-3 (-591 $) "failed") $) NIL)) (-2010 (((-3 (-591 $) "failed") $) NIL)) (-2292 (((-3 (-2 (|:| |var| |#2|) (|:| -2008 (-712))) "failed") $) NIL)) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) 33)) (-1646 ((|#1| $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 140 (|has| |#1| (-429)))) (-1399 (($ (-591 $)) 145 (|has| |#1| (-429))) (($ $ $) 132 (|has| |#1| (-429)))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#1| (-842)))) (-1348 (((-396 $) $) NIL (|has| |#1| (-842)))) (-2089 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517))) (((-3 $ "failed") $ $) 120 (|has| |#1| (-517)))) (-4132 (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ |#2| |#1|) 166) (($ $ (-591 |#2|) (-591 |#1|)) 179) (($ $ |#2| $) 165) (($ $ (-591 |#2|) (-591 $)) 178)) (-2976 (($ $ |#2|) NIL (|has| |#1| (-160)))) (-3266 (($ $ |#2|) 196) (($ $ (-591 |#2|)) NIL) (($ $ |#2| (-712)) NIL) (($ $ (-591 |#2|) (-591 (-712))) NIL)) (-1316 (((-497 |#2|) $) 184) (((-712) $ |#2|) 180) (((-591 (-712)) $ (-591 |#2|)) 182)) (-1408 (((-825 (-357)) $) NIL (-12 (|has| |#1| (-566 (-825 (-357)))) (|has| |#2| (-566 (-825 (-357)))))) (((-825 (-525)) $) NIL (-12 (|has| |#1| (-566 (-825 (-525)))) (|has| |#2| (-566 (-825 (-525)))))) (((-501) $) NIL (-12 (|has| |#1| (-566 (-501))) (|has| |#2| (-566 (-501)))))) (-2668 ((|#1| $) 128 (|has| |#1| (-429))) (($ $ |#2|) 131 (|has| |#1| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#1| (-842))))) (-3022 (((-796) $) 151) (($ (-525)) 76) (($ |#1|) 77) (($ |#2|) 28) (($ $) NIL (|has| |#1| (-517))) (($ (-385 (-525))) NIL (-3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-966 (-385 (-525))))))) (-3654 (((-591 |#1|) $) 154)) (-2560 ((|#1| $ (-497 |#2|)) 73) (($ $ |#2| (-712)) NIL) (($ $ (-591 |#2|) (-591 (-712))) NIL)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#1| (-842))) (|has| |#1| (-136))))) (-2128 (((-712)) 79)) (-1698 (($ $ $ (-712)) NIL (|has| |#1| (-160)))) (-2495 (((-108) $ $) 117 (|has| |#1| (-517)))) (-3710 (($ $ (-854)) 102) (($ $ (-712)) 104)) (-4191 (($) 12 T CONST)) (-4197 (($) 14 T CONST)) (-4196 (($ $ |#2|) NIL) (($ $ (-591 |#2|)) NIL) (($ $ |#2| (-712)) NIL) (($ $ (-591 |#2|) (-591 (-712))) NIL)) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) 97)) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4173 (($ $ |#1|) 126 (|has| |#1| (-341)))) (-4164 (($ $) 85) (($ $ $) 95)) (-4156 (($ $ $) 49)) (** (($ $ (-854)) 103) (($ $ (-712)) 100)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 88) (($ $ $) 65) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) 90) (($ $ |#1|) NIL)))
+(((-1041 |#1| |#2|) (-882 |#1| (-497 |#2|) |#2|) (-975) (-788)) (T -1041))
+NIL
+(-882 |#1| (-497 |#2|) |#2|)
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1507 (((-591 |#2|) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-1987 (($ $) 143 (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) 119 (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1361 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1431 (($ $) 139 (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) 115 (|has| |#1| (-37 (-385 (-525)))))) (-1719 (($ $) 147 (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) 123 (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) NIL T CONST)) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-4215 (((-885 |#1|) $ (-712)) NIL) (((-885 |#1|) $ (-712) (-712)) NIL)) (-3123 (((-108) $) NIL)) (-1784 (($) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3873 (((-712) $ |#2|) NIL) (((-712) $ |#2| (-712)) NIL)) (-2824 (((-108) $) NIL)) (-3956 (($ $ (-525)) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2202 (((-108) $) NIL)) (-1480 (($ $ (-591 |#2|) (-591 (-497 |#2|))) NIL) (($ $ |#2| (-497 |#2|)) NIL) (($ |#1| (-497 |#2|)) NIL) (($ $ |#2| (-712)) 58) (($ $ (-591 |#2|) (-591 (-712))) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-1488 (($ $) 113 (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-4141 (($ $ |#2|) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ |#2| |#1|) 166 (|has| |#1| (-37 (-385 (-525)))))) (-2047 (((-1036) $) NIL)) (-3827 (($ (-1 $) |#2| |#1|) 165 (|has| |#1| (-37 (-385 (-525)))))) (-2784 (($ $ (-712)) 15)) (-2089 (((-3 $ "failed") $ $) NIL (|has| |#1| (-517)))) (-1409 (($ $) 111 (|has| |#1| (-37 (-385 (-525)))))) (-4132 (($ $ |#2| $) 97) (($ $ (-591 |#2|) (-591 $)) 90) (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL)) (-3266 (($ $ |#2|) 100) (($ $ (-591 |#2|)) NIL) (($ $ |#2| (-712)) NIL) (($ $ (-591 |#2|) (-591 (-712))) NIL)) (-1316 (((-497 |#2|) $) NIL)) (-1551 (((-1 (-1070 |#3|) |#3|) (-591 |#2|) (-591 (-1070 |#3|))) 79)) (-1502 (($ $) 149 (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) 125 (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) 145 (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) 121 (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) 141 (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) 117 (|has| |#1| (-37 (-385 (-525)))))) (-3571 (($ $) 17)) (-3022 (((-796) $) 182) (($ (-525)) NIL) (($ |#1|) 44 (|has| |#1| (-160))) (($ $) NIL (|has| |#1| (-517))) (($ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ |#2|) 65) (($ |#3|) 63)) (-2560 ((|#1| $ (-497 |#2|)) NIL) (($ $ |#2| (-712)) NIL) (($ $ (-591 |#2|) (-591 (-712))) NIL) ((|#3| $ (-712)) 42)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) NIL)) (-1563 (($ $) 155 (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) 131 (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1515 (($ $) 151 (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) 127 (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) 159 (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) 135 (|has| |#1| (-37 (-385 (-525)))))) (-3277 (($ $) 161 (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) 137 (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) 157 (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) 133 (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) 153 (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) 129 (|has| |#1| (-37 (-385 (-525)))))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 18 T CONST)) (-4197 (($) 10 T CONST)) (-4196 (($ $ |#2|) NIL) (($ $ (-591 |#2|)) NIL) (($ $ |#2| (-712)) NIL) (($ $ (-591 |#2|) (-591 (-712))) NIL)) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ |#1|) 184 (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) 61)) (** (($ $ (-854)) NIL) (($ $ (-712)) 70) (($ $ $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 103 (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 60) (($ $ (-385 (-525))) 108 (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) 106 (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) 47) (($ $ |#1|) 48) (($ |#3| $) 46)))
+(((-1042 |#1| |#2| |#3|) (-13 (-682 |#1| |#2|) (-10 -8 (-15 -2560 (|#3| $ (-712))) (-15 -3022 ($ |#2|)) (-15 -3022 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -1551 ((-1 (-1070 |#3|) |#3|) (-591 |#2|) (-591 (-1070 |#3|)))) (IF (|has| |#1| (-37 (-385 (-525)))) (PROGN (-15 -4141 ($ $ |#2| |#1|)) (-15 -3827 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-975) (-788) (-882 |#1| (-497 |#2|) |#2|)) (T -1042))
+((-2560 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-4 *2 (-882 *4 (-497 *5) *5)) (-5 *1 (-1042 *4 *5 *2)) (-4 *4 (-975)) (-4 *5 (-788)))) (-3022 (*1 *1 *2) (-12 (-4 *3 (-975)) (-4 *2 (-788)) (-5 *1 (-1042 *3 *2 *4)) (-4 *4 (-882 *3 (-497 *2) *2)))) (-3022 (*1 *1 *2) (-12 (-4 *3 (-975)) (-4 *4 (-788)) (-5 *1 (-1042 *3 *4 *2)) (-4 *2 (-882 *3 (-497 *4) *4)))) (* (*1 *1 *2 *1) (-12 (-4 *3 (-975)) (-4 *4 (-788)) (-5 *1 (-1042 *3 *4 *2)) (-4 *2 (-882 *3 (-497 *4) *4)))) (-1551 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *6)) (-5 *4 (-591 (-1070 *7))) (-4 *6 (-788)) (-4 *7 (-882 *5 (-497 *6) *6)) (-4 *5 (-975)) (-5 *2 (-1 (-1070 *7) *7)) (-5 *1 (-1042 *5 *6 *7)))) (-4141 (*1 *1 *1 *2 *3) (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-4 *2 (-788)) (-5 *1 (-1042 *3 *2 *4)) (-4 *4 (-882 *3 (-497 *2) *2)))) (-3827 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1042 *4 *3 *5))) (-4 *4 (-37 (-385 (-525)))) (-4 *4 (-975)) (-4 *3 (-788)) (-5 *1 (-1042 *4 *3 *5)) (-4 *5 (-882 *4 (-497 *3) *3)))))
+(-13 (-682 |#1| |#2|) (-10 -8 (-15 -2560 (|#3| $ (-712))) (-15 -3022 ($ |#2|)) (-15 -3022 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -1551 ((-1 (-1070 |#3|) |#3|) (-591 |#2|) (-591 (-1070 |#3|)))) (IF (|has| |#1| (-37 (-385 (-525)))) (PROGN (-15 -4141 ($ $ |#2| |#1|)) (-15 -3827 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
+((-3008 (((-108) $ $) 7)) (-3817 (((-591 (-2 (|:| -3529 $) (|:| -1976 (-591 |#4|)))) (-591 |#4|)) 85)) (-2113 (((-591 $) (-591 |#4|)) 86) (((-591 $) (-591 |#4|) (-108)) 111)) (-1507 (((-591 |#3|) $) 33)) (-1430 (((-108) $) 26)) (-3490 (((-108) $) 17 (|has| |#1| (-517)))) (-3130 (((-108) |#4| $) 101) (((-108) $) 97)) (-1568 ((|#4| |#4| $) 92)) (-1291 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 $))) |#4| $) 126)) (-3327 (((-2 (|:| |under| $) (|:| -2662 $) (|:| |upper| $)) $ |#3|) 27)) (-3891 (((-108) $ (-712)) 44)) (-2305 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4250))) (((-3 |#4| "failed") $ |#3|) 79)) (-3798 (($) 45 T CONST)) (-3382 (((-108) $) 22 (|has| |#1| (-517)))) (-2438 (((-108) $ $) 24 (|has| |#1| (-517)))) (-2055 (((-108) $ $) 23 (|has| |#1| (-517)))) (-1964 (((-108) $) 25 (|has| |#1| (-517)))) (-2656 (((-591 |#4|) (-591 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-3853 (((-591 |#4|) (-591 |#4|) $) 18 (|has| |#1| (-517)))) (-1921 (((-591 |#4|) (-591 |#4|) $) 19 (|has| |#1| (-517)))) (-1251 (((-3 $ "failed") (-591 |#4|)) 36)) (-3528 (($ (-591 |#4|)) 35)) (-3078 (((-3 $ "failed") $) 82)) (-2736 ((|#4| |#4| $) 89)) (-3098 (($ $) 68 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ |#4| $) 67 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4250)))) (-3407 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-517)))) (-3135 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-2933 ((|#4| |#4| $) 87)) (-1227 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4250))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4250))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-2719 (((-2 (|:| -3529 (-591 |#4|)) (|:| -1976 (-591 |#4|))) $) 105)) (-1949 (((-108) |#4| $) 136)) (-3485 (((-108) |#4| $) 133)) (-1732 (((-108) |#4| $) 137) (((-108) $) 134)) (-3454 (((-591 |#4|) $) 52 (|has| $ (-6 -4250)))) (-1809 (((-108) |#4| $) 104) (((-108) $) 103)) (-2009 ((|#3| $) 34)) (-2910 (((-108) $ (-712)) 43)) (-2552 (((-591 |#4|) $) 53 (|has| $ (-6 -4250)))) (-2141 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#4| |#4|) $) 47)) (-3993 (((-591 |#3|) $) 32)) (-4174 (((-108) |#3| $) 31)) (-3971 (((-108) $ (-712)) 42)) (-2339 (((-1072) $) 9)) (-2711 (((-3 |#4| (-591 $)) |#4| |#4| $) 128)) (-2627 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 $))) |#4| |#4| $) 127)) (-3708 (((-3 |#4| "failed") $) 83)) (-1933 (((-591 $) |#4| $) 129)) (-1372 (((-3 (-108) (-591 $)) |#4| $) 132)) (-1406 (((-591 (-2 (|:| |val| (-108)) (|:| -3374 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-3516 (((-591 $) |#4| $) 125) (((-591 $) (-591 |#4|) $) 124) (((-591 $) (-591 |#4|) (-591 $)) 123) (((-591 $) |#4| (-591 $)) 122)) (-2689 (($ |#4| $) 117) (($ (-591 |#4|) $) 116)) (-3280 (((-591 |#4|) $) 107)) (-3196 (((-108) |#4| $) 99) (((-108) $) 95)) (-4066 ((|#4| |#4| $) 90)) (-2154 (((-108) $ $) 110)) (-2934 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-517)))) (-2115 (((-108) |#4| $) 100) (((-108) $) 96)) (-2731 ((|#4| |#4| $) 91)) (-2047 (((-1036) $) 10)) (-3066 (((-3 |#4| "failed") $) 84)) (-2069 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-1554 (((-3 $ "failed") $ |#4|) 78)) (-2784 (($ $ |#4|) 77) (((-591 $) |#4| $) 115) (((-591 $) |#4| (-591 $)) 114) (((-591 $) (-591 |#4|) $) 113) (((-591 $) (-591 |#4|) (-591 $)) 112)) (-1623 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 |#4|) (-591 |#4|)) 59 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-273 |#4|)) 57 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-591 (-273 |#4|))) 56 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))) (-3493 (((-108) $ $) 38)) (-3028 (((-108) $) 41)) (-3209 (($) 40)) (-1316 (((-712) $) 106)) (-2064 (((-712) |#4| $) 54 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) (((-712) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4250)))) (-3199 (($ $) 39)) (-1408 (((-501) $) 69 (|has| |#4| (-566 (-501))))) (-3036 (($ (-591 |#4|)) 60)) (-3134 (($ $ |#3|) 28)) (-3443 (($ $ |#3|) 30)) (-2487 (($ $) 88)) (-3010 (($ $ |#3|) 29)) (-3022 (((-796) $) 11) (((-591 |#4|) $) 37)) (-3223 (((-712) $) 76 (|has| |#3| (-346)))) (-2122 (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-2165 (((-108) $ (-1 (-108) |#4| (-591 |#4|))) 98)) (-2533 (((-591 $) |#4| $) 121) (((-591 $) |#4| (-591 $)) 120) (((-591 $) (-591 |#4|) $) 119) (((-591 $) (-591 |#4|) (-591 $)) 118)) (-4158 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4250)))) (-3872 (((-591 |#3|) $) 81)) (-1564 (((-108) |#4| $) 135)) (-1884 (((-108) |#3| $) 80)) (-4096 (((-108) $ $) 6)) (-4045 (((-712) $) 46 (|has| $ (-6 -4250)))))
+(((-1043 |#1| |#2| |#3| |#4|) (-131) (-429) (-734) (-788) (-989 |t#1| |t#2| |t#3|)) (T -1043))
+NIL
+(-13 (-1027 |t#1| |t#2| |t#3| |t#4|) (-725 |t#1| |t#2| |t#3| |t#4|))
+(((-33) . T) ((-97) . T) ((-565 (-591 |#4|)) . T) ((-565 (-796)) . T) ((-142 |#4|) . T) ((-566 (-501)) |has| |#4| (-566 (-501))) ((-288 |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))) ((-464 |#4|) . T) ((-486 |#4| |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))) ((-725 |#1| |#2| |#3| |#4|) . T) ((-907 |#1| |#2| |#3| |#4|) . T) ((-994 |#1| |#2| |#3| |#4|) . T) ((-1018) . T) ((-1027 |#1| |#2| |#3| |#4|) . T) ((-1119 |#1| |#2| |#3| |#4|) . T) ((-1125) . T))
+((-4039 (((-591 |#2|) |#1|) 12)) (-3168 (((-591 |#2|) |#2| |#2| |#2| |#2| |#2|) 38) (((-591 |#2|) |#1|) 49)) (-3351 (((-591 |#2|) |#2| |#2| |#2|) 36) (((-591 |#2|) |#1|) 47)) (-2044 ((|#2| |#1|) 43)) (-3288 (((-2 (|:| |solns| (-591 |#2|)) (|:| |maps| (-591 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 17)) (-4209 (((-591 |#2|) |#2| |#2|) 35) (((-591 |#2|) |#1|) 46)) (-3470 (((-591 |#2|) |#2| |#2| |#2| |#2|) 37) (((-591 |#2|) |#1|) 48)) (-3328 ((|#2| |#2| |#2| |#2| |#2| |#2|) 42)) (-2390 ((|#2| |#2| |#2| |#2|) 40)) (-3803 ((|#2| |#2| |#2|) 39)) (-2909 ((|#2| |#2| |#2| |#2| |#2|) 41)))
+(((-1044 |#1| |#2|) (-10 -7 (-15 -4039 ((-591 |#2|) |#1|)) (-15 -2044 (|#2| |#1|)) (-15 -3288 ((-2 (|:| |solns| (-591 |#2|)) (|:| |maps| (-591 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -4209 ((-591 |#2|) |#1|)) (-15 -3351 ((-591 |#2|) |#1|)) (-15 -3470 ((-591 |#2|) |#1|)) (-15 -3168 ((-591 |#2|) |#1|)) (-15 -4209 ((-591 |#2|) |#2| |#2|)) (-15 -3351 ((-591 |#2|) |#2| |#2| |#2|)) (-15 -3470 ((-591 |#2|) |#2| |#2| |#2| |#2|)) (-15 -3168 ((-591 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -3803 (|#2| |#2| |#2|)) (-15 -2390 (|#2| |#2| |#2| |#2|)) (-15 -2909 (|#2| |#2| |#2| |#2| |#2|)) (-15 -3328 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1147 |#2|) (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (T -1044))
+((-3328 (*1 *2 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (-5 *1 (-1044 *3 *2)) (-4 *3 (-1147 *2)))) (-2909 (*1 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (-5 *1 (-1044 *3 *2)) (-4 *3 (-1147 *2)))) (-2390 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (-5 *1 (-1044 *3 *2)) (-4 *3 (-1147 *2)))) (-3803 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (-5 *1 (-1044 *3 *2)) (-4 *3 (-1147 *2)))) (-3168 (*1 *2 *3 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (-5 *2 (-591 *3)) (-5 *1 (-1044 *4 *3)) (-4 *4 (-1147 *3)))) (-3470 (*1 *2 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (-5 *2 (-591 *3)) (-5 *1 (-1044 *4 *3)) (-4 *4 (-1147 *3)))) (-3351 (*1 *2 *3 *3 *3) (-12 (-4 *3 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (-5 *2 (-591 *3)) (-5 *1 (-1044 *4 *3)) (-4 *4 (-1147 *3)))) (-4209 (*1 *2 *3 *3) (-12 (-4 *3 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (-5 *2 (-591 *3)) (-5 *1 (-1044 *4 *3)) (-4 *4 (-1147 *3)))) (-3168 (*1 *2 *3) (-12 (-4 *4 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (-5 *2 (-591 *4)) (-5 *1 (-1044 *3 *4)) (-4 *3 (-1147 *4)))) (-3470 (*1 *2 *3) (-12 (-4 *4 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (-5 *2 (-591 *4)) (-5 *1 (-1044 *3 *4)) (-4 *3 (-1147 *4)))) (-3351 (*1 *2 *3) (-12 (-4 *4 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (-5 *2 (-591 *4)) (-5 *1 (-1044 *3 *4)) (-4 *3 (-1147 *4)))) (-4209 (*1 *2 *3) (-12 (-4 *4 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (-5 *2 (-591 *4)) (-5 *1 (-1044 *3 *4)) (-4 *3 (-1147 *4)))) (-3288 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *5 *5)) (-4 *5 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (-5 *2 (-2 (|:| |solns| (-591 *5)) (|:| |maps| (-591 (-2 (|:| |arg| *5) (|:| |res| *5)))))) (-5 *1 (-1044 *3 *5)) (-4 *3 (-1147 *5)))) (-2044 (*1 *2 *3) (-12 (-4 *2 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (-5 *1 (-1044 *3 *2)) (-4 *3 (-1147 *2)))) (-4039 (*1 *2 *3) (-12 (-4 *4 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525))))))) (-5 *2 (-591 *4)) (-5 *1 (-1044 *3 *4)) (-4 *3 (-1147 *4)))))
+(-10 -7 (-15 -4039 ((-591 |#2|) |#1|)) (-15 -2044 (|#2| |#1|)) (-15 -3288 ((-2 (|:| |solns| (-591 |#2|)) (|:| |maps| (-591 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -4209 ((-591 |#2|) |#1|)) (-15 -3351 ((-591 |#2|) |#1|)) (-15 -3470 ((-591 |#2|) |#1|)) (-15 -3168 ((-591 |#2|) |#1|)) (-15 -4209 ((-591 |#2|) |#2| |#2|)) (-15 -3351 ((-591 |#2|) |#2| |#2| |#2|)) (-15 -3470 ((-591 |#2|) |#2| |#2| |#2| |#2|)) (-15 -3168 ((-591 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -3803 (|#2| |#2| |#2|)) (-15 -2390 (|#2| |#2| |#2| |#2|)) (-15 -2909 (|#2| |#2| |#2| |#2| |#2|)) (-15 -3328 (|#2| |#2| |#2| |#2| |#2| |#2|)))
+((-2865 (((-591 (-591 (-273 (-294 |#1|)))) (-591 (-273 (-385 (-885 |#1|))))) 95) (((-591 (-591 (-273 (-294 |#1|)))) (-591 (-273 (-385 (-885 |#1|)))) (-591 (-1089))) 94) (((-591 (-591 (-273 (-294 |#1|)))) (-591 (-385 (-885 |#1|)))) 92) (((-591 (-591 (-273 (-294 |#1|)))) (-591 (-385 (-885 |#1|))) (-591 (-1089))) 90) (((-591 (-273 (-294 |#1|))) (-273 (-385 (-885 |#1|)))) 75) (((-591 (-273 (-294 |#1|))) (-273 (-385 (-885 |#1|))) (-1089)) 76) (((-591 (-273 (-294 |#1|))) (-385 (-885 |#1|))) 70) (((-591 (-273 (-294 |#1|))) (-385 (-885 |#1|)) (-1089)) 59)) (-3020 (((-591 (-591 (-294 |#1|))) (-591 (-385 (-885 |#1|))) (-591 (-1089))) 88) (((-591 (-294 |#1|)) (-385 (-885 |#1|)) (-1089)) 43)) (-1457 (((-1079 (-591 (-294 |#1|)) (-591 (-273 (-294 |#1|)))) (-385 (-885 |#1|)) (-1089)) 98) (((-1079 (-591 (-294 |#1|)) (-591 (-273 (-294 |#1|)))) (-273 (-385 (-885 |#1|))) (-1089)) 97)))
+(((-1045 |#1|) (-10 -7 (-15 -2865 ((-591 (-273 (-294 |#1|))) (-385 (-885 |#1|)) (-1089))) (-15 -2865 ((-591 (-273 (-294 |#1|))) (-385 (-885 |#1|)))) (-15 -2865 ((-591 (-273 (-294 |#1|))) (-273 (-385 (-885 |#1|))) (-1089))) (-15 -2865 ((-591 (-273 (-294 |#1|))) (-273 (-385 (-885 |#1|))))) (-15 -2865 ((-591 (-591 (-273 (-294 |#1|)))) (-591 (-385 (-885 |#1|))) (-591 (-1089)))) (-15 -2865 ((-591 (-591 (-273 (-294 |#1|)))) (-591 (-385 (-885 |#1|))))) (-15 -2865 ((-591 (-591 (-273 (-294 |#1|)))) (-591 (-273 (-385 (-885 |#1|)))) (-591 (-1089)))) (-15 -2865 ((-591 (-591 (-273 (-294 |#1|)))) (-591 (-273 (-385 (-885 |#1|)))))) (-15 -3020 ((-591 (-294 |#1|)) (-385 (-885 |#1|)) (-1089))) (-15 -3020 ((-591 (-591 (-294 |#1|))) (-591 (-385 (-885 |#1|))) (-591 (-1089)))) (-15 -1457 ((-1079 (-591 (-294 |#1|)) (-591 (-273 (-294 |#1|)))) (-273 (-385 (-885 |#1|))) (-1089))) (-15 -1457 ((-1079 (-591 (-294 |#1|)) (-591 (-273 (-294 |#1|)))) (-385 (-885 |#1|)) (-1089)))) (-13 (-286) (-788) (-138))) (T -1045))
+((-1457 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-1089)) (-4 *5 (-13 (-286) (-788) (-138))) (-5 *2 (-1079 (-591 (-294 *5)) (-591 (-273 (-294 *5))))) (-5 *1 (-1045 *5)))) (-1457 (*1 *2 *3 *4) (-12 (-5 *3 (-273 (-385 (-885 *5)))) (-5 *4 (-1089)) (-4 *5 (-13 (-286) (-788) (-138))) (-5 *2 (-1079 (-591 (-294 *5)) (-591 (-273 (-294 *5))))) (-5 *1 (-1045 *5)))) (-3020 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-385 (-885 *5)))) (-5 *4 (-591 (-1089))) (-4 *5 (-13 (-286) (-788) (-138))) (-5 *2 (-591 (-591 (-294 *5)))) (-5 *1 (-1045 *5)))) (-3020 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-1089)) (-4 *5 (-13 (-286) (-788) (-138))) (-5 *2 (-591 (-294 *5))) (-5 *1 (-1045 *5)))) (-2865 (*1 *2 *3) (-12 (-5 *3 (-591 (-273 (-385 (-885 *4))))) (-4 *4 (-13 (-286) (-788) (-138))) (-5 *2 (-591 (-591 (-273 (-294 *4))))) (-5 *1 (-1045 *4)))) (-2865 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-273 (-385 (-885 *5))))) (-5 *4 (-591 (-1089))) (-4 *5 (-13 (-286) (-788) (-138))) (-5 *2 (-591 (-591 (-273 (-294 *5))))) (-5 *1 (-1045 *5)))) (-2865 (*1 *2 *3) (-12 (-5 *3 (-591 (-385 (-885 *4)))) (-4 *4 (-13 (-286) (-788) (-138))) (-5 *2 (-591 (-591 (-273 (-294 *4))))) (-5 *1 (-1045 *4)))) (-2865 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-385 (-885 *5)))) (-5 *4 (-591 (-1089))) (-4 *5 (-13 (-286) (-788) (-138))) (-5 *2 (-591 (-591 (-273 (-294 *5))))) (-5 *1 (-1045 *5)))) (-2865 (*1 *2 *3) (-12 (-5 *3 (-273 (-385 (-885 *4)))) (-4 *4 (-13 (-286) (-788) (-138))) (-5 *2 (-591 (-273 (-294 *4)))) (-5 *1 (-1045 *4)))) (-2865 (*1 *2 *3 *4) (-12 (-5 *3 (-273 (-385 (-885 *5)))) (-5 *4 (-1089)) (-4 *5 (-13 (-286) (-788) (-138))) (-5 *2 (-591 (-273 (-294 *5)))) (-5 *1 (-1045 *5)))) (-2865 (*1 *2 *3) (-12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-13 (-286) (-788) (-138))) (-5 *2 (-591 (-273 (-294 *4)))) (-5 *1 (-1045 *4)))) (-2865 (*1 *2 *3 *4) (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-1089)) (-4 *5 (-13 (-286) (-788) (-138))) (-5 *2 (-591 (-273 (-294 *5)))) (-5 *1 (-1045 *5)))))
+(-10 -7 (-15 -2865 ((-591 (-273 (-294 |#1|))) (-385 (-885 |#1|)) (-1089))) (-15 -2865 ((-591 (-273 (-294 |#1|))) (-385 (-885 |#1|)))) (-15 -2865 ((-591 (-273 (-294 |#1|))) (-273 (-385 (-885 |#1|))) (-1089))) (-15 -2865 ((-591 (-273 (-294 |#1|))) (-273 (-385 (-885 |#1|))))) (-15 -2865 ((-591 (-591 (-273 (-294 |#1|)))) (-591 (-385 (-885 |#1|))) (-591 (-1089)))) (-15 -2865 ((-591 (-591 (-273 (-294 |#1|)))) (-591 (-385 (-885 |#1|))))) (-15 -2865 ((-591 (-591 (-273 (-294 |#1|)))) (-591 (-273 (-385 (-885 |#1|)))) (-591 (-1089)))) (-15 -2865 ((-591 (-591 (-273 (-294 |#1|)))) (-591 (-273 (-385 (-885 |#1|)))))) (-15 -3020 ((-591 (-294 |#1|)) (-385 (-885 |#1|)) (-1089))) (-15 -3020 ((-591 (-591 (-294 |#1|))) (-591 (-385 (-885 |#1|))) (-591 (-1089)))) (-15 -1457 ((-1079 (-591 (-294 |#1|)) (-591 (-273 (-294 |#1|)))) (-273 (-385 (-885 |#1|))) (-1089))) (-15 -1457 ((-1079 (-591 (-294 |#1|)) (-591 (-273 (-294 |#1|)))) (-385 (-885 |#1|)) (-1089))))
+((-3645 (((-385 (-1085 (-294 |#1|))) (-1171 (-294 |#1|)) (-385 (-1085 (-294 |#1|))) (-525)) 29)) (-1453 (((-385 (-1085 (-294 |#1|))) (-385 (-1085 (-294 |#1|))) (-385 (-1085 (-294 |#1|))) (-385 (-1085 (-294 |#1|)))) 40)))
+(((-1046 |#1|) (-10 -7 (-15 -1453 ((-385 (-1085 (-294 |#1|))) (-385 (-1085 (-294 |#1|))) (-385 (-1085 (-294 |#1|))) (-385 (-1085 (-294 |#1|))))) (-15 -3645 ((-385 (-1085 (-294 |#1|))) (-1171 (-294 |#1|)) (-385 (-1085 (-294 |#1|))) (-525)))) (-13 (-517) (-788))) (T -1046))
+((-3645 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-385 (-1085 (-294 *5)))) (-5 *3 (-1171 (-294 *5))) (-5 *4 (-525)) (-4 *5 (-13 (-517) (-788))) (-5 *1 (-1046 *5)))) (-1453 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-385 (-1085 (-294 *3)))) (-4 *3 (-13 (-517) (-788))) (-5 *1 (-1046 *3)))))
+(-10 -7 (-15 -1453 ((-385 (-1085 (-294 |#1|))) (-385 (-1085 (-294 |#1|))) (-385 (-1085 (-294 |#1|))) (-385 (-1085 (-294 |#1|))))) (-15 -3645 ((-385 (-1085 (-294 |#1|))) (-1171 (-294 |#1|)) (-385 (-1085 (-294 |#1|))) (-525))))
+((-4039 (((-591 (-591 (-273 (-294 |#1|)))) (-591 (-273 (-294 |#1|))) (-591 (-1089))) 222) (((-591 (-273 (-294 |#1|))) (-294 |#1|) (-1089)) 20) (((-591 (-273 (-294 |#1|))) (-273 (-294 |#1|)) (-1089)) 26) (((-591 (-273 (-294 |#1|))) (-273 (-294 |#1|))) 25) (((-591 (-273 (-294 |#1|))) (-294 |#1|)) 21)))
+(((-1047 |#1|) (-10 -7 (-15 -4039 ((-591 (-273 (-294 |#1|))) (-294 |#1|))) (-15 -4039 ((-591 (-273 (-294 |#1|))) (-273 (-294 |#1|)))) (-15 -4039 ((-591 (-273 (-294 |#1|))) (-273 (-294 |#1|)) (-1089))) (-15 -4039 ((-591 (-273 (-294 |#1|))) (-294 |#1|) (-1089))) (-15 -4039 ((-591 (-591 (-273 (-294 |#1|)))) (-591 (-273 (-294 |#1|))) (-591 (-1089))))) (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (T -1047))
+((-4039 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-1089))) (-4 *5 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *2 (-591 (-591 (-273 (-294 *5))))) (-5 *1 (-1047 *5)) (-5 *3 (-591 (-273 (-294 *5)))))) (-4039 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-4 *5 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *2 (-591 (-273 (-294 *5)))) (-5 *1 (-1047 *5)) (-5 *3 (-294 *5)))) (-4039 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-4 *5 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *2 (-591 (-273 (-294 *5)))) (-5 *1 (-1047 *5)) (-5 *3 (-273 (-294 *5))))) (-4039 (*1 *2 *3) (-12 (-4 *4 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *2 (-591 (-273 (-294 *4)))) (-5 *1 (-1047 *4)) (-5 *3 (-273 (-294 *4))))) (-4039 (*1 *2 *3) (-12 (-4 *4 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138))) (-5 *2 (-591 (-273 (-294 *4)))) (-5 *1 (-1047 *4)) (-5 *3 (-294 *4)))))
+(-10 -7 (-15 -4039 ((-591 (-273 (-294 |#1|))) (-294 |#1|))) (-15 -4039 ((-591 (-273 (-294 |#1|))) (-273 (-294 |#1|)))) (-15 -4039 ((-591 (-273 (-294 |#1|))) (-273 (-294 |#1|)) (-1089))) (-15 -4039 ((-591 (-273 (-294 |#1|))) (-294 |#1|) (-1089))) (-15 -4039 ((-591 (-591 (-273 (-294 |#1|)))) (-591 (-273 (-294 |#1|))) (-591 (-1089)))))
+((-2381 ((|#2| |#2|) 20 (|has| |#1| (-788))) ((|#2| |#2| (-1 (-108) |#1| |#1|)) 17)) (-3788 ((|#2| |#2|) 19 (|has| |#1| (-788))) ((|#2| |#2| (-1 (-108) |#1| |#1|)) 16)))
+(((-1048 |#1| |#2|) (-10 -7 (-15 -3788 (|#2| |#2| (-1 (-108) |#1| |#1|))) (-15 -2381 (|#2| |#2| (-1 (-108) |#1| |#1|))) (IF (|has| |#1| (-788)) (PROGN (-15 -3788 (|#2| |#2|)) (-15 -2381 (|#2| |#2|))) |%noBranch|)) (-1125) (-13 (-558 (-525) |#1|) (-10 -7 (-6 -4250) (-6 -4251)))) (T -1048))
+((-2381 (*1 *2 *2) (-12 (-4 *3 (-788)) (-4 *3 (-1125)) (-5 *1 (-1048 *3 *2)) (-4 *2 (-13 (-558 (-525) *3) (-10 -7 (-6 -4250) (-6 -4251)))))) (-3788 (*1 *2 *2) (-12 (-4 *3 (-788)) (-4 *3 (-1125)) (-5 *1 (-1048 *3 *2)) (-4 *2 (-13 (-558 (-525) *3) (-10 -7 (-6 -4250) (-6 -4251)))))) (-2381 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1125)) (-5 *1 (-1048 *4 *2)) (-4 *2 (-13 (-558 (-525) *4) (-10 -7 (-6 -4250) (-6 -4251)))))) (-3788 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1125)) (-5 *1 (-1048 *4 *2)) (-4 *2 (-13 (-558 (-525) *4) (-10 -7 (-6 -4250) (-6 -4251)))))))
+(-10 -7 (-15 -3788 (|#2| |#2| (-1 (-108) |#1| |#1|))) (-15 -2381 (|#2| |#2| (-1 (-108) |#1| |#1|))) (IF (|has| |#1| (-788)) (PROGN (-15 -3788 (|#2| |#2|)) (-15 -2381 (|#2| |#2|))) |%noBranch|))
+((-3008 (((-108) $ $) NIL)) (-3439 (((-1078 3 |#1|) $) 108)) (-2889 (((-108) $) 72)) (-3012 (($ $ (-591 (-876 |#1|))) 20) (($ $ (-591 (-591 |#1|))) 75) (($ (-591 (-876 |#1|))) 74) (((-591 (-876 |#1|)) $) 73)) (-2455 (((-108) $) 41)) (-3643 (($ $ (-876 |#1|)) 46) (($ $ (-591 |#1|)) 51) (($ $ (-712)) 53) (($ (-876 |#1|)) 47) (((-876 |#1|) $) 45)) (-2653 (((-2 (|:| -3660 (-712)) (|:| |curves| (-712)) (|:| |polygons| (-712)) (|:| |constructs| (-712))) $) 106)) (-1912 (((-712) $) 26)) (-1739 (((-712) $) 25)) (-1966 (($ $ (-712) (-876 |#1|)) 39)) (-2730 (((-108) $) 82)) (-1844 (($ $ (-591 (-591 (-876 |#1|))) (-591 (-159)) (-159)) 89) (($ $ (-591 (-591 (-591 |#1|))) (-591 (-159)) (-159)) 91) (($ $ (-591 (-591 (-876 |#1|))) (-108) (-108)) 85) (($ $ (-591 (-591 (-591 |#1|))) (-108) (-108)) 93) (($ (-591 (-591 (-876 |#1|)))) 86) (($ (-591 (-591 (-876 |#1|))) (-108) (-108)) 87) (((-591 (-591 (-876 |#1|))) $) 84)) (-2131 (($ (-591 $)) 28) (($ $ $) 29)) (-3143 (((-591 (-159)) $) 103)) (-1436 (((-591 (-876 |#1|)) $) 97)) (-1943 (((-591 (-591 (-159))) $) 102)) (-2145 (((-591 (-591 (-591 (-876 |#1|)))) $) NIL)) (-2578 (((-591 (-591 (-591 (-712)))) $) 100)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-2287 (((-712) $ (-591 (-876 |#1|))) 37)) (-3866 (((-108) $) 54)) (-3323 (($ $ (-591 (-876 |#1|))) 56) (($ $ (-591 (-591 |#1|))) 62) (($ (-591 (-876 |#1|))) 57) (((-591 (-876 |#1|)) $) 55)) (-1468 (($) 23) (($ (-1078 3 |#1|)) 24)) (-3199 (($ $) 35)) (-2831 (((-591 $) $) 34)) (-2413 (($ (-591 $)) 31)) (-1970 (((-591 $) $) 33)) (-3022 (((-796) $) 112)) (-3085 (((-108) $) 64)) (-2435 (($ $ (-591 (-876 |#1|))) 66) (($ $ (-591 (-591 |#1|))) 69) (($ (-591 (-876 |#1|))) 67) (((-591 (-876 |#1|)) $) 65)) (-3828 (($ $) 107)) (-4096 (((-108) $ $) NIL)))
+(((-1049 |#1|) (-1050 |#1|) (-975)) (T -1049))
+NIL
+(-1050 |#1|)
+((-3008 (((-108) $ $) 7)) (-3439 (((-1078 3 |#1|) $) 13)) (-2889 (((-108) $) 29)) (-3012 (($ $ (-591 (-876 |#1|))) 33) (($ $ (-591 (-591 |#1|))) 32) (($ (-591 (-876 |#1|))) 31) (((-591 (-876 |#1|)) $) 30)) (-2455 (((-108) $) 44)) (-3643 (($ $ (-876 |#1|)) 49) (($ $ (-591 |#1|)) 48) (($ $ (-712)) 47) (($ (-876 |#1|)) 46) (((-876 |#1|) $) 45)) (-2653 (((-2 (|:| -3660 (-712)) (|:| |curves| (-712)) (|:| |polygons| (-712)) (|:| |constructs| (-712))) $) 15)) (-1912 (((-712) $) 58)) (-1739 (((-712) $) 59)) (-1966 (($ $ (-712) (-876 |#1|)) 50)) (-2730 (((-108) $) 21)) (-1844 (($ $ (-591 (-591 (-876 |#1|))) (-591 (-159)) (-159)) 28) (($ $ (-591 (-591 (-591 |#1|))) (-591 (-159)) (-159)) 27) (($ $ (-591 (-591 (-876 |#1|))) (-108) (-108)) 26) (($ $ (-591 (-591 (-591 |#1|))) (-108) (-108)) 25) (($ (-591 (-591 (-876 |#1|)))) 24) (($ (-591 (-591 (-876 |#1|))) (-108) (-108)) 23) (((-591 (-591 (-876 |#1|))) $) 22)) (-2131 (($ (-591 $)) 57) (($ $ $) 56)) (-3143 (((-591 (-159)) $) 16)) (-1436 (((-591 (-876 |#1|)) $) 20)) (-1943 (((-591 (-591 (-159))) $) 17)) (-2145 (((-591 (-591 (-591 (-876 |#1|)))) $) 18)) (-2578 (((-591 (-591 (-591 (-712)))) $) 19)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2287 (((-712) $ (-591 (-876 |#1|))) 51)) (-3866 (((-108) $) 39)) (-3323 (($ $ (-591 (-876 |#1|))) 43) (($ $ (-591 (-591 |#1|))) 42) (($ (-591 (-876 |#1|))) 41) (((-591 (-876 |#1|)) $) 40)) (-1468 (($) 61) (($ (-1078 3 |#1|)) 60)) (-3199 (($ $) 52)) (-2831 (((-591 $) $) 53)) (-2413 (($ (-591 $)) 55)) (-1970 (((-591 $) $) 54)) (-3022 (((-796) $) 11)) (-3085 (((-108) $) 34)) (-2435 (($ $ (-591 (-876 |#1|))) 38) (($ $ (-591 (-591 |#1|))) 37) (($ (-591 (-876 |#1|))) 36) (((-591 (-876 |#1|)) $) 35)) (-3828 (($ $) 14)) (-4096 (((-108) $ $) 6)))
+(((-1050 |#1|) (-131) (-975)) (T -1050))
+((-3022 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-796)))) (-1468 (*1 *1) (-12 (-4 *1 (-1050 *2)) (-4 *2 (-975)))) (-1468 (*1 *1 *2) (-12 (-5 *2 (-1078 3 *3)) (-4 *3 (-975)) (-4 *1 (-1050 *3)))) (-1739 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-712)))) (-1912 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-712)))) (-2131 (*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-1050 *3)) (-4 *3 (-975)))) (-2131 (*1 *1 *1 *1) (-12 (-4 *1 (-1050 *2)) (-4 *2 (-975)))) (-2413 (*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-1050 *3)) (-4 *3 (-975)))) (-1970 (*1 *2 *1) (-12 (-4 *3 (-975)) (-5 *2 (-591 *1)) (-4 *1 (-1050 *3)))) (-2831 (*1 *2 *1) (-12 (-4 *3 (-975)) (-5 *2 (-591 *1)) (-4 *1 (-1050 *3)))) (-3199 (*1 *1 *1) (-12 (-4 *1 (-1050 *2)) (-4 *2 (-975)))) (-2287 (*1 *2 *1 *3) (-12 (-5 *3 (-591 (-876 *4))) (-4 *1 (-1050 *4)) (-4 *4 (-975)) (-5 *2 (-712)))) (-1966 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-712)) (-5 *3 (-876 *4)) (-4 *1 (-1050 *4)) (-4 *4 (-975)))) (-3643 (*1 *1 *1 *2) (-12 (-5 *2 (-876 *3)) (-4 *1 (-1050 *3)) (-4 *3 (-975)))) (-3643 (*1 *1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *1 (-1050 *3)) (-4 *3 (-975)))) (-3643 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-1050 *3)) (-4 *3 (-975)))) (-3643 (*1 *1 *2) (-12 (-5 *2 (-876 *3)) (-4 *3 (-975)) (-4 *1 (-1050 *3)))) (-3643 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-876 *3)))) (-2455 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-108)))) (-3323 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-876 *3))) (-4 *1 (-1050 *3)) (-4 *3 (-975)))) (-3323 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-591 *3))) (-4 *1 (-1050 *3)) (-4 *3 (-975)))) (-3323 (*1 *1 *2) (-12 (-5 *2 (-591 (-876 *3))) (-4 *3 (-975)) (-4 *1 (-1050 *3)))) (-3323 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-591 (-876 *3))))) (-3866 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-108)))) (-2435 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-876 *3))) (-4 *1 (-1050 *3)) (-4 *3 (-975)))) (-2435 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-591 *3))) (-4 *1 (-1050 *3)) (-4 *3 (-975)))) (-2435 (*1 *1 *2) (-12 (-5 *2 (-591 (-876 *3))) (-4 *3 (-975)) (-4 *1 (-1050 *3)))) (-2435 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-591 (-876 *3))))) (-3085 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-108)))) (-3012 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-876 *3))) (-4 *1 (-1050 *3)) (-4 *3 (-975)))) (-3012 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-591 *3))) (-4 *1 (-1050 *3)) (-4 *3 (-975)))) (-3012 (*1 *1 *2) (-12 (-5 *2 (-591 (-876 *3))) (-4 *3 (-975)) (-4 *1 (-1050 *3)))) (-3012 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-591 (-876 *3))))) (-2889 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-108)))) (-1844 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-591 (-591 (-876 *5)))) (-5 *3 (-591 (-159))) (-5 *4 (-159)) (-4 *1 (-1050 *5)) (-4 *5 (-975)))) (-1844 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-591 (-591 (-591 *5)))) (-5 *3 (-591 (-159))) (-5 *4 (-159)) (-4 *1 (-1050 *5)) (-4 *5 (-975)))) (-1844 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-591 (-591 (-876 *4)))) (-5 *3 (-108)) (-4 *1 (-1050 *4)) (-4 *4 (-975)))) (-1844 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-591 (-591 (-591 *4)))) (-5 *3 (-108)) (-4 *1 (-1050 *4)) (-4 *4 (-975)))) (-1844 (*1 *1 *2) (-12 (-5 *2 (-591 (-591 (-876 *3)))) (-4 *3 (-975)) (-4 *1 (-1050 *3)))) (-1844 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-591 (-591 (-876 *4)))) (-5 *3 (-108)) (-4 *4 (-975)) (-4 *1 (-1050 *4)))) (-1844 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-591 (-591 (-876 *3)))))) (-2730 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-108)))) (-1436 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-591 (-876 *3))))) (-2578 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-591 (-591 (-591 (-712))))))) (-2145 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-591 (-591 (-591 (-876 *3))))))) (-1943 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-591 (-591 (-159)))))) (-3143 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-591 (-159))))) (-2653 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-2 (|:| -3660 (-712)) (|:| |curves| (-712)) (|:| |polygons| (-712)) (|:| |constructs| (-712)))))) (-3828 (*1 *1 *1) (-12 (-4 *1 (-1050 *2)) (-4 *2 (-975)))) (-3439 (*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-1078 3 *3)))))
+(-13 (-1018) (-10 -8 (-15 -1468 ($)) (-15 -1468 ($ (-1078 3 |t#1|))) (-15 -1739 ((-712) $)) (-15 -1912 ((-712) $)) (-15 -2131 ($ (-591 $))) (-15 -2131 ($ $ $)) (-15 -2413 ($ (-591 $))) (-15 -1970 ((-591 $) $)) (-15 -2831 ((-591 $) $)) (-15 -3199 ($ $)) (-15 -2287 ((-712) $ (-591 (-876 |t#1|)))) (-15 -1966 ($ $ (-712) (-876 |t#1|))) (-15 -3643 ($ $ (-876 |t#1|))) (-15 -3643 ($ $ (-591 |t#1|))) (-15 -3643 ($ $ (-712))) (-15 -3643 ($ (-876 |t#1|))) (-15 -3643 ((-876 |t#1|) $)) (-15 -2455 ((-108) $)) (-15 -3323 ($ $ (-591 (-876 |t#1|)))) (-15 -3323 ($ $ (-591 (-591 |t#1|)))) (-15 -3323 ($ (-591 (-876 |t#1|)))) (-15 -3323 ((-591 (-876 |t#1|)) $)) (-15 -3866 ((-108) $)) (-15 -2435 ($ $ (-591 (-876 |t#1|)))) (-15 -2435 ($ $ (-591 (-591 |t#1|)))) (-15 -2435 ($ (-591 (-876 |t#1|)))) (-15 -2435 ((-591 (-876 |t#1|)) $)) (-15 -3085 ((-108) $)) (-15 -3012 ($ $ (-591 (-876 |t#1|)))) (-15 -3012 ($ $ (-591 (-591 |t#1|)))) (-15 -3012 ($ (-591 (-876 |t#1|)))) (-15 -3012 ((-591 (-876 |t#1|)) $)) (-15 -2889 ((-108) $)) (-15 -1844 ($ $ (-591 (-591 (-876 |t#1|))) (-591 (-159)) (-159))) (-15 -1844 ($ $ (-591 (-591 (-591 |t#1|))) (-591 (-159)) (-159))) (-15 -1844 ($ $ (-591 (-591 (-876 |t#1|))) (-108) (-108))) (-15 -1844 ($ $ (-591 (-591 (-591 |t#1|))) (-108) (-108))) (-15 -1844 ($ (-591 (-591 (-876 |t#1|))))) (-15 -1844 ($ (-591 (-591 (-876 |t#1|))) (-108) (-108))) (-15 -1844 ((-591 (-591 (-876 |t#1|))) $)) (-15 -2730 ((-108) $)) (-15 -1436 ((-591 (-876 |t#1|)) $)) (-15 -2578 ((-591 (-591 (-591 (-712)))) $)) (-15 -2145 ((-591 (-591 (-591 (-876 |t#1|)))) $)) (-15 -1943 ((-591 (-591 (-159))) $)) (-15 -3143 ((-591 (-159)) $)) (-15 -2653 ((-2 (|:| -3660 (-712)) (|:| |curves| (-712)) (|:| |polygons| (-712)) (|:| |constructs| (-712))) $)) (-15 -3828 ($ $)) (-15 -3439 ((-1078 3 |t#1|) $)) (-15 -3022 ((-796) $))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-2074 (((-591 (-1094)) (-1072)) 9)))
+(((-1051) (-10 -7 (-15 -2074 ((-591 (-1094)) (-1072))))) (T -1051))
+((-2074 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-591 (-1094))) (-5 *1 (-1051)))))
+(-10 -7 (-15 -2074 ((-591 (-1094)) (-1072))))
+((-4144 (((-1176) (-591 (-796))) 23) (((-1176) (-796)) 22)) (-2184 (((-1176) (-591 (-796))) 21) (((-1176) (-796)) 20)) (-3178 (((-1176) (-591 (-796))) 19) (((-1176) (-796)) 11) (((-1176) (-1072) (-796)) 17)))
+(((-1052) (-10 -7 (-15 -3178 ((-1176) (-1072) (-796))) (-15 -3178 ((-1176) (-796))) (-15 -2184 ((-1176) (-796))) (-15 -4144 ((-1176) (-796))) (-15 -3178 ((-1176) (-591 (-796)))) (-15 -2184 ((-1176) (-591 (-796)))) (-15 -4144 ((-1176) (-591 (-796)))))) (T -1052))
+((-4144 (*1 *2 *3) (-12 (-5 *3 (-591 (-796))) (-5 *2 (-1176)) (-5 *1 (-1052)))) (-2184 (*1 *2 *3) (-12 (-5 *3 (-591 (-796))) (-5 *2 (-1176)) (-5 *1 (-1052)))) (-3178 (*1 *2 *3) (-12 (-5 *3 (-591 (-796))) (-5 *2 (-1176)) (-5 *1 (-1052)))) (-4144 (*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1176)) (-5 *1 (-1052)))) (-2184 (*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1176)) (-5 *1 (-1052)))) (-3178 (*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1176)) (-5 *1 (-1052)))) (-3178 (*1 *2 *3 *4) (-12 (-5 *3 (-1072)) (-5 *4 (-796)) (-5 *2 (-1176)) (-5 *1 (-1052)))))
+(-10 -7 (-15 -3178 ((-1176) (-1072) (-796))) (-15 -3178 ((-1176) (-796))) (-15 -2184 ((-1176) (-796))) (-15 -4144 ((-1176) (-796))) (-15 -3178 ((-1176) (-591 (-796)))) (-15 -2184 ((-1176) (-591 (-796)))) (-15 -4144 ((-1176) (-591 (-796)))))
+((-2307 (($ $ $) 10)) (-3225 (($ $) 9)) (-2271 (($ $ $) 13)) (-3481 (($ $ $) 15)) (-4123 (($ $ $) 12)) (-1330 (($ $ $) 14)) (-2072 (($ $) 17)) (-1828 (($ $) 16)) (-1539 (($ $) 6)) (-3834 (($ $ $) 11) (($ $) 7)) (-1617 (($ $ $) 8)))
+(((-1053) (-131)) (T -1053))
+((-2072 (*1 *1 *1) (-4 *1 (-1053))) (-1828 (*1 *1 *1) (-4 *1 (-1053))) (-3481 (*1 *1 *1 *1) (-4 *1 (-1053))) (-1330 (*1 *1 *1 *1) (-4 *1 (-1053))) (-2271 (*1 *1 *1 *1) (-4 *1 (-1053))) (-4123 (*1 *1 *1 *1) (-4 *1 (-1053))) (-3834 (*1 *1 *1 *1) (-4 *1 (-1053))) (-2307 (*1 *1 *1 *1) (-4 *1 (-1053))) (-3225 (*1 *1 *1) (-4 *1 (-1053))) (-1617 (*1 *1 *1 *1) (-4 *1 (-1053))) (-3834 (*1 *1 *1) (-4 *1 (-1053))) (-1539 (*1 *1 *1) (-4 *1 (-1053))))
+(-13 (-10 -8 (-15 -1539 ($ $)) (-15 -3834 ($ $)) (-15 -1617 ($ $ $)) (-15 -3225 ($ $)) (-15 -2307 ($ $ $)) (-15 -3834 ($ $ $)) (-15 -4123 ($ $ $)) (-15 -2271 ($ $ $)) (-15 -1330 ($ $ $)) (-15 -3481 ($ $ $)) (-15 -1828 ($ $)) (-15 -2072 ($ $))))
+((-3008 (((-108) $ $) 41)) (-3024 ((|#1| $) 15)) (-3050 (((-108) $ $ (-1 (-108) |#2| |#2|)) 36)) (-4078 (((-108) $) 17)) (-3300 (($ $ |#1|) 28)) (-1452 (($ $ (-108)) 30)) (-2297 (($ $) 31)) (-3896 (($ $ |#2|) 29)) (-2339 (((-1072) $) NIL)) (-1336 (((-108) $ $ (-1 (-108) |#1| |#1|) (-1 (-108) |#2| |#2|)) 35)) (-2047 (((-1036) $) NIL)) (-3028 (((-108) $) 14)) (-3209 (($) 10)) (-3199 (($ $) 27)) (-3036 (($ |#1| |#2| (-108)) 18) (($ |#1| |#2|) 19) (($ (-2 (|:| |val| |#1|) (|:| -3374 |#2|))) 21) (((-591 $) (-591 (-2 (|:| |val| |#1|) (|:| -3374 |#2|)))) 24) (((-591 $) |#1| (-591 |#2|)) 26)) (-3478 ((|#2| $) 16)) (-3022 (((-796) $) 50)) (-4096 (((-108) $ $) 39)))
+(((-1054 |#1| |#2|) (-13 (-1018) (-10 -8 (-15 -3209 ($)) (-15 -3028 ((-108) $)) (-15 -3024 (|#1| $)) (-15 -3478 (|#2| $)) (-15 -4078 ((-108) $)) (-15 -3036 ($ |#1| |#2| (-108))) (-15 -3036 ($ |#1| |#2|)) (-15 -3036 ($ (-2 (|:| |val| |#1|) (|:| -3374 |#2|)))) (-15 -3036 ((-591 $) (-591 (-2 (|:| |val| |#1|) (|:| -3374 |#2|))))) (-15 -3036 ((-591 $) |#1| (-591 |#2|))) (-15 -3199 ($ $)) (-15 -3300 ($ $ |#1|)) (-15 -3896 ($ $ |#2|)) (-15 -1452 ($ $ (-108))) (-15 -2297 ($ $)) (-15 -1336 ((-108) $ $ (-1 (-108) |#1| |#1|) (-1 (-108) |#2| |#2|))) (-15 -3050 ((-108) $ $ (-1 (-108) |#2| |#2|))))) (-13 (-1018) (-33)) (-13 (-1018) (-33))) (T -1054))
+((-3209 (*1 *1) (-12 (-5 *1 (-1054 *2 *3)) (-4 *2 (-13 (-1018) (-33))) (-4 *3 (-13 (-1018) (-33))))) (-3028 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1054 *3 *4)) (-4 *3 (-13 (-1018) (-33))) (-4 *4 (-13 (-1018) (-33))))) (-3024 (*1 *2 *1) (-12 (-4 *2 (-13 (-1018) (-33))) (-5 *1 (-1054 *2 *3)) (-4 *3 (-13 (-1018) (-33))))) (-3478 (*1 *2 *1) (-12 (-4 *2 (-13 (-1018) (-33))) (-5 *1 (-1054 *3 *2)) (-4 *3 (-13 (-1018) (-33))))) (-4078 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1054 *3 *4)) (-4 *3 (-13 (-1018) (-33))) (-4 *4 (-13 (-1018) (-33))))) (-3036 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-108)) (-5 *1 (-1054 *2 *3)) (-4 *2 (-13 (-1018) (-33))) (-4 *3 (-13 (-1018) (-33))))) (-3036 (*1 *1 *2 *3) (-12 (-5 *1 (-1054 *2 *3)) (-4 *2 (-13 (-1018) (-33))) (-4 *3 (-13 (-1018) (-33))))) (-3036 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -3374 *4))) (-4 *3 (-13 (-1018) (-33))) (-4 *4 (-13 (-1018) (-33))) (-5 *1 (-1054 *3 *4)))) (-3036 (*1 *2 *3) (-12 (-5 *3 (-591 (-2 (|:| |val| *4) (|:| -3374 *5)))) (-4 *4 (-13 (-1018) (-33))) (-4 *5 (-13 (-1018) (-33))) (-5 *2 (-591 (-1054 *4 *5))) (-5 *1 (-1054 *4 *5)))) (-3036 (*1 *2 *3 *4) (-12 (-5 *4 (-591 *5)) (-4 *5 (-13 (-1018) (-33))) (-5 *2 (-591 (-1054 *3 *5))) (-5 *1 (-1054 *3 *5)) (-4 *3 (-13 (-1018) (-33))))) (-3199 (*1 *1 *1) (-12 (-5 *1 (-1054 *2 *3)) (-4 *2 (-13 (-1018) (-33))) (-4 *3 (-13 (-1018) (-33))))) (-3300 (*1 *1 *1 *2) (-12 (-5 *1 (-1054 *2 *3)) (-4 *2 (-13 (-1018) (-33))) (-4 *3 (-13 (-1018) (-33))))) (-3896 (*1 *1 *1 *2) (-12 (-5 *1 (-1054 *3 *2)) (-4 *3 (-13 (-1018) (-33))) (-4 *2 (-13 (-1018) (-33))))) (-1452 (*1 *1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1054 *3 *4)) (-4 *3 (-13 (-1018) (-33))) (-4 *4 (-13 (-1018) (-33))))) (-2297 (*1 *1 *1) (-12 (-5 *1 (-1054 *2 *3)) (-4 *2 (-13 (-1018) (-33))) (-4 *3 (-13 (-1018) (-33))))) (-1336 (*1 *2 *1 *1 *3 *4) (-12 (-5 *3 (-1 (-108) *5 *5)) (-5 *4 (-1 (-108) *6 *6)) (-4 *5 (-13 (-1018) (-33))) (-4 *6 (-13 (-1018) (-33))) (-5 *2 (-108)) (-5 *1 (-1054 *5 *6)))) (-3050 (*1 *2 *1 *1 *3) (-12 (-5 *3 (-1 (-108) *5 *5)) (-4 *5 (-13 (-1018) (-33))) (-5 *2 (-108)) (-5 *1 (-1054 *4 *5)) (-4 *4 (-13 (-1018) (-33))))))
+(-13 (-1018) (-10 -8 (-15 -3209 ($)) (-15 -3028 ((-108) $)) (-15 -3024 (|#1| $)) (-15 -3478 (|#2| $)) (-15 -4078 ((-108) $)) (-15 -3036 ($ |#1| |#2| (-108))) (-15 -3036 ($ |#1| |#2|)) (-15 -3036 ($ (-2 (|:| |val| |#1|) (|:| -3374 |#2|)))) (-15 -3036 ((-591 $) (-591 (-2 (|:| |val| |#1|) (|:| -3374 |#2|))))) (-15 -3036 ((-591 $) |#1| (-591 |#2|))) (-15 -3199 ($ $)) (-15 -3300 ($ $ |#1|)) (-15 -3896 ($ $ |#2|)) (-15 -1452 ($ $ (-108))) (-15 -2297 ($ $)) (-15 -1336 ((-108) $ $ (-1 (-108) |#1| |#1|) (-1 (-108) |#2| |#2|))) (-15 -3050 ((-108) $ $ (-1 (-108) |#2| |#2|)))))
+((-3008 (((-108) $ $) NIL (|has| (-1054 |#1| |#2|) (-1018)))) (-3024 (((-1054 |#1| |#2|) $) 25)) (-1381 (($ $) 76)) (-3902 (((-108) (-1054 |#1| |#2|) $ (-1 (-108) |#2| |#2|)) 85)) (-2443 (($ $ $ (-591 (-1054 |#1| |#2|))) 90) (($ $ $ (-591 (-1054 |#1| |#2|)) (-1 (-108) |#2| |#2|)) 91)) (-3891 (((-108) $ (-712)) NIL)) (-1780 (((-1054 |#1| |#2|) $ (-1054 |#1| |#2|)) 43 (|has| $ (-6 -4251)))) (-3186 (((-1054 |#1| |#2|) $ "value" (-1054 |#1| |#2|)) NIL (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) 41 (|has| $ (-6 -4251)))) (-3798 (($) NIL T CONST)) (-1888 (((-591 (-2 (|:| |val| |#1|) (|:| -3374 |#2|))) $) 80)) (-3901 (($ (-1054 |#1| |#2|) $) 39)) (-3677 (($ (-1054 |#1| |#2|) $) 31)) (-3454 (((-591 (-1054 |#1| |#2|)) $) NIL (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) 51)) (-4027 (((-108) (-1054 |#1| |#2|) $) 82)) (-2148 (((-108) $ $) NIL (|has| (-1054 |#1| |#2|) (-1018)))) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 (-1054 |#1| |#2|)) $) 55 (|has| $ (-6 -4250)))) (-2141 (((-108) (-1054 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-1054 |#1| |#2|) (-1018))))) (-3249 (($ (-1 (-1054 |#1| |#2|) (-1054 |#1| |#2|)) $) 47 (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-1054 |#1| |#2|) (-1054 |#1| |#2|)) $) 46)) (-3971 (((-108) $ (-712)) NIL)) (-2599 (((-591 (-1054 |#1| |#2|)) $) 53)) (-1203 (((-108) $) 42)) (-2339 (((-1072) $) NIL (|has| (-1054 |#1| |#2|) (-1018)))) (-2047 (((-1036) $) NIL (|has| (-1054 |#1| |#2|) (-1018)))) (-4075 (((-3 $ "failed") $) 75)) (-1623 (((-108) (-1 (-108) (-1054 |#1| |#2|)) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-1054 |#1| |#2|)))) NIL (-12 (|has| (-1054 |#1| |#2|) (-288 (-1054 |#1| |#2|))) (|has| (-1054 |#1| |#2|) (-1018)))) (($ $ (-273 (-1054 |#1| |#2|))) NIL (-12 (|has| (-1054 |#1| |#2|) (-288 (-1054 |#1| |#2|))) (|has| (-1054 |#1| |#2|) (-1018)))) (($ $ (-1054 |#1| |#2|) (-1054 |#1| |#2|)) NIL (-12 (|has| (-1054 |#1| |#2|) (-288 (-1054 |#1| |#2|))) (|has| (-1054 |#1| |#2|) (-1018)))) (($ $ (-591 (-1054 |#1| |#2|)) (-591 (-1054 |#1| |#2|))) NIL (-12 (|has| (-1054 |#1| |#2|) (-288 (-1054 |#1| |#2|))) (|has| (-1054 |#1| |#2|) (-1018))))) (-3493 (((-108) $ $) 50)) (-3028 (((-108) $) 22)) (-3209 (($) 24)) (-3164 (((-1054 |#1| |#2|) $ "value") NIL)) (-3505 (((-525) $ $) NIL)) (-2237 (((-108) $) 44)) (-2064 (((-712) (-1 (-108) (-1054 |#1| |#2|)) $) NIL (|has| $ (-6 -4250))) (((-712) (-1054 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-1054 |#1| |#2|) (-1018))))) (-3199 (($ $) 49)) (-3036 (($ (-1054 |#1| |#2|)) 9) (($ |#1| |#2| (-591 $)) 12) (($ |#1| |#2| (-591 (-1054 |#1| |#2|))) 14) (($ |#1| |#2| |#1| (-591 |#2|)) 17)) (-3151 (((-591 |#2|) $) 81)) (-3022 (((-796) $) 73 (|has| (-1054 |#1| |#2|) (-565 (-796))))) (-3860 (((-591 $) $) 28)) (-1632 (((-108) $ $) NIL (|has| (-1054 |#1| |#2|) (-1018)))) (-4158 (((-108) (-1 (-108) (-1054 |#1| |#2|)) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 64 (|has| (-1054 |#1| |#2|) (-1018)))) (-4045 (((-712) $) 58 (|has| $ (-6 -4250)))))
+(((-1055 |#1| |#2|) (-13 (-940 (-1054 |#1| |#2|)) (-10 -8 (-6 -4251) (-6 -4250) (-15 -4075 ((-3 $ "failed") $)) (-15 -1381 ($ $)) (-15 -3036 ($ (-1054 |#1| |#2|))) (-15 -3036 ($ |#1| |#2| (-591 $))) (-15 -3036 ($ |#1| |#2| (-591 (-1054 |#1| |#2|)))) (-15 -3036 ($ |#1| |#2| |#1| (-591 |#2|))) (-15 -3151 ((-591 |#2|) $)) (-15 -1888 ((-591 (-2 (|:| |val| |#1|) (|:| -3374 |#2|))) $)) (-15 -4027 ((-108) (-1054 |#1| |#2|) $)) (-15 -3902 ((-108) (-1054 |#1| |#2|) $ (-1 (-108) |#2| |#2|))) (-15 -3677 ($ (-1054 |#1| |#2|) $)) (-15 -3901 ($ (-1054 |#1| |#2|) $)) (-15 -2443 ($ $ $ (-591 (-1054 |#1| |#2|)))) (-15 -2443 ($ $ $ (-591 (-1054 |#1| |#2|)) (-1 (-108) |#2| |#2|))))) (-13 (-1018) (-33)) (-13 (-1018) (-33))) (T -1055))
+((-4075 (*1 *1 *1) (|partial| -12 (-5 *1 (-1055 *2 *3)) (-4 *2 (-13 (-1018) (-33))) (-4 *3 (-13 (-1018) (-33))))) (-1381 (*1 *1 *1) (-12 (-5 *1 (-1055 *2 *3)) (-4 *2 (-13 (-1018) (-33))) (-4 *3 (-13 (-1018) (-33))))) (-3036 (*1 *1 *2) (-12 (-5 *2 (-1054 *3 *4)) (-4 *3 (-13 (-1018) (-33))) (-4 *4 (-13 (-1018) (-33))) (-5 *1 (-1055 *3 *4)))) (-3036 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-591 (-1055 *2 *3))) (-5 *1 (-1055 *2 *3)) (-4 *2 (-13 (-1018) (-33))) (-4 *3 (-13 (-1018) (-33))))) (-3036 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-591 (-1054 *2 *3))) (-4 *2 (-13 (-1018) (-33))) (-4 *3 (-13 (-1018) (-33))) (-5 *1 (-1055 *2 *3)))) (-3036 (*1 *1 *2 *3 *2 *4) (-12 (-5 *4 (-591 *3)) (-4 *3 (-13 (-1018) (-33))) (-5 *1 (-1055 *2 *3)) (-4 *2 (-13 (-1018) (-33))))) (-3151 (*1 *2 *1) (-12 (-5 *2 (-591 *4)) (-5 *1 (-1055 *3 *4)) (-4 *3 (-13 (-1018) (-33))) (-4 *4 (-13 (-1018) (-33))))) (-1888 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4)))) (-5 *1 (-1055 *3 *4)) (-4 *3 (-13 (-1018) (-33))) (-4 *4 (-13 (-1018) (-33))))) (-4027 (*1 *2 *3 *1) (-12 (-5 *3 (-1054 *4 *5)) (-4 *4 (-13 (-1018) (-33))) (-4 *5 (-13 (-1018) (-33))) (-5 *2 (-108)) (-5 *1 (-1055 *4 *5)))) (-3902 (*1 *2 *3 *1 *4) (-12 (-5 *3 (-1054 *5 *6)) (-5 *4 (-1 (-108) *6 *6)) (-4 *5 (-13 (-1018) (-33))) (-4 *6 (-13 (-1018) (-33))) (-5 *2 (-108)) (-5 *1 (-1055 *5 *6)))) (-3677 (*1 *1 *2 *1) (-12 (-5 *2 (-1054 *3 *4)) (-4 *3 (-13 (-1018) (-33))) (-4 *4 (-13 (-1018) (-33))) (-5 *1 (-1055 *3 *4)))) (-3901 (*1 *1 *2 *1) (-12 (-5 *2 (-1054 *3 *4)) (-4 *3 (-13 (-1018) (-33))) (-4 *4 (-13 (-1018) (-33))) (-5 *1 (-1055 *3 *4)))) (-2443 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-591 (-1054 *3 *4))) (-4 *3 (-13 (-1018) (-33))) (-4 *4 (-13 (-1018) (-33))) (-5 *1 (-1055 *3 *4)))) (-2443 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-591 (-1054 *4 *5))) (-5 *3 (-1 (-108) *5 *5)) (-4 *4 (-13 (-1018) (-33))) (-4 *5 (-13 (-1018) (-33))) (-5 *1 (-1055 *4 *5)))))
+(-13 (-940 (-1054 |#1| |#2|)) (-10 -8 (-6 -4251) (-6 -4250) (-15 -4075 ((-3 $ "failed") $)) (-15 -1381 ($ $)) (-15 -3036 ($ (-1054 |#1| |#2|))) (-15 -3036 ($ |#1| |#2| (-591 $))) (-15 -3036 ($ |#1| |#2| (-591 (-1054 |#1| |#2|)))) (-15 -3036 ($ |#1| |#2| |#1| (-591 |#2|))) (-15 -3151 ((-591 |#2|) $)) (-15 -1888 ((-591 (-2 (|:| |val| |#1|) (|:| -3374 |#2|))) $)) (-15 -4027 ((-108) (-1054 |#1| |#2|) $)) (-15 -3902 ((-108) (-1054 |#1| |#2|) $ (-1 (-108) |#2| |#2|))) (-15 -3677 ($ (-1054 |#1| |#2|) $)) (-15 -3901 ($ (-1054 |#1| |#2|) $)) (-15 -2443 ($ $ $ (-591 (-1054 |#1| |#2|)))) (-15 -2443 ($ $ $ (-591 (-1054 |#1| |#2|)) (-1 (-108) |#2| |#2|)))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1278 (($ $) NIL)) (-2569 ((|#2| $) NIL)) (-1290 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-2084 (($ (-631 |#2|)) 47)) (-3079 (((-108) $) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-1504 (($ |#2|) 9)) (-3798 (($) NIL T CONST)) (-2753 (($ $) 60 (|has| |#2| (-286)))) (-3725 (((-220 |#1| |#2|) $ (-525)) 34)) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#2| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#2| (-966 (-385 (-525))))) (((-3 |#2| "failed") $) NIL)) (-3528 (((-525) $) NIL (|has| |#2| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#2| (-966 (-385 (-525))))) ((|#2| $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) NIL) (((-631 |#2|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) 74)) (-4073 (((-712) $) 62 (|has| |#2| (-517)))) (-3217 ((|#2| $ (-525) (-525)) NIL)) (-3454 (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2824 (((-108) $) NIL)) (-2482 (((-712) $) 64 (|has| |#2| (-517)))) (-2634 (((-591 (-220 |#1| |#2|)) $) 68 (|has| |#2| (-517)))) (-2281 (((-712) $) NIL)) (-2296 (((-712) $) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-2807 ((|#2| $) 58 (|has| |#2| (-6 (-4252 "*"))))) (-1755 (((-525) $) NIL)) (-1639 (((-525) $) NIL)) (-2552 (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-4230 (((-525) $) NIL)) (-2631 (((-525) $) NIL)) (-3393 (($ (-591 (-591 |#2|))) 29)) (-3249 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-3349 (((-591 (-591 |#2|)) $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-1914 (((-3 $ "failed") $) 71 (|has| |#2| (-341)))) (-2047 (((-1036) $) NIL)) (-2089 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-517)))) (-1623 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#2|))) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#2| $ (-525) (-525) |#2|) NIL) ((|#2| $ (-525) (-525)) NIL)) (-3266 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-712)) NIL (|has| |#2| (-213))) (($ $) NIL (|has| |#2| (-213)))) (-3499 ((|#2| $) NIL)) (-3487 (($ (-591 |#2|)) 42)) (-2740 (((-108) $) NIL)) (-4067 (((-220 |#1| |#2|) $) NIL)) (-2238 ((|#2| $) 56 (|has| |#2| (-6 (-4252 "*"))))) (-2064 (((-712) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250))) (((-712) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3199 (($ $) NIL)) (-1408 (((-501) $) 83 (|has| |#2| (-566 (-501))))) (-1793 (((-220 |#1| |#2|) $ (-525)) 36)) (-3022 (((-796) $) 39) (($ (-525)) NIL) (($ (-385 (-525))) NIL (|has| |#2| (-966 (-385 (-525))))) (($ |#2|) NIL) (((-631 |#2|) $) 44)) (-2128 (((-712)) 17)) (-4158 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-3489 (((-108) $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 11 T CONST)) (-4197 (($) 14 T CONST)) (-4196 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-712)) NIL (|has| |#2| (-213))) (($ $) NIL (|has| |#2| (-213)))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ |#2|) NIL (|has| |#2| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) 54) (($ $ (-525)) 73 (|has| |#2| (-341)))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-220 |#1| |#2|) $ (-220 |#1| |#2|)) 50) (((-220 |#1| |#2|) (-220 |#1| |#2|) $) 52)) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-1056 |#1| |#2|) (-13 (-1039 |#1| |#2| (-220 |#1| |#2|) (-220 |#1| |#2|)) (-565 (-631 |#2|)) (-10 -8 (-15 -1278 ($ $)) (-15 -2084 ($ (-631 |#2|))) (-15 -3022 ((-631 |#2|) $)) (IF (|has| |#2| (-6 (-4252 "*"))) (-6 -4239) |%noBranch|) (IF (|has| |#2| (-6 (-4252 "*"))) (IF (|has| |#2| (-6 -4247)) (-6 -4247) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|))) (-712) (-975)) (T -1056))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-631 *4)) (-5 *1 (-1056 *3 *4)) (-14 *3 (-712)) (-4 *4 (-975)))) (-1278 (*1 *1 *1) (-12 (-5 *1 (-1056 *2 *3)) (-14 *2 (-712)) (-4 *3 (-975)))) (-2084 (*1 *1 *2) (-12 (-5 *2 (-631 *4)) (-4 *4 (-975)) (-5 *1 (-1056 *3 *4)) (-14 *3 (-712)))))
+(-13 (-1039 |#1| |#2| (-220 |#1| |#2|) (-220 |#1| |#2|)) (-565 (-631 |#2|)) (-10 -8 (-15 -1278 ($ $)) (-15 -2084 ($ (-631 |#2|))) (-15 -3022 ((-631 |#2|) $)) (IF (|has| |#2| (-6 (-4252 "*"))) (-6 -4239) |%noBranch|) (IF (|has| |#2| (-6 (-4252 "*"))) (IF (|has| |#2| (-6 -4247)) (-6 -4247) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-566 (-501))) (-6 (-566 (-501))) |%noBranch|)))
+((-3845 (($ $) 19)) (-1963 (($ $ (-135)) 10) (($ $ (-132)) 14)) (-3258 (((-108) $ $) 24)) (-2814 (($ $) 17)) (-3164 (((-135) $ (-525) (-135)) NIL) (((-135) $ (-525)) NIL) (($ $ (-1138 (-525))) NIL) (($ $ $) 29)) (-3022 (($ (-135)) 27) (((-796) $) NIL)))
+(((-1057 |#1|) (-10 -8 (-15 -3022 ((-796) |#1|)) (-15 -3164 (|#1| |#1| |#1|)) (-15 -1963 (|#1| |#1| (-132))) (-15 -1963 (|#1| |#1| (-135))) (-15 -3022 (|#1| (-135))) (-15 -3258 ((-108) |#1| |#1|)) (-15 -3845 (|#1| |#1|)) (-15 -2814 (|#1| |#1|)) (-15 -3164 (|#1| |#1| (-1138 (-525)))) (-15 -3164 ((-135) |#1| (-525))) (-15 -3164 ((-135) |#1| (-525) (-135)))) (-1058)) (T -1057))
+NIL
+(-10 -8 (-15 -3022 ((-796) |#1|)) (-15 -3164 (|#1| |#1| |#1|)) (-15 -1963 (|#1| |#1| (-132))) (-15 -1963 (|#1| |#1| (-135))) (-15 -3022 (|#1| (-135))) (-15 -3258 ((-108) |#1| |#1|)) (-15 -3845 (|#1| |#1|)) (-15 -2814 (|#1| |#1|)) (-15 -3164 (|#1| |#1| (-1138 (-525)))) (-15 -3164 ((-135) |#1| (-525))) (-15 -3164 ((-135) |#1| (-525) (-135))))
+((-3008 (((-108) $ $) 19 (|has| (-135) (-1018)))) (-3747 (($ $) 120)) (-3845 (($ $) 121)) (-1963 (($ $ (-135)) 108) (($ $ (-132)) 107)) (-3296 (((-1176) $ (-525) (-525)) 40 (|has| $ (-6 -4251)))) (-3247 (((-108) $ $) 118)) (-3232 (((-108) $ $ (-525)) 117)) (-2787 (((-591 $) $ (-135)) 110) (((-591 $) $ (-132)) 109)) (-3203 (((-108) (-1 (-108) (-135) (-135)) $) 98) (((-108) $) 92 (|has| (-135) (-788)))) (-4026 (($ (-1 (-108) (-135) (-135)) $) 89 (|has| $ (-6 -4251))) (($ $) 88 (-12 (|has| (-135) (-788)) (|has| $ (-6 -4251))))) (-3327 (($ (-1 (-108) (-135) (-135)) $) 99) (($ $) 93 (|has| (-135) (-788)))) (-3891 (((-108) $ (-712)) 8)) (-3186 (((-135) $ (-525) (-135)) 52 (|has| $ (-6 -4251))) (((-135) $ (-1138 (-525)) (-135)) 58 (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) (-135)) $) 75 (|has| $ (-6 -4250)))) (-3798 (($) 7 T CONST)) (-2502 (($ $ (-135)) 104) (($ $ (-132)) 103)) (-2598 (($ $) 90 (|has| $ (-6 -4251)))) (-2617 (($ $) 100)) (-4128 (($ $ (-1138 (-525)) $) 114)) (-3098 (($ $) 78 (-12 (|has| (-135) (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ (-135) $) 77 (-12 (|has| (-135) (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) (-135)) $) 74 (|has| $ (-6 -4250)))) (-1227 (((-135) (-1 (-135) (-135) (-135)) $ (-135) (-135)) 76 (-12 (|has| (-135) (-1018)) (|has| $ (-6 -4250)))) (((-135) (-1 (-135) (-135) (-135)) $ (-135)) 73 (|has| $ (-6 -4250))) (((-135) (-1 (-135) (-135) (-135)) $) 72 (|has| $ (-6 -4250)))) (-3255 (((-135) $ (-525) (-135)) 53 (|has| $ (-6 -4251)))) (-3217 (((-135) $ (-525)) 51)) (-3258 (((-108) $ $) 119)) (-3004 (((-525) (-1 (-108) (-135)) $) 97) (((-525) (-135) $) 96 (|has| (-135) (-1018))) (((-525) (-135) $ (-525)) 95 (|has| (-135) (-1018))) (((-525) $ $ (-525)) 113) (((-525) (-132) $ (-525)) 112)) (-3454 (((-591 (-135)) $) 30 (|has| $ (-6 -4250)))) (-1268 (($ (-712) (-135)) 69)) (-2910 (((-108) $ (-712)) 9)) (-3630 (((-525) $) 43 (|has| (-525) (-788)))) (-3741 (($ $ $) 87 (|has| (-135) (-788)))) (-2131 (($ (-1 (-108) (-135) (-135)) $ $) 101) (($ $ $) 94 (|has| (-135) (-788)))) (-2552 (((-591 (-135)) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) (-135) $) 27 (-12 (|has| (-135) (-1018)) (|has| $ (-6 -4250))))) (-3468 (((-525) $) 44 (|has| (-525) (-788)))) (-2478 (($ $ $) 86 (|has| (-135) (-788)))) (-4008 (((-108) $ $ (-135)) 115)) (-3163 (((-712) $ $ (-135)) 116)) (-3249 (($ (-1 (-135) (-135)) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-135) (-135)) $) 35) (($ (-1 (-135) (-135) (-135)) $ $) 64)) (-2107 (($ $) 122)) (-2814 (($ $) 123)) (-3971 (((-108) $ (-712)) 10)) (-2513 (($ $ (-135)) 106) (($ $ (-132)) 105)) (-2339 (((-1072) $) 22 (|has| (-135) (-1018)))) (-4189 (($ (-135) $ (-525)) 60) (($ $ $ (-525)) 59)) (-2511 (((-591 (-525)) $) 46)) (-2791 (((-108) (-525) $) 47)) (-2047 (((-1036) $) 21 (|has| (-135) (-1018)))) (-3066 (((-135) $) 42 (|has| (-525) (-788)))) (-2069 (((-3 (-135) "failed") (-1 (-108) (-135)) $) 71)) (-1941 (($ $ (-135)) 41 (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) (-135)) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-135)))) 26 (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018)))) (($ $ (-273 (-135))) 25 (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018)))) (($ $ (-135) (-135)) 24 (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018)))) (($ $ (-591 (-135)) (-591 (-135))) 23 (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018))))) (-3493 (((-108) $ $) 14)) (-1615 (((-108) (-135) $) 45 (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018))))) (-3339 (((-591 (-135)) $) 48)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 (((-135) $ (-525) (-135)) 50) (((-135) $ (-525)) 49) (($ $ (-1138 (-525))) 63) (($ $ $) 102)) (-2777 (($ $ (-525)) 62) (($ $ (-1138 (-525))) 61)) (-2064 (((-712) (-1 (-108) (-135)) $) 31 (|has| $ (-6 -4250))) (((-712) (-135) $) 28 (-12 (|has| (-135) (-1018)) (|has| $ (-6 -4250))))) (-4063 (($ $ $ (-525)) 91 (|has| $ (-6 -4251)))) (-3199 (($ $) 13)) (-1408 (((-501) $) 79 (|has| (-135) (-566 (-501))))) (-3036 (($ (-591 (-135))) 70)) (-3690 (($ $ (-135)) 68) (($ (-135) $) 67) (($ $ $) 66) (($ (-591 $)) 65)) (-3022 (($ (-135)) 111) (((-796) $) 18 (|has| (-135) (-565 (-796))))) (-4158 (((-108) (-1 (-108) (-135)) $) 33 (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) 84 (|has| (-135) (-788)))) (-4119 (((-108) $ $) 83 (|has| (-135) (-788)))) (-4096 (((-108) $ $) 20 (|has| (-135) (-1018)))) (-4126 (((-108) $ $) 85 (|has| (-135) (-788)))) (-4112 (((-108) $ $) 82 (|has| (-135) (-788)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-1058) (-131)) (T -1058))
+((-2814 (*1 *1 *1) (-4 *1 (-1058))) (-2107 (*1 *1 *1) (-4 *1 (-1058))) (-3845 (*1 *1 *1) (-4 *1 (-1058))) (-3747 (*1 *1 *1) (-4 *1 (-1058))) (-3258 (*1 *2 *1 *1) (-12 (-4 *1 (-1058)) (-5 *2 (-108)))) (-3247 (*1 *2 *1 *1) (-12 (-4 *1 (-1058)) (-5 *2 (-108)))) (-3232 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1058)) (-5 *3 (-525)) (-5 *2 (-108)))) (-3163 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1058)) (-5 *3 (-135)) (-5 *2 (-712)))) (-4008 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1058)) (-5 *3 (-135)) (-5 *2 (-108)))) (-4128 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1058)) (-5 *2 (-1138 (-525))))) (-3004 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-525)))) (-3004 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-525)) (-5 *3 (-132)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-135)) (-4 *1 (-1058)))) (-2787 (*1 *2 *1 *3) (-12 (-5 *3 (-135)) (-5 *2 (-591 *1)) (-4 *1 (-1058)))) (-2787 (*1 *2 *1 *3) (-12 (-5 *3 (-132)) (-5 *2 (-591 *1)) (-4 *1 (-1058)))) (-1963 (*1 *1 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-135)))) (-1963 (*1 *1 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-132)))) (-2513 (*1 *1 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-135)))) (-2513 (*1 *1 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-132)))) (-2502 (*1 *1 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-135)))) (-2502 (*1 *1 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-132)))) (-3164 (*1 *1 *1 *1) (-4 *1 (-1058))))
+(-13 (-19 (-135)) (-10 -8 (-15 -2814 ($ $)) (-15 -2107 ($ $)) (-15 -3845 ($ $)) (-15 -3747 ($ $)) (-15 -3258 ((-108) $ $)) (-15 -3247 ((-108) $ $)) (-15 -3232 ((-108) $ $ (-525))) (-15 -3163 ((-712) $ $ (-135))) (-15 -4008 ((-108) $ $ (-135))) (-15 -4128 ($ $ (-1138 (-525)) $)) (-15 -3004 ((-525) $ $ (-525))) (-15 -3004 ((-525) (-132) $ (-525))) (-15 -3022 ($ (-135))) (-15 -2787 ((-591 $) $ (-135))) (-15 -2787 ((-591 $) $ (-132))) (-15 -1963 ($ $ (-135))) (-15 -1963 ($ $ (-132))) (-15 -2513 ($ $ (-135))) (-15 -2513 ($ $ (-132))) (-15 -2502 ($ $ (-135))) (-15 -2502 ($ $ (-132))) (-15 -3164 ($ $ $))))
+(((-33) . T) ((-97) -3321 (|has| (-135) (-1018)) (|has| (-135) (-788))) ((-565 (-796)) -3321 (|has| (-135) (-1018)) (|has| (-135) (-788)) (|has| (-135) (-565 (-796)))) ((-142 #0=(-135)) . T) ((-566 (-501)) |has| (-135) (-566 (-501))) ((-265 #1=(-525) #0#) . T) ((-267 #1# #0#) . T) ((-288 #0#) -12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018))) ((-351 #0#) . T) ((-464 #0#) . T) ((-558 #1# #0#) . T) ((-486 #0# #0#) -12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018))) ((-596 #0#) . T) ((-19 #0#) . T) ((-788) |has| (-135) (-788)) ((-1018) -3321 (|has| (-135) (-1018)) (|has| (-135) (-788))) ((-1125) . T))
+((-2572 (((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-591 |#4|) (-591 |#5|) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) (-712)) 94)) (-2532 (((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5|) 55) (((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712)) 54)) (-1394 (((-1176) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-712)) 85)) (-1788 (((-712) (-591 |#4|) (-591 |#5|)) 27)) (-2844 (((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712)) 56) (((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712) (-108)) 58)) (-3702 (((-591 |#5|) (-591 |#4|) (-591 |#5|) (-108) (-108) (-108) (-108) (-108)) 76) (((-591 |#5|) (-591 |#4|) (-591 |#5|) (-108) (-108)) 77)) (-1408 (((-1072) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) 80)) (-2178 (((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5|) 53)) (-1605 (((-712) (-591 |#4|) (-591 |#5|)) 19)))
+(((-1059 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1605 ((-712) (-591 |#4|) (-591 |#5|))) (-15 -1788 ((-712) (-591 |#4|) (-591 |#5|))) (-15 -2178 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5|)) (-15 -2532 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712))) (-15 -2532 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5|)) (-15 -2844 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712) (-108))) (-15 -2844 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712))) (-15 -2844 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5|)) (-15 -3702 ((-591 |#5|) (-591 |#4|) (-591 |#5|) (-108) (-108))) (-15 -3702 ((-591 |#5|) (-591 |#4|) (-591 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -2572 ((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-591 |#4|) (-591 |#5|) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) (-712))) (-15 -1408 ((-1072) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)))) (-15 -1394 ((-1176) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-712)))) (-429) (-734) (-788) (-989 |#1| |#2| |#3|) (-1027 |#1| |#2| |#3| |#4|)) (T -1059))
+((-1394 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-2 (|:| |val| (-591 *8)) (|:| -3374 *9)))) (-5 *4 (-712)) (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-1027 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-1176)) (-5 *1 (-1059 *5 *6 *7 *8 *9)))) (-1408 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-591 *7)) (|:| -3374 *8))) (-4 *7 (-989 *4 *5 *6)) (-4 *8 (-1027 *4 *5 *6 *7)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-1072)) (-5 *1 (-1059 *4 *5 *6 *7 *8)))) (-2572 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-591 *11)) (|:| |todo| (-591 (-2 (|:| |val| *3) (|:| -3374 *11)))))) (-5 *6 (-712)) (-5 *2 (-591 (-2 (|:| |val| (-591 *10)) (|:| -3374 *11)))) (-5 *3 (-591 *10)) (-5 *4 (-591 *11)) (-4 *10 (-989 *7 *8 *9)) (-4 *11 (-1027 *7 *8 *9 *10)) (-4 *7 (-429)) (-4 *8 (-734)) (-4 *9 (-788)) (-5 *1 (-1059 *7 *8 *9 *10 *11)))) (-3702 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-591 *9)) (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-1027 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *1 (-1059 *5 *6 *7 *8 *9)))) (-3702 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-591 *9)) (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-1027 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *1 (-1059 *5 *6 *7 *8 *9)))) (-2844 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-591 *4)) (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4)))))) (-5 *1 (-1059 *5 *6 *7 *3 *4)) (-4 *4 (-1027 *5 *6 *7 *3)))) (-2844 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-712)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *3 (-989 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-591 *4)) (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4)))))) (-5 *1 (-1059 *6 *7 *8 *3 *4)) (-4 *4 (-1027 *6 *7 *8 *3)))) (-2844 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-712)) (-5 *6 (-108)) (-4 *7 (-429)) (-4 *8 (-734)) (-4 *9 (-788)) (-4 *3 (-989 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-591 *4)) (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4)))))) (-5 *1 (-1059 *7 *8 *9 *3 *4)) (-4 *4 (-1027 *7 *8 *9 *3)))) (-2532 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-591 *4)) (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4)))))) (-5 *1 (-1059 *5 *6 *7 *3 *4)) (-4 *4 (-1027 *5 *6 *7 *3)))) (-2532 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-712)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *3 (-989 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-591 *4)) (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4)))))) (-5 *1 (-1059 *6 *7 *8 *3 *4)) (-4 *4 (-1027 *6 *7 *8 *3)))) (-2178 (*1 *2 *3 *4) (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-591 *4)) (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4)))))) (-5 *1 (-1059 *5 *6 *7 *3 *4)) (-4 *4 (-1027 *5 *6 *7 *3)))) (-1788 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *8)) (-5 *4 (-591 *9)) (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-1027 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-712)) (-5 *1 (-1059 *5 *6 *7 *8 *9)))) (-1605 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *8)) (-5 *4 (-591 *9)) (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-1027 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-712)) (-5 *1 (-1059 *5 *6 *7 *8 *9)))))
+(-10 -7 (-15 -1605 ((-712) (-591 |#4|) (-591 |#5|))) (-15 -1788 ((-712) (-591 |#4|) (-591 |#5|))) (-15 -2178 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5|)) (-15 -2532 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712))) (-15 -2532 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5|)) (-15 -2844 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712) (-108))) (-15 -2844 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5| (-712))) (-15 -2844 ((-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) |#4| |#5|)) (-15 -3702 ((-591 |#5|) (-591 |#4|) (-591 |#5|) (-108) (-108))) (-15 -3702 ((-591 |#5|) (-591 |#4|) (-591 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -2572 ((-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-591 |#4|) (-591 |#5|) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-2 (|:| |done| (-591 |#5|)) (|:| |todo| (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))))) (-712))) (-15 -1408 ((-1072) (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|)))) (-15 -1394 ((-1176) (-591 (-2 (|:| |val| (-591 |#4|)) (|:| -3374 |#5|))) (-712))))
+((-3008 (((-108) $ $) NIL)) (-3817 (((-591 (-2 (|:| -3529 $) (|:| -1976 (-591 |#4|)))) (-591 |#4|)) NIL)) (-2113 (((-591 $) (-591 |#4|)) 110) (((-591 $) (-591 |#4|) (-108)) 111) (((-591 $) (-591 |#4|) (-108) (-108)) 109) (((-591 $) (-591 |#4|) (-108) (-108) (-108) (-108)) 112)) (-1507 (((-591 |#3|) $) NIL)) (-1430 (((-108) $) NIL)) (-3490 (((-108) $) NIL (|has| |#1| (-517)))) (-3130 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1568 ((|#4| |#4| $) NIL)) (-1291 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 $))) |#4| $) 84)) (-3327 (((-2 (|:| |under| $) (|:| -2662 $) (|:| |upper| $)) $ |#3|) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-2305 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250))) (((-3 |#4| "failed") $ |#3|) 62)) (-3798 (($) NIL T CONST)) (-3382 (((-108) $) 26 (|has| |#1| (-517)))) (-2438 (((-108) $ $) NIL (|has| |#1| (-517)))) (-2055 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1964 (((-108) $) NIL (|has| |#1| (-517)))) (-2656 (((-591 |#4|) (-591 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3853 (((-591 |#4|) (-591 |#4|) $) NIL (|has| |#1| (-517)))) (-1921 (((-591 |#4|) (-591 |#4|) $) NIL (|has| |#1| (-517)))) (-1251 (((-3 $ "failed") (-591 |#4|)) NIL)) (-3528 (($ (-591 |#4|)) NIL)) (-3078 (((-3 $ "failed") $) 39)) (-2736 ((|#4| |#4| $) 65)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018))))) (-3677 (($ |#4| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-3407 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 78 (|has| |#1| (-517)))) (-3135 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-2933 ((|#4| |#4| $) NIL)) (-1227 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4250))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4250))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2719 (((-2 (|:| -3529 (-591 |#4|)) (|:| -1976 (-591 |#4|))) $) NIL)) (-1949 (((-108) |#4| $) NIL)) (-3485 (((-108) |#4| $) NIL)) (-1732 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1602 (((-2 (|:| |val| (-591 |#4|)) (|:| |towers| (-591 $))) (-591 |#4|) (-108) (-108)) 124)) (-3454 (((-591 |#4|) $) 16 (|has| $ (-6 -4250)))) (-1809 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2009 ((|#3| $) 33)) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#4|) $) 17 (|has| $ (-6 -4250)))) (-2141 (((-108) |#4| $) 25 (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018))))) (-3249 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#4| |#4|) $) 21)) (-3993 (((-591 |#3|) $) NIL)) (-4174 (((-108) |#3| $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-2711 (((-3 |#4| (-591 $)) |#4| |#4| $) NIL)) (-2627 (((-591 (-2 (|:| |val| |#4|) (|:| -3374 $))) |#4| |#4| $) 103)) (-3708 (((-3 |#4| "failed") $) 37)) (-1933 (((-591 $) |#4| $) 88)) (-1372 (((-3 (-108) (-591 $)) |#4| $) NIL)) (-1406 (((-591 (-2 (|:| |val| (-108)) (|:| -3374 $))) |#4| $) 98) (((-108) |#4| $) 53)) (-3516 (((-591 $) |#4| $) 107) (((-591 $) (-591 |#4|) $) NIL) (((-591 $) (-591 |#4|) (-591 $)) 108) (((-591 $) |#4| (-591 $)) NIL)) (-3716 (((-591 $) (-591 |#4|) (-108) (-108) (-108)) 119)) (-2689 (($ |#4| $) 75) (($ (-591 |#4|) $) 76) (((-591 $) |#4| $ (-108) (-108) (-108) (-108) (-108)) 74)) (-3280 (((-591 |#4|) $) NIL)) (-3196 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-4066 ((|#4| |#4| $) NIL)) (-2154 (((-108) $ $) NIL)) (-2934 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-517)))) (-2115 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2731 ((|#4| |#4| $) NIL)) (-2047 (((-1036) $) NIL)) (-3066 (((-3 |#4| "failed") $) 35)) (-2069 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-1554 (((-3 $ "failed") $ |#4|) 48)) (-2784 (($ $ |#4|) NIL) (((-591 $) |#4| $) 90) (((-591 $) |#4| (-591 $)) NIL) (((-591 $) (-591 |#4|) $) NIL) (((-591 $) (-591 |#4|) (-591 $)) 86)) (-1623 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 |#4|) (-591 |#4|)) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-273 |#4|)) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-591 (-273 |#4|))) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) 15)) (-3209 (($) 13)) (-1316 (((-712) $) NIL)) (-2064 (((-712) |#4| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018)))) (((-712) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) 12)) (-1408 (((-501) $) NIL (|has| |#4| (-566 (-501))))) (-3036 (($ (-591 |#4|)) 20)) (-3134 (($ $ |#3|) 42)) (-3443 (($ $ |#3|) 44)) (-2487 (($ $) NIL)) (-3010 (($ $ |#3|) NIL)) (-3022 (((-796) $) 31) (((-591 |#4|) $) 40)) (-3223 (((-712) $) NIL (|has| |#3| (-346)))) (-2122 (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2165 (((-108) $ (-1 (-108) |#4| (-591 |#4|))) NIL)) (-2533 (((-591 $) |#4| $) 54) (((-591 $) |#4| (-591 $)) NIL) (((-591 $) (-591 |#4|) $) NIL) (((-591 $) (-591 |#4|) (-591 $)) NIL)) (-4158 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-3872 (((-591 |#3|) $) NIL)) (-1564 (((-108) |#4| $) NIL)) (-1884 (((-108) |#3| $) 61)) (-4096 (((-108) $ $) NIL)) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-1060 |#1| |#2| |#3| |#4|) (-13 (-1027 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2689 ((-591 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -2113 ((-591 $) (-591 |#4|) (-108) (-108))) (-15 -2113 ((-591 $) (-591 |#4|) (-108) (-108) (-108) (-108))) (-15 -3716 ((-591 $) (-591 |#4|) (-108) (-108) (-108))) (-15 -1602 ((-2 (|:| |val| (-591 |#4|)) (|:| |towers| (-591 $))) (-591 |#4|) (-108) (-108))))) (-429) (-734) (-788) (-989 |#1| |#2| |#3|)) (T -1060))
+((-2689 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-591 (-1060 *5 *6 *7 *3))) (-5 *1 (-1060 *5 *6 *7 *3)) (-4 *3 (-989 *5 *6 *7)))) (-2113 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-591 (-1060 *5 *6 *7 *8))) (-5 *1 (-1060 *5 *6 *7 *8)))) (-2113 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-591 (-1060 *5 *6 *7 *8))) (-5 *1 (-1060 *5 *6 *7 *8)))) (-3716 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-591 (-1060 *5 *6 *7 *8))) (-5 *1 (-1060 *5 *6 *7 *8)))) (-1602 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-989 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-591 *8)) (|:| |towers| (-591 (-1060 *5 *6 *7 *8))))) (-5 *1 (-1060 *5 *6 *7 *8)) (-5 *3 (-591 *8)))))
+(-13 (-1027 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2689 ((-591 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -2113 ((-591 $) (-591 |#4|) (-108) (-108))) (-15 -2113 ((-591 $) (-591 |#4|) (-108) (-108) (-108) (-108))) (-15 -3716 ((-591 $) (-591 |#4|) (-108) (-108) (-108))) (-15 -1602 ((-2 (|:| |val| (-591 |#4|)) (|:| |towers| (-591 $))) (-591 |#4|) (-108) (-108)))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-1211 ((|#1| $) 34)) (-2644 (($ (-591 |#1|)) 39)) (-3891 (((-108) $ (-712)) NIL)) (-3798 (($) NIL T CONST)) (-1275 ((|#1| |#1| $) 36)) (-1764 ((|#1| $) 32)) (-3454 (((-591 |#1|) $) 18 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3249 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 22)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-1464 ((|#1| $) 35)) (-2470 (($ |#1| $) 37)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-3631 ((|#1| $) 33)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) 31)) (-3209 (($) 38)) (-1326 (((-712) $) 29)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) 27)) (-3022 (((-796) $) 14 (|has| |#1| (-565 (-796))))) (-1870 (($ (-591 |#1|)) NIL)) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 17 (|has| |#1| (-1018)))) (-4045 (((-712) $) 30 (|has| $ (-6 -4250)))))
+(((-1061 |#1|) (-13 (-1037 |#1|) (-10 -8 (-15 -2644 ($ (-591 |#1|))))) (-1125)) (T -1061))
+((-2644 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-5 *1 (-1061 *3)))))
+(-13 (-1037 |#1|) (-10 -8 (-15 -2644 ($ (-591 |#1|)))))
+((-3186 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1138 (-525)) |#2|) 44) ((|#2| $ (-525) |#2|) 41)) (-3629 (((-108) $) 12)) (-3249 (($ (-1 |#2| |#2|) $) 39)) (-3066 ((|#2| $) NIL) (($ $ (-712)) 17)) (-1941 (($ $ |#2|) 40)) (-3566 (((-108) $) 11)) (-3164 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1138 (-525))) 31) ((|#2| $ (-525)) 23) ((|#2| $ (-525) |#2|) NIL)) (-1679 (($ $ $) 47) (($ $ |#2|) NIL)) (-3690 (($ $ $) 33) (($ |#2| $) NIL) (($ (-591 $)) 36) (($ $ |#2|) NIL)))
+(((-1062 |#1| |#2|) (-10 -8 (-15 -3629 ((-108) |#1|)) (-15 -3566 ((-108) |#1|)) (-15 -3186 (|#2| |#1| (-525) |#2|)) (-15 -3164 (|#2| |#1| (-525) |#2|)) (-15 -3164 (|#2| |#1| (-525))) (-15 -1941 (|#1| |#1| |#2|)) (-15 -3690 (|#1| |#1| |#2|)) (-15 -3690 (|#1| (-591 |#1|))) (-15 -3164 (|#1| |#1| (-1138 (-525)))) (-15 -3186 (|#2| |#1| (-1138 (-525)) |#2|)) (-15 -3186 (|#2| |#1| "last" |#2|)) (-15 -3186 (|#1| |#1| "rest" |#1|)) (-15 -3186 (|#2| |#1| "first" |#2|)) (-15 -1679 (|#1| |#1| |#2|)) (-15 -1679 (|#1| |#1| |#1|)) (-15 -3164 (|#2| |#1| "last")) (-15 -3164 (|#1| |#1| "rest")) (-15 -3066 (|#1| |#1| (-712))) (-15 -3164 (|#2| |#1| "first")) (-15 -3066 (|#2| |#1|)) (-15 -3690 (|#1| |#2| |#1|)) (-15 -3690 (|#1| |#1| |#1|)) (-15 -3186 (|#2| |#1| "value" |#2|)) (-15 -3164 (|#2| |#1| "value")) (-15 -3249 (|#1| (-1 |#2| |#2|) |#1|))) (-1063 |#2|) (-1125)) (T -1062))
+NIL
+(-10 -8 (-15 -3629 ((-108) |#1|)) (-15 -3566 ((-108) |#1|)) (-15 -3186 (|#2| |#1| (-525) |#2|)) (-15 -3164 (|#2| |#1| (-525) |#2|)) (-15 -3164 (|#2| |#1| (-525))) (-15 -1941 (|#1| |#1| |#2|)) (-15 -3690 (|#1| |#1| |#2|)) (-15 -3690 (|#1| (-591 |#1|))) (-15 -3164 (|#1| |#1| (-1138 (-525)))) (-15 -3186 (|#2| |#1| (-1138 (-525)) |#2|)) (-15 -3186 (|#2| |#1| "last" |#2|)) (-15 -3186 (|#1| |#1| "rest" |#1|)) (-15 -3186 (|#2| |#1| "first" |#2|)) (-15 -1679 (|#1| |#1| |#2|)) (-15 -1679 (|#1| |#1| |#1|)) (-15 -3164 (|#2| |#1| "last")) (-15 -3164 (|#1| |#1| "rest")) (-15 -3066 (|#1| |#1| (-712))) (-15 -3164 (|#2| |#1| "first")) (-15 -3066 (|#2| |#1|)) (-15 -3690 (|#1| |#2| |#1|)) (-15 -3690 (|#1| |#1| |#1|)) (-15 -3186 (|#2| |#1| "value" |#2|)) (-15 -3164 (|#2| |#1| "value")) (-15 -3249 (|#1| (-1 |#2| |#2|) |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3024 ((|#1| $) 48)) (-3161 ((|#1| $) 65)) (-3970 (($ $) 67)) (-3296 (((-1176) $ (-525) (-525)) 97 (|has| $ (-6 -4251)))) (-3463 (($ $ (-525)) 52 (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) 8)) (-1780 ((|#1| $ |#1|) 39 (|has| $ (-6 -4251)))) (-2146 (($ $ $) 56 (|has| $ (-6 -4251)))) (-2640 ((|#1| $ |#1|) 54 (|has| $ (-6 -4251)))) (-1901 ((|#1| $ |#1|) 58 (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4251))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4251))) (($ $ "rest" $) 55 (|has| $ (-6 -4251))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) 117 (|has| $ (-6 -4251))) ((|#1| $ (-525) |#1|) 86 (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) 41 (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) |#1|) $) 102 (|has| $ (-6 -4250)))) (-3149 ((|#1| $) 66)) (-3798 (($) 7 T CONST)) (-3078 (($ $) 73) (($ $ (-712)) 71)) (-3098 (($ $) 99 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ (-1 (-108) |#1|) $) 103 (|has| $ (-6 -4250))) (($ |#1| $) 100 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3255 ((|#1| $ (-525) |#1|) 85 (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) 87)) (-3629 (((-108) $) 83)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) 50)) (-2148 (((-108) $ $) 42 (|has| |#1| (-1018)))) (-1268 (($ (-712) |#1|) 108)) (-2910 (((-108) $ (-712)) 9)) (-3630 (((-525) $) 95 (|has| (-525) (-788)))) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3468 (((-525) $) 94 (|has| (-525) (-788)))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-3971 (((-108) $ (-712)) 10)) (-2599 (((-591 |#1|) $) 45)) (-1203 (((-108) $) 49)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-3708 ((|#1| $) 70) (($ $ (-712)) 68)) (-4189 (($ $ $ (-525)) 116) (($ |#1| $ (-525)) 115)) (-2511 (((-591 (-525)) $) 92)) (-2791 (((-108) (-525) $) 91)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-3066 ((|#1| $) 76) (($ $ (-712)) 74)) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 106)) (-1941 (($ $ |#1|) 96 (|has| $ (-6 -4251)))) (-3566 (((-108) $) 84)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-1615 (((-108) |#1| $) 93 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) 90)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1138 (-525))) 112) ((|#1| $ (-525)) 89) ((|#1| $ (-525) |#1|) 88)) (-3505 (((-525) $ $) 44)) (-2777 (($ $ (-1138 (-525))) 114) (($ $ (-525)) 113)) (-2237 (((-108) $) 46)) (-3820 (($ $) 62)) (-2609 (($ $) 59 (|has| $ (-6 -4251)))) (-3641 (((-712) $) 63)) (-1387 (($ $) 64)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1408 (((-501) $) 98 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 107)) (-1679 (($ $ $) 61 (|has| $ (-6 -4251))) (($ $ |#1|) 60 (|has| $ (-6 -4251)))) (-3690 (($ $ $) 78) (($ |#1| $) 77) (($ (-591 $)) 110) (($ $ |#1|) 109)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) 51)) (-1632 (((-108) $ $) 43 (|has| |#1| (-1018)))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-1063 |#1|) (-131) (-1125)) (T -1063))
+((-3566 (*1 *2 *1) (-12 (-4 *1 (-1063 *3)) (-4 *3 (-1125)) (-5 *2 (-108)))) (-3629 (*1 *2 *1) (-12 (-4 *1 (-1063 *3)) (-4 *3 (-1125)) (-5 *2 (-108)))))
+(-13 (-1159 |t#1|) (-596 |t#1|) (-10 -8 (-15 -3566 ((-108) $)) (-15 -3629 ((-108) $))))
+(((-33) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-265 #0=(-525) |#1|) . T) ((-267 #0# |#1|) . T) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-558 #0# |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-596 |#1|) . T) ((-940 |#1|) . T) ((-1018) |has| |#1| (-1018)) ((-1125) . T) ((-1159 |#1|) . T))
+((-3008 (((-108) $ $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-1260 (($) NIL) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-3296 (((-1176) $ |#1| |#1|) NIL (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#2| $ |#1| |#2|) NIL)) (-1797 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-2401 (((-3 |#2| "failed") |#1| $) NIL)) (-3798 (($) NIL T CONST)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3901 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-3 |#2| "failed") |#1| $) NIL)) (-3677 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-1227 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4250))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#2| $ |#1|) NIL)) (-3454 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-3630 ((|#1| $) NIL (|has| |#1| (-788)))) (-2552 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3468 ((|#1| $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4251))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-1542 (((-591 |#1|) $) NIL)) (-2484 (((-108) |#1| $) NIL)) (-1464 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-2470 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-2511 (((-591 |#1|) $) NIL)) (-2791 (((-108) |#1| $) NIL)) (-2047 (((-1036) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-3066 ((|#2| $) NIL (|has| |#1| (-788)))) (-2069 (((-3 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) "failed") (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL)) (-1941 (($ $ |#2|) NIL (|has| $ (-6 -4251)))) (-3631 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-1623 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 (-273 |#2|))) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3339 (((-591 |#2|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2311 (($) NIL) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-2064 (((-712) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-712) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018)))) (((-712) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-566 (-501))))) (-3036 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-3022 (((-796) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-565 (-796))) (|has| |#2| (-565 (-796)))))) (-1870 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-4158 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-1064 |#1| |#2| |#3|) (-1102 |#1| |#2|) (-1018) (-1018) |#2|) (T -1064))
+NIL
+(-1102 |#1| |#2|)
+((-3008 (((-108) $ $) 7)) (-2085 (((-3 $ "failed") $) 13)) (-2339 (((-1072) $) 9)) (-3506 (($) 14 T CONST)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11)) (-4096 (((-108) $ $) 6)))
+(((-1065) (-131)) (T -1065))
+((-3506 (*1 *1) (-4 *1 (-1065))) (-2085 (*1 *1 *1) (|partial| -4 *1 (-1065))))
+(-13 (-1018) (-10 -8 (-15 -3506 ($) -2058) (-15 -2085 ((-3 $ "failed") $))))
+(((-97) . T) ((-565 (-796)) . T) ((-1018) . T))
+((-2604 (((-1070 |#1|) (-1070 |#1|)) 17)) (-3617 (((-1070 |#1|) (-1070 |#1|)) 13)) (-2602 (((-1070 |#1|) (-1070 |#1|) (-525) (-525)) 20)) (-1441 (((-1070 |#1|) (-1070 |#1|)) 15)))
+(((-1066 |#1|) (-10 -7 (-15 -3617 ((-1070 |#1|) (-1070 |#1|))) (-15 -1441 ((-1070 |#1|) (-1070 |#1|))) (-15 -2604 ((-1070 |#1|) (-1070 |#1|))) (-15 -2602 ((-1070 |#1|) (-1070 |#1|) (-525) (-525)))) (-13 (-517) (-138))) (T -1066))
+((-2602 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1070 *4)) (-5 *3 (-525)) (-4 *4 (-13 (-517) (-138))) (-5 *1 (-1066 *4)))) (-2604 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-13 (-517) (-138))) (-5 *1 (-1066 *3)))) (-1441 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-13 (-517) (-138))) (-5 *1 (-1066 *3)))) (-3617 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-13 (-517) (-138))) (-5 *1 (-1066 *3)))))
+(-10 -7 (-15 -3617 ((-1070 |#1|) (-1070 |#1|))) (-15 -1441 ((-1070 |#1|) (-1070 |#1|))) (-15 -2604 ((-1070 |#1|) (-1070 |#1|))) (-15 -2602 ((-1070 |#1|) (-1070 |#1|) (-525) (-525))))
+((-3690 (((-1070 |#1|) (-1070 (-1070 |#1|))) 15)))
+(((-1067 |#1|) (-10 -7 (-15 -3690 ((-1070 |#1|) (-1070 (-1070 |#1|))))) (-1125)) (T -1067))
+((-3690 (*1 *2 *3) (-12 (-5 *3 (-1070 (-1070 *4))) (-5 *2 (-1070 *4)) (-5 *1 (-1067 *4)) (-4 *4 (-1125)))))
+(-10 -7 (-15 -3690 ((-1070 |#1|) (-1070 (-1070 |#1|)))))
+((-1526 (((-1070 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1070 |#1|)) 25)) (-1227 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1070 |#1|)) 26)) (-1340 (((-1070 |#2|) (-1 |#2| |#1|) (-1070 |#1|)) 16)))
+(((-1068 |#1| |#2|) (-10 -7 (-15 -1340 ((-1070 |#2|) (-1 |#2| |#1|) (-1070 |#1|))) (-15 -1526 ((-1070 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1070 |#1|))) (-15 -1227 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1070 |#1|)))) (-1125) (-1125)) (T -1068))
+((-1227 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1070 *5)) (-4 *5 (-1125)) (-4 *2 (-1125)) (-5 *1 (-1068 *5 *2)))) (-1526 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1070 *6)) (-4 *6 (-1125)) (-4 *3 (-1125)) (-5 *2 (-1070 *3)) (-5 *1 (-1068 *6 *3)))) (-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1070 *5)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-1070 *6)) (-5 *1 (-1068 *5 *6)))))
+(-10 -7 (-15 -1340 ((-1070 |#2|) (-1 |#2| |#1|) (-1070 |#1|))) (-15 -1526 ((-1070 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1070 |#1|))) (-15 -1227 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1070 |#1|))))
+((-1340 (((-1070 |#3|) (-1 |#3| |#1| |#2|) (-1070 |#1|) (-1070 |#2|)) 21)))
+(((-1069 |#1| |#2| |#3|) (-10 -7 (-15 -1340 ((-1070 |#3|) (-1 |#3| |#1| |#2|) (-1070 |#1|) (-1070 |#2|)))) (-1125) (-1125) (-1125)) (T -1069))
+((-1340 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1070 *6)) (-5 *5 (-1070 *7)) (-4 *6 (-1125)) (-4 *7 (-1125)) (-4 *8 (-1125)) (-5 *2 (-1070 *8)) (-5 *1 (-1069 *6 *7 *8)))))
+(-10 -7 (-15 -1340 ((-1070 |#3|) (-1 |#3| |#1| |#2|) (-1070 |#1|) (-1070 |#2|))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3024 ((|#1| $) NIL)) (-3161 ((|#1| $) NIL)) (-3970 (($ $) 49)) (-3296 (((-1176) $ (-525) (-525)) 74 (|has| $ (-6 -4251)))) (-3463 (($ $ (-525)) 108 (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) NIL)) (-2081 (((-796) $) 38 (|has| |#1| (-1018)))) (-2003 (((-108)) 39 (|has| |#1| (-1018)))) (-1780 ((|#1| $ |#1|) NIL (|has| $ (-6 -4251)))) (-2146 (($ $ $) 96 (|has| $ (-6 -4251))) (($ $ (-525) $) 119)) (-2640 ((|#1| $ |#1|) 105 (|has| $ (-6 -4251)))) (-1901 ((|#1| $ |#1|) 100 (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4251))) ((|#1| $ "first" |#1|) 102 (|has| $ (-6 -4251))) (($ $ "rest" $) 104 (|has| $ (-6 -4251))) ((|#1| $ "last" |#1|) 107 (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) 87 (|has| $ (-6 -4251))) ((|#1| $ (-525) |#1|) 53 (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) NIL (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) |#1|) $) 56)) (-3149 ((|#1| $) NIL)) (-3798 (($) NIL T CONST)) (-1745 (($ $) 14)) (-3078 (($ $) 29) (($ $ (-712)) 86)) (-4161 (((-108) (-591 |#1|) $) 114 (|has| |#1| (-1018)))) (-1446 (($ (-591 |#1|)) 110)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3677 (($ |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) (($ (-1 (-108) |#1|) $) 55)) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3255 ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) NIL)) (-3629 (((-108) $) NIL)) (-3454 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-4009 (((-1176) (-525) $) 118 (|has| |#1| (-1018)))) (-1450 (((-712) $) 116)) (-4120 (((-591 $) $) NIL)) (-2148 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-1268 (($ (-712) |#1|) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) NIL (|has| (-525) (-788)))) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-3249 (($ (-1 |#1| |#1|) $) 71 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 61) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3971 (((-108) $ (-712)) NIL)) (-2599 (((-591 |#1|) $) NIL)) (-1203 (((-108) $) NIL)) (-3539 (($ $) 88)) (-3313 (((-108) $) 13)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-3708 ((|#1| $) NIL) (($ $ (-712)) NIL)) (-4189 (($ $ $ (-525)) NIL) (($ |#1| $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) 72)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-4070 (($ (-1 |#1|)) 121) (($ (-1 |#1| |#1|) |#1|) 122)) (-3669 ((|#1| $) 10)) (-3066 ((|#1| $) 28) (($ $ (-712)) 47)) (-2035 (((-2 (|:| |cycle?| (-108)) (|:| -1259 (-712)) (|:| |period| (-712))) (-712) $) 25)) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-4101 (($ (-1 (-108) |#1|) $) 123)) (-4108 (($ (-1 (-108) |#1|) $) 124)) (-1941 (($ $ |#1|) 66 (|has| $ (-6 -4251)))) (-2784 (($ $ (-525)) 32)) (-3566 (((-108) $) 70)) (-2036 (((-108) $) 12)) (-3437 (((-108) $) 115)) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 20)) (-1615 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) NIL)) (-3028 (((-108) $) 15)) (-3209 (($) 41)) (-3164 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1138 (-525))) NIL) ((|#1| $ (-525)) 52) ((|#1| $ (-525) |#1|) NIL)) (-3505 (((-525) $ $) 46)) (-2777 (($ $ (-1138 (-525))) NIL) (($ $ (-525)) NIL)) (-4099 (($ (-1 $)) 45)) (-2237 (((-108) $) 67)) (-3820 (($ $) 68)) (-2609 (($ $) 97 (|has| $ (-6 -4251)))) (-3641 (((-712) $) NIL)) (-1387 (($ $) NIL)) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) 42)) (-1408 (((-501) $) NIL (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 51)) (-1684 (($ |#1| $) 95)) (-1679 (($ $ $) 98 (|has| $ (-6 -4251))) (($ $ |#1|) 99 (|has| $ (-6 -4251)))) (-3690 (($ $ $) 76) (($ |#1| $) 43) (($ (-591 $)) 81) (($ $ |#1|) 75)) (-3571 (($ $) 48)) (-3022 (($ (-591 |#1|)) 109) (((-796) $) 40 (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) NIL)) (-1632 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 112 (|has| |#1| (-1018)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-1070 |#1|) (-13 (-618 |#1|) (-10 -8 (-6 -4251) (-15 -3022 ($ (-591 |#1|))) (-15 -1446 ($ (-591 |#1|))) (IF (|has| |#1| (-1018)) (-15 -4161 ((-108) (-591 |#1|) $)) |%noBranch|) (-15 -2035 ((-2 (|:| |cycle?| (-108)) (|:| -1259 (-712)) (|:| |period| (-712))) (-712) $)) (-15 -4099 ($ (-1 $))) (-15 -1684 ($ |#1| $)) (IF (|has| |#1| (-1018)) (PROGN (-15 -4009 ((-1176) (-525) $)) (-15 -2081 ((-796) $)) (-15 -2003 ((-108)))) |%noBranch|) (-15 -2146 ($ $ (-525) $)) (-15 -4070 ($ (-1 |#1|))) (-15 -4070 ($ (-1 |#1| |#1|) |#1|)) (-15 -4101 ($ (-1 (-108) |#1|) $)) (-15 -4108 ($ (-1 (-108) |#1|) $)))) (-1125)) (T -1070))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-5 *1 (-1070 *3)))) (-1446 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-5 *1 (-1070 *3)))) (-4161 (*1 *2 *3 *1) (-12 (-5 *3 (-591 *4)) (-4 *4 (-1018)) (-4 *4 (-1125)) (-5 *2 (-108)) (-5 *1 (-1070 *4)))) (-2035 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-108)) (|:| -1259 (-712)) (|:| |period| (-712)))) (-5 *1 (-1070 *4)) (-4 *4 (-1125)) (-5 *3 (-712)))) (-4099 (*1 *1 *2) (-12 (-5 *2 (-1 (-1070 *3))) (-5 *1 (-1070 *3)) (-4 *3 (-1125)))) (-1684 (*1 *1 *2 *1) (-12 (-5 *1 (-1070 *2)) (-4 *2 (-1125)))) (-4009 (*1 *2 *3 *1) (-12 (-5 *3 (-525)) (-5 *2 (-1176)) (-5 *1 (-1070 *4)) (-4 *4 (-1018)) (-4 *4 (-1125)))) (-2081 (*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-1070 *3)) (-4 *3 (-1018)) (-4 *3 (-1125)))) (-2003 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1070 *3)) (-4 *3 (-1018)) (-4 *3 (-1125)))) (-2146 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-1070 *3)) (-4 *3 (-1125)))) (-4070 (*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1125)) (-5 *1 (-1070 *3)))) (-4070 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1125)) (-5 *1 (-1070 *3)))) (-4101 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1125)) (-5 *1 (-1070 *3)))) (-4108 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1125)) (-5 *1 (-1070 *3)))))
+(-13 (-618 |#1|) (-10 -8 (-6 -4251) (-15 -3022 ($ (-591 |#1|))) (-15 -1446 ($ (-591 |#1|))) (IF (|has| |#1| (-1018)) (-15 -4161 ((-108) (-591 |#1|) $)) |%noBranch|) (-15 -2035 ((-2 (|:| |cycle?| (-108)) (|:| -1259 (-712)) (|:| |period| (-712))) (-712) $)) (-15 -4099 ($ (-1 $))) (-15 -1684 ($ |#1| $)) (IF (|has| |#1| (-1018)) (PROGN (-15 -4009 ((-1176) (-525) $)) (-15 -2081 ((-796) $)) (-15 -2003 ((-108)))) |%noBranch|) (-15 -2146 ($ $ (-525) $)) (-15 -4070 ($ (-1 |#1|))) (-15 -4070 ($ (-1 |#1| |#1|) |#1|)) (-15 -4101 ($ (-1 (-108) |#1|) $)) (-15 -4108 ($ (-1 (-108) |#1|) $))))
+((-3008 (((-108) $ $) 19)) (-3747 (($ $) 120)) (-3845 (($ $) 121)) (-1963 (($ $ (-135)) 108) (($ $ (-132)) 107)) (-3296 (((-1176) $ (-525) (-525)) 40 (|has| $ (-6 -4251)))) (-3247 (((-108) $ $) 118)) (-3232 (((-108) $ $ (-525)) 117)) (-1432 (($ (-525)) 127)) (-2787 (((-591 $) $ (-135)) 110) (((-591 $) $ (-132)) 109)) (-3203 (((-108) (-1 (-108) (-135) (-135)) $) 98) (((-108) $) 92 (|has| (-135) (-788)))) (-4026 (($ (-1 (-108) (-135) (-135)) $) 89 (|has| $ (-6 -4251))) (($ $) 88 (-12 (|has| (-135) (-788)) (|has| $ (-6 -4251))))) (-3327 (($ (-1 (-108) (-135) (-135)) $) 99) (($ $) 93 (|has| (-135) (-788)))) (-3891 (((-108) $ (-712)) 8)) (-3186 (((-135) $ (-525) (-135)) 52 (|has| $ (-6 -4251))) (((-135) $ (-1138 (-525)) (-135)) 58 (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) (-135)) $) 75 (|has| $ (-6 -4250)))) (-3798 (($) 7 T CONST)) (-2502 (($ $ (-135)) 104) (($ $ (-132)) 103)) (-2598 (($ $) 90 (|has| $ (-6 -4251)))) (-2617 (($ $) 100)) (-4128 (($ $ (-1138 (-525)) $) 114)) (-3098 (($ $) 78 (-12 (|has| (-135) (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ (-135) $) 77 (-12 (|has| (-135) (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) (-135)) $) 74 (|has| $ (-6 -4250)))) (-1227 (((-135) (-1 (-135) (-135) (-135)) $ (-135) (-135)) 76 (-12 (|has| (-135) (-1018)) (|has| $ (-6 -4250)))) (((-135) (-1 (-135) (-135) (-135)) $ (-135)) 73 (|has| $ (-6 -4250))) (((-135) (-1 (-135) (-135) (-135)) $) 72 (|has| $ (-6 -4250)))) (-3255 (((-135) $ (-525) (-135)) 53 (|has| $ (-6 -4251)))) (-3217 (((-135) $ (-525)) 51)) (-3258 (((-108) $ $) 119)) (-3004 (((-525) (-1 (-108) (-135)) $) 97) (((-525) (-135) $) 96 (|has| (-135) (-1018))) (((-525) (-135) $ (-525)) 95 (|has| (-135) (-1018))) (((-525) $ $ (-525)) 113) (((-525) (-132) $ (-525)) 112)) (-3454 (((-591 (-135)) $) 30 (|has| $ (-6 -4250)))) (-1268 (($ (-712) (-135)) 69)) (-2910 (((-108) $ (-712)) 9)) (-3630 (((-525) $) 43 (|has| (-525) (-788)))) (-3741 (($ $ $) 87 (|has| (-135) (-788)))) (-2131 (($ (-1 (-108) (-135) (-135)) $ $) 101) (($ $ $) 94 (|has| (-135) (-788)))) (-2552 (((-591 (-135)) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) (-135) $) 27 (-12 (|has| (-135) (-1018)) (|has| $ (-6 -4250))))) (-3468 (((-525) $) 44 (|has| (-525) (-788)))) (-2478 (($ $ $) 86 (|has| (-135) (-788)))) (-4008 (((-108) $ $ (-135)) 115)) (-3163 (((-712) $ $ (-135)) 116)) (-3249 (($ (-1 (-135) (-135)) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-135) (-135)) $) 35) (($ (-1 (-135) (-135) (-135)) $ $) 64)) (-2107 (($ $) 122)) (-2814 (($ $) 123)) (-3971 (((-108) $ (-712)) 10)) (-2513 (($ $ (-135)) 106) (($ $ (-132)) 105)) (-2339 (((-1072) $) 22)) (-4189 (($ (-135) $ (-525)) 60) (($ $ $ (-525)) 59)) (-2511 (((-591 (-525)) $) 46)) (-2791 (((-108) (-525) $) 47)) (-2047 (((-1036) $) 21)) (-3066 (((-135) $) 42 (|has| (-525) (-788)))) (-2069 (((-3 (-135) "failed") (-1 (-108) (-135)) $) 71)) (-1941 (($ $ (-135)) 41 (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) (-135)) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-135)))) 26 (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018)))) (($ $ (-273 (-135))) 25 (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018)))) (($ $ (-135) (-135)) 24 (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018)))) (($ $ (-591 (-135)) (-591 (-135))) 23 (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018))))) (-3493 (((-108) $ $) 14)) (-1615 (((-108) (-135) $) 45 (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018))))) (-3339 (((-591 (-135)) $) 48)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 (((-135) $ (-525) (-135)) 50) (((-135) $ (-525)) 49) (($ $ (-1138 (-525))) 63) (($ $ $) 102)) (-2777 (($ $ (-525)) 62) (($ $ (-1138 (-525))) 61)) (-2064 (((-712) (-1 (-108) (-135)) $) 31 (|has| $ (-6 -4250))) (((-712) (-135) $) 28 (-12 (|has| (-135) (-1018)) (|has| $ (-6 -4250))))) (-4063 (($ $ $ (-525)) 91 (|has| $ (-6 -4251)))) (-3199 (($ $) 13)) (-1408 (((-501) $) 79 (|has| (-135) (-566 (-501))))) (-3036 (($ (-591 (-135))) 70)) (-3690 (($ $ (-135)) 68) (($ (-135) $) 67) (($ $ $) 66) (($ (-591 $)) 65)) (-3022 (($ (-135)) 111) (((-796) $) 18)) (-4158 (((-108) (-1 (-108) (-135)) $) 33 (|has| $ (-6 -4250)))) (-2563 (((-1072) $) 131) (((-1072) $ (-108)) 130) (((-1176) (-763) $) 129) (((-1176) (-763) $ (-108)) 128)) (-4135 (((-108) $ $) 84 (|has| (-135) (-788)))) (-4119 (((-108) $ $) 83 (|has| (-135) (-788)))) (-4096 (((-108) $ $) 20)) (-4126 (((-108) $ $) 85 (|has| (-135) (-788)))) (-4112 (((-108) $ $) 82 (|has| (-135) (-788)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-1071) (-131)) (T -1071))
+((-1432 (*1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-1071)))))
+(-13 (-1058) (-1018) (-769) (-10 -8 (-15 -1432 ($ (-525)))))
+(((-33) . T) ((-97) . T) ((-565 (-796)) . T) ((-142 #0=(-135)) . T) ((-566 (-501)) |has| (-135) (-566 (-501))) ((-265 #1=(-525) #0#) . T) ((-267 #1# #0#) . T) ((-288 #0#) -12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018))) ((-351 #0#) . T) ((-464 #0#) . T) ((-558 #1# #0#) . T) ((-486 #0# #0#) -12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018))) ((-596 #0#) . T) ((-19 #0#) . T) ((-769) . T) ((-788) |has| (-135) (-788)) ((-1018) . T) ((-1058) . T) ((-1125) . T))
+((-3008 (((-108) $ $) NIL)) (-3747 (($ $) NIL)) (-3845 (($ $) NIL)) (-1963 (($ $ (-135)) NIL) (($ $ (-132)) NIL)) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3247 (((-108) $ $) NIL)) (-3232 (((-108) $ $ (-525)) NIL)) (-1432 (($ (-525)) 7)) (-2787 (((-591 $) $ (-135)) NIL) (((-591 $) $ (-132)) NIL)) (-3203 (((-108) (-1 (-108) (-135) (-135)) $) NIL) (((-108) $) NIL (|has| (-135) (-788)))) (-4026 (($ (-1 (-108) (-135) (-135)) $) NIL (|has| $ (-6 -4251))) (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| (-135) (-788))))) (-3327 (($ (-1 (-108) (-135) (-135)) $) NIL) (($ $) NIL (|has| (-135) (-788)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 (((-135) $ (-525) (-135)) NIL (|has| $ (-6 -4251))) (((-135) $ (-1138 (-525)) (-135)) NIL (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-2502 (($ $ (-135)) NIL) (($ $ (-132)) NIL)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-4128 (($ $ (-1138 (-525)) $) NIL)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018))))) (-3677 (($ (-135) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018)))) (($ (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250)))) (-1227 (((-135) (-1 (-135) (-135) (-135)) $ (-135) (-135)) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018)))) (((-135) (-1 (-135) (-135) (-135)) $ (-135)) NIL (|has| $ (-6 -4250))) (((-135) (-1 (-135) (-135) (-135)) $) NIL (|has| $ (-6 -4250)))) (-3255 (((-135) $ (-525) (-135)) NIL (|has| $ (-6 -4251)))) (-3217 (((-135) $ (-525)) NIL)) (-3258 (((-108) $ $) NIL)) (-3004 (((-525) (-1 (-108) (-135)) $) NIL) (((-525) (-135) $) NIL (|has| (-135) (-1018))) (((-525) (-135) $ (-525)) NIL (|has| (-135) (-1018))) (((-525) $ $ (-525)) NIL) (((-525) (-132) $ (-525)) NIL)) (-3454 (((-591 (-135)) $) NIL (|has| $ (-6 -4250)))) (-1268 (($ (-712) (-135)) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) NIL (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (|has| (-135) (-788)))) (-2131 (($ (-1 (-108) (-135) (-135)) $ $) NIL) (($ $ $) NIL (|has| (-135) (-788)))) (-2552 (((-591 (-135)) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-135) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| (-135) (-788)))) (-4008 (((-108) $ $ (-135)) NIL)) (-3163 (((-712) $ $ (-135)) NIL)) (-3249 (($ (-1 (-135) (-135)) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-135) (-135)) $) NIL) (($ (-1 (-135) (-135) (-135)) $ $) NIL)) (-2107 (($ $) NIL)) (-2814 (($ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2513 (($ $ (-135)) NIL) (($ $ (-132)) NIL)) (-2339 (((-1072) $) NIL)) (-4189 (($ (-135) $ (-525)) NIL) (($ $ $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL)) (-3066 (((-135) $) NIL (|has| (-525) (-788)))) (-2069 (((-3 (-135) "failed") (-1 (-108) (-135)) $) NIL)) (-1941 (($ $ (-135)) NIL (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-135)))) NIL (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018)))) (($ $ (-273 (-135))) NIL (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018)))) (($ $ (-135) (-135)) NIL (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018)))) (($ $ (-591 (-135)) (-591 (-135))) NIL (-12 (|has| (-135) (-288 (-135))) (|has| (-135) (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) (-135) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018))))) (-3339 (((-591 (-135)) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 (((-135) $ (-525) (-135)) NIL) (((-135) $ (-525)) NIL) (($ $ (-1138 (-525))) NIL) (($ $ $) NIL)) (-2777 (($ $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-2064 (((-712) (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250))) (((-712) (-135) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-135) (-1018))))) (-4063 (($ $ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-135) (-566 (-501))))) (-3036 (($ (-591 (-135))) NIL)) (-3690 (($ $ (-135)) NIL) (($ (-135) $) NIL) (($ $ $) NIL) (($ (-591 $)) NIL)) (-3022 (($ (-135)) NIL) (((-796) $) NIL)) (-4158 (((-108) (-1 (-108) (-135)) $) NIL (|has| $ (-6 -4250)))) (-2563 (((-1072) $) 18) (((-1072) $ (-108)) 20) (((-1176) (-763) $) 21) (((-1176) (-763) $ (-108)) 22)) (-4135 (((-108) $ $) NIL (|has| (-135) (-788)))) (-4119 (((-108) $ $) NIL (|has| (-135) (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| (-135) (-788)))) (-4112 (((-108) $ $) NIL (|has| (-135) (-788)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-1072) (-1071)) (T -1072))
+NIL
+(-1071)
+((-3008 (((-108) $ $) NIL (-3321 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)) (|has| |#1| (-1018))))) (-1260 (($) NIL) (($ (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) NIL)) (-3296 (((-1176) $ (-1072) (-1072)) NIL (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#1| $ (-1072) |#1|) NIL)) (-1797 (($ (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250)))) (-2401 (((-3 |#1| "failed") (-1072) $) NIL)) (-3798 (($) NIL T CONST)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018))))) (-3901 (($ (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $) NIL (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250))) (((-3 |#1| "failed") (-1072) $) NIL)) (-3677 (($ (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)))) (($ (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250)))) (-1227 (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $ (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)))) (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $ (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) NIL (|has| $ (-6 -4250))) (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#1| $ (-1072) |#1|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-1072)) NIL)) (-3454 (((-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250))) (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-1072) $) NIL (|has| (-1072) (-788)))) (-2552 (((-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250))) (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)))) (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3468 (((-1072) $) NIL (|has| (-1072) (-788)))) (-3249 (($ (-1 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4251))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (-3321 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)) (|has| |#1| (-1018))))) (-1542 (((-591 (-1072)) $) NIL)) (-2484 (((-108) (-1072) $) NIL)) (-1464 (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $) NIL)) (-2470 (($ (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $) NIL)) (-2511 (((-591 (-1072)) $) NIL)) (-2791 (((-108) (-1072) $) NIL)) (-2047 (((-1036) $) NIL (-3321 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)) (|has| |#1| (-1018))))) (-3066 ((|#1| $) NIL (|has| (-1072) (-788)))) (-2069 (((-3 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) "failed") (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL)) (-1941 (($ $ |#1|) NIL (|has| $ (-6 -4251)))) (-3631 (((-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $) NIL)) (-1623 (((-108) (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))))) NIL (-12 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)))) (($ $ (-273 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) NIL (-12 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)))) (($ $ (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) NIL (-12 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)))) (($ $ (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) NIL (-12 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-288 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#1| $ (-1072)) NIL) ((|#1| $ (-1072) |#1|) NIL)) (-2311 (($) NIL) (($ (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) NIL)) (-2064 (((-712) (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-566 (-501))))) (-3036 (($ (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) NIL)) (-3022 (((-796) $) NIL (-3321 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-565 (-796))) (|has| |#1| (-565 (-796)))))) (-1870 (($ (-591 (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)))) NIL)) (-4158 (((-108) (-1 (-108) (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (-3321 (|has| (-2 (|:| -2019 (-1072)) (|:| -1221 |#1|)) (-1018)) (|has| |#1| (-1018))))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-1073 |#1|) (-13 (-1102 (-1072) |#1|) (-10 -7 (-6 -4250))) (-1018)) (T -1073))
+NIL
+(-13 (-1102 (-1072) |#1|) (-10 -7 (-6 -4250)))
+((-2218 (((-1070 |#1|) (-1070 |#1|)) 77)) (-4163 (((-3 (-1070 |#1|) "failed") (-1070 |#1|)) 37)) (-4180 (((-1070 |#1|) (-385 (-525)) (-1070 |#1|)) 117 (|has| |#1| (-37 (-385 (-525)))))) (-2741 (((-1070 |#1|) |#1| (-1070 |#1|)) 122 (|has| |#1| (-341)))) (-3176 (((-1070 |#1|) (-1070 |#1|)) 90)) (-3002 (((-1070 (-525)) (-525)) 57)) (-2451 (((-1070 |#1|) (-1070 (-1070 |#1|))) 108 (|has| |#1| (-37 (-385 (-525)))))) (-3666 (((-1070 |#1|) (-525) (-525) (-1070 |#1|)) 95)) (-2548 (((-1070 |#1|) |#1| (-525)) 45)) (-2266 (((-1070 |#1|) (-1070 |#1|) (-1070 |#1|)) 60)) (-2298 (((-1070 |#1|) (-1070 |#1|) (-1070 |#1|)) 119 (|has| |#1| (-341)))) (-3790 (((-1070 |#1|) |#1| (-1 (-1070 |#1|))) 107 (|has| |#1| (-37 (-385 (-525)))))) (-1880 (((-1070 |#1|) (-1 |#1| (-525)) |#1| (-1 (-1070 |#1|))) 120 (|has| |#1| (-341)))) (-3652 (((-1070 |#1|) (-1070 |#1|)) 89)) (-1919 (((-1070 |#1|) (-1070 |#1|)) 76)) (-3691 (((-1070 |#1|) (-525) (-525) (-1070 |#1|)) 96)) (-4141 (((-1070 |#1|) |#1| (-1070 |#1|)) 105 (|has| |#1| (-37 (-385 (-525)))))) (-2284 (((-1070 (-525)) (-525)) 56)) (-4150 (((-1070 |#1|) |#1|) 59)) (-2538 (((-1070 |#1|) (-1070 |#1|) (-525) (-525)) 92)) (-2840 (((-1070 |#1|) (-1 |#1| (-525)) (-1070 |#1|)) 66)) (-2089 (((-3 (-1070 |#1|) "failed") (-1070 |#1|) (-1070 |#1|)) 35)) (-1302 (((-1070 |#1|) (-1070 |#1|)) 91)) (-4132 (((-1070 |#1|) (-1070 |#1|) |#1|) 71)) (-3496 (((-1070 |#1|) (-1070 |#1|)) 62)) (-1489 (((-1070 |#1|) (-1070 |#1|) (-1070 |#1|)) 72)) (-3022 (((-1070 |#1|) |#1|) 67)) (-2917 (((-1070 |#1|) (-1070 (-1070 |#1|))) 82)) (-4173 (((-1070 |#1|) (-1070 |#1|) (-1070 |#1|)) 36)) (-4164 (((-1070 |#1|) (-1070 |#1|)) 21) (((-1070 |#1|) (-1070 |#1|) (-1070 |#1|)) 23)) (-4156 (((-1070 |#1|) (-1070 |#1|) (-1070 |#1|)) 17)) (* (((-1070 |#1|) (-1070 |#1|) |#1|) 29) (((-1070 |#1|) |#1| (-1070 |#1|)) 26) (((-1070 |#1|) (-1070 |#1|) (-1070 |#1|)) 27)))
+(((-1074 |#1|) (-10 -7 (-15 -4156 ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -4164 ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -4164 ((-1070 |#1|) (-1070 |#1|))) (-15 * ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 * ((-1070 |#1|) |#1| (-1070 |#1|))) (-15 * ((-1070 |#1|) (-1070 |#1|) |#1|)) (-15 -2089 ((-3 (-1070 |#1|) "failed") (-1070 |#1|) (-1070 |#1|))) (-15 -4173 ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -4163 ((-3 (-1070 |#1|) "failed") (-1070 |#1|))) (-15 -2548 ((-1070 |#1|) |#1| (-525))) (-15 -2284 ((-1070 (-525)) (-525))) (-15 -3002 ((-1070 (-525)) (-525))) (-15 -4150 ((-1070 |#1|) |#1|)) (-15 -2266 ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -3496 ((-1070 |#1|) (-1070 |#1|))) (-15 -2840 ((-1070 |#1|) (-1 |#1| (-525)) (-1070 |#1|))) (-15 -3022 ((-1070 |#1|) |#1|)) (-15 -4132 ((-1070 |#1|) (-1070 |#1|) |#1|)) (-15 -1489 ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -1919 ((-1070 |#1|) (-1070 |#1|))) (-15 -2218 ((-1070 |#1|) (-1070 |#1|))) (-15 -2917 ((-1070 |#1|) (-1070 (-1070 |#1|)))) (-15 -3652 ((-1070 |#1|) (-1070 |#1|))) (-15 -3176 ((-1070 |#1|) (-1070 |#1|))) (-15 -1302 ((-1070 |#1|) (-1070 |#1|))) (-15 -2538 ((-1070 |#1|) (-1070 |#1|) (-525) (-525))) (-15 -3666 ((-1070 |#1|) (-525) (-525) (-1070 |#1|))) (-15 -3691 ((-1070 |#1|) (-525) (-525) (-1070 |#1|))) (IF (|has| |#1| (-37 (-385 (-525)))) (PROGN (-15 -4141 ((-1070 |#1|) |#1| (-1070 |#1|))) (-15 -3790 ((-1070 |#1|) |#1| (-1 (-1070 |#1|)))) (-15 -2451 ((-1070 |#1|) (-1070 (-1070 |#1|)))) (-15 -4180 ((-1070 |#1|) (-385 (-525)) (-1070 |#1|)))) |%noBranch|) (IF (|has| |#1| (-341)) (PROGN (-15 -2298 ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -1880 ((-1070 |#1|) (-1 |#1| (-525)) |#1| (-1 (-1070 |#1|)))) (-15 -2741 ((-1070 |#1|) |#1| (-1070 |#1|)))) |%noBranch|)) (-975)) (T -1074))
+((-2741 (*1 *2 *3 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-341)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-1880 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *4 (-525))) (-5 *5 (-1 (-1070 *4))) (-4 *4 (-341)) (-4 *4 (-975)) (-5 *2 (-1070 *4)) (-5 *1 (-1074 *4)))) (-2298 (*1 *2 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-341)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-4180 (*1 *2 *3 *2) (-12 (-5 *2 (-1070 *4)) (-4 *4 (-37 *3)) (-4 *4 (-975)) (-5 *3 (-385 (-525))) (-5 *1 (-1074 *4)))) (-2451 (*1 *2 *3) (-12 (-5 *3 (-1070 (-1070 *4))) (-5 *2 (-1070 *4)) (-5 *1 (-1074 *4)) (-4 *4 (-37 (-385 (-525)))) (-4 *4 (-975)))) (-3790 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-1070 *3))) (-5 *2 (-1070 *3)) (-5 *1 (-1074 *3)) (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)))) (-4141 (*1 *2 *3 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-3691 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1070 *4)) (-5 *3 (-525)) (-4 *4 (-975)) (-5 *1 (-1074 *4)))) (-3666 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1070 *4)) (-5 *3 (-525)) (-4 *4 (-975)) (-5 *1 (-1074 *4)))) (-2538 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1070 *4)) (-5 *3 (-525)) (-4 *4 (-975)) (-5 *1 (-1074 *4)))) (-1302 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-3176 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-3652 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-2917 (*1 *2 *3) (-12 (-5 *3 (-1070 (-1070 *4))) (-5 *2 (-1070 *4)) (-5 *1 (-1074 *4)) (-4 *4 (-975)))) (-2218 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-1919 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-1489 (*1 *2 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-4132 (*1 *2 *2 *3) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-3022 (*1 *2 *3) (-12 (-5 *2 (-1070 *3)) (-5 *1 (-1074 *3)) (-4 *3 (-975)))) (-2840 (*1 *2 *3 *2) (-12 (-5 *2 (-1070 *4)) (-5 *3 (-1 *4 (-525))) (-4 *4 (-975)) (-5 *1 (-1074 *4)))) (-3496 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-2266 (*1 *2 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-4150 (*1 *2 *3) (-12 (-5 *2 (-1070 *3)) (-5 *1 (-1074 *3)) (-4 *3 (-975)))) (-3002 (*1 *2 *3) (-12 (-5 *2 (-1070 (-525))) (-5 *1 (-1074 *4)) (-4 *4 (-975)) (-5 *3 (-525)))) (-2284 (*1 *2 *3) (-12 (-5 *2 (-1070 (-525))) (-5 *1 (-1074 *4)) (-4 *4 (-975)) (-5 *3 (-525)))) (-2548 (*1 *2 *3 *4) (-12 (-5 *4 (-525)) (-5 *2 (-1070 *3)) (-5 *1 (-1074 *3)) (-4 *3 (-975)))) (-4163 (*1 *2 *2) (|partial| -12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-4173 (*1 *2 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-2089 (*1 *2 *2 *2) (|partial| -12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (* (*1 *2 *2 *3) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-4164 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-4164 (*1 *2 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))) (-4156 (*1 *2 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))))
+(-10 -7 (-15 -4156 ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -4164 ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -4164 ((-1070 |#1|) (-1070 |#1|))) (-15 * ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 * ((-1070 |#1|) |#1| (-1070 |#1|))) (-15 * ((-1070 |#1|) (-1070 |#1|) |#1|)) (-15 -2089 ((-3 (-1070 |#1|) "failed") (-1070 |#1|) (-1070 |#1|))) (-15 -4173 ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -4163 ((-3 (-1070 |#1|) "failed") (-1070 |#1|))) (-15 -2548 ((-1070 |#1|) |#1| (-525))) (-15 -2284 ((-1070 (-525)) (-525))) (-15 -3002 ((-1070 (-525)) (-525))) (-15 -4150 ((-1070 |#1|) |#1|)) (-15 -2266 ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -3496 ((-1070 |#1|) (-1070 |#1|))) (-15 -2840 ((-1070 |#1|) (-1 |#1| (-525)) (-1070 |#1|))) (-15 -3022 ((-1070 |#1|) |#1|)) (-15 -4132 ((-1070 |#1|) (-1070 |#1|) |#1|)) (-15 -1489 ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -1919 ((-1070 |#1|) (-1070 |#1|))) (-15 -2218 ((-1070 |#1|) (-1070 |#1|))) (-15 -2917 ((-1070 |#1|) (-1070 (-1070 |#1|)))) (-15 -3652 ((-1070 |#1|) (-1070 |#1|))) (-15 -3176 ((-1070 |#1|) (-1070 |#1|))) (-15 -1302 ((-1070 |#1|) (-1070 |#1|))) (-15 -2538 ((-1070 |#1|) (-1070 |#1|) (-525) (-525))) (-15 -3666 ((-1070 |#1|) (-525) (-525) (-1070 |#1|))) (-15 -3691 ((-1070 |#1|) (-525) (-525) (-1070 |#1|))) (IF (|has| |#1| (-37 (-385 (-525)))) (PROGN (-15 -4141 ((-1070 |#1|) |#1| (-1070 |#1|))) (-15 -3790 ((-1070 |#1|) |#1| (-1 (-1070 |#1|)))) (-15 -2451 ((-1070 |#1|) (-1070 (-1070 |#1|)))) (-15 -4180 ((-1070 |#1|) (-385 (-525)) (-1070 |#1|)))) |%noBranch|) (IF (|has| |#1| (-341)) (PROGN (-15 -2298 ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -1880 ((-1070 |#1|) (-1 |#1| (-525)) |#1| (-1 (-1070 |#1|)))) (-15 -2741 ((-1070 |#1|) |#1| (-1070 |#1|)))) |%noBranch|))
+((-1987 (((-1070 |#1|) (-1070 |#1|)) 57)) (-3169 (((-1070 |#1|) (-1070 |#1|)) 39)) (-1431 (((-1070 |#1|) (-1070 |#1|)) 53)) (-3144 (((-1070 |#1|) (-1070 |#1|)) 35)) (-1719 (((-1070 |#1|) (-1070 |#1|)) 60)) (-1321 (((-1070 |#1|) (-1070 |#1|)) 42)) (-1488 (((-1070 |#1|) (-1070 |#1|)) 31)) (-1409 (((-1070 |#1|) (-1070 |#1|)) 27)) (-1502 (((-1070 |#1|) (-1070 |#1|)) 61)) (-1333 (((-1070 |#1|) (-1070 |#1|)) 43)) (-1996 (((-1070 |#1|) (-1070 |#1|)) 58)) (-1309 (((-1070 |#1|) (-1070 |#1|)) 40)) (-1973 (((-1070 |#1|) (-1070 |#1|)) 55)) (-3156 (((-1070 |#1|) (-1070 |#1|)) 37)) (-1563 (((-1070 |#1|) (-1070 |#1|)) 65)) (-1371 (((-1070 |#1|) (-1070 |#1|)) 47)) (-1515 (((-1070 |#1|) (-1070 |#1|)) 63)) (-1346 (((-1070 |#1|) (-1070 |#1|)) 45)) (-1591 (((-1070 |#1|) (-1070 |#1|)) 68)) (-1400 (((-1070 |#1|) (-1070 |#1|)) 50)) (-3277 (((-1070 |#1|) (-1070 |#1|)) 69)) (-1415 (((-1070 |#1|) (-1070 |#1|)) 51)) (-1578 (((-1070 |#1|) (-1070 |#1|)) 67)) (-1385 (((-1070 |#1|) (-1070 |#1|)) 49)) (-1527 (((-1070 |#1|) (-1070 |#1|)) 66)) (-1358 (((-1070 |#1|) (-1070 |#1|)) 48)) (** (((-1070 |#1|) (-1070 |#1|) (-1070 |#1|)) 33)))
+(((-1075 |#1|) (-10 -7 (-15 -1409 ((-1070 |#1|) (-1070 |#1|))) (-15 -1488 ((-1070 |#1|) (-1070 |#1|))) (-15 ** ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -3144 ((-1070 |#1|) (-1070 |#1|))) (-15 -3156 ((-1070 |#1|) (-1070 |#1|))) (-15 -3169 ((-1070 |#1|) (-1070 |#1|))) (-15 -1309 ((-1070 |#1|) (-1070 |#1|))) (-15 -1321 ((-1070 |#1|) (-1070 |#1|))) (-15 -1333 ((-1070 |#1|) (-1070 |#1|))) (-15 -1346 ((-1070 |#1|) (-1070 |#1|))) (-15 -1358 ((-1070 |#1|) (-1070 |#1|))) (-15 -1371 ((-1070 |#1|) (-1070 |#1|))) (-15 -1385 ((-1070 |#1|) (-1070 |#1|))) (-15 -1400 ((-1070 |#1|) (-1070 |#1|))) (-15 -1415 ((-1070 |#1|) (-1070 |#1|))) (-15 -1431 ((-1070 |#1|) (-1070 |#1|))) (-15 -1973 ((-1070 |#1|) (-1070 |#1|))) (-15 -1987 ((-1070 |#1|) (-1070 |#1|))) (-15 -1996 ((-1070 |#1|) (-1070 |#1|))) (-15 -1719 ((-1070 |#1|) (-1070 |#1|))) (-15 -1502 ((-1070 |#1|) (-1070 |#1|))) (-15 -1515 ((-1070 |#1|) (-1070 |#1|))) (-15 -1527 ((-1070 |#1|) (-1070 |#1|))) (-15 -1563 ((-1070 |#1|) (-1070 |#1|))) (-15 -1578 ((-1070 |#1|) (-1070 |#1|))) (-15 -1591 ((-1070 |#1|) (-1070 |#1|))) (-15 -3277 ((-1070 |#1|) (-1070 |#1|)))) (-37 (-385 (-525)))) (T -1075))
+((-3277 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1591 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1578 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1563 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1527 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1515 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1502 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1719 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1996 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1987 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1973 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1431 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1415 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1400 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1385 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1371 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1358 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1346 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1333 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1321 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1309 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-3169 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-3156 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-3144 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1488 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))) (-1409 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1075 *3)))))
+(-10 -7 (-15 -1409 ((-1070 |#1|) (-1070 |#1|))) (-15 -1488 ((-1070 |#1|) (-1070 |#1|))) (-15 ** ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -3144 ((-1070 |#1|) (-1070 |#1|))) (-15 -3156 ((-1070 |#1|) (-1070 |#1|))) (-15 -3169 ((-1070 |#1|) (-1070 |#1|))) (-15 -1309 ((-1070 |#1|) (-1070 |#1|))) (-15 -1321 ((-1070 |#1|) (-1070 |#1|))) (-15 -1333 ((-1070 |#1|) (-1070 |#1|))) (-15 -1346 ((-1070 |#1|) (-1070 |#1|))) (-15 -1358 ((-1070 |#1|) (-1070 |#1|))) (-15 -1371 ((-1070 |#1|) (-1070 |#1|))) (-15 -1385 ((-1070 |#1|) (-1070 |#1|))) (-15 -1400 ((-1070 |#1|) (-1070 |#1|))) (-15 -1415 ((-1070 |#1|) (-1070 |#1|))) (-15 -1431 ((-1070 |#1|) (-1070 |#1|))) (-15 -1973 ((-1070 |#1|) (-1070 |#1|))) (-15 -1987 ((-1070 |#1|) (-1070 |#1|))) (-15 -1996 ((-1070 |#1|) (-1070 |#1|))) (-15 -1719 ((-1070 |#1|) (-1070 |#1|))) (-15 -1502 ((-1070 |#1|) (-1070 |#1|))) (-15 -1515 ((-1070 |#1|) (-1070 |#1|))) (-15 -1527 ((-1070 |#1|) (-1070 |#1|))) (-15 -1563 ((-1070 |#1|) (-1070 |#1|))) (-15 -1578 ((-1070 |#1|) (-1070 |#1|))) (-15 -1591 ((-1070 |#1|) (-1070 |#1|))) (-15 -3277 ((-1070 |#1|) (-1070 |#1|))))
+((-1987 (((-1070 |#1|) (-1070 |#1|)) 100)) (-3169 (((-1070 |#1|) (-1070 |#1|)) 64)) (-2801 (((-2 (|:| -1431 (-1070 |#1|)) (|:| -1973 (-1070 |#1|))) (-1070 |#1|)) 96)) (-1431 (((-1070 |#1|) (-1070 |#1|)) 97)) (-3797 (((-2 (|:| -3144 (-1070 |#1|)) (|:| -3156 (-1070 |#1|))) (-1070 |#1|)) 53)) (-3144 (((-1070 |#1|) (-1070 |#1|)) 54)) (-1719 (((-1070 |#1|) (-1070 |#1|)) 102)) (-1321 (((-1070 |#1|) (-1070 |#1|)) 71)) (-1488 (((-1070 |#1|) (-1070 |#1|)) 39)) (-1409 (((-1070 |#1|) (-1070 |#1|)) 36)) (-1502 (((-1070 |#1|) (-1070 |#1|)) 103)) (-1333 (((-1070 |#1|) (-1070 |#1|)) 72)) (-1996 (((-1070 |#1|) (-1070 |#1|)) 101)) (-1309 (((-1070 |#1|) (-1070 |#1|)) 67)) (-1973 (((-1070 |#1|) (-1070 |#1|)) 98)) (-3156 (((-1070 |#1|) (-1070 |#1|)) 55)) (-1563 (((-1070 |#1|) (-1070 |#1|)) 111)) (-1371 (((-1070 |#1|) (-1070 |#1|)) 86)) (-1515 (((-1070 |#1|) (-1070 |#1|)) 105)) (-1346 (((-1070 |#1|) (-1070 |#1|)) 82)) (-1591 (((-1070 |#1|) (-1070 |#1|)) 115)) (-1400 (((-1070 |#1|) (-1070 |#1|)) 90)) (-3277 (((-1070 |#1|) (-1070 |#1|)) 117)) (-1415 (((-1070 |#1|) (-1070 |#1|)) 92)) (-1578 (((-1070 |#1|) (-1070 |#1|)) 113)) (-1385 (((-1070 |#1|) (-1070 |#1|)) 88)) (-1527 (((-1070 |#1|) (-1070 |#1|)) 107)) (-1358 (((-1070 |#1|) (-1070 |#1|)) 84)) (** (((-1070 |#1|) (-1070 |#1|) (-1070 |#1|)) 40)))
+(((-1076 |#1|) (-10 -7 (-15 -1409 ((-1070 |#1|) (-1070 |#1|))) (-15 -1488 ((-1070 |#1|) (-1070 |#1|))) (-15 ** ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -3797 ((-2 (|:| -3144 (-1070 |#1|)) (|:| -3156 (-1070 |#1|))) (-1070 |#1|))) (-15 -3144 ((-1070 |#1|) (-1070 |#1|))) (-15 -3156 ((-1070 |#1|) (-1070 |#1|))) (-15 -3169 ((-1070 |#1|) (-1070 |#1|))) (-15 -1309 ((-1070 |#1|) (-1070 |#1|))) (-15 -1321 ((-1070 |#1|) (-1070 |#1|))) (-15 -1333 ((-1070 |#1|) (-1070 |#1|))) (-15 -1346 ((-1070 |#1|) (-1070 |#1|))) (-15 -1358 ((-1070 |#1|) (-1070 |#1|))) (-15 -1371 ((-1070 |#1|) (-1070 |#1|))) (-15 -1385 ((-1070 |#1|) (-1070 |#1|))) (-15 -1400 ((-1070 |#1|) (-1070 |#1|))) (-15 -1415 ((-1070 |#1|) (-1070 |#1|))) (-15 -2801 ((-2 (|:| -1431 (-1070 |#1|)) (|:| -1973 (-1070 |#1|))) (-1070 |#1|))) (-15 -1431 ((-1070 |#1|) (-1070 |#1|))) (-15 -1973 ((-1070 |#1|) (-1070 |#1|))) (-15 -1987 ((-1070 |#1|) (-1070 |#1|))) (-15 -1996 ((-1070 |#1|) (-1070 |#1|))) (-15 -1719 ((-1070 |#1|) (-1070 |#1|))) (-15 -1502 ((-1070 |#1|) (-1070 |#1|))) (-15 -1515 ((-1070 |#1|) (-1070 |#1|))) (-15 -1527 ((-1070 |#1|) (-1070 |#1|))) (-15 -1563 ((-1070 |#1|) (-1070 |#1|))) (-15 -1578 ((-1070 |#1|) (-1070 |#1|))) (-15 -1591 ((-1070 |#1|) (-1070 |#1|))) (-15 -3277 ((-1070 |#1|) (-1070 |#1|)))) (-37 (-385 (-525)))) (T -1076))
+((-3277 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1591 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1578 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1563 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1527 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1515 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1502 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1719 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1996 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1987 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1973 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1431 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-2801 (*1 *2 *3) (-12 (-4 *4 (-37 (-385 (-525)))) (-5 *2 (-2 (|:| -1431 (-1070 *4)) (|:| -1973 (-1070 *4)))) (-5 *1 (-1076 *4)) (-5 *3 (-1070 *4)))) (-1415 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1400 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1385 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1371 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1358 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1346 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1333 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1321 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1309 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-3169 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-3156 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-3144 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-3797 (*1 *2 *3) (-12 (-4 *4 (-37 (-385 (-525)))) (-5 *2 (-2 (|:| -3144 (-1070 *4)) (|:| -3156 (-1070 *4)))) (-5 *1 (-1076 *4)) (-5 *3 (-1070 *4)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1488 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))) (-1409 (*1 *2 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1076 *3)))))
+(-10 -7 (-15 -1409 ((-1070 |#1|) (-1070 |#1|))) (-15 -1488 ((-1070 |#1|) (-1070 |#1|))) (-15 ** ((-1070 |#1|) (-1070 |#1|) (-1070 |#1|))) (-15 -3797 ((-2 (|:| -3144 (-1070 |#1|)) (|:| -3156 (-1070 |#1|))) (-1070 |#1|))) (-15 -3144 ((-1070 |#1|) (-1070 |#1|))) (-15 -3156 ((-1070 |#1|) (-1070 |#1|))) (-15 -3169 ((-1070 |#1|) (-1070 |#1|))) (-15 -1309 ((-1070 |#1|) (-1070 |#1|))) (-15 -1321 ((-1070 |#1|) (-1070 |#1|))) (-15 -1333 ((-1070 |#1|) (-1070 |#1|))) (-15 -1346 ((-1070 |#1|) (-1070 |#1|))) (-15 -1358 ((-1070 |#1|) (-1070 |#1|))) (-15 -1371 ((-1070 |#1|) (-1070 |#1|))) (-15 -1385 ((-1070 |#1|) (-1070 |#1|))) (-15 -1400 ((-1070 |#1|) (-1070 |#1|))) (-15 -1415 ((-1070 |#1|) (-1070 |#1|))) (-15 -2801 ((-2 (|:| -1431 (-1070 |#1|)) (|:| -1973 (-1070 |#1|))) (-1070 |#1|))) (-15 -1431 ((-1070 |#1|) (-1070 |#1|))) (-15 -1973 ((-1070 |#1|) (-1070 |#1|))) (-15 -1987 ((-1070 |#1|) (-1070 |#1|))) (-15 -1996 ((-1070 |#1|) (-1070 |#1|))) (-15 -1719 ((-1070 |#1|) (-1070 |#1|))) (-15 -1502 ((-1070 |#1|) (-1070 |#1|))) (-15 -1515 ((-1070 |#1|) (-1070 |#1|))) (-15 -1527 ((-1070 |#1|) (-1070 |#1|))) (-15 -1563 ((-1070 |#1|) (-1070 |#1|))) (-15 -1578 ((-1070 |#1|) (-1070 |#1|))) (-15 -1591 ((-1070 |#1|) (-1070 |#1|))) (-15 -3277 ((-1070 |#1|) (-1070 |#1|))))
+((-1513 (((-890 |#2|) |#2| |#2|) 35)) (-3208 ((|#2| |#2| |#1|) 19 (|has| |#1| (-286)))))
+(((-1077 |#1| |#2|) (-10 -7 (-15 -1513 ((-890 |#2|) |#2| |#2|)) (IF (|has| |#1| (-286)) (-15 -3208 (|#2| |#2| |#1|)) |%noBranch|)) (-517) (-1147 |#1|)) (T -1077))
+((-3208 (*1 *2 *2 *3) (-12 (-4 *3 (-286)) (-4 *3 (-517)) (-5 *1 (-1077 *3 *2)) (-4 *2 (-1147 *3)))) (-1513 (*1 *2 *3 *3) (-12 (-4 *4 (-517)) (-5 *2 (-890 *3)) (-5 *1 (-1077 *4 *3)) (-4 *3 (-1147 *4)))))
+(-10 -7 (-15 -1513 ((-890 |#2|) |#2| |#2|)) (IF (|has| |#1| (-286)) (-15 -3208 (|#2| |#2| |#1|)) |%noBranch|))
+((-3008 (((-108) $ $) NIL)) (-3314 (($ $ (-591 (-712))) 67)) (-3439 (($) 26)) (-3282 (($ $) 42)) (-2288 (((-591 $) $) 51)) (-1573 (((-108) $) 16)) (-1962 (((-591 (-876 |#2|)) $) 74)) (-1811 (($ $) 68)) (-1803 (((-712) $) 37)) (-1268 (($) 25)) (-1869 (($ $ (-591 (-712)) (-876 |#2|)) 60) (($ $ (-591 (-712)) (-712)) 61) (($ $ (-712) (-876 |#2|)) 63)) (-2131 (($ $ $) 48) (($ (-591 $)) 50)) (-2841 (((-712) $) 75)) (-1203 (((-108) $) 15)) (-2339 (((-1072) $) NIL)) (-4147 (((-108) $) 18)) (-2047 (((-1036) $) NIL)) (-2949 (((-159) $) 73)) (-3623 (((-876 |#2|) $) 69)) (-1297 (((-712) $) 70)) (-1239 (((-108) $) 72)) (-2416 (($ $ (-591 (-712)) (-159)) 66)) (-3745 (($ $) 43)) (-3022 (((-796) $) 86)) (-2582 (($ $ (-591 (-712)) (-108)) 65)) (-3860 (((-591 $) $) 11)) (-4181 (($ $ (-712)) 36)) (-3659 (($ $) 32)) (-2633 (($ $ $ (-876 |#2|) (-712)) 56)) (-1875 (($ $ (-876 |#2|)) 55)) (-3184 (($ $ (-591 (-712)) (-876 |#2|)) 54) (($ $ (-591 (-712)) (-712)) 58) (((-712) $ (-876 |#2|)) 59)) (-4096 (((-108) $ $) 80)))
+(((-1078 |#1| |#2|) (-13 (-1018) (-10 -8 (-15 -1203 ((-108) $)) (-15 -1573 ((-108) $)) (-15 -4147 ((-108) $)) (-15 -1268 ($)) (-15 -3439 ($)) (-15 -3659 ($ $)) (-15 -4181 ($ $ (-712))) (-15 -3860 ((-591 $) $)) (-15 -1803 ((-712) $)) (-15 -3282 ($ $)) (-15 -3745 ($ $)) (-15 -2131 ($ $ $)) (-15 -2131 ($ (-591 $))) (-15 -2288 ((-591 $) $)) (-15 -3184 ($ $ (-591 (-712)) (-876 |#2|))) (-15 -1875 ($ $ (-876 |#2|))) (-15 -2633 ($ $ $ (-876 |#2|) (-712))) (-15 -1869 ($ $ (-591 (-712)) (-876 |#2|))) (-15 -3184 ($ $ (-591 (-712)) (-712))) (-15 -1869 ($ $ (-591 (-712)) (-712))) (-15 -3184 ((-712) $ (-876 |#2|))) (-15 -1869 ($ $ (-712) (-876 |#2|))) (-15 -2582 ($ $ (-591 (-712)) (-108))) (-15 -2416 ($ $ (-591 (-712)) (-159))) (-15 -3314 ($ $ (-591 (-712)))) (-15 -3623 ((-876 |#2|) $)) (-15 -1297 ((-712) $)) (-15 -1239 ((-108) $)) (-15 -2949 ((-159) $)) (-15 -2841 ((-712) $)) (-15 -1811 ($ $)) (-15 -1962 ((-591 (-876 |#2|)) $)))) (-854) (-975)) (T -1078))
+((-1203 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)) (-4 *4 (-975)))) (-1573 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)) (-4 *4 (-975)))) (-4147 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)) (-4 *4 (-975)))) (-1268 (*1 *1) (-12 (-5 *1 (-1078 *2 *3)) (-14 *2 (-854)) (-4 *3 (-975)))) (-3439 (*1 *1) (-12 (-5 *1 (-1078 *2 *3)) (-14 *2 (-854)) (-4 *3 (-975)))) (-3659 (*1 *1 *1) (-12 (-5 *1 (-1078 *2 *3)) (-14 *2 (-854)) (-4 *3 (-975)))) (-4181 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)) (-4 *4 (-975)))) (-3860 (*1 *2 *1) (-12 (-5 *2 (-591 (-1078 *3 *4))) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)) (-4 *4 (-975)))) (-1803 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)) (-4 *4 (-975)))) (-3282 (*1 *1 *1) (-12 (-5 *1 (-1078 *2 *3)) (-14 *2 (-854)) (-4 *3 (-975)))) (-3745 (*1 *1 *1) (-12 (-5 *1 (-1078 *2 *3)) (-14 *2 (-854)) (-4 *3 (-975)))) (-2131 (*1 *1 *1 *1) (-12 (-5 *1 (-1078 *2 *3)) (-14 *2 (-854)) (-4 *3 (-975)))) (-2131 (*1 *1 *2) (-12 (-5 *2 (-591 (-1078 *3 *4))) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)) (-4 *4 (-975)))) (-2288 (*1 *2 *1) (-12 (-5 *2 (-591 (-1078 *3 *4))) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)) (-4 *4 (-975)))) (-3184 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 (-712))) (-5 *3 (-876 *5)) (-4 *5 (-975)) (-5 *1 (-1078 *4 *5)) (-14 *4 (-854)))) (-1875 (*1 *1 *1 *2) (-12 (-5 *2 (-876 *4)) (-4 *4 (-975)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)))) (-2633 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-876 *5)) (-5 *3 (-712)) (-4 *5 (-975)) (-5 *1 (-1078 *4 *5)) (-14 *4 (-854)))) (-1869 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 (-712))) (-5 *3 (-876 *5)) (-4 *5 (-975)) (-5 *1 (-1078 *4 *5)) (-14 *4 (-854)))) (-3184 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 (-712))) (-5 *3 (-712)) (-5 *1 (-1078 *4 *5)) (-14 *4 (-854)) (-4 *5 (-975)))) (-1869 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 (-712))) (-5 *3 (-712)) (-5 *1 (-1078 *4 *5)) (-14 *4 (-854)) (-4 *5 (-975)))) (-3184 (*1 *2 *1 *3) (-12 (-5 *3 (-876 *5)) (-4 *5 (-975)) (-5 *2 (-712)) (-5 *1 (-1078 *4 *5)) (-14 *4 (-854)))) (-1869 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-712)) (-5 *3 (-876 *5)) (-4 *5 (-975)) (-5 *1 (-1078 *4 *5)) (-14 *4 (-854)))) (-2582 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 (-712))) (-5 *3 (-108)) (-5 *1 (-1078 *4 *5)) (-14 *4 (-854)) (-4 *5 (-975)))) (-2416 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-591 (-712))) (-5 *3 (-159)) (-5 *1 (-1078 *4 *5)) (-14 *4 (-854)) (-4 *5 (-975)))) (-3314 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-712))) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)) (-4 *4 (-975)))) (-3623 (*1 *2 *1) (-12 (-5 *2 (-876 *4)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)) (-4 *4 (-975)))) (-1297 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)) (-4 *4 (-975)))) (-1239 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)) (-4 *4 (-975)))) (-2949 (*1 *2 *1) (-12 (-5 *2 (-159)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)) (-4 *4 (-975)))) (-2841 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)) (-4 *4 (-975)))) (-1811 (*1 *1 *1) (-12 (-5 *1 (-1078 *2 *3)) (-14 *2 (-854)) (-4 *3 (-975)))) (-1962 (*1 *2 *1) (-12 (-5 *2 (-591 (-876 *4))) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854)) (-4 *4 (-975)))))
+(-13 (-1018) (-10 -8 (-15 -1203 ((-108) $)) (-15 -1573 ((-108) $)) (-15 -4147 ((-108) $)) (-15 -1268 ($)) (-15 -3439 ($)) (-15 -3659 ($ $)) (-15 -4181 ($ $ (-712))) (-15 -3860 ((-591 $) $)) (-15 -1803 ((-712) $)) (-15 -3282 ($ $)) (-15 -3745 ($ $)) (-15 -2131 ($ $ $)) (-15 -2131 ($ (-591 $))) (-15 -2288 ((-591 $) $)) (-15 -3184 ($ $ (-591 (-712)) (-876 |#2|))) (-15 -1875 ($ $ (-876 |#2|))) (-15 -2633 ($ $ $ (-876 |#2|) (-712))) (-15 -1869 ($ $ (-591 (-712)) (-876 |#2|))) (-15 -3184 ($ $ (-591 (-712)) (-712))) (-15 -1869 ($ $ (-591 (-712)) (-712))) (-15 -3184 ((-712) $ (-876 |#2|))) (-15 -1869 ($ $ (-712) (-876 |#2|))) (-15 -2582 ($ $ (-591 (-712)) (-108))) (-15 -2416 ($ $ (-591 (-712)) (-159))) (-15 -3314 ($ $ (-591 (-712)))) (-15 -3623 ((-876 |#2|) $)) (-15 -1297 ((-712) $)) (-15 -1239 ((-108) $)) (-15 -2949 ((-159) $)) (-15 -2841 ((-712) $)) (-15 -1811 ($ $)) (-15 -1962 ((-591 (-876 |#2|)) $))))
+((-3008 (((-108) $ $) NIL)) (-3246 ((|#2| $) 11)) (-3239 ((|#1| $) 10)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3036 (($ |#1| |#2|) 9)) (-3022 (((-796) $) 16)) (-4096 (((-108) $ $) NIL)))
+(((-1079 |#1| |#2|) (-13 (-1018) (-10 -8 (-15 -3036 ($ |#1| |#2|)) (-15 -3239 (|#1| $)) (-15 -3246 (|#2| $)))) (-1018) (-1018)) (T -1079))
+((-3036 (*1 *1 *2 *3) (-12 (-5 *1 (-1079 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))) (-3239 (*1 *2 *1) (-12 (-4 *2 (-1018)) (-5 *1 (-1079 *2 *3)) (-4 *3 (-1018)))) (-3246 (*1 *2 *1) (-12 (-4 *2 (-1018)) (-5 *1 (-1079 *3 *2)) (-4 *3 (-1018)))))
+(-13 (-1018) (-10 -8 (-15 -3036 ($ |#1| |#2|)) (-15 -3239 (|#1| $)) (-15 -3246 (|#2| $))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1508 (((-1087 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-286)) (|has| |#1| (-341))))) (-1507 (((-591 (-1003)) $) NIL)) (-2037 (((-1089) $) 11)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1087 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))) (|has| |#1| (-517))))) (-3706 (($ $) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1087 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))) (|has| |#1| (-517))))) (-1715 (((-108) $) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1087 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))) (|has| |#1| (-517))))) (-2121 (($ $ (-525)) NIL) (($ $ (-525) (-525)) 66)) (-1631 (((-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))) $) NIL)) (-1219 (((-1087 |#1| |#2| |#3|) $) 36)) (-3347 (((-3 (-1087 |#1| |#2| |#3|) "failed") $) 29)) (-1569 (((-1087 |#1| |#2| |#3|) $) 30)) (-1987 (($ $) 107 (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) 83 (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))))) (-1291 (($ $) NIL (|has| |#1| (-341)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-341)))) (-1361 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))))) (-1947 (((-108) $ $) NIL (|has| |#1| (-341)))) (-1431 (($ $) 103 (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) 79 (|has| |#1| (-37 (-385 (-525)))))) (-3329 (((-525) $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))))) (-3682 (($ (-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|)))) NIL)) (-1719 (($ $) 111 (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) 87 (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-1087 |#1| |#2| |#3|) "failed") $) 31) (((-3 (-1089) "failed") $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-966 (-1089))) (|has| |#1| (-341)))) (((-3 (-385 (-525)) "failed") $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-966 (-525))) (|has| |#1| (-341)))) (((-3 (-525) "failed") $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-966 (-525))) (|has| |#1| (-341))))) (-3528 (((-1087 |#1| |#2| |#3|) $) 131) (((-1089) $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-966 (-1089))) (|has| |#1| (-341)))) (((-385 (-525)) $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-966 (-525))) (|has| |#1| (-341)))) (((-525) $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-966 (-525))) (|has| |#1| (-341))))) (-1900 (($ $) 34) (($ (-525) $) 35)) (-2129 (($ $ $) NIL (|has| |#1| (-341)))) (-1710 (($ $) NIL)) (-3305 (((-631 (-1087 |#1| |#2| |#3|)) (-631 $)) NIL (|has| |#1| (-341))) (((-2 (|:| -4057 (-631 (-1087 |#1| |#2| |#3|))) (|:| |vec| (-1171 (-1087 |#1| |#2| |#3|)))) (-631 $) (-1171 $)) NIL (|has| |#1| (-341))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-587 (-525))) (|has| |#1| (-341)))) (((-631 (-525)) (-631 $)) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-587 (-525))) (|has| |#1| (-341))))) (-4163 (((-3 $ "failed") $) 48)) (-3267 (((-385 (-885 |#1|)) $ (-525)) 65 (|has| |#1| (-517))) (((-385 (-885 |#1|)) $ (-525) (-525)) 67 (|has| |#1| (-517)))) (-3377 (($) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-510)) (|has| |#1| (-341))))) (-2110 (($ $ $) NIL (|has| |#1| (-341)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#1| (-341)))) (-2744 (((-108) $) NIL (|has| |#1| (-341)))) (-2134 (((-108) $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))))) (-3123 (((-108) $) 25)) (-1784 (($) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-819 (-525))) (|has| |#1| (-341)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-819 (-357))) (|has| |#1| (-341))))) (-3873 (((-525) $) NIL) (((-525) $ (-525)) 24)) (-2824 (((-108) $) NIL)) (-2368 (($ $) NIL (|has| |#1| (-341)))) (-1738 (((-1087 |#1| |#2| |#3|) $) 38 (|has| |#1| (-341)))) (-3956 (($ $ (-525)) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2085 (((-3 $ "failed") $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-1065)) (|has| |#1| (-341))))) (-2732 (((-108) $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))))) (-3111 (($ $ (-854)) NIL)) (-3264 (($ (-1 |#1| (-525)) $) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-525)) 18) (($ $ (-1003) (-525)) NIL) (($ $ (-591 (-1003)) (-591 (-525))) NIL)) (-3741 (($ $ $) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1087 |#1| |#2| |#3|) (-788)) (|has| |#1| (-341)))))) (-2478 (($ $ $) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1087 |#1| |#2| |#3|) (-788)) (|has| |#1| (-341)))))) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1087 |#1| |#2| |#3|) (-1087 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-341)))) (-1488 (($ $) 72 (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-1581 (($ (-525) (-1087 |#1| |#2| |#3|)) 33)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL (|has| |#1| (-341)))) (-4141 (($ $) 70 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089)) NIL (-3321 (-12 (|has| |#1| (-15 -4141 (|#1| |#1| (-1089)))) (|has| |#1| (-15 -1507 ((-591 (-1089)) |#1|))) (|has| |#1| (-37 (-385 (-525))))) (-12 (|has| |#1| (-29 (-525))) (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-891)) (|has| |#1| (-1111))))) (($ $ (-1167 |#2|)) 71 (|has| |#1| (-37 (-385 (-525)))))) (-3506 (($) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-1065)) (|has| |#1| (-341))) CONST)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-341)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-3093 (($ $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-286)) (|has| |#1| (-341))))) (-2662 (((-1087 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-510)) (|has| |#1| (-341))))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))))) (-1348 (((-396 $) $) NIL (|has| |#1| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2784 (($ $ (-525)) 145)) (-2089 (((-3 $ "failed") $ $) 49 (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1087 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))) (|has| |#1| (-517))))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-1409 (($ $) 73 (|has| |#1| (-37 (-385 (-525)))))) (-4132 (((-1070 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-525))))) (($ $ (-1089) (-1087 |#1| |#2| |#3|)) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-486 (-1089) (-1087 |#1| |#2| |#3|))) (|has| |#1| (-341)))) (($ $ (-591 (-1089)) (-591 (-1087 |#1| |#2| |#3|))) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-486 (-1089) (-1087 |#1| |#2| |#3|))) (|has| |#1| (-341)))) (($ $ (-591 (-273 (-1087 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-288 (-1087 |#1| |#2| |#3|))) (|has| |#1| (-341)))) (($ $ (-273 (-1087 |#1| |#2| |#3|))) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-288 (-1087 |#1| |#2| |#3|))) (|has| |#1| (-341)))) (($ $ (-1087 |#1| |#2| |#3|) (-1087 |#1| |#2| |#3|)) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-288 (-1087 |#1| |#2| |#3|))) (|has| |#1| (-341)))) (($ $ (-591 (-1087 |#1| |#2| |#3|)) (-591 (-1087 |#1| |#2| |#3|))) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-288 (-1087 |#1| |#2| |#3|))) (|has| |#1| (-341))))) (-1712 (((-712) $) NIL (|has| |#1| (-341)))) (-3164 ((|#1| $ (-525)) NIL) (($ $ $) 54 (|has| (-525) (-1030))) (($ $ (-1087 |#1| |#2| |#3|)) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-265 (-1087 |#1| |#2| |#3|) (-1087 |#1| |#2| |#3|))) (|has| |#1| (-341))))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-3266 (($ $ (-1 (-1087 |#1| |#2| |#3|) (-1087 |#1| |#2| |#3|))) NIL (|has| |#1| (-341))) (($ $ (-1 (-1087 |#1| |#2| |#3|) (-1087 |#1| |#2| |#3|)) (-712)) NIL (|has| |#1| (-341))) (($ $ (-1167 |#2|)) 51) (($ $ (-712)) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $) 50 (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-1089) (-712)) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-591 (-1089))) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-1089)) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))))) (-2966 (($ $) NIL (|has| |#1| (-341)))) (-1754 (((-1087 |#1| |#2| |#3|) $) 41 (|has| |#1| (-341)))) (-1316 (((-525) $) 37)) (-1502 (($ $) 113 (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) 89 (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) 109 (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) 85 (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) 105 (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) 81 (|has| |#1| (-37 (-385 (-525)))))) (-1408 (((-501) $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-566 (-501))) (|has| |#1| (-341)))) (((-357) $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-951)) (|has| |#1| (-341)))) (((-205) $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-951)) (|has| |#1| (-341)))) (((-825 (-357)) $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-566 (-825 (-357)))) (|has| |#1| (-341)))) (((-825 (-525)) $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-566 (-825 (-525)))) (|has| |#1| (-341))))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| (-1087 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))))) (-3571 (($ $) NIL)) (-3022 (((-796) $) 149) (($ (-525)) NIL) (($ |#1|) NIL (|has| |#1| (-160))) (($ (-1087 |#1| |#2| |#3|)) 27) (($ (-1167 |#2|)) 23) (($ (-1089)) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-966 (-1089))) (|has| |#1| (-341)))) (($ $) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1087 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))) (|has| |#1| (-517)))) (($ (-385 (-525))) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-966 (-525))) (|has| |#1| (-341))) (|has| |#1| (-37 (-385 (-525))))))) (-2560 ((|#1| $ (-525)) 68)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| (-1087 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))) (-12 (|has| (-1087 |#1| |#2| |#3|) (-136)) (|has| |#1| (-341))) (|has| |#1| (-136))))) (-2128 (((-712)) NIL)) (-1682 ((|#1| $) 12)) (-3862 (((-1087 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-510)) (|has| |#1| (-341))))) (-1563 (($ $) 119 (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) 95 (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1087 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))) (|has| |#1| (-517))))) (-1515 (($ $) 115 (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) 91 (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) 123 (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) 99 (|has| |#1| (-37 (-385 (-525)))))) (-2176 ((|#1| $ (-525)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-525)))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3277 (($ $) 125 (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) 101 (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) 121 (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) 97 (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) 117 (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) 93 (|has| |#1| (-37 (-385 (-525)))))) (-1539 (($ $) NIL (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341)))) (-4191 (($) 20 T CONST)) (-4197 (($) 16 T CONST)) (-4196 (($ $ (-1 (-1087 |#1| |#2| |#3|) (-1087 |#1| |#2| |#3|))) NIL (|has| |#1| (-341))) (($ $ (-1 (-1087 |#1| |#2| |#3|) (-1087 |#1| |#2| |#3|)) (-712)) NIL (|has| |#1| (-341))) (($ $ (-712)) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-1089) (-712)) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-591 (-1089))) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-1089)) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))))) (-4135 (((-108) $ $) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1087 |#1| |#2| |#3|) (-788)) (|has| |#1| (-341)))))) (-4119 (((-108) $ $) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1087 |#1| |#2| |#3|) (-788)) (|has| |#1| (-341)))))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1087 |#1| |#2| |#3|) (-788)) (|has| |#1| (-341)))))) (-4112 (((-108) $ $) NIL (-3321 (-12 (|has| (-1087 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1087 |#1| |#2| |#3|) (-788)) (|has| |#1| (-341)))))) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341))) (($ $ $) 44 (|has| |#1| (-341))) (($ (-1087 |#1| |#2| |#3|) (-1087 |#1| |#2| |#3|)) 45 (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) 21)) (** (($ $ (-854)) NIL) (($ $ (-712)) 53) (($ $ (-525)) NIL (|has| |#1| (-341))) (($ $ $) 74 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 128 (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 32) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1087 |#1| |#2| |#3|)) 43 (|has| |#1| (-341))) (($ (-1087 |#1| |#2| |#3|) $) 42 (|has| |#1| (-341))) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))))
+(((-1080 |#1| |#2| |#3|) (-13 (-1133 |#1| (-1087 |#1| |#2| |#3|)) (-10 -8 (-15 -3022 ($ (-1167 |#2|))) (-15 -3266 ($ $ (-1167 |#2|))) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1167 |#2|))) |%noBranch|))) (-975) (-1089) |#1|) (T -1080))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1080 *3 *4 *5)) (-4 *3 (-975)) (-14 *5 *3))) (-3266 (*1 *1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1080 *3 *4 *5)) (-4 *3 (-975)) (-14 *5 *3))) (-4141 (*1 *1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1080 *3 *4 *5)) (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-14 *5 *3))))
+(-13 (-1133 |#1| (-1087 |#1| |#2| |#3|)) (-10 -8 (-15 -3022 ($ (-1167 |#2|))) (-15 -3266 ($ $ (-1167 |#2|))) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1167 |#2|))) |%noBranch|)))
+((-2161 ((|#2| |#2| (-1011 |#2|)) 26) ((|#2| |#2| (-1089)) 28)))
+(((-1081 |#1| |#2|) (-10 -7 (-15 -2161 (|#2| |#2| (-1089))) (-15 -2161 (|#2| |#2| (-1011 |#2|)))) (-13 (-517) (-788) (-966 (-525)) (-587 (-525))) (-13 (-408 |#1|) (-149) (-27) (-1111))) (T -1081))
+((-2161 (*1 *2 *2 *3) (-12 (-5 *3 (-1011 *2)) (-4 *2 (-13 (-408 *4) (-149) (-27) (-1111))) (-4 *4 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-1081 *4 *2)))) (-2161 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-517) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-1081 *4 *2)) (-4 *2 (-13 (-408 *4) (-149) (-27) (-1111))))))
+(-10 -7 (-15 -2161 (|#2| |#2| (-1089))) (-15 -2161 (|#2| |#2| (-1011 |#2|))))
+((-2161 (((-3 (-385 (-885 |#1|)) (-294 |#1|)) (-385 (-885 |#1|)) (-1011 (-385 (-885 |#1|)))) 31) (((-385 (-885 |#1|)) (-885 |#1|) (-1011 (-885 |#1|))) 44) (((-3 (-385 (-885 |#1|)) (-294 |#1|)) (-385 (-885 |#1|)) (-1089)) 33) (((-385 (-885 |#1|)) (-885 |#1|) (-1089)) 36)))
+(((-1082 |#1|) (-10 -7 (-15 -2161 ((-385 (-885 |#1|)) (-885 |#1|) (-1089))) (-15 -2161 ((-3 (-385 (-885 |#1|)) (-294 |#1|)) (-385 (-885 |#1|)) (-1089))) (-15 -2161 ((-385 (-885 |#1|)) (-885 |#1|) (-1011 (-885 |#1|)))) (-15 -2161 ((-3 (-385 (-885 |#1|)) (-294 |#1|)) (-385 (-885 |#1|)) (-1011 (-385 (-885 |#1|)))))) (-13 (-517) (-788) (-966 (-525)))) (T -1082))
+((-2161 (*1 *2 *3 *4) (-12 (-5 *4 (-1011 (-385 (-885 *5)))) (-5 *3 (-385 (-885 *5))) (-4 *5 (-13 (-517) (-788) (-966 (-525)))) (-5 *2 (-3 *3 (-294 *5))) (-5 *1 (-1082 *5)))) (-2161 (*1 *2 *3 *4) (-12 (-5 *4 (-1011 (-885 *5))) (-5 *3 (-885 *5)) (-4 *5 (-13 (-517) (-788) (-966 (-525)))) (-5 *2 (-385 *3)) (-5 *1 (-1082 *5)))) (-2161 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-4 *5 (-13 (-517) (-788) (-966 (-525)))) (-5 *2 (-3 (-385 (-885 *5)) (-294 *5))) (-5 *1 (-1082 *5)) (-5 *3 (-385 (-885 *5))))) (-2161 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-4 *5 (-13 (-517) (-788) (-966 (-525)))) (-5 *2 (-385 (-885 *5))) (-5 *1 (-1082 *5)) (-5 *3 (-885 *5)))))
+(-10 -7 (-15 -2161 ((-385 (-885 |#1|)) (-885 |#1|) (-1089))) (-15 -2161 ((-3 (-385 (-885 |#1|)) (-294 |#1|)) (-385 (-885 |#1|)) (-1089))) (-15 -2161 ((-385 (-885 |#1|)) (-885 |#1|) (-1011 (-885 |#1|)))) (-15 -2161 ((-3 (-385 (-885 |#1|)) (-294 |#1|)) (-385 (-885 |#1|)) (-1011 (-385 (-885 |#1|))))))
+((-1340 (((-1085 |#2|) (-1 |#2| |#1|) (-1085 |#1|)) 13)))
+(((-1083 |#1| |#2|) (-10 -7 (-15 -1340 ((-1085 |#2|) (-1 |#2| |#1|) (-1085 |#1|)))) (-975) (-975)) (T -1083))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1085 *5)) (-4 *5 (-975)) (-4 *6 (-975)) (-5 *2 (-1085 *6)) (-5 *1 (-1083 *5 *6)))))
+(-10 -7 (-15 -1340 ((-1085 |#2|) (-1 |#2| |#1|) (-1085 |#1|))))
+((-2827 (((-396 (-1085 (-385 |#4|))) (-1085 (-385 |#4|))) 51)) (-1348 (((-396 (-1085 (-385 |#4|))) (-1085 (-385 |#4|))) 52)))
+(((-1084 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1348 ((-396 (-1085 (-385 |#4|))) (-1085 (-385 |#4|)))) (-15 -2827 ((-396 (-1085 (-385 |#4|))) (-1085 (-385 |#4|))))) (-734) (-788) (-429) (-882 |#3| |#1| |#2|)) (T -1084))
+((-2827 (*1 *2 *3) (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-429)) (-4 *7 (-882 *6 *4 *5)) (-5 *2 (-396 (-1085 (-385 *7)))) (-5 *1 (-1084 *4 *5 *6 *7)) (-5 *3 (-1085 (-385 *7))))) (-1348 (*1 *2 *3) (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-429)) (-4 *7 (-882 *6 *4 *5)) (-5 *2 (-396 (-1085 (-385 *7)))) (-5 *1 (-1084 *4 *5 *6 *7)) (-5 *3 (-1085 (-385 *7))))))
+(-10 -7 (-15 -1348 ((-396 (-1085 (-385 |#4|))) (-1085 (-385 |#4|)))) (-15 -2827 ((-396 (-1085 (-385 |#4|))) (-1085 (-385 |#4|)))))
+((-3008 (((-108) $ $) 139)) (-1800 (((-108) $) 30)) (-3928 (((-1171 |#1|) $ (-712)) NIL)) (-1507 (((-591 (-1003)) $) NIL)) (-1390 (($ (-1085 |#1|)) NIL)) (-1312 (((-1085 $) $ (-1003)) 60) (((-1085 |#1|) $) 49)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) 134 (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-4090 (((-712) $) NIL) (((-712) $ (-591 (-1003))) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-2944 (($ $ $) 128 (|has| |#1| (-517)))) (-1965 (((-396 (-1085 $)) (-1085 $)) 73 (|has| |#1| (-842)))) (-1291 (($ $) NIL (|has| |#1| (-429)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) 93 (|has| |#1| (-842)))) (-1947 (((-108) $ $) NIL (|has| |#1| (-341)))) (-2229 (($ $ (-712)) 42)) (-3159 (($ $ (-712)) 43)) (-2288 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-429)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#1| "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-1003) "failed") $) NIL)) (-3528 ((|#1| $) NIL) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-1003) $) NIL)) (-2805 (($ $ $ (-1003)) NIL (|has| |#1| (-160))) ((|#1| $ $) 130 (|has| |#1| (-160)))) (-2129 (($ $ $) NIL (|has| |#1| (-341)))) (-1710 (($ $) 58)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) NIL) (((-631 |#1|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-2110 (($ $ $) NIL (|has| |#1| (-341)))) (-3106 (($ $ $) 106)) (-2273 (($ $ $) NIL (|has| |#1| (-517)))) (-3867 (((-2 (|:| -3482 |#1|) (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-517)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#1| (-341)))) (-3208 (($ $) 135 (|has| |#1| (-429))) (($ $ (-1003)) NIL (|has| |#1| (-429)))) (-1695 (((-591 $) $) NIL)) (-2744 (((-108) $) NIL (|has| |#1| (-842)))) (-2056 (($ $ |#1| (-712) $) 47)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| (-1003) (-819 (-357))) (|has| |#1| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| (-1003) (-819 (-525))) (|has| |#1| (-819 (-525)))))) (-2927 (((-796) $ (-796)) 119)) (-3873 (((-712) $ $) NIL (|has| |#1| (-517)))) (-2824 (((-108) $) 32)) (-4010 (((-712) $) NIL)) (-2085 (((-3 $ "failed") $) NIL (|has| |#1| (-1065)))) (-1493 (($ (-1085 |#1|) (-1003)) 51) (($ (-1085 $) (-1003)) 67)) (-3111 (($ $ (-712)) 34)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-712)) 65) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ (-1003)) NIL) (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 123)) (-2624 (((-712) $) NIL) (((-712) $ (-1003)) NIL) (((-591 (-712)) $ (-591 (-1003))) NIL)) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-4015 (($ (-1 (-712) (-712)) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-1525 (((-1085 |#1|) $) NIL)) (-2254 (((-3 (-1003) "failed") $) NIL)) (-1661 (($ $) NIL)) (-1678 ((|#1| $) 54)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) NIL (|has| |#1| (-429)))) (-2339 (((-1072) $) NIL)) (-3070 (((-2 (|:| -2963 $) (|:| -3407 $)) $ (-712)) 41)) (-3376 (((-3 (-591 $) "failed") $) NIL)) (-2010 (((-3 (-591 $) "failed") $) NIL)) (-2292 (((-3 (-2 (|:| |var| (-1003)) (|:| -2008 (-712))) "failed") $) NIL)) (-4141 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3506 (($) NIL (|has| |#1| (-1065)) CONST)) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) 33)) (-1646 ((|#1| $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 81 (|has| |#1| (-429)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-429))) (($ $ $) 137 (|has| |#1| (-429)))) (-3678 (($ $ (-712) |#1| $) 101)) (-2916 (((-396 (-1085 $)) (-1085 $)) 79 (|has| |#1| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) 78 (|has| |#1| (-842)))) (-1348 (((-396 $) $) 86 (|has| |#1| (-842)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2089 (((-3 $ "failed") $ |#1|) 133 (|has| |#1| (-517))) (((-3 $ "failed") $ $) 102 (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-4132 (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-1003) |#1|) NIL) (($ $ (-591 (-1003)) (-591 |#1|)) NIL) (($ $ (-1003) $) NIL) (($ $ (-591 (-1003)) (-591 $)) NIL)) (-1712 (((-712) $) NIL (|has| |#1| (-341)))) (-3164 ((|#1| $ |#1|) 121) (($ $ $) 122) (((-385 $) (-385 $) (-385 $)) NIL (|has| |#1| (-517))) ((|#1| (-385 $) |#1|) NIL (|has| |#1| (-341))) (((-385 $) $ (-385 $)) NIL (|has| |#1| (-517)))) (-3579 (((-3 $ "failed") $ (-712)) 37)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 140 (|has| |#1| (-341)))) (-2976 (($ $ (-1003)) NIL (|has| |#1| (-160))) ((|#1| $) 126 (|has| |#1| (-160)))) (-3266 (($ $ (-1003)) NIL) (($ $ (-591 (-1003))) NIL) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL) (($ $ (-712)) NIL) (($ $) NIL) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-1316 (((-712) $) 56) (((-712) $ (-1003)) NIL) (((-591 (-712)) $ (-591 (-1003))) NIL)) (-1408 (((-825 (-357)) $) NIL (-12 (|has| (-1003) (-566 (-825 (-357)))) (|has| |#1| (-566 (-825 (-357)))))) (((-825 (-525)) $) NIL (-12 (|has| (-1003) (-566 (-825 (-525)))) (|has| |#1| (-566 (-825 (-525)))))) (((-501) $) NIL (-12 (|has| (-1003) (-566 (-501))) (|has| |#1| (-566 (-501)))))) (-2668 ((|#1| $) 132 (|has| |#1| (-429))) (($ $ (-1003)) NIL (|has| |#1| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#1| (-842))))) (-2413 (((-3 $ "failed") $ $) NIL (|has| |#1| (-517))) (((-3 (-385 $) "failed") (-385 $) $) NIL (|has| |#1| (-517)))) (-3022 (((-796) $) 120) (($ (-525)) NIL) (($ |#1|) 55) (($ (-1003)) NIL) (($ (-385 (-525))) NIL (-3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-966 (-385 (-525)))))) (($ $) NIL (|has| |#1| (-517)))) (-3654 (((-591 |#1|) $) NIL)) (-2560 ((|#1| $ (-712)) NIL) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#1| (-842))) (|has| |#1| (-136))))) (-2128 (((-712)) NIL)) (-1698 (($ $ $ (-712)) 28 (|has| |#1| (-160)))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-3710 (($ $ (-854)) 15) (($ $ (-712)) 16)) (-4191 (($) 17 T CONST)) (-4197 (($) 18 T CONST)) (-4196 (($ $ (-1003)) NIL) (($ $ (-591 (-1003))) NIL) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL) (($ $ (-712)) NIL) (($ $) NIL) (($ $ (-1089)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) 98)) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4173 (($ $ |#1|) 141 (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) 68)) (** (($ $ (-854)) 14) (($ $ (-712)) 12)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 27) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) 104) (($ $ |#1|) NIL)))
+(((-1085 |#1|) (-13 (-1147 |#1|) (-10 -8 (-15 -2927 ((-796) $ (-796))) (-15 -3678 ($ $ (-712) |#1| $)))) (-975)) (T -1085))
+((-2927 (*1 *2 *1 *2) (-12 (-5 *2 (-796)) (-5 *1 (-1085 *3)) (-4 *3 (-975)))) (-3678 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-712)) (-5 *1 (-1085 *3)) (-4 *3 (-975)))))
+(-13 (-1147 |#1|) (-10 -8 (-15 -2927 ((-796) $ (-796))) (-15 -3678 ($ $ (-712) |#1| $))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1507 (((-591 (-1003)) $) NIL)) (-2037 (((-1089) $) 11)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-2121 (($ $ (-385 (-525))) NIL) (($ $ (-385 (-525)) (-385 (-525))) NIL)) (-1631 (((-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#1|))) $) NIL)) (-1987 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL (|has| |#1| (-341)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-341)))) (-1361 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1947 (((-108) $ $) NIL (|has| |#1| (-341)))) (-1431 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3682 (($ (-712) (-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#1|)))) NIL)) (-1719 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-1080 |#1| |#2| |#3|) "failed") $) 33) (((-3 (-1087 |#1| |#2| |#3|) "failed") $) 36)) (-3528 (((-1080 |#1| |#2| |#3|) $) NIL) (((-1087 |#1| |#2| |#3|) $) NIL)) (-2129 (($ $ $) NIL (|has| |#1| (-341)))) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-1703 (((-385 (-525)) $) 55)) (-2110 (($ $ $) NIL (|has| |#1| (-341)))) (-1597 (($ (-385 (-525)) (-1080 |#1| |#2| |#3|)) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#1| (-341)))) (-2744 (((-108) $) NIL (|has| |#1| (-341)))) (-3123 (((-108) $) NIL)) (-1784 (($) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3873 (((-385 (-525)) $) NIL) (((-385 (-525)) $ (-385 (-525))) NIL)) (-2824 (((-108) $) NIL)) (-3956 (($ $ (-525)) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3111 (($ $ (-854)) NIL) (($ $ (-385 (-525))) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-385 (-525))) 20) (($ $ (-1003) (-385 (-525))) NIL) (($ $ (-591 (-1003)) (-591 (-385 (-525)))) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-1488 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-2842 (((-1080 |#1| |#2| |#3|) $) 41)) (-1944 (((-3 (-1080 |#1| |#2| |#3|) "failed") $) NIL)) (-1581 (((-1080 |#1| |#2| |#3|) $) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL (|has| |#1| (-341)))) (-4141 (($ $) 39 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089)) NIL (-3321 (-12 (|has| |#1| (-15 -4141 (|#1| |#1| (-1089)))) (|has| |#1| (-15 -1507 ((-591 (-1089)) |#1|))) (|has| |#1| (-37 (-385 (-525))))) (-12 (|has| |#1| (-29 (-525))) (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-891)) (|has| |#1| (-1111))))) (($ $ (-1167 |#2|)) 40 (|has| |#1| (-37 (-385 (-525)))))) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-341)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-1348 (((-396 $) $) NIL (|has| |#1| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2784 (($ $ (-385 (-525))) NIL)) (-2089 (((-3 $ "failed") $ $) NIL (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-1409 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-4132 (((-1070 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-385 (-525))))))) (-1712 (((-712) $) NIL (|has| |#1| (-341)))) (-3164 ((|#1| $ (-385 (-525))) NIL) (($ $ $) NIL (|has| (-385 (-525)) (-1030)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $ (-1167 |#2|)) 38)) (-1316 (((-385 (-525)) $) NIL)) (-1502 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3571 (($ $) NIL)) (-3022 (((-796) $) 58) (($ (-525)) NIL) (($ |#1|) NIL (|has| |#1| (-160))) (($ (-1080 |#1| |#2| |#3|)) 30) (($ (-1087 |#1| |#2| |#3|)) 31) (($ (-1167 |#2|)) 26) (($ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $) NIL (|has| |#1| (-517)))) (-2560 ((|#1| $ (-385 (-525))) NIL)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) NIL)) (-1682 ((|#1| $) 12)) (-1563 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1515 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2176 ((|#1| $ (-385 (-525))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-385 (-525))))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3277 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341)))) (-4191 (($) 22 T CONST)) (-4197 (($) 16 T CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) 24)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))))
+(((-1086 |#1| |#2| |#3|) (-13 (-1154 |#1| (-1080 |#1| |#2| |#3|)) (-966 (-1087 |#1| |#2| |#3|)) (-10 -8 (-15 -3022 ($ (-1167 |#2|))) (-15 -3266 ($ $ (-1167 |#2|))) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1167 |#2|))) |%noBranch|))) (-975) (-1089) |#1|) (T -1086))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1086 *3 *4 *5)) (-4 *3 (-975)) (-14 *5 *3))) (-3266 (*1 *1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1086 *3 *4 *5)) (-4 *3 (-975)) (-14 *5 *3))) (-4141 (*1 *1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1086 *3 *4 *5)) (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-14 *5 *3))))
+(-13 (-1154 |#1| (-1080 |#1| |#2| |#3|)) (-966 (-1087 |#1| |#2| |#3|)) (-10 -8 (-15 -3022 ($ (-1167 |#2|))) (-15 -3266 ($ $ (-1167 |#2|))) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1167 |#2|))) |%noBranch|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 125)) (-1507 (((-591 (-1003)) $) NIL)) (-2037 (((-1089) $) 116)) (-3449 (((-1144 |#2| |#1|) $ (-712)) 63)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-2121 (($ $ (-712)) 79) (($ $ (-712) (-712)) 76)) (-1631 (((-1070 (-2 (|:| |k| (-712)) (|:| |c| |#1|))) $) 102)) (-1987 (($ $) 169 (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) 145 (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1361 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1431 (($ $) 165 (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) 141 (|has| |#1| (-37 (-385 (-525)))))) (-3682 (($ (-1070 (-2 (|:| |k| (-712)) (|:| |c| |#1|)))) 115) (($ (-1070 |#1|)) 110)) (-1719 (($ $) 173 (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) 149 (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) NIL T CONST)) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) 23)) (-2475 (($ $) 26)) (-4215 (((-885 |#1|) $ (-712)) 75) (((-885 |#1|) $ (-712) (-712)) 77)) (-3123 (((-108) $) 120)) (-1784 (($) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3873 (((-712) $) 122) (((-712) $ (-712)) 124)) (-2824 (((-108) $) NIL)) (-3956 (($ $ (-525)) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3111 (($ $ (-854)) NIL)) (-3264 (($ (-1 |#1| (-525)) $) NIL)) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-712)) 13) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-1488 (($ $) 131 (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-4141 (($ $) 129 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089)) NIL (-3321 (-12 (|has| |#1| (-15 -4141 (|#1| |#1| (-1089)))) (|has| |#1| (-15 -1507 ((-591 (-1089)) |#1|))) (|has| |#1| (-37 (-385 (-525))))) (-12 (|has| |#1| (-29 (-525))) (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-891)) (|has| |#1| (-1111))))) (($ $ (-1167 |#2|)) 130 (|has| |#1| (-37 (-385 (-525)))))) (-2047 (((-1036) $) NIL)) (-2784 (($ $ (-712)) 15)) (-2089 (((-3 $ "failed") $ $) 24 (|has| |#1| (-517)))) (-1409 (($ $) 133 (|has| |#1| (-37 (-385 (-525)))))) (-4132 (((-1070 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-712)))))) (-3164 ((|#1| $ (-712)) 119) (($ $ $) 128 (|has| (-712) (-1030)))) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-712) |#1|)))) (($ $) 27 (|has| |#1| (-15 * (|#1| (-712) |#1|)))) (($ $ (-1167 |#2|)) 29)) (-1316 (((-712) $) NIL)) (-1502 (($ $) 175 (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) 151 (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) 171 (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) 147 (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) 167 (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) 143 (|has| |#1| (-37 (-385 (-525)))))) (-3571 (($ $) NIL)) (-3022 (((-796) $) 201) (($ (-525)) NIL) (($ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $) NIL (|has| |#1| (-517))) (($ |#1|) 126 (|has| |#1| (-160))) (($ (-1144 |#2| |#1|)) 51) (($ (-1167 |#2|)) 32)) (-3654 (((-1070 |#1|) $) 98)) (-2560 ((|#1| $ (-712)) 118)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) NIL)) (-1682 ((|#1| $) 54)) (-1563 (($ $) 181 (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) 157 (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1515 (($ $) 177 (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) 153 (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) 185 (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) 161 (|has| |#1| (-37 (-385 (-525)))))) (-2176 ((|#1| $ (-712)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-712)))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3277 (($ $) 187 (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) 163 (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) 183 (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) 159 (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) 179 (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) 155 (|has| |#1| (-37 (-385 (-525)))))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 17 T CONST)) (-4197 (($) 19 T CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-712) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-712) |#1|))))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) 194)) (-4156 (($ $ $) 31)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ |#1|) 198 (|has| |#1| (-341))) (($ $ $) 134 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 137 (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 132) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))))
+(((-1087 |#1| |#2| |#3|) (-13 (-1162 |#1|) (-10 -8 (-15 -3022 ($ (-1144 |#2| |#1|))) (-15 -3449 ((-1144 |#2| |#1|) $ (-712))) (-15 -3022 ($ (-1167 |#2|))) (-15 -3266 ($ $ (-1167 |#2|))) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1167 |#2|))) |%noBranch|))) (-975) (-1089) |#1|) (T -1087))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1144 *4 *3)) (-4 *3 (-975)) (-14 *4 (-1089)) (-14 *5 *3) (-5 *1 (-1087 *3 *4 *5)))) (-3449 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1144 *5 *4)) (-5 *1 (-1087 *4 *5 *6)) (-4 *4 (-975)) (-14 *5 (-1089)) (-14 *6 *4))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1087 *3 *4 *5)) (-4 *3 (-975)) (-14 *5 *3))) (-3266 (*1 *1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1087 *3 *4 *5)) (-4 *3 (-975)) (-14 *5 *3))) (-4141 (*1 *1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1087 *3 *4 *5)) (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-14 *5 *3))))
+(-13 (-1162 |#1|) (-10 -8 (-15 -3022 ($ (-1144 |#2| |#1|))) (-15 -3449 ((-1144 |#2| |#1|) $ (-712))) (-15 -3022 ($ (-1167 |#2|))) (-15 -3266 ($ $ (-1167 |#2|))) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1167 |#2|))) |%noBranch|)))
+((-3022 (((-796) $) 27) (($ (-1089)) 29)) (-3321 (($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $))) 40)) (-3312 (($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $))) 33) (($ $) 34)) (-2412 (($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $))) 35)) (-2399 (($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $))) 37)) (-2387 (($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $))) 36)) (-2374 (($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $))) 38)) (-2639 (($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $))) 41)) (-12 (($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $))) 39)))
+(((-1088) (-13 (-565 (-796)) (-10 -8 (-15 -3022 ($ (-1089))) (-15 -2412 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -2387 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -2399 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -2374 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -3321 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -2639 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -3312 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -3312 ($ $))))) (T -1088))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-1088)))) (-2412 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088)))) (-5 *1 (-1088)))) (-2387 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088)))) (-5 *1 (-1088)))) (-2399 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088)))) (-5 *1 (-1088)))) (-2374 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088)))) (-5 *1 (-1088)))) (-3321 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088)))) (-5 *1 (-1088)))) (-2639 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088)))) (-5 *1 (-1088)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088)))) (-5 *1 (-1088)))) (-3312 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088)))) (-5 *1 (-1088)))) (-3312 (*1 *1 *1) (-5 *1 (-1088))))
+(-13 (-565 (-796)) (-10 -8 (-15 -3022 ($ (-1089))) (-15 -2412 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -2387 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -2399 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -2374 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -3321 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -2639 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)) (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -3312 ($ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357))) (|:| CF (-294 (-157 (-357)))) (|:| |switch| $)))) (-15 -3312 ($ $))))
+((-3008 (((-108) $ $) NIL)) (-3686 (($ $ (-591 (-796))) 59)) (-2086 (($ $ (-591 (-796))) 57)) (-1432 (((-1072) $) 84)) (-1672 (((-2 (|:| -2718 (-591 (-796))) (|:| -2593 (-591 (-796))) (|:| |presup| (-591 (-796))) (|:| -1772 (-591 (-796))) (|:| |args| (-591 (-796)))) $) 87)) (-1418 (((-108) $) 22)) (-3047 (($ $ (-591 (-591 (-796)))) 56) (($ $ (-2 (|:| -2718 (-591 (-796))) (|:| -2593 (-591 (-796))) (|:| |presup| (-591 (-796))) (|:| -1772 (-591 (-796))) (|:| |args| (-591 (-796))))) 82)) (-3798 (($) 124 T CONST)) (-3615 (((-1176)) 106)) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 66) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 73)) (-1268 (($) 95) (($ $) 101)) (-2400 (($ $) 83)) (-3741 (($ $ $) NIL)) (-2478 (($ $ $) NIL)) (-2932 (((-591 $) $) 107)) (-2339 (((-1072) $) 90)) (-2047 (((-1036) $) NIL)) (-3164 (($ $ (-591 (-796))) 58)) (-1408 (((-501) $) 46) (((-1089) $) 47) (((-825 (-525)) $) 77) (((-825 (-357)) $) 75)) (-3022 (((-796) $) 53) (($ (-1072)) 48)) (-1285 (($ $ (-591 (-796))) 60)) (-2563 (((-1072) $) 33) (((-1072) $ (-108)) 34) (((-1176) (-763) $) 35) (((-1176) (-763) $ (-108)) 36)) (-4135 (((-108) $ $) NIL)) (-4119 (((-108) $ $) NIL)) (-4096 (((-108) $ $) 49)) (-4126 (((-108) $ $) NIL)) (-4112 (((-108) $ $) 50)))
+(((-1089) (-13 (-788) (-566 (-501)) (-769) (-566 (-1089)) (-566 (-825 (-525))) (-566 (-825 (-357))) (-819 (-525)) (-819 (-357)) (-10 -8 (-15 -1268 ($)) (-15 -1268 ($ $)) (-15 -3615 ((-1176))) (-15 -3022 ($ (-1072))) (-15 -2400 ($ $)) (-15 -1418 ((-108) $)) (-15 -1672 ((-2 (|:| -2718 (-591 (-796))) (|:| -2593 (-591 (-796))) (|:| |presup| (-591 (-796))) (|:| -1772 (-591 (-796))) (|:| |args| (-591 (-796)))) $)) (-15 -3047 ($ $ (-591 (-591 (-796))))) (-15 -3047 ($ $ (-2 (|:| -2718 (-591 (-796))) (|:| -2593 (-591 (-796))) (|:| |presup| (-591 (-796))) (|:| -1772 (-591 (-796))) (|:| |args| (-591 (-796)))))) (-15 -2086 ($ $ (-591 (-796)))) (-15 -3686 ($ $ (-591 (-796)))) (-15 -1285 ($ $ (-591 (-796)))) (-15 -3164 ($ $ (-591 (-796)))) (-15 -1432 ((-1072) $)) (-15 -2932 ((-591 $) $)) (-15 -3798 ($) -2058)))) (T -1089))
+((-1268 (*1 *1) (-5 *1 (-1089))) (-1268 (*1 *1 *1) (-5 *1 (-1089))) (-3615 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-1089)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1089)))) (-2400 (*1 *1 *1) (-5 *1 (-1089))) (-1418 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1089)))) (-1672 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -2718 (-591 (-796))) (|:| -2593 (-591 (-796))) (|:| |presup| (-591 (-796))) (|:| -1772 (-591 (-796))) (|:| |args| (-591 (-796))))) (-5 *1 (-1089)))) (-3047 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-591 (-796)))) (-5 *1 (-1089)))) (-3047 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -2718 (-591 (-796))) (|:| -2593 (-591 (-796))) (|:| |presup| (-591 (-796))) (|:| -1772 (-591 (-796))) (|:| |args| (-591 (-796))))) (-5 *1 (-1089)))) (-2086 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-1089)))) (-3686 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-1089)))) (-1285 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-1089)))) (-3164 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-1089)))) (-1432 (*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-1089)))) (-2932 (*1 *2 *1) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-1089)))) (-3798 (*1 *1) (-5 *1 (-1089))))
+(-13 (-788) (-566 (-501)) (-769) (-566 (-1089)) (-566 (-825 (-525))) (-566 (-825 (-357))) (-819 (-525)) (-819 (-357)) (-10 -8 (-15 -1268 ($)) (-15 -1268 ($ $)) (-15 -3615 ((-1176))) (-15 -3022 ($ (-1072))) (-15 -2400 ($ $)) (-15 -1418 ((-108) $)) (-15 -1672 ((-2 (|:| -2718 (-591 (-796))) (|:| -2593 (-591 (-796))) (|:| |presup| (-591 (-796))) (|:| -1772 (-591 (-796))) (|:| |args| (-591 (-796)))) $)) (-15 -3047 ($ $ (-591 (-591 (-796))))) (-15 -3047 ($ $ (-2 (|:| -2718 (-591 (-796))) (|:| -2593 (-591 (-796))) (|:| |presup| (-591 (-796))) (|:| -1772 (-591 (-796))) (|:| |args| (-591 (-796)))))) (-15 -2086 ($ $ (-591 (-796)))) (-15 -3686 ($ $ (-591 (-796)))) (-15 -1285 ($ $ (-591 (-796)))) (-15 -3164 ($ $ (-591 (-796)))) (-15 -1432 ((-1072) $)) (-15 -2932 ((-591 $) $)) (-15 -3798 ($) -2058)))
+((-4213 (((-1171 |#1|) |#1| (-854)) 16) (((-1171 |#1|) (-591 |#1|)) 20)))
+(((-1090 |#1|) (-10 -7 (-15 -4213 ((-1171 |#1|) (-591 |#1|))) (-15 -4213 ((-1171 |#1|) |#1| (-854)))) (-975)) (T -1090))
+((-4213 (*1 *2 *3 *4) (-12 (-5 *4 (-854)) (-5 *2 (-1171 *3)) (-5 *1 (-1090 *3)) (-4 *3 (-975)))) (-4213 (*1 *2 *3) (-12 (-5 *3 (-591 *4)) (-4 *4 (-975)) (-5 *2 (-1171 *4)) (-5 *1 (-1090 *4)))))
+(-10 -7 (-15 -4213 ((-1171 |#1|) (-591 |#1|))) (-15 -4213 ((-1171 |#1|) |#1| (-854))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL (|has| |#1| (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#1| (-966 (-385 (-525))))) (((-3 |#1| "failed") $) NIL)) (-3528 (((-525) $) NIL (|has| |#1| (-966 (-525)))) (((-385 (-525)) $) NIL (|has| |#1| (-966 (-385 (-525))))) ((|#1| $) NIL)) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3208 (($ $) NIL (|has| |#1| (-429)))) (-2056 (($ $ |#1| (-902) $) NIL)) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) NIL)) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-902)) NIL)) (-2624 (((-902) $) NIL)) (-4015 (($ (-1 (-902) (-902)) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) NIL)) (-1646 ((|#1| $) NIL)) (-3678 (($ $ (-902) |#1| $) NIL (-12 (|has| (-902) (-126)) (|has| |#1| (-517))))) (-2089 (((-3 $ "failed") $ $) NIL (|has| |#1| (-517))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-517)))) (-1316 (((-902) $) NIL)) (-2668 ((|#1| $) NIL (|has| |#1| (-429)))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ $) NIL (|has| |#1| (-517))) (($ |#1|) NIL) (($ (-385 (-525))) NIL (-3321 (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-966 (-385 (-525))))))) (-3654 (((-591 |#1|) $) NIL)) (-2560 ((|#1| $ (-902)) NIL)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) NIL)) (-1698 (($ $ $ (-712)) NIL (|has| |#1| (-160)))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 9 T CONST)) (-4197 (($) 14 T CONST)) (-4096 (((-108) $ $) 16)) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) 19)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) 13) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))))
+(((-1091 |#1|) (-13 (-304 |#1| (-902)) (-10 -8 (IF (|has| |#1| (-517)) (IF (|has| (-902) (-126)) (-15 -3678 ($ $ (-902) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4248)) (-6 -4248) |%noBranch|))) (-975)) (T -1091))
+((-3678 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-902)) (-4 *2 (-126)) (-5 *1 (-1091 *3)) (-4 *3 (-517)) (-4 *3 (-975)))))
+(-13 (-304 |#1| (-902)) (-10 -8 (IF (|has| |#1| (-517)) (IF (|has| (-902) (-126)) (-15 -3678 ($ $ (-902) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4248)) (-6 -4248) |%noBranch|)))
+((-3912 (((-1093) (-1089) $) 25)) (-2278 (($) 29)) (-2196 (((-3 (|:| |fst| (-412)) (|:| -4170 "void")) (-1089) $) 22)) (-2103 (((-1176) (-1089) (-3 (|:| |fst| (-412)) (|:| -4170 "void")) $) 41) (((-1176) (-1089) (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) 42) (((-1176) (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) 43)) (-1378 (((-1176) (-1089)) 58)) (-4069 (((-1176) (-1089) $) 55) (((-1176) (-1089)) 56) (((-1176)) 57)) (-3651 (((-1176) (-1089)) 37)) (-1374 (((-1089)) 36)) (-3209 (($) 34)) (-3536 (((-415) (-1089) (-415) (-1089) $) 45) (((-415) (-591 (-1089)) (-415) (-1089) $) 49) (((-415) (-1089) (-415)) 46) (((-415) (-1089) (-415) (-1089)) 50)) (-3324 (((-1089)) 35)) (-3022 (((-796) $) 28)) (-1686 (((-1176)) 30) (((-1176) (-1089)) 33)) (-1669 (((-591 (-1089)) (-1089) $) 24)) (-3782 (((-1176) (-1089) (-591 (-1089)) $) 38) (((-1176) (-1089) (-591 (-1089))) 39) (((-1176) (-591 (-1089))) 40)))
+(((-1092) (-13 (-565 (-796)) (-10 -8 (-15 -2278 ($)) (-15 -1686 ((-1176))) (-15 -1686 ((-1176) (-1089))) (-15 -3536 ((-415) (-1089) (-415) (-1089) $)) (-15 -3536 ((-415) (-591 (-1089)) (-415) (-1089) $)) (-15 -3536 ((-415) (-1089) (-415))) (-15 -3536 ((-415) (-1089) (-415) (-1089))) (-15 -3651 ((-1176) (-1089))) (-15 -3324 ((-1089))) (-15 -1374 ((-1089))) (-15 -3782 ((-1176) (-1089) (-591 (-1089)) $)) (-15 -3782 ((-1176) (-1089) (-591 (-1089)))) (-15 -3782 ((-1176) (-591 (-1089)))) (-15 -2103 ((-1176) (-1089) (-3 (|:| |fst| (-412)) (|:| -4170 "void")) $)) (-15 -2103 ((-1176) (-1089) (-3 (|:| |fst| (-412)) (|:| -4170 "void")))) (-15 -2103 ((-1176) (-3 (|:| |fst| (-412)) (|:| -4170 "void")))) (-15 -4069 ((-1176) (-1089) $)) (-15 -4069 ((-1176) (-1089))) (-15 -4069 ((-1176))) (-15 -1378 ((-1176) (-1089))) (-15 -3209 ($)) (-15 -2196 ((-3 (|:| |fst| (-412)) (|:| -4170 "void")) (-1089) $)) (-15 -1669 ((-591 (-1089)) (-1089) $)) (-15 -3912 ((-1093) (-1089) $))))) (T -1092))
+((-2278 (*1 *1) (-5 *1 (-1092))) (-1686 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-1092)))) (-1686 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-1176)) (-5 *1 (-1092)))) (-3536 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-415)) (-5 *3 (-1089)) (-5 *1 (-1092)))) (-3536 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-415)) (-5 *3 (-591 (-1089))) (-5 *4 (-1089)) (-5 *1 (-1092)))) (-3536 (*1 *2 *3 *2) (-12 (-5 *2 (-415)) (-5 *3 (-1089)) (-5 *1 (-1092)))) (-3536 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-415)) (-5 *3 (-1089)) (-5 *1 (-1092)))) (-3651 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-1176)) (-5 *1 (-1092)))) (-3324 (*1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-1092)))) (-1374 (*1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-1092)))) (-3782 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-591 (-1089))) (-5 *3 (-1089)) (-5 *2 (-1176)) (-5 *1 (-1092)))) (-3782 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-1089))) (-5 *3 (-1089)) (-5 *2 (-1176)) (-5 *1 (-1092)))) (-3782 (*1 *2 *3) (-12 (-5 *3 (-591 (-1089))) (-5 *2 (-1176)) (-5 *1 (-1092)))) (-2103 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1089)) (-5 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-5 *2 (-1176)) (-5 *1 (-1092)))) (-2103 (*1 *2 *3 *4) (-12 (-5 *3 (-1089)) (-5 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-5 *2 (-1176)) (-5 *1 (-1092)))) (-2103 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-5 *2 (-1176)) (-5 *1 (-1092)))) (-4069 (*1 *2 *3 *1) (-12 (-5 *3 (-1089)) (-5 *2 (-1176)) (-5 *1 (-1092)))) (-4069 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-1176)) (-5 *1 (-1092)))) (-4069 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-1092)))) (-1378 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-1176)) (-5 *1 (-1092)))) (-3209 (*1 *1) (-5 *1 (-1092))) (-2196 (*1 *2 *3 *1) (-12 (-5 *3 (-1089)) (-5 *2 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-5 *1 (-1092)))) (-1669 (*1 *2 *3 *1) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-1092)) (-5 *3 (-1089)))) (-3912 (*1 *2 *3 *1) (-12 (-5 *3 (-1089)) (-5 *2 (-1093)) (-5 *1 (-1092)))))
+(-13 (-565 (-796)) (-10 -8 (-15 -2278 ($)) (-15 -1686 ((-1176))) (-15 -1686 ((-1176) (-1089))) (-15 -3536 ((-415) (-1089) (-415) (-1089) $)) (-15 -3536 ((-415) (-591 (-1089)) (-415) (-1089) $)) (-15 -3536 ((-415) (-1089) (-415))) (-15 -3536 ((-415) (-1089) (-415) (-1089))) (-15 -3651 ((-1176) (-1089))) (-15 -3324 ((-1089))) (-15 -1374 ((-1089))) (-15 -3782 ((-1176) (-1089) (-591 (-1089)) $)) (-15 -3782 ((-1176) (-1089) (-591 (-1089)))) (-15 -3782 ((-1176) (-591 (-1089)))) (-15 -2103 ((-1176) (-1089) (-3 (|:| |fst| (-412)) (|:| -4170 "void")) $)) (-15 -2103 ((-1176) (-1089) (-3 (|:| |fst| (-412)) (|:| -4170 "void")))) (-15 -2103 ((-1176) (-3 (|:| |fst| (-412)) (|:| -4170 "void")))) (-15 -4069 ((-1176) (-1089) $)) (-15 -4069 ((-1176) (-1089))) (-15 -4069 ((-1176))) (-15 -1378 ((-1176) (-1089))) (-15 -3209 ($)) (-15 -2196 ((-3 (|:| |fst| (-412)) (|:| -4170 "void")) (-1089) $)) (-15 -1669 ((-591 (-1089)) (-1089) $)) (-15 -3912 ((-1093) (-1089) $))))
+((-3507 (((-591 (-591 (-3 (|:| -2400 (-1089)) (|:| |bounds| (-591 (-3 (|:| S (-1089)) (|:| P (-885 (-525))))))))) $) 59)) (-4217 (((-591 (-3 (|:| -2400 (-1089)) (|:| |bounds| (-591 (-3 (|:| S (-1089)) (|:| P (-885 (-525)))))))) (-412) $) 43)) (-3136 (($ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-415))))) 17)) (-1378 (((-1176) $) 67)) (-2341 (((-591 (-1089)) $) 22)) (-2170 (((-1022) $) 55)) (-2415 (((-415) (-1089) $) 27)) (-1562 (((-591 (-1089)) $) 30)) (-3209 (($) 19)) (-3536 (((-415) (-591 (-1089)) (-415) $) 25) (((-415) (-1089) (-415) $) 24)) (-3022 (((-796) $) 9) (((-1099 (-1089) (-415)) $) 13)))
+(((-1093) (-13 (-565 (-796)) (-10 -8 (-15 -3022 ((-1099 (-1089) (-415)) $)) (-15 -3209 ($)) (-15 -3536 ((-415) (-591 (-1089)) (-415) $)) (-15 -3536 ((-415) (-1089) (-415) $)) (-15 -2415 ((-415) (-1089) $)) (-15 -2341 ((-591 (-1089)) $)) (-15 -4217 ((-591 (-3 (|:| -2400 (-1089)) (|:| |bounds| (-591 (-3 (|:| S (-1089)) (|:| P (-885 (-525)))))))) (-412) $)) (-15 -1562 ((-591 (-1089)) $)) (-15 -3507 ((-591 (-591 (-3 (|:| -2400 (-1089)) (|:| |bounds| (-591 (-3 (|:| S (-1089)) (|:| P (-885 (-525))))))))) $)) (-15 -2170 ((-1022) $)) (-15 -1378 ((-1176) $)) (-15 -3136 ($ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-415))))))))) (T -1093))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-1099 (-1089) (-415))) (-5 *1 (-1093)))) (-3209 (*1 *1) (-5 *1 (-1093))) (-3536 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-415)) (-5 *3 (-591 (-1089))) (-5 *1 (-1093)))) (-3536 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-415)) (-5 *3 (-1089)) (-5 *1 (-1093)))) (-2415 (*1 *2 *3 *1) (-12 (-5 *3 (-1089)) (-5 *2 (-415)) (-5 *1 (-1093)))) (-2341 (*1 *2 *1) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-1093)))) (-4217 (*1 *2 *3 *1) (-12 (-5 *3 (-412)) (-5 *2 (-591 (-3 (|:| -2400 (-1089)) (|:| |bounds| (-591 (-3 (|:| S (-1089)) (|:| P (-885 (-525))))))))) (-5 *1 (-1093)))) (-1562 (*1 *2 *1) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-1093)))) (-3507 (*1 *2 *1) (-12 (-5 *2 (-591 (-591 (-3 (|:| -2400 (-1089)) (|:| |bounds| (-591 (-3 (|:| S (-1089)) (|:| P (-885 (-525)))))))))) (-5 *1 (-1093)))) (-2170 (*1 *2 *1) (-12 (-5 *2 (-1022)) (-5 *1 (-1093)))) (-1378 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-1093)))) (-3136 (*1 *1 *2) (-12 (-5 *2 (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-415))))) (-5 *1 (-1093)))))
+(-13 (-565 (-796)) (-10 -8 (-15 -3022 ((-1099 (-1089) (-415)) $)) (-15 -3209 ($)) (-15 -3536 ((-415) (-591 (-1089)) (-415) $)) (-15 -3536 ((-415) (-1089) (-415) $)) (-15 -2415 ((-415) (-1089) $)) (-15 -2341 ((-591 (-1089)) $)) (-15 -4217 ((-591 (-3 (|:| -2400 (-1089)) (|:| |bounds| (-591 (-3 (|:| S (-1089)) (|:| P (-885 (-525)))))))) (-412) $)) (-15 -1562 ((-591 (-1089)) $)) (-15 -3507 ((-591 (-591 (-3 (|:| -2400 (-1089)) (|:| |bounds| (-591 (-3 (|:| S (-1089)) (|:| P (-885 (-525))))))))) $)) (-15 -2170 ((-1022) $)) (-15 -1378 ((-1176) $)) (-15 -3136 ($ (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-415))))))))
+((-3008 (((-108) $ $) NIL)) (-3580 (((-108) $) 42)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-4054 (((-3 (-525) (-205) (-1089) (-1072) $) $) 50)) (-3436 (((-591 $) $) 55)) (-1408 (((-1022) $) 24) (($ (-1022)) 25)) (-2354 (((-108) $) 52)) (-3022 (((-796) $) NIL) (($ (-525)) 26) (((-525) $) 28) (($ (-205)) 29) (((-205) $) 31) (($ (-1089)) 32) (((-1089) $) 34) (($ (-1072)) 35) (((-1072) $) 37)) (-4185 (((-108) $ (|[\|\|]| (-525))) 11) (((-108) $ (|[\|\|]| (-205))) 15) (((-108) $ (|[\|\|]| (-1089))) 23) (((-108) $ (|[\|\|]| (-1072))) 19)) (-1567 (($ (-1089) (-591 $)) 39) (($ $ (-591 $)) 40)) (-3216 (((-525) $) 27) (((-205) $) 30) (((-1089) $) 33) (((-1072) $) 36)) (-4096 (((-108) $ $) 7)))
+(((-1094) (-13 (-1166) (-1018) (-10 -8 (-15 -1408 ((-1022) $)) (-15 -1408 ($ (-1022))) (-15 -3022 ($ (-525))) (-15 -3022 ((-525) $)) (-15 -3216 ((-525) $)) (-15 -3022 ($ (-205))) (-15 -3022 ((-205) $)) (-15 -3216 ((-205) $)) (-15 -3022 ($ (-1089))) (-15 -3022 ((-1089) $)) (-15 -3216 ((-1089) $)) (-15 -3022 ($ (-1072))) (-15 -3022 ((-1072) $)) (-15 -3216 ((-1072) $)) (-15 -1567 ($ (-1089) (-591 $))) (-15 -1567 ($ $ (-591 $))) (-15 -3580 ((-108) $)) (-15 -4054 ((-3 (-525) (-205) (-1089) (-1072) $) $)) (-15 -3436 ((-591 $) $)) (-15 -2354 ((-108) $)) (-15 -4185 ((-108) $ (|[\|\|]| (-525)))) (-15 -4185 ((-108) $ (|[\|\|]| (-205)))) (-15 -4185 ((-108) $ (|[\|\|]| (-1089)))) (-15 -4185 ((-108) $ (|[\|\|]| (-1072))))))) (T -1094))
+((-1408 (*1 *2 *1) (-12 (-5 *2 (-1022)) (-5 *1 (-1094)))) (-1408 (*1 *1 *2) (-12 (-5 *2 (-1022)) (-5 *1 (-1094)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-1094)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-1094)))) (-3216 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-1094)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-205)) (-5 *1 (-1094)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-205)) (-5 *1 (-1094)))) (-3216 (*1 *2 *1) (-12 (-5 *2 (-205)) (-5 *1 (-1094)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-1094)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-1094)))) (-3216 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-1094)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1094)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-1094)))) (-3216 (*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-1094)))) (-1567 (*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-1094))) (-5 *1 (-1094)))) (-1567 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-1094))) (-5 *1 (-1094)))) (-3580 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1094)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-3 (-525) (-205) (-1089) (-1072) (-1094))) (-5 *1 (-1094)))) (-3436 (*1 *2 *1) (-12 (-5 *2 (-591 (-1094))) (-5 *1 (-1094)))) (-2354 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1094)))) (-4185 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-525))) (-5 *2 (-108)) (-5 *1 (-1094)))) (-4185 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-205))) (-5 *2 (-108)) (-5 *1 (-1094)))) (-4185 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1089))) (-5 *2 (-108)) (-5 *1 (-1094)))) (-4185 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1072))) (-5 *2 (-108)) (-5 *1 (-1094)))))
+(-13 (-1166) (-1018) (-10 -8 (-15 -1408 ((-1022) $)) (-15 -1408 ($ (-1022))) (-15 -3022 ($ (-525))) (-15 -3022 ((-525) $)) (-15 -3216 ((-525) $)) (-15 -3022 ($ (-205))) (-15 -3022 ((-205) $)) (-15 -3216 ((-205) $)) (-15 -3022 ($ (-1089))) (-15 -3022 ((-1089) $)) (-15 -3216 ((-1089) $)) (-15 -3022 ($ (-1072))) (-15 -3022 ((-1072) $)) (-15 -3216 ((-1072) $)) (-15 -1567 ($ (-1089) (-591 $))) (-15 -1567 ($ $ (-591 $))) (-15 -3580 ((-108) $)) (-15 -4054 ((-3 (-525) (-205) (-1089) (-1072) $) $)) (-15 -3436 ((-591 $) $)) (-15 -2354 ((-108) $)) (-15 -4185 ((-108) $ (|[\|\|]| (-525)))) (-15 -4185 ((-108) $ (|[\|\|]| (-205)))) (-15 -4185 ((-108) $ (|[\|\|]| (-1089)))) (-15 -4185 ((-108) $ (|[\|\|]| (-1072))))))
+((-1735 (((-591 (-591 (-885 |#1|))) (-591 (-385 (-885 |#1|))) (-591 (-1089))) 57)) (-4039 (((-591 (-273 (-385 (-885 |#1|)))) (-273 (-385 (-885 |#1|)))) 69) (((-591 (-273 (-385 (-885 |#1|)))) (-385 (-885 |#1|))) 65) (((-591 (-273 (-385 (-885 |#1|)))) (-273 (-385 (-885 |#1|))) (-1089)) 70) (((-591 (-273 (-385 (-885 |#1|)))) (-385 (-885 |#1|)) (-1089)) 64) (((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-273 (-385 (-885 |#1|))))) 93) (((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-385 (-885 |#1|)))) 92) (((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-273 (-385 (-885 |#1|)))) (-591 (-1089))) 94) (((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-385 (-885 |#1|))) (-591 (-1089))) 91)))
+(((-1095 |#1|) (-10 -7 (-15 -4039 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-385 (-885 |#1|))) (-591 (-1089)))) (-15 -4039 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-273 (-385 (-885 |#1|)))) (-591 (-1089)))) (-15 -4039 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-385 (-885 |#1|))))) (-15 -4039 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-273 (-385 (-885 |#1|)))))) (-15 -4039 ((-591 (-273 (-385 (-885 |#1|)))) (-385 (-885 |#1|)) (-1089))) (-15 -4039 ((-591 (-273 (-385 (-885 |#1|)))) (-273 (-385 (-885 |#1|))) (-1089))) (-15 -4039 ((-591 (-273 (-385 (-885 |#1|)))) (-385 (-885 |#1|)))) (-15 -4039 ((-591 (-273 (-385 (-885 |#1|)))) (-273 (-385 (-885 |#1|))))) (-15 -1735 ((-591 (-591 (-885 |#1|))) (-591 (-385 (-885 |#1|))) (-591 (-1089))))) (-517)) (T -1095))
+((-1735 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-385 (-885 *5)))) (-5 *4 (-591 (-1089))) (-4 *5 (-517)) (-5 *2 (-591 (-591 (-885 *5)))) (-5 *1 (-1095 *5)))) (-4039 (*1 *2 *3) (-12 (-4 *4 (-517)) (-5 *2 (-591 (-273 (-385 (-885 *4))))) (-5 *1 (-1095 *4)) (-5 *3 (-273 (-385 (-885 *4)))))) (-4039 (*1 *2 *3) (-12 (-4 *4 (-517)) (-5 *2 (-591 (-273 (-385 (-885 *4))))) (-5 *1 (-1095 *4)) (-5 *3 (-385 (-885 *4))))) (-4039 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-4 *5 (-517)) (-5 *2 (-591 (-273 (-385 (-885 *5))))) (-5 *1 (-1095 *5)) (-5 *3 (-273 (-385 (-885 *5)))))) (-4039 (*1 *2 *3 *4) (-12 (-5 *4 (-1089)) (-4 *5 (-517)) (-5 *2 (-591 (-273 (-385 (-885 *5))))) (-5 *1 (-1095 *5)) (-5 *3 (-385 (-885 *5))))) (-4039 (*1 *2 *3) (-12 (-4 *4 (-517)) (-5 *2 (-591 (-591 (-273 (-385 (-885 *4)))))) (-5 *1 (-1095 *4)) (-5 *3 (-591 (-273 (-385 (-885 *4))))))) (-4039 (*1 *2 *3) (-12 (-5 *3 (-591 (-385 (-885 *4)))) (-4 *4 (-517)) (-5 *2 (-591 (-591 (-273 (-385 (-885 *4)))))) (-5 *1 (-1095 *4)))) (-4039 (*1 *2 *3 *4) (-12 (-5 *4 (-591 (-1089))) (-4 *5 (-517)) (-5 *2 (-591 (-591 (-273 (-385 (-885 *5)))))) (-5 *1 (-1095 *5)) (-5 *3 (-591 (-273 (-385 (-885 *5))))))) (-4039 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-385 (-885 *5)))) (-5 *4 (-591 (-1089))) (-4 *5 (-517)) (-5 *2 (-591 (-591 (-273 (-385 (-885 *5)))))) (-5 *1 (-1095 *5)))))
+(-10 -7 (-15 -4039 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-385 (-885 |#1|))) (-591 (-1089)))) (-15 -4039 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-273 (-385 (-885 |#1|)))) (-591 (-1089)))) (-15 -4039 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-385 (-885 |#1|))))) (-15 -4039 ((-591 (-591 (-273 (-385 (-885 |#1|))))) (-591 (-273 (-385 (-885 |#1|)))))) (-15 -4039 ((-591 (-273 (-385 (-885 |#1|)))) (-385 (-885 |#1|)) (-1089))) (-15 -4039 ((-591 (-273 (-385 (-885 |#1|)))) (-273 (-385 (-885 |#1|))) (-1089))) (-15 -4039 ((-591 (-273 (-385 (-885 |#1|)))) (-385 (-885 |#1|)))) (-15 -4039 ((-591 (-273 (-385 (-885 |#1|)))) (-273 (-385 (-885 |#1|))))) (-15 -1735 ((-591 (-591 (-885 |#1|))) (-591 (-385 (-885 |#1|))) (-591 (-1089)))))
+((-1818 (((-1072)) 7)) (-3545 (((-1072)) 9)) (-3749 (((-1176) (-1072)) 11)) (-2143 (((-1072)) 8)))
+(((-1096) (-10 -7 (-15 -1818 ((-1072))) (-15 -2143 ((-1072))) (-15 -3545 ((-1072))) (-15 -3749 ((-1176) (-1072))))) (T -1096))
+((-3749 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1096)))) (-3545 (*1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1096)))) (-2143 (*1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1096)))) (-1818 (*1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1096)))))
+(-10 -7 (-15 -1818 ((-1072))) (-15 -2143 ((-1072))) (-15 -3545 ((-1072))) (-15 -3749 ((-1176) (-1072))))
+((-2813 (((-591 (-591 |#1|)) (-591 (-591 |#1|)) (-591 (-591 (-591 |#1|)))) 38)) (-2346 (((-591 (-591 (-591 |#1|))) (-591 (-591 |#1|))) 24)) (-1718 (((-1098 (-591 |#1|)) (-591 |#1|)) 34)) (-1306 (((-591 (-591 |#1|)) (-591 |#1|)) 30)) (-2228 (((-2 (|:| |f1| (-591 |#1|)) (|:| |f2| (-591 (-591 (-591 |#1|)))) (|:| |f3| (-591 (-591 |#1|))) (|:| |f4| (-591 (-591 (-591 |#1|))))) (-591 (-591 (-591 |#1|)))) 37)) (-4142 (((-2 (|:| |f1| (-591 |#1|)) (|:| |f2| (-591 (-591 (-591 |#1|)))) (|:| |f3| (-591 (-591 |#1|))) (|:| |f4| (-591 (-591 (-591 |#1|))))) (-591 |#1|) (-591 (-591 (-591 |#1|))) (-591 (-591 |#1|)) (-591 (-591 (-591 |#1|))) (-591 (-591 (-591 |#1|))) (-591 (-591 (-591 |#1|)))) 36)) (-3815 (((-591 (-591 |#1|)) (-591 (-591 |#1|))) 28)) (-1914 (((-591 |#1|) (-591 |#1|)) 31)) (-2924 (((-591 (-591 (-591 |#1|))) (-591 |#1|) (-591 (-591 (-591 |#1|)))) 18)) (-1256 (((-591 (-591 (-591 |#1|))) (-1 (-108) |#1| |#1|) (-591 |#1|) (-591 (-591 (-591 |#1|)))) 16)) (-4127 (((-2 (|:| |fs| (-108)) (|:| |sd| (-591 |#1|)) (|:| |td| (-591 (-591 |#1|)))) (-1 (-108) |#1| |#1|) (-591 |#1|) (-591 (-591 |#1|))) 14)) (-2041 (((-591 (-591 |#1|)) (-591 (-591 (-591 |#1|)))) 39)) (-1588 (((-591 (-591 |#1|)) (-1098 (-591 |#1|))) 41)))
+(((-1097 |#1|) (-10 -7 (-15 -4127 ((-2 (|:| |fs| (-108)) (|:| |sd| (-591 |#1|)) (|:| |td| (-591 (-591 |#1|)))) (-1 (-108) |#1| |#1|) (-591 |#1|) (-591 (-591 |#1|)))) (-15 -1256 ((-591 (-591 (-591 |#1|))) (-1 (-108) |#1| |#1|) (-591 |#1|) (-591 (-591 (-591 |#1|))))) (-15 -2924 ((-591 (-591 (-591 |#1|))) (-591 |#1|) (-591 (-591 (-591 |#1|))))) (-15 -2813 ((-591 (-591 |#1|)) (-591 (-591 |#1|)) (-591 (-591 (-591 |#1|))))) (-15 -2041 ((-591 (-591 |#1|)) (-591 (-591 (-591 |#1|))))) (-15 -1588 ((-591 (-591 |#1|)) (-1098 (-591 |#1|)))) (-15 -2346 ((-591 (-591 (-591 |#1|))) (-591 (-591 |#1|)))) (-15 -1718 ((-1098 (-591 |#1|)) (-591 |#1|))) (-15 -3815 ((-591 (-591 |#1|)) (-591 (-591 |#1|)))) (-15 -1306 ((-591 (-591 |#1|)) (-591 |#1|))) (-15 -1914 ((-591 |#1|) (-591 |#1|))) (-15 -4142 ((-2 (|:| |f1| (-591 |#1|)) (|:| |f2| (-591 (-591 (-591 |#1|)))) (|:| |f3| (-591 (-591 |#1|))) (|:| |f4| (-591 (-591 (-591 |#1|))))) (-591 |#1|) (-591 (-591 (-591 |#1|))) (-591 (-591 |#1|)) (-591 (-591 (-591 |#1|))) (-591 (-591 (-591 |#1|))) (-591 (-591 (-591 |#1|))))) (-15 -2228 ((-2 (|:| |f1| (-591 |#1|)) (|:| |f2| (-591 (-591 (-591 |#1|)))) (|:| |f3| (-591 (-591 |#1|))) (|:| |f4| (-591 (-591 (-591 |#1|))))) (-591 (-591 (-591 |#1|)))))) (-788)) (T -1097))
+((-2228 (*1 *2 *3) (-12 (-4 *4 (-788)) (-5 *2 (-2 (|:| |f1| (-591 *4)) (|:| |f2| (-591 (-591 (-591 *4)))) (|:| |f3| (-591 (-591 *4))) (|:| |f4| (-591 (-591 (-591 *4)))))) (-5 *1 (-1097 *4)) (-5 *3 (-591 (-591 (-591 *4)))))) (-4142 (*1 *2 *3 *4 *5 *4 *4 *4) (-12 (-4 *6 (-788)) (-5 *3 (-591 *6)) (-5 *5 (-591 *3)) (-5 *2 (-2 (|:| |f1| *3) (|:| |f2| (-591 *5)) (|:| |f3| *5) (|:| |f4| (-591 *5)))) (-5 *1 (-1097 *6)) (-5 *4 (-591 *5)))) (-1914 (*1 *2 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-788)) (-5 *1 (-1097 *3)))) (-1306 (*1 *2 *3) (-12 (-4 *4 (-788)) (-5 *2 (-591 (-591 *4))) (-5 *1 (-1097 *4)) (-5 *3 (-591 *4)))) (-3815 (*1 *2 *2) (-12 (-5 *2 (-591 (-591 *3))) (-4 *3 (-788)) (-5 *1 (-1097 *3)))) (-1718 (*1 *2 *3) (-12 (-4 *4 (-788)) (-5 *2 (-1098 (-591 *4))) (-5 *1 (-1097 *4)) (-5 *3 (-591 *4)))) (-2346 (*1 *2 *3) (-12 (-4 *4 (-788)) (-5 *2 (-591 (-591 (-591 *4)))) (-5 *1 (-1097 *4)) (-5 *3 (-591 (-591 *4))))) (-1588 (*1 *2 *3) (-12 (-5 *3 (-1098 (-591 *4))) (-4 *4 (-788)) (-5 *2 (-591 (-591 *4))) (-5 *1 (-1097 *4)))) (-2041 (*1 *2 *3) (-12 (-5 *3 (-591 (-591 (-591 *4)))) (-5 *2 (-591 (-591 *4))) (-5 *1 (-1097 *4)) (-4 *4 (-788)))) (-2813 (*1 *2 *2 *3) (-12 (-5 *3 (-591 (-591 (-591 *4)))) (-5 *2 (-591 (-591 *4))) (-4 *4 (-788)) (-5 *1 (-1097 *4)))) (-2924 (*1 *2 *3 *2) (-12 (-5 *2 (-591 (-591 (-591 *4)))) (-5 *3 (-591 *4)) (-4 *4 (-788)) (-5 *1 (-1097 *4)))) (-1256 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-591 (-591 (-591 *5)))) (-5 *3 (-1 (-108) *5 *5)) (-5 *4 (-591 *5)) (-4 *5 (-788)) (-5 *1 (-1097 *5)))) (-4127 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-108) *6 *6)) (-4 *6 (-788)) (-5 *4 (-591 *6)) (-5 *2 (-2 (|:| |fs| (-108)) (|:| |sd| *4) (|:| |td| (-591 *4)))) (-5 *1 (-1097 *6)) (-5 *5 (-591 *4)))))
+(-10 -7 (-15 -4127 ((-2 (|:| |fs| (-108)) (|:| |sd| (-591 |#1|)) (|:| |td| (-591 (-591 |#1|)))) (-1 (-108) |#1| |#1|) (-591 |#1|) (-591 (-591 |#1|)))) (-15 -1256 ((-591 (-591 (-591 |#1|))) (-1 (-108) |#1| |#1|) (-591 |#1|) (-591 (-591 (-591 |#1|))))) (-15 -2924 ((-591 (-591 (-591 |#1|))) (-591 |#1|) (-591 (-591 (-591 |#1|))))) (-15 -2813 ((-591 (-591 |#1|)) (-591 (-591 |#1|)) (-591 (-591 (-591 |#1|))))) (-15 -2041 ((-591 (-591 |#1|)) (-591 (-591 (-591 |#1|))))) (-15 -1588 ((-591 (-591 |#1|)) (-1098 (-591 |#1|)))) (-15 -2346 ((-591 (-591 (-591 |#1|))) (-591 (-591 |#1|)))) (-15 -1718 ((-1098 (-591 |#1|)) (-591 |#1|))) (-15 -3815 ((-591 (-591 |#1|)) (-591 (-591 |#1|)))) (-15 -1306 ((-591 (-591 |#1|)) (-591 |#1|))) (-15 -1914 ((-591 |#1|) (-591 |#1|))) (-15 -4142 ((-2 (|:| |f1| (-591 |#1|)) (|:| |f2| (-591 (-591 (-591 |#1|)))) (|:| |f3| (-591 (-591 |#1|))) (|:| |f4| (-591 (-591 (-591 |#1|))))) (-591 |#1|) (-591 (-591 (-591 |#1|))) (-591 (-591 |#1|)) (-591 (-591 (-591 |#1|))) (-591 (-591 (-591 |#1|))) (-591 (-591 (-591 |#1|))))) (-15 -2228 ((-2 (|:| |f1| (-591 |#1|)) (|:| |f2| (-591 (-591 (-591 |#1|)))) (|:| |f3| (-591 (-591 |#1|))) (|:| |f4| (-591 (-591 (-591 |#1|))))) (-591 (-591 (-591 |#1|))))))
+((-2020 (($ (-591 (-591 |#1|))) 10)) (-3349 (((-591 (-591 |#1|)) $) 11)) (-3022 (((-796) $) 26)))
+(((-1098 |#1|) (-10 -8 (-15 -2020 ($ (-591 (-591 |#1|)))) (-15 -3349 ((-591 (-591 |#1|)) $)) (-15 -3022 ((-796) $))) (-1018)) (T -1098))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-1098 *3)) (-4 *3 (-1018)))) (-3349 (*1 *2 *1) (-12 (-5 *2 (-591 (-591 *3))) (-5 *1 (-1098 *3)) (-4 *3 (-1018)))) (-2020 (*1 *1 *2) (-12 (-5 *2 (-591 (-591 *3))) (-4 *3 (-1018)) (-5 *1 (-1098 *3)))))
+(-10 -8 (-15 -2020 ($ (-591 (-591 |#1|)))) (-15 -3349 ((-591 (-591 |#1|)) $)) (-15 -3022 ((-796) $)))
+((-3008 (((-108) $ $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-1260 (($) NIL) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-3296 (((-1176) $ |#1| |#1|) NIL (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#2| $ |#1| |#2|) NIL)) (-1797 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-2401 (((-3 |#2| "failed") |#1| $) NIL)) (-3798 (($) NIL T CONST)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3901 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-3 |#2| "failed") |#1| $) NIL)) (-3677 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-1227 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (|has| $ (-6 -4250))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#2| $ |#1|) NIL)) (-3454 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) NIL)) (-3630 ((|#1| $) NIL (|has| |#1| (-788)))) (-2552 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-591 |#2|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3468 ((|#1| $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4251))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-1542 (((-591 |#1|) $) NIL)) (-2484 (((-108) |#1| $) NIL)) (-1464 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-2470 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-2511 (((-591 |#1|) $) NIL)) (-2791 (((-108) |#1| $) NIL)) (-2047 (((-1036) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-3066 ((|#2| $) NIL (|has| |#1| (-788)))) (-2069 (((-3 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) "failed") (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL)) (-1941 (($ $ |#2|) NIL (|has| $ (-6 -4251)))) (-3631 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL)) (-1623 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 (-273 |#2|))) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3339 (((-591 |#2|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2311 (($) NIL) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-2064 (((-712) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) NIL (-12 (|has| $ (-6 -4250)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (((-712) |#2| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018)))) (((-712) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-566 (-501))))) (-3036 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-3022 (((-796) $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-565 (-796))) (|has| |#2| (-565 (-796)))))) (-1870 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) NIL)) (-4158 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) NIL (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) NIL (-3321 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| |#2| (-1018))))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-1099 |#1| |#2|) (-13 (-1102 |#1| |#2|) (-10 -7 (-6 -4250))) (-1018) (-1018)) (T -1099))
+NIL
+(-13 (-1102 |#1| |#2|) (-10 -7 (-6 -4250)))
+((-3755 ((|#1| (-591 |#1|)) 32)) (-2426 ((|#1| |#1| (-525)) 18)) (-3179 (((-1085 |#1|) |#1| (-854)) 15)))
+(((-1100 |#1|) (-10 -7 (-15 -3755 (|#1| (-591 |#1|))) (-15 -3179 ((-1085 |#1|) |#1| (-854))) (-15 -2426 (|#1| |#1| (-525)))) (-341)) (T -1100))
+((-2426 (*1 *2 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-1100 *2)) (-4 *2 (-341)))) (-3179 (*1 *2 *3 *4) (-12 (-5 *4 (-854)) (-5 *2 (-1085 *3)) (-5 *1 (-1100 *3)) (-4 *3 (-341)))) (-3755 (*1 *2 *3) (-12 (-5 *3 (-591 *2)) (-5 *1 (-1100 *2)) (-4 *2 (-341)))))
+(-10 -7 (-15 -3755 (|#1| (-591 |#1|))) (-15 -3179 ((-1085 |#1|) |#1| (-854))) (-15 -2426 (|#1| |#1| (-525))))
+((-1260 (($) 10) (($ (-591 (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)))) 14)) (-3901 (($ (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) $) 61) (($ (-1 (-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-3454 (((-591 (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) $) 39) (((-591 |#3|) $) 41)) (-3249 (($ (-1 (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) $) 53) (($ (-1 |#3| |#3|) $) 33)) (-1340 (($ (-1 (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) $) 51) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-1464 (((-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) $) 54)) (-2470 (($ (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) $) 16)) (-2511 (((-591 |#2|) $) 19)) (-2791 (((-108) |#2| $) 59)) (-2069 (((-3 (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) "failed") (-1 (-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) $) 58)) (-3631 (((-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) $) 63)) (-1623 (((-108) (-1 (-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) $) NIL) (((-108) (-1 (-108) |#3|) $) 67)) (-3339 (((-591 |#3|) $) 43)) (-3164 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-2064 (((-712) (-1 (-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) $) NIL) (((-712) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) $) NIL) (((-712) |#3| $) NIL) (((-712) (-1 (-108) |#3|) $) 68)) (-3022 (((-796) $) 27)) (-4158 (((-108) (-1 (-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) $) NIL) (((-108) (-1 (-108) |#3|) $) 65)) (-4096 (((-108) $ $) 49)))
+(((-1101 |#1| |#2| |#3|) (-10 -8 (-15 -3022 ((-796) |#1|)) (-15 -4096 ((-108) |#1| |#1|)) (-15 -1340 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -1260 (|#1| (-591 (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))))) (-15 -1260 (|#1|)) (-15 -1340 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3249 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4158 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -1623 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -2064 ((-712) (-1 (-108) |#3|) |#1|)) (-15 -3454 ((-591 |#3|) |#1|)) (-15 -2064 ((-712) |#3| |#1|)) (-15 -3164 (|#3| |#1| |#2| |#3|)) (-15 -3164 (|#3| |#1| |#2|)) (-15 -3339 ((-591 |#3|) |#1|)) (-15 -2791 ((-108) |#2| |#1|)) (-15 -2511 ((-591 |#2|) |#1|)) (-15 -3901 ((-3 |#3| "failed") |#2| |#1|)) (-15 -3901 (|#1| (-1 (-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|)) (-15 -3901 (|#1| (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) |#1|)) (-15 -2069 ((-3 (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) "failed") (-1 (-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|)) (-15 -1464 ((-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) |#1|)) (-15 -2470 (|#1| (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) |#1|)) (-15 -3631 ((-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) |#1|)) (-15 -2064 ((-712) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) |#1|)) (-15 -3454 ((-591 (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|)) (-15 -2064 ((-712) (-1 (-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|)) (-15 -1623 ((-108) (-1 (-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|)) (-15 -4158 ((-108) (-1 (-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|)) (-15 -3249 (|#1| (-1 (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|)) (-15 -1340 (|#1| (-1 (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|))) (-1102 |#2| |#3|) (-1018) (-1018)) (T -1101))
+NIL
+(-10 -8 (-15 -3022 ((-796) |#1|)) (-15 -4096 ((-108) |#1| |#1|)) (-15 -1340 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -1260 (|#1| (-591 (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))))) (-15 -1260 (|#1|)) (-15 -1340 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3249 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4158 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -1623 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -2064 ((-712) (-1 (-108) |#3|) |#1|)) (-15 -3454 ((-591 |#3|) |#1|)) (-15 -2064 ((-712) |#3| |#1|)) (-15 -3164 (|#3| |#1| |#2| |#3|)) (-15 -3164 (|#3| |#1| |#2|)) (-15 -3339 ((-591 |#3|) |#1|)) (-15 -2791 ((-108) |#2| |#1|)) (-15 -2511 ((-591 |#2|) |#1|)) (-15 -3901 ((-3 |#3| "failed") |#2| |#1|)) (-15 -3901 (|#1| (-1 (-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|)) (-15 -3901 (|#1| (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) |#1|)) (-15 -2069 ((-3 (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) "failed") (-1 (-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|)) (-15 -1464 ((-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) |#1|)) (-15 -2470 (|#1| (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) |#1|)) (-15 -3631 ((-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) |#1|)) (-15 -2064 ((-712) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) |#1|)) (-15 -3454 ((-591 (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|)) (-15 -2064 ((-712) (-1 (-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|)) (-15 -1623 ((-108) (-1 (-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|)) (-15 -4158 ((-108) (-1 (-108) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|)) (-15 -3249 (|#1| (-1 (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|)) (-15 -1340 (|#1| (-1 (-2 (|:| -2019 |#2|) (|:| -1221 |#3|)) (-2 (|:| -2019 |#2|) (|:| -1221 |#3|))) |#1|)))
+((-3008 (((-108) $ $) 19 (-3321 (|has| |#2| (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-1260 (($) 72) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 71)) (-3296 (((-1176) $ |#1| |#1|) 99 (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) 8)) (-3186 ((|#2| $ |#1| |#2|) 73)) (-1797 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 45 (|has| $ (-6 -4250)))) (-2305 (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 55 (|has| $ (-6 -4250)))) (-2401 (((-3 |#2| "failed") |#1| $) 61)) (-3798 (($) 7 T CONST)) (-3098 (($ $) 58 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250))))) (-3901 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 47 (|has| $ (-6 -4250))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 46 (|has| $ (-6 -4250))) (((-3 |#2| "failed") |#1| $) 62)) (-3677 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 54 (|has| $ (-6 -4250)))) (-1227 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 56 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250)))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 53 (|has| $ (-6 -4250))) (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 52 (|has| $ (-6 -4250)))) (-3255 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4251)))) (-3217 ((|#2| $ |#1|) 88)) (-3454 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 30 (|has| $ (-6 -4250))) (((-591 |#2|) $) 79 (|has| $ (-6 -4250)))) (-2910 (((-108) $ (-712)) 9)) (-3630 ((|#1| $) 96 (|has| |#1| (-788)))) (-2552 (((-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 29 (|has| $ (-6 -4250))) (((-591 |#2|) $) 80 (|has| $ (-6 -4250)))) (-2141 (((-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250)))) (((-108) |#2| $) 82 (-12 (|has| |#2| (-1018)) (|has| $ (-6 -4250))))) (-3468 ((|#1| $) 95 (|has| |#1| (-788)))) (-3249 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 34 (|has| $ (-6 -4251))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4251)))) (-1340 (($ (-1 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70)) (-3971 (((-108) $ (-712)) 10)) (-2339 (((-1072) $) 22 (-3321 (|has| |#2| (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-1542 (((-591 |#1|) $) 63)) (-2484 (((-108) |#1| $) 64)) (-1464 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 39)) (-2470 (($ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 40)) (-2511 (((-591 |#1|) $) 93)) (-2791 (((-108) |#1| $) 92)) (-2047 (((-1036) $) 21 (-3321 (|has| |#2| (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-3066 ((|#2| $) 97 (|has| |#1| (-788)))) (-2069 (((-3 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) "failed") (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 51)) (-1941 (($ $ |#2|) 98 (|has| $ (-6 -4251)))) (-3631 (((-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 41)) (-1623 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 32 (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) 77 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))))) 26 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-273 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 25 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) 24 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 23 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)))) (($ $ (-591 |#2|) (-591 |#2|)) 86 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-273 |#2|)) 84 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018)))) (($ $ (-591 (-273 |#2|))) 83 (-12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))))) (-3493 (((-108) $ $) 14)) (-1615 (((-108) |#2| $) 94 (-12 (|has| $ (-6 -4250)) (|has| |#2| (-1018))))) (-3339 (((-591 |#2|) $) 91)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89)) (-2311 (($) 49) (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 48)) (-2064 (((-712) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 31 (|has| $ (-6 -4250))) (((-712) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| $ (-6 -4250)))) (((-712) |#2| $) 81 (-12 (|has| |#2| (-1018)) (|has| $ (-6 -4250)))) (((-712) (-1 (-108) |#2|) $) 78 (|has| $ (-6 -4250)))) (-3199 (($ $) 13)) (-1408 (((-501) $) 59 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-566 (-501))))) (-3036 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 50)) (-3022 (((-796) $) 18 (-3321 (|has| |#2| (-565 (-796))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-565 (-796)))))) (-1870 (($ (-591 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) 42)) (-4158 (((-108) (-1 (-108) (-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) $) 33 (|has| $ (-6 -4250))) (((-108) (-1 (-108) |#2|) $) 76 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (-3321 (|has| |#2| (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-1102 |#1| |#2|) (-131) (-1018) (-1018)) (T -1102))
+((-3186 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1102 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1018)))) (-1260 (*1 *1) (-12 (-4 *1 (-1102 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))) (-1260 (*1 *1 *2) (-12 (-5 *2 (-591 (-2 (|:| -2019 *3) (|:| -1221 *4)))) (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *1 (-1102 *3 *4)))) (-1340 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1102 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018)))))
+(-13 (-562 |t#1| |t#2|) (-558 |t#1| |t#2|) (-10 -8 (-15 -3186 (|t#2| $ |t#1| |t#2|)) (-15 -1260 ($)) (-15 -1260 ($ (-591 (-2 (|:| -2019 |t#1|) (|:| -1221 |t#2|))))) (-15 -1340 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
+(((-33) . T) ((-102 #0=(-2 (|:| -2019 |#1|) (|:| -1221 |#2|))) . T) ((-97) -3321 (|has| |#2| (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))) ((-565 (-796)) -3321 (|has| |#2| (-1018)) (|has| |#2| (-565 (-796))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-565 (-796)))) ((-142 #0#) . T) ((-566 (-501)) |has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-566 (-501))) ((-209 #0#) . T) ((-215 #0#) . T) ((-265 |#1| |#2|) . T) ((-267 |#1| |#2|) . T) ((-288 #0#) -12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))) ((-288 |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((-464 #0#) . T) ((-464 |#2|) . T) ((-558 |#1| |#2|) . T) ((-486 #0# #0#) -12 (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-288 (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)))) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))) ((-486 |#2| |#2|) -12 (|has| |#2| (-288 |#2|)) (|has| |#2| (-1018))) ((-562 |#1| |#2|) . T) ((-1018) -3321 (|has| |#2| (-1018)) (|has| (-2 (|:| -2019 |#1|) (|:| -1221 |#2|)) (-1018))) ((-1125) . T))
+((-2480 (((-108)) 24)) (-3593 (((-1176) (-1072)) 26)) (-3238 (((-108)) 36)) (-1802 (((-1176)) 34)) (-3707 (((-1176) (-1072) (-1072)) 25)) (-4040 (((-108)) 37)) (-2470 (((-1176) |#1| |#2|) 44)) (-4225 (((-1176)) 20)) (-4153 (((-3 |#2| "failed") |#1|) 42)) (-4097 (((-1176)) 35)))
+(((-1103 |#1| |#2|) (-10 -7 (-15 -4225 ((-1176))) (-15 -3707 ((-1176) (-1072) (-1072))) (-15 -3593 ((-1176) (-1072))) (-15 -1802 ((-1176))) (-15 -4097 ((-1176))) (-15 -2480 ((-108))) (-15 -3238 ((-108))) (-15 -4040 ((-108))) (-15 -4153 ((-3 |#2| "failed") |#1|)) (-15 -2470 ((-1176) |#1| |#2|))) (-1018) (-1018)) (T -1103))
+((-2470 (*1 *2 *3 *4) (-12 (-5 *2 (-1176)) (-5 *1 (-1103 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018)))) (-4153 (*1 *2 *3) (|partial| -12 (-4 *2 (-1018)) (-5 *1 (-1103 *3 *2)) (-4 *3 (-1018)))) (-4040 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1103 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018)))) (-3238 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1103 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018)))) (-2480 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1103 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018)))) (-4097 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-1103 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018)))) (-1802 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-1103 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018)))) (-3593 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1103 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-1018)))) (-3707 (*1 *2 *3 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1103 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-1018)))) (-4225 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-1103 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018)))))
+(-10 -7 (-15 -4225 ((-1176))) (-15 -3707 ((-1176) (-1072) (-1072))) (-15 -3593 ((-1176) (-1072))) (-15 -1802 ((-1176))) (-15 -4097 ((-1176))) (-15 -2480 ((-108))) (-15 -3238 ((-108))) (-15 -4040 ((-108))) (-15 -4153 ((-3 |#2| "failed") |#1|)) (-15 -2470 ((-1176) |#1| |#2|)))
+((-2654 (((-1072) (-1072)) 18)) (-3934 (((-51) (-1072)) 21)))
+(((-1104) (-10 -7 (-15 -3934 ((-51) (-1072))) (-15 -2654 ((-1072) (-1072))))) (T -1104))
+((-2654 (*1 *2 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1104)))) (-3934 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-51)) (-5 *1 (-1104)))))
+(-10 -7 (-15 -3934 ((-51) (-1072))) (-15 -2654 ((-1072) (-1072))))
+((-3022 (((-1106) |#1|) 11)))
+(((-1105 |#1|) (-10 -7 (-15 -3022 ((-1106) |#1|))) (-1018)) (T -1105))
+((-3022 (*1 *2 *3) (-12 (-5 *2 (-1106)) (-5 *1 (-1105 *3)) (-4 *3 (-1018)))))
+(-10 -7 (-15 -3022 ((-1106) |#1|)))
+((-3008 (((-108) $ $) NIL)) (-3081 (((-591 (-1072)) $) 34)) (-2828 (((-591 (-1072)) $ (-591 (-1072))) 37)) (-2232 (((-591 (-1072)) $ (-591 (-1072))) 36)) (-3193 (((-591 (-1072)) $ (-591 (-1072))) 38)) (-3578 (((-591 (-1072)) $) 33)) (-1268 (($) 22)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1845 (((-591 (-1072)) $) 35)) (-3551 (((-1176) $ (-525)) 29) (((-1176) $) 30)) (-1408 (($ (-796) (-525)) 26) (($ (-796) (-525) (-796)) NIL)) (-3022 (((-796) $) 40) (($ (-796)) 24)) (-4096 (((-108) $ $) NIL)))
+(((-1106) (-13 (-1018) (-10 -8 (-15 -3022 ($ (-796))) (-15 -1408 ($ (-796) (-525))) (-15 -1408 ($ (-796) (-525) (-796))) (-15 -3551 ((-1176) $ (-525))) (-15 -3551 ((-1176) $)) (-15 -1845 ((-591 (-1072)) $)) (-15 -3081 ((-591 (-1072)) $)) (-15 -1268 ($)) (-15 -3578 ((-591 (-1072)) $)) (-15 -3193 ((-591 (-1072)) $ (-591 (-1072)))) (-15 -2828 ((-591 (-1072)) $ (-591 (-1072)))) (-15 -2232 ((-591 (-1072)) $ (-591 (-1072))))))) (T -1106))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-796)) (-5 *1 (-1106)))) (-1408 (*1 *1 *2 *3) (-12 (-5 *2 (-796)) (-5 *3 (-525)) (-5 *1 (-1106)))) (-1408 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-796)) (-5 *3 (-525)) (-5 *1 (-1106)))) (-3551 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *2 (-1176)) (-5 *1 (-1106)))) (-3551 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-1106)))) (-1845 (*1 *2 *1) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1106)))) (-3081 (*1 *2 *1) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1106)))) (-1268 (*1 *1) (-5 *1 (-1106))) (-3578 (*1 *2 *1) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1106)))) (-3193 (*1 *2 *1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1106)))) (-2828 (*1 *2 *1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1106)))) (-2232 (*1 *2 *1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1106)))))
+(-13 (-1018) (-10 -8 (-15 -3022 ($ (-796))) (-15 -1408 ($ (-796) (-525))) (-15 -1408 ($ (-796) (-525) (-796))) (-15 -3551 ((-1176) $ (-525))) (-15 -3551 ((-1176) $)) (-15 -1845 ((-591 (-1072)) $)) (-15 -3081 ((-591 (-1072)) $)) (-15 -1268 ($)) (-15 -3578 ((-591 (-1072)) $)) (-15 -3193 ((-591 (-1072)) $ (-591 (-1072)))) (-15 -2828 ((-591 (-1072)) $ (-591 (-1072)))) (-15 -2232 ((-591 (-1072)) $ (-591 (-1072))))))
+((-3008 (((-108) $ $) NIL)) (-2947 (((-1072) $ (-1072)) 17) (((-1072) $) 16)) (-3598 (((-1072) $ (-1072)) 15)) (-3522 (($ $ (-1072)) NIL)) (-2514 (((-3 (-1072) "failed") $) 11)) (-1664 (((-1072) $) 8)) (-2815 (((-3 (-1072) "failed") $) 12)) (-1277 (((-1072) $) 9)) (-1976 (($ (-366)) NIL) (($ (-366) (-1072)) NIL)) (-2400 (((-366) $) NIL)) (-2339 (((-1072) $) NIL)) (-3317 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3701 (((-108) $) 18)) (-3022 (((-796) $) NIL)) (-2886 (($ $) NIL)) (-4096 (((-108) $ $) NIL)))
+(((-1107) (-13 (-342 (-366) (-1072)) (-10 -8 (-15 -2947 ((-1072) $ (-1072))) (-15 -2947 ((-1072) $)) (-15 -1664 ((-1072) $)) (-15 -2514 ((-3 (-1072) "failed") $)) (-15 -2815 ((-3 (-1072) "failed") $)) (-15 -3701 ((-108) $))))) (T -1107))
+((-2947 (*1 *2 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1107)))) (-2947 (*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-1107)))) (-1664 (*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-1107)))) (-2514 (*1 *2 *1) (|partial| -12 (-5 *2 (-1072)) (-5 *1 (-1107)))) (-2815 (*1 *2 *1) (|partial| -12 (-5 *2 (-1072)) (-5 *1 (-1107)))) (-3701 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1107)))))
+(-13 (-342 (-366) (-1072)) (-10 -8 (-15 -2947 ((-1072) $ (-1072))) (-15 -2947 ((-1072) $)) (-15 -1664 ((-1072) $)) (-15 -2514 ((-3 (-1072) "failed") $)) (-15 -2815 ((-3 (-1072) "failed") $)) (-15 -3701 ((-108) $))))
+((-3329 (((-3 (-525) "failed") |#1|) 19)) (-3189 (((-3 (-525) "failed") |#1|) 14)) (-3524 (((-525) (-1072)) 28)))
+(((-1108 |#1|) (-10 -7 (-15 -3329 ((-3 (-525) "failed") |#1|)) (-15 -3189 ((-3 (-525) "failed") |#1|)) (-15 -3524 ((-525) (-1072)))) (-975)) (T -1108))
+((-3524 (*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-525)) (-5 *1 (-1108 *4)) (-4 *4 (-975)))) (-3189 (*1 *2 *3) (|partial| -12 (-5 *2 (-525)) (-5 *1 (-1108 *3)) (-4 *3 (-975)))) (-3329 (*1 *2 *3) (|partial| -12 (-5 *2 (-525)) (-5 *1 (-1108 *3)) (-4 *3 (-975)))))
+(-10 -7 (-15 -3329 ((-3 (-525) "failed") |#1|)) (-15 -3189 ((-3 (-525) "failed") |#1|)) (-15 -3524 ((-525) (-1072))))
+((-3955 (((-1049 (-205))) 9)))
+(((-1109) (-10 -7 (-15 -3955 ((-1049 (-205)))))) (T -1109))
+((-3955 (*1 *2) (-12 (-5 *2 (-1049 (-205))) (-5 *1 (-1109)))))
+(-10 -7 (-15 -3955 ((-1049 (-205)))))
+((-1784 (($) 11)) (-1563 (($ $) 35)) (-1515 (($ $) 33)) (-1346 (($ $) 25)) (-1591 (($ $) 17)) (-3277 (($ $) 15)) (-1578 (($ $) 19)) (-1385 (($ $) 30)) (-1527 (($ $) 34)) (-1358 (($ $) 29)))
+(((-1110 |#1|) (-10 -8 (-15 -1784 (|#1|)) (-15 -1563 (|#1| |#1|)) (-15 -1515 (|#1| |#1|)) (-15 -1591 (|#1| |#1|)) (-15 -3277 (|#1| |#1|)) (-15 -1578 (|#1| |#1|)) (-15 -1527 (|#1| |#1|)) (-15 -1346 (|#1| |#1|)) (-15 -1385 (|#1| |#1|)) (-15 -1358 (|#1| |#1|))) (-1111)) (T -1110))
+NIL
+(-10 -8 (-15 -1784 (|#1|)) (-15 -1563 (|#1| |#1|)) (-15 -1515 (|#1| |#1|)) (-15 -1591 (|#1| |#1|)) (-15 -3277 (|#1| |#1|)) (-15 -1578 (|#1| |#1|)) (-15 -1527 (|#1| |#1|)) (-15 -1346 (|#1| |#1|)) (-15 -1385 (|#1| |#1|)) (-15 -1358 (|#1| |#1|)))
+((-1987 (($ $) 26)) (-3169 (($ $) 11)) (-1431 (($ $) 27)) (-3144 (($ $) 10)) (-1719 (($ $) 28)) (-1321 (($ $) 9)) (-1784 (($) 16)) (-1488 (($ $) 19)) (-1409 (($ $) 18)) (-1502 (($ $) 29)) (-1333 (($ $) 8)) (-1996 (($ $) 30)) (-1309 (($ $) 7)) (-1973 (($ $) 31)) (-3156 (($ $) 6)) (-1563 (($ $) 20)) (-1371 (($ $) 32)) (-1515 (($ $) 21)) (-1346 (($ $) 33)) (-1591 (($ $) 22)) (-1400 (($ $) 34)) (-3277 (($ $) 23)) (-1415 (($ $) 35)) (-1578 (($ $) 24)) (-1385 (($ $) 36)) (-1527 (($ $) 25)) (-1358 (($ $) 37)) (** (($ $ $) 17)))
+(((-1111) (-131)) (T -1111))
+((-1784 (*1 *1) (-4 *1 (-1111))))
+(-13 (-1114) (-91) (-466) (-34) (-263) (-10 -8 (-15 -1784 ($))))
+(((-34) . T) ((-91) . T) ((-263) . T) ((-466) . T) ((-1114) . T))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3024 ((|#1| $) 17)) (-3935 (($ |#1| (-591 $)) 23) (($ (-591 |#1|)) 27) (($ |#1|) 25)) (-3891 (((-108) $ (-712)) 48)) (-1780 ((|#1| $ |#1|) 14 (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) 13 (|has| $ (-6 -4251)))) (-3798 (($) NIL T CONST)) (-3454 (((-591 |#1|) $) 52 (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) 43)) (-2148 (((-108) $ $) 33 (|has| |#1| (-1018)))) (-2910 (((-108) $ (-712)) 41)) (-2552 (((-591 |#1|) $) 53 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 51 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3249 (($ (-1 |#1| |#1|) $) 24 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 22)) (-3971 (((-108) $ (-712)) 40)) (-2599 (((-591 |#1|) $) 37)) (-1203 (((-108) $) 36)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-1623 (((-108) (-1 (-108) |#1|) $) 50 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 74)) (-3028 (((-108) $) 9)) (-3209 (($) 10)) (-3164 ((|#1| $ "value") NIL)) (-3505 (((-525) $ $) 32)) (-2304 (((-591 $) $) 59)) (-2748 (((-108) $ $) 77)) (-3964 (((-591 $) $) 72)) (-1776 (($ $) 73)) (-2237 (((-108) $) 56)) (-2064 (((-712) (-1 (-108) |#1|) $) 20 (|has| $ (-6 -4250))) (((-712) |#1| $) 16 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3199 (($ $) 58)) (-3022 (((-796) $) 61 (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) 12)) (-1632 (((-108) $ $) 29 (|has| |#1| (-1018)))) (-4158 (((-108) (-1 (-108) |#1|) $) 49 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 28 (|has| |#1| (-1018)))) (-4045 (((-712) $) 39 (|has| $ (-6 -4250)))))
+(((-1112 |#1|) (-13 (-940 |#1|) (-10 -8 (-6 -4250) (-6 -4251) (-15 -3935 ($ |#1| (-591 $))) (-15 -3935 ($ (-591 |#1|))) (-15 -3935 ($ |#1|)) (-15 -2237 ((-108) $)) (-15 -1776 ($ $)) (-15 -3964 ((-591 $) $)) (-15 -2748 ((-108) $ $)) (-15 -2304 ((-591 $) $)))) (-1018)) (T -1112))
+((-2237 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1112 *3)) (-4 *3 (-1018)))) (-3935 (*1 *1 *2 *3) (-12 (-5 *3 (-591 (-1112 *2))) (-5 *1 (-1112 *2)) (-4 *2 (-1018)))) (-3935 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-1112 *3)))) (-3935 (*1 *1 *2) (-12 (-5 *1 (-1112 *2)) (-4 *2 (-1018)))) (-1776 (*1 *1 *1) (-12 (-5 *1 (-1112 *2)) (-4 *2 (-1018)))) (-3964 (*1 *2 *1) (-12 (-5 *2 (-591 (-1112 *3))) (-5 *1 (-1112 *3)) (-4 *3 (-1018)))) (-2748 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1112 *3)) (-4 *3 (-1018)))) (-2304 (*1 *2 *1) (-12 (-5 *2 (-591 (-1112 *3))) (-5 *1 (-1112 *3)) (-4 *3 (-1018)))))
+(-13 (-940 |#1|) (-10 -8 (-6 -4250) (-6 -4251) (-15 -3935 ($ |#1| (-591 $))) (-15 -3935 ($ (-591 |#1|))) (-15 -3935 ($ |#1|)) (-15 -2237 ((-108) $)) (-15 -1776 ($ $)) (-15 -3964 ((-591 $) $)) (-15 -2748 ((-108) $ $)) (-15 -2304 ((-591 $) $))))
+((-3169 (($ $) 15)) (-1321 (($ $) 12)) (-1333 (($ $) 10)) (-1309 (($ $) 17)))
+(((-1113 |#1|) (-10 -8 (-15 -1309 (|#1| |#1|)) (-15 -1333 (|#1| |#1|)) (-15 -1321 (|#1| |#1|)) (-15 -3169 (|#1| |#1|))) (-1114)) (T -1113))
+NIL
+(-10 -8 (-15 -1309 (|#1| |#1|)) (-15 -1333 (|#1| |#1|)) (-15 -1321 (|#1| |#1|)) (-15 -3169 (|#1| |#1|)))
+((-3169 (($ $) 11)) (-3144 (($ $) 10)) (-1321 (($ $) 9)) (-1333 (($ $) 8)) (-1309 (($ $) 7)) (-3156 (($ $) 6)))
+(((-1114) (-131)) (T -1114))
+((-3169 (*1 *1 *1) (-4 *1 (-1114))) (-3144 (*1 *1 *1) (-4 *1 (-1114))) (-1321 (*1 *1 *1) (-4 *1 (-1114))) (-1333 (*1 *1 *1) (-4 *1 (-1114))) (-1309 (*1 *1 *1) (-4 *1 (-1114))) (-3156 (*1 *1 *1) (-4 *1 (-1114))))
+(-13 (-10 -8 (-15 -3156 ($ $)) (-15 -1309 ($ $)) (-15 -1333 ($ $)) (-15 -1321 ($ $)) (-15 -3144 ($ $)) (-15 -3169 ($ $))))
+((-2185 ((|#2| |#2|) 88)) (-1253 (((-108) |#2|) 26)) (-1373 ((|#2| |#2|) 30)) (-1386 ((|#2| |#2|) 32)) (-3425 ((|#2| |#2| (-1089)) 83) ((|#2| |#2|) 84)) (-3818 (((-157 |#2|) |#2|) 28)) (-2793 ((|#2| |#2| (-1089)) 85) ((|#2| |#2|) 86)))
+(((-1115 |#1| |#2|) (-10 -7 (-15 -3425 (|#2| |#2|)) (-15 -3425 (|#2| |#2| (-1089))) (-15 -2793 (|#2| |#2|)) (-15 -2793 (|#2| |#2| (-1089))) (-15 -2185 (|#2| |#2|)) (-15 -1373 (|#2| |#2|)) (-15 -1386 (|#2| |#2|)) (-15 -1253 ((-108) |#2|)) (-15 -3818 ((-157 |#2|) |#2|))) (-13 (-429) (-788) (-966 (-525)) (-587 (-525))) (-13 (-27) (-1111) (-408 |#1|))) (T -1115))
+((-3818 (*1 *2 *3) (-12 (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-157 *3)) (-5 *1 (-1115 *4 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *4))))) (-1253 (*1 *2 *3) (-12 (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *2 (-108)) (-5 *1 (-1115 *4 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *4))))) (-1386 (*1 *2 *2) (-12 (-4 *3 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *3))))) (-1373 (*1 *2 *2) (-12 (-4 *3 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *3))))) (-2185 (*1 *2 *2) (-12 (-4 *3 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *3))))) (-2793 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-1115 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *4))))) (-2793 (*1 *2 *2) (-12 (-4 *3 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *3))))) (-3425 (*1 *2 *2 *3) (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-1115 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *4))))) (-3425 (*1 *2 *2) (-12 (-4 *3 (-13 (-429) (-788) (-966 (-525)) (-587 (-525)))) (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *3))))))
+(-10 -7 (-15 -3425 (|#2| |#2|)) (-15 -3425 (|#2| |#2| (-1089))) (-15 -2793 (|#2| |#2|)) (-15 -2793 (|#2| |#2| (-1089))) (-15 -2185 (|#2| |#2|)) (-15 -1373 (|#2| |#2|)) (-15 -1386 (|#2| |#2|)) (-15 -1253 ((-108) |#2|)) (-15 -3818 ((-157 |#2|) |#2|)))
+((-2984 ((|#4| |#4| |#1|) 27)) (-2358 ((|#4| |#4| |#1|) 28)))
+(((-1116 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2984 (|#4| |#4| |#1|)) (-15 -2358 (|#4| |#4| |#1|))) (-517) (-351 |#1|) (-351 |#1|) (-629 |#1| |#2| |#3|)) (T -1116))
+((-2358 (*1 *2 *2 *3) (-12 (-4 *3 (-517)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *1 (-1116 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))) (-2984 (*1 *2 *2 *3) (-12 (-4 *3 (-517)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-5 *1 (-1116 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))))
+(-10 -7 (-15 -2984 (|#4| |#4| |#1|)) (-15 -2358 (|#4| |#4| |#1|)))
+((-2770 ((|#2| |#2|) 134)) (-1815 ((|#2| |#2|) 131)) (-2017 ((|#2| |#2|) 122)) (-2782 ((|#2| |#2|) 119)) (-1765 ((|#2| |#2|) 127)) (-1868 ((|#2| |#2|) 115)) (-3336 ((|#2| |#2|) 43)) (-3290 ((|#2| |#2|) 95)) (-2179 ((|#2| |#2|) 75)) (-4098 ((|#2| |#2|) 129)) (-2996 ((|#2| |#2|) 117)) (-3204 ((|#2| |#2|) 139)) (-1210 ((|#2| |#2|) 137)) (-2978 ((|#2| |#2|) 138)) (-4107 ((|#2| |#2|) 136)) (-3756 ((|#2| |#2|) 149)) (-2878 ((|#2| |#2|) 30 (-12 (|has| |#2| (-566 (-825 |#1|))) (|has| |#2| (-819 |#1|)) (|has| |#1| (-566 (-825 |#1|))) (|has| |#1| (-819 |#1|))))) (-1614 ((|#2| |#2|) 76)) (-2986 ((|#2| |#2|) 140)) (-4093 ((|#2| |#2|) 141)) (-2323 ((|#2| |#2|) 128)) (-1823 ((|#2| |#2|) 116)) (-1310 ((|#2| |#2|) 135)) (-2243 ((|#2| |#2|) 133)) (-3200 ((|#2| |#2|) 123)) (-1934 ((|#2| |#2|) 121)) (-2505 ((|#2| |#2|) 125)) (-2678 ((|#2| |#2|) 113)))
+(((-1117 |#1| |#2|) (-10 -7 (-15 -4093 (|#2| |#2|)) (-15 -2179 (|#2| |#2|)) (-15 -3756 (|#2| |#2|)) (-15 -3290 (|#2| |#2|)) (-15 -3336 (|#2| |#2|)) (-15 -1614 (|#2| |#2|)) (-15 -2986 (|#2| |#2|)) (-15 -2678 (|#2| |#2|)) (-15 -2505 (|#2| |#2|)) (-15 -3200 (|#2| |#2|)) (-15 -1310 (|#2| |#2|)) (-15 -1823 (|#2| |#2|)) (-15 -2323 (|#2| |#2|)) (-15 -2996 (|#2| |#2|)) (-15 -4098 (|#2| |#2|)) (-15 -1868 (|#2| |#2|)) (-15 -1765 (|#2| |#2|)) (-15 -2017 (|#2| |#2|)) (-15 -2770 (|#2| |#2|)) (-15 -2782 (|#2| |#2|)) (-15 -1815 (|#2| |#2|)) (-15 -1934 (|#2| |#2|)) (-15 -2243 (|#2| |#2|)) (-15 -4107 (|#2| |#2|)) (-15 -1210 (|#2| |#2|)) (-15 -2978 (|#2| |#2|)) (-15 -3204 (|#2| |#2|)) (IF (|has| |#1| (-819 |#1|)) (IF (|has| |#1| (-566 (-825 |#1|))) (IF (|has| |#2| (-566 (-825 |#1|))) (IF (|has| |#2| (-819 |#1|)) (-15 -2878 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-13 (-788) (-429)) (-13 (-408 |#1|) (-1111))) (T -1117))
+((-2878 (*1 *2 *2) (-12 (-4 *3 (-566 (-825 *3))) (-4 *3 (-819 *3)) (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-566 (-825 *3))) (-4 *2 (-819 *3)) (-4 *2 (-13 (-408 *3) (-1111))))) (-3204 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-2978 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-1210 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-4107 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-2243 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-1934 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-1815 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-2782 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-2770 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-2017 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-1765 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-1868 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-4098 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-2996 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-2323 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-1823 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-1310 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-3200 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-2505 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-2678 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-2986 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-1614 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-3336 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-3290 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-3756 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-2179 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))) (-4093 (*1 *2 *2) (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2)) (-4 *2 (-13 (-408 *3) (-1111))))))
+(-10 -7 (-15 -4093 (|#2| |#2|)) (-15 -2179 (|#2| |#2|)) (-15 -3756 (|#2| |#2|)) (-15 -3290 (|#2| |#2|)) (-15 -3336 (|#2| |#2|)) (-15 -1614 (|#2| |#2|)) (-15 -2986 (|#2| |#2|)) (-15 -2678 (|#2| |#2|)) (-15 -2505 (|#2| |#2|)) (-15 -3200 (|#2| |#2|)) (-15 -1310 (|#2| |#2|)) (-15 -1823 (|#2| |#2|)) (-15 -2323 (|#2| |#2|)) (-15 -2996 (|#2| |#2|)) (-15 -4098 (|#2| |#2|)) (-15 -1868 (|#2| |#2|)) (-15 -1765 (|#2| |#2|)) (-15 -2017 (|#2| |#2|)) (-15 -2770 (|#2| |#2|)) (-15 -2782 (|#2| |#2|)) (-15 -1815 (|#2| |#2|)) (-15 -1934 (|#2| |#2|)) (-15 -2243 (|#2| |#2|)) (-15 -4107 (|#2| |#2|)) (-15 -1210 (|#2| |#2|)) (-15 -2978 (|#2| |#2|)) (-15 -3204 (|#2| |#2|)) (IF (|has| |#1| (-819 |#1|)) (IF (|has| |#1| (-566 (-825 |#1|))) (IF (|has| |#2| (-566 (-825 |#1|))) (IF (|has| |#2| (-819 |#1|)) (-15 -2878 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
+((-3130 (((-108) |#5| $) 60) (((-108) $) 102)) (-1568 ((|#5| |#5| $) 75)) (-2305 (($ (-1 (-108) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 119)) (-2656 (((-591 |#5|) (-591 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|)) 73)) (-1251 (((-3 $ "failed") (-591 |#5|)) 126)) (-3078 (((-3 $ "failed") $) 112)) (-2736 ((|#5| |#5| $) 94)) (-3135 (((-108) |#5| $ (-1 (-108) |#5| |#5|)) 31)) (-2933 ((|#5| |#5| $) 98)) (-1227 ((|#5| (-1 |#5| |#5| |#5|) $ |#5| |#5|) NIL) ((|#5| (-1 |#5| |#5| |#5|) $ |#5|) NIL) ((|#5| (-1 |#5| |#5| |#5|) $) NIL) ((|#5| |#5| $ (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|)) 69)) (-2719 (((-2 (|:| -3529 (-591 |#5|)) (|:| -1976 (-591 |#5|))) $) 55)) (-1809 (((-108) |#5| $) 58) (((-108) $) 103)) (-2009 ((|#4| $) 108)) (-3708 (((-3 |#5| "failed") $) 110)) (-3280 (((-591 |#5|) $) 49)) (-3196 (((-108) |#5| $) 67) (((-108) $) 107)) (-4066 ((|#5| |#5| $) 81)) (-2154 (((-108) $ $) 27)) (-2115 (((-108) |#5| $) 63) (((-108) $) 105)) (-2731 ((|#5| |#5| $) 78)) (-3066 (((-3 |#5| "failed") $) 109)) (-2784 (($ $ |#5|) 127)) (-1316 (((-712) $) 52)) (-3036 (($ (-591 |#5|)) 124)) (-3134 (($ $ |#4|) 122)) (-3443 (($ $ |#4|) 121)) (-2487 (($ $) 120)) (-3022 (((-796) $) NIL) (((-591 |#5|) $) 113)) (-3223 (((-712) $) 130)) (-2122 (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#5|))) "failed") (-591 |#5|) (-1 (-108) |#5| |#5|)) 43) (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#5|))) "failed") (-591 |#5|) (-1 (-108) |#5|) (-1 (-108) |#5| |#5|)) 45)) (-2165 (((-108) $ (-1 (-108) |#5| (-591 |#5|))) 100)) (-3872 (((-591 |#4|) $) 115)) (-1884 (((-108) |#4| $) 118)) (-4096 (((-108) $ $) 19)))
+(((-1118 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3223 ((-712) |#1|)) (-15 -2784 (|#1| |#1| |#5|)) (-15 -2305 ((-3 |#5| "failed") |#1| |#4|)) (-15 -1884 ((-108) |#4| |#1|)) (-15 -3872 ((-591 |#4|) |#1|)) (-15 -3078 ((-3 |#1| "failed") |#1|)) (-15 -3708 ((-3 |#5| "failed") |#1|)) (-15 -3066 ((-3 |#5| "failed") |#1|)) (-15 -2933 (|#5| |#5| |#1|)) (-15 -2487 (|#1| |#1|)) (-15 -2736 (|#5| |#5| |#1|)) (-15 -4066 (|#5| |#5| |#1|)) (-15 -2731 (|#5| |#5| |#1|)) (-15 -1568 (|#5| |#5| |#1|)) (-15 -2656 ((-591 |#5|) (-591 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -1227 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -3196 ((-108) |#1|)) (-15 -2115 ((-108) |#1|)) (-15 -3130 ((-108) |#1|)) (-15 -2165 ((-108) |#1| (-1 (-108) |#5| (-591 |#5|)))) (-15 -3196 ((-108) |#5| |#1|)) (-15 -2115 ((-108) |#5| |#1|)) (-15 -3130 ((-108) |#5| |#1|)) (-15 -3135 ((-108) |#5| |#1| (-1 (-108) |#5| |#5|))) (-15 -1809 ((-108) |#1|)) (-15 -1809 ((-108) |#5| |#1|)) (-15 -2719 ((-2 (|:| -3529 (-591 |#5|)) (|:| -1976 (-591 |#5|))) |#1|)) (-15 -1316 ((-712) |#1|)) (-15 -3280 ((-591 |#5|) |#1|)) (-15 -2122 ((-3 (-2 (|:| |bas| |#1|) (|:| -1211 (-591 |#5|))) "failed") (-591 |#5|) (-1 (-108) |#5|) (-1 (-108) |#5| |#5|))) (-15 -2122 ((-3 (-2 (|:| |bas| |#1|) (|:| -1211 (-591 |#5|))) "failed") (-591 |#5|) (-1 (-108) |#5| |#5|))) (-15 -2154 ((-108) |#1| |#1|)) (-15 -3134 (|#1| |#1| |#4|)) (-15 -3443 (|#1| |#1| |#4|)) (-15 -2009 (|#4| |#1|)) (-15 -1251 ((-3 |#1| "failed") (-591 |#5|))) (-15 -3022 ((-591 |#5|) |#1|)) (-15 -3036 (|#1| (-591 |#5|))) (-15 -1227 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -1227 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -2305 (|#1| (-1 (-108) |#5|) |#1|)) (-15 -1227 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3022 ((-796) |#1|)) (-15 -4096 ((-108) |#1| |#1|))) (-1119 |#2| |#3| |#4| |#5|) (-517) (-734) (-788) (-989 |#2| |#3| |#4|)) (T -1118))
+NIL
+(-10 -8 (-15 -3223 ((-712) |#1|)) (-15 -2784 (|#1| |#1| |#5|)) (-15 -2305 ((-3 |#5| "failed") |#1| |#4|)) (-15 -1884 ((-108) |#4| |#1|)) (-15 -3872 ((-591 |#4|) |#1|)) (-15 -3078 ((-3 |#1| "failed") |#1|)) (-15 -3708 ((-3 |#5| "failed") |#1|)) (-15 -3066 ((-3 |#5| "failed") |#1|)) (-15 -2933 (|#5| |#5| |#1|)) (-15 -2487 (|#1| |#1|)) (-15 -2736 (|#5| |#5| |#1|)) (-15 -4066 (|#5| |#5| |#1|)) (-15 -2731 (|#5| |#5| |#1|)) (-15 -1568 (|#5| |#5| |#1|)) (-15 -2656 ((-591 |#5|) (-591 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -1227 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -3196 ((-108) |#1|)) (-15 -2115 ((-108) |#1|)) (-15 -3130 ((-108) |#1|)) (-15 -2165 ((-108) |#1| (-1 (-108) |#5| (-591 |#5|)))) (-15 -3196 ((-108) |#5| |#1|)) (-15 -2115 ((-108) |#5| |#1|)) (-15 -3130 ((-108) |#5| |#1|)) (-15 -3135 ((-108) |#5| |#1| (-1 (-108) |#5| |#5|))) (-15 -1809 ((-108) |#1|)) (-15 -1809 ((-108) |#5| |#1|)) (-15 -2719 ((-2 (|:| -3529 (-591 |#5|)) (|:| -1976 (-591 |#5|))) |#1|)) (-15 -1316 ((-712) |#1|)) (-15 -3280 ((-591 |#5|) |#1|)) (-15 -2122 ((-3 (-2 (|:| |bas| |#1|) (|:| -1211 (-591 |#5|))) "failed") (-591 |#5|) (-1 (-108) |#5|) (-1 (-108) |#5| |#5|))) (-15 -2122 ((-3 (-2 (|:| |bas| |#1|) (|:| -1211 (-591 |#5|))) "failed") (-591 |#5|) (-1 (-108) |#5| |#5|))) (-15 -2154 ((-108) |#1| |#1|)) (-15 -3134 (|#1| |#1| |#4|)) (-15 -3443 (|#1| |#1| |#4|)) (-15 -2009 (|#4| |#1|)) (-15 -1251 ((-3 |#1| "failed") (-591 |#5|))) (-15 -3022 ((-591 |#5|) |#1|)) (-15 -3036 (|#1| (-591 |#5|))) (-15 -1227 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -1227 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -2305 (|#1| (-1 (-108) |#5|) |#1|)) (-15 -1227 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3022 ((-796) |#1|)) (-15 -4096 ((-108) |#1| |#1|)))
+((-3008 (((-108) $ $) 7)) (-3817 (((-591 (-2 (|:| -3529 $) (|:| -1976 (-591 |#4|)))) (-591 |#4|)) 85)) (-2113 (((-591 $) (-591 |#4|)) 86)) (-1507 (((-591 |#3|) $) 33)) (-1430 (((-108) $) 26)) (-3490 (((-108) $) 17 (|has| |#1| (-517)))) (-3130 (((-108) |#4| $) 101) (((-108) $) 97)) (-1568 ((|#4| |#4| $) 92)) (-3327 (((-2 (|:| |under| $) (|:| -2662 $) (|:| |upper| $)) $ |#3|) 27)) (-3891 (((-108) $ (-712)) 44)) (-2305 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4250))) (((-3 |#4| "failed") $ |#3|) 79)) (-3798 (($) 45 T CONST)) (-3382 (((-108) $) 22 (|has| |#1| (-517)))) (-2438 (((-108) $ $) 24 (|has| |#1| (-517)))) (-2055 (((-108) $ $) 23 (|has| |#1| (-517)))) (-1964 (((-108) $) 25 (|has| |#1| (-517)))) (-2656 (((-591 |#4|) (-591 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-3853 (((-591 |#4|) (-591 |#4|) $) 18 (|has| |#1| (-517)))) (-1921 (((-591 |#4|) (-591 |#4|) $) 19 (|has| |#1| (-517)))) (-1251 (((-3 $ "failed") (-591 |#4|)) 36)) (-3528 (($ (-591 |#4|)) 35)) (-3078 (((-3 $ "failed") $) 82)) (-2736 ((|#4| |#4| $) 89)) (-3098 (($ $) 68 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ |#4| $) 67 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4250)))) (-3407 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-517)))) (-3135 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-2933 ((|#4| |#4| $) 87)) (-1227 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4250))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4250))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-2719 (((-2 (|:| -3529 (-591 |#4|)) (|:| -1976 (-591 |#4|))) $) 105)) (-3454 (((-591 |#4|) $) 52 (|has| $ (-6 -4250)))) (-1809 (((-108) |#4| $) 104) (((-108) $) 103)) (-2009 ((|#3| $) 34)) (-2910 (((-108) $ (-712)) 43)) (-2552 (((-591 |#4|) $) 53 (|has| $ (-6 -4250)))) (-2141 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#4| |#4|) $) 47)) (-3993 (((-591 |#3|) $) 32)) (-4174 (((-108) |#3| $) 31)) (-3971 (((-108) $ (-712)) 42)) (-2339 (((-1072) $) 9)) (-3708 (((-3 |#4| "failed") $) 83)) (-3280 (((-591 |#4|) $) 107)) (-3196 (((-108) |#4| $) 99) (((-108) $) 95)) (-4066 ((|#4| |#4| $) 90)) (-2154 (((-108) $ $) 110)) (-2934 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-517)))) (-2115 (((-108) |#4| $) 100) (((-108) $) 96)) (-2731 ((|#4| |#4| $) 91)) (-2047 (((-1036) $) 10)) (-3066 (((-3 |#4| "failed") $) 84)) (-2069 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-1554 (((-3 $ "failed") $ |#4|) 78)) (-2784 (($ $ |#4|) 77)) (-1623 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 |#4|) (-591 |#4|)) 59 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-273 |#4|)) 57 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-591 (-273 |#4|))) 56 (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))) (-3493 (((-108) $ $) 38)) (-3028 (((-108) $) 41)) (-3209 (($) 40)) (-1316 (((-712) $) 106)) (-2064 (((-712) |#4| $) 54 (-12 (|has| |#4| (-1018)) (|has| $ (-6 -4250)))) (((-712) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4250)))) (-3199 (($ $) 39)) (-1408 (((-501) $) 69 (|has| |#4| (-566 (-501))))) (-3036 (($ (-591 |#4|)) 60)) (-3134 (($ $ |#3|) 28)) (-3443 (($ $ |#3|) 30)) (-2487 (($ $) 88)) (-3010 (($ $ |#3|) 29)) (-3022 (((-796) $) 11) (((-591 |#4|) $) 37)) (-3223 (((-712) $) 76 (|has| |#3| (-346)))) (-2122 (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-2165 (((-108) $ (-1 (-108) |#4| (-591 |#4|))) 98)) (-4158 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4250)))) (-3872 (((-591 |#3|) $) 81)) (-1884 (((-108) |#3| $) 80)) (-4096 (((-108) $ $) 6)) (-4045 (((-712) $) 46 (|has| $ (-6 -4250)))))
+(((-1119 |#1| |#2| |#3| |#4|) (-131) (-517) (-734) (-788) (-989 |t#1| |t#2| |t#3|)) (T -1119))
+((-2154 (*1 *2 *1 *1) (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-108)))) (-2122 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1 (-108) *8 *8)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-2 (|:| |bas| *1) (|:| -1211 (-591 *8)))) (-5 *3 (-591 *8)) (-4 *1 (-1119 *5 *6 *7 *8)))) (-2122 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 (-108) *9)) (-5 *5 (-1 (-108) *9 *9)) (-4 *9 (-989 *6 *7 *8)) (-4 *6 (-517)) (-4 *7 (-734)) (-4 *8 (-788)) (-5 *2 (-2 (|:| |bas| *1) (|:| -1211 (-591 *9)))) (-5 *3 (-591 *9)) (-4 *1 (-1119 *6 *7 *8 *9)))) (-3280 (*1 *2 *1) (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-591 *6)))) (-1316 (*1 *2 *1) (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-712)))) (-2719 (*1 *2 *1) (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-2 (|:| -3529 (-591 *6)) (|:| -1976 (-591 *6)))))) (-1809 (*1 *2 *3 *1) (-12 (-4 *1 (-1119 *4 *5 *6 *3)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))) (-1809 (*1 *2 *1) (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-108)))) (-3135 (*1 *2 *3 *1 *4) (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *1 (-1119 *5 *6 *7 *3)) (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-108)))) (-3130 (*1 *2 *3 *1) (-12 (-4 *1 (-1119 *4 *5 *6 *3)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))) (-2115 (*1 *2 *3 *1) (-12 (-4 *1 (-1119 *4 *5 *6 *3)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))) (-3196 (*1 *2 *3 *1) (-12 (-4 *1 (-1119 *4 *5 *6 *3)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))) (-2165 (*1 *2 *1 *3) (-12 (-5 *3 (-1 (-108) *7 (-591 *7))) (-4 *1 (-1119 *4 *5 *6 *7)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108)))) (-3130 (*1 *2 *1) (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-108)))) (-2115 (*1 *2 *1) (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-108)))) (-3196 (*1 *2 *1) (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-108)))) (-1227 (*1 *2 *2 *1 *3 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-108) *2 *2)) (-4 *1 (-1119 *5 *6 *7 *2)) (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *2 (-989 *5 *6 *7)))) (-2656 (*1 *2 *2 *1 *3 *4) (-12 (-5 *2 (-591 *8)) (-5 *3 (-1 *8 *8 *8)) (-5 *4 (-1 (-108) *8 *8)) (-4 *1 (-1119 *5 *6 *7 *8)) (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-989 *5 *6 *7)))) (-1568 (*1 *2 *2 *1) (-12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))) (-2731 (*1 *2 *2 *1) (-12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))) (-4066 (*1 *2 *2 *1) (-12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))) (-2736 (*1 *2 *2 *1) (-12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))) (-2487 (*1 *1 *1) (-12 (-4 *1 (-1119 *2 *3 *4 *5)) (-4 *2 (-517)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *5 (-989 *2 *3 *4)))) (-2933 (*1 *2 *2 *1) (-12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))) (-2113 (*1 *2 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 *1)) (-4 *1 (-1119 *4 *5 *6 *7)))) (-3817 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-591 (-2 (|:| -3529 *1) (|:| -1976 (-591 *7))))) (-5 *3 (-591 *7)) (-4 *1 (-1119 *4 *5 *6 *7)))) (-3066 (*1 *2 *1) (|partial| -12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))) (-3708 (*1 *2 *1) (|partial| -12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))) (-3078 (*1 *1 *1) (|partial| -12 (-4 *1 (-1119 *2 *3 *4 *5)) (-4 *2 (-517)) (-4 *3 (-734)) (-4 *4 (-788)) (-4 *5 (-989 *2 *3 *4)))) (-3872 (*1 *2 *1) (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-591 *5)))) (-1884 (*1 *2 *3 *1) (-12 (-4 *1 (-1119 *4 *5 *3 *6)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *3 (-788)) (-4 *6 (-989 *4 *5 *3)) (-5 *2 (-108)))) (-2305 (*1 *2 *1 *3) (|partial| -12 (-4 *1 (-1119 *4 *5 *3 *2)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *3 (-788)) (-4 *2 (-989 *4 *5 *3)))) (-1554 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))) (-2784 (*1 *1 *1 *2) (-12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))) (-3223 (*1 *2 *1) (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-4 *5 (-346)) (-5 *2 (-712)))))
+(-13 (-907 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-6 -4250) (-6 -4251) (-15 -2154 ((-108) $ $)) (-15 -2122 ((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |t#4|))) "failed") (-591 |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -2122 ((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |t#4|))) "failed") (-591 |t#4|) (-1 (-108) |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -3280 ((-591 |t#4|) $)) (-15 -1316 ((-712) $)) (-15 -2719 ((-2 (|:| -3529 (-591 |t#4|)) (|:| -1976 (-591 |t#4|))) $)) (-15 -1809 ((-108) |t#4| $)) (-15 -1809 ((-108) $)) (-15 -3135 ((-108) |t#4| $ (-1 (-108) |t#4| |t#4|))) (-15 -3130 ((-108) |t#4| $)) (-15 -2115 ((-108) |t#4| $)) (-15 -3196 ((-108) |t#4| $)) (-15 -2165 ((-108) $ (-1 (-108) |t#4| (-591 |t#4|)))) (-15 -3130 ((-108) $)) (-15 -2115 ((-108) $)) (-15 -3196 ((-108) $)) (-15 -1227 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -2656 ((-591 |t#4|) (-591 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -1568 (|t#4| |t#4| $)) (-15 -2731 (|t#4| |t#4| $)) (-15 -4066 (|t#4| |t#4| $)) (-15 -2736 (|t#4| |t#4| $)) (-15 -2487 ($ $)) (-15 -2933 (|t#4| |t#4| $)) (-15 -2113 ((-591 $) (-591 |t#4|))) (-15 -3817 ((-591 (-2 (|:| -3529 $) (|:| -1976 (-591 |t#4|)))) (-591 |t#4|))) (-15 -3066 ((-3 |t#4| "failed") $)) (-15 -3708 ((-3 |t#4| "failed") $)) (-15 -3078 ((-3 $ "failed") $)) (-15 -3872 ((-591 |t#3|) $)) (-15 -1884 ((-108) |t#3| $)) (-15 -2305 ((-3 |t#4| "failed") $ |t#3|)) (-15 -1554 ((-3 $ "failed") $ |t#4|)) (-15 -2784 ($ $ |t#4|)) (IF (|has| |t#3| (-346)) (-15 -3223 ((-712) $)) |%noBranch|)))
+(((-33) . T) ((-97) . T) ((-565 (-591 |#4|)) . T) ((-565 (-796)) . T) ((-142 |#4|) . T) ((-566 (-501)) |has| |#4| (-566 (-501))) ((-288 |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))) ((-464 |#4|) . T) ((-486 |#4| |#4|) -12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))) ((-907 |#1| |#2| |#3| |#4|) . T) ((-1018) . T) ((-1125) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1507 (((-591 (-1089)) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-1987 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1361 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1431 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1719 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) NIL T CONST)) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-4215 (((-885 |#1|) $ (-712)) 17) (((-885 |#1|) $ (-712) (-712)) NIL)) (-3123 (((-108) $) NIL)) (-1784 (($) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3873 (((-712) $ (-1089)) NIL) (((-712) $ (-1089) (-712)) NIL)) (-2824 (((-108) $) NIL)) (-3956 (($ $ (-525)) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2202 (((-108) $) NIL)) (-1480 (($ $ (-591 (-1089)) (-591 (-497 (-1089)))) NIL) (($ $ (-1089) (-497 (-1089))) NIL) (($ |#1| (-497 (-1089))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-1488 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-4141 (($ $ (-1089)) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089) |#1|) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2047 (((-1036) $) NIL)) (-3827 (($ (-1 $) (-1089) |#1|) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2784 (($ $ (-712)) NIL)) (-2089 (((-3 $ "failed") $ $) NIL (|has| |#1| (-517)))) (-1409 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-4132 (($ $ (-1089) $) NIL) (($ $ (-591 (-1089)) (-591 $)) NIL) (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL)) (-3266 (($ $ (-1089)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL)) (-1316 (((-497 (-1089)) $) NIL)) (-1502 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3571 (($ $) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#1|) NIL (|has| |#1| (-160))) (($ $) NIL (|has| |#1| (-517))) (($ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ (-1089)) NIL) (($ (-885 |#1|)) NIL)) (-2560 ((|#1| $ (-497 (-1089))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL) (((-885 |#1|) $ (-712)) NIL)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) NIL)) (-1563 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1515 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3277 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) NIL T CONST)) (-4196 (($ $ (-1089)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL)) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-1120 |#1|) (-13 (-682 |#1| (-1089)) (-10 -8 (-15 -2560 ((-885 |#1|) $ (-712))) (-15 -3022 ($ (-1089))) (-15 -3022 ($ (-885 |#1|))) (IF (|has| |#1| (-37 (-385 (-525)))) (PROGN (-15 -4141 ($ $ (-1089) |#1|)) (-15 -3827 ($ (-1 $) (-1089) |#1|))) |%noBranch|))) (-975)) (T -1120))
+((-2560 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-5 *2 (-885 *4)) (-5 *1 (-1120 *4)) (-4 *4 (-975)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-1120 *3)) (-4 *3 (-975)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-885 *3)) (-4 *3 (-975)) (-5 *1 (-1120 *3)))) (-4141 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *1 (-1120 *3)) (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)))) (-3827 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1120 *4))) (-5 *3 (-1089)) (-5 *1 (-1120 *4)) (-4 *4 (-37 (-385 (-525)))) (-4 *4 (-975)))))
+(-13 (-682 |#1| (-1089)) (-10 -8 (-15 -2560 ((-885 |#1|) $ (-712))) (-15 -3022 ($ (-1089))) (-15 -3022 ($ (-885 |#1|))) (IF (|has| |#1| (-37 (-385 (-525)))) (PROGN (-15 -4141 ($ $ (-1089) |#1|)) (-15 -3827 ($ (-1 $) (-1089) |#1|))) |%noBranch|)))
+((-1733 (($ |#1| (-591 (-591 (-876 (-205)))) (-108)) 19)) (-1660 (((-108) $ (-108)) 18)) (-3605 (((-108) $) 17)) (-3664 (((-591 (-591 (-876 (-205)))) $) 13)) (-1796 ((|#1| $) 8)) (-1816 (((-108) $) 15)))
+(((-1121 |#1|) (-10 -8 (-15 -1796 (|#1| $)) (-15 -3664 ((-591 (-591 (-876 (-205)))) $)) (-15 -1816 ((-108) $)) (-15 -3605 ((-108) $)) (-15 -1660 ((-108) $ (-108))) (-15 -1733 ($ |#1| (-591 (-591 (-876 (-205)))) (-108)))) (-905)) (T -1121))
+((-1733 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-591 (-591 (-876 (-205))))) (-5 *4 (-108)) (-5 *1 (-1121 *2)) (-4 *2 (-905)))) (-1660 (*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-905)))) (-3605 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-905)))) (-1816 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-905)))) (-3664 (*1 *2 *1) (-12 (-5 *2 (-591 (-591 (-876 (-205))))) (-5 *1 (-1121 *3)) (-4 *3 (-905)))) (-1796 (*1 *2 *1) (-12 (-5 *1 (-1121 *2)) (-4 *2 (-905)))))
+(-10 -8 (-15 -1796 (|#1| $)) (-15 -3664 ((-591 (-591 (-876 (-205)))) $)) (-15 -1816 ((-108) $)) (-15 -3605 ((-108) $)) (-15 -1660 ((-108) $ (-108))) (-15 -1733 ($ |#1| (-591 (-591 (-876 (-205)))) (-108))))
+((-2092 (((-876 (-205)) (-876 (-205))) 25)) (-3643 (((-876 (-205)) (-205) (-205) (-205) (-205)) 10)) (-1271 (((-591 (-876 (-205))) (-876 (-205)) (-876 (-205)) (-876 (-205)) (-205) (-591 (-591 (-205)))) 37)) (-2109 (((-205) (-876 (-205)) (-876 (-205))) 21)) (-4210 (((-876 (-205)) (-876 (-205)) (-876 (-205))) 22)) (-2042 (((-591 (-591 (-205))) (-525)) 31)) (-4164 (((-876 (-205)) (-876 (-205)) (-876 (-205))) 20)) (-4156 (((-876 (-205)) (-876 (-205)) (-876 (-205))) 19)) (* (((-876 (-205)) (-205) (-876 (-205))) 18)))
+(((-1122) (-10 -7 (-15 -3643 ((-876 (-205)) (-205) (-205) (-205) (-205))) (-15 * ((-876 (-205)) (-205) (-876 (-205)))) (-15 -4156 ((-876 (-205)) (-876 (-205)) (-876 (-205)))) (-15 -4164 ((-876 (-205)) (-876 (-205)) (-876 (-205)))) (-15 -2109 ((-205) (-876 (-205)) (-876 (-205)))) (-15 -4210 ((-876 (-205)) (-876 (-205)) (-876 (-205)))) (-15 -2092 ((-876 (-205)) (-876 (-205)))) (-15 -2042 ((-591 (-591 (-205))) (-525))) (-15 -1271 ((-591 (-876 (-205))) (-876 (-205)) (-876 (-205)) (-876 (-205)) (-205) (-591 (-591 (-205))))))) (T -1122))
+((-1271 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-591 (-591 (-205)))) (-5 *4 (-205)) (-5 *2 (-591 (-876 *4))) (-5 *1 (-1122)) (-5 *3 (-876 *4)))) (-2042 (*1 *2 *3) (-12 (-5 *3 (-525)) (-5 *2 (-591 (-591 (-205)))) (-5 *1 (-1122)))) (-2092 (*1 *2 *2) (-12 (-5 *2 (-876 (-205))) (-5 *1 (-1122)))) (-4210 (*1 *2 *2 *2) (-12 (-5 *2 (-876 (-205))) (-5 *1 (-1122)))) (-2109 (*1 *2 *3 *3) (-12 (-5 *3 (-876 (-205))) (-5 *2 (-205)) (-5 *1 (-1122)))) (-4164 (*1 *2 *2 *2) (-12 (-5 *2 (-876 (-205))) (-5 *1 (-1122)))) (-4156 (*1 *2 *2 *2) (-12 (-5 *2 (-876 (-205))) (-5 *1 (-1122)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-876 (-205))) (-5 *3 (-205)) (-5 *1 (-1122)))) (-3643 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-876 (-205))) (-5 *1 (-1122)) (-5 *3 (-205)))))
+(-10 -7 (-15 -3643 ((-876 (-205)) (-205) (-205) (-205) (-205))) (-15 * ((-876 (-205)) (-205) (-876 (-205)))) (-15 -4156 ((-876 (-205)) (-876 (-205)) (-876 (-205)))) (-15 -4164 ((-876 (-205)) (-876 (-205)) (-876 (-205)))) (-15 -2109 ((-205) (-876 (-205)) (-876 (-205)))) (-15 -4210 ((-876 (-205)) (-876 (-205)) (-876 (-205)))) (-15 -2092 ((-876 (-205)) (-876 (-205)))) (-15 -2042 ((-591 (-591 (-205))) (-525))) (-15 -1271 ((-591 (-876 (-205))) (-876 (-205)) (-876 (-205)) (-876 (-205)) (-205) (-591 (-591 (-205))))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-2305 ((|#1| $ (-712)) 13)) (-1657 (((-712) $) 12)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-3022 (((-890 |#1|) $) 10) (($ (-890 |#1|)) 9) (((-796) $) 23 (|has| |#1| (-565 (-796))))) (-4096 (((-108) $ $) 16 (|has| |#1| (-1018)))))
+(((-1123 |#1|) (-13 (-565 (-890 |#1|)) (-10 -8 (-15 -3022 ($ (-890 |#1|))) (-15 -2305 (|#1| $ (-712))) (-15 -1657 ((-712) $)) (IF (|has| |#1| (-565 (-796))) (-6 (-565 (-796))) |%noBranch|) (IF (|has| |#1| (-1018)) (-6 (-1018)) |%noBranch|))) (-1125)) (T -1123))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-890 *3)) (-4 *3 (-1125)) (-5 *1 (-1123 *3)))) (-2305 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-5 *1 (-1123 *2)) (-4 *2 (-1125)))) (-1657 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-1123 *3)) (-4 *3 (-1125)))))
+(-13 (-565 (-890 |#1|)) (-10 -8 (-15 -3022 ($ (-890 |#1|))) (-15 -2305 (|#1| $ (-712))) (-15 -1657 ((-712) $)) (IF (|has| |#1| (-565 (-796))) (-6 (-565 (-796))) |%noBranch|) (IF (|has| |#1| (-1018)) (-6 (-1018)) |%noBranch|)))
+((-2174 (((-396 (-1085 (-1085 |#1|))) (-1085 (-1085 |#1|)) (-525)) 80)) (-1930 (((-396 (-1085 (-1085 |#1|))) (-1085 (-1085 |#1|))) 74)) (-1937 (((-396 (-1085 (-1085 |#1|))) (-1085 (-1085 |#1|))) 59)))
+(((-1124 |#1|) (-10 -7 (-15 -1930 ((-396 (-1085 (-1085 |#1|))) (-1085 (-1085 |#1|)))) (-15 -1937 ((-396 (-1085 (-1085 |#1|))) (-1085 (-1085 |#1|)))) (-15 -2174 ((-396 (-1085 (-1085 |#1|))) (-1085 (-1085 |#1|)) (-525)))) (-327)) (T -1124))
+((-2174 (*1 *2 *3 *4) (-12 (-5 *4 (-525)) (-4 *5 (-327)) (-5 *2 (-396 (-1085 (-1085 *5)))) (-5 *1 (-1124 *5)) (-5 *3 (-1085 (-1085 *5))))) (-1937 (*1 *2 *3) (-12 (-4 *4 (-327)) (-5 *2 (-396 (-1085 (-1085 *4)))) (-5 *1 (-1124 *4)) (-5 *3 (-1085 (-1085 *4))))) (-1930 (*1 *2 *3) (-12 (-4 *4 (-327)) (-5 *2 (-396 (-1085 (-1085 *4)))) (-5 *1 (-1124 *4)) (-5 *3 (-1085 (-1085 *4))))))
+(-10 -7 (-15 -1930 ((-396 (-1085 (-1085 |#1|))) (-1085 (-1085 |#1|)))) (-15 -1937 ((-396 (-1085 (-1085 |#1|))) (-1085 (-1085 |#1|)))) (-15 -2174 ((-396 (-1085 (-1085 |#1|))) (-1085 (-1085 |#1|)) (-525))))
+NIL
+(((-1125) (-131)) (T -1125))
+NIL
+(-13 (-10 -7 (-6 -2137)))
+((-3577 (((-108)) 15)) (-1582 (((-1176) (-591 |#1|) (-591 |#1|)) 19) (((-1176) (-591 |#1|)) 20)) (-2910 (((-108) |#1| |#1|) 32 (|has| |#1| (-788)))) (-3971 (((-108) |#1| |#1| (-1 (-108) |#1| |#1|)) 27) (((-3 (-108) "failed") |#1| |#1|) 25)) (-2972 ((|#1| (-591 |#1|)) 33 (|has| |#1| (-788))) ((|#1| (-591 |#1|) (-1 (-108) |#1| |#1|)) 28)) (-1463 (((-2 (|:| -2023 (-591 |#1|)) (|:| -2397 (-591 |#1|)))) 17)))
+(((-1126 |#1|) (-10 -7 (-15 -1582 ((-1176) (-591 |#1|))) (-15 -1582 ((-1176) (-591 |#1|) (-591 |#1|))) (-15 -1463 ((-2 (|:| -2023 (-591 |#1|)) (|:| -2397 (-591 |#1|))))) (-15 -3971 ((-3 (-108) "failed") |#1| |#1|)) (-15 -3971 ((-108) |#1| |#1| (-1 (-108) |#1| |#1|))) (-15 -2972 (|#1| (-591 |#1|) (-1 (-108) |#1| |#1|))) (-15 -3577 ((-108))) (IF (|has| |#1| (-788)) (PROGN (-15 -2972 (|#1| (-591 |#1|))) (-15 -2910 ((-108) |#1| |#1|))) |%noBranch|)) (-1018)) (T -1126))
+((-2910 (*1 *2 *3 *3) (-12 (-5 *2 (-108)) (-5 *1 (-1126 *3)) (-4 *3 (-788)) (-4 *3 (-1018)))) (-2972 (*1 *2 *3) (-12 (-5 *3 (-591 *2)) (-4 *2 (-1018)) (-4 *2 (-788)) (-5 *1 (-1126 *2)))) (-3577 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1126 *3)) (-4 *3 (-1018)))) (-2972 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *2)) (-5 *4 (-1 (-108) *2 *2)) (-5 *1 (-1126 *2)) (-4 *2 (-1018)))) (-3971 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *3 (-1018)) (-5 *2 (-108)) (-5 *1 (-1126 *3)))) (-3971 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-108)) (-5 *1 (-1126 *3)) (-4 *3 (-1018)))) (-1463 (*1 *2) (-12 (-5 *2 (-2 (|:| -2023 (-591 *3)) (|:| -2397 (-591 *3)))) (-5 *1 (-1126 *3)) (-4 *3 (-1018)))) (-1582 (*1 *2 *3 *3) (-12 (-5 *3 (-591 *4)) (-4 *4 (-1018)) (-5 *2 (-1176)) (-5 *1 (-1126 *4)))) (-1582 (*1 *2 *3) (-12 (-5 *3 (-591 *4)) (-4 *4 (-1018)) (-5 *2 (-1176)) (-5 *1 (-1126 *4)))))
+(-10 -7 (-15 -1582 ((-1176) (-591 |#1|))) (-15 -1582 ((-1176) (-591 |#1|) (-591 |#1|))) (-15 -1463 ((-2 (|:| -2023 (-591 |#1|)) (|:| -2397 (-591 |#1|))))) (-15 -3971 ((-3 (-108) "failed") |#1| |#1|)) (-15 -3971 ((-108) |#1| |#1| (-1 (-108) |#1| |#1|))) (-15 -2972 (|#1| (-591 |#1|) (-1 (-108) |#1| |#1|))) (-15 -3577 ((-108))) (IF (|has| |#1| (-788)) (PROGN (-15 -2972 (|#1| (-591 |#1|))) (-15 -2910 ((-108) |#1| |#1|))) |%noBranch|))
+((-1654 (((-1176) (-591 (-1089)) (-591 (-1089))) 13) (((-1176) (-591 (-1089))) 11)) (-1359 (((-1176)) 14)) (-2961 (((-2 (|:| -2397 (-591 (-1089))) (|:| -2023 (-591 (-1089))))) 18)))
+(((-1127) (-10 -7 (-15 -1654 ((-1176) (-591 (-1089)))) (-15 -1654 ((-1176) (-591 (-1089)) (-591 (-1089)))) (-15 -2961 ((-2 (|:| -2397 (-591 (-1089))) (|:| -2023 (-591 (-1089)))))) (-15 -1359 ((-1176))))) (T -1127))
+((-1359 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-1127)))) (-2961 (*1 *2) (-12 (-5 *2 (-2 (|:| -2397 (-591 (-1089))) (|:| -2023 (-591 (-1089))))) (-5 *1 (-1127)))) (-1654 (*1 *2 *3 *3) (-12 (-5 *3 (-591 (-1089))) (-5 *2 (-1176)) (-5 *1 (-1127)))) (-1654 (*1 *2 *3) (-12 (-5 *3 (-591 (-1089))) (-5 *2 (-1176)) (-5 *1 (-1127)))))
+(-10 -7 (-15 -1654 ((-1176) (-591 (-1089)))) (-15 -1654 ((-1176) (-591 (-1089)) (-591 (-1089)))) (-15 -2961 ((-2 (|:| -2397 (-591 (-1089))) (|:| -2023 (-591 (-1089)))))) (-15 -1359 ((-1176))))
+((-1291 (($ $) 17)) (-2744 (((-108) $) 24)))
+(((-1128 |#1|) (-10 -8 (-15 -1291 (|#1| |#1|)) (-15 -2744 ((-108) |#1|))) (-1129)) (T -1128))
+NIL
+(-10 -8 (-15 -1291 (|#1| |#1|)) (-15 -2744 ((-108) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2157 (((-3 $ "failed") $ $) 19)) (-1291 (($ $) 51)) (-2827 (((-396 $) $) 52)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2744 (((-108) $) 53)) (-2824 (((-108) $) 31)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-1348 (((-396 $) $) 50)) (-2089 (((-3 $ "failed") $ $) 42)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43)) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 39)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24)))
+(((-1129) (-131)) (T -1129))
+((-2744 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-108)))) (-2827 (*1 *2 *1) (-12 (-5 *2 (-396 *1)) (-4 *1 (-1129)))) (-1291 (*1 *1 *1) (-4 *1 (-1129))) (-1348 (*1 *2 *1) (-12 (-5 *2 (-396 *1)) (-4 *1 (-1129)))))
+(-13 (-429) (-10 -8 (-15 -2744 ((-108) $)) (-15 -2827 ((-396 $) $)) (-15 -1291 ($ $)) (-15 -1348 ((-396 $) $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-126) . T) ((-565 (-796)) . T) ((-160) . T) ((-269) . T) ((-429) . T) ((-517) . T) ((-593 $) . T) ((-659 $) . T) ((-668) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-1340 (((-1135 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1135 |#1| |#3| |#5|)) 23)))
+(((-1130 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1340 ((-1135 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1135 |#1| |#3| |#5|)))) (-975) (-975) (-1089) (-1089) |#1| |#2|) (T -1130))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1135 *5 *7 *9)) (-4 *5 (-975)) (-4 *6 (-975)) (-14 *7 (-1089)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1135 *6 *8 *10)) (-5 *1 (-1130 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1089)))))
+(-10 -7 (-15 -1340 ((-1135 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1135 |#1| |#3| |#5|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1507 (((-591 (-1003)) $) 74)) (-2037 (((-1089) $) 103)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 51 (|has| |#1| (-517)))) (-3706 (($ $) 52 (|has| |#1| (-517)))) (-1715 (((-108) $) 54 (|has| |#1| (-517)))) (-2121 (($ $ (-525)) 98) (($ $ (-525) (-525)) 97)) (-1631 (((-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))) $) 105)) (-1987 (($ $) 135 (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) 118 (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) 19)) (-1291 (($ $) 162 (|has| |#1| (-341)))) (-2827 (((-396 $) $) 163 (|has| |#1| (-341)))) (-1361 (($ $) 117 (|has| |#1| (-37 (-385 (-525)))))) (-1947 (((-108) $ $) 153 (|has| |#1| (-341)))) (-1431 (($ $) 134 (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) 119 (|has| |#1| (-37 (-385 (-525)))))) (-3682 (($ (-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|)))) 174)) (-1719 (($ $) 133 (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) 120 (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) 17 T CONST)) (-2129 (($ $ $) 157 (|has| |#1| (-341)))) (-1710 (($ $) 60)) (-4163 (((-3 $ "failed") $) 34)) (-3267 (((-385 (-885 |#1|)) $ (-525)) 172 (|has| |#1| (-517))) (((-385 (-885 |#1|)) $ (-525) (-525)) 171 (|has| |#1| (-517)))) (-2110 (($ $ $) 156 (|has| |#1| (-341)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 151 (|has| |#1| (-341)))) (-2744 (((-108) $) 164 (|has| |#1| (-341)))) (-3123 (((-108) $) 73)) (-1784 (($) 145 (|has| |#1| (-37 (-385 (-525)))))) (-3873 (((-525) $) 100) (((-525) $ (-525)) 99)) (-2824 (((-108) $) 31)) (-3956 (($ $ (-525)) 116 (|has| |#1| (-37 (-385 (-525)))))) (-3111 (($ $ (-854)) 101)) (-3264 (($ (-1 |#1| (-525)) $) 173)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 160 (|has| |#1| (-341)))) (-2202 (((-108) $) 62)) (-1480 (($ |#1| (-525)) 61) (($ $ (-1003) (-525)) 76) (($ $ (-591 (-1003)) (-591 (-525))) 75)) (-1340 (($ (-1 |#1| |#1|) $) 63)) (-1488 (($ $) 142 (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) 65)) (-1678 ((|#1| $) 66)) (-1356 (($ (-591 $)) 149 (|has| |#1| (-341))) (($ $ $) 148 (|has| |#1| (-341)))) (-2339 (((-1072) $) 9)) (-1622 (($ $) 165 (|has| |#1| (-341)))) (-4141 (($ $) 170 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089)) 169 (-3321 (-12 (|has| |#1| (-29 (-525))) (|has| |#1| (-891)) (|has| |#1| (-1111)) (|has| |#1| (-37 (-385 (-525))))) (-12 (|has| |#1| (-15 -1507 ((-591 (-1089)) |#1|))) (|has| |#1| (-15 -4141 (|#1| |#1| (-1089)))) (|has| |#1| (-37 (-385 (-525)))))))) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 150 (|has| |#1| (-341)))) (-1399 (($ (-591 $)) 147 (|has| |#1| (-341))) (($ $ $) 146 (|has| |#1| (-341)))) (-1348 (((-396 $) $) 161 (|has| |#1| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 158 (|has| |#1| (-341)))) (-2784 (($ $ (-525)) 95)) (-2089 (((-3 $ "failed") $ $) 50 (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 152 (|has| |#1| (-341)))) (-1409 (($ $) 143 (|has| |#1| (-37 (-385 (-525)))))) (-4132 (((-1070 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-525)))))) (-1712 (((-712) $) 154 (|has| |#1| (-341)))) (-3164 ((|#1| $ (-525)) 104) (($ $ $) 81 (|has| (-525) (-1030)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 155 (|has| |#1| (-341)))) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) 89 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-1089) (-712)) 88 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-591 (-1089))) 87 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-1089)) 86 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-712)) 84 (|has| |#1| (-15 * (|#1| (-525) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (-1316 (((-525) $) 64)) (-1502 (($ $) 132 (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) 121 (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) 131 (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) 122 (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) 130 (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) 123 (|has| |#1| (-37 (-385 (-525)))))) (-3571 (($ $) 72)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 47 (|has| |#1| (-160))) (($ (-385 (-525))) 57 (|has| |#1| (-37 (-385 (-525))))) (($ $) 49 (|has| |#1| (-517)))) (-2560 ((|#1| $ (-525)) 59)) (-1437 (((-3 $ "failed") $) 48 (|has| |#1| (-136)))) (-2128 (((-712)) 29)) (-1682 ((|#1| $) 102)) (-1563 (($ $) 141 (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) 129 (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) 53 (|has| |#1| (-517)))) (-1515 (($ $) 140 (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) 128 (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) 139 (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) 127 (|has| |#1| (-37 (-385 (-525)))))) (-2176 ((|#1| $ (-525)) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-525)))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3277 (($ $) 138 (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) 126 (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) 137 (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) 125 (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) 136 (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) 124 (|has| |#1| (-37 (-385 (-525)))))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 166 (|has| |#1| (-341)))) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) 93 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-1089) (-712)) 92 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-591 (-1089))) 91 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-1089)) 90 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-712)) 85 (|has| |#1| (-15 * (|#1| (-525) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (-4096 (((-108) $ $) 6)) (-4173 (($ $ |#1|) 58 (|has| |#1| (-341))) (($ $ $) 168 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 167 (|has| |#1| (-341))) (($ $ $) 144 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 115 (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-385 (-525)) $) 56 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 55 (|has| |#1| (-37 (-385 (-525)))))))
+(((-1131 |#1|) (-131) (-975)) (T -1131))
+((-3682 (*1 *1 *2) (-12 (-5 *2 (-1070 (-2 (|:| |k| (-525)) (|:| |c| *3)))) (-4 *3 (-975)) (-4 *1 (-1131 *3)))) (-3264 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-525))) (-4 *1 (-1131 *3)) (-4 *3 (-975)))) (-3267 (*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-4 *1 (-1131 *4)) (-4 *4 (-975)) (-4 *4 (-517)) (-5 *2 (-385 (-885 *4))))) (-3267 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-525)) (-4 *1 (-1131 *4)) (-4 *4 (-975)) (-4 *4 (-517)) (-5 *2 (-385 (-885 *4))))) (-4141 (*1 *1 *1) (-12 (-4 *1 (-1131 *2)) (-4 *2 (-975)) (-4 *2 (-37 (-385 (-525)))))) (-4141 (*1 *1 *1 *2) (-3321 (-12 (-5 *2 (-1089)) (-4 *1 (-1131 *3)) (-4 *3 (-975)) (-12 (-4 *3 (-29 (-525))) (-4 *3 (-891)) (-4 *3 (-1111)) (-4 *3 (-37 (-385 (-525)))))) (-12 (-5 *2 (-1089)) (-4 *1 (-1131 *3)) (-4 *3 (-975)) (-12 (|has| *3 (-15 -1507 ((-591 *2) *3))) (|has| *3 (-15 -4141 (*3 *3 *2))) (-4 *3 (-37 (-385 (-525)))))))))
+(-13 (-1149 |t#1| (-525)) (-10 -8 (-15 -3682 ($ (-1070 (-2 (|:| |k| (-525)) (|:| |c| |t#1|))))) (-15 -3264 ($ (-1 |t#1| (-525)) $)) (IF (|has| |t#1| (-517)) (PROGN (-15 -3267 ((-385 (-885 |t#1|)) $ (-525))) (-15 -3267 ((-385 (-885 |t#1|)) $ (-525) (-525)))) |%noBranch|) (IF (|has| |t#1| (-37 (-385 (-525)))) (PROGN (-15 -4141 ($ $)) (IF (|has| |t#1| (-15 -4141 (|t#1| |t#1| (-1089)))) (IF (|has| |t#1| (-15 -1507 ((-591 (-1089)) |t#1|))) (-15 -4141 ($ $ (-1089))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1111)) (IF (|has| |t#1| (-891)) (IF (|has| |t#1| (-29 (-525))) (-15 -4141 ($ $ (-1089))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-932)) (-6 (-1111))) |%noBranch|) (IF (|has| |t#1| (-341)) (-6 (-341)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-525)) . T) ((-25) . T) ((-37 #1=(-385 (-525))) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-37 |#1|) |has| |#1| (-160)) ((-37 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-34) |has| |#1| (-37 (-385 (-525)))) ((-91) |has| |#1| (-37 (-385 (-525)))) ((-97) . T) ((-107 #1# #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341)) (|has| |#1| (-160))) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) -3321 (|has| |#1| (-517)) (|has| |#1| (-341)) (|has| |#1| (-160))) ((-213) |has| |#1| (-15 * (|#1| (-525) |#1|))) ((-223) |has| |#1| (-341)) ((-263) |has| |#1| (-37 (-385 (-525)))) ((-265 $ $) |has| (-525) (-1030)) ((-269) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-286) |has| |#1| (-341)) ((-341) |has| |#1| (-341)) ((-429) |has| |#1| (-341)) ((-466) |has| |#1| (-37 (-385 (-525)))) ((-517) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-593 #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-593 |#1|) . T) ((-593 $) . T) ((-659 #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-659 |#1|) |has| |#1| (-160)) ((-659 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-668) . T) ((-833 (-1089)) -12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))) ((-904 |#1| #0# (-1003)) . T) ((-853) |has| |#1| (-341)) ((-932) |has| |#1| (-37 (-385 (-525)))) ((-981 #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-981 |#1|) . T) ((-981 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341)) (|has| |#1| (-160))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1111) |has| |#1| (-37 (-385 (-525)))) ((-1114) |has| |#1| (-37 (-385 (-525)))) ((-1129) |has| |#1| (-341)) ((-1149 |#1| #0#) . T))
+((-1800 (((-108) $) 12)) (-1251 (((-3 |#3| "failed") $) 17) (((-3 (-1089) "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL) (((-3 (-525) "failed") $) NIL)) (-3528 ((|#3| $) 14) (((-1089) $) NIL) (((-385 (-525)) $) NIL) (((-525) $) NIL)))
+(((-1132 |#1| |#2| |#3|) (-10 -8 (-15 -3528 ((-525) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3528 ((-1089) |#1|)) (-15 -1251 ((-3 (-1089) "failed") |#1|)) (-15 -3528 (|#3| |#1|)) (-15 -1251 ((-3 |#3| "failed") |#1|)) (-15 -1800 ((-108) |#1|))) (-1133 |#2| |#3|) (-975) (-1162 |#2|)) (T -1132))
+NIL
+(-10 -8 (-15 -3528 ((-525) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3528 ((-1089) |#1|)) (-15 -1251 ((-3 (-1089) "failed") |#1|)) (-15 -3528 (|#3| |#1|)) (-15 -1251 ((-3 |#3| "failed") |#1|)) (-15 -1800 ((-108) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1508 ((|#2| $) 231 (-1213 (|has| |#2| (-286)) (|has| |#1| (-341))))) (-1507 (((-591 (-1003)) $) 74)) (-2037 (((-1089) $) 103)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 51 (|has| |#1| (-517)))) (-3706 (($ $) 52 (|has| |#1| (-517)))) (-1715 (((-108) $) 54 (|has| |#1| (-517)))) (-2121 (($ $ (-525)) 98) (($ $ (-525) (-525)) 97)) (-1631 (((-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))) $) 105)) (-1219 ((|#2| $) 267)) (-3347 (((-3 |#2| "failed") $) 263)) (-1569 ((|#2| $) 264)) (-1987 (($ $) 135 (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) 118 (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) 19)) (-1965 (((-396 (-1085 $)) (-1085 $)) 240 (-1213 (|has| |#2| (-842)) (|has| |#1| (-341))))) (-1291 (($ $) 162 (|has| |#1| (-341)))) (-2827 (((-396 $) $) 163 (|has| |#1| (-341)))) (-1361 (($ $) 117 (|has| |#1| (-37 (-385 (-525)))))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) 237 (-1213 (|has| |#2| (-842)) (|has| |#1| (-341))))) (-1947 (((-108) $ $) 153 (|has| |#1| (-341)))) (-1431 (($ $) 134 (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) 119 (|has| |#1| (-37 (-385 (-525)))))) (-3329 (((-525) $) 249 (-1213 (|has| |#2| (-761)) (|has| |#1| (-341))))) (-3682 (($ (-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|)))) 174)) (-1719 (($ $) 133 (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) 120 (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) 17 T CONST)) (-1251 (((-3 |#2| "failed") $) 270) (((-3 (-525) "failed") $) 259 (-1213 (|has| |#2| (-966 (-525))) (|has| |#1| (-341)))) (((-3 (-385 (-525)) "failed") $) 257 (-1213 (|has| |#2| (-966 (-525))) (|has| |#1| (-341)))) (((-3 (-1089) "failed") $) 242 (-1213 (|has| |#2| (-966 (-1089))) (|has| |#1| (-341))))) (-3528 ((|#2| $) 269) (((-525) $) 260 (-1213 (|has| |#2| (-966 (-525))) (|has| |#1| (-341)))) (((-385 (-525)) $) 258 (-1213 (|has| |#2| (-966 (-525))) (|has| |#1| (-341)))) (((-1089) $) 243 (-1213 (|has| |#2| (-966 (-1089))) (|has| |#1| (-341))))) (-1900 (($ $) 266) (($ (-525) $) 265)) (-2129 (($ $ $) 157 (|has| |#1| (-341)))) (-1710 (($ $) 60)) (-3305 (((-631 |#2|) (-631 $)) 221 (|has| |#1| (-341))) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) 220 (|has| |#1| (-341))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 219 (-1213 (|has| |#2| (-587 (-525))) (|has| |#1| (-341)))) (((-631 (-525)) (-631 $)) 218 (-1213 (|has| |#2| (-587 (-525))) (|has| |#1| (-341))))) (-4163 (((-3 $ "failed") $) 34)) (-3267 (((-385 (-885 |#1|)) $ (-525)) 172 (|has| |#1| (-517))) (((-385 (-885 |#1|)) $ (-525) (-525)) 171 (|has| |#1| (-517)))) (-3377 (($) 233 (-1213 (|has| |#2| (-510)) (|has| |#1| (-341))))) (-2110 (($ $ $) 156 (|has| |#1| (-341)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 151 (|has| |#1| (-341)))) (-2744 (((-108) $) 164 (|has| |#1| (-341)))) (-2134 (((-108) $) 247 (-1213 (|has| |#2| (-761)) (|has| |#1| (-341))))) (-3123 (((-108) $) 73)) (-1784 (($) 145 (|has| |#1| (-37 (-385 (-525)))))) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 225 (-1213 (|has| |#2| (-819 (-357))) (|has| |#1| (-341)))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 224 (-1213 (|has| |#2| (-819 (-525))) (|has| |#1| (-341))))) (-3873 (((-525) $) 100) (((-525) $ (-525)) 99)) (-2824 (((-108) $) 31)) (-2368 (($ $) 229 (|has| |#1| (-341)))) (-1738 ((|#2| $) 227 (|has| |#1| (-341)))) (-3956 (($ $ (-525)) 116 (|has| |#1| (-37 (-385 (-525)))))) (-2085 (((-3 $ "failed") $) 261 (-1213 (|has| |#2| (-1065)) (|has| |#1| (-341))))) (-2732 (((-108) $) 248 (-1213 (|has| |#2| (-761)) (|has| |#1| (-341))))) (-3111 (($ $ (-854)) 101)) (-3264 (($ (-1 |#1| (-525)) $) 173)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 160 (|has| |#1| (-341)))) (-2202 (((-108) $) 62)) (-1480 (($ |#1| (-525)) 61) (($ $ (-1003) (-525)) 76) (($ $ (-591 (-1003)) (-591 (-525))) 75)) (-3741 (($ $ $) 251 (-1213 (|has| |#2| (-788)) (|has| |#1| (-341))))) (-2478 (($ $ $) 252 (-1213 (|has| |#2| (-788)) (|has| |#1| (-341))))) (-1340 (($ (-1 |#1| |#1|) $) 63) (($ (-1 |#2| |#2|) $) 213 (|has| |#1| (-341)))) (-1488 (($ $) 142 (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) 65)) (-1678 ((|#1| $) 66)) (-1356 (($ (-591 $)) 149 (|has| |#1| (-341))) (($ $ $) 148 (|has| |#1| (-341)))) (-1581 (($ (-525) |#2|) 268)) (-2339 (((-1072) $) 9)) (-1622 (($ $) 165 (|has| |#1| (-341)))) (-4141 (($ $) 170 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089)) 169 (-3321 (-12 (|has| |#1| (-29 (-525))) (|has| |#1| (-891)) (|has| |#1| (-1111)) (|has| |#1| (-37 (-385 (-525))))) (-12 (|has| |#1| (-15 -1507 ((-591 (-1089)) |#1|))) (|has| |#1| (-15 -4141 (|#1| |#1| (-1089)))) (|has| |#1| (-37 (-385 (-525)))))))) (-3506 (($) 262 (-1213 (|has| |#2| (-1065)) (|has| |#1| (-341))) CONST)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 150 (|has| |#1| (-341)))) (-1399 (($ (-591 $)) 147 (|has| |#1| (-341))) (($ $ $) 146 (|has| |#1| (-341)))) (-3093 (($ $) 232 (-1213 (|has| |#2| (-286)) (|has| |#1| (-341))))) (-2662 ((|#2| $) 235 (-1213 (|has| |#2| (-510)) (|has| |#1| (-341))))) (-2916 (((-396 (-1085 $)) (-1085 $)) 238 (-1213 (|has| |#2| (-842)) (|has| |#1| (-341))))) (-1626 (((-396 (-1085 $)) (-1085 $)) 239 (-1213 (|has| |#2| (-842)) (|has| |#1| (-341))))) (-1348 (((-396 $) $) 161 (|has| |#1| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 158 (|has| |#1| (-341)))) (-2784 (($ $ (-525)) 95)) (-2089 (((-3 $ "failed") $ $) 50 (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 152 (|has| |#1| (-341)))) (-1409 (($ $) 143 (|has| |#1| (-37 (-385 (-525)))))) (-4132 (((-1070 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-525))))) (($ $ (-1089) |#2|) 212 (-1213 (|has| |#2| (-486 (-1089) |#2|)) (|has| |#1| (-341)))) (($ $ (-591 (-1089)) (-591 |#2|)) 211 (-1213 (|has| |#2| (-486 (-1089) |#2|)) (|has| |#1| (-341)))) (($ $ (-591 (-273 |#2|))) 210 (-1213 (|has| |#2| (-288 |#2|)) (|has| |#1| (-341)))) (($ $ (-273 |#2|)) 209 (-1213 (|has| |#2| (-288 |#2|)) (|has| |#1| (-341)))) (($ $ |#2| |#2|) 208 (-1213 (|has| |#2| (-288 |#2|)) (|has| |#1| (-341)))) (($ $ (-591 |#2|) (-591 |#2|)) 207 (-1213 (|has| |#2| (-288 |#2|)) (|has| |#1| (-341))))) (-1712 (((-712) $) 154 (|has| |#1| (-341)))) (-3164 ((|#1| $ (-525)) 104) (($ $ $) 81 (|has| (-525) (-1030))) (($ $ |#2|) 206 (-1213 (|has| |#2| (-265 |#2| |#2|)) (|has| |#1| (-341))))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 155 (|has| |#1| (-341)))) (-3266 (($ $ (-1 |#2| |#2|)) 217 (|has| |#1| (-341))) (($ $ (-1 |#2| |#2|) (-712)) 216 (|has| |#1| (-341))) (($ $ (-712)) 84 (-3321 (-1213 (|has| |#2| (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $) 82 (-3321 (-1213 (|has| |#2| (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-591 (-1089)) (-591 (-712))) 89 (-3321 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|)))))) (($ $ (-1089) (-712)) 88 (-3321 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|)))))) (($ $ (-591 (-1089))) 87 (-3321 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|)))))) (($ $ (-1089)) 86 (-3321 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))))) (-2966 (($ $) 230 (|has| |#1| (-341)))) (-1754 ((|#2| $) 228 (|has| |#1| (-341)))) (-1316 (((-525) $) 64)) (-1502 (($ $) 132 (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) 121 (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) 131 (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) 122 (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) 130 (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) 123 (|has| |#1| (-37 (-385 (-525)))))) (-1408 (((-205) $) 246 (-1213 (|has| |#2| (-951)) (|has| |#1| (-341)))) (((-357) $) 245 (-1213 (|has| |#2| (-951)) (|has| |#1| (-341)))) (((-501) $) 244 (-1213 (|has| |#2| (-566 (-501))) (|has| |#1| (-341)))) (((-825 (-357)) $) 223 (-1213 (|has| |#2| (-566 (-825 (-357)))) (|has| |#1| (-341)))) (((-825 (-525)) $) 222 (-1213 (|has| |#2| (-566 (-825 (-525)))) (|has| |#1| (-341))))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) 236 (-1213 (-1213 (|has| $ (-136)) (|has| |#2| (-842))) (|has| |#1| (-341))))) (-3571 (($ $) 72)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 47 (|has| |#1| (-160))) (($ |#2|) 271) (($ (-1089)) 241 (-1213 (|has| |#2| (-966 (-1089))) (|has| |#1| (-341)))) (($ (-385 (-525))) 57 (|has| |#1| (-37 (-385 (-525))))) (($ $) 49 (|has| |#1| (-517)))) (-2560 ((|#1| $ (-525)) 59)) (-1437 (((-3 $ "failed") $) 48 (-3321 (-1213 (-3321 (|has| |#2| (-136)) (-1213 (|has| $ (-136)) (|has| |#2| (-842)))) (|has| |#1| (-341))) (|has| |#1| (-136))))) (-2128 (((-712)) 29)) (-1682 ((|#1| $) 102)) (-3862 ((|#2| $) 234 (-1213 (|has| |#2| (-510)) (|has| |#1| (-341))))) (-1563 (($ $) 141 (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) 129 (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) 53 (|has| |#1| (-517)))) (-1515 (($ $) 140 (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) 128 (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) 139 (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) 127 (|has| |#1| (-37 (-385 (-525)))))) (-2176 ((|#1| $ (-525)) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-525)))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3277 (($ $) 138 (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) 126 (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) 137 (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) 125 (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) 136 (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) 124 (|has| |#1| (-37 (-385 (-525)))))) (-1539 (($ $) 250 (-1213 (|has| |#2| (-761)) (|has| |#1| (-341))))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 166 (|has| |#1| (-341)))) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ (-1 |#2| |#2|)) 215 (|has| |#1| (-341))) (($ $ (-1 |#2| |#2|) (-712)) 214 (|has| |#1| (-341))) (($ $ (-712)) 85 (-3321 (-1213 (|has| |#2| (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $) 83 (-3321 (-1213 (|has| |#2| (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-591 (-1089)) (-591 (-712))) 93 (-3321 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|)))))) (($ $ (-1089) (-712)) 92 (-3321 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|)))))) (($ $ (-591 (-1089))) 91 (-3321 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|)))))) (($ $ (-1089)) 90 (-3321 (-1213 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))))) (-4135 (((-108) $ $) 254 (-1213 (|has| |#2| (-788)) (|has| |#1| (-341))))) (-4119 (((-108) $ $) 255 (-1213 (|has| |#2| (-788)) (|has| |#1| (-341))))) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 253 (-1213 (|has| |#2| (-788)) (|has| |#1| (-341))))) (-4112 (((-108) $ $) 256 (-1213 (|has| |#2| (-788)) (|has| |#1| (-341))))) (-4173 (($ $ |#1|) 58 (|has| |#1| (-341))) (($ $ $) 168 (|has| |#1| (-341))) (($ |#2| |#2|) 226 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 167 (|has| |#1| (-341))) (($ $ $) 144 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 115 (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ |#2|) 205 (|has| |#1| (-341))) (($ |#2| $) 204 (|has| |#1| (-341))) (($ (-385 (-525)) $) 56 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 55 (|has| |#1| (-37 (-385 (-525)))))))
+(((-1133 |#1| |#2|) (-131) (-975) (-1162 |t#1|)) (T -1133))
+((-1316 (*1 *2 *1) (-12 (-4 *1 (-1133 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1162 *3)) (-5 *2 (-525)))) (-3022 (*1 *1 *2) (-12 (-4 *3 (-975)) (-4 *1 (-1133 *3 *2)) (-4 *2 (-1162 *3)))) (-1581 (*1 *1 *2 *3) (-12 (-5 *2 (-525)) (-4 *4 (-975)) (-4 *1 (-1133 *4 *3)) (-4 *3 (-1162 *4)))) (-1219 (*1 *2 *1) (-12 (-4 *1 (-1133 *3 *2)) (-4 *3 (-975)) (-4 *2 (-1162 *3)))) (-1900 (*1 *1 *1) (-12 (-4 *1 (-1133 *2 *3)) (-4 *2 (-975)) (-4 *3 (-1162 *2)))) (-1900 (*1 *1 *2 *1) (-12 (-5 *2 (-525)) (-4 *1 (-1133 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1162 *3)))) (-1569 (*1 *2 *1) (-12 (-4 *1 (-1133 *3 *2)) (-4 *3 (-975)) (-4 *2 (-1162 *3)))) (-3347 (*1 *2 *1) (|partial| -12 (-4 *1 (-1133 *3 *2)) (-4 *3 (-975)) (-4 *2 (-1162 *3)))))
+(-13 (-1131 |t#1|) (-966 |t#2|) (-10 -8 (-15 -1581 ($ (-525) |t#2|)) (-15 -1316 ((-525) $)) (-15 -1219 (|t#2| $)) (-15 -1900 ($ $)) (-15 -1900 ($ (-525) $)) (-15 -3022 ($ |t#2|)) (-15 -1569 (|t#2| $)) (-15 -3347 ((-3 |t#2| "failed") $)) (IF (|has| |t#1| (-341)) (-6 (-923 |t#2|)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-525)) . T) ((-25) . T) ((-37 #1=(-385 (-525))) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-37 |#1|) |has| |#1| (-160)) ((-37 |#2|) |has| |#1| (-341)) ((-37 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-34) |has| |#1| (-37 (-385 (-525)))) ((-91) |has| |#1| (-37 (-385 (-525)))) ((-97) . T) ((-107 #1# #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-107 |#1| |#1|) . T) ((-107 |#2| |#2|) |has| |#1| (-341)) ((-107 $ $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341)) (|has| |#1| (-160))) ((-126) . T) ((-136) -3321 (-12 (|has| |#1| (-341)) (|has| |#2| (-136))) (|has| |#1| (-136))) ((-138) -3321 (-12 (|has| |#1| (-341)) (|has| |#2| (-138))) (|has| |#1| (-138))) ((-565 (-796)) . T) ((-160) -3321 (|has| |#1| (-517)) (|has| |#1| (-341)) (|has| |#1| (-160))) ((-566 (-205)) -12 (|has| |#1| (-341)) (|has| |#2| (-951))) ((-566 (-357)) -12 (|has| |#1| (-341)) (|has| |#2| (-951))) ((-566 (-501)) -12 (|has| |#1| (-341)) (|has| |#2| (-566 (-501)))) ((-566 (-825 (-357))) -12 (|has| |#1| (-341)) (|has| |#2| (-566 (-825 (-357))))) ((-566 (-825 (-525))) -12 (|has| |#1| (-341)) (|has| |#2| (-566 (-825 (-525))))) ((-211 |#2|) |has| |#1| (-341)) ((-213) -3321 (-12 (|has| |#1| (-341)) (|has| |#2| (-213))) (|has| |#1| (-15 * (|#1| (-525) |#1|)))) ((-223) |has| |#1| (-341)) ((-263) |has| |#1| (-37 (-385 (-525)))) ((-265 |#2| $) -12 (|has| |#1| (-341)) (|has| |#2| (-265 |#2| |#2|))) ((-265 $ $) |has| (-525) (-1030)) ((-269) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-286) |has| |#1| (-341)) ((-288 |#2|) -12 (|has| |#1| (-341)) (|has| |#2| (-288 |#2|))) ((-341) |has| |#1| (-341)) ((-316 |#2|) |has| |#1| (-341)) ((-355 |#2|) |has| |#1| (-341)) ((-378 |#2|) |has| |#1| (-341)) ((-429) |has| |#1| (-341)) ((-466) |has| |#1| (-37 (-385 (-525)))) ((-486 (-1089) |#2|) -12 (|has| |#1| (-341)) (|has| |#2| (-486 (-1089) |#2|))) ((-486 |#2| |#2|) -12 (|has| |#1| (-341)) (|has| |#2| (-288 |#2|))) ((-517) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-593 #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-593 |#1|) . T) ((-593 |#2|) |has| |#1| (-341)) ((-593 $) . T) ((-587 (-525)) -12 (|has| |#1| (-341)) (|has| |#2| (-587 (-525)))) ((-587 |#2|) |has| |#1| (-341)) ((-659 #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-659 |#1|) |has| |#1| (-160)) ((-659 |#2|) |has| |#1| (-341)) ((-659 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-668) . T) ((-732) -12 (|has| |#1| (-341)) (|has| |#2| (-761))) ((-733) -12 (|has| |#1| (-341)) (|has| |#2| (-761))) ((-735) -12 (|has| |#1| (-341)) (|has| |#2| (-761))) ((-736) -12 (|has| |#1| (-341)) (|has| |#2| (-761))) ((-761) -12 (|has| |#1| (-341)) (|has| |#2| (-761))) ((-786) -12 (|has| |#1| (-341)) (|has| |#2| (-761))) ((-788) -3321 (-12 (|has| |#1| (-341)) (|has| |#2| (-788))) (-12 (|has| |#1| (-341)) (|has| |#2| (-761)))) ((-833 (-1089)) -3321 (-12 (|has| |#1| (-341)) (|has| |#2| (-833 (-1089)))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))) ((-819 (-357)) -12 (|has| |#1| (-341)) (|has| |#2| (-819 (-357)))) ((-819 (-525)) -12 (|has| |#1| (-341)) (|has| |#2| (-819 (-525)))) ((-817 |#2|) |has| |#1| (-341)) ((-842) -12 (|has| |#1| (-341)) (|has| |#2| (-842))) ((-904 |#1| #0# (-1003)) . T) ((-853) |has| |#1| (-341)) ((-923 |#2|) |has| |#1| (-341)) ((-932) |has| |#1| (-37 (-385 (-525)))) ((-951) -12 (|has| |#1| (-341)) (|has| |#2| (-951))) ((-966 (-385 (-525))) -12 (|has| |#1| (-341)) (|has| |#2| (-966 (-525)))) ((-966 (-525)) -12 (|has| |#1| (-341)) (|has| |#2| (-966 (-525)))) ((-966 (-1089)) -12 (|has| |#1| (-341)) (|has| |#2| (-966 (-1089)))) ((-966 |#2|) . T) ((-981 #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-981 |#1|) . T) ((-981 |#2|) |has| |#1| (-341)) ((-981 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341)) (|has| |#1| (-160))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1065) -12 (|has| |#1| (-341)) (|has| |#2| (-1065))) ((-1111) |has| |#1| (-37 (-385 (-525)))) ((-1114) |has| |#1| (-37 (-385 (-525)))) ((-1125) |has| |#1| (-341)) ((-1129) |has| |#1| (-341)) ((-1131 |#1|) . T) ((-1149 |#1| #0#) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 70)) (-1508 ((|#2| $) NIL (-12 (|has| |#2| (-286)) (|has| |#1| (-341))))) (-1507 (((-591 (-1003)) $) NIL)) (-2037 (((-1089) $) 88)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-2121 (($ $ (-525)) 97) (($ $ (-525) (-525)) 99)) (-1631 (((-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))) $) 47)) (-1219 ((|#2| $) 11)) (-3347 (((-3 |#2| "failed") $) 30)) (-1569 ((|#2| $) 31)) (-1987 (($ $) 192 (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) 168 (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (-12 (|has| |#2| (-842)) (|has| |#1| (-341))))) (-1291 (($ $) NIL (|has| |#1| (-341)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-341)))) (-1361 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (-12 (|has| |#2| (-842)) (|has| |#1| (-341))))) (-1947 (((-108) $ $) NIL (|has| |#1| (-341)))) (-1431 (($ $) 188 (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) 164 (|has| |#1| (-37 (-385 (-525)))))) (-3329 (((-525) $) NIL (-12 (|has| |#2| (-761)) (|has| |#1| (-341))))) (-3682 (($ (-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|)))) 57)) (-1719 (($ $) 196 (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) 172 (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#2| "failed") $) 144) (((-3 (-525) "failed") $) NIL (-12 (|has| |#2| (-966 (-525))) (|has| |#1| (-341)))) (((-3 (-385 (-525)) "failed") $) NIL (-12 (|has| |#2| (-966 (-525))) (|has| |#1| (-341)))) (((-3 (-1089) "failed") $) NIL (-12 (|has| |#2| (-966 (-1089))) (|has| |#1| (-341))))) (-3528 ((|#2| $) 143) (((-525) $) NIL (-12 (|has| |#2| (-966 (-525))) (|has| |#1| (-341)))) (((-385 (-525)) $) NIL (-12 (|has| |#2| (-966 (-525))) (|has| |#1| (-341)))) (((-1089) $) NIL (-12 (|has| |#2| (-966 (-1089))) (|has| |#1| (-341))))) (-1900 (($ $) 61) (($ (-525) $) 24)) (-2129 (($ $ $) NIL (|has| |#1| (-341)))) (-1710 (($ $) NIL)) (-3305 (((-631 |#2|) (-631 $)) NIL (|has| |#1| (-341))) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) NIL (|has| |#1| (-341))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (-12 (|has| |#2| (-587 (-525))) (|has| |#1| (-341)))) (((-631 (-525)) (-631 $)) NIL (-12 (|has| |#2| (-587 (-525))) (|has| |#1| (-341))))) (-4163 (((-3 $ "failed") $) 77)) (-3267 (((-385 (-885 |#1|)) $ (-525)) 112 (|has| |#1| (-517))) (((-385 (-885 |#1|)) $ (-525) (-525)) 114 (|has| |#1| (-517)))) (-3377 (($) NIL (-12 (|has| |#2| (-510)) (|has| |#1| (-341))))) (-2110 (($ $ $) NIL (|has| |#1| (-341)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#1| (-341)))) (-2744 (((-108) $) NIL (|has| |#1| (-341)))) (-2134 (((-108) $) NIL (-12 (|has| |#2| (-761)) (|has| |#1| (-341))))) (-3123 (((-108) $) 64)) (-1784 (($) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| |#2| (-819 (-357))) (|has| |#1| (-341)))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| |#2| (-819 (-525))) (|has| |#1| (-341))))) (-3873 (((-525) $) 93) (((-525) $ (-525)) 95)) (-2824 (((-108) $) NIL)) (-2368 (($ $) NIL (|has| |#1| (-341)))) (-1738 ((|#2| $) 151 (|has| |#1| (-341)))) (-3956 (($ $ (-525)) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2085 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1065)) (|has| |#1| (-341))))) (-2732 (((-108) $) NIL (-12 (|has| |#2| (-761)) (|has| |#1| (-341))))) (-3111 (($ $ (-854)) 136)) (-3264 (($ (-1 |#1| (-525)) $) 132)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-525)) 19) (($ $ (-1003) (-525)) NIL) (($ $ (-591 (-1003)) (-591 (-525))) NIL)) (-3741 (($ $ $) NIL (-12 (|has| |#2| (-788)) (|has| |#1| (-341))))) (-2478 (($ $ $) NIL (-12 (|has| |#2| (-788)) (|has| |#1| (-341))))) (-1340 (($ (-1 |#1| |#1|) $) 129) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-341)))) (-1488 (($ $) 162 (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-1581 (($ (-525) |#2|) 10)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 145 (|has| |#1| (-341)))) (-4141 (($ $) 214 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089)) 219 (-3321 (-12 (|has| |#1| (-15 -4141 (|#1| |#1| (-1089)))) (|has| |#1| (-15 -1507 ((-591 (-1089)) |#1|))) (|has| |#1| (-37 (-385 (-525))))) (-12 (|has| |#1| (-29 (-525))) (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-891)) (|has| |#1| (-1111)))))) (-3506 (($) NIL (-12 (|has| |#2| (-1065)) (|has| |#1| (-341))) CONST)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-341)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-3093 (($ $) NIL (-12 (|has| |#2| (-286)) (|has| |#1| (-341))))) (-2662 ((|#2| $) NIL (-12 (|has| |#2| (-510)) (|has| |#1| (-341))))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (-12 (|has| |#2| (-842)) (|has| |#1| (-341))))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (-12 (|has| |#2| (-842)) (|has| |#1| (-341))))) (-1348 (((-396 $) $) NIL (|has| |#1| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2784 (($ $ (-525)) 126)) (-2089 (((-3 $ "failed") $ $) 116 (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-1409 (($ $) 160 (|has| |#1| (-37 (-385 (-525)))))) (-4132 (((-1070 |#1|) $ |#1|) 85 (|has| |#1| (-15 ** (|#1| |#1| (-525))))) (($ $ (-1089) |#2|) NIL (-12 (|has| |#2| (-486 (-1089) |#2|)) (|has| |#1| (-341)))) (($ $ (-591 (-1089)) (-591 |#2|)) NIL (-12 (|has| |#2| (-486 (-1089) |#2|)) (|has| |#1| (-341)))) (($ $ (-591 (-273 |#2|))) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#1| (-341)))) (($ $ (-273 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#1| (-341)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#1| (-341)))) (($ $ (-591 |#2|) (-591 |#2|)) NIL (-12 (|has| |#2| (-288 |#2|)) (|has| |#1| (-341))))) (-1712 (((-712) $) NIL (|has| |#1| (-341)))) (-3164 ((|#1| $ (-525)) 91) (($ $ $) 79 (|has| (-525) (-1030))) (($ $ |#2|) NIL (-12 (|has| |#2| (-265 |#2| |#2|)) (|has| |#1| (-341))))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-3266 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-341))) (($ $ (-1 |#2| |#2|) (-712)) NIL (|has| |#1| (-341))) (($ $ (-712)) NIL (-3321 (-12 (|has| |#2| (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $) 137 (-3321 (-12 (|has| |#2| (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-3321 (-12 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-1089) (-712)) NIL (-3321 (-12 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-591 (-1089))) NIL (-3321 (-12 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-1089)) 140 (-3321 (-12 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))))) (-2966 (($ $) NIL (|has| |#1| (-341)))) (-1754 ((|#2| $) 152 (|has| |#1| (-341)))) (-1316 (((-525) $) 12)) (-1502 (($ $) 198 (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) 174 (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) 194 (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) 170 (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) 190 (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) 166 (|has| |#1| (-37 (-385 (-525)))))) (-1408 (((-205) $) NIL (-12 (|has| |#2| (-951)) (|has| |#1| (-341)))) (((-357) $) NIL (-12 (|has| |#2| (-951)) (|has| |#1| (-341)))) (((-501) $) NIL (-12 (|has| |#2| (-566 (-501))) (|has| |#1| (-341)))) (((-825 (-357)) $) NIL (-12 (|has| |#2| (-566 (-825 (-357)))) (|has| |#1| (-341)))) (((-825 (-525)) $) NIL (-12 (|has| |#2| (-566 (-825 (-525)))) (|has| |#1| (-341))))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#2| (-842)) (|has| |#1| (-341))))) (-3571 (($ $) 124)) (-3022 (((-796) $) 245) (($ (-525)) 23) (($ |#1|) 21 (|has| |#1| (-160))) (($ |#2|) 20) (($ (-1089)) NIL (-12 (|has| |#2| (-966 (-1089))) (|has| |#1| (-341)))) (($ (-385 (-525))) 155 (|has| |#1| (-37 (-385 (-525))))) (($ $) NIL (|has| |#1| (-517)))) (-2560 ((|#1| $ (-525)) 74)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#2| (-842)) (|has| |#1| (-341))) (-12 (|has| |#2| (-136)) (|has| |#1| (-341))) (|has| |#1| (-136))))) (-2128 (((-712)) 142)) (-1682 ((|#1| $) 90)) (-3862 ((|#2| $) NIL (-12 (|has| |#2| (-510)) (|has| |#1| (-341))))) (-1563 (($ $) 204 (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) 180 (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1515 (($ $) 200 (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) 176 (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) 208 (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) 184 (|has| |#1| (-37 (-385 (-525)))))) (-2176 ((|#1| $ (-525)) 122 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-525)))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3277 (($ $) 210 (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) 186 (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) 206 (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) 182 (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) 202 (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) 178 (|has| |#1| (-37 (-385 (-525)))))) (-1539 (($ $) NIL (-12 (|has| |#2| (-761)) (|has| |#1| (-341))))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341)))) (-4191 (($) 13 T CONST)) (-4197 (($) 17 T CONST)) (-4196 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-341))) (($ $ (-1 |#2| |#2|) (-712)) NIL (|has| |#1| (-341))) (($ $ (-712)) NIL (-3321 (-12 (|has| |#2| (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $) NIL (-3321 (-12 (|has| |#2| (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-3321 (-12 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-1089) (-712)) NIL (-3321 (-12 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-591 (-1089))) NIL (-3321 (-12 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-1089)) NIL (-3321 (-12 (|has| |#2| (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))))) (-4135 (((-108) $ $) NIL (-12 (|has| |#2| (-788)) (|has| |#1| (-341))))) (-4119 (((-108) $ $) NIL (-12 (|has| |#2| (-788)) (|has| |#1| (-341))))) (-4096 (((-108) $ $) 63)) (-4126 (((-108) $ $) NIL (-12 (|has| |#2| (-788)) (|has| |#1| (-341))))) (-4112 (((-108) $ $) NIL (-12 (|has| |#2| (-788)) (|has| |#1| (-341))))) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341))) (($ $ $) 149 (|has| |#1| (-341))) (($ |#2| |#2|) 150 (|has| |#1| (-341)))) (-4164 (($ $) 213) (($ $ $) 68)) (-4156 (($ $ $) 66)) (** (($ $ (-854)) NIL) (($ $ (-712)) 73) (($ $ (-525)) 146 (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 158 (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 139) (($ $ |#2|) 148 (|has| |#1| (-341))) (($ |#2| $) 147 (|has| |#1| (-341))) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))))
+(((-1134 |#1| |#2|) (-1133 |#1| |#2|) (-975) (-1162 |#1|)) (T -1134))
+NIL
+(-1133 |#1| |#2|)
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1508 (((-1163 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-286)) (|has| |#1| (-341))))) (-1507 (((-591 (-1003)) $) NIL)) (-2037 (((-1089) $) 10)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1163 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))) (|has| |#1| (-517))))) (-3706 (($ $) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1163 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))) (|has| |#1| (-517))))) (-1715 (((-108) $) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1163 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))) (|has| |#1| (-517))))) (-2121 (($ $ (-525)) NIL) (($ $ (-525) (-525)) NIL)) (-1631 (((-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|))) $) NIL)) (-1219 (((-1163 |#1| |#2| |#3|) $) NIL)) (-3347 (((-3 (-1163 |#1| |#2| |#3|) "failed") $) NIL)) (-1569 (((-1163 |#1| |#2| |#3|) $) NIL)) (-1987 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))))) (-1291 (($ $) NIL (|has| |#1| (-341)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-341)))) (-1361 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))))) (-1947 (((-108) $ $) NIL (|has| |#1| (-341)))) (-1431 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3329 (((-525) $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))))) (-3682 (($ (-1070 (-2 (|:| |k| (-525)) (|:| |c| |#1|)))) NIL)) (-1719 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-1163 |#1| |#2| |#3|) "failed") $) NIL) (((-3 (-1089) "failed") $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-966 (-1089))) (|has| |#1| (-341)))) (((-3 (-385 (-525)) "failed") $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-966 (-525))) (|has| |#1| (-341)))) (((-3 (-525) "failed") $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-966 (-525))) (|has| |#1| (-341))))) (-3528 (((-1163 |#1| |#2| |#3|) $) NIL) (((-1089) $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-966 (-1089))) (|has| |#1| (-341)))) (((-385 (-525)) $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-966 (-525))) (|has| |#1| (-341)))) (((-525) $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-966 (-525))) (|has| |#1| (-341))))) (-1900 (($ $) NIL) (($ (-525) $) NIL)) (-2129 (($ $ $) NIL (|has| |#1| (-341)))) (-1710 (($ $) NIL)) (-3305 (((-631 (-1163 |#1| |#2| |#3|)) (-631 $)) NIL (|has| |#1| (-341))) (((-2 (|:| -4057 (-631 (-1163 |#1| |#2| |#3|))) (|:| |vec| (-1171 (-1163 |#1| |#2| |#3|)))) (-631 $) (-1171 $)) NIL (|has| |#1| (-341))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-587 (-525))) (|has| |#1| (-341)))) (((-631 (-525)) (-631 $)) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-587 (-525))) (|has| |#1| (-341))))) (-4163 (((-3 $ "failed") $) NIL)) (-3267 (((-385 (-885 |#1|)) $ (-525)) NIL (|has| |#1| (-517))) (((-385 (-885 |#1|)) $ (-525) (-525)) NIL (|has| |#1| (-517)))) (-3377 (($) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-510)) (|has| |#1| (-341))))) (-2110 (($ $ $) NIL (|has| |#1| (-341)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#1| (-341)))) (-2744 (((-108) $) NIL (|has| |#1| (-341)))) (-2134 (((-108) $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))))) (-3123 (((-108) $) NIL)) (-1784 (($) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2011 (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-819 (-525))) (|has| |#1| (-341)))) (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-819 (-357))) (|has| |#1| (-341))))) (-3873 (((-525) $) NIL) (((-525) $ (-525)) NIL)) (-2824 (((-108) $) NIL)) (-2368 (($ $) NIL (|has| |#1| (-341)))) (-1738 (((-1163 |#1| |#2| |#3|) $) NIL (|has| |#1| (-341)))) (-3956 (($ $ (-525)) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2085 (((-3 $ "failed") $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-1065)) (|has| |#1| (-341))))) (-2732 (((-108) $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))))) (-3111 (($ $ (-854)) NIL)) (-3264 (($ (-1 |#1| (-525)) $) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-525)) 17) (($ $ (-1003) (-525)) NIL) (($ $ (-591 (-1003)) (-591 (-525))) NIL)) (-3741 (($ $ $) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1163 |#1| |#2| |#3|) (-788)) (|has| |#1| (-341)))))) (-2478 (($ $ $) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1163 |#1| |#2| |#3|) (-788)) (|has| |#1| (-341)))))) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1163 |#1| |#2| |#3|) (-1163 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-341)))) (-1488 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-1581 (($ (-525) (-1163 |#1| |#2| |#3|)) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL (|has| |#1| (-341)))) (-4141 (($ $) 25 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089)) NIL (-3321 (-12 (|has| |#1| (-15 -4141 (|#1| |#1| (-1089)))) (|has| |#1| (-15 -1507 ((-591 (-1089)) |#1|))) (|has| |#1| (-37 (-385 (-525))))) (-12 (|has| |#1| (-29 (-525))) (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-891)) (|has| |#1| (-1111))))) (($ $ (-1167 |#2|)) 26 (|has| |#1| (-37 (-385 (-525)))))) (-3506 (($) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-1065)) (|has| |#1| (-341))) CONST)) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-341)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-3093 (($ $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-286)) (|has| |#1| (-341))))) (-2662 (((-1163 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-510)) (|has| |#1| (-341))))) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))))) (-1348 (((-396 $) $) NIL (|has| |#1| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2784 (($ $ (-525)) NIL)) (-2089 (((-3 $ "failed") $ $) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1163 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))) (|has| |#1| (-517))))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-1409 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-4132 (((-1070 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-525))))) (($ $ (-1089) (-1163 |#1| |#2| |#3|)) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-486 (-1089) (-1163 |#1| |#2| |#3|))) (|has| |#1| (-341)))) (($ $ (-591 (-1089)) (-591 (-1163 |#1| |#2| |#3|))) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-486 (-1089) (-1163 |#1| |#2| |#3|))) (|has| |#1| (-341)))) (($ $ (-591 (-273 (-1163 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-288 (-1163 |#1| |#2| |#3|))) (|has| |#1| (-341)))) (($ $ (-273 (-1163 |#1| |#2| |#3|))) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-288 (-1163 |#1| |#2| |#3|))) (|has| |#1| (-341)))) (($ $ (-1163 |#1| |#2| |#3|) (-1163 |#1| |#2| |#3|)) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-288 (-1163 |#1| |#2| |#3|))) (|has| |#1| (-341)))) (($ $ (-591 (-1163 |#1| |#2| |#3|)) (-591 (-1163 |#1| |#2| |#3|))) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-288 (-1163 |#1| |#2| |#3|))) (|has| |#1| (-341))))) (-1712 (((-712) $) NIL (|has| |#1| (-341)))) (-3164 ((|#1| $ (-525)) NIL) (($ $ $) NIL (|has| (-525) (-1030))) (($ $ (-1163 |#1| |#2| |#3|)) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-265 (-1163 |#1| |#2| |#3|) (-1163 |#1| |#2| |#3|))) (|has| |#1| (-341))))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-3266 (($ $ (-1 (-1163 |#1| |#2| |#3|) (-1163 |#1| |#2| |#3|))) NIL (|has| |#1| (-341))) (($ $ (-1 (-1163 |#1| |#2| |#3|) (-1163 |#1| |#2| |#3|)) (-712)) NIL (|has| |#1| (-341))) (($ $ (-1167 |#2|)) 24) (($ $ (-712)) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $) 23 (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-1089) (-712)) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-591 (-1089))) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-1089)) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))))) (-2966 (($ $) NIL (|has| |#1| (-341)))) (-1754 (((-1163 |#1| |#2| |#3|) $) NIL (|has| |#1| (-341)))) (-1316 (((-525) $) NIL)) (-1502 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1408 (((-501) $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-566 (-501))) (|has| |#1| (-341)))) (((-357) $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-951)) (|has| |#1| (-341)))) (((-205) $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-951)) (|has| |#1| (-341)))) (((-825 (-357)) $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-566 (-825 (-357)))) (|has| |#1| (-341)))) (((-825 (-525)) $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-566 (-825 (-525)))) (|has| |#1| (-341))))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| (-1163 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))))) (-3571 (($ $) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#1|) NIL (|has| |#1| (-160))) (($ (-1163 |#1| |#2| |#3|)) NIL) (($ (-1167 |#2|)) 22) (($ (-1089)) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-966 (-1089))) (|has| |#1| (-341)))) (($ $) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1163 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))) (|has| |#1| (-517)))) (($ (-385 (-525))) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-966 (-525))) (|has| |#1| (-341))) (|has| |#1| (-37 (-385 (-525))))))) (-2560 ((|#1| $ (-525)) NIL)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| (-1163 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))) (-12 (|has| (-1163 |#1| |#2| |#3|) (-136)) (|has| |#1| (-341))) (|has| |#1| (-136))))) (-2128 (((-712)) NIL)) (-1682 ((|#1| $) 11)) (-3862 (((-1163 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-510)) (|has| |#1| (-341))))) (-1563 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1163 |#1| |#2| |#3|) (-842)) (|has| |#1| (-341))) (|has| |#1| (-517))))) (-1515 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2176 ((|#1| $ (-525)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-525)))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3277 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1539 (($ $) NIL (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341)))) (-4191 (($) 19 T CONST)) (-4197 (($) 15 T CONST)) (-4196 (($ $ (-1 (-1163 |#1| |#2| |#3|) (-1163 |#1| |#2| |#3|))) NIL (|has| |#1| (-341))) (($ $ (-1 (-1163 |#1| |#2| |#3|) (-1163 |#1| |#2| |#3|)) (-712)) NIL (|has| |#1| (-341))) (($ $ (-712)) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-213)) (|has| |#1| (-341))) (|has| |#1| (-15 * (|#1| (-525) |#1|))))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-1089) (-712)) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-591 (-1089))) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089)))))) (($ $ (-1089)) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-833 (-1089))) (|has| |#1| (-341))) (-12 (|has| |#1| (-15 * (|#1| (-525) |#1|))) (|has| |#1| (-833 (-1089))))))) (-4135 (((-108) $ $) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1163 |#1| |#2| |#3|) (-788)) (|has| |#1| (-341)))))) (-4119 (((-108) $ $) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1163 |#1| |#2| |#3|) (-788)) (|has| |#1| (-341)))))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1163 |#1| |#2| |#3|) (-788)) (|has| |#1| (-341)))))) (-4112 (((-108) $ $) NIL (-3321 (-12 (|has| (-1163 |#1| |#2| |#3|) (-761)) (|has| |#1| (-341))) (-12 (|has| (-1163 |#1| |#2| |#3|) (-788)) (|has| |#1| (-341)))))) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341))) (($ (-1163 |#1| |#2| |#3|) (-1163 |#1| |#2| |#3|)) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) 20)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1163 |#1| |#2| |#3|)) NIL (|has| |#1| (-341))) (($ (-1163 |#1| |#2| |#3|) $) NIL (|has| |#1| (-341))) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))))
+(((-1135 |#1| |#2| |#3|) (-13 (-1133 |#1| (-1163 |#1| |#2| |#3|)) (-10 -8 (-15 -3022 ($ (-1167 |#2|))) (-15 -3266 ($ $ (-1167 |#2|))) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1167 |#2|))) |%noBranch|))) (-975) (-1089) |#1|) (T -1135))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1135 *3 *4 *5)) (-4 *3 (-975)) (-14 *5 *3))) (-3266 (*1 *1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1135 *3 *4 *5)) (-4 *3 (-975)) (-14 *5 *3))) (-4141 (*1 *1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1135 *3 *4 *5)) (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-14 *5 *3))))
+(-13 (-1133 |#1| (-1163 |#1| |#2| |#3|)) (-10 -8 (-15 -3022 ($ (-1167 |#2|))) (-15 -3266 ($ $ (-1167 |#2|))) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1167 |#2|))) |%noBranch|)))
+((-3154 (((-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| |#1|) (|:| -3265 (-525)))))) |#1| (-108)) 12)) (-3646 (((-396 |#1|) |#1|) 22)) (-1348 (((-396 |#1|) |#1|) 21)))
+(((-1136 |#1|) (-10 -7 (-15 -1348 ((-396 |#1|) |#1|)) (-15 -3646 ((-396 |#1|) |#1|)) (-15 -3154 ((-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| |#1|) (|:| -3265 (-525)))))) |#1| (-108)))) (-1147 (-525))) (T -1136))
+((-3154 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-5 *2 (-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| *3) (|:| -3265 (-525))))))) (-5 *1 (-1136 *3)) (-4 *3 (-1147 (-525))))) (-3646 (*1 *2 *3) (-12 (-5 *2 (-396 *3)) (-5 *1 (-1136 *3)) (-4 *3 (-1147 (-525))))) (-1348 (*1 *2 *3) (-12 (-5 *2 (-396 *3)) (-5 *1 (-1136 *3)) (-4 *3 (-1147 (-525))))))
+(-10 -7 (-15 -1348 ((-396 |#1|) |#1|)) (-15 -3646 ((-396 |#1|) |#1|)) (-15 -3154 ((-2 (|:| |contp| (-525)) (|:| -3781 (-591 (-2 (|:| |irr| |#1|) (|:| -3265 (-525)))))) |#1| (-108))))
+((-1340 (((-1070 |#2|) (-1 |#2| |#1|) (-1138 |#1|)) 23 (|has| |#1| (-786))) (((-1138 |#2|) (-1 |#2| |#1|) (-1138 |#1|)) 17)))
+(((-1137 |#1| |#2|) (-10 -7 (-15 -1340 ((-1138 |#2|) (-1 |#2| |#1|) (-1138 |#1|))) (IF (|has| |#1| (-786)) (-15 -1340 ((-1070 |#2|) (-1 |#2| |#1|) (-1138 |#1|))) |%noBranch|)) (-1125) (-1125)) (T -1137))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1138 *5)) (-4 *5 (-786)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-1070 *6)) (-5 *1 (-1137 *5 *6)))) (-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1138 *5)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-1138 *6)) (-5 *1 (-1137 *5 *6)))))
+(-10 -7 (-15 -1340 ((-1138 |#2|) (-1 |#2| |#1|) (-1138 |#1|))) (IF (|has| |#1| (-786)) (-15 -1340 ((-1070 |#2|) (-1 |#2| |#1|) (-1138 |#1|))) |%noBranch|))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-3746 (($ |#1| |#1|) 9) (($ |#1|) 8)) (-1340 (((-1070 |#1|) (-1 |#1| |#1|) $) 41 (|has| |#1| (-786)))) (-2023 ((|#1| $) 14)) (-3960 ((|#1| $) 10)) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-3972 (((-525) $) 18)) (-2397 ((|#1| $) 17)) (-3983 ((|#1| $) 11)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-2726 (((-108) $) 16)) (-4093 (((-1070 |#1|) $) 38 (|has| |#1| (-786))) (((-1070 |#1|) (-591 $)) 37 (|has| |#1| (-786)))) (-1408 (($ |#1|) 25)) (-3022 (($ (-1013 |#1|)) 24) (((-796) $) 34 (|has| |#1| (-1018)))) (-1416 (($ |#1| |#1|) 20) (($ |#1|) 19)) (-3921 (($ $ (-525)) 13)) (-4096 (((-108) $ $) 27 (|has| |#1| (-1018)))))
+(((-1138 |#1|) (-13 (-1012 |#1|) (-10 -8 (-15 -1416 ($ |#1|)) (-15 -3746 ($ |#1|)) (-15 -3022 ($ (-1013 |#1|))) (-15 -2726 ((-108) $)) (IF (|has| |#1| (-1018)) (-6 (-1018)) |%noBranch|) (IF (|has| |#1| (-786)) (-6 (-1014 |#1| (-1070 |#1|))) |%noBranch|))) (-1125)) (T -1138))
+((-1416 (*1 *1 *2) (-12 (-5 *1 (-1138 *2)) (-4 *2 (-1125)))) (-3746 (*1 *1 *2) (-12 (-5 *1 (-1138 *2)) (-4 *2 (-1125)))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-1013 *3)) (-4 *3 (-1125)) (-5 *1 (-1138 *3)))) (-2726 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1138 *3)) (-4 *3 (-1125)))))
+(-13 (-1012 |#1|) (-10 -8 (-15 -1416 ($ |#1|)) (-15 -3746 ($ |#1|)) (-15 -3022 ($ (-1013 |#1|))) (-15 -2726 ((-108) $)) (IF (|has| |#1| (-1018)) (-6 (-1018)) |%noBranch|) (IF (|has| |#1| (-786)) (-6 (-1014 |#1| (-1070 |#1|))) |%noBranch|)))
+((-1340 (((-1144 |#3| |#4|) (-1 |#4| |#2|) (-1144 |#1| |#2|)) 15)))
+(((-1139 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1340 ((-1144 |#3| |#4|) (-1 |#4| |#2|) (-1144 |#1| |#2|)))) (-1089) (-975) (-1089) (-975)) (T -1139))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1144 *5 *6)) (-14 *5 (-1089)) (-4 *6 (-975)) (-4 *8 (-975)) (-5 *2 (-1144 *7 *8)) (-5 *1 (-1139 *5 *6 *7 *8)) (-14 *7 (-1089)))))
+(-10 -7 (-15 -1340 ((-1144 |#3| |#4|) (-1 |#4| |#2|) (-1144 |#1| |#2|))))
+((-2004 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-2835 ((|#1| |#3|) 13)) (-3890 ((|#3| |#3|) 19)))
+(((-1140 |#1| |#2| |#3|) (-10 -7 (-15 -2835 (|#1| |#3|)) (-15 -3890 (|#3| |#3|)) (-15 -2004 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-517) (-923 |#1|) (-1147 |#2|)) (T -1140))
+((-2004 (*1 *2 *3) (-12 (-4 *4 (-517)) (-4 *5 (-923 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1140 *4 *5 *3)) (-4 *3 (-1147 *5)))) (-3890 (*1 *2 *2) (-12 (-4 *3 (-517)) (-4 *4 (-923 *3)) (-5 *1 (-1140 *3 *4 *2)) (-4 *2 (-1147 *4)))) (-2835 (*1 *2 *3) (-12 (-4 *4 (-923 *2)) (-4 *2 (-517)) (-5 *1 (-1140 *2 *4 *3)) (-4 *3 (-1147 *4)))))
+(-10 -7 (-15 -2835 (|#1| |#3|)) (-15 -3890 (|#3| |#3|)) (-15 -2004 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-3048 (((-3 |#2| "failed") |#2| (-712) |#1|) 29)) (-3923 (((-3 |#2| "failed") |#2| (-712)) 30)) (-2065 (((-3 (-2 (|:| -3388 |#2|) (|:| -3400 |#2|)) "failed") |#2|) 43)) (-3739 (((-591 |#2|) |#2|) 45)) (-1540 (((-3 |#2| "failed") |#2| |#2|) 40)))
+(((-1141 |#1| |#2|) (-10 -7 (-15 -3923 ((-3 |#2| "failed") |#2| (-712))) (-15 -3048 ((-3 |#2| "failed") |#2| (-712) |#1|)) (-15 -1540 ((-3 |#2| "failed") |#2| |#2|)) (-15 -2065 ((-3 (-2 (|:| -3388 |#2|) (|:| -3400 |#2|)) "failed") |#2|)) (-15 -3739 ((-591 |#2|) |#2|))) (-13 (-517) (-138)) (-1147 |#1|)) (T -1141))
+((-3739 (*1 *2 *3) (-12 (-4 *4 (-13 (-517) (-138))) (-5 *2 (-591 *3)) (-5 *1 (-1141 *4 *3)) (-4 *3 (-1147 *4)))) (-2065 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-517) (-138))) (-5 *2 (-2 (|:| -3388 *3) (|:| -3400 *3))) (-5 *1 (-1141 *4 *3)) (-4 *3 (-1147 *4)))) (-1540 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-517) (-138))) (-5 *1 (-1141 *3 *2)) (-4 *2 (-1147 *3)))) (-3048 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-712)) (-4 *4 (-13 (-517) (-138))) (-5 *1 (-1141 *4 *2)) (-4 *2 (-1147 *4)))) (-3923 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-712)) (-4 *4 (-13 (-517) (-138))) (-5 *1 (-1141 *4 *2)) (-4 *2 (-1147 *4)))))
+(-10 -7 (-15 -3923 ((-3 |#2| "failed") |#2| (-712))) (-15 -3048 ((-3 |#2| "failed") |#2| (-712) |#1|)) (-15 -1540 ((-3 |#2| "failed") |#2| |#2|)) (-15 -2065 ((-3 (-2 (|:| -3388 |#2|) (|:| -3400 |#2|)) "failed") |#2|)) (-15 -3739 ((-591 |#2|) |#2|)))
+((-3145 (((-3 (-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) "failed") |#2| |#2|) 32)))
+(((-1142 |#1| |#2|) (-10 -7 (-15 -3145 ((-3 (-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) "failed") |#2| |#2|))) (-517) (-1147 |#1|)) (T -1142))
+((-3145 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-517)) (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-1142 *4 *3)) (-4 *3 (-1147 *4)))))
+(-10 -7 (-15 -3145 ((-3 (-2 (|:| -2963 |#2|) (|:| -3407 |#2|)) "failed") |#2| |#2|)))
+((-3957 ((|#2| |#2| |#2|) 19)) (-3089 ((|#2| |#2| |#2|) 30)) (-3671 ((|#2| |#2| |#2| (-712) (-712)) 36)))
+(((-1143 |#1| |#2|) (-10 -7 (-15 -3957 (|#2| |#2| |#2|)) (-15 -3089 (|#2| |#2| |#2|)) (-15 -3671 (|#2| |#2| |#2| (-712) (-712)))) (-975) (-1147 |#1|)) (T -1143))
+((-3671 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-712)) (-4 *4 (-975)) (-5 *1 (-1143 *4 *2)) (-4 *2 (-1147 *4)))) (-3089 (*1 *2 *2 *2) (-12 (-4 *3 (-975)) (-5 *1 (-1143 *3 *2)) (-4 *2 (-1147 *3)))) (-3957 (*1 *2 *2 *2) (-12 (-4 *3 (-975)) (-5 *1 (-1143 *3 *2)) (-4 *2 (-1147 *3)))))
+(-10 -7 (-15 -3957 (|#2| |#2| |#2|)) (-15 -3089 (|#2| |#2| |#2|)) (-15 -3671 (|#2| |#2| |#2| (-712) (-712))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3928 (((-1171 |#2|) $ (-712)) NIL)) (-1507 (((-591 (-1003)) $) NIL)) (-1390 (($ (-1085 |#2|)) NIL)) (-1312 (((-1085 $) $ (-1003)) NIL) (((-1085 |#2|) $) NIL)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#2| (-517)))) (-3706 (($ $) NIL (|has| |#2| (-517)))) (-1715 (((-108) $) NIL (|has| |#2| (-517)))) (-4090 (((-712) $) NIL) (((-712) $ (-591 (-1003))) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-2944 (($ $ $) NIL (|has| |#2| (-517)))) (-1965 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1291 (($ $) NIL (|has| |#2| (-429)))) (-2827 (((-396 $) $) NIL (|has| |#2| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1947 (((-108) $ $) NIL (|has| |#2| (-341)))) (-2229 (($ $ (-712)) NIL)) (-3159 (($ $ (-712)) NIL)) (-2288 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-429)))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#2| "failed") $) NIL) (((-3 (-385 (-525)) "failed") $) NIL (|has| |#2| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) NIL (|has| |#2| (-966 (-525)))) (((-3 (-1003) "failed") $) NIL)) (-3528 ((|#2| $) NIL) (((-385 (-525)) $) NIL (|has| |#2| (-966 (-385 (-525))))) (((-525) $) NIL (|has| |#2| (-966 (-525)))) (((-1003) $) NIL)) (-2805 (($ $ $ (-1003)) NIL (|has| |#2| (-160))) ((|#2| $ $) NIL (|has| |#2| (-160)))) (-2129 (($ $ $) NIL (|has| |#2| (-341)))) (-1710 (($ $) NIL)) (-3305 (((-631 (-525)) (-631 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) NIL (|has| |#2| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#2|)) (|:| |vec| (-1171 |#2|))) (-631 $) (-1171 $)) NIL) (((-631 |#2|) (-631 $)) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-2110 (($ $ $) NIL (|has| |#2| (-341)))) (-3106 (($ $ $) NIL)) (-2273 (($ $ $) NIL (|has| |#2| (-517)))) (-3867 (((-2 (|:| -3482 |#2|) (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#2| (-517)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#2| (-341)))) (-3208 (($ $) NIL (|has| |#2| (-429))) (($ $ (-1003)) NIL (|has| |#2| (-429)))) (-1695 (((-591 $) $) NIL)) (-2744 (((-108) $) NIL (|has| |#2| (-842)))) (-2056 (($ $ |#2| (-712) $) NIL)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) NIL (-12 (|has| (-1003) (-819 (-357))) (|has| |#2| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) NIL (-12 (|has| (-1003) (-819 (-525))) (|has| |#2| (-819 (-525)))))) (-3873 (((-712) $ $) NIL (|has| |#2| (-517)))) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) NIL)) (-2085 (((-3 $ "failed") $) NIL (|has| |#2| (-1065)))) (-1493 (($ (-1085 |#2|) (-1003)) NIL) (($ (-1085 $) (-1003)) NIL)) (-3111 (($ $ (-712)) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#2| (-341)))) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-1480 (($ |#2| (-712)) 17) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ (-1003)) NIL) (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL)) (-2624 (((-712) $) NIL) (((-712) $ (-1003)) NIL) (((-591 (-712)) $ (-591 (-1003))) NIL)) (-3741 (($ $ $) NIL (|has| |#2| (-788)))) (-2478 (($ $ $) NIL (|has| |#2| (-788)))) (-4015 (($ (-1 (-712) (-712)) $) NIL)) (-1340 (($ (-1 |#2| |#2|) $) NIL)) (-1525 (((-1085 |#2|) $) NIL)) (-2254 (((-3 (-1003) "failed") $) NIL)) (-1661 (($ $) NIL)) (-1678 ((|#2| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#2| (-429))) (($ $ $) NIL (|has| |#2| (-429)))) (-2339 (((-1072) $) NIL)) (-3070 (((-2 (|:| -2963 $) (|:| -3407 $)) $ (-712)) NIL)) (-3376 (((-3 (-591 $) "failed") $) NIL)) (-2010 (((-3 (-591 $) "failed") $) NIL)) (-2292 (((-3 (-2 (|:| |var| (-1003)) (|:| -2008 (-712))) "failed") $) NIL)) (-4141 (($ $) NIL (|has| |#2| (-37 (-385 (-525)))))) (-3506 (($) NIL (|has| |#2| (-1065)) CONST)) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) NIL)) (-1646 ((|#2| $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#2| (-429)))) (-1399 (($ (-591 $)) NIL (|has| |#2| (-429))) (($ $ $) NIL (|has| |#2| (-429)))) (-3678 (($ $ (-712) |#2| $) NIL)) (-2916 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) NIL (|has| |#2| (-842)))) (-1348 (((-396 $) $) NIL (|has| |#2| (-842)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#2| (-341)))) (-2089 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-517))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#2| (-341)))) (-4132 (($ $ (-591 (-273 $))) NIL) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-1003) |#2|) NIL) (($ $ (-591 (-1003)) (-591 |#2|)) NIL) (($ $ (-1003) $) NIL) (($ $ (-591 (-1003)) (-591 $)) NIL)) (-1712 (((-712) $) NIL (|has| |#2| (-341)))) (-3164 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-385 $) (-385 $) (-385 $)) NIL (|has| |#2| (-517))) ((|#2| (-385 $) |#2|) NIL (|has| |#2| (-341))) (((-385 $) $ (-385 $)) NIL (|has| |#2| (-517)))) (-3579 (((-3 $ "failed") $ (-712)) NIL)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#2| (-341)))) (-2976 (($ $ (-1003)) NIL (|has| |#2| (-160))) ((|#2| $) NIL (|has| |#2| (-160)))) (-3266 (($ $ (-1003)) NIL) (($ $ (-591 (-1003))) NIL) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL) (($ $ (-712)) NIL) (($ $) NIL) (($ $ (-1089)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) $) NIL)) (-1316 (((-712) $) NIL) (((-712) $ (-1003)) NIL) (((-591 (-712)) $ (-591 (-1003))) NIL)) (-1408 (((-825 (-357)) $) NIL (-12 (|has| (-1003) (-566 (-825 (-357)))) (|has| |#2| (-566 (-825 (-357)))))) (((-825 (-525)) $) NIL (-12 (|has| (-1003) (-566 (-825 (-525)))) (|has| |#2| (-566 (-825 (-525)))))) (((-501) $) NIL (-12 (|has| (-1003) (-566 (-501))) (|has| |#2| (-566 (-501)))))) (-2668 ((|#2| $) NIL (|has| |#2| (-429))) (($ $ (-1003)) NIL (|has| |#2| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) NIL (-12 (|has| $ (-136)) (|has| |#2| (-842))))) (-2413 (((-3 $ "failed") $ $) NIL (|has| |#2| (-517))) (((-3 (-385 $) "failed") (-385 $) $) NIL (|has| |#2| (-517)))) (-3022 (((-796) $) 13) (($ (-525)) NIL) (($ |#2|) NIL) (($ (-1003)) NIL) (($ (-1167 |#1|)) 19) (($ (-385 (-525))) NIL (-3321 (|has| |#2| (-37 (-385 (-525)))) (|has| |#2| (-966 (-385 (-525)))))) (($ $) NIL (|has| |#2| (-517)))) (-3654 (((-591 |#2|) $) NIL)) (-2560 ((|#2| $ (-712)) NIL) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL)) (-1437 (((-3 $ "failed") $) NIL (-3321 (-12 (|has| $ (-136)) (|has| |#2| (-842))) (|has| |#2| (-136))))) (-2128 (((-712)) NIL)) (-1698 (($ $ $ (-712)) NIL (|has| |#2| (-160)))) (-2495 (((-108) $ $) NIL (|has| |#2| (-517)))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-4197 (($) 14 T CONST)) (-4196 (($ $ (-1003)) NIL) (($ $ (-591 (-1003))) NIL) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL) (($ $ (-712)) NIL) (($ $) NIL) (($ $ (-1089)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1089) (-712)) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) NIL (|has| |#2| (-833 (-1089)))) (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-4135 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4096 (((-108) $ $) NIL)) (-4126 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#2| (-788)))) (-4173 (($ $ |#2|) NIL (|has| |#2| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-385 (-525))) NIL (|has| |#2| (-37 (-385 (-525))))) (($ (-385 (-525)) $) NIL (|has| |#2| (-37 (-385 (-525))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-1144 |#1| |#2|) (-13 (-1147 |#2|) (-10 -8 (-15 -3022 ($ (-1167 |#1|))) (-15 -3678 ($ $ (-712) |#2| $)))) (-1089) (-975)) (T -1144))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1167 *3)) (-14 *3 (-1089)) (-5 *1 (-1144 *3 *4)) (-4 *4 (-975)))) (-3678 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-712)) (-5 *1 (-1144 *4 *3)) (-14 *4 (-1089)) (-4 *3 (-975)))))
+(-13 (-1147 |#2|) (-10 -8 (-15 -3022 ($ (-1167 |#1|))) (-15 -3678 ($ $ (-712) |#2| $))))
+((-1340 ((|#4| (-1 |#3| |#1|) |#2|) 22)))
+(((-1145 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1340 (|#4| (-1 |#3| |#1|) |#2|))) (-975) (-1147 |#1|) (-975) (-1147 |#3|)) (T -1145))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-975)) (-4 *6 (-975)) (-4 *2 (-1147 *6)) (-5 *1 (-1145 *5 *4 *6 *2)) (-4 *4 (-1147 *5)))))
+(-10 -7 (-15 -1340 (|#4| (-1 |#3| |#1|) |#2|)))
+((-3928 (((-1171 |#2|) $ (-712)) 114)) (-1507 (((-591 (-1003)) $) 15)) (-1390 (($ (-1085 |#2|)) 67)) (-4090 (((-712) $) NIL) (((-712) $ (-591 (-1003))) 18)) (-1965 (((-396 (-1085 $)) (-1085 $)) 185)) (-1291 (($ $) 175)) (-2827 (((-396 $) $) 173)) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) 82)) (-2229 (($ $ (-712)) 71)) (-3159 (($ $ (-712)) 73)) (-2288 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 130)) (-1251 (((-3 |#2| "failed") $) 117) (((-3 (-385 (-525)) "failed") $) NIL) (((-3 (-525) "failed") $) NIL) (((-3 (-1003) "failed") $) NIL)) (-3528 ((|#2| $) 115) (((-385 (-525)) $) NIL) (((-525) $) NIL) (((-1003) $) NIL)) (-2273 (($ $ $) 151)) (-3867 (((-2 (|:| -3482 |#2|) (|:| -2963 $) (|:| -3407 $)) $ $) 153)) (-3873 (((-712) $ $) 170)) (-2085 (((-3 $ "failed") $) 123)) (-1480 (($ |#2| (-712)) NIL) (($ $ (-1003) (-712)) 47) (($ $ (-591 (-1003)) (-591 (-712))) NIL)) (-2624 (((-712) $) NIL) (((-712) $ (-1003)) 42) (((-591 (-712)) $ (-591 (-1003))) 43)) (-1525 (((-1085 |#2|) $) 59)) (-2254 (((-3 (-1003) "failed") $) 40)) (-3070 (((-2 (|:| -2963 $) (|:| -3407 $)) $ (-712)) 70)) (-4141 (($ $) 197)) (-3506 (($) 119)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 182)) (-2916 (((-396 (-1085 $)) (-1085 $)) 88)) (-1626 (((-396 (-1085 $)) (-1085 $)) 86)) (-1348 (((-396 $) $) 107)) (-4132 (($ $ (-591 (-273 $))) 39) (($ $ (-273 $)) NIL) (($ $ $ $) NIL) (($ $ (-591 $) (-591 $)) NIL) (($ $ (-1003) |#2|) 31) (($ $ (-591 (-1003)) (-591 |#2|)) 28) (($ $ (-1003) $) 25) (($ $ (-591 (-1003)) (-591 $)) 23)) (-1712 (((-712) $) 188)) (-3164 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-385 $) (-385 $) (-385 $)) 147) ((|#2| (-385 $) |#2|) 187) (((-385 $) $ (-385 $)) 169)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 191)) (-3266 (($ $ (-1003)) 140) (($ $ (-591 (-1003))) NIL) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL) (($ $ (-712)) NIL) (($ $) 138) (($ $ (-1089)) NIL) (($ $ (-591 (-1089))) NIL) (($ $ (-1089) (-712)) NIL) (($ $ (-591 (-1089)) (-591 (-712))) NIL) (($ $ (-1 |#2| |#2|) (-712)) NIL) (($ $ (-1 |#2| |#2|)) 137) (($ $ (-1 |#2| |#2|) $) 134)) (-1316 (((-712) $) NIL) (((-712) $ (-1003)) 16) (((-591 (-712)) $ (-591 (-1003))) 20)) (-2668 ((|#2| $) NIL) (($ $ (-1003)) 125)) (-2413 (((-3 $ "failed") $ $) 161) (((-3 (-385 $) "failed") (-385 $) $) 157)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#2|) NIL) (($ (-1003)) 51) (($ (-385 (-525))) NIL) (($ $) NIL)))
+(((-1146 |#1| |#2|) (-10 -8 (-15 -3022 (|#1| |#1|)) (-15 -2526 ((-1085 |#1|) (-1085 |#1|) (-1085 |#1|))) (-15 -2827 ((-396 |#1|) |#1|)) (-15 -1291 (|#1| |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -3506 (|#1|)) (-15 -2085 ((-3 |#1| "failed") |#1|)) (-15 -3164 ((-385 |#1|) |#1| (-385 |#1|))) (-15 -1712 ((-712) |#1|)) (-15 -3999 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -4141 (|#1| |#1|)) (-15 -3164 (|#2| (-385 |#1|) |#2|)) (-15 -2288 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -3867 ((-2 (|:| -3482 |#2|) (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -2273 (|#1| |#1| |#1|)) (-15 -2413 ((-3 (-385 |#1|) "failed") (-385 |#1|) |#1|)) (-15 -2413 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3873 ((-712) |#1| |#1|)) (-15 -3164 ((-385 |#1|) (-385 |#1|) (-385 |#1|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -3159 (|#1| |#1| (-712))) (-15 -2229 (|#1| |#1| (-712))) (-15 -3070 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| (-712))) (-15 -1390 (|#1| (-1085 |#2|))) (-15 -1525 ((-1085 |#2|) |#1|)) (-15 -3928 ((-1171 |#2|) |#1| (-712))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -3164 (|#1| |#1| |#1|)) (-15 -3164 (|#2| |#1| |#2|)) (-15 -1348 ((-396 |#1|) |#1|)) (-15 -1965 ((-396 (-1085 |#1|)) (-1085 |#1|))) (-15 -1626 ((-396 (-1085 |#1|)) (-1085 |#1|))) (-15 -2916 ((-396 (-1085 |#1|)) (-1085 |#1|))) (-15 -2252 ((-3 (-591 (-1085 |#1|)) "failed") (-591 (-1085 |#1|)) (-1085 |#1|))) (-15 -2668 (|#1| |#1| (-1003))) (-15 -1507 ((-591 (-1003)) |#1|)) (-15 -4090 ((-712) |#1| (-591 (-1003)))) (-15 -4090 ((-712) |#1|)) (-15 -1480 (|#1| |#1| (-591 (-1003)) (-591 (-712)))) (-15 -1480 (|#1| |#1| (-1003) (-712))) (-15 -2624 ((-591 (-712)) |#1| (-591 (-1003)))) (-15 -2624 ((-712) |#1| (-1003))) (-15 -2254 ((-3 (-1003) "failed") |#1|)) (-15 -1316 ((-591 (-712)) |#1| (-591 (-1003)))) (-15 -1316 ((-712) |#1| (-1003))) (-15 -3528 ((-1003) |#1|)) (-15 -1251 ((-3 (-1003) "failed") |#1|)) (-15 -3022 (|#1| (-1003))) (-15 -4132 (|#1| |#1| (-591 (-1003)) (-591 |#1|))) (-15 -4132 (|#1| |#1| (-1003) |#1|)) (-15 -4132 (|#1| |#1| (-591 (-1003)) (-591 |#2|))) (-15 -4132 (|#1| |#1| (-1003) |#2|)) (-15 -4132 (|#1| |#1| (-591 |#1|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#1| |#1|)) (-15 -4132 (|#1| |#1| (-273 |#1|))) (-15 -4132 (|#1| |#1| (-591 (-273 |#1|)))) (-15 -1316 ((-712) |#1|)) (-15 -1480 (|#1| |#2| (-712))) (-15 -3528 ((-525) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3022 (|#1| |#2|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -2624 ((-712) |#1|)) (-15 -2668 (|#2| |#1|)) (-15 -3266 (|#1| |#1| (-591 (-1003)) (-591 (-712)))) (-15 -3266 (|#1| |#1| (-1003) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1003)))) (-15 -3266 (|#1| |#1| (-1003))) (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|))) (-1147 |#2|) (-975)) (T -1146))
+NIL
+(-10 -8 (-15 -3022 (|#1| |#1|)) (-15 -2526 ((-1085 |#1|) (-1085 |#1|) (-1085 |#1|))) (-15 -2827 ((-396 |#1|) |#1|)) (-15 -1291 (|#1| |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -3506 (|#1|)) (-15 -2085 ((-3 |#1| "failed") |#1|)) (-15 -3164 ((-385 |#1|) |#1| (-385 |#1|))) (-15 -1712 ((-712) |#1|)) (-15 -3999 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -4141 (|#1| |#1|)) (-15 -3164 (|#2| (-385 |#1|) |#2|)) (-15 -2288 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -3867 ((-2 (|:| -3482 |#2|) (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| |#1|)) (-15 -2273 (|#1| |#1| |#1|)) (-15 -2413 ((-3 (-385 |#1|) "failed") (-385 |#1|) |#1|)) (-15 -2413 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3873 ((-712) |#1| |#1|)) (-15 -3164 ((-385 |#1|) (-385 |#1|) (-385 |#1|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -3159 (|#1| |#1| (-712))) (-15 -2229 (|#1| |#1| (-712))) (-15 -3070 ((-2 (|:| -2963 |#1|) (|:| -3407 |#1|)) |#1| (-712))) (-15 -1390 (|#1| (-1085 |#2|))) (-15 -1525 ((-1085 |#2|) |#1|)) (-15 -3928 ((-1171 |#2|) |#1| (-712))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3266 (|#1| |#1| (-1 |#2| |#2|) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)) (-591 (-712)))) (-15 -3266 (|#1| |#1| (-1089) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1089)))) (-15 -3266 (|#1| |#1| (-1089))) (-15 -3266 (|#1| |#1|)) (-15 -3266 (|#1| |#1| (-712))) (-15 -3164 (|#1| |#1| |#1|)) (-15 -3164 (|#2| |#1| |#2|)) (-15 -1348 ((-396 |#1|) |#1|)) (-15 -1965 ((-396 (-1085 |#1|)) (-1085 |#1|))) (-15 -1626 ((-396 (-1085 |#1|)) (-1085 |#1|))) (-15 -2916 ((-396 (-1085 |#1|)) (-1085 |#1|))) (-15 -2252 ((-3 (-591 (-1085 |#1|)) "failed") (-591 (-1085 |#1|)) (-1085 |#1|))) (-15 -2668 (|#1| |#1| (-1003))) (-15 -1507 ((-591 (-1003)) |#1|)) (-15 -4090 ((-712) |#1| (-591 (-1003)))) (-15 -4090 ((-712) |#1|)) (-15 -1480 (|#1| |#1| (-591 (-1003)) (-591 (-712)))) (-15 -1480 (|#1| |#1| (-1003) (-712))) (-15 -2624 ((-591 (-712)) |#1| (-591 (-1003)))) (-15 -2624 ((-712) |#1| (-1003))) (-15 -2254 ((-3 (-1003) "failed") |#1|)) (-15 -1316 ((-591 (-712)) |#1| (-591 (-1003)))) (-15 -1316 ((-712) |#1| (-1003))) (-15 -3528 ((-1003) |#1|)) (-15 -1251 ((-3 (-1003) "failed") |#1|)) (-15 -3022 (|#1| (-1003))) (-15 -4132 (|#1| |#1| (-591 (-1003)) (-591 |#1|))) (-15 -4132 (|#1| |#1| (-1003) |#1|)) (-15 -4132 (|#1| |#1| (-591 (-1003)) (-591 |#2|))) (-15 -4132 (|#1| |#1| (-1003) |#2|)) (-15 -4132 (|#1| |#1| (-591 |#1|) (-591 |#1|))) (-15 -4132 (|#1| |#1| |#1| |#1|)) (-15 -4132 (|#1| |#1| (-273 |#1|))) (-15 -4132 (|#1| |#1| (-591 (-273 |#1|)))) (-15 -1316 ((-712) |#1|)) (-15 -1480 (|#1| |#2| (-712))) (-15 -3528 ((-525) |#1|)) (-15 -1251 ((-3 (-525) "failed") |#1|)) (-15 -3528 ((-385 (-525)) |#1|)) (-15 -1251 ((-3 (-385 (-525)) "failed") |#1|)) (-15 -3022 (|#1| |#2|)) (-15 -1251 ((-3 |#2| "failed") |#1|)) (-15 -3528 (|#2| |#1|)) (-15 -2624 ((-712) |#1|)) (-15 -2668 (|#2| |#1|)) (-15 -3266 (|#1| |#1| (-591 (-1003)) (-591 (-712)))) (-15 -3266 (|#1| |#1| (-1003) (-712))) (-15 -3266 (|#1| |#1| (-591 (-1003)))) (-15 -3266 (|#1| |#1| (-1003))) (-15 -3022 (|#1| (-525))) (-15 -3022 ((-796) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3928 (((-1171 |#1|) $ (-712)) 238)) (-1507 (((-591 (-1003)) $) 110)) (-1390 (($ (-1085 |#1|)) 236)) (-1312 (((-1085 $) $ (-1003)) 125) (((-1085 |#1|) $) 124)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 87 (|has| |#1| (-517)))) (-3706 (($ $) 88 (|has| |#1| (-517)))) (-1715 (((-108) $) 90 (|has| |#1| (-517)))) (-4090 (((-712) $) 112) (((-712) $ (-591 (-1003))) 111)) (-2157 (((-3 $ "failed") $ $) 19)) (-2944 (($ $ $) 223 (|has| |#1| (-517)))) (-1965 (((-396 (-1085 $)) (-1085 $)) 100 (|has| |#1| (-842)))) (-1291 (($ $) 98 (|has| |#1| (-429)))) (-2827 (((-396 $) $) 97 (|has| |#1| (-429)))) (-2252 (((-3 (-591 (-1085 $)) "failed") (-591 (-1085 $)) (-1085 $)) 103 (|has| |#1| (-842)))) (-1947 (((-108) $ $) 208 (|has| |#1| (-341)))) (-2229 (($ $ (-712)) 231)) (-3159 (($ $ (-712)) 230)) (-2288 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 218 (|has| |#1| (-429)))) (-3798 (($) 17 T CONST)) (-1251 (((-3 |#1| "failed") $) 164) (((-3 (-385 (-525)) "failed") $) 162 (|has| |#1| (-966 (-385 (-525))))) (((-3 (-525) "failed") $) 160 (|has| |#1| (-966 (-525)))) (((-3 (-1003) "failed") $) 136)) (-3528 ((|#1| $) 165) (((-385 (-525)) $) 161 (|has| |#1| (-966 (-385 (-525))))) (((-525) $) 159 (|has| |#1| (-966 (-525)))) (((-1003) $) 135)) (-2805 (($ $ $ (-1003)) 108 (|has| |#1| (-160))) ((|#1| $ $) 226 (|has| |#1| (-160)))) (-2129 (($ $ $) 212 (|has| |#1| (-341)))) (-1710 (($ $) 154)) (-3305 (((-631 (-525)) (-631 $)) 134 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 (-525))) (|:| |vec| (-1171 (-525)))) (-631 $) (-1171 $)) 133 (|has| |#1| (-587 (-525)))) (((-2 (|:| -4057 (-631 |#1|)) (|:| |vec| (-1171 |#1|))) (-631 $) (-1171 $)) 132) (((-631 |#1|) (-631 $)) 131)) (-4163 (((-3 $ "failed") $) 34)) (-2110 (($ $ $) 211 (|has| |#1| (-341)))) (-3106 (($ $ $) 229)) (-2273 (($ $ $) 220 (|has| |#1| (-517)))) (-3867 (((-2 (|:| -3482 |#1|) (|:| -2963 $) (|:| -3407 $)) $ $) 219 (|has| |#1| (-517)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 206 (|has| |#1| (-341)))) (-3208 (($ $) 176 (|has| |#1| (-429))) (($ $ (-1003)) 105 (|has| |#1| (-429)))) (-1695 (((-591 $) $) 109)) (-2744 (((-108) $) 96 (|has| |#1| (-842)))) (-2056 (($ $ |#1| (-712) $) 172)) (-2011 (((-822 (-357) $) $ (-825 (-357)) (-822 (-357) $)) 84 (-12 (|has| (-1003) (-819 (-357))) (|has| |#1| (-819 (-357))))) (((-822 (-525) $) $ (-825 (-525)) (-822 (-525) $)) 83 (-12 (|has| (-1003) (-819 (-525))) (|has| |#1| (-819 (-525)))))) (-3873 (((-712) $ $) 224 (|has| |#1| (-517)))) (-2824 (((-108) $) 31)) (-4010 (((-712) $) 169)) (-2085 (((-3 $ "failed") $) 204 (|has| |#1| (-1065)))) (-1493 (($ (-1085 |#1|) (-1003)) 117) (($ (-1085 $) (-1003)) 116)) (-3111 (($ $ (-712)) 235)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 215 (|has| |#1| (-341)))) (-1922 (((-591 $) $) 126)) (-2202 (((-108) $) 152)) (-1480 (($ |#1| (-712)) 153) (($ $ (-1003) (-712)) 119) (($ $ (-591 (-1003)) (-591 (-712))) 118)) (-3958 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $ (-1003)) 120) (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 233)) (-2624 (((-712) $) 170) (((-712) $ (-1003)) 122) (((-591 (-712)) $ (-591 (-1003))) 121)) (-3741 (($ $ $) 79 (|has| |#1| (-788)))) (-2478 (($ $ $) 78 (|has| |#1| (-788)))) (-4015 (($ (-1 (-712) (-712)) $) 171)) (-1340 (($ (-1 |#1| |#1|) $) 151)) (-1525 (((-1085 |#1|) $) 237)) (-2254 (((-3 (-1003) "failed") $) 123)) (-1661 (($ $) 149)) (-1678 ((|#1| $) 148)) (-1356 (($ (-591 $)) 94 (|has| |#1| (-429))) (($ $ $) 93 (|has| |#1| (-429)))) (-2339 (((-1072) $) 9)) (-3070 (((-2 (|:| -2963 $) (|:| -3407 $)) $ (-712)) 232)) (-3376 (((-3 (-591 $) "failed") $) 114)) (-2010 (((-3 (-591 $) "failed") $) 115)) (-2292 (((-3 (-2 (|:| |var| (-1003)) (|:| -2008 (-712))) "failed") $) 113)) (-4141 (($ $) 216 (|has| |#1| (-37 (-385 (-525)))))) (-3506 (($) 203 (|has| |#1| (-1065)) CONST)) (-2047 (((-1036) $) 10)) (-1634 (((-108) $) 166)) (-1646 ((|#1| $) 167)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 95 (|has| |#1| (-429)))) (-1399 (($ (-591 $)) 92 (|has| |#1| (-429))) (($ $ $) 91 (|has| |#1| (-429)))) (-2916 (((-396 (-1085 $)) (-1085 $)) 102 (|has| |#1| (-842)))) (-1626 (((-396 (-1085 $)) (-1085 $)) 101 (|has| |#1| (-842)))) (-1348 (((-396 $) $) 99 (|has| |#1| (-842)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 214 (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 213 (|has| |#1| (-341)))) (-2089 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-517))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 207 (|has| |#1| (-341)))) (-4132 (($ $ (-591 (-273 $))) 145) (($ $ (-273 $)) 144) (($ $ $ $) 143) (($ $ (-591 $) (-591 $)) 142) (($ $ (-1003) |#1|) 141) (($ $ (-591 (-1003)) (-591 |#1|)) 140) (($ $ (-1003) $) 139) (($ $ (-591 (-1003)) (-591 $)) 138)) (-1712 (((-712) $) 209 (|has| |#1| (-341)))) (-3164 ((|#1| $ |#1|) 256) (($ $ $) 255) (((-385 $) (-385 $) (-385 $)) 225 (|has| |#1| (-517))) ((|#1| (-385 $) |#1|) 217 (|has| |#1| (-341))) (((-385 $) $ (-385 $)) 205 (|has| |#1| (-517)))) (-3579 (((-3 $ "failed") $ (-712)) 234)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 210 (|has| |#1| (-341)))) (-2976 (($ $ (-1003)) 107 (|has| |#1| (-160))) ((|#1| $) 227 (|has| |#1| (-160)))) (-3266 (($ $ (-1003)) 42) (($ $ (-591 (-1003))) 41) (($ $ (-1003) (-712)) 40) (($ $ (-591 (-1003)) (-591 (-712))) 39) (($ $ (-712)) 253) (($ $) 251) (($ $ (-1089)) 250 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) 249 (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) 248 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) 247 (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) 240) (($ $ (-1 |#1| |#1|)) 239) (($ $ (-1 |#1| |#1|) $) 228)) (-1316 (((-712) $) 150) (((-712) $ (-1003)) 130) (((-591 (-712)) $ (-591 (-1003))) 129)) (-1408 (((-825 (-357)) $) 82 (-12 (|has| (-1003) (-566 (-825 (-357)))) (|has| |#1| (-566 (-825 (-357)))))) (((-825 (-525)) $) 81 (-12 (|has| (-1003) (-566 (-825 (-525)))) (|has| |#1| (-566 (-825 (-525)))))) (((-501) $) 80 (-12 (|has| (-1003) (-566 (-501))) (|has| |#1| (-566 (-501)))))) (-2668 ((|#1| $) 175 (|has| |#1| (-429))) (($ $ (-1003)) 106 (|has| |#1| (-429)))) (-2265 (((-3 (-1171 $) "failed") (-631 $)) 104 (-1213 (|has| $ (-136)) (|has| |#1| (-842))))) (-2413 (((-3 $ "failed") $ $) 222 (|has| |#1| (-517))) (((-3 (-385 $) "failed") (-385 $) $) 221 (|has| |#1| (-517)))) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 163) (($ (-1003)) 137) (($ (-385 (-525))) 72 (-3321 (|has| |#1| (-966 (-385 (-525)))) (|has| |#1| (-37 (-385 (-525)))))) (($ $) 85 (|has| |#1| (-517)))) (-3654 (((-591 |#1|) $) 168)) (-2560 ((|#1| $ (-712)) 155) (($ $ (-1003) (-712)) 128) (($ $ (-591 (-1003)) (-591 (-712))) 127)) (-1437 (((-3 $ "failed") $) 73 (-3321 (-1213 (|has| $ (-136)) (|has| |#1| (-842))) (|has| |#1| (-136))))) (-2128 (((-712)) 29)) (-1698 (($ $ $ (-712)) 173 (|has| |#1| (-160)))) (-2495 (((-108) $ $) 89 (|has| |#1| (-517)))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ (-1003)) 38) (($ $ (-591 (-1003))) 37) (($ $ (-1003) (-712)) 36) (($ $ (-591 (-1003)) (-591 (-712))) 35) (($ $ (-712)) 254) (($ $) 252) (($ $ (-1089)) 246 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089))) 245 (|has| |#1| (-833 (-1089)))) (($ $ (-1089) (-712)) 244 (|has| |#1| (-833 (-1089)))) (($ $ (-591 (-1089)) (-591 (-712))) 243 (|has| |#1| (-833 (-1089)))) (($ $ (-1 |#1| |#1|) (-712)) 242) (($ $ (-1 |#1| |#1|)) 241)) (-4135 (((-108) $ $) 76 (|has| |#1| (-788)))) (-4119 (((-108) $ $) 75 (|has| |#1| (-788)))) (-4096 (((-108) $ $) 6)) (-4126 (((-108) $ $) 77 (|has| |#1| (-788)))) (-4112 (((-108) $ $) 74 (|has| |#1| (-788)))) (-4173 (($ $ |#1|) 156 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 (-525))) 158 (|has| |#1| (-37 (-385 (-525))))) (($ (-385 (-525)) $) 157 (|has| |#1| (-37 (-385 (-525))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+(((-1147 |#1|) (-131) (-975)) (T -1147))
+((-3928 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-4 *1 (-1147 *4)) (-4 *4 (-975)) (-5 *2 (-1171 *4)))) (-1525 (*1 *2 *1) (-12 (-4 *1 (-1147 *3)) (-4 *3 (-975)) (-5 *2 (-1085 *3)))) (-1390 (*1 *1 *2) (-12 (-5 *2 (-1085 *3)) (-4 *3 (-975)) (-4 *1 (-1147 *3)))) (-3111 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-1147 *3)) (-4 *3 (-975)))) (-3579 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-712)) (-4 *1 (-1147 *3)) (-4 *3 (-975)))) (-3958 (*1 *2 *1 *1) (-12 (-4 *3 (-975)) (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-1147 *3)))) (-3070 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-4 *4 (-975)) (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-1147 *4)))) (-2229 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-1147 *3)) (-4 *3 (-975)))) (-3159 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-1147 *3)) (-4 *3 (-975)))) (-3106 (*1 *1 *1 *1) (-12 (-4 *1 (-1147 *2)) (-4 *2 (-975)))) (-3266 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1147 *3)) (-4 *3 (-975)))) (-2976 (*1 *2 *1) (-12 (-4 *1 (-1147 *2)) (-4 *2 (-975)) (-4 *2 (-160)))) (-2805 (*1 *2 *1 *1) (-12 (-4 *1 (-1147 *2)) (-4 *2 (-975)) (-4 *2 (-160)))) (-3164 (*1 *2 *2 *2) (-12 (-5 *2 (-385 *1)) (-4 *1 (-1147 *3)) (-4 *3 (-975)) (-4 *3 (-517)))) (-3873 (*1 *2 *1 *1) (-12 (-4 *1 (-1147 *3)) (-4 *3 (-975)) (-4 *3 (-517)) (-5 *2 (-712)))) (-2944 (*1 *1 *1 *1) (-12 (-4 *1 (-1147 *2)) (-4 *2 (-975)) (-4 *2 (-517)))) (-2413 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1147 *2)) (-4 *2 (-975)) (-4 *2 (-517)))) (-2413 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-385 *1)) (-4 *1 (-1147 *3)) (-4 *3 (-975)) (-4 *3 (-517)))) (-2273 (*1 *1 *1 *1) (-12 (-4 *1 (-1147 *2)) (-4 *2 (-975)) (-4 *2 (-517)))) (-3867 (*1 *2 *1 *1) (-12 (-4 *3 (-517)) (-4 *3 (-975)) (-5 *2 (-2 (|:| -3482 *3) (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-1147 *3)))) (-2288 (*1 *2 *1 *1) (-12 (-4 *3 (-429)) (-4 *3 (-975)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1147 *3)))) (-3164 (*1 *2 *3 *2) (-12 (-5 *3 (-385 *1)) (-4 *1 (-1147 *2)) (-4 *2 (-975)) (-4 *2 (-341)))) (-4141 (*1 *1 *1) (-12 (-4 *1 (-1147 *2)) (-4 *2 (-975)) (-4 *2 (-37 (-385 (-525)))))))
+(-13 (-882 |t#1| (-712) (-1003)) (-265 |t#1| |t#1|) (-265 $ $) (-213) (-211 |t#1|) (-10 -8 (-15 -3928 ((-1171 |t#1|) $ (-712))) (-15 -1525 ((-1085 |t#1|) $)) (-15 -1390 ($ (-1085 |t#1|))) (-15 -3111 ($ $ (-712))) (-15 -3579 ((-3 $ "failed") $ (-712))) (-15 -3958 ((-2 (|:| -2963 $) (|:| -3407 $)) $ $)) (-15 -3070 ((-2 (|:| -2963 $) (|:| -3407 $)) $ (-712))) (-15 -2229 ($ $ (-712))) (-15 -3159 ($ $ (-712))) (-15 -3106 ($ $ $)) (-15 -3266 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1065)) (-6 (-1065)) |%noBranch|) (IF (|has| |t#1| (-160)) (PROGN (-15 -2976 (|t#1| $)) (-15 -2805 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-517)) (PROGN (-6 (-265 (-385 $) (-385 $))) (-15 -3164 ((-385 $) (-385 $) (-385 $))) (-15 -3873 ((-712) $ $)) (-15 -2944 ($ $ $)) (-15 -2413 ((-3 $ "failed") $ $)) (-15 -2413 ((-3 (-385 $) "failed") (-385 $) $)) (-15 -2273 ($ $ $)) (-15 -3867 ((-2 (|:| -3482 |t#1|) (|:| -2963 $) (|:| -3407 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-429)) (-15 -2288 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-341)) (PROGN (-6 (-286)) (-6 -4246) (-15 -3164 (|t#1| (-385 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-37 (-385 (-525)))) (-15 -4141 ($ $)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-712)) . T) ((-25) . T) ((-37 #1=(-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((-37 |#1|) |has| |#1| (-160)) ((-37 $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-341))) ((-97) . T) ((-107 #1# #1#) |has| |#1| (-37 (-385 (-525)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-341)) (|has| |#1| (-160))) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-341)) (|has| |#1| (-160))) ((-566 (-501)) -12 (|has| (-1003) (-566 (-501))) (|has| |#1| (-566 (-501)))) ((-566 (-825 (-357))) -12 (|has| (-1003) (-566 (-825 (-357)))) (|has| |#1| (-566 (-825 (-357))))) ((-566 (-825 (-525))) -12 (|has| (-1003) (-566 (-825 (-525)))) (|has| |#1| (-566 (-825 (-525))))) ((-211 |#1|) . T) ((-213) . T) ((-265 (-385 $) (-385 $)) |has| |#1| (-517)) ((-265 |#1| |#1|) . T) ((-265 $ $) . T) ((-269) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-341))) ((-286) |has| |#1| (-341)) ((-288 $) . T) ((-304 |#1| #0#) . T) ((-355 |#1|) . T) ((-389 |#1|) . T) ((-429) -3321 (|has| |#1| (-842)) (|has| |#1| (-429)) (|has| |#1| (-341))) ((-486 #2=(-1003) |#1|) . T) ((-486 #2# $) . T) ((-486 $ $) . T) ((-517) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-341))) ((-593 #1#) |has| |#1| (-37 (-385 (-525)))) ((-593 |#1|) . T) ((-593 $) . T) ((-587 (-525)) |has| |#1| (-587 (-525))) ((-587 |#1|) . T) ((-659 #1#) |has| |#1| (-37 (-385 (-525)))) ((-659 |#1|) |has| |#1| (-160)) ((-659 $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-341))) ((-668) . T) ((-788) |has| |#1| (-788)) ((-833 #2#) . T) ((-833 (-1089)) |has| |#1| (-833 (-1089))) ((-819 (-357)) -12 (|has| (-1003) (-819 (-357))) (|has| |#1| (-819 (-357)))) ((-819 (-525)) -12 (|has| (-1003) (-819 (-525))) (|has| |#1| (-819 (-525)))) ((-882 |#1| #0# #2#) . T) ((-842) |has| |#1| (-842)) ((-853) |has| |#1| (-341)) ((-966 (-385 (-525))) |has| |#1| (-966 (-385 (-525)))) ((-966 (-525)) |has| |#1| (-966 (-525))) ((-966 #2#) . T) ((-966 |#1|) . T) ((-981 #1#) |has| |#1| (-37 (-385 (-525)))) ((-981 |#1|) . T) ((-981 $) -3321 (|has| |#1| (-842)) (|has| |#1| (-517)) (|has| |#1| (-429)) (|has| |#1| (-341)) (|has| |#1| (-160))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1065) |has| |#1| (-1065)) ((-1129) |has| |#1| (-842)))
+((-1507 (((-591 (-1003)) $) 28)) (-1710 (($ $) 25)) (-1480 (($ |#2| |#3|) NIL) (($ $ (-1003) |#3|) 22) (($ $ (-591 (-1003)) (-591 |#3|)) 21)) (-1661 (($ $) 14)) (-1678 ((|#2| $) 12)) (-1316 ((|#3| $) 10)))
+(((-1148 |#1| |#2| |#3|) (-10 -8 (-15 -1507 ((-591 (-1003)) |#1|)) (-15 -1480 (|#1| |#1| (-591 (-1003)) (-591 |#3|))) (-15 -1480 (|#1| |#1| (-1003) |#3|)) (-15 -1710 (|#1| |#1|)) (-15 -1480 (|#1| |#2| |#3|)) (-15 -1316 (|#3| |#1|)) (-15 -1661 (|#1| |#1|)) (-15 -1678 (|#2| |#1|))) (-1149 |#2| |#3|) (-975) (-733)) (T -1148))
+NIL
+(-10 -8 (-15 -1507 ((-591 (-1003)) |#1|)) (-15 -1480 (|#1| |#1| (-591 (-1003)) (-591 |#3|))) (-15 -1480 (|#1| |#1| (-1003) |#3|)) (-15 -1710 (|#1| |#1|)) (-15 -1480 (|#1| |#2| |#3|)) (-15 -1316 (|#3| |#1|)) (-15 -1661 (|#1| |#1|)) (-15 -1678 (|#2| |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1507 (((-591 (-1003)) $) 74)) (-2037 (((-1089) $) 103)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 51 (|has| |#1| (-517)))) (-3706 (($ $) 52 (|has| |#1| (-517)))) (-1715 (((-108) $) 54 (|has| |#1| (-517)))) (-2121 (($ $ |#2|) 98) (($ $ |#2| |#2|) 97)) (-1631 (((-1070 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 105)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-1710 (($ $) 60)) (-4163 (((-3 $ "failed") $) 34)) (-3123 (((-108) $) 73)) (-3873 ((|#2| $) 100) ((|#2| $ |#2|) 99)) (-2824 (((-108) $) 31)) (-3111 (($ $ (-854)) 101)) (-2202 (((-108) $) 62)) (-1480 (($ |#1| |#2|) 61) (($ $ (-1003) |#2|) 76) (($ $ (-591 (-1003)) (-591 |#2|)) 75)) (-1340 (($ (-1 |#1| |#1|) $) 63)) (-1661 (($ $) 65)) (-1678 ((|#1| $) 66)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-2784 (($ $ |#2|) 95)) (-2089 (((-3 $ "failed") $ $) 50 (|has| |#1| (-517)))) (-4132 (((-1070 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-3164 ((|#1| $ |#2|) 104) (($ $ $) 81 (|has| |#2| (-1030)))) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) 89 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1089) (-712)) 88 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-591 (-1089))) 87 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1089)) 86 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-712)) 84 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-1316 ((|#2| $) 64)) (-3571 (($ $) 72)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ (-385 (-525))) 57 (|has| |#1| (-37 (-385 (-525))))) (($ $) 49 (|has| |#1| (-517))) (($ |#1|) 47 (|has| |#1| (-160)))) (-2560 ((|#1| $ |#2|) 59)) (-1437 (((-3 $ "failed") $) 48 (|has| |#1| (-136)))) (-2128 (((-712)) 29)) (-1682 ((|#1| $) 102)) (-2495 (((-108) $ $) 53 (|has| |#1| (-517)))) (-2176 ((|#1| $ |#2|) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) 93 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1089) (-712)) 92 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-591 (-1089))) 91 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1089)) 90 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-712)) 85 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-4096 (((-108) $ $) 6)) (-4173 (($ $ |#1|) 58 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-385 (-525)) $) 56 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 55 (|has| |#1| (-37 (-385 (-525)))))))
+(((-1149 |#1| |#2|) (-131) (-975) (-733)) (T -1149))
+((-1631 (*1 *2 *1) (-12 (-4 *1 (-1149 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733)) (-5 *2 (-1070 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-3164 (*1 *2 *1 *3) (-12 (-4 *1 (-1149 *2 *3)) (-4 *3 (-733)) (-4 *2 (-975)))) (-2037 (*1 *2 *1) (-12 (-4 *1 (-1149 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733)) (-5 *2 (-1089)))) (-1682 (*1 *2 *1) (-12 (-4 *1 (-1149 *2 *3)) (-4 *3 (-733)) (-4 *2 (-975)))) (-3111 (*1 *1 *1 *2) (-12 (-5 *2 (-854)) (-4 *1 (-1149 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733)))) (-3873 (*1 *2 *1) (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-975)) (-4 *2 (-733)))) (-3873 (*1 *2 *1 *2) (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-975)) (-4 *2 (-733)))) (-2121 (*1 *1 *1 *2) (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-975)) (-4 *2 (-733)))) (-2121 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-975)) (-4 *2 (-733)))) (-2176 (*1 *2 *1 *3) (-12 (-4 *1 (-1149 *2 *3)) (-4 *3 (-733)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3022 (*2 (-1089)))) (-4 *2 (-975)))) (-2784 (*1 *1 *1 *2) (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-975)) (-4 *2 (-733)))) (-4132 (*1 *2 *1 *3) (-12 (-4 *1 (-1149 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733)) (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1070 *3)))))
+(-13 (-904 |t#1| |t#2| (-1003)) (-10 -8 (-15 -1631 ((-1070 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -3164 (|t#1| $ |t#2|)) (-15 -2037 ((-1089) $)) (-15 -1682 (|t#1| $)) (-15 -3111 ($ $ (-854))) (-15 -3873 (|t#2| $)) (-15 -3873 (|t#2| $ |t#2|)) (-15 -2121 ($ $ |t#2|)) (-15 -2121 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -3022 (|t#1| (-1089)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -2176 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -2784 ($ $ |t#2|)) (IF (|has| |t#2| (-1030)) (-6 (-265 $ $)) |%noBranch|) (IF (|has| |t#1| (-15 * (|t#1| |t#2| |t#1|))) (PROGN (-6 (-213)) (IF (|has| |t#1| (-833 (-1089))) (-6 (-833 (-1089))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -4132 ((-1070 |t#1|) $ |t#1|)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((-37 |#1|) |has| |#1| (-160)) ((-37 $) |has| |#1| (-517)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-385 (-525)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-213) |has| |#1| (-15 * (|#1| |#2| |#1|))) ((-265 $ $) |has| |#2| (-1030)) ((-269) |has| |#1| (-517)) ((-517) |has| |#1| (-517)) ((-593 #0#) |has| |#1| (-37 (-385 (-525)))) ((-593 |#1|) . T) ((-593 $) . T) ((-659 #0#) |has| |#1| (-37 (-385 (-525)))) ((-659 |#1|) |has| |#1| (-160)) ((-659 $) |has| |#1| (-517)) ((-668) . T) ((-833 (-1089)) -12 (|has| |#1| (-15 * (|#1| |#2| |#1|))) (|has| |#1| (-833 (-1089)))) ((-904 |#1| |#2| (-1003)) . T) ((-981 #0#) |has| |#1| (-37 (-385 (-525)))) ((-981 |#1|) . T) ((-981 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-1291 ((|#2| |#2|) 12)) (-2827 (((-396 |#2|) |#2|) 14)) (-1974 (((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-525))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-525)))) 30)))
+(((-1150 |#1| |#2|) (-10 -7 (-15 -2827 ((-396 |#2|) |#2|)) (-15 -1291 (|#2| |#2|)) (-15 -1974 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-525))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-525)))))) (-517) (-13 (-1147 |#1|) (-517) (-10 -8 (-15 -1399 ($ $ $))))) (T -1150))
+((-1974 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4) (|:| |xpnt| (-525)))) (-4 *4 (-13 (-1147 *3) (-517) (-10 -8 (-15 -1399 ($ $ $))))) (-4 *3 (-517)) (-5 *1 (-1150 *3 *4)))) (-1291 (*1 *2 *2) (-12 (-4 *3 (-517)) (-5 *1 (-1150 *3 *2)) (-4 *2 (-13 (-1147 *3) (-517) (-10 -8 (-15 -1399 ($ $ $))))))) (-2827 (*1 *2 *3) (-12 (-4 *4 (-517)) (-5 *2 (-396 *3)) (-5 *1 (-1150 *4 *3)) (-4 *3 (-13 (-1147 *4) (-517) (-10 -8 (-15 -1399 ($ $ $))))))))
+(-10 -7 (-15 -2827 ((-396 |#2|) |#2|)) (-15 -1291 (|#2| |#2|)) (-15 -1974 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-525))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-525))))))
+((-1340 (((-1156 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1156 |#1| |#3| |#5|)) 24)))
+(((-1151 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1340 ((-1156 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1156 |#1| |#3| |#5|)))) (-975) (-975) (-1089) (-1089) |#1| |#2|) (T -1151))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1156 *5 *7 *9)) (-4 *5 (-975)) (-4 *6 (-975)) (-14 *7 (-1089)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1156 *6 *8 *10)) (-5 *1 (-1151 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1089)))))
+(-10 -7 (-15 -1340 ((-1156 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1156 |#1| |#3| |#5|))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1507 (((-591 (-1003)) $) 74)) (-2037 (((-1089) $) 103)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 51 (|has| |#1| (-517)))) (-3706 (($ $) 52 (|has| |#1| (-517)))) (-1715 (((-108) $) 54 (|has| |#1| (-517)))) (-2121 (($ $ (-385 (-525))) 98) (($ $ (-385 (-525)) (-385 (-525))) 97)) (-1631 (((-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#1|))) $) 105)) (-1987 (($ $) 135 (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) 118 (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) 19)) (-1291 (($ $) 162 (|has| |#1| (-341)))) (-2827 (((-396 $) $) 163 (|has| |#1| (-341)))) (-1361 (($ $) 117 (|has| |#1| (-37 (-385 (-525)))))) (-1947 (((-108) $ $) 153 (|has| |#1| (-341)))) (-1431 (($ $) 134 (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) 119 (|has| |#1| (-37 (-385 (-525)))))) (-3682 (($ (-712) (-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#1|)))) 172)) (-1719 (($ $) 133 (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) 120 (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) 17 T CONST)) (-2129 (($ $ $) 157 (|has| |#1| (-341)))) (-1710 (($ $) 60)) (-4163 (((-3 $ "failed") $) 34)) (-2110 (($ $ $) 156 (|has| |#1| (-341)))) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 151 (|has| |#1| (-341)))) (-2744 (((-108) $) 164 (|has| |#1| (-341)))) (-3123 (((-108) $) 73)) (-1784 (($) 145 (|has| |#1| (-37 (-385 (-525)))))) (-3873 (((-385 (-525)) $) 100) (((-385 (-525)) $ (-385 (-525))) 99)) (-2824 (((-108) $) 31)) (-3956 (($ $ (-525)) 116 (|has| |#1| (-37 (-385 (-525)))))) (-3111 (($ $ (-854)) 101) (($ $ (-385 (-525))) 171)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 160 (|has| |#1| (-341)))) (-2202 (((-108) $) 62)) (-1480 (($ |#1| (-385 (-525))) 61) (($ $ (-1003) (-385 (-525))) 76) (($ $ (-591 (-1003)) (-591 (-385 (-525)))) 75)) (-1340 (($ (-1 |#1| |#1|) $) 63)) (-1488 (($ $) 142 (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) 65)) (-1678 ((|#1| $) 66)) (-1356 (($ (-591 $)) 149 (|has| |#1| (-341))) (($ $ $) 148 (|has| |#1| (-341)))) (-2339 (((-1072) $) 9)) (-1622 (($ $) 165 (|has| |#1| (-341)))) (-4141 (($ $) 170 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089)) 169 (-3321 (-12 (|has| |#1| (-29 (-525))) (|has| |#1| (-891)) (|has| |#1| (-1111)) (|has| |#1| (-37 (-385 (-525))))) (-12 (|has| |#1| (-15 -1507 ((-591 (-1089)) |#1|))) (|has| |#1| (-15 -4141 (|#1| |#1| (-1089)))) (|has| |#1| (-37 (-385 (-525)))))))) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 150 (|has| |#1| (-341)))) (-1399 (($ (-591 $)) 147 (|has| |#1| (-341))) (($ $ $) 146 (|has| |#1| (-341)))) (-1348 (((-396 $) $) 161 (|has| |#1| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 158 (|has| |#1| (-341)))) (-2784 (($ $ (-385 (-525))) 95)) (-2089 (((-3 $ "failed") $ $) 50 (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 152 (|has| |#1| (-341)))) (-1409 (($ $) 143 (|has| |#1| (-37 (-385 (-525)))))) (-4132 (((-1070 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-385 (-525))))))) (-1712 (((-712) $) 154 (|has| |#1| (-341)))) (-3164 ((|#1| $ (-385 (-525))) 104) (($ $ $) 81 (|has| (-385 (-525)) (-1030)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 155 (|has| |#1| (-341)))) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) 89 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-1089) (-712)) 88 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-591 (-1089))) 87 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-1089)) 86 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-712)) 84 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (-1316 (((-385 (-525)) $) 64)) (-1502 (($ $) 132 (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) 121 (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) 131 (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) 122 (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) 130 (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) 123 (|has| |#1| (-37 (-385 (-525)))))) (-3571 (($ $) 72)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 47 (|has| |#1| (-160))) (($ (-385 (-525))) 57 (|has| |#1| (-37 (-385 (-525))))) (($ $) 49 (|has| |#1| (-517)))) (-2560 ((|#1| $ (-385 (-525))) 59)) (-1437 (((-3 $ "failed") $) 48 (|has| |#1| (-136)))) (-2128 (((-712)) 29)) (-1682 ((|#1| $) 102)) (-1563 (($ $) 141 (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) 129 (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) 53 (|has| |#1| (-517)))) (-1515 (($ $) 140 (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) 128 (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) 139 (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) 127 (|has| |#1| (-37 (-385 (-525)))))) (-2176 ((|#1| $ (-385 (-525))) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-385 (-525))))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3277 (($ $) 138 (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) 126 (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) 137 (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) 125 (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) 136 (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) 124 (|has| |#1| (-37 (-385 (-525)))))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 166 (|has| |#1| (-341)))) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) 93 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-1089) (-712)) 92 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-591 (-1089))) 91 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-1089)) 90 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-712)) 85 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (-4096 (((-108) $ $) 6)) (-4173 (($ $ |#1|) 58 (|has| |#1| (-341))) (($ $ $) 168 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 167 (|has| |#1| (-341))) (($ $ $) 144 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 115 (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-385 (-525)) $) 56 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 55 (|has| |#1| (-37 (-385 (-525)))))))
+(((-1152 |#1|) (-131) (-975)) (T -1152))
+((-3682 (*1 *1 *2 *3) (-12 (-5 *2 (-712)) (-5 *3 (-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| *4)))) (-4 *4 (-975)) (-4 *1 (-1152 *4)))) (-3111 (*1 *1 *1 *2) (-12 (-5 *2 (-385 (-525))) (-4 *1 (-1152 *3)) (-4 *3 (-975)))) (-4141 (*1 *1 *1) (-12 (-4 *1 (-1152 *2)) (-4 *2 (-975)) (-4 *2 (-37 (-385 (-525)))))) (-4141 (*1 *1 *1 *2) (-3321 (-12 (-5 *2 (-1089)) (-4 *1 (-1152 *3)) (-4 *3 (-975)) (-12 (-4 *3 (-29 (-525))) (-4 *3 (-891)) (-4 *3 (-1111)) (-4 *3 (-37 (-385 (-525)))))) (-12 (-5 *2 (-1089)) (-4 *1 (-1152 *3)) (-4 *3 (-975)) (-12 (|has| *3 (-15 -1507 ((-591 *2) *3))) (|has| *3 (-15 -4141 (*3 *3 *2))) (-4 *3 (-37 (-385 (-525)))))))))
+(-13 (-1149 |t#1| (-385 (-525))) (-10 -8 (-15 -3682 ($ (-712) (-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| |t#1|))))) (-15 -3111 ($ $ (-385 (-525)))) (IF (|has| |t#1| (-37 (-385 (-525)))) (PROGN (-15 -4141 ($ $)) (IF (|has| |t#1| (-15 -4141 (|t#1| |t#1| (-1089)))) (IF (|has| |t#1| (-15 -1507 ((-591 (-1089)) |t#1|))) (-15 -4141 ($ $ (-1089))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1111)) (IF (|has| |t#1| (-891)) (IF (|has| |t#1| (-29 (-525))) (-15 -4141 ($ $ (-1089))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-932)) (-6 (-1111))) |%noBranch|) (IF (|has| |t#1| (-341)) (-6 (-341)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-385 (-525))) . T) ((-25) . T) ((-37 #1=(-385 (-525))) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-37 |#1|) |has| |#1| (-160)) ((-37 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-34) |has| |#1| (-37 (-385 (-525)))) ((-91) |has| |#1| (-37 (-385 (-525)))) ((-97) . T) ((-107 #1# #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341)) (|has| |#1| (-160))) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) -3321 (|has| |#1| (-517)) (|has| |#1| (-341)) (|has| |#1| (-160))) ((-213) |has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) ((-223) |has| |#1| (-341)) ((-263) |has| |#1| (-37 (-385 (-525)))) ((-265 $ $) |has| (-385 (-525)) (-1030)) ((-269) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-286) |has| |#1| (-341)) ((-341) |has| |#1| (-341)) ((-429) |has| |#1| (-341)) ((-466) |has| |#1| (-37 (-385 (-525)))) ((-517) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-593 #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-593 |#1|) . T) ((-593 $) . T) ((-659 #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-659 |#1|) |has| |#1| (-160)) ((-659 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-668) . T) ((-833 (-1089)) -12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089)))) ((-904 |#1| #0# (-1003)) . T) ((-853) |has| |#1| (-341)) ((-932) |has| |#1| (-37 (-385 (-525)))) ((-981 #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-981 |#1|) . T) ((-981 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341)) (|has| |#1| (-160))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1111) |has| |#1| (-37 (-385 (-525)))) ((-1114) |has| |#1| (-37 (-385 (-525)))) ((-1129) |has| |#1| (-341)) ((-1149 |#1| #0#) . T))
+((-1800 (((-108) $) 12)) (-1251 (((-3 |#3| "failed") $) 17)) (-3528 ((|#3| $) 14)))
+(((-1153 |#1| |#2| |#3|) (-10 -8 (-15 -3528 (|#3| |#1|)) (-15 -1251 ((-3 |#3| "failed") |#1|)) (-15 -1800 ((-108) |#1|))) (-1154 |#2| |#3|) (-975) (-1131 |#2|)) (T -1153))
+NIL
+(-10 -8 (-15 -3528 (|#3| |#1|)) (-15 -1251 ((-3 |#3| "failed") |#1|)) (-15 -1800 ((-108) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1507 (((-591 (-1003)) $) 74)) (-2037 (((-1089) $) 103)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 51 (|has| |#1| (-517)))) (-3706 (($ $) 52 (|has| |#1| (-517)))) (-1715 (((-108) $) 54 (|has| |#1| (-517)))) (-2121 (($ $ (-385 (-525))) 98) (($ $ (-385 (-525)) (-385 (-525))) 97)) (-1631 (((-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#1|))) $) 105)) (-1987 (($ $) 135 (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) 118 (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) 19)) (-1291 (($ $) 162 (|has| |#1| (-341)))) (-2827 (((-396 $) $) 163 (|has| |#1| (-341)))) (-1361 (($ $) 117 (|has| |#1| (-37 (-385 (-525)))))) (-1947 (((-108) $ $) 153 (|has| |#1| (-341)))) (-1431 (($ $) 134 (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) 119 (|has| |#1| (-37 (-385 (-525)))))) (-3682 (($ (-712) (-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#1|)))) 172)) (-1719 (($ $) 133 (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) 120 (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) 17 T CONST)) (-1251 (((-3 |#2| "failed") $) 183)) (-3528 ((|#2| $) 182)) (-2129 (($ $ $) 157 (|has| |#1| (-341)))) (-1710 (($ $) 60)) (-4163 (((-3 $ "failed") $) 34)) (-1703 (((-385 (-525)) $) 180)) (-2110 (($ $ $) 156 (|has| |#1| (-341)))) (-1597 (($ (-385 (-525)) |#2|) 181)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 151 (|has| |#1| (-341)))) (-2744 (((-108) $) 164 (|has| |#1| (-341)))) (-3123 (((-108) $) 73)) (-1784 (($) 145 (|has| |#1| (-37 (-385 (-525)))))) (-3873 (((-385 (-525)) $) 100) (((-385 (-525)) $ (-385 (-525))) 99)) (-2824 (((-108) $) 31)) (-3956 (($ $ (-525)) 116 (|has| |#1| (-37 (-385 (-525)))))) (-3111 (($ $ (-854)) 101) (($ $ (-385 (-525))) 171)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 160 (|has| |#1| (-341)))) (-2202 (((-108) $) 62)) (-1480 (($ |#1| (-385 (-525))) 61) (($ $ (-1003) (-385 (-525))) 76) (($ $ (-591 (-1003)) (-591 (-385 (-525)))) 75)) (-1340 (($ (-1 |#1| |#1|) $) 63)) (-1488 (($ $) 142 (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) 65)) (-1678 ((|#1| $) 66)) (-1356 (($ (-591 $)) 149 (|has| |#1| (-341))) (($ $ $) 148 (|has| |#1| (-341)))) (-2842 ((|#2| $) 179)) (-1944 (((-3 |#2| "failed") $) 177)) (-1581 ((|#2| $) 178)) (-2339 (((-1072) $) 9)) (-1622 (($ $) 165 (|has| |#1| (-341)))) (-4141 (($ $) 170 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089)) 169 (-3321 (-12 (|has| |#1| (-29 (-525))) (|has| |#1| (-891)) (|has| |#1| (-1111)) (|has| |#1| (-37 (-385 (-525))))) (-12 (|has| |#1| (-15 -1507 ((-591 (-1089)) |#1|))) (|has| |#1| (-15 -4141 (|#1| |#1| (-1089)))) (|has| |#1| (-37 (-385 (-525)))))))) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 150 (|has| |#1| (-341)))) (-1399 (($ (-591 $)) 147 (|has| |#1| (-341))) (($ $ $) 146 (|has| |#1| (-341)))) (-1348 (((-396 $) $) 161 (|has| |#1| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 158 (|has| |#1| (-341)))) (-2784 (($ $ (-385 (-525))) 95)) (-2089 (((-3 $ "failed") $ $) 50 (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 152 (|has| |#1| (-341)))) (-1409 (($ $) 143 (|has| |#1| (-37 (-385 (-525)))))) (-4132 (((-1070 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-385 (-525))))))) (-1712 (((-712) $) 154 (|has| |#1| (-341)))) (-3164 ((|#1| $ (-385 (-525))) 104) (($ $ $) 81 (|has| (-385 (-525)) (-1030)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 155 (|has| |#1| (-341)))) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) 89 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-1089) (-712)) 88 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-591 (-1089))) 87 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-1089)) 86 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-712)) 84 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (-1316 (((-385 (-525)) $) 64)) (-1502 (($ $) 132 (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) 121 (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) 131 (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) 122 (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) 130 (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) 123 (|has| |#1| (-37 (-385 (-525)))))) (-3571 (($ $) 72)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 47 (|has| |#1| (-160))) (($ |#2|) 184) (($ (-385 (-525))) 57 (|has| |#1| (-37 (-385 (-525))))) (($ $) 49 (|has| |#1| (-517)))) (-2560 ((|#1| $ (-385 (-525))) 59)) (-1437 (((-3 $ "failed") $) 48 (|has| |#1| (-136)))) (-2128 (((-712)) 29)) (-1682 ((|#1| $) 102)) (-1563 (($ $) 141 (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) 129 (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) 53 (|has| |#1| (-517)))) (-1515 (($ $) 140 (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) 128 (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) 139 (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) 127 (|has| |#1| (-37 (-385 (-525)))))) (-2176 ((|#1| $ (-385 (-525))) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-385 (-525))))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3277 (($ $) 138 (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) 126 (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) 137 (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) 125 (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) 136 (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) 124 (|has| |#1| (-37 (-385 (-525)))))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 166 (|has| |#1| (-341)))) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) 93 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-1089) (-712)) 92 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-591 (-1089))) 91 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-1089)) 90 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (($ $ (-712)) 85 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (-4096 (((-108) $ $) 6)) (-4173 (($ $ |#1|) 58 (|has| |#1| (-341))) (($ $ $) 168 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 167 (|has| |#1| (-341))) (($ $ $) 144 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 115 (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-385 (-525)) $) 56 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 55 (|has| |#1| (-37 (-385 (-525)))))))
+(((-1154 |#1| |#2|) (-131) (-975) (-1131 |t#1|)) (T -1154))
+((-1316 (*1 *2 *1) (-12 (-4 *1 (-1154 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1131 *3)) (-5 *2 (-385 (-525))))) (-3022 (*1 *1 *2) (-12 (-4 *3 (-975)) (-4 *1 (-1154 *3 *2)) (-4 *2 (-1131 *3)))) (-1597 (*1 *1 *2 *3) (-12 (-5 *2 (-385 (-525))) (-4 *4 (-975)) (-4 *1 (-1154 *4 *3)) (-4 *3 (-1131 *4)))) (-1703 (*1 *2 *1) (-12 (-4 *1 (-1154 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1131 *3)) (-5 *2 (-385 (-525))))) (-2842 (*1 *2 *1) (-12 (-4 *1 (-1154 *3 *2)) (-4 *3 (-975)) (-4 *2 (-1131 *3)))) (-1581 (*1 *2 *1) (-12 (-4 *1 (-1154 *3 *2)) (-4 *3 (-975)) (-4 *2 (-1131 *3)))) (-1944 (*1 *2 *1) (|partial| -12 (-4 *1 (-1154 *3 *2)) (-4 *3 (-975)) (-4 *2 (-1131 *3)))))
+(-13 (-1152 |t#1|) (-966 |t#2|) (-10 -8 (-15 -1597 ($ (-385 (-525)) |t#2|)) (-15 -1703 ((-385 (-525)) $)) (-15 -2842 (|t#2| $)) (-15 -1316 ((-385 (-525)) $)) (-15 -3022 ($ |t#2|)) (-15 -1581 (|t#2| $)) (-15 -1944 ((-3 |t#2| "failed") $))))
+(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-385 (-525))) . T) ((-25) . T) ((-37 #1=(-385 (-525))) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-37 |#1|) |has| |#1| (-160)) ((-37 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-34) |has| |#1| (-37 (-385 (-525)))) ((-91) |has| |#1| (-37 (-385 (-525)))) ((-97) . T) ((-107 #1# #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341)) (|has| |#1| (-160))) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) -3321 (|has| |#1| (-517)) (|has| |#1| (-341)) (|has| |#1| (-160))) ((-213) |has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) ((-223) |has| |#1| (-341)) ((-263) |has| |#1| (-37 (-385 (-525)))) ((-265 $ $) |has| (-385 (-525)) (-1030)) ((-269) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-286) |has| |#1| (-341)) ((-341) |has| |#1| (-341)) ((-429) |has| |#1| (-341)) ((-466) |has| |#1| (-37 (-385 (-525)))) ((-517) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-593 #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-593 |#1|) . T) ((-593 $) . T) ((-659 #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-659 |#1|) |has| |#1| (-160)) ((-659 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341))) ((-668) . T) ((-833 (-1089)) -12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089)))) ((-904 |#1| #0# (-1003)) . T) ((-853) |has| |#1| (-341)) ((-932) |has| |#1| (-37 (-385 (-525)))) ((-966 |#2|) . T) ((-981 #1#) -3321 (|has| |#1| (-341)) (|has| |#1| (-37 (-385 (-525))))) ((-981 |#1|) . T) ((-981 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-341)) (|has| |#1| (-160))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1111) |has| |#1| (-37 (-385 (-525)))) ((-1114) |has| |#1| (-37 (-385 (-525)))) ((-1129) |has| |#1| (-341)) ((-1149 |#1| #0#) . T) ((-1152 |#1|) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1507 (((-591 (-1003)) $) NIL)) (-2037 (((-1089) $) 96)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-2121 (($ $ (-385 (-525))) 106) (($ $ (-385 (-525)) (-385 (-525))) 108)) (-1631 (((-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#1|))) $) 51)) (-1987 (($ $) 180 (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) 156 (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL (|has| |#1| (-341)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-341)))) (-1361 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1947 (((-108) $ $) NIL (|has| |#1| (-341)))) (-1431 (($ $) 176 (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) 152 (|has| |#1| (-37 (-385 (-525)))))) (-3682 (($ (-712) (-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#1|)))) 61)) (-1719 (($ $) 184 (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) 160 (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#2| "failed") $) NIL)) (-3528 ((|#2| $) NIL)) (-2129 (($ $ $) NIL (|has| |#1| (-341)))) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) 79)) (-1703 (((-385 (-525)) $) 13)) (-2110 (($ $ $) NIL (|has| |#1| (-341)))) (-1597 (($ (-385 (-525)) |#2|) 11)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#1| (-341)))) (-2744 (((-108) $) NIL (|has| |#1| (-341)))) (-3123 (((-108) $) 68)) (-1784 (($) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3873 (((-385 (-525)) $) 103) (((-385 (-525)) $ (-385 (-525))) 104)) (-2824 (((-108) $) NIL)) (-3956 (($ $ (-525)) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3111 (($ $ (-854)) 120) (($ $ (-385 (-525))) 118)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-385 (-525))) 31) (($ $ (-1003) (-385 (-525))) NIL) (($ $ (-591 (-1003)) (-591 (-385 (-525)))) NIL)) (-1340 (($ (-1 |#1| |#1|) $) 115)) (-1488 (($ $) 150 (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-2842 ((|#2| $) 12)) (-1944 (((-3 |#2| "failed") $) 41)) (-1581 ((|#2| $) 42)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) 93 (|has| |#1| (-341)))) (-4141 (($ $) 135 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089)) 140 (-3321 (-12 (|has| |#1| (-15 -4141 (|#1| |#1| (-1089)))) (|has| |#1| (-15 -1507 ((-591 (-1089)) |#1|))) (|has| |#1| (-37 (-385 (-525))))) (-12 (|has| |#1| (-29 (-525))) (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-891)) (|has| |#1| (-1111)))))) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-341)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-1348 (((-396 $) $) NIL (|has| |#1| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2784 (($ $ (-385 (-525))) 112)) (-2089 (((-3 $ "failed") $ $) NIL (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-1409 (($ $) 148 (|has| |#1| (-37 (-385 (-525)))))) (-4132 (((-1070 |#1|) $ |#1|) 90 (|has| |#1| (-15 ** (|#1| |#1| (-385 (-525))))))) (-1712 (((-712) $) NIL (|has| |#1| (-341)))) (-3164 ((|#1| $ (-385 (-525))) 100) (($ $ $) 86 (|has| (-385 (-525)) (-1030)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) 127 (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $) 124 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (-1316 (((-385 (-525)) $) 16)) (-1502 (($ $) 186 (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) 162 (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) 182 (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) 158 (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) 178 (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) 154 (|has| |#1| (-37 (-385 (-525)))))) (-3571 (($ $) 110)) (-3022 (((-796) $) NIL) (($ (-525)) 35) (($ |#1|) 27 (|has| |#1| (-160))) (($ |#2|) 32) (($ (-385 (-525))) 128 (|has| |#1| (-37 (-385 (-525))))) (($ $) NIL (|has| |#1| (-517)))) (-2560 ((|#1| $ (-385 (-525))) 99)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) 117)) (-1682 ((|#1| $) 98)) (-1563 (($ $) 192 (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) 168 (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1515 (($ $) 188 (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) 164 (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) 196 (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) 172 (|has| |#1| (-37 (-385 (-525)))))) (-2176 ((|#1| $ (-385 (-525))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-385 (-525))))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3277 (($ $) 198 (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) 174 (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) 194 (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) 170 (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) 190 (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) 166 (|has| |#1| (-37 (-385 (-525)))))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341)))) (-4191 (($) 21 T CONST)) (-4197 (($) 17 T CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (-4096 (((-108) $ $) 66)) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341))) (($ $ $) 92 (|has| |#1| (-341)))) (-4164 (($ $) 131) (($ $ $) 72)) (-4156 (($ $ $) 70)) (** (($ $ (-854)) NIL) (($ $ (-712)) 76) (($ $ (-525)) 145 (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 146 (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 74) (($ $ |#1|) NIL) (($ |#1| $) 126) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))))
+(((-1155 |#1| |#2|) (-1154 |#1| |#2|) (-975) (-1131 |#1|)) (T -1155))
+NIL
+(-1154 |#1| |#2|)
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1507 (((-591 (-1003)) $) NIL)) (-2037 (((-1089) $) 11)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) NIL (|has| |#1| (-517)))) (-2121 (($ $ (-385 (-525))) NIL) (($ $ (-385 (-525)) (-385 (-525))) NIL)) (-1631 (((-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#1|))) $) NIL)) (-1987 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1291 (($ $) NIL (|has| |#1| (-341)))) (-2827 (((-396 $) $) NIL (|has| |#1| (-341)))) (-1361 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1947 (((-108) $ $) NIL (|has| |#1| (-341)))) (-1431 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3682 (($ (-712) (-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#1|)))) NIL)) (-1719 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-1135 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1163 |#1| |#2| |#3|) "failed") $) 22)) (-3528 (((-1135 |#1| |#2| |#3|) $) NIL) (((-1163 |#1| |#2| |#3|) $) NIL)) (-2129 (($ $ $) NIL (|has| |#1| (-341)))) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-1703 (((-385 (-525)) $) 57)) (-2110 (($ $ $) NIL (|has| |#1| (-341)))) (-1597 (($ (-385 (-525)) (-1135 |#1| |#2| |#3|)) NIL)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) NIL (|has| |#1| (-341)))) (-2744 (((-108) $) NIL (|has| |#1| (-341)))) (-3123 (((-108) $) NIL)) (-1784 (($) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3873 (((-385 (-525)) $) NIL) (((-385 (-525)) $ (-385 (-525))) NIL)) (-2824 (((-108) $) NIL)) (-3956 (($ $ (-525)) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3111 (($ $ (-854)) NIL) (($ $ (-385 (-525))) NIL)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-385 (-525))) 30) (($ $ (-1003) (-385 (-525))) NIL) (($ $ (-591 (-1003)) (-591 (-385 (-525)))) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-1488 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-1356 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-2842 (((-1135 |#1| |#2| |#3|) $) 60)) (-1944 (((-3 (-1135 |#1| |#2| |#3|) "failed") $) NIL)) (-1581 (((-1135 |#1| |#2| |#3|) $) NIL)) (-2339 (((-1072) $) NIL)) (-1622 (($ $) NIL (|has| |#1| (-341)))) (-4141 (($ $) 39 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089)) NIL (-3321 (-12 (|has| |#1| (-15 -4141 (|#1| |#1| (-1089)))) (|has| |#1| (-15 -1507 ((-591 (-1089)) |#1|))) (|has| |#1| (-37 (-385 (-525))))) (-12 (|has| |#1| (-29 (-525))) (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-891)) (|has| |#1| (-1111))))) (($ $ (-1167 |#2|)) 40 (|has| |#1| (-37 (-385 (-525)))))) (-2047 (((-1036) $) NIL)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) NIL (|has| |#1| (-341)))) (-1399 (($ (-591 $)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-1348 (((-396 $) $) NIL (|has| |#1| (-341)))) (-3375 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-341))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) NIL (|has| |#1| (-341)))) (-2784 (($ $ (-385 (-525))) NIL)) (-2089 (((-3 $ "failed") $ $) NIL (|has| |#1| (-517)))) (-4095 (((-3 (-591 $) "failed") (-591 $) $) NIL (|has| |#1| (-341)))) (-1409 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-4132 (((-1070 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-385 (-525))))))) (-1712 (((-712) $) NIL (|has| |#1| (-341)))) (-3164 ((|#1| $ (-385 (-525))) NIL) (($ $ $) NIL (|has| (-385 (-525)) (-1030)))) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) NIL (|has| |#1| (-341)))) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $ (-1167 |#2|)) 38)) (-1316 (((-385 (-525)) $) NIL)) (-1502 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3571 (($ $) NIL)) (-3022 (((-796) $) 89) (($ (-525)) NIL) (($ |#1|) NIL (|has| |#1| (-160))) (($ (-1135 |#1| |#2| |#3|)) 16) (($ (-1163 |#1| |#2| |#3|)) 17) (($ (-1167 |#2|)) 36) (($ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $) NIL (|has| |#1| (-517)))) (-2560 ((|#1| $ (-385 (-525))) NIL)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) NIL)) (-1682 ((|#1| $) 12)) (-1563 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1515 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2176 ((|#1| $ (-385 (-525))) 62 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-385 (-525))))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3277 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341)))) (-4191 (($) 32 T CONST)) (-4197 (($) 26 T CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-385 (-525)) |#1|))))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) 34)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ (-525)) NIL (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))))
+(((-1156 |#1| |#2| |#3|) (-13 (-1154 |#1| (-1135 |#1| |#2| |#3|)) (-966 (-1163 |#1| |#2| |#3|)) (-10 -8 (-15 -3022 ($ (-1167 |#2|))) (-15 -3266 ($ $ (-1167 |#2|))) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1167 |#2|))) |%noBranch|))) (-975) (-1089) |#1|) (T -1156))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1156 *3 *4 *5)) (-4 *3 (-975)) (-14 *5 *3))) (-3266 (*1 *1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1156 *3 *4 *5)) (-4 *3 (-975)) (-14 *5 *3))) (-4141 (*1 *1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1156 *3 *4 *5)) (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-14 *5 *3))))
+(-13 (-1154 |#1| (-1135 |#1| |#2| |#3|)) (-966 (-1163 |#1| |#2| |#3|)) (-10 -8 (-15 -3022 ($ (-1167 |#2|))) (-15 -3266 ($ $ (-1167 |#2|))) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1167 |#2|))) |%noBranch|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 34)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL)) (-3706 (($ $) NIL)) (-1715 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 (-525) "failed") $) NIL (|has| (-1156 |#2| |#3| |#4|) (-966 (-525)))) (((-3 (-385 (-525)) "failed") $) NIL (|has| (-1156 |#2| |#3| |#4|) (-966 (-385 (-525))))) (((-3 (-1156 |#2| |#3| |#4|) "failed") $) 20)) (-3528 (((-525) $) NIL (|has| (-1156 |#2| |#3| |#4|) (-966 (-525)))) (((-385 (-525)) $) NIL (|has| (-1156 |#2| |#3| |#4|) (-966 (-385 (-525))))) (((-1156 |#2| |#3| |#4|) $) NIL)) (-1710 (($ $) 35)) (-4163 (((-3 $ "failed") $) 25)) (-3208 (($ $) NIL (|has| (-1156 |#2| |#3| |#4|) (-429)))) (-2056 (($ $ (-1156 |#2| |#3| |#4|) (-297 |#2| |#3| |#4|) $) NIL)) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) 11)) (-2202 (((-108) $) NIL)) (-1480 (($ (-1156 |#2| |#3| |#4|) (-297 |#2| |#3| |#4|)) 23)) (-2624 (((-297 |#2| |#3| |#4|) $) NIL)) (-4015 (($ (-1 (-297 |#2| |#3| |#4|) (-297 |#2| |#3| |#4|)) $) NIL)) (-1340 (($ (-1 (-1156 |#2| |#3| |#4|) (-1156 |#2| |#3| |#4|)) $) NIL)) (-2687 (((-3 (-781 |#2|) "failed") $) 75)) (-1661 (($ $) NIL)) (-1678 (((-1156 |#2| |#3| |#4|) $) 18)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1634 (((-108) $) NIL)) (-1646 (((-1156 |#2| |#3| |#4|) $) NIL)) (-2089 (((-3 $ "failed") $ (-1156 |#2| |#3| |#4|)) NIL (|has| (-1156 |#2| |#3| |#4|) (-517))) (((-3 $ "failed") $ $) NIL)) (-3647 (((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1156 |#2| |#3| |#4|)) (|:| |%expon| (-297 |#2| |#3| |#4|)) (|:| |%expTerms| (-591 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#2|)))))) (|:| |%type| (-1072))) "failed") $) 58)) (-1316 (((-297 |#2| |#3| |#4|) $) 14)) (-2668 (((-1156 |#2| |#3| |#4|) $) NIL (|has| (-1156 |#2| |#3| |#4|) (-429)))) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ (-1156 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-385 (-525))) NIL (-3321 (|has| (-1156 |#2| |#3| |#4|) (-37 (-385 (-525)))) (|has| (-1156 |#2| |#3| |#4|) (-966 (-385 (-525))))))) (-3654 (((-591 (-1156 |#2| |#3| |#4|)) $) NIL)) (-2560 (((-1156 |#2| |#3| |#4|) $ (-297 |#2| |#3| |#4|)) NIL)) (-1437 (((-3 $ "failed") $) NIL (|has| (-1156 |#2| |#3| |#4|) (-136)))) (-2128 (((-712)) NIL)) (-1698 (($ $ $ (-712)) NIL (|has| (-1156 |#2| |#3| |#4|) (-160)))) (-2495 (((-108) $ $) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 63 T CONST)) (-4197 (($) NIL T CONST)) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ (-1156 |#2| |#3| |#4|)) NIL (|has| (-1156 |#2| |#3| |#4|) (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ (-1156 |#2| |#3| |#4|)) NIL) (($ (-1156 |#2| |#3| |#4|) $) NIL) (($ (-385 (-525)) $) NIL (|has| (-1156 |#2| |#3| |#4|) (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| (-1156 |#2| |#3| |#4|) (-37 (-385 (-525)))))))
+(((-1157 |#1| |#2| |#3| |#4|) (-13 (-304 (-1156 |#2| |#3| |#4|) (-297 |#2| |#3| |#4|)) (-517) (-10 -8 (-15 -2687 ((-3 (-781 |#2|) "failed") $)) (-15 -3647 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1156 |#2| |#3| |#4|)) (|:| |%expon| (-297 |#2| |#3| |#4|)) (|:| |%expTerms| (-591 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#2|)))))) (|:| |%type| (-1072))) "failed") $)))) (-13 (-788) (-966 (-525)) (-587 (-525)) (-429)) (-13 (-27) (-1111) (-408 |#1|)) (-1089) |#2|) (T -1157))
+((-2687 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-788) (-966 (-525)) (-587 (-525)) (-429))) (-5 *2 (-781 *4)) (-5 *1 (-1157 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1111) (-408 *3))) (-14 *5 (-1089)) (-14 *6 *4))) (-3647 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-788) (-966 (-525)) (-587 (-525)) (-429))) (-5 *2 (-2 (|:| |%term| (-2 (|:| |%coef| (-1156 *4 *5 *6)) (|:| |%expon| (-297 *4 *5 *6)) (|:| |%expTerms| (-591 (-2 (|:| |k| (-385 (-525))) (|:| |c| *4)))))) (|:| |%type| (-1072)))) (-5 *1 (-1157 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1111) (-408 *3))) (-14 *5 (-1089)) (-14 *6 *4))))
+(-13 (-304 (-1156 |#2| |#3| |#4|) (-297 |#2| |#3| |#4|)) (-517) (-10 -8 (-15 -2687 ((-3 (-781 |#2|) "failed") $)) (-15 -3647 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1156 |#2| |#3| |#4|)) (|:| |%expon| (-297 |#2| |#3| |#4|)) (|:| |%expTerms| (-591 (-2 (|:| |k| (-385 (-525))) (|:| |c| |#2|)))))) (|:| |%type| (-1072))) "failed") $))))
+((-3024 ((|#2| $) 29)) (-3161 ((|#2| $) 18)) (-3970 (($ $) 36)) (-3463 (($ $ (-525)) 64)) (-3891 (((-108) $ (-712)) 33)) (-1780 ((|#2| $ |#2|) 61)) (-2640 ((|#2| $ |#2|) 59)) (-3186 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 52) (($ $ "rest" $) 56) ((|#2| $ "last" |#2|) 54)) (-3665 (($ $ (-591 $)) 60)) (-3149 ((|#2| $) 17)) (-3078 (($ $) NIL) (($ $ (-712)) 42)) (-4120 (((-591 $) $) 26)) (-2148 (((-108) $ $) 50)) (-2910 (((-108) $ (-712)) 32)) (-3971 (((-108) $ (-712)) 31)) (-1203 (((-108) $) 28)) (-3708 ((|#2| $) 24) (($ $ (-712)) 46)) (-3164 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-2237 (((-108) $) 22)) (-3820 (($ $) 39)) (-2609 (($ $) 65)) (-3641 (((-712) $) 41)) (-1387 (($ $) 40)) (-3690 (($ $ $) 58) (($ |#2| $) NIL)) (-3860 (((-591 $) $) 27)) (-4096 (((-108) $ $) 48)) (-4045 (((-712) $) 35)))
+(((-1158 |#1| |#2|) (-10 -8 (-15 -3463 (|#1| |#1| (-525))) (-15 -3186 (|#2| |#1| "last" |#2|)) (-15 -2640 (|#2| |#1| |#2|)) (-15 -3186 (|#1| |#1| "rest" |#1|)) (-15 -3186 (|#2| |#1| "first" |#2|)) (-15 -2609 (|#1| |#1|)) (-15 -3820 (|#1| |#1|)) (-15 -3641 ((-712) |#1|)) (-15 -1387 (|#1| |#1|)) (-15 -3161 (|#2| |#1|)) (-15 -3149 (|#2| |#1|)) (-15 -3970 (|#1| |#1|)) (-15 -3708 (|#1| |#1| (-712))) (-15 -3164 (|#2| |#1| "last")) (-15 -3708 (|#2| |#1|)) (-15 -3078 (|#1| |#1| (-712))) (-15 -3164 (|#1| |#1| "rest")) (-15 -3078 (|#1| |#1|)) (-15 -3164 (|#2| |#1| "first")) (-15 -3690 (|#1| |#2| |#1|)) (-15 -3690 (|#1| |#1| |#1|)) (-15 -1780 (|#2| |#1| |#2|)) (-15 -3186 (|#2| |#1| "value" |#2|)) (-15 -3665 (|#1| |#1| (-591 |#1|))) (-15 -2148 ((-108) |#1| |#1|)) (-15 -2237 ((-108) |#1|)) (-15 -3164 (|#2| |#1| "value")) (-15 -3024 (|#2| |#1|)) (-15 -1203 ((-108) |#1|)) (-15 -4120 ((-591 |#1|) |#1|)) (-15 -3860 ((-591 |#1|) |#1|)) (-15 -4096 ((-108) |#1| |#1|)) (-15 -4045 ((-712) |#1|)) (-15 -3891 ((-108) |#1| (-712))) (-15 -2910 ((-108) |#1| (-712))) (-15 -3971 ((-108) |#1| (-712)))) (-1159 |#2|) (-1125)) (T -1158))
+NIL
+(-10 -8 (-15 -3463 (|#1| |#1| (-525))) (-15 -3186 (|#2| |#1| "last" |#2|)) (-15 -2640 (|#2| |#1| |#2|)) (-15 -3186 (|#1| |#1| "rest" |#1|)) (-15 -3186 (|#2| |#1| "first" |#2|)) (-15 -2609 (|#1| |#1|)) (-15 -3820 (|#1| |#1|)) (-15 -3641 ((-712) |#1|)) (-15 -1387 (|#1| |#1|)) (-15 -3161 (|#2| |#1|)) (-15 -3149 (|#2| |#1|)) (-15 -3970 (|#1| |#1|)) (-15 -3708 (|#1| |#1| (-712))) (-15 -3164 (|#2| |#1| "last")) (-15 -3708 (|#2| |#1|)) (-15 -3078 (|#1| |#1| (-712))) (-15 -3164 (|#1| |#1| "rest")) (-15 -3078 (|#1| |#1|)) (-15 -3164 (|#2| |#1| "first")) (-15 -3690 (|#1| |#2| |#1|)) (-15 -3690 (|#1| |#1| |#1|)) (-15 -1780 (|#2| |#1| |#2|)) (-15 -3186 (|#2| |#1| "value" |#2|)) (-15 -3665 (|#1| |#1| (-591 |#1|))) (-15 -2148 ((-108) |#1| |#1|)) (-15 -2237 ((-108) |#1|)) (-15 -3164 (|#2| |#1| "value")) (-15 -3024 (|#2| |#1|)) (-15 -1203 ((-108) |#1|)) (-15 -4120 ((-591 |#1|) |#1|)) (-15 -3860 ((-591 |#1|) |#1|)) (-15 -4096 ((-108) |#1| |#1|)) (-15 -4045 ((-712) |#1|)) (-15 -3891 ((-108) |#1| (-712))) (-15 -2910 ((-108) |#1| (-712))) (-15 -3971 ((-108) |#1| (-712))))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-3024 ((|#1| $) 48)) (-3161 ((|#1| $) 65)) (-3970 (($ $) 67)) (-3463 (($ $ (-525)) 52 (|has| $ (-6 -4251)))) (-3891 (((-108) $ (-712)) 8)) (-1780 ((|#1| $ |#1|) 39 (|has| $ (-6 -4251)))) (-2146 (($ $ $) 56 (|has| $ (-6 -4251)))) (-2640 ((|#1| $ |#1|) 54 (|has| $ (-6 -4251)))) (-1901 ((|#1| $ |#1|) 58 (|has| $ (-6 -4251)))) (-3186 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4251))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4251))) (($ $ "rest" $) 55 (|has| $ (-6 -4251))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4251)))) (-3665 (($ $ (-591 $)) 41 (|has| $ (-6 -4251)))) (-3149 ((|#1| $) 66)) (-3798 (($) 7 T CONST)) (-3078 (($ $) 73) (($ $ (-712)) 71)) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-4120 (((-591 $) $) 50)) (-2148 (((-108) $ $) 42 (|has| |#1| (-1018)))) (-2910 (((-108) $ (-712)) 9)) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35)) (-3971 (((-108) $ (-712)) 10)) (-2599 (((-591 |#1|) $) 45)) (-1203 (((-108) $) 49)) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-3708 ((|#1| $) 70) (($ $ (-712)) 68)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-3066 ((|#1| $) 76) (($ $ (-712)) 74)) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69)) (-3505 (((-525) $ $) 44)) (-2237 (((-108) $) 46)) (-3820 (($ $) 62)) (-2609 (($ $) 59 (|has| $ (-6 -4251)))) (-3641 (((-712) $) 63)) (-1387 (($ $) 64)) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3199 (($ $) 13)) (-1679 (($ $ $) 61 (|has| $ (-6 -4251))) (($ $ |#1|) 60 (|has| $ (-6 -4251)))) (-3690 (($ $ $) 78) (($ |#1| $) 77)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-3860 (((-591 $) $) 51)) (-1632 (((-108) $ $) 43 (|has| |#1| (-1018)))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-1159 |#1|) (-131) (-1125)) (T -1159))
+((-3690 (*1 *1 *1 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-3690 (*1 *1 *2 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-3066 (*1 *2 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-3164 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-3066 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-1159 *3)) (-4 *3 (-1125)))) (-3078 (*1 *1 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-3164 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1159 *3)) (-4 *3 (-1125)))) (-3078 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-1159 *3)) (-4 *3 (-1125)))) (-3708 (*1 *2 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-3164 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-3708 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-1159 *3)) (-4 *3 (-1125)))) (-3970 (*1 *1 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-3149 (*1 *2 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-3161 (*1 *2 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-1387 (*1 *1 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-3641 (*1 *2 *1) (-12 (-4 *1 (-1159 *3)) (-4 *3 (-1125)) (-5 *2 (-712)))) (-3820 (*1 *1 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-1679 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-1679 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-2609 (*1 *1 *1) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-1901 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-3186 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-2146 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-3186 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4251)) (-4 *1 (-1159 *3)) (-4 *3 (-1125)))) (-2640 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-3186 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2)) (-4 *2 (-1125)))) (-3463 (*1 *1 *1 *2) (-12 (-5 *2 (-525)) (|has| *1 (-6 -4251)) (-4 *1 (-1159 *3)) (-4 *3 (-1125)))))
+(-13 (-940 |t#1|) (-10 -8 (-15 -3690 ($ $ $)) (-15 -3690 ($ |t#1| $)) (-15 -3066 (|t#1| $)) (-15 -3164 (|t#1| $ "first")) (-15 -3066 ($ $ (-712))) (-15 -3078 ($ $)) (-15 -3164 ($ $ "rest")) (-15 -3078 ($ $ (-712))) (-15 -3708 (|t#1| $)) (-15 -3164 (|t#1| $ "last")) (-15 -3708 ($ $ (-712))) (-15 -3970 ($ $)) (-15 -3149 (|t#1| $)) (-15 -3161 (|t#1| $)) (-15 -1387 ($ $)) (-15 -3641 ((-712) $)) (-15 -3820 ($ $)) (IF (|has| $ (-6 -4251)) (PROGN (-15 -1679 ($ $ $)) (-15 -1679 ($ $ |t#1|)) (-15 -2609 ($ $)) (-15 -1901 (|t#1| $ |t#1|)) (-15 -3186 (|t#1| $ "first" |t#1|)) (-15 -2146 ($ $ $)) (-15 -3186 ($ $ "rest" $)) (-15 -2640 (|t#1| $ |t#1|)) (-15 -3186 (|t#1| $ "last" |t#1|)) (-15 -3463 ($ $ (-525)))) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1018)) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-565 (-796)))) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-464 |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-940 |#1|) . T) ((-1018) |has| |#1| (-1018)) ((-1125) . T))
+((-1340 ((|#4| (-1 |#2| |#1|) |#3|) 17)))
+(((-1160 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1340 (|#4| (-1 |#2| |#1|) |#3|))) (-975) (-975) (-1162 |#1|) (-1162 |#2|)) (T -1160))
+((-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-975)) (-4 *6 (-975)) (-4 *2 (-1162 *6)) (-5 *1 (-1160 *5 *6 *4 *2)) (-4 *4 (-1162 *5)))))
+(-10 -7 (-15 -1340 (|#4| (-1 |#2| |#1|) |#3|)))
+((-1800 (((-108) $) 15)) (-1987 (($ $) 92)) (-3169 (($ $) 68)) (-1431 (($ $) 88)) (-3144 (($ $) 64)) (-1719 (($ $) 96)) (-1321 (($ $) 72)) (-1488 (($ $) 62)) (-1409 (($ $) 60)) (-1502 (($ $) 98)) (-1333 (($ $) 74)) (-1996 (($ $) 94)) (-1309 (($ $) 70)) (-1973 (($ $) 90)) (-3156 (($ $) 66)) (-3022 (((-796) $) 48) (($ (-525)) NIL) (($ (-385 (-525))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-1563 (($ $) 104)) (-1371 (($ $) 80)) (-1515 (($ $) 100)) (-1346 (($ $) 76)) (-1591 (($ $) 108)) (-1400 (($ $) 84)) (-3277 (($ $) 110)) (-1415 (($ $) 86)) (-1578 (($ $) 106)) (-1385 (($ $) 82)) (-1527 (($ $) 102)) (-1358 (($ $) 78)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ |#2|) 52) (($ $ $) 55) (($ $ (-385 (-525))) 58)))
+(((-1161 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-385 (-525)))) (-15 -3169 (|#1| |#1|)) (-15 -3144 (|#1| |#1|)) (-15 -1321 (|#1| |#1|)) (-15 -1333 (|#1| |#1|)) (-15 -1309 (|#1| |#1|)) (-15 -3156 (|#1| |#1|)) (-15 -1358 (|#1| |#1|)) (-15 -1385 (|#1| |#1|)) (-15 -1415 (|#1| |#1|)) (-15 -1400 (|#1| |#1|)) (-15 -1346 (|#1| |#1|)) (-15 -1371 (|#1| |#1|)) (-15 -1973 (|#1| |#1|)) (-15 -1996 (|#1| |#1|)) (-15 -1502 (|#1| |#1|)) (-15 -1719 (|#1| |#1|)) (-15 -1431 (|#1| |#1|)) (-15 -1987 (|#1| |#1|)) (-15 -1527 (|#1| |#1|)) (-15 -1578 (|#1| |#1|)) (-15 -3277 (|#1| |#1|)) (-15 -1591 (|#1| |#1|)) (-15 -1515 (|#1| |#1|)) (-15 -1563 (|#1| |#1|)) (-15 -1488 (|#1| |#1|)) (-15 -1409 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3022 (|#1| |#2|)) (-15 -3022 (|#1| |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -3022 (|#1| (-525))) (-15 ** (|#1| |#1| (-712))) (-15 ** (|#1| |#1| (-854))) (-15 -1800 ((-108) |#1|)) (-15 -3022 ((-796) |#1|))) (-1162 |#2|) (-975)) (T -1161))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-385 (-525)))) (-15 -3169 (|#1| |#1|)) (-15 -3144 (|#1| |#1|)) (-15 -1321 (|#1| |#1|)) (-15 -1333 (|#1| |#1|)) (-15 -1309 (|#1| |#1|)) (-15 -3156 (|#1| |#1|)) (-15 -1358 (|#1| |#1|)) (-15 -1385 (|#1| |#1|)) (-15 -1415 (|#1| |#1|)) (-15 -1400 (|#1| |#1|)) (-15 -1346 (|#1| |#1|)) (-15 -1371 (|#1| |#1|)) (-15 -1973 (|#1| |#1|)) (-15 -1996 (|#1| |#1|)) (-15 -1502 (|#1| |#1|)) (-15 -1719 (|#1| |#1|)) (-15 -1431 (|#1| |#1|)) (-15 -1987 (|#1| |#1|)) (-15 -1527 (|#1| |#1|)) (-15 -1578 (|#1| |#1|)) (-15 -3277 (|#1| |#1|)) (-15 -1591 (|#1| |#1|)) (-15 -1515 (|#1| |#1|)) (-15 -1563 (|#1| |#1|)) (-15 -1488 (|#1| |#1|)) (-15 -1409 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3022 (|#1| |#2|)) (-15 -3022 (|#1| |#1|)) (-15 -3022 (|#1| (-385 (-525)))) (-15 -3022 (|#1| (-525))) (-15 ** (|#1| |#1| (-712))) (-15 ** (|#1| |#1| (-854))) (-15 -1800 ((-108) |#1|)) (-15 -3022 ((-796) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-1507 (((-591 (-1003)) $) 74)) (-2037 (((-1089) $) 103)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 51 (|has| |#1| (-517)))) (-3706 (($ $) 52 (|has| |#1| (-517)))) (-1715 (((-108) $) 54 (|has| |#1| (-517)))) (-2121 (($ $ (-712)) 98) (($ $ (-712) (-712)) 97)) (-1631 (((-1070 (-2 (|:| |k| (-712)) (|:| |c| |#1|))) $) 105)) (-1987 (($ $) 135 (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) 118 (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) 19)) (-1361 (($ $) 117 (|has| |#1| (-37 (-385 (-525)))))) (-1431 (($ $) 134 (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) 119 (|has| |#1| (-37 (-385 (-525)))))) (-3682 (($ (-1070 (-2 (|:| |k| (-712)) (|:| |c| |#1|)))) 155) (($ (-1070 |#1|)) 153)) (-1719 (($ $) 133 (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) 120 (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) 17 T CONST)) (-1710 (($ $) 60)) (-4163 (((-3 $ "failed") $) 34)) (-2475 (($ $) 152)) (-4215 (((-885 |#1|) $ (-712)) 150) (((-885 |#1|) $ (-712) (-712)) 149)) (-3123 (((-108) $) 73)) (-1784 (($) 145 (|has| |#1| (-37 (-385 (-525)))))) (-3873 (((-712) $) 100) (((-712) $ (-712)) 99)) (-2824 (((-108) $) 31)) (-3956 (($ $ (-525)) 116 (|has| |#1| (-37 (-385 (-525)))))) (-3111 (($ $ (-854)) 101)) (-3264 (($ (-1 |#1| (-525)) $) 151)) (-2202 (((-108) $) 62)) (-1480 (($ |#1| (-712)) 61) (($ $ (-1003) (-712)) 76) (($ $ (-591 (-1003)) (-591 (-712))) 75)) (-1340 (($ (-1 |#1| |#1|) $) 63)) (-1488 (($ $) 142 (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) 65)) (-1678 ((|#1| $) 66)) (-2339 (((-1072) $) 9)) (-4141 (($ $) 147 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089)) 146 (-3321 (-12 (|has| |#1| (-29 (-525))) (|has| |#1| (-891)) (|has| |#1| (-1111)) (|has| |#1| (-37 (-385 (-525))))) (-12 (|has| |#1| (-15 -1507 ((-591 (-1089)) |#1|))) (|has| |#1| (-15 -4141 (|#1| |#1| (-1089)))) (|has| |#1| (-37 (-385 (-525)))))))) (-2047 (((-1036) $) 10)) (-2784 (($ $ (-712)) 95)) (-2089 (((-3 $ "failed") $ $) 50 (|has| |#1| (-517)))) (-1409 (($ $) 143 (|has| |#1| (-37 (-385 (-525)))))) (-4132 (((-1070 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-712)))))) (-3164 ((|#1| $ (-712)) 104) (($ $ $) 81 (|has| (-712) (-1030)))) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) 89 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-712) |#1|))))) (($ $ (-1089) (-712)) 88 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-712) |#1|))))) (($ $ (-591 (-1089))) 87 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-712) |#1|))))) (($ $ (-1089)) 86 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-712) |#1|))))) (($ $ (-712)) 84 (|has| |#1| (-15 * (|#1| (-712) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-712) |#1|))))) (-1316 (((-712) $) 64)) (-1502 (($ $) 132 (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) 121 (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) 131 (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) 122 (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) 130 (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) 123 (|has| |#1| (-37 (-385 (-525)))))) (-3571 (($ $) 72)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ (-385 (-525))) 57 (|has| |#1| (-37 (-385 (-525))))) (($ $) 49 (|has| |#1| (-517))) (($ |#1|) 47 (|has| |#1| (-160)))) (-3654 (((-1070 |#1|) $) 154)) (-2560 ((|#1| $ (-712)) 59)) (-1437 (((-3 $ "failed") $) 48 (|has| |#1| (-136)))) (-2128 (((-712)) 29)) (-1682 ((|#1| $) 102)) (-1563 (($ $) 141 (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) 129 (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) 53 (|has| |#1| (-517)))) (-1515 (($ $) 140 (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) 128 (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) 139 (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) 127 (|has| |#1| (-37 (-385 (-525)))))) (-2176 ((|#1| $ (-712)) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-712)))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3277 (($ $) 138 (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) 126 (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) 137 (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) 125 (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) 136 (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) 124 (|has| |#1| (-37 (-385 (-525)))))) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) 93 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-712) |#1|))))) (($ $ (-1089) (-712)) 92 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-712) |#1|))))) (($ $ (-591 (-1089))) 91 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-712) |#1|))))) (($ $ (-1089)) 90 (-12 (|has| |#1| (-833 (-1089))) (|has| |#1| (-15 * (|#1| (-712) |#1|))))) (($ $ (-712)) 85 (|has| |#1| (-15 * (|#1| (-712) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-712) |#1|))))) (-4096 (((-108) $ $) 6)) (-4173 (($ $ |#1|) 58 (|has| |#1| (-341)))) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ |#1|) 148 (|has| |#1| (-341))) (($ $ $) 144 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 115 (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-385 (-525)) $) 56 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) 55 (|has| |#1| (-37 (-385 (-525)))))))
+(((-1162 |#1|) (-131) (-975)) (T -1162))
+((-3682 (*1 *1 *2) (-12 (-5 *2 (-1070 (-2 (|:| |k| (-712)) (|:| |c| *3)))) (-4 *3 (-975)) (-4 *1 (-1162 *3)))) (-3654 (*1 *2 *1) (-12 (-4 *1 (-1162 *3)) (-4 *3 (-975)) (-5 *2 (-1070 *3)))) (-3682 (*1 *1 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-4 *1 (-1162 *3)))) (-2475 (*1 *1 *1) (-12 (-4 *1 (-1162 *2)) (-4 *2 (-975)))) (-3264 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-525))) (-4 *1 (-1162 *3)) (-4 *3 (-975)))) (-4215 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-4 *1 (-1162 *4)) (-4 *4 (-975)) (-5 *2 (-885 *4)))) (-4215 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-712)) (-4 *1 (-1162 *4)) (-4 *4 (-975)) (-5 *2 (-885 *4)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1162 *2)) (-4 *2 (-975)) (-4 *2 (-341)))) (-4141 (*1 *1 *1) (-12 (-4 *1 (-1162 *2)) (-4 *2 (-975)) (-4 *2 (-37 (-385 (-525)))))) (-4141 (*1 *1 *1 *2) (-3321 (-12 (-5 *2 (-1089)) (-4 *1 (-1162 *3)) (-4 *3 (-975)) (-12 (-4 *3 (-29 (-525))) (-4 *3 (-891)) (-4 *3 (-1111)) (-4 *3 (-37 (-385 (-525)))))) (-12 (-5 *2 (-1089)) (-4 *1 (-1162 *3)) (-4 *3 (-975)) (-12 (|has| *3 (-15 -1507 ((-591 *2) *3))) (|has| *3 (-15 -4141 (*3 *3 *2))) (-4 *3 (-37 (-385 (-525)))))))))
+(-13 (-1149 |t#1| (-712)) (-10 -8 (-15 -3682 ($ (-1070 (-2 (|:| |k| (-712)) (|:| |c| |t#1|))))) (-15 -3654 ((-1070 |t#1|) $)) (-15 -3682 ($ (-1070 |t#1|))) (-15 -2475 ($ $)) (-15 -3264 ($ (-1 |t#1| (-525)) $)) (-15 -4215 ((-885 |t#1|) $ (-712))) (-15 -4215 ((-885 |t#1|) $ (-712) (-712))) (IF (|has| |t#1| (-341)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-37 (-385 (-525)))) (PROGN (-15 -4141 ($ $)) (IF (|has| |t#1| (-15 -4141 (|t#1| |t#1| (-1089)))) (IF (|has| |t#1| (-15 -1507 ((-591 (-1089)) |t#1|))) (-15 -4141 ($ $ (-1089))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1111)) (IF (|has| |t#1| (-891)) (IF (|has| |t#1| (-29 (-525))) (-15 -4141 ($ $ (-1089))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-932)) (-6 (-1111))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-712)) . T) ((-25) . T) ((-37 #1=(-385 (-525))) |has| |#1| (-37 (-385 (-525)))) ((-37 |#1|) |has| |#1| (-160)) ((-37 $) |has| |#1| (-517)) ((-34) |has| |#1| (-37 (-385 (-525)))) ((-91) |has| |#1| (-37 (-385 (-525)))) ((-97) . T) ((-107 #1# #1#) |has| |#1| (-37 (-385 (-525)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-126) . T) ((-136) |has| |#1| (-136)) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-213) |has| |#1| (-15 * (|#1| (-712) |#1|))) ((-263) |has| |#1| (-37 (-385 (-525)))) ((-265 $ $) |has| (-712) (-1030)) ((-269) |has| |#1| (-517)) ((-466) |has| |#1| (-37 (-385 (-525)))) ((-517) |has| |#1| (-517)) ((-593 #1#) |has| |#1| (-37 (-385 (-525)))) ((-593 |#1|) . T) ((-593 $) . T) ((-659 #1#) |has| |#1| (-37 (-385 (-525)))) ((-659 |#1|) |has| |#1| (-160)) ((-659 $) |has| |#1| (-517)) ((-668) . T) ((-833 (-1089)) -12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089)))) ((-904 |#1| #0# (-1003)) . T) ((-932) |has| |#1| (-37 (-385 (-525)))) ((-981 #1#) |has| |#1| (-37 (-385 (-525)))) ((-981 |#1|) . T) ((-981 $) -3321 (|has| |#1| (-517)) (|has| |#1| (-160))) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1111) |has| |#1| (-37 (-385 (-525)))) ((-1114) |has| |#1| (-37 (-385 (-525)))) ((-1149 |#1| #0#) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-1507 (((-591 (-1003)) $) NIL)) (-2037 (((-1089) $) 87)) (-3449 (((-1144 |#2| |#1|) $ (-712)) 73)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) NIL (|has| |#1| (-517)))) (-3706 (($ $) NIL (|has| |#1| (-517)))) (-1715 (((-108) $) 137 (|has| |#1| (-517)))) (-2121 (($ $ (-712)) 122) (($ $ (-712) (-712)) 124)) (-1631 (((-1070 (-2 (|:| |k| (-712)) (|:| |c| |#1|))) $) 42)) (-1987 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3169 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2157 (((-3 $ "failed") $ $) NIL)) (-1361 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1431 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3144 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3682 (($ (-1070 (-2 (|:| |k| (-712)) (|:| |c| |#1|)))) 53) (($ (-1070 |#1|)) NIL)) (-1719 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1321 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3798 (($) NIL T CONST)) (-2218 (($ $) 128)) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-2475 (($ $) 135)) (-4215 (((-885 |#1|) $ (-712)) 63) (((-885 |#1|) $ (-712) (-712)) 65)) (-3123 (((-108) $) NIL)) (-1784 (($) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3873 (((-712) $) NIL) (((-712) $ (-712)) NIL)) (-2824 (((-108) $) NIL)) (-3176 (($ $) 112)) (-3956 (($ $ (-525)) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3666 (($ (-525) (-525) $) 130)) (-3111 (($ $ (-854)) 134)) (-3264 (($ (-1 |#1| (-525)) $) 106)) (-2202 (((-108) $) NIL)) (-1480 (($ |#1| (-712)) 15) (($ $ (-1003) (-712)) NIL) (($ $ (-591 (-1003)) (-591 (-712))) NIL)) (-1340 (($ (-1 |#1| |#1|) $) 94)) (-1488 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1661 (($ $) NIL)) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-3652 (($ $) 110)) (-1919 (($ $) 108)) (-3691 (($ (-525) (-525) $) 132)) (-4141 (($ $) 145 (|has| |#1| (-37 (-385 (-525))))) (($ $ (-1089)) 151 (-3321 (-12 (|has| |#1| (-15 -4141 (|#1| |#1| (-1089)))) (|has| |#1| (-15 -1507 ((-591 (-1089)) |#1|))) (|has| |#1| (-37 (-385 (-525))))) (-12 (|has| |#1| (-29 (-525))) (|has| |#1| (-37 (-385 (-525)))) (|has| |#1| (-891)) (|has| |#1| (-1111))))) (($ $ (-1167 |#2|)) 146 (|has| |#1| (-37 (-385 (-525)))))) (-2047 (((-1036) $) NIL)) (-2538 (($ $ (-525) (-525)) 116)) (-2784 (($ $ (-712)) 118)) (-2089 (((-3 $ "failed") $ $) NIL (|has| |#1| (-517)))) (-1409 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1302 (($ $) 114)) (-4132 (((-1070 |#1|) $ |#1|) 96 (|has| |#1| (-15 ** (|#1| |#1| (-712)))))) (-3164 ((|#1| $ (-712)) 91) (($ $ $) 126 (|has| (-712) (-1030)))) (-3266 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) 103 (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-712) |#1|)))) (($ $) 98 (|has| |#1| (-15 * (|#1| (-712) |#1|)))) (($ $ (-1167 |#2|)) 99)) (-1316 (((-712) $) NIL)) (-1502 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1333 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1996 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1309 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1973 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3156 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3571 (($ $) 120)) (-3022 (((-796) $) NIL) (($ (-525)) 24) (($ (-385 (-525))) 143 (|has| |#1| (-37 (-385 (-525))))) (($ $) NIL (|has| |#1| (-517))) (($ |#1|) 23 (|has| |#1| (-160))) (($ (-1144 |#2| |#1|)) 80) (($ (-1167 |#2|)) 20)) (-3654 (((-1070 |#1|) $) NIL)) (-2560 ((|#1| $ (-712)) 90)) (-1437 (((-3 $ "failed") $) NIL (|has| |#1| (-136)))) (-2128 (((-712)) NIL)) (-1682 ((|#1| $) 88)) (-1563 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1371 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2495 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1515 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1346 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1591 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1400 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-2176 ((|#1| $ (-712)) 86 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-712)))) (|has| |#1| (-15 -3022 (|#1| (-1089))))))) (-3277 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1415 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1578 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1385 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1527 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-1358 (($ $) NIL (|has| |#1| (-37 (-385 (-525)))))) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 17 T CONST)) (-4197 (($) 13 T CONST)) (-4196 (($ $ (-591 (-1089)) (-591 (-712))) NIL (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089) (-712)) NIL (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-591 (-1089))) NIL (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-1089)) NIL (-12 (|has| |#1| (-15 * (|#1| (-712) |#1|))) (|has| |#1| (-833 (-1089))))) (($ $ (-712)) NIL (|has| |#1| (-15 * (|#1| (-712) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-712) |#1|))))) (-4096 (((-108) $ $) NIL)) (-4173 (($ $ |#1|) NIL (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) 102)) (-4156 (($ $ $) 18)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL) (($ $ |#1|) 140 (|has| |#1| (-341))) (($ $ $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 101) (($ (-385 (-525)) $) NIL (|has| |#1| (-37 (-385 (-525))))) (($ $ (-385 (-525))) NIL (|has| |#1| (-37 (-385 (-525)))))))
+(((-1163 |#1| |#2| |#3|) (-13 (-1162 |#1|) (-10 -8 (-15 -3022 ($ (-1144 |#2| |#1|))) (-15 -3449 ((-1144 |#2| |#1|) $ (-712))) (-15 -3022 ($ (-1167 |#2|))) (-15 -3266 ($ $ (-1167 |#2|))) (-15 -1919 ($ $)) (-15 -3652 ($ $)) (-15 -3176 ($ $)) (-15 -1302 ($ $)) (-15 -2538 ($ $ (-525) (-525))) (-15 -2218 ($ $)) (-15 -3666 ($ (-525) (-525) $)) (-15 -3691 ($ (-525) (-525) $)) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1167 |#2|))) |%noBranch|))) (-975) (-1089) |#1|) (T -1163))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-1144 *4 *3)) (-4 *3 (-975)) (-14 *4 (-1089)) (-14 *5 *3) (-5 *1 (-1163 *3 *4 *5)))) (-3449 (*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1144 *5 *4)) (-5 *1 (-1163 *4 *5 *6)) (-4 *4 (-975)) (-14 *5 (-1089)) (-14 *6 *4))) (-3022 (*1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1163 *3 *4 *5)) (-4 *3 (-975)) (-14 *5 *3))) (-3266 (*1 *1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1163 *3 *4 *5)) (-4 *3 (-975)) (-14 *5 *3))) (-1919 (*1 *1 *1) (-12 (-5 *1 (-1163 *2 *3 *4)) (-4 *2 (-975)) (-14 *3 (-1089)) (-14 *4 *2))) (-3652 (*1 *1 *1) (-12 (-5 *1 (-1163 *2 *3 *4)) (-4 *2 (-975)) (-14 *3 (-1089)) (-14 *4 *2))) (-3176 (*1 *1 *1) (-12 (-5 *1 (-1163 *2 *3 *4)) (-4 *2 (-975)) (-14 *3 (-1089)) (-14 *4 *2))) (-1302 (*1 *1 *1) (-12 (-5 *1 (-1163 *2 *3 *4)) (-4 *2 (-975)) (-14 *3 (-1089)) (-14 *4 *2))) (-2538 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-1163 *3 *4 *5)) (-4 *3 (-975)) (-14 *4 (-1089)) (-14 *5 *3))) (-2218 (*1 *1 *1) (-12 (-5 *1 (-1163 *2 *3 *4)) (-4 *2 (-975)) (-14 *3 (-1089)) (-14 *4 *2))) (-3666 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-1163 *3 *4 *5)) (-4 *3 (-975)) (-14 *4 (-1089)) (-14 *5 *3))) (-3691 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-1163 *3 *4 *5)) (-4 *3 (-975)) (-14 *4 (-1089)) (-14 *5 *3))) (-4141 (*1 *1 *1 *2) (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1163 *3 *4 *5)) (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-14 *5 *3))))
+(-13 (-1162 |#1|) (-10 -8 (-15 -3022 ($ (-1144 |#2| |#1|))) (-15 -3449 ((-1144 |#2| |#1|) $ (-712))) (-15 -3022 ($ (-1167 |#2|))) (-15 -3266 ($ $ (-1167 |#2|))) (-15 -1919 ($ $)) (-15 -3652 ($ $)) (-15 -3176 ($ $)) (-15 -1302 ($ $)) (-15 -2538 ($ $ (-525) (-525))) (-15 -2218 ($ $)) (-15 -3666 ($ (-525) (-525) $)) (-15 -3691 ($ (-525) (-525) $)) (IF (|has| |#1| (-37 (-385 (-525)))) (-15 -4141 ($ $ (-1167 |#2|))) |%noBranch|)))
+((-1927 (((-1 (-1070 |#1|) (-591 (-1070 |#1|))) (-1 |#2| (-591 |#2|))) 24)) (-2676 (((-1 (-1070 |#1|) (-1070 |#1|) (-1070 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-1367 (((-1 (-1070 |#1|) (-1070 |#1|)) (-1 |#2| |#2|)) 13)) (-3251 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-2431 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-2087 ((|#2| (-1 |#2| (-591 |#2|)) (-591 |#1|)) 54)) (-2648 (((-591 |#2|) (-591 |#1|) (-591 (-1 |#2| (-591 |#2|)))) 61)) (-1785 ((|#2| |#2| |#2|) 43)))
+(((-1164 |#1| |#2|) (-10 -7 (-15 -1367 ((-1 (-1070 |#1|) (-1070 |#1|)) (-1 |#2| |#2|))) (-15 -2676 ((-1 (-1070 |#1|) (-1070 |#1|) (-1070 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -1927 ((-1 (-1070 |#1|) (-591 (-1070 |#1|))) (-1 |#2| (-591 |#2|)))) (-15 -1785 (|#2| |#2| |#2|)) (-15 -2431 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -3251 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2087 (|#2| (-1 |#2| (-591 |#2|)) (-591 |#1|))) (-15 -2648 ((-591 |#2|) (-591 |#1|) (-591 (-1 |#2| (-591 |#2|)))))) (-37 (-385 (-525))) (-1162 |#1|)) (T -1164))
+((-2648 (*1 *2 *3 *4) (-12 (-5 *3 (-591 *5)) (-5 *4 (-591 (-1 *6 (-591 *6)))) (-4 *5 (-37 (-385 (-525)))) (-4 *6 (-1162 *5)) (-5 *2 (-591 *6)) (-5 *1 (-1164 *5 *6)))) (-2087 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-591 *2))) (-5 *4 (-591 *5)) (-4 *5 (-37 (-385 (-525)))) (-4 *2 (-1162 *5)) (-5 *1 (-1164 *5 *2)))) (-3251 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1162 *4)) (-5 *1 (-1164 *4 *2)) (-4 *4 (-37 (-385 (-525)))))) (-2431 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1162 *4)) (-5 *1 (-1164 *4 *2)) (-4 *4 (-37 (-385 (-525)))))) (-1785 (*1 *2 *2 *2) (-12 (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1164 *3 *2)) (-4 *2 (-1162 *3)))) (-1927 (*1 *2 *3) (-12 (-5 *3 (-1 *5 (-591 *5))) (-4 *5 (-1162 *4)) (-4 *4 (-37 (-385 (-525)))) (-5 *2 (-1 (-1070 *4) (-591 (-1070 *4)))) (-5 *1 (-1164 *4 *5)))) (-2676 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1162 *4)) (-4 *4 (-37 (-385 (-525)))) (-5 *2 (-1 (-1070 *4) (-1070 *4) (-1070 *4))) (-5 *1 (-1164 *4 *5)))) (-1367 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1162 *4)) (-4 *4 (-37 (-385 (-525)))) (-5 *2 (-1 (-1070 *4) (-1070 *4))) (-5 *1 (-1164 *4 *5)))))
+(-10 -7 (-15 -1367 ((-1 (-1070 |#1|) (-1070 |#1|)) (-1 |#2| |#2|))) (-15 -2676 ((-1 (-1070 |#1|) (-1070 |#1|) (-1070 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -1927 ((-1 (-1070 |#1|) (-591 (-1070 |#1|))) (-1 |#2| (-591 |#2|)))) (-15 -1785 (|#2| |#2| |#2|)) (-15 -2431 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -3251 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2087 (|#2| (-1 |#2| (-591 |#2|)) (-591 |#1|))) (-15 -2648 ((-591 |#2|) (-591 |#1|) (-591 (-1 |#2| (-591 |#2|))))))
+((-2468 ((|#2| |#4| (-712)) 30)) (-4194 ((|#4| |#2|) 25)) (-2489 ((|#4| (-385 |#2|)) 52 (|has| |#1| (-517)))) (-2067 (((-1 |#4| (-591 |#4|)) |#3|) 46)))
+(((-1165 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4194 (|#4| |#2|)) (-15 -2468 (|#2| |#4| (-712))) (-15 -2067 ((-1 |#4| (-591 |#4|)) |#3|)) (IF (|has| |#1| (-517)) (-15 -2489 (|#4| (-385 |#2|))) |%noBranch|)) (-975) (-1147 |#1|) (-601 |#2|) (-1162 |#1|)) (T -1165))
+((-2489 (*1 *2 *3) (-12 (-5 *3 (-385 *5)) (-4 *5 (-1147 *4)) (-4 *4 (-517)) (-4 *4 (-975)) (-4 *2 (-1162 *4)) (-5 *1 (-1165 *4 *5 *6 *2)) (-4 *6 (-601 *5)))) (-2067 (*1 *2 *3) (-12 (-4 *4 (-975)) (-4 *5 (-1147 *4)) (-5 *2 (-1 *6 (-591 *6))) (-5 *1 (-1165 *4 *5 *3 *6)) (-4 *3 (-601 *5)) (-4 *6 (-1162 *4)))) (-2468 (*1 *2 *3 *4) (-12 (-5 *4 (-712)) (-4 *5 (-975)) (-4 *2 (-1147 *5)) (-5 *1 (-1165 *5 *2 *6 *3)) (-4 *6 (-601 *2)) (-4 *3 (-1162 *5)))) (-4194 (*1 *2 *3) (-12 (-4 *4 (-975)) (-4 *3 (-1147 *4)) (-4 *2 (-1162 *4)) (-5 *1 (-1165 *4 *3 *5 *2)) (-4 *5 (-601 *3)))))
+(-10 -7 (-15 -4194 (|#4| |#2|)) (-15 -2468 (|#2| |#4| (-712))) (-15 -2067 ((-1 |#4| (-591 |#4|)) |#3|)) (IF (|has| |#1| (-517)) (-15 -2489 (|#4| (-385 |#2|))) |%noBranch|))
+NIL
+(((-1166) (-131)) (T -1166))
+NIL
+(-13 (-10 -7 (-6 -2137)))
+((-3008 (((-108) $ $) NIL)) (-2037 (((-1089)) 12)) (-2339 (((-1072) $) 17)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 11) (((-1089) $) 8)) (-4096 (((-108) $ $) 14)))
+(((-1167 |#1|) (-13 (-1018) (-565 (-1089)) (-10 -8 (-15 -3022 ((-1089) $)) (-15 -2037 ((-1089))))) (-1089)) (T -1167))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-1167 *3)) (-14 *3 *2))) (-2037 (*1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-1167 *3)) (-14 *3 *2))))
+(-13 (-1018) (-565 (-1089)) (-10 -8 (-15 -3022 ((-1089) $)) (-15 -2037 ((-1089)))))
+((-2168 (($ (-712)) 18)) (-2166 (((-631 |#2|) $ $) 40)) (-4131 ((|#2| $) 48)) (-1657 ((|#2| $) 47)) (-2109 ((|#2| $ $) 35)) (-4210 (($ $ $) 44)) (-4164 (($ $) 22) (($ $ $) 28)) (-4156 (($ $ $) 15)) (* (($ (-525) $) 25) (($ |#2| $) 31) (($ $ |#2|) 30)))
+(((-1168 |#1| |#2|) (-10 -8 (-15 -4131 (|#2| |#1|)) (-15 -1657 (|#2| |#1|)) (-15 -4210 (|#1| |#1| |#1|)) (-15 -2166 ((-631 |#2|) |#1| |#1|)) (-15 -2109 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 -4164 (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|)) (-15 -2168 (|#1| (-712))) (-15 -4156 (|#1| |#1| |#1|))) (-1169 |#2|) (-1125)) (T -1168))
+NIL
+(-10 -8 (-15 -4131 (|#2| |#1|)) (-15 -1657 (|#2| |#1|)) (-15 -4210 (|#1| |#1| |#1|)) (-15 -2166 ((-631 |#2|) |#1| |#1|)) (-15 -2109 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-525) |#1|)) (-15 -4164 (|#1| |#1| |#1|)) (-15 -4164 (|#1| |#1|)) (-15 -2168 (|#1| (-712))) (-15 -4156 (|#1| |#1| |#1|)))
+((-3008 (((-108) $ $) 19 (|has| |#1| (-1018)))) (-2168 (($ (-712)) 112 (|has| |#1| (-23)))) (-3296 (((-1176) $ (-525) (-525)) 40 (|has| $ (-6 -4251)))) (-3203 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-788)))) (-4026 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4251))) (($ $) 88 (-12 (|has| |#1| (-788)) (|has| $ (-6 -4251))))) (-3327 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-788)))) (-3891 (((-108) $ (-712)) 8)) (-3186 ((|#1| $ (-525) |#1|) 52 (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) 58 (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4250)))) (-3798 (($) 7 T CONST)) (-2598 (($ $) 90 (|has| $ (-6 -4251)))) (-2617 (($ $) 100)) (-3098 (($ $) 78 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3677 (($ |#1| $) 77 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4250)))) (-3255 ((|#1| $ (-525) |#1|) 53 (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) 51)) (-3004 (((-525) (-1 (-108) |#1|) $) 97) (((-525) |#1| $) 96 (|has| |#1| (-1018))) (((-525) |#1| $ (-525)) 95 (|has| |#1| (-1018)))) (-3454 (((-591 |#1|) $) 30 (|has| $ (-6 -4250)))) (-2166 (((-631 |#1|) $ $) 105 (|has| |#1| (-975)))) (-1268 (($ (-712) |#1|) 69)) (-2910 (((-108) $ (-712)) 9)) (-3630 (((-525) $) 43 (|has| (-525) (-788)))) (-3741 (($ $ $) 87 (|has| |#1| (-788)))) (-2131 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-788)))) (-2552 (((-591 |#1|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-3468 (((-525) $) 44 (|has| (-525) (-788)))) (-2478 (($ $ $) 86 (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-4131 ((|#1| $) 102 (-12 (|has| |#1| (-975)) (|has| |#1| (-932))))) (-3971 (((-108) $ (-712)) 10)) (-1657 ((|#1| $) 103 (-12 (|has| |#1| (-975)) (|has| |#1| (-932))))) (-2339 (((-1072) $) 22 (|has| |#1| (-1018)))) (-4189 (($ |#1| $ (-525)) 60) (($ $ $ (-525)) 59)) (-2511 (((-591 (-525)) $) 46)) (-2791 (((-108) (-525) $) 47)) (-2047 (((-1036) $) 21 (|has| |#1| (-1018)))) (-3066 ((|#1| $) 42 (|has| (-525) (-788)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-1941 (($ $ |#1|) 41 (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) 26 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) 25 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) 23 (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) 14)) (-1615 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) 48)) (-3028 (((-108) $) 11)) (-3209 (($) 12)) (-3164 ((|#1| $ (-525) |#1|) 50) ((|#1| $ (-525)) 49) (($ $ (-1138 (-525))) 63)) (-2109 ((|#1| $ $) 106 (|has| |#1| (-975)))) (-2777 (($ $ (-525)) 62) (($ $ (-1138 (-525))) 61)) (-4210 (($ $ $) 104 (|has| |#1| (-975)))) (-2064 (((-712) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4250))) (((-712) |#1| $) 28 (-12 (|has| |#1| (-1018)) (|has| $ (-6 -4250))))) (-4063 (($ $ $ (-525)) 91 (|has| $ (-6 -4251)))) (-3199 (($ $) 13)) (-1408 (((-501) $) 79 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 70)) (-3690 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-591 $)) 65)) (-3022 (((-796) $) 18 (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) 84 (|has| |#1| (-788)))) (-4119 (((-108) $ $) 83 (|has| |#1| (-788)))) (-4096 (((-108) $ $) 20 (|has| |#1| (-1018)))) (-4126 (((-108) $ $) 85 (|has| |#1| (-788)))) (-4112 (((-108) $ $) 82 (|has| |#1| (-788)))) (-4164 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-4156 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-525) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-668))) (($ $ |#1|) 107 (|has| |#1| (-668)))) (-4045 (((-712) $) 6 (|has| $ (-6 -4250)))))
+(((-1169 |#1|) (-131) (-1125)) (T -1169))
+((-4156 (*1 *1 *1 *1) (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-25)))) (-2168 (*1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-1169 *3)) (-4 *3 (-23)) (-4 *3 (-1125)))) (-4164 (*1 *1 *1) (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-21)))) (-4164 (*1 *1 *1 *1) (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-21)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-525)) (-4 *1 (-1169 *3)) (-4 *3 (-1125)) (-4 *3 (-21)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-668)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-668)))) (-2109 (*1 *2 *1 *1) (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-975)))) (-2166 (*1 *2 *1 *1) (-12 (-4 *1 (-1169 *3)) (-4 *3 (-1125)) (-4 *3 (-975)) (-5 *2 (-631 *3)))) (-4210 (*1 *1 *1 *1) (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-975)))) (-1657 (*1 *2 *1) (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-932)) (-4 *2 (-975)))) (-4131 (*1 *2 *1) (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-932)) (-4 *2 (-975)))))
+(-13 (-19 |t#1|) (-10 -8 (IF (|has| |t#1| (-25)) (-15 -4156 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -2168 ($ (-712))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -4164 ($ $)) (-15 -4164 ($ $ $)) (-15 * ($ (-525) $))) |%noBranch|) (IF (|has| |t#1| (-668)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-975)) (PROGN (-15 -2109 (|t#1| $ $)) (-15 -2166 ((-631 |t#1|) $ $)) (-15 -4210 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-932)) (IF (|has| |t#1| (-975)) (PROGN (-15 -1657 (|t#1| $)) (-15 -4131 (|t#1| $))) |%noBranch|) |%noBranch|)))
+(((-33) . T) ((-97) -3321 (|has| |#1| (-1018)) (|has| |#1| (-788))) ((-565 (-796)) -3321 (|has| |#1| (-1018)) (|has| |#1| (-788)) (|has| |#1| (-565 (-796)))) ((-142 |#1|) . T) ((-566 (-501)) |has| |#1| (-566 (-501))) ((-265 #0=(-525) |#1|) . T) ((-267 #0# |#1|) . T) ((-288 |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-351 |#1|) . T) ((-464 |#1|) . T) ((-558 #0# |#1|) . T) ((-486 |#1| |#1|) -12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))) ((-596 |#1|) . T) ((-19 |#1|) . T) ((-788) |has| |#1| (-788)) ((-1018) -3321 (|has| |#1| (-1018)) (|has| |#1| (-788))) ((-1125) . T))
+((-1526 (((-1171 |#2|) (-1 |#2| |#1| |#2|) (-1171 |#1|) |#2|) 13)) (-1227 ((|#2| (-1 |#2| |#1| |#2|) (-1171 |#1|) |#2|) 15)) (-1340 (((-3 (-1171 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1171 |#1|)) 28) (((-1171 |#2|) (-1 |#2| |#1|) (-1171 |#1|)) 18)))
+(((-1170 |#1| |#2|) (-10 -7 (-15 -1526 ((-1171 |#2|) (-1 |#2| |#1| |#2|) (-1171 |#1|) |#2|)) (-15 -1227 (|#2| (-1 |#2| |#1| |#2|) (-1171 |#1|) |#2|)) (-15 -1340 ((-1171 |#2|) (-1 |#2| |#1|) (-1171 |#1|))) (-15 -1340 ((-3 (-1171 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1171 |#1|)))) (-1125) (-1125)) (T -1170))
+((-1340 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1171 *5)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-1171 *6)) (-5 *1 (-1170 *5 *6)))) (-1340 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1171 *5)) (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-1171 *6)) (-5 *1 (-1170 *5 *6)))) (-1227 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1171 *5)) (-4 *5 (-1125)) (-4 *2 (-1125)) (-5 *1 (-1170 *5 *2)))) (-1526 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1171 *6)) (-4 *6 (-1125)) (-4 *5 (-1125)) (-5 *2 (-1171 *5)) (-5 *1 (-1170 *6 *5)))))
+(-10 -7 (-15 -1526 ((-1171 |#2|) (-1 |#2| |#1| |#2|) (-1171 |#1|) |#2|)) (-15 -1227 (|#2| (-1 |#2| |#1| |#2|) (-1171 |#1|) |#2|)) (-15 -1340 ((-1171 |#2|) (-1 |#2| |#1|) (-1171 |#1|))) (-15 -1340 ((-3 (-1171 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1171 |#1|))))
+((-3008 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-2168 (($ (-712)) NIL (|has| |#1| (-23)))) (-3261 (($ (-591 |#1|)) 9)) (-3296 (((-1176) $ (-525) (-525)) NIL (|has| $ (-6 -4251)))) (-3203 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-788)))) (-4026 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4251))) (($ $) NIL (-12 (|has| $ (-6 -4251)) (|has| |#1| (-788))))) (-3327 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-788)))) (-3891 (((-108) $ (-712)) NIL)) (-3186 ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251))) ((|#1| $ (-1138 (-525)) |#1|) NIL (|has| $ (-6 -4251)))) (-2305 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-3798 (($) NIL T CONST)) (-2598 (($ $) NIL (|has| $ (-6 -4251)))) (-2617 (($ $) NIL)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3677 (($ |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-1227 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4250))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4250)))) (-3255 ((|#1| $ (-525) |#1|) NIL (|has| $ (-6 -4251)))) (-3217 ((|#1| $ (-525)) NIL)) (-3004 (((-525) (-1 (-108) |#1|) $) NIL) (((-525) |#1| $) NIL (|has| |#1| (-1018))) (((-525) |#1| $ (-525)) NIL (|has| |#1| (-1018)))) (-3454 (((-591 |#1|) $) 15 (|has| $ (-6 -4250)))) (-2166 (((-631 |#1|) $ $) NIL (|has| |#1| (-975)))) (-1268 (($ (-712) |#1|) NIL)) (-2910 (((-108) $ (-712)) NIL)) (-3630 (((-525) $) NIL (|has| (-525) (-788)))) (-3741 (($ $ $) NIL (|has| |#1| (-788)))) (-2131 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-788)))) (-2552 (((-591 |#1|) $) NIL (|has| $ (-6 -4250)))) (-2141 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3468 (((-525) $) NIL (|has| (-525) (-788)))) (-2478 (($ $ $) NIL (|has| |#1| (-788)))) (-3249 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4131 ((|#1| $) NIL (-12 (|has| |#1| (-932)) (|has| |#1| (-975))))) (-3971 (((-108) $ (-712)) NIL)) (-1657 ((|#1| $) NIL (-12 (|has| |#1| (-932)) (|has| |#1| (-975))))) (-2339 (((-1072) $) NIL (|has| |#1| (-1018)))) (-4189 (($ |#1| $ (-525)) NIL) (($ $ $ (-525)) NIL)) (-2511 (((-591 (-525)) $) NIL)) (-2791 (((-108) (-525) $) NIL)) (-2047 (((-1036) $) NIL (|has| |#1| (-1018)))) (-3066 ((|#1| $) NIL (|has| (-525) (-788)))) (-2069 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1941 (($ $ |#1|) NIL (|has| $ (-6 -4251)))) (-1623 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 (-273 |#1|))) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-273 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018)))) (($ $ (-591 |#1|) (-591 |#1|)) NIL (-12 (|has| |#1| (-288 |#1|)) (|has| |#1| (-1018))))) (-3493 (((-108) $ $) NIL)) (-1615 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-3339 (((-591 |#1|) $) NIL)) (-3028 (((-108) $) NIL)) (-3209 (($) NIL)) (-3164 ((|#1| $ (-525) |#1|) NIL) ((|#1| $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-2109 ((|#1| $ $) NIL (|has| |#1| (-975)))) (-2777 (($ $ (-525)) NIL) (($ $ (-1138 (-525))) NIL)) (-4210 (($ $ $) NIL (|has| |#1| (-975)))) (-2064 (((-712) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250))) (((-712) |#1| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#1| (-1018))))) (-4063 (($ $ $ (-525)) NIL (|has| $ (-6 -4251)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) 19 (|has| |#1| (-566 (-501))))) (-3036 (($ (-591 |#1|)) 8)) (-3690 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-591 $)) NIL)) (-3022 (((-796) $) NIL (|has| |#1| (-565 (-796))))) (-4158 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4250)))) (-4135 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4119 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4096 (((-108) $ $) NIL (|has| |#1| (-1018)))) (-4126 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4112 (((-108) $ $) NIL (|has| |#1| (-788)))) (-4164 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-4156 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-525) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-668))) (($ $ |#1|) NIL (|has| |#1| (-668)))) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-1171 |#1|) (-13 (-1169 |#1|) (-10 -8 (-15 -3261 ($ (-591 |#1|))))) (-1125)) (T -1171))
+((-3261 (*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-5 *1 (-1171 *3)))))
+(-13 (-1169 |#1|) (-10 -8 (-15 -3261 ($ (-591 |#1|)))))
+((-3008 (((-108) $ $) NIL)) (-2325 (((-1072) $ (-1072)) 90) (((-1072) $ (-1072) (-1072)) 88) (((-1072) $ (-1072) (-591 (-1072))) 87)) (-2459 (($) 59)) (-2931 (((-1176) $ (-445) (-854)) 45)) (-3331 (((-1176) $ (-854) (-1072)) 73) (((-1176) $ (-854) (-807)) 74)) (-2866 (((-1176) $ (-854) (-357) (-357)) 48)) (-3698 (((-1176) $ (-1072)) 69)) (-2543 (((-1176) $ (-854) (-1072)) 78)) (-3115 (((-1176) $ (-854) (-357) (-357)) 49)) (-2619 (((-1176) $ (-854) (-854)) 46)) (-1728 (((-1176) $) 70)) (-2303 (((-1176) $ (-854) (-1072)) 77)) (-1770 (((-1176) $ (-445) (-854)) 31)) (-3660 (((-1176) $ (-854) (-1072)) 76)) (-2026 (((-591 (-242)) $) 23) (($ $ (-591 (-242))) 24)) (-1230 (((-1176) $ (-712) (-712)) 43)) (-1752 (($ $) 60) (($ (-445) (-591 (-242))) 61)) (-2339 (((-1072) $) NIL)) (-2019 (((-525) $) 38)) (-2047 (((-1036) $) NIL)) (-4013 (((-1171 (-3 (-445) "undefined")) $) 37)) (-2458 (((-1171 (-2 (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205)) (|:| -3660 (-525)) (|:| -2749 (-525)) (|:| |spline| (-525)) (|:| -3283 (-525)) (|:| |axesColor| (-807)) (|:| -3331 (-525)) (|:| |unitsColor| (-807)) (|:| |showing| (-525)))) $) 36)) (-1583 (((-1176) $ (-854) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-525) (-807) (-525) (-807) (-525)) 68)) (-2536 (((-591 (-876 (-205))) $) NIL)) (-4152 (((-445) $ (-854)) 33)) (-3977 (((-1176) $ (-712) (-712) (-854) (-854)) 40)) (-2685 (((-1176) $ (-1072)) 79)) (-2749 (((-1176) $ (-854) (-1072)) 75)) (-3022 (((-796) $) 85)) (-3529 (((-1176) $) 80)) (-3283 (((-1176) $ (-854) (-1072)) 71) (((-1176) $ (-854) (-807)) 72)) (-4096 (((-108) $ $) NIL)))
+(((-1172) (-13 (-1018) (-10 -8 (-15 -2536 ((-591 (-876 (-205))) $)) (-15 -2459 ($)) (-15 -1752 ($ $)) (-15 -2026 ((-591 (-242)) $)) (-15 -2026 ($ $ (-591 (-242)))) (-15 -1752 ($ (-445) (-591 (-242)))) (-15 -1583 ((-1176) $ (-854) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-525) (-807) (-525) (-807) (-525))) (-15 -2458 ((-1171 (-2 (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205)) (|:| -3660 (-525)) (|:| -2749 (-525)) (|:| |spline| (-525)) (|:| -3283 (-525)) (|:| |axesColor| (-807)) (|:| -3331 (-525)) (|:| |unitsColor| (-807)) (|:| |showing| (-525)))) $)) (-15 -4013 ((-1171 (-3 (-445) "undefined")) $)) (-15 -3698 ((-1176) $ (-1072))) (-15 -1770 ((-1176) $ (-445) (-854))) (-15 -4152 ((-445) $ (-854))) (-15 -3283 ((-1176) $ (-854) (-1072))) (-15 -3283 ((-1176) $ (-854) (-807))) (-15 -3331 ((-1176) $ (-854) (-1072))) (-15 -3331 ((-1176) $ (-854) (-807))) (-15 -3660 ((-1176) $ (-854) (-1072))) (-15 -2303 ((-1176) $ (-854) (-1072))) (-15 -2749 ((-1176) $ (-854) (-1072))) (-15 -2685 ((-1176) $ (-1072))) (-15 -3529 ((-1176) $)) (-15 -3977 ((-1176) $ (-712) (-712) (-854) (-854))) (-15 -3115 ((-1176) $ (-854) (-357) (-357))) (-15 -2866 ((-1176) $ (-854) (-357) (-357))) (-15 -2543 ((-1176) $ (-854) (-1072))) (-15 -1230 ((-1176) $ (-712) (-712))) (-15 -2931 ((-1176) $ (-445) (-854))) (-15 -2619 ((-1176) $ (-854) (-854))) (-15 -2325 ((-1072) $ (-1072))) (-15 -2325 ((-1072) $ (-1072) (-1072))) (-15 -2325 ((-1072) $ (-1072) (-591 (-1072)))) (-15 -1728 ((-1176) $)) (-15 -2019 ((-525) $)) (-15 -3022 ((-796) $))))) (T -1172))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-1172)))) (-2536 (*1 *2 *1) (-12 (-5 *2 (-591 (-876 (-205)))) (-5 *1 (-1172)))) (-2459 (*1 *1) (-5 *1 (-1172))) (-1752 (*1 *1 *1) (-5 *1 (-1172))) (-2026 (*1 *2 *1) (-12 (-5 *2 (-591 (-242))) (-5 *1 (-1172)))) (-2026 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-242))) (-5 *1 (-1172)))) (-1752 (*1 *1 *2 *3) (-12 (-5 *2 (-445)) (-5 *3 (-591 (-242))) (-5 *1 (-1172)))) (-1583 (*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5) (-12 (-5 *3 (-854)) (-5 *4 (-205)) (-5 *5 (-525)) (-5 *6 (-807)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-2458 (*1 *2 *1) (-12 (-5 *2 (-1171 (-2 (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205)) (|:| -3660 (-525)) (|:| -2749 (-525)) (|:| |spline| (-525)) (|:| -3283 (-525)) (|:| |axesColor| (-807)) (|:| -3331 (-525)) (|:| |unitsColor| (-807)) (|:| |showing| (-525))))) (-5 *1 (-1172)))) (-4013 (*1 *2 *1) (-12 (-5 *2 (-1171 (-3 (-445) "undefined"))) (-5 *1 (-1172)))) (-3698 (*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-1770 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-445)) (-5 *4 (-854)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-4152 (*1 *2 *1 *3) (-12 (-5 *3 (-854)) (-5 *2 (-445)) (-5 *1 (-1172)))) (-3283 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-854)) (-5 *4 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-3283 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-854)) (-5 *4 (-807)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-3331 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-854)) (-5 *4 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-3331 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-854)) (-5 *4 (-807)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-3660 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-854)) (-5 *4 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-2303 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-854)) (-5 *4 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-2749 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-854)) (-5 *4 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-2685 (*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-3529 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-1172)))) (-3977 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-712)) (-5 *4 (-854)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-3115 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-854)) (-5 *4 (-357)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-2866 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-854)) (-5 *4 (-357)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-2543 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-854)) (-5 *4 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-1230 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-2931 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-445)) (-5 *4 (-854)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-2619 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1176)) (-5 *1 (-1172)))) (-2325 (*1 *2 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1172)))) (-2325 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1172)))) (-2325 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-591 (-1072))) (-5 *2 (-1072)) (-5 *1 (-1172)))) (-1728 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-1172)))) (-2019 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-1172)))))
+(-13 (-1018) (-10 -8 (-15 -2536 ((-591 (-876 (-205))) $)) (-15 -2459 ($)) (-15 -1752 ($ $)) (-15 -2026 ((-591 (-242)) $)) (-15 -2026 ($ $ (-591 (-242)))) (-15 -1752 ($ (-445) (-591 (-242)))) (-15 -1583 ((-1176) $ (-854) (-205) (-205) (-205) (-205) (-525) (-525) (-525) (-525) (-807) (-525) (-807) (-525))) (-15 -2458 ((-1171 (-2 (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205)) (|:| -3660 (-525)) (|:| -2749 (-525)) (|:| |spline| (-525)) (|:| -3283 (-525)) (|:| |axesColor| (-807)) (|:| -3331 (-525)) (|:| |unitsColor| (-807)) (|:| |showing| (-525)))) $)) (-15 -4013 ((-1171 (-3 (-445) "undefined")) $)) (-15 -3698 ((-1176) $ (-1072))) (-15 -1770 ((-1176) $ (-445) (-854))) (-15 -4152 ((-445) $ (-854))) (-15 -3283 ((-1176) $ (-854) (-1072))) (-15 -3283 ((-1176) $ (-854) (-807))) (-15 -3331 ((-1176) $ (-854) (-1072))) (-15 -3331 ((-1176) $ (-854) (-807))) (-15 -3660 ((-1176) $ (-854) (-1072))) (-15 -2303 ((-1176) $ (-854) (-1072))) (-15 -2749 ((-1176) $ (-854) (-1072))) (-15 -2685 ((-1176) $ (-1072))) (-15 -3529 ((-1176) $)) (-15 -3977 ((-1176) $ (-712) (-712) (-854) (-854))) (-15 -3115 ((-1176) $ (-854) (-357) (-357))) (-15 -2866 ((-1176) $ (-854) (-357) (-357))) (-15 -2543 ((-1176) $ (-854) (-1072))) (-15 -1230 ((-1176) $ (-712) (-712))) (-15 -2931 ((-1176) $ (-445) (-854))) (-15 -2619 ((-1176) $ (-854) (-854))) (-15 -2325 ((-1072) $ (-1072))) (-15 -2325 ((-1072) $ (-1072) (-1072))) (-15 -2325 ((-1072) $ (-1072) (-591 (-1072)))) (-15 -1728 ((-1176) $)) (-15 -2019 ((-525) $)) (-15 -3022 ((-796) $))))
+((-3008 (((-108) $ $) NIL)) (-1895 (((-1176) $ (-357)) 140) (((-1176) $ (-357) (-357) (-357)) 141)) (-2325 (((-1072) $ (-1072)) 148) (((-1072) $ (-1072) (-1072)) 146) (((-1072) $ (-1072) (-591 (-1072))) 145)) (-4203 (($) 50)) (-1889 (((-1176) $ (-357) (-357) (-357) (-357) (-357)) 116) (((-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205))) $) 114) (((-1176) $ (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205)))) 115) (((-1176) $ (-525) (-525) (-357) (-357) (-357)) 117) (((-1176) $ (-357) (-357)) 118) (((-1176) $ (-357) (-357) (-357)) 125)) (-2315 (((-357)) 97) (((-357) (-357)) 98)) (-2066 (((-357)) 92) (((-357) (-357)) 94)) (-1786 (((-357)) 95) (((-357) (-357)) 96)) (-2682 (((-357)) 101) (((-357) (-357)) 102)) (-3049 (((-357)) 99) (((-357) (-357)) 100)) (-2866 (((-1176) $ (-357) (-357)) 142)) (-3698 (((-1176) $ (-1072)) 126)) (-3439 (((-1049 (-205)) $) 51) (($ $ (-1049 (-205))) 52)) (-3084 (((-1176) $ (-1072)) 154)) (-2350 (((-1176) $ (-1072)) 155)) (-3252 (((-1176) $ (-357) (-357)) 124) (((-1176) $ (-525) (-525)) 139)) (-2619 (((-1176) $ (-854) (-854)) 132)) (-1728 (((-1176) $) 112)) (-2700 (((-1176) $ (-1072)) 153)) (-4202 (((-1176) $ (-1072)) 109)) (-2026 (((-591 (-242)) $) 53) (($ $ (-591 (-242))) 54)) (-1230 (((-1176) $ (-712) (-712)) 131)) (-1966 (((-1176) $ (-712) (-876 (-205))) 160)) (-2919 (($ $) 56) (($ (-1049 (-205)) (-1072)) 57) (($ (-1049 (-205)) (-591 (-242))) 58)) (-2981 (((-1176) $ (-357) (-357) (-357)) 106)) (-2339 (((-1072) $) NIL)) (-2019 (((-525) $) 103)) (-3015 (((-1176) $ (-357)) 143)) (-2149 (((-1176) $ (-357)) 158)) (-2047 (((-1036) $) NIL)) (-3444 (((-1176) $ (-357)) 157)) (-2429 (((-1176) $ (-1072)) 111)) (-3977 (((-1176) $ (-712) (-712) (-854) (-854)) 130)) (-1362 (((-1176) $ (-1072)) 108)) (-2685 (((-1176) $ (-1072)) 110)) (-2102 (((-1176) $ (-146) (-146)) 129)) (-3022 (((-796) $) 137)) (-3529 (((-1176) $) 113)) (-1444 (((-1176) $ (-1072)) 156)) (-3283 (((-1176) $ (-1072)) 107)) (-4096 (((-108) $ $) NIL)))
+(((-1173) (-13 (-1018) (-10 -8 (-15 -2066 ((-357))) (-15 -2066 ((-357) (-357))) (-15 -1786 ((-357))) (-15 -1786 ((-357) (-357))) (-15 -2315 ((-357))) (-15 -2315 ((-357) (-357))) (-15 -3049 ((-357))) (-15 -3049 ((-357) (-357))) (-15 -2682 ((-357))) (-15 -2682 ((-357) (-357))) (-15 -4203 ($)) (-15 -2919 ($ $)) (-15 -2919 ($ (-1049 (-205)) (-1072))) (-15 -2919 ($ (-1049 (-205)) (-591 (-242)))) (-15 -3439 ((-1049 (-205)) $)) (-15 -3439 ($ $ (-1049 (-205)))) (-15 -1966 ((-1176) $ (-712) (-876 (-205)))) (-15 -2026 ((-591 (-242)) $)) (-15 -2026 ($ $ (-591 (-242)))) (-15 -1230 ((-1176) $ (-712) (-712))) (-15 -2619 ((-1176) $ (-854) (-854))) (-15 -3698 ((-1176) $ (-1072))) (-15 -3977 ((-1176) $ (-712) (-712) (-854) (-854))) (-15 -1889 ((-1176) $ (-357) (-357) (-357) (-357) (-357))) (-15 -1889 ((-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205))) $)) (-15 -1889 ((-1176) $ (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205))))) (-15 -1889 ((-1176) $ (-525) (-525) (-357) (-357) (-357))) (-15 -1889 ((-1176) $ (-357) (-357))) (-15 -1889 ((-1176) $ (-357) (-357) (-357))) (-15 -2685 ((-1176) $ (-1072))) (-15 -3283 ((-1176) $ (-1072))) (-15 -1362 ((-1176) $ (-1072))) (-15 -4202 ((-1176) $ (-1072))) (-15 -2429 ((-1176) $ (-1072))) (-15 -3252 ((-1176) $ (-357) (-357))) (-15 -3252 ((-1176) $ (-525) (-525))) (-15 -1895 ((-1176) $ (-357))) (-15 -1895 ((-1176) $ (-357) (-357) (-357))) (-15 -2866 ((-1176) $ (-357) (-357))) (-15 -2700 ((-1176) $ (-1072))) (-15 -3444 ((-1176) $ (-357))) (-15 -2149 ((-1176) $ (-357))) (-15 -3084 ((-1176) $ (-1072))) (-15 -2350 ((-1176) $ (-1072))) (-15 -1444 ((-1176) $ (-1072))) (-15 -2981 ((-1176) $ (-357) (-357) (-357))) (-15 -3015 ((-1176) $ (-357))) (-15 -1728 ((-1176) $)) (-15 -2102 ((-1176) $ (-146) (-146))) (-15 -2325 ((-1072) $ (-1072))) (-15 -2325 ((-1072) $ (-1072) (-1072))) (-15 -2325 ((-1072) $ (-1072) (-591 (-1072)))) (-15 -3529 ((-1176) $)) (-15 -2019 ((-525) $))))) (T -1173))
+((-2066 (*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173)))) (-2066 (*1 *2 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173)))) (-1786 (*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173)))) (-1786 (*1 *2 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173)))) (-2315 (*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173)))) (-2315 (*1 *2 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173)))) (-3049 (*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173)))) (-3049 (*1 *2 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173)))) (-2682 (*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173)))) (-2682 (*1 *2 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173)))) (-4203 (*1 *1) (-5 *1 (-1173))) (-2919 (*1 *1 *1) (-5 *1 (-1173))) (-2919 (*1 *1 *2 *3) (-12 (-5 *2 (-1049 (-205))) (-5 *3 (-1072)) (-5 *1 (-1173)))) (-2919 (*1 *1 *2 *3) (-12 (-5 *2 (-1049 (-205))) (-5 *3 (-591 (-242))) (-5 *1 (-1173)))) (-3439 (*1 *2 *1) (-12 (-5 *2 (-1049 (-205))) (-5 *1 (-1173)))) (-3439 (*1 *1 *1 *2) (-12 (-5 *2 (-1049 (-205))) (-5 *1 (-1173)))) (-1966 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-712)) (-5 *4 (-876 (-205))) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-2026 (*1 *2 *1) (-12 (-5 *2 (-591 (-242))) (-5 *1 (-1173)))) (-2026 (*1 *1 *1 *2) (-12 (-5 *2 (-591 (-242))) (-5 *1 (-1173)))) (-1230 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-2619 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-3698 (*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-3977 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-712)) (-5 *4 (-854)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-1889 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-1889 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205)))) (-5 *1 (-1173)))) (-1889 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205)))) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-1889 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-525)) (-5 *4 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-1889 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-1889 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-2685 (*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-3283 (*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-1362 (*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-4202 (*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-2429 (*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-3252 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-3252 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-525)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-1895 (*1 *2 *1 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-1895 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-2866 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-2700 (*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-3444 (*1 *2 *1 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-2149 (*1 *2 *1 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-3084 (*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-2350 (*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-1444 (*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-2981 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-3015 (*1 *2 *1 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-1728 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-1173)))) (-2102 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-146)) (-5 *2 (-1176)) (-5 *1 (-1173)))) (-2325 (*1 *2 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1173)))) (-2325 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1173)))) (-2325 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-591 (-1072))) (-5 *2 (-1072)) (-5 *1 (-1173)))) (-3529 (*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-1173)))) (-2019 (*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-1173)))))
+(-13 (-1018) (-10 -8 (-15 -2066 ((-357))) (-15 -2066 ((-357) (-357))) (-15 -1786 ((-357))) (-15 -1786 ((-357) (-357))) (-15 -2315 ((-357))) (-15 -2315 ((-357) (-357))) (-15 -3049 ((-357))) (-15 -3049 ((-357) (-357))) (-15 -2682 ((-357))) (-15 -2682 ((-357) (-357))) (-15 -4203 ($)) (-15 -2919 ($ $)) (-15 -2919 ($ (-1049 (-205)) (-1072))) (-15 -2919 ($ (-1049 (-205)) (-591 (-242)))) (-15 -3439 ((-1049 (-205)) $)) (-15 -3439 ($ $ (-1049 (-205)))) (-15 -1966 ((-1176) $ (-712) (-876 (-205)))) (-15 -2026 ((-591 (-242)) $)) (-15 -2026 ($ $ (-591 (-242)))) (-15 -1230 ((-1176) $ (-712) (-712))) (-15 -2619 ((-1176) $ (-854) (-854))) (-15 -3698 ((-1176) $ (-1072))) (-15 -3977 ((-1176) $ (-712) (-712) (-854) (-854))) (-15 -1889 ((-1176) $ (-357) (-357) (-357) (-357) (-357))) (-15 -1889 ((-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205))) $)) (-15 -1889 ((-1176) $ (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205)) (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205)) (|:| |deltaX| (-205)) (|:| |deltaY| (-205))))) (-15 -1889 ((-1176) $ (-525) (-525) (-357) (-357) (-357))) (-15 -1889 ((-1176) $ (-357) (-357))) (-15 -1889 ((-1176) $ (-357) (-357) (-357))) (-15 -2685 ((-1176) $ (-1072))) (-15 -3283 ((-1176) $ (-1072))) (-15 -1362 ((-1176) $ (-1072))) (-15 -4202 ((-1176) $ (-1072))) (-15 -2429 ((-1176) $ (-1072))) (-15 -3252 ((-1176) $ (-357) (-357))) (-15 -3252 ((-1176) $ (-525) (-525))) (-15 -1895 ((-1176) $ (-357))) (-15 -1895 ((-1176) $ (-357) (-357) (-357))) (-15 -2866 ((-1176) $ (-357) (-357))) (-15 -2700 ((-1176) $ (-1072))) (-15 -3444 ((-1176) $ (-357))) (-15 -2149 ((-1176) $ (-357))) (-15 -3084 ((-1176) $ (-1072))) (-15 -2350 ((-1176) $ (-1072))) (-15 -1444 ((-1176) $ (-1072))) (-15 -2981 ((-1176) $ (-357) (-357) (-357))) (-15 -3015 ((-1176) $ (-357))) (-15 -1728 ((-1176) $)) (-15 -2102 ((-1176) $ (-146) (-146))) (-15 -2325 ((-1072) $ (-1072))) (-15 -2325 ((-1072) $ (-1072) (-1072))) (-15 -2325 ((-1072) $ (-1072) (-591 (-1072)))) (-15 -3529 ((-1176) $)) (-15 -2019 ((-525) $))))
+((-2398 (((-591 (-1072)) (-591 (-1072))) 94) (((-591 (-1072))) 90)) (-3842 (((-591 (-1072))) 88)) (-3268 (((-591 (-854)) (-591 (-854))) 63) (((-591 (-854))) 60)) (-1589 (((-591 (-712)) (-591 (-712))) 57) (((-591 (-712))) 53)) (-3636 (((-1176)) 65)) (-3767 (((-854) (-854)) 81) (((-854)) 80)) (-2529 (((-854) (-854)) 79) (((-854)) 78)) (-1909 (((-807) (-807)) 75) (((-807)) 74)) (-3405 (((-205)) 85) (((-205) (-357)) 87)) (-1645 (((-854)) 82) (((-854) (-854)) 83)) (-2132 (((-854) (-854)) 77) (((-854)) 76)) (-3850 (((-807) (-807)) 69) (((-807)) 67)) (-2051 (((-807) (-807)) 71) (((-807)) 70)) (-3177 (((-807) (-807)) 73) (((-807)) 72)))
+(((-1174) (-10 -7 (-15 -3850 ((-807))) (-15 -3850 ((-807) (-807))) (-15 -2051 ((-807))) (-15 -2051 ((-807) (-807))) (-15 -3177 ((-807))) (-15 -3177 ((-807) (-807))) (-15 -1909 ((-807))) (-15 -1909 ((-807) (-807))) (-15 -2132 ((-854))) (-15 -2132 ((-854) (-854))) (-15 -1589 ((-591 (-712)))) (-15 -1589 ((-591 (-712)) (-591 (-712)))) (-15 -3268 ((-591 (-854)))) (-15 -3268 ((-591 (-854)) (-591 (-854)))) (-15 -3636 ((-1176))) (-15 -2398 ((-591 (-1072)))) (-15 -2398 ((-591 (-1072)) (-591 (-1072)))) (-15 -3842 ((-591 (-1072)))) (-15 -2529 ((-854))) (-15 -3767 ((-854))) (-15 -2529 ((-854) (-854))) (-15 -3767 ((-854) (-854))) (-15 -1645 ((-854) (-854))) (-15 -1645 ((-854))) (-15 -3405 ((-205) (-357))) (-15 -3405 ((-205))))) (T -1174))
+((-3405 (*1 *2) (-12 (-5 *2 (-205)) (-5 *1 (-1174)))) (-3405 (*1 *2 *3) (-12 (-5 *3 (-357)) (-5 *2 (-205)) (-5 *1 (-1174)))) (-1645 (*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174)))) (-1645 (*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174)))) (-3767 (*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174)))) (-2529 (*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174)))) (-3767 (*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174)))) (-2529 (*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174)))) (-3842 (*1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1174)))) (-2398 (*1 *2 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1174)))) (-2398 (*1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1174)))) (-3636 (*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-1174)))) (-3268 (*1 *2 *2) (-12 (-5 *2 (-591 (-854))) (-5 *1 (-1174)))) (-3268 (*1 *2) (-12 (-5 *2 (-591 (-854))) (-5 *1 (-1174)))) (-1589 (*1 *2 *2) (-12 (-5 *2 (-591 (-712))) (-5 *1 (-1174)))) (-1589 (*1 *2) (-12 (-5 *2 (-591 (-712))) (-5 *1 (-1174)))) (-2132 (*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174)))) (-2132 (*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174)))) (-1909 (*1 *2 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174)))) (-1909 (*1 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174)))) (-3177 (*1 *2 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174)))) (-3177 (*1 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174)))) (-2051 (*1 *2 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174)))) (-2051 (*1 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174)))) (-3850 (*1 *2 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174)))) (-3850 (*1 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174)))))
+(-10 -7 (-15 -3850 ((-807))) (-15 -3850 ((-807) (-807))) (-15 -2051 ((-807))) (-15 -2051 ((-807) (-807))) (-15 -3177 ((-807))) (-15 -3177 ((-807) (-807))) (-15 -1909 ((-807))) (-15 -1909 ((-807) (-807))) (-15 -2132 ((-854))) (-15 -2132 ((-854) (-854))) (-15 -1589 ((-591 (-712)))) (-15 -1589 ((-591 (-712)) (-591 (-712)))) (-15 -3268 ((-591 (-854)))) (-15 -3268 ((-591 (-854)) (-591 (-854)))) (-15 -3636 ((-1176))) (-15 -2398 ((-591 (-1072)))) (-15 -2398 ((-591 (-1072)) (-591 (-1072)))) (-15 -3842 ((-591 (-1072)))) (-15 -2529 ((-854))) (-15 -3767 ((-854))) (-15 -2529 ((-854) (-854))) (-15 -3767 ((-854) (-854))) (-15 -1645 ((-854) (-854))) (-15 -1645 ((-854))) (-15 -3405 ((-205) (-357))) (-15 -3405 ((-205))))
+((-3775 (((-445) (-591 (-591 (-876 (-205)))) (-591 (-242))) 21) (((-445) (-591 (-591 (-876 (-205))))) 20) (((-445) (-591 (-591 (-876 (-205)))) (-807) (-807) (-854) (-591 (-242))) 19)) (-2902 (((-1172) (-591 (-591 (-876 (-205)))) (-591 (-242))) 27) (((-1172) (-591 (-591 (-876 (-205)))) (-807) (-807) (-854) (-591 (-242))) 26)) (-3022 (((-1172) (-445)) 38)))
+(((-1175) (-10 -7 (-15 -3775 ((-445) (-591 (-591 (-876 (-205)))) (-807) (-807) (-854) (-591 (-242)))) (-15 -3775 ((-445) (-591 (-591 (-876 (-205)))))) (-15 -3775 ((-445) (-591 (-591 (-876 (-205)))) (-591 (-242)))) (-15 -2902 ((-1172) (-591 (-591 (-876 (-205)))) (-807) (-807) (-854) (-591 (-242)))) (-15 -2902 ((-1172) (-591 (-591 (-876 (-205)))) (-591 (-242)))) (-15 -3022 ((-1172) (-445))))) (T -1175))
+((-3022 (*1 *2 *3) (-12 (-5 *3 (-445)) (-5 *2 (-1172)) (-5 *1 (-1175)))) (-2902 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-591 (-876 (-205))))) (-5 *4 (-591 (-242))) (-5 *2 (-1172)) (-5 *1 (-1175)))) (-2902 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-591 (-591 (-876 (-205))))) (-5 *4 (-807)) (-5 *5 (-854)) (-5 *6 (-591 (-242))) (-5 *2 (-1172)) (-5 *1 (-1175)))) (-3775 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-591 (-876 (-205))))) (-5 *4 (-591 (-242))) (-5 *2 (-445)) (-5 *1 (-1175)))) (-3775 (*1 *2 *3) (-12 (-5 *3 (-591 (-591 (-876 (-205))))) (-5 *2 (-445)) (-5 *1 (-1175)))) (-3775 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-591 (-591 (-876 (-205))))) (-5 *4 (-807)) (-5 *5 (-854)) (-5 *6 (-591 (-242))) (-5 *2 (-445)) (-5 *1 (-1175)))))
+(-10 -7 (-15 -3775 ((-445) (-591 (-591 (-876 (-205)))) (-807) (-807) (-854) (-591 (-242)))) (-15 -3775 ((-445) (-591 (-591 (-876 (-205)))))) (-15 -3775 ((-445) (-591 (-591 (-876 (-205)))) (-591 (-242)))) (-15 -2902 ((-1172) (-591 (-591 (-876 (-205)))) (-807) (-807) (-854) (-591 (-242)))) (-15 -2902 ((-1172) (-591 (-591 (-876 (-205)))) (-591 (-242)))) (-15 -3022 ((-1172) (-445))))
+((-4170 (($) 7)) (-3022 (((-796) $) 10)))
+(((-1176) (-10 -8 (-15 -4170 ($)) (-15 -3022 ((-796) $)))) (T -1176))
+((-3022 (*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-1176)))) (-4170 (*1 *1) (-5 *1 (-1176))))
+(-10 -8 (-15 -4170 ($)) (-15 -3022 ((-796) $)))
+((-4173 (($ $ |#2|) 10)))
+(((-1177 |#1| |#2|) (-10 -8 (-15 -4173 (|#1| |#1| |#2|))) (-1178 |#2|) (-341)) (T -1177))
+NIL
+(-10 -8 (-15 -4173 (|#1| |#1| |#2|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-4224 (((-128)) 28)) (-3022 (((-796) $) 11)) (-4191 (($) 18 T CONST)) (-4096 (((-108) $ $) 6)) (-4173 (($ $ |#1|) 29)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
+(((-1178 |#1|) (-131) (-341)) (T -1178))
+((-4173 (*1 *1 *1 *2) (-12 (-4 *1 (-1178 *2)) (-4 *2 (-341)))) (-4224 (*1 *2) (-12 (-4 *1 (-1178 *3)) (-4 *3 (-341)) (-5 *2 (-128)))))
+(-13 (-659 |t#1|) (-10 -8 (-15 -4173 ($ $ |t#1|)) (-15 -4224 ((-128)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 |#1|) . T) ((-659 |#1|) . T) ((-981 |#1|) . T) ((-1018) . T))
+((-1749 (((-591 (-1120 |#1|)) (-1089) (-1120 |#1|)) 78)) (-1284 (((-1070 (-1070 (-885 |#1|))) (-1089) (-1070 (-885 |#1|))) 57)) (-2683 (((-1 (-1070 (-1120 |#1|)) (-1070 (-1120 |#1|))) (-712) (-1120 |#1|) (-1070 (-1120 |#1|))) 68)) (-2874 (((-1 (-1070 (-885 |#1|)) (-1070 (-885 |#1|))) (-712)) 59)) (-1506 (((-1 (-1085 (-885 |#1|)) (-885 |#1|)) (-1089)) 29)) (-2328 (((-1 (-1070 (-885 |#1|)) (-1070 (-885 |#1|))) (-712)) 58)))
+(((-1179 |#1|) (-10 -7 (-15 -2874 ((-1 (-1070 (-885 |#1|)) (-1070 (-885 |#1|))) (-712))) (-15 -2328 ((-1 (-1070 (-885 |#1|)) (-1070 (-885 |#1|))) (-712))) (-15 -1284 ((-1070 (-1070 (-885 |#1|))) (-1089) (-1070 (-885 |#1|)))) (-15 -1506 ((-1 (-1085 (-885 |#1|)) (-885 |#1|)) (-1089))) (-15 -1749 ((-591 (-1120 |#1|)) (-1089) (-1120 |#1|))) (-15 -2683 ((-1 (-1070 (-1120 |#1|)) (-1070 (-1120 |#1|))) (-712) (-1120 |#1|) (-1070 (-1120 |#1|))))) (-341)) (T -1179))
+((-2683 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-712)) (-4 *6 (-341)) (-5 *4 (-1120 *6)) (-5 *2 (-1 (-1070 *4) (-1070 *4))) (-5 *1 (-1179 *6)) (-5 *5 (-1070 *4)))) (-1749 (*1 *2 *3 *4) (-12 (-5 *3 (-1089)) (-4 *5 (-341)) (-5 *2 (-591 (-1120 *5))) (-5 *1 (-1179 *5)) (-5 *4 (-1120 *5)))) (-1506 (*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-1 (-1085 (-885 *4)) (-885 *4))) (-5 *1 (-1179 *4)) (-4 *4 (-341)))) (-1284 (*1 *2 *3 *4) (-12 (-5 *3 (-1089)) (-4 *5 (-341)) (-5 *2 (-1070 (-1070 (-885 *5)))) (-5 *1 (-1179 *5)) (-5 *4 (-1070 (-885 *5))))) (-2328 (*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1 (-1070 (-885 *4)) (-1070 (-885 *4)))) (-5 *1 (-1179 *4)) (-4 *4 (-341)))) (-2874 (*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1 (-1070 (-885 *4)) (-1070 (-885 *4)))) (-5 *1 (-1179 *4)) (-4 *4 (-341)))))
+(-10 -7 (-15 -2874 ((-1 (-1070 (-885 |#1|)) (-1070 (-885 |#1|))) (-712))) (-15 -2328 ((-1 (-1070 (-885 |#1|)) (-1070 (-885 |#1|))) (-712))) (-15 -1284 ((-1070 (-1070 (-885 |#1|))) (-1089) (-1070 (-885 |#1|)))) (-15 -1506 ((-1 (-1085 (-885 |#1|)) (-885 |#1|)) (-1089))) (-15 -1749 ((-591 (-1120 |#1|)) (-1089) (-1120 |#1|))) (-15 -2683 ((-1 (-1070 (-1120 |#1|)) (-1070 (-1120 |#1|))) (-712) (-1120 |#1|) (-1070 (-1120 |#1|)))))
+((-1426 (((-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))) |#2|) 75)) (-3441 (((-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|)))) 74)))
+(((-1180 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3441 ((-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))))) (-15 -1426 ((-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))) |#2|))) (-327) (-1147 |#1|) (-1147 |#2|) (-387 |#2| |#3|)) (T -1180))
+((-1426 (*1 *2 *3) (-12 (-4 *4 (-327)) (-4 *3 (-1147 *4)) (-4 *5 (-1147 *3)) (-5 *2 (-2 (|:| -4003 (-631 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-631 *3)))) (-5 *1 (-1180 *4 *3 *5 *6)) (-4 *6 (-387 *3 *5)))) (-3441 (*1 *2) (-12 (-4 *3 (-327)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 *4)) (-5 *2 (-2 (|:| -4003 (-631 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-631 *4)))) (-5 *1 (-1180 *3 *4 *5 *6)) (-4 *6 (-387 *4 *5)))))
+(-10 -7 (-15 -3441 ((-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))))) (-15 -1426 ((-2 (|:| -4003 (-631 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-631 |#2|))) |#2|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 43)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-4163 (((-3 $ "failed") $) NIL)) (-2824 (((-108) $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-3022 (((-796) $) 64) (($ (-525)) NIL) ((|#4| $) 54) (($ |#4|) 49) (($ |#1|) NIL (|has| |#1| (-160)))) (-2128 (((-712)) NIL)) (-1474 (((-1176) (-712)) 16)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 27 T CONST)) (-4197 (($) 67 T CONST)) (-4096 (((-108) $ $) 69)) (-4173 (((-3 $ "failed") $ $) NIL (|has| |#1| (-341)))) (-4164 (($ $) 71) (($ $ $) NIL)) (-4156 (($ $ $) 47)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 73) (($ |#1| $) NIL (|has| |#1| (-160))) (($ $ |#1|) NIL (|has| |#1| (-160)))))
+(((-1181 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-13 (-975) (-10 -8 (IF (|has| |#1| (-160)) (-6 (-37 |#1|)) |%noBranch|) (-15 -3022 (|#4| $)) (IF (|has| |#1| (-341)) (-15 -4173 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3022 ($ |#4|)) (-15 -1474 ((-1176) (-712))))) (-975) (-788) (-734) (-882 |#1| |#3| |#2|) (-591 |#2|) (-591 (-712)) (-712)) (T -1181))
+((-3022 (*1 *2 *1) (-12 (-4 *2 (-882 *3 *5 *4)) (-5 *1 (-1181 *3 *4 *5 *2 *6 *7 *8)) (-4 *3 (-975)) (-4 *4 (-788)) (-4 *5 (-734)) (-14 *6 (-591 *4)) (-14 *7 (-591 (-712))) (-14 *8 (-712)))) (-4173 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-341)) (-4 *2 (-975)) (-4 *3 (-788)) (-4 *4 (-734)) (-14 *6 (-591 *3)) (-5 *1 (-1181 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-882 *2 *4 *3)) (-14 *7 (-591 (-712))) (-14 *8 (-712)))) (-3022 (*1 *1 *2) (-12 (-4 *3 (-975)) (-4 *4 (-788)) (-4 *5 (-734)) (-14 *6 (-591 *4)) (-5 *1 (-1181 *3 *4 *5 *2 *6 *7 *8)) (-4 *2 (-882 *3 *5 *4)) (-14 *7 (-591 (-712))) (-14 *8 (-712)))) (-1474 (*1 *2 *3) (-12 (-5 *3 (-712)) (-4 *4 (-975)) (-4 *5 (-788)) (-4 *6 (-734)) (-14 *8 (-591 *5)) (-5 *2 (-1176)) (-5 *1 (-1181 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-882 *4 *6 *5)) (-14 *9 (-591 *3)) (-14 *10 *3))))
+(-13 (-975) (-10 -8 (IF (|has| |#1| (-160)) (-6 (-37 |#1|)) |%noBranch|) (-15 -3022 (|#4| $)) (IF (|has| |#1| (-341)) (-15 -4173 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3022 ($ |#4|)) (-15 -1474 ((-1176) (-712)))))
+((-3008 (((-108) $ $) NIL)) (-3817 (((-591 (-2 (|:| -3529 $) (|:| -1976 (-591 |#4|)))) (-591 |#4|)) NIL)) (-2113 (((-591 $) (-591 |#4|)) 88)) (-1507 (((-591 |#3|) $) NIL)) (-1430 (((-108) $) NIL)) (-3490 (((-108) $) NIL (|has| |#1| (-517)))) (-3130 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1568 ((|#4| |#4| $) NIL)) (-3327 (((-2 (|:| |under| $) (|:| -2662 $) (|:| |upper| $)) $ |#3|) NIL)) (-3891 (((-108) $ (-712)) NIL)) (-2305 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3798 (($) NIL T CONST)) (-3382 (((-108) $) NIL (|has| |#1| (-517)))) (-2438 (((-108) $ $) NIL (|has| |#1| (-517)))) (-2055 (((-108) $ $) NIL (|has| |#1| (-517)))) (-1964 (((-108) $) NIL (|has| |#1| (-517)))) (-2656 (((-591 |#4|) (-591 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 28)) (-3853 (((-591 |#4|) (-591 |#4|) $) 25 (|has| |#1| (-517)))) (-1921 (((-591 |#4|) (-591 |#4|) $) NIL (|has| |#1| (-517)))) (-1251 (((-3 $ "failed") (-591 |#4|)) NIL)) (-3528 (($ (-591 |#4|)) NIL)) (-3078 (((-3 $ "failed") $) 70)) (-2736 ((|#4| |#4| $) 75)) (-3098 (($ $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018))))) (-3677 (($ |#4| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-3407 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-517)))) (-3135 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-2933 ((|#4| |#4| $) NIL)) (-1227 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4250))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4250))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2719 (((-2 (|:| -3529 (-591 |#4|)) (|:| -1976 (-591 |#4|))) $) NIL)) (-3454 (((-591 |#4|) $) NIL (|has| $ (-6 -4250)))) (-1809 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2009 ((|#3| $) 76)) (-2910 (((-108) $ (-712)) NIL)) (-2552 (((-591 |#4|) $) 29 (|has| $ (-6 -4250)))) (-2141 (((-108) |#4| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018))))) (-2756 (((-3 $ "failed") (-591 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 32) (((-3 $ "failed") (-591 |#4|)) 35)) (-3249 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4251)))) (-1340 (($ (-1 |#4| |#4|) $) NIL)) (-3993 (((-591 |#3|) $) NIL)) (-4174 (((-108) |#3| $) NIL)) (-3971 (((-108) $ (-712)) NIL)) (-2339 (((-1072) $) NIL)) (-3708 (((-3 |#4| "failed") $) NIL)) (-3280 (((-591 |#4|) $) 50)) (-3196 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-4066 ((|#4| |#4| $) 74)) (-2154 (((-108) $ $) 85)) (-2934 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-517)))) (-2115 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2731 ((|#4| |#4| $) NIL)) (-2047 (((-1036) $) NIL)) (-3066 (((-3 |#4| "failed") $) 69)) (-2069 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-1554 (((-3 $ "failed") $ |#4|) NIL)) (-2784 (($ $ |#4|) NIL)) (-1623 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-4132 (($ $ (-591 |#4|) (-591 |#4|)) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-273 |#4|)) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018)))) (($ $ (-591 (-273 |#4|))) NIL (-12 (|has| |#4| (-288 |#4|)) (|has| |#4| (-1018))))) (-3493 (((-108) $ $) NIL)) (-3028 (((-108) $) 67)) (-3209 (($) 42)) (-1316 (((-712) $) NIL)) (-2064 (((-712) |#4| $) NIL (-12 (|has| $ (-6 -4250)) (|has| |#4| (-1018)))) (((-712) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-3199 (($ $) NIL)) (-1408 (((-501) $) NIL (|has| |#4| (-566 (-501))))) (-3036 (($ (-591 |#4|)) NIL)) (-3134 (($ $ |#3|) NIL)) (-3443 (($ $ |#3|) NIL)) (-2487 (($ $) NIL)) (-3010 (($ $ |#3|) NIL)) (-3022 (((-796) $) NIL) (((-591 |#4|) $) 57)) (-3223 (((-712) $) NIL (|has| |#3| (-346)))) (-2222 (((-3 $ "failed") (-591 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 40) (((-3 $ "failed") (-591 |#4|)) 41)) (-3773 (((-591 $) (-591 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 65) (((-591 $) (-591 |#4|)) 66)) (-2122 (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4| |#4|)) 24) (((-3 (-2 (|:| |bas| $) (|:| -1211 (-591 |#4|))) "failed") (-591 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2165 (((-108) $ (-1 (-108) |#4| (-591 |#4|))) NIL)) (-4158 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4250)))) (-3872 (((-591 |#3|) $) NIL)) (-1884 (((-108) |#3| $) NIL)) (-4096 (((-108) $ $) NIL)) (-4045 (((-712) $) NIL (|has| $ (-6 -4250)))))
+(((-1182 |#1| |#2| |#3| |#4|) (-13 (-1119 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2756 ((-3 $ "failed") (-591 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2756 ((-3 $ "failed") (-591 |#4|))) (-15 -2222 ((-3 $ "failed") (-591 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2222 ((-3 $ "failed") (-591 |#4|))) (-15 -3773 ((-591 $) (-591 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3773 ((-591 $) (-591 |#4|))))) (-517) (-734) (-788) (-989 |#1| |#2| |#3|)) (T -1182))
+((-2756 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-591 *8)) (-5 *3 (-1 (-108) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *1 (-1182 *5 *6 *7 *8)))) (-2756 (*1 *1 *2) (|partial| -12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-1182 *3 *4 *5 *6)))) (-2222 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-591 *8)) (-5 *3 (-1 (-108) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *1 (-1182 *5 *6 *7 *8)))) (-2222 (*1 *1 *2) (|partial| -12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-1182 *3 *4 *5 *6)))) (-3773 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-591 *9)) (-5 *4 (-1 (-108) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-989 *6 *7 *8)) (-4 *6 (-517)) (-4 *7 (-734)) (-4 *8 (-788)) (-5 *2 (-591 (-1182 *6 *7 *8 *9))) (-5 *1 (-1182 *6 *7 *8 *9)))) (-3773 (*1 *2 *3) (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 (-1182 *4 *5 *6 *7))) (-5 *1 (-1182 *4 *5 *6 *7)))))
+(-13 (-1119 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2756 ((-3 $ "failed") (-591 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2756 ((-3 $ "failed") (-591 |#4|))) (-15 -2222 ((-3 $ "failed") (-591 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2222 ((-3 $ "failed") (-591 |#4|))) (-15 -3773 ((-591 $) (-591 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3773 ((-591 $) (-591 |#4|)))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-2157 (((-3 $ "failed") $ $) 19)) (-3798 (($) 17 T CONST)) (-4163 (((-3 $ "failed") $) 34)) (-2824 (((-108) $) 31)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#1|) 38)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
+(((-1183 |#1|) (-131) (-975)) (T -1183))
+((-3022 (*1 *1 *2) (-12 (-4 *1 (-1183 *2)) (-4 *2 (-975)))))
+(-13 (-975) (-107 |t#1| |t#1|) (-10 -8 (-15 -3022 ($ |t#1|)) (IF (|has| |t#1| (-160)) (-6 (-37 |t#1|)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) |has| |#1| (-160)) ((-97) . T) ((-107 |#1| |#1|) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 |#1|) . T) ((-593 $) . T) ((-659 |#1|) |has| |#1| (-160)) ((-668) . T) ((-981 |#1|) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T))
+((-3008 (((-108) $ $) 60)) (-1800 (((-108) $) NIL)) (-3531 (((-591 |#1|) $) 45)) (-1931 (($ $ (-712)) 39)) (-2157 (((-3 $ "failed") $ $) NIL)) (-2544 (($ $ (-712)) 18 (|has| |#2| (-160))) (($ $ $) 19 (|has| |#2| (-160)))) (-3798 (($) NIL T CONST)) (-1584 (($ $ $) 63) (($ $ (-760 |#1|)) 49) (($ $ |#1|) 53)) (-1251 (((-3 (-760 |#1|) "failed") $) NIL)) (-3528 (((-760 |#1|) $) NIL)) (-1710 (($ $) 32)) (-4163 (((-3 $ "failed") $) NIL)) (-3363 (((-108) $) NIL)) (-1711 (($ $) NIL)) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) NIL)) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-2548 (($ (-760 |#1|) |#2|) 31)) (-2457 (($ $) 33)) (-1655 (((-2 (|:| |k| (-760 |#1|)) (|:| |c| |#2|)) $) 12)) (-3110 (((-760 |#1|) $) NIL)) (-2024 (((-760 |#1|) $) 34)) (-1340 (($ (-1 |#2| |#2|) $) NIL)) (-2811 (($ $ $) 62) (($ $ (-760 |#1|)) 51) (($ $ |#1|) 55)) (-3865 (((-2 (|:| |k| (-760 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1661 (((-760 |#1|) $) 28)) (-1678 ((|#2| $) 30)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1316 (((-712) $) 36)) (-1246 (((-108) $) 40)) (-2058 ((|#2| $) NIL)) (-3022 (((-796) $) NIL) (($ (-760 |#1|)) 24) (($ |#1|) 25) (($ |#2|) NIL) (($ (-525)) NIL)) (-3654 (((-591 |#2|) $) NIL)) (-2560 ((|#2| $ (-760 |#1|)) NIL)) (-3482 ((|#2| $ $) 65) ((|#2| $ (-760 |#1|)) NIL)) (-2128 (((-712)) NIL)) (-3710 (($ $ (-712)) NIL) (($ $ (-854)) NIL)) (-4191 (($) 13 T CONST)) (-4197 (($) 15 T CONST)) (-1650 (((-591 (-2 (|:| |k| (-760 |#1|)) (|:| |c| |#2|))) $) NIL)) (-4096 (((-108) $ $) 38)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) 22)) (** (($ $ (-712)) NIL) (($ $ (-854)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ |#2| $) 21) (($ $ |#2|) 61) (($ |#2| (-760 |#1|)) NIL) (($ |#1| $) 27) (($ $ $) NIL)))
+(((-1184 |#1| |#2|) (-13 (-360 |#2| (-760 |#1|)) (-1190 |#1| |#2|)) (-788) (-975)) (T -1184))
+NIL
+(-13 (-360 |#2| (-760 |#1|)) (-1190 |#1| |#2|))
+((-1488 ((|#3| |#3| (-712)) 23)) (-1409 ((|#3| |#3| (-712)) 28)) (-2954 ((|#3| |#3| |#3| (-712)) 29)))
+(((-1185 |#1| |#2| |#3|) (-10 -7 (-15 -1409 (|#3| |#3| (-712))) (-15 -1488 (|#3| |#3| (-712))) (-15 -2954 (|#3| |#3| |#3| (-712)))) (-13 (-975) (-659 (-385 (-525)))) (-788) (-1190 |#2| |#1|)) (T -1185))
+((-2954 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-712)) (-4 *4 (-13 (-975) (-659 (-385 (-525))))) (-4 *5 (-788)) (-5 *1 (-1185 *4 *5 *2)) (-4 *2 (-1190 *5 *4)))) (-1488 (*1 *2 *2 *3) (-12 (-5 *3 (-712)) (-4 *4 (-13 (-975) (-659 (-385 (-525))))) (-4 *5 (-788)) (-5 *1 (-1185 *4 *5 *2)) (-4 *2 (-1190 *5 *4)))) (-1409 (*1 *2 *2 *3) (-12 (-5 *3 (-712)) (-4 *4 (-13 (-975) (-659 (-385 (-525))))) (-4 *5 (-788)) (-5 *1 (-1185 *4 *5 *2)) (-4 *2 (-1190 *5 *4)))))
+(-10 -7 (-15 -1409 (|#3| |#3| (-712))) (-15 -1488 (|#3| |#3| (-712))) (-15 -2954 (|#3| |#3| |#3| (-712))))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3531 (((-591 |#1|) $) 40)) (-2157 (((-3 $ "failed") $ $) 19)) (-2544 (($ $ $) 43 (|has| |#2| (-160))) (($ $ (-712)) 42 (|has| |#2| (-160)))) (-3798 (($) 17 T CONST)) (-1584 (($ $ |#1|) 54) (($ $ (-760 |#1|)) 53) (($ $ $) 52)) (-1251 (((-3 (-760 |#1|) "failed") $) 64)) (-3528 (((-760 |#1|) $) 63)) (-4163 (((-3 $ "failed") $) 34)) (-3363 (((-108) $) 45)) (-1711 (($ $) 44)) (-2824 (((-108) $) 31)) (-2202 (((-108) $) 50)) (-2548 (($ (-760 |#1|) |#2|) 51)) (-2457 (($ $) 49)) (-1655 (((-2 (|:| |k| (-760 |#1|)) (|:| |c| |#2|)) $) 60)) (-3110 (((-760 |#1|) $) 61)) (-1340 (($ (-1 |#2| |#2|) $) 41)) (-2811 (($ $ |#1|) 57) (($ $ (-760 |#1|)) 56) (($ $ $) 55)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-1246 (((-108) $) 47)) (-2058 ((|#2| $) 46)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#2|) 68) (($ (-760 |#1|)) 65) (($ |#1|) 48)) (-3482 ((|#2| $ (-760 |#1|)) 59) ((|#2| $ $) 58)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ |#2| $) 67) (($ $ |#2|) 66) (($ |#1| $) 62)))
+(((-1186 |#1| |#2|) (-131) (-788) (-975)) (T -1186))
+((* (*1 *1 *1 *2) (-12 (-4 *1 (-1186 *3 *2)) (-4 *3 (-788)) (-4 *2 (-975)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975)))) (-3110 (*1 *2 *1) (-12 (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)) (-5 *2 (-760 *3)))) (-1655 (*1 *2 *1) (-12 (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)) (-5 *2 (-2 (|:| |k| (-760 *3)) (|:| |c| *4))))) (-3482 (*1 *2 *1 *3) (-12 (-5 *3 (-760 *4)) (-4 *1 (-1186 *4 *2)) (-4 *4 (-788)) (-4 *2 (-975)))) (-3482 (*1 *2 *1 *1) (-12 (-4 *1 (-1186 *3 *2)) (-4 *3 (-788)) (-4 *2 (-975)))) (-2811 (*1 *1 *1 *2) (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975)))) (-2811 (*1 *1 *1 *2) (-12 (-5 *2 (-760 *3)) (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)))) (-2811 (*1 *1 *1 *1) (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975)))) (-1584 (*1 *1 *1 *2) (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975)))) (-1584 (*1 *1 *1 *2) (-12 (-5 *2 (-760 *3)) (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)))) (-1584 (*1 *1 *1 *1) (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975)))) (-2548 (*1 *1 *2 *3) (-12 (-5 *2 (-760 *4)) (-4 *4 (-788)) (-4 *1 (-1186 *4 *3)) (-4 *3 (-975)))) (-2202 (*1 *2 *1) (-12 (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)) (-5 *2 (-108)))) (-2457 (*1 *1 *1) (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975)))) (-3022 (*1 *1 *2) (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975)))) (-1246 (*1 *2 *1) (-12 (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)) (-5 *2 (-108)))) (-2058 (*1 *2 *1) (-12 (-4 *1 (-1186 *3 *2)) (-4 *3 (-788)) (-4 *2 (-975)))) (-3363 (*1 *2 *1) (-12 (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)) (-5 *2 (-108)))) (-1711 (*1 *1 *1) (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975)))) (-2544 (*1 *1 *1 *1) (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975)) (-4 *3 (-160)))) (-2544 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)) (-4 *4 (-160)))) (-1340 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)))) (-3531 (*1 *2 *1) (-12 (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)) (-5 *2 (-591 *3)))))
+(-13 (-975) (-1183 |t#2|) (-966 (-760 |t#1|)) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#2|)) (-15 -3110 ((-760 |t#1|) $)) (-15 -1655 ((-2 (|:| |k| (-760 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -3482 (|t#2| $ (-760 |t#1|))) (-15 -3482 (|t#2| $ $)) (-15 -2811 ($ $ |t#1|)) (-15 -2811 ($ $ (-760 |t#1|))) (-15 -2811 ($ $ $)) (-15 -1584 ($ $ |t#1|)) (-15 -1584 ($ $ (-760 |t#1|))) (-15 -1584 ($ $ $)) (-15 -2548 ($ (-760 |t#1|) |t#2|)) (-15 -2202 ((-108) $)) (-15 -2457 ($ $)) (-15 -3022 ($ |t#1|)) (-15 -1246 ((-108) $)) (-15 -2058 (|t#2| $)) (-15 -3363 ((-108) $)) (-15 -1711 ($ $)) (IF (|has| |t#2| (-160)) (PROGN (-15 -2544 ($ $ $)) (-15 -2544 ($ $ (-712)))) |%noBranch|) (-15 -1340 ($ (-1 |t#2| |t#2|) $)) (-15 -3531 ((-591 |t#1|) $)) (IF (|has| |t#2| (-6 -4243)) (-6 -4243) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#2|) |has| |#2| (-160)) ((-97) . T) ((-107 |#2| |#2|) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 |#2|) . T) ((-593 $) . T) ((-659 |#2|) |has| |#2| (-160)) ((-668) . T) ((-966 (-760 |#1|)) . T) ((-981 |#2|) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1183 |#2|) . T))
+((-2144 (((-108) $) 15)) (-1884 (((-108) $) 14)) (-4227 (($ $) 19) (($ $ (-712)) 20)))
+(((-1187 |#1| |#2|) (-10 -8 (-15 -4227 (|#1| |#1| (-712))) (-15 -4227 (|#1| |#1|)) (-15 -2144 ((-108) |#1|)) (-15 -1884 ((-108) |#1|))) (-1188 |#2|) (-341)) (T -1187))
+NIL
+(-10 -8 (-15 -4227 (|#1| |#1| (-712))) (-15 -4227 (|#1| |#1|)) (-15 -2144 ((-108) |#1|)) (-15 -1884 ((-108) |#1|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3450 (((-2 (|:| -2999 $) (|:| -4237 $) (|:| |associate| $)) $) 41)) (-3706 (($ $) 40)) (-1715 (((-108) $) 38)) (-2144 (((-108) $) 94)) (-2834 (((-712)) 90)) (-2157 (((-3 $ "failed") $ $) 19)) (-1291 (($ $) 73)) (-2827 (((-396 $) $) 72)) (-1947 (((-108) $ $) 59)) (-3798 (($) 17 T CONST)) (-1251 (((-3 |#1| "failed") $) 101)) (-3528 ((|#1| $) 100)) (-2129 (($ $ $) 55)) (-4163 (((-3 $ "failed") $) 34)) (-2110 (($ $ $) 56)) (-3856 (((-2 (|:| -3482 (-591 $)) (|:| -3857 $)) (-591 $)) 51)) (-2299 (($ $ (-712)) 87 (-3321 (|has| |#1| (-136)) (|has| |#1| (-346)))) (($ $) 86 (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2744 (((-108) $) 71)) (-3873 (((-774 (-854)) $) 84 (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2824 (((-108) $) 31)) (-1758 (((-3 (-591 $) "failed") (-591 $) $) 52)) (-1356 (($ $ $) 46) (($ (-591 $)) 45)) (-2339 (((-1072) $) 9)) (-1622 (($ $) 70)) (-1476 (((-108) $) 93)) (-2047 (((-1036) $) 10)) (-2526 (((-1085 $) (-1085 $) (-1085 $)) 44)) (-1399 (($ $ $) 48) (($ (-591 $)) 47)) (-1348 (((-396 $) $) 74)) (-2163 (((-774 (-854))) 91)) (-3375 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3857 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2089 (((-3 $ "failed") $ $) 42)) (-4095 (((-3 (-591 $) "failed") (-591 $) $) 50)) (-1712 (((-712) $) 58)) (-3999 (((-2 (|:| -2963 $) (|:| -3407 $)) $ $) 57)) (-2953 (((-3 (-712) "failed") $ $) 85 (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-4224 (((-128)) 99)) (-1316 (((-774 (-854)) $) 92)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ $) 43) (($ (-385 (-525))) 65) (($ |#1|) 102)) (-1437 (((-3 $ "failed") $) 83 (-3321 (|has| |#1| (-136)) (|has| |#1| (-346))))) (-2128 (((-712)) 29)) (-2495 (((-108) $ $) 39)) (-1884 (((-108) $) 95)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33) (($ $ (-525)) 69)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4227 (($ $) 89 (|has| |#1| (-346))) (($ $ (-712)) 88 (|has| |#1| (-346)))) (-4096 (((-108) $ $) 6)) (-4173 (($ $ $) 64) (($ $ |#1|) 98)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32) (($ $ (-525)) 68)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ $ (-385 (-525))) 67) (($ (-385 (-525)) $) 66) (($ $ |#1|) 97) (($ |#1| $) 96)))
+(((-1188 |#1|) (-131) (-341)) (T -1188))
+((-1884 (*1 *2 *1) (-12 (-4 *1 (-1188 *3)) (-4 *3 (-341)) (-5 *2 (-108)))) (-2144 (*1 *2 *1) (-12 (-4 *1 (-1188 *3)) (-4 *3 (-341)) (-5 *2 (-108)))) (-1476 (*1 *2 *1) (-12 (-4 *1 (-1188 *3)) (-4 *3 (-341)) (-5 *2 (-108)))) (-1316 (*1 *2 *1) (-12 (-4 *1 (-1188 *3)) (-4 *3 (-341)) (-5 *2 (-774 (-854))))) (-2163 (*1 *2) (-12 (-4 *1 (-1188 *3)) (-4 *3 (-341)) (-5 *2 (-774 (-854))))) (-2834 (*1 *2) (-12 (-4 *1 (-1188 *3)) (-4 *3 (-341)) (-5 *2 (-712)))) (-4227 (*1 *1 *1) (-12 (-4 *1 (-1188 *2)) (-4 *2 (-341)) (-4 *2 (-346)))) (-4227 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-1188 *3)) (-4 *3 (-341)) (-4 *3 (-346)))))
+(-13 (-341) (-966 |t#1|) (-1178 |t#1|) (-10 -8 (IF (|has| |t#1| (-138)) (-6 (-138)) |%noBranch|) (IF (|has| |t#1| (-136)) (-6 (-380)) |%noBranch|) (-15 -1884 ((-108) $)) (-15 -2144 ((-108) $)) (-15 -1476 ((-108) $)) (-15 -1316 ((-774 (-854)) $)) (-15 -2163 ((-774 (-854)))) (-15 -2834 ((-712))) (IF (|has| |t#1| (-346)) (PROGN (-6 (-380)) (-15 -4227 ($ $)) (-15 -4227 ($ $ (-712)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-385 (-525))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-126) . T) ((-136) -3321 (|has| |#1| (-346)) (|has| |#1| (-136))) ((-138) |has| |#1| (-138)) ((-565 (-796)) . T) ((-160) . T) ((-223) . T) ((-269) . T) ((-286) . T) ((-341) . T) ((-380) -3321 (|has| |#1| (-346)) (|has| |#1| (-136))) ((-429) . T) ((-517) . T) ((-593 #0#) . T) ((-593 |#1|) . T) ((-593 $) . T) ((-659 #0#) . T) ((-659 |#1|) . T) ((-659 $) . T) ((-668) . T) ((-853) . T) ((-966 |#1|) . T) ((-981 #0#) . T) ((-981 |#1|) . T) ((-981 $) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1129) . T) ((-1178 |#1|) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3531 (((-591 |#1|) $) 86)) (-1931 (($ $ (-712)) 89)) (-2157 (((-3 $ "failed") $ $) NIL)) (-2544 (($ $ $) NIL (|has| |#2| (-160))) (($ $ (-712)) NIL (|has| |#2| (-160)))) (-3798 (($) NIL T CONST)) (-1584 (($ $ |#1|) NIL) (($ $ (-760 |#1|)) NIL) (($ $ $) NIL)) (-1251 (((-3 (-760 |#1|) "failed") $) NIL) (((-3 (-826 |#1|) "failed") $) NIL)) (-3528 (((-760 |#1|) $) NIL) (((-826 |#1|) $) NIL)) (-1710 (($ $) 88)) (-4163 (((-3 $ "failed") $) NIL)) (-3363 (((-108) $) 77)) (-1711 (($ $) 81)) (-3783 (($ $ $ (-712)) 90)) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) NIL)) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-2548 (($ (-760 |#1|) |#2|) NIL) (($ (-826 |#1|) |#2|) 26)) (-2457 (($ $) 103)) (-1655 (((-2 (|:| |k| (-760 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3110 (((-760 |#1|) $) NIL)) (-2024 (((-760 |#1|) $) NIL)) (-1340 (($ (-1 |#2| |#2|) $) NIL)) (-2811 (($ $ |#1|) NIL) (($ $ (-760 |#1|)) NIL) (($ $ $) NIL)) (-1488 (($ $ (-712)) 97 (|has| |#2| (-659 (-385 (-525)))))) (-3865 (((-2 (|:| |k| (-826 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1661 (((-826 |#1|) $) 70)) (-1678 ((|#2| $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1409 (($ $ (-712)) 94 (|has| |#2| (-659 (-385 (-525)))))) (-1316 (((-712) $) 87)) (-1246 (((-108) $) 71)) (-2058 ((|#2| $) 75)) (-3022 (((-796) $) 57) (($ (-525)) NIL) (($ |#2|) 51) (($ (-760 |#1|)) NIL) (($ |#1|) 59) (($ (-826 |#1|)) NIL) (($ (-609 |#1| |#2|)) 43) (((-1184 |#1| |#2|) $) 64) (((-1193 |#1| |#2|) $) 69)) (-3654 (((-591 |#2|) $) NIL)) (-2560 ((|#2| $ (-826 |#1|)) NIL)) (-3482 ((|#2| $ (-760 |#1|)) NIL) ((|#2| $ $) NIL)) (-2128 (((-712)) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 21 T CONST)) (-4197 (($) 25 T CONST)) (-1650 (((-591 (-2 (|:| |k| (-826 |#1|)) (|:| |c| |#2|))) $) NIL)) (-3769 (((-3 (-609 |#1| |#2|) "failed") $) 102)) (-4096 (((-108) $ $) 65)) (-4164 (($ $) 96) (($ $ $) 95)) (-4156 (($ $ $) 20)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 44) (($ |#2| $) 19) (($ $ |#2|) NIL) (($ |#1| $) NIL) (($ |#2| (-826 |#1|)) NIL)))
+(((-1189 |#1| |#2|) (-13 (-1190 |#1| |#2|) (-360 |#2| (-826 |#1|)) (-10 -8 (-15 -3022 ($ (-609 |#1| |#2|))) (-15 -3022 ((-1184 |#1| |#2|) $)) (-15 -3022 ((-1193 |#1| |#2|) $)) (-15 -3769 ((-3 (-609 |#1| |#2|) "failed") $)) (-15 -3783 ($ $ $ (-712))) (IF (|has| |#2| (-659 (-385 (-525)))) (PROGN (-15 -1409 ($ $ (-712))) (-15 -1488 ($ $ (-712)))) |%noBranch|))) (-788) (-160)) (T -1189))
+((-3022 (*1 *1 *2) (-12 (-5 *2 (-609 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160)) (-5 *1 (-1189 *3 *4)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-1184 *3 *4)) (-5 *1 (-1189 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-1193 *3 *4)) (-5 *1 (-1189 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160)))) (-3769 (*1 *2 *1) (|partial| -12 (-5 *2 (-609 *3 *4)) (-5 *1 (-1189 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160)))) (-3783 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-1189 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160)))) (-1409 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-1189 *3 *4)) (-4 *4 (-659 (-385 (-525)))) (-4 *3 (-788)) (-4 *4 (-160)))) (-1488 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-1189 *3 *4)) (-4 *4 (-659 (-385 (-525)))) (-4 *3 (-788)) (-4 *4 (-160)))))
+(-13 (-1190 |#1| |#2|) (-360 |#2| (-826 |#1|)) (-10 -8 (-15 -3022 ($ (-609 |#1| |#2|))) (-15 -3022 ((-1184 |#1| |#2|) $)) (-15 -3022 ((-1193 |#1| |#2|) $)) (-15 -3769 ((-3 (-609 |#1| |#2|) "failed") $)) (-15 -3783 ($ $ $ (-712))) (IF (|has| |#2| (-659 (-385 (-525)))) (PROGN (-15 -1409 ($ $ (-712))) (-15 -1488 ($ $ (-712)))) |%noBranch|)))
+((-3008 (((-108) $ $) 7)) (-1800 (((-108) $) 16)) (-3531 (((-591 |#1|) $) 40)) (-1931 (($ $ (-712)) 73)) (-2157 (((-3 $ "failed") $ $) 19)) (-2544 (($ $ $) 43 (|has| |#2| (-160))) (($ $ (-712)) 42 (|has| |#2| (-160)))) (-3798 (($) 17 T CONST)) (-1584 (($ $ |#1|) 54) (($ $ (-760 |#1|)) 53) (($ $ $) 52)) (-1251 (((-3 (-760 |#1|) "failed") $) 64)) (-3528 (((-760 |#1|) $) 63)) (-4163 (((-3 $ "failed") $) 34)) (-3363 (((-108) $) 45)) (-1711 (($ $) 44)) (-2824 (((-108) $) 31)) (-2202 (((-108) $) 50)) (-2548 (($ (-760 |#1|) |#2|) 51)) (-2457 (($ $) 49)) (-1655 (((-2 (|:| |k| (-760 |#1|)) (|:| |c| |#2|)) $) 60)) (-3110 (((-760 |#1|) $) 61)) (-2024 (((-760 |#1|) $) 75)) (-1340 (($ (-1 |#2| |#2|) $) 41)) (-2811 (($ $ |#1|) 57) (($ $ (-760 |#1|)) 56) (($ $ $) 55)) (-2339 (((-1072) $) 9)) (-2047 (((-1036) $) 10)) (-1316 (((-712) $) 74)) (-1246 (((-108) $) 47)) (-2058 ((|#2| $) 46)) (-3022 (((-796) $) 11) (($ (-525)) 28) (($ |#2|) 68) (($ (-760 |#1|)) 65) (($ |#1|) 48)) (-3482 ((|#2| $ (-760 |#1|)) 59) ((|#2| $ $) 58)) (-2128 (((-712)) 29)) (-3710 (($ $ (-854)) 26) (($ $ (-712)) 33)) (-4191 (($) 18 T CONST)) (-4197 (($) 30 T CONST)) (-4096 (((-108) $ $) 6)) (-4164 (($ $) 22) (($ $ $) 21)) (-4156 (($ $ $) 14)) (** (($ $ (-854)) 25) (($ $ (-712)) 32)) (* (($ (-854) $) 13) (($ (-712) $) 15) (($ (-525) $) 20) (($ $ $) 24) (($ |#2| $) 67) (($ $ |#2|) 66) (($ |#1| $) 62)))
+(((-1190 |#1| |#2|) (-131) (-788) (-975)) (T -1190))
+((-2024 (*1 *2 *1) (-12 (-4 *1 (-1190 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)) (-5 *2 (-760 *3)))) (-1316 (*1 *2 *1) (-12 (-4 *1 (-1190 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)) (-5 *2 (-712)))) (-1931 (*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-1190 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)))))
+(-13 (-1186 |t#1| |t#2|) (-10 -8 (-15 -2024 ((-760 |t#1|) $)) (-15 -1316 ((-712) $)) (-15 -1931 ($ $ (-712)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#2|) |has| |#2| (-160)) ((-97) . T) ((-107 |#2| |#2|) . T) ((-126) . T) ((-565 (-796)) . T) ((-593 |#2|) . T) ((-593 $) . T) ((-659 |#2|) |has| |#2| (-160)) ((-668) . T) ((-966 (-760 |#1|)) . T) ((-981 |#2|) . T) ((-975) . T) ((-982) . T) ((-1030) . T) ((-1018) . T) ((-1183 |#2|) . T) ((-1186 |#1| |#2|) . T))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-3531 (((-591 (-1089)) $) NIL)) (-1628 (($ (-1184 (-1089) |#1|)) NIL)) (-1931 (($ $ (-712)) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-2544 (($ $ $) NIL (|has| |#1| (-160))) (($ $ (-712)) NIL (|has| |#1| (-160)))) (-3798 (($) NIL T CONST)) (-1584 (($ $ (-1089)) NIL) (($ $ (-760 (-1089))) NIL) (($ $ $) NIL)) (-1251 (((-3 (-760 (-1089)) "failed") $) NIL)) (-3528 (((-760 (-1089)) $) NIL)) (-4163 (((-3 $ "failed") $) NIL)) (-3363 (((-108) $) NIL)) (-1711 (($ $) NIL)) (-2824 (((-108) $) NIL)) (-2202 (((-108) $) NIL)) (-2548 (($ (-760 (-1089)) |#1|) NIL)) (-2457 (($ $) NIL)) (-1655 (((-2 (|:| |k| (-760 (-1089))) (|:| |c| |#1|)) $) NIL)) (-3110 (((-760 (-1089)) $) NIL)) (-2024 (((-760 (-1089)) $) NIL)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-2811 (($ $ (-1089)) NIL) (($ $ (-760 (-1089))) NIL) (($ $ $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-4093 (((-1184 (-1089) |#1|) $) NIL)) (-1316 (((-712) $) NIL)) (-1246 (((-108) $) NIL)) (-2058 ((|#1| $) NIL)) (-3022 (((-796) $) NIL) (($ (-525)) NIL) (($ |#1|) NIL) (($ (-760 (-1089))) NIL) (($ (-1089)) NIL)) (-3482 ((|#1| $ (-760 (-1089))) NIL) ((|#1| $ $) NIL)) (-2128 (((-712)) NIL)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) NIL T CONST)) (-2982 (((-591 (-2 (|:| |k| (-1089)) (|:| |c| $))) $) NIL)) (-4197 (($) NIL T CONST)) (-4096 (((-108) $ $) NIL)) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) NIL)) (** (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-1089) $) NIL)))
+(((-1191 |#1|) (-13 (-1190 (-1089) |#1|) (-10 -8 (-15 -4093 ((-1184 (-1089) |#1|) $)) (-15 -1628 ($ (-1184 (-1089) |#1|))) (-15 -2982 ((-591 (-2 (|:| |k| (-1089)) (|:| |c| $))) $)))) (-975)) (T -1191))
+((-4093 (*1 *2 *1) (-12 (-5 *2 (-1184 (-1089) *3)) (-5 *1 (-1191 *3)) (-4 *3 (-975)))) (-1628 (*1 *1 *2) (-12 (-5 *2 (-1184 (-1089) *3)) (-4 *3 (-975)) (-5 *1 (-1191 *3)))) (-2982 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| |k| (-1089)) (|:| |c| (-1191 *3))))) (-5 *1 (-1191 *3)) (-4 *3 (-975)))))
+(-13 (-1190 (-1089) |#1|) (-10 -8 (-15 -4093 ((-1184 (-1089) |#1|) $)) (-15 -1628 ($ (-1184 (-1089) |#1|))) (-15 -2982 ((-591 (-2 (|:| |k| (-1089)) (|:| |c| $))) $))))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) NIL)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3798 (($) NIL T CONST)) (-1251 (((-3 |#2| "failed") $) NIL)) (-3528 ((|#2| $) NIL)) (-1710 (($ $) NIL)) (-4163 (((-3 $ "failed") $) 36)) (-3363 (((-108) $) 30)) (-1711 (($ $) 32)) (-2824 (((-108) $) NIL)) (-4010 (((-712) $) NIL)) (-1922 (((-591 $) $) NIL)) (-2202 (((-108) $) NIL)) (-2548 (($ |#2| |#1|) NIL)) (-3110 ((|#2| $) 19)) (-2024 ((|#2| $) 16)) (-1340 (($ (-1 |#1| |#1|) $) NIL)) (-3865 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-1661 ((|#2| $) NIL)) (-1678 ((|#1| $) NIL)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-1246 (((-108) $) 27)) (-2058 ((|#1| $) 28)) (-3022 (((-796) $) 55) (($ (-525)) 40) (($ |#1|) 35) (($ |#2|) NIL)) (-3654 (((-591 |#1|) $) NIL)) (-2560 ((|#1| $ |#2|) NIL)) (-3482 ((|#1| $ |#2|) 24)) (-2128 (((-712)) 14)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 25 T CONST)) (-4197 (($) 11 T CONST)) (-1650 (((-591 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-4096 (((-108) $ $) 26)) (-4173 (($ $ |#1|) 57 (|has| |#1| (-341)))) (-4164 (($ $) NIL) (($ $ $) NIL)) (-4156 (($ $ $) 44)) (** (($ $ (-854)) NIL) (($ $ (-712)) 46)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) NIL) (($ $ $) 45) (($ |#1| $) 41) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-4045 (((-712) $) 15)))
+(((-1192 |#1| |#2|) (-13 (-975) (-1183 |#1|) (-360 |#1| |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -4045 ((-712) $)) (-15 -3022 ($ |#2|)) (-15 -2024 (|#2| $)) (-15 -3110 (|#2| $)) (-15 -1710 ($ $)) (-15 -3482 (|#1| $ |#2|)) (-15 -1246 ((-108) $)) (-15 -2058 (|#1| $)) (-15 -3363 ((-108) $)) (-15 -1711 ($ $)) (-15 -1340 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-341)) (-15 -4173 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4243)) (-6 -4243) |%noBranch|) (IF (|has| |#1| (-6 -4247)) (-6 -4247) |%noBranch|) (IF (|has| |#1| (-6 -4248)) (-6 -4248) |%noBranch|))) (-975) (-784)) (T -1192))
+((* (*1 *1 *1 *2) (-12 (-5 *1 (-1192 *2 *3)) (-4 *2 (-975)) (-4 *3 (-784)))) (-1710 (*1 *1 *1) (-12 (-5 *1 (-1192 *2 *3)) (-4 *2 (-975)) (-4 *3 (-784)))) (-1340 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-975)) (-5 *1 (-1192 *3 *4)) (-4 *4 (-784)))) (-3022 (*1 *1 *2) (-12 (-5 *1 (-1192 *3 *2)) (-4 *3 (-975)) (-4 *2 (-784)))) (-4045 (*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-1192 *3 *4)) (-4 *3 (-975)) (-4 *4 (-784)))) (-2024 (*1 *2 *1) (-12 (-4 *2 (-784)) (-5 *1 (-1192 *3 *2)) (-4 *3 (-975)))) (-3110 (*1 *2 *1) (-12 (-4 *2 (-784)) (-5 *1 (-1192 *3 *2)) (-4 *3 (-975)))) (-3482 (*1 *2 *1 *3) (-12 (-4 *2 (-975)) (-5 *1 (-1192 *2 *3)) (-4 *3 (-784)))) (-1246 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1192 *3 *4)) (-4 *3 (-975)) (-4 *4 (-784)))) (-2058 (*1 *2 *1) (-12 (-4 *2 (-975)) (-5 *1 (-1192 *2 *3)) (-4 *3 (-784)))) (-3363 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1192 *3 *4)) (-4 *3 (-975)) (-4 *4 (-784)))) (-1711 (*1 *1 *1) (-12 (-5 *1 (-1192 *2 *3)) (-4 *2 (-975)) (-4 *3 (-784)))) (-4173 (*1 *1 *1 *2) (-12 (-5 *1 (-1192 *2 *3)) (-4 *2 (-341)) (-4 *2 (-975)) (-4 *3 (-784)))))
+(-13 (-975) (-1183 |#1|) (-360 |#1| |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -4045 ((-712) $)) (-15 -3022 ($ |#2|)) (-15 -2024 (|#2| $)) (-15 -3110 (|#2| $)) (-15 -1710 ($ $)) (-15 -3482 (|#1| $ |#2|)) (-15 -1246 ((-108) $)) (-15 -2058 (|#1| $)) (-15 -3363 ((-108) $)) (-15 -1711 ($ $)) (-15 -1340 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-341)) (-15 -4173 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4243)) (-6 -4243) |%noBranch|) (IF (|has| |#1| (-6 -4247)) (-6 -4247) |%noBranch|) (IF (|has| |#1| (-6 -4248)) (-6 -4248) |%noBranch|)))
+((-3008 (((-108) $ $) 26)) (-1800 (((-108) $) NIL)) (-3531 (((-591 |#1|) $) 120)) (-1628 (($ (-1184 |#1| |#2|)) 44)) (-1931 (($ $ (-712)) 32)) (-2157 (((-3 $ "failed") $ $) NIL)) (-2544 (($ $ $) 48 (|has| |#2| (-160))) (($ $ (-712)) 46 (|has| |#2| (-160)))) (-3798 (($) NIL T CONST)) (-1584 (($ $ |#1|) 102) (($ $ (-760 |#1|)) 103) (($ $ $) 25)) (-1251 (((-3 (-760 |#1|) "failed") $) NIL)) (-3528 (((-760 |#1|) $) NIL)) (-4163 (((-3 $ "failed") $) 110)) (-3363 (((-108) $) 105)) (-1711 (($ $) 106)) (-2824 (((-108) $) NIL)) (-2202 (((-108) $) NIL)) (-2548 (($ (-760 |#1|) |#2|) 19)) (-2457 (($ $) NIL)) (-1655 (((-2 (|:| |k| (-760 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3110 (((-760 |#1|) $) 111)) (-2024 (((-760 |#1|) $) 114)) (-1340 (($ (-1 |#2| |#2|) $) 119)) (-2811 (($ $ |#1|) 100) (($ $ (-760 |#1|)) 101) (($ $ $) 56)) (-2339 (((-1072) $) NIL)) (-2047 (((-1036) $) NIL)) (-4093 (((-1184 |#1| |#2|) $) 84)) (-1316 (((-712) $) 117)) (-1246 (((-108) $) 70)) (-2058 ((|#2| $) 28)) (-3022 (((-796) $) 63) (($ (-525)) 77) (($ |#2|) 74) (($ (-760 |#1|)) 17) (($ |#1|) 73)) (-3482 ((|#2| $ (-760 |#1|)) 104) ((|#2| $ $) 27)) (-2128 (((-712)) 108)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 14 T CONST)) (-2982 (((-591 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 53)) (-4197 (($) 29 T CONST)) (-4096 (((-108) $ $) 13)) (-4164 (($ $) 88) (($ $ $) 91)) (-4156 (($ $ $) 55)) (** (($ $ (-854)) NIL) (($ $ (-712)) 49)) (* (($ (-854) $) NIL) (($ (-712) $) 47) (($ (-525) $) 94) (($ $ $) 21) (($ |#2| $) 18) (($ $ |#2|) 20) (($ |#1| $) 82)))
+(((-1193 |#1| |#2|) (-13 (-1190 |#1| |#2|) (-10 -8 (-15 -4093 ((-1184 |#1| |#2|) $)) (-15 -1628 ($ (-1184 |#1| |#2|))) (-15 -2982 ((-591 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-788) (-975)) (T -1193))
+((-4093 (*1 *2 *1) (-12 (-5 *2 (-1184 *3 *4)) (-5 *1 (-1193 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)))) (-1628 (*1 *1 *2) (-12 (-5 *2 (-1184 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)) (-5 *1 (-1193 *3 *4)))) (-2982 (*1 *2 *1) (-12 (-5 *2 (-591 (-2 (|:| |k| *3) (|:| |c| (-1193 *3 *4))))) (-5 *1 (-1193 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)))))
+(-13 (-1190 |#1| |#2|) (-10 -8 (-15 -4093 ((-1184 |#1| |#2|) $)) (-15 -1628 ($ (-1184 |#1| |#2|))) (-15 -2982 ((-591 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
+((-2424 (((-591 (-1070 |#1|)) (-1 (-591 (-1070 |#1|)) (-591 (-1070 |#1|))) (-525)) 15) (((-1070 |#1|) (-1 (-1070 |#1|) (-1070 |#1|))) 11)))
+(((-1194 |#1|) (-10 -7 (-15 -2424 ((-1070 |#1|) (-1 (-1070 |#1|) (-1070 |#1|)))) (-15 -2424 ((-591 (-1070 |#1|)) (-1 (-591 (-1070 |#1|)) (-591 (-1070 |#1|))) (-525)))) (-1125)) (T -1194))
+((-2424 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-591 (-1070 *5)) (-591 (-1070 *5)))) (-5 *4 (-525)) (-5 *2 (-591 (-1070 *5))) (-5 *1 (-1194 *5)) (-4 *5 (-1125)))) (-2424 (*1 *2 *3) (-12 (-5 *3 (-1 (-1070 *4) (-1070 *4))) (-5 *2 (-1070 *4)) (-5 *1 (-1194 *4)) (-4 *4 (-1125)))))
+(-10 -7 (-15 -2424 ((-1070 |#1|) (-1 (-1070 |#1|) (-1070 |#1|)))) (-15 -2424 ((-591 (-1070 |#1|)) (-1 (-591 (-1070 |#1|)) (-591 (-1070 |#1|))) (-525))))
+((-3839 (((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|))) 148) (((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)) (-108)) 147) (((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)) (-108) (-108)) 146) (((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)) (-108) (-108) (-108)) 145) (((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-972 |#1| |#2|)) 130)) (-1338 (((-591 (-972 |#1| |#2|)) (-591 (-885 |#1|))) 72) (((-591 (-972 |#1| |#2|)) (-591 (-885 |#1|)) (-108)) 71) (((-591 (-972 |#1| |#2|)) (-591 (-885 |#1|)) (-108) (-108)) 70)) (-2827 (((-591 (-1060 |#1| (-497 (-798 |#3|)) (-798 |#3|) (-721 |#1| (-798 |#3|)))) (-972 |#1| |#2|)) 61)) (-4082 (((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|))) 115) (((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)) (-108)) 114) (((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)) (-108) (-108)) 113) (((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)) (-108) (-108) (-108)) 112) (((-591 (-591 (-953 (-385 |#1|)))) (-972 |#1| |#2|)) 107)) (-3518 (((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|))) 120) (((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)) (-108)) 119) (((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)) (-108) (-108)) 118) (((-591 (-591 (-953 (-385 |#1|)))) (-972 |#1| |#2|)) 117)) (-1408 (((-591 (-721 |#1| (-798 |#3|))) (-1060 |#1| (-497 (-798 |#3|)) (-798 |#3|) (-721 |#1| (-798 |#3|)))) 98) (((-1085 (-953 (-385 |#1|))) (-1085 |#1|)) 89) (((-885 (-953 (-385 |#1|))) (-721 |#1| (-798 |#3|))) 96) (((-885 (-953 (-385 |#1|))) (-885 |#1|)) 94) (((-721 |#1| (-798 |#3|)) (-721 |#1| (-798 |#2|))) 33)))
+(((-1195 |#1| |#2| |#3|) (-10 -7 (-15 -1338 ((-591 (-972 |#1| |#2|)) (-591 (-885 |#1|)) (-108) (-108))) (-15 -1338 ((-591 (-972 |#1| |#2|)) (-591 (-885 |#1|)) (-108))) (-15 -1338 ((-591 (-972 |#1| |#2|)) (-591 (-885 |#1|)))) (-15 -3839 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-972 |#1| |#2|))) (-15 -3839 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)) (-108) (-108) (-108))) (-15 -3839 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)) (-108) (-108))) (-15 -3839 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)) (-108))) (-15 -3839 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)))) (-15 -4082 ((-591 (-591 (-953 (-385 |#1|)))) (-972 |#1| |#2|))) (-15 -4082 ((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)) (-108) (-108) (-108))) (-15 -4082 ((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)) (-108) (-108))) (-15 -4082 ((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)) (-108))) (-15 -4082 ((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)))) (-15 -3518 ((-591 (-591 (-953 (-385 |#1|)))) (-972 |#1| |#2|))) (-15 -3518 ((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)) (-108) (-108))) (-15 -3518 ((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)) (-108))) (-15 -3518 ((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)))) (-15 -2827 ((-591 (-1060 |#1| (-497 (-798 |#3|)) (-798 |#3|) (-721 |#1| (-798 |#3|)))) (-972 |#1| |#2|))) (-15 -1408 ((-721 |#1| (-798 |#3|)) (-721 |#1| (-798 |#2|)))) (-15 -1408 ((-885 (-953 (-385 |#1|))) (-885 |#1|))) (-15 -1408 ((-885 (-953 (-385 |#1|))) (-721 |#1| (-798 |#3|)))) (-15 -1408 ((-1085 (-953 (-385 |#1|))) (-1085 |#1|))) (-15 -1408 ((-591 (-721 |#1| (-798 |#3|))) (-1060 |#1| (-497 (-798 |#3|)) (-798 |#3|) (-721 |#1| (-798 |#3|)))))) (-13 (-786) (-286) (-138) (-951)) (-591 (-1089)) (-591 (-1089))) (T -1195))
+((-1408 (*1 *2 *3) (-12 (-5 *3 (-1060 *4 (-497 (-798 *6)) (-798 *6) (-721 *4 (-798 *6)))) (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-14 *6 (-591 (-1089))) (-5 *2 (-591 (-721 *4 (-798 *6)))) (-5 *1 (-1195 *4 *5 *6)) (-14 *5 (-591 (-1089))))) (-1408 (*1 *2 *3) (-12 (-5 *3 (-1085 *4)) (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-1085 (-953 (-385 *4)))) (-5 *1 (-1195 *4 *5 *6)) (-14 *5 (-591 (-1089))) (-14 *6 (-591 (-1089))))) (-1408 (*1 *2 *3) (-12 (-5 *3 (-721 *4 (-798 *6))) (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-14 *6 (-591 (-1089))) (-5 *2 (-885 (-953 (-385 *4)))) (-5 *1 (-1195 *4 *5 *6)) (-14 *5 (-591 (-1089))))) (-1408 (*1 *2 *3) (-12 (-5 *3 (-885 *4)) (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-885 (-953 (-385 *4)))) (-5 *1 (-1195 *4 *5 *6)) (-14 *5 (-591 (-1089))) (-14 *6 (-591 (-1089))))) (-1408 (*1 *2 *3) (-12 (-5 *3 (-721 *4 (-798 *5))) (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-14 *5 (-591 (-1089))) (-5 *2 (-721 *4 (-798 *6))) (-5 *1 (-1195 *4 *5 *6)) (-14 *6 (-591 (-1089))))) (-2827 (*1 *2 *3) (-12 (-5 *3 (-972 *4 *5)) (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-14 *5 (-591 (-1089))) (-5 *2 (-591 (-1060 *4 (-497 (-798 *6)) (-798 *6) (-721 *4 (-798 *6))))) (-5 *1 (-1195 *4 *5 *6)) (-14 *6 (-591 (-1089))))) (-3518 (*1 *2 *3) (-12 (-5 *3 (-591 (-885 *4))) (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-591 (-591 (-953 (-385 *4))))) (-5 *1 (-1195 *4 *5 *6)) (-14 *5 (-591 (-1089))) (-14 *6 (-591 (-1089))))) (-3518 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-591 (-591 (-953 (-385 *5))))) (-5 *1 (-1195 *5 *6 *7)) (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089))))) (-3518 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-591 (-591 (-953 (-385 *5))))) (-5 *1 (-1195 *5 *6 *7)) (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089))))) (-3518 (*1 *2 *3) (-12 (-5 *3 (-972 *4 *5)) (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-14 *5 (-591 (-1089))) (-5 *2 (-591 (-591 (-953 (-385 *4))))) (-5 *1 (-1195 *4 *5 *6)) (-14 *6 (-591 (-1089))))) (-4082 (*1 *2 *3) (-12 (-5 *3 (-591 (-885 *4))) (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-591 (-591 (-953 (-385 *4))))) (-5 *1 (-1195 *4 *5 *6)) (-14 *5 (-591 (-1089))) (-14 *6 (-591 (-1089))))) (-4082 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-591 (-591 (-953 (-385 *5))))) (-5 *1 (-1195 *5 *6 *7)) (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089))))) (-4082 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-591 (-591 (-953 (-385 *5))))) (-5 *1 (-1195 *5 *6 *7)) (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089))))) (-4082 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-591 (-591 (-953 (-385 *5))))) (-5 *1 (-1195 *5 *6 *7)) (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089))))) (-4082 (*1 *2 *3) (-12 (-5 *3 (-972 *4 *5)) (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-14 *5 (-591 (-1089))) (-5 *2 (-591 (-591 (-953 (-385 *4))))) (-5 *1 (-1195 *4 *5 *6)) (-14 *6 (-591 (-1089))))) (-3839 (*1 *2 *3) (-12 (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-591 (-2 (|:| -2274 (-1085 *4)) (|:| -3572 (-591 (-885 *4)))))) (-5 *1 (-1195 *4 *5 *6)) (-5 *3 (-591 (-885 *4))) (-14 *5 (-591 (-1089))) (-14 *6 (-591 (-1089))))) (-3839 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-591 (-2 (|:| -2274 (-1085 *5)) (|:| -3572 (-591 (-885 *5)))))) (-5 *1 (-1195 *5 *6 *7)) (-5 *3 (-591 (-885 *5))) (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089))))) (-3839 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-591 (-2 (|:| -2274 (-1085 *5)) (|:| -3572 (-591 (-885 *5)))))) (-5 *1 (-1195 *5 *6 *7)) (-5 *3 (-591 (-885 *5))) (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089))))) (-3839 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-591 (-2 (|:| -2274 (-1085 *5)) (|:| -3572 (-591 (-885 *5)))))) (-5 *1 (-1195 *5 *6 *7)) (-5 *3 (-591 (-885 *5))) (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089))))) (-3839 (*1 *2 *3) (-12 (-5 *3 (-972 *4 *5)) (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-14 *5 (-591 (-1089))) (-5 *2 (-591 (-2 (|:| -2274 (-1085 *4)) (|:| -3572 (-591 (-885 *4)))))) (-5 *1 (-1195 *4 *5 *6)) (-14 *6 (-591 (-1089))))) (-1338 (*1 *2 *3) (-12 (-5 *3 (-591 (-885 *4))) (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-591 (-972 *4 *5))) (-5 *1 (-1195 *4 *5 *6)) (-14 *5 (-591 (-1089))) (-14 *6 (-591 (-1089))))) (-1338 (*1 *2 *3 *4) (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-591 (-972 *5 *6))) (-5 *1 (-1195 *5 *6 *7)) (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089))))) (-1338 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-786) (-286) (-138) (-951))) (-5 *2 (-591 (-972 *5 *6))) (-5 *1 (-1195 *5 *6 *7)) (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089))))))
+(-10 -7 (-15 -1338 ((-591 (-972 |#1| |#2|)) (-591 (-885 |#1|)) (-108) (-108))) (-15 -1338 ((-591 (-972 |#1| |#2|)) (-591 (-885 |#1|)) (-108))) (-15 -1338 ((-591 (-972 |#1| |#2|)) (-591 (-885 |#1|)))) (-15 -3839 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-972 |#1| |#2|))) (-15 -3839 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)) (-108) (-108) (-108))) (-15 -3839 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)) (-108) (-108))) (-15 -3839 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)) (-108))) (-15 -3839 ((-591 (-2 (|:| -2274 (-1085 |#1|)) (|:| -3572 (-591 (-885 |#1|))))) (-591 (-885 |#1|)))) (-15 -4082 ((-591 (-591 (-953 (-385 |#1|)))) (-972 |#1| |#2|))) (-15 -4082 ((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)) (-108) (-108) (-108))) (-15 -4082 ((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)) (-108) (-108))) (-15 -4082 ((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)) (-108))) (-15 -4082 ((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)))) (-15 -3518 ((-591 (-591 (-953 (-385 |#1|)))) (-972 |#1| |#2|))) (-15 -3518 ((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)) (-108) (-108))) (-15 -3518 ((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)) (-108))) (-15 -3518 ((-591 (-591 (-953 (-385 |#1|)))) (-591 (-885 |#1|)))) (-15 -2827 ((-591 (-1060 |#1| (-497 (-798 |#3|)) (-798 |#3|) (-721 |#1| (-798 |#3|)))) (-972 |#1| |#2|))) (-15 -1408 ((-721 |#1| (-798 |#3|)) (-721 |#1| (-798 |#2|)))) (-15 -1408 ((-885 (-953 (-385 |#1|))) (-885 |#1|))) (-15 -1408 ((-885 (-953 (-385 |#1|))) (-721 |#1| (-798 |#3|)))) (-15 -1408 ((-1085 (-953 (-385 |#1|))) (-1085 |#1|))) (-15 -1408 ((-591 (-721 |#1| (-798 |#3|))) (-1060 |#1| (-497 (-798 |#3|)) (-798 |#3|) (-721 |#1| (-798 |#3|))))))
+((-4014 (((-3 (-1171 (-385 (-525))) "failed") (-1171 |#1|) |#1|) 21)) (-2557 (((-108) (-1171 |#1|)) 12)) (-1791 (((-3 (-1171 (-525)) "failed") (-1171 |#1|)) 16)))
+(((-1196 |#1|) (-10 -7 (-15 -2557 ((-108) (-1171 |#1|))) (-15 -1791 ((-3 (-1171 (-525)) "failed") (-1171 |#1|))) (-15 -4014 ((-3 (-1171 (-385 (-525))) "failed") (-1171 |#1|) |#1|))) (-587 (-525))) (T -1196))
+((-4014 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1171 *4)) (-4 *4 (-587 (-525))) (-5 *2 (-1171 (-385 (-525)))) (-5 *1 (-1196 *4)))) (-1791 (*1 *2 *3) (|partial| -12 (-5 *3 (-1171 *4)) (-4 *4 (-587 (-525))) (-5 *2 (-1171 (-525))) (-5 *1 (-1196 *4)))) (-2557 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-587 (-525))) (-5 *2 (-108)) (-5 *1 (-1196 *4)))))
+(-10 -7 (-15 -2557 ((-108) (-1171 |#1|))) (-15 -1791 ((-3 (-1171 (-525)) "failed") (-1171 |#1|))) (-15 -4014 ((-3 (-1171 (-385 (-525))) "failed") (-1171 |#1|) |#1|)))
+((-3008 (((-108) $ $) NIL)) (-1800 (((-108) $) 11)) (-2157 (((-3 $ "failed") $ $) NIL)) (-3032 (((-712)) 8)) (-3798 (($) NIL T CONST)) (-4163 (((-3 $ "failed") $) 43)) (-3377 (($) 36)) (-2824 (((-108) $) NIL)) (-2085 (((-3 $ "failed") $) 29)) (-3016 (((-854) $) 15)) (-2339 (((-1072) $) NIL)) (-3506 (($) 25 T CONST)) (-2226 (($ (-854)) 37)) (-2047 (((-1036) $) NIL)) (-1408 (((-525) $) 13)) (-3022 (((-796) $) 22) (($ (-525)) 19)) (-2128 (((-712)) 9)) (-3710 (($ $ (-854)) NIL) (($ $ (-712)) NIL)) (-4191 (($) 23 T CONST)) (-4197 (($) 24 T CONST)) (-4096 (((-108) $ $) 27)) (-4164 (($ $) 38) (($ $ $) 35)) (-4156 (($ $ $) 26)) (** (($ $ (-854)) NIL) (($ $ (-712)) 40)) (* (($ (-854) $) NIL) (($ (-712) $) NIL) (($ (-525) $) 32) (($ $ $) 31)))
+(((-1197 |#1|) (-13 (-160) (-346) (-566 (-525)) (-1065)) (-854)) (T -1197))
+NIL
+(-13 (-160) (-346) (-566 (-525)) (-1065))
+NIL
+NIL
+NIL
+NIL
+NIL
+NIL
+NIL
+NIL
+NIL
+NIL
+NIL
+NIL
+((-3 3144498 3144503 3144508 NIL NIL NIL NIL (NIL) -8 NIL NIL) (-2 3144483 3144488 3144493 NIL NIL NIL NIL (NIL) -8 NIL NIL) (-1 3144468 3144473 3144478 NIL NIL NIL NIL (NIL) -8 NIL NIL) (0 3144453 3144458 3144463 NIL NIL NIL NIL (NIL) -8 NIL NIL) (-1197 3143583 3144328 3144405 "ZMOD" 3144410 NIL ZMOD (NIL NIL) -8 NIL NIL) (-1196 3142693 3142857 3143066 "ZLINDEP" 3143415 NIL ZLINDEP (NIL T) -7 NIL NIL) (-1195 3132097 3133842 3135794 "ZDSOLVE" 3140842 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL) (-1194 3131343 3131484 3131673 "YSTREAM" 3131943 NIL YSTREAM (NIL T) -7 NIL NIL) (-1193 3129112 3130648 3130851 "XRPOLY" 3131186 NIL XRPOLY (NIL T T) -8 NIL NIL) (-1192 3125574 3126903 3127485 "XPR" 3128576 NIL XPR (NIL T T) -8 NIL NIL) (-1191 3123288 3124909 3125112 "XPOLY" 3125405 NIL XPOLY (NIL T) -8 NIL NIL) (-1190 3121102 3122480 3122534 "XPOLYC" 3122819 NIL XPOLYC (NIL T T) -9 NIL 3122932) (-1189 3117474 3119619 3120007 "XPBWPOLY" 3120760 NIL XPBWPOLY (NIL T T) -8 NIL NIL) (-1188 3113402 3115715 3115757 "XF" 3116378 NIL XF (NIL T) -9 NIL 3116777) (-1187 3113023 3113111 3113280 "XF-" 3113285 NIL XF- (NIL T T) -8 NIL NIL) (-1186 3108403 3109702 3109756 "XFALG" 3111904 NIL XFALG (NIL T T) -9 NIL 3112691) (-1185 3107540 3107644 3107848 "XEXPPKG" 3108295 NIL XEXPPKG (NIL T T T) -7 NIL NIL) (-1184 3105639 3107391 3107486 "XDPOLY" 3107491 NIL XDPOLY (NIL T T) -8 NIL NIL) (-1183 3104518 3105128 3105170 "XALG" 3105232 NIL XALG (NIL T) -9 NIL 3105351) (-1182 3097994 3102502 3102995 "WUTSET" 3104110 NIL WUTSET (NIL T T T T) -8 NIL NIL) (-1181 3095806 3096613 3096964 "WP" 3097776 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL) (-1180 3094692 3094890 3095185 "WFFINTBS" 3095603 NIL WFFINTBS (NIL T T T T) -7 NIL NIL) (-1179 3092596 3093023 3093485 "WEIER" 3094264 NIL WEIER (NIL T) -7 NIL NIL) (-1178 3091745 3092169 3092211 "VSPACE" 3092347 NIL VSPACE (NIL T) -9 NIL 3092421) (-1177 3091583 3091610 3091701 "VSPACE-" 3091706 NIL VSPACE- (NIL T T) -8 NIL NIL) (-1176 3091329 3091372 3091443 "VOID" 3091534 T VOID (NIL) -8 NIL NIL) (-1175 3089465 3089824 3090230 "VIEW" 3090945 T VIEW (NIL) -7 NIL NIL) (-1174 3085890 3086528 3087265 "VIEWDEF" 3088750 T VIEWDEF (NIL) -7 NIL NIL) (-1173 3075228 3077438 3079611 "VIEW3D" 3083739 T VIEW3D (NIL) -8 NIL NIL) (-1172 3067510 3069139 3070718 "VIEW2D" 3073671 T VIEW2D (NIL) -8 NIL NIL) (-1171 3062919 3067280 3067372 "VECTOR" 3067453 NIL VECTOR (NIL T) -8 NIL NIL) (-1170 3061496 3061755 3062073 "VECTOR2" 3062649 NIL VECTOR2 (NIL T T) -7 NIL NIL) (-1169 3055036 3059288 3059331 "VECTCAT" 3060319 NIL VECTCAT (NIL T) -9 NIL 3060903) (-1168 3054050 3054304 3054694 "VECTCAT-" 3054699 NIL VECTCAT- (NIL T T) -8 NIL NIL) (-1167 3053531 3053701 3053821 "VARIABLE" 3053965 NIL VARIABLE (NIL NIL) -8 NIL NIL) (-1166 3053464 3053469 3053499 "UTYPE" 3053504 T UTYPE (NIL) -9 NIL NIL) (-1165 3052299 3052453 3052714 "UTSODETL" 3053290 NIL UTSODETL (NIL T T T T) -7 NIL NIL) (-1164 3049739 3050199 3050723 "UTSODE" 3051840 NIL UTSODE (NIL T T) -7 NIL NIL) (-1163 3041583 3047379 3047867 "UTS" 3049308 NIL UTS (NIL T NIL NIL) -8 NIL NIL) (-1162 3032928 3038293 3038335 "UTSCAT" 3039436 NIL UTSCAT (NIL T) -9 NIL 3040193) (-1161 3030283 3030999 3031987 "UTSCAT-" 3031992 NIL UTSCAT- (NIL T T) -8 NIL NIL) (-1160 3029914 3029957 3030088 "UTS2" 3030234 NIL UTS2 (NIL T T T T) -7 NIL NIL) (-1159 3024190 3026755 3026798 "URAGG" 3028868 NIL URAGG (NIL T) -9 NIL 3029590) (-1158 3021129 3021992 3023115 "URAGG-" 3023120 NIL URAGG- (NIL T T) -8 NIL NIL) (-1157 3016815 3019746 3020217 "UPXSSING" 3020793 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL) (-1156 3008706 3015936 3016216 "UPXS" 3016592 NIL UPXS (NIL T NIL NIL) -8 NIL NIL) (-1155 3001735 3008611 3008682 "UPXSCONS" 3008687 NIL UPXSCONS (NIL T T) -8 NIL NIL) (-1154 2992024 2998854 2998915 "UPXSCCA" 2999564 NIL UPXSCCA (NIL T T) -9 NIL 2999805) (-1153 2991663 2991748 2991921 "UPXSCCA-" 2991926 NIL UPXSCCA- (NIL T T T) -8 NIL NIL) (-1152 2981874 2988477 2988519 "UPXSCAT" 2989162 NIL UPXSCAT (NIL T) -9 NIL 2989770) (-1151 2981308 2981387 2981564 "UPXS2" 2981789 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL) (-1150 2979962 2980215 2980566 "UPSQFREE" 2981051 NIL UPSQFREE (NIL T T) -7 NIL NIL) (-1149 2973853 2976908 2976962 "UPSCAT" 2978111 NIL UPSCAT (NIL T T) -9 NIL 2978885) (-1148 2973058 2973265 2973591 "UPSCAT-" 2973596 NIL UPSCAT- (NIL T T T) -8 NIL NIL) (-1147 2959144 2967181 2967223 "UPOLYC" 2969301 NIL UPOLYC (NIL T) -9 NIL 2970522) (-1146 2950474 2952899 2956045 "UPOLYC-" 2956050 NIL UPOLYC- (NIL T T) -8 NIL NIL) (-1145 2950105 2950148 2950279 "UPOLYC2" 2950425 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL) (-1144 2941524 2949674 2949811 "UP" 2950015 NIL UP (NIL NIL T) -8 NIL NIL) (-1143 2940867 2940974 2941137 "UPMP" 2941413 NIL UPMP (NIL T T) -7 NIL NIL) (-1142 2940420 2940501 2940640 "UPDIVP" 2940780 NIL UPDIVP (NIL T T) -7 NIL NIL) (-1141 2938988 2939237 2939553 "UPDECOMP" 2940169 NIL UPDECOMP (NIL T T) -7 NIL NIL) (-1140 2938223 2938335 2938520 "UPCDEN" 2938872 NIL UPCDEN (NIL T T T) -7 NIL NIL) (-1139 2937746 2937815 2937962 "UP2" 2938148 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL) (-1138 2936263 2936950 2937227 "UNISEG" 2937504 NIL UNISEG (NIL T) -8 NIL NIL) (-1137 2935478 2935605 2935810 "UNISEG2" 2936106 NIL UNISEG2 (NIL T T) -7 NIL NIL) (-1136 2934538 2934718 2934944 "UNIFACT" 2935294 NIL UNIFACT (NIL T) -7 NIL NIL) (-1135 2918434 2933719 2933969 "ULS" 2934345 NIL ULS (NIL T NIL NIL) -8 NIL NIL) (-1134 2906399 2918339 2918410 "ULSCONS" 2918415 NIL ULSCONS (NIL T T) -8 NIL NIL) (-1133 2889149 2901162 2901223 "ULSCCAT" 2901935 NIL ULSCCAT (NIL T T) -9 NIL 2902231) (-1132 2888200 2888445 2888832 "ULSCCAT-" 2888837 NIL ULSCCAT- (NIL T T T) -8 NIL NIL) (-1131 2878190 2884707 2884749 "ULSCAT" 2885605 NIL ULSCAT (NIL T) -9 NIL 2886335) (-1130 2877624 2877703 2877880 "ULS2" 2878105 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL) (-1129 2876022 2876989 2877019 "UFD" 2877231 T UFD (NIL) -9 NIL 2877345) (-1128 2875816 2875862 2875957 "UFD-" 2875962 NIL UFD- (NIL T) -8 NIL NIL) (-1127 2874898 2875081 2875297 "UDVO" 2875622 T UDVO (NIL) -7 NIL NIL) (-1126 2872714 2873123 2873594 "UDPO" 2874462 NIL UDPO (NIL T) -7 NIL NIL) (-1125 2872647 2872652 2872682 "TYPE" 2872687 T TYPE (NIL) -9 NIL NIL) (-1124 2871618 2871820 2872060 "TWOFACT" 2872441 NIL TWOFACT (NIL T) -7 NIL NIL) (-1123 2870556 2870893 2871156 "TUPLE" 2871390 NIL TUPLE (NIL T) -8 NIL NIL) (-1122 2868247 2868766 2869305 "TUBETOOL" 2870039 T TUBETOOL (NIL) -7 NIL NIL) (-1121 2867096 2867301 2867542 "TUBE" 2868040 NIL TUBE (NIL T) -8 NIL NIL) (-1120 2861820 2866074 2866356 "TS" 2866848 NIL TS (NIL T) -8 NIL NIL) (-1119 2850524 2854616 2854712 "TSETCAT" 2859946 NIL TSETCAT (NIL T T T T) -9 NIL 2861477) (-1118 2845259 2846857 2848747 "TSETCAT-" 2848752 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL) (-1117 2839522 2840368 2841310 "TRMANIP" 2844395 NIL TRMANIP (NIL T T) -7 NIL NIL) (-1116 2838963 2839026 2839189 "TRIMAT" 2839454 NIL TRIMAT (NIL T T T T) -7 NIL NIL) (-1115 2836769 2837006 2837369 "TRIGMNIP" 2838712 NIL TRIGMNIP (NIL T T) -7 NIL NIL) (-1114 2836289 2836402 2836432 "TRIGCAT" 2836645 T TRIGCAT (NIL) -9 NIL NIL) (-1113 2835958 2836037 2836178 "TRIGCAT-" 2836183 NIL TRIGCAT- (NIL T) -8 NIL NIL) (-1112 2832857 2834818 2835098 "TREE" 2835713 NIL TREE (NIL T) -8 NIL NIL) (-1111 2832131 2832659 2832689 "TRANFUN" 2832724 T TRANFUN (NIL) -9 NIL 2832790) (-1110 2831410 2831601 2831881 "TRANFUN-" 2831886 NIL TRANFUN- (NIL T) -8 NIL NIL) (-1109 2831214 2831246 2831307 "TOPSP" 2831371 T TOPSP (NIL) -7 NIL NIL) (-1108 2830566 2830681 2830834 "TOOLSIGN" 2831095 NIL TOOLSIGN (NIL T) -7 NIL NIL) (-1107 2829227 2829743 2829982 "TEXTFILE" 2830349 T TEXTFILE (NIL) -8 NIL NIL) (-1106 2827092 2827606 2828044 "TEX" 2828811 T TEX (NIL) -8 NIL NIL) (-1105 2826873 2826904 2826976 "TEX1" 2827055 NIL TEX1 (NIL T) -7 NIL NIL) (-1104 2826521 2826584 2826674 "TEMUTL" 2826805 T TEMUTL (NIL) -7 NIL NIL) (-1103 2824675 2824955 2825280 "TBCMPPK" 2826244 NIL TBCMPPK (NIL T T) -7 NIL NIL) (-1102 2816564 2822836 2822892 "TBAGG" 2823292 NIL TBAGG (NIL T T) -9 NIL 2823503) (-1101 2811634 2813122 2814876 "TBAGG-" 2814881 NIL TBAGG- (NIL T T T) -8 NIL NIL) (-1100 2811018 2811125 2811270 "TANEXP" 2811523 NIL TANEXP (NIL T) -7 NIL NIL) (-1099 2804519 2810875 2810968 "TABLE" 2810973 NIL TABLE (NIL T T) -8 NIL NIL) (-1098 2803931 2804030 2804168 "TABLEAU" 2804416 NIL TABLEAU (NIL T) -8 NIL NIL) (-1097 2798539 2799759 2801007 "TABLBUMP" 2802717 NIL TABLBUMP (NIL T) -7 NIL NIL) (-1096 2797967 2798067 2798195 "SYSTEM" 2798433 T SYSTEM (NIL) -7 NIL NIL) (-1095 2794430 2795125 2795908 "SYSSOLP" 2797218 NIL SYSSOLP (NIL T) -7 NIL NIL) (-1094 2790721 2791429 2792163 "SYNTAX" 2793718 T SYNTAX (NIL) -8 NIL NIL) (-1093 2787855 2788463 2789101 "SYMTAB" 2790105 T SYMTAB (NIL) -8 NIL NIL) (-1092 2783104 2784006 2784989 "SYMS" 2786894 T SYMS (NIL) -8 NIL NIL) (-1091 2780337 2782564 2782793 "SYMPOLY" 2782909 NIL SYMPOLY (NIL T) -8 NIL NIL) (-1090 2779857 2779932 2780054 "SYMFUNC" 2780249 NIL SYMFUNC (NIL T) -7 NIL NIL) (-1089 2775834 2777094 2777916 "SYMBOL" 2779057 T SYMBOL (NIL) -8 NIL NIL) (-1088 2769373 2771062 2772782 "SWITCH" 2774136 T SWITCH (NIL) -8 NIL NIL) (-1087 2762603 2768200 2768502 "SUTS" 2769128 NIL SUTS (NIL T NIL NIL) -8 NIL NIL) (-1086 2754493 2761724 2762004 "SUPXS" 2762380 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL) (-1085 2745985 2754114 2754239 "SUP" 2754402 NIL SUP (NIL T) -8 NIL NIL) (-1084 2745144 2745271 2745488 "SUPFRACF" 2745853 NIL SUPFRACF (NIL T T T T) -7 NIL NIL) (-1083 2744769 2744828 2744939 "SUP2" 2745079 NIL SUP2 (NIL T T) -7 NIL NIL) (-1082 2743187 2743461 2743823 "SUMRF" 2744468 NIL SUMRF (NIL T) -7 NIL NIL) (-1081 2742504 2742570 2742768 "SUMFS" 2743108 NIL SUMFS (NIL T T) -7 NIL NIL) (-1080 2726440 2741685 2741935 "SULS" 2742311 NIL SULS (NIL T NIL NIL) -8 NIL NIL) (-1079 2725762 2725965 2726105 "SUCH" 2726348 NIL SUCH (NIL T T) -8 NIL NIL) (-1078 2719689 2720701 2721659 "SUBSPACE" 2724850 NIL SUBSPACE (NIL NIL T) -8 NIL NIL) (-1077 2719119 2719209 2719373 "SUBRESP" 2719577 NIL SUBRESP (NIL T T) -7 NIL NIL) (-1076 2712488 2713784 2715095 "STTF" 2717855 NIL STTF (NIL T) -7 NIL NIL) (-1075 2706661 2707781 2708928 "STTFNC" 2711388 NIL STTFNC (NIL T) -7 NIL NIL) (-1074 2698012 2699879 2701672 "STTAYLOR" 2704902 NIL STTAYLOR (NIL T) -7 NIL NIL) (-1073 2691256 2697876 2697959 "STRTBL" 2697964 NIL STRTBL (NIL T) -8 NIL NIL) (-1072 2686647 2691211 2691242 "STRING" 2691247 T STRING (NIL) -8 NIL NIL) (-1071 2681536 2686021 2686051 "STRICAT" 2686110 T STRICAT (NIL) -9 NIL 2686172) (-1070 2674252 2679059 2679679 "STREAM" 2680951 NIL STREAM (NIL T) -8 NIL NIL) (-1069 2673762 2673839 2673983 "STREAM3" 2674169 NIL STREAM3 (NIL T T T) -7 NIL NIL) (-1068 2672744 2672927 2673162 "STREAM2" 2673575 NIL STREAM2 (NIL T T) -7 NIL NIL) (-1067 2672432 2672484 2672577 "STREAM1" 2672686 NIL STREAM1 (NIL T) -7 NIL NIL) (-1066 2671448 2671629 2671860 "STINPROD" 2672248 NIL STINPROD (NIL T) -7 NIL NIL) (-1065 2671027 2671211 2671241 "STEP" 2671321 T STEP (NIL) -9 NIL 2671399) (-1064 2664570 2670926 2671003 "STBL" 2671008 NIL STBL (NIL T T NIL) -8 NIL NIL) (-1063 2659746 2663793 2663836 "STAGG" 2663989 NIL STAGG (NIL T) -9 NIL 2664078) (-1062 2657448 2658050 2658922 "STAGG-" 2658927 NIL STAGG- (NIL T T) -8 NIL NIL) (-1061 2655643 2657218 2657310 "STACK" 2657391 NIL STACK (NIL T) -8 NIL NIL) (-1060 2648374 2653790 2654245 "SREGSET" 2655273 NIL SREGSET (NIL T T T T) -8 NIL NIL) (-1059 2640814 2642182 2643694 "SRDCMPK" 2646980 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL) (-1058 2633782 2638255 2638285 "SRAGG" 2639588 T SRAGG (NIL) -9 NIL 2640196) (-1057 2632799 2633054 2633433 "SRAGG-" 2633438 NIL SRAGG- (NIL T) -8 NIL NIL) (-1056 2627248 2631718 2632145 "SQMATRIX" 2632418 NIL SQMATRIX (NIL NIL T) -8 NIL NIL) (-1055 2621000 2623968 2624694 "SPLTREE" 2626594 NIL SPLTREE (NIL T T) -8 NIL NIL) (-1054 2616990 2617656 2618302 "SPLNODE" 2620426 NIL SPLNODE (NIL T T) -8 NIL NIL) (-1053 2616037 2616270 2616300 "SPFCAT" 2616744 T SPFCAT (NIL) -9 NIL NIL) (-1052 2614774 2614984 2615248 "SPECOUT" 2615795 T SPECOUT (NIL) -7 NIL NIL) (-1051 2614535 2614575 2614644 "SPADPRSR" 2614727 T SPADPRSR (NIL) -7 NIL NIL) (-1050 2606558 2608305 2608347 "SPACEC" 2612670 NIL SPACEC (NIL T) -9 NIL 2614486) (-1049 2604729 2606491 2606539 "SPACE3" 2606544 NIL SPACE3 (NIL T) -8 NIL NIL) (-1048 2603481 2603652 2603943 "SORTPAK" 2604534 NIL SORTPAK (NIL T T) -7 NIL NIL) (-1047 2601537 2601840 2602258 "SOLVETRA" 2603145 NIL SOLVETRA (NIL T) -7 NIL NIL) (-1046 2600548 2600770 2601044 "SOLVESER" 2601310 NIL SOLVESER (NIL T) -7 NIL NIL) (-1045 2595768 2596649 2597651 "SOLVERAD" 2599600 NIL SOLVERAD (NIL T) -7 NIL NIL) (-1044 2591583 2592192 2592921 "SOLVEFOR" 2595135 NIL SOLVEFOR (NIL T T) -7 NIL NIL) (-1043 2585883 2590935 2591031 "SNTSCAT" 2591036 NIL SNTSCAT (NIL T T T T) -9 NIL 2591106) (-1042 2579987 2584214 2584604 "SMTS" 2585573 NIL SMTS (NIL T T T) -8 NIL NIL) (-1041 2574397 2579876 2579952 "SMP" 2579957 NIL SMP (NIL T T) -8 NIL NIL) (-1040 2572556 2572857 2573255 "SMITH" 2574094 NIL SMITH (NIL T T T T) -7 NIL NIL) (-1039 2565521 2569717 2569819 "SMATCAT" 2571159 NIL SMATCAT (NIL NIL T T T) -9 NIL 2571708) (-1038 2562462 2563285 2564462 "SMATCAT-" 2564467 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL) (-1037 2560176 2561699 2561742 "SKAGG" 2562003 NIL SKAGG (NIL T) -9 NIL 2562138) (-1036 2556234 2559280 2559558 "SINT" 2559920 T SINT (NIL) -8 NIL NIL) (-1035 2556006 2556044 2556110 "SIMPAN" 2556190 T SIMPAN (NIL) -7 NIL NIL) (-1034 2554844 2555065 2555340 "SIGNRF" 2555765 NIL SIGNRF (NIL T) -7 NIL NIL) (-1033 2553653 2553804 2554094 "SIGNEF" 2554673 NIL SIGNEF (NIL T T) -7 NIL NIL) (-1032 2551343 2551797 2552303 "SHP" 2553194 NIL SHP (NIL T NIL) -7 NIL NIL) (-1031 2545196 2551244 2551320 "SHDP" 2551325 NIL SHDP (NIL NIL NIL T) -8 NIL NIL) (-1030 2544686 2544878 2544908 "SGROUP" 2545060 T SGROUP (NIL) -9 NIL 2545147) (-1029 2544456 2544508 2544612 "SGROUP-" 2544617 NIL SGROUP- (NIL T) -8 NIL NIL) (-1028 2541292 2541989 2542712 "SGCF" 2543755 T SGCF (NIL) -7 NIL NIL) (-1027 2535691 2540743 2540839 "SFRTCAT" 2540844 NIL SFRTCAT (NIL T T T T) -9 NIL 2540882) (-1026 2529151 2530166 2531300 "SFRGCD" 2534674 NIL SFRGCD (NIL T T T T T) -7 NIL NIL) (-1025 2522317 2523388 2524572 "SFQCMPK" 2528084 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL) (-1024 2521939 2522028 2522138 "SFORT" 2522258 NIL SFORT (NIL T T) -8 NIL NIL) (-1023 2521084 2521779 2521900 "SEXOF" 2521905 NIL SEXOF (NIL T T T T T) -8 NIL NIL) (-1022 2520218 2520965 2521033 "SEX" 2521038 T SEX (NIL) -8 NIL NIL) (-1021 2514995 2515684 2515779 "SEXCAT" 2519550 NIL SEXCAT (NIL T T T T T) -9 NIL 2520169) (-1020 2512175 2514929 2514977 "SET" 2514982 NIL SET (NIL T) -8 NIL NIL) (-1019 2510426 2510888 2511193 "SETMN" 2511916 NIL SETMN (NIL NIL NIL) -8 NIL NIL) (-1018 2510034 2510160 2510190 "SETCAT" 2510307 T SETCAT (NIL) -9 NIL 2510391) (-1017 2509814 2509866 2509965 "SETCAT-" 2509970 NIL SETCAT- (NIL T) -8 NIL NIL) (-1016 2506202 2508276 2508319 "SETAGG" 2509189 NIL SETAGG (NIL T) -9 NIL 2509529) (-1015 2505660 2505776 2506013 "SETAGG-" 2506018 NIL SETAGG- (NIL T T) -8 NIL NIL) (-1014 2504864 2505157 2505218 "SEGXCAT" 2505504 NIL SEGXCAT (NIL T T) -9 NIL 2505624) (-1013 2503920 2504530 2504712 "SEG" 2504717 NIL SEG (NIL T) -8 NIL NIL) (-1012 2502827 2503040 2503083 "SEGCAT" 2503665 NIL SEGCAT (NIL T) -9 NIL 2503903) (-1011 2501876 2502206 2502406 "SEGBIND" 2502662 NIL SEGBIND (NIL T) -8 NIL NIL) (-1010 2501497 2501556 2501669 "SEGBIND2" 2501811 NIL SEGBIND2 (NIL T T) -7 NIL NIL) (-1009 2500716 2500842 2501046 "SEG2" 2501341 NIL SEG2 (NIL T T) -7 NIL NIL) (-1008 2500153 2500651 2500698 "SDVAR" 2500703 NIL SDVAR (NIL T) -8 NIL NIL) (-1007 2492405 2499926 2500054 "SDPOL" 2500059 NIL SDPOL (NIL T) -8 NIL NIL) (-1006 2490998 2491264 2491583 "SCPKG" 2492120 NIL SCPKG (NIL T) -7 NIL NIL) (-1005 2490135 2490314 2490514 "SCOPE" 2490820 T SCOPE (NIL) -8 NIL NIL) (-1004 2489356 2489489 2489668 "SCACHE" 2489990 NIL SCACHE (NIL T) -7 NIL NIL) (-1003 2488795 2489116 2489201 "SAOS" 2489293 T SAOS (NIL) -8 NIL NIL) (-1002 2488360 2488395 2488568 "SAERFFC" 2488754 NIL SAERFFC (NIL T T T) -7 NIL NIL) (-1001 2482254 2488257 2488337 "SAE" 2488342 NIL SAE (NIL T T NIL) -8 NIL NIL) (-1000 2481847 2481882 2482041 "SAEFACT" 2482213 NIL SAEFACT (NIL T T T) -7 NIL NIL) (-999 2480173 2480487 2480886 "RURPK" 2481513 NIL RURPK (NIL T NIL) -7 NIL NIL) (-998 2478826 2479103 2479410 "RULESET" 2480009 NIL RULESET (NIL T T T) -8 NIL NIL) (-997 2476034 2476537 2476998 "RULE" 2478508 NIL RULE (NIL T T T) -8 NIL NIL) (-996 2475676 2475831 2475912 "RULECOLD" 2475986 NIL RULECOLD (NIL NIL) -8 NIL NIL) (-995 2470568 2471362 2472278 "RSETGCD" 2474875 NIL RSETGCD (NIL T T T T T) -7 NIL NIL) (-994 2459883 2464935 2465029 "RSETCAT" 2469094 NIL RSETCAT (NIL T T T T) -9 NIL 2470191) (-993 2457814 2458353 2459173 "RSETCAT-" 2459178 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL) (-992 2450244 2451619 2453135 "RSDCMPK" 2456413 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL) (-991 2448262 2448703 2448775 "RRCC" 2449851 NIL RRCC (NIL T T) -9 NIL 2450195) (-990 2447616 2447790 2448066 "RRCC-" 2448071 NIL RRCC- (NIL T T T) -8 NIL NIL) (-989 2421983 2431608 2431672 "RPOLCAT" 2442174 NIL RPOLCAT (NIL T T T) -9 NIL 2445332) (-988 2413487 2415825 2418943 "RPOLCAT-" 2418948 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL) (-987 2404553 2411717 2412197 "ROUTINE" 2413027 T ROUTINE (NIL) -8 NIL NIL) (-986 2401258 2404109 2404256 "ROMAN" 2404426 T ROMAN (NIL) -8 NIL NIL) (-985 2399544 2400129 2400386 "ROIRC" 2401064 NIL ROIRC (NIL T T) -8 NIL NIL) (-984 2395949 2398253 2398281 "RNS" 2398577 T RNS (NIL) -9 NIL 2398847) (-983 2394463 2394846 2395377 "RNS-" 2395450 NIL RNS- (NIL T) -8 NIL NIL) (-982 2393889 2394297 2394325 "RNG" 2394330 T RNG (NIL) -9 NIL 2394351) (-981 2393287 2393649 2393689 "RMODULE" 2393749 NIL RMODULE (NIL T) -9 NIL 2393791) (-980 2392139 2392233 2392563 "RMCAT2" 2393188 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL) (-979 2388853 2391322 2391643 "RMATRIX" 2391874 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL) (-978 2381850 2384084 2384196 "RMATCAT" 2387505 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2388487) (-977 2381229 2381376 2381679 "RMATCAT-" 2381684 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL) (-976 2380799 2380874 2381000 "RINTERP" 2381148 NIL RINTERP (NIL NIL T) -7 NIL NIL) (-975 2379850 2380414 2380442 "RING" 2380552 T RING (NIL) -9 NIL 2380646) (-974 2379645 2379689 2379783 "RING-" 2379788 NIL RING- (NIL T) -8 NIL NIL) (-973 2378493 2378730 2378986 "RIDIST" 2379409 T RIDIST (NIL) -7 NIL NIL) (-972 2369815 2377967 2378170 "RGCHAIN" 2378342 NIL RGCHAIN (NIL T NIL) -8 NIL NIL) (-971 2366820 2367434 2368102 "RF" 2369179 NIL RF (NIL T) -7 NIL NIL) (-970 2366469 2366532 2366633 "RFFACTOR" 2366751 NIL RFFACTOR (NIL T) -7 NIL NIL) (-969 2366197 2366232 2366327 "RFFACT" 2366428 NIL RFFACT (NIL T) -7 NIL NIL) (-968 2364327 2364691 2365071 "RFDIST" 2365837 T RFDIST (NIL) -7 NIL NIL) (-967 2363785 2363877 2364037 "RETSOL" 2364229 NIL RETSOL (NIL T T) -7 NIL NIL) (-966 2363378 2363458 2363499 "RETRACT" 2363689 NIL RETRACT (NIL T) -9 NIL NIL) (-965 2363230 2363255 2363339 "RETRACT-" 2363344 NIL RETRACT- (NIL T T) -8 NIL NIL) (-964 2356088 2362887 2363012 "RESULT" 2363125 T RESULT (NIL) -8 NIL NIL) (-963 2354673 2355362 2355559 "RESRING" 2355991 NIL RESRING (NIL T T T T NIL) -8 NIL NIL) (-962 2354313 2354362 2354458 "RESLATC" 2354610 NIL RESLATC (NIL T) -7 NIL NIL) (-961 2354022 2354056 2354161 "REPSQ" 2354272 NIL REPSQ (NIL T) -7 NIL NIL) (-960 2351453 2352033 2352633 "REP" 2353442 T REP (NIL) -7 NIL NIL) (-959 2351154 2351188 2351297 "REPDB" 2351412 NIL REPDB (NIL T) -7 NIL NIL) (-958 2345099 2346478 2347698 "REP2" 2349966 NIL REP2 (NIL T) -7 NIL NIL) (-957 2341505 2342186 2342991 "REP1" 2344326 NIL REP1 (NIL T) -7 NIL NIL) (-956 2334251 2339666 2340118 "REGSET" 2341136 NIL REGSET (NIL T T T T) -8 NIL NIL) (-955 2333072 2333407 2333655 "REF" 2334036 NIL REF (NIL T) -8 NIL NIL) (-954 2332453 2332556 2332721 "REDORDER" 2332956 NIL REDORDER (NIL T T) -7 NIL NIL) (-953 2328422 2331687 2331908 "RECLOS" 2332284 NIL RECLOS (NIL T) -8 NIL NIL) (-952 2327479 2327660 2327873 "REALSOLV" 2328229 T REALSOLV (NIL) -7 NIL NIL) (-951 2327327 2327368 2327396 "REAL" 2327401 T REAL (NIL) -9 NIL 2327436) (-950 2323818 2324620 2325502 "REAL0Q" 2326492 NIL REAL0Q (NIL T) -7 NIL NIL) (-949 2319429 2320417 2321476 "REAL0" 2322799 NIL REAL0 (NIL T) -7 NIL NIL) (-948 2318837 2318909 2319114 "RDIV" 2319351 NIL RDIV (NIL T T T T T) -7 NIL NIL) (-947 2317910 2318084 2318295 "RDIST" 2318659 NIL RDIST (NIL T) -7 NIL NIL) (-946 2316514 2316801 2317170 "RDETRS" 2317618 NIL RDETRS (NIL T T) -7 NIL NIL) (-945 2314335 2314789 2315324 "RDETR" 2316056 NIL RDETR (NIL T T) -7 NIL NIL) (-944 2312951 2313229 2313630 "RDEEFS" 2314051 NIL RDEEFS (NIL T T) -7 NIL NIL) (-943 2311451 2311757 2312186 "RDEEF" 2312639 NIL RDEEF (NIL T T) -7 NIL NIL) (-942 2305736 2308668 2308696 "RCFIELD" 2309973 T RCFIELD (NIL) -9 NIL 2310703) (-941 2303805 2304309 2305002 "RCFIELD-" 2305075 NIL RCFIELD- (NIL T) -8 NIL NIL) (-940 2300137 2301922 2301963 "RCAGG" 2303034 NIL RCAGG (NIL T) -9 NIL 2303499) (-939 2299768 2299862 2300022 "RCAGG-" 2300027 NIL RCAGG- (NIL T T) -8 NIL NIL) (-938 2299112 2299224 2299386 "RATRET" 2299652 NIL RATRET (NIL T) -7 NIL NIL) (-937 2298669 2298736 2298855 "RATFACT" 2299040 NIL RATFACT (NIL T) -7 NIL NIL) (-936 2297984 2298104 2298254 "RANDSRC" 2298539 T RANDSRC (NIL) -7 NIL NIL) (-935 2297721 2297765 2297836 "RADUTIL" 2297933 T RADUTIL (NIL) -7 NIL NIL) (-934 2290728 2296464 2296781 "RADIX" 2297436 NIL RADIX (NIL NIL) -8 NIL NIL) (-933 2282298 2290572 2290700 "RADFF" 2290705 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL) (-932 2281950 2282025 2282053 "RADCAT" 2282210 T RADCAT (NIL) -9 NIL NIL) (-931 2281735 2281783 2281880 "RADCAT-" 2281885 NIL RADCAT- (NIL T) -8 NIL NIL) (-930 2279886 2281510 2281599 "QUEUE" 2281679 NIL QUEUE (NIL T) -8 NIL NIL) (-929 2276383 2279823 2279868 "QUAT" 2279873 NIL QUAT (NIL T) -8 NIL NIL) (-928 2276021 2276064 2276191 "QUATCT2" 2276334 NIL QUATCT2 (NIL T T T T) -7 NIL NIL) (-927 2269815 2273195 2273235 "QUATCAT" 2274014 NIL QUATCAT (NIL T) -9 NIL 2274779) (-926 2265959 2266996 2268383 "QUATCAT-" 2268477 NIL QUATCAT- (NIL T T) -8 NIL NIL) (-925 2263480 2265044 2265085 "QUAGG" 2265460 NIL QUAGG (NIL T) -9 NIL 2265635) (-924 2262405 2262878 2263050 "QFORM" 2263352 NIL QFORM (NIL NIL T) -8 NIL NIL) (-923 2253702 2258960 2259000 "QFCAT" 2259658 NIL QFCAT (NIL T) -9 NIL 2260651) (-922 2249274 2250475 2252066 "QFCAT-" 2252160 NIL QFCAT- (NIL T T) -8 NIL NIL) (-921 2248912 2248955 2249082 "QFCAT2" 2249225 NIL QFCAT2 (NIL T T T T) -7 NIL NIL) (-920 2248372 2248482 2248612 "QEQUAT" 2248802 T QEQUAT (NIL) -8 NIL NIL) (-919 2241558 2242629 2243811 "QCMPACK" 2247305 NIL QCMPACK (NIL T T T T T) -7 NIL NIL) (-918 2239134 2239555 2239983 "QALGSET" 2241213 NIL QALGSET (NIL T T T T) -8 NIL NIL) (-917 2238379 2238553 2238785 "QALGSET2" 2238954 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL) (-916 2237070 2237293 2237610 "PWFFINTB" 2238152 NIL PWFFINTB (NIL T T T T) -7 NIL NIL) (-915 2235258 2235426 2235779 "PUSHVAR" 2236884 NIL PUSHVAR (NIL T T T T) -7 NIL NIL) (-914 2231176 2232230 2232271 "PTRANFN" 2234155 NIL PTRANFN (NIL T) -9 NIL NIL) (-913 2229588 2229879 2230200 "PTPACK" 2230887 NIL PTPACK (NIL T) -7 NIL NIL) (-912 2229224 2229281 2229388 "PTFUNC2" 2229525 NIL PTFUNC2 (NIL T T) -7 NIL NIL) (-911 2223701 2228042 2228082 "PTCAT" 2228450 NIL PTCAT (NIL T) -9 NIL 2228612) (-910 2223359 2223394 2223518 "PSQFR" 2223660 NIL PSQFR (NIL T T T T) -7 NIL NIL) (-909 2221954 2222252 2222586 "PSEUDLIN" 2223057 NIL PSEUDLIN (NIL T) -7 NIL NIL) (-908 2208762 2211126 2213449 "PSETPK" 2219714 NIL PSETPK (NIL T T T T) -7 NIL NIL) (-907 2201849 2204563 2204657 "PSETCAT" 2207638 NIL PSETCAT (NIL T T T T) -9 NIL 2208452) (-906 2199687 2200321 2201140 "PSETCAT-" 2201145 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL) (-905 2199036 2199201 2199229 "PSCURVE" 2199497 T PSCURVE (NIL) -9 NIL 2199664) (-904 2195488 2197014 2197078 "PSCAT" 2197914 NIL PSCAT (NIL T T T) -9 NIL 2198154) (-903 2194552 2194768 2195167 "PSCAT-" 2195172 NIL PSCAT- (NIL T T T T) -8 NIL NIL) (-902 2193204 2193837 2194051 "PRTITION" 2194358 T PRTITION (NIL) -8 NIL NIL) (-901 2182302 2184508 2186696 "PRS" 2191066 NIL PRS (NIL T T) -7 NIL NIL) (-900 2180161 2181653 2181693 "PRQAGG" 2181876 NIL PRQAGG (NIL T) -9 NIL 2181978) (-899 2179732 2179834 2179862 "PROPLOG" 2180047 T PROPLOG (NIL) -9 NIL NIL) (-898 2176855 2177420 2177947 "PROPFRML" 2179237 NIL PROPFRML (NIL T) -8 NIL NIL) (-897 2176315 2176425 2176555 "PROPERTY" 2176745 T PROPERTY (NIL) -8 NIL NIL) (-896 2170089 2174481 2175301 "PRODUCT" 2175541 NIL PRODUCT (NIL T T) -8 NIL NIL) (-895 2167365 2169549 2169782 "PR" 2169900 NIL PR (NIL T T) -8 NIL NIL) (-894 2167161 2167193 2167252 "PRINT" 2167326 T PRINT (NIL) -7 NIL NIL) (-893 2166501 2166618 2166770 "PRIMES" 2167041 NIL PRIMES (NIL T) -7 NIL NIL) (-892 2164566 2164967 2165433 "PRIMELT" 2166080 NIL PRIMELT (NIL T) -7 NIL NIL) (-891 2164295 2164344 2164372 "PRIMCAT" 2164496 T PRIMCAT (NIL) -9 NIL NIL) (-890 2160456 2164233 2164278 "PRIMARR" 2164283 NIL PRIMARR (NIL T) -8 NIL NIL) (-889 2159463 2159641 2159869 "PRIMARR2" 2160274 NIL PRIMARR2 (NIL T T) -7 NIL NIL) (-888 2159106 2159162 2159273 "PREASSOC" 2159401 NIL PREASSOC (NIL T T) -7 NIL NIL) (-887 2158581 2158714 2158742 "PPCURVE" 2158947 T PPCURVE (NIL) -9 NIL 2159083) (-886 2155940 2156339 2156931 "POLYROOT" 2158162 NIL POLYROOT (NIL T T T T T) -7 NIL NIL) (-885 2149846 2155546 2155705 "POLY" 2155813 NIL POLY (NIL T) -8 NIL NIL) (-884 2149231 2149289 2149522 "POLYLIFT" 2149782 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL) (-883 2145516 2145965 2146593 "POLYCATQ" 2148776 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL) (-882 2132557 2137954 2138018 "POLYCAT" 2141503 NIL POLYCAT (NIL T T T) -9 NIL 2143430) (-881 2126008 2127869 2130252 "POLYCAT-" 2130257 NIL POLYCAT- (NIL T T T T) -8 NIL NIL) (-880 2125597 2125665 2125784 "POLY2UP" 2125934 NIL POLY2UP (NIL NIL T) -7 NIL NIL) (-879 2125233 2125290 2125397 "POLY2" 2125534 NIL POLY2 (NIL T T) -7 NIL NIL) (-878 2123918 2124157 2124433 "POLUTIL" 2125007 NIL POLUTIL (NIL T T) -7 NIL NIL) (-877 2122280 2122557 2122887 "POLTOPOL" 2123640 NIL POLTOPOL (NIL NIL T) -7 NIL NIL) (-876 2117803 2122217 2122262 "POINT" 2122267 NIL POINT (NIL T) -8 NIL NIL) (-875 2115990 2116347 2116722 "PNTHEORY" 2117448 T PNTHEORY (NIL) -7 NIL NIL) (-874 2114418 2114715 2115124 "PMTOOLS" 2115688 NIL PMTOOLS (NIL T T T) -7 NIL NIL) (-873 2114011 2114089 2114206 "PMSYM" 2114334 NIL PMSYM (NIL T) -7 NIL NIL) (-872 2113521 2113590 2113764 "PMQFCAT" 2113936 NIL PMQFCAT (NIL T T T) -7 NIL NIL) (-871 2112876 2112986 2113142 "PMPRED" 2113398 NIL PMPRED (NIL T) -7 NIL NIL) (-870 2112272 2112358 2112519 "PMPREDFS" 2112777 NIL PMPREDFS (NIL T T T) -7 NIL NIL) (-869 2110918 2111126 2111510 "PMPLCAT" 2112034 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL) (-868 2110450 2110529 2110681 "PMLSAGG" 2110833 NIL PMLSAGG (NIL T T T) -7 NIL NIL) (-867 2109927 2110003 2110183 "PMKERNEL" 2110368 NIL PMKERNEL (NIL T T) -7 NIL NIL) (-866 2109544 2109619 2109732 "PMINS" 2109846 NIL PMINS (NIL T) -7 NIL NIL) (-865 2108974 2109043 2109258 "PMFS" 2109469 NIL PMFS (NIL T T T) -7 NIL NIL) (-864 2108205 2108323 2108527 "PMDOWN" 2108851 NIL PMDOWN (NIL T T T) -7 NIL NIL) (-863 2107368 2107527 2107709 "PMASS" 2108043 T PMASS (NIL) -7 NIL NIL) (-862 2106642 2106753 2106916 "PMASSFS" 2107254 NIL PMASSFS (NIL T T) -7 NIL NIL) (-861 2106297 2106365 2106459 "PLOTTOOL" 2106568 T PLOTTOOL (NIL) -7 NIL NIL) (-860 2100919 2102108 2103256 "PLOT" 2105169 T PLOT (NIL) -8 NIL NIL) (-859 2096733 2097767 2098688 "PLOT3D" 2100018 T PLOT3D (NIL) -8 NIL NIL) (-858 2095645 2095822 2096057 "PLOT1" 2096537 NIL PLOT1 (NIL T) -7 NIL NIL) (-857 2071039 2075711 2080562 "PLEQN" 2090911 NIL PLEQN (NIL T T T T) -7 NIL NIL) (-856 2070357 2070479 2070659 "PINTERP" 2070904 NIL PINTERP (NIL NIL T) -7 NIL NIL) (-855 2070050 2070097 2070200 "PINTERPA" 2070304 NIL PINTERPA (NIL T T) -7 NIL NIL) (-854 2069277 2069844 2069937 "PI" 2069977 T PI (NIL) -8 NIL NIL) (-853 2067669 2068654 2068682 "PID" 2068864 T PID (NIL) -9 NIL 2068998) (-852 2067394 2067431 2067519 "PICOERCE" 2067626 NIL PICOERCE (NIL T) -7 NIL NIL) (-851 2066714 2066853 2067029 "PGROEB" 2067250 NIL PGROEB (NIL T) -7 NIL NIL) (-850 2062301 2063115 2064020 "PGE" 2065829 T PGE (NIL) -7 NIL NIL) (-849 2060425 2060671 2061037 "PGCD" 2062018 NIL PGCD (NIL T T T T) -7 NIL NIL) (-848 2059763 2059866 2060027 "PFRPAC" 2060309 NIL PFRPAC (NIL T) -7 NIL NIL) (-847 2056378 2058311 2058664 "PFR" 2059442 NIL PFR (NIL T) -8 NIL NIL) (-846 2054767 2055011 2055336 "PFOTOOLS" 2056125 NIL PFOTOOLS (NIL T T) -7 NIL NIL) (-845 2053300 2053539 2053890 "PFOQ" 2054524 NIL PFOQ (NIL T T T) -7 NIL NIL) (-844 2051777 2051989 2052351 "PFO" 2053084 NIL PFO (NIL T T T T T) -7 NIL NIL) (-843 2048300 2051666 2051735 "PF" 2051740 NIL PF (NIL NIL) -8 NIL NIL) (-842 2045729 2047010 2047038 "PFECAT" 2047623 T PFECAT (NIL) -9 NIL 2048007) (-841 2045174 2045328 2045542 "PFECAT-" 2045547 NIL PFECAT- (NIL T) -8 NIL NIL) (-840 2043778 2044029 2044330 "PFBRU" 2044923 NIL PFBRU (NIL T T) -7 NIL NIL) (-839 2041645 2041996 2042428 "PFBR" 2043429 NIL PFBR (NIL T T T T) -7 NIL NIL) (-838 2037497 2039021 2039697 "PERM" 2041002 NIL PERM (NIL T) -8 NIL NIL) (-837 2032762 2033704 2034574 "PERMGRP" 2036660 NIL PERMGRP (NIL T) -8 NIL NIL) (-836 2030833 2031826 2031867 "PERMCAT" 2032313 NIL PERMCAT (NIL T) -9 NIL 2032618) (-835 2030488 2030529 2030652 "PERMAN" 2030786 NIL PERMAN (NIL NIL T) -7 NIL NIL) (-834 2027928 2030057 2030188 "PENDTREE" 2030390 NIL PENDTREE (NIL T) -8 NIL NIL) (-833 2026001 2026779 2026820 "PDRING" 2027477 NIL PDRING (NIL T) -9 NIL 2027762) (-832 2025104 2025322 2025684 "PDRING-" 2025689 NIL PDRING- (NIL T T) -8 NIL NIL) (-831 2022245 2022996 2023687 "PDEPROB" 2024433 T PDEPROB (NIL) -8 NIL NIL) (-830 2019816 2020312 2020861 "PDEPACK" 2021716 T PDEPACK (NIL) -7 NIL NIL) (-829 2018728 2018918 2019169 "PDECOMP" 2019615 NIL PDECOMP (NIL T T) -7 NIL NIL) (-828 2016340 2017155 2017183 "PDECAT" 2017968 T PDECAT (NIL) -9 NIL 2018679) (-827 2016093 2016126 2016215 "PCOMP" 2016301 NIL PCOMP (NIL T T) -7 NIL NIL) (-826 2014300 2014896 2015192 "PBWLB" 2015823 NIL PBWLB (NIL T) -8 NIL NIL) (-825 2006808 2008377 2009713 "PATTERN" 2012985 NIL PATTERN (NIL T) -8 NIL NIL) (-824 2006440 2006497 2006606 "PATTERN2" 2006745 NIL PATTERN2 (NIL T T) -7 NIL NIL) (-823 2004197 2004585 2005042 "PATTERN1" 2006029 NIL PATTERN1 (NIL T T) -7 NIL NIL) (-822 2001592 2002146 2002627 "PATRES" 2003762 NIL PATRES (NIL T T) -8 NIL NIL) (-821 2001156 2001223 2001355 "PATRES2" 2001519 NIL PATRES2 (NIL T T T) -7 NIL NIL) (-820 1999053 1999453 1999858 "PATMATCH" 2000825 NIL PATMATCH (NIL T T T) -7 NIL NIL) (-819 1998590 1998773 1998814 "PATMAB" 1998921 NIL PATMAB (NIL T) -9 NIL 1999004) (-818 1997135 1997444 1997702 "PATLRES" 1998395 NIL PATLRES (NIL T T T) -8 NIL NIL) (-817 1996681 1996804 1996845 "PATAB" 1996850 NIL PATAB (NIL T) -9 NIL 1997022) (-816 1994162 1994694 1995267 "PARTPERM" 1996128 T PARTPERM (NIL) -7 NIL NIL) (-815 1993783 1993846 1993948 "PARSURF" 1994093 NIL PARSURF (NIL T) -8 NIL NIL) (-814 1993415 1993472 1993581 "PARSU2" 1993720 NIL PARSU2 (NIL T T) -7 NIL NIL) (-813 1993179 1993219 1993286 "PARSER" 1993368 T PARSER (NIL) -7 NIL NIL) (-812 1992800 1992863 1992965 "PARSCURV" 1993110 NIL PARSCURV (NIL T) -8 NIL NIL) (-811 1992432 1992489 1992598 "PARSC2" 1992737 NIL PARSC2 (NIL T T) -7 NIL NIL) (-810 1992071 1992129 1992226 "PARPCURV" 1992368 NIL PARPCURV (NIL T) -8 NIL NIL) (-809 1991703 1991760 1991869 "PARPC2" 1992008 NIL PARPC2 (NIL T T) -7 NIL NIL) (-808 1991223 1991309 1991428 "PAN2EXPR" 1991604 T PAN2EXPR (NIL) -7 NIL NIL) (-807 1990029 1990344 1990572 "PALETTE" 1991015 T PALETTE (NIL) -8 NIL NIL) (-806 1988497 1989034 1989394 "PAIR" 1989715 NIL PAIR (NIL T T) -8 NIL NIL) (-805 1982347 1987756 1987950 "PADICRC" 1988352 NIL PADICRC (NIL NIL T) -8 NIL NIL) (-804 1975555 1981693 1981877 "PADICRAT" 1982195 NIL PADICRAT (NIL NIL) -8 NIL NIL) (-803 1973859 1975492 1975537 "PADIC" 1975542 NIL PADIC (NIL NIL) -8 NIL NIL) (-802 1971064 1972638 1972678 "PADICCT" 1973259 NIL PADICCT (NIL NIL) -9 NIL 1973541) (-801 1970021 1970221 1970489 "PADEPAC" 1970851 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL) (-800 1969233 1969366 1969572 "PADE" 1969883 NIL PADE (NIL T T T) -7 NIL NIL) (-799 1967244 1968076 1968391 "OWP" 1969001 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL) (-798 1966353 1966849 1967021 "OVAR" 1967112 NIL OVAR (NIL NIL) -8 NIL NIL) (-797 1965617 1965738 1965899 "OUT" 1966212 T OUT (NIL) -7 NIL NIL) (-796 1954671 1956842 1959012 "OUTFORM" 1963467 T OUTFORM (NIL) -8 NIL NIL) (-795 1954079 1954400 1954489 "OSI" 1954602 T OSI (NIL) -8 NIL NIL) (-794 1952824 1953051 1953336 "ORTHPOL" 1953826 NIL ORTHPOL (NIL T) -7 NIL NIL) (-793 1950195 1952485 1952623 "OREUP" 1952767 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL) (-792 1947591 1949888 1950014 "ORESUP" 1950137 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL) (-791 1945126 1945626 1946186 "OREPCTO" 1947080 NIL OREPCTO (NIL T T) -7 NIL NIL) (-790 1939036 1941242 1941282 "OREPCAT" 1943603 NIL OREPCAT (NIL T) -9 NIL 1944706) (-789 1936184 1936966 1938023 "OREPCAT-" 1938028 NIL OREPCAT- (NIL T T) -8 NIL NIL) (-788 1935362 1935634 1935662 "ORDSET" 1935971 T ORDSET (NIL) -9 NIL 1936135) (-787 1934881 1935003 1935196 "ORDSET-" 1935201 NIL ORDSET- (NIL T) -8 NIL NIL) (-786 1933495 1934296 1934324 "ORDRING" 1934526 T ORDRING (NIL) -9 NIL 1934650) (-785 1933140 1933234 1933378 "ORDRING-" 1933383 NIL ORDRING- (NIL T) -8 NIL NIL) (-784 1932516 1932997 1933025 "ORDMON" 1933030 T ORDMON (NIL) -9 NIL 1933051) (-783 1931678 1931825 1932020 "ORDFUNS" 1932365 NIL ORDFUNS (NIL NIL T) -7 NIL NIL) (-782 1931190 1931549 1931577 "ORDFIN" 1931582 T ORDFIN (NIL) -9 NIL 1931603) (-781 1927702 1929776 1930185 "ORDCOMP" 1930814 NIL ORDCOMP (NIL T) -8 NIL NIL) (-780 1926968 1927095 1927281 "ORDCOMP2" 1927562 NIL ORDCOMP2 (NIL T T) -7 NIL NIL) (-779 1923475 1924358 1925195 "OPTPROB" 1926151 T OPTPROB (NIL) -8 NIL NIL) (-778 1920317 1920946 1921640 "OPTPACK" 1922801 T OPTPACK (NIL) -7 NIL NIL) (-777 1918043 1918779 1918807 "OPTCAT" 1919622 T OPTCAT (NIL) -9 NIL 1920268) (-776 1917811 1917850 1917916 "OPQUERY" 1917997 T OPQUERY (NIL) -7 NIL NIL) (-775 1914947 1916138 1916638 "OP" 1917343 NIL OP (NIL T) -8 NIL NIL) (-774 1911712 1913744 1914113 "ONECOMP" 1914611 NIL ONECOMP (NIL T) -8 NIL NIL) (-773 1911017 1911132 1911306 "ONECOMP2" 1911584 NIL ONECOMP2 (NIL T T) -7 NIL NIL) (-772 1910436 1910542 1910672 "OMSERVER" 1910907 T OMSERVER (NIL) -7 NIL NIL) (-771 1907325 1909877 1909917 "OMSAGG" 1909978 NIL OMSAGG (NIL T) -9 NIL 1910042) (-770 1905948 1906211 1906493 "OMPKG" 1907063 T OMPKG (NIL) -7 NIL NIL) (-769 1905378 1905481 1905509 "OM" 1905808 T OM (NIL) -9 NIL NIL) (-768 1903917 1904930 1905098 "OMLO" 1905259 NIL OMLO (NIL T T) -8 NIL NIL) (-767 1902847 1902994 1903220 "OMEXPR" 1903743 NIL OMEXPR (NIL T) -7 NIL NIL) (-766 1902165 1902393 1902529 "OMERR" 1902731 T OMERR (NIL) -8 NIL NIL) (-765 1901343 1901586 1901746 "OMERRK" 1902025 T OMERRK (NIL) -8 NIL NIL) (-764 1900821 1901020 1901128 "OMENC" 1901255 T OMENC (NIL) -8 NIL NIL) (-763 1894716 1895901 1897072 "OMDEV" 1899670 T OMDEV (NIL) -8 NIL NIL) (-762 1893785 1893956 1894150 "OMCONN" 1894542 T OMCONN (NIL) -8 NIL NIL) (-761 1892401 1893387 1893415 "OINTDOM" 1893420 T OINTDOM (NIL) -9 NIL 1893441) (-760 1888163 1889393 1890108 "OFMONOID" 1891718 NIL OFMONOID (NIL T) -8 NIL NIL) (-759 1887601 1888100 1888145 "ODVAR" 1888150 NIL ODVAR (NIL T) -8 NIL NIL) (-758 1884726 1887098 1887283 "ODR" 1887476 NIL ODR (NIL T T NIL) -8 NIL NIL) (-757 1877032 1884505 1884629 "ODPOL" 1884634 NIL ODPOL (NIL T) -8 NIL NIL) (-756 1870855 1876904 1877009 "ODP" 1877014 NIL ODP (NIL NIL T NIL) -8 NIL NIL) (-755 1869621 1869836 1870111 "ODETOOLS" 1870629 NIL ODETOOLS (NIL T T) -7 NIL NIL) (-754 1866590 1867246 1867962 "ODESYS" 1868954 NIL ODESYS (NIL T T) -7 NIL NIL) (-753 1861494 1862402 1863425 "ODERTRIC" 1865665 NIL ODERTRIC (NIL T T) -7 NIL NIL) (-752 1860920 1861002 1861196 "ODERED" 1861406 NIL ODERED (NIL T T T T T) -7 NIL NIL) (-751 1857822 1858370 1859045 "ODERAT" 1860343 NIL ODERAT (NIL T T) -7 NIL NIL) (-750 1854790 1855254 1855850 "ODEPRRIC" 1857351 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL) (-749 1852659 1853228 1853737 "ODEPROB" 1854301 T ODEPROB (NIL) -8 NIL NIL) (-748 1849191 1849674 1850320 "ODEPRIM" 1852138 NIL ODEPRIM (NIL T T T T) -7 NIL NIL) (-747 1848444 1848546 1848804 "ODEPAL" 1849083 NIL ODEPAL (NIL T T T T) -7 NIL NIL) (-746 1844646 1845427 1846281 "ODEPACK" 1847610 T ODEPACK (NIL) -7 NIL NIL) (-745 1843683 1843790 1844018 "ODEINT" 1844535 NIL ODEINT (NIL T T) -7 NIL NIL) (-744 1837784 1839209 1840656 "ODEIFTBL" 1842256 T ODEIFTBL (NIL) -8 NIL NIL) (-743 1833128 1833914 1834872 "ODEEF" 1836943 NIL ODEEF (NIL T T) -7 NIL NIL) (-742 1832465 1832554 1832783 "ODECONST" 1833033 NIL ODECONST (NIL T T T) -7 NIL NIL) (-741 1830623 1831256 1831284 "ODECAT" 1831887 T ODECAT (NIL) -9 NIL 1832416) (-740 1827495 1830335 1830454 "OCT" 1830536 NIL OCT (NIL T) -8 NIL NIL) (-739 1827133 1827176 1827303 "OCTCT2" 1827446 NIL OCTCT2 (NIL T T T T) -7 NIL NIL) (-738 1821967 1824405 1824445 "OC" 1825541 NIL OC (NIL T) -9 NIL 1826398) (-737 1819194 1819942 1820932 "OC-" 1821026 NIL OC- (NIL T T) -8 NIL NIL) (-736 1818573 1819015 1819043 "OCAMON" 1819048 T OCAMON (NIL) -9 NIL 1819069) (-735 1818027 1818434 1818462 "OASGP" 1818467 T OASGP (NIL) -9 NIL 1818487) (-734 1817315 1817778 1817806 "OAMONS" 1817846 T OAMONS (NIL) -9 NIL 1817889) (-733 1816756 1817163 1817191 "OAMON" 1817196 T OAMON (NIL) -9 NIL 1817216) (-732 1816061 1816553 1816581 "OAGROUP" 1816586 T OAGROUP (NIL) -9 NIL 1816606) (-731 1815751 1815801 1815889 "NUMTUBE" 1816005 NIL NUMTUBE (NIL T) -7 NIL NIL) (-730 1809324 1810842 1812378 "NUMQUAD" 1814235 T NUMQUAD (NIL) -7 NIL NIL) (-729 1805080 1806068 1807093 "NUMODE" 1808319 T NUMODE (NIL) -7 NIL NIL) (-728 1802484 1803330 1803358 "NUMINT" 1804275 T NUMINT (NIL) -9 NIL 1805031) (-727 1801432 1801629 1801847 "NUMFMT" 1802286 T NUMFMT (NIL) -7 NIL NIL) (-726 1787814 1790748 1793278 "NUMERIC" 1798941 NIL NUMERIC (NIL T) -7 NIL NIL) (-725 1782215 1787267 1787361 "NTSCAT" 1787366 NIL NTSCAT (NIL T T T T) -9 NIL 1787404) (-724 1781409 1781574 1781767 "NTPOLFN" 1782054 NIL NTPOLFN (NIL T) -7 NIL NIL) (-723 1769225 1778251 1779061 "NSUP" 1780631 NIL NSUP (NIL T) -8 NIL NIL) (-722 1768861 1768918 1769025 "NSUP2" 1769162 NIL NSUP2 (NIL T T) -7 NIL NIL) (-721 1758823 1768640 1768770 "NSMP" 1768775 NIL NSMP (NIL T T) -8 NIL NIL) (-720 1757255 1757556 1757913 "NREP" 1758511 NIL NREP (NIL T) -7 NIL NIL) (-719 1755846 1756098 1756456 "NPCOEF" 1756998 NIL NPCOEF (NIL T T T T T) -7 NIL NIL) (-718 1754912 1755027 1755243 "NORMRETR" 1755727 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL) (-717 1752965 1753255 1753662 "NORMPK" 1754620 NIL NORMPK (NIL T T T T T) -7 NIL NIL) (-716 1752650 1752678 1752802 "NORMMA" 1752931 NIL NORMMA (NIL T T T T) -7 NIL NIL) (-715 1752477 1752607 1752636 "NONE" 1752641 T NONE (NIL) -8 NIL NIL) (-714 1752266 1752295 1752364 "NONE1" 1752441 NIL NONE1 (NIL T) -7 NIL NIL) (-713 1751751 1751813 1751998 "NODE1" 1752198 NIL NODE1 (NIL T T) -7 NIL NIL) (-712 1750044 1750914 1751169 "NNI" 1751516 T NNI (NIL) -8 NIL NIL) (-711 1748464 1748777 1749141 "NLINSOL" 1749712 NIL NLINSOL (NIL T) -7 NIL NIL) (-710 1744631 1745599 1746521 "NIPROB" 1747562 T NIPROB (NIL) -8 NIL NIL) (-709 1743388 1743622 1743924 "NFINTBAS" 1744393 NIL NFINTBAS (NIL T T) -7 NIL NIL) (-708 1742096 1742327 1742608 "NCODIV" 1743156 NIL NCODIV (NIL T T) -7 NIL NIL) (-707 1741858 1741895 1741970 "NCNTFRAC" 1742053 NIL NCNTFRAC (NIL T) -7 NIL NIL) (-706 1740038 1740402 1740822 "NCEP" 1741483 NIL NCEP (NIL T) -7 NIL NIL) (-705 1738950 1739689 1739717 "NASRING" 1739827 T NASRING (NIL) -9 NIL 1739901) (-704 1738745 1738789 1738883 "NASRING-" 1738888 NIL NASRING- (NIL T) -8 NIL NIL) (-703 1737899 1738398 1738426 "NARNG" 1738543 T NARNG (NIL) -9 NIL 1738634) (-702 1737591 1737658 1737792 "NARNG-" 1737797 NIL NARNG- (NIL T) -8 NIL NIL) (-701 1736470 1736677 1736912 "NAGSP" 1737376 T NAGSP (NIL) -7 NIL NIL) (-700 1727894 1729540 1731175 "NAGS" 1734855 T NAGS (NIL) -7 NIL NIL) (-699 1726458 1726762 1727089 "NAGF07" 1727587 T NAGF07 (NIL) -7 NIL NIL) (-698 1721040 1722320 1723616 "NAGF04" 1725182 T NAGF04 (NIL) -7 NIL NIL) (-697 1714072 1715670 1717287 "NAGF02" 1719443 T NAGF02 (NIL) -7 NIL NIL) (-696 1709336 1710426 1711533 "NAGF01" 1712985 T NAGF01 (NIL) -7 NIL NIL) (-695 1702996 1704554 1706131 "NAGE04" 1707779 T NAGE04 (NIL) -7 NIL NIL) (-694 1694237 1696340 1698452 "NAGE02" 1700904 T NAGE02 (NIL) -7 NIL NIL) (-693 1690230 1691167 1692121 "NAGE01" 1693303 T NAGE01 (NIL) -7 NIL NIL) (-692 1688037 1688568 1689123 "NAGD03" 1689695 T NAGD03 (NIL) -7 NIL NIL) (-691 1679823 1681742 1683687 "NAGD02" 1686112 T NAGD02 (NIL) -7 NIL NIL) (-690 1673682 1675095 1676523 "NAGD01" 1678415 T NAGD01 (NIL) -7 NIL NIL) (-689 1669939 1670749 1671574 "NAGC06" 1672877 T NAGC06 (NIL) -7 NIL NIL) (-688 1668416 1668745 1669098 "NAGC05" 1669606 T NAGC05 (NIL) -7 NIL NIL) (-687 1667800 1667917 1668059 "NAGC02" 1668294 T NAGC02 (NIL) -7 NIL NIL) (-686 1666862 1667419 1667459 "NAALG" 1667538 NIL NAALG (NIL T) -9 NIL 1667599) (-685 1666697 1666726 1666816 "NAALG-" 1666821 NIL NAALG- (NIL T T) -8 NIL NIL) (-684 1660647 1661755 1662942 "MULTSQFR" 1665593 NIL MULTSQFR (NIL T T T T) -7 NIL NIL) (-683 1659966 1660041 1660225 "MULTFACT" 1660559 NIL MULTFACT (NIL T T T T) -7 NIL NIL) (-682 1653160 1657071 1657123 "MTSCAT" 1658183 NIL MTSCAT (NIL T T) -9 NIL 1658697) (-681 1652872 1652926 1653018 "MTHING" 1653100 NIL MTHING (NIL T) -7 NIL NIL) (-680 1652664 1652697 1652757 "MSYSCMD" 1652832 T MSYSCMD (NIL) -7 NIL NIL) (-679 1648776 1651419 1651739 "MSET" 1652377 NIL MSET (NIL T) -8 NIL NIL) (-678 1645872 1648338 1648379 "MSETAGG" 1648384 NIL MSETAGG (NIL T) -9 NIL 1648418) (-677 1641728 1643270 1644011 "MRING" 1645175 NIL MRING (NIL T T) -8 NIL NIL) (-676 1641298 1641365 1641494 "MRF2" 1641655 NIL MRF2 (NIL T T T) -7 NIL NIL) (-675 1640916 1640951 1641095 "MRATFAC" 1641257 NIL MRATFAC (NIL T T T T) -7 NIL NIL) (-674 1638528 1638823 1639254 "MPRFF" 1640621 NIL MPRFF (NIL T T T T) -7 NIL NIL) (-673 1632548 1638383 1638479 "MPOLY" 1638484 NIL MPOLY (NIL NIL T) -8 NIL NIL) (-672 1632038 1632073 1632281 "MPCPF" 1632507 NIL MPCPF (NIL T T T T) -7 NIL NIL) (-671 1631554 1631597 1631780 "MPC3" 1631989 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL) (-670 1630755 1630836 1631055 "MPC2" 1631469 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL) (-669 1629056 1629393 1629783 "MONOTOOL" 1630415 NIL MONOTOOL (NIL T T) -7 NIL NIL) (-668 1628181 1628516 1628544 "MONOID" 1628821 T MONOID (NIL) -9 NIL 1628993) (-667 1627559 1627722 1627965 "MONOID-" 1627970 NIL MONOID- (NIL T) -8 NIL NIL) (-666 1618540 1624526 1624585 "MONOGEN" 1625259 NIL MONOGEN (NIL T T) -9 NIL 1625715) (-665 1615758 1616493 1617493 "MONOGEN-" 1617612 NIL MONOGEN- (NIL T T T) -8 NIL NIL) (-664 1614618 1615038 1615066 "MONADWU" 1615458 T MONADWU (NIL) -9 NIL 1615696) (-663 1613990 1614149 1614397 "MONADWU-" 1614402 NIL MONADWU- (NIL T) -8 NIL NIL) (-662 1613376 1613594 1613622 "MONAD" 1613829 T MONAD (NIL) -9 NIL 1613941) (-661 1613061 1613139 1613271 "MONAD-" 1613276 NIL MONAD- (NIL T) -8 NIL NIL) (-660 1611312 1611974 1612253 "MOEBIUS" 1612814 NIL MOEBIUS (NIL T) -8 NIL NIL) (-659 1610706 1611084 1611124 "MODULE" 1611129 NIL MODULE (NIL T) -9 NIL 1611155) (-658 1610274 1610370 1610560 "MODULE-" 1610565 NIL MODULE- (NIL T T) -8 NIL NIL) (-657 1607945 1608640 1608966 "MODRING" 1610099 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL) (-656 1604901 1606066 1606583 "MODOP" 1607477 NIL MODOP (NIL T T) -8 NIL NIL) (-655 1603088 1603540 1603881 "MODMONOM" 1604700 NIL MODMONOM (NIL T T NIL) -8 NIL NIL) (-654 1592767 1601292 1601714 "MODMON" 1602716 NIL MODMON (NIL T T) -8 NIL NIL) (-653 1589893 1591611 1591887 "MODFIELD" 1592642 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL) (-652 1588897 1589174 1589364 "MMLFORM" 1589723 T MMLFORM (NIL) -8 NIL NIL) (-651 1588423 1588466 1588645 "MMAP" 1588848 NIL MMAP (NIL T T T T T T) -7 NIL NIL) (-650 1586660 1587437 1587477 "MLO" 1587894 NIL MLO (NIL T) -9 NIL 1588135) (-649 1584027 1584542 1585144 "MLIFT" 1586141 NIL MLIFT (NIL T T T T) -7 NIL NIL) (-648 1583418 1583502 1583656 "MKUCFUNC" 1583938 NIL MKUCFUNC (NIL T T T) -7 NIL NIL) (-647 1583017 1583087 1583210 "MKRECORD" 1583341 NIL MKRECORD (NIL T T) -7 NIL NIL) (-646 1582065 1582226 1582454 "MKFUNC" 1582828 NIL MKFUNC (NIL T) -7 NIL NIL) (-645 1581453 1581557 1581713 "MKFLCFN" 1581948 NIL MKFLCFN (NIL T) -7 NIL NIL) (-644 1580879 1581246 1581335 "MKCHSET" 1581397 NIL MKCHSET (NIL T) -8 NIL NIL) (-643 1580156 1580258 1580443 "MKBCFUNC" 1580772 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL) (-642 1576840 1579710 1579846 "MINT" 1580040 T MINT (NIL) -8 NIL NIL) (-641 1575652 1575895 1576172 "MHROWRED" 1576595 NIL MHROWRED (NIL T) -7 NIL NIL) (-640 1570923 1574097 1574521 "MFLOAT" 1575248 T MFLOAT (NIL) -8 NIL NIL) (-639 1570280 1570356 1570527 "MFINFACT" 1570835 NIL MFINFACT (NIL T T T T) -7 NIL NIL) (-638 1566595 1567443 1568327 "MESH" 1569416 T MESH (NIL) -7 NIL NIL) (-637 1564985 1565297 1565650 "MDDFACT" 1566282 NIL MDDFACT (NIL T) -7 NIL NIL) (-636 1561828 1564145 1564186 "MDAGG" 1564441 NIL MDAGG (NIL T) -9 NIL 1564584) (-635 1551526 1561121 1561328 "MCMPLX" 1561641 T MCMPLX (NIL) -8 NIL NIL) (-634 1550667 1550813 1551013 "MCDEN" 1551375 NIL MCDEN (NIL T T) -7 NIL NIL) (-633 1548557 1548827 1549207 "MCALCFN" 1550397 NIL MCALCFN (NIL T T T T) -7 NIL NIL) (-632 1546179 1546702 1547263 "MATSTOR" 1548028 NIL MATSTOR (NIL T) -7 NIL NIL) (-631 1542188 1545554 1545801 "MATRIX" 1545964 NIL MATRIX (NIL T) -8 NIL NIL) (-630 1537957 1538661 1539397 "MATLIN" 1541545 NIL MATLIN (NIL T T T T) -7 NIL NIL) (-629 1528155 1531293 1531369 "MATCAT" 1536207 NIL MATCAT (NIL T T T) -9 NIL 1537624) (-628 1524520 1525533 1526888 "MATCAT-" 1526893 NIL MATCAT- (NIL T T T T) -8 NIL NIL) (-627 1523122 1523275 1523606 "MATCAT2" 1524355 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL) (-626 1521234 1521558 1521942 "MAPPKG3" 1522797 NIL MAPPKG3 (NIL T T T) -7 NIL NIL) (-625 1520215 1520388 1520610 "MAPPKG2" 1521058 NIL MAPPKG2 (NIL T T) -7 NIL NIL) (-624 1518714 1518998 1519325 "MAPPKG1" 1519921 NIL MAPPKG1 (NIL T) -7 NIL NIL) (-623 1518325 1518383 1518506 "MAPHACK3" 1518650 NIL MAPHACK3 (NIL T T T) -7 NIL NIL) (-622 1517917 1517978 1518092 "MAPHACK2" 1518257 NIL MAPHACK2 (NIL T T) -7 NIL NIL) (-621 1517355 1517458 1517600 "MAPHACK1" 1517808 NIL MAPHACK1 (NIL T) -7 NIL NIL) (-620 1515463 1516057 1516360 "MAGMA" 1517084 NIL MAGMA (NIL T) -8 NIL NIL) (-619 1511937 1513707 1514167 "M3D" 1515036 NIL M3D (NIL T) -8 NIL NIL) (-618 1506093 1510308 1510349 "LZSTAGG" 1511131 NIL LZSTAGG (NIL T) -9 NIL 1511426) (-617 1502066 1503224 1504681 "LZSTAGG-" 1504686 NIL LZSTAGG- (NIL T T) -8 NIL NIL) (-616 1499182 1499959 1500445 "LWORD" 1501612 NIL LWORD (NIL T) -8 NIL NIL) (-615 1492342 1498953 1499087 "LSQM" 1499092 NIL LSQM (NIL NIL T) -8 NIL NIL) (-614 1491566 1491705 1491933 "LSPP" 1492197 NIL LSPP (NIL T T T T) -7 NIL NIL) (-613 1489378 1489679 1490135 "LSMP" 1491255 NIL LSMP (NIL T T T T) -7 NIL NIL) (-612 1486157 1486831 1487561 "LSMP1" 1488680 NIL LSMP1 (NIL T) -7 NIL NIL) (-611 1480084 1485326 1485367 "LSAGG" 1485429 NIL LSAGG (NIL T) -9 NIL 1485507) (-610 1476779 1477703 1478916 "LSAGG-" 1478921 NIL LSAGG- (NIL T T) -8 NIL NIL) (-609 1474405 1475923 1476172 "LPOLY" 1476574 NIL LPOLY (NIL T T) -8 NIL NIL) (-608 1473987 1474072 1474195 "LPEFRAC" 1474314 NIL LPEFRAC (NIL T) -7 NIL NIL) (-607 1472334 1473081 1473334 "LO" 1473819 NIL LO (NIL T T T) -8 NIL NIL) (-606 1471988 1472100 1472128 "LOGIC" 1472239 T LOGIC (NIL) -9 NIL 1472319) (-605 1471850 1471873 1471944 "LOGIC-" 1471949 NIL LOGIC- (NIL T) -8 NIL NIL) (-604 1471043 1471183 1471376 "LODOOPS" 1471706 NIL LODOOPS (NIL T T) -7 NIL NIL) (-603 1468461 1470960 1471025 "LODO" 1471030 NIL LODO (NIL T NIL) -8 NIL NIL) (-602 1467007 1467242 1467593 "LODOF" 1468208 NIL LODOF (NIL T T) -7 NIL NIL) (-601 1463427 1465863 1465903 "LODOCAT" 1466335 NIL LODOCAT (NIL T) -9 NIL 1466546) (-600 1463161 1463219 1463345 "LODOCAT-" 1463350 NIL LODOCAT- (NIL T T) -8 NIL NIL) (-599 1460475 1463002 1463120 "LODO2" 1463125 NIL LODO2 (NIL T T) -8 NIL NIL) (-598 1457904 1460412 1460457 "LODO1" 1460462 NIL LODO1 (NIL T) -8 NIL NIL) (-597 1456767 1456932 1457243 "LODEEF" 1457727 NIL LODEEF (NIL T T T) -7 NIL NIL) (-596 1452054 1454898 1454939 "LNAGG" 1455886 NIL LNAGG (NIL T) -9 NIL 1456330) (-595 1451201 1451415 1451757 "LNAGG-" 1451762 NIL LNAGG- (NIL T T) -8 NIL NIL) (-594 1447366 1448128 1448766 "LMOPS" 1450617 NIL LMOPS (NIL T T NIL) -8 NIL NIL) (-593 1446764 1447126 1447166 "LMODULE" 1447226 NIL LMODULE (NIL T) -9 NIL 1447268) (-592 1444010 1446409 1446532 "LMDICT" 1446674 NIL LMDICT (NIL T) -8 NIL NIL) (-591 1437237 1442956 1443254 "LIST" 1443745 NIL LIST (NIL T) -8 NIL NIL) (-590 1436762 1436836 1436975 "LIST3" 1437157 NIL LIST3 (NIL T T T) -7 NIL NIL) (-589 1435769 1435947 1436175 "LIST2" 1436580 NIL LIST2 (NIL T T) -7 NIL NIL) (-588 1433903 1434215 1434614 "LIST2MAP" 1435416 NIL LIST2MAP (NIL T T) -7 NIL NIL) (-587 1432616 1433296 1433336 "LINEXP" 1433589 NIL LINEXP (NIL T) -9 NIL 1433737) (-586 1431263 1431523 1431820 "LINDEP" 1432368 NIL LINDEP (NIL T T) -7 NIL NIL) (-585 1428030 1428749 1429526 "LIMITRF" 1430518 NIL LIMITRF (NIL T) -7 NIL NIL) (-584 1426310 1426605 1427020 "LIMITPS" 1427725 NIL LIMITPS (NIL T T) -7 NIL NIL) (-583 1420765 1425821 1426049 "LIE" 1426131 NIL LIE (NIL T T) -8 NIL NIL) (-582 1419816 1420259 1420299 "LIECAT" 1420439 NIL LIECAT (NIL T) -9 NIL 1420590) (-581 1419657 1419684 1419772 "LIECAT-" 1419777 NIL LIECAT- (NIL T T) -8 NIL NIL) (-580 1412269 1419106 1419271 "LIB" 1419512 T LIB (NIL) -8 NIL NIL) (-579 1407906 1408787 1409722 "LGROBP" 1411386 NIL LGROBP (NIL NIL T) -7 NIL NIL) (-578 1405772 1406046 1406408 "LF" 1407627 NIL LF (NIL T T) -7 NIL NIL) (-577 1404612 1405304 1405332 "LFCAT" 1405539 T LFCAT (NIL) -9 NIL 1405678) (-576 1401524 1402150 1402836 "LEXTRIPK" 1403978 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL) (-575 1398230 1399094 1399597 "LEXP" 1401104 NIL LEXP (NIL T T NIL) -8 NIL NIL) (-574 1396628 1396941 1397342 "LEADCDET" 1397912 NIL LEADCDET (NIL T T T T) -7 NIL NIL) (-573 1395824 1395898 1396125 "LAZM3PK" 1396549 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL) (-572 1390741 1393903 1394440 "LAUPOL" 1395337 NIL LAUPOL (NIL T T) -8 NIL NIL) (-571 1390308 1390352 1390519 "LAPLACE" 1390691 NIL LAPLACE (NIL T T) -7 NIL NIL) (-570 1388236 1389409 1389660 "LA" 1390141 NIL LA (NIL T T T) -8 NIL NIL) (-569 1387299 1387893 1387933 "LALG" 1387994 NIL LALG (NIL T) -9 NIL 1388052) (-568 1387014 1387073 1387208 "LALG-" 1387213 NIL LALG- (NIL T T) -8 NIL NIL) (-567 1385924 1386111 1386408 "KOVACIC" 1386814 NIL KOVACIC (NIL T T) -7 NIL NIL) (-566 1385759 1385783 1385824 "KONVERT" 1385886 NIL KONVERT (NIL T) -9 NIL NIL) (-565 1385594 1385618 1385659 "KOERCE" 1385721 NIL KOERCE (NIL T) -9 NIL NIL) (-564 1383328 1384088 1384481 "KERNEL" 1385233 NIL KERNEL (NIL T) -8 NIL NIL) (-563 1382830 1382911 1383041 "KERNEL2" 1383242 NIL KERNEL2 (NIL T T) -7 NIL NIL) (-562 1376682 1381370 1381424 "KDAGG" 1381801 NIL KDAGG (NIL T T) -9 NIL 1382007) (-561 1376211 1376335 1376540 "KDAGG-" 1376545 NIL KDAGG- (NIL T T T) -8 NIL NIL) (-560 1369386 1375872 1376027 "KAFILE" 1376089 NIL KAFILE (NIL T) -8 NIL NIL) (-559 1363841 1368897 1369125 "JORDAN" 1369207 NIL JORDAN (NIL T T) -8 NIL NIL) (-558 1360141 1362047 1362101 "IXAGG" 1363030 NIL IXAGG (NIL T T) -9 NIL 1363489) (-557 1359060 1359366 1359785 "IXAGG-" 1359790 NIL IXAGG- (NIL T T T) -8 NIL NIL) (-556 1354645 1358982 1359041 "IVECTOR" 1359046 NIL IVECTOR (NIL T NIL) -8 NIL NIL) (-555 1353411 1353648 1353914 "ITUPLE" 1354412 NIL ITUPLE (NIL T) -8 NIL NIL) (-554 1351847 1352024 1352330 "ITRIGMNP" 1353233 NIL ITRIGMNP (NIL T T T) -7 NIL NIL) (-553 1350592 1350796 1351079 "ITFUN3" 1351623 NIL ITFUN3 (NIL T T T) -7 NIL NIL) (-552 1350224 1350281 1350390 "ITFUN2" 1350529 NIL ITFUN2 (NIL T T) -7 NIL NIL) (-551 1348026 1349097 1349394 "ITAYLOR" 1349959 NIL ITAYLOR (NIL T) -8 NIL NIL) (-550 1337014 1342212 1343371 "ISUPS" 1346899 NIL ISUPS (NIL T) -8 NIL NIL) (-549 1336118 1336258 1336494 "ISUMP" 1336861 NIL ISUMP (NIL T T T T) -7 NIL NIL) (-548 1331382 1335919 1335998 "ISTRING" 1336071 NIL ISTRING (NIL NIL) -8 NIL NIL) (-547 1330595 1330676 1330891 "IRURPK" 1331296 NIL IRURPK (NIL T T T T T) -7 NIL NIL) (-546 1329531 1329732 1329972 "IRSN" 1330375 T IRSN (NIL) -7 NIL NIL) (-545 1327566 1327921 1328356 "IRRF2F" 1329169 NIL IRRF2F (NIL T) -7 NIL NIL) (-544 1327313 1327351 1327427 "IRREDFFX" 1327522 NIL IRREDFFX (NIL T) -7 NIL NIL) (-543 1325928 1326187 1326486 "IROOT" 1327046 NIL IROOT (NIL T) -7 NIL NIL) (-542 1322566 1323617 1324307 "IR" 1325270 NIL IR (NIL T) -8 NIL NIL) (-541 1320179 1320674 1321240 "IR2" 1322044 NIL IR2 (NIL T T) -7 NIL NIL) (-540 1319255 1319368 1319588 "IR2F" 1320062 NIL IR2F (NIL T T) -7 NIL NIL) (-539 1319046 1319080 1319140 "IPRNTPK" 1319215 T IPRNTPK (NIL) -7 NIL NIL) (-538 1315600 1318935 1319004 "IPF" 1319009 NIL IPF (NIL NIL) -8 NIL NIL) (-537 1313917 1315525 1315582 "IPADIC" 1315587 NIL IPADIC (NIL NIL NIL) -8 NIL NIL) (-536 1313416 1313474 1313663 "INVLAPLA" 1313853 NIL INVLAPLA (NIL T T) -7 NIL NIL) (-535 1303065 1305418 1307804 "INTTR" 1311080 NIL INTTR (NIL T T) -7 NIL NIL) (-534 1299413 1300154 1301017 "INTTOOLS" 1302251 NIL INTTOOLS (NIL T T) -7 NIL NIL) (-533 1298999 1299090 1299207 "INTSLPE" 1299316 T INTSLPE (NIL) -7 NIL NIL) (-532 1296949 1298922 1298981 "INTRVL" 1298986 NIL INTRVL (NIL T) -8 NIL NIL) (-531 1294556 1295068 1295642 "INTRF" 1296434 NIL INTRF (NIL T) -7 NIL NIL) (-530 1293971 1294068 1294209 "INTRET" 1294454 NIL INTRET (NIL T) -7 NIL NIL) (-529 1291973 1292362 1292831 "INTRAT" 1293579 NIL INTRAT (NIL T T) -7 NIL NIL) (-528 1289206 1289789 1290414 "INTPM" 1291458 NIL INTPM (NIL T T) -7 NIL NIL) (-527 1285915 1286514 1287258 "INTPAF" 1288592 NIL INTPAF (NIL T T T) -7 NIL NIL) (-526 1281158 1282104 1283139 "INTPACK" 1284900 T INTPACK (NIL) -7 NIL NIL) (-525 1278012 1280887 1281014 "INT" 1281051 T INT (NIL) -8 NIL NIL) (-524 1277264 1277416 1277624 "INTHERTR" 1277854 NIL INTHERTR (NIL T T) -7 NIL NIL) (-523 1276703 1276783 1276971 "INTHERAL" 1277178 NIL INTHERAL (NIL T T T T) -7 NIL NIL) (-522 1274549 1274992 1275449 "INTHEORY" 1276266 T INTHEORY (NIL) -7 NIL NIL) (-521 1265871 1267492 1269270 "INTG0" 1272901 NIL INTG0 (NIL T T T) -7 NIL NIL) (-520 1246444 1251234 1256044 "INTFTBL" 1261081 T INTFTBL (NIL) -8 NIL NIL) (-519 1245693 1245831 1246004 "INTFACT" 1246303 NIL INTFACT (NIL T) -7 NIL NIL) (-518 1243084 1243530 1244093 "INTEF" 1245247 NIL INTEF (NIL T T) -7 NIL NIL) (-517 1241546 1242295 1242323 "INTDOM" 1242624 T INTDOM (NIL) -9 NIL 1242831) (-516 1240915 1241089 1241331 "INTDOM-" 1241336 NIL INTDOM- (NIL T) -8 NIL NIL) (-515 1237408 1239340 1239394 "INTCAT" 1240193 NIL INTCAT (NIL T) -9 NIL 1240512) (-514 1236881 1236983 1237111 "INTBIT" 1237300 T INTBIT (NIL) -7 NIL NIL) (-513 1235556 1235710 1236023 "INTALG" 1236726 NIL INTALG (NIL T T T T T) -7 NIL NIL) (-512 1235013 1235103 1235273 "INTAF" 1235460 NIL INTAF (NIL T T) -7 NIL NIL) (-511 1228467 1234823 1234963 "INTABL" 1234968 NIL INTABL (NIL T T T) -8 NIL NIL) (-510 1223418 1226147 1226175 "INS" 1227143 T INS (NIL) -9 NIL 1227824) (-509 1220658 1221429 1222403 "INS-" 1222476 NIL INS- (NIL T) -8 NIL NIL) (-508 1219437 1219664 1219961 "INPSIGN" 1220411 NIL INPSIGN (NIL T T) -7 NIL NIL) (-507 1218555 1218672 1218869 "INPRODPF" 1219317 NIL INPRODPF (NIL T T) -7 NIL NIL) (-506 1217449 1217566 1217803 "INPRODFF" 1218435 NIL INPRODFF (NIL T T T T) -7 NIL NIL) (-505 1216449 1216601 1216861 "INNMFACT" 1217285 NIL INNMFACT (NIL T T T T) -7 NIL NIL) (-504 1215646 1215743 1215931 "INMODGCD" 1216348 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL) (-503 1214155 1214399 1214723 "INFSP" 1215391 NIL INFSP (NIL T T T) -7 NIL NIL) (-502 1213339 1213456 1213639 "INFPROD0" 1214035 NIL INFPROD0 (NIL T T) -7 NIL NIL) (-501 1210349 1211508 1211999 "INFORM" 1212856 T INFORM (NIL) -8 NIL NIL) (-500 1209959 1210019 1210117 "INFORM1" 1210284 NIL INFORM1 (NIL T) -7 NIL NIL) (-499 1209482 1209571 1209685 "INFINITY" 1209865 T INFINITY (NIL) -7 NIL NIL) (-498 1208099 1208348 1208669 "INEP" 1209230 NIL INEP (NIL T T T) -7 NIL NIL) (-497 1207375 1207996 1208061 "INDE" 1208066 NIL INDE (NIL T) -8 NIL NIL) (-496 1206939 1207007 1207124 "INCRMAPS" 1207302 NIL INCRMAPS (NIL T) -7 NIL NIL) (-495 1202250 1203175 1204119 "INBFF" 1206027 NIL INBFF (NIL T) -7 NIL NIL) (-494 1198745 1202095 1202198 "IMATRIX" 1202203 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL) (-493 1197457 1197580 1197895 "IMATQF" 1198601 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL) (-492 1195677 1195904 1196241 "IMATLIN" 1197213 NIL IMATLIN (NIL T T T T) -7 NIL NIL) (-491 1190303 1195601 1195659 "ILIST" 1195664 NIL ILIST (NIL T NIL) -8 NIL NIL) (-490 1188256 1190163 1190276 "IIARRAY2" 1190281 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL) (-489 1183624 1188167 1188231 "IFF" 1188236 NIL IFF (NIL NIL NIL) -8 NIL NIL) (-488 1178667 1182916 1183104 "IFARRAY" 1183481 NIL IFARRAY (NIL T NIL) -8 NIL NIL) (-487 1177874 1178571 1178644 "IFAMON" 1178649 NIL IFAMON (NIL T T NIL) -8 NIL NIL) (-486 1177458 1177523 1177577 "IEVALAB" 1177784 NIL IEVALAB (NIL T T) -9 NIL NIL) (-485 1177133 1177201 1177361 "IEVALAB-" 1177366 NIL IEVALAB- (NIL T T T) -8 NIL NIL) (-484 1176791 1177047 1177110 "IDPO" 1177115 NIL IDPO (NIL T T) -8 NIL NIL) (-483 1176068 1176680 1176755 "IDPOAMS" 1176760 NIL IDPOAMS (NIL T T) -8 NIL NIL) (-482 1175402 1175957 1176032 "IDPOAM" 1176037 NIL IDPOAM (NIL T T) -8 NIL NIL) (-481 1174488 1174738 1174791 "IDPC" 1175204 NIL IDPC (NIL T T) -9 NIL 1175353) (-480 1173984 1174380 1174453 "IDPAM" 1174458 NIL IDPAM (NIL T T) -8 NIL NIL) (-479 1173387 1173876 1173949 "IDPAG" 1173954 NIL IDPAG (NIL T T) -8 NIL NIL) (-478 1169642 1170490 1171385 "IDECOMP" 1172544 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL) (-477 1162515 1163565 1164612 "IDEAL" 1168678 NIL IDEAL (NIL T T T T) -8 NIL NIL) (-476 1161679 1161791 1161990 "ICDEN" 1162399 NIL ICDEN (NIL T T T T) -7 NIL NIL) (-475 1160778 1161159 1161306 "ICARD" 1161552 T ICARD (NIL) -8 NIL NIL) (-474 1158850 1159163 1159566 "IBPTOOLS" 1160455 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL) (-473 1154464 1158470 1158583 "IBITS" 1158769 NIL IBITS (NIL NIL) -8 NIL NIL) (-472 1151187 1151763 1152458 "IBATOOL" 1153881 NIL IBATOOL (NIL T T T) -7 NIL NIL) (-471 1148967 1149428 1149961 "IBACHIN" 1150722 NIL IBACHIN (NIL T T T) -7 NIL NIL) (-470 1146844 1148813 1148916 "IARRAY2" 1148921 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL) (-469 1142997 1146770 1146827 "IARRAY1" 1146832 NIL IARRAY1 (NIL T NIL) -8 NIL NIL) (-468 1136935 1141415 1141893 "IAN" 1142539 T IAN (NIL) -8 NIL NIL) (-467 1136446 1136503 1136676 "IALGFACT" 1136872 NIL IALGFACT (NIL T T T T) -7 NIL NIL) (-466 1135974 1136087 1136115 "HYPCAT" 1136322 T HYPCAT (NIL) -9 NIL NIL) (-465 1135512 1135629 1135815 "HYPCAT-" 1135820 NIL HYPCAT- (NIL T) -8 NIL NIL) (-464 1132192 1133523 1133564 "HOAGG" 1134545 NIL HOAGG (NIL T) -9 NIL 1135224) (-463 1130786 1131185 1131711 "HOAGG-" 1131716 NIL HOAGG- (NIL T T) -8 NIL NIL) (-462 1124616 1130227 1130393 "HEXADEC" 1130640 T HEXADEC (NIL) -8 NIL NIL) (-461 1123364 1123586 1123849 "HEUGCD" 1124393 NIL HEUGCD (NIL T) -7 NIL NIL) (-460 1122467 1123201 1123331 "HELLFDIV" 1123336 NIL HELLFDIV (NIL T T T T) -8 NIL NIL) (-459 1120695 1122244 1122332 "HEAP" 1122411 NIL HEAP (NIL T) -8 NIL NIL) (-458 1114562 1120610 1120672 "HDP" 1120677 NIL HDP (NIL NIL T) -8 NIL NIL) (-457 1108274 1114199 1114350 "HDMP" 1114463 NIL HDMP (NIL NIL T) -8 NIL NIL) (-456 1107599 1107738 1107902 "HB" 1108130 T HB (NIL) -7 NIL NIL) (-455 1101096 1107445 1107549 "HASHTBL" 1107554 NIL HASHTBL (NIL T T NIL) -8 NIL NIL) (-454 1098849 1100724 1100903 "HACKPI" 1100937 T HACKPI (NIL) -8 NIL NIL) (-453 1094545 1098703 1098815 "GTSET" 1098820 NIL GTSET (NIL T T T T) -8 NIL NIL) (-452 1088071 1094423 1094521 "GSTBL" 1094526 NIL GSTBL (NIL T T T NIL) -8 NIL NIL) (-451 1080304 1087107 1087371 "GSERIES" 1087862 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL) (-450 1079327 1079780 1079808 "GROUP" 1080069 T GROUP (NIL) -9 NIL 1080228) (-449 1078443 1078666 1079010 "GROUP-" 1079015 NIL GROUP- (NIL T) -8 NIL NIL) (-448 1076812 1077131 1077518 "GROEBSOL" 1078120 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL) (-447 1075753 1076015 1076066 "GRMOD" 1076595 NIL GRMOD (NIL T T) -9 NIL 1076763) (-446 1075521 1075557 1075685 "GRMOD-" 1075690 NIL GRMOD- (NIL T T T) -8 NIL NIL) (-445 1070847 1071875 1072875 "GRIMAGE" 1074541 T GRIMAGE (NIL) -8 NIL NIL) (-444 1069314 1069574 1069898 "GRDEF" 1070543 T GRDEF (NIL) -7 NIL NIL) (-443 1068758 1068874 1069015 "GRAY" 1069193 T GRAY (NIL) -7 NIL NIL) (-442 1067992 1068372 1068423 "GRALG" 1068576 NIL GRALG (NIL T T) -9 NIL 1068668) (-441 1067653 1067726 1067889 "GRALG-" 1067894 NIL GRALG- (NIL T T T) -8 NIL NIL) (-440 1064461 1067242 1067418 "GPOLSET" 1067560 NIL GPOLSET (NIL T T T T) -8 NIL NIL) (-439 1063817 1063874 1064131 "GOSPER" 1064398 NIL GOSPER (NIL T T T T T) -7 NIL NIL) (-438 1059576 1060255 1060781 "GMODPOL" 1063516 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL) (-437 1058581 1058765 1059003 "GHENSEL" 1059388 NIL GHENSEL (NIL T T) -7 NIL NIL) (-436 1052647 1053490 1054516 "GENUPS" 1057665 NIL GENUPS (NIL T T) -7 NIL NIL) (-435 1052344 1052395 1052484 "GENUFACT" 1052590 NIL GENUFACT (NIL T) -7 NIL NIL) (-434 1051756 1051833 1051998 "GENPGCD" 1052262 NIL GENPGCD (NIL T T T T) -7 NIL NIL) (-433 1051230 1051265 1051478 "GENMFACT" 1051715 NIL GENMFACT (NIL T T T T T) -7 NIL NIL) (-432 1049798 1050053 1050360 "GENEEZ" 1050973 NIL GENEEZ (NIL T T) -7 NIL NIL) (-431 1043672 1049411 1049572 "GDMP" 1049721 NIL GDMP (NIL NIL T T) -8 NIL NIL) (-430 1033052 1037443 1038549 "GCNAALG" 1042655 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL) (-429 1031474 1032346 1032374 "GCDDOM" 1032629 T GCDDOM (NIL) -9 NIL 1032786) (-428 1030944 1031071 1031286 "GCDDOM-" 1031291 NIL GCDDOM- (NIL T) -8 NIL NIL) (-427 1029616 1029801 1030105 "GB" 1030723 NIL GB (NIL T T T T) -7 NIL NIL) (-426 1018236 1020562 1022954 "GBINTERN" 1027307 NIL GBINTERN (NIL T T T T) -7 NIL NIL) (-425 1016073 1016365 1016786 "GBF" 1017911 NIL GBF (NIL T T T T) -7 NIL NIL) (-424 1014854 1015019 1015286 "GBEUCLID" 1015889 NIL GBEUCLID (NIL T T T T) -7 NIL NIL) (-423 1014203 1014328 1014477 "GAUSSFAC" 1014725 T GAUSSFAC (NIL) -7 NIL NIL) (-422 1012580 1012882 1013195 "GALUTIL" 1013922 NIL GALUTIL (NIL T) -7 NIL NIL) (-421 1010897 1011171 1011494 "GALPOLYU" 1012307 NIL GALPOLYU (NIL T T) -7 NIL NIL) (-420 1008286 1008576 1008981 "GALFACTU" 1010594 NIL GALFACTU (NIL T T T) -7 NIL NIL) (-419 1000092 1001591 1003199 "GALFACT" 1006718 NIL GALFACT (NIL T) -7 NIL NIL) (-418 997480 998138 998166 "FVFUN" 999322 T FVFUN (NIL) -9 NIL 1000042) (-417 996746 996928 996956 "FVC" 997247 T FVC (NIL) -9 NIL 997430) (-416 996388 996543 996624 "FUNCTION" 996698 NIL FUNCTION (NIL NIL) -8 NIL NIL) (-415 994058 994609 995098 "FT" 995919 T FT (NIL) -8 NIL NIL) (-414 992876 993359 993562 "FTEM" 993875 T FTEM (NIL) -8 NIL NIL) (-413 991141 991429 991831 "FSUPFACT" 992568 NIL FSUPFACT (NIL T T T) -7 NIL NIL) (-412 989538 989827 990159 "FST" 990829 T FST (NIL) -8 NIL NIL) (-411 988713 988819 989013 "FSRED" 989420 NIL FSRED (NIL T T) -7 NIL NIL) (-410 987392 987647 988001 "FSPRMELT" 988428 NIL FSPRMELT (NIL T T) -7 NIL NIL) (-409 984477 984915 985414 "FSPECF" 986955 NIL FSPECF (NIL T T) -7 NIL NIL) (-408 966851 975408 975448 "FS" 979286 NIL FS (NIL T) -9 NIL 981568) (-407 955501 958491 962547 "FS-" 962844 NIL FS- (NIL T T) -8 NIL NIL) (-406 955017 955071 955247 "FSINT" 955442 NIL FSINT (NIL T T) -7 NIL NIL) (-405 953298 954010 954313 "FSERIES" 954796 NIL FSERIES (NIL T T) -8 NIL NIL) (-404 952316 952432 952662 "FSCINT" 953178 NIL FSCINT (NIL T T) -7 NIL NIL) (-403 948551 951261 951302 "FSAGG" 951672 NIL FSAGG (NIL T) -9 NIL 951931) (-402 946313 946914 947710 "FSAGG-" 947805 NIL FSAGG- (NIL T T) -8 NIL NIL) (-401 945355 945498 945725 "FSAGG2" 946166 NIL FSAGG2 (NIL T T T T) -7 NIL NIL) (-400 943014 943293 943846 "FS2UPS" 945073 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL) (-399 942600 942643 942796 "FS2" 942965 NIL FS2 (NIL T T T T) -7 NIL NIL) (-398 941460 941631 941939 "FS2EXPXP" 942425 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL) (-397 940886 941001 941153 "FRUTIL" 941340 NIL FRUTIL (NIL T) -7 NIL NIL) (-396 932306 936385 937741 "FR" 939562 NIL FR (NIL T) -8 NIL NIL) (-395 927383 930026 930066 "FRNAALG" 931462 NIL FRNAALG (NIL T) -9 NIL 932069) (-394 923061 924132 925407 "FRNAALG-" 926157 NIL FRNAALG- (NIL T T) -8 NIL NIL) (-393 922699 922742 922869 "FRNAAF2" 923012 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL) (-392 921064 921556 921850 "FRMOD" 922512 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL) (-391 918786 919455 919771 "FRIDEAL" 920855 NIL FRIDEAL (NIL T T T T) -8 NIL NIL) (-390 917985 918072 918359 "FRIDEAL2" 918693 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL) (-389 917243 917651 917692 "FRETRCT" 917697 NIL FRETRCT (NIL T) -9 NIL 917868) (-388 916355 916586 916937 "FRETRCT-" 916942 NIL FRETRCT- (NIL T T) -8 NIL NIL) (-387 913565 914785 914844 "FRAMALG" 915726 NIL FRAMALG (NIL T T) -9 NIL 916018) (-386 911698 912154 912784 "FRAMALG-" 913007 NIL FRAMALG- (NIL T T T) -8 NIL NIL) (-385 905600 911173 911449 "FRAC" 911454 NIL FRAC (NIL T) -8 NIL NIL) (-384 905236 905293 905400 "FRAC2" 905537 NIL FRAC2 (NIL T T) -7 NIL NIL) (-383 904872 904929 905036 "FR2" 905173 NIL FR2 (NIL T T) -7 NIL NIL) (-382 899546 902459 902487 "FPS" 903606 T FPS (NIL) -9 NIL 904162) (-381 898995 899104 899268 "FPS-" 899414 NIL FPS- (NIL T) -8 NIL NIL) (-380 896444 898141 898169 "FPC" 898394 T FPC (NIL) -9 NIL 898536) (-379 896237 896277 896374 "FPC-" 896379 NIL FPC- (NIL T) -8 NIL NIL) (-378 895116 895726 895767 "FPATMAB" 895772 NIL FPATMAB (NIL T) -9 NIL 895924) (-377 892816 893292 893718 "FPARFRAC" 894753 NIL FPARFRAC (NIL T T) -8 NIL NIL) (-376 888209 888708 889390 "FORTRAN" 892248 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL) (-375 885925 886425 886964 "FORT" 887690 T FORT (NIL) -7 NIL NIL) (-374 883601 884163 884191 "FORTFN" 885251 T FORTFN (NIL) -9 NIL 885875) (-373 883365 883415 883443 "FORTCAT" 883502 T FORTCAT (NIL) -9 NIL 883564) (-372 881425 881908 882307 "FORMULA" 882986 T FORMULA (NIL) -8 NIL NIL) (-371 881213 881243 881312 "FORMULA1" 881389 NIL FORMULA1 (NIL T) -7 NIL NIL) (-370 880736 880788 880961 "FORDER" 881155 NIL FORDER (NIL T T T T) -7 NIL NIL) (-369 879832 879996 880189 "FOP" 880563 T FOP (NIL) -7 NIL NIL) (-368 878440 879112 879286 "FNLA" 879714 NIL FNLA (NIL NIL NIL T) -8 NIL NIL) (-367 877109 877498 877526 "FNCAT" 878098 T FNCAT (NIL) -9 NIL 878391) (-366 876675 877068 877096 "FNAME" 877101 T FNAME (NIL) -8 NIL NIL) (-365 875335 876308 876336 "FMTC" 876341 T FMTC (NIL) -9 NIL 876376) (-364 871653 872860 873488 "FMONOID" 874740 NIL FMONOID (NIL T) -8 NIL NIL) (-363 870873 871396 871544 "FM" 871549 NIL FM (NIL T T) -8 NIL NIL) (-362 868297 868943 868971 "FMFUN" 870115 T FMFUN (NIL) -9 NIL 870823) (-361 867566 867747 867775 "FMC" 868065 T FMC (NIL) -9 NIL 868247) (-360 864796 865630 865683 "FMCAT" 866865 NIL FMCAT (NIL T T) -9 NIL 867359) (-359 863691 864564 864663 "FM1" 864741 NIL FM1 (NIL T T) -8 NIL NIL) (-358 861465 861881 862375 "FLOATRP" 863242 NIL FLOATRP (NIL T) -7 NIL NIL) (-357 854951 859121 859751 "FLOAT" 860855 T FLOAT (NIL) -8 NIL NIL) (-356 852389 852889 853467 "FLOATCP" 854418 NIL FLOATCP (NIL T) -7 NIL NIL) (-355 851178 852026 852066 "FLINEXP" 852071 NIL FLINEXP (NIL T) -9 NIL 852164) (-354 850333 850568 850895 "FLINEXP-" 850900 NIL FLINEXP- (NIL T T) -8 NIL NIL) (-353 849409 849553 849777 "FLASORT" 850185 NIL FLASORT (NIL T T) -7 NIL NIL) (-352 846628 847470 847522 "FLALG" 848749 NIL FLALG (NIL T T) -9 NIL 849216) (-351 840413 844115 844156 "FLAGG" 845418 NIL FLAGG (NIL T) -9 NIL 846070) (-350 839139 839478 839968 "FLAGG-" 839973 NIL FLAGG- (NIL T T) -8 NIL NIL) (-349 838181 838324 838551 "FLAGG2" 838992 NIL FLAGG2 (NIL T T T T) -7 NIL NIL) (-348 835154 836172 836231 "FINRALG" 837359 NIL FINRALG (NIL T T) -9 NIL 837867) (-347 834314 834543 834882 "FINRALG-" 834887 NIL FINRALG- (NIL T T T) -8 NIL NIL) (-346 833721 833934 833962 "FINITE" 834158 T FINITE (NIL) -9 NIL 834265) (-345 826181 828342 828382 "FINAALG" 832049 NIL FINAALG (NIL T) -9 NIL 833502) (-344 821522 822563 823707 "FINAALG-" 825086 NIL FINAALG- (NIL T T) -8 NIL NIL) (-343 820917 821277 821380 "FILE" 821452 NIL FILE (NIL T) -8 NIL NIL) (-342 819602 819914 819968 "FILECAT" 820652 NIL FILECAT (NIL T T) -9 NIL 820868) (-341 817465 819021 819049 "FIELD" 819089 T FIELD (NIL) -9 NIL 819169) (-340 816085 816470 816981 "FIELD-" 816986 NIL FIELD- (NIL T) -8 NIL NIL) (-339 813900 814722 815068 "FGROUP" 815772 NIL FGROUP (NIL T) -8 NIL NIL) (-338 812990 813154 813374 "FGLMICPK" 813732 NIL FGLMICPK (NIL T NIL) -7 NIL NIL) (-337 808792 812915 812972 "FFX" 812977 NIL FFX (NIL T NIL) -8 NIL NIL) (-336 808393 808454 808589 "FFSLPE" 808725 NIL FFSLPE (NIL T T T) -7 NIL NIL) (-335 804386 805165 805961 "FFPOLY" 807629 NIL FFPOLY (NIL T) -7 NIL NIL) (-334 803890 803926 804135 "FFPOLY2" 804344 NIL FFPOLY2 (NIL T T) -7 NIL NIL) (-333 799711 803809 803872 "FFP" 803877 NIL FFP (NIL T NIL) -8 NIL NIL) (-332 795079 799622 799686 "FF" 799691 NIL FF (NIL NIL NIL) -8 NIL NIL) (-331 790175 794422 794612 "FFNBX" 794933 NIL FFNBX (NIL T NIL) -8 NIL NIL) (-330 785084 789310 789568 "FFNBP" 790029 NIL FFNBP (NIL T NIL) -8 NIL NIL) (-329 779687 784368 784579 "FFNB" 784917 NIL FFNB (NIL NIL NIL) -8 NIL NIL) (-328 778519 778717 779032 "FFINTBAS" 779484 NIL FFINTBAS (NIL T T T) -7 NIL NIL) (-327 774743 776983 777011 "FFIELDC" 777631 T FFIELDC (NIL) -9 NIL 778007) (-326 773406 773776 774273 "FFIELDC-" 774278 NIL FFIELDC- (NIL T) -8 NIL NIL) (-325 772976 773021 773145 "FFHOM" 773348 NIL FFHOM (NIL T T T) -7 NIL NIL) (-324 770674 771158 771675 "FFF" 772491 NIL FFF (NIL T) -7 NIL NIL) (-323 766262 770416 770517 "FFCGX" 770617 NIL FFCGX (NIL T NIL) -8 NIL NIL) (-322 761864 765994 766101 "FFCGP" 766205 NIL FFCGP (NIL T NIL) -8 NIL NIL) (-321 757017 761591 761699 "FFCG" 761800 NIL FFCG (NIL NIL NIL) -8 NIL NIL) (-320 738963 748086 748172 "FFCAT" 753337 NIL FFCAT (NIL T T T) -9 NIL 754824) (-319 734161 735208 736522 "FFCAT-" 737752 NIL FFCAT- (NIL T T T T) -8 NIL NIL) (-318 733572 733615 733850 "FFCAT2" 734112 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL) (-317 722772 726562 727779 "FEXPR" 732427 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL) (-316 721772 722207 722248 "FEVALAB" 722332 NIL FEVALAB (NIL T) -9 NIL 722593) (-315 720931 721141 721479 "FEVALAB-" 721484 NIL FEVALAB- (NIL T T) -8 NIL NIL) (-314 719524 720314 720517 "FDIV" 720830 NIL FDIV (NIL T T T T) -8 NIL NIL) (-313 716591 717306 717421 "FDIVCAT" 718989 NIL FDIVCAT (NIL T T T T) -9 NIL 719426) (-312 716353 716380 716550 "FDIVCAT-" 716555 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL) (-311 715573 715660 715937 "FDIV2" 716260 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL) (-310 714259 714518 714807 "FCPAK1" 715304 T FCPAK1 (NIL) -7 NIL NIL) (-309 713387 713759 713900 "FCOMP" 714150 NIL FCOMP (NIL T) -8 NIL NIL) (-308 697022 700436 703997 "FC" 709846 T FC (NIL) -8 NIL NIL) (-307 689618 693664 693704 "FAXF" 695506 NIL FAXF (NIL T) -9 NIL 696197) (-306 686897 687552 688377 "FAXF-" 688842 NIL FAXF- (NIL T T) -8 NIL NIL) (-305 681997 686273 686449 "FARRAY" 686754 NIL FARRAY (NIL T) -8 NIL NIL) (-304 677388 679459 679511 "FAMR" 680523 NIL FAMR (NIL T T) -9 NIL 680983) (-303 676279 676581 677015 "FAMR-" 677020 NIL FAMR- (NIL T T T) -8 NIL NIL) (-302 675475 676201 676254 "FAMONOID" 676259 NIL FAMONOID (NIL T) -8 NIL NIL) (-301 673308 673992 674045 "FAMONC" 674986 NIL FAMONC (NIL T T) -9 NIL 675371) (-300 672000 673062 673199 "FAGROUP" 673204 NIL FAGROUP (NIL T) -8 NIL NIL) (-299 669803 670122 670524 "FACUTIL" 671681 NIL FACUTIL (NIL T T T T) -7 NIL NIL) (-298 668902 669087 669309 "FACTFUNC" 669613 NIL FACTFUNC (NIL T) -7 NIL NIL) (-297 661222 668153 668365 "EXPUPXS" 668758 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL) (-296 658705 659245 659831 "EXPRTUBE" 660656 T EXPRTUBE (NIL) -7 NIL NIL) (-295 654899 655491 656228 "EXPRODE" 658044 NIL EXPRODE (NIL T T) -7 NIL NIL) (-294 640058 653558 653984 "EXPR" 654505 NIL EXPR (NIL T) -8 NIL NIL) (-293 634486 635073 635885 "EXPR2UPS" 639356 NIL EXPR2UPS (NIL T T) -7 NIL NIL) (-292 634122 634179 634286 "EXPR2" 634423 NIL EXPR2 (NIL T T) -7 NIL NIL) (-291 625476 633259 633554 "EXPEXPAN" 633960 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL) (-290 625303 625433 625462 "EXIT" 625467 T EXIT (NIL) -8 NIL NIL) (-289 624930 624992 625105 "EVALCYC" 625235 NIL EVALCYC (NIL T) -7 NIL NIL) (-288 624471 624589 624630 "EVALAB" 624800 NIL EVALAB (NIL T) -9 NIL 624904) (-287 623952 624074 624295 "EVALAB-" 624300 NIL EVALAB- (NIL T T) -8 NIL NIL) (-286 621415 622727 622755 "EUCDOM" 623310 T EUCDOM (NIL) -9 NIL 623660) (-285 619820 620262 620852 "EUCDOM-" 620857 NIL EUCDOM- (NIL T) -8 NIL NIL) (-284 607398 610146 612886 "ESTOOLS" 617100 T ESTOOLS (NIL) -7 NIL NIL) (-283 607034 607091 607198 "ESTOOLS2" 607335 NIL ESTOOLS2 (NIL T T) -7 NIL NIL) (-282 606785 606827 606907 "ESTOOLS1" 606986 NIL ESTOOLS1 (NIL T) -7 NIL NIL) (-281 600723 602447 602475 "ES" 605239 T ES (NIL) -9 NIL 606645) (-280 595670 596957 598774 "ES-" 598938 NIL ES- (NIL T) -8 NIL NIL) (-279 592045 592805 593585 "ESCONT" 594910 T ESCONT (NIL) -7 NIL NIL) (-278 591790 591822 591904 "ESCONT1" 592007 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL) (-277 591465 591515 591615 "ES2" 591734 NIL ES2 (NIL T T) -7 NIL NIL) (-276 591095 591153 591262 "ES1" 591401 NIL ES1 (NIL T T) -7 NIL NIL) (-275 590311 590440 590616 "ERROR" 590939 T ERROR (NIL) -7 NIL NIL) (-274 583814 590170 590261 "EQTBL" 590266 NIL EQTBL (NIL T T) -8 NIL NIL) (-273 576251 579132 580579 "EQ" 582400 NIL -2639 (NIL T) -8 NIL NIL) (-272 575883 575940 576049 "EQ2" 576188 NIL EQ2 (NIL T T) -7 NIL NIL) (-271 571175 572221 573314 "EP" 574822 NIL EP (NIL T) -7 NIL NIL) (-270 569758 570058 570375 "ENV" 570878 T ENV (NIL) -8 NIL NIL) (-269 568918 569482 569510 "ENTIRER" 569515 T ENTIRER (NIL) -9 NIL 569560) (-268 565374 566873 567243 "EMR" 568717 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL) (-267 564518 564703 564757 "ELTAGG" 565137 NIL ELTAGG (NIL T T) -9 NIL 565348) (-266 564237 564299 564440 "ELTAGG-" 564445 NIL ELTAGG- (NIL T T T) -8 NIL NIL) (-265 564026 564055 564109 "ELTAB" 564193 NIL ELTAB (NIL T T) -9 NIL NIL) (-264 563152 563298 563497 "ELFUTS" 563877 NIL ELFUTS (NIL T T) -7 NIL NIL) (-263 562894 562950 562978 "ELEMFUN" 563083 T ELEMFUN (NIL) -9 NIL NIL) (-262 562764 562785 562853 "ELEMFUN-" 562858 NIL ELEMFUN- (NIL T) -8 NIL NIL) (-261 557656 560865 560906 "ELAGG" 561846 NIL ELAGG (NIL T) -9 NIL 562309) (-260 555941 556375 557038 "ELAGG-" 557043 NIL ELAGG- (NIL T T) -8 NIL NIL) (-259 554598 554878 555173 "ELABEXPR" 555666 T ELABEXPR (NIL) -8 NIL NIL) (-258 547466 549265 550092 "EFUPXS" 553874 NIL EFUPXS (NIL T T T T) -8 NIL NIL) (-257 540916 542717 543527 "EFULS" 546742 NIL EFULS (NIL T T T) -8 NIL NIL) (-256 538347 538705 539183 "EFSTRUC" 540548 NIL EFSTRUC (NIL T T) -7 NIL NIL) (-255 527419 528984 530544 "EF" 536862 NIL EF (NIL T T) -7 NIL NIL) (-254 526520 526904 527053 "EAB" 527290 T EAB (NIL) -8 NIL NIL) (-253 525733 526479 526507 "E04UCFA" 526512 T E04UCFA (NIL) -8 NIL NIL) (-252 524946 525692 525720 "E04NAFA" 525725 T E04NAFA (NIL) -8 NIL NIL) (-251 524159 524905 524933 "E04MBFA" 524938 T E04MBFA (NIL) -8 NIL NIL) (-250 523372 524118 524146 "E04JAFA" 524151 T E04JAFA (NIL) -8 NIL NIL) (-249 522587 523331 523359 "E04GCFA" 523364 T E04GCFA (NIL) -8 NIL NIL) (-248 521802 522546 522574 "E04FDFA" 522579 T E04FDFA (NIL) -8 NIL NIL) (-247 521015 521761 521789 "E04DGFA" 521794 T E04DGFA (NIL) -8 NIL NIL) (-246 515200 516545 517907 "E04AGNT" 519673 T E04AGNT (NIL) -7 NIL NIL) (-245 513927 514407 514447 "DVARCAT" 514922 NIL DVARCAT (NIL T) -9 NIL 515120) (-244 513131 513343 513657 "DVARCAT-" 513662 NIL DVARCAT- (NIL T T) -8 NIL NIL) (-243 505993 512933 513060 "DSMP" 513065 NIL DSMP (NIL T T T) -8 NIL NIL) (-242 500803 501938 503006 "DROPT" 504945 T DROPT (NIL) -8 NIL NIL) (-241 500468 500527 500625 "DROPT1" 500738 NIL DROPT1 (NIL T) -7 NIL NIL) (-240 495583 496709 497846 "DROPT0" 499351 T DROPT0 (NIL) -7 NIL NIL) (-239 493928 494253 494639 "DRAWPT" 495217 T DRAWPT (NIL) -7 NIL NIL) (-238 488515 489438 490517 "DRAW" 492902 NIL DRAW (NIL T) -7 NIL NIL) (-237 488148 488201 488319 "DRAWHACK" 488456 NIL DRAWHACK (NIL T) -7 NIL NIL) (-236 486879 487148 487439 "DRAWCX" 487877 T DRAWCX (NIL) -7 NIL NIL) (-235 486397 486465 486615 "DRAWCURV" 486805 NIL DRAWCURV (NIL T T) -7 NIL NIL) (-234 476868 478827 480942 "DRAWCFUN" 484302 T DRAWCFUN (NIL) -7 NIL NIL) (-233 473682 475564 475605 "DQAGG" 476234 NIL DQAGG (NIL T) -9 NIL 476507) (-232 462189 468927 469009 "DPOLCAT" 470847 NIL DPOLCAT (NIL T T T T) -9 NIL 471391) (-231 457029 458375 460332 "DPOLCAT-" 460337 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL) (-230 451113 456891 456988 "DPMO" 456993 NIL DPMO (NIL NIL T T) -8 NIL NIL) (-229 445100 450894 451060 "DPMM" 451065 NIL DPMM (NIL NIL T T T) -8 NIL NIL) (-228 444613 444711 444831 "DOMAIN" 445000 T DOMAIN (NIL) -8 NIL NIL) (-227 438325 444250 444401 "DMP" 444514 NIL DMP (NIL NIL T) -8 NIL NIL) (-226 437925 437981 438125 "DLP" 438263 NIL DLP (NIL T) -7 NIL NIL) (-225 431569 437026 437253 "DLIST" 437730 NIL DLIST (NIL T) -8 NIL NIL) (-224 428416 430425 430466 "DLAGG" 431016 NIL DLAGG (NIL T) -9 NIL 431245) (-223 427126 427818 427846 "DIVRING" 427996 T DIVRING (NIL) -9 NIL 428104) (-222 426114 426367 426760 "DIVRING-" 426765 NIL DIVRING- (NIL T) -8 NIL NIL) (-221 424216 424573 424979 "DISPLAY" 425728 T DISPLAY (NIL) -7 NIL NIL) (-220 418105 424130 424193 "DIRPROD" 424198 NIL DIRPROD (NIL NIL T) -8 NIL NIL) (-219 416953 417156 417421 "DIRPROD2" 417898 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL) (-218 406584 412589 412642 "DIRPCAT" 413050 NIL DIRPCAT (NIL NIL T) -9 NIL 413877) (-217 403910 404552 405433 "DIRPCAT-" 405770 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL) (-216 403197 403357 403543 "DIOSP" 403744 T DIOSP (NIL) -7 NIL NIL) (-215 399900 402110 402151 "DIOPS" 402585 NIL DIOPS (NIL T) -9 NIL 402814) (-214 399449 399563 399754 "DIOPS-" 399759 NIL DIOPS- (NIL T T) -8 NIL NIL) (-213 398321 398959 398987 "DIFRING" 399174 T DIFRING (NIL) -9 NIL 399283) (-212 397967 398044 398196 "DIFRING-" 398201 NIL DIFRING- (NIL T) -8 NIL NIL) (-211 395757 397039 397079 "DIFEXT" 397438 NIL DIFEXT (NIL T) -9 NIL 397731) (-210 394043 394471 395136 "DIFEXT-" 395141 NIL DIFEXT- (NIL T T) -8 NIL NIL) (-209 391366 393576 393617 "DIAGG" 393622 NIL DIAGG (NIL T) -9 NIL 393642) (-208 390750 390907 391159 "DIAGG-" 391164 NIL DIAGG- (NIL T T) -8 NIL NIL) (-207 386215 389709 389986 "DHMATRIX" 390519 NIL DHMATRIX (NIL T) -8 NIL NIL) (-206 381827 382736 383746 "DFSFUN" 385225 T DFSFUN (NIL) -7 NIL NIL) (-205 376613 380541 380906 "DFLOAT" 381482 T DFLOAT (NIL) -8 NIL NIL) (-204 374846 375127 375522 "DFINTTLS" 376321 NIL DFINTTLS (NIL T T) -7 NIL NIL) (-203 371879 372881 373279 "DERHAM" 374513 NIL DERHAM (NIL T NIL) -8 NIL NIL) (-202 369728 371654 371743 "DEQUEUE" 371823 NIL DEQUEUE (NIL T) -8 NIL NIL) (-201 368946 369079 369274 "DEGRED" 369590 NIL DEGRED (NIL T T) -7 NIL NIL) (-200 365346 366091 366943 "DEFINTRF" 368174 NIL DEFINTRF (NIL T) -7 NIL NIL) (-199 362877 363346 363944 "DEFINTEF" 364865 NIL DEFINTEF (NIL T T) -7 NIL NIL) (-198 356707 362318 362484 "DECIMAL" 362731 T DECIMAL (NIL) -8 NIL NIL) (-197 354219 354677 355183 "DDFACT" 356251 NIL DDFACT (NIL T T) -7 NIL NIL) (-196 353815 353858 354009 "DBLRESP" 354170 NIL DBLRESP (NIL T T T T) -7 NIL NIL) (-195 351525 351859 352228 "DBASE" 353573 NIL DBASE (NIL T) -8 NIL NIL) (-194 350660 351484 351512 "D03FAFA" 351517 T D03FAFA (NIL) -8 NIL NIL) (-193 349796 350619 350647 "D03EEFA" 350652 T D03EEFA (NIL) -8 NIL NIL) (-192 347746 348212 348701 "D03AGNT" 349327 T D03AGNT (NIL) -7 NIL NIL) (-191 347064 347705 347733 "D02EJFA" 347738 T D02EJFA (NIL) -8 NIL NIL) (-190 346382 347023 347051 "D02CJFA" 347056 T D02CJFA (NIL) -8 NIL NIL) (-189 345700 346341 346369 "D02BHFA" 346374 T D02BHFA (NIL) -8 NIL NIL) (-188 345018 345659 345687 "D02BBFA" 345692 T D02BBFA (NIL) -8 NIL NIL) (-187 338216 339804 341410 "D02AGNT" 343432 T D02AGNT (NIL) -7 NIL NIL) (-186 335985 336507 337053 "D01WGTS" 337690 T D01WGTS (NIL) -7 NIL NIL) (-185 335088 335944 335972 "D01TRNS" 335977 T D01TRNS (NIL) -8 NIL NIL) (-184 334191 335047 335075 "D01GBFA" 335080 T D01GBFA (NIL) -8 NIL NIL) (-183 333294 334150 334178 "D01FCFA" 334183 T D01FCFA (NIL) -8 NIL NIL) (-182 332397 333253 333281 "D01ASFA" 333286 T D01ASFA (NIL) -8 NIL NIL) (-181 331500 332356 332384 "D01AQFA" 332389 T D01AQFA (NIL) -8 NIL NIL) (-180 330603 331459 331487 "D01APFA" 331492 T D01APFA (NIL) -8 NIL NIL) (-179 329706 330562 330590 "D01ANFA" 330595 T D01ANFA (NIL) -8 NIL NIL) (-178 328809 329665 329693 "D01AMFA" 329698 T D01AMFA (NIL) -8 NIL NIL) (-177 327912 328768 328796 "D01ALFA" 328801 T D01ALFA (NIL) -8 NIL NIL) (-176 327015 327871 327899 "D01AKFA" 327904 T D01AKFA (NIL) -8 NIL NIL) (-175 326118 326974 327002 "D01AJFA" 327007 T D01AJFA (NIL) -8 NIL NIL) (-174 319422 320971 322530 "D01AGNT" 324579 T D01AGNT (NIL) -7 NIL NIL) (-173 318759 318887 319039 "CYCLOTOM" 319290 T CYCLOTOM (NIL) -7 NIL NIL) (-172 315494 316207 316934 "CYCLES" 318052 T CYCLES (NIL) -7 NIL NIL) (-171 314806 314940 315111 "CVMP" 315355 NIL CVMP (NIL T) -7 NIL NIL) (-170 312587 312845 313220 "CTRIGMNP" 314534 NIL CTRIGMNP (NIL T T) -7 NIL NIL) (-169 312192 312275 312380 "CTORCALL" 312502 T CTORCALL (NIL) -8 NIL NIL) (-168 311566 311665 311818 "CSTTOOLS" 312089 NIL CSTTOOLS (NIL T T) -7 NIL NIL) (-167 307365 308022 308780 "CRFP" 310878 NIL CRFP (NIL T T) -7 NIL NIL) (-166 306412 306597 306825 "CRAPACK" 307169 NIL CRAPACK (NIL T) -7 NIL NIL) (-165 305796 305897 306101 "CPMATCH" 306288 NIL CPMATCH (NIL T T T) -7 NIL NIL) (-164 305521 305549 305655 "CPIMA" 305762 NIL CPIMA (NIL T T T) -7 NIL NIL) (-163 301885 302557 303275 "COORDSYS" 304856 NIL COORDSYS (NIL T) -7 NIL NIL) (-162 301269 301398 301548 "CONTOUR" 301755 T CONTOUR (NIL) -8 NIL NIL) (-161 297130 299272 299764 "CONTFRAC" 300809 NIL CONTFRAC (NIL T) -8 NIL NIL) (-160 296284 296848 296876 "COMRING" 296881 T COMRING (NIL) -9 NIL 296932) (-159 295365 295642 295826 "COMPPROP" 296120 T COMPPROP (NIL) -8 NIL NIL) (-158 295026 295061 295189 "COMPLPAT" 295324 NIL COMPLPAT (NIL T T T) -7 NIL NIL) (-157 285007 294835 294944 "COMPLEX" 294949 NIL COMPLEX (NIL T) -8 NIL NIL) (-156 284643 284700 284807 "COMPLEX2" 284944 NIL COMPLEX2 (NIL T T) -7 NIL NIL) (-155 284361 284396 284494 "COMPFACT" 284602 NIL COMPFACT (NIL T T) -7 NIL NIL) (-154 268696 278990 279030 "COMPCAT" 280032 NIL COMPCAT (NIL T) -9 NIL 281425) (-153 258211 261135 264762 "COMPCAT-" 265118 NIL COMPCAT- (NIL T T) -8 NIL NIL) (-152 257942 257970 258072 "COMMUPC" 258177 NIL COMMUPC (NIL T T T) -7 NIL NIL) (-151 257737 257770 257829 "COMMONOP" 257903 T COMMONOP (NIL) -7 NIL NIL) (-150 257320 257488 257575 "COMM" 257670 T COMM (NIL) -8 NIL NIL) (-149 256569 256763 256791 "COMBOPC" 257129 T COMBOPC (NIL) -9 NIL 257304) (-148 255465 255675 255917 "COMBINAT" 256359 NIL COMBINAT (NIL T) -7 NIL NIL) (-147 251663 252236 252876 "COMBF" 254887 NIL COMBF (NIL T T) -7 NIL NIL) (-146 250449 250779 251014 "COLOR" 251448 T COLOR (NIL) -8 NIL NIL) (-145 250089 250136 250261 "CMPLXRT" 250396 NIL CMPLXRT (NIL T T) -7 NIL NIL) (-144 245591 246619 247699 "CLIP" 249029 T CLIP (NIL) -7 NIL NIL) (-143 243929 244699 244937 "CLIF" 245419 NIL CLIF (NIL NIL T NIL) -8 NIL NIL) (-142 240152 242076 242117 "CLAGG" 243046 NIL CLAGG (NIL T) -9 NIL 243582) (-141 238574 239031 239614 "CLAGG-" 239619 NIL CLAGG- (NIL T T) -8 NIL NIL) (-140 238118 238203 238343 "CINTSLPE" 238483 NIL CINTSLPE (NIL T T) -7 NIL NIL) (-139 235619 236090 236638 "CHVAR" 237646 NIL CHVAR (NIL T T T) -7 NIL NIL) (-138 234842 235406 235434 "CHARZ" 235439 T CHARZ (NIL) -9 NIL 235453) (-137 234596 234636 234714 "CHARPOL" 234796 NIL CHARPOL (NIL T) -7 NIL NIL) (-136 233703 234300 234328 "CHARNZ" 234375 T CHARNZ (NIL) -9 NIL 234430) (-135 231728 232393 232728 "CHAR" 233388 T CHAR (NIL) -8 NIL NIL) (-134 231454 231515 231543 "CFCAT" 231654 T CFCAT (NIL) -9 NIL NIL) (-133 230699 230810 230992 "CDEN" 231338 NIL CDEN (NIL T T T) -7 NIL NIL) (-132 226691 229852 230132 "CCLASS" 230439 T CCLASS (NIL) -8 NIL NIL) (-131 226610 226636 226671 "CATEGORY" 226676 T -10 (NIL) -8 NIL NIL) (-130 221662 222639 223392 "CARTEN" 225913 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL) (-129 220770 220918 221139 "CARTEN2" 221509 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL) (-128 219068 219922 220178 "CARD" 220534 T CARD (NIL) -8 NIL NIL) (-127 218441 218769 218797 "CACHSET" 218929 T CACHSET (NIL) -9 NIL 219006) (-126 217938 218234 218262 "CABMON" 218312 T CABMON (NIL) -9 NIL 218368) (-125 217426 217740 217820 "BYTE" 217878 T BYTE (NIL) -8 NIL NIL) (-124 213374 217373 217407 "BYTEARY" 217412 T BYTEARY (NIL) -8 NIL NIL) (-123 210931 213066 213173 "BTREE" 213300 NIL BTREE (NIL T) -8 NIL NIL) (-122 208429 210579 210701 "BTOURN" 210841 NIL BTOURN (NIL T) -8 NIL NIL) (-121 205848 207901 207942 "BTCAT" 208010 NIL BTCAT (NIL T) -9 NIL 208087) (-120 205515 205595 205744 "BTCAT-" 205749 NIL BTCAT- (NIL T T) -8 NIL NIL) (-119 200736 204607 204635 "BTAGG" 204891 T BTAGG (NIL) -9 NIL 205070) (-118 200159 200303 200533 "BTAGG-" 200538 NIL BTAGG- (NIL T) -8 NIL NIL) (-117 197203 199437 199652 "BSTREE" 199976 NIL BSTREE (NIL T) -8 NIL NIL) (-116 196341 196467 196651 "BRILL" 197059 NIL BRILL (NIL T) -7 NIL NIL) (-115 193043 195070 195111 "BRAGG" 195760 NIL BRAGG (NIL T) -9 NIL 196017) (-114 191572 191978 192533 "BRAGG-" 192538 NIL BRAGG- (NIL T T) -8 NIL NIL) (-113 184780 190918 191102 "BPADICRT" 191420 NIL BPADICRT (NIL NIL) -8 NIL NIL) (-112 183084 184717 184762 "BPADIC" 184767 NIL BPADIC (NIL NIL) -8 NIL NIL) (-111 182784 182814 182927 "BOUNDZRO" 183048 NIL BOUNDZRO (NIL T T) -7 NIL NIL) (-110 178299 179390 180257 "BOP" 181937 T BOP (NIL) -8 NIL NIL) (-109 175920 176364 176884 "BOP1" 177812 NIL BOP1 (NIL T) -7 NIL NIL) (-108 174539 175250 175473 "BOOLEAN" 175717 T BOOLEAN (NIL) -8 NIL NIL) (-107 173906 174284 174336 "BMODULE" 174341 NIL BMODULE (NIL T T) -9 NIL 174405) (-106 169716 173704 173777 "BITS" 173853 T BITS (NIL) -8 NIL NIL) (-105 168813 169248 169400 "BINFILE" 169584 T BINFILE (NIL) -8 NIL NIL) (-104 168225 168347 168489 "BINDING" 168691 T BINDING (NIL) -8 NIL NIL) (-103 162059 167669 167834 "BINARY" 168080 T BINARY (NIL) -8 NIL NIL) (-102 159887 161315 161356 "BGAGG" 161616 NIL BGAGG (NIL T) -9 NIL 161753) (-101 159718 159750 159841 "BGAGG-" 159846 NIL BGAGG- (NIL T T) -8 NIL NIL) (-100 158816 159102 159307 "BFUNCT" 159533 T BFUNCT (NIL) -8 NIL NIL) (-99 157517 157695 157980 "BEZOUT" 158640 NIL BEZOUT (NIL T T T T T) -7 NIL NIL) (-98 154042 156377 156705 "BBTREE" 157220 NIL BBTREE (NIL T) -8 NIL NIL) (-97 153780 153833 153859 "BASTYPE" 153976 T BASTYPE (NIL) -9 NIL NIL) (-96 153635 153664 153734 "BASTYPE-" 153739 NIL BASTYPE- (NIL T) -8 NIL NIL) (-95 153073 153149 153299 "BALFACT" 153546 NIL BALFACT (NIL T T) -7 NIL NIL) (-94 151895 152492 152677 "AUTOMOR" 152918 NIL AUTOMOR (NIL T) -8 NIL NIL) (-93 151621 151626 151652 "ATTREG" 151657 T ATTREG (NIL) -9 NIL NIL) (-92 149900 150318 150670 "ATTRBUT" 151287 T ATTRBUT (NIL) -8 NIL NIL) (-91 149436 149549 149575 "ATRIG" 149776 T ATRIG (NIL) -9 NIL NIL) (-90 149245 149286 149373 "ATRIG-" 149378 NIL ATRIG- (NIL T) -8 NIL NIL) (-89 147442 149021 149109 "ASTACK" 149188 NIL ASTACK (NIL T) -8 NIL NIL) (-88 145947 146244 146609 "ASSOCEQ" 147124 NIL ASSOCEQ (NIL T T) -7 NIL NIL) (-87 144979 145606 145730 "ASP9" 145854 NIL ASP9 (NIL NIL) -8 NIL NIL) (-86 144743 144927 144966 "ASP8" 144971 NIL ASP8 (NIL NIL) -8 NIL NIL) (-85 143612 144348 144490 "ASP80" 144632 NIL ASP80 (NIL NIL) -8 NIL NIL) (-84 142511 143247 143379 "ASP7" 143511 NIL ASP7 (NIL NIL) -8 NIL NIL) (-83 141465 142188 142306 "ASP78" 142424 NIL ASP78 (NIL NIL) -8 NIL NIL) (-82 140434 141145 141262 "ASP77" 141379 NIL ASP77 (NIL NIL) -8 NIL NIL) (-81 139346 140072 140203 "ASP74" 140334 NIL ASP74 (NIL NIL) -8 NIL NIL) (-80 138246 138981 139113 "ASP73" 139245 NIL ASP73 (NIL NIL) -8 NIL NIL) (-79 137201 137923 138041 "ASP6" 138159 NIL ASP6 (NIL NIL) -8 NIL NIL) (-78 136149 136878 136996 "ASP55" 137114 NIL ASP55 (NIL NIL) -8 NIL NIL) (-77 135099 135823 135942 "ASP50" 136061 NIL ASP50 (NIL NIL) -8 NIL NIL) (-76 134187 134800 134910 "ASP4" 135020 NIL ASP4 (NIL NIL) -8 NIL NIL) (-75 133275 133888 133998 "ASP49" 134108 NIL ASP49 (NIL NIL) -8 NIL NIL) (-74 132060 132814 132982 "ASP42" 133164 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL) (-73 130837 131593 131763 "ASP41" 131947 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL) (-72 129787 130514 130632 "ASP35" 130750 NIL ASP35 (NIL NIL) -8 NIL NIL) (-71 129552 129735 129774 "ASP34" 129779 NIL ASP34 (NIL NIL) -8 NIL NIL) (-70 129289 129356 129432 "ASP33" 129507 NIL ASP33 (NIL NIL) -8 NIL NIL) (-69 128184 128924 129056 "ASP31" 129188 NIL ASP31 (NIL NIL) -8 NIL NIL) (-68 127949 128132 128171 "ASP30" 128176 NIL ASP30 (NIL NIL) -8 NIL NIL) (-67 127684 127753 127829 "ASP29" 127904 NIL ASP29 (NIL NIL) -8 NIL NIL) (-66 127449 127632 127671 "ASP28" 127676 NIL ASP28 (NIL NIL) -8 NIL NIL) (-65 127214 127397 127436 "ASP27" 127441 NIL ASP27 (NIL NIL) -8 NIL NIL) (-64 126298 126912 127023 "ASP24" 127134 NIL ASP24 (NIL NIL) -8 NIL NIL) (-63 125214 125939 126069 "ASP20" 126199 NIL ASP20 (NIL NIL) -8 NIL NIL) (-62 124302 124915 125025 "ASP1" 125135 NIL ASP1 (NIL NIL) -8 NIL NIL) (-61 123246 123976 124095 "ASP19" 124214 NIL ASP19 (NIL NIL) -8 NIL NIL) (-60 122983 123050 123126 "ASP12" 123201 NIL ASP12 (NIL NIL) -8 NIL NIL) (-59 121835 122582 122726 "ASP10" 122870 NIL ASP10 (NIL NIL) -8 NIL NIL) (-58 119734 121679 121770 "ARRAY2" 121775 NIL ARRAY2 (NIL T) -8 NIL NIL) (-57 115550 119382 119496 "ARRAY1" 119651 NIL ARRAY1 (NIL T) -8 NIL NIL) (-56 114582 114755 114976 "ARRAY12" 115373 NIL ARRAY12 (NIL T T) -7 NIL NIL) (-55 108942 110813 110888 "ARR2CAT" 113518 NIL ARR2CAT (NIL T T T) -9 NIL 114276) (-54 106376 107120 108074 "ARR2CAT-" 108079 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL) (-53 105136 105286 105589 "APPRULE" 106214 NIL APPRULE (NIL T T T) -7 NIL NIL) (-52 104789 104837 104955 "APPLYORE" 105082 NIL APPLYORE (NIL T T T) -7 NIL NIL) (-51 103763 104054 104249 "ANY" 104612 T ANY (NIL) -8 NIL NIL) (-50 103041 103164 103321 "ANY1" 103637 NIL ANY1 (NIL T) -7 NIL NIL) (-49 100573 101491 101816 "ANTISYM" 102766 NIL ANTISYM (NIL T NIL) -8 NIL NIL) (-48 100088 100277 100374 "ANON" 100494 T ANON (NIL) -8 NIL NIL) (-47 94165 98633 99084 "AN" 99655 T AN (NIL) -8 NIL NIL) (-46 90519 91917 91967 "AMR" 92706 NIL AMR (NIL T T) -9 NIL 93305) (-45 89632 89853 90215 "AMR-" 90220 NIL AMR- (NIL T T T) -8 NIL NIL) (-44 74182 89549 89610 "ALIST" 89615 NIL ALIST (NIL T T) -8 NIL NIL) (-43 71019 73776 73945 "ALGSC" 74100 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL) (-42 67575 68129 68736 "ALGPKG" 70459 NIL ALGPKG (NIL T T) -7 NIL NIL) (-41 66852 66953 67137 "ALGMFACT" 67461 NIL ALGMFACT (NIL T T T) -7 NIL NIL) (-40 62602 63282 63936 "ALGMANIP" 66376 NIL ALGMANIP (NIL T T) -7 NIL NIL) (-39 53921 62228 62378 "ALGFF" 62535 NIL ALGFF (NIL T T T NIL) -8 NIL NIL) (-38 53117 53248 53427 "ALGFACT" 53779 NIL ALGFACT (NIL T) -7 NIL NIL) (-37 52108 52718 52756 "ALGEBRA" 52816 NIL ALGEBRA (NIL T) -9 NIL 52874) (-36 51826 51885 52017 "ALGEBRA-" 52022 NIL ALGEBRA- (NIL T T) -8 NIL NIL) (-35 34087 49830 49882 "ALAGG" 50018 NIL ALAGG (NIL T T) -9 NIL 50179) (-34 33623 33736 33762 "AHYP" 33963 T AHYP (NIL) -9 NIL NIL) (-33 32554 32802 32828 "AGG" 33327 T AGG (NIL) -9 NIL 33606) (-32 31988 32150 32364 "AGG-" 32369 NIL AGG- (NIL T) -8 NIL NIL) (-31 29675 30093 30510 "AF" 31631 NIL AF (NIL T T) -7 NIL NIL) (-30 28944 29202 29358 "ACPLOT" 29537 T ACPLOT (NIL) -8 NIL NIL) (-29 18411 26357 26408 "ACFS" 27119 NIL ACFS (NIL T) -9 NIL 27358) (-28 16425 16915 17690 "ACFS-" 17695 NIL ACFS- (NIL T T) -8 NIL NIL) (-27 12693 14649 14675 "ACF" 15554 T ACF (NIL) -9 NIL 15966) (-26 11397 11731 12224 "ACF-" 12229 NIL ACF- (NIL T) -8 NIL NIL) (-25 10996 11165 11191 "ABELSG" 11283 T ABELSG (NIL) -9 NIL 11348) (-24 10863 10888 10954 "ABELSG-" 10959 NIL ABELSG- (NIL T) -8 NIL NIL) (-23 10233 10494 10520 "ABELMON" 10690 T ABELMON (NIL) -9 NIL 10802) (-22 9897 9981 10119 "ABELMON-" 10124 NIL ABELMON- (NIL T) -8 NIL NIL) (-21 9232 9578 9604 "ABELGRP" 9729 T ABELGRP (NIL) -9 NIL 9811) (-20 8695 8824 9040 "ABELGRP-" 9045 NIL ABELGRP- (NIL T) -8 NIL NIL) (-19 4333 8035 8074 "A1AGG" 8079 NIL A1AGG (NIL T) -9 NIL 8119) (-18 30 1251 2813 "A1AGG-" 2818 NIL A1AGG- (NIL T T) -8 NIL NIL)) \ No newline at end of file
diff --git a/src/share/algebra/operation.daase b/src/share/algebra/operation.daase
index ca080410..2992ed23 100644
--- a/src/share/algebra/operation.daase
+++ b/src/share/algebra/operation.daase
@@ -1,6544 +1,4991 @@
-(726160 . 3417125210)
-(((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-836 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1011 (-779 (-203)))) (-5 *2 (-203)) (-5 *1 (-172))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1011 (-779 (-203)))) (-5 *2 (-203)) (-5 *1 (-277))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1011 (-779 (-203)))) (-5 *2 (-203)) (-5 *1 (-282)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427)) (-4 *5 (-732))
- (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *3 (-987 *4 *5 *6))
- (-5 *2 (-589 (-2 (|:| |val| (-108)) (|:| -2394 *1))))
- (-4 *1 (-992 *4 *5 *6 *3)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-108))
- (-4 *5 (-13 (-784) (-284) (-136) (-949)))
- (-5 *2 (-589 (-970 *5 *6))) (-5 *1 (-1193 *5 *6 *7))
- (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-108))
- (-4 *5 (-13 (-784) (-284) (-136) (-949)))
- (-5 *2 (-589 (-970 *5 *6))) (-5 *1 (-1193 *5 *6 *7))
- (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-883 *4)))
- (-4 *4 (-13 (-784) (-284) (-136) (-949)))
- (-5 *2 (-589 (-970 *4 *5))) (-5 *1 (-1193 *4 *5 *6))
- (-14 *5 (-589 (-1087))) (-14 *6 (-589 (-1087))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-1087)))))
+(726211 . 3417777699)
(((*1 *2 *1)
- (-12 (-4 *3 (-973)) (-5 *2 (-1169 *3)) (-5 *1 (-652 *3 *4))
- (-4 *4 (-1145 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-858))
- (-5 *2
- (-2 (|:| |brans| (-589 (-589 (-874 (-203)))))
- (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))))
- (-5 *1 (-142))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-858)) (-5 *4 (-383 (-523)))
- (-5 *2
- (-2 (|:| |brans| (-589 (-589 (-874 (-203)))))
- (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))))
- (-5 *1 (-142))))
- ((*1 *2 *3)
- (-12
- (-5 *2
- (-2 (|:| |brans| (-589 (-589 (-874 (-203)))))
- (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))))
- (-5 *1 (-142)) (-5 *3 (-589 (-874 (-203))))))
- ((*1 *2 *3)
- (-12
- (-5 *2
- (-2 (|:| |brans| (-589 (-589 (-874 (-203)))))
- (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))))
- (-5 *1 (-142)) (-5 *3 (-589 (-589 (-874 (-203)))))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 (-1011 (-355)))) (-5 *1 (-240))))
- ((*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-240)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1087))
- (-5 *2
- (-2 (|:| |zeros| (-1068 (-203))) (|:| |ones| (-1068 (-203)))
- (|:| |singularities| (-1068 (-203)))))
- (-5 *1 (-100)))))
-(((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))))
+ (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *2 (-525))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975))
+ (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-525)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-796))))
+ ((*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1176)) (-5 *1 (-894)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-710)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852))
- (-4 *4 (-973)))))
-(((*1 *2 *2 *3 *3)
- (|partial| -12 (-5 *3 (-1087))
- (-4 *4 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-534 *4 *2))
- (-4 *2 (-13 (-1109) (-889) (-1051) (-29 *4))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-51))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))))
+ (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111) (-932)))
+ (-5 *1 (-163 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-327)) (-4 *4 (-307 *3)) (-4 *5 (-1147 *4))
+ (-5 *1 (-718 *3 *4 *5 *2 *6)) (-4 *2 (-1147 *5)) (-14 *6 (-854))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-4 *1 (-1188 *3)) (-4 *3 (-341)) (-4 *3 (-346))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1188 *2)) (-4 *2 (-341)) (-4 *2 (-346)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1022)) (-5 *1 (-51)))))
(((*1 *2)
- (-12 (-5 *2 (-629 (-841 *3))) (-5 *1 (-327 *3 *4)) (-14 *3 (-852))
- (-14 *4 (-852))))
+ (-12 (-5 *2 (-1176)) (-5 *1 (-1103 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-1018)))))
+(((*1 *2)
+ (-12 (-14 *4 (-712)) (-4 *5 (-1125)) (-5 *2 (-128))
+ (-5 *1 (-217 *3 *4 *5)) (-4 *3 (-218 *4 *5))))
((*1 *2)
- (-12 (-5 *2 (-629 *3)) (-5 *1 (-328 *3 *4)) (-4 *3 (-325))
- (-14 *4
- (-3 (-1083 *3)
- (-1169 (-589 (-2 (|:| -2058 *3) (|:| -2557 (-1034)))))))))
+ (-12 (-4 *4 (-341)) (-5 *2 (-128)) (-5 *1 (-306 *3 *4))
+ (-4 *3 (-307 *4))))
((*1 *2)
- (-12 (-5 *2 (-629 *3)) (-5 *1 (-329 *3 *4)) (-4 *3 (-325))
- (-14 *4 (-852)))))
-(((*1 *2 *2 *3) (-12 (-5 *2 (-523)) (-5 *3 (-710)) (-5 *1 (-520)))))
-(((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-857)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-141 *2 *3 *4)) (-14 *2 (-852)) (-4 *3 (-339))
- (-14 *4 (-922 *2 *3))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *2 (-158)) (-5 *1 (-266 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1145 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
- (-14 *6 (-1 (-3 *4 "failed") *4 *4))
- (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-343 *2)) (-4 *2 (-158)) (-4 *2 (-515))))
- ((*1 *1 *1)
- (|partial| -12 (-5 *1 (-655 *2 *3 *4 *5 *6)) (-4 *2 (-158))
- (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
- (-14 *5 (-1 (-3 *3 "failed") *3 *3))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
- ((*1 *1 *1) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339))))
- ((*1 *1) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339))))
- ((*1 *1 *1) (|partial| -4 *1 (-662)))
- ((*1 *1 *1) (|partial| -4 *1 (-666)))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3)))
- (-5 *1 (-715 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3))))
- ((*1 *2 *2 *1)
- (|partial| -12 (-4 *1 (-989 *3 *2)) (-4 *3 (-13 (-784) (-339)))
- (-4 *2 (-1145 *3))))
- ((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-203)) (|:| |xend| (-203))
- (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203)))
- (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203)))
- (|:| |abserr| (-203)) (|:| |relerr| (-203))))
- (-5 *2 (-355)) (-5 *1 (-185)))))
-(((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-1101 *3 *4)) (-4 *3 (-1016))
- (-4 *4 (-1016)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-155 (-203)) (-155 (-203)))) (-5 *4 (-1011 (-203)))
- (-5 *5 (-108)) (-5 *2 (-1171)) (-5 *1 (-234)))))
+ (-12 (-5 *2 (-712)) (-5 *1 (-368 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
+ (-4 *5 (-160))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-525))
+ (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-591 *6)) (-4 *6 (-788)) (-4 *4 (-341)) (-4 *5 (-734))
+ (-5 *2 (-525)) (-5 *1 (-477 *4 *5 *6 *7)) (-4 *7 (-882 *4 *5 *6))))
+ ((*1 *2 *1) (-12 (-4 *1 (-911 *3)) (-4 *3 (-975)) (-5 *2 (-854))))
+ ((*1 *2) (-12 (-4 *1 (-1178 *3)) (-4 *3 (-341)) (-5 *2 (-128)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-591 (-1013 (-357)))) (-5 *3 (-591 (-242)))
+ (-5 *1 (-240))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 (-1013 (-357)))) (-5 *1 (-242))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-591 (-1013 (-357)))) (-5 *1 (-445))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 (-1013 (-357)))) (-5 *1 (-445)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-764)) (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *3 *4 *4 *3)
+ (|partial| -12 (-5 *4 (-564 *3))
+ (-4 *3 (-13 (-408 *5) (-27) (-1111)))
+ (-4 *5 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *2 (-2 (|:| -3060 *3) (|:| |coeff| *3)))
+ (-5 *1 (-527 *5 *3 *6)) (-4 *6 (-1018)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-5 *1 (-810 *2)) (-4 *2 (-1125))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-5 *1 (-812 *2)) (-4 *2 (-1125))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-5 *1 (-815 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-412))
+ (-5 *2
+ (-591
+ (-3 (|:| -2400 (-1089))
+ (|:| |bounds| (-591 (-3 (|:| S (-1089)) (|:| P (-885 (-525)))))))))
+ (-5 *1 (-1093)))))
+(((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-859)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-712)) (-4 *1 (-682 *4 *5)) (-4 *4 (-975))
+ (-4 *5 (-788)) (-5 *2 (-885 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-712)) (-4 *1 (-682 *4 *5)) (-4 *4 (-975))
+ (-4 *5 (-788)) (-5 *2 (-885 *4))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-712)) (-4 *1 (-1162 *4)) (-4 *4 (-975))
+ (-5 *2 (-885 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-712)) (-4 *1 (-1162 *4)) (-4 *4 (-975))
+ (-5 *2 (-885 *4)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-76 FUNCTN))))
+ (-5 *2 (-964)) (-5 *1 (-690)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 *4)) (-4 *4 (-339)) (-5 *2 (-629 *4))
- (-5 *1 (-753 *4 *5)) (-4 *5 (-599 *4))))
+ (-12 (-5 *3 (-591 *4)) (-4 *4 (-975)) (-5 *2 (-1171 *4))
+ (-5 *1 (-1090 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *5)) (-5 *4 (-710)) (-4 *5 (-339))
- (-5 *2 (-629 *5)) (-5 *1 (-753 *5 *6)) (-4 *6 (-599 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-254 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087))
- (-4 *4 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-254 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *4)))))
- ((*1 *1 *1) (-5 *1 (-355)))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4))))
- (-5 *1 (-715 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-365)) (-5 *2 (-108)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-630 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1186 *3)) (-4 *3 (-339)) (-5 *2 (-108)))))
-(((*1 *2 *2)
- (-12 (-4 *2 (-13 (-339) (-784))) (-5 *1 (-165 *2 *3))
- (-4 *3 (-1145 (-155 *2))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-427)) (-4 *3 (-786)) (-4 *3 (-964 (-523)))
- (-4 *3 (-515)) (-5 *1 (-40 *3 *2)) (-4 *2 (-406 *3))
- (-4 *2
- (-13 (-339) (-279)
- (-10 -8 (-15 -2164 ((-1039 *3 (-562 $)) $))
- (-15 -2171 ((-1039 *3 (-562 $)) $))
- (-15 -3976 ($ (-1039 *3 (-562 $))))))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *1) (-5 *1 (-144))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2)) (-4 *2 (-1123)))))
-(((*1 *1) (-5 *1 (-1170))))
-(((*1 *2 *3 *4 *4 *5 *6 *7)
- (-12 (-5 *5 (-1087))
- (-5 *6
- (-1
- (-3
- (-2 (|:| |mainpart| *4)
- (|:| |limitedlogs|
- (-589 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
- "failed")
- *4 (-589 *4)))
- (-5 *7
- (-1 (-3 (-2 (|:| -3699 *4) (|:| |coeff| *4)) "failed") *4 *4))
- (-4 *4 (-13 (-1109) (-27) (-406 *8)))
- (-4 *8 (-13 (-427) (-786) (-136) (-964 *3) (-585 *3)))
- (-5 *3 (-523))
- (-5 *2 (-2 (|:| |ans| *4) (|:| -2438 *4) (|:| |sol?| (-108))))
- (-5 *1 (-941 *8 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1174)) (-5 *1 (-1050))))
+ (-12 (-5 *4 (-854)) (-5 *2 (-1171 *3)) (-5 *1 (-1090 *3))
+ (-4 *3 (-975)))))
+(((*1 *1 *1) (-12 (-4 *1 (-601 *2)) (-4 *2 (-975))))
((*1 *2 *3)
- (-12 (-5 *3 (-589 (-794))) (-5 *2 (-1174)) (-5 *1 (-1050)))))
+ (-12 (-4 *4 (-517)) (-4 *4 (-160)) (-4 *5 (-351 *4))
+ (-4 *6 (-351 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4)))
+ (-5 *1 (-630 *4 *5 *6 *3)) (-4 *3 (-629 *4 *5 *6))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-160)) (-4 *2 (-975)) (-5 *1 (-656 *2 *3))
+ (-4 *3 (-593 *2))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-160)) (-4 *2 (-975)) (-5 *1 (-656 *2 *3))
+ (-4 *3 (-593 *2))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-775 *2)) (-4 *2 (-160)) (-4 *2 (-975))))
+ ((*1 *1 *1) (-12 (-5 *1 (-775 *2)) (-4 *2 (-160)) (-4 *2 (-975)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1085 *6)) (-5 *3 (-525)) (-4 *6 (-286)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *1 (-684 *4 *5 *6 *7)) (-4 *7 (-882 *6 *4 *5)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-911 *2)) (-4 *2 (-975))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-876 (-205))) (-5 *1 (-1122))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-975)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-427))
+ (-12 (-4 *4 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525)))))))
+ (-5 *2 (-591 *4)) (-5 *1 (-1044 *3 *4)) (-4 *3 (-1147 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *3 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525)))))))
+ (-5 *2 (-591 *3)) (-5 *1 (-1044 *4 *3)) (-4 *4 (-1147 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1147 (-385 *2))) (-5 *2 (-525)) (-5 *1 (-846 *4 *3))
+ (-4 *3 (-1147 (-385 *4))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1147 *4)) (-4 *4 (-1129))
+ (-4 *6 (-1147 (-385 *5)))
(-5 *2
- (-589
- (-2 (|:| |eigval| (-3 (-383 (-883 *4)) (-1077 (-1087) (-883 *4))))
- (|:| |geneigvec| (-589 (-629 (-383 (-883 *4))))))))
- (-5 *1 (-269 *4)) (-5 *3 (-629 (-383 (-883 *4)))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1123)))))
-(((*1 *1)
- (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-523)) (-14 *3 (-710))
- (-4 *4 (-158)))))
+ (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5)
+ (|:| |gd| *5)))
+ (-4 *1 (-320 *4 *5 *6)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1089)) (-5 *5 (-1013 (-205))) (-5 *2 (-860))
+ (-5 *1 (-858 *3)) (-4 *3 (-566 (-501)))))
+ ((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *4 (-1089)) (-5 *5 (-1013 (-205))) (-5 *2 (-860))
+ (-5 *1 (-858 *3)) (-4 *3 (-566 (-501)))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-859))))
+ ((*1 *1 *2 *2 *2 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-205) (-205))) (-5 *3 (-1013 (-205)))
+ (-5 *1 (-859))))
+ ((*1 *1 *2 *2 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-205) (-205))) (-5 *3 (-1013 (-205)))
+ (-5 *1 (-859))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-860))))
+ ((*1 *1 *2 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-205) (-205))) (-5 *3 (-1013 (-205)))
+ (-5 *1 (-860))))
+ ((*1 *1 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-205) (-205))) (-5 *3 (-1013 (-205)))
+ (-5 *1 (-860))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-591 (-1 (-205) (-205)))) (-5 *3 (-1013 (-205)))
+ (-5 *1 (-860))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-1 (-205) (-205)))) (-5 *3 (-1013 (-205)))
+ (-5 *1 (-860))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-205) (-205))) (-5 *3 (-1013 (-205)))
+ (-5 *1 (-860))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-205) (-205))) (-5 *3 (-1013 (-205)))
+ (-5 *1 (-860)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-515) (-136))) (-5 *1 (-500 *3 *2))
- (-4 *2 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-339) (-344) (-564 (-523)))) (-4 *4 (-1145 *3))
- (-4 *5 (-664 *3 *4)) (-5 *1 (-504 *3 *4 *5 *2)) (-4 *2 (-1160 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-339) (-344) (-564 (-523)))) (-5 *1 (-505 *3 *2))
- (-4 *2 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-13 (-515) (-136)))
- (-5 *1 (-1064 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-51)) (-5 *1 (-768)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-427)) (-4 *4 (-786)) (-4 *5 (-732))
- (-5 *2 (-108)) (-5 *1 (-916 *3 *4 *5 *6))
- (-4 *6 (-880 *3 *5 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1052 *3 *4)) (-4 *3 (-13 (-1016) (-33)))
- (-4 *4 (-13 (-1016) (-33))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-761)))))
-(((*1 *2 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-155 (-203)))) (-5 *2 (-962))
- (-5 *1 (-694)))))
+ (-12 (-4 *3 (-788)) (-5 *1 (-862 *3 *2)) (-4 *2 (-408 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1089)) (-5 *2 (-294 (-525))) (-5 *1 (-863)))))
+(((*1 *1) (-5 *1 (-1173))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-591 *7)) (-5 *3 (-108)) (-4 *7 (-989 *4 *5 *6))
+ (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-5 *1 (-908 *4 *5 *6 *7)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))))
+(((*1 *2 *1) (-12 (-5 *1 (-955 *2)) (-4 *2 (-1125)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-710)) (-5 *4 (-1169 *2)) (-4 *5 (-284))
- (-4 *6 (-921 *5)) (-4 *2 (-13 (-385 *6 *7) (-964 *6)))
- (-5 *1 (-389 *5 *6 *7 *2)) (-4 *7 (-1145 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1123)) (-5 *2 (-523)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-230 *2 *3 *4 *5)) (-4 *2 (-973)) (-4 *3 (-786))
- (-4 *4 (-243 *3)) (-4 *5 (-732)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-710)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786))
- (-4 *3 (-987 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-589 *4))
- (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4))))))
- (-5 *1 (-990 *6 *7 *8 *3 *4)) (-4 *4 (-992 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-589 *4))
- (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4))))))
- (-5 *1 (-990 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-710)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786))
- (-4 *3 (-987 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-589 *4))
- (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4))))))
- (-5 *1 (-1057 *6 *7 *8 *3 *4)) (-4 *4 (-1025 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-589 *4))
- (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4))))))
- (-5 *1 (-1057 *5 *6 *7 *3 *4)) (-4 *4 (-1025 *5 *6 *7 *3)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-589 *8)) (-5 *3 (-1 (-108) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-515))
- (-4 *6 (-732)) (-4 *7 (-786)) (-5 *1 (-906 *5 *6 *7 *8)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087)) (-4 *4 (-515)) (-4 *4 (-786))
- (-5 *1 (-532 *4 *2)) (-4 *2 (-406 *4)))))
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 *4))
+ (-5 *1 (-995 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(((*1 *1) (-12 (-4 *1 (-442 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23))))
+ ((*1 *1) (-5 *1 (-501))) ((*1 *1) (-4 *1 (-664)))
+ ((*1 *1) (-4 *1 (-668)))
+ ((*1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018))))
+ ((*1 *1) (-12 (-5 *1 (-826 *2)) (-4 *2 (-788)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-712)) (-4 *1 (-211 *4))
+ (-4 *4 (-975))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-211 *3)) (-4 *3 (-975))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-213)) (-5 *2 (-712))))
+ ((*1 *1 *1) (-4 *1 (-213)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-4 *3 (-13 (-341) (-138))) (-5 *1 (-377 *3 *4))
+ (-4 *4 (-1147 *3))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-13 (-341) (-138))) (-5 *1 (-377 *2 *3))
+ (-4 *3 (-1147 *2))))
+ ((*1 *1) (-12 (-4 *1 (-601 *2)) (-4 *2 (-975))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 *4)) (-5 *3 (-591 (-712))) (-4 *1 (-833 *4))
+ (-4 *4 (-1018))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-712)) (-4 *1 (-833 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *1 (-833 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-833 *2)) (-4 *2 (-1018)))))
(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (-5 *2
- (-2
- (|:| |endPointContinuity|
- (-3 (|:| |continuous| "Continuous at the end points")
- (|:| |lowerSingular|
- "There is a singularity at the lower end point")
- (|:| |upperSingular|
- "There is a singularity at the upper end point")
- (|:| |bothSingular|
- "There are singularities at both end points")
- (|:| |notEvaluated|
- "End point continuity not yet evaluated")))
- (|:| |singularitiesStream|
- (-3 (|:| |str| (-1068 (-203)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -3487
- (-3 (|:| |finite| "The range is finite")
- (|:| |lowerInfinite| "The bottom of range is infinite")
- (|:| |upperInfinite| "The top of range is infinite")
- (|:| |bothInfinite|
- "Both top and bottom points are infinite")
- (|:| |notEvaluated| "Range not yet evaluated")))))
- (-5 *1 (-518)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-284))
- (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-422 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-589 *7)) (-5 *3 (-1070)) (-4 *7 (-880 *4 *5 *6))
- (-4 *4 (-284)) (-4 *5 (-732)) (-4 *6 (-786))
- (-5 *1 (-422 *4 *5 *6 *7))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-589 *7)) (-5 *3 (-1070)) (-4 *7 (-880 *4 *5 *6))
- (-4 *4 (-284)) (-4 *5 (-732)) (-4 *6 (-786))
- (-5 *1 (-422 *4 *5 *6 *7)))))
-(((*1 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172))))
- ((*1 *2 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814))
- (-5 *3 (-589 (-523))))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2 (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4))))
- (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *2)
- (-12 (-4 *2 (-158)) (-4 *2 (-973)) (-5 *1 (-654 *2 *3))
- (-4 *3 (-591 *2))))
- ((*1 *2 *2) (-12 (-5 *1 (-773 *2)) (-4 *2 (-158)) (-4 *2 (-973)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427)) (-4 *5 (-732))
- (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *1)
- (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-523)) (-14 *3 (-710))
- (-4 *4 (-158)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-710)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
+ (-12 (-4 *4 (-517)) (-5 *2 (-712)) (-5 *1 (-42 *4 *3))
+ (-4 *3 (-395 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-1145 *4)) (-5 *1 (-502 *4 *2 *5 *6))
- (-4 *4 (-284)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-710))))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 *3)) (-4 *3 (-880 *5 *6 *7)) (-4 *5 (-427))
- (-4 *6 (-732)) (-4 *7 (-786))
- (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5)))
- (-5 *1 (-424 *5 *6 *7 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1016)) (-5 *1 (-894 *2 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-226)))))
-(((*1 *2 *3) (-12 (-5 *3 (-203)) (-5 *2 (-1070)) (-5 *1 (-172))))
- ((*1 *2 *3) (-12 (-5 *3 (-203)) (-5 *2 (-1070)) (-5 *1 (-277))))
- ((*1 *2 *3) (-12 (-5 *3 (-203)) (-5 *2 (-1070)) (-5 *1 (-282)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-523)) (-5 *2 (-1174)) (-5 *1 (-1171))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-349 *3)) (-4 *3 (-1123)) (-4 *3 (-786)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *1 (-349 *4)) (-4 *4 (-1123))
- (-5 *2 (-108)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1087)) (-5 *1 (-562 *3)) (-4 *3 (-786)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-108)) (-4 *4 (-13 (-339) (-784))) (-5 *2 (-394 *3))
- (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *4 (-13 (-339) (-784))) (-5 *2 (-394 *3))
- (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4))))))
+ (-12 (-4 *4 (-975)) (-4 *3 (-1147 *4)) (-4 *2 (-1162 *4))
+ (-5 *1 (-1165 *4 *3 *5 *2)) (-4 *5 (-601 *3)))))
(((*1 *2 *2)
- (-12
- (-5 *2
- (-916 (-383 (-523)) (-796 *3) (-218 *4 (-710))
- (-225 *3 (-383 (-523)))))
- (-14 *3 (-589 (-1087))) (-14 *4 (-710)) (-5 *1 (-915 *3 *4)))))
-(((*1 *2 *3) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-421)) (-5 *3 (-523)))))
-(((*1 *2)
- (-12 (-4 *4 (-339)) (-5 *2 (-710)) (-5 *1 (-304 *3 *4))
- (-4 *3 (-305 *4))))
- ((*1 *2) (-12 (-4 *1 (-1186 *3)) (-4 *3 (-339)) (-5 *2 (-710)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2)
- (-12 (-4 *4 (-1127)) (-4 *5 (-1145 *4)) (-4 *6 (-1145 (-383 *5)))
- (-5 *2 (-108)) (-5 *1 (-317 *3 *4 *5 *6)) (-4 *3 (-318 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-49 *3 *4)) (-4 *3 (-973))
- (-14 *4 (-589 (-1087)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-201 *3 *4)) (-4 *3 (-13 (-973) (-786)))
- (-14 *4 (-589 (-1087))))))
+ (-12 (-4 *3 (-341)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3))
+ (-5 *1 (-492 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))))
+(((*1 *1) (-5 *1 (-1003))))
+(((*1 *1) (-4 *1 (-23)))
+ ((*1 *1) (-12 (-4 *1 (-447 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23))))
+ ((*1 *1) (-5 *1 (-501)))
+ ((*1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (-5 *2 (-355)) (-5 *1 (-172)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087))
- (-4 *5 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-540 *3)) (-5 *1 (-402 *5 *3))
- (-4 *3 (-13 (-1109) (-29 *5))))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8))
- (-5 *4 (-629 (-1083 *8))) (-4 *5 (-973)) (-4 *8 (-973))
- (-4 *6 (-1145 *5)) (-5 *2 (-629 *6)) (-5 *1 (-472 *5 *6 *7 *8))
- (-4 *7 (-1145 *6)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1131 *3 *2)) (-4 *3 (-973))
- (-4 *2 (-1160 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1076 *2 *3)) (-14 *2 (-852)) (-4 *3 (-973)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-339) (-784))) (-5 *1 (-165 *3 *2))
- (-4 *2 (-1145 (-155 *3))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-1092))))
- ((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-1092))))
- ((*1 *2 *1) (-12 (-5 *2 (-203)) (-5 *1 (-1092))))
- ((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-1092)))))
+ (-12 (-5 *3 (-591 (-294 (-205)))) (-5 *2 (-108)) (-5 *1 (-246))))
+ ((*1 *2 *3) (-12 (-5 *3 (-294 (-205))) (-5 *2 (-108)) (-5 *1 (-246))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-908 *4 *5 *6 *3)) (-4 *3 (-989 *4 *5 *6)))))
(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973))
- (-4 *4 (-732)) (-4 *5 (-786)) (-4 *3 (-515)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-1087))) (-5 *2 (-1174)) (-5 *1 (-1125))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 (-1087))) (-5 *2 (-1174)) (-5 *1 (-1125)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-311 *3 *4 *5 *6)) (-4 *3 (-339)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-4 *6 (-318 *3 *4 *5))
- (-5 *2 (-389 *4 (-383 *4) *5 *6))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 *6)) (-4 *6 (-13 (-385 *4 *5) (-964 *4)))
- (-4 *4 (-921 *3)) (-4 *5 (-1145 *4)) (-4 *3 (-284))
- (-5 *1 (-389 *3 *4 *5 *6))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-339))
- (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-475 *3 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-203)) (|:| |xend| (-203))
- (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203)))
- (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203)))
- (|:| |abserr| (-203)) (|:| |relerr| (-203))))
- (-5 *2 (-355)) (-5 *1 (-185)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-840)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-880 *4 *5 *6)) (-5 *2 (-394 (-1083 *7)))
- (-5 *1 (-837 *4 *5 *6 *7)) (-5 *3 (-1083 *7))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-840)) (-4 *5 (-1145 *4)) (-5 *2 (-394 (-1083 *5)))
- (-5 *1 (-838 *4 *5)) (-5 *3 (-1083 *5)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-203) (-203) (-203) (-203))) (-5 *1 (-240))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-203) (-203) (-203))) (-5 *1 (-240))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-203) (-203))) (-5 *1 (-240)))))
-(((*1 *2 *3) (-12 (-5 *3 (-883 (-203))) (-5 *2 (-203)) (-5 *1 (-282)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-905 *3 *4 *2 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *2 (-786)) (-4 *5 (-987 *3 *4 *2)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-108)))))
+ (-12 (-5 *2 (-525)) (-4 *1 (-596 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-4 *1 (-596 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-698)))))
(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1085 *3)) (-4 *3 (-327)) (-5 *1 (-335 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-286))
+ (-5 *2 (-385 (-396 (-885 *4)))) (-5 *1 (-970 *4)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (|[\|\|]| (-1072))) (-5 *2 (-108)) (-5 *1 (-1094))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (|[\|\|]| (-1089))) (-5 *2 (-108)) (-5 *1 (-1094))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (|[\|\|]| (-205))) (-5 *2 (-108)) (-5 *1 (-1094))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (|[\|\|]| (-525))) (-5 *2 (-108)) (-5 *1 (-1094)))))
+(((*1 *2 *1 *1)
(-12
(-5 *2
- (-475 (-383 (-523)) (-218 *4 (-710)) (-796 *3)
- (-225 *3 (-383 (-523)))))
- (-14 *3 (-589 (-1087))) (-14 *4 (-710)) (-5 *1 (-476 *3 *4)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1174)) (-5 *1 (-1170))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
+ (-2 (|:| -3482 *3) (|:| |gap| (-712)) (|:| -2963 (-723 *3))
+ (|:| -3407 (-723 *3))))
+ (-5 *1 (-723 *3)) (-4 *3 (-975))))
+ ((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-788))
+ (-5 *2
+ (-2 (|:| -3482 *1) (|:| |gap| (-712)) (|:| -2963 *1)
+ (|:| -3407 *1)))
+ (-4 *1 (-989 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *2
+ (-2 (|:| -3482 *1) (|:| |gap| (-712)) (|:| -2963 *1)
+ (|:| -3407 *1)))
+ (-4 *1 (-989 *3 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-501)) (-5 *1 (-500 *2)) (-4 *2 (-1125))))
+ ((*1 *2 *1) (-12 (-5 *2 (-51)) (-5 *1 (-501)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-591 (-525))) (-5 *3 (-631 (-525))) (-5 *1 (-1028)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-852)) (-4 *1 (-305 *3)) (-4 *3 (-339)) (-4 *3 (-344))))
- ((*1 *2 *1) (-12 (-4 *1 (-305 *2)) (-4 *2 (-339))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-346 *2 *3)) (-4 *3 (-1145 *2)) (-4 *2 (-158))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1169 *4)) (-5 *3 (-852)) (-4 *4 (-325))
- (-5 *1 (-493 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1037 *3 *2 *4 *5)) (-4 *4 (-216 *3 *2))
- (-4 *5 (-216 *3 *2)) (-4 *2 (-973)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *1 *2) (-12 (-5 *1 (-1110 *2)) (-4 *2 (-1016))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-1110 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-589 (-1110 *2))) (-5 *1 (-1110 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-410))
+ (-12 (-5 *2 (-712)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854))
+ (-4 *4 (-975)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1070 *4)) (-4 *4 (-37 *3)) (-4 *4 (-975))
+ (-5 *3 (-385 (-525))) (-5 *1 (-1074 *4)))))
+(((*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10)
+ (-12 (-5 *4 (-525)) (-5 *5 (-1072)) (-5 *6 (-631 (-205)))
+ (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-87 G))))
+ (-5 *8 (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))))
+ (-5 *9 (-3 (|:| |fn| (-366)) (|:| |fp| (-69 PEDERV))))
+ (-5 *10 (-3 (|:| |fn| (-366)) (|:| |fp| (-86 OUTPUT))))
+ (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-691)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1085 *9)) (-5 *4 (-591 *7)) (-5 *5 (-591 (-591 *8)))
+ (-4 *7 (-788)) (-4 *8 (-286)) (-4 *9 (-882 *8 *6 *7)) (-4 *6 (-734))
(-5 *2
- (-589
- (-3 (|:| -1522 (-1087))
- (|:| |bounds| (-589 (-3 (|:| S (-1087)) (|:| P (-883 (-523)))))))))
- (-5 *1 (-1091)))))
+ (-2 (|:| |upol| (-1085 *8)) (|:| |Lval| (-591 *8))
+ (|:| |Lfact|
+ (-591 (-2 (|:| -1348 (-1085 *8)) (|:| -2008 (-525)))))
+ (|:| |ctpol| *8)))
+ (-5 *1 (-684 *6 *7 *8 *9)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-591 *3)) (-4 *3 (-1125)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109) (-930)))
- (-5 *1 (-161 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-589 *3)) (-5 *1 (-42 *4 *3))
- (-4 *3 (-393 *4)))))
+ (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111) (-932)))
+ (-5 *1 (-163 *3)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-907 *4 *5 *3 *6)) (-4 *4 (-975)) (-4 *5 (-734))
+ (-4 *3 (-788)) (-4 *6 (-989 *4 *5 *3)) (-5 *2 (-108)))))
(((*1 *1 *1 *2)
- (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-973)) (-4 *3 (-731))
- (-4 *2 (-339))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-203))))
+ (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-975)) (-4 *3 (-733))
+ (-4 *2 (-341))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-205))))
((*1 *1 *1 *1)
- (-3255 (-12 (-5 *1 (-271 *2)) (-4 *2 (-339)) (-4 *2 (-1123)))
- (-12 (-5 *1 (-271 *2)) (-4 *2 (-448)) (-4 *2 (-1123)))))
- ((*1 *1 *1 *1) (-4 *1 (-339)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-355))))
+ (-3321 (-12 (-5 *1 (-273 *2)) (-4 *2 (-341)) (-4 *2 (-1125)))
+ (-12 (-5 *1 (-273 *2)) (-4 *2 (-450)) (-4 *2 (-1125)))))
+ ((*1 *1 *1 *1) (-4 *1 (-341)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-357))))
((*1 *1 *2 *2)
- (-12 (-5 *2 (-1039 *3 (-562 *1))) (-4 *3 (-515)) (-4 *3 (-786))
- (-4 *1 (-406 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-448)))
+ (-12 (-5 *2 (-1041 *3 (-564 *1))) (-4 *3 (-517)) (-4 *3 (-788))
+ (-4 *1 (-408 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-450)))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1169 *3)) (-4 *3 (-325)) (-5 *1 (-493 *3))))
- ((*1 *1 *1 *1) (-5 *1 (-499)))
+ (-12 (-5 *2 (-1171 *3)) (-4 *3 (-327)) (-5 *1 (-495 *3))))
+ ((*1 *1 *1 *1) (-5 *1 (-501)))
((*1 *1 *2 *3)
- (-12 (-4 *4 (-158)) (-5 *1 (-568 *2 *4 *3)) (-4 *2 (-37 *4))
- (-4 *3 (|SubsetCategory| (-666) *4))))
+ (-12 (-4 *4 (-160)) (-5 *1 (-570 *2 *4 *3)) (-4 *2 (-37 *4))
+ (-4 *3 (|SubsetCategory| (-668) *4))))
((*1 *1 *1 *2)
- (-12 (-4 *4 (-158)) (-5 *1 (-568 *3 *4 *2)) (-4 *3 (-37 *4))
- (-4 *2 (|SubsetCategory| (-666) *4))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-580 *2)) (-4 *2 (-158)) (-4 *2 (-339))))
+ (-12 (-4 *4 (-160)) (-5 *1 (-570 *3 *4 *2)) (-4 *3 (-37 *4))
+ (-4 *2 (|SubsetCategory| (-668) *4))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-582 *2)) (-4 *2 (-160)) (-4 *2 (-341))))
((*1 *1 *2 *3)
- (-12 (-4 *4 (-158)) (-5 *1 (-605 *2 *4 *3)) (-4 *2 (-657 *4))
- (-4 *3 (|SubsetCategory| (-666) *4))))
+ (-12 (-4 *4 (-160)) (-5 *1 (-607 *2 *4 *3)) (-4 *2 (-659 *4))
+ (-4 *3 (|SubsetCategory| (-668) *4))))
((*1 *1 *1 *2)
- (-12 (-4 *4 (-158)) (-5 *1 (-605 *3 *4 *2)) (-4 *3 (-657 *4))
- (-4 *2 (|SubsetCategory| (-666) *4))))
+ (-12 (-4 *4 (-160)) (-5 *1 (-607 *3 *4 *2)) (-4 *3 (-659 *4))
+ (-4 *2 (|SubsetCategory| (-668) *4))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2))
- (-4 *4 (-349 *2)) (-4 *2 (-339))))
- ((*1 *1 *1 *1) (-5 *1 (-794)))
+ (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2))
+ (-4 *4 (-351 *2)) (-4 *2 (-341))))
+ ((*1 *1 *1 *1) (-5 *1 (-796)))
((*1 *1 *1 *1)
- (|partial| -12 (-5 *1 (-797 *2 *3 *4 *5)) (-4 *2 (-339))
- (-4 *2 (-973)) (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-710)))
- (-14 *5 (-710))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016))))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515))))
+ (|partial| -12 (-5 *1 (-799 *2 *3 *4 *5)) (-4 *2 (-341))
+ (-4 *2 (-975)) (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-712)))
+ (-14 *5 (-712))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-976 *3 *4 *2 *5 *6)) (-4 *2 (-973))
- (-4 *5 (-216 *4 *2)) (-4 *6 (-216 *3 *2)) (-4 *2 (-339))))
+ (-12 (-4 *1 (-978 *3 *4 *2 *5 *6)) (-4 *2 (-975))
+ (-4 *5 (-218 *4 *2)) (-4 *6 (-218 *3 *2)) (-4 *2 (-341))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1176 *2)) (-4 *2 (-339))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1178 *2)) (-4 *2 (-341))))
((*1 *1 *1 *1)
- (|partial| -12 (-4 *2 (-339)) (-4 *2 (-973)) (-4 *3 (-786))
- (-4 *4 (-732)) (-14 *6 (-589 *3))
- (-5 *1 (-1179 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-880 *2 *4 *3))
- (-14 *7 (-589 (-710))) (-14 *8 (-710))))
+ (|partial| -12 (-4 *2 (-341)) (-4 *2 (-975)) (-4 *3 (-788))
+ (-4 *4 (-734)) (-14 *6 (-591 *3))
+ (-5 *1 (-1181 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-882 *2 *4 *3))
+ (-14 *7 (-591 (-712))) (-14 *8 (-712))))
((*1 *1 *1 *2)
- (-12 (-5 *1 (-1190 *2 *3)) (-4 *2 (-339)) (-4 *2 (-973))
- (-4 *3 (-782)))))
-(((*1 *1 *1) (-4 *1 (-33))) ((*1 *1 *1) (-5 *1 (-110)))
- ((*1 *1 *1) (-5 *1 (-157))) ((*1 *1 *1) (-4 *1 (-508)))
- ((*1 *1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016))))
- ((*1 *1 *1) (-12 (-4 *1 (-1048 *2)) (-4 *2 (-973))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1052 *2 *3)) (-4 *2 (-13 (-1016) (-33)))
- (-4 *3 (-13 (-1016) (-33))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-1070)) (-5 *5 (-629 (-203)))
- (-5 *2 (-962)) (-5 *1 (-687)))))
-(((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-823 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1) (-12 (-4 *1 (-1035 *3)) (-4 *3 (-1123)) (-5 *2 (-710)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-299 *3 *4)) (-4 *3 (-1016))
- (-4 *4 (-124))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1016)) (-5 *1 (-337 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1016)) (-5 *1 (-362 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1016)) (-5 *1 (-592 *3 *4 *5))
- (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *1) (-5 *1 (-985))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-710)) (-4 *4 (-339)) (-5 *1 (-827 *2 *4))
- (-4 *2 (-1145 *4)))))
-(((*1 *1) (-5 *1 (-130))))
+ (-12 (-5 *1 (-1192 *2 *3)) (-4 *2 (-341)) (-4 *2 (-975))
+ (-4 *3 (-784)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1171 (-591 (-2 (|:| -3024 *4) (|:| -2226 (-1036))))))
+ (-4 *4 (-327)) (-5 *2 (-1176)) (-5 *1 (-495 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-341)) (-4 *1 (-307 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1171 *3)) (-4 *3 (-1147 *4)) (-4 *4 (-1129))
+ (-4 *1 (-320 *4 *3 *5)) (-4 *5 (-1147 (-385 *3)))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1171 *4)) (-5 *3 (-1171 *1)) (-4 *4 (-160))
+ (-4 *1 (-345 *4))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1171 *4)) (-5 *3 (-1171 *1)) (-4 *4 (-160))
+ (-4 *1 (-348 *4 *5)) (-4 *5 (-1147 *4))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1171 *3)) (-4 *3 (-160)) (-4 *1 (-387 *3 *4))
+ (-4 *4 (-1147 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-160)) (-4 *1 (-395 *3)))))
+(((*1 *1) (-5 *1 (-1176))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-591 *2)) (-4 *2 (-1125)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 (-308))) (-5 *1 (-308)))))
+(((*1 *2)
+ (-12 (-4 *3 (-517)) (-5 *2 (-591 *4)) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-395 *3)))))
+(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-701)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
(((*1 *1 *1 *1) (-4 *1 (-21))) ((*1 *1 *1) (-4 *1 (-21)))
- ((*1 *1 *1 *1) (|partial| -5 *1 (-126)))
+ ((*1 *1 *1 *1) (|partial| -5 *1 (-128)))
((*1 *1 *1 *1)
- (-12 (-5 *1 (-193 *2))
+ (-12 (-5 *1 (-195 *2))
(-4 *2
- (-13 (-786)
- (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 ((-1174) $))
- (-15 -2149 ((-1174) $)))))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-271 *2)) (-4 *2 (-21)) (-4 *2 (-1123))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-21)) (-4 *2 (-1123))))
+ (-13 (-788)
+ (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 ((-1176) $))
+ (-15 -3600 ((-1176) $)))))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-273 *2)) (-4 *2 (-21)) (-4 *2 (-1125))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-21)) (-4 *2 (-1125))))
((*1 *1 *1 *1)
- (-12 (-4 *1 (-445 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23))))
- ((*1 *1 *1) (-12 (-4 *1 (-445 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23))))
+ (-12 (-4 *1 (-447 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23))))
+ ((*1 *1 *1) (-12 (-4 *1 (-447 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23))))
((*1 *1 *1)
- (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2))
- (-4 *4 (-349 *2))))
+ (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2))
+ (-4 *4 (-351 *2))))
((*1 *1 *1 *1)
- (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2))
- (-4 *4 (-349 *2))))
- ((*1 *1 *1) (-5 *1 (-794))) ((*1 *1 *1 *1) (-5 *1 (-794)))
+ (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2))
+ (-4 *4 (-351 *2))))
+ ((*1 *1 *1) (-5 *1 (-796))) ((*1 *1 *1 *1) (-5 *1 (-796)))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-874 (-203))) (-5 *1 (-1120))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-21))))
- ((*1 *1 *1) (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-21)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-279))))
- ((*1 *1 *1) (-4 *1 (-279))) ((*1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-832 *2)) (-4 *2 (-1016))))
- ((*1 *1 *2) (-12 (-5 *1 (-832 *2)) (-4 *2 (-1016)))))
-(((*1 *2)
- (|partial| -12 (-4 *3 (-515)) (-4 *3 (-158))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -2922 (-589 *1))))
- (-4 *1 (-343 *3))))
- ((*1 *2)
- (|partial| -12
- (-5 *2
- (-2 (|:| |particular| (-428 *3 *4 *5 *6))
- (|:| -2922 (-589 (-428 *3 *4 *5 *6)))))
- (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-158)) (-14 *4 (-852))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1169 *4)) (-5 *3 (-710)) (-4 *4 (-325))
- (-5 *1 (-493 *4)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-852)) (-5 *4 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-37 (-383 (-523))))
- (-5 *2 (-2 (|:| -3669 (-1068 *4)) (|:| -3683 (-1068 *4))))
- (-5 *1 (-1074 *4)) (-5 *3 (-1068 *4)))))
-(((*1 *2 *2 *3 *4 *5)
- (-12 (-5 *2 (-589 *9)) (-5 *3 (-1 (-108) *9))
- (-5 *4 (-1 (-108) *9 *9)) (-5 *5 (-1 *9 *9 *9))
- (-4 *9 (-987 *6 *7 *8)) (-4 *6 (-515)) (-4 *7 (-732)) (-4 *8 (-786))
- (-5 *1 (-906 *6 *7 *8 *9)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1145 (-383 *2))) (-5 *2 (-523)) (-5 *1 (-844 *4 *3))
- (-4 *3 (-1145 (-383 *4))))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-876 (-205))) (-5 *1 (-1122))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-21))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-21)))))
(((*1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786))))
- ((*1 *1) (-4 *1 (-1063))))
+ (|partial| -12 (-5 *1 (-143 *2 *3 *4)) (-14 *2 (-854)) (-4 *3 (-341))
+ (-14 *4 (-924 *2 *3))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *2 (-160)) (-5 *1 (-268 *2 *3 *4 *5 *6 *7))
+ (-4 *3 (-1147 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
+ (-14 *6 (-1 (-3 *4 "failed") *4 *4))
+ (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-345 *2)) (-4 *2 (-160)) (-4 *2 (-517))))
+ ((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-657 *2 *3 *4 *5 *6)) (-4 *2 (-160))
+ (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
+ (-14 *5 (-1 (-3 *3 "failed") *3 *3))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
+ ((*1 *1 *1) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341))))
+ ((*1 *1) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341))))
+ ((*1 *1 *1) (|partial| -4 *1 (-664)))
+ ((*1 *1 *1) (|partial| -4 *1 (-668)))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3)))
+ (-5 *1 (-717 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3))))
+ ((*1 *2 *2 *1)
+ (|partial| -12 (-4 *1 (-991 *3 *2)) (-4 *3 (-13 (-786) (-341)))
+ (-4 *2 (-1147 *3))))
+ ((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))))
+(((*1 *2) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-100)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-591 *4)) (-4 *4 (-1018)) (-4 *4 (-1125)) (-5 *2 (-108))
+ (-5 *1 (-1070 *4)))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4))
+ (-4 *3 (-345 *4))))
+ ((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))))
(((*1 *2 *3 *4)
- (-12
- (-5 *3
- (-589
- (-2 (|:| |eqzro| (-589 *8)) (|:| |neqzro| (-589 *8))
- (|:| |wcond| (-589 (-883 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1169 (-383 (-883 *5))))
- (|:| -2922 (-589 (-1169 (-383 (-883 *5))))))))))
- (-5 *4 (-1070)) (-4 *5 (-13 (-284) (-136))) (-4 *8 (-880 *5 *7 *6))
- (-4 *6 (-13 (-786) (-564 (-1087)))) (-4 *7 (-732)) (-5 *2 (-523))
- (-5 *1 (-855 *5 *6 *7 *8)))))
-(((*1 *1 *1 *1) (-4 *1 (-25))) ((*1 *1 *1 *1) (-5 *1 (-144)))
+ (-12 (-5 *4 (-108))
+ (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2
+ (-3 (|:| |%expansion| (-291 *5 *3 *6 *7))
+ (|:| |%problem| (-2 (|:| |func| (-1072)) (|:| |prob| (-1072))))))
+ (-5 *1 (-398 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1111) (-408 *5)))
+ (-14 *6 (-1089)) (-14 *7 *3))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4250)) (-4 *1 (-464 *4))
+ (-4 *4 (-1125)) (-5 *2 (-108)))))
+(((*1 *1 *2)
+ (-12 (-4 *3 (-975)) (-5 *1 (-768 *2 *3)) (-4 *2 (-650 *3)))))
+(((*1 *1 *1 *1) (-4 *1 (-25))) ((*1 *1 *1 *1) (-5 *1 (-146)))
((*1 *1 *1 *1)
- (-12 (-5 *1 (-193 *2))
+ (-12 (-5 *1 (-195 *2))
(-4 *2
- (-13 (-786)
- (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 ((-1174) $))
- (-15 -2149 ((-1174) $)))))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-271 *2)) (-4 *2 (-25)) (-4 *2 (-1123))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-25)) (-4 *2 (-1123))))
+ (-13 (-788)
+ (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 ((-1176) $))
+ (-15 -3600 ((-1176) $)))))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-273 *2)) (-4 *2 (-25)) (-4 *2 (-1125))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-25)) (-4 *2 (-1125))))
((*1 *1 *2 *1)
- (-12 (-4 *1 (-299 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-124))))
+ (-12 (-4 *1 (-301 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-126))))
((*1 *1 *2 *1)
- (-12 (-4 *3 (-13 (-339) (-136))) (-5 *1 (-375 *3 *2))
- (-4 *2 (-1145 *3))))
+ (-12 (-4 *3 (-13 (-341) (-138))) (-5 *1 (-377 *3 *2))
+ (-4 *2 (-1147 *3))))
((*1 *1 *1 *1)
- (-12 (-4 *1 (-445 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23))))
+ (-12 (-4 *1 (-447 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23))))
((*1 *1 *1 *1)
- (-12 (-4 *2 (-339)) (-4 *3 (-732)) (-4 *4 (-786))
- (-5 *1 (-475 *2 *3 *4 *5)) (-4 *5 (-880 *2 *3 *4))))
- ((*1 *1 *1 *1) (-5 *1 (-499)))
+ (-12 (-4 *2 (-341)) (-4 *3 (-734)) (-4 *4 (-788))
+ (-5 *1 (-477 *2 *3 *4 *5)) (-4 *5 (-882 *2 *3 *4))))
+ ((*1 *1 *1 *1) (-5 *1 (-501)))
((*1 *1 *1 *1)
- (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2))
- (-4 *4 (-349 *2))))
- ((*1 *1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016))))
+ (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2))
+ (-4 *4 (-351 *2))))
+ ((*1 *1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-874 (-203))) (-5 *1 (-1120))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-25)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-49 *3 *4)) (-4 *3 (-973))
- (-14 *4 (-589 (-1087)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-201 *3 *4)) (-4 *3 (-13 (-973) (-786)))
- (-14 *4 (-589 (-1087)))))
- ((*1 *1) (-12 (-4 *1 (-305 *2)) (-4 *2 (-344)) (-4 *2 (-339))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-311 *3 *4 *5 *2)) (-4 *3 (-339))
- (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4)))
- (-4 *2 (-318 *3 *4 *5))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-366 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
- (-4 *5 (-158))))
- ((*1 *1) (-12 (-4 *2 (-158)) (-4 *1 (-664 *2 *3)) (-4 *3 (-1145 *2)))))
-(((*1 *2 *1 *3 *3 *2)
- (-12 (-5 *3 (-523)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1123))
- (-4 *4 (-349 *2)) (-4 *5 (-349 *2))))
- ((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "right") (|has| *1 (-6 -4249)) (-4 *1 (-115 *3))
- (-4 *3 (-1123))))
- ((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "left") (|has| *1 (-6 -4249)) (-4 *1 (-115 *3))
- (-4 *3 (-1123))))
- ((*1 *2 *1 *3 *2)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-265 *3 *2)) (-4 *3 (-1016))
- (-4 *2 (-1123))))
- ((*1 *2 *1 *3 *2) (-12 (-5 *2 (-51)) (-5 *3 (-1087)) (-5 *1 (-578))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *3 (-1136 (-523))) (|has| *1 (-6 -4249)) (-4 *1 (-594 *2))
- (-4 *2 (-1123))))
- ((*1 *1 *1 *2 *2 *1)
- (-12 (-5 *2 (-589 (-523))) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "value") (|has| *1 (-6 -4249)) (-4 *1 (-938 *2))
- (-4 *2 (-1123))))
- ((*1 *2 *1 *2) (-12 (-5 *1 (-953 *2)) (-4 *2 (-1123))))
- ((*1 *2 *1 *3 *2)
- (-12 (-4 *1 (-1100 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1016))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "last") (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2))
- (-4 *2 (-1123))))
- ((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "rest") (|has| *1 (-6 -4249)) (-4 *1 (-1157 *3))
- (-4 *3 (-1123))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "first") (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2))
- (-4 *2 (-1123)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-589 *5)))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-852)) (-5 *1 (-1017 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-786) (-515))) (-5 *1 (-145 *4 *2))
- (-4 *2 (-406 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1009 *2)) (-4 *2 (-406 *4)) (-4 *4 (-13 (-786) (-515)))
- (-5 *1 (-145 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1009 *1)) (-4 *1 (-147))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-147)) (-5 *2 (-1087)))))
-(((*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-523)) (-5 *1 (-635 *2)) (-4 *2 (-1145 *3)))))
-(((*1 *2)
- (-12 (-4 *4 (-1127)) (-4 *5 (-1145 *4)) (-4 *6 (-1145 (-383 *5)))
- (-5 *2 (-710)) (-5 *1 (-317 *3 *4 *5 *6)) (-4 *3 (-318 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-710)))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-876 (-205))) (-5 *1 (-1122))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-25)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-786) (-515) (-964 (-523)))) (-5 *2 (-383 (-523)))
- (-5 *1 (-409 *4 *3)) (-4 *3 (-406 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-562 *3)) (-4 *3 (-406 *5))
- (-4 *5 (-13 (-786) (-515) (-964 (-523))))
- (-5 *2 (-1083 (-383 (-523)))) (-5 *1 (-409 *5 *3)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6))
- (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *1 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123))))
- ((*1 *1 *1)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-349 *2)) (-4 *2 (-1123))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1083 *1)) (-5 *4 (-1087)) (-4 *1 (-27))
- (-5 *2 (-589 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-1083 *1)) (-4 *1 (-27)) (-5 *2 (-589 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-883 *1)) (-4 *1 (-27)) (-5 *2 (-589 *1))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-589 *1))
- (-4 *1 (-29 *4))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *2 (-589 *1)) (-4 *1 (-29 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-292 (-203))) (-5 *4 (-589 (-1087)))
- (-5 *5 (-1011 (-779 (-203)))) (-5 *2 (-1068 (-203))) (-5 *1 (-277)))))
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-712))
+ (-5 *1 (-426 *4 *5 *6 *3)) (-4 *3 (-882 *4 *5 *6)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *2 (-1018)) (-5 *1 (-1103 *3 *2)) (-4 *3 (-1018)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-854)) (-5 *2 (-445)) (-5 *1 (-1172)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087))
- (-4 *4 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
- (-5 *1 (-743 *4 *2)) (-4 *2 (-13 (-29 *4) (-1109) (-889)))))
- ((*1 *1 *1 *1 *1) (-5 *1 (-794))) ((*1 *1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *1) (-5 *1 (-794)))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1068 *3)) (-5 *1 (-1072 *3)) (-4 *3 (-973)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1037 *3 *4 *2 *5)) (-4 *4 (-973)) (-4 *5 (-216 *3 *4))
- (-4 *2 (-216 *3 *4)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169 *3)) (-4 *3 (-1145 *4)) (-4 *4 (-1127))
- (-4 *1 (-318 *4 *3 *5)) (-4 *5 (-1145 (-383 *3))))))
-(((*1 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172))))
- ((*1 *2 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-339))
- (-5 *2 (-2 (|:| -3699 (-383 *6)) (|:| |coeff| (-383 *6))))
- (-5 *1 (-533 *5 *6)) (-5 *3 (-383 *6)))))
-(((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-412)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-515) (-786) (-964 (-523)))) (-5 *1 (-168 *3 *2))
- (-4 *2 (-13 (-27) (-1109) (-406 (-155 *3))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-1113 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *3))))))
-(((*1 *1 *1) (-12 (-4 *1 (-349 *2)) (-4 *2 (-1123))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-973)) (-5 *1 (-419 *3 *2)) (-4 *2 (-1145 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203))
- (-5 *2 (-962)) (-5 *1 (-693)))))
-(((*1 *1 *1 *1) (-4 *1 (-132)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-145 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *1 (-146 *2)) (-4 *2 (-508)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1117 *4 *5 *3 *6)) (-4 *4 (-515)) (-4 *5 (-732))
- (-4 *3 (-786)) (-4 *6 (-987 *4 *5 *3)) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-4 *1 (-1186 *3)) (-4 *3 (-339)) (-5 *2 (-108)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-786)) (-5 *2 (-108))))
- ((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-4 *3 (-344)) (-5 *2 (-108))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1083 *4)) (-4 *4 (-325)) (-5 *2 (-108))
- (-5 *1 (-333 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1169 *4)) (-4 *4 (-325)) (-5 *2 (-108))
- (-5 *1 (-493 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-344)) (-5 *2 (-852))))
+ (-12 (-4 *3 (-975)) (-5 *1 (-421 *3 *2)) (-4 *2 (-1147 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
+ (-5 *1 (-745 *4 *2)) (-4 *2 (-13 (-29 *4) (-1111) (-891)))))
+ ((*1 *1 *1 *1 *1) (-5 *1 (-796))) ((*1 *1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *1) (-5 *1 (-796)))
((*1 *2 *3)
- (-12 (-5 *3 (-1169 *4)) (-4 *4 (-325)) (-5 *2 (-852))
- (-5 *1 (-493 *4)))))
-(((*1 *2 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523)))))))
- (-5 *1 (-1042 *3 *2)) (-4 *3 (-1145 *2)))))
-(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-515)) (-4 *3 (-158)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *1 (-628 *3 *4 *5 *2))
- (-4 *2 (-627 *3 *4 *5)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *5 (-964 (-47)))
- (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-4 *5 (-406 *4))
- (-5 *2 (-394 (-1083 (-47)))) (-5 *1 (-411 *4 *5 *3))
- (-4 *3 (-1145 *5)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-222 *2)) (-4 *2 (-1123)))))
+ (-12 (-5 *2 (-1070 *3)) (-5 *1 (-1074 *3)) (-4 *3 (-975)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-1 (-591 *2) *2 *2 *2)) (-4 *2 (-1018))
+ (-5 *1 (-98 *2))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1018)) (-5 *1 (-98 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-589 (-874 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 (-874 *3))) (-4 *3 (-973)) (-4 *1 (-1048 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-589 *3))) (-4 *1 (-1048 *3)) (-4 *3 (-973))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-874 *3))) (-4 *1 (-1048 *3)) (-4 *3 (-973)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-786)) (-5 *2 (-108))))
- ((*1 *1 *1 *1) (-5 *1 (-794)))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-835 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-589 *4)) (-4 *4 (-1016)) (-4 *4 (-1123)) (-5 *2 (-108))
- (-5 *1 (-1068 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-380)) (-5 *2 (-523))))
- ((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-638)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158))
- (-5 *2 (-629 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-629 *4)) (-5 *1 (-392 *3 *4))
- (-4 *3 (-393 *4))))
- ((*1 *2) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-629 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-614 *3)) (-4 *3 (-786)) (-4 *1 (-350 *3 *4))
- (-4 *4 (-158)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854))
+ (-4 *4 (-975)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1085 *5)) (-4 *5 (-341)) (-5 *2 (-591 *6))
+ (-5 *1 (-498 *5 *6 *4)) (-4 *6 (-341)) (-4 *4 (-13 (-341) (-786))))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 (-2 (|:| -3573 (-1083 *6)) (|:| -3262 (-523)))))
- (-4 *6 (-284)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108))
- (-5 *1 (-682 *4 *5 *6 *7)) (-4 *7 (-880 *6 *4 *5))))
- ((*1 *1 *1) (-12 (-4 *1 (-1048 *2)) (-4 *2 (-973)))))
-(((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-805))))
- ((*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-804 (-896 *3) (-896 *3))) (-5 *1 (-896 *3))
- (-4 *3 (-897)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-786)) (-5 *2 (-108))))
- ((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-46 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731))
- (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-358 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1016))
- (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-548 *3)) (-4 *3 (-973))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-515)) (-5 *2 (-108)) (-5 *1 (-570 *3 *4))
- (-4 *4 (-1145 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-675 *3 *4)) (-4 *3 (-973))
- (-4 *4 (-666))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973))
- (-5 *2 (-108)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-589 (-523))) (-5 *1 (-1026)) (-5 *3 (-523)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-883 (-523))) (-5 *2 (-589 *1)) (-4 *1 (-940))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-883 (-383 (-523)))) (-5 *2 (-589 *1)) (-4 *1 (-940))))
- ((*1 *2 *3) (-12 (-5 *3 (-883 *1)) (-4 *1 (-940)) (-5 *2 (-589 *1))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1083 (-523))) (-5 *2 (-589 *1)) (-4 *1 (-940))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1083 (-383 (-523)))) (-5 *2 (-589 *1)) (-4 *1 (-940))))
- ((*1 *2 *3) (-12 (-5 *3 (-1083 *1)) (-4 *1 (-940)) (-5 *2 (-589 *1))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-784) (-339))) (-4 *3 (-1145 *4)) (-5 *2 (-589 *1))
- (-4 *1 (-989 *4 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-589 (-51))) (-5 *2 (-1174)) (-5 *1 (-795)))))
-(((*1 *1) (-4 *1 (-33))) ((*1 *1) (-5 *1 (-268)))
- ((*1 *1) (-5 *1 (-794)))
- ((*1 *1)
- (-12 (-4 *2 (-427)) (-4 *3 (-786)) (-4 *4 (-732))
- (-5 *1 (-916 *2 *3 *4 *5)) (-4 *5 (-880 *2 *4 *3))))
- ((*1 *1) (-5 *1 (-1003)))
- ((*1 *1)
- (-12 (-5 *1 (-1052 *2 *3)) (-4 *2 (-13 (-1016) (-33)))
- (-4 *3 (-13 (-1016) (-33)))))
- ((*1 *1) (-5 *1 (-1090))) ((*1 *1) (-5 *1 (-1091))))
-(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-523)) (-5 *3 (-852)) (-5 *1 (-638))))
- ((*1 *2 *2 *2 *3 *4)
- (-12 (-5 *2 (-629 *5)) (-5 *3 (-94 *5)) (-5 *4 (-1 *5 *5))
- (-4 *5 (-339)) (-5 *1 (-907 *5)))))
-(((*1 *2) (-12 (-4 *2 (-158)) (-5 *1 (-151 *3 *2)) (-4 *3 (-152 *2))))
+ (-12 (-5 *3 (-1171 *5)) (-4 *5 (-733)) (-5 *2 (-108))
+ (-5 *1 (-783 *4 *5)) (-14 *4 (-712)))))
+(((*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1176)) (-5 *1 (-1052))))
((*1 *2 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-346 *2 *4)) (-4 *4 (-1145 *2))
- (-4 *2 (-158))))
- ((*1 *2)
- (-12 (-4 *4 (-1145 *2)) (-4 *2 (-158)) (-5 *1 (-384 *3 *2 *4))
- (-4 *3 (-385 *2 *4))))
- ((*1 *2) (-12 (-4 *1 (-385 *2 *3)) (-4 *3 (-1145 *2)) (-4 *2 (-158))))
- ((*1 *2)
- (-12 (-4 *3 (-1145 *2)) (-5 *2 (-523)) (-5 *1 (-707 *3 *4))
- (-4 *4 (-385 *2 *3))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-880 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *2 (-786)) (-4 *3 (-158))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-515)) (-5 *1 (-899 *2 *3)) (-4 *3 (-1145 *2))))
- ((*1 *2 *1) (-12 (-4 *1 (-1145 *2)) (-4 *2 (-973)) (-4 *2 (-158)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-786)) (-5 *2 (-108))))
- ((*1 *1 *1 *1) (-5 *1 (-794)))
- ((*1 *2 *1 *1) (-12 (-4 *1 (-834 *3)) (-4 *3 (-1016)) (-5 *2 (-108))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-835 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1014 *3)) (-4 *3 (-1016)) (-5 *2 (-108)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-339) (-784)))
- (-5 *2 (-2 (|:| |start| *3) (|:| -3286 (-394 *3))))
- (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-513 *3)) (-4 *3 (-13 (-380) (-1109))) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-989 *4 *3)) (-4 *4 (-13 (-784) (-339)))
- (-4 *3 (-1145 *4)) (-5 *2 (-108)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-98 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-1174)) (-5 *1 (-1101 *3 *4)) (-4 *3 (-1016))
- (-4 *4 (-1016)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515))
- (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-589 *7)) (-5 *3 (-108)) (-4 *7 (-987 *4 *5 *6))
- (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786))
- (-5 *1 (-906 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1083 *5)) (-4 *5 (-339)) (-5 *2 (-589 *6))
- (-5 *1 (-496 *5 *6 *4)) (-4 *6 (-339)) (-4 *4 (-13 (-339) (-784))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-284)) (-5 *1 (-164 *3)))))
+ (-12 (-5 *3 (-591 (-796))) (-5 *2 (-1176)) (-5 *1 (-1052)))))
+(((*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1072)) (-5 *1 (-727)))))
+(((*1 *2 *3 *4 *5 *4 *4 *4)
+ (-12 (-4 *6 (-788)) (-5 *3 (-591 *6)) (-5 *5 (-591 *3))
+ (-5 *2
+ (-2 (|:| |f1| *3) (|:| |f2| (-591 *5)) (|:| |f3| *5)
+ (|:| |f4| (-591 *5))))
+ (-5 *1 (-1097 *6)) (-5 *4 (-591 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |var| (-589 (-1087))) (|:| |pred| (-51))))
- (-5 *1 (-823 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-710)) (-5 *2 (-108))))
- ((*1 *2 *3 *3)
- (|partial| -12 (-5 *2 (-108)) (-5 *1 (-1124 *3)) (-4 *3 (-1016))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *3 (-1016)) (-5 *2 (-108))
- (-5 *1 (-1124 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1087)) (-5 *2 (-1 *6 *5)) (-5 *1 (-646 *4 *5 *6))
- (-4 *4 (-564 (-499))) (-4 *5 (-1123)) (-4 *6 (-1123)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-970 *4 *5)) (-4 *4 (-13 (-784) (-284) (-136) (-949)))
- (-14 *5 (-589 (-1087)))
+ (-12 (-5 *4 (-1011 (-781 *3))) (-4 *3 (-13 (-1111) (-891) (-29 *5)))
+ (-4 *5 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))))
(-5 *2
- (-589 (-2 (|:| -2715 (-1083 *4)) (|:| -2411 (-589 (-883 *4))))))
- (-5 *1 (-1193 *4 *5 *6)) (-14 *6 (-589 (-1087)))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-784) (-284) (-136) (-949)))
+ (-3 (|:| |f1| (-781 *3)) (|:| |f2| (-591 (-781 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-199 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1011 (-781 *3))) (-5 *5 (-1072))
+ (-4 *3 (-13 (-1111) (-891) (-29 *6)))
+ (-4 *6 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))))
(-5 *2
- (-589 (-2 (|:| -2715 (-1083 *5)) (|:| -2411 (-589 (-883 *5))))))
- (-5 *1 (-1193 *5 *6 *7)) (-5 *3 (-589 (-883 *5)))
- (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-784) (-284) (-136) (-949)))
+ (-3 (|:| |f1| (-781 *3)) (|:| |f2| (-591 (-781 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-199 *6 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-1011 (-781 (-294 *5))))
+ (-4 *5 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))))
(-5 *2
- (-589 (-2 (|:| -2715 (-1083 *5)) (|:| -2411 (-589 (-883 *5))))))
- (-5 *1 (-1193 *5 *6 *7)) (-5 *3 (-589 (-883 *5)))
- (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087)))))
+ (-3 (|:| |f1| (-781 (-294 *5))) (|:| |f2| (-591 (-781 (-294 *5))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-200 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-385 (-885 *6))) (-5 *4 (-1011 (-781 (-294 *6))))
+ (-5 *5 (-1072))
+ (-4 *6 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))))
+ (-5 *2
+ (-3 (|:| |f1| (-781 (-294 *6))) (|:| |f2| (-591 (-781 (-294 *6))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-200 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-784) (-284) (-136) (-949)))
+ (-12 (-5 *4 (-1011 (-781 (-385 (-885 *5))))) (-5 *3 (-385 (-885 *5)))
+ (-4 *5 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))))
(-5 *2
- (-589 (-2 (|:| -2715 (-1083 *5)) (|:| -2411 (-589 (-883 *5))))))
- (-5 *1 (-1193 *5 *6 *7)) (-5 *3 (-589 (-883 *5)))
- (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-784) (-284) (-136) (-949)))
+ (-3 (|:| |f1| (-781 (-294 *5))) (|:| |f2| (-591 (-781 (-294 *5))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-200 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1011 (-781 (-385 (-885 *6))))) (-5 *5 (-1072))
+ (-5 *3 (-385 (-885 *6)))
+ (-4 *6 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))))
(-5 *2
- (-589 (-2 (|:| -2715 (-1083 *4)) (|:| -2411 (-589 (-883 *4))))))
- (-5 *1 (-1193 *4 *5 *6)) (-5 *3 (-589 (-883 *4)))
- (-14 *5 (-589 (-1087))) (-14 *6 (-589 (-1087))))))
-(((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-1068 (-2 (|:| |k| (-523)) (|:| |c| *6))))
- (-5 *4 (-953 (-779 (-523)))) (-5 *5 (-1087)) (-5 *7 (-383 (-523)))
- (-4 *6 (-973)) (-5 *2 (-794)) (-5 *1 (-548 *6)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-230 *4 *3 *5 *6)) (-4 *4 (-973)) (-4 *3 (-786))
- (-4 *5 (-243 *3)) (-4 *6 (-732)) (-5 *2 (-589 (-710)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-230 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-786))
- (-4 *5 (-243 *4)) (-4 *6 (-732)) (-5 *2 (-589 (-710))))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-97)) (-5 *2 (-108))))
- ((*1 *1 *2 *2) (-12 (-5 *1 (-271 *2)) (-4 *2 (-1123))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410))))
- ((*1 *1 *1 *1) (-5 *1 (-794)))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-953 *3)) (-4 *3 (-1123)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-339)) (-4 *7 (-1145 *5)) (-4 *4 (-664 *5 *7))
- (-5 *2 (-2 (|:| -2373 (-629 *6)) (|:| |vec| (-1169 *5))))
- (-5 *1 (-750 *5 *6 *7 *4 *3)) (-4 *6 (-599 *5)) (-4 *3 (-599 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-279))))
- ((*1 *1 *1) (-4 *1 (-279)))
- ((*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794))))
- ((*1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-394 (-1083 *1))) (-5 *1 (-292 *4)) (-5 *3 (-1083 *1))
- (-4 *4 (-427)) (-4 *4 (-515)) (-4 *4 (-786))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-840)) (-5 *2 (-394 (-1083 *1))) (-5 *3 (-1083 *1)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-4 *1 (-1014 *3))))
- ((*1 *1) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *2) (-12 (-5 *1 (-541 *2)) (-4 *2 (-508)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-152 *3)) (-4 *3 (-158)) (-4 *3 (-508))
- (-5 *2 (-383 (-523)))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-383 (-523))) (-5 *1 (-394 *3)) (-4 *3 (-508))
- (-4 *3 (-515))))
- ((*1 *2 *1) (|partial| -12 (-4 *1 (-508)) (-5 *2 (-383 (-523)))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-736 *3)) (-4 *3 (-158)) (-4 *3 (-508))
- (-5 *2 (-383 (-523)))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-383 (-523))) (-5 *1 (-772 *3)) (-4 *3 (-508))
- (-4 *3 (-1016))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-383 (-523))) (-5 *1 (-779 *3)) (-4 *3 (-508))
- (-4 *3 (-1016))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-925 *3)) (-4 *3 (-158)) (-4 *3 (-508))
- (-5 *2 (-383 (-523)))))
+ (-3 (|:| |f1| (-781 (-294 *6))) (|:| |f2| (-591 (-781 (-294 *6))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-200 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1089))
+ (-4 *5 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-3 *3 (-591 *3))) (-5 *1 (-406 *5 *3))
+ (-4 *3 (-13 (-1111) (-891) (-29 *5)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-451 *3 *4 *5))
+ (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-294 (-357))) (-5 *4 (-1013 (-781 (-357))))
+ (-5 *5 (-357)) (-5 *6 (-987)) (-5 *2 (-964)) (-5 *1 (-526))))
+ ((*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-964)) (-5 *1 (-526))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-294 (-357))) (-5 *4 (-1013 (-781 (-357))))
+ (-5 *5 (-357)) (-5 *2 (-964)) (-5 *1 (-526))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-294 (-357))) (-5 *4 (-1013 (-781 (-357))))
+ (-5 *5 (-357)) (-5 *2 (-964)) (-5 *1 (-526))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-294 (-357))) (-5 *4 (-1013 (-781 (-357))))
+ (-5 *2 (-964)) (-5 *1 (-526))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-294 (-357))) (-5 *4 (-591 (-1013 (-781 (-357)))))
+ (-5 *2 (-964)) (-5 *1 (-526))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-294 (-357))) (-5 *4 (-591 (-1013 (-781 (-357)))))
+ (-5 *5 (-357)) (-5 *2 (-964)) (-5 *1 (-526))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-294 (-357))) (-5 *4 (-591 (-1013 (-781 (-357)))))
+ (-5 *5 (-357)) (-5 *2 (-964)) (-5 *1 (-526))))
+ ((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-294 (-357))) (-5 *4 (-591 (-1013 (-781 (-357)))))
+ (-5 *5 (-357)) (-5 *6 (-987)) (-5 *2 (-964)) (-5 *1 (-526))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-294 (-357))) (-5 *4 (-1011 (-781 (-357))))
+ (-5 *5 (-1072)) (-5 *2 (-964)) (-5 *1 (-526))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-294 (-357))) (-5 *4 (-1011 (-781 (-357))))
+ (-5 *5 (-1089)) (-5 *2 (-964)) (-5 *1 (-526))))
((*1 *2 *3)
- (|partial| -12 (-5 *2 (-383 (-523))) (-5 *1 (-936 *3))
- (-4 *3 (-964 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1145 *6))
- (-4 *6 (-13 (-27) (-406 *5)))
- (-4 *5 (-13 (-786) (-515) (-964 (-523)))) (-4 *8 (-1145 (-383 *7)))
- (-5 *2 (-540 *3)) (-5 *1 (-511 *5 *6 *7 *8 *3))
- (-4 *3 (-318 *6 *7 *8)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3)
- (-12 (-5 *4 (-589 (-108))) (-5 *5 (-629 (-203)))
- (-5 *6 (-629 (-523))) (-5 *7 (-203)) (-5 *3 (-523)) (-5 *2 (-962))
- (-5 *1 (-694)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 (-1068 *4) (-1068 *4))) (-5 *2 (-1068 *4))
- (-5 *1 (-1192 *4)) (-4 *4 (-1123))))
+ (-12 (-4 *4 (-13 (-341) (-138) (-966 (-525)))) (-4 *5 (-1147 *4))
+ (-5 *2 (-542 (-385 *5))) (-5 *1 (-529 *4 *5)) (-5 *3 (-385 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-589 (-1068 *5)) (-589 (-1068 *5)))) (-5 *4 (-523))
- (-5 *2 (-589 (-1068 *5))) (-5 *1 (-1192 *5)) (-4 *5 (-1123)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -2373 (-629 (-383 (-883 *4))))
- (|:| |vec| (-589 (-383 (-883 *4)))) (|:| -2262 (-710))
- (|:| |rows| (-589 (-523))) (|:| |cols| (-589 (-523)))))
- (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087))))
- (-4 *6 (-732))
- (-5 *2
- (-2 (|:| |partsol| (-1169 (-383 (-883 *4))))
- (|:| -2922 (-589 (-1169 (-383 (-883 *4)))))))
- (-5 *1 (-855 *4 *5 *6 *7)) (-4 *7 (-880 *4 *6 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-125)) (-5 *3 (-710)) (-5 *2 (-1174)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-710)) (-4 *1 (-209 *4))
- (-4 *4 (-973))))
+ (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-1089)) (-4 *5 (-138))
+ (-4 *5 (-13 (-429) (-966 (-525)) (-788) (-587 (-525))))
+ (-5 *2 (-3 (-294 *5) (-591 (-294 *5)))) (-5 *1 (-545 *5))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-209 *3)) (-4 *3 (-973))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-211)) (-5 *2 (-710))))
- ((*1 *1 *1) (-4 *1 (-211)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-243 *3)) (-4 *3 (-786))))
- ((*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-786))))
+ (-12 (-4 *1 (-682 *3 *2)) (-4 *3 (-975)) (-4 *2 (-788))
+ (-4 *3 (-37 (-385 (-525))))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127))
- (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4)))))
+ (-12 (-5 *2 (-1089)) (-5 *1 (-885 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-4 *3 (-975))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-4 *2 (-788))
+ (-5 *1 (-1042 *3 *2 *4)) (-4 *4 (-882 *3 (-497 *2) *2))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975))
+ (-5 *1 (-1074 *3))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *3 (-13 (-339) (-136))) (-5 *1 (-375 *3 *4))
- (-4 *4 (-1145 *3))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-13 (-339) (-136))) (-5 *1 (-375 *2 *3))
- (-4 *3 (-1145 *2))))
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1080 *3 *4 *5))
+ (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-14 *5 *3)))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-449 *3 *4 *5))
- (-4 *3 (-973)) (-14 *5 *3)))
- ((*1 *2 *1 *3)
- (-12 (-4 *2 (-339)) (-4 *2 (-831 *3)) (-5 *1 (-540 *2))
- (-5 *3 (-1087))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-540 *2)) (-4 *2 (-339))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-794))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 *4)) (-5 *3 (-589 (-710))) (-4 *1 (-831 *4))
- (-4 *4 (-1016))))
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1086 *3 *4 *5))
+ (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1087 *3 *4 *5))
+ (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-14 *5 *3)))
((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-710)) (-4 *1 (-831 *2)) (-4 *2 (-1016))))
+ (-12 (-5 *2 (-1089)) (-5 *1 (-1120 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-4 *3 (-975))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *1 (-831 *3)) (-4 *3 (-1016))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-831 *2)) (-4 *2 (-1016))))
+ (-3321
+ (-12 (-5 *2 (-1089)) (-4 *1 (-1131 *3)) (-4 *3 (-975))
+ (-12 (-4 *3 (-29 (-525))) (-4 *3 (-891)) (-4 *3 (-1111))
+ (-4 *3 (-37 (-385 (-525))))))
+ (-12 (-5 *2 (-1089)) (-4 *1 (-1131 *3)) (-4 *3 (-975))
+ (-12 (|has| *3 (-15 -1507 ((-591 *2) *3)))
+ (|has| *3 (-15 -4141 (*3 *3 *2))) (-4 *3 (-37 (-385 (-525))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1131 *2)) (-4 *2 (-975)) (-4 *2 (-37 (-385 (-525))))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1078 *3 *4 *5))
- (-4 *3 (-973)) (-14 *5 *3)))
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1135 *3 *4 *5))
+ (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1147 *2)) (-4 *2 (-975)) (-4 *2 (-37 (-385 (-525))))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1084 *3 *4 *5))
- (-4 *3 (-973)) (-14 *5 *3)))
+ (-3321
+ (-12 (-5 *2 (-1089)) (-4 *1 (-1152 *3)) (-4 *3 (-975))
+ (-12 (-4 *3 (-29 (-525))) (-4 *3 (-891)) (-4 *3 (-1111))
+ (-4 *3 (-37 (-385 (-525))))))
+ (-12 (-5 *2 (-1089)) (-4 *1 (-1152 *3)) (-4 *3 (-975))
+ (-12 (|has| *3 (-15 -1507 ((-591 *2) *3)))
+ (|has| *3 (-15 -4141 (*3 *3 *2))) (-4 *3 (-37 (-385 (-525))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1152 *2)) (-4 *2 (-975)) (-4 *2 (-37 (-385 (-525))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1156 *3 *4 *5))
+ (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-14 *5 *3)))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1085 *3 *4 *5))
- (-4 *3 (-973)) (-14 *5 *3)))
+ (-3321
+ (-12 (-5 *2 (-1089)) (-4 *1 (-1162 *3)) (-4 *3 (-975))
+ (-12 (-4 *3 (-29 (-525))) (-4 *3 (-891)) (-4 *3 (-1111))
+ (-4 *3 (-37 (-385 (-525))))))
+ (-12 (-5 *2 (-1089)) (-4 *1 (-1162 *3)) (-4 *3 (-975))
+ (-12 (|has| *3 (-15 -1507 ((-591 *2) *3)))
+ (|has| *3 (-15 -4141 (*3 *3 *2))) (-4 *3 (-37 (-385 (-525))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1162 *2)) (-4 *2 (-975)) (-4 *2 (-37 (-385 (-525))))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1133 *3 *4 *5))
- (-4 *3 (-973)) (-14 *5 *3)))
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1163 *3 *4 *5))
+ (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)) (-14 *5 *3))))
+(((*1 *1 *1) (-4 *1 (-510))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-364 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-760 *2)) (-4 *2 (-788)))))
+(((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-640))))
+ ((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-640)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3)
+ (-12 (-5 *4 (-631 (-525))) (-5 *5 (-108)) (-5 *7 (-631 (-205)))
+ (-5 *3 (-525)) (-5 *6 (-205)) (-5 *2 (-964)) (-5 *1 (-696)))))
+(((*1 *1 *1) (-4 *1 (-802 *2))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-788)) (-5 *2 (-108))))
+ ((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-860)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-632 *3)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-385 *5)) (-4 *4 (-1129)) (-4 *5 (-1147 *4))
+ (-5 *1 (-139 *4 *5 *2)) (-4 *2 (-1147 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1091 (-385 (-525)))) (-5 *2 (-385 (-525)))
+ (-5 *1 (-172))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-631 (-294 (-205)))) (-5 *3 (-591 (-1089)))
+ (-5 *4 (-1171 (-294 (-205)))) (-5 *1 (-187))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 (-273 *3))) (-4 *3 (-288 *3)) (-4 *3 (-1018))
+ (-4 *3 (-1125)) (-5 *1 (-273 *3))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-288 *2)) (-4 *2 (-1018)) (-4 *2 (-1125))
+ (-5 *1 (-273 *2))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-110)) (-5 *3 (-1 *1 *1)) (-4 *1 (-281))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-110)) (-5 *3 (-1 *1 (-591 *1))) (-4 *1 (-281))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-110))) (-5 *3 (-591 (-1 *1 (-591 *1))))
+ (-4 *1 (-281))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-110))) (-5 *3 (-591 (-1 *1 *1))) (-4 *1 (-281))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1089)) (-5 *3 (-1 *1 *1)) (-4 *1 (-281))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1089)) (-5 *3 (-1 *1 (-591 *1))) (-4 *1 (-281))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-1089))) (-5 *3 (-591 (-1 *1 (-591 *1))))
+ (-4 *1 (-281))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-1089))) (-5 *3 (-591 (-1 *1 *1))) (-4 *1 (-281))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 (-273 *3))) (-4 *1 (-288 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-273 *3)) (-4 *1 (-288 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 (-525))) (-5 *4 (-1091 (-385 (-525))))
+ (-5 *1 (-289 *2)) (-4 *2 (-37 (-385 (-525))))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 *4)) (-5 *3 (-591 *1)) (-4 *1 (-352 *4 *5))
+ (-4 *4 (-788)) (-4 *5 (-160))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1145 *3)) (-4 *3 (-973))))
+ (-12 (-4 *1 (-352 *2 *3)) (-4 *2 (-788)) (-4 *3 (-160))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1089)) (-5 *3 (-712)) (-5 *4 (-1 *1 *1))
+ (-4 *1 (-408 *5)) (-4 *5 (-788)) (-4 *5 (-975))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1089)) (-5 *3 (-712)) (-5 *4 (-1 *1 (-591 *1)))
+ (-4 *1 (-408 *5)) (-4 *5 (-788)) (-4 *5 (-975))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-591 (-1089))) (-5 *3 (-591 (-712)))
+ (-5 *4 (-591 (-1 *1 (-591 *1)))) (-4 *1 (-408 *5)) (-4 *5 (-788))
+ (-4 *5 (-975))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-591 (-1089))) (-5 *3 (-591 (-712)))
+ (-5 *4 (-591 (-1 *1 *1))) (-4 *1 (-408 *5)) (-4 *5 (-788))
+ (-4 *5 (-975))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-591 (-110))) (-5 *3 (-591 *1)) (-5 *4 (-1089))
+ (-4 *1 (-408 *5)) (-4 *5 (-788)) (-4 *5 (-566 (-501)))))
+ ((*1 *1 *1 *2 *1 *3)
+ (-12 (-5 *2 (-110)) (-5 *3 (-1089)) (-4 *1 (-408 *4)) (-4 *4 (-788))
+ (-4 *4 (-566 (-501)))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-408 *2)) (-4 *2 (-788)) (-4 *2 (-566 (-501)))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1154 *3 *4 *5))
- (-4 *3 (-973)) (-14 *5 *3)))
+ (-12 (-5 *2 (-591 (-1089))) (-4 *1 (-408 *3)) (-4 *3 (-788))
+ (-4 *3 (-566 (-501)))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1161 *3 *4 *5))
- (-4 *3 (-973)) (-14 *5 *3))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-589 (-883 *6))) (-5 *4 (-589 (-1087))) (-4 *6 (-427))
- (-5 *2 (-589 (-589 *7))) (-5 *1 (-501 *6 *7 *5)) (-4 *7 (-339))
- (-4 *5 (-13 (-339) (-784))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1083 (-523))) (-5 *1 (-171)) (-5 *3 (-523))))
- ((*1 *2 *3 *2) (-12 (-5 *3 (-710)) (-5 *1 (-722 *2)) (-4 *2 (-158))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1083 (-523))) (-5 *1 (-873)) (-5 *3 (-523)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-880 *4 *5 *6)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-1174))
- (-5 *1 (-424 *4 *5 *6 *7)))))
+ (-12 (-5 *2 (-1089)) (-4 *1 (-408 *3)) (-4 *3 (-788))
+ (-4 *3 (-566 (-501)))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-4 *1 (-486 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1125))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 *4)) (-5 *3 (-591 *5)) (-4 *1 (-486 *4 *5))
+ (-4 *4 (-1018)) (-4 *5 (-1125))))
+ ((*1 *2 *1 *2)
+ (-12 (-5 *2 (-774 *3)) (-4 *3 (-341)) (-5 *1 (-660 *3))))
+ ((*1 *2 *1 *2) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341))))
+ ((*1 *2 *1 *2) (-12 (-4 *1 (-836 *2)) (-4 *2 (-1018))))
+ ((*1 *2 *2 *3 *2)
+ (-12 (-5 *2 (-385 (-885 *4))) (-5 *3 (-1089)) (-4 *4 (-517))
+ (-5 *1 (-971 *4))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-1089))) (-5 *4 (-591 (-385 (-885 *5))))
+ (-5 *2 (-385 (-885 *5))) (-4 *5 (-517)) (-5 *1 (-971 *5))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-273 (-385 (-885 *4)))) (-5 *2 (-385 (-885 *4)))
+ (-4 *4 (-517)) (-5 *1 (-971 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-591 (-273 (-385 (-885 *4))))) (-5 *2 (-385 (-885 *4)))
+ (-4 *4 (-517)) (-5 *1 (-971 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-1149 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733))
+ (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1070 *3)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-2 (|:| |k| (-1087)) (|:| |c| (-1189 *3)))))
- (-5 *1 (-1189 *3)) (-4 *3 (-973))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-589 (-2 (|:| |k| *3) (|:| |c| (-1191 *3 *4)))))
- (-5 *1 (-1191 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973)))))
-(((*1 *1 *2 *1) (-12 (-5 *1 (-589 *2)) (-4 *2 (-1123))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-1068 *2)) (-4 *2 (-1123)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-820 *4 *5)) (-5 *3 (-820 *4 *6)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-609 *5)) (-5 *1 (-816 *4 *5 *6)))))
-(((*1 *1) (-5 *1 (-130))) ((*1 *1 *1) (-5 *1 (-133)))
- ((*1 *1 *1) (-4 *1 (-1056))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-562 *5)) (-4 *5 (-406 *4)) (-4 *4 (-964 (-523)))
- (-4 *4 (-13 (-786) (-515))) (-5 *2 (-1083 *5)) (-5 *1 (-31 *4 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-562 *1)) (-4 *1 (-973)) (-4 *1 (-279))
- (-5 *2 (-1083 *1)))))
-(((*1 *1 *1) (-12 (-4 *1 (-222 *2)) (-4 *2 (-1123)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-5 *1 (-1169 *3)))))
+ (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-932))
+ (-4 *2 (-975)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1169 (-629 *4))) (-4 *4 (-158))
- (-5 *2 (-1169 (-629 (-883 *4)))) (-5 *1 (-169 *4)))))
-(((*1 *2)
- (-12 (-14 *4 (-710)) (-4 *5 (-1123)) (-5 *2 (-126))
- (-5 *1 (-215 *3 *4 *5)) (-4 *3 (-216 *4 *5))))
- ((*1 *2)
- (-12 (-4 *4 (-339)) (-5 *2 (-126)) (-5 *1 (-304 *3 *4))
- (-4 *3 (-305 *4))))
- ((*1 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-366 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
- (-4 *5 (-158))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-523))
- (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-589 *6)) (-4 *6 (-786)) (-4 *4 (-339)) (-4 *5 (-732))
- (-5 *2 (-523)) (-5 *1 (-475 *4 *5 *6 *7)) (-4 *7 (-880 *4 *5 *6))))
- ((*1 *2 *1) (-12 (-4 *1 (-909 *3)) (-4 *3 (-973)) (-5 *2 (-852))))
- ((*1 *2) (-12 (-4 *1 (-1176 *3)) (-4 *3 (-339)) (-5 *2 (-126)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-339)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3))
- (-5 *1 (-490 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))))
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-525))
+ (-5 *1 (-426 *4 *5 *6 *3)) (-4 *3 (-882 *4 *5 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-919 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-1025 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))))
+(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-1058)) (-5 *2 (-1138 (-525))))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 (-108) *6 *6)) (-4 *6 (-786)) (-5 *4 (-589 *6))
- (-5 *2 (-2 (|:| |fs| (-108)) (|:| |sd| *4) (|:| |td| (-589 *4))))
- (-5 *1 (-1095 *6)) (-5 *5 (-589 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-763)) (-5 *1 (-764)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-852))
- (-5 *2
- (-3 (-1083 *4)
- (-1169 (-589 (-2 (|:| -2058 *4) (|:| -2557 (-1034)))))))
- (-5 *1 (-322 *4)) (-4 *4 (-325)))))
+ (-12 (-5 *3 (-1 (-108) *6 *6)) (-4 *6 (-788)) (-5 *4 (-591 *6))
+ (-5 *2 (-2 (|:| |fs| (-108)) (|:| |sd| *4) (|:| |td| (-591 *4))))
+ (-5 *1 (-1097 *6)) (-5 *5 (-591 *4)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-788)) (-5 *2 (-108))))
+ ((*1 *1 *1 *1) (-5 *1 (-796)))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-837 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1) (-12 (-4 *1 (-515 *2)) (-4 *2 (-13 (-382) (-1111))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-975))
+ (-4 *2 (-13 (-382) (-966 *4) (-341) (-1111) (-263)))
+ (-5 *1 (-420 *4 *3 *2)) (-4 *3 (-1147 *4)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1053))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-712)) (-5 *4 (-525)) (-5 *1 (-422 *2)) (-4 *2 (-975)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1) (-12 (-4 *3 (-1125)) (-5 *2 (-591 *1)) (-4 *1 (-940 *3)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-788)) (-5 *2 (-108))))
+ ((*1 *1 *1 *1) (-5 *1 (-796))))
(((*1 *2 *1)
- (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6))
- (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-589 (-589 *3))) (-4 *3 (-786)) (-5 *1 (-1095 *3)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-443)) (-5 *3 (-589 (-240))) (-5 *1 (-1170))))
- ((*1 *1 *1) (-5 *1 (-1170))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-938 *3)) (-4 *3 (-1123)) (-4 *3 (-1016))
- (-5 *2 (-108)))))
+ (-12 (-4 *4 (-1018)) (-5 *2 (-822 *3 *5)) (-5 *1 (-818 *3 *4 *5))
+ (-4 *3 (-1018)) (-4 *5 (-611 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1083 (-523))) (-5 *2 (-523)) (-5 *1 (-873)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4))
- (-4 *3 (-343 *4))))
- ((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))))
-(((*1 *1 *2) (-12 (-5 *2 (-144)) (-5 *1 (-805)))))
-(((*1 *2 *1 *1)
- (|partial| -12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *2 (-108)))))
-(((*1 *1 *2) (-12 (-5 *2 (-364)) (-5 *1 (-578)))))
-(((*1 *1 *2) (-12 (-5 *1 (-953 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 *4)) (-4 *4 (-784)) (-4 *4 (-339)) (-5 *2 (-710))
- (-5 *1 (-876 *4 *5)) (-4 *5 (-1145 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-406 *4)) (-5 *1 (-145 *4 *2))
- (-4 *4 (-13 (-786) (-515))))))
+ (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-335 *4))
+ (-4 *4 (-327)))))
+(((*1 *2 *1 *2) (-12 (-5 *1 (-955 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1018)) (-4 *3 (-833 *5)) (-5 *2 (-631 *3))
+ (-5 *1 (-633 *5 *3 *6 *4)) (-4 *6 (-351 *3))
+ (-4 *4 (-13 (-351 *5) (-10 -7 (-6 -4250)))))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-1011 (-885 (-525)))) (-5 *3 (-885 (-525)))
+ (-5 *1 (-308))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-1011 (-885 (-525)))) (-5 *1 (-308)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-788)) (-5 *2 (-108))))
+ ((*1 *1 *1 *1) (-5 *1 (-796)))
+ ((*1 *2 *1 *1) (-12 (-4 *1 (-836 *3)) (-4 *3 (-1018)) (-5 *2 (-108))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-837 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1016 *3)) (-4 *3 (-1018)) (-5 *2 (-108)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *2 (-1147 *4)) (-5 *1 (-748 *4 *2 *3 *5))
+ (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *3 (-601 *2))
+ (-4 *5 (-601 (-385 *2)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *2 (-1147 *4)) (-5 *1 (-748 *4 *2 *5 *3))
+ (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *5 (-601 *2))
+ (-4 *3 (-601 (-385 *2))))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-115 *2)) (-4 *2 (-1125)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1018 *4)) (-4 *4 (-1016)) (-5 *2 (-1 *4))
- (-5 *1 (-945 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-355))) (-5 *1 (-966)) (-5 *3 (-355))))
+ (-12 (-5 *3 (-542 *2)) (-4 *2 (-13 (-29 *4) (-1111)))
+ (-5 *1 (-540 *4 *2))
+ (-4 *4 (-13 (-429) (-966 (-525)) (-788) (-587 (-525))))))
((*1 *2 *3)
- (-12 (-5 *3 (-1011 (-523))) (-5 *2 (-1 (-523))) (-5 *1 (-971)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
+ (-12 (-5 *3 (-542 (-385 (-885 *4))))
+ (-4 *4 (-13 (-429) (-966 (-525)) (-788) (-587 (-525))))
+ (-5 *2 (-294 *4)) (-5 *1 (-545 *4)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1125)) (-5 *1 (-555 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1125)) (-5 *1 (-1070 *3)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-515)) (-4 *4 (-921 *3)) (-5 *1 (-131 *3 *4 *2))
- (-4 *2 (-349 *4))))
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-5 *2 (-591 *3)) (-5 *1 (-42 *4 *3))
+ (-4 *3 (-395 *4)))))
+(((*1 *2 *3) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-522)) (-5 *3 (-525))))
((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *5 (-921 *4)) (-4 *2 (-349 *4))
- (-5 *1 (-474 *4 *5 *2 *3)) (-4 *3 (-349 *5))))
+ (-12 (-5 *2 (-1085 (-385 (-525)))) (-5 *1 (-875)) (-5 *3 (-525)))))
+(((*1 *2 *1) (-12 (-4 *1 (-327)) (-5 *2 (-108))))
((*1 *2 *3)
- (-12 (-5 *3 (-629 *5)) (-4 *5 (-921 *4)) (-4 *4 (-515))
- (-5 *2 (-629 *4)) (-5 *1 (-632 *4 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-515)) (-4 *4 (-921 *3)) (-5 *1 (-1138 *3 *4 *2))
- (-4 *2 (-1145 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1018 *3)) (-5 *1 (-836 *3)) (-4 *3 (-344))
- (-4 *3 (-1016)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1 (-499) (-589 (-499)))) (-5 *1 (-110))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-499) (-589 (-499)))) (-5 *1 (-110)))))
-(((*1 *2 *1) (-12 (-5 *1 (-896 *2)) (-4 *2 (-897)))))
-(((*1 *2 *3)
+ (-12 (-5 *3 (-1085 *4)) (-4 *4 (-327)) (-5 *2 (-108))
+ (-5 *1 (-335 *4)))))
+(((*1 *2 *3 *4)
(-12
(-5 *3
- (-2 (|:| |xinit| (-203)) (|:| |xend| (-203))
- (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203)))
- (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203)))
- (|:| |abserr| (-203)) (|:| |relerr| (-203))))
- (-5 *2 (-355)) (-5 *1 (-185)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-339)) (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3)))
- (-5 *1 (-706 *3 *4)) (-4 *3 (-648 *4))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-339)) (-4 *3 (-973))
- (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-788 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-94 *5)) (-4 *5 (-339)) (-4 *5 (-973))
- (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-789 *5 *3))
- (-4 *3 (-788 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-4 *1 (-140 *3))))
- ((*1 *1 *2)
- (-12
- (-5 *2 (-589 (-2 (|:| -3262 (-710)) (|:| -3882 *4) (|:| |num| *4))))
- (-4 *4 (-1145 *3)) (-4 *3 (-13 (-339) (-136))) (-5 *1 (-375 *3 *4))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-5 *3 (-589 (-883 (-523)))) (-5 *4 (-108)) (-5 *1 (-413))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-5 *3 (-589 (-1087))) (-5 *4 (-108)) (-5 *1 (-413))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1068 *3)) (-5 *1 (-553 *3)) (-4 *3 (-1123))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-580 *2)) (-4 *2 (-158))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-614 *3)) (-4 *3 (-786)) (-5 *1 (-607 *3 *4))
- (-4 *4 (-158))))
+ (-591
+ (-2 (|:| |eqzro| (-591 *8)) (|:| |neqzro| (-591 *8))
+ (|:| |wcond| (-591 (-885 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1171 (-385 (-885 *5))))
+ (|:| -4003 (-591 (-1171 (-385 (-885 *5))))))))))
+ (-5 *4 (-1072)) (-4 *5 (-13 (-286) (-138))) (-4 *8 (-882 *5 *7 *6))
+ (-4 *6 (-13 (-788) (-566 (-1089)))) (-4 *7 (-734)) (-5 *2 (-525))
+ (-5 *1 (-857 *5 *6 *7 *8)))))
+(((*1 *1) (-5 *1 (-987))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1125)) (-5 *1 (-555 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-614 *3)) (-4 *3 (-786)) (-5 *1 (-607 *3 *4))
- (-4 *4 (-158))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-614 *3)) (-4 *3 (-786)) (-5 *1 (-607 *3 *4))
- (-4 *4 (-158))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 (-589 (-589 *3)))) (-4 *3 (-1016))
- (-5 *1 (-617 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-653 *2 *3 *4)) (-4 *2 (-786)) (-4 *3 (-1016))
- (-14 *4
- (-1 (-108) (-2 (|:| -2557 *2) (|:| -3262 *3))
- (-2 (|:| -2557 *2) (|:| -3262 *3))))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-804 *2 *3)) (-4 *2 (-1123)) (-4 *3 (-1123))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 *4))))
- (-4 *4 (-1016)) (-5 *1 (-820 *3 *4)) (-4 *3 (-1016))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 *5)) (-4 *5 (-13 (-1016) (-33)))
- (-5 *2 (-589 (-1052 *3 *5))) (-5 *1 (-1052 *3 *5))
- (-4 *3 (-13 (-1016) (-33)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-2 (|:| |val| *4) (|:| -2394 *5))))
- (-4 *4 (-13 (-1016) (-33))) (-4 *5 (-13 (-1016) (-33)))
- (-5 *2 (-589 (-1052 *4 *5))) (-5 *1 (-1052 *4 *5))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -2394 *4)))
- (-4 *3 (-13 (-1016) (-33))) (-4 *4 (-13 (-1016) (-33)))
- (-5 *1 (-1052 *3 *4))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-1052 *2 *3)) (-4 *2 (-13 (-1016) (-33)))
- (-4 *3 (-13 (-1016) (-33)))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *4 (-108)) (-5 *1 (-1052 *2 *3)) (-4 *2 (-13 (-1016) (-33)))
- (-4 *3 (-13 (-1016) (-33)))))
- ((*1 *1 *2 *3 *2 *4)
- (-12 (-5 *4 (-589 *3)) (-4 *3 (-13 (-1016) (-33)))
- (-5 *1 (-1053 *2 *3)) (-4 *2 (-13 (-1016) (-33)))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-1052 *2 *3))) (-4 *2 (-13 (-1016) (-33)))
- (-4 *3 (-13 (-1016) (-33))) (-5 *1 (-1053 *2 *3))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-1053 *2 *3))) (-5 *1 (-1053 *2 *3))
- (-4 *2 (-13 (-1016) (-33))) (-4 *3 (-13 (-1016) (-33)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1052 *3 *4)) (-4 *3 (-13 (-1016) (-33)))
- (-4 *4 (-13 (-1016) (-33))) (-5 *1 (-1053 *3 *4))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-1077 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))))
-(((*1 *1 *1) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158)) (-4 *2 (-982))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087)))
- (-14 *3 (-589 (-1087))) (-4 *4 (-363))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)) (-4 *2 (-982))))
- ((*1 *1 *1) (-4 *1 (-784)))
- ((*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158)) (-4 *2 (-982))))
- ((*1 *1 *1) (-4 *1 (-982))) ((*1 *1 *1) (-4 *1 (-1051))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-589 *7)) (|:| -2394 *8)))
- (-4 *7 (-987 *4 *5 *6)) (-4 *8 (-992 *4 *5 *6 *7)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-917 *4 *5 *6 *7 *8))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-589 *7)) (|:| -2394 *8)))
- (-4 *7 (-987 *4 *5 *6)) (-4 *8 (-992 *4 *5 *6 *7)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-1023 *4 *5 *6 *7 *8)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1169 *6)) (-5 *4 (-1169 (-523))) (-5 *5 (-523))
- (-4 *6 (-1016)) (-5 *2 (-1 *6)) (-5 *1 (-945 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-629 *3)) (-4 *3 (-284)) (-5 *1 (-639 *3)))))
-(((*1 *2 *2) (-12 (-5 *1 (-891 *2)) (-4 *2 (-508)))))
-(((*1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-973)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-4 *5 (-406 *4))
- (-5 *2 (-394 *3)) (-5 *1 (-411 *4 *5 *3)) (-4 *3 (-1145 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-427)) (-4 *4 (-786)) (-4 *5 (-732)) (-5 *2 (-589 *6))
- (-5 *1 (-916 *3 *4 *5 *6)) (-4 *6 (-880 *3 *5 *4)))))
-(((*1 *1 *2) (-12 (-4 *1 (-37 *2)) (-4 *2 (-158))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 *3)) (-4 *3 (-339)) (-14 *6 (-1169 (-629 *3)))
- (-5 *1 (-43 *3 *4 *5 *6)) (-14 *4 (-852)) (-14 *5 (-589 (-1087)))))
- ((*1 *1 *2) (-12 (-5 *2 (-1039 (-523) (-562 (-47)))) (-5 *1 (-47))))
- ((*1 *2 *3) (-12 (-5 *2 (-51)) (-5 *1 (-50 *3)) (-4 *3 (-1123))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 (-315 (-3985 'JINT 'X 'ELAM) (-3985) (-638))))
- (-5 *1 (-59 *3)) (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 (-315 (-3985) (-3985 'XC) (-638))))
- (-5 *1 (-61 *3)) (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-315 (-3985 'X) (-3985) (-638))) (-5 *1 (-62 *3))
- (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-629 (-315 (-3985) (-3985 'X 'HESS) (-638))))
- (-5 *1 (-63 *3)) (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-315 (-3985) (-3985 'XC) (-638))) (-5 *1 (-64 *3))
- (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 (-315 (-3985 'X) (-3985 '-4028) (-638))))
- (-5 *1 (-69 *3)) (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 (-315 (-3985) (-3985 'X) (-638))))
- (-5 *1 (-72 *3)) (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 (-315 (-3985 'X 'EPS) (-3985 '-4028) (-638))))
- (-5 *1 (-73 *3 *4 *5)) (-14 *3 (-1087)) (-14 *4 (-1087))
- (-14 *5 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 (-315 (-3985 'EPS) (-3985 'YA 'YB) (-638))))
- (-5 *1 (-74 *3 *4 *5)) (-14 *3 (-1087)) (-14 *4 (-1087))
- (-14 *5 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-315 (-3985) (-3985 'X) (-638))) (-5 *1 (-75 *3))
- (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-315 (-3985) (-3985 'X) (-638))) (-5 *1 (-76 *3))
- (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 (-315 (-3985) (-3985 'XC) (-638))))
- (-5 *1 (-77 *3)) (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 (-315 (-3985) (-3985 'X) (-638))))
- (-5 *1 (-78 *3)) (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 (-315 (-3985) (-3985 'X) (-638))))
- (-5 *1 (-79 *3)) (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 (-315 (-3985 'X '-4028) (-3985) (-638))))
- (-5 *1 (-80 *3)) (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-629 (-315 (-3985 'X '-4028) (-3985) (-638))))
- (-5 *1 (-81 *3)) (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-629 (-315 (-3985 'X) (-3985) (-638)))) (-5 *1 (-82 *3))
- (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 (-315 (-3985 'X) (-3985) (-638))))
- (-5 *1 (-83 *3)) (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 (-315 (-3985 'X) (-3985 '-4028) (-638))))
- (-5 *1 (-84 *3)) (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-629 (-315 (-3985 'XL 'XR 'ELAM) (-3985) (-638))))
- (-5 *1 (-85 *3)) (-14 *3 (-1087))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-315 (-3985 'X) (-3985 '-4028) (-638))) (-5 *1 (-87 *3))
- (-14 *3 (-1087))))
- ((*1 *2 *1) (-12 (-5 *2 (-932 2)) (-5 *1 (-103))))
- ((*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-103))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 (-128 *3 *4 *5))) (-5 *1 (-128 *3 *4 *5))
- (-14 *3 (-523)) (-14 *4 (-710)) (-4 *5 (-158))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 *5)) (-4 *5 (-158)) (-5 *1 (-128 *3 *4 *5))
- (-14 *3 (-523)) (-14 *4 (-710))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1054 *4 *5)) (-14 *4 (-710)) (-4 *5 (-158))
- (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-523))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-218 *4 *5)) (-14 *4 (-710)) (-4 *5 (-158))
- (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-523))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1169 (-629 *4))) (-4 *4 (-158))
- (-5 *2 (-1169 (-629 (-383 (-883 *4))))) (-5 *1 (-169 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 *3))
- (-4 *3
- (-13 (-786)
- (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 ((-1174) $))
- (-15 -2149 ((-1174) $)))))
- (-5 *1 (-193 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-932 10)) (-5 *1 (-196))))
- ((*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-196))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-223 *3)) (-4 *3 (-786))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-786)) (-5 *1 (-223 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1009 (-292 *4)))
- (-4 *4 (-13 (-786) (-515) (-564 (-355)))) (-5 *2 (-1009 (-355)))
- (-5 *1 (-235 *4))))
- ((*1 *1 *2) (-12 (-4 *1 (-243 *2)) (-4 *2 (-786))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-252))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-1145 *3)) (-5 *1 (-266 *3 *2 *4 *5 *6 *7))
- (-4 *3 (-158)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4))
- (-14 *6 (-1 (-3 *4 "failed") *4 *4))
- (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1154 *4 *5 *6)) (-4 *4 (-13 (-27) (-1109) (-406 *3)))
- (-14 *5 (-1087)) (-14 *6 *4)
- (-4 *3 (-13 (-786) (-964 (-523)) (-585 (-523)) (-427)))
- (-5 *1 (-289 *3 *4 *5 *6))))
- ((*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1125)) (-5 *1 (-1070 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-854)) (-5 *1 (-961 *2))
+ (-4 *2 (-13 (-1018) (-10 -8 (-15 * ($ $ $))))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-1070 *3))) (-5 *1 (-1070 *3)) (-4 *3 (-1125)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2)
+ (-12 (-5 *2 (-1176)) (-5 *1 (-1103 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-1018)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-97)) (-5 *2 (-108))))
+ ((*1 *1 *2 *2) (-12 (-5 *1 (-273 *2)) (-4 *2 (-1125))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412))))
+ ((*1 *1 *1 *1) (-5 *1 (-796)))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-955 *3)) (-4 *3 (-1125)))))
+(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-591 *1)) (-4 *1 (-853)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160))
+ (-5 *2 (-631 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-631 *4)) (-5 *1 (-394 *3 *4))
+ (-4 *3 (-395 *4))))
+ ((*1 *2) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-631 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-854)) (-4 *6 (-13 (-517) (-788)))
+ (-5 *2 (-591 (-294 *6))) (-5 *1 (-201 *5 *6)) (-5 *3 (-294 *6))
+ (-4 *5 (-975))))
+ ((*1 *2 *1) (-12 (-5 *1 (-396 *2)) (-4 *2 (-517))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-542 *5)) (-4 *5 (-13 (-29 *4) (-1111)))
+ (-4 *4 (-13 (-429) (-966 (-525)) (-788) (-587 (-525))))
+ (-5 *2 (-591 *5)) (-5 *1 (-540 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-542 (-385 (-885 *4))))
+ (-4 *4 (-13 (-429) (-966 (-525)) (-788) (-587 (-525))))
+ (-5 *2 (-591 (-294 *4))) (-5 *1 (-545 *4))))
((*1 *2 *1)
- (-12 (-5 *2 (-292 *5)) (-5 *1 (-315 *3 *4 *5))
- (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087))) (-4 *5 (-363))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-325)) (-4 *2 (-305 *4)) (-5 *1 (-323 *3 *4 *2))
- (-4 *3 (-305 *4))))
+ (-12 (-4 *1 (-1014 *3 *2)) (-4 *3 (-786)) (-4 *2 (-1063 *3))))
((*1 *2 *3)
- (-12 (-4 *4 (-325)) (-4 *2 (-305 *4)) (-5 *1 (-323 *2 *4 *3))
- (-4 *3 (-305 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-350 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158))
- (-5 *2 (-1191 *3 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-350 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158))
- (-5 *2 (-1182 *3 *4))))
- ((*1 *1 *2) (-12 (-4 *1 (-350 *2 *3)) (-4 *2 (-786)) (-4 *3 (-158))))
- ((*1 *1 *2)
- (-12
- (-5 *2 (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306)))))
- (-4 *1 (-359))))
- ((*1 *1 *2) (-12 (-5 *2 (-306)) (-4 *1 (-359))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 (-306))) (-4 *1 (-359))))
- ((*1 *1 *2) (-12 (-5 *2 (-629 (-638))) (-4 *1 (-359))))
- ((*1 *1 *2)
- (-12
- (-5 *2 (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306)))))
- (-4 *1 (-360))))
- ((*1 *1 *2) (-12 (-5 *2 (-306)) (-4 *1 (-360))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 (-306))) (-4 *1 (-360))))
- ((*1 *2 *1) (-12 (-4 *1 (-365)) (-5 *2 (-1070))))
- ((*1 *1 *2) (-12 (-5 *2 (-1070)) (-4 *1 (-365))))
- ((*1 *2 *3) (-12 (-5 *2 (-370)) (-5 *1 (-369 *3)) (-4 *3 (-1016))))
- ((*1 *1 *2) (-12 (-5 *2 (-794)) (-5 *1 (-370))))
- ((*1 *1 *2)
- (-12
- (-5 *2 (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306)))))
- (-4 *1 (-372))))
- ((*1 *1 *2) (-12 (-5 *2 (-306)) (-4 *1 (-372))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 (-306))) (-4 *1 (-372))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-271 (-292 (-155 (-355))))) (-5 *1 (-374 *3 *4 *5 *6))
- (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1091))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-271 (-292 (-355)))) (-5 *1 (-374 *3 *4 *5 *6))
- (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1091))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-271 (-292 (-523)))) (-5 *1 (-374 *3 *4 *5 *6))
- (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1091))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-292 (-155 (-355)))) (-5 *1 (-374 *3 *4 *5 *6))
- (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1091))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-292 (-355))) (-5 *1 (-374 *3 *4 *5 *6))
- (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1091))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-292 (-523))) (-5 *1 (-374 *3 *4 *5 *6))
- (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1091))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-271 (-292 (-633)))) (-5 *1 (-374 *3 *4 *5 *6))
- (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1091))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-271 (-292 (-638)))) (-5 *1 (-374 *3 *4 *5 *6))
- (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1091))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-271 (-292 (-640)))) (-5 *1 (-374 *3 *4 *5 *6))
- (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1091))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-292 (-633))) (-5 *1 (-374 *3 *4 *5 *6))
- (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1091))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-292 (-638))) (-5 *1 (-374 *3 *4 *5 *6))
- (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1091))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-292 (-640))) (-5 *1 (-374 *3 *4 *5 *6))
- (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1091))))
- ((*1 *1 *2)
- (-12
- (-5 *2 (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306)))))
- (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087))
- (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1091))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 (-306))) (-5 *1 (-374 *3 *4 *5 *6))
- (-14 *3 (-1087)) (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1091))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-306)) (-5 *1 (-374 *3 *4 *5 *6)) (-14 *3 (-1087))
- (-14 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1091))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-307 *4)) (-4 *4 (-13 (-786) (-21)))
- (-5 *1 (-403 *3 *4)) (-4 *3 (-13 (-158) (-37 (-383 (-523)))))))
- ((*1 *1 *2)
- (-12 (-5 *1 (-403 *2 *3)) (-4 *2 (-13 (-158) (-37 (-383 (-523)))))
- (-4 *3 (-13 (-786) (-21)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-383 (-883 (-383 *3)))) (-4 *3 (-515)) (-4 *3 (-786))
- (-4 *1 (-406 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-883 (-383 *3))) (-4 *3 (-515)) (-4 *3 (-786))
- (-4 *1 (-406 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-383 *3)) (-4 *3 (-515)) (-4 *3 (-786))
- (-4 *1 (-406 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1039 *3 (-562 *1))) (-4 *3 (-973)) (-4 *3 (-786))
- (-4 *1 (-406 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-1020)) (-5 *1 (-410))))
- ((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-410))))
- ((*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-410))))
- ((*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-410))))
- ((*1 *1 *2) (-12 (-5 *2 (-410)) (-5 *1 (-413))))
- ((*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-413))))
- ((*1 *1 *2)
- (-12
- (-5 *2 (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306)))))
- (-4 *1 (-415))))
- ((*1 *1 *2) (-12 (-5 *2 (-306)) (-4 *1 (-415))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 (-306))) (-4 *1 (-415))))
- ((*1 *1 *2) (-12 (-5 *2 (-1169 (-638))) (-4 *1 (-415))))
- ((*1 *1 *2)
- (-12
- (-5 *2 (-2 (|:| |localSymbols| (-1091)) (|:| -3514 (-589 (-306)))))
- (-4 *1 (-416))))
- ((*1 *1 *2) (-12 (-5 *2 (-306)) (-4 *1 (-416))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 (-306))) (-4 *1 (-416))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 (-383 (-883 *3)))) (-4 *3 (-158))
- (-14 *6 (-1169 (-629 *3))) (-5 *1 (-428 *3 *4 *5 *6))
- (-14 *4 (-852)) (-14 *5 (-589 (-1087)))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 (-589 (-874 (-203))))) (-5 *1 (-443))))
- ((*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-443))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1154 *3 *4 *5)) (-4 *3 (-973)) (-14 *4 (-1087))
- (-14 *5 *3) (-5 *1 (-449 *3 *4 *5))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-449 *3 *4 *5))
- (-4 *3 (-973)) (-14 *5 *3)))
- ((*1 *2 *1) (-12 (-5 *2 (-932 16)) (-5 *1 (-460))))
- ((*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-460))))
- ((*1 *1 *2) (-12 (-5 *2 (-1039 (-523) (-562 (-466)))) (-5 *1 (-466))))
- ((*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-473))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-339))
- (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-475 *3 *4 *5 *6))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-158)) (-5 *1 (-557 *3 *2)) (-4 *2 (-684 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-563 *2)) (-4 *2 (-1123))))
- ((*1 *1 *2) (-12 (-4 *1 (-567 *2)) (-4 *2 (-973))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1187 *3 *4)) (-5 *1 (-573 *3 *4 *5)) (-4 *3 (-786))
- (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-14 *5 (-852))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1182 *3 *4)) (-5 *1 (-573 *3 *4 *5)) (-4 *3 (-786))
- (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-14 *5 (-852))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-158)) (-5 *1 (-581 *3 *2)) (-4 *2 (-684 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-618 *3)) (-5 *1 (-614 *3)) (-4 *3 (-786))))
- ((*1 *2 *1) (-12 (-5 *2 (-758 *3)) (-5 *1 (-614 *3)) (-4 *3 (-786))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-888 (-888 (-888 *3)))) (-5 *1 (-617 *3))
- (-4 *3 (-1016))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-888 (-888 (-888 *3)))) (-4 *3 (-1016))
- (-5 *1 (-617 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-758 *3)) (-5 *1 (-618 *3)) (-4 *3 (-786))))
- ((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-622 *3)) (-4 *3 (-1016))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-973)) (-4 *1 (-627 *3 *4 *2)) (-4 *4 (-349 *3))
- (-4 *2 (-349 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-155 (-355))) (-5 *1 (-633))))
- ((*1 *1 *2) (-12 (-5 *2 (-155 (-640))) (-5 *1 (-633))))
- ((*1 *1 *2) (-12 (-5 *2 (-155 (-638))) (-5 *1 (-633))))
- ((*1 *1 *2) (-12 (-5 *2 (-155 (-523))) (-5 *1 (-633))))
- ((*1 *1 *2) (-12 (-5 *2 (-155 (-355))) (-5 *1 (-633))))
- ((*1 *1 *2) (-12 (-5 *2 (-640)) (-5 *1 (-638))))
- ((*1 *2 *1) (-12 (-5 *2 (-355)) (-5 *1 (-638))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-292 (-523))) (-5 *2 (-292 (-640))) (-5 *1 (-640))))
- ((*1 *1 *2) (-12 (-5 *1 (-642 *2)) (-4 *2 (-1016))))
- ((*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1070)) (-5 *1 (-650))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-158)) (-5 *1 (-651 *2 *3 *4 *5 *6)) (-4 *3 (-23))
- (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-973)) (-5 *1 (-652 *3 *2)) (-4 *2 (-1145 *3))))
+ (-12 (-5 *3 (-591 *1)) (-4 *1 (-1014 *4 *2)) (-4 *4 (-786))
+ (-4 *2 (-1063 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111)))))
((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| -2557 *3) (|:| -3262 *4)))
- (-5 *1 (-653 *3 *4 *5)) (-4 *3 (-786)) (-4 *4 (-1016))
- (-14 *5 (-1 (-108) *2 *2))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-2 (|:| -2557 *3) (|:| -3262 *4))) (-4 *3 (-786))
- (-4 *4 (-1016)) (-5 *1 (-653 *3 *4 *5)) (-14 *5 (-1 (-108) *2 *2))))
+ (-12 (-5 *2 (-1184 (-1089) *3)) (-5 *1 (-1191 *3)) (-4 *3 (-975))))
((*1 *2 *1)
- (-12 (-4 *2 (-158)) (-5 *1 (-655 *2 *3 *4 *5 *6)) (-4 *3 (-23))
- (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 (-2 (|:| -2275 *3) (|:| -1511 *4)))) (-4 *3 (-973))
- (-4 *4 (-666)) (-5 *1 (-675 *3 *4))))
- ((*1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-703))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-3
- (|:| |nia|
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (|:| |mdnia|
- (-2 (|:| |fn| (-292 (-203)))
- (|:| -3487 (-589 (-1011 (-779 (-203)))))
- (|:| |abserr| (-203)) (|:| |relerr| (-203))))))
- (-5 *1 (-708))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |fn| (-292 (-203)))
- (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (-5 *1 (-708))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (-5 *1 (-708))))
- ((*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-708))))
- ((*1 *2 *3) (-12 (-5 *2 (-713)) (-5 *1 (-712 *3)) (-4 *3 (-1123))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |xinit| (-203)) (|:| |xend| (-203))
- (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203)))
- (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203)))
- (|:| |abserr| (-203)) (|:| |relerr| (-203))))
- (-5 *1 (-747))))
- ((*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-747))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-831 *3)) (-5 *1 (-756 *3 *2 *4)) (-4 *3 (-1016))
- (-14 *4 *3)))
- ((*1 *1 *2)
- (-12 (-4 *3 (-1016)) (-14 *4 *3) (-5 *1 (-756 *3 *2 *4))
- (-4 *2 (-831 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-763))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-3
- (|:| |noa|
- (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203)))
- (|:| |lb| (-589 (-779 (-203))))
- (|:| |cf| (-589 (-292 (-203))))
- (|:| |ub| (-589 (-779 (-203))))))
- (|:| |lsa|
- (-2 (|:| |lfn| (-589 (-292 (-203))))
- (|:| -4105 (-589 (-203)))))))
- (-5 *1 (-777))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))
- (-5 *1 (-777))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203)))
- (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203))))
- (|:| |ub| (-589 (-779 (-203))))))
- (-5 *1 (-777))))
- ((*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-777))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1165 *3)) (-14 *3 (-1087)) (-5 *1 (-791 *3 *4 *5 *6))
- (-4 *4 (-973)) (-14 *5 (-94 *4)) (-14 *6 (-1 *4 *4))))
- ((*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-793))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-883 *3)) (-4 *3 (-973)) (-5 *1 (-797 *3 *4 *5 *6))
- (-14 *4 (-589 (-1087))) (-14 *5 (-589 (-710))) (-14 *6 (-710))))
+ (-12 (-5 *2 (-1184 *3 *4)) (-5 *1 (-1193 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-975)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-286)) (-5 *1 (-166 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-591 *6)) (-4 *1 (-882 *4 *5 *6)) (-4 *4 (-975))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-712))))
((*1 *2 *1)
- (-12 (-5 *2 (-883 *3)) (-5 *1 (-797 *3 *4 *5 *6)) (-4 *3 (-973))
- (-14 *4 (-589 (-1087))) (-14 *5 (-589 (-710))) (-14 *6 (-710))))
- ((*1 *1 *2) (-12 (-5 *2 (-144)) (-5 *1 (-805))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-883 (-47))) (-5 *2 (-292 (-523))) (-5 *1 (-806))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-383 (-883 (-47)))) (-5 *2 (-292 (-523)))
- (-5 *1 (-806))))
- ((*1 *1 *2) (-12 (-5 *1 (-824 *2)) (-4 *2 (-786))))
- ((*1 *2 *1) (-12 (-5 *2 (-758 *3)) (-5 *1 (-824 *3)) (-4 *3 (-786))))
- ((*1 *1 *2)
+ (-12 (-4 *1 (-882 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *2 (-712)))))
+(((*1 *2 *3)
(-12
- (-5 *2
- (-2 (|:| |pde| (-589 (-292 (-203))))
- (|:| |constraints|
- (-589
- (-2 (|:| |start| (-203)) (|:| |finish| (-203))
- (|:| |grid| (-710)) (|:| |boundaryType| (-523))
- (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203))))))
- (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070))
- (|:| |tol| (-203))))
- (-5 *1 (-829))))
- ((*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-829))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1110 *3)) (-5 *1 (-832 *3)) (-4 *3 (-1016))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 (-836 *3))) (-4 *3 (-1016)) (-5 *1 (-835 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-589 (-836 *3))) (-5 *1 (-835 *3)) (-4 *3 (-1016))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-836 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 (-589 *3))) (-4 *3 (-1016)) (-5 *1 (-836 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-383 (-394 *3))) (-4 *3 (-284)) (-5 *1 (-845 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-383 *3)) (-5 *1 (-845 *3)) (-4 *3 (-284))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-452)) (-5 *2 (-292 *4)) (-5 *1 (-850 *4))
- (-4 *4 (-13 (-786) (-515)))))
- ((*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-896 *3)) (-4 *3 (-897))))
- ((*1 *1 *2) (-12 (-5 *1 (-896 *2)) (-4 *2 (-897))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-900))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-383 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523))))
- ((*1 *2 *3) (-12 (-5 *2 (-1174)) (-5 *1 (-960 *3)) (-4 *3 (-1123))))
- ((*1 *2 *3) (-12 (-5 *3 (-288)) (-5 *1 (-960 *2)) (-4 *2 (-1123))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-961 *3 *4 *5 *2 *6)) (-4 *2 (-880 *3 *4 *5))
- (-14 *6 (-589 *2))))
- ((*1 *1 *2) (-12 (-4 *1 (-964 *2)) (-4 *2 (-1123))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-969 *3)) (-4 *3 (-515))))
- ((*1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-973))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-629 *5)) (-5 *1 (-977 *3 *4 *5)) (-14 *3 (-710))
- (-14 *4 (-710)) (-4 *5 (-973))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-973)) (-4 *4 (-786)) (-5 *1 (-1040 *3 *4 *2))
- (-4 *2 (-880 *3 (-495 *4) *4))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-973)) (-4 *2 (-786)) (-5 *1 (-1040 *3 *2 *4))
- (-4 *4 (-880 *3 (-495 *2) *2))))
- ((*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-794))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-629 *4)) (-5 *1 (-1054 *3 *4)) (-14 *3 (-710))
- (-4 *4 (-973))))
- ((*1 *1 *2) (-12 (-5 *2 (-133)) (-4 *1 (-1056))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-5 *1 (-1068 *3))))
+ (-5 *3
+ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205))
+ (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205)))
+ (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205)))
+ (|:| |abserr| (-205)) (|:| |relerr| (-205))))
+ (-5 *2 (-357)) (-5 *1 (-187)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-788)) (-5 *1 (-681 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4))))
+ (-5 *1 (-995 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-496 *3)) (-4 *3 (-13 (-668) (-25))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1171 *4)) (-5 *3 (-525)) (-4 *4 (-327))
+ (-5 *1 (-495 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 (-525))) (-5 *4 (-525)) (-5 *2 (-51))
+ (-5 *1 (-935)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-591 (-885 (-525)))) (-5 *4 (-591 (-1089)))
+ (-5 *2 (-591 (-591 (-357)))) (-5 *1 (-952)) (-5 *5 (-357))))
((*1 *2 *3)
- (-12 (-5 *2 (-1068 *3)) (-5 *1 (-1072 *3)) (-4 *3 (-973))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1078 *3 *4 *5))
- (-4 *3 (-973)) (-14 *5 *3)))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1084 *3 *4 *5))
- (-4 *3 (-973)) (-14 *5 *3)))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1085 *3 *4 *5))
- (-4 *3 (-973)) (-14 *5 *3)))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1142 *4 *3)) (-4 *3 (-973)) (-14 *4 (-1087))
- (-14 *5 *3) (-5 *1 (-1085 *3 *4 *5))))
- ((*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-1086))))
- ((*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1087))))
- ((*1 *2 *1) (-12 (-5 *2 (-1097 (-1087) (-413))) (-5 *1 (-1091))))
- ((*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-1092))))
- ((*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1092))))
- ((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-1092))))
- ((*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-1092))))
- ((*1 *2 *1) (-12 (-5 *2 (-203)) (-5 *1 (-1092))))
- ((*1 *1 *2) (-12 (-5 *2 (-203)) (-5 *1 (-1092))))
- ((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-1092))))
- ((*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-1092))))
- ((*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-1096 *3)) (-4 *3 (-1016))))
- ((*1 *2 *3) (-12 (-5 *2 (-1104)) (-5 *1 (-1103 *3)) (-4 *3 (-1016))))
- ((*1 *1 *2) (-12 (-5 *2 (-794)) (-5 *1 (-1104))))
- ((*1 *1 *2) (-12 (-5 *2 (-883 *3)) (-4 *3 (-973)) (-5 *1 (-1118 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-1118 *3)) (-4 *3 (-973))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-888 *3)) (-4 *3 (-1123)) (-5 *1 (-1121 *3))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-973)) (-4 *1 (-1131 *3 *2)) (-4 *2 (-1160 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1133 *3 *4 *5))
- (-4 *3 (-973)) (-14 *5 *3)))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1011 *3)) (-4 *3 (-1123)) (-5 *1 (-1136 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1165 *3)) (-14 *3 (-1087)) (-5 *1 (-1142 *3 *4))
- (-4 *4 (-973))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-973)) (-4 *1 (-1152 *3 *2)) (-4 *2 (-1129 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1154 *3 *4 *5))
- (-4 *3 (-973)) (-14 *5 *3)))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1161 *3 *4 *5))
- (-4 *3 (-973)) (-14 *5 *3)))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1142 *4 *3)) (-4 *3 (-973)) (-14 *4 (-1087))
- (-14 *5 *3) (-5 *1 (-1161 *3 *4 *5))))
- ((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-1165 *3)) (-14 *3 *2)))
- ((*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-1170))))
- ((*1 *2 *3) (-12 (-5 *3 (-443)) (-5 *2 (-1170)) (-5 *1 (-1173))))
- ((*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-1174))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-973)) (-4 *4 (-786)) (-4 *5 (-732)) (-14 *6 (-589 *4))
- (-5 *1 (-1179 *3 *4 *5 *2 *6 *7 *8)) (-4 *2 (-880 *3 *5 *4))
- (-14 *7 (-589 (-710))) (-14 *8 (-710))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-880 *3 *5 *4)) (-5 *1 (-1179 *3 *4 *5 *2 *6 *7 *8))
- (-4 *3 (-973)) (-4 *4 (-786)) (-4 *5 (-732)) (-14 *6 (-589 *4))
- (-14 *7 (-589 (-710))) (-14 *8 (-710))))
- ((*1 *1 *2) (-12 (-4 *1 (-1181 *2)) (-4 *2 (-973))))
- ((*1 *1 *2) (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1191 *3 *4)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-786))
- (-4 *4 (-158))))
+ (-12 (-5 *3 (-972 *4 *5)) (-4 *4 (-13 (-786) (-286) (-138) (-951)))
+ (-14 *5 (-591 (-1089))) (-5 *2 (-591 (-591 (-953 (-385 *4)))))
+ (-5 *1 (-1195 *4 *5 *6)) (-14 *6 (-591 (-1089)))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-108))
+ (-4 *5 (-13 (-786) (-286) (-138) (-951)))
+ (-5 *2 (-591 (-591 (-953 (-385 *5))))) (-5 *1 (-1195 *5 *6 *7))
+ (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-108))
+ (-4 *5 (-13 (-786) (-286) (-138) (-951)))
+ (-5 *2 (-591 (-591 (-953 (-385 *5))))) (-5 *1 (-1195 *5 *6 *7))
+ (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-108))
+ (-4 *5 (-13 (-786) (-286) (-138) (-951)))
+ (-5 *2 (-591 (-591 (-953 (-385 *5))))) (-5 *1 (-1195 *5 *6 *7))
+ (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-885 *4)))
+ (-4 *4 (-13 (-786) (-286) (-138) (-951)))
+ (-5 *2 (-591 (-591 (-953 (-385 *4))))) (-5 *1 (-1195 *4 *5 *6))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-591 (-1089))))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-320 *4 *3 *5)) (-4 *4 (-1129)) (-4 *3 (-1147 *4))
+ (-4 *5 (-1147 (-385 *3))) (-5 *2 (-108))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1085 (-885 *6))) (-4 *6 (-517))
+ (-4 *2 (-882 (-385 (-885 *6)) *5 *4)) (-5 *1 (-674 *5 *4 *6 *2))
+ (-4 *5 (-734))
+ (-4 *4 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $))))))))
+(((*1 *2 *3 *4 *4 *3 *5)
+ (-12 (-5 *4 (-564 *3)) (-5 *5 (-1085 *3))
+ (-4 *3 (-13 (-408 *6) (-27) (-1111)))
+ (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *2 (-542 *3)) (-5 *1 (-521 *6 *3 *7)) (-4 *7 (-1018))))
+ ((*1 *2 *3 *4 *4 *4 *3 *5)
+ (-12 (-5 *4 (-564 *3)) (-5 *5 (-385 (-1085 *3)))
+ (-4 *3 (-13 (-408 *6) (-27) (-1111)))
+ (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *2 (-542 *3)) (-5 *1 (-521 *6 *3 *7)) (-4 *7 (-1018)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-429)) (-4 *4 (-788)) (-4 *5 (-734))
+ (-5 *2 (-108)) (-5 *1 (-918 *3 *4 *5 *6))
+ (-4 *6 (-882 *3 *5 *4))))
((*1 *2 *1)
- (-12 (-5 *2 (-1182 *3 *4)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-786))
- (-4 *4 (-158))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-607 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158))
- (-5 *1 (-1187 *3 *4))))
- ((*1 *1 *2) (-12 (-5 *1 (-1190 *3 *2)) (-4 *3 (-973)) (-4 *2 (-782)))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-1054 *3 *4)) (-4 *3 (-13 (-1018) (-33)))
+ (-4 *4 (-13 (-1018) (-33))))))
+(((*1 *2 *1) (-12 (-5 *2 (-763)) (-5 *1 (-762)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 (-712) *2)) (-5 *4 (-712)) (-4 *2 (-1018))
+ (-5 *1 (-621 *2))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1 *3 (-712) *3)) (-4 *3 (-1018)) (-5 *1 (-624 *3)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-1055 *2 *3)) (-4 *2 (-13 (-1018) (-33)))
+ (-4 *3 (-13 (-1018) (-33))))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-989 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *2 (-788))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1011 *3)) (-5 *1 (-1009 *3)) (-4 *3 (-1123))))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1123))))
- ((*1 *1 *2) (-12 (-5 *1 (-1136 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-108)) (-5 *1 (-110)))))
-(((*1 *2 *3)
- (-12
- (-5 *2
- (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))))
- (-5 *1 (-947 *3)) (-4 *3 (-1145 (-523)))))
- ((*1 *2 *3 *4)
- (-12
- (-5 *2
- (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))))
- (-5 *1 (-947 *3)) (-4 *3 (-1145 (-523)))
- (-5 *4 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))))
- ((*1 *2 *3 *4)
- (-12
- (-5 *2
- (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))))
- (-5 *1 (-947 *3)) (-4 *3 (-1145 (-523))) (-5 *4 (-383 (-523)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-383 (-523)))
- (-5 *2 (-589 (-2 (|:| -2428 *5) (|:| -2438 *5)))) (-5 *1 (-947 *3))
- (-4 *3 (-1145 (-523))) (-5 *4 (-2 (|:| -2428 *5) (|:| -2438 *5)))))
+ (-12 (-5 *2 (-712)) (-5 *1 (-130 *3 *4 *5)) (-14 *3 (-525))
+ (-14 *4 *2) (-4 *5 (-160))))
+ ((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-854)) (-5 *1 (-153 *3 *4))
+ (-4 *3 (-154 *4))))
+ ((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-854))))
+ ((*1 *2)
+ (-12 (-4 *1 (-348 *3 *4)) (-4 *3 (-160)) (-4 *4 (-1147 *3))
+ (-5 *2 (-854))))
((*1 *2 *3)
- (-12
- (-5 *2
- (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))))
- (-5 *1 (-948 *3)) (-4 *3 (-1145 (-383 (-523))))))
+ (-12 (-4 *4 (-341)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4))
+ (-5 *2 (-712)) (-5 *1 (-492 *4 *5 *6 *3)) (-4 *3 (-629 *4 *5 *6))))
((*1 *2 *3 *4)
- (-12
- (-5 *2
- (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))))
- (-5 *1 (-948 *3)) (-4 *3 (-1145 (-383 (-523))))
- (-5 *4 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))))
+ (-12 (-5 *3 (-631 *5)) (-5 *4 (-1171 *5)) (-4 *5 (-341))
+ (-5 *2 (-712)) (-5 *1 (-612 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-383 (-523)))
- (-5 *2 (-589 (-2 (|:| -2428 *4) (|:| -2438 *4)))) (-5 *1 (-948 *3))
- (-4 *3 (-1145 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-383 (-523)))
- (-5 *2 (-589 (-2 (|:| -2428 *5) (|:| -2438 *5)))) (-5 *1 (-948 *3))
- (-4 *3 (-1145 *5)) (-5 *4 (-2 (|:| -2428 *5) (|:| -2438 *5))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *1)
- (-12
- (-5 *2
- (-589
- (-589
- (-3 (|:| -1522 (-1087))
- (|:| |bounds| (-589 (-3 (|:| S (-1087)) (|:| P (-883 (-523))))))))))
- (-5 *1 (-1091)))))
-(((*1 *2 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *4 *4
- *4 *6 *4)
- (-12 (-5 *4 (-523)) (-5 *5 (-629 (-203))) (-5 *6 (-617 (-203)))
- (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-690)))))
+ (-12 (-4 *5 (-341)) (-4 *6 (-13 (-351 *5) (-10 -7 (-6 -4251))))
+ (-4 *4 (-13 (-351 *5) (-10 -7 (-6 -4251)))) (-5 *2 (-712))
+ (-5 *1 (-613 *5 *6 *4 *3)) (-4 *3 (-629 *5 *6 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-4 *3 (-517)) (-5 *2 (-712))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *4 (-160)) (-4 *5 (-351 *4))
+ (-4 *6 (-351 *4)) (-5 *2 (-712)) (-5 *1 (-630 *4 *5 *6 *3))
+ (-4 *3 (-629 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975))
+ (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-4 *5 (-517))
+ (-5 *2 (-712)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 *8)) (-4 *8 (-880 *5 *7 *6))
- (-4 *5 (-13 (-284) (-136))) (-4 *6 (-13 (-786) (-564 (-1087))))
- (-4 *7 (-732))
+ (-12 (-5 *3 (-631 (-157 (-385 (-525)))))
(-5 *2
- (-589
- (-2 (|:| -2262 (-710))
- (|:| |eqns|
- (-589
- (-2 (|:| |det| *8) (|:| |rows| (-589 (-523)))
- (|:| |cols| (-589 (-523))))))
- (|:| |fgb| (-589 *8)))))
- (-5 *1 (-855 *5 *6 *7 *8)) (-5 *4 (-710)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-325)) (-5 *2 (-394 (-1083 (-1083 *4))))
- (-5 *1 (-1122 *4)) (-5 *3 (-1083 (-1083 *4))))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-370))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1104)))))
-(((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 (-1087))) (-4 *4 (-1016))
- (-4 *5 (-13 (-973) (-817 *4) (-786) (-564 (-823 *4))))
- (-5 *1 (-53 *4 *5 *2))
- (-4 *2 (-13 (-406 *5) (-817 *4) (-564 (-823 *4)))))))
-(((*1 *2 *1) (-12 (-5 *1 (-159 *2)) (-4 *2 (-284))))
- ((*1 *2 *1) (-12 (-5 *1 (-845 *2)) (-4 *2 (-284))))
- ((*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)) (-4 *2 (-284))))
- ((*1 *2 *1) (-12 (-4 *1 (-982)) (-5 *2 (-523)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1087)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1123)) (-5 *1 (-804 *3 *2)) (-4 *3 (-1123))))
- ((*1 *2 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-339)) (-5 *1 (-262 *3 *2)) (-4 *2 (-1160 *3)))))
+ (-591
+ (-2 (|:| |outval| (-157 *4)) (|:| |outmult| (-525))
+ (|:| |outvect| (-591 (-631 (-157 *4)))))))
+ (-5 *1 (-706 *4)) (-4 *4 (-13 (-341) (-786))))))
+(((*1 *1 *2 *1 *1) (-12 (-5 *2 (-1088)) (-5 *1 (-308))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-1088)) (-5 *1 (-308)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 *4)) (-4 *4 (-339)) (-4 *2 (-1145 *4))
- (-5 *1 (-853 *4 *2)))))
-(((*1 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204))))
- ((*1 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *1 *1) (-4 *1 (-1051))))
+ (-12 (-5 *3 (-712)) (-5 *2 (-1171 (-591 (-525)))) (-5 *1 (-456))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1125)) (-5 *1 (-555 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1125)) (-5 *1 (-1070 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1125)) (-5 *1 (-1070 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-1092))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-1176)) (-5 *1 (-1092))))
+ ((*1 *2 *3 *1) (-12 (-5 *3 (-1089)) (-5 *2 (-1176)) (-5 *1 (-1092)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-631 (-525))) (-5 *3 (-591 (-525))) (-5 *1 (-1028)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-383 (-523))) (-5 *1 (-295 *3 *4 *5))
- (-4 *3 (-13 (-339) (-786))) (-14 *4 (-1087)) (-14 *5 *3))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-629 *5))) (-5 *4 (-1169 *5)) (-4 *5 (-284))
- (-4 *5 (-973)) (-5 *2 (-629 *5)) (-5 *1 (-956 *5)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *3 *3 *5 *6 *3 *6 *6 *5 *6 *6 *6 *6
- *5 *3 *3 *3 *3 *3 *6 *6 *6 *3 *3 *3 *3 *3 *7 *4 *4 *4 *4 *3 *8
- *9)
- (-12 (-5 *4 (-629 (-203))) (-5 *5 (-108)) (-5 *6 (-203))
- (-5 *7 (-629 (-523)))
- (-5 *8 (-3 (|:| |fn| (-364)) (|:| |fp| (-78 CONFUN))))
- (-5 *9 (-3 (|:| |fn| (-364)) (|:| |fp| (-75 OBJFUN))))
- (-5 *3 (-523)) (-5 *2 (-962)) (-5 *1 (-693)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1011 (-779 (-203)))) (-5 *1 (-282)))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4))
- (-4 *3 (-343 *4))))
- ((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))))
+ (-12 (-4 *1 (-1039 *3 *4 *2 *5)) (-4 *4 (-975)) (-4 *5 (-218 *3 *4))
+ (-4 *2 (-218 *3 *4)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788))))
+ ((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1 (-1040 *4 *3 *5))) (-4 *4 (-37 (-383 (-523))))
- (-4 *4 (-973)) (-4 *3 (-786)) (-5 *1 (-1040 *4 *3 *5))
- (-4 *5 (-880 *4 (-495 *3) *3))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1 (-1118 *4))) (-5 *3 (-1087)) (-5 *1 (-1118 *4))
- (-4 *4 (-37 (-383 (-523)))) (-4 *4 (-973)))))
-(((*1 *1 *1) (-4 *1 (-515))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-786)) (-5 *1 (-122 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1083 *7)) (-4 *7 (-880 *6 *4 *5)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-973)) (-5 *2 (-1083 *6))
- (-5 *1 (-297 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-562 *4)) (-4 *4 (-786)) (-4 *2 (-786))
- (-5 *1 (-561 *2 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-523)) (-5 *2 (-1174)) (-5 *1 (-934)))))
-(((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-1070)) (-5 *4 (-155 (-203))) (-5 *5 (-523))
- (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-350 *3 *4)) (-4 *3 (-786))
- (-4 *4 (-158))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-1188 *3 *4)) (-4 *3 (-786))
- (-4 *4 (-973)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 *3))
- (-5 *1 (-906 *4 *5 *6 *3)) (-4 *3 (-987 *4 *5 *6)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-794) (-794))) (-5 *1 (-110))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-794) (-589 (-794)))) (-5 *1 (-110))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1 (-794) (-589 (-794)))) (-5 *1 (-110))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1174)) (-5 *1 (-193 *3))
- (-4 *3
- (-13 (-786)
- (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 (*2 $))
- (-15 -2149 (*2 $)))))))
- ((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-370))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *2 (-1174)) (-5 *1 (-370))))
- ((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-473))))
- ((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-650))))
- ((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-1104))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *2 (-1174)) (-5 *1 (-1104)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-589 (-883 *4))) (-5 *3 (-589 (-1087))) (-4 *4 (-427))
- (-5 *1 (-849 *4)))))
-(((*1 *2) (-12 (-5 *2 (-589 (-710))) (-5 *1 (-1172))))
- ((*1 *2 *2) (-12 (-5 *2 (-589 (-710))) (-5 *1 (-1172)))))
-(((*1 *2 *2) (-12 (-5 *2 (-292 (-203))) (-5 *1 (-244)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-383 (-523))) (-5 *1 (-951 *3))
- (-4 *3 (-13 (-784) (-339) (-949)))))
- ((*1 *2 *3 *1 *2)
- (-12 (-4 *2 (-13 (-784) (-339))) (-5 *1 (-983 *2 *3))
- (-4 *3 (-1145 *2))))
- ((*1 *2 *3 *1 *2)
- (-12 (-4 *1 (-989 *2 *3)) (-4 *2 (-13 (-784) (-339)))
- (-4 *3 (-1145 *2)))))
-(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1171 *1)) (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129))
+ (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-456)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-525)) (|has| *1 (-6 -4251)) (-4 *1 (-351 *3))
+ (-4 *3 (-1125)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-525)) (-5 *2 (-108)) (-5 *1 (-514)))))
+(((*1 *2 *3 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-693)))))
+(((*1 *2 *1) (-12 (-5 *2 (-765)) (-5 *1 (-766)))))
+(((*1 *2 *3)
(-12
+ (-5 *3
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (-5 *2 (-108)) (-5 *1 (-279)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205))
+ (-5 *2 (-964)) (-5 *1 (-694)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-205))) (-5 *4 (-712)) (-5 *2 (-631 (-205)))
+ (-5 *1 (-284)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-108)) (-5 *3 (-591 (-242))) (-5 *1 (-240))))
+ ((*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-242)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1089)) (-5 *1 (-259))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-3 (-525) (-205) (-1089) (-1072) (-1094)))
+ (-5 *1 (-1094)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-854)) (-5 *3 (-591 (-242))) (-5 *1 (-240))))
+ ((*1 *1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-242)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-631 (-157 (-385 (-525))))) (-5 *2 (-591 (-157 *4)))
+ (-5 *1 (-706 *4)) (-4 *4 (-13 (-341) (-786))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-341))
(-5 *2
- (-2 (|:| |partsol| (-1169 (-383 (-883 *4))))
- (|:| -2922 (-589 (-1169 (-383 (-883 *4)))))))
- (-5 *3 (-589 *7)) (-4 *4 (-13 (-284) (-136)))
- (-4 *7 (-880 *4 *6 *5)) (-4 *5 (-13 (-786) (-564 (-1087))))
- (-4 *6 (-732)) (-5 *1 (-855 *4 *5 *6 *7)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-355)) (-5 *1 (-92))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-355)) (-5 *1 (-92)))))
+ (-2 (|:| A (-631 *5))
+ (|:| |eqs|
+ (-591
+ (-2 (|:| C (-631 *5)) (|:| |g| (-1171 *5)) (|:| -1317 *6)
+ (|:| |rh| *5))))))
+ (-5 *1 (-754 *5 *6)) (-5 *3 (-631 *5)) (-5 *4 (-1171 *5))
+ (-4 *6 (-601 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-341)) (-4 *6 (-601 *5))
+ (-5 *2 (-2 (|:| -4057 (-631 *6)) (|:| |vec| (-1171 *5))))
+ (-5 *1 (-754 *5 *6)) (-5 *3 (-631 *6)) (-5 *4 (-1171 *5)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1161 *2 *3 *4)) (-4 *2 (-973)) (-14 *3 (-1087))
- (-14 *4 *2))))
-(((*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-103))))
- ((*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-196))))
- ((*1 *2 *1) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-460))))
- ((*1 *1 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)) (-4 *2 (-284))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *1) (-12 (-4 *1 (-307 *2)) (-4 *2 (-346)) (-4 *2 (-341))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-854)) (-5 *2 (-1171 *4)) (-5 *1 (-495 *4))
+ (-4 *4 (-327)))))
+(((*1 *2 *1) (-12 (|has| *1 (-6 -4250)) (-4 *1 (-33)) (-5 *2 (-712))))
((*1 *2 *1)
- (-12 (-5 *2 (-383 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523))))
- ((*1 *1 *1) (-4 *1 (-982))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-858)))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4))
- (-4 *3 (-343 *4))))
- ((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))))
-(((*1 *2 *3 *4 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-696)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-523))
- (-5 *1 (-424 *4 *5 *6 *3)) (-4 *3 (-880 *4 *5 *6)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-629 (-523))) (-5 *3 (-589 (-523))) (-5 *1 (-1026)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-302 *3 *4)) (-4 *3 (-973))
- (-4 *4 (-731)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-523)) (-4 *4 (-1145 (-383 *3))) (-5 *2 (-852))
- (-5 *1 (-844 *4 *5)) (-4 *5 (-1145 (-383 *4))))))
-(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (-5 *2 (-589 (-203))) (-5 *1 (-184)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814)) (-5 *3 (-523)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523)))))
- (-4 *5 (-1145 *4))
- (-5 *2 (-589 (-2 (|:| |deg| (-710)) (|:| -1747 *5))))
- (-5 *1 (-748 *4 *5 *3 *6)) (-4 *3 (-599 *5))
- (-4 *6 (-599 (-383 *5))))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-157))))
- ((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-1170))))
- ((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-1171)))))
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-525))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-712)) (-5 *1 (-1192 *3 *4)) (-4 *3 (-975))
+ (-4 *4 (-784)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-159)))))
+(((*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-1072)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-788)) (-5 *1 (-225 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 (-589 *2))) (-5 *4 (-589 *5))
- (-4 *5 (-37 (-383 (-523)))) (-4 *2 (-1160 *5))
- (-5 *1 (-1162 *5 *2)))))
-(((*1 *2)
- (-12 (-4 *3 (-515)) (-5 *2 (-589 *4)) (-5 *1 (-42 *3 *4))
- (-4 *4 (-393 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-699)))))
+ (-12 (-5 *3 (-591 *6)) (-5 *4 (-1089)) (-4 *6 (-408 *5))
+ (-4 *5 (-788)) (-5 *2 (-591 (-564 *6))) (-5 *1 (-534 *5 *6)))))
(((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4248)) (-4 *1 (-140 *2)) (-4 *2 (-1123))
- (-4 *2 (-1016)))))
-(((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-512)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-159 *3)) (-4 *3 (-284)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-115 *2)) (-4 *2 (-1123)))))
-(((*1 *2) (-12 (-4 *1 (-380)) (-5 *2 (-852)))) ((*1 *1) (-4 *1 (-508)))
- ((*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-638))))
- ((*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-638))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-835 *3)) (-4 *3 (-1016)))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-1103 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-1018)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-383 (-883 (-523)))))
- (-5 *2 (-589 (-589 (-271 (-883 *4))))) (-5 *1 (-356 *4))
- (-4 *4 (-13 (-784) (-339)))))
+ (-12 (-5 *3 (-591 (-385 (-885 (-525)))))
+ (-5 *2 (-591 (-591 (-273 (-885 *4))))) (-5 *1 (-358 *4))
+ (-4 *4 (-13 (-786) (-341)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-271 (-383 (-883 (-523))))))
- (-5 *2 (-589 (-589 (-271 (-883 *4))))) (-5 *1 (-356 *4))
- (-4 *4 (-13 (-784) (-339)))))
+ (-12 (-5 *3 (-591 (-273 (-385 (-885 (-525))))))
+ (-5 *2 (-591 (-591 (-273 (-885 *4))))) (-5 *1 (-358 *4))
+ (-4 *4 (-13 (-786) (-341)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-883 (-523)))) (-5 *2 (-589 (-271 (-883 *4))))
- (-5 *1 (-356 *4)) (-4 *4 (-13 (-784) (-339)))))
+ (-12 (-5 *3 (-385 (-885 (-525)))) (-5 *2 (-591 (-273 (-885 *4))))
+ (-5 *1 (-358 *4)) (-4 *4 (-13 (-786) (-341)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-271 (-383 (-883 (-523)))))
- (-5 *2 (-589 (-271 (-883 *4)))) (-5 *1 (-356 *4))
- (-4 *4 (-13 (-784) (-339)))))
+ (-12 (-5 *3 (-273 (-385 (-885 (-525)))))
+ (-5 *2 (-591 (-273 (-885 *4)))) (-5 *1 (-358 *4))
+ (-4 *4 (-13 (-786) (-341)))))
((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1087))
- (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
- (-4 *4 (-13 (-29 *6) (-1109) (-889)))
- (-5 *2 (-2 (|:| |particular| *4) (|:| -2922 (-589 *4))))
- (-5 *1 (-595 *6 *4 *3)) (-4 *3 (-599 *4))))
+ (|partial| -12 (-5 *5 (-1089))
+ (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
+ (-4 *4 (-13 (-29 *6) (-1111) (-891)))
+ (-5 *2 (-2 (|:| |particular| *4) (|:| -4003 (-591 *4))))
+ (-5 *1 (-597 *6 *4 *3)) (-4 *3 (-601 *4))))
((*1 *2 *3 *2 *4 *2 *5)
- (|partial| -12 (-5 *4 (-1087)) (-5 *5 (-589 *2))
- (-4 *2 (-13 (-29 *6) (-1109) (-889)))
- (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
- (-5 *1 (-595 *6 *2 *3)) (-4 *3 (-599 *2))))
+ (|partial| -12 (-5 *4 (-1089)) (-5 *5 (-591 *2))
+ (-4 *2 (-13 (-29 *6) (-1111) (-891)))
+ (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
+ (-5 *1 (-597 *6 *2 *3)) (-4 *3 (-601 *2))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 *5)) (-4 *5 (-339))
+ (-12 (-5 *3 (-631 *5)) (-4 *5 (-341))
(-5 *2
- (-2 (|:| |particular| (-3 (-1169 *5) "failed"))
- (|:| -2922 (-589 (-1169 *5)))))
- (-5 *1 (-610 *5)) (-5 *4 (-1169 *5))))
+ (-2 (|:| |particular| (-3 (-1171 *5) "failed"))
+ (|:| -4003 (-591 (-1171 *5)))))
+ (-5 *1 (-612 *5)) (-5 *4 (-1171 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-589 *5))) (-4 *5 (-339))
+ (-12 (-5 *3 (-591 (-591 *5))) (-4 *5 (-341))
(-5 *2
- (-2 (|:| |particular| (-3 (-1169 *5) "failed"))
- (|:| -2922 (-589 (-1169 *5)))))
- (-5 *1 (-610 *5)) (-5 *4 (-1169 *5))))
+ (-2 (|:| |particular| (-3 (-1171 *5) "failed"))
+ (|:| -4003 (-591 (-1171 *5)))))
+ (-5 *1 (-612 *5)) (-5 *4 (-1171 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 *5)) (-4 *5 (-339))
+ (-12 (-5 *3 (-631 *5)) (-4 *5 (-341))
(-5 *2
- (-589
- (-2 (|:| |particular| (-3 (-1169 *5) "failed"))
- (|:| -2922 (-589 (-1169 *5))))))
- (-5 *1 (-610 *5)) (-5 *4 (-589 (-1169 *5)))))
+ (-591
+ (-2 (|:| |particular| (-3 (-1171 *5) "failed"))
+ (|:| -4003 (-591 (-1171 *5))))))
+ (-5 *1 (-612 *5)) (-5 *4 (-591 (-1171 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-589 *5))) (-4 *5 (-339))
+ (-12 (-5 *3 (-591 (-591 *5))) (-4 *5 (-341))
(-5 *2
- (-589
- (-2 (|:| |particular| (-3 (-1169 *5) "failed"))
- (|:| -2922 (-589 (-1169 *5))))))
- (-5 *1 (-610 *5)) (-5 *4 (-589 (-1169 *5)))))
+ (-591
+ (-2 (|:| |particular| (-3 (-1171 *5) "failed"))
+ (|:| -4003 (-591 (-1171 *5))))))
+ (-5 *1 (-612 *5)) (-5 *4 (-591 (-1171 *5)))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-339)) (-4 *6 (-13 (-349 *5) (-10 -7 (-6 -4249))))
- (-4 *4 (-13 (-349 *5) (-10 -7 (-6 -4249))))
+ (-12 (-4 *5 (-341)) (-4 *6 (-13 (-351 *5) (-10 -7 (-6 -4251))))
+ (-4 *4 (-13 (-351 *5) (-10 -7 (-6 -4251))))
(-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4))))
- (-5 *1 (-611 *5 *6 *4 *3)) (-4 *3 (-627 *5 *6 *4))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4))))
+ (-5 *1 (-613 *5 *6 *4 *3)) (-4 *3 (-629 *5 *6 *4))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-339)) (-4 *6 (-13 (-349 *5) (-10 -7 (-6 -4249))))
- (-4 *7 (-13 (-349 *5) (-10 -7 (-6 -4249))))
+ (-12 (-4 *5 (-341)) (-4 *6 (-13 (-351 *5) (-10 -7 (-6 -4251))))
+ (-4 *7 (-13 (-351 *5) (-10 -7 (-6 -4251))))
(-5 *2
- (-589
- (-2 (|:| |particular| (-3 *7 "failed")) (|:| -2922 (-589 *7)))))
- (-5 *1 (-611 *5 *6 *7 *3)) (-5 *4 (-589 *7))
- (-4 *3 (-627 *5 *6 *7))))
+ (-591
+ (-2 (|:| |particular| (-3 *7 "failed")) (|:| -4003 (-591 *7)))))
+ (-5 *1 (-613 *5 *6 *7 *3)) (-5 *4 (-591 *7))
+ (-4 *3 (-629 *5 *6 *7))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-589 (-1087))) (-4 *5 (-515))
- (-5 *2 (-589 (-589 (-271 (-383 (-883 *5)))))) (-5 *1 (-709 *5))))
+ (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-591 (-1089))) (-4 *5 (-517))
+ (-5 *2 (-591 (-591 (-273 (-385 (-885 *5)))))) (-5 *1 (-711 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-589 (-883 *4))) (-4 *4 (-515))
- (-5 *2 (-589 (-589 (-271 (-383 (-883 *4)))))) (-5 *1 (-709 *4))))
+ (-12 (-5 *3 (-591 (-885 *4))) (-4 *4 (-517))
+ (-5 *2 (-591 (-591 (-273 (-385 (-885 *4)))))) (-5 *1 (-711 *4))))
((*1 *2 *2 *2 *3 *4)
- (|partial| -12 (-5 *3 (-110)) (-5 *4 (-1087))
- (-4 *5 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
- (-5 *1 (-711 *5 *2)) (-4 *2 (-13 (-29 *5) (-1109) (-889)))))
+ (|partial| -12 (-5 *3 (-110)) (-5 *4 (-1089))
+ (-4 *5 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
+ (-5 *1 (-713 *5 *2)) (-4 *2 (-13 (-29 *5) (-1111) (-891)))))
((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-629 *7)) (-5 *5 (-1087))
- (-4 *7 (-13 (-29 *6) (-1109) (-889)))
- (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
+ (|partial| -12 (-5 *3 (-631 *7)) (-5 *5 (-1089))
+ (-4 *7 (-13 (-29 *6) (-1111) (-891)))
+ (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
(-5 *2
- (-2 (|:| |particular| (-1169 *7)) (|:| -2922 (-589 (-1169 *7)))))
- (-5 *1 (-741 *6 *7)) (-5 *4 (-1169 *7))))
+ (-2 (|:| |particular| (-1171 *7)) (|:| -4003 (-591 (-1171 *7)))))
+ (-5 *1 (-743 *6 *7)) (-5 *4 (-1171 *7))))
((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-629 *6)) (-5 *4 (-1087))
- (-4 *6 (-13 (-29 *5) (-1109) (-889)))
- (-4 *5 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
- (-5 *2 (-589 (-1169 *6))) (-5 *1 (-741 *5 *6))))
+ (|partial| -12 (-5 *3 (-631 *6)) (-5 *4 (-1089))
+ (-4 *6 (-13 (-29 *5) (-1111) (-891)))
+ (-4 *5 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
+ (-5 *2 (-591 (-1171 *6))) (-5 *1 (-743 *5 *6))))
((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-589 (-271 *7))) (-5 *4 (-589 (-110)))
- (-5 *5 (-1087)) (-4 *7 (-13 (-29 *6) (-1109) (-889)))
- (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
+ (|partial| -12 (-5 *3 (-591 (-273 *7))) (-5 *4 (-591 (-110)))
+ (-5 *5 (-1089)) (-4 *7 (-13 (-29 *6) (-1111) (-891)))
+ (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
(-5 *2
- (-2 (|:| |particular| (-1169 *7)) (|:| -2922 (-589 (-1169 *7)))))
- (-5 *1 (-741 *6 *7))))
+ (-2 (|:| |particular| (-1171 *7)) (|:| -4003 (-591 (-1171 *7)))))
+ (-5 *1 (-743 *6 *7))))
((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-589 *7)) (-5 *4 (-589 (-110)))
- (-5 *5 (-1087)) (-4 *7 (-13 (-29 *6) (-1109) (-889)))
- (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
+ (|partial| -12 (-5 *3 (-591 *7)) (-5 *4 (-591 (-110)))
+ (-5 *5 (-1089)) (-4 *7 (-13 (-29 *6) (-1111) (-891)))
+ (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
(-5 *2
- (-2 (|:| |particular| (-1169 *7)) (|:| -2922 (-589 (-1169 *7)))))
- (-5 *1 (-741 *6 *7))))
+ (-2 (|:| |particular| (-1171 *7)) (|:| -4003 (-591 (-1171 *7)))))
+ (-5 *1 (-743 *6 *7))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-271 *7)) (-5 *4 (-110)) (-5 *5 (-1087))
- (-4 *7 (-13 (-29 *6) (-1109) (-889)))
- (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
+ (-12 (-5 *3 (-273 *7)) (-5 *4 (-110)) (-5 *5 (-1089))
+ (-4 *7 (-13 (-29 *6) (-1111) (-891)))
+ (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
(-5 *2
- (-3 (-2 (|:| |particular| *7) (|:| -2922 (-589 *7))) *7 "failed"))
- (-5 *1 (-741 *6 *7))))
+ (-3 (-2 (|:| |particular| *7) (|:| -4003 (-591 *7))) *7 "failed"))
+ (-5 *1 (-743 *6 *7))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-110)) (-5 *5 (-1087))
- (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
+ (-12 (-5 *4 (-110)) (-5 *5 (-1089))
+ (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
(-5 *2
- (-3 (-2 (|:| |particular| *3) (|:| -2922 (-589 *3))) *3 "failed"))
- (-5 *1 (-741 *6 *3)) (-4 *3 (-13 (-29 *6) (-1109) (-889)))))
+ (-3 (-2 (|:| |particular| *3) (|:| -4003 (-591 *3))) *3 "failed"))
+ (-5 *1 (-743 *6 *3)) (-4 *3 (-13 (-29 *6) (-1111) (-891)))))
((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *3 (-271 *2)) (-5 *4 (-110)) (-5 *5 (-589 *2))
- (-4 *2 (-13 (-29 *6) (-1109) (-889))) (-5 *1 (-741 *6 *2))
- (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))))
+ (|partial| -12 (-5 *3 (-273 *2)) (-5 *4 (-110)) (-5 *5 (-591 *2))
+ (-4 *2 (-13 (-29 *6) (-1111) (-891))) (-5 *1 (-743 *6 *2))
+ (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))))
((*1 *2 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-110)) (-5 *4 (-271 *2)) (-5 *5 (-589 *2))
- (-4 *2 (-13 (-29 *6) (-1109) (-889)))
- (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
- (-5 *1 (-741 *6 *2))))
- ((*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-962)) (-5 *1 (-744))))
+ (|partial| -12 (-5 *3 (-110)) (-5 *4 (-273 *2)) (-5 *5 (-591 *2))
+ (-4 *2 (-13 (-29 *6) (-1111) (-891)))
+ (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
+ (-5 *1 (-743 *6 *2))))
+ ((*1 *2 *3) (-12 (-5 *3 (-749)) (-5 *2 (-964)) (-5 *1 (-746))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-747)) (-5 *4 (-985)) (-5 *2 (-962)) (-5 *1 (-744))))
+ (-12 (-5 *3 (-749)) (-5 *4 (-987)) (-5 *2 (-964)) (-5 *1 (-746))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1169 (-292 (-355)))) (-5 *4 (-355)) (-5 *5 (-589 *4))
- (-5 *2 (-962)) (-5 *1 (-744))))
+ (-12 (-5 *3 (-1171 (-294 (-357)))) (-5 *4 (-357)) (-5 *5 (-591 *4))
+ (-5 *2 (-964)) (-5 *1 (-746))))
((*1 *2 *3 *4 *4 *5 *4)
- (-12 (-5 *3 (-1169 (-292 (-355)))) (-5 *4 (-355)) (-5 *5 (-589 *4))
- (-5 *2 (-962)) (-5 *1 (-744))))
+ (-12 (-5 *3 (-1171 (-294 (-357)))) (-5 *4 (-357)) (-5 *5 (-591 *4))
+ (-5 *2 (-964)) (-5 *1 (-746))))
((*1 *2 *3 *4 *4 *5 *6 *4)
- (-12 (-5 *3 (-1169 (-292 *4))) (-5 *5 (-589 (-355)))
- (-5 *6 (-292 (-355))) (-5 *4 (-355)) (-5 *2 (-962)) (-5 *1 (-744))))
+ (-12 (-5 *3 (-1171 (-294 *4))) (-5 *5 (-591 (-357)))
+ (-5 *6 (-294 (-357))) (-5 *4 (-357)) (-5 *2 (-964)) (-5 *1 (-746))))
((*1 *2 *3 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1169 (-292 (-355)))) (-5 *4 (-355)) (-5 *5 (-589 *4))
- (-5 *2 (-962)) (-5 *1 (-744))))
+ (-12 (-5 *3 (-1171 (-294 (-357)))) (-5 *4 (-357)) (-5 *5 (-591 *4))
+ (-5 *2 (-964)) (-5 *1 (-746))))
((*1 *2 *3 *4 *4 *5 *6 *5 *4)
- (-12 (-5 *3 (-1169 (-292 *4))) (-5 *5 (-589 (-355)))
- (-5 *6 (-292 (-355))) (-5 *4 (-355)) (-5 *2 (-962)) (-5 *1 (-744))))
+ (-12 (-5 *3 (-1171 (-294 *4))) (-5 *5 (-591 (-357)))
+ (-5 *6 (-294 (-357))) (-5 *4 (-357)) (-5 *2 (-964)) (-5 *1 (-746))))
((*1 *2 *3 *4 *4 *5 *6 *5 *4 *4)
- (-12 (-5 *3 (-1169 (-292 *4))) (-5 *5 (-589 (-355)))
- (-5 *6 (-292 (-355))) (-5 *4 (-355)) (-5 *2 (-962)) (-5 *1 (-744))))
+ (-12 (-5 *3 (-1171 (-294 *4))) (-5 *5 (-591 (-357)))
+ (-5 *6 (-294 (-357))) (-5 *4 (-357)) (-5 *2 (-964)) (-5 *1 (-746))))
((*1 *2 *3 *4 *5)
(|partial| -12
(-5 *5
(-1
- (-3 (-2 (|:| |particular| *6) (|:| -2922 (-589 *6))) "failed")
+ (-3 (-2 (|:| |particular| *6) (|:| -4003 (-591 *6))) "failed")
*7 *6))
- (-4 *6 (-339)) (-4 *7 (-599 *6))
- (-5 *2 (-2 (|:| |particular| (-1169 *6)) (|:| -2922 (-629 *6))))
- (-5 *1 (-752 *6 *7)) (-5 *3 (-629 *6)) (-5 *4 (-1169 *6))))
- ((*1 *2 *3) (-12 (-5 *3 (-829)) (-5 *2 (-962)) (-5 *1 (-828))))
+ (-4 *6 (-341)) (-4 *7 (-601 *6))
+ (-5 *2 (-2 (|:| |particular| (-1171 *6)) (|:| -4003 (-631 *6))))
+ (-5 *1 (-754 *6 *7)) (-5 *3 (-631 *6)) (-5 *4 (-1171 *6))))
+ ((*1 *2 *3) (-12 (-5 *3 (-831)) (-5 *2 (-964)) (-5 *1 (-830))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-829)) (-5 *4 (-985)) (-5 *2 (-962)) (-5 *1 (-828))))
+ (-12 (-5 *3 (-831)) (-5 *4 (-987)) (-5 *2 (-964)) (-5 *1 (-830))))
((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8)
- (-12 (-5 *4 (-710)) (-5 *6 (-589 (-589 (-292 *3)))) (-5 *7 (-1070))
- (-5 *8 (-203)) (-5 *5 (-589 (-292 (-355)))) (-5 *3 (-355))
- (-5 *2 (-962)) (-5 *1 (-828))))
+ (-12 (-5 *4 (-712)) (-5 *6 (-591 (-591 (-294 *3)))) (-5 *7 (-1072))
+ (-5 *8 (-205)) (-5 *5 (-591 (-294 (-357)))) (-5 *3 (-357))
+ (-5 *2 (-964)) (-5 *1 (-830))))
((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7)
- (-12 (-5 *4 (-710)) (-5 *6 (-589 (-589 (-292 *3)))) (-5 *7 (-1070))
- (-5 *5 (-589 (-292 (-355)))) (-5 *3 (-355)) (-5 *2 (-962))
- (-5 *1 (-828))))
+ (-12 (-5 *4 (-712)) (-5 *6 (-591 (-591 (-294 *3)))) (-5 *7 (-1072))
+ (-5 *5 (-591 (-294 (-357)))) (-5 *3 (-357)) (-5 *2 (-964))
+ (-5 *1 (-830))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-883 (-383 (-523)))) (-5 *2 (-589 (-355)))
- (-5 *1 (-950)) (-5 *4 (-355))))
+ (-12 (-5 *3 (-885 (-385 (-525)))) (-5 *2 (-591 (-357)))
+ (-5 *1 (-952)) (-5 *4 (-357))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-883 (-523))) (-5 *2 (-589 (-355))) (-5 *1 (-950))
- (-5 *4 (-355))))
+ (-12 (-5 *3 (-885 (-525))) (-5 *2 (-591 (-357))) (-5 *1 (-952))
+ (-5 *4 (-357))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523)))))))
- (-5 *2 (-589 *4)) (-5 *1 (-1042 *3 *4)) (-4 *3 (-1145 *4))))
+ (-12 (-4 *4 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525)))))))
+ (-5 *2 (-591 *4)) (-5 *1 (-1044 *3 *4)) (-4 *3 (-1147 *4))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
- (-5 *2 (-589 (-271 (-292 *4)))) (-5 *1 (-1045 *4))
- (-5 *3 (-292 *4))))
+ (-12 (-4 *4 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
+ (-5 *2 (-591 (-273 (-294 *4)))) (-5 *1 (-1047 *4))
+ (-5 *3 (-294 *4))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
- (-5 *2 (-589 (-271 (-292 *4)))) (-5 *1 (-1045 *4))
- (-5 *3 (-271 (-292 *4)))))
+ (-12 (-4 *4 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
+ (-5 *2 (-591 (-273 (-294 *4)))) (-5 *1 (-1047 *4))
+ (-5 *3 (-273 (-294 *4)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087))
- (-4 *5 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
- (-5 *2 (-589 (-271 (-292 *5)))) (-5 *1 (-1045 *5))
- (-5 *3 (-271 (-292 *5)))))
+ (-12 (-5 *4 (-1089))
+ (-4 *5 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
+ (-5 *2 (-591 (-273 (-294 *5)))) (-5 *1 (-1047 *5))
+ (-5 *3 (-273 (-294 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087))
- (-4 *5 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
- (-5 *2 (-589 (-271 (-292 *5)))) (-5 *1 (-1045 *5))
- (-5 *3 (-292 *5))))
+ (-12 (-5 *4 (-1089))
+ (-4 *5 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
+ (-5 *2 (-591 (-273 (-294 *5)))) (-5 *1 (-1047 *5))
+ (-5 *3 (-294 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-1087)))
- (-4 *5 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
- (-5 *2 (-589 (-589 (-271 (-292 *5))))) (-5 *1 (-1045 *5))
- (-5 *3 (-589 (-271 (-292 *5))))))
+ (-12 (-5 *4 (-591 (-1089)))
+ (-4 *5 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
+ (-5 *2 (-591 (-591 (-273 (-294 *5))))) (-5 *1 (-1047 *5))
+ (-5 *3 (-591 (-273 (-294 *5))))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-383 (-883 *5)))) (-5 *4 (-589 (-1087)))
- (-4 *5 (-515)) (-5 *2 (-589 (-589 (-271 (-383 (-883 *5))))))
- (-5 *1 (-1093 *5))))
+ (-12 (-5 *3 (-591 (-385 (-885 *5)))) (-5 *4 (-591 (-1089)))
+ (-4 *5 (-517)) (-5 *2 (-591 (-591 (-273 (-385 (-885 *5))))))
+ (-5 *1 (-1095 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-1087))) (-4 *5 (-515))
- (-5 *2 (-589 (-589 (-271 (-383 (-883 *5)))))) (-5 *1 (-1093 *5))
- (-5 *3 (-589 (-271 (-383 (-883 *5)))))))
+ (-12 (-5 *4 (-591 (-1089))) (-4 *5 (-517))
+ (-5 *2 (-591 (-591 (-273 (-385 (-885 *5)))))) (-5 *1 (-1095 *5))
+ (-5 *3 (-591 (-273 (-385 (-885 *5)))))))
((*1 *2 *3)
- (-12 (-5 *3 (-589 (-383 (-883 *4)))) (-4 *4 (-515))
- (-5 *2 (-589 (-589 (-271 (-383 (-883 *4)))))) (-5 *1 (-1093 *4))))
+ (-12 (-5 *3 (-591 (-385 (-885 *4)))) (-4 *4 (-517))
+ (-5 *2 (-591 (-591 (-273 (-385 (-885 *4)))))) (-5 *1 (-1095 *4))))
((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-589 (-589 (-271 (-383 (-883 *4))))))
- (-5 *1 (-1093 *4)) (-5 *3 (-589 (-271 (-383 (-883 *4)))))))
+ (-12 (-4 *4 (-517)) (-5 *2 (-591 (-591 (-273 (-385 (-885 *4))))))
+ (-5 *1 (-1095 *4)) (-5 *3 (-591 (-273 (-385 (-885 *4)))))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087)) (-4 *5 (-515))
- (-5 *2 (-589 (-271 (-383 (-883 *5))))) (-5 *1 (-1093 *5))
- (-5 *3 (-383 (-883 *5)))))
+ (-12 (-5 *4 (-1089)) (-4 *5 (-517))
+ (-5 *2 (-591 (-273 (-385 (-885 *5))))) (-5 *1 (-1095 *5))
+ (-5 *3 (-385 (-885 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087)) (-4 *5 (-515))
- (-5 *2 (-589 (-271 (-383 (-883 *5))))) (-5 *1 (-1093 *5))
- (-5 *3 (-271 (-383 (-883 *5))))))
+ (-12 (-5 *4 (-1089)) (-4 *5 (-517))
+ (-5 *2 (-591 (-273 (-385 (-885 *5))))) (-5 *1 (-1095 *5))
+ (-5 *3 (-273 (-385 (-885 *5))))))
((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-589 (-271 (-383 (-883 *4)))))
- (-5 *1 (-1093 *4)) (-5 *3 (-383 (-883 *4)))))
+ (-12 (-4 *4 (-517)) (-5 *2 (-591 (-273 (-385 (-885 *4)))))
+ (-5 *1 (-1095 *4)) (-5 *3 (-385 (-885 *4)))))
((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-589 (-271 (-383 (-883 *4)))))
- (-5 *1 (-1093 *4)) (-5 *3 (-271 (-383 (-883 *4)))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-515))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2210 *4)))
- (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2210 *4)))
- (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-589 (-1083 *5))) (-5 *3 (-1083 *5))
- (-4 *5 (-152 *4)) (-4 *4 (-508)) (-5 *1 (-138 *4 *5))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-589 *3)) (-4 *3 (-1145 *5))
- (-4 *5 (-1145 *4)) (-4 *4 (-325)) (-5 *1 (-334 *4 *5 *3))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-589 (-1083 (-523)))) (-5 *3 (-1083 (-523)))
- (-5 *1 (-531))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-589 (-1083 *1))) (-5 *3 (-1083 *1))
- (-4 *1 (-840)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-512)))))
-(((*1 *2 *1) (-12 (-5 *1 (-845 *2)) (-4 *2 (-284)))))
-(((*1 *1 *2 *2 *1) (-12 (-5 *1 (-590 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-339)) (-5 *1 (-706 *2 *3)) (-4 *2 (-648 *3))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))))
+ (-12 (-4 *4 (-517)) (-5 *2 (-591 (-273 (-385 (-885 *4)))))
+ (-5 *1 (-1095 *4)) (-5 *3 (-273 (-385 (-885 *4)))))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-1011 *3)) (-4 *3 (-880 *7 *6 *4)) (-4 *6 (-732))
- (-4 *4 (-786)) (-4 *7 (-515))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-523))))
- (-5 *1 (-547 *6 *4 *7 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-732)) (-4 *4 (-786)) (-4 *6 (-515))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-523))))
- (-5 *1 (-547 *5 *4 *6 *3)) (-4 *3 (-880 *6 *5 *4))))
- ((*1 *1 *1 *1 *1) (-5 *1 (-794))) ((*1 *1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *1) (-5 *1 (-794)))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087))
- (-4 *4 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-1079 *4 *2)) (-4 *2 (-13 (-406 *4) (-147) (-27) (-1109)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1009 *2)) (-4 *2 (-13 (-406 *4) (-147) (-27) (-1109)))
- (-4 *4 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-1079 *4 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087)) (-4 *5 (-13 (-515) (-786) (-964 (-523))))
- (-5 *2 (-383 (-883 *5))) (-5 *1 (-1080 *5)) (-5 *3 (-883 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087)) (-4 *5 (-13 (-515) (-786) (-964 (-523))))
- (-5 *2 (-3 (-383 (-883 *5)) (-292 *5))) (-5 *1 (-1080 *5))
- (-5 *3 (-383 (-883 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1009 (-883 *5))) (-5 *3 (-883 *5))
- (-4 *5 (-13 (-515) (-786) (-964 (-523)))) (-5 *2 (-383 *3))
- (-5 *1 (-1080 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1009 (-383 (-883 *5)))) (-5 *3 (-383 (-883 *5)))
- (-4 *5 (-13 (-515) (-786) (-964 (-523)))) (-5 *2 (-3 *3 (-292 *5)))
- (-5 *1 (-1080 *5)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-325)) (-4 *2 (-973)) (-5 *1 (-652 *2 *3))
- (-4 *3 (-1145 *2)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1152 *3 *2)) (-4 *3 (-973)) (-4 *2 (-1129 *3)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-710)) (-4 *6 (-339)) (-5 *4 (-1118 *6))
- (-5 *2 (-1 (-1068 *4) (-1068 *4))) (-5 *1 (-1177 *6))
- (-5 *5 (-1068 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973))
+ (-12 (-5 *4 (-108))
+ (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-4 *3 (-13 (-27) (-1111) (-408 *6) (-10 -8 (-15 -3022 ($ *7)))))
+ (-4 *7 (-786))
+ (-4 *8
+ (-13 (-1149 *3 *7) (-341) (-1111)
+ (-10 -8 (-15 -3266 ($ $)) (-15 -4141 ($ $)))))
(-5 *2
- (-2 (|:| -1961 (-710)) (|:| |curves| (-710))
- (|:| |polygons| (-710)) (|:| |constructs| (-710)))))))
-(((*1 *2 *3 *3 *3 *3)
- (-12 (-4 *4 (-427)) (-4 *3 (-732)) (-4 *5 (-786)) (-5 *2 (-108))
- (-5 *1 (-424 *4 *3 *5 *6)) (-4 *6 (-880 *4 *3 *5)))))
+ (-3 (|:| |%series| *8)
+ (|:| |%problem| (-2 (|:| |func| (-1072)) (|:| |prob| (-1072))))))
+ (-5 *1 (-400 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1072)) (-4 *9 (-914 *8))
+ (-14 *10 (-1089)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-908 *4 *5 *6 *3)) (-4 *3 (-989 *4 *5 *6)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-444))))
+ ((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-444)))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1083 *3)) (-4 *3 (-325)) (-5 *1 (-333 *3)))))
-(((*1 *2 *3) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-520)) (-5 *3 (-523))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1083 (-383 (-523)))) (-5 *1 (-873)) (-5 *3 (-523)))))
+ (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-426 *3 *4 *5 *2)) (-4 *2 (-882 *3 *4 *5)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-205)))))
+(((*1 *2 *1) (-12 (-4 *1 (-345 *2)) (-4 *2 (-160)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-616 *3)) (-4 *3 (-788)) (-4 *1 (-352 *3 *4))
+ (-4 *4 (-160)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-898 *3)) (-4 *3 (-899)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-631 (-294 (-205))))
+ (-5 *2
+ (-2 (|:| |stiffnessFactor| (-357)) (|:| |stabilityFactor| (-357))))
+ (-5 *1 (-187)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-973))
- (-4 *2 (-13 (-380) (-964 *4) (-339) (-1109) (-261)))
- (-5 *1 (-418 *4 *3 *2)) (-4 *3 (-1145 *4)))))
+ (-12 (-4 *4 (-975))
+ (-4 *2 (-13 (-382) (-966 *4) (-341) (-1111) (-263)))
+ (-5 *1 (-420 *4 *3 *2)) (-4 *3 (-1147 *4)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1054 *4 *5)) (-4 *4 (-13 (-1018) (-33)))
+ (-4 *5 (-13 (-1018) (-33))) (-5 *2 (-108)) (-5 *1 (-1055 *4 *5)))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-351 *2)) (-4 *2 (-1125))
+ (-4 *2 (-788))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3 *3)) (|has| *1 (-6 -4251))
+ (-4 *1 (-351 *3)) (-4 *3 (-1125)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-838 *3))) (-4 *3 (-1018)) (-5 *1 (-837 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-806 (-898 *3) (-898 *3))) (-5 *1 (-898 *3))
+ (-4 *3 (-899)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-1 (-355))) (-5 *1 (-966)))))
-(((*1 *1 *1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973))
- (-4 *4 (-732)) (-4 *5 (-786)) (-4 *3 (-515)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1016)) (-4 *5 (-1016))
- (-5 *2 (-1 *5)) (-5 *1 (-623 *4 *5)))))
-(((*1 *1 *1) (-12 (-5 *1 (-618 *2)) (-4 *2 (-786))))
- ((*1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-786))))
- ((*1 *1 *1) (-12 (-5 *1 (-824 *2)) (-4 *2 (-786))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-1117 *2 *3 *4 *5)) (-4 *2 (-515))
- (-4 *3 (-732)) (-4 *4 (-786)) (-4 *5 (-987 *2 *3 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-1157 *3)) (-4 *3 (-1123))))
- ((*1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-136))
- (-4 *3 (-284)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-906 *3 *4 *5 *6)))))
+ (-12 (-4 *4 (-975)) (-4 *2 (-629 *4 *5 *6))
+ (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1147 *4)) (-4 *5 (-351 *4))
+ (-4 *6 (-351 *4)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-591 (-457 *5 *6))) (-5 *4 (-798 *5))
+ (-14 *5 (-591 (-1089))) (-5 *2 (-457 *5 *6)) (-5 *1 (-579 *5 *6))
+ (-4 *6 (-429))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-457 *5 *6))) (-5 *4 (-798 *5))
+ (-14 *5 (-591 (-1089))) (-5 *2 (-457 *5 *6)) (-5 *1 (-579 *5 *6))
+ (-4 *6 (-429)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-589 (-629 (-523))))
- (-5 *1 (-1026)))))
-(((*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7)
- (-12 (-5 *4 (-523)) (-5 *5 (-629 (-203)))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))))
- (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-86 OUTPUT))))
- (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-689)))))
+ (-12 (-5 *3 (-1171 *5)) (-4 *5 (-587 *4)) (-4 *4 (-517))
+ (-5 *2 (-108)) (-5 *1 (-586 *4 *5)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-341)) (-5 *1 (-954 *3 *2)) (-4 *2 (-601 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-341)) (-5 *2 (-2 (|:| -1317 *3) (|:| -4157 (-591 *5))))
+ (-5 *1 (-954 *5 *3)) (-5 *4 (-591 *5)) (-4 *3 (-601 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-631 (-385 (-885 *4)))) (-4 *4 (-429))
+ (-5 *2 (-591 (-3 (-385 (-885 *4)) (-1079 (-1089) (-885 *4)))))
+ (-5 *1 (-271 *4)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-942)) (-5 *2 (-796)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-108)) (-5 *1 (-770)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| |var| (-591 (-1089))) (|:| |pred| (-51))))
+ (-5 *1 (-825 *3)) (-4 *3 (-1018)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-304 *3 *4)) (-4 *3 (-975))
+ (-4 *4 (-733)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-852)) (-4 *5 (-515)) (-5 *2 (-629 *5))
- (-5 *1 (-886 *5 *3)) (-4 *3 (-599 *5)))))
+ (|partial| -12 (-5 *3 (-1171 *4)) (-4 *4 (-587 (-525)))
+ (-5 *2 (-1171 (-385 (-525)))) (-5 *1 (-1196 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-589 (-874 (-203))))) (-5 *2 (-589 (-203)))
- (-5 *1 (-443)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1169 *5)) (-4 *5 (-731)) (-5 *2 (-108))
- (-5 *1 (-781 *4 *5)) (-14 *4 (-710)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814))
- (-5 *3 (-589 (-523)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814))
- (-5 *3 (-589 (-523))))))
-(((*1 *2 *2 *3 *2) (-12 (-5 *2 (-1070)) (-5 *3 (-523)) (-5 *1 (-219))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-589 (-1070))) (-5 *3 (-523)) (-5 *4 (-1070))
- (-5 *1 (-219))))
- ((*1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794))))
- ((*1 *2 *1) (-12 (-4 *1 (-1147 *2 *3)) (-4 *3 (-731)) (-4 *2 (-973)))))
-(((*1 *2 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-694)))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))))
+ (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)) (-5 *3 (-525))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1171 (-3 (-445) "undefined"))) (-5 *1 (-1172)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-854))
+ (-5 *2
+ (-3 (-1085 *4)
+ (-1171 (-591 (-2 (|:| -3024 *4) (|:| -2226 (-1036)))))))
+ (-5 *1 (-324 *4)) (-4 *4 (-327)))))
+(((*1 *2 *1) (-12 (-4 *1 (-345 *2)) (-4 *2 (-160)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-556 *3 *2)) (-4 *3 (-1016)) (-4 *3 (-786))
- (-4 *2 (-1123))))
- ((*1 *2 *1) (-12 (-5 *1 (-618 *2)) (-4 *2 (-786))))
- ((*1 *2 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-786))))
+ (-12 (-4 *1 (-304 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733))
+ (-5 *2 (-712))))
((*1 *2 *1)
- (-12 (-4 *2 (-1123)) (-5 *1 (-804 *2 *3)) (-4 *3 (-1123))))
- ((*1 *2 *1) (-12 (-5 *2 (-614 *3)) (-5 *1 (-824 *3)) (-4 *3 (-786))))
+ (-12 (-4 *1 (-360 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1018))
+ (-5 *2 (-712))))
((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515))
- (-4 *4 (-732)) (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-1157 *3)) (-4 *3 (-1123))))
- ((*1 *2 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *3) (-12 (-5 *2 (-523)) (-5 *1 (-528 *3)) (-4 *3 (-964 *2))))
+ (-12 (-5 *2 (-712)) (-5 *1 (-677 *3 *4)) (-4 *3 (-975))
+ (-4 *4 (-668)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-797))))
+ ((*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1176)) (-5 *1 (-797))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1072)) (-5 *4 (-796)) (-5 *2 (-1176)) (-5 *1 (-797))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-525)) (-5 *2 (-1176)) (-5 *1 (-1070 *4))
+ (-4 *4 (-1018)) (-4 *4 (-1125)))))
+(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1058)) (-5 *3 (-135)) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (-5 *2
+ (-3 (|:| |continuous| "Continuous at the end points")
+ (|:| |lowerSingular|
+ "There is a singularity at the lower end point")
+ (|:| |upperSingular|
+ "There is a singularity at the upper end point")
+ (|:| |bothSingular| "There are singularities at both end points")
+ (|:| |notEvaluated| "End point continuity not yet evaluated")))
+ (-5 *1 (-174)))))
+(((*1 *2 *3 *4 *4 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205))
+ (-5 *2 (-964)) (-5 *1 (-694)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2))
+ (-4 *2 (-408 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-385 (-885 (-157 (-525))))))
+ (-5 *2 (-591 (-591 (-273 (-885 (-157 *4)))))) (-5 *1 (-356 *4))
+ (-4 *4 (-13 (-341) (-786)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-273 (-385 (-885 (-157 (-525)))))))
+ (-5 *2 (-591 (-591 (-273 (-885 (-157 *4)))))) (-5 *1 (-356 *4))
+ (-4 *4 (-13 (-341) (-786)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 (-885 (-157 (-525)))))
+ (-5 *2 (-591 (-273 (-885 (-157 *4))))) (-5 *1 (-356 *4))
+ (-4 *4 (-13 (-341) (-786)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-273 (-385 (-885 (-157 (-525))))))
+ (-5 *2 (-591 (-273 (-885 (-157 *4))))) (-5 *1 (-356 *4))
+ (-4 *4 (-13 (-341) (-786))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1171 *4)) (-4 *4 (-395 *3)) (-4 *3 (-286))
+ (-4 *3 (-517)) (-5 *1 (-42 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-854)) (-4 *4 (-341)) (-5 *2 (-1171 *1))
+ (-4 *1 (-307 *4))))
+ ((*1 *2) (-12 (-4 *3 (-341)) (-5 *2 (-1171 *1)) (-4 *1 (-307 *3))))
+ ((*1 *2)
+ (-12 (-4 *3 (-160)) (-4 *4 (-1147 *3)) (-5 *2 (-1171 *1))
+ (-4 *1 (-387 *3 *4))))
((*1 *2 *1)
- (-12 (-4 *1 (-1019 *3 *4 *2 *5 *6)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *2 (-1016)))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4))
- (-4 *3 (-343 *4))))
- ((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))))
-(((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-1101 *3 *4)) (-4 *3 (-1016))
- (-4 *4 (-1016)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1018 *3)) (-5 *1 (-835 *3)) (-4 *3 (-1016))))
+ (-12 (-4 *3 (-286)) (-4 *4 (-923 *3)) (-4 *5 (-1147 *4))
+ (-5 *2 (-1171 *6)) (-5 *1 (-391 *3 *4 *5 *6))
+ (-4 *6 (-13 (-387 *4 *5) (-966 *4)))))
((*1 *2 *1)
- (-12 (-5 *2 (-1018 *3)) (-5 *1 (-836 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-973))
- (-4 *2 (-13 (-380) (-964 *4) (-339) (-1109) (-261)))
- (-5 *1 (-418 *4 *3 *2)) (-4 *3 (-1145 *4)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203))
- (-5 *2 (-962)) (-5 *1 (-692)))))
+ (-12 (-4 *3 (-286)) (-4 *4 (-923 *3)) (-4 *5 (-1147 *4))
+ (-5 *2 (-1171 *6)) (-5 *1 (-392 *3 *4 *5 *6 *7))
+ (-4 *6 (-387 *4 *5)) (-14 *7 *2)))
+ ((*1 *2) (-12 (-4 *3 (-160)) (-5 *2 (-1171 *1)) (-4 *1 (-395 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-854)) (-5 *2 (-1171 (-1171 *4))) (-5 *1 (-495 *4))
+ (-4 *4 (-327)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-145 *3 *2))
- (-4 *2 (-406 *3))))
+ (-12 (-4 *3 (-517)) (-5 *1 (-40 *3 *2))
+ (-4 *2
+ (-13 (-341) (-281)
+ (-10 -8 (-15 -1738 ((-1041 *3 (-564 $)) $))
+ (-15 -1754 ((-1041 *3 (-564 $)) $))
+ (-15 -3022 ($ (-1041 *3 (-564 $)))))))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-517)) (-5 *1 (-40 *3 *2))
+ (-4 *2
+ (-13 (-341) (-281)
+ (-10 -8 (-15 -1738 ((-1041 *3 (-564 $)) $))
+ (-15 -1754 ((-1041 *3 (-564 $)) $))
+ (-15 -3022 ($ (-1041 *3 (-564 $)))))))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-786) (-515))) (-5 *1 (-145 *4 *2))
- (-4 *2 (-406 *4))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-147)) (-5 *2 (-1087))))
- ((*1 *1 *1) (-4 *1 (-147))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-759)) (-14 *5 (-1087)) (-5 *2 (-589 (-1142 *5 *4)))
- (-5 *1 (-1030 *4 *5)) (-5 *3 (-1142 *5 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-835 (-523))) (-5 *1 (-848))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))))
-(((*1 *1)
- (|partial| -12 (-4 *1 (-343 *2)) (-4 *2 (-515)) (-4 *2 (-158)))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4))
- (-4 *3 (-343 *4))))
- ((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1186 *3)) (-4 *3 (-339)) (-5 *2 (-108)))))
-(((*1 *2 *3 *3 *2 *4)
- (-12 (-5 *3 (-629 *2)) (-5 *4 (-523))
- (-4 *2 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $)))))
- (-4 *5 (-1145 *2)) (-5 *1 (-470 *2 *5 *6)) (-4 *6 (-385 *2 *5)))))
-(((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *2)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-629 (-383 *4))))))
-(((*1 *2)
- (-12 (-4 *2 (-13 (-406 *3) (-930))) (-5 *1 (-253 *3 *2))
- (-4 *3 (-13 (-786) (-515))))))
-(((*1 *1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1123))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-786))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-786))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-523)) (-4 *1 (-259 *3)) (-4 *3 (-1123))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-4 *1 (-259 *2)) (-4 *2 (-1123))))
- ((*1 *1 *2)
- (-12
+ (-12 (-5 *3 (-591 *2))
+ (-4 *2
+ (-13 (-341) (-281)
+ (-10 -8 (-15 -1738 ((-1041 *4 (-564 $)) $))
+ (-15 -1754 ((-1041 *4 (-564 $)) $))
+ (-15 -3022 ($ (-1041 *4 (-564 $)))))))
+ (-4 *4 (-517)) (-5 *1 (-40 *4 *2))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-591 (-564 *2)))
+ (-4 *2
+ (-13 (-341) (-281)
+ (-10 -8 (-15 -1738 ((-1041 *4 (-564 $)) $))
+ (-15 -1754 ((-1041 *4 (-564 $)) $))
+ (-15 -3022 ($ (-1041 *4 (-564 $)))))))
+ (-4 *4 (-517)) (-5 *1 (-40 *4 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-286))))
+ ((*1 *2 *1 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |lm| (-364 *3)) (|:| |rm| (-364 *3))))
+ (-5 *1 (-364 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -2963 (-712)) (|:| -3407 (-712))))
+ (-5 *1 (-712))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3)))
+ (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-108))
+ (-5 *2 (-964)) (-5 *1 (-695)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2 *1) (-12 (-4 *1 (-345 *2)) (-4 *2 (-160)))))
+(((*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-1072)) (-5 *1 (-727)))))
+(((*1 *2 *3)
+ (-12 (-14 *4 (-591 (-1089))) (-4 *5 (-429))
(-5 *2
- (-2
- (|:| -2402
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (|:| -2746
- (-2
- (|:| |endPointContinuity|
- (-3 (|:| |continuous| "Continuous at the end points")
- (|:| |lowerSingular|
- "There is a singularity at the lower end point")
- (|:| |upperSingular|
- "There is a singularity at the upper end point")
- (|:| |bothSingular|
- "There are singularities at both end points")
- (|:| |notEvaluated|
- "End point continuity not yet evaluated")))
- (|:| |singularitiesStream|
- (-3 (|:| |str| (-1068 (-203)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -3487
- (-3 (|:| |finite| "The range is finite")
- (|:| |lowerInfinite|
- "The bottom of range is infinite")
- (|:| |upperInfinite| "The top of range is infinite")
- (|:| |bothInfinite|
- "Both top and bottom points are infinite")
- (|:| |notEvaluated| "Range not yet evaluated")))))))
- (-5 *1 (-518))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-710)) (-4 *1 (-634 *2)) (-4 *2 (-1016))))
- ((*1 *1 *2)
- (-12
+ (-2 (|:| |glbase| (-591 (-227 *4 *5))) (|:| |glval| (-591 (-525)))))
+ (-5 *1 (-579 *4 *5)) (-5 *3 (-591 (-227 *4 *5))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-591 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-147 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-788) (-517))) (-5 *1 (-147 *4 *2))
+ (-4 *2 (-408 *4))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-149)) (-5 *2 (-1089))))
+ ((*1 *1 *1) (-4 *1 (-149))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-1072)) (-5 *5 (-631 (-205)))
+ (-5 *2 (-964)) (-5 *1 (-689)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-510))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1171 *3)) (-4 *3 (-1147 *4)) (-4 *4 (-1129))
+ (-4 *1 (-320 *4 *3 *5)) (-4 *5 (-1147 (-385 *3))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-601 *2)) (-4 *2 (-975)) (-4 *2 (-341))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-341)) (-5 *1 (-604 *4 *2))
+ (-4 *2 (-601 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 *3)) (-4 *3 (-1147 *5)) (-4 *5 (-286))
+ (-5 *2 (-712)) (-5 *1 (-432 *5 *3)))))
+(((*1 *1) (-5 *1 (-415))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1125)))))
+(((*1 *1 *1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 (-798 *5))) (-14 *5 (-591 (-1089))) (-4 *6 (-429))
(-5 *2
- (-2
- (|:| -2402
- (-2 (|:| |xinit| (-203)) (|:| |xend| (-203))
- (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203)))
- (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203)))
- (|:| |abserr| (-203)) (|:| |relerr| (-203))))
- (|:| -2746
- (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355))
- (|:| |expense| (-355)) (|:| |accuracy| (-355))
- (|:| |intermediateResults| (-355))))))
- (-5 *1 (-742))))
- ((*1 *2 *3 *4)
- (-12 (-5 *2 (-1174)) (-5 *1 (-1101 *3 *4)) (-4 *3 (-1016))
- (-4 *4 (-1016)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1020)) (-5 *1 (-306)))))
-(((*1 *1 *1) (-5 *1 (-794))) ((*1 *1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1123))))
- ((*1 *1 *2) (-12 (-5 *1 (-1136 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-917 *4 *5 *6 *7 *3))
- (-4 *3 (-992 *4 *5 *6 *7))))
+ (-2 (|:| |dpolys| (-591 (-227 *5 *6)))
+ (|:| |coords| (-591 (-525)))))
+ (-5 *1 (-448 *5 *6 *7)) (-5 *3 (-591 (-227 *5 *6))) (-4 *7 (-429)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-396 *2)) (-4 *2 (-517)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 (-108) *6)) (-4 *6 (-13 (-1018) (-966 *5)))
+ (-4 *5 (-819 *4)) (-4 *4 (-1018)) (-5 *2 (-1 (-108) *5))
+ (-5 *1 (-864 *4 *5 *6)))))
+(((*1 *2 *1 *3 *3 *4 *4)
+ (-12 (-5 *3 (-712)) (-5 *4 (-854)) (-5 *2 (-1176)) (-5 *1 (-1172))))
+ ((*1 *2 *1 *3 *3 *4 *4)
+ (-12 (-5 *3 (-712)) (-5 *4 (-854)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1085 *1)) (-4 *1 (-942)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-341)) (-5 *1 (-708 *2 *3)) (-4 *2 (-650 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-525)) (-5 *2 (-1176)) (-5 *1 (-837 *4))
+ (-4 *4 (-1018))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-837 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *2) (-12 (-5 *2 (-712)) (-5 *1 (-422 *3)) (-4 *3 (-975))))
+ ((*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-422 *3)) (-4 *3 (-975)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1012 *3)) (-4 *3 (-1125)) (-5 *2 (-525)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-712)) (-5 *2 (-108))))
((*1 *2 *3 *3)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108))
- (-5 *1 (-1023 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-804 (-896 *3) (-896 *3))) (-5 *1 (-896 *3))
- (-4 *3 (-897)))))
-(((*1 *2 *3 *3 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203))
- (-5 *2 (-962)) (-5 *1 (-696)))))
+ (|partial| -12 (-5 *2 (-108)) (-5 *1 (-1126 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *3 (-1018)) (-5 *2 (-108))
+ (-5 *1 (-1126 *3)))))
+(((*1 *1 *1) (-12 (-4 *1 (-224 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-339 (-110))) (-4 *2 (-975)) (-5 *1 (-656 *2 *4))
+ (-4 *4 (-593 *2))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-339 (-110))) (-5 *1 (-775 *2)) (-4 *2 (-975)))))
(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-515) (-136)))
- (-5 *2 (-2 (|:| -2428 *3) (|:| -2438 *3))) (-5 *1 (-1139 *4 *3))
- (-4 *3 (-1145 *4)))))
+ (-12 (-4 *1 (-741))
+ (-5 *3
+ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205))
+ (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205)))
+ (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205)))
+ (|:| |abserr| (-205)) (|:| |relerr| (-205))))
+ (-5 *2 (-964)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-964)) (-5 *3 (-1089)) (-5 *1 (-246)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-157 (-205)) (-157 (-205)))) (-5 *4 (-1013 (-205)))
+ (-5 *5 (-108)) (-5 *2 (-1173)) (-5 *1 (-236)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-1112 *3))) (-5 *1 (-1112 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-985 (-953 *3) (-1085 (-953 *3))))
+ (-5 *1 (-953 *3)) (-4 *3 (-13 (-786) (-341) (-951))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-906 *4 *5 *6 *3)) (-4 *3 (-987 *4 *5 *6)))))
+ (-12 (-4 *4 (-429))
+ (-5 *2
+ (-591
+ (-2 (|:| |eigval| (-3 (-385 (-885 *4)) (-1079 (-1089) (-885 *4))))
+ (|:| |geneigvec| (-591 (-631 (-385 (-885 *4))))))))
+ (-5 *1 (-271 *4)) (-5 *3 (-631 (-385 (-885 *4)))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1085 *2)) (-4 *2 (-408 *4)) (-4 *4 (-13 (-788) (-517)))
+ (-5 *1 (-31 *4 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-429) (-138))) (-5 *2 (-396 *3))
+ (-5 *1 (-95 *4 *3)) (-4 *3 (-1147 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 *3)) (-4 *3 (-1147 *5)) (-4 *5 (-13 (-429) (-138)))
+ (-5 *2 (-396 *3)) (-5 *1 (-95 *5 *3)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-788))
+ (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-882 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-975)) (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1)))
+ (-4 *1 (-1147 *3)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-975)) (-5 *1 (-1143 *3 *2)) (-4 *2 (-1147 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-396 *5)) (-4 *5 (-517))
+ (-5 *2
+ (-2 (|:| -2008 (-712)) (|:| -3482 *5) (|:| |radicand| (-591 *5))))
+ (-5 *1 (-298 *5)) (-5 *4 (-712))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-932)) (-5 *2 (-525)))))
+(((*1 *2) (-12 (-5 *2 (-1049 (-205))) (-5 *1 (-1109)))))
+(((*1 *2 *3 *3 *3 *4 *5 *4 *6)
+ (-12 (-5 *3 (-294 (-525))) (-5 *4 (-1 (-205) (-205)))
+ (-5 *5 (-1013 (-205))) (-5 *6 (-525)) (-5 *2 (-1121 (-859)))
+ (-5 *1 (-296))))
+ ((*1 *2 *3 *3 *3 *4 *5 *4 *6 *7)
+ (-12 (-5 *3 (-294 (-525))) (-5 *4 (-1 (-205) (-205)))
+ (-5 *5 (-1013 (-205))) (-5 *6 (-525)) (-5 *7 (-1072))
+ (-5 *2 (-1121 (-859))) (-5 *1 (-296))))
+ ((*1 *2 *3 *3 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-294 (-525))) (-5 *4 (-1 (-205) (-205)))
+ (-5 *5 (-1013 (-205))) (-5 *6 (-205)) (-5 *7 (-525))
+ (-5 *2 (-1121 (-859))) (-5 *1 (-296))))
+ ((*1 *2 *3 *3 *3 *4 *5 *6 *7 *8)
+ (-12 (-5 *3 (-294 (-525))) (-5 *4 (-1 (-205) (-205)))
+ (-5 *5 (-1013 (-205))) (-5 *6 (-205)) (-5 *7 (-525)) (-5 *8 (-1072))
+ (-5 *2 (-1121 (-859))) (-5 *1 (-296)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1019 *3 *2 *4 *5 *6)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *2 (-1016)))))
-(((*1 *1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1 *1) (-4 *1 (-119))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1119 *3)) (-4 *3 (-903)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-786)) (-5 *1 (-457 *3)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-710)) (-5 *3 (-874 *4)) (-4 *1 (-1048 *4))
- (-4 *4 (-973))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-710)) (-5 *4 (-874 (-203))) (-5 *2 (-1174))
- (-5 *1 (-1171)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 (-589 *3))) (-4 *3 (-1016)) (-5 *1 (-836 *3)))))
-(((*1 *1 *1) (-5 *1 (-203)))
- ((*1 *1 *1)
- (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087)))
- (-14 *3 (-589 (-1087))) (-4 *4 (-363))))
- ((*1 *1 *1) (-5 *1 (-355))) ((*1 *1) (-5 *1 (-355))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1083 (-383 (-523)))) (-5 *1 (-873)) (-5 *3 (-523)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-355)) (-5 *1 (-92)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-1123)))))
-(((*1 *2)
- (-12 (-14 *4 *2) (-4 *5 (-1123)) (-5 *2 (-710))
- (-5 *1 (-215 *3 *4 *5)) (-4 *3 (-216 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-299 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-124))
- (-5 *2 (-710))))
- ((*1 *2)
- (-12 (-4 *4 (-339)) (-5 *2 (-710)) (-5 *1 (-304 *3 *4))
- (-4 *3 (-305 *4))))
- ((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-337 *3)) (-4 *3 (-1016))))
- ((*1 *2) (-12 (-4 *1 (-344)) (-5 *2 (-710))))
- ((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-362 *3)) (-4 *3 (-1016))))
- ((*1 *2)
- (-12 (-4 *4 (-1016)) (-5 *2 (-710)) (-5 *1 (-400 *3 *4))
- (-4 *3 (-401 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-710)) (-5 *1 (-592 *3 *4 *5)) (-4 *3 (-1016))
- (-4 *4 (-23)) (-14 *5 *4)))
+ (-12 (-4 *2 (-1018)) (-5 *1 (-896 *3 *2)) (-4 *3 (-1018)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-712)) (-5 *1 (-422 *3)) (-4 *3 (-382)) (-4 *3 (-975))))
((*1 *2)
- (-12 (-4 *4 (-158)) (-4 *5 (-1145 *4)) (-5 *2 (-710))
- (-5 *1 (-663 *3 *4 *5)) (-4 *3 (-664 *4 *5))))
- ((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-758 *3)) (-4 *3 (-786))))
- ((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-934))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-13 (-784) (-339))) (-5 *1 (-983 *2 *3))
- (-4 *3 (-1145 *2)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-515)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1016)) (-5 *2 (-1070)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-589 *1)) (-4 *1 (-406 *4))
- (-4 *4 (-786))))
- ((*1 *1 *2 *1 *1 *1 *1)
- (-12 (-5 *2 (-1087)) (-4 *1 (-406 *3)) (-4 *3 (-786))))
- ((*1 *1 *2 *1 *1 *1)
- (-12 (-5 *2 (-1087)) (-4 *1 (-406 *3)) (-4 *3 (-786))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1087)) (-4 *1 (-406 *3)) (-4 *3 (-786))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-1087)) (-4 *1 (-406 *3)) (-4 *3 (-786)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-688)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-1169 *5)) (-5 *3 (-710)) (-5 *4 (-1034)) (-4 *5 (-325))
- (-5 *1 (-493 *5)))))
-(((*1 *2 *3 *4 *4 *5 *6)
- (-12 (-5 *3 (-589 (-589 (-874 (-203))))) (-5 *4 (-805))
- (-5 *5 (-852)) (-5 *6 (-589 (-240))) (-5 *2 (-443)) (-5 *1 (-1173))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-589 (-874 (-203))))) (-5 *2 (-443))
- (-5 *1 (-1173))))
+ (-12 (-5 *2 (-712)) (-5 *1 (-422 *3)) (-4 *3 (-382)) (-4 *3 (-975)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-788)) (-5 *1 (-117 *3)))))
+(((*1 *2 *3 *3 *3 *3 *4 *5)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525))
+ (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576)))) (-5 *2 (-964))
+ (-5 *1 (-688)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-779)) (-5 *4 (-987)) (-5 *2 (-964)) (-5 *1 (-778))))
+ ((*1 *2 *3) (-12 (-5 *3 (-779)) (-5 *2 (-964)) (-5 *1 (-778))))
+ ((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-591 (-357))) (-5 *5 (-591 (-781 (-357))))
+ (-5 *6 (-591 (-294 (-357)))) (-5 *3 (-294 (-357))) (-5 *2 (-964))
+ (-5 *1 (-778))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-294 (-357))) (-5 *4 (-591 (-357)))
+ (-5 *5 (-591 (-781 (-357)))) (-5 *2 (-964)) (-5 *1 (-778))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-589 (-874 (-203))))) (-5 *4 (-589 (-240)))
- (-5 *2 (-443)) (-5 *1 (-1173)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1083 *9)) (-5 *4 (-589 *7)) (-5 *5 (-589 *8))
- (-4 *7 (-786)) (-4 *8 (-973)) (-4 *9 (-880 *8 *6 *7)) (-4 *6 (-732))
- (-5 *2 (-1083 *8)) (-5 *1 (-297 *6 *7 *8 *9)))))
-(((*1 *2)
- (-12 (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4)))
- (-5 *2 (-1169 *1)) (-4 *1 (-318 *3 *4 *5))))
- ((*1 *2)
- (-12 (-4 *3 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $)))))
- (-4 *4 (-1145 *3))
+ (-12 (-5 *3 (-294 (-357))) (-5 *4 (-591 (-357))) (-5 *2 (-964))
+ (-5 *1 (-778))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-294 (-357)))) (-5 *4 (-591 (-357)))
+ (-5 *2 (-964)) (-5 *1 (-778)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-517)) (-4 *3 (-160)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *1 (-630 *3 *4 *5 *2))
+ (-4 *2 (-629 *3 *4 *5)))))
+(((*1 *1) (-5 *1 (-415))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-232 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-788))
+ (-4 *5 (-245 *4)) (-4 *6 (-734)) (-5 *2 (-591 *4)))))
+(((*1 *1) (-4 *1 (-327)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 *5)) (-4 *5 (-408 *4))
+ (-4 *4 (-13 (-517) (-788) (-138)))
(-5 *2
- (-2 (|:| -2922 (-629 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-629 *3))))
- (-5 *1 (-326 *3 *4 *5)) (-4 *5 (-385 *3 *4))))
- ((*1 *2)
- (-12 (-4 *3 (-1145 (-523)))
+ (-2 (|:| |primelt| *5) (|:| |poly| (-591 (-1085 *5)))
+ (|:| |prim| (-1085 *5))))
+ (-5 *1 (-410 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-517) (-788) (-138)))
(-5 *2
- (-2 (|:| -2922 (-629 (-523))) (|:| |basisDen| (-523))
- (|:| |basisInv| (-629 (-523)))))
- (-5 *1 (-707 *3 *4)) (-4 *4 (-385 (-523) *3))))
- ((*1 *2)
- (-12 (-4 *3 (-325)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 *4))
+ (-2 (|:| |primelt| *3) (|:| |pol1| (-1085 *3))
+ (|:| |pol2| (-1085 *3)) (|:| |prim| (-1085 *3))))
+ (-5 *1 (-410 *4 *3)) (-4 *3 (-27)) (-4 *3 (-408 *4))))
+ ((*1 *2 *3 *4 *3 *4)
+ (-12 (-5 *3 (-885 *5)) (-5 *4 (-1089)) (-4 *5 (-13 (-341) (-138)))
(-5 *2
- (-2 (|:| -2922 (-629 *4)) (|:| |basisDen| *4)
- (|:| |basisInv| (-629 *4))))
- (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-664 *4 *5))))
- ((*1 *2)
- (-12 (-4 *3 (-325)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 *4))
+ (-2 (|:| |coef1| (-525)) (|:| |coef2| (-525))
+ (|:| |prim| (-1085 *5))))
+ (-5 *1 (-892 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-591 (-1089)))
+ (-4 *5 (-13 (-341) (-138)))
(-5 *2
- (-2 (|:| -2922 (-629 *4)) (|:| |basisDen| *4)
- (|:| |basisInv| (-629 *4))))
- (-5 *1 (-1178 *3 *4 *5 *6)) (-4 *6 (-385 *4 *5)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-279)) (-4 *2 (-1123))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-562 *1))) (-5 *3 (-589 *1)) (-4 *1 (-279))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-271 *1))) (-4 *1 (-279))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-271 *1)) (-4 *1 (-279)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-629 *4)) (-4 *4 (-339)) (-5 *2 (-1083 *4))
- (-5 *1 (-496 *4 *5 *6)) (-4 *5 (-339)) (-4 *6 (-13 (-339) (-784))))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-443)) (-5 *4 (-852)) (-5 *2 (-1174)) (-5 *1 (-1170)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-337 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-5 *2 (-710)) (-5 *1 (-362 *4)) (-4 *4 (-1016))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-4 *2 (-23)) (-5 *1 (-592 *4 *2 *5))
- (-4 *4 (-1016)) (-14 *5 *2)))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-5 *2 (-710)) (-5 *1 (-758 *4)) (-4 *4 (-786)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-110)) (-4 *2 (-1016)) (-4 *2 (-786))
- (-5 *1 (-109 *2)))))
-(((*1 *2 *3 *2 *3)
- (-12 (-5 *2 (-413)) (-5 *3 (-1087)) (-5 *1 (-1090))))
- ((*1 *2 *3 *2) (-12 (-5 *2 (-413)) (-5 *3 (-1087)) (-5 *1 (-1090))))
- ((*1 *2 *3 *2 *4 *1)
- (-12 (-5 *2 (-413)) (-5 *3 (-589 (-1087))) (-5 *4 (-1087))
- (-5 *1 (-1090))))
- ((*1 *2 *3 *2 *3 *1)
- (-12 (-5 *2 (-413)) (-5 *3 (-1087)) (-5 *1 (-1090))))
- ((*1 *2 *3 *2 *1)
- (-12 (-5 *2 (-413)) (-5 *3 (-1087)) (-5 *1 (-1091))))
- ((*1 *2 *3 *2 *1)
- (-12 (-5 *2 (-413)) (-5 *3 (-589 (-1087))) (-5 *1 (-1091)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-786)) (-5 *1 (-860 *3 *2)) (-4 *2 (-406 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1087)) (-5 *2 (-292 (-523))) (-5 *1 (-861)))))
+ (-2 (|:| -3482 (-591 (-525))) (|:| |poly| (-591 (-1085 *5)))
+ (|:| |prim| (-1085 *5))))
+ (-5 *1 (-892 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-591 (-885 *6))) (-5 *4 (-591 (-1089))) (-5 *5 (-1089))
+ (-4 *6 (-13 (-341) (-138)))
+ (-5 *2
+ (-2 (|:| -3482 (-591 (-525))) (|:| |poly| (-591 (-1085 *6)))
+ (|:| |prim| (-1085 *6))))
+ (-5 *1 (-892 *6)))))
+(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525))
+ (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G)))) (-5 *2 (-964))
+ (-5 *1 (-690)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-953 (-779 (-523)))) (-5 *1 (-548 *3)) (-4 *3 (-973)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-896 *3)) (-4 *3 (-897)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-427)) (-4 *3 (-786)) (-4 *3 (-964 (-523)))
- (-4 *3 (-515)) (-5 *1 (-40 *3 *2)) (-4 *2 (-406 *3))
- (-4 *2
- (-13 (-339) (-279)
- (-10 -8 (-15 -2164 ((-1039 *3 (-562 $)) $))
- (-15 -2171 ((-1039 *3 (-562 $)) $))
- (-15 -3976 ($ (-1039 *3 (-562 $))))))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 (-589 *3))) (-4 *3 (-1016)) (-4 *1 (-834 *3)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-523)) (-5 *1 (-394 *2)) (-4 *2 (-515)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-523)) (-4 *1 (-1010 *3)) (-4 *3 (-1123)))))
+ (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *6))
+ (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-838 *3))) (-5 *1 (-837 *3)) (-4 *3 (-1018)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1083 (-383 (-883 *3)))) (-5 *1 (-428 *3 *4 *5 *6))
- (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2
- (|:| |endPointContinuity|
- (-3 (|:| |continuous| "Continuous at the end points")
- (|:| |lowerSingular|
- "There is a singularity at the lower end point")
- (|:| |upperSingular|
- "There is a singularity at the upper end point")
- (|:| |bothSingular|
- "There are singularities at both end points")
- (|:| |notEvaluated|
- "End point continuity not yet evaluated")))
- (|:| |singularitiesStream|
- (-3 (|:| |str| (-1068 (-203)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -3487
- (-3 (|:| |finite| "The range is finite")
- (|:| |lowerInfinite| "The bottom of range is infinite")
- (|:| |upperInfinite| "The top of range is infinite")
- (|:| |bothInfinite|
- "Both top and bottom points are infinite")
- (|:| |notEvaluated| "Range not yet evaluated")))))
- (-5 *2 (-962)) (-5 *1 (-282)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
+ (-12 (-5 *2 (-1070 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1028)) (-4 *3 (-786)) (-5 *2 (-589 *1))
- (-4 *1 (-406 *3))))
+ (-12 (-4 *3 (-160)) (-4 *2 (-23)) (-5 *1 (-268 *3 *4 *2 *5 *6 *7))
+ (-4 *4 (-1147 *3)) (-14 *5 (-1 *4 *4 *2))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2))
+ (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2))))
((*1 *2 *1)
- (|partial| -12 (-5 *2 (-589 (-823 *3))) (-5 *1 (-823 *3))
- (-4 *3 (-1016))))
+ (-12 (-4 *2 (-23)) (-5 *1 (-653 *3 *2 *4 *5 *6)) (-4 *3 (-160))
+ (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2))
+ (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2))))
+ ((*1 *2) (-12 (-4 *2 (-1147 *3)) (-5 *1 (-654 *3 *2)) (-4 *3 (-975))))
((*1 *2 *1)
- (|partial| -12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *2 (-589 *1)) (-4 *1 (-880 *3 *4 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-973))
- (-4 *7 (-880 *6 *4 *5)) (-5 *2 (-589 *3))
- (-5 *1 (-881 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-339)
- (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $))
- (-15 -2171 (*7 $))))))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-591 *5)) (-4 *5 (-973))
- (-5 *1 (-52 *5 *2 *3)) (-4 *3 (-788 *5))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-629 *3)) (-4 *1 (-393 *3)) (-4 *3 (-158))))
- ((*1 *2 *1 *2 *2) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973))))
- ((*1 *2 *3 *2 *2 *4 *5)
- (-12 (-5 *4 (-94 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-973))
- (-5 *1 (-789 *2 *3)) (-4 *3 (-788 *2)))))
-(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
- (-12 (-5 *3 (-1070)) (-5 *4 (-523)) (-5 *5 (-629 (-203)))
- (-5 *2 (-962)) (-5 *1 (-694)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-589 *8))) (-5 *3 (-589 *8))
- (-4 *8 (-880 *5 *7 *6)) (-4 *5 (-13 (-284) (-136)))
- (-4 *6 (-13 (-786) (-564 (-1087)))) (-4 *7 (-732)) (-5 *2 (-108))
- (-5 *1 (-855 *5 *6 *7 *8)))))
-(((*1 *1) (-5 *1 (-133))) ((*1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-692)))))
-(((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-710)) (-4 *5 (-339)) (-5 *2 (-383 *6))
- (-5 *1 (-798 *5 *4 *6)) (-4 *4 (-1160 *5)) (-4 *6 (-1145 *5))))
- ((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-710)) (-5 *4 (-1161 *5 *6 *7)) (-4 *5 (-339))
- (-14 *6 (-1087)) (-14 *7 *5) (-5 *2 (-383 (-1142 *6 *5)))
- (-5 *1 (-799 *5 *6 *7))))
- ((*1 *2 *3 *3 *4)
- (|partial| -12 (-5 *3 (-710)) (-5 *4 (-1161 *5 *6 *7)) (-4 *5 (-339))
- (-14 *6 (-1087)) (-14 *7 *5) (-5 *2 (-383 (-1142 *6 *5)))
- (-5 *1 (-799 *5 *6 *7)))))
-(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (-5 *2 (-2 (|:| -3362 (-110)) (|:| |w| (-203)))) (-5 *1 (-184)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-562 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *4)))
- (-4 *4 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-254 *4 *2)))))
+ (-12 (-4 *2 (-23)) (-5 *1 (-657 *3 *2 *4 *5 *6)) (-4 *3 (-160))
+ (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2))
+ (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2))))
+ ((*1 *2) (-12 (-4 *1 (-802 *3)) (-5 *2 (-525)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-372)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-591 (-591 (-525)))) (-5 *1 (-902))
+ (-5 *3 (-591 (-525))))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1089)) (-5 *1 (-259)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-712)) (-5 *1 (-110)))))
+(((*1 *1 *2) (-12 (-5 *1 (-1112 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-1112 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-591 (-1112 *2))) (-5 *1 (-1112 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-51)) (-5 *1 (-1104)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-4 *1 (-836 *3)))))
+(((*1 *2)
+ (-12 (-5 *2 (-712)) (-5 *1 (-116 *3)) (-4 *3 (-1147 (-525)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-712)) (-5 *1 (-116 *3)) (-4 *3 (-1147 (-525))))))
+(((*1 *1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1 *1) (-4 *1 (-119)))
+ ((*1 *1 *1 *1) (-5 *1 (-1036))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-591 (-525))) (-5 *3 (-108)) (-5 *1 (-1028)))))
+(((*1 *2 *3 *4 *4 *4 *5 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205))
+ (-5 *2 (-964)) (-5 *1 (-693)))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (-710)) (-4 *4 (-973))
- (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-1145 *4)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-523)) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-257))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-896 *3)) (-4 *3 (-897)))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-764)))))
-(((*1 *1 *1 *1)
- (-12 (-5 *1 (-589 *2)) (-4 *2 (-1016)) (-4 *2 (-1123)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1016))
- (-4 *6 (-1016)) (-4 *2 (-1016)) (-5 *1 (-621 *5 *6 *2)))))
-(((*1 *2 *1) (-12 (-4 *1 (-616 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-732))
- (-4 *3 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $))))) (-4 *5 (-515))
- (-5 *1 (-672 *4 *3 *5 *2)) (-4 *2 (-880 (-383 (-883 *5)) *4 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *4 (-973)) (-4 *5 (-732))
- (-4 *3
- (-13 (-786)
- (-10 -8 (-15 -3077 ((-1087) $))
- (-15 -2354 ((-3 $ "failed") (-1087))))))
- (-5 *1 (-913 *4 *5 *3 *2)) (-4 *2 (-880 (-883 *4) *5 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 *6))
- (-4 *6
- (-13 (-786)
- (-10 -8 (-15 -3077 ((-1087) $))
- (-15 -2354 ((-3 $ "failed") (-1087))))))
- (-4 *4 (-973)) (-4 *5 (-732)) (-5 *1 (-913 *4 *5 *6 *2))
- (-4 *2 (-880 (-883 *4) *5 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-333 *3)) (-4 *3 (-325)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1034)) (-5 *1 (-306)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1070)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-1174))
- (-5 *1 (-993 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1070)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-1174))
- (-5 *1 (-1024 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))))
+ (-12 (-5 *3 (-712)) (-4 *1 (-1147 *4)) (-4 *4 (-975))
+ (-5 *2 (-1171 *4)))))
+(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-859)))))
+(((*1 *1) (-5 *1 (-270))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1125)) (-5 *2 (-712)) (-5 *1 (-168 *4 *3))
+ (-4 *3 (-618 *4)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-396 *3)) (-4 *3 (-517)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1 (-874 (-203)) (-203) (-203)))
- (-5 *3 (-1 (-203) (-203) (-203) (-203))) (-5 *1 (-232)))))
-(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-858)))))
-(((*1 *1 *1 *1)
- (-12 (-5 *1 (-589 *2)) (-4 *2 (-1016)) (-4 *2 (-1123)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1087))
- (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *4 *5))
- (-4 *5 (-13 (-27) (-1109) (-406 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *4 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-523)) (-4 *5 (-13 (-427) (-786) (-964 *4) (-585 *4)))
- (-5 *2 (-51)) (-5 *1 (-291 *5 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-271 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5)))
- (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-271 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *6)))
- (-4 *6 (-13 (-427) (-786) (-964 *5) (-585 *5))) (-5 *5 (-523))
- (-5 *2 (-51)) (-5 *1 (-291 *6 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *7 (-523))) (-5 *4 (-271 *7)) (-5 *5 (-1136 (-523)))
- (-4 *7 (-13 (-27) (-1109) (-406 *6)))
- (-4 *6 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-434 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-1087)) (-5 *5 (-271 *3)) (-5 *6 (-1136 (-523)))
- (-4 *3 (-13 (-27) (-1109) (-406 *7)))
- (-4 *7 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-434 *7 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-523)) (-4 *4 (-973)) (-4 *1 (-1131 *4 *3))
- (-4 *3 (-1160 *4))))
+ (|partial| -12 (-5 *3 (-712)) (-4 *4 (-13 (-517) (-138)))
+ (-5 *1 (-1141 *4 *2)) (-4 *2 (-1147 *4)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-348 *4 *5)) (-4 *4 (-160))
+ (-4 *5 (-1147 *4)) (-5 *2 (-631 *4))))
((*1 *2 *1)
- (-12 (-4 *1 (-1152 *3 *2)) (-4 *3 (-973)) (-4 *2 (-1129 *3)))))
-(((*1 *1 *1) (-4 *1 (-34)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1169 (-589 (-2 (|:| -2058 *4) (|:| -2557 (-1034))))))
- (-4 *4 (-325)) (-5 *2 (-629 *4)) (-5 *1 (-322 *4)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-279)) (-5 *3 (-1087)) (-5 *2 (-108))))
- ((*1 *2 *1 *1) (-12 (-4 *1 (-279)) (-5 *2 (-108)))))
+ (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-160)) (-4 *4 (-1147 *3))
+ (-5 *2 (-631 *3)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-525)) (-4 *1 (-1012 *3)) (-4 *3 (-1125)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-4 *3 (-517)))))
(((*1 *1 *1)
- (|partial| -12 (-4 *1 (-343 *2)) (-4 *2 (-158)) (-4 *2 (-515))))
- ((*1 *1 *1) (|partial| -4 *1 (-662))))
-(((*1 *2 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-373)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-1174)) (-5 *1 (-797 *4 *5 *6 *7))
- (-4 *4 (-973)) (-14 *5 (-589 (-1087))) (-14 *6 (-589 *3))
- (-14 *7 *3)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-710)) (-4 *4 (-973)) (-4 *5 (-786)) (-4 *6 (-732))
- (-14 *8 (-589 *5)) (-5 *2 (-1174))
- (-5 *1 (-1179 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-880 *4 *6 *5))
- (-14 *9 (-589 *3)) (-14 *10 *3))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109) (-930)))
- (-5 *1 (-161 *3)))))
+ (-12 (-5 *1 (-203 *2 *3)) (-4 *2 (-13 (-975) (-788)))
+ (-14 *3 (-591 (-1089))))))
+(((*1 *1 *1 *1) (-4 *1 (-899))))
(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |cd| (-1070)) (|:| -1522 (-1070))))
- (-5 *1 (-761)))))
-(((*1 *2 *3 *4 *4 *5)
- (|partial| -12 (-5 *4 (-562 *3)) (-5 *5 (-589 *3))
- (-4 *3 (-13 (-406 *6) (-27) (-1109)))
- (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-525 *6 *3 *7)) (-4 *7 (-1016)))))
-(((*1 *1 *1) (-5 *1 (-985))))
-(((*1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1094)))))
-(((*1 *2 *1 *1)
- (-12
+ (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4))
+ (-4 *3 (-345 *4))))
+ ((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-591 *5) *6))
+ (-4 *5 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *6 (-1147 *5))
+ (-5 *2 (-591 (-2 (|:| |poly| *6) (|:| -1317 *3))))
+ (-5 *1 (-750 *5 *6 *3 *7)) (-4 *3 (-601 *6))
+ (-4 *7 (-601 (-385 *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-591 *5) *6))
+ (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-4 *6 (-1147 *5))
+ (-5 *2 (-591 (-2 (|:| |poly| *6) (|:| -1317 (-599 *6 (-385 *6))))))
+ (-5 *1 (-753 *5 *6)) (-5 *3 (-599 *6 (-385 *6))))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *3 *1) (-12 (-5 *3 (-1089)) (-5 *2 (-1093)) (-5 *1 (-1092)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1129)) (-4 *5 (-1147 *4))
(-5 *2
- (-2 (|:| -2210 *3) (|:| |coef1| (-721 *3)) (|:| |coef2| (-721 *3))))
- (-5 *1 (-721 *3)) (-4 *3 (-515)) (-4 *3 (-973)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1087))
- (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *4 *5))
- (-4 *5 (-13 (-27) (-1109) (-406 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *4 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-710))
- (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *5 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-271 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5)))
- (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-271 *3)) (-5 *5 (-710))
- (-4 *3 (-13 (-27) (-1109) (-406 *6)))
- (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *6 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 (-523))) (-5 *4 (-271 *6))
- (-4 *6 (-13 (-27) (-1109) (-406 *5)))
- (-4 *5 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-434 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1087)) (-5 *5 (-271 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *6)))
- (-4 *6 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-434 *6 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *7 (-523))) (-5 *4 (-271 *7)) (-5 *5 (-1136 (-710)))
- (-4 *7 (-13 (-27) (-1109) (-406 *6)))
- (-4 *6 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-434 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-1087)) (-5 *5 (-271 *3)) (-5 *6 (-1136 (-710)))
- (-4 *3 (-13 (-27) (-1109) (-406 *7)))
- (-4 *7 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-434 *7 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1131 *3 *2)) (-4 *3 (-973)) (-4 *2 (-1160 *3)))))
-(((*1 *1 *1) (-4 *1 (-34)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
-(((*1 *1 *1 *1)
- (-12 (-5 *1 (-589 *2)) (-4 *2 (-1016)) (-4 *2 (-1123)))))
-(((*1 *2 *3 *3 *1)
- (|partial| -12 (-5 *3 (-1087)) (-5 *2 (-1020)) (-5 *1 (-268)))))
-(((*1 *2 *2) (-12 (-5 *1 (-146 *2)) (-4 *2 (-508))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-900)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-110)) (-5 *1 (-109 *3)) (-4 *3 (-786)) (-4 *3 (-1016)))))
-(((*1 *2 *1) (-12 (-4 *1 (-964 (-523))) (-4 *1 (-279)) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-4 *1 (-508)) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-836 *3)) (-4 *3 (-1016)))))
-(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1070)) (-5 *3 (-713)) (-5 *1 (-110)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1145 *5))
- (-4 *5 (-13 (-27) (-406 *4)))
- (-4 *4 (-13 (-786) (-515) (-964 (-523))))
- (-4 *7 (-1145 (-383 *6))) (-5 *1 (-511 *4 *5 *6 *7 *2))
- (-4 *2 (-318 *5 *6 *7)))))
-(((*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))))
-(((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-934)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1019 *2 *3 *4 *5 *6)) (-4 *2 (-1016)) (-4 *3 (-1016))
- (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-383 *4)) (-4 *4 (-1145 *3))
- (-4 *3 (-13 (-339) (-136) (-964 (-523)))) (-5 *1 (-527 *3 *4)))))
-(((*1 *1 *1) (-4 *1 (-34)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
-(((*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203))
- (-5 *2 (-962)) (-5 *1 (-691)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *1 *2) (-12 (-5 *2 (-144)) (-5 *1 (-805)))))
+ (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-385 *5))
+ (|:| |c2| (-385 *5)) (|:| |deg| (-712))))
+ (-5 *1 (-139 *4 *5 *3)) (-4 *3 (-1147 (-385 *5))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1169 *4)) (-4 *4 (-325)) (-5 *2 (-1083 *4))
- (-5 *1 (-493 *4)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-880 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-427))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *3 (-987 *4 *5 *6))
- (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *1))))
- (-4 *1 (-992 *4 *5 *6 *3))))
- ((*1 *1 *1) (-4 *1 (-1127)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-515)) (-5 *1 (-1148 *3 *2))
- (-4 *2 (-13 (-1145 *3) (-515) (-10 -8 (-15 -2056 ($ $ $))))))))
+ (-12 (-5 *3 (-1089)) (-5 *2 (-1 *6 *5)) (-5 *1 (-648 *4 *5 *6))
+ (-4 *4 (-566 (-501))) (-4 *5 (-1125)) (-4 *6 (-1125)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-2 (|:| |deg| (-710)) (|:| -1549 *5))))
- (-4 *5 (-1145 *4)) (-4 *4 (-325)) (-5 *2 (-589 *5))
- (-5 *1 (-195 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-2 (|:| -3573 *5) (|:| -1487 (-523)))))
- (-5 *4 (-523)) (-4 *5 (-1145 *4)) (-5 *2 (-589 *5))
- (-5 *1 (-635 *5)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-589 *1)) (-4 *1 (-987 *4 *5 *6)) (-4 *4 (-973))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1117 *4 *5 *6 *3)) (-4 *4 (-515)) (-4 *5 (-732))
- (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))))
+ (-12 (-5 *3 (-525)) (-4 *4 (-1147 (-385 *3))) (-5 *2 (-854))
+ (-5 *1 (-846 *4 *5)) (-4 *5 (-1147 (-385 *4))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4))))
+ (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-475 (-383 (-523)) (-218 *5 (-710)) (-796 *4)
- (-225 *4 (-383 (-523)))))
- (-14 *4 (-589 (-1087))) (-14 *5 (-710)) (-5 *2 (-108))
- (-5 *1 (-476 *4 *5)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-318 *4 *3 *5)) (-4 *4 (-1127)) (-4 *3 (-1145 *4))
- (-4 *5 (-1145 (-383 *3))) (-5 *2 (-108))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))))
-(((*1 *1 *1) (-12 (-4 *1 (-406 *2)) (-4 *2 (-786)) (-4 *2 (-515))))
- ((*1 *1 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)))))
+ (-591
+ (-2 (|:| -4073 (-712))
+ (|:| |eqns|
+ (-591
+ (-2 (|:| |det| *7) (|:| |rows| (-591 (-525)))
+ (|:| |cols| (-591 (-525))))))
+ (|:| |fgb| (-591 *7)))))
+ (-4 *7 (-882 *4 *6 *5)) (-4 *4 (-13 (-286) (-138)))
+ (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-712))
+ (-5 *1 (-857 *4 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850))))
+ ((*1 *2) (-12 (-5 *2 (-837 (-525))) (-5 *1 (-850)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-1171 *5)) (-5 *3 (-712)) (-5 *4 (-1036)) (-4 *5 (-327))
+ (-5 *1 (-495 *5)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-591 (-723 *3))) (-5 *1 (-723 *3)) (-4 *3 (-517))
+ (-4 *3 (-975)))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-712)) (-5 *1 (-543 *2)) (-4 *2 (-510)))))
+(((*1 *2 *3 *1 *4)
+ (-12 (-5 *3 (-1054 *5 *6)) (-5 *4 (-1 (-108) *6 *6))
+ (-4 *5 (-13 (-1018) (-33))) (-4 *6 (-13 (-1018) (-33)))
+ (-5 *2 (-108)) (-5 *1 (-1055 *5 *6)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4250)) (-4 *1 (-215 *3))
+ (-4 *3 (-1018))))
+ ((*1 *1 *2 *1)
+ (-12 (|has| *1 (-6 -4250)) (-4 *1 (-215 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *1 (-261 *2)) (-4 *2 (-1125)) (-4 *2 (-1018))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-261 *3)) (-4 *3 (-1125))))
+ ((*1 *2 *3 *1)
+ (|partial| -12 (-4 *1 (-562 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1018))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *2 (-1 (-108) *4)) (-5 *3 (-525)) (-4 *4 (-1018))
+ (-5 *1 (-679 *4))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-5 *1 (-679 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1054 *3 *4)) (-4 *3 (-13 (-1018) (-33)))
+ (-4 *4 (-13 (-1018) (-33))) (-5 *1 (-1055 *3 *4)))))
+(((*1 *1 *1 *2 *2)
+ (|partial| -12 (-5 *2 (-854)) (-5 *1 (-1019 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-564 *3)) (-4 *3 (-13 (-408 *5) (-27) (-1111)))
+ (-4 *5 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *2 (-542 *3)) (-5 *1 (-527 *5 *3 *6)) (-4 *6 (-1018)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-591 (-997 *4 *5 *2))) (-4 *4 (-1018))
+ (-4 *5 (-13 (-975) (-819 *4) (-788) (-566 (-825 *4))))
+ (-4 *2 (-13 (-408 *5) (-819 *4) (-566 (-825 *4))))
+ (-5 *1 (-53 *4 *5 *2))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-591 (-997 *5 *6 *2))) (-5 *4 (-854)) (-4 *5 (-1018))
+ (-4 *6 (-13 (-975) (-819 *5) (-788) (-566 (-825 *5))))
+ (-4 *2 (-13 (-408 *6) (-819 *5) (-566 (-825 *5))))
+ (-5 *1 (-53 *5 *6 *2)))))
+(((*1 *1 *1) (-5 *1 (-987))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1054 *3 *2)) (-4 *3 (-13 (-1018) (-33)))
+ (-4 *2 (-13 (-1018) (-33))))))
+(((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-796)))))
(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |xinit| (-203)) (|:| |xend| (-203))
- (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203)))
- (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203)))
- (|:| |abserr| (-203)) (|:| |relerr| (-203))))
- (-5 *2
- (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355))
- (|:| |expense| (-355)) (|:| |accuracy| (-355))
- (|:| |intermediateResults| (-355))))
- (-5 *1 (-742)))))
-(((*1 *1 *1) (-4 *1 (-34)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
+ (-12 (-5 *3 (-227 *4 *5)) (-14 *4 (-591 (-1089))) (-4 *5 (-975))
+ (-5 *2 (-457 *4 *5)) (-5 *1 (-877 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1072)) (-5 *1 (-284)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-712)) (-5 *2 (-108)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-517)) (-4 *4 (-923 *3)) (-5 *1 (-133 *3 *4 *2))
+ (-4 *2 (-351 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *5 (-923 *4)) (-4 *2 (-351 *4))
+ (-5 *1 (-476 *4 *5 *2 *3)) (-4 *3 (-351 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-631 *5)) (-4 *5 (-923 *4)) (-4 *4 (-517))
+ (-5 *2 (-631 *4)) (-5 *1 (-634 *4 *5))))
((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1019 *2 *3 *4 *5 *6)) (-4 *2 (-1016)) (-4 *3 (-1016))
- (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)))))
+ (-12 (-4 *3 (-517)) (-4 *4 (-923 *3)) (-5 *1 (-1140 *3 *4 *2))
+ (-4 *2 (-1147 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-908 *4 *5 *6 *3)) (-4 *3 (-989 *4 *5 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-761)) (-14 *5 (-1089)) (-5 *2 (-591 (-1144 *5 *4)))
+ (-5 *1 (-1032 *4 *5)) (-5 *3 (-1144 *5 *4)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-1089 (-383 (-523))))
- (-5 *1 (-170)))))
-(((*1 *1 *1 *1) (-5 *1 (-794))))
+ (-12 (-4 *4 (-517))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2805 *4)))
+ (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1129)) (-4 *5 (-1147 *4)) (-4 *6 (-1147 (-385 *5)))
+ (-5 *2 (-108)) (-5 *1 (-319 *3 *4 *5 *6)) (-4 *3 (-320 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))))
+(((*1 *1 *2 *2 *3 *1)
+ (-12 (-5 *2 (-1089)) (-5 *3 (-1022)) (-5 *1 (-270)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-762)))))
+(((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3)
+ (-12 (-5 *6 (-591 (-108))) (-5 *7 (-631 (-205)))
+ (-5 *8 (-631 (-525))) (-5 *3 (-525)) (-5 *4 (-205)) (-5 *5 (-108))
+ (-5 *2 (-964)) (-5 *1 (-696)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-429)) (-4 *4 (-788)) (-4 *5 (-734)) (-5 *2 (-591 *6))
+ (-5 *1 (-918 *3 *4 *5 *6)) (-4 *6 (-882 *3 *5 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-394 (-1083 (-523)))) (-5 *1 (-171)) (-5 *3 (-523)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-710)) (-5 *1 (-792 *2)) (-4 *2 (-158))))
+ (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3))
+ (-4 *3 (-13 (-341) (-1111) (-932))))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *1))
+ (-4 *1 (-989 *3 *4 *5)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-975)) (-4 *3 (-788))
+ (-5 *2 (-2 (|:| |val| *1) (|:| -2008 (-525)))) (-4 *1 (-408 *3))))
+ ((*1 *2 *1)
+ (|partial| -12
+ (-5 *2 (-2 (|:| |val| (-825 *3)) (|:| -2008 (-825 *3))))
+ (-5 *1 (-825 *3)) (-4 *3 (-1018))))
((*1 *2 *3)
- (-12 (-5 *2 (-1083 (-523))) (-5 *1 (-873)) (-5 *3 (-523)))))
-(((*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-692)))))
-(((*1 *1 *1) (-12 (-5 *1 (-159 *2)) (-4 *2 (-284))))
+ (|partial| -12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-975))
+ (-4 *7 (-882 *6 *4 *5))
+ (-5 *2 (-2 (|:| |val| *3) (|:| -2008 (-525))))
+ (-5 *1 (-883 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-341)
+ (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $))
+ (-15 -1754 (*7 $))))))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-1147 (-385 (-525))))
+ (-5 *2 (-2 (|:| |den| (-525)) (|:| |gcdnum| (-525))))
+ (-5 *1 (-846 *3 *4)) (-4 *4 (-1147 (-385 *3)))))
((*1 *2 *3)
- (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)) (-5 *3 (-523))))
- ((*1 *1 *1) (-12 (-4 *1 (-616 *2)) (-4 *2 (-1123))))
- ((*1 *1 *1) (-4 *1 (-800 *2)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-902 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-731))
- (-4 *4 (-786)))))
-(((*1 *1) (-5 *1 (-130))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| -2056 (-721 *3)) (|:| |coef1| (-721 *3))
- (|:| |coef2| (-721 *3))))
- (-5 *1 (-721 *3)) (-4 *3 (-515)) (-4 *3 (-973))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-515)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *2 (-2 (|:| -2056 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
- (-4 *1 (-987 *3 *4 *5)))))
-(((*1 *2 *2 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523)))))))
- (-5 *1 (-1042 *3 *2)) (-4 *3 (-1145 *2)))))
-(((*1 *1 *2) (-12 (-4 *1 (-609 *2)) (-4 *2 (-1123))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-1087)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-852)) (-5 *1 (-957 *2))
- (-4 *2 (-13 (-1016) (-10 -8 (-15 -4103 ($ $ $))))))))
-(((*1 *1 *1) (-4 *1 (-34)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
+ (-12 (-4 *4 (-1147 (-385 *2))) (-5 *2 (-525)) (-5 *1 (-846 *4 *3))
+ (-4 *3 (-1147 (-385 *4))))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-1 (-542 *3) *3 (-1089)))
+ (-5 *6
+ (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3
+ (-1089)))
+ (-4 *3 (-263)) (-4 *3 (-577)) (-4 *3 (-966 *4)) (-4 *3 (-408 *7))
+ (-5 *4 (-1089)) (-4 *7 (-566 (-825 (-525)))) (-4 *7 (-429))
+ (-4 *7 (-819 (-525))) (-4 *7 (-788)) (-5 *2 (-542 *3))
+ (-5 *1 (-534 *7 *3)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-383 (-523))) (-4 *1 (-513 *3))
- (-4 *3 (-13 (-380) (-1109)))))
- ((*1 *1 *2) (-12 (-4 *1 (-513 *2)) (-4 *2 (-13 (-380) (-1109)))))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-513 *2)) (-4 *2 (-13 (-380) (-1109))))))
-(((*1 *2)
- (-12 (-5 *2 (-852)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-852)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2056 (-721 *3)) (|:| |coef2| (-721 *3))))
- (-5 *1 (-721 *3)) (-4 *3 (-515)) (-4 *3 (-973))))
+ (-12 (-5 *2 (-591 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-232 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-788))
+ (-4 *5 (-245 *4)) (-4 *6 (-734)) (-5 *2 (-712))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-232 *4 *3 *5 *6)) (-4 *4 (-975)) (-4 *3 (-788))
+ (-4 *5 (-245 *3)) (-4 *6 (-734)) (-5 *2 (-712))))
+ ((*1 *2 *1) (-12 (-4 *1 (-245 *3)) (-4 *3 (-788)) (-5 *2 (-712))))
+ ((*1 *2 *1) (-12 (-4 *1 (-327)) (-5 *2 (-854))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-314 *4 *5 *6 *7)) (-4 *4 (-13 (-346) (-341)))
+ (-4 *5 (-1147 *4)) (-4 *6 (-1147 (-385 *5))) (-4 *7 (-320 *4 *5 *6))
+ (-5 *2 (-712)) (-5 *1 (-370 *4 *5 *6 *7))))
+ ((*1 *2 *1) (-12 (-4 *1 (-380)) (-5 *2 (-774 (-854)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-525))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-551 *3)) (-4 *3 (-975))))
+ ((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-551 *3)) (-4 *3 (-975))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-517)) (-5 *2 (-525)) (-5 *1 (-572 *3 *4))
+ (-4 *4 (-1147 *3))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *2 (-712)) (-4 *1 (-682 *4 *3)) (-4 *4 (-975))
+ (-4 *3 (-788))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-682 *4 *3)) (-4 *4 (-975)) (-4 *3 (-788))
+ (-5 *2 (-712))))
+ ((*1 *2 *1) (-12 (-4 *1 (-802 *3)) (-5 *2 (-712))))
+ ((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-837 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-838 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-314 *5 *6 *7 *8)) (-4 *5 (-408 *4))
+ (-4 *6 (-1147 *5)) (-4 *7 (-1147 (-385 *6)))
+ (-4 *8 (-320 *5 *6 *7)) (-4 *4 (-13 (-788) (-517) (-966 (-525))))
+ (-5 *2 (-712)) (-5 *1 (-844 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-314 (-385 (-525)) *4 *5 *6))
+ (-4 *4 (-1147 (-385 (-525)))) (-4 *5 (-1147 (-385 *4)))
+ (-4 *6 (-320 (-385 (-525)) *4 *5)) (-5 *2 (-712))
+ (-5 *1 (-845 *4 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-314 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-341))
+ (-4 *7 (-1147 *6)) (-4 *4 (-1147 (-385 *7))) (-4 *8 (-320 *6 *7 *4))
+ (-4 *9 (-13 (-346) (-341))) (-5 *2 (-712))
+ (-5 *1 (-948 *6 *7 *4 *8 *9))))
((*1 *2 *1 *1)
- (-12 (-4 *3 (-515)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *2 (-2 (|:| -2056 *1) (|:| |coef2| *1)))
- (-4 *1 (-987 *3 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-523))) (-5 *4 (-836 (-523)))
- (-5 *2 (-629 (-523))) (-5 *1 (-544))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-589 (-629 (-523))))
- (-5 *1 (-544))))
+ (-12 (-4 *1 (-1147 *3)) (-4 *3 (-975)) (-4 *3 (-517)) (-5 *2 (-712))))
+ ((*1 *2 *1 *2)
+ (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-975)) (-4 *2 (-733))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-975)) (-4 *2 (-733)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-591 *5)))))
+(((*1 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-236)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-320 *4 *5 *6)) (-4 *4 (-1129))
+ (-4 *5 (-1147 *4)) (-4 *6 (-1147 (-385 *5)))
+ (-5 *2 (-2 (|:| |num| (-631 *5)) (|:| |den| *5))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2976 *4)))
+ (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-2 (|:| -1348 (-1085 *6)) (|:| -2008 (-525)))))
+ (-4 *6 (-286)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-525))
+ (-5 *1 (-684 *4 *5 *6 *7)) (-4 *7 (-882 *6 *4 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-517))
+ (-5 *2 (-2 (|:| -3482 *4) (|:| -2963 *3) (|:| -3407 *3)))
+ (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-989 *3 *4 *5))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-517)) (-4 *3 (-975))
+ (-5 *2 (-2 (|:| -3482 *3) (|:| -2963 *1) (|:| -3407 *1)))
+ (-4 *1 (-1147 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-108)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-360 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1018))
+ (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 *4)) (-4 *4 (-341)) (-5 *2 (-631 *4))
+ (-5 *1 (-755 *4 *5)) (-4 *5 (-601 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-523))) (-5 *4 (-589 (-836 (-523))))
- (-5 *2 (-589 (-629 (-523)))) (-5 *1 (-544)))))
+ (-12 (-5 *3 (-591 *5)) (-5 *4 (-712)) (-4 *5 (-341))
+ (-5 *2 (-631 *5)) (-5 *1 (-755 *5 *6)) (-4 *6 (-601 *5)))))
+(((*1 *2 *3 *3 *3 *3)
+ (-12 (-5 *3 (-525)) (-5 *2 (-108)) (-5 *1 (-456)))))
+(((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)) (-4 *2 (-510))))
+ ((*1 *1 *1) (-4 *1 (-984))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2 *1) (-12 (-4 *3 (-1125)) (-5 *2 (-591 *1)) (-4 *1 (-940 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-1078 *3 *4))) (-5 *1 (-1078 *3 *4))
+ (-14 *3 (-854)) (-4 *4 (-975)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1171 (-1171 *4))) (-4 *4 (-975)) (-5 *2 (-631 *4))
+ (-5 *1 (-958 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1018))
+ (-4 *4 (-13 (-975) (-819 *3) (-788) (-566 (-825 *3))))
+ (-5 *2 (-591 (-997 *3 *4 *5))) (-5 *1 (-998 *3 *4 *5))
+ (-4 *5 (-13 (-408 *4) (-819 *3) (-566 (-825 *3)))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-712)) (-5 *1 (-49 *3 *4)) (-4 *3 (-975))
+ (-14 *4 (-591 (-1089)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-712)) (-5 *1 (-203 *3 *4)) (-4 *3 (-13 (-975) (-788)))
+ (-14 *4 (-591 (-1089)))))
+ ((*1 *1) (-12 (-4 *1 (-307 *2)) (-4 *2 (-346)) (-4 *2 (-341))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-313 *3 *4 *5 *2)) (-4 *3 (-341))
+ (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4)))
+ (-4 *2 (-320 *3 *4 *5))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-712)) (-5 *1 (-368 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
+ (-4 *5 (-160))))
+ ((*1 *1) (-12 (-4 *2 (-160)) (-4 *1 (-666 *2 *3)) (-4 *3 (-1147 *2)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-853)) (-5 *2 (-2 (|:| -3482 (-591 *1)) (|:| -3857 *1)))
+ (-5 *3 (-591 *1)))))
+(((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-525))))
+ ((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-640)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *3 (-591 (-525)))
+ (-5 *1 (-816)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-591 *6)) (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5))
+ (-4 *3 (-517)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-888 *3)) (-5 *1 (-1075 *4 *3))
- (-4 *3 (-1145 *4)))))
-(((*1 *2 *2 *2) (-12 (-5 *1 (-146 *2)) (-4 *2 (-508)))))
+ (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1399 *3)))
+ (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174))))
+ ((*1 *2 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-591 (-591 (-876 (-205))))) (-5 *3 (-591 (-807)))
+ (-5 *1 (-445)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-796)) (-5 *1 (-368 *3 *4 *5)) (-14 *3 (-712))
+ (-14 *4 (-712)) (-4 *5 (-160)))))
+(((*1 *2)
+ (-12 (-5 *2 (-890 (-1036))) (-5 *1 (-321 *3 *4)) (-14 *3 (-854))
+ (-14 *4 (-854))))
+ ((*1 *2)
+ (-12 (-5 *2 (-890 (-1036))) (-5 *1 (-322 *3 *4)) (-4 *3 (-327))
+ (-14 *4 (-1085 *3))))
+ ((*1 *2)
+ (-12 (-5 *2 (-890 (-1036))) (-5 *1 (-323 *3 *4)) (-4 *3 (-327))
+ (-14 *4 (-854)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-596 (-383 *2))) (-4 *2 (-1145 *4)) (-5 *1 (-749 *4 *2))
- (-4 *4 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-597 *2 (-383 *2))) (-4 *2 (-1145 *4))
- (-5 *1 (-749 *4 *2))
- (-4 *4 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523))))))))
+ (-12 (-5 *3 (-294 (-205))) (-5 *2 (-294 (-357))) (-5 *1 (-284)))))
+(((*1 *1) (-5 *1 (-132))) ((*1 *1 *1) (-5 *1 (-135)))
+ ((*1 *1 *1) (-4 *1 (-1058))))
(((*1 *2 *3)
- (-12 (-5 *3 (-823 *4)) (-4 *4 (-1016)) (-5 *2 (-1 (-108) *5))
- (-5 *1 (-821 *4 *5)) (-4 *5 (-1123)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-589 *6) "failed") (-523) *6 *6)) (-4 *6 (-339))
- (-4 *7 (-1145 *6))
- (-5 *2 (-2 (|:| |answer| (-540 (-383 *7))) (|:| |a0| *6)))
- (-5 *1 (-533 *6 *7)) (-5 *3 (-383 *7)))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1087)) (-5 *6 (-589 (-562 *3)))
- (-5 *5 (-562 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *7)))
- (-4 *7 (-13 (-427) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-2 (|:| -3699 *3) (|:| |coeff| *3)))
- (-5 *1 (-516 *7 *3)))))
+ (-12 (-5 *3 (-227 *4 *5)) (-14 *4 (-591 (-1089))) (-4 *5 (-975))
+ (-5 *2 (-885 *5)) (-5 *1 (-877 *4 *5)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-629 *4)) (-5 *3 (-852)) (-4 *4 (-973))
- (-5 *1 (-955 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-589 (-629 *4))) (-5 *3 (-852)) (-4 *4 (-973))
- (-5 *1 (-955 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-805)) (-5 *1 (-240))))
- ((*1 *1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-240)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *1 *1) (-4 *1 (-464)))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-883 *6))) (-5 *4 (-589 (-1087)))
- (-4 *6 (-13 (-515) (-964 *5))) (-4 *5 (-515))
- (-5 *2 (-589 (-589 (-271 (-383 (-883 *6)))))) (-5 *1 (-965 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-564 (-823 *3))) (-4 *3 (-817 *3))
- (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-564 (-823 *3))) (-4 *2 (-817 *3))
- (-4 *2 (-13 (-406 *3) (-1109))))))
+ (-12 (-5 *2 (-631 *7)) (-5 *3 (-591 *7)) (-4 *7 (-882 *4 *6 *5))
+ (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089))))
+ (-4 *6 (-734)) (-5 *1 (-857 *4 *5 *6 *7)))))
+(((*1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1174)))))
+(((*1 *2)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-318 *4 *3 *5)) (-4 *4 (-1127)) (-4 *3 (-1145 *4))
- (-4 *5 (-1145 (-383 *3))) (-5 *2 (-108))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))))
-(((*1 *2 *3 *3 *1)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-3 *3 (-589 *1)))
- (-4 *1 (-992 *4 *5 *6 *3)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1136 (-523))) (-4 *1 (-594 *3)) (-4 *3 (-1123))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-594 *3)) (-4 *3 (-1123)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-200 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-4 *1 (-231 *3))))
- ((*1 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-339) (-784)))
- (-5 *2 (-589 (-2 (|:| -3286 (-589 *3)) (|:| -2052 *5))))
- (-5 *1 (-165 *5 *3)) (-4 *3 (-1145 (-155 *5)))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-339) (-784)))
- (-5 *2 (-589 (-2 (|:| -3286 (-589 *3)) (|:| -2052 *4))))
- (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-796 *5))) (-14 *5 (-589 (-1087))) (-4 *6 (-427))
+ (-12 (-5 *2 (-396 (-1085 (-525)))) (-5 *1 (-173)) (-5 *3 (-525)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-972 *4 *5)) (-4 *4 (-13 (-786) (-286) (-138) (-951)))
+ (-14 *5 (-591 (-1089)))
(-5 *2
- (-2 (|:| |dpolys| (-589 (-225 *5 *6)))
- (|:| |coords| (-589 (-523)))))
- (-5 *1 (-446 *5 *6 *7)) (-5 *3 (-589 (-225 *5 *6))) (-4 *7 (-427)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-589 (-883 *3))) (-4 *3 (-427)) (-5 *1 (-336 *3 *4))
- (-14 *4 (-589 (-1087)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-427))
- (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-425 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-589 *7)) (-5 *3 (-1070)) (-4 *7 (-880 *4 *5 *6))
- (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-5 *1 (-425 *4 *5 *6 *7))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-589 *7)) (-5 *3 (-1070)) (-4 *7 (-880 *4 *5 *6))
- (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-5 *1 (-425 *4 *5 *6 *7))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-339)) (-4 *3 (-732)) (-4 *4 (-786))
- (-5 *1 (-475 *2 *3 *4 *5)) (-4 *5 (-880 *2 *3 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-589 (-719 *3 (-796 *4)))) (-4 *3 (-427))
- (-14 *4 (-589 (-1087))) (-5 *1 (-574 *3 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-311 *3 *4 *5 *6)) (-4 *3 (-339)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-4 *6 (-318 *3 *4 *5))
+ (-591 (-2 (|:| -2274 (-1085 *4)) (|:| -3572 (-591 (-885 *4))))))
+ (-5 *1 (-1195 *4 *5 *6)) (-14 *6 (-591 (-1089)))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-786) (-286) (-138) (-951)))
(-5 *2
- (-2 (|:| -2323 (-389 *4 (-383 *4) *5 *6)) (|:| |principalPart| *6)))))
+ (-591 (-2 (|:| -2274 (-1085 *5)) (|:| -3572 (-591 (-885 *5))))))
+ (-5 *1 (-1195 *5 *6 *7)) (-5 *3 (-591 (-885 *5)))
+ (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-786) (-286) (-138) (-951)))
+ (-5 *2
+ (-591 (-2 (|:| -2274 (-1085 *5)) (|:| -3572 (-591 (-885 *5))))))
+ (-5 *1 (-1195 *5 *6 *7)) (-5 *3 (-591 (-885 *5)))
+ (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-339))
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-786) (-286) (-138) (-951)))
(-5 *2
- (-2 (|:| |poly| *6) (|:| -2031 (-383 *6))
- (|:| |special| (-383 *6))))
- (-5 *1 (-667 *5 *6)) (-5 *3 (-383 *6))))
+ (-591 (-2 (|:| -2274 (-1085 *5)) (|:| -3572 (-591 (-885 *5))))))
+ (-5 *1 (-1195 *5 *6 *7)) (-5 *3 (-591 (-885 *5)))
+ (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089)))))
((*1 *2 *3)
- (-12 (-4 *4 (-339)) (-5 *2 (-589 *3)) (-5 *1 (-827 *3 *4))
- (-4 *3 (-1145 *4))))
- ((*1 *2 *3 *4 *4)
- (|partial| -12 (-5 *4 (-710)) (-4 *5 (-339))
- (-5 *2 (-2 (|:| -2428 *3) (|:| -2438 *3))) (-5 *1 (-827 *3 *5))
- (-4 *3 (-1145 *5))))
- ((*1 *2 *3 *2 *4 *4)
- (-12 (-5 *2 (-589 *9)) (-5 *3 (-589 *8)) (-5 *4 (-108))
- (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-992 *5 *6 *7 *8)) (-4 *5 (-427))
- (-4 *6 (-732)) (-4 *7 (-786)) (-5 *1 (-990 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
- (-12 (-5 *2 (-589 *9)) (-5 *3 (-589 *8)) (-5 *4 (-108))
- (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-992 *5 *6 *7 *8)) (-4 *5 (-427))
- (-4 *6 (-732)) (-4 *7 (-786)) (-5 *1 (-990 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4)
- (-12 (-5 *2 (-589 *9)) (-5 *3 (-589 *8)) (-5 *4 (-108))
- (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-1025 *5 *6 *7 *8)) (-4 *5 (-427))
- (-4 *6 (-732)) (-4 *7 (-786)) (-5 *1 (-1057 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
- (-12 (-5 *2 (-589 *9)) (-5 *3 (-589 *8)) (-5 *4 (-108))
- (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-1025 *5 *6 *7 *8)) (-4 *5 (-427))
- (-4 *6 (-732)) (-4 *7 (-786)) (-5 *1 (-1057 *5 *6 *7 *8 *9)))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-1087)) (-4 *4 (-973)) (-4 *4 (-786))
- (-5 *2 (-2 (|:| |var| (-562 *1)) (|:| -3262 (-523))))
- (-4 *1 (-406 *4))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-110)) (-4 *4 (-973)) (-4 *4 (-786))
- (-5 *2 (-2 (|:| |var| (-562 *1)) (|:| -3262 (-523))))
- (-4 *1 (-406 *4))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1028)) (-4 *3 (-786))
- (-5 *2 (-2 (|:| |var| (-562 *1)) (|:| -3262 (-523))))
- (-4 *1 (-406 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |val| (-823 *3)) (|:| -3262 (-710))))
- (-5 *1 (-823 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-880 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *2 (-2 (|:| |var| *5) (|:| -3262 (-710))))))
+ (-12 (-4 *4 (-13 (-786) (-286) (-138) (-951)))
+ (-5 *2
+ (-591 (-2 (|:| -2274 (-1085 *4)) (|:| -3572 (-591 (-885 *4))))))
+ (-5 *1 (-1195 *4 *5 *6)) (-5 *3 (-591 (-885 *4)))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-591 (-1089))))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816)) (-5 *3 (-525))))
((*1 *2 *3)
- (|partial| -12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-973))
- (-4 *7 (-880 *6 *4 *5))
- (-5 *2 (-2 (|:| |var| *5) (|:| -3262 (-523))))
- (-5 *1 (-881 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-339)
- (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $))
- (-15 -2171 (*7 $))))))))
-(((*1 *2)
- (-12 (-4 *4 (-339)) (-5 *2 (-852)) (-5 *1 (-304 *3 *4))
- (-4 *3 (-305 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-339)) (-5 *2 (-772 (-852))) (-5 *1 (-304 *3 *4))
- (-4 *3 (-305 *4))))
- ((*1 *2) (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-5 *2 (-852))))
- ((*1 *2)
- (-12 (-4 *1 (-1186 *3)) (-4 *3 (-339)) (-5 *2 (-772 (-852))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *1 *1) (-4 *1 (-464)))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
+ (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816)) (-5 *3 (-525))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816)) (-5 *3 (-525)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-975)) (-4 *7 (-975))
+ (-4 *6 (-1147 *5)) (-5 *2 (-1085 (-1085 *7)))
+ (-5 *1 (-474 *5 *6 *4 *7)) (-4 *4 (-1147 *6)))))
(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-854))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816))
+ (-5 *3 (-591 (-525))))))
+(((*1 *1 *1) (-5 *1 (-205)))
+ ((*1 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206))))
+ ((*1 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *1 *1) (-4 *1 (-1053))) ((*1 *1 *1 *1) (-4 *1 (-1053))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-766)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-631 *5)) (-5 *4 (-1171 *5)) (-4 *5 (-341))
+ (-5 *2 (-108)) (-5 *1 (-612 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-341)) (-4 *6 (-13 (-351 *5) (-10 -7 (-6 -4251))))
+ (-4 *4 (-13 (-351 *5) (-10 -7 (-6 -4251)))) (-5 *2 (-108))
+ (-5 *1 (-613 *5 *6 *4 *3)) (-4 *3 (-629 *5 *6 *4)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-591 (-273 *4))) (-5 *1 (-575 *3 *4 *5)) (-4 *3 (-788))
+ (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-14 *5 (-854)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-341)) (-4 *3 (-975))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3857 *1)))
+ (-4 *1 (-790 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-308)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-591 (-2 (|:| -1348 (-1085 *6)) (|:| -2008 (-525)))))
+ (-4 *6 (-286)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108))
+ (-5 *1 (-684 *4 *5 *6 *7)) (-4 *7 (-882 *6 *4 *5))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1050 *2)) (-4 *2 (-975)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1 (-1042 *4 *3 *5))) (-4 *4 (-37 (-385 (-525))))
+ (-4 *4 (-975)) (-4 *3 (-788)) (-5 *1 (-1042 *4 *3 *5))
+ (-4 *5 (-882 *4 (-497 *3) *3))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1 (-1120 *4))) (-5 *3 (-1089)) (-5 *1 (-1120 *4))
+ (-4 *4 (-37 (-385 (-525)))) (-4 *4 (-975)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-281)) (-4 *2 (-1125))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-564 *1))) (-5 *3 (-591 *1)) (-4 *1 (-281))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-273 *1))) (-4 *1 (-281))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-273 *1)) (-4 *1 (-281)))))
+(((*1 *1 *2 *3 *4)
(-12
(-5 *3
- (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))
- (-5 *2 (-589 (-1087))) (-5 *1 (-244))))
+ (-591
+ (-2 (|:| |scalar| (-385 (-525))) (|:| |coeff| (-1085 *2))
+ (|:| |logand| (-1085 *2)))))
+ (-5 *4 (-591 (-2 (|:| |integrand| *2) (|:| |intvar| *2))))
+ (-4 *2 (-341)) (-5 *1 (-542 *2)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3 *4 *2 *5)
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-591 (-825 *6)))
+ (-5 *5 (-1 (-822 *6 *8) *8 (-825 *6) (-822 *6 *8))) (-4 *6 (-1018))
+ (-4 *8 (-13 (-975) (-566 (-825 *6)) (-966 *7))) (-5 *2 (-822 *6 *8))
+ (-4 *7 (-13 (-975) (-788))) (-5 *1 (-874 *6 *7 *8)))))
+(((*1 *2 *3) (-12 (-5 *3 (-591 (-51))) (-5 *2 (-1176)) (-5 *1 (-797)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2 (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4))))
+ (-5 *1 (-995 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-517) (-788) (-966 (-525))))
+ (-5 *2 (-157 (-294 *4))) (-5 *1 (-170 *4 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 (-157 *4))))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-157 *3)) (-5 *1 (-1115 *4 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *4))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6))
+ (-5 *2 (-591 (-2 (|:| -3529 *1) (|:| -1976 (-591 *7)))))
+ (-5 *3 (-591 *7)) (-4 *1 (-1119 *4 *5 *6 *7)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4)))
+ (-5 *2 (-2 (|:| |num| (-1171 *4)) (|:| |den| *4))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-591 (-591 *3))) (-4 *3 (-788)) (-5 *1 (-1097 *3)))))
+(((*1 *2 *1 *3 *3 *3 *2)
+ (-12 (-5 *3 (-712)) (-5 *1 (-619 *2)) (-4 *2 (-1018)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-854)) (-5 *1 (-1019 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 (-525))) (-5 *1 (-130 *3 *4 *5)) (-14 *3 (-525))
+ (-14 *4 (-712)) (-4 *5 (-160)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-985 (-953 *4) (-1085 (-953 *4)))) (-5 *3 (-796))
+ (-5 *1 (-953 *4)) (-4 *4 (-13 (-786) (-341) (-951))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-13 (-786) (-341))) (-5 *2 (-108)) (-5 *1 (-985 *4 *3))
+ (-4 *3 (-1147 *4)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-631 *3)) (-4 *3 (-286)) (-5 *1 (-641 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-341)) (-4 *5 (-517))
+ (-5 *2
+ (-2 (|:| |minor| (-591 (-854))) (|:| -1317 *3)
+ (|:| |minors| (-591 (-591 (-854)))) (|:| |ops| (-591 *3))))
+ (-5 *1 (-88 *5 *3)) (-5 *4 (-854)) (-4 *3 (-601 *5)))))
+(((*1 *1) (-5 *1 (-146))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-631 *2)) (-4 *2 (-160)) (-5 *1 (-137 *2))))
((*1 *2 *3)
- (-12 (-5 *3 (-1083 *7)) (-4 *7 (-880 *6 *4 *5)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-973)) (-5 *2 (-589 *5))
- (-5 *1 (-297 *4 *5 *6 *7))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-315 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 *2) (-4 *5 (-363))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-406 *3)) (-4 *3 (-786)) (-5 *2 (-589 (-1087)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-589 (-823 *3))) (-5 *1 (-823 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-880 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *2 (-589 *5))))
+ (-12 (-4 *4 (-160)) (-4 *2 (-1147 *4)) (-5 *1 (-164 *4 *2 *3))
+ (-4 *3 (-666 *4 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-631 (-385 (-885 *5)))) (-5 *4 (-1089))
+ (-5 *2 (-885 *5)) (-5 *1 (-271 *5)) (-4 *5 (-429))))
((*1 *2 *3)
- (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-973))
- (-4 *7 (-880 *6 *4 *5)) (-5 *2 (-589 *5))
- (-5 *1 (-881 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-339)
- (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $)) (-15 -2171 (*7 $)))))))
+ (-12 (-5 *3 (-631 (-385 (-885 *4)))) (-5 *2 (-885 *4))
+ (-5 *1 (-271 *4)) (-4 *4 (-429))))
((*1 *2 *1)
- (-12 (-5 *2 (-1018 (-1087))) (-5 *1 (-896 *3)) (-4 *3 (-897))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-902 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-731))
- (-4 *5 (-786)) (-5 *2 (-589 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-589 *5))))
+ (-12 (-4 *1 (-348 *3 *2)) (-4 *3 (-160)) (-4 *2 (-1147 *3))))
((*1 *2 *3)
- (-12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-515)) (-5 *2 (-589 (-1087)))
- (-5 *1 (-969 *4)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-589 (-562 *6))) (-5 *4 (-1087)) (-5 *2 (-562 *6))
- (-4 *6 (-406 *5)) (-4 *5 (-786)) (-5 *1 (-532 *5 *6)))))
-(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-339)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3))
- (-5 *1 (-490 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5))))
+ (-12 (-5 *3 (-631 (-157 (-385 (-525)))))
+ (-5 *2 (-885 (-157 (-385 (-525))))) (-5 *1 (-706 *4))
+ (-4 *4 (-13 (-341) (-786)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-631 (-157 (-385 (-525))))) (-5 *4 (-1089))
+ (-5 *2 (-885 (-157 (-385 (-525))))) (-5 *1 (-706 *5))
+ (-4 *5 (-13 (-341) (-786)))))
((*1 *2 *3)
- (|partial| -12 (-4 *4 (-515)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4))
- (-4 *7 (-921 *4)) (-4 *2 (-627 *7 *8 *9))
- (-5 *1 (-491 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-627 *4 *5 *6))
- (-4 *8 (-349 *7)) (-4 *9 (-349 *7))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973))
- (-4 *3 (-349 *2)) (-4 *4 (-349 *2)) (-4 *2 (-339))))
+ (-12 (-5 *3 (-631 (-385 (-525)))) (-5 *2 (-885 (-385 (-525))))
+ (-5 *1 (-720 *4)) (-4 *4 (-13 (-341) (-786)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-631 (-385 (-525)))) (-5 *4 (-1089))
+ (-5 *2 (-885 (-385 (-525)))) (-5 *1 (-720 *5))
+ (-4 *5 (-13 (-341) (-786))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-591 (-885 *3))) (-4 *3 (-429)) (-5 *1 (-338 *3 *4))
+ (-14 *4 (-591 (-1089)))))
((*1 *2 *2)
- (|partial| -12 (-4 *3 (-339)) (-4 *3 (-158)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *1 (-628 *3 *4 *5 *2))
- (-4 *2 (-627 *3 *4 *5))))
- ((*1 *1 *1)
- (|partial| -12 (-5 *1 (-629 *2)) (-4 *2 (-339)) (-4 *2 (-973))))
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-429))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-427 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-591 *7)) (-5 *3 (-1072)) (-4 *7 (-882 *4 *5 *6))
+ (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-5 *1 (-427 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-591 *7)) (-5 *3 (-1072)) (-4 *7 (-882 *4 *5 *6))
+ (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-5 *1 (-427 *4 *5 *6 *7))))
((*1 *1 *1)
- (|partial| -12 (-4 *1 (-1037 *2 *3 *4 *5)) (-4 *3 (-973))
- (-4 *4 (-216 *2 *3)) (-4 *5 (-216 *2 *3)) (-4 *3 (-339))))
- ((*1 *2 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-786)) (-5 *1 (-1095 *3)))))
+ (-12 (-4 *2 (-341)) (-4 *3 (-734)) (-4 *4 (-788))
+ (-5 *1 (-477 *2 *3 *4 *5)) (-4 *5 (-882 *2 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-591 (-721 *3 (-798 *4)))) (-4 *3 (-429))
+ (-14 *4 (-591 (-1089))) (-5 *1 (-576 *3 *4)))))
(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-710)) (-4 *5 (-515))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-899 *5 *3)) (-4 *3 (-1145 *5)))))
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4))))
+ (-5 *1 (-995 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
(((*1 *2 *2 *2)
- (-12 (-4 *3 (-515)) (-5 *1 (-899 *3 *2)) (-4 *2 (-1145 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-515))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1145 *2)) (-4 *2 (-973)) (-4 *2 (-515)))))
-(((*1 *2 *3 *4 *5 *6 *7 *7 *8)
- (-12
- (-5 *3
- (-2 (|:| |det| *12) (|:| |rows| (-589 (-523)))
- (|:| |cols| (-589 (-523)))))
- (-5 *4 (-629 *12)) (-5 *5 (-589 (-383 (-883 *9))))
- (-5 *6 (-589 (-589 *12))) (-5 *7 (-710)) (-5 *8 (-523))
- (-4 *9 (-13 (-284) (-136))) (-4 *12 (-880 *9 *11 *10))
- (-4 *10 (-13 (-786) (-564 (-1087)))) (-4 *11 (-732))
- (-5 *2
- (-2 (|:| |eqzro| (-589 *12)) (|:| |neqzro| (-589 *12))
- (|:| |wcond| (-589 (-883 *9)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1169 (-383 (-883 *9))))
- (|:| -2922 (-589 (-1169 (-383 (-883 *9)))))))))
- (-5 *1 (-855 *9 *10 *11 *12)))))
-(((*1 *1 *1) (-4 *1 (-982))))
-(((*1 *2 *1 *1)
+ (-12 (-4 *2 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525)))))))
+ (-5 *1 (-1044 *3 *2)) (-4 *3 (-1147 *2)))))
+(((*1 *2 *1)
(-12
(-5 *2
- (-2 (|:| -2275 *3) (|:| |gap| (-710)) (|:| -3429 (-721 *3))
- (|:| -3143 (-721 *3))))
- (-5 *1 (-721 *3)) (-4 *3 (-973))))
- ((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-786))
- (-5 *2
- (-2 (|:| -2275 *1) (|:| |gap| (-710)) (|:| -3429 *1)
- (|:| -3143 *1)))
- (-4 *1 (-987 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *2
- (-2 (|:| -2275 *1) (|:| |gap| (-710)) (|:| -3429 *1)
- (|:| -3143 *1)))
- (-4 *1 (-987 *3 *4 *5)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-786)) (-5 *1 (-679 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *1 *1) (-4 *1 (-464)))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1083 (-383 (-1083 *2)))) (-5 *4 (-562 *2))
- (-4 *2 (-13 (-406 *5) (-27) (-1109)))
- (-4 *5 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *1 (-519 *5 *2 *6)) (-4 *6 (-1016))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1083 *1)) (-4 *1 (-880 *4 *5 *3)) (-4 *4 (-973))
- (-4 *5 (-732)) (-4 *3 (-786))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1083 *4)) (-4 *4 (-973)) (-4 *1 (-880 *4 *5 *3))
- (-4 *5 (-732)) (-4 *3 (-786))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-1083 *2))) (-4 *5 (-732)) (-4 *4 (-786))
- (-4 *6 (-973))
- (-4 *2
- (-13 (-339)
- (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $)) (-15 -2171 (*7 $)))))
- (-5 *1 (-881 *5 *4 *6 *7 *2)) (-4 *7 (-880 *6 *5 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-1083 (-383 (-883 *5))))) (-5 *4 (-1087))
- (-5 *2 (-383 (-883 *5))) (-5 *1 (-969 *5)) (-4 *5 (-515)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1068 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523)))))
-(((*1 *1 *1 *2 *2 *1)
- (-12 (-5 *2 (-523)) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))))
+ (-591
+ (-2 (|:| |scalar| (-385 (-525))) (|:| |coeff| (-1085 *3))
+ (|:| |logand| (-1085 *3)))))
+ (-5 *1 (-542 *3)) (-4 *3 (-341)))))
+(((*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1176)) (-5 *1 (-357))))
+ ((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-357)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-525)) (-5 *1 (-294 *3)) (-4 *3 (-517)) (-4 *3 (-788)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1089)) (-5 *2 (-591 (-897))) (-5 *1 (-270)))))
+(((*1 *1) (-4 *1 (-23))) ((*1 *1) (-4 *1 (-33)))
+ ((*1 *1)
+ (-12 (-5 *1 (-130 *2 *3 *4)) (-14 *2 (-525)) (-14 *3 (-712))
+ (-4 *4 (-160))))
+ ((*1 *1) (-4 *1 (-668))) ((*1 *1) (-5 *1 (-1089))))
(((*1 *2 *3)
- (-12 (-4 *4 (-973)) (-5 *2 (-523)) (-5 *1 (-418 *4 *3 *5))
- (-4 *3 (-1145 *4))
- (-4 *5 (-13 (-380) (-964 *4) (-339) (-1109) (-261))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-513 *3)) (-4 *3 (-13 (-380) (-1109))) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-989 *4 *3)) (-4 *4 (-13 (-784) (-339)))
- (-4 *3 (-1145 *4)) (-5 *2 (-108)))))
-(((*1 *1 *1) (-12 (-5 *1 (-896 *2)) (-4 *2 (-897)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087)) (-5 *2 (-1 (-203) (-203))) (-5 *1 (-643 *3))
- (-4 *3 (-564 (-499)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1087)) (-5 *2 (-1 (-203) (-203) (-203)))
- (-5 *1 (-643 *3)) (-4 *3 (-564 (-499))))))
-(((*1 *2 *1) (-12 (-5 *1 (-540 *2)) (-4 *2 (-339)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1123)) (-5 *1 (-166 *3 *2)) (-4 *2 (-616 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-145 *3 *2))
- (-4 *2 (-406 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087)))
- (-14 *3 (-589 (-1087))) (-4 *4 (-363))))
- ((*1 *1 *1) (-4 *1 (-464)))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
-(((*1 *1 *2 *3)
- (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-973)) (-4 *3 (-731))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-589 (-852))) (-5 *1 (-141 *4 *2 *5)) (-14 *4 (-852))
- (-4 *2 (-339)) (-14 *5 (-922 *4 *2))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-653 *5 *6 *7)) (-4 *5 (-786))
- (-4 *6 (-216 (-1271 *4) (-710)))
- (-14 *7
- (-1 (-108) (-2 (|:| -2557 *5) (|:| -3262 *6))
- (-2 (|:| -2557 *5) (|:| -3262 *6))))
- (-14 *4 (-589 (-1087))) (-4 *2 (-158))
- (-5 *1 (-436 *4 *2 *5 *6 *7 *8)) (-4 *8 (-880 *2 *6 (-796 *4)))))
- ((*1 *1 *2 *3)
- (-12 (-4 *1 (-479 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-786))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-523)) (-4 *2 (-515)) (-5 *1 (-570 *2 *4))
- (-4 *4 (-1145 *2))))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-710)) (-4 *1 (-648 *2)) (-4 *2 (-973))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-675 *2 *3)) (-4 *2 (-973)) (-4 *3 (-666))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 *5)) (-5 *3 (-589 (-710))) (-4 *1 (-680 *4 *5))
- (-4 *4 (-973)) (-4 *5 (-786))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-710)) (-4 *1 (-680 *4 *2)) (-4 *4 (-973))
- (-4 *2 (-786))))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-710)) (-4 *1 (-788 *2)) (-4 *2 (-973))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 *6)) (-5 *3 (-589 (-710))) (-4 *1 (-880 *4 *5 *6))
- (-4 *4 (-973)) (-4 *5 (-732)) (-4 *6 (-786))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-710)) (-4 *1 (-880 *4 *5 *2)) (-4 *4 (-973))
- (-4 *5 (-732)) (-4 *2 (-786))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 *6)) (-5 *3 (-589 *5)) (-4 *1 (-902 *4 *5 *6))
- (-4 *4 (-973)) (-4 *5 (-731)) (-4 *6 (-786))))
- ((*1 *1 *1 *2 *3)
- (-12 (-4 *1 (-902 *4 *3 *2)) (-4 *4 (-973)) (-4 *3 (-731))
- (-4 *2 (-786)))))
+ (-12 (-4 *4 (-37 (-385 (-525))))
+ (-5 *2 (-2 (|:| -3144 (-1070 *4)) (|:| -3156 (-1070 *4))))
+ (-5 *1 (-1076 *4)) (-5 *3 (-1070 *4)))))
+(((*1 *2)
+ (-12 (-4 *3 (-975)) (-5 *2 (-890 (-654 *3 *4))) (-5 *1 (-654 *3 *4))
+ (-4 *4 (-1147 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848))))
- ((*1 *2) (-12 (-5 *2 (-835 (-523))) (-5 *1 (-848)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3)
- (-12 (-5 *4 (-629 (-523))) (-5 *5 (-108)) (-5 *7 (-629 (-203)))
- (-5 *3 (-523)) (-5 *6 (-203)) (-5 *2 (-962)) (-5 *1 (-694)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-108)) (-5 *3 (-589 (-240))) (-5 *1 (-238))))
- ((*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-240)))))
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1018)) (-4 *6 (-1018))
+ (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-626 *4 *5 *6)) (-4 *4 (-1018)))))
+(((*1 *1) (-12 (-4 *1 (-403 *2)) (-4 *2 (-346)) (-4 *2 (-1018)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160))
+ (-5 *2 (-631 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-631 *3)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-301 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-126))
+ (-4 *3 (-733)))))
+(((*1 *1 *2 *3 *3 *4 *4)
+ (-12 (-5 *2 (-885 (-525))) (-5 *3 (-1089))
+ (-5 *4 (-1013 (-385 (-525)))) (-5 *1 (-30)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *1) (-5 *1 (-144))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-1087)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-826))
- (-5 *3
- (-2 (|:| |pde| (-589 (-292 (-203))))
- (|:| |constraints|
- (-589
- (-2 (|:| |start| (-203)) (|:| |finish| (-203))
- (|:| |grid| (-710)) (|:| |boundaryType| (-523))
- (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203))))))
- (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070))
- (|:| |tol| (-203))))
- (-5 *2 (-962)))))
-(((*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-108))
- (-5 *6 (-203)) (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-66 APROD))))
- (-5 *8 (-3 (|:| |fn| (-364)) (|:| |fp| (-71 MSOLVE))))
- (-5 *2 (-962)) (-5 *1 (-696)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515))
- (-5 *2 (-108)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-284)) (-5 *2 (-108)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087)))
- (-14 *3 (-589 (-1087))) (-4 *4 (-363))))
- ((*1 *1 *1) (-4 *1 (-464)))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
+ (-12 (-5 *4 (-1 (-1070 *3))) (-5 *2 (-1070 *3)) (-5 *1 (-1074 *3))
+ (-4 *3 (-37 (-385 (-525)))) (-4 *3 (-975)))))
+(((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1125)) (-5 *1 (-1048 *4 *2))
+ (-4 *2 (-13 (-558 (-525) *4) (-10 -7 (-6 -4250) (-6 -4251))))))
((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-1087))
- (-4 *4 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-569 *4 *2)) (-4 *2 (-13 (-1109) (-889) (-29 *4))))))
-(((*1 *2)
- (-12 (-5 *2 (-1169 (-1017 *3 *4))) (-5 *1 (-1017 *3 *4))
- (-14 *3 (-852)) (-14 *4 (-852)))))
+ (-12 (-4 *3 (-788)) (-4 *3 (-1125)) (-5 *1 (-1048 *3 *2))
+ (-4 *2 (-13 (-558 (-525) *3) (-10 -7 (-6 -4250) (-6 -4251)))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-629 (-383 (-883 (-523)))))
- (-5 *2
- (-589
- (-2 (|:| |radval| (-292 (-523))) (|:| |radmult| (-523))
- (|:| |radvect| (-589 (-629 (-292 (-523))))))))
- (-5 *1 (-958)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1094)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1167 *3)) (-4 *3 (-1123)) (-4 *3 (-973))
- (-5 *2 (-629 *3)))))
+ (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3))
+ (-4 *3 (-13 (-341) (-1111) (-932)))))
+ ((*1 *2)
+ (|partial| -12 (-4 *4 (-1129)) (-4 *5 (-1147 (-385 *2)))
+ (-4 *2 (-1147 *4)) (-5 *1 (-319 *3 *4 *2 *5))
+ (-4 *3 (-320 *4 *2 *5))))
+ ((*1 *2)
+ (|partial| -12 (-4 *1 (-320 *3 *2 *4)) (-4 *3 (-1129))
+ (-4 *4 (-1147 (-385 *2))) (-4 *2 (-1147 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-760)) (-5 *4 (-51)) (-5 *2 (-1174)) (-5 *1 (-770)))))
+ (|partial| -12 (-5 *3 (-591 (-242))) (-5 *4 (-1089))
+ (-5 *1 (-241 *2)) (-4 *2 (-1125))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-591 (-242))) (-5 *4 (-1089)) (-5 *2 (-51))
+ (-5 *1 (-242)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-219)) (-5 *3 (-1070))))
- ((*1 *2 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-219))))
- ((*1 *1 *2) (-12 (-5 *2 (-144)) (-5 *1 (-805)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-794)) (-5 *1 (-366 *3 *4 *5)) (-14 *3 (-710))
- (-14 *4 (-710)) (-4 *5 (-158)))))
+ (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1018)) (-4 *5 (-1018))
+ (-5 *2 (-1 *5 *4)) (-5 *1 (-625 *4 *5)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-203)) (|:| |xend| (-203))
- (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203)))
- (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203)))
- (|:| |abserr| (-203)) (|:| |relerr| (-203))))
- (-5 *2 (-355)) (-5 *1 (-185)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *5 (-562 *4)) (-5 *6 (-1087))
- (-4 *4 (-13 (-406 *7) (-27) (-1109)))
- (-4 *7 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4))))
- (-5 *1 (-525 *7 *4 *3)) (-4 *3 (-599 *4)) (-4 *3 (-1016)))))
+ (-12 (-5 *3 (-525)) (-4 *4 (-734)) (-4 *5 (-788)) (-4 *2 (-975))
+ (-5 *1 (-299 *4 *5 *2 *6)) (-4 *6 (-882 *2 *4 *5)))))
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-130 *2 *3 *4)) (-14 *2 (-525)) (-14 *3 (-712))
+ (-4 *4 (-160))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-788) (-517))) (-5 *1 (-147 *4 *2))
+ (-4 *2 (-408 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1011 *2)) (-4 *2 (-408 *4)) (-4 *4 (-13 (-788) (-517)))
+ (-5 *1 (-147 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1011 *1)) (-4 *1 (-149))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-149)) (-5 *2 (-1089))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-442 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-5 *1 (-1189 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-160)))))
(((*1 *2 *3)
- (|partial| -12 (-4 *2 (-1016)) (-5 *1 (-1101 *3 *2)) (-4 *3 (-1016)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1083 (-883 *6))) (-4 *6 (-515))
- (-4 *2 (-880 (-383 (-883 *6)) *5 *4)) (-5 *1 (-672 *5 *4 *6 *2))
- (-4 *5 (-732))
- (-4 *4 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $))))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087)))
- (-14 *3 (-589 (-1087))) (-4 *4 (-363))))
- ((*1 *1 *1) (-4 *1 (-464)))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
+ (-12 (-5 *3 (-591 (-1089))) (-5 *2 (-1176)) (-5 *1 (-1092))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 (-1089))) (-5 *3 (-1089)) (-5 *2 (-1176))
+ (-5 *1 (-1092))))
+ ((*1 *2 *3 *4 *1)
+ (-12 (-5 *4 (-591 (-1089))) (-5 *3 (-1089)) (-5 *2 (-1176))
+ (-5 *1 (-1092)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *2 (-710))))
+ (-12 (-5 *2 (-591 (-2 (|:| |gen| *3) (|:| -1409 (-525)))))
+ (-5 *1 (-339 *3)) (-4 *3 (-1018))))
((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973))
- (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-710)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-108)) (-5 *1 (-768)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1123)) (-5 *2 (-710)) (-5 *1 (-166 *4 *3))
- (-4 *3 (-616 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1016)) (-4 *6 (-1016))
- (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-624 *4 *5 *6)) (-4 *4 (-1016)))))
-(((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-710)) (-5 *1 (-721 *3)) (-4 *3 (-973))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *1 (-893 *3 *2)) (-4 *2 (-124)) (-4 *3 (-515))
- (-4 *3 (-973)) (-4 *2 (-731))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-710)) (-5 *1 (-1083 *3)) (-4 *3 (-973))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-900)) (-4 *2 (-124)) (-5 *1 (-1089 *3)) (-4 *3 (-515))
- (-4 *3 (-973))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-710)) (-5 *1 (-1142 *4 *3)) (-14 *4 (-1087))
- (-4 *3 (-973)))))
-(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-962)) (-5 *1 (-776))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-292 (-355)))) (-5 *4 (-589 (-355)))
- (-5 *2 (-962)) (-5 *1 (-776)))))
+ (-12 (-5 *2 (-591 (-2 (|:| |gen| *3) (|:| -1409 (-712)))))
+ (-5 *1 (-364 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-2 (|:| -1348 *3) (|:| -2008 (-525)))))
+ (-5 *1 (-396 *3)) (-4 *3 (-517))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-2 (|:| |gen| *3) (|:| -1409 (-712)))))
+ (-5 *1 (-760 *3)) (-4 *3 (-788)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-852))
- (-5 *2 (-1169 (-589 (-2 (|:| -2058 *4) (|:| -2557 (-1034))))))
- (-5 *1 (-322 *4)) (-4 *4 (-325)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-1026)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1089 (-383 (-523)))) (-5 *2 (-383 (-523)))
- (-5 *1 (-170)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-589 (-589 (-157)))))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-710)) (-5 *1 (-98 *3)) (-4 *3 (-1016)))))
-(((*1 *1 *1) (-4 *1 (-91)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
+ (-12 (-5 *3 (-1056 *4 *2)) (-14 *4 (-854))
+ (-4 *2 (-13 (-975) (-10 -7 (-6 (-4252 "*"))))) (-5 *1 (-835 *4 *2)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *2 (-710))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-49 *3 *4)) (-4 *3 (-975))
+ (-14 *4 (-591 (-1089)))))
((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973))
- (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-710)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-973)) (-5 *1 (-652 *3 *2)) (-4 *2 (-1145 *3)))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-203 *3 *4)) (-4 *3 (-13 (-975) (-788)))
+ (-14 *4 (-591 (-1089))))))
+(((*1 *1)
+ (-12 (-5 *1 (-130 *2 *3 *4)) (-14 *2 (-525)) (-14 *3 (-712))
+ (-4 *4 (-160)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-240))) (-5 *4 (-1087)) (-5 *2 (-108))
- (-5 *1 (-240)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
+ (-12 (-5 *3 (-591 (-721 *5 (-798 *6)))) (-5 *4 (-108)) (-4 *5 (-429))
+ (-14 *6 (-591 (-1089))) (-5 *2 (-591 (-972 *5 *6)))
+ (-5 *1 (-576 *5 *6)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-273 *2)) (-4 *2 (-668)) (-4 *2 (-1125)))))
+(((*1 *2 *3 *4 *4 *5 *6)
+ (-12 (-5 *3 (-591 (-591 (-876 (-205))))) (-5 *4 (-807))
+ (-5 *5 (-854)) (-5 *6 (-591 (-242))) (-5 *2 (-445)) (-5 *1 (-1175))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-591 (-876 (-205))))) (-5 *2 (-445))
+ (-5 *1 (-1175))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-591 (-876 (-205))))) (-5 *4 (-591 (-242)))
+ (-5 *2 (-445)) (-5 *1 (-1175)))))
+(((*1 *2 *3 *3 *1)
+ (|partial| -12 (-5 *3 (-1089)) (-5 *2 (-1022)) (-5 *1 (-270)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-2 (|:| -1844 (-523)) (|:| -3286 (-589 *3))))
- (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *1 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-21)) (-4 *2 (-1123)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-687)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *6))
- (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-589 (-836 *3))) (-5 *1 (-835 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-852)) (-5 *1 (-725)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1157 *3)) (-4 *3 (-1123)) (-5 *2 (-710)))))
-(((*1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1094)))))
-(((*1 *1 *1) (-4 *1 (-91)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 *4))))
- (-5 *1 (-820 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016))))
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-517))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 (-1182 *4 *5 *6 *7)))
+ (-5 *1 (-1182 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-591 *9)) (-5 *4 (-1 (-108) *9 *9))
+ (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-989 *6 *7 *8)) (-4 *6 (-517))
+ (-4 *7 (-734)) (-4 *8 (-788)) (-5 *2 (-591 (-1182 *6 *7 *8 *9)))
+ (-5 *1 (-1182 *6 *7 *8 *9)))))
+(((*1 *1) (-5 *1 (-146))))
+(((*1 *2 *2) (-12 (-5 *2 (-591 (-631 (-294 (-525))))) (-5 *1 (-960)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357))
+ (-5 *2
+ (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525))
+ (|:| |success| (-108))))
+ (-5 *1 (-730)) (-5 *5 (-525)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1184 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160))
+ (-5 *1 (-609 *3 *4))))
((*1 *2 *1)
- (-12 (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016))
- (-4 *7 (-1016)) (-5 *2 (-589 *1)) (-4 *1 (-1019 *3 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-823 *4)) (-4 *4 (-1016)) (-5 *2 (-589 *5))
- (-5 *1 (-821 *4 *5)) (-4 *5 (-1123)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23))
+ (|partial| -12 (-5 *2 (-609 *3 *4)) (-5 *1 (-1189 *3 *4))
+ (-4 *3 (-788)) (-4 *4 (-160)))))
+(((*1 *1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-525)) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))))
+(((*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174))))
+ ((*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174)))))
+(((*1 *1)
+ (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23))
(-14 *4 *3))))
-(((*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-857))))
- ((*1 *1 *1 *2 *2) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-858))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-858))))
- ((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1152 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1129 *3))
- (-5 *2 (-383 (-523))))))
-(((*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-966)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-499))) (-5 *1 (-499)))))
-(((*1 *2 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-710))) (-5 *3 (-108)) (-5 *1 (-1076 *4 *5))
- (-14 *4 (-852)) (-4 *5 (-973)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-284)) (-4 *6 (-349 *5)) (-4 *4 (-349 *5))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4))))
- (-5 *1 (-1038 *5 *6 *4 *3)) (-4 *3 (-627 *5 *6 *4)))))
+ (-12 (-5 *2 (-1085 (-385 (-885 *3)))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1142 *5 *4)) (-4 *4 (-759)) (-14 *5 (-1087))
- (-5 *2 (-589 *4)) (-5 *1 (-1030 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-763)))))
-(((*1 *1 *1) (-4 *1 (-91)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-355)) (-5 *2 (-203)) (-5 *1 (-282)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1070)) (-5 *4 (-523)) (-5 *5 (-629 (-203)))
- (-5 *2 (-962)) (-5 *1 (-697)))))
-(((*1 *1 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-794)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4248)) (-4 *1 (-213 *3))
- (-4 *3 (-1016))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-259 *3)) (-4 *3 (-1123)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-1105)))))
-(((*1 *1 *1) (-4 *1 (-575)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-576 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930) (-1109))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-523)) (|has| *1 (-6 -4239)) (-4 *1 (-380))
- (-5 *2 (-852)))))
-(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
- (-12 (-5 *3 (-1070)) (-5 *4 (-523)) (-5 *5 (-629 (-155 (-203))))
- (-5 *2 (-962)) (-5 *1 (-694)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6)
- (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *5 (-203))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN)))) (-5 *2 (-962))
- (-5 *1 (-689)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1169 *4)) (-4 *4 (-1123)) (-4 *1 (-216 *3 *4)))))
-(((*1 *1) (-12 (-5 *1 (-205 *2)) (-4 *2 (-13 (-339) (-1109))))))
+ (-12 (-4 *4 (-1147 *2)) (-4 *2 (-1129)) (-5 *1 (-139 *2 *4 *3))
+ (-4 *3 (-1147 (-385 *4))))))
+(((*1 *2) (-12 (-5 *2 (-1061 (-1072))) (-5 *1 (-369)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-589 *3)) (-5 *1 (-42 *4 *3))
- (-4 *3 (-393 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1169 (-1169 *4))) (-4 *4 (-973)) (-5 *2 (-629 *4))
- (-5 *1 (-956 *4)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1068 *4)) (-5 *3 (-523)) (-4 *4 (-973))
- (-5 *1 (-1072 *4))))
- ((*1 *1 *2 *2 *1)
- (-12 (-5 *2 (-523)) (-5 *1 (-1161 *3 *4 *5)) (-4 *3 (-973))
- (-14 *4 (-1087)) (-14 *5 *3))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-3
- (|:| |noa|
- (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203)))
- (|:| |lb| (-589 (-779 (-203))))
- (|:| |cf| (-589 (-292 (-203))))
- (|:| |ub| (-589 (-779 (-203))))))
- (|:| |lsa|
- (-2 (|:| |lfn| (-589 (-292 (-203))))
- (|:| -4105 (-589 (-203)))))))
- (-5 *2 (-589 (-1070))) (-5 *1 (-244)))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-126)))))
-(((*1 *2)
- (-12 (-4 *3 (-515)) (-5 *2 (-589 *4)) (-5 *1 (-42 *3 *4))
- (-4 *4 (-393 *3)))))
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (-5 *2 (-591 (-205))) (-5 *1 (-186)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-763)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 *8)) (-5 *4 (-710)) (-4 *8 (-880 *5 *7 *6))
- (-4 *5 (-13 (-284) (-136))) (-4 *6 (-13 (-786) (-564 (-1087))))
- (-4 *7 (-732))
- (-5 *2
- (-589
- (-2 (|:| |det| *8) (|:| |rows| (-589 (-523)))
- (|:| |cols| (-589 (-523))))))
- (-5 *1 (-855 *5 *6 *7 *8)))))
-(((*1 *1 *1) (-12 (-4 *1 (-222 *2)) (-4 *2 (-1123))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339)))))
-(((*1 *2 *1) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158))))
+ (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1018)) (-4 *5 (-1018))
+ (-5 *2 (-1 *5)) (-5 *1 (-625 *4 *5)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-712)) (-5 *3 (-108)) (-5 *1 (-106))))
+ ((*1 *2 *2) (-12 (-5 *2 (-854)) (|has| *1 (-6 -4241)) (-4 *1 (-382))))
+ ((*1 *2) (-12 (-4 *1 (-382)) (-5 *2 (-854)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089))))
+ (-4 *6 (-734)) (-5 *2 (-385 (-885 *4))) (-5 *1 (-857 *4 *5 *6 *3))
+ (-4 *3 (-882 *4 *6 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-631 *7)) (-4 *7 (-882 *4 *6 *5))
+ (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089))))
+ (-4 *6 (-734)) (-5 *2 (-631 (-385 (-885 *4))))
+ (-5 *1 (-857 *4 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-882 *4 *6 *5))
+ (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089))))
+ (-4 *6 (-734)) (-5 *2 (-591 (-385 (-885 *4))))
+ (-5 *1 (-857 *4 *5 *6 *7)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *3) (-12 (-5 *3 (-591 *2)) (-5 *1 (-1100 *2)) (-4 *2 (-341)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-854)) (-5 *1 (-727)))))
+(((*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-837 (-525))) (-5 *1 (-850))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-5 *2 (-292 *4))
- (-5 *1 (-168 *4 *3)) (-4 *3 (-13 (-27) (-1109) (-406 (-155 *4))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-1113 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *3))))))
-(((*1 *2 *1) (-12 (-4 *1 (-616 *3)) (-4 *3 (-1123)) (-5 *2 (-710)))))
-(((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-303 *3)) (-4 *3 (-1123))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-710)) (-5 *1 (-486 *3 *4)) (-4 *3 (-1123))
- (-14 *4 (-523)))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-370)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-710)) (-5 *1 (-792 *2)) (-4 *2 (-158))))
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-712)) (-5 *1 (-794 *2)) (-4 *2 (-160))))
((*1 *2 *3)
- (-12 (-5 *2 (-1083 (-523))) (-5 *1 (-873)) (-5 *3 (-523)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-589 *1)) (-4 *1 (-987 *4 *5 *6)) (-4 *4 (-973))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *2 (-108))))
- ((*1 *2 *3 *1 *4)
- (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *1 (-1117 *5 *6 *7 *3))
- (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *3 (-987 *5 *6 *7))
- (-5 *2 (-108)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *2 *2 *3 *3 *4)
- (-12 (-5 *4 (-710)) (-4 *3 (-515)) (-5 *1 (-899 *3 *2))
- (-4 *2 (-1145 *3)))))
+ (-12 (-5 *2 (-1085 (-525))) (-5 *1 (-875)) (-5 *3 (-525)))))
(((*1 *2 *2 *2)
- (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-955 *3))))
+ (-12 (-4 *3 (-734)) (-4 *4 (-788)) (-4 *5 (-286))
+ (-5 *1 (-849 *3 *4 *5 *2)) (-4 *2 (-882 *5 *3 *4))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-589 (-629 *3))) (-4 *3 (-973)) (-5 *1 (-955 *3))))
- ((*1 *2 *2) (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-955 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-589 (-629 *3))) (-4 *3 (-973)) (-5 *1 (-955 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-219))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-1070))) (-5 *2 (-1174)) (-5 *1 (-219)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-126)))))
-(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-355)) (-5 *1 (-985)))))
-(((*1 *1) (-5 *1 (-144))))
-(((*1 *2 *1) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-5 *2 (-292 *4))
- (-5 *1 (-168 *4 *3)) (-4 *3 (-13 (-27) (-1109) (-406 (-155 *4))))))
- ((*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158))))
- ((*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-1113 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *3))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087))
- (-4 *5 (-13 (-427) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-540 *3)) (-5 *1 (-516 *5 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *5))))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-589
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-710)) (|:| |poli| *3)
- (|:| |polj| *3))))
- (-4 *5 (-732)) (-4 *3 (-880 *4 *5 *6)) (-4 *4 (-427)) (-4 *6 (-786))
- (-5 *1 (-424 *4 *5 *6 *3)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2))
- (-4 *4 (-349 *2)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-1092))) (-5 *1 (-1092))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-1092))) (-5 *1 (-1092)))))
+ (-12 (-5 *2 (-1085 *6)) (-4 *6 (-882 *5 *3 *4)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *5 (-286)) (-5 *1 (-849 *3 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-882 *6 *4 *5))
+ (-5 *1 (-849 *4 *5 *6 *2)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-4 *6 (-286)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1096)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *4 (-525)) (-5 *6 (-1 (-1176) (-1171 *5) (-1171 *5) (-357)))
+ (-5 *3 (-1171 (-357))) (-5 *5 (-357)) (-5 *2 (-1176))
+ (-5 *1 (-729))))
+ ((*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3)
+ (-12 (-5 *4 (-525)) (-5 *6 (-1 (-1176) (-1171 *5) (-1171 *5) (-357)))
+ (-5 *3 (-1171 (-357))) (-5 *5 (-357)) (-5 *2 (-1176))
+ (-5 *1 (-729)))))
+(((*1 *1 *1) (-4 *1 (-1058))))
(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *1 *1) (-5 *1 (-499))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-589 (-1083 (-523)))) (-5 *1 (-171)) (-5 *3 (-523)))))
-(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-121 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-108)))))
-(((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-858)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-515)) (-4 *3 (-973))
- (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-788 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-94 *5)) (-4 *5 (-515)) (-4 *5 (-973))
- (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-789 *5 *3))
- (-4 *3 (-788 *5)))))
+ (-12 (-5 *2 (-1013 *3)) (-5 *1 (-1011 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *2) (-12 (-5 *1 (-1138 *2)) (-4 *2 (-1125)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087)))
- (-14 *3 (-589 (-1087))) (-4 *4 (-363))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-800 *3)) (-5 *2 (-523))))
- ((*1 *1 *1) (-4 *1 (-930)))
- ((*1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-940))))
- ((*1 *1 *2) (-12 (-5 *2 (-383 (-523))) (-4 *1 (-940))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-940)) (-5 *2 (-710))))
- ((*1 *1 *1) (-4 *1 (-940))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-928 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523)))))))
- (-5 *2 (-589 *4)) (-5 *1 (-1042 *3 *4)) (-4 *3 (-1145 *4))))
- ((*1 *2 *3 *3 *3 *3 *3)
- (-12 (-4 *3 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523)))))))
- (-5 *2 (-589 *3)) (-5 *1 (-1042 *4 *3)) (-4 *4 (-1145 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-203)) (-5 *2 (-383 (-523))) (-5 *1 (-282)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-144))))
- ((*1 *2 *1) (-12 (-5 *2 (-144)) (-5 *1 (-805))))
- ((*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))))
+ (-12 (-5 *1 (-1078 *2 *3)) (-14 *2 (-854)) (-4 *3 (-975)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-632 *3))))
+ ((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-632 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-203))) (-5 *2 (-589 (-1070))) (-5 *1 (-172))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-203))) (-5 *2 (-589 (-1070))) (-5 *1 (-277))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-203))) (-5 *2 (-589 (-1070))) (-5 *1 (-282)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-110)) (-4 *4 (-973)) (-5 *1 (-654 *4 *2))
- (-4 *2 (-591 *4))))
- ((*1 *2 *3 *2) (-12 (-5 *3 (-110)) (-5 *1 (-773 *2)) (-4 *2 (-973)))))
+ (-12 (-5 *3 (-1089)) (-5 *2 (-501)) (-5 *1 (-500 *4))
+ (-4 *4 (-1125)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-128)))))
(((*1 *1)
- (|partial| -12 (-4 *1 (-343 *2)) (-4 *2 (-515)) (-4 *2 (-158)))))
-(((*1 *1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1 *1) (-4 *1 (-119))))
+ (-12 (-4 *1 (-382)) (-2247 (|has| *1 (-6 -4241)))
+ (-2247 (|has| *1 (-6 -4233)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-403 *2)) (-4 *2 (-1018)) (-4 *2 (-788))))
+ ((*1 *2 *1) (-12 (-4 *1 (-771 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1 *1) (-4 *1 (-788))) ((*1 *1) (-5 *1 (-1036))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-517) (-138))) (-5 *2 (-591 *3))
+ (-5 *1 (-1141 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))))
+(((*1 *1 *1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-525)) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1089)) (-5 *5 (-591 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *6)))
+ (-4 *6 (-13 (-429) (-788) (-138) (-966 (-525)) (-587 (-525))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-518 *6 *3)))))
+(((*1 *2 *2 *2 *3 *4)
+ (-12 (-5 *3 (-94 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-975))
+ (-5 *1 (-791 *5 *2)) (-4 *2 (-790 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-327)) (-5 *3 (-525)) (-5 *2 (-1099 (-854) (-712))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1 (-357))) (-5 *1 (-968)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-301 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-126))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-339 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-364 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-594 *3 *4 *5))
+ (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-712)) (-4 *5 (-517))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-901 *5 *3)) (-4 *3 (-1147 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *2 (-517)) (-4 *2 (-429)) (-5 *1 (-901 *2 *3))
+ (-4 *3 (-1147 *2)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-47))) (-5 *2 (-394 *3)) (-5 *1 (-38 *3))
- (-4 *3 (-1145 (-47)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-394 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1145 (-47)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-47))) (-4 *5 (-786)) (-4 *6 (-732))
- (-5 *2 (-394 *3)) (-5 *1 (-41 *5 *6 *3)) (-4 *3 (-880 (-47) *6 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-47))) (-4 *5 (-786)) (-4 *6 (-732))
- (-4 *7 (-880 (-47) *6 *5)) (-5 *2 (-394 (-1083 *7)))
- (-5 *1 (-41 *5 *6 *7)) (-5 *3 (-1083 *7))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-284)) (-5 *2 (-394 *3)) (-5 *1 (-153 *4 *3))
- (-4 *3 (-1145 (-155 *4)))))
+ (-12 (-5 *4 (-273 (-781 *3))) (-4 *3 (-13 (-27) (-1111) (-408 *5)))
+ (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2
+ (-3 (-781 *3)
+ (-2 (|:| |leftHandLimit| (-3 (-781 *3) "failed"))
+ (|:| |rightHandLimit| (-3 (-781 *3) "failed")))
+ "failed"))
+ (-5 *1 (-584 *5 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-108)) (-4 *4 (-13 (-339) (-784))) (-5 *2 (-394 *3))
- (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *4 (-13 (-339) (-784))) (-5 *2 (-394 *3))
- (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-339) (-784))) (-5 *2 (-394 *3))
- (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-325)) (-5 *2 (-394 *3)) (-5 *1 (-195 *4 *3))
- (-4 *3 (-1145 *4))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-394 *3)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523)))))
+ (|partial| -12 (-5 *4 (-273 *3)) (-5 *5 (-1072))
+ (-4 *3 (-13 (-27) (-1111) (-408 *6)))
+ (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-781 *3)) (-5 *1 (-584 *6 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-710)) (-5 *2 (-394 *3)) (-5 *1 (-417 *3))
- (-4 *3 (-1145 (-523)))))
+ (-12 (-5 *4 (-273 (-781 (-885 *5)))) (-4 *5 (-429))
+ (-5 *2
+ (-3 (-781 (-385 (-885 *5)))
+ (-2 (|:| |leftHandLimit| (-3 (-781 (-385 (-885 *5))) "failed"))
+ (|:| |rightHandLimit| (-3 (-781 (-385 (-885 *5))) "failed")))
+ "failed"))
+ (-5 *1 (-585 *5)) (-5 *3 (-385 (-885 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-710))) (-5 *2 (-394 *3)) (-5 *1 (-417 *3))
- (-4 *3 (-1145 (-523)))))
+ (-12 (-5 *4 (-273 (-385 (-885 *5)))) (-5 *3 (-385 (-885 *5)))
+ (-4 *5 (-429))
+ (-5 *2
+ (-3 (-781 *3)
+ (-2 (|:| |leftHandLimit| (-3 (-781 *3) "failed"))
+ (|:| |rightHandLimit| (-3 (-781 *3) "failed")))
+ "failed"))
+ (-5 *1 (-585 *5))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-589 (-710))) (-5 *5 (-710)) (-5 *2 (-394 *3))
- (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-710)) (-5 *2 (-394 *3)) (-5 *1 (-417 *3))
- (-4 *3 (-1145 (-523)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-394 (-155 (-523)))) (-5 *1 (-421))
- (-5 *3 (-155 (-523)))))
- ((*1 *2 *3)
- (-12
- (-4 *4
- (-13 (-786)
- (-10 -8 (-15 -3077 ((-1087) $))
- (-15 -2354 ((-3 $ "failed") (-1087))))))
- (-4 *5 (-732)) (-4 *7 (-515)) (-5 *2 (-394 *3))
- (-5 *1 (-431 *4 *5 *6 *7 *3)) (-4 *6 (-515))
- (-4 *3 (-880 *7 *5 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-284)) (-5 *2 (-394 (-1083 *4))) (-5 *1 (-433 *4))
- (-5 *3 (-1083 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-394 *6) *6)) (-4 *6 (-1145 *5)) (-4 *5 (-339))
- (-4 *7 (-13 (-339) (-136) (-664 *5 *6))) (-5 *2 (-394 *3))
- (-5 *1 (-465 *5 *6 *7 *3)) (-4 *3 (-1145 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-394 (-1083 *7)) (-1083 *7)))
- (-4 *7 (-13 (-284) (-136))) (-4 *5 (-786)) (-4 *6 (-732))
- (-5 *2 (-394 *3)) (-5 *1 (-503 *5 *6 *7 *3))
- (-4 *3 (-880 *7 *6 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-394 (-1083 *7)) (-1083 *7)))
- (-4 *7 (-13 (-284) (-136))) (-4 *5 (-786)) (-4 *6 (-732))
- (-4 *8 (-880 *7 *6 *5)) (-5 *2 (-394 (-1083 *8)))
- (-5 *1 (-503 *5 *6 *7 *8)) (-5 *3 (-1083 *8))))
- ((*1 *2 *3) (-12 (-5 *2 (-394 *3)) (-5 *1 (-517 *3)) (-4 *3 (-508))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-589 *5) *6))
- (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-4 *6 (-1145 *5)) (-5 *2 (-589 (-596 (-383 *6))))
- (-5 *1 (-600 *5 *6)) (-5 *3 (-596 (-383 *6)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-27))
- (-4 *4 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-4 *5 (-1145 *4)) (-5 *2 (-589 (-596 (-383 *5))))
- (-5 *1 (-600 *4 *5)) (-5 *3 (-596 (-383 *5)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-758 *4)) (-4 *4 (-786)) (-5 *2 (-589 (-614 *4)))
- (-5 *1 (-614 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-523)) (-5 *2 (-589 *3)) (-5 *1 (-635 *3))
- (-4 *3 (-1145 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-786)) (-4 *5 (-732)) (-4 *6 (-325)) (-5 *2 (-394 *3))
- (-5 *1 (-637 *4 *5 *6 *3)) (-4 *3 (-880 *6 *5 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-786)) (-4 *5 (-732)) (-4 *6 (-325))
- (-4 *7 (-880 *6 *5 *4)) (-5 *2 (-394 (-1083 *7)))
- (-5 *1 (-637 *4 *5 *6 *7)) (-5 *3 (-1083 *7))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-732))
- (-4 *5
- (-13 (-786)
- (-10 -8 (-15 -3077 ((-1087) $))
- (-15 -2354 ((-3 $ "failed") (-1087))))))
- (-4 *6 (-284)) (-5 *2 (-394 *3)) (-5 *1 (-670 *4 *5 *6 *3))
- (-4 *3 (-880 (-883 *6) *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-732))
- (-4 *5 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $))))) (-4 *6 (-515))
- (-5 *2 (-394 *3)) (-5 *1 (-672 *4 *5 *6 *3))
- (-4 *3 (-880 (-383 (-883 *6)) *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-13 (-284) (-136)))
- (-5 *2 (-394 *3)) (-5 *1 (-673 *4 *5 *6 *3))
- (-4 *3 (-880 (-383 *6) *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-786)) (-4 *5 (-732)) (-4 *6 (-13 (-284) (-136)))
- (-5 *2 (-394 *3)) (-5 *1 (-681 *4 *5 *6 *3))
- (-4 *3 (-880 *6 *5 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-786)) (-4 *5 (-732)) (-4 *6 (-13 (-284) (-136)))
- (-4 *7 (-880 *6 *5 *4)) (-5 *2 (-394 (-1083 *7)))
- (-5 *1 (-681 *4 *5 *6 *7)) (-5 *3 (-1083 *7))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-394 *3)) (-5 *1 (-935 *3))
- (-4 *3 (-1145 (-383 (-523))))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-394 *3)) (-5 *1 (-967 *3))
- (-4 *3 (-1145 (-383 (-883 (-523)))))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-1145 (-383 (-523))))
- (-4 *5 (-13 (-339) (-136) (-664 (-383 (-523)) *4)))
- (-5 *2 (-394 *3)) (-5 *1 (-998 *4 *5 *3)) (-4 *3 (-1145 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-1145 (-383 (-883 (-523)))))
- (-4 *5 (-13 (-339) (-136) (-664 (-383 (-883 (-523))) *4)))
- (-5 *2 (-394 *3)) (-5 *1 (-1000 *4 *5 *3)) (-4 *3 (-1145 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-427))
- (-4 *7 (-880 *6 *4 *5)) (-5 *2 (-394 (-1083 (-383 *7))))
- (-5 *1 (-1082 *4 *5 *6 *7)) (-5 *3 (-1083 (-383 *7)))))
- ((*1 *2 *1) (-12 (-5 *2 (-394 *1)) (-4 *1 (-1127))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-394 *3)) (-5 *1 (-1134 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-523)) (-5 *1 (-394 *2)) (-4 *2 (-515)))))
+ (|partial| -12 (-5 *4 (-273 (-385 (-885 *6)))) (-5 *5 (-1072))
+ (-5 *3 (-385 (-885 *6))) (-4 *6 (-429)) (-5 *2 (-781 *3))
+ (-5 *1 (-585 *6)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-4 *1 (-55 *4 *2 *5)) (-4 *4 (-1125))
+ (-4 *5 (-351 *4)) (-4 *2 (-351 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-4 *1 (-978 *4 *5 *6 *2 *7)) (-4 *6 (-975))
+ (-4 *7 (-218 *4 *6)) (-4 *2 (-218 *5 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1068 (-1068 *4))) (-5 *2 (-1068 *4)) (-5 *1 (-1072 *4))
- (-4 *4 (-37 (-383 (-523)))) (-4 *4 (-973)))))
+ (-12 (-5 *3 (-854)) (-5 *2 (-1171 (-1171 (-525)))) (-5 *1 (-443)))))
+(((*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-1125)))))
+(((*1 *1 *2 *2 *2 *2 *2 *2 *2 *2)
+ (-12 (-4 *1 (-738 *2)) (-4 *2 (-160))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-929 *3)) (-4 *3 (-160)) (-5 *1 (-740 *3)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-897))) (-5 *1 (-270)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-4 *1 (-35 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-5 *2 (-2 (|:| -2019 *3) (|:| -1221 *4))))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1085 *1)) (-5 *3 (-1089)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-885 *1)) (-4 *1 (-27))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1089)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-788) (-517)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-788) (-517))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1123)) (-5 *1 (-1046 *4 *2))
- (-4 *2 (-13 (-556 (-523) *4) (-10 -7 (-6 -4248) (-6 -4249))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-786)) (-4 *3 (-1123)) (-5 *1 (-1046 *3 *2))
- (-4 *2 (-13 (-556 (-523) *3) (-10 -7 (-6 -4248) (-6 -4249)))))))
-(((*1 *2 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171))))
- ((*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171)))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-252)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-786)) (-5 *2 (-589 (-589 (-589 *4))))
- (-5 *1 (-1095 *4)) (-5 *3 (-589 (-589 *4))))))
-(((*1 *1) (-5 *1 (-1090))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-355))))
- ((*1 *1 *1 *1) (-4 *1 (-508)))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339))))
- ((*1 *1 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-710)))))
-(((*1 *1) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)) (-5 *3 (-523))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1169 (-3 (-443) "undefined"))) (-5 *1 (-1170)))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4))
- (-4 *3 (-343 *4))))
- ((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-523)) (-5 *1 (-292 *3)) (-4 *3 (-515)) (-4 *3 (-786)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 (-2 (|:| |gen| *3) (|:| -1847 *4))))
- (-4 *3 (-1016)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-592 *3 *4 *5)))))
+ (|partial| -12 (-5 *2 (-572 *4 *5))
+ (-5 *3
+ (-1 (-2 (|:| |ans| *4) (|:| -3400 *4) (|:| |sol?| (-108)))
+ (-525) *4))
+ (-4 *4 (-341)) (-4 *5 (-1147 *4)) (-5 *1 (-535 *4 *5)))))
+(((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7))
+ (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-5 *2 (-591 (-956 *5 *6 *7 *8))) (-5 *1 (-956 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7))
+ (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-5 *2 (-591 (-1060 *5 *6 *7 *8))) (-5 *1 (-1060 *5 *6 *7 *8)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1011 (-779 (-355)))) (-5 *2 (-1011 (-779 (-203))))
- (-5 *1 (-282)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1051))))
+ (-12 (-5 *3 (-1171 (-591 (-2 (|:| -3024 *4) (|:| -2226 (-1036))))))
+ (-4 *4 (-327)) (-5 *2 (-712)) (-5 *1 (-324 *4))))
+ ((*1 *2)
+ (-12 (-5 *2 (-712)) (-5 *1 (-329 *3 *4)) (-14 *3 (-854))
+ (-14 *4 (-854))))
+ ((*1 *2)
+ (-12 (-5 *2 (-712)) (-5 *1 (-330 *3 *4)) (-4 *3 (-327))
+ (-14 *4
+ (-3 (-1085 *3)
+ (-1171 (-591 (-2 (|:| -3024 *3) (|:| -2226 (-1036)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-712)) (-5 *1 (-331 *3 *4)) (-4 *3 (-327))
+ (-14 *4 (-854)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-308)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-108)) (-5 *1 (-110)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160))
+ (-5 *2 (-631 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-631 *3)))))
+(((*1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1) (-4 *1 (-119)))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-223)) (-5 *2 (-525))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-450)) (-5 *2 (-525))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-668)) (-5 *2 (-712))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1030)) (-5 *2 (-854)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))))
- (-5 *2 (-589 (-383 (-523)))) (-5 *1 (-947 *4))
- (-4 *4 (-1145 (-523))))))
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-712)) (|:| |poli| *2)
+ (|:| |polj| *2)))
+ (-4 *5 (-734)) (-4 *2 (-882 *4 *5 *6)) (-5 *1 (-426 *4 *5 *6 *2))
+ (-4 *4 (-429)) (-4 *6 (-788)))))
+(((*1 *2 *1) (-12 (-4 *1 (-224 *2)) (-4 *2 (-1125))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-4 *1 (-1159 *3)) (-4 *3 (-1125))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))))
(((*1 *2 *3 *3)
- (-12 (|has| *2 (-6 (-4250 "*"))) (-4 *5 (-349 *2)) (-4 *6 (-349 *2))
- (-4 *2 (-973)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1145 *2))
- (-4 *4 (-627 *2 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-1174))
- (-5 *1 (-424 *4 *5 *6 *3)) (-4 *3 (-880 *4 *5 *6)))))
+ (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1103 *4 *5))
+ (-4 *4 (-1018)) (-4 *5 (-1018)))))
+(((*1 *1 *1) (-4 *1 (-517))))
(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-1127)) (-4 *5 (-1145 *4))
- (-5 *2 (-2 (|:| |radicand| (-383 *5)) (|:| |deg| (-710))))
- (-5 *1 (-137 *4 *5 *3)) (-4 *3 (-1145 (-383 *5))))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427)) (-4 *5 (-732))
- (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))))
+ (-12 (-5 *2 (-525)) (-5 *1 (-422 *3)) (-4 *3 (-382)) (-4 *3 (-975)))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4))
+ (-4 *3 (-345 *4))))
+ ((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-203)) (-5 *2 (-108)) (-5 *1 (-276 *4 *5)) (-14 *4 *3)
- (-14 *5 *3)))
+ (-12 (-4 *4 (-429))
+ (-5 *2
+ (-591
+ (-2 (|:| |eigval| (-3 (-385 (-885 *4)) (-1079 (-1089) (-885 *4))))
+ (|:| |eigmult| (-712))
+ (|:| |eigvec| (-591 (-631 (-385 (-885 *4))))))))
+ (-5 *1 (-271 *4)) (-5 *3 (-631 (-385 (-885 *4)))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-313 *3 *4 *5 *6)) (-4 *3 (-341)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-4 *6 (-320 *3 *4 *5))
+ (-5 *2
+ (-2 (|:| -1247 (-391 *4 (-385 *4) *5 *6)) (|:| |principalPart| *6)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1011 (-779 (-203)))) (-5 *3 (-203)) (-5 *2 (-108))
- (-5 *1 (-282))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108))
- (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 *4))
- (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1172))))
- ((*1 *2 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1172)))))
-(((*1 *1 *1) (-12 (-4 *1 (-222 *2)) (-4 *2 (-1123))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786))))
- ((*1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1145 *2)) (-4 *2 (-973)) (-4 *2 (-515)))))
-(((*1 *1 *1 *2 *1)
- (-12 (-5 *2 (-523)) (-5 *1 (-1068 *3)) (-4 *3 (-1123))))
- ((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-710)) (-5 *1 (-110)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-299 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-124))
- (-4 *3 (-731)))))
-(((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-1172)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-970 *4 *5)) (-4 *4 (-13 (-784) (-284) (-136) (-949)))
- (-14 *5 (-589 (-1087))) (-5 *2 (-589 (-589 (-951 (-383 *4)))))
- (-5 *1 (-1193 *4 *5 *6)) (-14 *6 (-589 (-1087)))))
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-341))
+ (-5 *2
+ (-2 (|:| |poly| *6) (|:| -1572 (-385 *6))
+ (|:| |special| (-385 *6))))
+ (-5 *1 (-669 *5 *6)) (-5 *3 (-385 *6))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-341)) (-5 *2 (-591 *3)) (-5 *1 (-829 *3 *4))
+ (-4 *3 (-1147 *4))))
((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-108))
- (-4 *5 (-13 (-784) (-284) (-136) (-949)))
- (-5 *2 (-589 (-589 (-951 (-383 *5))))) (-5 *1 (-1193 *5 *6 *7))
- (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-108))
- (-4 *5 (-13 (-784) (-284) (-136) (-949)))
- (-5 *2 (-589 (-589 (-951 (-383 *5))))) (-5 *1 (-1193 *5 *6 *7))
- (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-883 *4)))
- (-4 *4 (-13 (-784) (-284) (-136) (-949)))
- (-5 *2 (-589 (-589 (-951 (-383 *4))))) (-5 *1 (-1193 *4 *5 *6))
- (-14 *5 (-589 (-1087))) (-14 *6 (-589 (-1087))))))
-(((*1 *1 *1) (-4 *1 (-508))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-562 *1)) (-4 *1 (-406 *4)) (-4 *4 (-786))
- (-4 *4 (-515)) (-5 *2 (-383 (-1083 *1)))))
+ (|partial| -12 (-5 *4 (-712)) (-4 *5 (-341))
+ (-5 *2 (-2 (|:| -3388 *3) (|:| -3400 *3))) (-5 *1 (-829 *3 *5))
+ (-4 *3 (-1147 *5))))
+ ((*1 *2 *3 *2 *4 *4)
+ (-12 (-5 *2 (-591 *9)) (-5 *3 (-591 *8)) (-5 *4 (-108))
+ (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-994 *5 *6 *7 *8)) (-4 *5 (-429))
+ (-4 *6 (-734)) (-4 *7 (-788)) (-5 *1 (-992 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
+ (-12 (-5 *2 (-591 *9)) (-5 *3 (-591 *8)) (-5 *4 (-108))
+ (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-994 *5 *6 *7 *8)) (-4 *5 (-429))
+ (-4 *6 (-734)) (-4 *7 (-788)) (-5 *1 (-992 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4)
+ (-12 (-5 *2 (-591 *9)) (-5 *3 (-591 *8)) (-5 *4 (-108))
+ (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-1027 *5 *6 *7 *8)) (-4 *5 (-429))
+ (-4 *6 (-734)) (-4 *7 (-788)) (-5 *1 (-1059 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
+ (-12 (-5 *2 (-591 *9)) (-5 *3 (-591 *8)) (-5 *4 (-108))
+ (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-1027 *5 *6 *7 *8)) (-4 *5 (-429))
+ (-4 *6 (-734)) (-4 *7 (-788)) (-5 *1 (-1059 *5 *6 *7 *8 *9)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1107)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2 (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4))))
+ (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205))
+ (-5 *2 (-964)) (-5 *1 (-693)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1072)) (-5 *3 (-591 (-242))) (-5 *1 (-240))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-242))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-697)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-341))
+ (-5 *2 (-2 (|:| -3060 (-385 *6)) (|:| |coeff| (-385 *6))))
+ (-5 *1 (-535 *5 *6)) (-5 *3 (-385 *6)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-838 *4)) (-4 *4 (-1018)) (-5 *2 (-591 (-712)))
+ (-5 *1 (-837 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2805 *4)))
+ (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-807))))
+ ((*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1070 *4)) (-5 *3 (-525)) (-4 *4 (-975))
+ (-5 *1 (-1074 *4))))
+ ((*1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-525)) (-5 *1 (-1163 *3 *4 *5)) (-4 *3 (-975))
+ (-14 *4 (-1089)) (-14 *5 *3))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-964)) (-5 *1 (-284))))
+ ((*1 *2 *3) (-12 (-5 *3 (-591 (-964))) (-5 *2 (-964)) (-5 *1 (-284))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-596 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-596 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-596 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-596 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *1 *1) (-5 *1 (-987)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1070 (-1070 *4))) (-5 *2 (-1070 *4)) (-5 *1 (-1067 *4))
+ (-4 *4 (-1125))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-712)) (|:| |poli| *7)
+ (|:| |polj| *7)))
+ (-4 *5 (-734)) (-4 *7 (-882 *4 *5 *6)) (-4 *4 (-429)) (-4 *6 (-788))
+ (-5 *2 (-108)) (-5 *1 (-426 *4 *5 *6 *7)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-357)) (-5 *1 (-187))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-591 (-357))) (-5 *2 (-357)) (-5 *1 (-187)))))
+(((*1 *2 *3 *3 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-1 (-205) (-205) (-205)))
+ (-5 *4 (-3 (-1 (-205) (-205) (-205) (-205)) "undefined"))
+ (-5 *5 (-1013 (-205))) (-5 *6 (-591 (-242))) (-5 *2 (-1049 (-205)))
+ (-5 *1 (-638))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *4 (-562 *3)) (-4 *3 (-13 (-406 *6) (-27) (-1109)))
- (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *2 (-1083 (-383 (-1083 *3)))) (-5 *1 (-519 *6 *3 *7))
- (-5 *5 (-1083 *3)) (-4 *7 (-1016))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1165 *5)) (-14 *5 (-1087)) (-4 *6 (-973))
- (-5 *2 (-1142 *5 (-883 *6))) (-5 *1 (-878 *5 *6)) (-5 *3 (-883 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-880 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *2 (-1083 *3))))
- ((*1 *2 *1 *3)
- (-12 (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-786)) (-5 *2 (-1083 *1))
- (-4 *1 (-880 *4 *5 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-732)) (-4 *4 (-786)) (-4 *6 (-973))
- (-4 *7 (-880 *6 *5 *4)) (-5 *2 (-383 (-1083 *3)))
- (-5 *1 (-881 *5 *4 *6 *7 *3))
- (-4 *3
- (-13 (-339)
- (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $)) (-15 -2171 (*7 $)))))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-1083 *3))
- (-4 *3
- (-13 (-339)
- (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $)) (-15 -2171 (*7 $)))))
- (-4 *7 (-880 *6 *5 *4)) (-4 *5 (-732)) (-4 *4 (-786)) (-4 *6 (-973))
- (-5 *1 (-881 *5 *4 *6 *7 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087)) (-4 *5 (-515))
- (-5 *2 (-383 (-1083 (-383 (-883 *5))))) (-5 *1 (-969 *5))
- (-5 *3 (-383 (-883 *5))))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1083 *3)) (-4 *3 (-325)) (-5 *1 (-333 *3)))))
+ (-12 (-5 *3 (-1 (-876 (-205)) (-205) (-205))) (-5 *4 (-1013 (-205)))
+ (-5 *5 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-638))))
+ ((*1 *2 *2 *3 *4 *4 *5)
+ (-12 (-5 *2 (-1049 (-205))) (-5 *3 (-1 (-876 (-205)) (-205) (-205)))
+ (-5 *4 (-1013 (-205))) (-5 *5 (-591 (-242))) (-5 *1 (-638)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-1089)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-631 *3)) (-4 *3 (-286)) (-5 *1 (-641 *3)))))
+(((*1 *2 *3) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-522)) (-5 *3 (-525)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *5 (-921 *4))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-131 *4 *5 *3))
- (-4 *3 (-349 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *5 (-921 *4))
- (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4)))
- (-5 *1 (-474 *4 *5 *6 *3)) (-4 *6 (-349 *4)) (-4 *3 (-349 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-629 *5)) (-4 *5 (-921 *4)) (-4 *4 (-515))
- (-5 *2 (-2 (|:| |num| (-629 *4)) (|:| |den| *4)))
- (-5 *1 (-632 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-339) (-136) (-964 (-383 (-523)))))
- (-4 *6 (-1145 *5))
- (-5 *2 (-2 (|:| -1747 *7) (|:| |rh| (-589 (-383 *6)))))
- (-5 *1 (-746 *5 *6 *7 *3)) (-5 *4 (-589 (-383 *6)))
- (-4 *7 (-599 *6)) (-4 *3 (-599 (-383 *6)))))
+ (-12 (-5 *3 (-273 (-885 (-525))))
+ (-5 *2
+ (-2 (|:| |varOrder| (-591 (-1089)))
+ (|:| |inhom| (-3 (-591 (-1171 (-712))) "failed"))
+ (|:| |hom| (-591 (-1171 (-712))))))
+ (-5 *1 (-216)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *4 *5))
+ (-4 *5 (-13 (-27) (-1111) (-408 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *4 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-385 (-525)))
+ (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *5 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-273 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5)))
+ (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-273 *3)) (-5 *5 (-385 (-525)))
+ (-4 *3 (-13 (-27) (-1111) (-408 *6)))
+ (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *6 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 (-525))) (-5 *4 (-273 *6))
+ (-4 *6 (-13 (-27) (-1111) (-408 *5)))
+ (-4 *5 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-436 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1089)) (-5 *5 (-273 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *6)))
+ (-4 *6 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-436 *6 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *7 (-525))) (-5 *4 (-273 *7)) (-5 *5 (-1138 (-525)))
+ (-4 *7 (-13 (-27) (-1111) (-408 *6)))
+ (-4 *6 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-436 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-1089)) (-5 *5 (-273 *3)) (-5 *6 (-1138 (-525)))
+ (-4 *3 (-13 (-27) (-1111) (-408 *7)))
+ (-4 *7 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-436 *7 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-1 *8 (-385 (-525)))) (-5 *4 (-273 *8))
+ (-5 *5 (-1138 (-385 (-525)))) (-5 *6 (-385 (-525)))
+ (-4 *8 (-13 (-27) (-1111) (-408 *7)))
+ (-4 *7 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-436 *7 *8))))
+ ((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *4 (-1089)) (-5 *5 (-273 *3)) (-5 *6 (-1138 (-385 (-525))))
+ (-5 *7 (-385 (-525))) (-4 *3 (-13 (-27) (-1111) (-408 *8)))
+ (-4 *8 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-436 *8 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1070 (-2 (|:| |k| (-525)) (|:| |c| *3))))
+ (-4 *3 (-975)) (-5 *1 (-550 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-551 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1070 (-2 (|:| |k| (-525)) (|:| |c| *3))))
+ (-4 *3 (-975)) (-4 *1 (-1131 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-712))
+ (-5 *3 (-1070 (-2 (|:| |k| (-385 (-525))) (|:| |c| *4))))
+ (-4 *4 (-975)) (-4 *1 (-1152 *4))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-4 *1 (-1162 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1070 (-2 (|:| |k| (-712)) (|:| |c| *3))))
+ (-4 *3 (-975)) (-4 *1 (-1162 *3)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-2 (|:| |gen| *3) (|:| -1409 *4))))
+ (-4 *3 (-1018)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-594 *3 *4 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-286) (-138))) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-882 *4 *5 *6)) (-5 *2 (-591 (-591 *7)))
+ (-5 *1 (-425 *4 *5 *6 *7)) (-5 *3 (-591 *7))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-734))
+ (-4 *7 (-788)) (-4 *8 (-882 *5 *6 *7)) (-5 *2 (-591 (-591 *8)))
+ (-5 *1 (-425 *5 *6 *7 *8)) (-5 *3 (-591 *8))))
((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *5 (-921 *4))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1138 *4 *5 *3))
- (-4 *3 (-1145 *5)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-3 (-383 (-883 *6)) (-1077 (-1087) (-883 *6))))
- (-5 *5 (-710)) (-4 *6 (-427)) (-5 *2 (-589 (-629 (-383 (-883 *6)))))
- (-5 *1 (-269 *6)) (-5 *4 (-629 (-383 (-883 *6))))))
+ (-12 (-4 *4 (-13 (-286) (-138))) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-882 *4 *5 *6)) (-5 *2 (-591 (-591 *7)))
+ (-5 *1 (-425 *4 *5 *6 *7)) (-5 *3 (-591 *7))))
((*1 *2 *3 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-734))
+ (-4 *7 (-788)) (-4 *8 (-882 *5 *6 *7)) (-5 *2 (-591 (-591 *8)))
+ (-5 *1 (-425 *5 *6 *7 *8)) (-5 *3 (-591 *8)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-712)) (-4 *4 (-327)) (-5 *1 (-197 *4 *2))
+ (-4 *2 (-1147 *4)))))
+(((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-712)) (-5 *1 (-723 *3)) (-4 *3 (-975))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *1 (-895 *3 *2)) (-4 *2 (-126)) (-4 *3 (-517))
+ (-4 *3 (-975)) (-4 *2 (-733))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-712)) (-5 *1 (-1085 *3)) (-4 *3 (-975))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-902)) (-4 *2 (-126)) (-5 *1 (-1091 *3)) (-4 *3 (-517))
+ (-4 *3 (-975))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-712)) (-5 *1 (-1144 *4 *3)) (-14 *4 (-1089))
+ (-4 *3 (-975)))))
+(((*1 *1 *2 *1)
+ (-12 (|has| *1 (-6 -4250)) (-4 *1 (-142 *2)) (-4 *2 (-1125))
+ (-4 *2 (-1018))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4250)) (-4 *1 (-142 *3))
+ (-4 *3 (-1125))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-618 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *2 (-1 (-108) *4)) (-5 *3 (-525)) (-4 *4 (-1018))
+ (-5 *1 (-679 *4))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-5 *1 (-679 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1054 *3 *4)) (-4 *3 (-13 (-1018) (-33)))
+ (-4 *4 (-13 (-1018) (-33))) (-5 *1 (-1055 *3 *4)))))
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23))
+ (-14 *4 *3)))
+ ((*1 *1 *2 *3 *1)
+ (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23))
+ (-14 *4 *3)))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-619 *2)) (-4 *2 (-975)) (-4 *2 (-1018)))))
+(((*1 *2 *3) (-12 (-5 *3 (-385 (-525))) (-5 *2 (-205)) (-5 *1 (-284)))))
+(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |eigval| (-3 (-383 (-883 *5)) (-1077 (-1087) (-883 *5))))
- (|:| |eigmult| (-710)) (|:| |eigvec| (-589 *4))))
- (-4 *5 (-427)) (-5 *2 (-589 (-629 (-383 (-883 *5)))))
- (-5 *1 (-269 *5)) (-5 *4 (-629 (-383 (-883 *5)))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-589 (-1087))) (-4 *5 (-515))
- (-5 *2 (-589 (-589 (-271 (-383 (-883 *5)))))) (-5 *1 (-709 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-883 *4))) (-4 *4 (-515))
- (-5 *2 (-589 (-589 (-271 (-383 (-883 *4)))))) (-5 *1 (-709 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-629 *7))
- (-5 *5
- (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -2922 (-589 *6)))
- *7 *6))
- (-4 *6 (-339)) (-4 *7 (-599 *6))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1169 *6) "failed"))
- (|:| -2922 (-589 (-1169 *6)))))
- (-5 *1 (-752 *6 *7)) (-5 *4 (-1169 *6)))))
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (-5 *2 (-357)) (-5 *1 (-174)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3))
+ (-4 *3 (-13 (-341) (-1111) (-932))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-157 *5)) (-4 *5 (-13 (-408 *4) (-932) (-1111)))
+ (-4 *4 (-13 (-517) (-788)))
+ (-4 *2 (-13 (-408 (-157 *4)) (-932) (-1111)))
+ (-5 *1 (-554 *4 *5 *2)))))
+(((*1 *2 *2 *2 *3 *3)
+ (-12 (-5 *3 (-712)) (-4 *4 (-975)) (-5 *1 (-1143 *4 *2))
+ (-4 *2 (-1147 *4)))))
+(((*1 *2 *2) (-12 (-5 *1 (-148 *2)) (-4 *2 (-510))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-902)))))
+(((*1 *2 *1) (-12 (-4 *1 (-618 *2)) (-4 *2 (-1125)))))
+(((*1 *1 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-21)) (-4 *2 (-1125)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-138))
+ (-4 *3 (-286)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-908 *3 *4 *5 *6)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1070 *4)) (-5 *3 (-525)) (-4 *4 (-975))
+ (-5 *1 (-1074 *4))))
+ ((*1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-525)) (-5 *1 (-1163 *3 *4 *5)) (-4 *3 (-975))
+ (-14 *4 (-1089)) (-14 *5 *3))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 *1)) (|has| *1 (-6 -4251)) (-4 *1 (-940 *3))
+ (-4 *3 (-1125)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-591 (-876 (-205))))) (-5 *1 (-1121 *3))
+ (-4 *3 (-905)))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-825 *4)) (-4 *4 (-1018)) (-5 *2 (-108))
+ (-5 *1 (-822 *4 *5)) (-4 *5 (-1018))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-825 *5)) (-4 *5 (-1018)) (-5 *2 (-108))
+ (-5 *1 (-823 *5 *3)) (-4 *3 (-1125))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 *6)) (-5 *4 (-825 *5)) (-4 *5 (-1018))
+ (-4 *6 (-1125)) (-5 *2 (-108)) (-5 *1 (-823 *5 *6)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-157 (-205))) (-5 *5 (-525)) (-5 *6 (-1072))
+ (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1 *1) (-4 *1 (-119))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-854)) (-5 *4 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-51)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-987 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *2 (-786))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)))))
-(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-962)) (-5 *3 (-1087)) (-5 *1 (-172)))))
+ (-12 (-5 *1 (-1078 *2 *3)) (-14 *2 (-854)) (-4 *3 (-975)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1072)) (-5 *4 (-525)) (-5 *5 (-631 (-205)))
+ (-5 *2 (-964)) (-5 *1 (-699)))))
+(((*1 *2 *3 *2 *2)
+ (-12 (-5 *2 (-591 (-457 *4 *5))) (-5 *3 (-798 *4))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-429)) (-5 *1 (-579 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-455 *4 *5)) (-14 *4 (-589 (-1087))) (-4 *5 (-973))
- (-5 *2 (-883 *5)) (-5 *1 (-875 *4 *5)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-852)) (-5 *1 (-141 *3 *4 *5)) (-14 *3 *2)
- (-4 *4 (-339)) (-14 *5 (-922 *3 *4)))))
+ (-12 (-5 *3 (-294 (-205))) (-5 *2 (-385 (-525))) (-5 *1 (-284)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1016))
- (-4 *4 (-13 (-973) (-817 *3) (-786) (-564 (-823 *3))))
- (-5 *2 (-589 (-1087))) (-5 *1 (-995 *3 *4 *5))
- (-4 *5 (-13 (-406 *4) (-817 *3) (-564 (-823 *3)))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-794)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-629 *4)) (-4 *4 (-973)) (-5 *1 (-1054 *3 *4))
- (-14 *3 (-710)))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-562 *1))) (-4 *1 (-279)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-339)) (-4 *3 (-973))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4102 *1)))
- (-4 *1 (-788 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-339))
- (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-475 *3 *4 *5 *6)))))
+ (-12 (-4 *2 (-517)) (-5 *1 (-572 *2 *3)) (-4 *3 (-1147 *2)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *2 (-589 (-589 *3)))))
+ (-12 (-4 *1 (-304 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733))
+ (-5 *2 (-591 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973))
- (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-589 (-589 *5)))))
+ (-12 (-4 *1 (-360 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1018))
+ (-5 *2 (-591 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1070 *3)) (-5 *1 (-551 *3)) (-4 *3 (-975))))
((*1 *2 *1)
- (-12 (-5 *2 (-589 (-589 *3))) (-5 *1 (-1096 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *3 *4 *3 *4 *4 *4 *4 *4)
- (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *2 (-962))
- (-5 *1 (-695)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-370))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1104)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1094)))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-962)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-883 *5)) (-4 *5 (-973)) (-5 *2 (-455 *4 *5))
- (-5 *1 (-875 *4 *5)) (-14 *4 (-589 (-1087))))))
+ (-12 (-5 *2 (-591 *3)) (-5 *1 (-677 *3 *4)) (-4 *3 (-975))
+ (-4 *4 (-668))))
+ ((*1 *2 *1) (-12 (-4 *1 (-790 *3)) (-4 *3 (-975)) (-5 *2 (-591 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1162 *3)) (-4 *3 (-975)) (-5 *2 (-1070 *3)))))
(((*1 *2 *1)
- (-12
- (-5 *2
- (-3 (|:| |nullBranch| "null")
- (|:| |assignmentBranch|
- (-2 (|:| |var| (-1087))
- (|:| |arrayIndex| (-589 (-883 (-523))))
- (|:| |rand|
- (-2 (|:| |ints2Floats?| (-108)) (|:| -3483 (-794))))))
- (|:| |arrayAssignmentBranch|
- (-2 (|:| |var| (-1087)) (|:| |rand| (-794))
- (|:| |ints2Floats?| (-108))))
- (|:| |conditionalBranch|
- (-2 (|:| |switch| (-1086)) (|:| |thenClause| (-306))
- (|:| |elseClause| (-306))))
- (|:| |returnBranch|
- (-2 (|:| -3163 (-108))
- (|:| -2058
- (-2 (|:| |ints2Floats?| (-108)) (|:| -3483 (-794))))))
- (|:| |blockBranch| (-589 (-306)))
- (|:| |commentBranch| (-589 (-1070))) (|:| |callBranch| (-1070))
- (|:| |forBranch|
- (-2 (|:| -3487 (-1009 (-883 (-523))))
- (|:| |span| (-883 (-523))) (|:| -2403 (-306))))
- (|:| |labelBranch| (-1034))
- (|:| |loopBranch| (-2 (|:| |switch| (-1086)) (|:| -2403 (-306))))
- (|:| |commonBranch|
- (-2 (|:| -1522 (-1087)) (|:| |contents| (-589 (-1087)))))
- (|:| |printBranch| (-589 (-794)))))
- (-5 *1 (-306)))))
-(((*1 *2) (-12 (-4 *3 (-158)) (-5 *2 (-1169 *1)) (-4 *1 (-343 *3)))))
+ (|partial| -12 (-5 *2 (-591 (-825 *3))) (-5 *1 (-825 *3))
+ (-4 *3 (-1018)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1163 *2 *3 *4)) (-4 *2 (-975)) (-14 *3 (-1089))
+ (-14 *4 *2))))
+(((*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-1176)) (-5 *1 (-1092)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-631 *4)) (-5 *3 (-854)) (|has| *4 (-6 (-4252 "*")))
+ (-4 *4 (-975)) (-5 *1 (-957 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-591 (-631 *4))) (-5 *3 (-854))
+ (|has| *4 (-6 (-4252 "*"))) (-4 *4 (-975)) (-5 *1 (-957 *4)))))
+(((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *5 (-108))
+ (-5 *2 (-964)) (-5 *1 (-687)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-987)))))
(((*1 *2 *1)
- (-12
- (-5 *2
- (-1169
- (-2 (|:| |scaleX| (-203)) (|:| |scaleY| (-203))
- (|:| |deltaX| (-203)) (|:| |deltaY| (-203)) (|:| -1961 (-523))
- (|:| -2226 (-523)) (|:| |spline| (-523)) (|:| -3156 (-523))
- (|:| |axesColor| (-805)) (|:| -3459 (-523))
- (|:| |unitsColor| (-805)) (|:| |showing| (-523)))))
- (-5 *1 (-1170)))))
-(((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-858)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 (-836 *3))) (-4 *3 (-1016)) (-5 *1 (-835 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *3 (-1145 (-383 (-523))))
- (-5 *2 (-2 (|:| |den| (-523)) (|:| |gcdnum| (-523))))
- (-5 *1 (-844 *3 *4)) (-4 *4 (-1145 (-383 *3)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-1145 (-383 *2))) (-5 *2 (-523)) (-5 *1 (-844 *4 *3))
- (-4 *3 (-1145 (-383 *4))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 *1)) (|has| *1 (-6 -4249)) (-4 *1 (-938 *3))
- (-4 *3 (-1123)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-589 *8))) (-5 *3 (-589 *8))
- (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786))
- (-5 *2 (-108)) (-5 *1 (-906 *5 *6 *7 *8)))))
-(((*1 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204))))
- ((*1 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *1 *1) (-4 *1 (-1051))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-508)) (-5 *2 (-108)))))
+ (|partial| -12
+ (-4 *3 (-13 (-788) (-966 (-525)) (-587 (-525)) (-429)))
+ (-5 *2
+ (-2
+ (|:| |%term|
+ (-2 (|:| |%coef| (-1156 *4 *5 *6))
+ (|:| |%expon| (-297 *4 *5 *6))
+ (|:| |%expTerms|
+ (-591 (-2 (|:| |k| (-385 (-525))) (|:| |c| *4))))))
+ (|:| |%type| (-1072))))
+ (-5 *1 (-1157 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1111) (-408 *3)))
+ (-14 *5 (-1089)) (-14 *6 *4))))
(((*1 *2 *3)
- (-12 (-5 *2 (-155 (-355))) (-5 *1 (-724 *3)) (-4 *3 (-564 (-355)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-852)) (-5 *2 (-155 (-355))) (-5 *1 (-724 *3))
- (-4 *3 (-564 (-355)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-155 *4)) (-4 *4 (-158)) (-4 *4 (-564 (-355)))
- (-5 *2 (-155 (-355))) (-5 *1 (-724 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-155 *5)) (-5 *4 (-852)) (-4 *5 (-158))
- (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-883 (-155 *4))) (-4 *4 (-158)) (-4 *4 (-564 (-355)))
- (-5 *2 (-155 (-355))) (-5 *1 (-724 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-883 (-155 *5))) (-5 *4 (-852)) (-4 *5 (-158))
- (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5))))
+ (-12 (-4 *4 (-327)) (-5 *2 (-396 *3)) (-5 *1 (-197 *4 *3))
+ (-4 *3 (-1147 *4))))
((*1 *2 *3)
- (-12 (-5 *3 (-883 *4)) (-4 *4 (-973)) (-4 *4 (-564 (-355)))
- (-5 *2 (-155 (-355))) (-5 *1 (-724 *4))))
+ (-12 (-5 *2 (-396 *3)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-883 *5)) (-5 *4 (-852)) (-4 *5 (-973))
- (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-515)) (-4 *4 (-564 (-355)))
- (-5 *2 (-155 (-355))) (-5 *1 (-724 *4))))
+ (-12 (-5 *4 (-712)) (-5 *2 (-396 *3)) (-5 *1 (-419 *3))
+ (-4 *3 (-1147 (-525)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-852)) (-4 *5 (-515))
- (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5))))
+ (-12 (-5 *4 (-591 (-712))) (-5 *2 (-396 *3)) (-5 *1 (-419 *3))
+ (-4 *3 (-1147 (-525)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-591 (-712))) (-5 *5 (-712)) (-5 *2 (-396 *3))
+ (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-712)) (-5 *2 (-396 *3)) (-5 *1 (-419 *3))
+ (-4 *3 (-1147 (-525)))))
((*1 *2 *3)
- (-12 (-5 *3 (-383 (-883 (-155 *4)))) (-4 *4 (-515))
- (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-883 (-155 *5)))) (-5 *4 (-852)) (-4 *5 (-515))
- (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5))))
+ (-12 (-5 *2 (-396 *3)) (-5 *1 (-937 *3))
+ (-4 *3 (-1147 (-385 (-525))))))
((*1 *2 *3)
- (-12 (-5 *3 (-292 *4)) (-4 *4 (-515)) (-4 *4 (-786))
- (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-292 *5)) (-5 *4 (-852)) (-4 *5 (-515)) (-4 *5 (-786))
- (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-292 (-155 *4))) (-4 *4 (-515)) (-4 *4 (-786))
- (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4))))
+ (-12 (-5 *2 (-396 *3)) (-5 *1 (-1136 *3)) (-4 *3 (-1147 (-525))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *4)) (-4 *4 (-975)) (-4 *2 (-1147 *4))
+ (-5 *1 (-421 *4 *2))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-385 (-1085 (-294 *5)))) (-5 *3 (-1171 (-294 *5)))
+ (-5 *4 (-525)) (-4 *5 (-13 (-517) (-788))) (-5 *1 (-1046 *5)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-876 (-205))) (-5 *4 (-807)) (-5 *2 (-1176))
+ (-5 *1 (-445))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-975)) (-4 *1 (-911 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-876 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-876 *3)) (-4 *3 (-975)) (-4 *1 (-1050 *3))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-1050 *3)) (-4 *3 (-975))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *1 (-1050 *3)) (-4 *3 (-975))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-876 *3)) (-4 *1 (-1050 *3)) (-4 *3 (-975))))
+ ((*1 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-876 (-205))) (-5 *1 (-1122)) (-5 *3 (-205)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1085 *1)) (-5 *3 (-1089)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-885 *1)) (-4 *1 (-27))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1089)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-788) (-517)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-788) (-517)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-292 (-155 *5))) (-5 *4 (-852)) (-4 *5 (-515))
- (-4 *5 (-786)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355)))
- (-5 *1 (-724 *5)))))
-(((*1 *1 *1) (-5 *1 (-203))) ((*1 *1 *1) (-5 *1 (-355)))
- ((*1 *1) (-5 *1 (-355))))
-(((*1 *2)
- (-12 (-4 *3 (-515)) (-5 *2 (-589 *4)) (-5 *1 (-42 *3 *4))
- (-4 *4 (-393 *3)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1034)) (-5 *2 (-108)) (-5 *1 (-760)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-108)) (-5 *1 (-528 *3)) (-4 *3 (-964 (-523)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))))
-(((*1 *2 *3 *2)
- (-12 (-4 *1 (-726)) (-5 *2 (-962))
- (-5 *3
- (-2 (|:| |fn| (-292 (-203)))
- (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))))
- ((*1 *2 *3 *2)
- (-12 (-4 *1 (-726)) (-5 *2 (-962))
- (-5 *3
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203)))))))
+ (-12 (-5 *3 (-1085 *2)) (-5 *4 (-1089)) (-4 *2 (-408 *5))
+ (-5 *1 (-31 *5 *2)) (-4 *5 (-13 (-788) (-517)))))
+ ((*1 *1 *2 *3)
+ (|partial| -12 (-5 *2 (-1085 *1)) (-5 *3 (-854)) (-4 *1 (-942))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-1085 *1)) (-5 *3 (-854)) (-5 *4 (-796))
+ (-4 *1 (-942))))
+ ((*1 *1 *2 *3)
+ (|partial| -12 (-5 *3 (-854)) (-4 *4 (-13 (-786) (-341)))
+ (-4 *1 (-991 *4 *2)) (-4 *2 (-1147 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1159 *3)) (-4 *3 (-1125)) (-5 *2 (-712)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-694)))))
+(((*1 *2 *3 *4 *5 *6 *7 *8 *9)
+ (|partial| -12 (-5 *4 (-591 *11)) (-5 *5 (-591 (-1085 *9)))
+ (-5 *6 (-591 *9)) (-5 *7 (-591 *12)) (-5 *8 (-591 (-712)))
+ (-4 *11 (-788)) (-4 *9 (-286)) (-4 *12 (-882 *9 *10 *11))
+ (-4 *10 (-734)) (-5 *2 (-591 (-1085 *12)))
+ (-5 *1 (-649 *10 *11 *9 *12)) (-5 *3 (-1085 *12)))))
+(((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-1174)))))
+(((*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-837 (-525))) (-5 *1 (-850))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-591 (-2 (|:| |totdeg| (-712)) (|:| -1357 *3))))
+ (-5 *4 (-712)) (-4 *3 (-882 *5 *6 *7)) (-4 *5 (-429)) (-4 *6 (-734))
+ (-4 *7 (-788)) (-5 *1 (-426 *5 *6 *7 *3)))))
+(((*1 *1 *1 *1) (-5 *1 (-796))))
(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1068 *4)) (-4 *4 (-37 *3)) (-4 *4 (-973))
- (-5 *3 (-383 (-523))) (-5 *1 (-1072 *4)))))
+ (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1125)) (-5 *1 (-353 *4 *2))
+ (-4 *2 (-13 (-351 *4) (-10 -7 (-6 -4251)))))))
+(((*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-558 *2 *3)) (-4 *3 (-1125)) (-4 *2 (-1018))
+ (-4 *2 (-788)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1063 *3)) (-4 *3 (-1125)) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-2 (|:| -3024 *4) (|:| -3197 (-525)))))
+ (-4 *4 (-1018)) (-5 *2 (-1 *4)) (-5 *1 (-947 *4)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-396 *2)) (-4 *2 (-286)) (-5 *1 (-847 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-1089))
+ (-4 *5 (-13 (-286) (-138))) (-5 *2 (-51)) (-5 *1 (-848 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-396 (-885 *6))) (-5 *5 (-1089)) (-5 *3 (-885 *6))
+ (-4 *6 (-13 (-286) (-138))) (-5 *2 (-51)) (-5 *1 (-848 *6)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-385 (-885 *4))) (-5 *3 (-1089))
+ (-4 *4 (-13 (-517) (-966 (-525)) (-138))) (-5 *1 (-531 *4)))))
+(((*1 *1 *1 *1) (-4 *1 (-606))) ((*1 *1 *1 *1) (-5 *1 (-1036))))
+(((*1 *1)
+ (|partial| -12 (-4 *1 (-345 *2)) (-4 *2 (-517)) (-4 *2 (-160)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-876 *4)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854))
+ (-4 *4 (-975)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-499)))))
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-138))
+ (-4 *3 (-286)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-908 *3 *4 *5 *6)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-1005)))))
+(((*1 *1 *1 *1) (-4 *1 (-450))) ((*1 *1 *1 *1) (-4 *1 (-703))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-383 (-883 (-155 (-523))))))
- (-5 *2 (-589 (-589 (-271 (-883 (-155 *4)))))) (-5 *1 (-354 *4))
- (-4 *4 (-13 (-339) (-784)))))
+ (-12 (-5 *4 (-1089))
+ (-4 *5 (-13 (-788) (-966 (-525)) (-429) (-587 (-525))))
+ (-5 *2 (-2 (|:| -3440 *3) (|:| |nconst| *3))) (-5 *1 (-528 *5 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *5))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-517) (-138))) (-5 *1 (-502 *3 *2))
+ (-4 *2 (-1162 *3))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-341) (-346) (-566 (-525)))) (-4 *4 (-1147 *3))
+ (-4 *5 (-666 *3 *4)) (-5 *1 (-506 *3 *4 *5 *2)) (-4 *2 (-1162 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-341) (-346) (-566 (-525)))) (-5 *1 (-507 *3 *2))
+ (-4 *2 (-1162 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-13 (-517) (-138)))
+ (-5 *1 (-1066 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1125)) (-5 *1 (-353 *4 *2))
+ (-4 *2 (-13 (-351 *4) (-10 -7 (-6 -4251)))))))
+(((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-1089)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-525)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-5 *2 (-1176)) (-5 *1 (-426 *4 *5 *6 *7)) (-4 *7 (-882 *4 *5 *6)))))
+(((*1 *1 *1 *1) (-4 *1 (-606))) ((*1 *1 *1 *1) (-5 *1 (-1036))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-788)) (-5 *1 (-122 *3)))))
+(((*1 *1 *1) (-12 (-4 *1 (-261 *2)) (-4 *2 (-1125)) (-4 *2 (-1018))))
+ ((*1 *1 *1) (-12 (-4 *1 (-636 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *2
+ (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))))
+ (-5 *1 (-949 *3)) (-4 *3 (-1147 (-525)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-271 (-383 (-883 (-155 (-523)))))))
- (-5 *2 (-589 (-589 (-271 (-883 (-155 *4)))))) (-5 *1 (-354 *4))
- (-4 *4 (-13 (-339) (-784)))))
+ (-12
+ (-5 *2
+ (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))))
+ (-5 *1 (-949 *3)) (-4 *3 (-1147 (-525)))
+ (-5 *4 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-883 (-155 (-523)))))
- (-5 *2 (-589 (-271 (-883 (-155 *4))))) (-5 *1 (-354 *4))
- (-4 *4 (-13 (-339) (-784)))))
+ (-12
+ (-5 *2
+ (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))))
+ (-5 *1 (-949 *3)) (-4 *3 (-1147 (-525))) (-5 *4 (-385 (-525)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-385 (-525)))
+ (-5 *2 (-591 (-2 (|:| -3388 *5) (|:| -3400 *5)))) (-5 *1 (-949 *3))
+ (-4 *3 (-1147 (-525))) (-5 *4 (-2 (|:| -3388 *5) (|:| -3400 *5)))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *2
+ (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))))
+ (-5 *1 (-950 *3)) (-4 *3 (-1147 (-385 (-525))))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *2
+ (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))))
+ (-5 *1 (-950 *3)) (-4 *3 (-1147 (-385 (-525))))
+ (-5 *4 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-271 (-383 (-883 (-155 (-523))))))
- (-5 *2 (-589 (-271 (-883 (-155 *4))))) (-5 *1 (-354 *4))
- (-4 *4 (-13 (-339) (-784))))))
+ (-12 (-5 *4 (-385 (-525)))
+ (-5 *2 (-591 (-2 (|:| -3388 *4) (|:| -3400 *4)))) (-5 *1 (-950 *3))
+ (-4 *3 (-1147 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-385 (-525)))
+ (-5 *2 (-591 (-2 (|:| -3388 *5) (|:| -3400 *5)))) (-5 *1 (-950 *3))
+ (-4 *3 (-1147 *5)) (-5 *4 (-2 (|:| -3388 *5) (|:| -3400 *5))))))
+(((*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3)
+ (-12 (-5 *4 (-631 (-205))) (-5 *5 (-631 (-525))) (-5 *3 (-525))
+ (-5 *2 (-964)) (-5 *1 (-698)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848))))
- ((*1 *2) (-12 (-5 *2 (-835 (-523))) (-5 *1 (-848)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109) (-930)))
- (-5 *1 (-161 *3)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1161 *2 *3 *4)) (-4 *2 (-973)) (-14 *3 (-1087))
- (-14 *4 *2))))
+ (-12 (-4 *4 (-327)) (-5 *2 (-890 (-1085 *4))) (-5 *1 (-335 *4))
+ (-5 *3 (-1085 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-883 *4)) (-4 *4 (-13 (-284) (-136)))
- (-4 *2 (-880 *4 *6 *5)) (-5 *1 (-855 *4 *5 *6 *2))
- (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)))))
-(((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-1068 *3)) (-4 *3 (-1016))
- (-4 *3 (-1123)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-51)) (-5 *1 (-768)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 (-1011 (-383 (-523))))) (-5 *1 (-240))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 (-1011 (-355)))) (-5 *1 (-240)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-523))) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-515)) (-4 *8 (-880 *7 *5 *6))
- (-5 *2 (-2 (|:| -3262 (-710)) (|:| -2275 *9) (|:| |radicand| *9)))
- (-5 *1 (-884 *5 *6 *7 *8 *9)) (-5 *4 (-710))
- (-4 *9
- (-13 (-339)
- (-10 -8 (-15 -2164 (*8 $)) (-15 -2171 (*8 $)) (-15 -3976 ($ *8))))))))
-(((*1 *1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1 *1) (-4 *1 (-119)))
- ((*1 *1 *1 *1) (-5 *1 (-1034))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-710)) (-4 *5 (-973)) (-5 *2 (-523))
- (-5 *1 (-418 *5 *3 *6)) (-4 *3 (-1145 *5))
- (-4 *6 (-13 (-380) (-964 *5) (-339) (-1109) (-261)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-973)) (-5 *2 (-523)) (-5 *1 (-418 *4 *3 *5))
- (-4 *3 (-1145 *4))
- (-4 *5 (-13 (-380) (-964 *4) (-339) (-1109) (-261))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1019 *3 *4 *5 *6 *2)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *2 (-1016)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108))
- (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-662)) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-4 *1 (-666)) (-5 *2 (-108)))))
-(((*1 *2 *3 *4 *5 *6 *2 *7 *8)
- (|partial| -12 (-5 *2 (-589 (-1083 *11))) (-5 *3 (-1083 *11))
- (-5 *4 (-589 *10)) (-5 *5 (-589 *8)) (-5 *6 (-589 (-710)))
- (-5 *7 (-1169 (-589 (-1083 *8)))) (-4 *10 (-786))
- (-4 *8 (-284)) (-4 *11 (-880 *8 *9 *10)) (-4 *9 (-732))
- (-5 *1 (-647 *9 *10 *8 *11)))))
-(((*1 *2 *2 *3 *4 *4)
- (-12 (-5 *4 (-523)) (-4 *3 (-158)) (-4 *5 (-349 *3))
- (-4 *6 (-349 *3)) (-5 *1 (-628 *3 *5 *6 *2))
- (-4 *2 (-627 *3 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-710)) (-4 *5 (-973)) (-4 *2 (-1145 *5))
- (-5 *1 (-1163 *5 *2 *6 *3)) (-4 *6 (-599 *2)) (-4 *3 (-1160 *5)))))
-(((*1 *1) (-5 *1 (-762))))
-(((*1 *2 *1 *2) (-12 (-5 *1 (-953 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 (-155 (-383 (-523))))) (-5 *2 (-589 (-155 *4)))
- (-5 *1 (-704 *4)) (-4 *4 (-13 (-339) (-784))))))
-(((*1 *2 *2) (-12 (-5 *2 (-710)) (-5 *1 (-420 *3)) (-4 *3 (-973))))
- ((*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-420 *3)) (-4 *3 (-973)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523)))))
-(((*1 *1 *1 *1) (-4 *1 (-897))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1083 *1)) (-5 *3 (-1087)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-1083 *1)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-883 *1)) (-4 *1 (-27))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1087)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-786) (-515)))))
- ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-786) (-515))))))
-(((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-1087)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-110)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-1089 (-383 (-523))))
- (-5 *1 (-170)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-589 *5)) (-5 *4 (-523)) (-4 *5 (-784)) (-4 *5 (-339))
- (-5 *2 (-710)) (-5 *1 (-876 *5 *6)) (-4 *6 (-1145 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-721 *2)) (-4 *2 (-973)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-1090)) (-5 *3 (-1087)))))
-(((*1 *2 *3 *4 *3 *5 *5 *3 *5 *4)
- (-12 (-5 *4 (-629 (-203))) (-5 *5 (-629 (-523))) (-5 *3 (-523))
- (-5 *2 (-962)) (-5 *1 (-696)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-311 *3 *4 *5 *6)) (-4 *3 (-339)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-4 *6 (-318 *3 *4 *5)) (-5 *2 (-108)))))
+ (-12 (-5 *3 (-885 (-205))) (-5 *2 (-294 (-357))) (-5 *1 (-284)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-905)))))
+(((*1 *2 *3 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-712)) (|:| |poli| *7)
+ (|:| |polj| *7)))
+ (-4 *5 (-734)) (-4 *7 (-882 *4 *5 *6)) (-4 *4 (-429)) (-4 *6 (-788))
+ (-5 *2 (-108)) (-5 *1 (-426 *4 *5 *6 *7)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-286) (-138))) (-4 *4 (-13 (-788) (-566 (-1089))))
+ (-4 *5 (-734)) (-5 *1 (-857 *3 *4 *5 *2)) (-4 *2 (-882 *3 *5 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-333 *4))
- (-4 *4 (-325))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-333 *4))
- (-4 *4 (-325))))
- ((*1 *1) (-4 *1 (-344)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1169 *4)) (-5 *1 (-493 *4))
- (-4 *4 (-325))))
- ((*1 *1 *1) (-4 *1 (-508))) ((*1 *1) (-4 *1 (-508)))
- ((*1 *1 *1) (-5 *1 (-523))) ((*1 *1 *1) (-5 *1 (-710)))
- ((*1 *2 *1) (-12 (-5 *2 (-836 *3)) (-5 *1 (-835 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-5 *2 (-836 *4)) (-5 *1 (-835 *4))
- (-4 *4 (-1016))))
- ((*1 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-508)) (-4 *2 (-515)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973))
- (-5 *2 (-108))))
+ (-12
+ (-5 *3
+ (-2
+ (|:| |endPointContinuity|
+ (-3 (|:| |continuous| "Continuous at the end points")
+ (|:| |lowerSingular|
+ "There is a singularity at the lower end point")
+ (|:| |upperSingular|
+ "There is a singularity at the upper end point")
+ (|:| |bothSingular|
+ "There are singularities at both end points")
+ (|:| |notEvaluated|
+ "End point continuity not yet evaluated")))
+ (|:| |singularitiesStream|
+ (-3 (|:| |str| (-1070 (-205)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -1767
+ (-3 (|:| |finite| "The range is finite")
+ (|:| |lowerInfinite| "The bottom of range is infinite")
+ (|:| |upperInfinite| "The top of range is infinite")
+ (|:| |bothInfinite|
+ "Both top and bottom points are infinite")
+ (|:| |notEvaluated| "Range not yet evaluated")))))
+ (-5 *2 (-964)) (-5 *1 (-284)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-1072)) (-5 *3 (-525)) (-5 *1 (-221)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-854)) (-5 *2 (-1176)) (-5 *1 (-195 *4))
+ (-4 *4
+ (-13 (-788)
+ (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 (*2 $))
+ (-15 -3600 (*2 $)))))))
((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1190 *3 *4)) (-4 *3 (-973))
- (-4 *4 (-782)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-589 (-355))) (-5 *3 (-589 (-240))) (-5 *1 (-238))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-589 (-355))) (-5 *1 (-443))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 (-355))) (-5 *1 (-443))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-852)) (-5 *4 (-805)) (-5 *2 (-1174)) (-5 *1 (-1170))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-852)) (-5 *4 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-1056)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-4 *1 (-616 *3)) (-4 *3 (-1123)) (-5 *2 (-108)))))
+ (-12 (-5 *2 (-1176)) (-5 *1 (-195 *3))
+ (-4 *3
+ (-13 (-788)
+ (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 (*2 $))
+ (-15 -3600 (*2 $)))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-475)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-825 *4)) (-4 *4 (-1018)) (-5 *1 (-822 *4 *3))
+ (-4 *3 (-1018)))))
+(((*1 *2 *1 *2)
+ (-12 (-4 *1 (-342 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1018)))))
+(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-357)) (-5 *1 (-987)))))
+(((*1 *2 *3 *4 *3 *5 *3)
+ (-12 (-5 *4 (-631 (-205))) (-5 *5 (-631 (-525))) (-5 *3 (-525))
+ (-5 *2 (-964)) (-5 *1 (-696)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-339))
- (-4 *7 (-1145 (-383 *6)))
- (-5 *2 (-2 (|:| |answer| *3) (|:| -3251 *3)))
- (-5 *1 (-521 *5 *6 *7 *3)) (-4 *3 (-318 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-339))
+ (-12 (-5 *4 (-1089))
+ (-4 *5 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
(-5 *2
- (-2 (|:| |answer| (-383 *6)) (|:| -3251 (-383 *6))
- (|:| |specpart| (-383 *6)) (|:| |polypart| *6)))
- (-5 *1 (-522 *5 *6)) (-5 *3 (-383 *6)))))
-(((*1 *2)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-355)) (-5 *1 (-185))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 (-355))) (-5 *2 (-355)) (-5 *1 (-185)))))
+ (-2 (|:| |func| *3) (|:| |kers| (-591 (-564 *3)))
+ (|:| |vals| (-591 *3))))
+ (-5 *1 (-256 *5 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1103 *4 *5))
+ (-4 *4 (-1018)) (-4 *5 (-1018)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1089))
+ (-4 *5 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-542 *3)) (-5 *1 (-404 *5 *3))
+ (-4 *3 (-13 (-1111) (-29 *5))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-807)) (-5 *3 (-591 (-242))) (-5 *1 (-240)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)) (-5 *3 (-525)))))
+(((*1 *2 *3)
+ (-12 (-4 *2 (-341)) (-4 *2 (-786)) (-5 *1 (-878 *2 *3))
+ (-4 *3 (-1147 *2)))))
+(((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *2 (-964))
+ (-5 *1 (-697)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-517) (-788)))
+ (-4 *2 (-13 (-408 *4) (-932) (-1111))) (-5 *1 (-554 *4 *2 *3))
+ (-4 *3 (-13 (-408 (-157 *4)) (-932) (-1111))))))
(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-987 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *2 (-786))))
+ (-12 (-4 *1 (-989 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *2 (-788))))
((*1 *1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)))))
-(((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-638))))
- ((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-638)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3)
- (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203))
- (-5 *2 (-962)) (-5 *1 (-692)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-589 *6)) (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973))
- (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5))
- (-4 *3 (-515)))))
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |pde| (-589 (-292 (-203))))
- (|:| |constraints|
- (-589
- (-2 (|:| |start| (-203)) (|:| |finish| (-203))
- (|:| |grid| (-710)) (|:| |boundaryType| (-523))
- (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203))))))
- (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070))
- (|:| |tol| (-203))))
- (-5 *2 (-108)) (-5 *1 (-190)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1020)) (-5 *1 (-51)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 *6)) (-4 *5 (-1127)) (-4 *6 (-1145 *5))
- (-5 *2 (-2 (|:| -3262 (-710)) (|:| -2275 *3) (|:| |radicand| *6)))
- (-5 *1 (-137 *5 *6 *7)) (-5 *4 (-710)) (-4 *7 (-1145 *3)))))
+ (-12 (-5 *3 (-712)) (-5 *2 (-631 (-885 *4))) (-5 *1 (-957 *4))
+ (-4 *4 (-975)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-917 *4 *5 *6 *7 *3))
- (-4 *3 (-992 *4 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 *3)) (-4 *3 (-992 *5 *6 *7 *8)) (-4 *5 (-427))
- (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-987 *5 *6 *7)) (-5 *2 (-108))
- (-5 *1 (-917 *5 *6 *7 *8 *3))))
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-919 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7))))
((*1 *2 *3 *3)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108))
- (-5 *1 (-1023 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 *3)) (-4 *3 (-992 *5 *6 *7 *8)) (-4 *5 (-427))
- (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-987 *5 *6 *7)) (-5 *2 (-108))
- (-5 *1 (-1023 *5 *6 *7 *8 *3)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1117 *2 *3 *4 *5)) (-4 *2 (-515)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *5 (-987 *2 *3 *4)))))
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-1025 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-806 (-898 *3) (-898 *3))) (-5 *1 (-898 *3))
+ (-4 *3 (-899)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-1 (-1068 (-883 *4)) (-1068 (-883 *4))))
- (-5 *1 (-1177 *4)) (-4 *4 (-339)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 (-108) *7 (-589 *7))) (-4 *1 (-1117 *4 *5 *6 *7))
- (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-987 *4 *5 *6))
- (-5 *2 (-108)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-4 *1 (-834 *3)))))
-(((*1 *1 *1) (-4 *1 (-1056))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1070)) (-4 *1 (-340 *2 *4)) (-4 *2 (-1016))
- (-4 *4 (-1016))))
- ((*1 *1 *2)
- (-12 (-4 *1 (-340 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))))
-(((*1 *1 *1) (-12 (-4 *1 (-616 *2)) (-4 *2 (-1123)))))
-(((*1 *2)
- (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786))
- (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-1174))
- (-5 *1 (-993 *3 *4 *5 *6 *7)) (-4 *7 (-992 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786))
- (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-1174))
- (-5 *1 (-1024 *3 *4 *5 *6 *7)) (-4 *7 (-992 *3 *4 *5 *6)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-1056)) (-5 *2 (-108)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *1 *1) (-5 *1 (-985))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4))
- (-4 *3 (-343 *4))))
- ((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087))
- (-4 *5 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-540 *3)) (-5 *1 (-402 *5 *3))
- (-4 *3 (-13 (-1109) (-29 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087)) (-4 *5 (-13 (-515) (-964 (-523)) (-136)))
- (-5 *2 (-540 (-383 (-883 *5)))) (-5 *1 (-529 *5))
- (-5 *3 (-383 (-883 *5))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-763)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
+ (-12 (-5 *2 (-525)) (-5 *1 (-422 *3)) (-4 *3 (-382)) (-4 *3 (-975)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1094)))))
(((*1 *1 *1 *2)
- (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-475 *3 *4 *5 *2)) (-4 *2 (-880 *3 *4 *5))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-339)) (-4 *3 (-732)) (-4 *4 (-786))
- (-5 *1 (-475 *2 *3 *4 *5)) (-4 *5 (-880 *2 *3 *4)))))
-(((*1 *2)
- (-12 (-4 *1 (-325))
- (-5 *2 (-589 (-2 (|:| -3573 (-523)) (|:| -3262 (-523))))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-167)))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1 *8 *8))
- (-5 *5
- (-1 (-2 (|:| |ans| *7) (|:| -2438 *7) (|:| |sol?| (-108)))
- (-523) *7))
- (-5 *6 (-589 (-383 *8))) (-4 *7 (-339)) (-4 *8 (-1145 *7))
- (-5 *3 (-383 *8))
- (-5 *2
- (-2
- (|:| |answer|
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (|:| |a0| *7)))
- (-5 *1 (-533 *7 *8)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-732)) (-4 *4 (-786)) (-4 *5 (-284))
- (-5 *1 (-847 *3 *4 *5 *2)) (-4 *2 (-880 *5 *3 *4))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1083 *6)) (-4 *6 (-880 *5 *3 *4)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *5 (-284)) (-5 *1 (-847 *3 *4 *5 *6))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-880 *6 *4 *5))
- (-5 *1 (-847 *4 *5 *6 *2)) (-4 *4 (-732)) (-4 *5 (-786))
- (-4 *6 (-284)))))
+ (|partial| -12 (-5 *2 (-712)) (-4 *1 (-1147 *3)) (-4 *3 (-975)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-372))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1106)))))
+(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1126 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-712)) (-5 *2 (-1 (-357))) (-5 *1 (-968)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-523)) (-5 *1 (-420 *3)) (-4 *3 (-380)) (-4 *3 (-973)))))
-(((*1 *1) (-5 *1 (-130))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-1070)) (-5 *2 (-713)) (-5 *1 (-110))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1020)) (-5 *1 (-895)))))
-(((*1 *1 *2) (-12 (-5 *1 (-205 *2)) (-4 *2 (-13 (-339) (-1109))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-108))
- (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-4 *3 (-13 (-27) (-1109) (-406 *6) (-10 -8 (-15 -3976 ($ *7)))))
- (-4 *7 (-784))
- (-4 *8
- (-13 (-1147 *3 *7) (-339) (-1109)
- (-10 -8 (-15 -4024 ($ $)) (-15 -2669 ($ $)))))
+ (-12 (-5 *2 (-564 *4)) (-5 *1 (-563 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-788)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-860))
(-5 *2
- (-3 (|:| |%series| *8)
- (|:| |%problem| (-2 (|:| |func| (-1070)) (|:| |prob| (-1070))))))
- (-5 *1 (-398 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1070)) (-4 *9 (-912 *8))
- (-14 *10 (-1087)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973))
- (-5 *2 (-2 (|:| |k| (-758 *3)) (|:| |c| *4))))))
-(((*1 *1 *1 *2 *1) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1016))))
- ((*1 *1 *2) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-589 (-589 (-589 *5)))) (-5 *3 (-1 (-108) *5 *5))
- (-5 *4 (-589 *5)) (-4 *5 (-786)) (-5 *1 (-1095 *5)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-710)) (-5 *1 (-1017 *4 *5)) (-14 *4 *3)
- (-14 *5 *3))))
-(((*1 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172))))
- ((*1 *2 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172)))))
-(((*1 *2 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171))))
- ((*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171)))))
-(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1056)) (-5 *3 (-523)) (-5 *2 (-108)))))
-(((*1 *2 *3) (-12 (-5 *2 (-355)) (-5 *1 (-724 *3)) (-4 *3 (-564 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-852)) (-5 *2 (-355)) (-5 *1 (-724 *3))
- (-4 *3 (-564 *2))))
+ (-2 (|:| |brans| (-591 (-591 (-876 (-205)))))
+ (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))))
+ (-5 *1 (-144))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-860)) (-5 *4 (-385 (-525)))
+ (-5 *2
+ (-2 (|:| |brans| (-591 (-591 (-876 (-205)))))
+ (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))))
+ (-5 *1 (-144)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-876 (-205)) (-876 (-205)))) (-5 *1 (-242))))
((*1 *2 *3)
- (-12 (-5 *3 (-883 *4)) (-4 *4 (-973)) (-4 *4 (-564 *2))
- (-5 *2 (-355)) (-5 *1 (-724 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-883 *5)) (-5 *4 (-852)) (-4 *5 (-973))
- (-4 *5 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *5))))
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-307 *4)) (-4 *4 (-341))
+ (-5 *2 (-631 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-5 *2 (-1171 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160))
+ (-5 *2 (-631 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160))
+ (-5 *2 (-1171 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-348 *4 *5)) (-4 *4 (-160))
+ (-4 *5 (-1147 *4)) (-5 *2 (-631 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-348 *4 *5)) (-4 *4 (-160))
+ (-4 *5 (-1147 *4)) (-5 *2 (-1171 *4))))
((*1 *2 *3)
- (-12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-515)) (-4 *4 (-564 *2))
- (-5 *2 (-355)) (-5 *1 (-724 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-852)) (-4 *5 (-515))
- (-4 *5 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *5))))
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-387 *4 *5)) (-4 *4 (-160))
+ (-4 *5 (-1147 *4)) (-5 *2 (-631 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-160)) (-4 *4 (-1147 *3))
+ (-5 *2 (-1171 *3))))
((*1 *2 *3)
- (-12 (-5 *3 (-292 *4)) (-4 *4 (-515)) (-4 *4 (-786))
- (-4 *4 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *4))))
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-395 *4)) (-4 *4 (-160))
+ (-5 *2 (-631 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-1171 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-292 *5)) (-5 *4 (-852)) (-4 *5 (-515)) (-4 *5 (-786))
- (-4 *5 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *5)))))
-(((*1 *2 *3 *4 *4 *5 *6)
- (-12 (-5 *3 (-589 (-589 (-874 (-203))))) (-5 *4 (-805))
- (-5 *5 (-852)) (-5 *6 (-589 (-240))) (-5 *2 (-1170))
- (-5 *1 (-1173))))
+ (-12 (-5 *4 (-591 (-631 *5))) (-5 *3 (-631 *5)) (-4 *5 (-341))
+ (-5 *2 (-1171 *5)) (-5 *1 (-1006 *5)))))
+(((*1 *1 *1) (-12 (-5 *1 (-161 *2)) (-4 *2 (-286))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)) (-5 *3 (-525))))
+ ((*1 *1 *1) (-12 (-4 *1 (-618 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *1) (-4 *1 (-802 *2)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-904 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-733))
+ (-4 *4 (-788)))))
+(((*1 *2 *3) (-12 (-5 *3 (-779)) (-5 *2 (-964)) (-5 *1 (-778))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-589 (-874 (-203))))) (-5 *4 (-589 (-240)))
- (-5 *2 (-1170)) (-5 *1 (-1173)))))
-(((*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794)))))
-(((*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1174)) (-5 *1 (-355))))
- ((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-355)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-590 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-589 *6)))))
-(((*1 *1 *2) (-12 (-5 *1 (-205 *2)) (-4 *2 (-13 (-339) (-1109))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *1 *1) (-12 (-4 *1 (-349 *2)) (-4 *2 (-1123)) (-4 *2 (-786))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-349 *3)) (-4 *3 (-1123))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-589 (-836 *3))) (-5 *1 (-836 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1 *3)
- (-12 (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-786))
- (-4 *6 (-987 *4 *5 *3))
- (-5 *2 (-2 (|:| |under| *1) (|:| -1250 *1) (|:| |upper| *1)))
- (-4 *1 (-905 *4 *5 *3 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-964 (-523))) (-4 *3 (-13 (-786) (-515)))
- (-5 *1 (-31 *3 *2)) (-4 *2 (-406 *3))))
- ((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-1083 *4)) (-5 *1 (-151 *3 *4))
- (-4 *3 (-152 *4))))
- ((*1 *1 *1) (-12 (-4 *1 (-973)) (-4 *1 (-279))))
- ((*1 *2) (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-5 *2 (-1083 *3))))
- ((*1 *2) (-12 (-4 *1 (-664 *3 *2)) (-4 *3 (-158)) (-4 *2 (-1145 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-989 *3 *2)) (-4 *3 (-13 (-784) (-339)))
- (-4 *2 (-1145 *3)))))
+ (-12 (-5 *3 (-591 (-294 (-357)))) (-5 *4 (-591 (-357)))
+ (-5 *2 (-964)) (-5 *1 (-778)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-591 *7)) (|:| |badPols| (-591 *7))))
+ (-5 *1 (-908 *4 *5 *6 *7)) (-5 *3 (-591 *7)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
+ (-12 (-4 *2 (-160)) (-4 *2 (-975)) (-5 *1 (-656 *2 *3))
+ (-4 *3 (-593 *2))))
+ ((*1 *2 *2) (-12 (-5 *1 (-775 *2)) (-4 *2 (-160)) (-4 *2 (-975)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1063 *3)) (-4 *3 (-1125)) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1013 (-781 (-357)))) (-5 *2 (-1013 (-781 (-205))))
+ (-5 *1 (-284)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2 *3) (-12 (-5 *3 (-108)) (-5 *2 (-1072)) (-5 *1 (-51)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1085 *4)) (-4 *4 (-327))
+ (-4 *2
+ (-13 (-380)
+ (-10 -7 (-15 -3022 (*2 *4)) (-15 -3016 ((-854) *2))
+ (-15 -4003 ((-1171 *2) (-854))) (-15 -4227 (*2 *2)))))
+ (-5 *1 (-334 *2 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-294 (-205)))) (-5 *4 (-712))
+ (-5 *2 (-631 (-205))) (-5 *1 (-246)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525))
+ (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G)))) (-5 *2 (-964))
+ (-5 *1 (-690)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-429)) (-4 *4 (-517))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| -3727 *4))) (-5 *1 (-901 *4 *3))
+ (-4 *3 (-1147 *4)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-697)))))
+(((*1 *1 *1 *1)
+ (|partial| -12 (-4 *2 (-160)) (-5 *1 (-268 *2 *3 *4 *5 *6 *7))
+ (-4 *3 (-1147 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
+ (-14 *6 (-1 (-3 *4 "failed") *4 *4))
+ (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-160))
+ (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
+ (-14 *5 (-1 (-3 *3 "failed") *3 *3))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-5 *1 (-657 *2 *3 *4 *5 *6)) (-4 *2 (-160))
+ (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
+ (-14 *5 (-1 (-3 *3 "failed") *3 *3))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))))
+(((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-520)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-525)) (-4 *2 (-408 *3)) (-5 *1 (-31 *3 *2))
+ (-4 *3 (-966 *4)) (-4 *3 (-13 (-788) (-517))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-51))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (-5 *2 (-1068 (-203))) (-5 *1 (-172))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-292 (-203))) (-5 *4 (-589 (-1087)))
- (-5 *5 (-1011 (-779 (-203)))) (-5 *2 (-1068 (-203))) (-5 *1 (-277))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1169 (-292 (-203)))) (-5 *4 (-589 (-1087)))
- (-5 *5 (-1011 (-779 (-203)))) (-5 *2 (-1068 (-203))) (-5 *1 (-277)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-523)) (-5 *1 (-459 *4))
- (-4 *4 (-1145 *2)))))
-(((*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-984))))
- ((*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-984)))))
-(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-813 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-133)))))
-(((*1 *2 *3)
- (-12 (|has| *6 (-6 -4249)) (-4 *4 (-339)) (-4 *5 (-349 *4))
- (-4 *6 (-349 *4)) (-5 *2 (-589 *6)) (-5 *1 (-490 *4 *5 *6 *3))
- (-4 *3 (-627 *4 *5 *6))))
- ((*1 *2 *3)
- (-12 (|has| *9 (-6 -4249)) (-4 *4 (-515)) (-4 *5 (-349 *4))
- (-4 *6 (-349 *4)) (-4 *7 (-921 *4)) (-4 *8 (-349 *7))
- (-4 *9 (-349 *7)) (-5 *2 (-589 *6))
- (-5 *1 (-491 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-627 *4 *5 *6))
- (-4 *10 (-627 *7 *8 *9))))
+ (-3
+ (|:| |noa|
+ (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205)))
+ (|:| |lb| (-591 (-781 (-205))))
+ (|:| |cf| (-591 (-294 (-205))))
+ (|:| |ub| (-591 (-781 (-205))))))
+ (|:| |lsa|
+ (-2 (|:| |lfn| (-591 (-294 (-205))))
+ (|:| -3506 (-591 (-205)))))))
+ (-5 *2 (-591 (-1072))) (-5 *1 (-246)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-796) (-796))) (-5 *1 (-110))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-796) (-591 (-796)))) (-5 *1 (-110))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-1 (-796) (-591 (-796)))) (-5 *1 (-110))))
((*1 *2 *1)
- (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-4 *3 (-515)) (-5 *2 (-589 *5))))
+ (-12 (-5 *2 (-1176)) (-5 *1 (-195 *3))
+ (-4 *3
+ (-13 (-788)
+ (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 (*2 $))
+ (-15 -3600 (*2 $)))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-372))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *2 (-1176)) (-5 *1 (-372))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-475))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-652))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-1106))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *2 (-1176)) (-5 *1 (-1106)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1072)) (-5 *4 (-525)) (-5 *5 (-631 (-157 (-205))))
+ (-5 *2 (-964)) (-5 *1 (-696)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205)))
+ (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-64 FUNCT1))))
+ (-5 *2 (-964)) (-5 *1 (-695)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *3 (-286)) (-4 *3 (-160)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3)))
+ (-5 *1 (-630 *3 *4 *5 *6)) (-4 *6 (-629 *3 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-641 *3))
+ (-4 *3 (-286)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1089)) (-5 *4 (-885 (-525))) (-5 *2 (-308))
+ (-5 *1 (-310)))))
+(((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522))))
((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *4 (-158)) (-4 *5 (-349 *4))
- (-4 *6 (-349 *4)) (-5 *2 (-589 *6)) (-5 *1 (-628 *4 *5 *6 *3))
- (-4 *3 (-627 *4 *5 *6))))
+ (-12 (-5 *2 (-1085 (-385 (-525)))) (-5 *1 (-875)) (-5 *3 (-525)))))
+(((*1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1096)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-987)) (-5 *3 (-1072)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1085 *7)) (-4 *7 (-882 *6 *4 *5)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-975)) (-5 *2 (-1085 *6))
+ (-5 *1 (-299 *4 *5 *6 *7)))))
+(((*1 *1 *2) (-12 (-5 *2 (-169)) (-5 *1 (-228)))))
+(((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-744)))))
+(((*1 *2)
+ (-12 (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-842))
+ (-5 *1 (-434 *3 *4 *2 *5)) (-4 *5 (-882 *2 *3 *4))))
+ ((*1 *2)
+ (-12 (-4 *3 (-734)) (-4 *4 (-788)) (-4 *2 (-842))
+ (-5 *1 (-839 *2 *3 *4 *5)) (-4 *5 (-882 *2 *3 *4))))
+ ((*1 *2) (-12 (-4 *2 (-842)) (-5 *1 (-840 *2 *3)) (-4 *3 (-1147 *2)))))
+(((*1 *1 *1) (-12 (-4 *1 (-618 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-734))
+ (-4 *3 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $))))) (-4 *5 (-517))
+ (-5 *1 (-674 *4 *3 *5 *2)) (-4 *2 (-882 (-385 (-885 *5)) *4 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *4 (-975)) (-4 *5 (-734))
+ (-4 *3
+ (-13 (-788)
+ (-10 -8 (-15 -1408 ((-1089) $))
+ (-15 -2037 ((-3 $ "failed") (-1089))))))
+ (-5 *1 (-915 *4 *5 *3 *2)) (-4 *2 (-882 (-885 *4) *5 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-591 *6))
+ (-4 *6
+ (-13 (-788)
+ (-10 -8 (-15 -1408 ((-1089) $))
+ (-15 -2037 ((-3 $ "failed") (-1089))))))
+ (-4 *4 (-975)) (-4 *5 (-734)) (-5 *1 (-915 *4 *5 *6 *2))
+ (-4 *2 (-882 (-885 *4) *5 *6)))))
+(((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-444))))
+ ((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-444))))
+ ((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-860)))))
+(((*1 *2 *3 *2 *3)
+ (-12 (-5 *2 (-415)) (-5 *3 (-1089)) (-5 *1 (-1092))))
+ ((*1 *2 *3 *2) (-12 (-5 *2 (-415)) (-5 *3 (-1089)) (-5 *1 (-1092))))
+ ((*1 *2 *3 *2 *4 *1)
+ (-12 (-5 *2 (-415)) (-5 *3 (-591 (-1089))) (-5 *4 (-1089))
+ (-5 *1 (-1092))))
+ ((*1 *2 *3 *2 *3 *1)
+ (-12 (-5 *2 (-415)) (-5 *3 (-1089)) (-5 *1 (-1092))))
+ ((*1 *2 *3 *2 *1)
+ (-12 (-5 *2 (-415)) (-5 *3 (-1089)) (-5 *1 (-1093))))
+ ((*1 *2 *3 *2 *1)
+ (-12 (-5 *2 (-415)) (-5 *3 (-591 (-1089))) (-5 *1 (-1093)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-591 *7)) (|:| |badPols| (-591 *7))))
+ (-5 *1 (-908 *4 *5 *6 *7)) (-5 *3 (-591 *7)))))
+(((*1 *1 *1 *1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-517)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1020 *3)) (-5 *1 (-838 *3)) (-4 *3 (-346))
+ (-4 *3 (-1018)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-712)) (-5 *2 (-591 (-1089))) (-5 *1 (-192))
+ (-5 *3 (-1089))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-294 (-205))) (-5 *4 (-712)) (-5 *2 (-591 (-1089)))
+ (-5 *1 (-246))))
((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973))
- (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-4 *5 (-515))
- (-5 *2 (-589 *7)))))
-(((*1 *2 *1) (-12 (-4 *1 (-938 *3)) (-4 *3 (-1123)) (-5 *2 (-108))))
+ (-12 (-4 *1 (-352 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160))
+ (-5 *2 (-591 *3))))
((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852))
- (-4 *4 (-973)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-339)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4)))
- (-5 *2 (-1169 *6)) (-5 *1 (-312 *3 *4 *5 *6))
- (-4 *6 (-318 *3 *4 *5)))))
-(((*1 *1 *1 *1) (-4 *1 (-508))))
-(((*1 *2 *3)
- (-12 (|has| *2 (-6 (-4250 "*"))) (-4 *5 (-349 *2)) (-4 *6 (-349 *2))
- (-4 *2 (-973)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1145 *2))
- (-4 *4 (-627 *2 *5 *6)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1068 *4)) (-5 *3 (-1 *4 (-523))) (-4 *4 (-973))
- (-5 *1 (-1072 *4)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-427)) (-4 *3 (-786)) (-4 *4 (-732))
- (-5 *1 (-916 *2 *3 *4 *5)) (-4 *5 (-880 *2 *4 *3)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4))))
- (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *1 *2 *2)
- (-12 (-5 *2 (-589 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523)))))
+ (-12 (-5 *2 (-591 *3)) (-5 *1 (-575 *3 *4 *5)) (-4 *3 (-788))
+ (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-14 *5 (-854))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-616 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-620 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-760 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-826 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975))
+ (-5 *2 (-591 *3)))))
(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-13 (-339) (-136) (-964 (-523))))
- (-4 *5 (-1145 *4))
- (-5 *2 (-2 (|:| -3699 (-383 *5)) (|:| |coeff| (-383 *5))))
- (-5 *1 (-527 *4 *5)) (-5 *3 (-383 *5)))))
-(((*1 *1 *1) (-4 *1 (-604))) ((*1 *1 *1) (-5 *1 (-1034))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-292 (-355))) (-5 *2 (-292 (-203))) (-5 *1 (-282)))))
-(((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-858)))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-857)))))
-(((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-857)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-701))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-517 *2)) (-4 *2 (-508)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-710)) (-5 *1 (-42 *4 *3))
- (-4 *3 (-393 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-424 *3 *4 *5 *2)) (-4 *2 (-880 *3 *4 *5)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-973)) (-4 *3 (-786))
- (-5 *2 (-2 (|:| |val| *1) (|:| -3262 (-523)))) (-4 *1 (-406 *3))))
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-631 (-525))) (-5 *1 (-1028)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-159))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-1172))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2 *3) (-12 (-5 *3 (-51)) (-5 *1 (-50 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-885 (-357))) (-5 *1 (-317 *3 *4 *5))
+ (-4 *5 (-966 (-357))) (-14 *3 (-591 (-1089)))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-365))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-385 (-885 (-357)))) (-5 *1 (-317 *3 *4 *5))
+ (-4 *5 (-966 (-357))) (-14 *3 (-591 (-1089)))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-365))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-294 (-357))) (-5 *1 (-317 *3 *4 *5))
+ (-4 *5 (-966 (-357))) (-14 *3 (-591 (-1089)))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-365))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-885 (-525))) (-5 *1 (-317 *3 *4 *5))
+ (-4 *5 (-966 (-525))) (-14 *3 (-591 (-1089)))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-365))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-385 (-885 (-525)))) (-5 *1 (-317 *3 *4 *5))
+ (-4 *5 (-966 (-525))) (-14 *3 (-591 (-1089)))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-365))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-294 (-525))) (-5 *1 (-317 *3 *4 *5))
+ (-4 *5 (-966 (-525))) (-14 *3 (-591 (-1089)))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-365))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1089)) (-5 *1 (-317 *3 *4 *5)) (-14 *3 (-591 *2))
+ (-14 *4 (-591 *2)) (-4 *5 (-365))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-294 *5)) (-4 *5 (-365)) (-5 *1 (-317 *3 *4 *5))
+ (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089)))))
+ ((*1 *1 *2) (-12 (-5 *2 (-631 (-385 (-885 (-525))))) (-4 *1 (-362))))
+ ((*1 *1 *2) (-12 (-5 *2 (-631 (-385 (-885 (-357))))) (-4 *1 (-362))))
+ ((*1 *1 *2) (-12 (-5 *2 (-631 (-885 (-525)))) (-4 *1 (-362))))
+ ((*1 *1 *2) (-12 (-5 *2 (-631 (-885 (-357)))) (-4 *1 (-362))))
+ ((*1 *1 *2) (-12 (-5 *2 (-631 (-294 (-525)))) (-4 *1 (-362))))
+ ((*1 *1 *2) (-12 (-5 *2 (-631 (-294 (-357)))) (-4 *1 (-362))))
+ ((*1 *1 *2) (-12 (-5 *2 (-385 (-885 (-525)))) (-4 *1 (-374))))
+ ((*1 *1 *2) (-12 (-5 *2 (-385 (-885 (-357)))) (-4 *1 (-374))))
+ ((*1 *1 *2) (-12 (-5 *2 (-885 (-525))) (-4 *1 (-374))))
+ ((*1 *1 *2) (-12 (-5 *2 (-885 (-357))) (-4 *1 (-374))))
+ ((*1 *1 *2) (-12 (-5 *2 (-294 (-525))) (-4 *1 (-374))))
+ ((*1 *1 *2) (-12 (-5 *2 (-294 (-357))) (-4 *1 (-374))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1171 (-385 (-885 (-525))))) (-4 *1 (-418))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1171 (-385 (-885 (-357))))) (-4 *1 (-418))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1171 (-885 (-525)))) (-4 *1 (-418))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1171 (-885 (-357)))) (-4 *1 (-418))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1171 (-294 (-525)))) (-4 *1 (-418))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1171 (-294 (-357)))) (-4 *1 (-418))))
((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| |val| (-823 *3)) (|:| -3262 (-823 *3))))
- (-5 *1 (-823 *3)) (-4 *3 (-1016))))
+ (-12
+ (-5 *2
+ (-3
+ (|:| |nia|
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (|:| |mdnia|
+ (-2 (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-591 (-1013 (-781 (-205)))))
+ (|:| |abserr| (-205)) (|:| |relerr| (-205))))))
+ (-5 *1 (-710))))
+ ((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205))
+ (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205)))
+ (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205)))
+ (|:| |abserr| (-205)) (|:| |relerr| (-205))))
+ (-5 *1 (-749))))
+ ((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-3
+ (|:| |noa|
+ (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205)))
+ (|:| |lb| (-591 (-781 (-205))))
+ (|:| |cf| (-591 (-294 (-205))))
+ (|:| |ub| (-591 (-781 (-205))))))
+ (|:| |lsa|
+ (-2 (|:| |lfn| (-591 (-294 (-205))))
+ (|:| -3506 (-591 (-205)))))))
+ (-5 *1 (-779))))
+ ((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |pde| (-591 (-294 (-205))))
+ (|:| |constraints|
+ (-591
+ (-2 (|:| |start| (-205)) (|:| |finish| (-205))
+ (|:| |grid| (-712)) (|:| |boundaryType| (-525))
+ (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205))))))
+ (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072))
+ (|:| |tol| (-205))))
+ (-5 *1 (-831))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-975))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-4 *1 (-907 *3 *4 *5 *6))))
+ ((*1 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *2)
+ (-3321
+ (-12 (-5 *2 (-885 *3))
+ (-12 (-2247 (-4 *3 (-37 (-385 (-525)))))
+ (-2247 (-4 *3 (-37 (-525)))) (-4 *5 (-566 (-1089))))
+ (-4 *3 (-975)) (-4 *1 (-989 *3 *4 *5)) (-4 *4 (-734))
+ (-4 *5 (-788)))
+ (-12 (-5 *2 (-885 *3))
+ (-12 (-2247 (-4 *3 (-510))) (-2247 (-4 *3 (-37 (-385 (-525)))))
+ (-4 *3 (-37 (-525))) (-4 *5 (-566 (-1089))))
+ (-4 *3 (-975)) (-4 *1 (-989 *3 *4 *5)) (-4 *4 (-734))
+ (-4 *5 (-788)))
+ (-12 (-5 *2 (-885 *3))
+ (-12 (-2247 (-4 *3 (-923 (-525)))) (-4 *3 (-37 (-385 (-525))))
+ (-4 *5 (-566 (-1089))))
+ (-4 *3 (-975)) (-4 *1 (-989 *3 *4 *5)) (-4 *4 (-734))
+ (-4 *5 (-788)))))
+ ((*1 *1 *2)
+ (-3321
+ (-12 (-5 *2 (-885 (-525))) (-4 *1 (-989 *3 *4 *5))
+ (-12 (-2247 (-4 *3 (-37 (-385 (-525))))) (-4 *3 (-37 (-525)))
+ (-4 *5 (-566 (-1089))))
+ (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)))
+ (-12 (-5 *2 (-885 (-525))) (-4 *1 (-989 *3 *4 *5))
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *5 (-566 (-1089))))
+ (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-885 (-385 (-525)))) (-4 *1 (-989 *3 *4 *5))
+ (-4 *3 (-37 (-385 (-525)))) (-4 *5 (-566 (-1089))) (-4 *3 (-975))
+ (-4 *4 (-734)) (-4 *5 (-788)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1085 *9)) (-5 *4 (-591 *7)) (-5 *5 (-591 *8))
+ (-4 *7 (-788)) (-4 *8 (-975)) (-4 *9 (-882 *8 *6 *7)) (-4 *6 (-734))
+ (-5 *2 (-1085 *8)) (-5 *1 (-299 *6 *7 *8 *9)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-525)) (-5 *1 (-530 *3)) (-4 *3 (-966 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-110)) (-5 *1 (-109 *3)) (-4 *3 (-788)) (-4 *3 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1072)) (-5 *2 (-525)) (-5 *1 (-1108 *4))
+ (-4 *4 (-975)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-2 (|:| -1348 *4) (|:| -1316 (-525)))))
+ (-4 *4 (-1147 (-525))) (-5 *2 (-679 (-712))) (-5 *1 (-419 *4))))
((*1 *2 *3)
- (|partial| -12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-973))
- (-4 *7 (-880 *6 *4 *5))
- (-5 *2 (-2 (|:| |val| *3) (|:| -3262 (-523))))
- (-5 *1 (-881 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-339)
- (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $))
- (-15 -2171 (*7 $))))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087))
- (-4 *5 (-13 (-786) (-964 (-523)) (-427) (-585 (-523))))
- (-5 *2 (-2 (|:| -2653 *3) (|:| |nconst| *3))) (-5 *1 (-526 *5 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *5))))))
+ (-12 (-5 *3 (-396 *5)) (-4 *5 (-1147 *4)) (-4 *4 (-975))
+ (-5 *2 (-679 (-712))) (-5 *1 (-421 *4 *5)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1072)) (-4 *1 (-342 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-1018)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-712)) (-5 *5 (-591 *3)) (-4 *3 (-286)) (-4 *6 (-788))
+ (-4 *7 (-734)) (-5 *2 (-108)) (-5 *1 (-574 *6 *7 *3 *8))
+ (-4 *8 (-882 *3 *7 *6)))))
+(((*1 *2 *3) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-522)) (-5 *3 (-525)))))
+(((*1 *1) (-5 *1 (-270))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-972 *4 *5)) (-4 *4 (-13 (-786) (-286) (-138) (-951)))
+ (-14 *5 (-591 (-1089))) (-5 *2 (-591 (-591 (-953 (-385 *4)))))
+ (-5 *1 (-1195 *4 *5 *6)) (-14 *6 (-591 (-1089)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-108))
+ (-4 *5 (-13 (-786) (-286) (-138) (-951)))
+ (-5 *2 (-591 (-591 (-953 (-385 *5))))) (-5 *1 (-1195 *5 *6 *7))
+ (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-108))
+ (-4 *5 (-13 (-786) (-286) (-138) (-951)))
+ (-5 *2 (-591 (-591 (-953 (-385 *5))))) (-5 *1 (-1195 *5 *6 *7))
+ (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-885 *4)))
+ (-4 *4 (-13 (-786) (-286) (-138) (-951)))
+ (-5 *2 (-591 (-591 (-953 (-385 *4))))) (-5 *1 (-1195 *4 *5 *6))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-591 (-1089))))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-341)) (-5 *1 (-829 *2 *3))
+ (-4 *2 (-1147 *3)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-477 *3 *4 *5 *6))) (-4 *3 (-341)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-341)) (-4 *3 (-734)) (-4 *4 (-788))
+ (-5 *1 (-477 *2 *3 *4 *5)) (-4 *5 (-882 *2 *3 *4))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-591 *1)) (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-591 *1)) (-5 *3 (-591 *7)) (-4 *1 (-994 *4 *5 *6 *7))
+ (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 *1))
+ (-4 *1 (-994 *4 *5 *6 *7))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-591 *1))
+ (-4 *1 (-994 *4 *5 *6 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1072)) (-5 *2 (-591 (-1094))) (-5 *1 (-813)))))
(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3)
- (-12 (-5 *4 (-629 (-203))) (-5 *5 (-629 (-523))) (-5 *6 (-203))
- (-5 *3 (-523)) (-5 *2 (-962)) (-5 *1 (-692)))))
+ (-12 (-5 *4 (-631 (-205))) (-5 *5 (-631 (-525))) (-5 *6 (-205))
+ (-5 *3 (-525)) (-5 *2 (-964)) (-5 *1 (-694)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-854))) (-5 *1 (-1019 *3 *4)) (-14 *3 (-854))
+ (-14 *4 (-854)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-515) (-786) (-964 (-523)))) (-5 *1 (-168 *3 *2))
- (-4 *2 (-13 (-27) (-1109) (-406 (-155 *3))))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-317 *3 *4 *5)) (-14 *3 (-591 (-1089)))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-365))))
+ ((*1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-317 *3 *4 *5)) (-14 *3 (-591 (-1089)))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-365)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8))
+ (-5 *4 (-631 (-1085 *8))) (-4 *5 (-975)) (-4 *8 (-975))
+ (-4 *6 (-1147 *5)) (-5 *2 (-631 *6)) (-5 *1 (-474 *5 *6 *7 *8))
+ (-4 *7 (-1147 *6)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-4 *1 (-301 *4 *2)) (-4 *4 (-1018))
+ (-4 *2 (-126)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1089)) (-4 *5 (-566 (-825 (-525))))
+ (-4 *5 (-819 (-525)))
+ (-4 *5 (-13 (-788) (-966 (-525)) (-429) (-587 (-525))))
+ (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
+ (-5 *1 (-528 *5 *3)) (-4 *3 (-577))
+ (-4 *3 (-13 (-27) (-1111) (-408 *5)))))
+ ((*1 *2 *2 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-1089)) (-5 *4 (-781 *2)) (-4 *2 (-1053))
+ (-4 *2 (-13 (-27) (-1111) (-408 *5)))
+ (-4 *5 (-566 (-825 (-525)))) (-4 *5 (-819 (-525)))
+ (-4 *5 (-13 (-788) (-966 (-525)) (-429) (-587 (-525))))
+ (-5 *1 (-528 *5 *2)))))
+(((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-591
+ (-591
+ (-3 (|:| -2400 (-1089))
+ (|:| |bounds| (-591 (-3 (|:| S (-1089)) (|:| P (-885 (-525))))))))))
+ (-5 *1 (-1093)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788))))
+ ((*1 *1) (-4 *1 (-1065))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-940 *3)) (-4 *3 (-1125)) (-5 *2 (-525)))))
+(((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7)
+ (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *5 (-205))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-59 COEFFN))))
+ (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-85 BDYVAL))))
+ (-5 *2 (-964)) (-5 *1 (-691))))
+ ((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8)
+ (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *5 (-205))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-59 COEFFN))))
+ (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-85 BDYVAL))))
+ (-5 *8 (-366)) (-5 *2 (-964)) (-5 *1 (-691)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-510)) (-5 *1 (-148 *2)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-110)) (-5 *4 (-591 *2)) (-5 *1 (-109 *2))
+ (-4 *2 (-1018))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-515) (-786) (-964 (-523))))
- (-5 *1 (-168 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 (-155 *4))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-1113 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *3)))))
+ (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 (-591 *4))) (-4 *4 (-1018))
+ (-5 *1 (-109 *4))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087))
- (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-1113 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *4))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-880 *4 *6 *5))
- (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087))))
- (-4 *6 (-732)) (-5 *2 (-108)) (-5 *1 (-855 *4 *5 *6 *7))))
+ (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1018))
+ (-5 *1 (-109 *4))))
((*1 *2 *3)
- (-12 (-5 *3 (-589 (-883 *4))) (-4 *4 (-13 (-284) (-136)))
- (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-108))
- (-5 *1 (-855 *4 *5 *6 *7)) (-4 *7 (-880 *4 *6 *5)))))
+ (|partial| -12 (-5 *3 (-110)) (-5 *2 (-1 *4 (-591 *4)))
+ (-5 *1 (-109 *4)) (-4 *4 (-1018))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-593 *3)) (-4 *3 (-975))
+ (-5 *1 (-656 *3 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-975)) (-5 *1 (-775 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-341))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-477 *3 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-631 *2)) (-4 *4 (-1147 *2))
+ (-4 *2 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $)))))
+ (-5 *1 (-472 *2 *4 *5)) (-4 *5 (-387 *2 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1039 *3 *2 *4 *5)) (-4 *4 (-218 *3 *2))
+ (-4 *5 (-218 *3 *2)) (-4 *2 (-975)))))
+(((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-859)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-1088)) (-5 *1 (-308)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-938 *2)) (-4 *2 (-1123)))))
-(((*1 *1 *1 *1) (-5 *1 (-203)))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-1 (-355))) (-5 *1 (-966))))
- ((*1 *1 *1 *1) (-4 *1 (-1051))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-973)) (-5 *1 (-825 *2 *3)) (-4 *2 (-1145 *3))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-591 *4)) (-4 *4 (-341)) (-5 *2 (-1171 *4))
+ (-5 *1 (-755 *4 *3)) (-4 *3 (-601 *4)))))
+(((*1 *2 *3 *4 *3 *5 *5 *3 *5 *4)
+ (-12 (-5 *4 (-631 (-205))) (-5 *5 (-631 (-525))) (-5 *3 (-525))
+ (-5 *2 (-964)) (-5 *1 (-698)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -2805 *3) (|:| |coef1| (-723 *3))))
+ (-5 *1 (-723 *3)) (-4 *3 (-517)) (-4 *3 (-975)))))
+(((*1 *2 *3 *4 *4 *4 *5 *6 *7)
+ (|partial| -12 (-5 *5 (-1089))
+ (-5 *6
+ (-1
+ (-3
+ (-2 (|:| |mainpart| *4)
+ (|:| |limitedlogs|
+ (-591 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
+ "failed")
+ *4 (-591 *4)))
+ (-5 *7
+ (-1 (-3 (-2 (|:| -3060 *4) (|:| |coeff| *4)) "failed") *4 *4))
+ (-4 *4 (-13 (-1111) (-27) (-408 *8)))
+ (-4 *8 (-13 (-429) (-788) (-138) (-966 *3) (-587 *3)))
+ (-5 *3 (-525)) (-5 *2 (-591 *4)) (-5 *1 (-944 *8 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517))
+ (-5 *2 (-108)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975))
+ (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-108)))))
+(((*1 *1) (-5 *1 (-415))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 *1)) (-4 *3 (-975)) (-4 *1 (-629 *3 *4 *5))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-975)) (-4 *1 (-629 *3 *4 *5))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-975)) (-5 *1 (-631 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 *4)) (-4 *4 (-975)) (-4 *1 (-1039 *3 *4 *5 *6))
+ (-4 *5 (-218 *3 *4)) (-4 *6 (-218 *3 *4)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429)) (-4 *5 (-734))
+ (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))))
+(((*1 *1) (-5 *1 (-764))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-897))) (-5 *1 (-104)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1193 *4 *2)) (-4 *1 (-352 *4 *2)) (-4 *4 (-788))
+ (-4 *2 (-160))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1186 *3 *2)) (-4 *3 (-788)) (-4 *2 (-975))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-760 *4)) (-4 *1 (-1186 *4 *2)) (-4 *4 (-788))
+ (-4 *2 (-975))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *2 (-975)) (-5 *1 (-1192 *2 *3)) (-4 *3 (-784)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1053))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-162))) (-5 *1 (-1005)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-1018) (-33))) (-5 *1 (-1054 *3 *2))
+ (-4 *3 (-13 (-1018) (-33))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *1) (-5 *1 (-132))))
(((*1 *1 *2)
- (-12 (-4 *3 (-973)) (-5 *1 (-766 *2 *3)) (-4 *2 (-648 *3)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355))
- (-5 *2
- (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523))
- (|:| |success| (-108))))
- (-5 *1 (-728)) (-5 *5 (-523)))))
+ (-12 (-5 *2 (-591 *5)) (-4 *5 (-160)) (-5 *1 (-130 *3 *4 *5))
+ (-14 *3 (-525)) (-14 *4 (-712)))))
+(((*1 *1 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-1125)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-292 *3)) (-4 *3 (-515)) (-4 *3 (-786)))))
+ (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-4 *3 (-517))
+ (-5 *2 (-1085 *3)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-942)) (-5 *2 (-796)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-429)) (-4 *3 (-788)) (-4 *3 (-966 (-525)))
+ (-4 *3 (-517)) (-5 *1 (-40 *3 *2)) (-4 *2 (-408 *3))
+ (-4 *2
+ (-13 (-341) (-281)
+ (-10 -8 (-15 -1738 ((-1041 *3 (-564 $)) $))
+ (-15 -1754 ((-1041 *3 (-564 $)) $))
+ (-15 -3022 ($ (-1041 *3 (-564 $))))))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-708))
- (-5 *2
- (-2 (|:| -3359 (-355)) (|:| -1522 (-1070))
- (|:| |explanations| (-589 (-1070))) (|:| |extra| (-962))))
- (-5 *1 (-524))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-708)) (-5 *4 (-985))
- (-5 *2
- (-2 (|:| -3359 (-355)) (|:| -1522 (-1070))
- (|:| |explanations| (-589 (-1070))) (|:| |extra| (-962))))
- (-5 *1 (-524))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-726)) (-5 *3 (-985))
- (-5 *4
- (-2 (|:| |fn| (-292 (-203)))
- (|:| -3487 (-589 (-1011 (-779 (-203))))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (-5 *2
- (-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))
- (|:| |extra| (-962))))))
+ (-12 (-4 *4 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525)))))))
+ (-5 *2 (-591 *4)) (-5 *1 (-1044 *3 *4)) (-4 *3 (-1147 *4))))
+ ((*1 *2 *3 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525)))))))
+ (-5 *2 (-591 *3)) (-5 *1 (-1044 *4 *3)) (-4 *4 (-1147 *3)))))
+(((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-1072)) (-5 *4 (-157 (-205))) (-5 *5 (-525))
+ (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-558 *2 *3)) (-4 *3 (-1125)) (-4 *2 (-1018))
+ (-4 *2 (-788)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796))))
+ ((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *2 *3 *4 *5 *5 *5 *5 *4 *6)
+ (-12 (-5 *4 (-525)) (-5 *6 (-1 (-1176) (-1171 *5) (-1171 *5) (-357)))
+ (-5 *3 (-1171 (-357))) (-5 *5 (-357)) (-5 *2 (-1176))
+ (-5 *1 (-729)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1089)) (-5 *4 (-885 (-525))) (-5 *2 (-308))
+ (-5 *1 (-310))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1089)) (-5 *4 (-1011 (-885 (-525)))) (-5 *2 (-308))
+ (-5 *1 (-310))))
+ ((*1 *1 *2 *2 *2)
+ (-12 (-5 *2 (-712)) (-5 *1 (-619 *3)) (-4 *3 (-975)) (-4 *3 (-1018)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-525)) (|has| *1 (-6 -4251)) (-4 *1 (-1159 *3))
+ (-4 *3 (-1125)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-689)))))
+(((*1 *1) (-5 *1 (-146))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-812 (-1 (-205) (-205)))) (-5 *4 (-1013 (-357)))
+ (-5 *5 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-234))))
((*1 *2 *3 *4)
- (-12 (-4 *1 (-726)) (-5 *3 (-985))
- (-5 *4
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (-5 *2
- (-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))
- (|:| |extra| (-962))))))
+ (-12 (-5 *3 (-812 (-1 (-205) (-205)))) (-5 *4 (-1013 (-357)))
+ (-5 *2 (-1049 (-205))) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 (-876 (-205)) (-205))) (-5 *4 (-1013 (-357)))
+ (-5 *5 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-234))))
((*1 *2 *3 *4)
- (-12 (-4 *1 (-739)) (-5 *3 (-985))
- (-5 *4
- (-2 (|:| |xinit| (-203)) (|:| |xend| (-203))
- (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203)))
- (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203)))
- (|:| |abserr| (-203)) (|:| |relerr| (-203))))
- (-5 *2 (-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-747))
- (-5 *2
- (-2 (|:| -3359 (-355)) (|:| -1522 (-1070))
- (|:| |explanations| (-589 (-1070)))))
- (-5 *1 (-744))))
+ (-12 (-5 *3 (-1 (-876 (-205)) (-205))) (-5 *4 (-1013 (-357)))
+ (-5 *2 (-1049 (-205))) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-205) (-205) (-205))) (-5 *4 (-1013 (-357)))
+ (-5 *5 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 (-205) (-205) (-205))) (-5 *4 (-1013 (-357)))
+ (-5 *2 (-1049 (-205))) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-876 (-205)) (-205) (-205))) (-5 *4 (-1013 (-357)))
+ (-5 *5 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 (-876 (-205)) (-205) (-205))) (-5 *4 (-1013 (-357)))
+ (-5 *2 (-1049 (-205))) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-815 (-1 (-205) (-205) (-205)))) (-5 *4 (-1013 (-357)))
+ (-5 *5 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-815 (-1 (-205) (-205) (-205)))) (-5 *4 (-1013 (-357)))
+ (-5 *2 (-1049 (-205))) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-812 *6)) (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242)))
+ (-4 *6 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1049 (-205)))
+ (-5 *1 (-238 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-747)) (-5 *4 (-985))
+ (-12 (-5 *3 (-812 *5)) (-5 *4 (-1011 (-357)))
+ (-4 *5 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1049 (-205)))
+ (-5 *1 (-238 *5))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242)))
+ (-5 *2 (-1049 (-205))) (-5 *1 (-238 *3))
+ (-4 *3 (-13 (-566 (-501)) (-1018)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1011 (-357))) (-5 *2 (-1049 (-205))) (-5 *1 (-238 *3))
+ (-4 *3 (-13 (-566 (-501)) (-1018)))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-815 *6)) (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242)))
+ (-4 *6 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1049 (-205)))
+ (-5 *1 (-238 *6))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-815 *5)) (-5 *4 (-1011 (-357)))
+ (-4 *5 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1049 (-205)))
+ (-5 *1 (-238 *5)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-591 (-631 *4))) (-5 *2 (-631 *4)) (-4 *4 (-975))
+ (-5 *1 (-958 *4)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-854)) (-5 *1 (-959 *2))
+ (-4 *2 (-13 (-1018) (-10 -8 (-15 -4156 ($ $ $))))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-631 (-385 (-525))))
(-5 *2
- (-2 (|:| -3359 (-355)) (|:| -1522 (-1070))
- (|:| |explanations| (-589 (-1070)))))
- (-5 *1 (-744))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-775)) (-5 *3 (-985))
- (-5 *4
- (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))
- (-5 *2 (-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-775)) (-5 *3 (-985))
- (-5 *4
- (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203)))
- (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203))))
- (|:| |ub| (-589 (-779 (-203))))))
- (-5 *2 (-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-777))
+ (-591
+ (-2 (|:| |outval| *4) (|:| |outmult| (-525))
+ (|:| |outvect| (-591 (-631 *4))))))
+ (-5 *1 (-720 *4)) (-4 *4 (-13 (-341) (-786))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-564 *4)) (-4 *4 (-788)) (-4 *2 (-788))
+ (-5 *1 (-563 *2 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *2 (-591 *3))))
+ ((*1 *2 *1)
+ (-12 (|has| *1 (-6 -4250)) (-4 *1 (-464 *3)) (-4 *3 (-1125))
+ (-5 *2 (-591 *3)))))
+(((*1 *1) (-5 *1 (-132))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-591 *7)) (-4 *7 (-994 *3 *4 *5 *6)) (-4 *3 (-429))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5))
+ (-5 *1 (-919 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-591 *7)) (-4 *7 (-994 *3 *4 *5 *6)) (-4 *3 (-429))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5))
+ (-5 *1 (-1025 *3 *4 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-4 *1 (-966 (-525))) (-4 *1 (-281)) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-4 *1 (-510)) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-838 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| -2999 *1) (|:| -4237 *1) (|:| |associate| *1)))
+ (-4 *1 (-517)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-712)) (-5 *2 (-1144 *5 *4)) (-5 *1 (-1087 *4 *5 *6))
+ (-4 *4 (-975)) (-14 *5 (-1089)) (-14 *6 *4)))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-712)) (-5 *2 (-1144 *5 *4)) (-5 *1 (-1163 *4 *5 *6))
+ (-4 *4 (-975)) (-14 *5 (-1089)) (-14 *6 *4))))
+(((*1 *2 *3) (-12 (-5 *3 (-357)) (-5 *2 (-205)) (-5 *1 (-284)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-662)) (-5 *2 (-854))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-664)) (-5 *2 (-712)))))
+(((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-640))))
+ ((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-640)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1171 (-591 (-2 (|:| -3024 *4) (|:| -2226 (-1036))))))
+ (-4 *4 (-327)) (-5 *2 (-631 *4)) (-5 *1 (-324 *4)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-907 *3 *4 *2 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *2 (-788)) (-4 *5 (-989 *3 *4 *2)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-273 *2)) (-4 *2 (-668)) (-4 *2 (-1125)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4)))
+ (-5 *2 (-1171 *1)) (-4 *1 (-320 *3 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *3 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $)))))
+ (-4 *4 (-1147 *3))
(-5 *2
- (-2 (|:| -3359 (-355)) (|:| -1522 (-1070))
- (|:| |explanations| (-589 (-1070)))))
- (-5 *1 (-776))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-777)) (-5 *4 (-985))
+ (-2 (|:| -4003 (-631 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-631 *3))))
+ (-5 *1 (-328 *3 *4 *5)) (-4 *5 (-387 *3 *4))))
+ ((*1 *2)
+ (-12 (-4 *3 (-1147 (-525)))
(-5 *2
- (-2 (|:| -3359 (-355)) (|:| -1522 (-1070))
- (|:| |explanations| (-589 (-1070)))))
- (-5 *1 (-776))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-826)) (-5 *3 (-985))
- (-5 *4
- (-2 (|:| |pde| (-589 (-292 (-203))))
- (|:| |constraints|
- (-589
- (-2 (|:| |start| (-203)) (|:| |finish| (-203))
- (|:| |grid| (-710)) (|:| |boundaryType| (-523))
- (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203))))))
- (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070))
- (|:| |tol| (-203))))
- (-5 *2 (-2 (|:| -3359 (-355)) (|:| |explanations| (-1070))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-829))
+ (-2 (|:| -4003 (-631 (-525))) (|:| |basisDen| (-525))
+ (|:| |basisInv| (-631 (-525)))))
+ (-5 *1 (-709 *3 *4)) (-4 *4 (-387 (-525) *3))))
+ ((*1 *2)
+ (-12 (-4 *3 (-327)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 *4))
(-5 *2
- (-2 (|:| -3359 (-355)) (|:| -1522 (-1070))
- (|:| |explanations| (-589 (-1070)))))
- (-5 *1 (-828))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-829)) (-5 *4 (-985))
+ (-2 (|:| -4003 (-631 *4)) (|:| |basisDen| *4)
+ (|:| |basisInv| (-631 *4))))
+ (-5 *1 (-916 *3 *4 *5 *6)) (-4 *6 (-666 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *3 (-327)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 *4))
(-5 *2
- (-2 (|:| -3359 (-355)) (|:| -1522 (-1070))
- (|:| |explanations| (-589 (-1070)))))
- (-5 *1 (-828)))))
-(((*1 *1 *2 *1) (-12 (-4 *1 (-21)) (-5 *2 (-523))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-710))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-852))))
+ (-2 (|:| -4003 (-631 *4)) (|:| |basisDen| *4)
+ (|:| |basisInv| (-631 *4))))
+ (-5 *1 (-1180 *3 *4 *5 *6)) (-4 *6 (-387 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-625 *4 *3)) (-4 *4 (-1018))
+ (-4 *3 (-1018)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-1078 3 *3))))
+ ((*1 *1) (-12 (-5 *1 (-1078 *2 *3)) (-14 *2 (-854)) (-4 *3 (-975))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1049 (-205))) (-5 *1 (-1173))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1049 (-205))) (-5 *1 (-1173)))))
+(((*1 *2 *3 *4 *5 *5 *2)
+ (|partial| -12 (-5 *2 (-108)) (-5 *3 (-885 *6)) (-5 *4 (-1089))
+ (-5 *5 (-781 *7))
+ (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-4 *7 (-13 (-1111) (-29 *6))) (-5 *1 (-204 *6 *7))))
+ ((*1 *2 *3 *4 *4 *2)
+ (|partial| -12 (-5 *2 (-108)) (-5 *3 (-1085 *6)) (-5 *4 (-781 *6))
+ (-4 *6 (-13 (-1111) (-29 *5)))
+ (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-204 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-618 *3)) (-4 *3 (-1125)) (-5 *2 (-108)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-591 (-259))) (-5 *1 (-259))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 (-1094))) (-5 *1 (-1094)))))
+(((*1 *2 *1) (-12 (-5 *2 (-396 *3)) (-5 *1 (-847 *3)) (-4 *3 (-286)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-712)) (-5 *1 (-794 *2)) (-4 *2 (-37 (-385 (-525))))
+ (-4 *2 (-160)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-662)) (-5 *2 (-854))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-664)) (-5 *2 (-712)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-882 *4 *5 *6)) (-4 *6 (-566 (-1089)))
+ (-4 *4 (-341)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-5 *2 (-1079 (-591 (-885 *4)) (-591 (-273 (-885 *4)))))
+ (-5 *1 (-477 *4 *5 *6 *7)))))
+(((*1 *2) (-12 (-5 *2 (-1061 (-1072))) (-5 *1 (-369)))))
+(((*1 *2 *3 *4 *2 *2 *5)
+ (|partial| -12 (-5 *2 (-781 *4)) (-5 *3 (-564 *4)) (-5 *5 (-108))
+ (-4 *4 (-13 (-1111) (-29 *6)))
+ (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-204 *6 *4)))))
+(((*1 *1 *2 *3)
+ (-12
+ (-5 *3
+ (-591
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2)
+ (|:| |xpnt| (-525)))))
+ (-4 *2 (-517)) (-5 *1 (-396 *2))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |contp| (-525))
+ (|:| -3781 (-591 (-2 (|:| |irr| *4) (|:| -3265 (-525)))))))
+ (-4 *4 (-1147 (-525))) (-5 *2 (-396 *4)) (-5 *1 (-419 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1070 (-385 *3))) (-5 *1 (-161 *3)) (-4 *3 (-286)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-357))))
+ ((*1 *1 *1 *1) (-4 *1 (-510)))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341))))
+ ((*1 *1 *2) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-712)))))
+(((*1 *1 *2 *1) (-12 (-4 *1 (-21)) (-5 *2 (-525))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-712))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-854))))
((*1 *1 *1 *1)
- (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-523)) (-14 *3 (-710))
- (-4 *4 (-158))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-203)) (-5 *1 (-144))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-852)) (-5 *1 (-144))))
+ (-12 (-5 *1 (-130 *2 *3 *4)) (-14 *2 (-525)) (-14 *3 (-712))
+ (-4 *4 (-160))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-205)) (-5 *1 (-146))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-854)) (-5 *1 (-146))))
((*1 *2 *1 *2)
- (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109)))
- (-5 *1 (-205 *3))))
+ (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111)))
+ (-5 *1 (-207 *3))))
((*1 *1 *2 *1)
- (-12 (-4 *1 (-216 *3 *2)) (-4 *2 (-1123)) (-4 *2 (-666))))
+ (-12 (-4 *1 (-218 *3 *2)) (-4 *2 (-1125)) (-4 *2 (-668))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-216 *3 *2)) (-4 *2 (-1123)) (-4 *2 (-666))))
+ (-12 (-4 *1 (-218 *3 *2)) (-4 *2 (-1125)) (-4 *2 (-668))))
((*1 *1 *2 *1)
- (-12 (-5 *1 (-271 *2)) (-4 *2 (-1028)) (-4 *2 (-1123))))
+ (-12 (-5 *1 (-273 *2)) (-4 *2 (-1030)) (-4 *2 (-1125))))
((*1 *1 *1 *2)
- (-12 (-5 *1 (-271 *2)) (-4 *2 (-1028)) (-4 *2 (-1123))))
+ (-12 (-5 *1 (-273 *2)) (-4 *2 (-1030)) (-4 *2 (-1125))))
((*1 *1 *2 *3)
- (-12 (-4 *1 (-299 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-124))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-337 *2)) (-4 *2 (-1016))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-337 *2)) (-4 *2 (-1016))))
+ (-12 (-4 *1 (-301 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-126))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-339 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-339 *2)) (-4 *2 (-1018))))
((*1 *1 *2 *3)
- (-12 (-5 *1 (-357 *3 *2)) (-4 *3 (-973)) (-4 *2 (-786))))
+ (-12 (-5 *1 (-359 *3 *2)) (-4 *3 (-975)) (-4 *2 (-788))))
((*1 *1 *2 *3)
- (-12 (-4 *1 (-358 *2 *3)) (-4 *2 (-973)) (-4 *3 (-1016))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-362 *2)) (-4 *2 (-1016))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-362 *2)) (-4 *2 (-1016))))
+ (-12 (-4 *1 (-360 *2 *3)) (-4 *2 (-975)) (-4 *3 (-1018))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-364 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-364 *2)) (-4 *2 (-1018))))
((*1 *1 *2 *1)
- (-12 (-14 *3 (-589 (-1087))) (-4 *4 (-158))
- (-4 *6 (-216 (-1271 *3) (-710)))
+ (-12 (-14 *3 (-591 (-1089))) (-4 *4 (-160))
+ (-4 *6 (-218 (-4045 *3) (-712)))
(-14 *7
- (-1 (-108) (-2 (|:| -2557 *5) (|:| -3262 *6))
- (-2 (|:| -2557 *5) (|:| -3262 *6))))
- (-5 *1 (-436 *3 *4 *5 *6 *7 *2)) (-4 *5 (-786))
- (-4 *2 (-880 *4 *6 (-796 *3)))))
+ (-1 (-108) (-2 (|:| -2226 *5) (|:| -2008 *6))
+ (-2 (|:| -2226 *5) (|:| -2008 *6))))
+ (-5 *1 (-438 *3 *4 *5 *6 *7 *2)) (-4 *5 (-788))
+ (-4 *2 (-882 *4 *6 (-798 *3)))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-445 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23))))
+ (-12 (-4 *1 (-447 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23))))
((*1 *1 *2 *1)
- (-12 (-4 *1 (-445 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23))))
+ (-12 (-4 *1 (-447 *2 *3)) (-4 *2 (-160)) (-4 *3 (-23))))
((*1 *1 *1 *1)
- (-12 (-4 *2 (-339)) (-4 *3 (-732)) (-4 *4 (-786))
- (-5 *1 (-475 *2 *3 *4 *5)) (-4 *5 (-880 *2 *3 *4))))
+ (-12 (-4 *2 (-341)) (-4 *3 (-734)) (-4 *4 (-788))
+ (-5 *1 (-477 *2 *3 *4 *5)) (-4 *5 (-882 *2 *3 *4))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1169 *3)) (-4 *3 (-325)) (-5 *1 (-493 *3))))
- ((*1 *1 *1 *1) (-5 *1 (-499)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-549 *3)) (-4 *3 (-973))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-549 *2)) (-4 *2 (-973))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-549 *2)) (-4 *2 (-973))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-591 *2)) (-4 *2 (-980))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-618 *2)) (-4 *2 (-786))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1016))
- (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-1 *7 *5))
- (-5 *1 (-624 *5 *6 *7))))
+ (-12 (-5 *2 (-1171 *3)) (-4 *3 (-327)) (-5 *1 (-495 *3))))
+ ((*1 *1 *1 *1) (-5 *1 (-501)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-551 *3)) (-4 *3 (-975))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-551 *2)) (-4 *2 (-975))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-551 *2)) (-4 *2 (-975))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-593 *2)) (-4 *2 (-982))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-620 *2)) (-4 *2 (-788))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1018))
+ (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-1 *7 *5))
+ (-5 *1 (-626 *5 *6 *7))))
((*1 *2 *2 *1)
- (-12 (-4 *1 (-627 *3 *2 *4)) (-4 *3 (-973)) (-4 *2 (-349 *3))
- (-4 *4 (-349 *3))))
+ (-12 (-4 *1 (-629 *3 *2 *4)) (-4 *3 (-975)) (-4 *2 (-351 *3))
+ (-4 *4 (-351 *3))))
((*1 *2 *1 *2)
- (-12 (-4 *1 (-627 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-349 *3))
- (-4 *2 (-349 *3))))
+ (-12 (-4 *1 (-629 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-351 *3))
+ (-4 *2 (-351 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-523)) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3))))
+ (-12 (-5 *2 (-525)) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2))
- (-4 *4 (-349 *2))))
+ (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2))
+ (-4 *4 (-351 *2))))
((*1 *1 *2 *1)
- (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2))
- (-4 *4 (-349 *2))))
+ (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2))
+ (-4 *4 (-351 *2))))
((*1 *1 *1 *1)
- (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2))
- (-4 *4 (-349 *2))))
- ((*1 *1 *1 *1) (-4 *1 (-660)))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-758 *2)) (-4 *2 (-786))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-786))))
- ((*1 *1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016))))
+ (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2))
+ (-4 *4 (-351 *2))))
+ ((*1 *1 *1 *1) (-4 *1 (-662)))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-760 *2)) (-4 *2 (-788))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-760 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018))))
((*1 *2 *3 *2)
- (-12 (-5 *2 (-1169 *4)) (-4 *4 (-1145 *3)) (-4 *3 (-515))
- (-5 *1 (-899 *3 *4))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-979 *2)) (-4 *2 (-980))))
- ((*1 *1 *1 *1) (-4 *1 (-1028)))
+ (-12 (-5 *2 (-1171 *4)) (-4 *4 (-1147 *3)) (-4 *3 (-517))
+ (-5 *1 (-901 *3 *4))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-981 *2)) (-4 *2 (-982))))
+ ((*1 *1 *1 *1) (-4 *1 (-1030)))
((*1 *2 *2 *1)
- (-12 (-4 *1 (-1037 *3 *4 *2 *5)) (-4 *4 (-973)) (-4 *2 (-216 *3 *4))
- (-4 *5 (-216 *3 *4))))
+ (-12 (-4 *1 (-1039 *3 *4 *2 *5)) (-4 *4 (-975)) (-4 *2 (-218 *3 *4))
+ (-4 *5 (-218 *3 *4))))
((*1 *2 *1 *2)
- (-12 (-4 *1 (-1037 *3 *4 *5 *2)) (-4 *4 (-973)) (-4 *5 (-216 *3 *4))
- (-4 *2 (-216 *3 *4))))
+ (-12 (-4 *1 (-1039 *3 *4 *5 *2)) (-4 *4 (-975)) (-4 *5 (-218 *3 *4))
+ (-4 *2 (-218 *3 *4))))
((*1 *1 *2 *1)
- (-12 (-4 *3 (-973)) (-4 *4 (-786)) (-5 *1 (-1040 *3 *4 *2))
- (-4 *2 (-880 *3 (-495 *4) *4))))
+ (-12 (-4 *3 (-975)) (-4 *4 (-788)) (-5 *1 (-1042 *3 *4 *2))
+ (-4 *2 (-882 *3 (-497 *4) *4))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3))))
((*1 *2 *3 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3))))
((*1 *2 *3 *2)
- (-12 (-5 *2 (-874 (-203))) (-5 *3 (-203)) (-5 *1 (-1120))))
+ (-12 (-5 *2 (-876 (-205))) (-5 *3 (-205)) (-5 *1 (-1122))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-666))))
+ (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-668))))
((*1 *1 *2 *1)
- (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-666))))
+ (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-668))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-523)) (-4 *1 (-1167 *3)) (-4 *3 (-1123)) (-4 *3 (-21))))
+ (-12 (-5 *2 (-525)) (-4 *1 (-1169 *3)) (-4 *3 (-1125)) (-4 *3 (-21))))
((*1 *1 *2 *1)
- (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973))))
+ (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-1184 *3 *2)) (-4 *3 (-786)) (-4 *2 (-973))))
+ (-12 (-4 *1 (-1186 *3 *2)) (-4 *3 (-788)) (-4 *2 (-975))))
((*1 *1 *1 *2)
- (-12 (-5 *1 (-1190 *2 *3)) (-4 *2 (-973)) (-4 *3 (-782)))))
+ (-12 (-5 *1 (-1192 *2 *3)) (-4 *2 (-975)) (-4 *3 (-784)))))
(((*1 *2 *2)
- (-12
+ (-12 (-4 *3 (-13 (-517) (-788) (-966 (-525)))) (-5 *1 (-170 *3 *2))
+ (-4 *2 (-13 (-27) (-1111) (-408 (-157 *3))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-517) (-788) (-966 (-525))))
+ (-5 *1 (-170 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 (-157 *4))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-1115 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-898 *3)) (-4 *3 (-899)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1171 (-294 (-205))))
(-5 *2
- (-589
- (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-710)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *4 (-732)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-427)) (-4 *5 (-786))
- (-5 *1 (-424 *3 *4 *5 *6)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-339)) (-5 *2 (-589 *3)) (-5 *1 (-876 *4 *3))
- (-4 *3 (-1145 *4)))))
+ (-2 (|:| |additions| (-525)) (|:| |multiplications| (-525))
+ (|:| |exponentiations| (-525)) (|:| |functionCalls| (-525))))
+ (-5 *1 (-284)))))
+(((*1 *2 *2) (-12 (-5 *2 (-631 (-294 (-525)))) (-5 *1 (-960)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-973)) (-4 *7 (-973))
- (-4 *6 (-1145 *5)) (-5 *2 (-1083 (-1083 *7)))
- (-5 *1 (-472 *5 *6 *4 *7)) (-4 *4 (-1145 *6)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1034)) (-5 *1 (-306)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1105)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-632 *3)))))
+(((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-712)) (-4 *5 (-341)) (-5 *2 (-161 *6))
+ (-5 *1 (-800 *5 *4 *6)) (-4 *4 (-1162 *5)) (-4 *6 (-1147 *5)))))
+(((*1 *2)
+ (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-1176))
+ (-5 *1 (-995 *3 *4 *5 *6 *7)) (-4 *7 (-994 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-1176))
+ (-5 *1 (-1026 *3 *4 *5 *6 *7)) (-4 *7 (-994 *3 *4 *5 *6)))))
+(((*1 *1 *1 *1) (-5 *1 (-796))))
(((*1 *2 *2)
- (-12 (-5 *2 (-589 *7)) (-4 *7 (-992 *3 *4 *5 *6)) (-4 *3 (-427))
- (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5))
- (-5 *1 (-917 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-589 *7)) (-4 *7 (-992 *3 *4 *5 *6)) (-4 *3 (-427))
- (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5))
- (-5 *1 (-1023 *3 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-126))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-772 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-779 *3)) (-4 *3 (-1016)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-508))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-589 *9)) (-4 *8 (-987 *5 *6 *7))
- (-4 *9 (-992 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732))
- (-4 *7 (-786)) (-5 *2 (-710)) (-5 *1 (-990 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-589 *9)) (-4 *8 (-987 *5 *6 *7))
- (-4 *9 (-1025 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732))
- (-4 *7 (-786)) (-5 *2 (-710)) (-5 *1 (-1057 *5 *6 *7 *8 *9)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1035 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *2) (-12 (-5 *2 (-355)) (-5 *1 (-92)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-155 (-203))) (-5 *4 (-523)) (-5 *2 (-962))
- (-5 *1 (-698)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-710)) (-4 *4 (-284)) (-4 *6 (-1145 *4))
- (-5 *2 (-1169 (-589 *6))) (-5 *1 (-430 *4 *6)) (-5 *5 (-589 *6)))))
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-292 *4)) (-4 *4 (-13 (-767) (-786) (-973)))
- (-5 *2 (-1070)) (-5 *1 (-765 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-292 *5)) (-5 *4 (-108))
- (-4 *5 (-13 (-767) (-786) (-973))) (-5 *2 (-1070))
- (-5 *1 (-765 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-761)) (-5 *4 (-292 *5))
- (-4 *5 (-13 (-767) (-786) (-973))) (-5 *2 (-1174))
- (-5 *1 (-765 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-761)) (-5 *4 (-292 *6)) (-5 *5 (-108))
- (-4 *6 (-13 (-767) (-786) (-973))) (-5 *2 (-1174))
- (-5 *1 (-765 *6))))
- ((*1 *2 *1) (-12 (-4 *1 (-767)) (-5 *2 (-1070))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-767)) (-5 *3 (-108)) (-5 *2 (-1070))))
- ((*1 *2 *3 *1) (-12 (-4 *1 (-767)) (-5 *3 (-761)) (-5 *2 (-1174))))
- ((*1 *2 *3 *1 *4)
- (-12 (-4 *1 (-767)) (-5 *3 (-761)) (-5 *4 (-108)) (-5 *2 (-1174)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108))
- (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5)))))
+ (-12 (-5 *3 (-1144 *5 *4)) (-4 *4 (-761)) (-14 *5 (-1089))
+ (-5 *2 (-525)) (-5 *1 (-1032 *4 *5)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-339)) (-4 *4 (-515)) (-4 *5 (-1145 *4))
- (-5 *2 (-2 (|:| -2396 (-570 *4 *5)) (|:| -3082 (-383 *5))))
- (-5 *1 (-570 *4 *5)) (-5 *3 (-383 *5))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-589 (-1076 *3 *4))) (-5 *1 (-1076 *3 *4))
- (-14 *3 (-852)) (-4 *4 (-973))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-427)) (-4 *3 (-973))
- (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1)))
- (-4 *1 (-1145 *3)))))
+ (-12 (-5 *3 (-825 *4)) (-4 *4 (-1018)) (-5 *2 (-591 *5))
+ (-5 *1 (-823 *4 *5)) (-4 *5 (-1125)))))
(((*1 *2 *1 *1)
- (-12 (-4 *1 (-938 *3)) (-4 *3 (-1123)) (-4 *3 (-1016))
- (-5 *2 (-108)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-589 *5) *6))
- (-4 *5 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *6 (-1145 *5))
- (-5 *2 (-589 (-2 (|:| |poly| *6) (|:| -1747 *3))))
- (-5 *1 (-748 *5 *6 *3 *7)) (-4 *3 (-599 *6))
- (-4 *7 (-599 (-383 *6)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-589 *5) *6))
- (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-4 *6 (-1145 *5))
- (-5 *2 (-589 (-2 (|:| |poly| *6) (|:| -1747 (-597 *6 (-383 *6))))))
- (-5 *1 (-751 *5 *6)) (-5 *3 (-597 *6 (-383 *6))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-795))))
- ((*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1174)) (-5 *1 (-795))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1070)) (-5 *4 (-794)) (-5 *2 (-1174)) (-5 *1 (-795))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-523)) (-5 *2 (-1174)) (-5 *1 (-1068 *4))
- (-4 *4 (-1016)) (-4 *4 (-1123)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-895))) (-5 *1 (-268)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-523)) (-4 *1 (-594 *3)) (-4 *3 (-1123))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-4 *1 (-594 *2)) (-4 *2 (-1123)))))
-(((*1 *1 *1 *1) (-4 *1 (-508))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-523) (-523))) (-5 *1 (-337 *3)) (-4 *3 (-1016))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-710) (-710))) (-5 *1 (-362 *3)) (-4 *3 (-1016))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4)
- (-5 *1 (-592 *3 *4 *5)) (-4 *3 (-1016)))))
-(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-589 *1)) (-4 *1 (-284)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *3)
- (-12 (-4 *3 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $)))))
- (-4 *4 (-1145 *3))
- (-5 *2
- (-2 (|:| -2922 (-629 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-629 *3))))
- (-5 *1 (-326 *3 *4 *5)) (-4 *5 (-385 *3 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-523)) (-4 *4 (-1145 *3))
- (-5 *2
- (-2 (|:| -2922 (-629 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-629 *3))))
- (-5 *1 (-707 *4 *5)) (-4 *5 (-385 *3 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-325)) (-4 *3 (-1145 *4)) (-4 *5 (-1145 *3))
- (-5 *2
- (-2 (|:| -2922 (-629 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-629 *3))))
- (-5 *1 (-914 *4 *3 *5 *6)) (-4 *6 (-664 *3 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-325)) (-4 *3 (-1145 *4)) (-4 *5 (-1145 *3))
- (-5 *2
- (-2 (|:| -2922 (-629 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-629 *3))))
- (-5 *1 (-1178 *4 *3 *5 *6)) (-4 *6 (-385 *3 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *2 (-523))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973))
- (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-523)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-973)) (-5 *1 (-1141 *3 *2)) (-4 *2 (-1145 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-499))) (-5 *2 (-1087)) (-5 *1 (-499)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-259 *2)) (-4 *2 (-1123)) (-4 *2 (-786))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-259 *3)) (-4 *3 (-1123))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-898 *2)) (-4 *2 (-786)))))
-(((*1 *2)
- (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786))
- (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-1174))
- (-5 *1 (-917 *3 *4 *5 *6 *7)) (-4 *7 (-992 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786))
- (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-1174))
- (-5 *1 (-1023 *3 *4 *5 *6 *7)) (-4 *7 (-992 *3 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-874 (-203)))) (-5 *1 (-1170)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-339)) (-4 *1 (-305 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169 *3)) (-4 *3 (-1145 *4)) (-4 *4 (-1127))
- (-4 *1 (-318 *4 *3 *5)) (-4 *5 (-1145 (-383 *3)))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169 *4)) (-5 *3 (-1169 *1)) (-4 *4 (-158))
- (-4 *1 (-343 *4))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169 *4)) (-5 *3 (-1169 *1)) (-4 *4 (-158))
- (-4 *1 (-346 *4 *5)) (-4 *5 (-1145 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 *3)) (-4 *3 (-158)) (-4 *1 (-385 *3 *4))
- (-4 *4 (-1145 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-158)) (-4 *1 (-393 *3)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-987 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *2 (-786))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1016)) (-5 *1 (-894 *3 *2)) (-4 *3 (-1016)))))
-(((*1 *2 *3)
(-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-710)) (|:| |poli| *2)
- (|:| |polj| *2)))
- (-4 *5 (-732)) (-4 *2 (-880 *4 *5 *6)) (-5 *1 (-424 *4 *5 *6 *2))
- (-4 *4 (-427)) (-4 *6 (-786)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
+ (-5 *2
+ (-2 (|:| -1399 (-723 *3)) (|:| |coef1| (-723 *3))
+ (|:| |coef2| (-723 *3))))
+ (-5 *1 (-723 *3)) (-4 *3 (-517)) (-4 *3 (-975))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-517)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *2 (-2 (|:| -1399 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
+ (-4 *1 (-989 *3 *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-838 *3)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
(-5 *1 (-697)))))
-(((*1 *2 *3)
- (-12 (-4 *3 (-1145 *2)) (-4 *2 (-1145 *4)) (-5 *1 (-914 *4 *2 *3 *5))
- (-4 *4 (-325)) (-4 *5 (-664 *2 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-5 *3 (-1 (-108) *5 *5)) (-4 *5 (-13 (-1016) (-33)))
- (-5 *2 (-108)) (-5 *1 (-1052 *4 *5)) (-4 *4 (-13 (-1016) (-33))))))
-(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-691)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *5)) (-5 *4 (-589 *6)) (-4 *5 (-1016))
- (-4 *6 (-1123)) (-5 *2 (-1 *6 *5)) (-5 *1 (-586 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-589 *5)) (-5 *4 (-589 *2)) (-4 *5 (-1016))
- (-4 *2 (-1123)) (-5 *1 (-586 *5 *2))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-589 *6)) (-5 *4 (-589 *5)) (-4 *6 (-1016))
- (-4 *5 (-1123)) (-5 *2 (-1 *5 *6)) (-5 *1 (-586 *6 *5))))
- ((*1 *2 *3 *4 *5 *2)
- (-12 (-5 *3 (-589 *5)) (-5 *4 (-589 *2)) (-4 *5 (-1016))
- (-4 *2 (-1123)) (-5 *1 (-586 *5 *2))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-589 *5)) (-5 *4 (-589 *6))
- (-4 *5 (-1016)) (-4 *6 (-1123)) (-5 *1 (-586 *5 *6))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-589 *5)) (-5 *4 (-589 *2)) (-5 *6 (-1 *2 *5))
- (-4 *5 (-1016)) (-4 *2 (-1123)) (-5 *1 (-586 *5 *2))))
- ((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1056)) (-5 *3 (-133)) (-5 *2 (-710)))))
-(((*1 *2 *3 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203))
- (-5 *2 (-962)) (-5 *1 (-692)))))
-(((*1 *2 *1) (|partial| -12 (-4 *1 (-940)) (-5 *2 (-794)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))))
-(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-442))))
- ((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-442)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-739))
- (-5 *3
- (-2 (|:| |xinit| (-203)) (|:| |xend| (-203))
- (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203)))
- (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203)))
- (|:| |abserr| (-203)) (|:| |relerr| (-203))))
- (-5 *2 (-962)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-515) (-786) (-964 (-523))))
- (-5 *2 (-155 (-292 *4))) (-5 *1 (-168 *4 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 (-155 *4))))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-155 *3)) (-5 *1 (-1113 *4 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *4))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1076 *2 *3)) (-14 *2 (-852)) (-4 *3 (-973)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))))
+(((*1 *2 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *4 *4
+ *4 *6 *4)
+ (-12 (-5 *4 (-525)) (-5 *5 (-631 (-205))) (-5 *6 (-619 (-205)))
+ (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-692)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1085 *3)) (-4 *3 (-327)) (-5 *1 (-335 *3)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-907 *4 *5 *6 *3)) (-4 *4 (-975)) (-4 *5 (-734))
+ (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-4 *4 (-517))
+ (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-589 *4)) (-5 *1 (-1053 *3 *4))
- (-4 *3 (-13 (-1016) (-33))) (-4 *4 (-13 (-1016) (-33))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-710)) (-5 *2 (-108)) (-5 *1 (-541 *3)) (-4 *3 (-508)))))
-(((*1 *2 *1) (-12 (-4 *1 (-616 *3)) (-4 *3 (-1123)) (-5 *2 (-108)))))
+ (-12 (-4 *1 (-313 *3 *4 *5 *6)) (-4 *3 (-341)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-4 *6 (-320 *3 *4 *5)) (-5 *2 (-108)))))
+(((*1 *2 *3) (-12 (-5 *3 (-357)) (-5 *2 (-205)) (-5 *1 (-1174))))
+ ((*1 *2) (-12 (-5 *2 (-205)) (-5 *1 (-1174)))))
+(((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-701)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-542 *4))
- (-4 *4 (-325)))))
-(((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-589 (-562 *2))) (-5 *4 (-1087))
- (-4 *2 (-13 (-27) (-1109) (-406 *5)))
- (-4 *5 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-254 *5 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-1 (-108) *8))) (-4 *8 (-987 *5 *6 *7))
- (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786))
- (-5 *2 (-2 (|:| |goodPols| (-589 *8)) (|:| |badPols| (-589 *8))))
- (-5 *1 (-906 *5 *6 *7 *8)) (-5 *4 (-589 *8)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1034)) (-5 *1 (-306)))))
-(((*1 *2 *1 *2 *3)
- (|partial| -12 (-5 *2 (-1070)) (-5 *3 (-523)) (-5 *1 (-985)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-589 (-383 (-883 (-523))))) (-5 *4 (-589 (-1087)))
- (-5 *2 (-589 (-589 *5))) (-5 *1 (-356 *5))
- (-4 *5 (-13 (-784) (-339)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-883 (-523)))) (-5 *2 (-589 *4)) (-5 *1 (-356 *4))
- (-4 *4 (-13 (-784) (-339))))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-515))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-515)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1087))
- (-4 *5 (-13 (-515) (-964 (-523)) (-136)))
- (-5 *2
- (-2 (|:| -3699 (-383 (-883 *5))) (|:| |coeff| (-383 (-883 *5)))))
- (-5 *1 (-529 *5)) (-5 *3 (-383 (-883 *5))))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-721 *2)) (-4 *2 (-973))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-630 *3)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-454)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-302 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731))
- (-5 *2 (-710))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-358 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1016))
- (-5 *2 (-710))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-710)) (-5 *1 (-675 *3 *4)) (-4 *3 (-973))
- (-4 *4 (-666)))))
-(((*1 *1 *1 *2 *2)
- (|partial| -12 (-5 *2 (-852)) (-5 *1 (-1017 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-2 (|:| |gen| *3) (|:| -1847 (-523)))))
- (-5 *1 (-337 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-589 (-2 (|:| |gen| *3) (|:| -1847 (-710)))))
- (-5 *1 (-362 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-589 (-2 (|:| -3573 *3) (|:| -3262 (-523)))))
- (-5 *1 (-394 *3)) (-4 *3 (-515))))
+ (-12 (-4 *4 (-27))
+ (-4 *4 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-4 *5 (-1147 *4)) (-5 *2 (-591 (-598 (-385 *5))))
+ (-5 *1 (-602 *4 *5)) (-5 *3 (-598 (-385 *5))))))
+(((*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7)
+ (-12 (-5 *4 (-525)) (-5 *5 (-631 (-205)))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-87 G))))
+ (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN)))) (-5 *3 (-205))
+ (-5 *2 (-964)) (-5 *1 (-691)))))
+(((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))))
+(((*1 *1 *1) (-12 (-4 *1 (-115 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *1) (-12 (-5 *1 (-616 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1) (-12 (-5 *1 (-620 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796))))
((*1 *2 *1)
- (-12 (-5 *2 (-589 (-2 (|:| |gen| *3) (|:| -1847 (-710)))))
- (-5 *1 (-758 *3)) (-4 *3 (-786)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-155 (-203))) (-5 *5 (-523)) (-5 *6 (-1070))
- (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *3 *3 *3 *4 *5)
- (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1145 *6))
- (-4 *6 (-13 (-339) (-136) (-964 *4))) (-5 *4 (-523))
- (-5 *2
- (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-108))))
- (|:| -1747
- (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
- (|:| |beta| *3)))))
- (-5 *1 (-943 *6 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *1 (-620 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1016)))))
-(((*1 *1 *2 *2) (-12 (-5 *1 (-271 *2)) (-4 *2 (-1123))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1070)) (-5 *1 (-918))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-1011 *4)) (-4 *4 (-1123))
- (-5 *1 (-1009 *4)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-687)))))
+ (-12 (-4 *2 (-13 (-786) (-341))) (-5 *1 (-985 *2 *3))
+ (-4 *3 (-1147 *2)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1171 *4)) (-5 *3 (-1036)) (-4 *4 (-327))
+ (-5 *1 (-495 *4)))))
+(((*1 *2 *3 *4 *4 *5 *4 *4 *5)
+ (-12 (-5 *3 (-1072)) (-5 *4 (-525)) (-5 *5 (-631 (-205)))
+ (-5 *2 (-964)) (-5 *1 (-699)))))
+(((*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1176)) (-5 *1 (-357))))
+ ((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-357)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1085 *3)) (-4 *3 (-327)) (-5 *1 (-335 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-335 *3)) (-4 *3 (-327)))))
+(((*1 *2)
+ (-12 (-4 *3 (-13 (-788) (-517) (-966 (-525)))) (-5 *2 (-1176))
+ (-5 *1 (-411 *3 *4)) (-4 *4 (-408 *3)))))
(((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |mval| (-629 *3)) (|:| |invmval| (-629 *3))
- (|:| |genIdeal| (-475 *3 *4 *5 *6))))
- (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5)))))
+ (-12 (-5 *2 (-591 (-591 *3))) (-4 *3 (-975)) (-4 *1 (-629 *3 *4 *5))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 (-591 (-796)))) (-5 *1 (-796))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1056 *3 *4)) (-5 *1 (-924 *3 *4)) (-14 *3 (-854))
+ (-4 *4 (-341))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-591 *5))) (-4 *5 (-975))
+ (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *6 (-218 *4 *5))
+ (-4 *7 (-218 *3 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-4 *6 (-989 *3 *4 *5)) (-5 *1 (-573 *3 *4 *5 *6 *7 *2))
+ (-4 *7 (-994 *3 *4 *5 *6)) (-4 *2 (-1027 *3 *4 *5 *6)))))
+(((*1 *1 *1 *1) (-4 *1 (-510))))
(((*1 *2)
- (-12 (-4 *3 (-515)) (-5 *2 (-589 (-629 *3))) (-5 *1 (-42 *3 *4))
- (-4 *4 (-393 *3)))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-589 (-629 *6))) (-5 *4 (-108)) (-5 *5 (-523))
- (-5 *2 (-629 *6)) (-5 *1 (-956 *6)) (-4 *6 (-339)) (-4 *6 (-973))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 (-629 *4))) (-5 *2 (-629 *4)) (-5 *1 (-956 *4))
- (-4 *4 (-339)) (-4 *4 (-973))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-589 (-629 *5))) (-5 *4 (-523)) (-5 *2 (-629 *5))
- (-5 *1 (-956 *5)) (-4 *5 (-339)) (-4 *5 (-973)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087)) (-4 *4 (-427)) (-4 *4 (-786))
- (-5 *1 (-532 *4 *2)) (-4 *2 (-261)) (-4 *2 (-406 *4)))))
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-128)))))
+(((*1 *1 *1) (-12 (-4 *1 (-115 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *1) (-12 (-5 *1 (-616 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1) (-12 (-5 *1 (-620 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-786) (-341))) (-5 *1 (-985 *2 *3))
+ (-4 *3 (-1147 *2)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1085 *3)) (-4 *3 (-327)) (-5 *1 (-335 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-779 (-355))) (-5 *2 (-779 (-203))) (-5 *1 (-282)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-339)) (-5 *1 (-827 *2 *3))
- (-4 *2 (-1145 *3)))))
-(((*1 *2 *3 *4 *2 *2 *5)
- (|partial| -12 (-5 *2 (-779 *4)) (-5 *3 (-562 *4)) (-5 *5 (-108))
- (-4 *4 (-13 (-1109) (-29 *6)))
- (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-202 *6 *4)))))
+ (-12 (-4 *4 (-842)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-882 *4 *5 *6)) (-5 *2 (-396 (-1085 *7)))
+ (-5 *1 (-839 *4 *5 *6 *7)) (-5 *3 (-1085 *7))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-842)) (-4 *5 (-1147 *4)) (-5 *2 (-396 (-1085 *5)))
+ (-5 *1 (-840 *4 *5)) (-5 *3 (-1085 *5)))))
(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7)
- (-12 (-5 *4 (-523)) (-5 *5 (-629 (-203)))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-82 FCNF))))
- (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-83 FCNG)))) (-5 *3 (-203))
- (-5 *2 (-962)) (-5 *1 (-689)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *1 (-620 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))))
+ (-12 (-5 *4 (-525)) (-5 *5 (-631 (-205)))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-82 FCNF))))
+ (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-83 FCNG)))) (-5 *3 (-205))
+ (-5 *2 (-964)) (-5 *1 (-691)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-835 (-523))) (-5 *1 (-848))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))))
-(((*1 *2)
- (-12 (-4 *3 (-973)) (-5 *2 (-888 (-652 *3 *4))) (-5 *1 (-652 *3 *4))
- (-4 *4 (-1145 *3)))))
-(((*1 *1)
- (-12 (-4 *1 (-380)) (-2575 (|has| *1 (-6 -4239)))
- (-2575 (|has| *1 (-6 -4231)))))
- ((*1 *2 *1) (-12 (-4 *1 (-401 *2)) (-4 *2 (-1016)) (-4 *2 (-786))))
- ((*1 *2 *1) (-12 (-4 *1 (-769 *2)) (-4 *2 (-786))))
- ((*1 *1 *1 *1) (-4 *1 (-786))) ((*1 *1) (-5 *1 (-1034))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1169 *5)) (-4 *5 (-585 *4)) (-4 *4 (-515))
- (-5 *2 (-1169 *4)) (-5 *1 (-584 *4 *5)))))
-(((*1 *1 *2 *2)
+ (|partial| -12 (-5 *2 (-1085 *3)) (-4 *3 (-327)) (-5 *1 (-335 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517))
+ (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-5 *1 (-898 *2)) (-4 *2 (-899)))))
+(((*1 *2 *1)
(-12
(-5 *2
- (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355)))
- (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086))))
- (-5 *1 (-1086)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2 (-589 (-2 (|:| |val| (-108)) (|:| -2394 *4))))
- (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
+ (-3 (|:| |nullBranch| "null")
+ (|:| |assignmentBranch|
+ (-2 (|:| |var| (-1089))
+ (|:| |arrayIndex| (-591 (-885 (-525))))
+ (|:| |rand|
+ (-2 (|:| |ints2Floats?| (-108)) (|:| -2002 (-796))))))
+ (|:| |arrayAssignmentBranch|
+ (-2 (|:| |var| (-1089)) (|:| |rand| (-796))
+ (|:| |ints2Floats?| (-108))))
+ (|:| |conditionalBranch|
+ (-2 (|:| |switch| (-1088)) (|:| |thenClause| (-308))
+ (|:| |elseClause| (-308))))
+ (|:| |returnBranch|
+ (-2 (|:| -3028 (-108))
+ (|:| -3024
+ (-2 (|:| |ints2Floats?| (-108)) (|:| -2002 (-796))))))
+ (|:| |blockBranch| (-591 (-308)))
+ (|:| |commentBranch| (-591 (-1072))) (|:| |callBranch| (-1072))
+ (|:| |forBranch|
+ (-2 (|:| -1767 (-1011 (-885 (-525))))
+ (|:| |span| (-885 (-525))) (|:| -2234 (-308))))
+ (|:| |labelBranch| (-1036))
+ (|:| |loopBranch| (-2 (|:| |switch| (-1088)) (|:| -2234 (-308))))
+ (|:| |commonBranch|
+ (-2 (|:| -2400 (-1089)) (|:| |contents| (-591 (-1089)))))
+ (|:| |printBranch| (-591 (-796)))))
+ (-5 *1 (-308)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1089)) (-5 *3 (-412)) (-4 *5 (-788))
+ (-5 *1 (-1024 *5 *4)) (-4 *4 (-408 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-525)) (-5 *2 (-1176)) (-5 *1 (-936)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-335 *4))
+ (-4 *4 (-327))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-335 *4))
+ (-4 *4 (-327))))
+ ((*1 *1) (-4 *1 (-346)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-854)) (-5 *2 (-1171 *4)) (-5 *1 (-495 *4))
+ (-4 *4 (-327))))
+ ((*1 *1 *1) (-4 *1 (-510))) ((*1 *1) (-4 *1 (-510)))
+ ((*1 *1 *1) (-5 *1 (-525))) ((*1 *1 *1) (-5 *1 (-712)))
+ ((*1 *2 *1) (-12 (-5 *2 (-838 *3)) (-5 *1 (-837 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-5 *2 (-838 *4)) (-5 *1 (-837 *4))
+ (-4 *4 (-1018))))
+ ((*1 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-510)) (-4 *2 (-517)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-159 (-383 (-523)))) (-5 *1 (-113 *3)) (-14 *3 (-523))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *3 (-1068 *2)) (-4 *2 (-284)) (-5 *1 (-159 *2))))
- ((*1 *1 *2) (-12 (-5 *2 (-383 *3)) (-4 *3 (-284)) (-5 *1 (-159 *3))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-159 (-523))) (-5 *1 (-705 *3)) (-4 *3 (-380))))
+ (|partial| -12 (-4 *3 (-1030)) (-4 *3 (-788)) (-5 *2 (-591 *1))
+ (-4 *1 (-408 *3))))
((*1 *2 *1)
- (-12 (-5 *2 (-159 (-383 (-523)))) (-5 *1 (-802 *3)) (-14 *3 (-523))))
+ (|partial| -12 (-5 *2 (-591 (-825 *3))) (-5 *1 (-825 *3))
+ (-4 *3 (-1018))))
((*1 *2 *1)
- (-12 (-14 *3 (-523)) (-5 *2 (-159 (-383 (-523))))
- (-5 *1 (-803 *3 *4)) (-4 *4 (-800 *3)))))
+ (|partial| -12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *2 (-591 *1)) (-4 *1 (-882 *3 *4 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-975))
+ (-4 *7 (-882 *6 *4 *5)) (-5 *2 (-591 *3))
+ (-5 *1 (-883 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-341)
+ (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $))
+ (-15 -1754 (*7 $))))))))
(((*1 *2 *1 *1 *1)
(|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1)))
- (-4 *1 (-284))))
+ (-4 *1 (-286))))
((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4102 *1)))
- (-4 *1 (-284)))))
+ (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3857 *1)))
+ (-4 *1 (-286)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-564 *1))) (-4 *1 (-281)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-14 *5 (-591 (-1089))) (-4 *2 (-160))
+ (-4 *4 (-218 (-4045 *5) (-712)))
+ (-14 *6
+ (-1 (-108) (-2 (|:| -2226 *3) (|:| -2008 *4))
+ (-2 (|:| -2226 *3) (|:| -2008 *4))))
+ (-5 *1 (-438 *5 *2 *3 *4 *6 *7)) (-4 *3 (-788))
+ (-4 *7 (-882 *2 *4 (-798 *5))))))
+(((*1 *2 *3 *4 *4 *3 *3 *5)
+ (|partial| -12 (-5 *4 (-564 *3)) (-5 *5 (-1085 *3))
+ (-4 *3 (-13 (-408 *6) (-27) (-1111)))
+ (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *2 (-2 (|:| -3060 *3) (|:| |coeff| *3)))
+ (-5 *1 (-521 *6 *3 *7)) (-4 *7 (-1018))))
+ ((*1 *2 *3 *4 *4 *3 *4 *3 *5)
+ (|partial| -12 (-5 *4 (-564 *3)) (-5 *5 (-385 (-1085 *3)))
+ (-4 *3 (-13 (-408 *6) (-27) (-1111)))
+ (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *2 (-2 (|:| -3060 *3) (|:| |coeff| *3)))
+ (-5 *1 (-521 *6 *3 *7)) (-4 *7 (-1018)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1154 *3 *4 *5)) (-5 *1 (-295 *3 *4 *5))
- (-4 *3 (-13 (-339) (-786))) (-14 *4 (-1087)) (-14 *5 *3)))
- ((*1 *2 *1) (-12 (-4 *1 (-380)) (-5 *2 (-523))))
- ((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-394 *3)) (-4 *3 (-515))))
- ((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-638))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-1016)) (-5 *1 (-653 *3 *2 *4)) (-4 *3 (-786))
- (-14 *4
- (-1 (-108) (-2 (|:| -2557 *3) (|:| -3262 *2))
- (-2 (|:| -2557 *3) (|:| -3262 *2)))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-312 *5 *6 *7 *8)) (-4 *5 (-406 *4)) (-4 *6 (-1145 *5))
- (-4 *7 (-1145 (-383 *6))) (-4 *8 (-318 *5 *6 *7))
- (-4 *4 (-13 (-786) (-515) (-964 (-523)))) (-5 *2 (-108))
- (-5 *1 (-842 *4 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-312 (-383 (-523)) *4 *5 *6))
- (-4 *4 (-1145 (-383 (-523)))) (-4 *5 (-1145 (-383 *4)))
- (-4 *6 (-318 (-383 (-523)) *4 *5)) (-5 *2 (-108))
- (-5 *1 (-843 *4 *5 *6)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-97)) (-5 *2 (-108))))
- ((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-76 FUNCTN))))
- (-5 *2 (-962)) (-5 *1 (-688)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *4 (-1 (-3 (-523) "failed") *5)) (-4 *5 (-973))
- (-5 *2 (-523)) (-5 *1 (-506 *5 *3)) (-4 *3 (-1145 *5))))
- ((*1 *2 *3 *4 *2 *5)
- (|partial| -12 (-5 *5 (-1 (-3 (-523) "failed") *4)) (-4 *4 (-973))
- (-5 *2 (-523)) (-5 *1 (-506 *4 *3)) (-4 *3 (-1145 *4))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1 (-3 (-523) "failed") *4)) (-4 *4 (-973))
- (-5 *2 (-523)) (-5 *1 (-506 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1169 *4)) (-4 *4 (-585 (-523))) (-5 *2 (-108))
- (-5 *1 (-1194 *4)))))
-(((*1 *1 *2 *2)
- (-12
- (-5 *2
- (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355)))
- (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086))))
- (-5 *1 (-1086)))))
+ (-12 (-5 *2 (-1085 (-385 (-885 *3)))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-592 *3)) (-4 *3 (-1018)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-589 (-2 (|:| |val| (-589 *6)) (|:| -2394 *7))))
- (-4 *6 (-987 *3 *4 *5)) (-4 *7 (-992 *3 *4 *5 *6)) (-4 *3 (-427))
- (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-917 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-589 (-2 (|:| |val| (-589 *6)) (|:| -2394 *7))))
- (-4 *6 (-987 *3 *4 *5)) (-4 *7 (-992 *3 *4 *5 *6)) (-4 *3 (-427))
- (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-1023 *3 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1145 *5))
- (-5 *1 (-667 *5 *2)) (-4 *5 (-339)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-144)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-357)) (-5 *1 (-987)))))
(((*1 *2 *1)
- (-12
- (-5 *2
- (-589
- (-2 (|:| |scalar| (-383 (-523))) (|:| |coeff| (-1083 *3))
- (|:| |logand| (-1083 *3)))))
- (-5 *1 (-540 *3)) (-4 *3 (-339)))))
-(((*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-835 (-523))) (-5 *1 (-848))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-687)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-1145 *4)) (-5 *1 (-502 *4 *2 *5 *6))
- (-4 *4 (-284)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-710))))))
-(((*1 *2 *3)
- (-12 (-14 *4 (-589 (-1087))) (-14 *5 (-710))
- (-5 *2
- (-589
- (-475 (-383 (-523)) (-218 *5 (-710)) (-796 *4)
- (-225 *4 (-383 (-523))))))
- (-5 *1 (-476 *4 *5))
- (-5 *3
- (-475 (-383 (-523)) (-218 *5 (-710)) (-796 *4)
- (-225 *4 (-383 (-523))))))))
-(((*1 *1 *1) (-5 *1 (-1086)))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355)))
- (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086))))
- (-5 *1 (-1086)))))
-(((*1 *1) (-5 *1 (-306))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1076 3 *3)) (-4 *3 (-973)) (-4 *1 (-1048 *3))))
- ((*1 *1) (-12 (-4 *1 (-1048 *2)) (-4 *2 (-973)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-589 *7)) (|:| |badPols| (-589 *7))))
- (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-589 *7)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-710)) (-4 *1 (-680 *4 *5)) (-4 *4 (-973))
- (-4 *5 (-786)) (-5 *2 (-883 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-710)) (-4 *1 (-680 *4 *5)) (-4 *4 (-973))
- (-4 *5 (-786)) (-5 *2 (-883 *4))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-710)) (-4 *1 (-1160 *4)) (-4 *4 (-973))
- (-5 *2 (-883 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-710)) (-4 *1 (-1160 *4)) (-4 *4 (-973))
- (-5 *2 (-883 *4)))))
+ (-12 (-5 *2 (-2 (|:| |preimage| (-591 *3)) (|:| |image| (-591 *3))))
+ (-5 *1 (-838 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *5 (-1072))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-80 PDEF))))
+ (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-81 BNDY)))) (-5 *2 (-964))
+ (-5 *1 (-692)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1018)) (-4 *2 (-833 *5)) (-5 *1 (-633 *5 *2 *3 *4))
+ (-4 *3 (-351 *2)) (-4 *4 (-13 (-351 *5) (-10 -7 (-6 -4250)))))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794))))
- ((*1 *2 *1)
- (-12
- (-5 *2
- (-2 (|:| -3753 (-589 (-794))) (|:| -1773 (-589 (-794)))
- (|:| |presup| (-589 (-794))) (|:| -2065 (-589 (-794)))
- (|:| |args| (-589 (-794)))))
- (-5 *1 (-1087)))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
(((*1 *2 *1)
- (-12 (-4 *4 (-1016)) (-5 *2 (-108)) (-5 *1 (-816 *3 *4 *5))
- (-4 *3 (-1016)) (-4 *5 (-609 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-820 *3 *4)) (-4 *3 (-1016))
- (-4 *4 (-1016)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1047 (-203))) (-5 *3 (-589 (-240))) (-5 *1 (-1171))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1047 (-203))) (-5 *3 (-1070)) (-5 *1 (-1171))))
- ((*1 *1 *1) (-5 *1 (-1171))))
-(((*1 *1 *2) (-12 (-5 *2 (-1034)) (-5 *1 (-760)))))
-(((*1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1172)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *1 *2 *3)
- (-12 (-5 *3 (-589 (-1070))) (-5 *2 (-1070)) (-5 *1 (-1170))))
- ((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1170))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1170))))
- ((*1 *2 *1 *2 *3)
- (-12 (-5 *3 (-589 (-1070))) (-5 *2 (-1070)) (-5 *1 (-1171))))
- ((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1171))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1171)))))
-(((*1 *2 *2) (-12 (-5 *2 (-629 (-292 (-523)))) (-5 *1 (-958)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-794))))
- ((*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1174)) (-5 *1 (-892)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-973))
- (-4 *2 (-13 (-380) (-964 *4) (-339) (-1109) (-261)))
- (-5 *1 (-418 *4 *3 *2)) (-4 *3 (-1145 *4))))
- ((*1 *1 *1) (-4 *1 (-508)))
- ((*1 *2 *1) (-12 (-5 *2 (-852)) (-5 *1 (-614 *3)) (-4 *3 (-786))))
- ((*1 *2 *1) (-12 (-5 *2 (-852)) (-5 *1 (-618 *3)) (-4 *3 (-786))))
- ((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-758 *3)) (-4 *3 (-786))))
- ((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-824 *3)) (-4 *3 (-786))))
- ((*1 *2 *1) (-12 (-4 *1 (-923 *3)) (-4 *3 (-1123)) (-5 *2 (-710))))
- ((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-1121 *3)) (-4 *3 (-1123))))
+ (-12 (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975))
+ (-5 *2 (-108))))
((*1 *2 *1)
- (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-930))
- (-4 *2 (-973)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-858)))))
-(((*1 *2 *1) (-12 (-4 *1 (-515)) (-5 *2 (-108)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1070)) (-5 *2 (-193 (-473))) (-5 *1 (-774)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 *4))
- (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1087))
- (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *4 *5))
- (-4 *5 (-13 (-27) (-1109) (-406 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *4 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-383 (-523)))
- (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *5 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-271 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5)))
- (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-271 *3)) (-5 *5 (-383 (-523)))
- (-4 *3 (-13 (-27) (-1109) (-406 *6)))
- (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *6 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 (-523))) (-5 *4 (-271 *6))
- (-4 *6 (-13 (-27) (-1109) (-406 *5)))
- (-4 *5 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-434 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1087)) (-5 *5 (-271 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *6)))
- (-4 *6 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-434 *6 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *7 (-523))) (-5 *4 (-271 *7)) (-5 *5 (-1136 (-523)))
- (-4 *7 (-13 (-27) (-1109) (-406 *6)))
- (-4 *6 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-434 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-1087)) (-5 *5 (-271 *3)) (-5 *6 (-1136 (-523)))
- (-4 *3 (-13 (-27) (-1109) (-406 *7)))
- (-4 *7 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-434 *7 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-1 *8 (-383 (-523)))) (-5 *4 (-271 *8))
- (-5 *5 (-1136 (-383 (-523)))) (-5 *6 (-383 (-523)))
- (-4 *8 (-13 (-27) (-1109) (-406 *7)))
- (-4 *7 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-434 *7 *8))))
- ((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *4 (-1087)) (-5 *5 (-271 *3)) (-5 *6 (-1136 (-383 (-523))))
- (-5 *7 (-383 (-523))) (-4 *3 (-13 (-27) (-1109) (-406 *8)))
- (-4 *8 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-434 *8 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1068 (-2 (|:| |k| (-523)) (|:| |c| *3))))
- (-4 *3 (-973)) (-5 *1 (-548 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-549 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1068 (-2 (|:| |k| (-523)) (|:| |c| *3))))
- (-4 *3 (-973)) (-4 *1 (-1129 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-710))
- (-5 *3 (-1068 (-2 (|:| |k| (-383 (-523))) (|:| |c| *4))))
- (-4 *4 (-973)) (-4 *1 (-1150 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-4 *1 (-1160 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1068 (-2 (|:| |k| (-710)) (|:| |c| *3))))
- (-4 *3 (-973)) (-4 *1 (-1160 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-835 (-523))) (-5 *1 (-848))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-1192 *3 *4)) (-4 *3 (-975))
+ (-4 *4 (-784)))))
+(((*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-422 *3)) (-4 *3 (-975)))))
+(((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-4 *5 (-344))
- (-5 *2 (-710)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-2 (|:| |totdeg| (-710)) (|:| -3764 *4))) (-5 *5 (-710))
- (-4 *4 (-880 *6 *7 *8)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786))
- (-5 *2
- (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-5 *1 (-424 *6 *7 *8 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523)))))))
- (-5 *2 (-589 *4)) (-5 *1 (-1042 *3 *4)) (-4 *3 (-1145 *4))))
- ((*1 *2 *3 *3)
- (-12 (-4 *3 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523)))))))
- (-5 *2 (-589 *3)) (-5 *1 (-1042 *4 *3)) (-4 *4 (-1145 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-133)))))
+ (-12 (-5 *2 (-591 (-273 *3))) (-5 *1 (-273 *3)) (-4 *3 (-517))
+ (-4 *3 (-1125)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 (-589 (-589 *4)))) (-5 *2 (-589 (-589 *4)))
- (-4 *4 (-786)) (-5 *1 (-1095 *4)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-721 *2)) (-4 *2 (-515)) (-4 *2 (-973))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-515)) (-5 *1 (-899 *3 *2)) (-4 *2 (-1145 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-515))))
- ((*1 *2 *3 *3 *1)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *3 (-987 *4 *5 *6))
- (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *1))))
- (-4 *1 (-992 *4 *5 *6 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-271 (-883 (-523))))
- (-5 *2
- (-2 (|:| |varOrder| (-589 (-1087)))
- (|:| |inhom| (-3 (-589 (-1169 (-710))) "failed"))
- (|:| |hom| (-589 (-1169 (-710))))))
- (-5 *1 (-214)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1061 *3)) (-4 *3 (-1123)) (-5 *2 (-108)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-1076 3 *3))))
- ((*1 *1) (-12 (-5 *1 (-1076 *2 *3)) (-14 *2 (-852)) (-4 *3 (-973))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1047 (-203))) (-5 *1 (-1171))))
- ((*1 *2 *1) (-12 (-5 *2 (-1047 (-203))) (-5 *1 (-1171)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-292 (-203))) (-5 *4 (-1087))
- (-5 *5 (-1011 (-779 (-203)))) (-5 *2 (-589 (-203))) (-5 *1 (-172))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-292 (-203))) (-5 *4 (-1087))
- (-5 *5 (-1011 (-779 (-203)))) (-5 *2 (-589 (-203))) (-5 *1 (-277)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1016)) (-4 *5 (-1016))
- (-4 *6 (-1016)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-624 *4 *5 *6)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-973)) (-5 *1 (-419 *3 *2)) (-4 *2 (-1145 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-896 *3)) (-4 *3 (-897)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-883 (-383 (-523)))) (-5 *4 (-1087))
- (-5 *5 (-1011 (-779 (-203)))) (-5 *2 (-589 (-203))) (-5 *1 (-277)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-515))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))))
+ (-12 (-4 *3 (-341)) (-5 *1 (-264 *3 *2)) (-4 *2 (-1162 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-763)) (-5 *1 (-762)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6)
+ (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205)))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-68 APROD)))) (-5 *4 (-205))
+ (-5 *2 (-964)) (-5 *1 (-698)))))
+(((*1 *1 *2 *3 *3 *4 *5)
+ (-12 (-5 *2 (-591 (-591 (-876 (-205))))) (-5 *3 (-591 (-807)))
+ (-5 *4 (-591 (-854))) (-5 *5 (-591 (-242))) (-5 *1 (-445))))
+ ((*1 *1 *2 *3 *3 *4)
+ (-12 (-5 *2 (-591 (-591 (-876 (-205))))) (-5 *3 (-591 (-807)))
+ (-5 *4 (-591 (-854))) (-5 *1 (-445))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 (-591 (-876 (-205))))) (-5 *1 (-445))))
+ ((*1 *1 *1) (-5 *1 (-445))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-765)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -2805 *3) (|:| |coef2| (-723 *3))))
+ (-5 *1 (-723 *3)) (-4 *3 (-517)) (-4 *3 (-975)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-259)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-325)) (-4 *5 (-305 *4)) (-4 *6 (-1145 *5))
- (-5 *2 (-589 *3)) (-5 *1 (-716 *4 *5 *6 *3 *7)) (-4 *3 (-1145 *6))
- (-14 *7 (-852)))))
-(((*1 *2)
- (-12 (-4 *3 (-1127)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4)))
- (-5 *2 (-1169 *1)) (-4 *1 (-318 *3 *4 *5)))))
-(((*1 *2 *1 *3 *3 *4)
- (-12 (-5 *3 (-1 (-794) (-794) (-794))) (-5 *4 (-523)) (-5 *2 (-794))
- (-5 *1 (-592 *5 *6 *7)) (-4 *5 (-1016)) (-4 *6 (-23)) (-14 *7 *6)))
- ((*1 *2 *1 *2)
- (-12 (-5 *2 (-794)) (-5 *1 (-790 *3 *4 *5)) (-4 *3 (-973))
- (-14 *4 (-94 *3)) (-14 *5 (-1 *3 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-203)) (-5 *1 (-794))))
- ((*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-794))))
- ((*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-794))))
- ((*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-794)) (-5 *1 (-1083 *3)) (-4 *3 (-973)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3))
- (-4 *3 (-13 (-339) (-1109) (-930))))))
+ (-12 (-4 *4 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525)))))))
+ (-5 *2 (-591 *4)) (-5 *1 (-1044 *3 *4)) (-4 *3 (-1147 *4))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525)))))))
+ (-5 *2 (-591 *3)) (-5 *1 (-1044 *4 *3)) (-4 *4 (-1147 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1072)) (-5 *3 (-591 (-242))) (-5 *1 (-240))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-242)))))
(((*1 *2 *1)
- (|partial| -12
- (-4 *3 (-13 (-786) (-964 (-523)) (-585 (-523)) (-427)))
- (-5 *2 (-779 *4)) (-5 *1 (-289 *3 *4 *5 *6))
- (-4 *4 (-13 (-27) (-1109) (-406 *3))) (-14 *5 (-1087))
- (-14 *6 *4)))
+ (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *2 (-591 (-591 *3)))))
((*1 *2 *1)
- (|partial| -12
- (-4 *3 (-13 (-786) (-964 (-523)) (-585 (-523)) (-427)))
- (-5 *2 (-779 *4)) (-5 *1 (-1155 *3 *4 *5 *6))
- (-4 *4 (-13 (-27) (-1109) (-406 *3))) (-14 *5 (-1087))
- (-14 *6 *4))))
-(((*1 *2)
- (-12 (-4 *4 (-1127)) (-4 *5 (-1145 *4)) (-4 *6 (-1145 (-383 *5)))
- (-5 *2 (-589 (-589 *4))) (-5 *1 (-317 *3 *4 *5 *6))
- (-4 *3 (-318 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-4 *3 (-344)) (-5 *2 (-589 (-589 *3))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-762)) (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-589 (-523))) (-5 *3 (-629 (-523))) (-5 *1 (-1026)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1051))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
+ (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975))
+ (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-591 (-591 *5)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-591 *3))) (-5 *1 (-1098 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3)
+ (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205))
+ (-5 *2 (-964)) (-5 *1 (-694)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *2 (-710)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-874 (-203))) (-5 *4 (-805)) (-5 *2 (-1174))
- (-5 *1 (-443))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-973)) (-4 *1 (-909 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-874 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-874 *3)) (-4 *3 (-973)) (-4 *1 (-1048 *3))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-1048 *3)) (-4 *3 (-973))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *1 (-1048 *3)) (-4 *3 (-973))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-874 *3)) (-4 *1 (-1048 *3)) (-4 *3 (-973))))
- ((*1 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-874 (-203))) (-5 *1 (-1120)) (-5 *3 (-203)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-160)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-589 (-874 (-203)))))
- (-5 *2 (-589 (-1011 (-203)))) (-5 *1 (-859)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-523)) (-5 *1 (-394 *2)) (-4 *2 (-515)))))
+ (|partial| -12 (-4 *1 (-1133 *3 *2)) (-4 *3 (-975))
+ (-4 *2 (-1162 *3)))))
+(((*1 *1 *2) (-12 (-5 *1 (-207 *2)) (-4 *2 (-13 (-341) (-1111))))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1083 *1)) (-4 *1 (-940)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3))
- (-4 *3 (-13 (-339) (-1109) (-930))))))
-(((*1 *2 *3) (-12 (-5 *3 (-108)) (-5 *2 (-1070)) (-5 *1 (-51)))))
-(((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-1070)) (-5 *4 (-155 (-203))) (-5 *5 (-523))
- (-5 *2 (-962)) (-5 *1 (-698)))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-525)) (-4 *4 (-160)) (-4 *5 (-351 *4))
+ (-4 *6 (-351 *4)) (-5 *1 (-630 *4 *5 *6 *2))
+ (-4 *2 (-629 *4 *5 *6)))))
+(((*1 *2 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205)))
+ (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205))))
+ (|:| |ub| (-591 (-781 (-205))))))
+ (-5 *1 (-246)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-859))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-860)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-135)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))))
(((*1 *2 *1)
(-12
(-5 *2
- (-589
+ (-591
(-2
- (|:| -2402
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (|:| -2746
+ (|:| -2019
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (|:| -1221
(-2
(|:| |endPointContinuity|
(-3 (|:| |continuous| "Continuous at the end points")
@@ -6551,10 +4998,10 @@
(|:| |notEvaluated|
"End point continuity not yet evaluated")))
(|:| |singularitiesStream|
- (-3 (|:| |str| (-1068 (-203)))
+ (-3 (|:| |str| (-1070 (-205)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -3487
+ (|:| -1767
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite|
"The bottom of range is infinite")
@@ -6562,11587 +5009,13141 @@
(|:| |bothInfinite|
"Both top and bottom points are infinite")
(|:| |notEvaluated| "Range not yet evaluated"))))))))
- (-5 *1 (-518))))
+ (-5 *1 (-520))))
((*1 *2 *1)
- (-12 (-4 *1 (-556 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1123))
- (-5 *2 (-589 *4)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))))
-(((*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3)
- (-12 (-5 *4 (-629 (-203))) (-5 *5 (-629 (-523))) (-5 *3 (-523))
- (-5 *2 (-962)) (-5 *1 (-696)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-692)))))
-(((*1 *1 *1) (-5 *1 (-985))))
-(((*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-159 *3)) (-4 *3 (-284)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-1083 *3)) (-5 *1 (-40 *4 *3))
- (-4 *3
- (-13 (-339) (-279)
- (-10 -8 (-15 -2164 ((-1039 *4 (-562 $)) $))
- (-15 -2171 ((-1039 *4 (-562 $)) $))
- (-15 -3976 ($ (-1039 *4 (-562 $))))))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-763)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-589 (-589 *4)))) (-5 *2 (-589 (-589 *4)))
- (-5 *1 (-1095 *4)) (-4 *4 (-786)))))
-(((*1 *2 *3) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-520)) (-5 *3 (-523)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-823 *4)) (-4 *4 (-1016)) (-5 *1 (-820 *4 *3))
- (-4 *3 (-1016)))))
+ (-12 (-4 *1 (-558 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1125))
+ (-5 *2 (-591 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *1 *1) (-4 *1 (-577)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-578 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932) (-1111))))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1083 *3)) (-4 *3 (-325)) (-5 *1 (-333 *3)))))
-(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-699)))))
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-712)) (-4 *2 (-517)) (-5 *1 (-901 *2 *4))
+ (-4 *4 (-1147 *2)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *5 *5))
- (-4 *5 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523)))))))
+ (-12 (-5 *4 (-1089))
+ (-4 *5 (-13 (-429) (-788) (-138) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-542 *3)) (-5 *1 (-518 *5 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *5))))))
+(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1072)) (-5 *3 (-715)) (-5 *1 (-110)))))
+(((*1 *1 *2 *2)
+ (-12
(-5 *2
- (-2 (|:| |solns| (-589 *5))
- (|:| |maps| (-589 (-2 (|:| |arg| *5) (|:| |res| *5))))))
- (-5 *1 (-1042 *3 *5)) (-4 *3 (-1145 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171))))
- ((*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-1191 *3 *4)) (-4 *1 (-350 *3 *4)) (-4 *3 (-786))
- (-4 *4 (-158))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-362 *2)) (-4 *2 (-1016))))
- ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-758 *2)) (-4 *2 (-786))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-758 *2)) (-4 *2 (-786))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973))))
+ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357)))
+ (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088))))
+ (-5 *1 (-1088)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-591 (-357))) (-5 *3 (-591 (-242))) (-5 *1 (-240))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-591 (-357))) (-5 *1 (-445))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 (-357))) (-5 *1 (-445))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-854)) (-5 *4 (-807)) (-5 *2 (-1176)) (-5 *1 (-1172))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-854)) (-5 *4 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-788)) (-5 *1 (-459 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-786)) (-5 *2 (-525))))
+ ((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-838 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-991 *4 *3)) (-4 *4 (-13 (-786) (-341)))
+ (-4 *3 (-1147 *4)) (-5 *2 (-525))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-13 (-517) (-788) (-966 *2) (-587 *2) (-429)))
+ (-5 *2 (-525)) (-5 *1 (-1033 *4 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *4)))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1089)) (-5 *5 (-781 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *6)))
+ (-4 *6 (-13 (-517) (-788) (-966 *2) (-587 *2) (-429)))
+ (-5 *2 (-525)) (-5 *1 (-1033 *6 *3))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *4 (-1089)) (-5 *5 (-1072))
+ (-4 *6 (-13 (-517) (-788) (-966 *2) (-587 *2) (-429)))
+ (-5 *2 (-525)) (-5 *1 (-1033 *6 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *6)))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-429)) (-5 *2 (-525))
+ (-5 *1 (-1034 *4))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1089)) (-5 *5 (-781 (-385 (-885 *6))))
+ (-5 *3 (-385 (-885 *6))) (-4 *6 (-429)) (-5 *2 (-525))
+ (-5 *1 (-1034 *6))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *3 (-385 (-885 *6))) (-5 *4 (-1089))
+ (-5 *5 (-1072)) (-4 *6 (-429)) (-5 *2 (-525)) (-5 *1 (-1034 *6))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-525)) (-5 *1 (-1108 *3)) (-4 *3 (-975)))))
+(((*1 *2 *2 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525)))))))
+ (-5 *1 (-1044 *3 *2)) (-4 *3 (-1147 *2)))))
+(((*1 *1 *1) (-12 (-4 *1 (-351 *2)) (-4 *2 (-1125)) (-4 *2 (-788))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-351 *3)) (-4 *3 (-1125))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-591 (-838 *3))) (-5 *1 (-838 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-788))
+ (-4 *6 (-989 *4 *5 *3))
+ (-5 *2 (-2 (|:| |under| *1) (|:| -2662 *1) (|:| |upper| *1)))
+ (-4 *1 (-907 *4 *5 *3 *6)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-232 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-788))
+ (-4 *5 (-245 *4)) (-4 *6 (-734)) (-5 *2 (-108)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-1092)))))
+(((*1 *1 *2 *2) (-12 (-5 *1 (-810 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *2 *2 *2) (-12 (-5 *1 (-812 *2)) (-4 *2 (-1125))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-591 (-876 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-876 *3))) (-4 *3 (-975)) (-4 *1 (-1050 *3))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-758 *3)) (-4 *1 (-1184 *3 *4)) (-4 *3 (-786))
- (-4 *4 (-973))))
+ (-12 (-5 *2 (-591 (-591 *3))) (-4 *1 (-1050 *3)) (-4 *3 (-975))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973)))))
-(((*1 *2 *3 *3 *3)
- (|partial| -12
- (-4 *4 (-13 (-136) (-27) (-964 (-523)) (-964 (-383 (-523)))))
- (-4 *5 (-1145 *4)) (-5 *2 (-1083 (-383 *5))) (-5 *1 (-565 *4 *5))
- (-5 *3 (-383 *5))))
- ((*1 *2 *3 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 (-394 *6) *6)) (-4 *6 (-1145 *5))
- (-4 *5 (-13 (-136) (-27) (-964 (-523)) (-964 (-383 (-523)))))
- (-5 *2 (-1083 (-383 *6))) (-5 *1 (-565 *5 *6)) (-5 *3 (-383 *6)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-695)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-687)))))
-(((*1 *1) (-5 *1 (-1174))))
-(((*1 *2 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-427)) (-4 *4 (-786)) (-4 *5 (-732)) (-5 *2 (-108))
- (-5 *1 (-916 *3 *4 *5 *6)) (-4 *6 (-880 *3 *5 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1052 *3 *4)) (-4 *3 (-13 (-1016) (-33)))
- (-4 *4 (-13 (-1016) (-33))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-406 *4)) (-5 *1 (-145 *4 *2))
- (-4 *4 (-13 (-786) (-515))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5))
- (-5 *2 (-2 (|:| -3922 (-589 *6)) (|:| -3439 (-589 *6)))))))
+ (-12 (-5 *2 (-591 (-876 *3))) (-4 *1 (-1050 *3)) (-4 *3 (-975)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *1 *2 *2)
+ (-12
+ (-5 *2
+ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357)))
+ (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088))))
+ (-5 *1 (-1088)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-51)) (-5 *1 (-770)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1054 *4 *2)) (-14 *4 (-852))
- (-4 *2 (-13 (-973) (-10 -7 (-6 (-4250 "*"))))) (-5 *1 (-833 *4 *2)))))
+ (-12
+ (-5 *3
+ (-2 (|:| -2432 (-357)) (|:| -2400 (-1072))
+ (|:| |explanations| (-591 (-1072)))))
+ (-5 *2 (-964)) (-5 *1 (-284))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| -2432 (-357)) (|:| -2400 (-1072))
+ (|:| |explanations| (-591 (-1072))) (|:| |extra| (-964))))
+ (-5 *2 (-964)) (-5 *1 (-284)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-523)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-5 *2 (-1174)) (-5 *1 (-424 *4 *5 *6 *7)) (-4 *7 (-880 *4 *5 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-857)))))
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850))))
+ ((*1 *2 *3) (-12 (-5 *3 (-902)) (-5 *2 (-837 (-525))) (-5 *1 (-850)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-342 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-5 *2 (-1072)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1016)) (-4 *2 (-831 *5)) (-5 *1 (-631 *5 *2 *3 *4))
- (-4 *3 (-349 *2)) (-4 *4 (-13 (-349 *5) (-10 -7 (-6 -4248)))))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-852)) (-5 *4 (-805)) (-5 *2 (-1174)) (-5 *1 (-1170))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-852)) (-5 *4 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
+ (-12 (-5 *3 (-631 *8)) (-4 *8 (-882 *5 *7 *6))
+ (-4 *5 (-13 (-286) (-138))) (-4 *6 (-13 (-788) (-566 (-1089))))
+ (-4 *7 (-734))
+ (-5 *2
+ (-591
+ (-2 (|:| -4073 (-712))
+ (|:| |eqns|
+ (-591
+ (-2 (|:| |det| *8) (|:| |rows| (-591 (-525)))
+ (|:| |cols| (-591 (-525))))))
+ (|:| |fgb| (-591 *8)))))
+ (-5 *1 (-857 *5 *6 *7 *8)) (-5 *4 (-712)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 (-712))) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854))
+ (-4 *4 (-975)))))
+(((*1 *2 *1) (-12 (-4 *1 (-618 *3)) (-4 *3 (-1125)) (-5 *2 (-108)))))
+(((*1 *1 *1) (-5 *1 (-1088)))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357)))
+ (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088))))
+ (-5 *1 (-1088)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-591 *7)) (-4 *7 (-994 *3 *4 *5 *6)) (-4 *3 (-429))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5))
+ (-5 *1 (-919 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-591 *7)) (-4 *7 (-994 *3 *4 *5 *6)) (-4 *3 (-429))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5))
+ (-5 *1 (-1025 *3 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1089)) (-5 *5 (-591 (-385 (-885 *6))))
+ (-5 *3 (-385 (-885 *6)))
+ (-4 *6 (-13 (-517) (-966 (-525)) (-138)))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-531 *6)))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-591 *6)) (-5 *4 (-591 (-227 *5 *6))) (-4 *6 (-429))
+ (-5 *2 (-227 *5 *6)) (-14 *5 (-591 (-1089))) (-5 *1 (-579 *5 *6)))))
+(((*1 *2)
+ (-12 (-4 *3 (-517)) (-5 *2 (-591 *4)) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-395 *3)))))
+(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-1072)) (-5 *3 (-764)) (-5 *1 (-763)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-404 *4 *2)) (-4 *2 (-13 (-1111) (-29 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-1089)) (-4 *5 (-138))
+ (-4 *5 (-13 (-429) (-966 (-525)) (-788) (-587 (-525))))
+ (-5 *2 (-294 *5)) (-5 *1 (-545 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-631 *1)) (-5 *4 (-1171 *1)) (-4 *1 (-587 *5))
+ (-4 *5 (-975))
+ (-5 *2 (-2 (|:| -4057 (-631 *5)) (|:| |vec| (-1171 *5))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-631 *1)) (-4 *1 (-587 *4)) (-4 *4 (-975))
+ (-5 *2 (-631 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-325)) (-5 *2 (-108)) (-5 *1 (-195 *4 *3))
- (-4 *3 (-1145 *4)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-880 *4 *6 *5)) (-4 *4 (-427))
- (-4 *5 (-786)) (-4 *6 (-732)) (-5 *1 (-916 *4 *5 *6 *3)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-523)) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))))
-(((*1 *1 *1 *1) (-5 *1 (-148)))
- ((*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-148)))))
-(((*1 *2 *1) (-12 (-4 *1 (-365)) (-5 *2 (-108)))))
-(((*1 *2 *3 *3 *3 *3 *3 *3 *3 *3 *4 *5 *5 *5 *5 *5 *5 *6 *6 *6 *3 *3 *5
- *7 *3 *8)
- (-12 (-5 *5 (-629 (-203))) (-5 *6 (-108)) (-5 *7 (-629 (-523)))
- (-5 *8 (-3 (|:| |fn| (-364)) (|:| |fp| (-63 QPHESS))))
- (-5 *3 (-523)) (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-693)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-589 (-589 (-589 *4)))) (-5 *3 (-589 *4)) (-4 *4 (-786))
- (-5 *1 (-1095 *4)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357))
+ (|:| |expense| (-357)) (|:| |accuracy| (-357))
+ (|:| |intermediateResults| (-357))))
+ (-5 *2 (-964)) (-5 *1 (-284)))))
(((*1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-427)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-987 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *2 (-786))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-292 (-203))) (-5 *2 (-383 (-523))) (-5 *1 (-282)))))
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)))))
+(((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-1072)) (-5 *4 (-157 (-205))) (-5 *5 (-525))
+ (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-882 *3 *5 *4)) (-5 *1 (-918 *3 *4 *5 *2))
+ (-4 *3 (-429)) (-4 *4 (-788)) (-4 *5 (-734)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1054 *2 *3)) (-4 *2 (-13 (-1018) (-33)))
+ (-4 *3 (-13 (-1018) (-33))))))
(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-523)) (-5 *1 (-528 *3)) (-4 *3 (-964 *2)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-905 *4 *5 *6 *3)) (-4 *4 (-973)) (-4 *5 (-732))
- (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-4 *4 (-515))
- (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))))
-(((*1 *1 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-973)) (-4 *3 (-731))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-49 *2 *3)) (-4 *2 (-973)) (-14 *3 (-589 (-1087)))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-201 *2 *3)) (-4 *2 (-13 (-973) (-786)))
- (-14 *3 (-589 (-1087)))))
- ((*1 *1 *1) (-12 (-4 *1 (-358 *2 *3)) (-4 *2 (-973)) (-4 *3 (-1016))))
- ((*1 *1 *1)
- (-12 (-14 *2 (-589 (-1087))) (-4 *3 (-158))
- (-4 *5 (-216 (-1271 *2) (-710)))
- (-14 *6
- (-1 (-108) (-2 (|:| -2557 *4) (|:| -3262 *5))
- (-2 (|:| -2557 *4) (|:| -3262 *5))))
- (-5 *1 (-436 *2 *3 *4 *5 *6 *7)) (-4 *4 (-786))
- (-4 *7 (-880 *3 *5 (-796 *2)))))
- ((*1 *1 *1) (-12 (-4 *1 (-479 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-786))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-515)) (-5 *1 (-570 *2 *3)) (-4 *3 (-1145 *2))))
- ((*1 *1 *1) (-12 (-4 *1 (-648 *2)) (-4 *2 (-973))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-675 *2 *3)) (-4 *3 (-786)) (-4 *2 (-973))
- (-4 *3 (-666))))
- ((*1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-987 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *2 (-786))))
- ((*1 *1 *1) (-12 (-5 *1 (-1190 *2 *3)) (-4 *2 (-973)) (-4 *3 (-782)))))
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850))))
+ ((*1 *2) (-12 (-5 *2 (-837 (-525))) (-5 *1 (-850)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-294 (-205))) (-5 *4 (-1089))
+ (-5 *5 (-1013 (-781 (-205)))) (-5 *2 (-591 (-205))) (-5 *1 (-174))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-294 (-205))) (-5 *4 (-1089))
+ (-5 *5 (-1013 (-781 (-205)))) (-5 *2 (-591 (-205))) (-5 *1 (-279)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-697)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-558 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-1125)) (-5 *2 (-1176)))))
+(((*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-837 (-525))) (-5 *1 (-850))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))))
+(((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-796)))))
(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-589 *10)) (-5 *5 (-108)) (-4 *10 (-992 *6 *7 *8 *9))
- (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *9 (-987 *6 *7 *8))
+ (-12 (-5 *4 (-591 *10)) (-5 *5 (-108)) (-4 *10 (-994 *6 *7 *8 *9))
+ (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *9 (-989 *6 *7 *8))
(-5 *2
- (-589
- (-2 (|:| -1747 (-589 *9)) (|:| -2394 *10) (|:| |ineq| (-589 *9)))))
- (-5 *1 (-917 *6 *7 *8 *9 *10)) (-5 *3 (-589 *9))))
+ (-591
+ (-2 (|:| -1317 (-591 *9)) (|:| -3374 *10) (|:| |ineq| (-591 *9)))))
+ (-5 *1 (-919 *6 *7 *8 *9 *10)) (-5 *3 (-591 *9))))
((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-589 *10)) (-5 *5 (-108)) (-4 *10 (-992 *6 *7 *8 *9))
- (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *9 (-987 *6 *7 *8))
+ (-12 (-5 *4 (-591 *10)) (-5 *5 (-108)) (-4 *10 (-994 *6 *7 *8 *9))
+ (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *9 (-989 *6 *7 *8))
(-5 *2
- (-589
- (-2 (|:| -1747 (-589 *9)) (|:| -2394 *10) (|:| |ineq| (-589 *9)))))
- (-5 *1 (-1023 *6 *7 *8 *9 *10)) (-5 *3 (-589 *9)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3))
- (-4 *3 (-13 (-339) (-1109) (-930))))))
-(((*1 *2 *3 *4 *5 *5 *4 *6)
- (-12 (-5 *4 (-523)) (-5 *6 (-1 (-1174) (-1169 *5) (-1169 *5) (-355)))
- (-5 *3 (-1169 (-355))) (-5 *5 (-355)) (-5 *2 (-1174))
- (-5 *1 (-727)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1087)) (-5 *2 (-1 (-1083 (-883 *4)) (-883 *4)))
- (-5 *1 (-1177 *4)) (-4 *4 (-339)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-883 (-155 *4))) (-4 *4 (-158))
- (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-883 (-155 *5))) (-5 *4 (-852)) (-4 *5 (-158))
- (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-883 *4)) (-4 *4 (-973)) (-4 *4 (-564 (-355)))
- (-5 *2 (-155 (-355))) (-5 *1 (-724 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-883 *5)) (-5 *4 (-852)) (-4 *5 (-973))
- (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-515))
- (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-852)) (-4 *5 (-515))
- (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-383 (-883 (-155 *4)))) (-4 *4 (-515))
- (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-383 (-883 (-155 *5)))) (-5 *4 (-852))
- (-4 *5 (-515)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355)))
- (-5 *1 (-724 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-292 *4)) (-4 *4 (-515)) (-4 *4 (-786))
- (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-292 *5)) (-5 *4 (-852)) (-4 *5 (-515))
- (-4 *5 (-786)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355)))
- (-5 *1 (-724 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-292 (-155 *4))) (-4 *4 (-515)) (-4 *4 (-786))
- (-4 *4 (-564 (-355))) (-5 *2 (-155 (-355))) (-5 *1 (-724 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-292 (-155 *5))) (-5 *4 (-852)) (-4 *5 (-515))
- (-4 *5 (-786)) (-4 *5 (-564 (-355))) (-5 *2 (-155 (-355)))
- (-5 *1 (-724 *5)))))
+ (-591
+ (-2 (|:| -1317 (-591 *9)) (|:| -3374 *10) (|:| |ineq| (-591 *9)))))
+ (-5 *1 (-1025 *6 *7 *8 *9 *10)) (-5 *3 (-591 *9)))))
+(((*1 *1)
+ (-12 (-5 *1 (-130 *2 *3 *4)) (-14 *2 (-525)) (-14 *3 (-712))
+ (-4 *4 (-160)))))
+(((*1 *1 *1) (-4 *1 (-510))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1169 (-292 (-203))))
+ (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1018)) (-4 *6 (-1018))
+ (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-626 *4 *5 *6)) (-4 *5 (-1018)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *5 *5))
+ (-4 *5 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525)))))))
(-5 *2
- (-2 (|:| |additions| (-523)) (|:| |multiplications| (-523))
- (|:| |exponentiations| (-523)) (|:| |functionCalls| (-523))))
- (-5 *1 (-282)))))
+ (-2 (|:| |solns| (-591 *5))
+ (|:| |maps| (-591 (-2 (|:| |arg| *5) (|:| |res| *5))))))
+ (-5 *1 (-1044 *3 *5)) (-4 *3 (-1147 *5)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1147 *5))
+ (-4 *5 (-13 (-27) (-408 *4)))
+ (-4 *4 (-13 (-788) (-517) (-966 (-525))))
+ (-4 *7 (-1147 (-385 *6))) (-5 *1 (-513 *4 *5 *6 *7 *2))
+ (-4 *2 (-320 *5 *6 *7)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1036)) (-5 *1 (-308)))))
+(((*1 *2 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1072)) (-5 *1 (-284)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-796)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-854)) (-5 *4 (-807)) (-5 *2 (-1176)) (-5 *1 (-1172))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-854)) (-5 *4 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1078 *2 *3)) (-14 *2 (-854)) (-4 *3 (-975)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-591 *3))) (-4 *3 (-1018)) (-5 *1 (-838 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-591 *6)))))
+(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1072)) (-5 *4 (-525)) (-5 *5 (-631 (-205)))
+ (-5 *2 (-964)) (-5 *1 (-696)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525))
+ (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576)))) (-5 *2 (-964))
+ (-5 *1 (-690)))))
(((*1 *1 *1) (-4 *1 (-34)))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *2 (-589 *3))))
- ((*1 *2 *1)
- (-12 (|has| *1 (-6 -4248)) (-4 *1 (-462 *3)) (-4 *3 (-1123))
- (-5 *2 (-589 *3)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-108)) (-5 *5 (-1018 (-710))) (-5 *6 (-710))
- (-5 *2
- (-2 (|:| |contp| (-523))
- (|:| -3286 (-589 (-2 (|:| |irr| *3) (|:| -3269 (-523)))))))
- (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-427))
- (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-906 *3 *4 *5 *6)))))
-(((*1 *2)
- (-12 (-5 *2 (-2 (|:| -3007 (-589 *3)) (|:| -2635 (-589 *3))))
- (-5 *1 (-1124 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1016)) (-4 *4 (-13 (-973) (-817 *3) (-786) (-564 *2)))
- (-5 *2 (-823 *3)) (-5 *1 (-995 *3 *4 *5))
- (-4 *5 (-13 (-406 *4) (-817 *3) (-564 *2))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-786)) (-5 *2 (-589 (-589 *4))) (-5 *1 (-1095 *4))
- (-5 *3 (-589 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *1))
- (-4 *1 (-880 *3 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *6 (-515)) (-4 *2 (-880 *3 *5 *4))
- (-5 *1 (-672 *5 *4 *6 *2)) (-5 *3 (-383 (-883 *6))) (-4 *5 (-732))
- (-4 *4 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $))))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-339) (-784))) (-5 *1 (-165 *3 *2))
- (-4 *2 (-1145 (-155 *3))))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-732))
- (-4 *7 (-786)) (-4 *8 (-987 *5 *6 *7)) (-5 *2 (-589 *3))
- (-5 *1 (-545 *5 *6 *7 *8 *3)) (-4 *3 (-1025 *5 *6 *7 *8))))
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-341))
+ (-4 *7 (-1147 (-385 *6)))
+ (-5 *2 (-2 (|:| |answer| *3) (|:| -3802 *3)))
+ (-5 *1 (-523 *5 *6 *7 *3)) (-4 *3 (-320 *5 *6 *7))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-284) (-136)))
- (-5 *2
- (-589 (-2 (|:| -2715 (-1083 *5)) (|:| -2411 (-589 (-883 *5))))))
- (-5 *1 (-997 *5 *6)) (-5 *3 (-589 (-883 *5)))
- (-14 *6 (-589 (-1087)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-284) (-136)))
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-341))
(-5 *2
- (-589 (-2 (|:| -2715 (-1083 *4)) (|:| -2411 (-589 (-883 *4))))))
- (-5 *1 (-997 *4 *5)) (-5 *3 (-589 (-883 *4)))
- (-14 *5 (-589 (-1087)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-284) (-136)))
+ (-2 (|:| |answer| (-385 *6)) (|:| -3802 (-385 *6))
+ (|:| |specpart| (-385 *6)) (|:| |polypart| *6)))
+ (-5 *1 (-524 *5 *6)) (-5 *3 (-385 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-415)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *1))
+ (-4 *1 (-989 *3 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-734)) (-4 *4 (-788)) (-4 *6 (-286)) (-5 *2 (-396 *3))
+ (-5 *1 (-684 *5 *4 *6 *3)) (-4 *3 (-882 *6 *5 *4)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-1171 (-525))) (-5 *3 (-525)) (-5 *1 (-1028))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-1171 (-525))) (-5 *3 (-591 (-525))) (-5 *4 (-525))
+ (-5 *1 (-1028)))))
+(((*1 *2 *2 *2 *2 *3 *3 *4)
+ (|partial| -12 (-5 *3 (-564 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1089)))
+ (-4 *2 (-13 (-408 *5) (-27) (-1111)))
+ (-4 *5 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *1 (-527 *5 *2 *6)) (-4 *6 (-1018)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-385 (-525))) (-4 *1 (-515 *3))
+ (-4 *3 (-13 (-382) (-1111)))))
+ ((*1 *1 *2) (-12 (-4 *1 (-515 *2)) (-4 *2 (-13 (-382) (-1111)))))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-515 *2)) (-4 *2 (-13 (-382) (-1111))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-108))
+ (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-4 *3 (-13 (-27) (-1111) (-408 *6) (-10 -8 (-15 -3022 ($ *7)))))
+ (-4 *7 (-786))
+ (-4 *8
+ (-13 (-1149 *3 *7) (-341) (-1111)
+ (-10 -8 (-15 -3266 ($ $)) (-15 -4141 ($ $)))))
(-5 *2
- (-589 (-2 (|:| -2715 (-1083 *5)) (|:| -2411 (-589 (-883 *5))))))
- (-5 *1 (-997 *5 *6)) (-5 *3 (-589 (-883 *5)))
- (-14 *6 (-589 (-1087))))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-349 *2)) (-4 *2 (-1123)) (-4 *2 (-786))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-349 *3)) (-4 *3 (-1123))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-898 *2)) (-4 *2 (-786))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1048 *2)) (-4 *2 (-973))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-1048 *3)) (-4 *3 (-973))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 (-1076 *3 *4))) (-5 *1 (-1076 *3 *4))
- (-14 *3 (-852)) (-4 *4 (-973))))
- ((*1 *1 *1 *1)
- (-12 (-5 *1 (-1076 *2 *3)) (-14 *2 (-852)) (-4 *3 (-973)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-201 *2 *3)) (-4 *2 (-13 (-973) (-786)))
- (-14 *3 (-589 (-1087))))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2 (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4))))
- (-5 *1 (-993 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *2 *3 *2 *2)
- (-12 (-5 *2 (-589 (-455 *4 *5))) (-5 *3 (-796 *4))
- (-14 *4 (-589 (-1087))) (-4 *5 (-427)) (-5 *1 (-577 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *3 (-731)) (-4 *2 (-973))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-973)) (-5 *1 (-49 *2 *3)) (-14 *3 (-589 (-1087)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-292 *3)) (-5 *1 (-201 *3 *4))
- (-4 *3 (-13 (-973) (-786))) (-14 *4 (-589 (-1087)))))
- ((*1 *2 *1) (-12 (-4 *1 (-358 *2 *3)) (-4 *3 (-1016)) (-4 *2 (-973))))
- ((*1 *2 *1)
- (-12 (-14 *3 (-589 (-1087))) (-4 *5 (-216 (-1271 *3) (-710)))
- (-14 *6
- (-1 (-108) (-2 (|:| -2557 *4) (|:| -3262 *5))
- (-2 (|:| -2557 *4) (|:| -3262 *5))))
- (-4 *2 (-158)) (-5 *1 (-436 *3 *2 *4 *5 *6 *7)) (-4 *4 (-786))
- (-4 *7 (-880 *2 *5 (-796 *3)))))
- ((*1 *2 *1) (-12 (-4 *1 (-479 *2 *3)) (-4 *3 (-786)) (-4 *2 (-1016))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-515)) (-5 *1 (-570 *2 *3)) (-4 *3 (-1145 *2))))
- ((*1 *2 *1) (-12 (-4 *1 (-648 *2)) (-4 *2 (-973))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-973)) (-5 *1 (-675 *2 *3)) (-4 *3 (-786))
- (-4 *3 (-666))))
- ((*1 *2 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-902 *2 *3 *4)) (-4 *3 (-731)) (-4 *4 (-786))
- (-4 *2 (-973))))
+ (-3 (|:| |%series| *8)
+ (|:| |%problem| (-2 (|:| |func| (-1072)) (|:| |prob| (-1072))))))
+ (-5 *1 (-400 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1072)) (-4 *9 (-914 *8))
+ (-14 *10 (-1089)))))
+(((*1 *2) (-12 (-5 *2 (-591 (-854))) (-5 *1 (-1174))))
+ ((*1 *2 *2) (-12 (-5 *2 (-591 (-854))) (-5 *1 (-1174)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-525)) (-4 *1 (-1131 *4)) (-4 *4 (-975)) (-4 *4 (-517))
+ (-5 *2 (-385 (-885 *4)))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-4 *1 (-1131 *4)) (-4 *4 (-975)) (-4 *4 (-517))
+ (-5 *2 (-385 (-885 *4))))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-712)) (-4 *1 (-211 *4))
+ (-4 *4 (-975))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-987 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *2 (-786)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203)))
- (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-64 FUNCT1))))
- (-5 *2 (-962)) (-5 *1 (-693)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-523)) (|has| *1 (-6 -4249)) (-4 *1 (-1157 *3))
- (-4 *3 (-1123)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-1170))))
- ((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1070)) (-5 *3 (-589 (-240))) (-5 *1 (-238))))
- ((*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-240)))))
-(((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-234)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-113 *3)) (-14 *3 *2)))
- ((*1 *1 *1) (-12 (-5 *1 (-113 *2)) (-14 *2 (-523))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-802 *3)) (-14 *3 *2)))
- ((*1 *1 *1) (-12 (-5 *1 (-802 *2)) (-14 *2 (-523))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-523)) (-14 *3 *2) (-5 *1 (-803 *3 *4))
- (-4 *4 (-800 *3))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-211 *3)) (-4 *3 (-975))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-213)) (-5 *2 (-712))))
+ ((*1 *1 *1) (-4 *1 (-213)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-245 *3)) (-4 *3 (-788))))
+ ((*1 *1 *1) (-12 (-4 *1 (-245 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129))
+ (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-4 *3 (-13 (-341) (-138))) (-5 *1 (-377 *3 *4))
+ (-4 *4 (-1147 *3))))
((*1 *1 *1)
- (-12 (-14 *2 (-523)) (-5 *1 (-803 *2 *3)) (-4 *3 (-800 *2))))
+ (-12 (-4 *2 (-13 (-341) (-138))) (-5 *1 (-377 *2 *3))
+ (-4 *3 (-1147 *2))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-451 *3 *4 *5))
+ (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *2 (-341)) (-4 *2 (-833 *3)) (-5 *1 (-542 *2))
+ (-5 *3 (-1089))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-542 *2)) (-4 *2 (-341))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-796))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 *4)) (-5 *3 (-591 (-712))) (-4 *1 (-833 *4))
+ (-4 *4 (-1018))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-712)) (-4 *1 (-833 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *1 (-833 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-833 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1080 *3 *4 *5))
+ (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1086 *3 *4 *5))
+ (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1087 *3 *4 *5))
+ (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1135 *3 *4 *5))
+ (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1147 *3)) (-4 *3 (-975))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1156 *3 *4 *5))
+ (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1163 *3 *4 *5))
+ (-4 *3 (-975)) (-14 *5 *3))))
+(((*1 *2)
+ (-12 (-4 *3 (-975)) (-5 *2 (-890 (-654 *3 *4))) (-5 *1 (-654 *3 *4))
+ (-4 *4 (-1147 *3)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-525))) (-4 *3 (-975)) (-5 *1 (-550 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-523)) (-4 *1 (-1131 *3 *4)) (-4 *3 (-973))
- (-4 *4 (-1160 *3))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1131 *2 *3)) (-4 *2 (-973)) (-4 *3 (-1160 *2)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-5 *1 (-1162 *3 *2))
- (-4 *2 (-1160 *3)))))
+ (-12 (-5 *2 (-1 *3 (-525))) (-4 *1 (-1131 *3)) (-4 *3 (-975))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-525))) (-4 *1 (-1162 *3)) (-4 *3 (-975)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-591 *4)) (-4 *4 (-341)) (-4 *2 (-1147 *4))
+ (-5 *1 (-855 *4 *2)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-697)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-5 *1 (-1171 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-525))) (-5 *1 (-973)))))
+(((*1 *2 *3 *2)
+ (-12
+ (-5 *2
+ (-591
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-712)) (|:| |poli| *3)
+ (|:| |polj| *3))))
+ (-4 *5 (-734)) (-4 *3 (-882 *4 *5 *6)) (-4 *4 (-429)) (-4 *6 (-788))
+ (-5 *1 (-426 *4 *5 *6 *3)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-1058)) (-5 *2 (-108)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1034)) (-5 *1 (-779 *3)) (-4 *3 (-1016)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-973)))))
+ (-12 (-5 *2 (-955 (-781 (-525)))) (-5 *1 (-550 *3)) (-4 *3 (-975)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-629 *5))) (-5 *4 (-523)) (-4 *5 (-339))
- (-4 *5 (-973)) (-5 *2 (-108)) (-5 *1 (-956 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-629 *4))) (-4 *4 (-339)) (-4 *4 (-973))
- (-5 *2 (-108)) (-5 *1 (-956 *4)))))
-(((*1 *1 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-973)) (-4 *3 (-731))))
- ((*1 *2 *1) (-12 (-4 *1 (-358 *3 *2)) (-4 *3 (-973)) (-4 *2 (-1016))))
+ (-12 (-5 *3 (-1089)) (-5 *4 (-885 (-525))) (-5 *2 (-308))
+ (-5 *1 (-310)))))
+(((*1 *2 *1 *3 *3 *2)
+ (-12 (-5 *3 (-525)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1125))
+ (-4 *4 (-351 *2)) (-4 *5 (-351 *2))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-267 *3 *2)) (-4 *3 (-1018))
+ (-4 *2 (-1125)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-1171 *5)) (-4 *5 (-587 *4)) (-4 *4 (-517))
+ (-5 *2 (-1171 *4)) (-5 *1 (-586 *4 *5)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-712)) (-5 *1 (-794 *2)) (-4 *2 (-160))))
+ ((*1 *2 *3 *3 *2)
+ (-12 (-5 *3 (-712)) (-5 *1 (-794 *2)) (-4 *2 (-160)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-525)) (-5 *2 (-1176)) (-5 *1 (-1173))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1162 *4)) (-5 *1 (-1164 *4 *2))
+ (-4 *4 (-37 (-385 (-525)))))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-48)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4251)) (-4 *1 (-464 *3))
+ (-4 *3 (-1125)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-1058)) (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-1125))))
((*1 *2 *1)
- (-12 (-14 *3 (-589 (-1087))) (-4 *4 (-158))
- (-4 *6 (-216 (-1271 *3) (-710)))
- (-14 *7
- (-1 (-108) (-2 (|:| -2557 *5) (|:| -3262 *6))
- (-2 (|:| -2557 *5) (|:| -3262 *6))))
- (-5 *2 (-653 *5 *6 *7)) (-5 *1 (-436 *3 *4 *5 *6 *7 *8))
- (-4 *5 (-786)) (-4 *8 (-880 *4 *6 (-796 *3)))))
+ (-12 (-4 *3 (-1018))
+ (-4 *2 (-13 (-408 *4) (-819 *3) (-566 (-825 *3))))
+ (-5 *1 (-997 *3 *4 *2))
+ (-4 *4 (-13 (-975) (-819 *3) (-788) (-566 (-825 *3))))))
((*1 *2 *1)
- (-12 (-4 *2 (-666)) (-4 *2 (-786)) (-5 *1 (-675 *3 *2))
- (-4 *3 (-973))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-902 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-731))
- (-4 *4 (-786)))))
-(((*1 *1) (-5 *1 (-413))))
-(((*1 *1) (-5 *1 (-1003))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-648 *3)) (-5 *1 (-766 *2 *3)) (-4 *3 (-973)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1117 *4 *5 *6 *3)) (-4 *4 (-515)) (-4 *5 (-732))
- (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))))
+ (-12 (-4 *2 (-1018)) (-5 *1 (-1079 *3 *2)) (-4 *3 (-1018)))))
+(((*1 *1) (-5 *1 (-1005))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-765)))))
+(((*1 *2 *1) (-12 (-4 *1 (-905)) (-5 *2 (-1013 (-205))))))
(((*1 *2 *1 *1)
- (|partial| -12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-4 *3 (-344))
- (-5 *2 (-1083 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-4 *3 (-344))
- (-5 *2 (-1083 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-857)))))
-(((*1 *2 *3) (-12 (-5 *3 (-760)) (-5 *2 (-51)) (-5 *1 (-770)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1070)) (-5 *3 (-762)) (-5 *1 (-761)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-589 (-589 (-874 (-203))))) (-5 *3 (-589 (-805)))
- (-5 *1 (-443)))))
-(((*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172))))
- ((*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172)))))
-(((*1 *2 *1) (-12 (-4 *1 (-302 *2 *3)) (-4 *3 (-731)) (-4 *2 (-973))))
- ((*1 *2 *1) (-12 (-4 *1 (-406 *2)) (-4 *2 (-786)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1174)) (-5 *1 (-1090)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-917 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-1023 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))))
+ (-12 (-4 *3 (-517)) (-4 *3 (-975))
+ (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-790 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-94 *5)) (-4 *5 (-517)) (-4 *5 (-975))
+ (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-791 *5 *3))
+ (-4 *3 (-790 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-629 *2)) (-4 *4 (-1145 *2))
- (-4 *2 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $)))))
- (-5 *1 (-470 *2 *4 *5)) (-4 *5 (-385 *2 *4))))
+ (-12 (-5 *3 (-525)) (|has| *1 (-6 -4241)) (-4 *1 (-382))
+ (-5 *2 (-854)))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-110)) (-5 *4 (-712)) (-4 *5 (-429)) (-4 *5 (-788))
+ (-4 *5 (-966 (-525))) (-4 *5 (-517)) (-5 *1 (-40 *5 *2))
+ (-4 *2 (-408 *5))
+ (-4 *2
+ (-13 (-341) (-281)
+ (-10 -8 (-15 -1738 ((-1041 *5 (-564 $)) $))
+ (-15 -1754 ((-1041 *5 (-564 $)) $))
+ (-15 -3022 ($ (-1041 *5 (-564 $))))))))))
+(((*1 *2 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-1125))))
((*1 *2 *1)
- (-12 (-4 *1 (-1037 *3 *2 *4 *5)) (-4 *4 (-216 *3 *2))
- (-4 *5 (-216 *3 *2)) (-4 *2 (-973)))))
-(((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))))
+ (-12 (-4 *3 (-1018))
+ (-4 *2 (-13 (-408 *4) (-819 *3) (-566 (-825 *3))))
+ (-5 *1 (-997 *3 *4 *2))
+ (-4 *4 (-13 (-975) (-819 *3) (-788) (-566 (-825 *3))))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-1018)) (-5 *1 (-1079 *2 *3)) (-4 *3 (-1018)))))
+(((*1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1103 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-1018)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848))))
- ((*1 *2 *3) (-12 (-5 *3 (-900)) (-5 *2 (-835 (-523))) (-5 *1 (-848)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-732)) (-4 *4 (-786)) (-4 *6 (-284)) (-5 *2 (-394 *3))
- (-5 *1 (-682 *5 *4 *6 *3)) (-4 *3 (-880 *6 *5 *4)))))
-(((*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-640))))
- ((*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-640)))))
-(((*1 *2 *1) (-12 (-4 *1 (-284)) (-5 *2 (-710)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1182 (-1087) *3)) (-4 *3 (-973)) (-5 *1 (-1189 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1182 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973))
- (-5 *1 (-1191 *3 *4)))))
+ (-12 (-5 *3 (-591 (-2 (|:| |deg| (-712)) (|:| -1553 *5))))
+ (-4 *5 (-1147 *4)) (-4 *4 (-327)) (-5 *2 (-591 *5))
+ (-5 *1 (-197 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-2 (|:| -1348 *5) (|:| -1316 (-525)))))
+ (-5 *4 (-525)) (-4 *5 (-1147 *4)) (-5 *2 (-591 *5))
+ (-5 *1 (-637 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-887)) (-5 *2 (-1013 (-205)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-905)) (-5 *2 (-1013 (-205))))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-712)) (-5 *1 (-794 *2)) (-4 *2 (-160))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1085 (-525))) (-5 *1 (-875)) (-5 *3 (-525)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-5 *1 (-461 *2)) (-4 *2 (-1147 (-525))))))
+(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1058)) (-5 *3 (-525)) (-5 *2 (-108)))))
(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-692)))))
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-693)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-108)) (-5 *3 (-591 (-242))) (-5 *1 (-240))))
+ ((*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-242))))
+ ((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-444))))
+ ((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-444)))))
+(((*1 *2 *1) (-12 (-4 *1 (-887)) (-5 *2 (-1013 (-205)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-905)) (-5 *2 (-1013 (-205))))))
+(((*1 *1 *1) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160))))
+ ((*1 *1 *1 *1) (-4 *1 (-450)))
+ ((*1 *1 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160))))
+ ((*1 *2 *2) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-816))))
+ ((*1 *1 *1) (-5 *1 (-902)))
+ ((*1 *1 *1) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2))
+ (-4 *2 (-408 *3)))))
+(((*1 *2 *3 *3 *2)
+ (|partial| -12 (-5 *2 (-712))
+ (-4 *3 (-13 (-668) (-346) (-10 -7 (-15 ** (*3 *3 (-525))))))
+ (-5 *1 (-226 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206))))
+ ((*1 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *1 *1) (-4 *1 (-1053))))
+(((*1 *2 *3) (-12 (-5 *3 (-294 (-205))) (-5 *2 (-205)) (-5 *1 (-284)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-302 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731))
- (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-4 *1 (-406 *3)) (-4 *3 (-786)) (-5 *2 (-108)))))
+ (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-4 *5 (-346))
+ (-5 *2 (-712)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-13 (-339) (-136)))
- (-5 *2 (-589 (-2 (|:| -3262 (-710)) (|:| -3882 *4) (|:| |num| *4))))
- (-5 *1 (-375 *3 *4)) (-4 *4 (-1145 *3)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-110)) (-5 *4 (-710)) (-4 *5 (-427)) (-4 *5 (-786))
- (-4 *5 (-964 (-523))) (-4 *5 (-515)) (-5 *1 (-40 *5 *2))
- (-4 *2 (-406 *5))
- (-4 *2
- (-13 (-339) (-279)
- (-10 -8 (-15 -2164 ((-1039 *5 (-562 $)) $))
- (-15 -2171 ((-1039 *5 (-562 $)) $))
- (-15 -3976 ($ (-1039 *5 (-562 $))))))))))
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2 (-591 (-2 (|:| |val| (-108)) (|:| -3374 *4))))
+ (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-357)) (-5 *1 (-92))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-357)) (-5 *1 (-92)))))
+(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1072)) (-5 *4 (-525)) (-5 *5 (-631 (-157 (-205))))
+ (-5 *2 (-964)) (-5 *1 (-696)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-110)) (-4 *3 (-13 (-788) (-517))) (-5 *1 (-31 *3 *4))
+ (-4 *4 (-408 *3))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-712)) (-5 *1 (-110))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-110))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-110)) (-4 *3 (-13 (-788) (-517))) (-5 *1 (-147 *3 *4))
+ (-4 *4 (-408 *3))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-110)) (-5 *1 (-151))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-110)) (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *4))
+ (-4 *4 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2) (-12 (-5 *2 (-110)) (-5 *1 (-280 *3)) (-4 *3 (-281))))
+ ((*1 *2 *2) (-12 (-4 *1 (-281)) (-5 *2 (-110))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-110)) (-4 *4 (-788)) (-5 *1 (-407 *3 *4))
+ (-4 *3 (-408 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-110)) (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *4))
+ (-4 *4 (-408 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-110)) (-5 *1 (-564 *3)) (-4 *3 (-788))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-110)) (-4 *3 (-13 (-788) (-517))) (-5 *1 (-578 *3 *4))
+ (-4 *4 (-13 (-408 *3) (-932) (-1111))))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -3400 *6) (|:| |sol?| (-108))) (-525)
+ *6))
+ (-4 *6 (-341)) (-4 *7 (-1147 *6))
+ (-5 *2
+ (-3 (-2 (|:| |answer| (-385 *7)) (|:| |a0| *6))
+ (-2 (|:| -3060 (-385 *7)) (|:| |coeff| (-385 *7))) "failed"))
+ (-5 *1 (-535 *6 *7)) (-5 *3 (-385 *7)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-525)) (-4 *1 (-55 *2 *4 *5)) (-4 *4 (-351 *2))
+ (-4 *5 (-351 *2)) (-4 *2 (-1125))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-267 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1125))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-525)) (-4 *1 (-978 *4 *5 *2 *6 *7))
+ (-4 *6 (-218 *5 *2)) (-4 *7 (-218 *4 *2)) (-4 *2 (-975)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-1094))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-1094))))
+ ((*1 *2 *1) (-12 (-5 *2 (-205)) (-5 *1 (-1094))))
+ ((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-1094)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-919 *4 *5 *6 *7 *3))
+ (-4 *3 (-994 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108))
+ (-5 *1 (-1025 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1016 *3)) (-4 *3 (-1018)) (-5 *2 (-108)))))
+(((*1 *2) (-12 (-5 *2 (-781 (-525))) (-5 *1 (-499))))
+ ((*1 *1) (-12 (-5 *1 (-781 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-1018))
+ (-4 *6 (-1018)) (-5 *2 (-1 *6 *5)) (-5 *1 (-626 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-898 *3)) (-4 *3 (-899)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))))
+(((*1 *1) (-4 *1 (-33))) ((*1 *1) (-5 *1 (-270)))
+ ((*1 *1) (-5 *1 (-796)))
+ ((*1 *1)
+ (-12 (-4 *2 (-429)) (-4 *3 (-788)) (-4 *4 (-734))
+ (-5 *1 (-918 *2 *3 *4 *5)) (-4 *5 (-882 *2 *4 *3))))
+ ((*1 *1) (-5 *1 (-1005)))
+ ((*1 *1)
+ (-12 (-5 *1 (-1054 *2 *3)) (-4 *2 (-13 (-1018) (-33)))
+ (-4 *3 (-13 (-1018) (-33)))))
+ ((*1 *1) (-5 *1 (-1092))) ((*1 *1) (-5 *1 (-1093))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-304 *2 *3)) (-4 *2 (-975)) (-4 *3 (-733))
+ (-4 *2 (-429))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-320 *2 *3 *4)) (-4 *2 (-1129)) (-4 *3 (-1147 *2))
+ (-4 *4 (-1147 (-385 *3)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-429))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-882 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *2 (-788)) (-4 *3 (-429))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-882 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-429))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-286)) (-4 *3 (-517)) (-5 *1 (-1077 *3 *2))
+ (-4 *2 (-1147 *3)))))
+(((*1 *2) (-12 (-5 *2 (-781 (-525))) (-5 *1 (-499))))
+ ((*1 *1) (-12 (-5 *1 (-781 *2)) (-4 *2 (-1018)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-930 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-885 (-205))) (-5 *2 (-205)) (-5 *1 (-284)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-351 *3)) (-4 *3 (-1125)) (-4 *3 (-788)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *1 (-351 *4)) (-4 *4 (-1125))
+ (-5 *2 (-108)))))
+(((*1 *2)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-631 (-385 *4))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-825 *4)) (-4 *4 (-1018)) (-5 *2 (-1 (-108) *5))
+ (-5 *1 (-823 *4 *5)) (-4 *5 (-1125)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-1145 (-383 (-523)))) (-5 *1 (-844 *3 *2))
- (-4 *2 (-1145 (-383 *3))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 (-589 *3))) (-4 *3 (-973)) (-4 *1 (-627 *3 *4 *5))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 (-589 (-794)))) (-5 *1 (-794))))
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *1 *1) (-4 *1 (-33))) ((*1 *1 *1) (-5 *1 (-110)))
+ ((*1 *1 *1) (-5 *1 (-159))) ((*1 *1 *1) (-4 *1 (-510)))
+ ((*1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1050 *2)) (-4 *2 (-975))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1054 *2 *3)) (-4 *2 (-13 (-1018) (-33)))
+ (-4 *3 (-13 (-1018) (-33))))))
+(((*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1072)) (-5 *4 (-525)) (-5 *5 (-631 (-205)))
+ (-5 *6 (-205)) (-5 *2 (-964)) (-5 *1 (-694)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-110))))
+ ((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-110))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-232 *4 *3 *5 *6)) (-4 *4 (-975)) (-4 *3 (-788))
+ (-4 *5 (-245 *3)) (-4 *6 (-734)) (-5 *2 (-712))))
((*1 *2 *1)
- (-12 (-5 *2 (-1054 *3 *4)) (-5 *1 (-922 *3 *4)) (-14 *3 (-852))
- (-4 *4 (-339))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 (-589 *5))) (-4 *5 (-973))
- (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *6 (-216 *4 *5))
- (-4 *7 (-216 *3 *5)))))
+ (-12 (-4 *1 (-232 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-788))
+ (-4 *5 (-245 *4)) (-4 *6 (-734)) (-5 *2 (-712))))
+ ((*1 *2 *1) (-12 (-4 *1 (-245 *3)) (-4 *3 (-788)) (-5 *2 (-712)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-591 *1)) (-4 *1 (-989 *4 *5 *6)) (-4 *4 (-975))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1119 *4 *5 *6 *3)) (-4 *4 (-517)) (-4 *5 (-734))
+ (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-765)) (-5 *3 (-591 (-1089))) (-5 *1 (-766)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-591 (-564 *5))) (-5 *3 (-1089)) (-4 *5 (-408 *4))
+ (-4 *4 (-788)) (-5 *1 (-534 *4 *5)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-372))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1106)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-689)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-591 (-885 *6))) (-5 *4 (-591 (-1089))) (-4 *6 (-429))
+ (-5 *2 (-591 (-591 *7))) (-5 *1 (-503 *6 *7 *5)) (-4 *7 (-341))
+ (-4 *5 (-13 (-341) (-786))))))
+(((*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-525)) (-5 *1 (-1108 *3)) (-4 *3 (-975)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-650 *3)) (-5 *1 (-768 *2 *3)) (-4 *3 (-975)))))
(((*1 *2 *3)
- (-12 (-4 *5 (-13 (-564 *2) (-158))) (-5 *2 (-823 *4))
- (-5 *1 (-156 *4 *5 *3)) (-4 *4 (-1016)) (-4 *3 (-152 *5))))
+ (-12 (-5 *2 (-591 (-1085 (-525)))) (-5 *1 (-173)) (-5 *3 (-525)))))
+(((*1 *2 *1 *3 *3 *2)
+ (-12 (-5 *3 (-525)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1125))
+ (-4 *4 (-351 *2)) (-4 *5 (-351 *2))))
+ ((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 "right") (|has| *1 (-6 -4251)) (-4 *1 (-115 *3))
+ (-4 *3 (-1125))))
+ ((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 "left") (|has| *1 (-6 -4251)) (-4 *1 (-115 *3))
+ (-4 *3 (-1125))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-267 *3 *2)) (-4 *3 (-1018))
+ (-4 *2 (-1125))))
+ ((*1 *2 *1 *3 *2) (-12 (-5 *2 (-51)) (-5 *3 (-1089)) (-5 *1 (-580))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *3 (-1138 (-525))) (|has| *1 (-6 -4251)) (-4 *1 (-596 *2))
+ (-4 *2 (-1125))))
+ ((*1 *1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-591 (-525))) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *3 "value") (|has| *1 (-6 -4251)) (-4 *1 (-940 *2))
+ (-4 *2 (-1125))))
+ ((*1 *2 *1 *2) (-12 (-5 *1 (-955 *2)) (-4 *2 (-1125))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-4 *1 (-1102 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1018))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *3 "last") (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2))
+ (-4 *2 (-1125))))
+ ((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 "rest") (|has| *1 (-6 -4251)) (-4 *1 (-1159 *3))
+ (-4 *3 (-1125))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *3 "first") (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2))
+ (-4 *2 (-1125)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-161 (-385 (-525)))) (-5 *1 (-113 *3)) (-14 *3 (-525))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *3 (-1070 *2)) (-4 *2 (-286)) (-5 *1 (-161 *2))))
+ ((*1 *1 *2) (-12 (-5 *2 (-385 *3)) (-4 *3 (-286)) (-5 *1 (-161 *3))))
((*1 *2 *3)
- (-12 (-5 *3 (-589 (-1011 (-779 (-355)))))
- (-5 *2 (-589 (-1011 (-779 (-203))))) (-5 *1 (-282))))
- ((*1 *1 *2) (-12 (-5 *2 (-203)) (-5 *1 (-355))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-794)) (-5 *3 (-523)) (-5 *1 (-370))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 *3)) (-4 *3 (-158)) (-4 *1 (-385 *3 *4))
- (-4 *4 (-1145 *3))))
+ (-12 (-5 *2 (-161 (-525))) (-5 *1 (-707 *3)) (-4 *3 (-382))))
((*1 *2 *1)
- (-12 (-4 *1 (-385 *3 *4)) (-4 *3 (-158)) (-4 *4 (-1145 *3))
- (-5 *2 (-1169 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-158)) (-4 *1 (-393 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-1169 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-394 *1)) (-4 *1 (-406 *3)) (-4 *3 (-515))
- (-4 *3 (-786))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-973))
- (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-438 *3 *4 *5 *6))))
- ((*1 *1 *2) (-12 (-5 *2 (-1020)) (-5 *1 (-499))))
- ((*1 *2 *1) (-12 (-4 *1 (-564 *2)) (-4 *2 (-1123))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-158)) (-4 *1 (-664 *3 *2)) (-4 *2 (-1145 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 (-823 *3))) (-5 *1 (-823 *3)) (-4 *3 (-1016))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-973)) (-4 *1 (-909 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-984))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-883 *3)) (-4 *3 (-973)) (-4 *1 (-987 *3 *4 *5))
- (-4 *5 (-564 (-1087))) (-4 *4 (-732)) (-4 *5 (-786))))
- ((*1 *1 *2)
- (-3255
- (-12 (-5 *2 (-883 (-523))) (-4 *1 (-987 *3 *4 *5))
- (-12 (-2575 (-4 *3 (-37 (-383 (-523))))) (-4 *3 (-37 (-523)))
- (-4 *5 (-564 (-1087))))
- (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)))
- (-12 (-5 *2 (-883 (-523))) (-4 *1 (-987 *3 *4 *5))
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *5 (-564 (-1087))))
- (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-883 (-383 (-523)))) (-4 *1 (-987 *3 *4 *5))
- (-4 *3 (-37 (-383 (-523)))) (-4 *5 (-564 (-1087))) (-4 *3 (-973))
- (-4 *4 (-732)) (-4 *5 (-786))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-589 *7)) (|:| -2394 *8)))
- (-4 *7 (-987 *4 *5 *6)) (-4 *8 (-992 *4 *5 *6 *7)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-1070))
- (-5 *1 (-990 *4 *5 *6 *7 *8))))
- ((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-1001))))
- ((*1 *1 *2) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1123))))
- ((*1 *1 *2)
- (-12 (-4 *1 (-1019 *3 *4 *5 *6 *2)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *2 (-1016))))
- ((*1 *1 *2)
- (-12 (-4 *1 (-1019 *3 *4 *5 *2 *6)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *2 (-1016)) (-4 *6 (-1016))))
- ((*1 *1 *2)
- (-12 (-4 *1 (-1019 *3 *4 *2 *5 *6)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *2 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016))))
- ((*1 *1 *2)
- (-12 (-4 *1 (-1019 *3 *2 *4 *5 *6)) (-4 *3 (-1016)) (-4 *2 (-1016))
- (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016))))
- ((*1 *1 *2)
- (-12 (-4 *1 (-1019 *2 *3 *4 *5 *6)) (-4 *2 (-1016)) (-4 *3 (-1016))
- (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016))))
+ (-12 (-5 *2 (-161 (-385 (-525)))) (-5 *1 (-804 *3)) (-14 *3 (-525))))
+ ((*1 *2 *1)
+ (-12 (-14 *3 (-525)) (-5 *2 (-161 (-385 (-525))))
+ (-5 *1 (-805 *3 *4)) (-4 *4 (-802 *3)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-876 *5)) (-4 *5 (-975)) (-5 *2 (-712))
+ (-5 *1 (-1078 *4 *5)) (-14 *4 (-854))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-712))) (-5 *3 (-712)) (-5 *1 (-1078 *4 *5))
+ (-14 *4 (-854)) (-4 *5 (-975))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-712))) (-5 *3 (-876 *5)) (-4 *5 (-975))
+ (-5 *1 (-1078 *4 *5)) (-14 *4 (-854)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1089)) (-5 *6 (-591 (-564 *3)))
+ (-5 *5 (-564 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *7)))
+ (-4 *7 (-13 (-429) (-788) (-138) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-2 (|:| -3060 *3) (|:| |coeff| *3)))
+ (-5 *1 (-518 *7 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-564 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *4)))
+ (-4 *4 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-256 *4 *2)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-391 *3 *4 *5 *6)) (-4 *6 (-966 *4)) (-4 *3 (-286))
+ (-4 *4 (-923 *3)) (-4 *5 (-1147 *4)) (-4 *6 (-387 *4 *5))
+ (-14 *7 (-1171 *6)) (-5 *1 (-392 *3 *4 *5 *6 *7))))
((*1 *1 *2)
- (-12 (-5 *2 (-589 *1)) (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016))
- (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-589 *7)) (|:| -2394 *8)))
- (-4 *7 (-987 *4 *5 *6)) (-4 *8 (-1025 *4 *5 *6 *7)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-1070))
- (-5 *1 (-1057 *4 *5 *6 *7 *8))))
- ((*1 *1 *2) (-12 (-5 *2 (-1020)) (-5 *1 (-1092))))
- ((*1 *2 *1) (-12 (-5 *2 (-1020)) (-5 *1 (-1092))))
- ((*1 *1 *2 *3 *2) (-12 (-5 *2 (-794)) (-5 *3 (-523)) (-5 *1 (-1104))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-794)) (-5 *3 (-523)) (-5 *1 (-1104))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-719 *4 (-796 *5)))
- (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-14 *5 (-589 (-1087)))
- (-5 *2 (-719 *4 (-796 *6))) (-5 *1 (-1193 *4 *5 *6))
- (-14 *6 (-589 (-1087)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-883 *4)) (-4 *4 (-13 (-784) (-284) (-136) (-949)))
- (-5 *2 (-883 (-951 (-383 *4)))) (-5 *1 (-1193 *4 *5 *6))
- (-14 *5 (-589 (-1087))) (-14 *6 (-589 (-1087)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-719 *4 (-796 *6)))
- (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-14 *6 (-589 (-1087)))
- (-5 *2 (-883 (-951 (-383 *4)))) (-5 *1 (-1193 *4 *5 *6))
- (-14 *5 (-589 (-1087)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1083 *4)) (-4 *4 (-13 (-784) (-284) (-136) (-949)))
- (-5 *2 (-1083 (-951 (-383 *4)))) (-5 *1 (-1193 *4 *5 *6))
- (-14 *5 (-589 (-1087))) (-14 *6 (-589 (-1087)))))
- ((*1 *2 *3)
- (-12
- (-5 *3 (-1058 *4 (-495 (-796 *6)) (-796 *6) (-719 *4 (-796 *6))))
- (-4 *4 (-13 (-784) (-284) (-136) (-949))) (-14 *6 (-589 (-1087)))
- (-5 *2 (-589 (-719 *4 (-796 *6)))) (-5 *1 (-1193 *4 *5 *6))
- (-14 *5 (-589 (-1087))))))
+ (-12 (-5 *2 (-1171 *6)) (-4 *6 (-387 *4 *5)) (-4 *4 (-923 *3))
+ (-4 *5 (-1147 *4)) (-4 *3 (-286)) (-5 *1 (-392 *3 *4 *5 *6 *7))
+ (-14 *7 *2))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-854)) (-5 *2 (-1085 *3)) (-5 *1 (-1100 *3))
+ (-4 *3 (-341)))))
+(((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-60 *3)) (-14 *3 (-1089))))
+ ((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-67 *3)) (-14 *3 (-1089))))
+ ((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-70 *3)) (-14 *3 (-1089))))
+ ((*1 *2 *1) (-12 (-4 *1 (-373)) (-5 *2 (-1176))))
+ ((*1 *2 *3) (-12 (-5 *3 (-366)) (-5 *2 (-1176)) (-5 *1 (-375))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1072)) (-5 *4 (-796)) (-5 *2 (-1176)) (-5 *1 (-1052))))
+ ((*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1176)) (-5 *1 (-1052))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-796))) (-5 *2 (-1176)) (-5 *1 (-1052)))))
+(((*1 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174))))
+ ((*1 *2 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1163 *2 *3 *4)) (-4 *2 (-975)) (-14 *3 (-1089))
+ (-14 *4 *2))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-591 (-1085 *4))) (-5 *3 (-1085 *4))
+ (-4 *4 (-842)) (-5 *1 (-608 *4)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-396 *3)) (-4 *3 (-517)) (-5 *1 (-397 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-898 *3)) (-4 *3 (-899)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-385 (-525))) (-5 *1 (-297 *3 *4 *5))
+ (-4 *3 (-13 (-341) (-788))) (-14 *4 (-1089)) (-14 *5 *3))))
(((*1 *2 *3)
- (-12 (-4 *4 (-284)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4))
- (-5 *2
- (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3)))
- (-5 *1 (-1038 *4 *5 *6 *3)) (-4 *3 (-627 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-1105))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1105)))))
-(((*1 *2 *3 *4 *4 *2 *2 *2)
- (-12 (-5 *2 (-523))
- (-5 *3
- (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-710)) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-4 *6 (-732)) (-4 *4 (-880 *5 *6 *7)) (-4 *5 (-427)) (-4 *7 (-786))
- (-5 *1 (-424 *5 *6 *7 *4)))))
-(((*1 *2 *1 *3 *3 *2)
- (-12 (-5 *3 (-523)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1123))
- (-4 *4 (-349 *2)) (-4 *5 (-349 *2))))
- ((*1 *2 *1 *3 *2)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-265 *3 *2)) (-4 *3 (-1016))
- (-4 *2 (-1123)))))
+ (-12 (-4 *4 (-327)) (-4 *5 (-307 *4)) (-4 *6 (-1147 *5))
+ (-5 *2 (-591 *3)) (-5 *1 (-718 *4 *5 *6 *3 *7)) (-4 *3 (-1147 *6))
+ (-14 *7 (-854)))))
+(((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-369)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-515) (-786) (-964 (-523)))) (-5 *1 (-168 *3 *2))
- (-4 *2 (-13 (-27) (-1109) (-406 (-155 *3))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-515) (-786) (-964 (-523))))
- (-5 *1 (-168 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 (-155 *4))))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-1113 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087))
- (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-1113 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *4))))))
-(((*1 *1 *1) (-4 *1 (-221)))
- ((*1 *1 *1)
- (-12 (-4 *2 (-158)) (-5 *1 (-266 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1145 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
- (-14 *6 (-1 (-3 *4 "failed") *4 *4))
- (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
- ((*1 *1 *1)
- (-3255 (-12 (-5 *1 (-271 *2)) (-4 *2 (-339)) (-4 *2 (-1123)))
- (-12 (-5 *1 (-271 *2)) (-4 *2 (-448)) (-4 *2 (-1123)))))
- ((*1 *1 *1) (-4 *1 (-448)))
- ((*1 *2 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-325)) (-5 *1 (-493 *3))))
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
((*1 *1 *1)
- (-12 (-5 *1 (-655 *2 *3 *4 *5 *6)) (-4 *2 (-158)) (-4 *3 (-23))
- (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
- ((*1 *1 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)) (-4 *2 (-339)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1087)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-641 *3 *5 *6 *7))
- (-4 *3 (-564 (-499))) (-4 *5 (-1123)) (-4 *6 (-1123))
- (-4 *7 (-1123))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087)) (-5 *2 (-1 *6 *5)) (-5 *1 (-646 *3 *5 *6))
- (-4 *3 (-564 (-499))) (-4 *5 (-1123)) (-4 *6 (-1123)))))
-(((*1 *1 *1) (-12 (-4 *1 (-599 *2)) (-4 *2 (-973)) (-4 *2 (-339)))))
-(((*1 *2 *2) (-12 (-5 *2 (-364)) (-5 *1 (-412))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-364)) (-5 *1 (-412)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-962)) (-5 *3 (-1087)) (-5 *1 (-244)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *3 (-589 (-523)))
- (-5 *1 (-814)))))
-(((*1 *2)
- (-12 (-4 *3 (-515)) (-5 *2 (-589 *4)) (-5 *1 (-42 *3 *4))
- (-4 *4 (-393 *3)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-852)) (-5 *4 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4249)) (-4 *1 (-462 *3))
- (-4 *3 (-1123)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-515))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2056 *3)))
- (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1083 *4)) (-4 *4 (-325)) (-5 *2 (-888 (-1034)))
- (-5 *1 (-322 *4)))))
+ (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089)))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-365))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3))))
+ ((*1 *1 *1) (-4 *1 (-1114))))
(((*1 *2 *3)
- (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-523))) (-5 *1 (-971)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-1145 *3)) (-4 *3 (-973))))
+ (-12 (-4 *4 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525)))))))
+ (-5 *2 (-591 *4)) (-5 *1 (-1044 *3 *4)) (-4 *3 (-1147 *4))))
+ ((*1 *2 *3 *3 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525)))))))
+ (-5 *2 (-591 *3)) (-5 *1 (-1044 *4 *3)) (-4 *4 (-1147 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1072)) (-5 *1 (-652)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111) (-932)))
+ (-5 *1 (-163 *3)))))
+(((*1 *2 *1 *3 *3 *2)
+ (-12 (-5 *3 (-525)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1125))
+ (-4 *4 (-351 *2)) (-4 *5 (-351 *2))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-525)) (-4 *1 (-55 *2 *4 *5)) (-4 *4 (-351 *2))
+ (-4 *5 (-351 *2)) (-4 *2 (-1125))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-852)) (-4 *1 (-1147 *3 *4)) (-4 *3 (-973))
- (-4 *4 (-731))))
+ (-12 (-5 *2 "right") (-4 *1 (-115 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-115 *3)) (-4 *3 (-1125))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-591 (-525))) (-4 *2 (-160)) (-5 *1 (-130 *4 *5 *2))
+ (-14 *4 (-525)) (-14 *5 (-712))))
+ ((*1 *2 *1 *3 *3 *3 *3)
+ (-12 (-5 *3 (-525)) (-4 *2 (-160)) (-5 *1 (-130 *4 *5 *2))
+ (-14 *4 *3) (-14 *5 (-712))))
+ ((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-525)) (-4 *2 (-160)) (-5 *1 (-130 *4 *5 *2))
+ (-14 *4 *3) (-14 *5 (-712))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-525)) (-4 *2 (-160)) (-5 *1 (-130 *4 *5 *2))
+ (-14 *4 *3) (-14 *5 (-712))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-4 *2 (-160)) (-5 *1 (-130 *4 *5 *2))
+ (-14 *4 *3) (-14 *5 (-712))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-160)) (-5 *1 (-130 *3 *4 *2)) (-14 *3 (-525))
+ (-14 *4 (-712))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1089)) (-5 *2 (-225 (-1072))) (-5 *1 (-195 *4))
+ (-4 *4
+ (-13 (-788)
+ (-10 -8 (-15 -3164 ((-1072) $ *3)) (-15 -3551 ((-1176) $))
+ (-15 -3600 ((-1176) $)))))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-383 (-523))) (-4 *1 (-1150 *3)) (-4 *3 (-973)))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-804 (-896 *3) (-896 *3))) (-5 *1 (-896 *3))
- (-4 *3 (-897)))))
-(((*1 *2 *1)
- (-12 (|has| *1 (-6 -4248)) (-4 *1 (-462 *3)) (-4 *3 (-1123))
- (-5 *2 (-589 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-677 *3)) (-4 *3 (-1016)))))
-(((*1 *1) (-5 *1 (-1001))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1169 *1)) (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127))
- (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))))))
-(((*1 *2 *1) (-12 (-4 *1 (-903)) (-5 *2 (-1011 (-203))))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-983 (-951 *3) (-1083 (-951 *3))))
- (-5 *1 (-951 *3)) (-4 *3 (-13 (-784) (-339) (-949))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-1087))) (-5 *2 (-1174)) (-5 *1 (-1090))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-1087))) (-5 *3 (-1087)) (-5 *2 (-1174))
- (-5 *1 (-1090))))
- ((*1 *2 *3 *4 *1)
- (-12 (-5 *4 (-589 (-1087))) (-5 *3 (-1087)) (-5 *2 (-1174))
- (-5 *1 (-1090)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *1 *2 *2 *2)
- (-12 (-5 *1 (-205 *2)) (-4 *2 (-13 (-339) (-1109)))))
- ((*1 *2 *1 *3 *4 *4)
- (-12 (-5 *3 (-852)) (-5 *4 (-355)) (-5 *2 (-1174)) (-5 *1 (-1170))))
+ (-12 (-5 *2 (-920)) (-5 *1 (-195 *3))
+ (-4 *3
+ (-13 (-788)
+ (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 ((-1176) $))
+ (-15 -3600 ((-1176) $)))))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 "count") (-5 *2 (-712)) (-5 *1 (-225 *4)) (-4 *4 (-788))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-225 *3)) (-4 *3 (-788))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 "unique") (-5 *1 (-225 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-265 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1125))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-4 *1 (-267 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1125))))
+ ((*1 *2 *1 *2)
+ (-12 (-4 *3 (-160)) (-5 *1 (-268 *3 *2 *4 *5 *6 *7))
+ (-4 *2 (-1147 *3)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4))
+ (-14 *6 (-1 (-3 *4 "failed") *4 *4))
+ (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-591 *1)) (-4 *1 (-281))))
+ ((*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-281)) (-5 *2 (-110))))
+ ((*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-281)) (-5 *2 (-110))))
+ ((*1 *1 *2 *1 *1) (-12 (-4 *1 (-281)) (-5 *2 (-110))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-281)) (-5 *2 (-110))))
+ ((*1 *2 *1 *2 *2)
+ (-12 (-4 *1 (-320 *2 *3 *4)) (-4 *2 (-1129)) (-4 *3 (-1147 *2))
+ (-4 *4 (-1147 (-385 *3)))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-4 *1 (-395 *2)) (-4 *2 (-160))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-1072)) (-5 *1 (-475))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-51)) (-5 *1 (-580))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1138 (-525))) (-4 *1 (-596 *3)) (-4 *3 (-1125))))
+ ((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-712)) (-5 *1 (-619 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-591 (-525))) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-110)) (-5 *3 (-591 (-825 *4))) (-5 *1 (-825 *4))
+ (-4 *4 (-1018))))
+ ((*1 *2 *1 *2) (-12 (-4 *1 (-836 *2)) (-4 *2 (-1018))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-712)) (-5 *2 (-838 *4)) (-5 *1 (-837 *4))
+ (-4 *4 (-1018))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-220 *4 *2)) (-14 *4 (-854)) (-4 *2 (-341))
+ (-5 *1 (-924 *4 *2))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 "value") (-4 *1 (-940 *2)) (-4 *2 (-1125))))
+ ((*1 *2 *1) (-12 (-5 *1 (-955 *2)) (-4 *2 (-1125))))
+ ((*1 *2 *1 *3 *3 *2)
+ (-12 (-5 *3 (-525)) (-4 *1 (-978 *4 *5 *2 *6 *7)) (-4 *2 (-975))
+ (-4 *6 (-218 *5 *2)) (-4 *7 (-218 *4 *2))))
((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973))
- (-5 *2 (-589 (-589 (-589 (-874 *3))))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1087))
- (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *4 *5))
- (-4 *5 (-13 (-27) (-1109) (-406 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *4 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-383 (-523)))
- (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *5 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-271 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5)))
- (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *5 *3))))
+ (-12 (-5 *3 (-525)) (-4 *1 (-978 *4 *5 *2 *6 *7))
+ (-4 *6 (-218 *5 *2)) (-4 *7 (-218 *4 *2)) (-4 *2 (-975))))
+ ((*1 *2 *1 *2 *3)
+ (-12 (-5 *3 (-854)) (-4 *4 (-1018))
+ (-4 *5 (-13 (-975) (-819 *4) (-788) (-566 (-825 *4))))
+ (-5 *1 (-997 *4 *5 *2))
+ (-4 *2 (-13 (-408 *5) (-819 *4) (-566 (-825 *4))))))
+ ((*1 *2 *1 *2 *3)
+ (-12 (-5 *3 (-854)) (-4 *4 (-1018))
+ (-4 *5 (-13 (-975) (-819 *4) (-788) (-566 (-825 *4))))
+ (-5 *1 (-998 *4 *5 *2))
+ (-4 *2 (-13 (-408 *5) (-819 *4) (-566 (-825 *4))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 (-525))) (-4 *1 (-1021 *3 *4 *5 *6 *7))
+ (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018))
+ (-4 *7 (-1018))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-525)) (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018))
+ (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018))))
+ ((*1 *1 *1 *1) (-4 *1 (-1058)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-1089))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *3 (-385 *1)) (-4 *1 (-1147 *2)) (-4 *2 (-975))
+ (-4 *2 (-341))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-385 *1)) (-4 *1 (-1147 *3)) (-4 *3 (-975))
+ (-4 *3 (-517))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-1149 *2 *3)) (-4 *3 (-733)) (-4 *2 (-975))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 "last") (-4 *1 (-1159 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 "rest") (-4 *1 (-1159 *3)) (-4 *3 (-1125))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 "first") (-4 *1 (-1159 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 *5)) (-5 *4 (-591 *6)) (-4 *5 (-1018))
+ (-4 *6 (-1125)) (-5 *2 (-1 *6 *5)) (-5 *1 (-588 *5 *6))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-271 *3)) (-5 *5 (-383 (-523)))
- (-4 *3 (-13 (-27) (-1109) (-406 *6)))
- (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-291 *6 *3))))
+ (-12 (-5 *3 (-591 *5)) (-5 *4 (-591 *2)) (-4 *5 (-1018))
+ (-4 *2 (-1125)) (-5 *1 (-588 *5 *2))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-591 *6)) (-5 *4 (-591 *5)) (-4 *6 (-1018))
+ (-4 *5 (-1125)) (-5 *2 (-1 *5 *6)) (-5 *1 (-588 *6 *5))))
+ ((*1 *2 *3 *4 *5 *2)
+ (-12 (-5 *3 (-591 *5)) (-5 *4 (-591 *2)) (-4 *5 (-1018))
+ (-4 *2 (-1125)) (-5 *1 (-588 *5 *2))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-591 *5)) (-5 *4 (-591 *6))
+ (-4 *5 (-1018)) (-4 *6 (-1125)) (-5 *1 (-588 *5 *6))))
((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-1 *8 (-383 (-523)))) (-5 *4 (-271 *8))
- (-5 *5 (-1136 (-383 (-523)))) (-5 *6 (-383 (-523)))
- (-4 *8 (-13 (-27) (-1109) (-406 *7)))
- (-4 *7 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-434 *7 *8))))
- ((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *4 (-1087)) (-5 *5 (-271 *3)) (-5 *6 (-1136 (-383 (-523))))
- (-5 *7 (-383 (-523))) (-4 *3 (-13 (-27) (-1109) (-406 *8)))
- (-4 *8 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-51)) (-5 *1 (-434 *8 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-383 (-523))) (-4 *4 (-973)) (-4 *1 (-1152 *4 *3))
- (-4 *3 (-1129 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1188 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973))
- (-5 *2 (-758 *3))))
- ((*1 *2 *1) (-12 (-4 *2 (-782)) (-5 *1 (-1190 *3 *2)) (-4 *3 (-973)))))
-(((*1 *1 *2)
- (-12
- (-5 *2
- (-589
- (-2
- (|:| -2402
- (-2 (|:| |xinit| (-203)) (|:| |xend| (-203))
- (|:| |fn| (-1169 (-292 (-203))))
- (|:| |yinit| (-589 (-203))) (|:| |intvals| (-589 (-203)))
- (|:| |g| (-292 (-203))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (|:| -2746
- (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355))
- (|:| |expense| (-355)) (|:| |accuracy| (-355))
- (|:| |intermediateResults| (-355)))))))
- (-5 *1 (-742)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4))))
- (-5 *1 (-993 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5))
- (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-1180 *3 *4 *5 *6))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-589 *8)) (-5 *3 (-1 (-108) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-515))
- (-4 *6 (-732)) (-4 *7 (-786)) (-5 *1 (-1180 *5 *6 *7 *8)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1169 (-710))) (-5 *1 (-617 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *1) (-12 (-4 *1 (-885)) (-5 *2 (-1011 (-203)))))
- ((*1 *2 *1) (-12 (-4 *1 (-903)) (-5 *2 (-1011 (-203))))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-823 *4)) (-4 *4 (-1016)) (-4 *2 (-1016))
- (-5 *1 (-820 *4 *2)))))
-(((*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1174)) (-5 *1 (-1050))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-794))) (-5 *2 (-1174)) (-5 *1 (-1050)))))
-(((*1 *2 *3 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-691)))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-895))) (-5 *1 (-104))))
- ((*1 *2 *1) (-12 (-5 *2 (-44 (-1070) (-713))) (-5 *1 (-110)))))
+ (-12 (-5 *3 (-591 *5)) (-5 *4 (-591 *2)) (-5 *6 (-1 *2 *5))
+ (-4 *5 (-1018)) (-4 *2 (-1125)) (-5 *1 (-588 *5 *2))))
+ ((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1058)) (-5 *3 (-135)) (-5 *2 (-712)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-689)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))))
(((*1 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-116 *3)) (-4 *3 (-1145 (-523)))))
+ (|partial| -12 (-4 *3 (-517)) (-4 *3 (-160))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -4003 (-591 *1))))
+ (-4 *1 (-345 *3))))
+ ((*1 *2)
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-430 *3 *4 *5 *6))
+ (|:| -4003 (-591 (-430 *3 *4 *5 *6)))))
+ (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-160)) (-14 *4 (-854))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-1147 *3)) (-4 *3 (-975)))))
+(((*1 *2 *1) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-1085 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-366)) (-5 *2 (-1176)) (-5 *1 (-369))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-369)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
((*1 *2 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-116 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *1 *1) (-5 *1 (-203)))
- ((*1 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204))))
- ((*1 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204))))
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *1 *1) (-4 *1 (-1051))) ((*1 *1 *1 *1) (-4 *1 (-1051))))
-(((*1 *1 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-21)) (-4 *2 (-1123)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1087)) (-5 *5 (-1011 (-203))) (-5 *2 (-858))
- (-5 *1 (-856 *3)) (-4 *3 (-564 (-499)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087)) (-5 *2 (-858)) (-5 *1 (-856 *3))
- (-4 *3 (-564 (-499)))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-203) (-203))) (-5 *1 (-858))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-203) (-203))) (-5 *3 (-1011 (-203)))
- (-5 *1 (-858)))))
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *1 *2) (-12 (-5 *1 (-309 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089)))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-365))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3))))
+ ((*1 *1 *1) (-4 *1 (-1114))))
+(((*1 *1 *1) (-12 (-5 *1 (-847 *2)) (-4 *2 (-286)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-523)) (-4 *5 (-325)) (-5 *2 (-394 (-1083 (-1083 *5))))
- (-5 *1 (-1122 *5)) (-5 *3 (-1083 (-1083 *5))))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1020)) (-5 *3 (-713)) (-5 *1 (-51)))))
+ (-12 (-5 *4 (-108))
+ (-5 *2
+ (-2 (|:| |contp| (-525))
+ (|:| -3781 (-591 (-2 (|:| |irr| *3) (|:| -3265 (-525)))))))
+ (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-108))
+ (-5 *2
+ (-2 (|:| |contp| (-525))
+ (|:| -3781 (-591 (-2 (|:| |irr| *3) (|:| -3265 (-525)))))))
+ (-5 *1 (-1136 *3)) (-4 *3 (-1147 (-525))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-973)) (-4 *5 (-1145 *4)) (-5 *2 (-1 *6 (-589 *6)))
- (-5 *1 (-1163 *4 *5 *3 *6)) (-4 *3 (-599 *5)) (-4 *6 (-1160 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-973)) (-5 *2 (-1169 *3)) (-5 *1 (-652 *3 *4))
- (-4 *4 (-1145 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-885)) (-5 *2 (-1011 (-203)))))
- ((*1 *2 *1) (-12 (-4 *1 (-903)) (-5 *2 (-1011 (-203))))))
-(((*1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-144))))
- ((*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1083 *2)) (-4 *2 (-880 (-383 (-883 *6)) *5 *4))
- (-5 *1 (-672 *5 *4 *6 *2)) (-4 *5 (-732))
- (-4 *4 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $)))))
- (-4 *6 (-515)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-692)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1145 *5)) (-4 *5 (-339))
- (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3)))
- (-5 *1 (-533 *5 *3)))))
-(((*1 *2 *2 *1 *3 *4)
- (-12 (-5 *2 (-589 *8)) (-5 *3 (-1 *8 *8 *8))
- (-5 *4 (-1 (-108) *8 *8)) (-4 *1 (-1117 *5 *6 *7 *8)) (-4 *5 (-515))
- (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-987 *5 *6 *7)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-845 *3)) (-4 *3 (-284)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-4 *1 (-299 *2 *4)) (-4 *4 (-124))
- (-4 *2 (-1016))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *1 (-337 *2)) (-4 *2 (-1016))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *1 (-362 *2)) (-4 *2 (-1016))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *1 (-394 *2)) (-4 *2 (-515))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-4 *2 (-1016)) (-5 *1 (-592 *2 *4 *5))
- (-4 *4 (-23)) (-14 *5 *4)))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-5 *1 (-758 *2)) (-4 *2 (-786)))))
+ (-12 (-4 *4 (-13 (-517) (-788))) (-5 *2 (-157 *5))
+ (-5 *1 (-554 *4 *5 *3)) (-4 *5 (-13 (-408 *4) (-932) (-1111)))
+ (-4 *3 (-13 (-408 (-157 *4)) (-932) (-1111))))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-115 *2)) (-4 *2 (-1125)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852))
- (-4 *4 (-973)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4))))
- (-5 *1 (-993 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
+ (-12 (-5 *2 (-591 *4)) (-5 *1 (-1055 *3 *4))
+ (-4 *3 (-13 (-1018) (-33))) (-4 *4 (-13 (-1018) (-33))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-108)) (-5 *1 (-770)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-804 (-896 *3) (-896 *3))) (-5 *1 (-896 *3))
- (-4 *3 (-897)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-46 *3 *4)) (-4 *3 (-973))
- (-4 *4 (-731))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-973)) (-5 *1 (-49 *3 *4))
- (-14 *4 (-589 (-1087)))))
- ((*1 *1 *2 *1 *1 *3)
- (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-57 *5)) (-4 *5 (-1123))
- (-4 *6 (-1123)) (-5 *2 (-57 *6)) (-5 *1 (-56 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-128 *5 *6 *7)) (-14 *5 (-523))
- (-14 *6 (-710)) (-4 *7 (-158)) (-4 *8 (-158))
- (-5 *2 (-128 *5 *6 *8)) (-5 *1 (-127 *5 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-155 *5)) (-4 *5 (-158))
- (-4 *6 (-158)) (-5 *2 (-155 *6)) (-5 *1 (-154 *5 *6))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-292 *3) (-292 *3))) (-4 *3 (-13 (-973) (-786)))
- (-5 *1 (-201 *3 *4)) (-14 *4 (-589 (-1087)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-218 *5 *6)) (-14 *5 (-710))
- (-4 *6 (-1123)) (-4 *7 (-1123)) (-5 *2 (-218 *5 *7))
- (-5 *1 (-217 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-271 *5)) (-4 *5 (-1123))
- (-4 *6 (-1123)) (-5 *2 (-271 *6)) (-5 *1 (-270 *5 *6))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1123)) (-5 *1 (-271 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1070)) (-5 *5 (-562 *6))
- (-4 *6 (-279)) (-4 *2 (-1123)) (-5 *1 (-274 *6 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-562 *5)) (-4 *5 (-279))
- (-4 *2 (-279)) (-5 *1 (-275 *5 *2))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-562 *1)) (-4 *1 (-279))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-629 *5)) (-4 *5 (-973))
- (-4 *6 (-973)) (-5 *2 (-629 *6)) (-5 *1 (-281 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-292 *5)) (-4 *5 (-786))
- (-4 *6 (-786)) (-5 *2 (-292 *6)) (-5 *1 (-290 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-312 *5 *6 *7 *8)) (-4 *5 (-339))
- (-4 *6 (-1145 *5)) (-4 *7 (-1145 (-383 *6))) (-4 *8 (-318 *5 *6 *7))
- (-4 *9 (-339)) (-4 *10 (-1145 *9)) (-4 *11 (-1145 (-383 *10)))
- (-5 *2 (-312 *9 *10 *11 *12))
- (-5 *1 (-309 *5 *6 *7 *8 *9 *10 *11 *12))
- (-4 *12 (-318 *9 *10 *11))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-314 *3)) (-4 *3 (-1016))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1127)) (-4 *8 (-1127))
- (-4 *6 (-1145 *5)) (-4 *7 (-1145 (-383 *6))) (-4 *9 (-1145 *8))
- (-4 *2 (-318 *8 *9 *10)) (-5 *1 (-316 *5 *6 *7 *4 *8 *9 *10 *2))
- (-4 *4 (-318 *5 *6 *7)) (-4 *10 (-1145 (-383 *9)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1123)) (-4 *6 (-1123))
- (-4 *2 (-349 *6)) (-5 *1 (-347 *5 *4 *6 *2)) (-4 *4 (-349 *5))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-358 *3 *4)) (-4 *3 (-973))
- (-4 *4 (-1016))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-394 *5)) (-4 *5 (-515))
- (-4 *6 (-515)) (-5 *2 (-394 *6)) (-5 *1 (-381 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-383 *5)) (-4 *5 (-515))
- (-4 *6 (-515)) (-5 *2 (-383 *6)) (-5 *1 (-382 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-389 *5 *6 *7 *8)) (-4 *5 (-284))
- (-4 *6 (-921 *5)) (-4 *7 (-1145 *6))
- (-4 *8 (-13 (-385 *6 *7) (-964 *6))) (-4 *9 (-284))
- (-4 *10 (-921 *9)) (-4 *11 (-1145 *10))
- (-5 *2 (-389 *9 *10 *11 *12))
- (-5 *1 (-388 *5 *6 *7 *8 *9 *10 *11 *12))
- (-4 *12 (-13 (-385 *10 *11) (-964 *10)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-158)) (-4 *6 (-158))
- (-4 *2 (-393 *6)) (-5 *1 (-391 *4 *5 *2 *6)) (-4 *4 (-393 *5))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-515)) (-5 *1 (-394 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-13 (-973) (-786)))
- (-4 *6 (-13 (-973) (-786))) (-4 *2 (-406 *6))
- (-5 *1 (-397 *5 *4 *6 *2)) (-4 *4 (-406 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1016)) (-4 *6 (-1016))
- (-4 *2 (-401 *6)) (-5 *1 (-399 *5 *4 *6 *2)) (-4 *4 (-401 *5))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-462 *3)) (-4 *3 (-1123))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-479 *3 *4)) (-4 *3 (-1016))
- (-4 *4 (-786))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-540 *5)) (-4 *5 (-339))
- (-4 *6 (-339)) (-5 *2 (-540 *6)) (-5 *1 (-539 *5 *6))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 *6 *5))
- (-5 *4 (-3 (-2 (|:| -3699 *5) (|:| |coeff| *5)) "failed"))
- (-4 *5 (-339)) (-4 *6 (-339))
- (-5 *2 (-2 (|:| -3699 *6) (|:| |coeff| *6)))
- (-5 *1 (-539 *5 *6))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed"))
- (-4 *5 (-339)) (-4 *2 (-339)) (-5 *1 (-539 *5 *2))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 *6 *5))
- (-5 *4
- (-3
- (-2 (|:| |mainpart| *5)
- (|:| |limitedlogs|
- (-589 (-2 (|:| |coeff| *5) (|:| |logand| *5)))))
- "failed"))
- (-4 *5 (-339)) (-4 *6 (-339))
- (-5 *2
- (-2 (|:| |mainpart| *6)
- (|:| |limitedlogs|
- (-589 (-2 (|:| |coeff| *6) (|:| |logand| *6))))))
- (-5 *1 (-539 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-553 *5)) (-4 *5 (-1123))
- (-4 *6 (-1123)) (-5 *2 (-553 *6)) (-5 *1 (-550 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-553 *6)) (-5 *5 (-553 *7))
- (-4 *6 (-1123)) (-4 *7 (-1123)) (-4 *8 (-1123)) (-5 *2 (-553 *8))
- (-5 *1 (-551 *6 *7 *8))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1068 *6)) (-5 *5 (-553 *7))
- (-4 *6 (-1123)) (-4 *7 (-1123)) (-4 *8 (-1123)) (-5 *2 (-1068 *8))
- (-5 *1 (-551 *6 *7 *8))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-553 *6)) (-5 *5 (-1068 *7))
- (-4 *6 (-1123)) (-4 *7 (-1123)) (-4 *8 (-1123)) (-5 *2 (-1068 *8))
- (-5 *1 (-551 *6 *7 *8))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1123)) (-5 *1 (-553 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-589 *5)) (-4 *5 (-1123))
- (-4 *6 (-1123)) (-5 *2 (-589 *6)) (-5 *1 (-587 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-589 *6)) (-5 *5 (-589 *7))
- (-4 *6 (-1123)) (-4 *7 (-1123)) (-4 *8 (-1123)) (-5 *2 (-589 *8))
- (-5 *1 (-588 *6 *7 *8))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-594 *3)) (-4 *3 (-1123))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-973)) (-4 *8 (-973))
- (-4 *6 (-349 *5)) (-4 *7 (-349 *5)) (-4 *2 (-627 *8 *9 *10))
- (-5 *1 (-625 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-627 *5 *6 *7))
- (-4 *9 (-349 *8)) (-4 *10 (-349 *8))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-973))
- (-4 *8 (-973)) (-4 *6 (-349 *5)) (-4 *7 (-349 *5))
- (-4 *2 (-627 *8 *9 *10)) (-5 *1 (-625 *5 *6 *7 *4 *8 *9 *10 *2))
- (-4 *4 (-627 *5 *6 *7)) (-4 *9 (-349 *8)) (-4 *10 (-349 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-515)) (-4 *7 (-515))
- (-4 *6 (-1145 *5)) (-4 *2 (-1145 (-383 *8)))
- (-5 *1 (-649 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1145 (-383 *6)))
- (-4 *8 (-1145 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-973)) (-4 *9 (-973)) (-4 *5 (-786))
- (-4 *6 (-732)) (-4 *2 (-880 *9 *7 *5))
- (-5 *1 (-668 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-732))
- (-4 *4 (-880 *8 *6 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-786)) (-4 *6 (-786)) (-4 *7 (-732))
- (-4 *9 (-973)) (-4 *2 (-880 *9 *8 *6))
- (-5 *1 (-669 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-732))
- (-4 *4 (-880 *9 *7 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-675 *5 *7)) (-4 *5 (-973))
- (-4 *6 (-973)) (-4 *7 (-666)) (-5 *2 (-675 *6 *7))
- (-5 *1 (-674 *5 *6 *7))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-973)) (-5 *1 (-675 *3 *4))
- (-4 *4 (-666))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-721 *5)) (-4 *5 (-973))
- (-4 *6 (-973)) (-5 *2 (-721 *6)) (-5 *1 (-720 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-158)) (-4 *6 (-158))
- (-4 *2 (-736 *6)) (-5 *1 (-737 *4 *5 *2 *6)) (-4 *4 (-736 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-772 *5)) (-4 *5 (-1016))
- (-4 *6 (-1016)) (-5 *2 (-772 *6)) (-5 *1 (-771 *5 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-772 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-772 *5))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-5 *1 (-771 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-779 *5)) (-4 *5 (-1016))
- (-4 *6 (-1016)) (-5 *2 (-779 *6)) (-5 *1 (-778 *5 *6))))
- ((*1 *2 *3 *4 *2 *2)
- (-12 (-5 *2 (-779 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-779 *5))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-5 *1 (-778 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-808 *5)) (-4 *5 (-1123))
- (-4 *6 (-1123)) (-5 *2 (-808 *6)) (-5 *1 (-807 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-810 *5)) (-4 *5 (-1123))
- (-4 *6 (-1123)) (-5 *2 (-810 *6)) (-5 *1 (-809 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-813 *5)) (-4 *5 (-1123))
- (-4 *6 (-1123)) (-5 *2 (-813 *6)) (-5 *1 (-812 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-820 *5 *6)) (-4 *5 (-1016))
- (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-820 *5 *7))
- (-5 *1 (-819 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-823 *5)) (-4 *5 (-1016))
- (-4 *6 (-1016)) (-5 *2 (-823 *6)) (-5 *1 (-822 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-883 *5)) (-4 *5 (-973))
- (-4 *6 (-973)) (-5 *2 (-883 *6)) (-5 *1 (-877 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-786))
- (-4 *8 (-973)) (-4 *6 (-732))
- (-4 *2
- (-13 (-1016)
- (-10 -8 (-15 -4103 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-710))))))
- (-5 *1 (-882 *6 *7 *8 *5 *2)) (-4 *5 (-880 *8 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-888 *5)) (-4 *5 (-1123))
- (-4 *6 (-1123)) (-5 *2 (-888 *6)) (-5 *1 (-887 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-874 *5)) (-4 *5 (-973))
- (-4 *6 (-973)) (-5 *2 (-874 *6)) (-5 *1 (-910 *5 *6))))
- ((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 *2 (-883 *4))) (-4 *4 (-973))
- (-4 *2 (-880 (-883 *4) *5 *6)) (-4 *5 (-732))
- (-4 *6
- (-13 (-786)
- (-10 -8 (-15 -3077 ((-1087) $))
- (-15 -2354 ((-3 $ "failed") (-1087))))))
- (-5 *1 (-913 *4 *5 *6 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-515)) (-4 *6 (-515))
- (-4 *2 (-921 *6)) (-5 *1 (-919 *5 *6 *4 *2)) (-4 *4 (-921 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-158)) (-4 *6 (-158))
- (-4 *2 (-925 *6)) (-5 *1 (-926 *4 *5 *2 *6)) (-4 *4 (-925 *5))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-976 *3 *4 *5 *6 *7))
- (-4 *5 (-973)) (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973))
- (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-973)) (-4 *10 (-973))
- (-14 *5 (-710)) (-14 *6 (-710)) (-4 *8 (-216 *6 *7))
- (-4 *9 (-216 *5 *7)) (-4 *2 (-976 *5 *6 *10 *11 *12))
- (-5 *1 (-978 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2))
- (-4 *4 (-976 *5 *6 *7 *8 *9)) (-4 *11 (-216 *6 *10))
- (-4 *12 (-216 *5 *10))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1011 *5)) (-4 *5 (-1123))
- (-4 *6 (-1123)) (-5 *2 (-1011 *6)) (-5 *1 (-1007 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1011 *5)) (-4 *5 (-784))
- (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-589 *6))
- (-5 *1 (-1007 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1009 *5)) (-4 *5 (-1123))
- (-4 *6 (-1123)) (-5 *2 (-1009 *6)) (-5 *1 (-1008 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1012 *4 *2)) (-4 *4 (-784))
- (-4 *2 (-1061 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1068 *5)) (-4 *5 (-1123))
- (-4 *6 (-1123)) (-5 *2 (-1068 *6)) (-5 *1 (-1066 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1068 *6)) (-5 *5 (-1068 *7))
- (-4 *6 (-1123)) (-4 *7 (-1123)) (-4 *8 (-1123)) (-5 *2 (-1068 *8))
- (-5 *1 (-1067 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1083 *5)) (-4 *5 (-973))
- (-4 *6 (-973)) (-5 *2 (-1083 *6)) (-5 *1 (-1081 *5 *6))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1100 *3 *4)) (-4 *3 (-1016))
- (-4 *4 (-1016))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1133 *5 *7 *9)) (-4 *5 (-973))
- (-4 *6 (-973)) (-14 *7 (-1087)) (-14 *9 *5) (-14 *10 *6)
- (-5 *2 (-1133 *6 *8 *10)) (-5 *1 (-1128 *5 *6 *7 *8 *9 *10))
- (-14 *8 (-1087))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1136 *5)) (-4 *5 (-1123))
- (-4 *6 (-1123)) (-5 *2 (-1136 *6)) (-5 *1 (-1135 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1136 *5)) (-4 *5 (-784))
- (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-1068 *6))
- (-5 *1 (-1135 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1142 *5 *6)) (-14 *5 (-1087))
- (-4 *6 (-973)) (-4 *8 (-973)) (-5 *2 (-1142 *7 *8))
- (-5 *1 (-1137 *5 *6 *7 *8)) (-14 *7 (-1087))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-973)) (-4 *6 (-973))
- (-4 *2 (-1145 *6)) (-5 *1 (-1143 *5 *4 *6 *2)) (-4 *4 (-1145 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1154 *5 *7 *9)) (-4 *5 (-973))
- (-4 *6 (-973)) (-14 *7 (-1087)) (-14 *9 *5) (-14 *10 *6)
- (-5 *2 (-1154 *6 *8 *10)) (-5 *1 (-1149 *5 *6 *7 *8 *9 *10))
- (-14 *8 (-1087))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-973)) (-4 *6 (-973))
- (-4 *2 (-1160 *6)) (-5 *1 (-1158 *5 *6 *4 *2)) (-4 *4 (-1160 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1169 *5)) (-4 *5 (-1123))
- (-4 *6 (-1123)) (-5 *2 (-1169 *6)) (-5 *1 (-1168 *5 *6))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1169 *5))
- (-4 *5 (-1123)) (-4 *6 (-1123)) (-5 *2 (-1169 *6))
- (-5 *1 (-1168 *5 *6))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1184 *3 *4)) (-4 *3 (-786))
- (-4 *4 (-973))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-973)) (-5 *1 (-1190 *3 *4))
- (-4 *4 (-782)))))
+ (-12 (-4 *2 (-1125)) (-5 *1 (-806 *3 *2)) (-4 *3 (-1125))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-158)) (-4 *2 (-23)) (-5 *1 (-266 *3 *4 *2 *5 *6 *7))
- (-4 *4 (-1145 *3)) (-14 *5 (-1 *4 *4 *2))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2))
- (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-23)) (-5 *1 (-651 *3 *2 *4 *5 *6)) (-4 *3 (-158))
- (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2))
- (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2))))
- ((*1 *2) (-12 (-4 *2 (-1145 *3)) (-5 *1 (-652 *3 *2)) (-4 *3 (-973))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-23)) (-5 *1 (-655 *3 *2 *4 *5 *6)) (-4 *3 (-158))
- (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2))
- (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2))))
- ((*1 *2) (-12 (-4 *1 (-800 *3)) (-5 *2 (-523)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-983 (-951 *4) (-1083 (-951 *4)))) (-5 *3 (-794))
- (-5 *1 (-951 *4)) (-4 *4 (-13 (-784) (-339) (-949))))))
-(((*1 *1 *1) (-4 *1 (-508))))
-(((*1 *2 *3 *4 *5 *6 *7 *8 *9)
- (|partial| -12 (-5 *4 (-589 *11)) (-5 *5 (-589 (-1083 *9)))
- (-5 *6 (-589 *9)) (-5 *7 (-589 *12)) (-5 *8 (-589 (-710)))
- (-4 *11 (-786)) (-4 *9 (-284)) (-4 *12 (-880 *9 *10 *11))
- (-4 *10 (-732)) (-5 *2 (-589 (-1083 *12)))
- (-5 *1 (-647 *10 *11 *9 *12)) (-5 *3 (-1083 *12)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-108)) (-5 *3 (-589 (-240))) (-5 *1 (-238)))))
-(((*1 *1 *2 *2) (-12 (-4 *1 (-513 *2)) (-4 *2 (-13 (-380) (-1109))))))
+ (|partial| -12 (-5 *2 (-1089)) (-5 *1 (-564 *3)) (-4 *3 (-788)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-5 *2 (-1174)) (-5 *1 (-1090))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1087))
- (-5 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-5 *2 (-1174))
- (-5 *1 (-1090))))
- ((*1 *2 *3 *4 *1)
- (-12 (-5 *3 (-1087))
- (-5 *4 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-5 *2 (-1174))
- (-5 *1 (-1090)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)))))
-(((*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4)
- (-12 (-5 *3 (-1070)) (-5 *5 (-629 (-203))) (-5 *6 (-203))
- (-5 *7 (-629 (-523))) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-692)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-992 *3 *4 *5 *6)) (-4 *3 (-427)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427)) (-4 *5 (-732))
- (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355))
- (-5 *2
- (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523))
- (|:| |success| (-108))))
- (-5 *1 (-728)) (-5 *5 (-523)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-523)) (-4 *1 (-55 *2 *4 *5)) (-4 *4 (-349 *2))
- (-4 *5 (-349 *2)) (-4 *2 (-1123))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-265 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1123))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-523)) (-4 *1 (-976 *4 *5 *2 *6 *7))
- (-4 *6 (-216 *5 *2)) (-4 *7 (-216 *4 *2)) (-4 *2 (-973)))))
+ (-12 (-4 *4 (-327))
+ (-5 *2 (-591 (-2 (|:| |deg| (-712)) (|:| -1553 *3))))
+ (-5 *1 (-197 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *1) (-5 *1 (-146))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-517))
+ (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-1142 *4 *3))
+ (-4 *3 (-1147 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *1 *2) (-12 (-5 *1 (-309 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089)))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-365))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3))))
+ ((*1 *1 *1) (-4 *1 (-1114))))
(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| -1895 *1) (|:| -4235 *1) (|:| |associate| *1)))
- (-4 *1 (-515)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-589 (-874 *4))) (-4 *1 (-1048 *4)) (-4 *4 (-973))
- (-5 *2 (-710)))))
-(((*1 *1 *1 *1) (|partial| -4 *1 (-124))))
-(((*1 *2 *3 *4 *4 *5 *4 *6 *4 *5)
- (-12 (-5 *3 (-1070)) (-5 *5 (-629 (-203))) (-5 *6 (-629 (-523)))
- (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-697)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *1 *1 *1)
- (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-523)) (-14 *3 (-710))
- (-4 *4 (-158))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-786) (-515))) (-5 *1 (-145 *4 *2))
- (-4 *2 (-406 *4))))
+ (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-591 (-159))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-108) *2)) (-4 *2 (-127)) (-5 *1 (-1004 *2))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-1009 *2)) (-4 *2 (-406 *4)) (-4 *4 (-13 (-786) (-515)))
- (-5 *1 (-145 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1009 *1)) (-4 *1 (-147))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-147)) (-5 *2 (-1087))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-440 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-786))
- (-4 *4 (-158)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1123)) (-5 *1 (-351 *4 *2))
- (-4 *2 (-13 (-349 *4) (-10 -7 (-6 -4249)))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-589 *7)) (|:| |badPols| (-589 *7))))
- (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-589 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-896 *3)) (-4 *3 (-897)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1070)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-1174))
- (-5 *1 (-917 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1070)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-1174))
- (-5 *1 (-1023 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *5)) (-5 *4 (-852)) (-4 *5 (-786))
- (-5 *2 (-57 (-589 (-614 *5)))) (-5 *1 (-614 *5)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355))
- (-5 *2
- (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523))
- (|:| |success| (-108))))
- (-5 *1 (-728)) (-5 *5 (-523)))))
+ (-12 (-5 *3 (-1 (-525) *2 *2)) (-4 *2 (-127)) (-5 *1 (-1004 *2)))))
+(((*1 *2 *3 *3 *4 *4 *3 *3 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205))
+ (-5 *2 (-964)) (-5 *1 (-697)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1016)) (-4 *4 (-1016))
- (-4 *6 (-1016)) (-5 *2 (-1 *6 *5)) (-5 *1 (-624 *5 *4 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-234)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-562 *5))) (-4 *4 (-786)) (-5 *2 (-562 *5))
- (-5 *1 (-532 *4 *5)) (-4 *5 (-406 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-784)) (-5 *1 (-280 *3)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1051))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355))
- (-5 *2
- (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523))
- (|:| |success| (-108))))
- (-5 *1 (-728)) (-5 *5 (-523)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2056 *3)))
- (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))))
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-543 *2)) (-4 *2 (-510)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-325)) (-5 *2 (-888 (-1083 *4))) (-5 *1 (-333 *4))
- (-5 *3 (-1083 *4)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-938 *3)) (-4 *3 (-1123)) (-5 *2 (-523)))))
-(((*1 *1) (-5 *1 (-133)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-238))))
- ((*1 *1 *2) (-12 (-5 *2 (-1047 (-203))) (-5 *1 (-240)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1145 *5)) (-4 *5 (-339))
- (-5 *2 (-2 (|:| -2031 (-394 *3)) (|:| |special| (-394 *3))))
- (-5 *1 (-667 *5 *3)))))
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-525)) (-5 *1 (-461 *4))
+ (-4 *4 (-1147 *2)))))
+(((*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10)
+ (|partial| -12 (-5 *2 (-591 (-1085 *13))) (-5 *3 (-1085 *13))
+ (-5 *4 (-591 *12)) (-5 *5 (-591 *10)) (-5 *6 (-591 *13))
+ (-5 *7 (-591 (-591 (-2 (|:| -4100 (-712)) (|:| |pcoef| *13)))))
+ (-5 *8 (-591 (-712))) (-5 *9 (-1171 (-591 (-1085 *10))))
+ (-4 *12 (-788)) (-4 *10 (-286)) (-4 *13 (-882 *10 *11 *12))
+ (-4 *11 (-734)) (-5 *1 (-649 *11 *12 *10 *13)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 (-415)))))
+ (-5 *1 (-1093)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-591 *1)) (-4 *1 (-989 *4 *5 *6)) (-4 *4 (-975))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1 *4)
+ (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *1 (-1119 *5 *6 *7 *3))
+ (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *3 (-989 *5 *6 *7))
+ (-5 *2 (-108)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-907 *3 *4 *2 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *2 (-788)) (-4 *5 (-989 *3 *4 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-1125)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1011 (-779 (-203)))) (-5 *2 (-203)) (-5 *1 (-172))))
+ (-12 (-5 *2 (-1085 (-525))) (-5 *1 (-173)) (-5 *3 (-525))))
+ ((*1 *2 *3 *2) (-12 (-5 *3 (-712)) (-5 *1 (-724 *2)) (-4 *2 (-160))))
((*1 *2 *3)
- (-12 (-5 *3 (-1011 (-779 (-203)))) (-5 *2 (-203)) (-5 *1 (-277))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1011 (-779 (-203)))) (-5 *2 (-203)) (-5 *1 (-282)))))
-(((*1 *2 *3 *3 *4 *5 *5)
- (-12 (-5 *5 (-108)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786))
- (-4 *3 (-987 *6 *7 *8))
- (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4))))
- (-5 *1 (-1024 *6 *7 *8 *3 *4)) (-4 *4 (-992 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-589 (-2 (|:| |val| (-589 *8)) (|:| -2394 *9))))
- (-5 *5 (-108)) (-4 *8 (-987 *6 *7 *4)) (-4 *9 (-992 *6 *7 *4 *8))
- (-4 *6 (-427)) (-4 *7 (-732)) (-4 *4 (-786))
- (-5 *2 (-589 (-2 (|:| |val| *8) (|:| -2394 *9))))
- (-5 *1 (-1024 *6 *7 *4 *8 *9)))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-858)))))
+ (-12 (-5 *2 (-1085 (-525))) (-5 *1 (-875)) (-5 *3 (-525)))))
+(((*1 *1 *1) (-4 *1 (-577)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-578 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932) (-1111))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1119 *4 *5 *6 *3)) (-4 *4 (-517)) (-4 *5 (-734))
+ (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-631 (-385 (-885 (-525))))) (-5 *2 (-591 (-294 (-525))))
+ (-5 *1 (-960)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *1 (-622 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1018)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-385 *4)) (-4 *4 (-1147 *3)) (-4 *3 (-13 (-341) (-138)))
+ (-5 *1 (-377 *3 *4)))))
+(((*1 *1 *2) (-12 (-5 *1 (-955 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-631 *4)) (-5 *3 (-854)) (-4 *4 (-975))
+ (-5 *1 (-957 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-591 (-631 *4))) (-5 *3 (-854)) (-4 *4 (-975))
+ (-5 *1 (-957 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-205)) (-5 *2 (-385 (-525))) (-5 *1 (-284)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-551 *3)) (-4 *3 (-975))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-904 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-733))
+ (-4 *5 (-788)) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-408 *4)) (-5 *1 (-147 *4 *2))
+ (-4 *4 (-13 (-788) (-517))))))
(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-1083 (-883 *4))) (-5 *1 (-392 *3 *4))
- (-4 *3 (-393 *4))))
+ (|partial| -12 (-4 *3 (-517)) (-4 *3 (-160))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -4003 (-591 *1))))
+ (-4 *1 (-345 *3))))
((*1 *2)
- (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-4 *3 (-339))
- (-5 *2 (-1083 (-883 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-1083 (-383 (-883 *3)))) (-5 *1 (-428 *3 *4 *5 *6))
- (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1087)) (-5 *4 (-883 (-523))) (-5 *2 (-306))
- (-5 *1 (-308)))))
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-430 *3 *4 *5 *6))
+ (|:| -4003 (-591 (-430 *3 *4 *5 *6)))))
+ (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-160)) (-14 *4 (-854))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *1 (-622 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-786))
- (-5 *2
- (-2 (|:| |f1| (-589 *4)) (|:| |f2| (-589 (-589 (-589 *4))))
- (|:| |f3| (-589 (-589 *4))) (|:| |f4| (-589 (-589 (-589 *4))))))
- (-5 *1 (-1095 *4)) (-5 *3 (-589 (-589 (-589 *4)))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-589 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-383 (-523))) (-5 *2 (-203)) (-5 *1 (-282)))))
-(((*1 *1 *2) (-12 (-5 *2 (-167)) (-5 *1 (-226)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-852))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-662)) (-5 *2 (-710)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-340 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-5 *2 (-1070)))))
+ (-12
+ (-5 *3
+ (-477 (-385 (-525)) (-220 *5 (-712)) (-798 *4)
+ (-227 *4 (-385 (-525)))))
+ (-14 *4 (-591 (-1089))) (-14 *5 (-712)) (-5 *2 (-108))
+ (-5 *1 (-478 *4 *5)))))
+(((*1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-701)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-408 *4)) (-5 *1 (-147 *4 *2))
+ (-4 *4 (-13 (-788) (-517))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-5 *2 (-1171 (-631 *4))) (-5 *1 (-88 *4 *5))
+ (-5 *3 (-631 *4)) (-4 *5 (-601 *4)))))
+(((*1 *1 *2 *2 *2)
+ (-12 (-5 *1 (-207 *2)) (-4 *2 (-13 (-341) (-1111)))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341))))
+ ((*1 *1 *2) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341))))
+ ((*1 *2 *1 *3 *4 *4)
+ (-12 (-5 *3 (-854)) (-5 *4 (-357)) (-5 *2 (-1176)) (-5 *1 (-1172)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1147 (-385 (-525)))) (-5 *1 (-846 *3 *2))
+ (-4 *2 (-1147 (-385 *3))))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -1399 (-723 *3)) (|:| |coef1| (-723 *3))))
+ (-5 *1 (-723 *3)) (-4 *3 (-517)) (-4 *3 (-975))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-517)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *2 (-2 (|:| -1399 *1) (|:| |coef1| *1)))
+ (-4 *1 (-989 *3 *4 *5)))))
(((*1 *2)
- (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6))
- (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-523)) (-4 *1 (-55 *4 *5 *3)) (-4 *4 (-1123))
- (-4 *5 (-349 *4)) (-4 *3 (-349 *4)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *8 (-987 *5 *6 *7))
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-631 (-385 *4))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-1147 *3)) (-4 *3 (-975))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-854)) (-4 *1 (-1149 *3 *4)) (-4 *3 (-975))
+ (-4 *4 (-733))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-385 (-525))) (-4 *1 (-1152 *3)) (-4 *3 (-975)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975))
+ (-5 *2 (-760 *3))))
+ ((*1 *2 *1) (-12 (-4 *2 (-784)) (-5 *1 (-1192 *3 *2)) (-4 *3 (-975)))))
+(((*1 *1 *2 *2 *3)
+ (-12 (-5 *3 (-591 (-1089))) (-4 *4 (-1018))
+ (-4 *5 (-13 (-975) (-819 *4) (-788) (-566 (-825 *4))))
+ (-5 *1 (-997 *4 *5 *2))
+ (-4 *2 (-13 (-408 *5) (-819 *4) (-566 (-825 *4))))))
+ ((*1 *1 *2 *2)
+ (-12 (-4 *3 (-1018))
+ (-4 *4 (-13 (-975) (-819 *3) (-788) (-566 (-825 *3))))
+ (-5 *1 (-997 *3 *4 *2))
+ (-4 *2 (-13 (-408 *4) (-819 *3) (-566 (-825 *3)))))))
+(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-525)) (-5 *3 (-854)) (-5 *1 (-640))))
+ ((*1 *2 *2 *2 *3 *4)
+ (-12 (-5 *2 (-631 *5)) (-5 *3 (-94 *5)) (-5 *4 (-1 *5 *5))
+ (-4 *5 (-341)) (-5 *1 (-909 *5)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7)
+ (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205)))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-73 FCN JACOBF JACEPS))))
+ (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-74 G JACOBG JACGEP))))
+ (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-691)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1147 *2)) (-4 *2 (-975)))))
+(((*1 *1) (-5 *1 (-308))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-591 *7)) (-4 *7 (-788))
+ (-4 *8 (-882 *5 *6 *7)) (-4 *5 (-517)) (-4 *6 (-734))
(-5 *2
- (-2 (|:| |val| (-589 *8)) (|:| |towers| (-589 (-954 *5 *6 *7 *8)))))
- (-5 *1 (-954 *5 *6 *7 *8)) (-5 *3 (-589 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *8 (-987 *5 *6 *7))
+ (-2 (|:| |particular| (-3 (-1171 (-385 *8)) "failed"))
+ (|:| -4003 (-591 (-1171 (-385 *8))))))
+ (-5 *1 (-614 *5 *6 *7 *8)))))
+(((*1 *1 *1) (-4 *1 (-577)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-578 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932) (-1111))))))
+(((*1 *2 *3 *3 *3 *4 *5 *6)
+ (-12 (-5 *3 (-294 (-525))) (-5 *4 (-1 (-205) (-205)))
+ (-5 *5 (-1013 (-205))) (-5 *6 (-591 (-242))) (-5 *2 (-1049 (-205)))
+ (-5 *1 (-638)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *6 (-854)) (-4 *5 (-286)) (-4 *3 (-1147 *5))
+ (-5 *2 (-2 (|:| |plist| (-591 *3)) (|:| |modulo| *5)))
+ (-5 *1 (-437 *5 *3)) (-5 *4 (-591 *3)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-712)) (-4 *5 (-517))
(-5 *2
- (-2 (|:| |val| (-589 *8))
- (|:| |towers| (-589 (-1058 *5 *6 *7 *8)))))
- (-5 *1 (-1058 *5 *6 *7 *8)) (-5 *3 (-589 *8)))))
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-901 *5 *3)) (-4 *3 (-1147 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-256 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-256 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *4))))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4250)) (-4 *1 (-142 *2)) (-4 *2 (-1125))
+ (-4 *2 (-1018)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-993 *5 *6 *7 *3 *4))
- (-4 *4 (-992 *5 *6 *7 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2 (-589 (-2 (|:| |val| (-108)) (|:| -2394 *4))))
- (-5 *1 (-993 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1154 *3 *4 *5)) (-4 *3 (-13 (-339) (-786)))
- (-14 *4 (-1087)) (-14 *5 *3) (-5 *1 (-295 *3 *4 *5))))
- ((*1 *2 *3) (-12 (-5 *2 (-1 (-355))) (-5 *1 (-966)) (-5 *3 (-355)))))
+ (-12 (-5 *3 (-591 (-631 *5))) (-5 *4 (-1171 *5)) (-4 *5 (-286))
+ (-4 *5 (-975)) (-5 *2 (-631 *5)) (-5 *1 (-958 *5)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2))
- (-4 *2 (-406 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-406 *4)) (-5 *1 (-145 *4 *2))
- (-4 *4 (-13 (-786) (-515))))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-515)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3))
- (-5 *1 (-1114 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))))
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-108)) (-5 *5 (-631 (-157 (-205))))
+ (-5 *2 (-964)) (-5 *1 (-697)))))
+(((*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-103))))
+ ((*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-198))))
+ ((*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-462))))
+ ((*1 *1 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)) (-4 *2 (-286))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-385 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525))))
+ ((*1 *1 *1) (-4 *1 (-984))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525))
+ (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576)))) (-5 *2 (-964))
+ (-5 *1 (-690)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-341)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4)))
+ (-5 *2 (-1171 *6)) (-5 *1 (-314 *3 *4 *5 *6))
+ (-4 *6 (-320 *3 *4 *5)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-732))
- (-4 *5 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $))))) (-4 *6 (-515))
- (-5 *2 (-2 (|:| -1773 (-883 *6)) (|:| -2508 (-883 *6))))
- (-5 *1 (-672 *4 *5 *6 *3)) (-4 *3 (-880 (-383 (-883 *6)) *4 *5)))))
-(((*1 *2 *2 *2 *2 *2 *3)
- (-12 (-5 *2 (-629 *4)) (-5 *3 (-710)) (-4 *4 (-973))
- (-5 *1 (-630 *4)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-710)) (-5 *3 (-108)) (-5 *1 (-106))))
- ((*1 *2 *2) (-12 (-5 *2 (-852)) (|has| *1 (-6 -4239)) (-4 *1 (-380))))
- ((*1 *2) (-12 (-4 *1 (-380)) (-5 *2 (-852)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1087)) (-5 *4 (-883 (-523))) (-5 *2 (-306))
- (-5 *1 (-308)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-940)) (-5 *2 (-794)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-857))))
- ((*1 *2 *1) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-858)))))
+ (-12 (-5 *3 (-1089))
+ (-5 *2
+ (-2 (|:| |zeros| (-1070 (-205))) (|:| |ones| (-1070 (-205)))
+ (|:| |singularities| (-1070 (-205)))))
+ (-5 *1 (-100)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-975)) (-5 *1 (-1143 *3 *2)) (-4 *2 (-1147 *3)))))
+(((*1 *1 *2 *2 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6)
+ (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *5 (-205))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN)))) (-5 *2 (-964))
+ (-5 *1 (-691)))))
(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-523))) (-4 *3 (-973)) (-5 *1 (-548 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-523))) (-4 *1 (-1129 *3)) (-4 *3 (-973))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-523))) (-4 *1 (-1160 *3)) (-4 *3 (-973)))))
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-301 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-126)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-108)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-284))
- (-5 *2 (-589 (-710))) (-5 *1 (-717 *3 *4 *5 *6 *7))
- (-4 *3 (-1145 *6)) (-4 *7 (-880 *6 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 *4)) (-4 *4 (-1016)) (-5 *2 (-1174))
- (-5 *1 (-1124 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 *4)) (-4 *4 (-1016)) (-5 *2 (-1174))
- (-5 *1 (-1124 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158)) (-4 *2 (-1109))))
- ((*1 *2 *1) (-12 (-5 *1 (-307 *2)) (-4 *2 (-786))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-562 *3)) (-4 *3 (-786)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-427)))))
+ (-12 (-4 *4 (-13 (-788) (-517) (-966 (-525)))) (-5 *2 (-385 (-525)))
+ (-5 *1 (-411 *4 *3)) (-4 *3 (-408 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-564 *3)) (-4 *3 (-408 *5))
+ (-4 *5 (-13 (-788) (-517) (-966 (-525))))
+ (-5 *2 (-1085 (-385 (-525)))) (-5 *1 (-411 *5 *3)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-591 (-591 *6))) (-4 *6 (-882 *3 *5 *4))
+ (-4 *3 (-13 (-286) (-138))) (-4 *4 (-13 (-788) (-566 (-1089))))
+ (-4 *5 (-734)) (-5 *1 (-857 *3 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1106)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975))
+ (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-108)))))
+(((*1 *1 *1) (-12 (-5 *1 (-620 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1) (-12 (-5 *1 (-760 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1) (-12 (-5 *1 (-826 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-1119 *2 *3 *4 *5)) (-4 *2 (-517))
+ (-4 *3 (-734)) (-4 *4 (-788)) (-4 *5 (-989 *2 *3 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-4 *1 (-1159 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-589 (-562 *5))) (-5 *3 (-1087)) (-4 *5 (-406 *4))
- (-4 *4 (-786)) (-5 *1 (-532 *4 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-962)))))
+ (-12 (-4 *3 (-286)) (-5 *1 (-432 *3 *2)) (-4 *2 (-1147 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-286)) (-5 *1 (-437 *3 *2)) (-4 *2 (-1147 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-286)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-712)))
+ (-5 *1 (-504 *3 *2 *4 *5)) (-4 *2 (-1147 *3)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-523)) (-4 *6 (-732)) (-4 *7 (-786)) (-4 *8 (-284))
- (-4 *9 (-880 *8 *6 *7))
- (-5 *2 (-2 (|:| -3764 (-1083 *9)) (|:| |polval| (-1083 *8))))
- (-5 *1 (-682 *6 *7 *8 *9)) (-5 *3 (-1083 *9)) (-5 *4 (-1083 *8)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-5 *1 (-459 *2)) (-4 *2 (-1145 (-523))))))
-(((*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4)
- (-12 (-5 *3 (-1070)) (-5 *4 (-523)) (-5 *5 (-629 (-203)))
- (-5 *6 (-203)) (-5 *2 (-962)) (-5 *1 (-692)))))
-(((*1 *1 *1) (-12 (-5 *1 (-845 *2)) (-4 *2 (-284)))))
-(((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-1123)))))
-(((*1 *1 *1 *1) (-5 *1 (-794))) ((*1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1083 (-523))) (-5 *3 (-523)) (-4 *1 (-800 *4)))))
-(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-126)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-1087))
- (-4 *5 (-13 (-284) (-786) (-136))) (-5 *2 (-589 (-271 (-292 *5))))
- (-5 *1 (-1043 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-13 (-284) (-786) (-136)))
- (-5 *2 (-589 (-271 (-292 *4)))) (-5 *1 (-1043 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-271 (-383 (-883 *5)))) (-5 *4 (-1087))
- (-4 *5 (-13 (-284) (-786) (-136))) (-5 *2 (-589 (-271 (-292 *5))))
- (-5 *1 (-1043 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-271 (-383 (-883 *4))))
- (-4 *4 (-13 (-284) (-786) (-136))) (-5 *2 (-589 (-271 (-292 *4))))
- (-5 *1 (-1043 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-383 (-883 *5)))) (-5 *4 (-589 (-1087)))
- (-4 *5 (-13 (-284) (-786) (-136)))
- (-5 *2 (-589 (-589 (-271 (-292 *5))))) (-5 *1 (-1043 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-383 (-883 *4))))
- (-4 *4 (-13 (-284) (-786) (-136)))
- (-5 *2 (-589 (-589 (-271 (-292 *4))))) (-5 *1 (-1043 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-271 (-383 (-883 *5))))) (-5 *4 (-589 (-1087)))
- (-4 *5 (-13 (-284) (-786) (-136)))
- (-5 *2 (-589 (-589 (-271 (-292 *5))))) (-5 *1 (-1043 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-271 (-383 (-883 *4)))))
- (-4 *4 (-13 (-284) (-786) (-136)))
- (-5 *2 (-589 (-589 (-271 (-292 *4))))) (-5 *1 (-1043 *4)))))
-(((*1 *2 *1 *1)
+ (-12 (-5 *3 (-2 (|:| |totdeg| (-712)) (|:| -1357 *4))) (-5 *5 (-712))
+ (-4 *4 (-882 *6 *7 *8)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788))
+ (-5 *2
+ (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-5 *1 (-426 *6 *7 *8 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *4 (-1018)) (-5 *2 (-108)) (-5 *1 (-818 *3 *4 *5))
+ (-4 *3 (-1018)) (-4 *5 (-611 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-822 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-1018)))))
+(((*1 *2 *2 *2)
(-12
(-5 *2
- (-2 (|:| |polnum| (-721 *3)) (|:| |polden| *3) (|:| -1301 (-710))))
- (-5 *1 (-721 *3)) (-4 *3 (-973))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -1301 (-710))))
- (-4 *1 (-987 *3 *4 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-589 *3)) (-5 *1 (-891 *3)) (-4 *3 (-508)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-540 *3)) (-4 *3 (-339)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *6)) (-5 *4 (-589 (-1087))) (-4 *6 (-339))
- (-5 *2 (-589 (-271 (-883 *6)))) (-5 *1 (-501 *5 *6 *7))
- (-4 *5 (-427)) (-4 *7 (-13 (-339) (-784))))))
-(((*1 *2)
- (|partial| -12 (-4 *4 (-1127)) (-4 *5 (-1145 (-383 *2)))
- (-4 *2 (-1145 *4)) (-5 *1 (-317 *3 *4 *2 *5))
- (-4 *3 (-318 *4 *2 *5))))
- ((*1 *2)
- (|partial| -12 (-4 *1 (-318 *3 *2 *4)) (-4 *3 (-1127))
- (-4 *4 (-1145 (-383 *2))) (-4 *2 (-1145 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848))))
- ((*1 *2) (-12 (-5 *2 (-835 (-523))) (-5 *1 (-848)))))
+ (-2 (|:| -4003 (-631 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-631 *3))))
+ (-4 *3 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $)))))
+ (-4 *4 (-1147 *3)) (-5 *1 (-472 *3 *4 *5)) (-4 *5 (-387 *3 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-964)))))
+(((*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-591 (-885 *4))) (-5 *3 (-591 (-1089))) (-4 *4 (-429))
+ (-5 *1 (-851 *4)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-712)) (-4 *4 (-975))
+ (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-1147 *4)))))
+(((*1 *1 *1 *1) (-5 *1 (-796))) ((*1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1085 (-525))) (-5 *3 (-525)) (-4 *1 (-802 *4)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-629 (-383 (-883 (-523)))))
- (-5 *2 (-589 (-629 (-292 (-523))))) (-5 *1 (-958))
- (-5 *3 (-292 (-523))))))
+ (-12 (-5 *4 (-591 (-798 *5))) (-14 *5 (-591 (-1089))) (-4 *6 (-429))
+ (-5 *2 (-591 (-591 (-227 *5 *6)))) (-5 *1 (-448 *5 *6 *7))
+ (-5 *3 (-591 (-227 *5 *6))) (-4 *7 (-429)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-1110 *3))) (-5 *1 (-1110 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515))
- (-5 *2 (-108)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-515)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3))
- (-5 *1 (-1114 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))))
-(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-1056)) (-5 *2 (-1136 (-523))))))
-(((*1 *2 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-687)))))
-(((*1 *2 *3 *3 *4 *5 *3 *6)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-79 FCN)))) (-5 *2 (-962))
- (-5 *1 (-686)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1169 *4)) (-4 *4 (-393 *3)) (-4 *3 (-284))
- (-4 *3 (-515)) (-5 *1 (-42 *3 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-852)) (-4 *4 (-339)) (-5 *2 (-1169 *1))
- (-4 *1 (-305 *4))))
- ((*1 *2) (-12 (-4 *3 (-339)) (-5 *2 (-1169 *1)) (-4 *1 (-305 *3))))
- ((*1 *2)
- (-12 (-4 *3 (-158)) (-4 *4 (-1145 *3)) (-5 *2 (-1169 *1))
- (-4 *1 (-385 *3 *4))))
+ (-12 (-4 *1 (-558 *3 *2)) (-4 *3 (-1018)) (-4 *3 (-788))
+ (-4 *2 (-1125))))
+ ((*1 *2 *1) (-12 (-5 *1 (-620 *2)) (-4 *2 (-788))))
+ ((*1 *2 *1) (-12 (-5 *1 (-760 *2)) (-4 *2 (-788))))
((*1 *2 *1)
- (-12 (-4 *3 (-284)) (-4 *4 (-921 *3)) (-4 *5 (-1145 *4))
- (-5 *2 (-1169 *6)) (-5 *1 (-389 *3 *4 *5 *6))
- (-4 *6 (-13 (-385 *4 *5) (-964 *4)))))
+ (-12 (-4 *2 (-1125)) (-5 *1 (-806 *2 *3)) (-4 *3 (-1125))))
+ ((*1 *2 *1) (-12 (-5 *2 (-616 *3)) (-5 *1 (-826 *3)) (-4 *3 (-788))))
((*1 *2 *1)
- (-12 (-4 *3 (-284)) (-4 *4 (-921 *3)) (-4 *5 (-1145 *4))
- (-5 *2 (-1169 *6)) (-5 *1 (-390 *3 *4 *5 *6 *7))
- (-4 *6 (-385 *4 *5)) (-14 *7 *2)))
- ((*1 *2) (-12 (-4 *3 (-158)) (-5 *2 (-1169 *1)) (-4 *1 (-393 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1169 (-1169 *4))) (-5 *1 (-493 *4))
- (-4 *4 (-325)))))
-(((*1 *2 *3 *4 *4 *4 *5 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203))
- (-5 *2 (-962)) (-5 *1 (-691)))))
-(((*1 *2 *1 *3 *3 *3 *2)
- (-12 (-5 *3 (-710)) (-5 *1 (-617 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-515)) (-5 *1 (-570 *2 *3)) (-4 *3 (-1145 *2)))))
+ (|partial| -12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-4 *1 (-1159 *3)) (-4 *3 (-1125))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-631 (-294 (-205)))) (-5 *2 (-357)) (-5 *1 (-187)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
+ (-12 (-5 *3 (-598 (-385 *6))) (-5 *4 (-1 (-591 *5) *6))
+ (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-4 *6 (-1147 *5)) (-5 *2 (-591 (-385 *6))) (-5 *1 (-753 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-598 (-385 *7))) (-5 *4 (-1 (-591 *6) *7))
+ (-5 *5 (-1 (-396 *7) *7))
+ (-4 *6 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-4 *7 (-1147 *6)) (-5 *2 (-591 (-385 *7))) (-5 *1 (-753 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-599 *6 (-385 *6))) (-5 *4 (-1 (-591 *5) *6))
+ (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-4 *6 (-1147 *5)) (-5 *2 (-591 (-385 *6))) (-5 *1 (-753 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-599 *7 (-385 *7))) (-5 *4 (-1 (-591 *6) *7))
+ (-5 *5 (-1 (-396 *7) *7))
+ (-4 *6 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-4 *7 (-1147 *6)) (-5 *2 (-591 (-385 *7))) (-5 *1 (-753 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-598 (-385 *5))) (-4 *5 (-1147 *4)) (-4 *4 (-27))
+ (-4 *4 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-5 *2 (-591 (-385 *5))) (-5 *1 (-753 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-598 (-385 *6))) (-5 *4 (-1 (-396 *6) *6))
+ (-4 *6 (-1147 *5)) (-4 *5 (-27))
+ (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-5 *2 (-591 (-385 *6))) (-5 *1 (-753 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-599 *5 (-385 *5))) (-4 *5 (-1147 *4)) (-4 *4 (-27))
+ (-4 *4 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-5 *2 (-591 (-385 *5))) (-5 *1 (-753 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-599 *6 (-385 *6))) (-5 *4 (-1 (-396 *6) *6))
+ (-4 *6 (-1147 *5)) (-4 *5 (-27))
+ (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-5 *2 (-591 (-385 *6))) (-5 *1 (-753 *5 *6)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-108)) (-4 *4 (-13 (-341) (-786))) (-5 *2 (-396 *3))
+ (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *4 (-13 (-341) (-786))) (-5 *2 (-396 *3))
+ (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4))))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-712)) (-4 *5 (-517))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-901 *5 *3)) (-4 *3 (-1147 *5)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2 *1) (-12 (-5 *1 (-542 *2)) (-4 *2 (-341)))))
+(((*1 *1 *2) (-12 (-5 *2 (-146)) (-5 *1 (-807)))))
+(((*1 *2 *3 *3 *3 *3 *3 *3 *3 *3 *4 *5 *5 *5 *5 *5 *5 *6 *6 *6 *3 *3 *5
+ *7 *3 *8)
+ (-12 (-5 *5 (-631 (-205))) (-5 *6 (-108)) (-5 *7 (-631 (-525)))
+ (-5 *8 (-3 (|:| |fn| (-366)) (|:| |fp| (-63 QPHESS))))
+ (-5 *3 (-525)) (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-695)))))
+(((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-345 *2)) (-4 *2 (-160)) (-4 *2 (-517))))
+ ((*1 *1 *1) (|partial| -4 *1 (-664))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523)))))))
- (-5 *2 (-589 *4)) (-5 *1 (-1042 *3 *4)) (-4 *3 (-1145 *4))))
- ((*1 *2 *3 *3 *3 *3)
- (-12 (-4 *3 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523)))))))
- (-5 *2 (-589 *3)) (-5 *1 (-1042 *4 *3)) (-4 *4 (-1145 *3)))))
-(((*1 *1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-108)) (-5 *1 (-823 *4))
- (-4 *4 (-1016)))))
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-882 *4 *5 *6)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-1176))
+ (-5 *1 (-426 *4 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-712)) (-4 *4 (-341)) (-4 *5 (-1147 *4)) (-5 *2 (-1176))
+ (-5 *1 (-39 *4 *5 *6 *7)) (-4 *6 (-1147 (-385 *5))) (-14 *7 *6))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1070 (-2 (|:| |k| (-525)) (|:| |c| *3))))
+ (-5 *1 (-550 *3)) (-4 *3 (-975)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-320 *4 *3 *5)) (-4 *4 (-1129)) (-4 *3 (-1147 *4))
+ (-4 *5 (-1147 (-385 *3))) (-5 *2 (-108))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205))
+ (-5 *2 (-964)) (-5 *1 (-692)))))
(((*1 *2 *3)
+ (-12 (-5 *3 (-591 *4)) (-4 *4 (-786)) (-4 *4 (-341)) (-5 *2 (-712))
+ (-5 *1 (-878 *4 *5)) (-4 *5 (-1147 *4)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-5 *3 (-1 (-108) *5 *5)) (-4 *5 (-13 (-1018) (-33)))
+ (-5 *2 (-108)) (-5 *1 (-1054 *4 *5)) (-4 *4 (-13 (-1018) (-33))))))
+(((*1 *2 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173))))
+ ((*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-712)) (-4 *4 (-13 (-517) (-138)))
+ (-5 *1 (-1141 *4 *2)) (-4 *2 (-1147 *4)))))
+(((*1 *1 *1 *2)
(-12
- (-5 *3
- (-589 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523))))))
- (-5 *2 (-589 (-203))) (-5 *1 (-282)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-710)) (-5 *3 (-874 *5)) (-4 *5 (-973))
- (-5 *1 (-1076 *4 *5)) (-14 *4 (-852))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-710))) (-5 *3 (-710)) (-5 *1 (-1076 *4 *5))
- (-14 *4 (-852)) (-4 *5 (-973))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-710))) (-5 *3 (-874 *5)) (-4 *5 (-973))
- (-5 *1 (-1076 *4 *5)) (-14 *4 (-852)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1169 *5)) (-4 *5 (-731)) (-5 *2 (-108))
- (-5 *1 (-781 *4 *5)) (-14 *4 (-710)))))
+ (-5 *2
+ (-2 (|:| -2718 (-591 (-796))) (|:| -2593 (-591 (-796)))
+ (|:| |presup| (-591 (-796))) (|:| -1772 (-591 (-796)))
+ (|:| |args| (-591 (-796)))))
+ (-5 *1 (-1089))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-591 (-796)))) (-5 *1 (-1089)))))
+(((*1 *1 *1 *1) (-4 *1 (-510))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-308))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-308)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2 (-589 (-2 (|:| |val| (-108)) (|:| -2394 *4))))
- (-5 *1 (-715 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1 *8 *8))
- (-5 *5
- (-1 (-3 (-2 (|:| -3699 *7) (|:| |coeff| *7)) "failed") *7))
- (-5 *6 (-589 (-383 *8))) (-4 *7 (-339)) (-4 *8 (-1145 *7))
- (-5 *3 (-383 *8))
- (-5 *2
- (-2
- (|:| |answer|
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (|:| |a0| *7)))
- (-5 *1 (-533 *7 *8)))))
-(((*1 *2 *3 *4 *5 *6 *7 *6)
- (|partial| -12
- (-5 *5
- (-2 (|:| |contp| *3)
- (|:| -3286 (-589 (-2 (|:| |irr| *10) (|:| -3269 (-523)))))))
- (-5 *6 (-589 *3)) (-5 *7 (-589 *8)) (-4 *8 (-786)) (-4 *3 (-284))
- (-4 *10 (-880 *3 *9 *8)) (-4 *9 (-732))
- (-5 *2
- (-2 (|:| |polfac| (-589 *10)) (|:| |correct| *3)
- (|:| |corrfact| (-589 (-1083 *3)))))
- (-5 *1 (-572 *8 *9 *3 *10)) (-5 *4 (-589 (-1083 *3))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-556 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1123))
- (-5 *2 (-589 *3)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1083 *1)) (-4 *1 (-940)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *2 (-515)) (-5 *1 (-899 *2 *3)) (-4 *3 (-1145 *2)))))
+ (-12 (-5 *3 (-385 (-525))) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-517)) (-4 *8 (-882 *7 *5 *6))
+ (-5 *2 (-2 (|:| -2008 (-712)) (|:| -3482 *9) (|:| |radicand| *9)))
+ (-5 *1 (-886 *5 *6 *7 *8 *9)) (-5 *4 (-712))
+ (-4 *9
+ (-13 (-341)
+ (-10 -8 (-15 -1738 (*8 $)) (-15 -1754 (*8 $)) (-15 -3022 ($ *8))))))))
+(((*1 *2 *3) (-12 (-5 *3 (-294 (-205))) (-5 *2 (-108)) (-5 *1 (-246)))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-305 *3)) (-4 *3 (-1125))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-488 *3 *4)) (-4 *3 (-1125))
+ (-14 *4 (-525)))))
+(((*1 *2 *1 *1)
+ (|partial| -12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-4 *3 (-346))
+ (-5 *2 (-1085 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-4 *3 (-346))
+ (-5 *2 (-1085 *3)))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-698)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 *5)) (-4 *5 (-1145 *3)) (-4 *3 (-284))
- (-5 *2 (-108)) (-5 *1 (-430 *3 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-515)) (-4 *3 (-158)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *1 (-628 *3 *4 *5 *2))
- (-4 *2 (-627 *3 *4 *5)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-271 *2)) (-4 *2 (-666)) (-4 *2 (-1123)))))
+ (-12 (-5 *4 (-525)) (-5 *2 (-591 (-2 (|:| -1348 *3) (|:| -1316 *4))))
+ (-5 *1 (-637 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *2 *3 *4 *5 *6 *5 *3 *7)
+ (-12 (-5 *4 (-525))
+ (-5 *6
+ (-2 (|:| |try| (-357)) (|:| |did| (-357)) (|:| -1570 (-357))))
+ (-5 *7 (-1 (-1176) (-1171 *5) (-1171 *5) (-357)))
+ (-5 *3 (-1171 (-357))) (-5 *5 (-357)) (-5 *2 (-1176))
+ (-5 *1 (-729))))
+ ((*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3)
+ (-12 (-5 *4 (-525))
+ (-5 *6
+ (-2 (|:| |try| (-357)) (|:| |did| (-357)) (|:| -1570 (-357))))
+ (-5 *7 (-1 (-1176) (-1171 *5) (-1171 *5) (-357)))
+ (-5 *3 (-1171 (-357))) (-5 *5 (-357)) (-5 *2 (-1176))
+ (-5 *1 (-729)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-4 *1 (-142 *3))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2 (-591 (-2 (|:| -2008 (-712)) (|:| -1682 *4) (|:| |num| *4))))
+ (-4 *4 (-1147 *3)) (-4 *3 (-13 (-341) (-138))) (-5 *1 (-377 *3 *4))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-5 *3 (-591 (-885 (-525)))) (-5 *4 (-108)) (-5 *1 (-415))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-5 *3 (-591 (-1089))) (-5 *4 (-108)) (-5 *1 (-415))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1070 *3)) (-5 *1 (-555 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-582 *2)) (-4 *2 (-160))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-616 *3)) (-4 *3 (-788)) (-5 *1 (-609 *3 *4))
+ (-4 *4 (-160))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-616 *3)) (-4 *3 (-788)) (-5 *1 (-609 *3 *4))
+ (-4 *4 (-160))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-616 *3)) (-4 *3 (-788)) (-5 *1 (-609 *3 *4))
+ (-4 *4 (-160))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-591 (-591 *3)))) (-4 *3 (-1018))
+ (-5 *1 (-619 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-788)) (-4 *3 (-1018))
+ (-14 *4
+ (-1 (-108) (-2 (|:| -2226 *2) (|:| -2008 *3))
+ (-2 (|:| -2226 *2) (|:| -2008 *3))))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-806 *2 *3)) (-4 *2 (-1125)) (-4 *3 (-1125))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 *4))))
+ (-4 *4 (-1018)) (-5 *1 (-822 *3 *4)) (-4 *3 (-1018))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 *5)) (-4 *5 (-13 (-1018) (-33)))
+ (-5 *2 (-591 (-1054 *3 *5))) (-5 *1 (-1054 *3 *5))
+ (-4 *3 (-13 (-1018) (-33)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-2 (|:| |val| *4) (|:| -3374 *5))))
+ (-4 *4 (-13 (-1018) (-33))) (-4 *5 (-13 (-1018) (-33)))
+ (-5 *2 (-591 (-1054 *4 *5))) (-5 *1 (-1054 *4 *5))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -3374 *4)))
+ (-4 *3 (-13 (-1018) (-33))) (-4 *4 (-13 (-1018) (-33)))
+ (-5 *1 (-1054 *3 *4))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-1054 *2 *3)) (-4 *2 (-13 (-1018) (-33)))
+ (-4 *3 (-13 (-1018) (-33)))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *4 (-108)) (-5 *1 (-1054 *2 *3)) (-4 *2 (-13 (-1018) (-33)))
+ (-4 *3 (-13 (-1018) (-33)))))
+ ((*1 *1 *2 *3 *2 *4)
+ (-12 (-5 *4 (-591 *3)) (-4 *3 (-13 (-1018) (-33)))
+ (-5 *1 (-1055 *2 *3)) (-4 *2 (-13 (-1018) (-33)))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *4 (-591 (-1054 *2 *3))) (-4 *2 (-13 (-1018) (-33)))
+ (-4 *3 (-13 (-1018) (-33))) (-5 *1 (-1055 *2 *3))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *4 (-591 (-1055 *2 *3))) (-5 *1 (-1055 *2 *3))
+ (-4 *2 (-13 (-1018) (-33))) (-4 *3 (-13 (-1018) (-33)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1054 *3 *4)) (-4 *3 (-13 (-1018) (-33)))
+ (-4 *4 (-13 (-1018) (-33))) (-5 *1 (-1055 *3 *4))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-1079 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-286)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4))
+ (-5 *2
+ (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3)))
+ (-5 *1 (-1040 *4 *5 *6 *3)) (-4 *3 (-629 *4 *5 *6)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-874 *4)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852))
- (-4 *4 (-973)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1087)) (-4 *5 (-564 (-823 (-523))))
- (-4 *5 (-817 (-523)))
- (-4 *5 (-13 (-786) (-964 (-523)) (-427) (-585 (-523))))
- (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
- (-5 *1 (-526 *5 *3)) (-4 *3 (-575))
- (-4 *3 (-13 (-27) (-1109) (-406 *5)))))
- ((*1 *2 *2 *3 *4 *4)
- (|partial| -12 (-5 *3 (-1087)) (-5 *4 (-779 *2)) (-4 *2 (-1051))
- (-4 *2 (-13 (-27) (-1109) (-406 *5)))
- (-4 *5 (-564 (-823 (-523)))) (-4 *5 (-817 (-523)))
- (-4 *5 (-13 (-786) (-964 (-523)) (-427) (-585 (-523))))
- (-5 *1 (-526 *5 *2)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1169 *4)) (-5 *3 (-1034)) (-4 *4 (-325))
- (-5 *1 (-493 *4)))))
-(((*1 *2)
- (-12 (-4 *3 (-515)) (-5 *2 (-589 *4)) (-5 *1 (-42 *3 *4))
- (-4 *4 (-393 *3)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-874 *4)) (-4 *4 (-973)) (-5 *1 (-1076 *3 *4))
- (-14 *3 (-852)))))
+ (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-51)) (-5 *1 (-50 *2)) (-4 *2 (-1123))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1147 (-525))))))
+(((*1 *2)
+ (-12 (-14 *4 *2) (-4 *5 (-1125)) (-5 *2 (-712))
+ (-5 *1 (-217 *3 *4 *5)) (-4 *3 (-218 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-301 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-126))
+ (-5 *2 (-712))))
+ ((*1 *2)
+ (-12 (-4 *4 (-341)) (-5 *2 (-712)) (-5 *1 (-306 *3 *4))
+ (-4 *3 (-307 *4))))
+ ((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-339 *3)) (-4 *3 (-1018))))
+ ((*1 *2) (-12 (-4 *1 (-346)) (-5 *2 (-712))))
+ ((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-364 *3)) (-4 *3 (-1018))))
+ ((*1 *2)
+ (-12 (-4 *4 (-1018)) (-5 *2 (-712)) (-5 *1 (-402 *3 *4))
+ (-4 *3 (-403 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-712)) (-5 *1 (-594 *3 *4 *5)) (-4 *3 (-1018))
+ (-4 *4 (-23)) (-14 *5 *4)))
+ ((*1 *2)
+ (-12 (-4 *4 (-160)) (-4 *5 (-1147 *4)) (-5 *2 (-712))
+ (-5 *1 (-665 *3 *4 *5)) (-4 *3 (-666 *4 *5))))
+ ((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-760 *3)) (-4 *3 (-788))))
+ ((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-936))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-786) (-341))) (-5 *1 (-985 *2 *3))
+ (-4 *3 (-1147 *2)))))
+(((*1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))))
+(((*1 *1 *1) (-12 (-4 *1 (-403 *2)) (-4 *2 (-1018)) (-4 *2 (-346)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))))
+(((*1 *2 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-429)) (-4 *4 (-788)) (-4 *5 (-734)) (-5 *2 (-108))
+ (-5 *1 (-918 *3 *4 *5 *6)) (-4 *6 (-882 *3 *5 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1054 *3 *4)) (-4 *3 (-13 (-1018) (-33)))
+ (-4 *4 (-13 (-1018) (-33))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1171 (-1171 (-525)))) (-5 *3 (-854)) (-5 *1 (-443)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1129)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4)))
+ (-5 *2 (-1171 *1)) (-4 *1 (-320 *3 *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796))))
+ ((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-795))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1022)) (-5 *1 (-897))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-920))))
+ ((*1 *2 *1) (-12 (-4 *1 (-940 *2)) (-4 *2 (-1125))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-1018) (-33))) (-5 *1 (-1054 *2 *3))
+ (-4 *3 (-13 (-1018) (-33))))))
+(((*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1072)) (-5 *1 (-652)))))
+(((*1 *1 *2) (-12 (-4 *1 (-37 *2)) (-4 *2 (-160))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1171 *3)) (-4 *3 (-341)) (-14 *6 (-1171 (-631 *3)))
+ (-5 *1 (-43 *3 *4 *5 *6)) (-14 *4 (-854)) (-14 *5 (-591 (-1089)))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1041 (-525) (-564 (-47)))) (-5 *1 (-47))))
+ ((*1 *2 *3) (-12 (-5 *2 (-51)) (-5 *1 (-50 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1171 (-317 (-3036 'JINT 'X 'ELAM) (-3036) (-640))))
+ (-5 *1 (-59 *3)) (-14 *3 (-1089))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1171 (-317 (-3036) (-3036 'XC) (-640))))
+ (-5 *1 (-61 *3)) (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-883 (-355))) (-5 *1 (-315 *3 *4 *5))
- (-4 *5 (-964 (-355))) (-14 *3 (-589 (-1087)))
- (-14 *4 (-589 (-1087))) (-4 *5 (-363))))
+ (-12 (-5 *2 (-317 (-3036 'X) (-3036) (-640))) (-5 *1 (-62 *3))
+ (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-383 (-883 (-355)))) (-5 *1 (-315 *3 *4 *5))
- (-4 *5 (-964 (-355))) (-14 *3 (-589 (-1087)))
- (-14 *4 (-589 (-1087))) (-4 *5 (-363))))
+ (-12 (-5 *2 (-631 (-317 (-3036) (-3036 'X 'HESS) (-640))))
+ (-5 *1 (-63 *3)) (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-292 (-355))) (-5 *1 (-315 *3 *4 *5))
- (-4 *5 (-964 (-355))) (-14 *3 (-589 (-1087)))
- (-14 *4 (-589 (-1087))) (-4 *5 (-363))))
+ (-12 (-5 *2 (-317 (-3036) (-3036 'XC) (-640))) (-5 *1 (-64 *3))
+ (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-883 (-523))) (-5 *1 (-315 *3 *4 *5))
- (-4 *5 (-964 (-523))) (-14 *3 (-589 (-1087)))
- (-14 *4 (-589 (-1087))) (-4 *5 (-363))))
+ (-12 (-5 *2 (-1171 (-317 (-3036 'X) (-3036 '-2424) (-640))))
+ (-5 *1 (-69 *3)) (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-383 (-883 (-523)))) (-5 *1 (-315 *3 *4 *5))
- (-4 *5 (-964 (-523))) (-14 *3 (-589 (-1087)))
- (-14 *4 (-589 (-1087))) (-4 *5 (-363))))
+ (-12 (-5 *2 (-1171 (-317 (-3036) (-3036 'X) (-640))))
+ (-5 *1 (-72 *3)) (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-292 (-523))) (-5 *1 (-315 *3 *4 *5))
- (-4 *5 (-964 (-523))) (-14 *3 (-589 (-1087)))
- (-14 *4 (-589 (-1087))) (-4 *5 (-363))))
+ (-12 (-5 *2 (-1171 (-317 (-3036 'X 'EPS) (-3036 '-2424) (-640))))
+ (-5 *1 (-73 *3 *4 *5)) (-14 *3 (-1089)) (-14 *4 (-1089))
+ (-14 *5 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1087)) (-5 *1 (-315 *3 *4 *5))
- (-14 *3 (-589 *2)) (-14 *4 (-589 *2)) (-4 *5 (-363))))
+ (-12 (-5 *2 (-1171 (-317 (-3036 'EPS) (-3036 'YA 'YB) (-640))))
+ (-5 *1 (-74 *3 *4 *5)) (-14 *3 (-1089)) (-14 *4 (-1089))
+ (-14 *5 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-292 *5)) (-4 *5 (-363))
- (-5 *1 (-315 *3 *4 *5)) (-14 *3 (-589 (-1087)))
- (-14 *4 (-589 (-1087)))))
+ (-12 (-5 *2 (-317 (-3036) (-3036 'X) (-640))) (-5 *1 (-75 *3))
+ (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-629 (-383 (-883 (-523))))) (-4 *1 (-360))))
+ (-12 (-5 *2 (-317 (-3036) (-3036 'X) (-640))) (-5 *1 (-76 *3))
+ (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-629 (-383 (-883 (-355))))) (-4 *1 (-360))))
+ (-12 (-5 *2 (-1171 (-317 (-3036) (-3036 'XC) (-640))))
+ (-5 *1 (-77 *3)) (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-629 (-883 (-523)))) (-4 *1 (-360))))
+ (-12 (-5 *2 (-1171 (-317 (-3036) (-3036 'X) (-640))))
+ (-5 *1 (-78 *3)) (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-629 (-883 (-355)))) (-4 *1 (-360))))
+ (-12 (-5 *2 (-1171 (-317 (-3036) (-3036 'X) (-640))))
+ (-5 *1 (-79 *3)) (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-629 (-292 (-523)))) (-4 *1 (-360))))
+ (-12 (-5 *2 (-1171 (-317 (-3036 'X '-2424) (-3036) (-640))))
+ (-5 *1 (-80 *3)) (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-629 (-292 (-355)))) (-4 *1 (-360))))
+ (-12 (-5 *2 (-631 (-317 (-3036 'X '-2424) (-3036) (-640))))
+ (-5 *1 (-81 *3)) (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-383 (-883 (-523)))) (-4 *1 (-372))))
+ (-12 (-5 *2 (-631 (-317 (-3036 'X) (-3036) (-640)))) (-5 *1 (-82 *3))
+ (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-383 (-883 (-355)))) (-4 *1 (-372))))
- ((*1 *1 *2) (|partial| -12 (-5 *2 (-883 (-523))) (-4 *1 (-372))))
- ((*1 *1 *2) (|partial| -12 (-5 *2 (-883 (-355))) (-4 *1 (-372))))
- ((*1 *1 *2) (|partial| -12 (-5 *2 (-292 (-523))) (-4 *1 (-372))))
- ((*1 *1 *2) (|partial| -12 (-5 *2 (-292 (-355))) (-4 *1 (-372))))
+ (-12 (-5 *2 (-1171 (-317 (-3036 'X) (-3036) (-640))))
+ (-5 *1 (-83 *3)) (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1169 (-383 (-883 (-523))))) (-4 *1 (-416))))
+ (-12 (-5 *2 (-1171 (-317 (-3036 'X) (-3036 '-2424) (-640))))
+ (-5 *1 (-84 *3)) (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1169 (-383 (-883 (-355))))) (-4 *1 (-416))))
+ (-12 (-5 *2 (-631 (-317 (-3036 'XL 'XR 'ELAM) (-3036) (-640))))
+ (-5 *1 (-85 *3)) (-14 *3 (-1089))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1169 (-883 (-523)))) (-4 *1 (-416))))
+ (-12 (-5 *2 (-317 (-3036 'X) (-3036 '-2424) (-640))) (-5 *1 (-87 *3))
+ (-14 *3 (-1089))))
+ ((*1 *2 *1) (-12 (-5 *2 (-934 2)) (-5 *1 (-103))))
+ ((*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-103))))
+ ((*1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-125))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1169 (-883 (-355)))) (-4 *1 (-416))))
+ (-12 (-5 *2 (-591 (-130 *3 *4 *5))) (-5 *1 (-130 *3 *4 *5))
+ (-14 *3 (-525)) (-14 *4 (-712)) (-4 *5 (-160))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1169 (-292 (-523)))) (-4 *1 (-416))))
+ (-12 (-5 *2 (-591 *5)) (-4 *5 (-160)) (-5 *1 (-130 *3 *4 *5))
+ (-14 *3 (-525)) (-14 *4 (-712))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1169 (-292 (-355)))) (-4 *1 (-416))))
+ (-12 (-5 *2 (-1056 *4 *5)) (-14 *4 (-712)) (-4 *5 (-160))
+ (-5 *1 (-130 *3 *4 *5)) (-14 *3 (-525))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-220 *4 *5)) (-14 *4 (-712)) (-4 *5 (-160))
+ (-5 *1 (-130 *3 *4 *5)) (-14 *3 (-525))))
((*1 *2 *3)
- (|partial| -12 (-4 *4 (-325)) (-4 *5 (-305 *4)) (-4 *6 (-1145 *5))
- (-5 *2 (-1083 (-1083 *4))) (-5 *1 (-716 *4 *5 *6 *3 *7))
- (-4 *3 (-1145 *6)) (-14 *7 (-852))))
+ (-12 (-5 *3 (-1171 (-631 *4))) (-4 *4 (-160))
+ (-5 *2 (-1171 (-631 (-385 (-885 *4))))) (-5 *1 (-171 *4))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5))
- (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))
- (-4 *1 (-905 *3 *4 *5 *6))))
- ((*1 *2 *1) (|partial| -12 (-4 *1 (-964 *2)) (-4 *2 (-1123))))
+ (-12 (-5 *2 (-591 *3))
+ (-4 *3
+ (-13 (-788)
+ (-10 -8 (-15 -3164 ((-1072) $ (-1089))) (-15 -3551 ((-1176) $))
+ (-15 -3600 ((-1176) $)))))
+ (-5 *1 (-195 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-934 10)) (-5 *1 (-198))))
+ ((*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-198))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-225 *3)) (-4 *3 (-788))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-788)) (-5 *1 (-225 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1011 (-294 *4)))
+ (-4 *4 (-13 (-788) (-517) (-566 (-357)))) (-5 *2 (-1011 (-357)))
+ (-5 *1 (-237 *4))))
+ ((*1 *1 *2) (-12 (-4 *1 (-245 *2)) (-4 *2 (-788))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-254))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-1147 *3)) (-5 *1 (-268 *3 *2 *4 *5 *6 *7))
+ (-4 *3 (-160)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4))
+ (-14 *6 (-1 (-3 *4 "failed") *4 *4))
+ (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4))))
((*1 *1 *2)
- (|partial| -3255
- (-12 (-5 *2 (-883 *3))
- (-12 (-2575 (-4 *3 (-37 (-383 (-523)))))
- (-2575 (-4 *3 (-37 (-523)))) (-4 *5 (-564 (-1087))))
- (-4 *3 (-973)) (-4 *1 (-987 *3 *4 *5)) (-4 *4 (-732))
- (-4 *5 (-786)))
- (-12 (-5 *2 (-883 *3))
- (-12 (-2575 (-4 *3 (-508))) (-2575 (-4 *3 (-37 (-383 (-523)))))
- (-4 *3 (-37 (-523))) (-4 *5 (-564 (-1087))))
- (-4 *3 (-973)) (-4 *1 (-987 *3 *4 *5)) (-4 *4 (-732))
- (-4 *5 (-786)))
- (-12 (-5 *2 (-883 *3))
- (-12 (-2575 (-4 *3 (-921 (-523)))) (-4 *3 (-37 (-383 (-523))))
- (-4 *5 (-564 (-1087))))
- (-4 *3 (-973)) (-4 *1 (-987 *3 *4 *5)) (-4 *4 (-732))
- (-4 *5 (-786)))))
+ (-12 (-5 *2 (-1156 *4 *5 *6)) (-4 *4 (-13 (-27) (-1111) (-408 *3)))
+ (-14 *5 (-1089)) (-14 *6 *4)
+ (-4 *3 (-13 (-788) (-966 (-525)) (-587 (-525)) (-429)))
+ (-5 *1 (-291 *3 *4 *5 *6))))
+ ((*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-308))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-294 *5)) (-5 *1 (-317 *3 *4 *5))
+ (-14 *3 (-591 (-1089))) (-14 *4 (-591 (-1089))) (-4 *5 (-365))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-327)) (-4 *2 (-307 *4)) (-5 *1 (-325 *3 *4 *2))
+ (-4 *3 (-307 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-327)) (-4 *2 (-307 *4)) (-5 *1 (-325 *2 *4 *3))
+ (-4 *3 (-307 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-352 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160))
+ (-5 *2 (-1193 *3 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-352 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160))
+ (-5 *2 (-1184 *3 *4))))
+ ((*1 *1 *2) (-12 (-4 *1 (-352 *2 *3)) (-4 *2 (-788)) (-4 *3 (-160))))
((*1 *1 *2)
- (|partial| -3255
- (-12 (-5 *2 (-883 (-523))) (-4 *1 (-987 *3 *4 *5))
- (-12 (-2575 (-4 *3 (-37 (-383 (-523))))) (-4 *3 (-37 (-523)))
- (-4 *5 (-564 (-1087))))
- (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)))
- (-12 (-5 *2 (-883 (-523))) (-4 *1 (-987 *3 *4 *5))
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *5 (-564 (-1087))))
- (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)))))
+ (-12
+ (-5 *2 (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308)))))
+ (-4 *1 (-361))))
+ ((*1 *1 *2) (-12 (-5 *2 (-308)) (-4 *1 (-361))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 (-308))) (-4 *1 (-361))))
+ ((*1 *1 *2) (-12 (-5 *2 (-631 (-640))) (-4 *1 (-361))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2 (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308)))))
+ (-4 *1 (-362))))
+ ((*1 *1 *2) (-12 (-5 *2 (-308)) (-4 *1 (-362))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 (-308))) (-4 *1 (-362))))
+ ((*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-1072))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1072)) (-4 *1 (-367))))
+ ((*1 *2 *3) (-12 (-5 *2 (-372)) (-5 *1 (-371 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *2) (-12 (-5 *2 (-796)) (-5 *1 (-372))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2 (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308)))))
+ (-4 *1 (-374))))
+ ((*1 *1 *2) (-12 (-5 *2 (-308)) (-4 *1 (-374))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 (-308))) (-4 *1 (-374))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-273 (-294 (-157 (-357))))) (-5 *1 (-376 *3 *4 *5 *6))
+ (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1093))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-273 (-294 (-357)))) (-5 *1 (-376 *3 *4 *5 *6))
+ (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1093))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-273 (-294 (-525)))) (-5 *1 (-376 *3 *4 *5 *6))
+ (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1093))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-294 (-157 (-357)))) (-5 *1 (-376 *3 *4 *5 *6))
+ (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1093))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-294 (-357))) (-5 *1 (-376 *3 *4 *5 *6))
+ (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1093))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-294 (-525))) (-5 *1 (-376 *3 *4 *5 *6))
+ (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1093))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-273 (-294 (-635)))) (-5 *1 (-376 *3 *4 *5 *6))
+ (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1093))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-273 (-294 (-640)))) (-5 *1 (-376 *3 *4 *5 *6))
+ (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1093))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-273 (-294 (-642)))) (-5 *1 (-376 *3 *4 *5 *6))
+ (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1093))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-294 (-635))) (-5 *1 (-376 *3 *4 *5 *6))
+ (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1093))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-294 (-640))) (-5 *1 (-376 *3 *4 *5 *6))
+ (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1093))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-294 (-642))) (-5 *1 (-376 *3 *4 *5 *6))
+ (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1093))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2 (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308)))))
+ (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089))
+ (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1093))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-308))) (-5 *1 (-376 *3 *4 *5 *6))
+ (-14 *3 (-1089)) (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1093))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-308)) (-5 *1 (-376 *3 *4 *5 *6)) (-14 *3 (-1089))
+ (-14 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1093))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-309 *4)) (-4 *4 (-13 (-788) (-21)))
+ (-5 *1 (-405 *3 *4)) (-4 *3 (-13 (-160) (-37 (-385 (-525)))))))
+ ((*1 *1 *2)
+ (-12 (-5 *1 (-405 *2 *3)) (-4 *2 (-13 (-160) (-37 (-385 (-525)))))
+ (-4 *3 (-13 (-788) (-21)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-385 (-885 (-385 *3)))) (-4 *3 (-517)) (-4 *3 (-788))
+ (-4 *1 (-408 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-885 (-385 *3))) (-4 *3 (-517)) (-4 *3 (-788))
+ (-4 *1 (-408 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-385 *3)) (-4 *3 (-517)) (-4 *3 (-788))
+ (-4 *1 (-408 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1041 *3 (-564 *1))) (-4 *3 (-975)) (-4 *3 (-788))
+ (-4 *1 (-408 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1022)) (-5 *1 (-412))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-412))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-412))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-412))))
+ ((*1 *1 *2) (-12 (-5 *2 (-412)) (-5 *1 (-415))))
+ ((*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-415))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2 (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308)))))
+ (-4 *1 (-417))))
+ ((*1 *1 *2) (-12 (-5 *2 (-308)) (-4 *1 (-417))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 (-308))) (-4 *1 (-417))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1171 (-640))) (-4 *1 (-417))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2 (-2 (|:| |localSymbols| (-1093)) (|:| -3380 (-591 (-308)))))
+ (-4 *1 (-418))))
+ ((*1 *1 *2) (-12 (-5 *2 (-308)) (-4 *1 (-418))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 (-308))) (-4 *1 (-418))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1171 (-385 (-885 *3)))) (-4 *3 (-160))
+ (-14 *6 (-1171 (-631 *3))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-14 *4 (-854)) (-14 *5 (-591 (-1089)))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 (-591 (-876 (-205))))) (-5 *1 (-445))))
+ ((*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-445))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1156 *3 *4 *5)) (-4 *3 (-975)) (-14 *4 (-1089))
+ (-14 *5 *3) (-5 *1 (-451 *3 *4 *5))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-451 *3 *4 *5))
+ (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *2 *1) (-12 (-5 *2 (-934 16)) (-5 *1 (-462))))
+ ((*1 *2 *1) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-462))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1041 (-525) (-564 (-468)))) (-5 *1 (-468))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-475))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-341))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-477 *3 *4 *5 *6))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-160)) (-5 *1 (-559 *3 *2)) (-4 *2 (-686 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-565 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *2) (-12 (-4 *1 (-569 *2)) (-4 *2 (-975))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1189 *3 *4)) (-5 *1 (-575 *3 *4 *5)) (-4 *3 (-788))
+ (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-14 *5 (-854))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1184 *3 *4)) (-5 *1 (-575 *3 *4 *5)) (-4 *3 (-788))
+ (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-14 *5 (-854))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-160)) (-5 *1 (-583 *3 *2)) (-4 *2 (-686 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-620 *3)) (-5 *1 (-616 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1) (-12 (-5 *2 (-760 *3)) (-5 *1 (-616 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-890 (-890 (-890 *3)))) (-5 *1 (-619 *3))
+ (-4 *3 (-1018))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-890 (-890 (-890 *3)))) (-4 *3 (-1018))
+ (-5 *1 (-619 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-760 *3)) (-5 *1 (-620 *3)) (-4 *3 (-788))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-624 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-975)) (-4 *1 (-629 *3 *4 *2)) (-4 *4 (-351 *3))
+ (-4 *2 (-351 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-157 (-357))) (-5 *1 (-635))))
+ ((*1 *1 *2) (-12 (-5 *2 (-157 (-642))) (-5 *1 (-635))))
+ ((*1 *1 *2) (-12 (-5 *2 (-157 (-640))) (-5 *1 (-635))))
+ ((*1 *1 *2) (-12 (-5 *2 (-157 (-525))) (-5 *1 (-635))))
+ ((*1 *1 *2) (-12 (-5 *2 (-157 (-357))) (-5 *1 (-635))))
+ ((*1 *1 *2) (-12 (-5 *2 (-642)) (-5 *1 (-640))))
+ ((*1 *2 *1) (-12 (-5 *2 (-357)) (-5 *1 (-640))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-294 (-525))) (-5 *2 (-294 (-642))) (-5 *1 (-642))))
+ ((*1 *1 *2) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1018))))
+ ((*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1072)) (-5 *1 (-652))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-160)) (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *3 (-23))
+ (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-975)) (-5 *1 (-654 *3 *2)) (-4 *2 (-1147 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| -2226 *3) (|:| -2008 *4)))
+ (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-788)) (-4 *4 (-1018))
+ (-14 *5 (-1 (-108) *2 *2))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-2 (|:| -2226 *3) (|:| -2008 *4))) (-4 *3 (-788))
+ (-4 *4 (-1018)) (-5 *1 (-655 *3 *4 *5)) (-14 *5 (-1 (-108) *2 *2))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-160)) (-5 *1 (-657 *2 *3 *4 *5 *6)) (-4 *3 (-23))
+ (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-2 (|:| -3482 *3) (|:| -2548 *4)))) (-4 *3 (-975))
+ (-4 *4 (-668)) (-5 *1 (-677 *3 *4))))
+ ((*1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-705))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-883 (-383 (-523)))) (-4 *1 (-987 *3 *4 *5))
- (-4 *3 (-37 (-383 (-523)))) (-4 *5 (-564 (-1087))) (-4 *3 (-973))
- (-4 *4 (-732)) (-4 *5 (-786)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973))))
- ((*1 *1 *1) (-12 (-5 *1 (-1190 *2 *3)) (-4 *2 (-973)) (-4 *3 (-782)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-339)) (-5 *1 (-262 *3 *2)) (-4 *2 (-1160 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-396 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1109) (-406 *3)))
- (-14 *4 (-1087)) (-14 *5 *2)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-4 *2 (-13 (-27) (-1109) (-406 *3) (-10 -8 (-15 -3976 ($ *4)))))
- (-4 *4 (-784))
- (-4 *5
- (-13 (-1147 *2 *4) (-339) (-1109)
- (-10 -8 (-15 -4024 ($ $)) (-15 -2669 ($ $)))))
- (-5 *1 (-398 *3 *2 *4 *5 *6 *7)) (-4 *6 (-912 *5)) (-14 *7 (-1087)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1160 *4))
- (-4 *4 (-37 (-383 (-523))))
- (-5 *2 (-1 (-1068 *4) (-1068 *4) (-1068 *4))) (-5 *1 (-1162 *4 *5)))))
-(((*1 *2 *1 *1)
(-12
(-5 *2
- (-2 (|:| |lm| (-362 *3)) (|:| |mm| (-362 *3)) (|:| |rm| (-362 *3))))
- (-5 *1 (-362 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1 *1)
+ (-3
+ (|:| |nia|
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (|:| |mdnia|
+ (-2 (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-591 (-1013 (-781 (-205)))))
+ (|:| |abserr| (-205)) (|:| |relerr| (-205))))))
+ (-5 *1 (-710))))
+ ((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |lm| (-758 *3)) (|:| |mm| (-758 *3)) (|:| |rm| (-758 *3))))
- (-5 *1 (-758 *3)) (-4 *3 (-786)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-973)) (-4 *2 (-627 *4 *5 *6))
- (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1145 *4)) (-4 *5 (-349 *4))
- (-4 *6 (-349 *4)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-1145 *3)) (-4 *3 (-973)))))
-(((*1 *2 *3) (-12 (-5 *3 (-761)) (-5 *2 (-51)) (-5 *1 (-768)))))
-(((*1 *1) (-5 *1 (-130))) ((*1 *1 *1) (-5 *1 (-133)))
- ((*1 *1 *1) (-4 *1 (-1056))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-589 (-823 *3))) (-5 *1 (-823 *3))
- (-4 *3 (-1016)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 (-852))) (-5 *1 (-1017 *3 *4)) (-14 *3 (-852))
- (-14 *4 (-852)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-894 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2210 *4)))
- (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-589 *7)) (-5 *5 (-589 (-589 *8))) (-4 *7 (-786))
- (-4 *8 (-284)) (-4 *6 (-732)) (-4 *9 (-880 *8 *6 *7))
+ (-2 (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (-5 *1 (-710))))
+ ((*1 *1 *2)
+ (-12
(-5 *2
- (-2 (|:| |unitPart| *9)
- (|:| |suPart|
- (-589 (-2 (|:| -3573 (-1083 *9)) (|:| -3262 (-523)))))))
- (-5 *1 (-682 *6 *7 *8 *9)) (-5 *3 (-1083 *9)))))
-(((*1 *2 *2)
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (-5 *1 (-710))))
+ ((*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-710))))
+ ((*1 *2 *3) (-12 (-5 *2 (-715)) (-5 *1 (-714 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4)
- (|:| |xpnt| (-523))))
- (-4 *4 (-13 (-1145 *3) (-515) (-10 -8 (-15 -2056 ($ $ $)))))
- (-4 *3 (-515)) (-5 *1 (-1148 *3 *4)))))
-(((*1 *1) (-5 *1 (-133))))
+ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205))
+ (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205)))
+ (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205)))
+ (|:| |abserr| (-205)) (|:| |relerr| (-205))))
+ (-5 *1 (-749))))
+ ((*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-749))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-833 *3)) (-5 *1 (-758 *3 *2 *4)) (-4 *3 (-1018))
+ (-14 *4 *3)))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-1018)) (-14 *4 *3) (-5 *1 (-758 *3 *2 *4))
+ (-4 *2 (-833 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-765))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-3
+ (|:| |noa|
+ (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205)))
+ (|:| |lb| (-591 (-781 (-205))))
+ (|:| |cf| (-591 (-294 (-205))))
+ (|:| |ub| (-591 (-781 (-205))))))
+ (|:| |lsa|
+ (-2 (|:| |lfn| (-591 (-294 (-205))))
+ (|:| -3506 (-591 (-205)))))))
+ (-5 *1 (-779))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))
+ (-5 *1 (-779))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205)))
+ (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205))))
+ (|:| |ub| (-591 (-781 (-205))))))
+ (-5 *1 (-779))))
+ ((*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-779))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1167 *3)) (-14 *3 (-1089)) (-5 *1 (-793 *3 *4 *5 *6))
+ (-4 *4 (-975)) (-14 *5 (-94 *4)) (-14 *6 (-1 *4 *4))))
+ ((*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-795))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-885 *3)) (-4 *3 (-975)) (-5 *1 (-799 *3 *4 *5 *6))
+ (-14 *4 (-591 (-1089))) (-14 *5 (-591 (-712))) (-14 *6 (-712))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-885 *3)) (-5 *1 (-799 *3 *4 *5 *6)) (-4 *3 (-975))
+ (-14 *4 (-591 (-1089))) (-14 *5 (-591 (-712))) (-14 *6 (-712))))
+ ((*1 *1 *2) (-12 (-5 *2 (-146)) (-5 *1 (-807))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-885 (-47))) (-5 *2 (-294 (-525))) (-5 *1 (-808))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-385 (-885 (-47)))) (-5 *2 (-294 (-525)))
+ (-5 *1 (-808))))
+ ((*1 *1 *2) (-12 (-5 *1 (-826 *2)) (-4 *2 (-788))))
+ ((*1 *2 *1) (-12 (-5 *2 (-760 *3)) (-5 *1 (-826 *3)) (-4 *3 (-788))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |pde| (-591 (-294 (-205))))
+ (|:| |constraints|
+ (-591
+ (-2 (|:| |start| (-205)) (|:| |finish| (-205))
+ (|:| |grid| (-712)) (|:| |boundaryType| (-525))
+ (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205))))))
+ (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072))
+ (|:| |tol| (-205))))
+ (-5 *1 (-831))))
+ ((*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-831))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1112 *3)) (-5 *1 (-834 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-838 *3))) (-4 *3 (-1018)) (-5 *1 (-837 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-838 *3))) (-5 *1 (-837 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-838 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-591 *3))) (-4 *3 (-1018)) (-5 *1 (-838 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-385 (-396 *3))) (-4 *3 (-286)) (-5 *1 (-847 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-385 *3)) (-5 *1 (-847 *3)) (-4 *3 (-286))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-454)) (-5 *2 (-294 *4)) (-5 *1 (-852 *4))
+ (-4 *4 (-13 (-788) (-517)))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-898 *3)) (-4 *3 (-899))))
+ ((*1 *1 *2) (-12 (-5 *1 (-898 *2)) (-4 *2 (-899))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-902))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-385 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1176)) (-5 *1 (-962 *3)) (-4 *3 (-1125))))
+ ((*1 *2 *3) (-12 (-5 *3 (-290)) (-5 *1 (-962 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-963 *3 *4 *5 *2 *6)) (-4 *2 (-882 *3 *4 *5))
+ (-14 *6 (-591 *2))))
+ ((*1 *1 *2) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1125))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-971 *3)) (-4 *3 (-517))))
+ ((*1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-975))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-631 *5)) (-5 *1 (-979 *3 *4 *5)) (-14 *3 (-712))
+ (-14 *4 (-712)) (-4 *5 (-975))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-975)) (-4 *4 (-788)) (-5 *1 (-1042 *3 *4 *2))
+ (-4 *2 (-882 *3 (-497 *4) *4))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-975)) (-4 *2 (-788)) (-5 *1 (-1042 *3 *2 *4))
+ (-4 *4 (-882 *3 (-497 *2) *2))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-796))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-631 *4)) (-5 *1 (-1056 *3 *4)) (-14 *3 (-712))
+ (-4 *4 (-975))))
+ ((*1 *1 *2) (-12 (-5 *2 (-135)) (-4 *1 (-1058))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-5 *1 (-1070 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1070 *3)) (-5 *1 (-1074 *3)) (-4 *3 (-975))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1080 *3 *4 *5))
+ (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1086 *3 *4 *5))
+ (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1087 *3 *4 *5))
+ (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1144 *4 *3)) (-4 *3 (-975)) (-14 *4 (-1089))
+ (-14 *5 *3) (-5 *1 (-1087 *3 *4 *5))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-1088))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1089))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1099 (-1089) (-415))) (-5 *1 (-1093))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-1094))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1094))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-1094))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-1094))))
+ ((*1 *2 *1) (-12 (-5 *2 (-205)) (-5 *1 (-1094))))
+ ((*1 *1 *2) (-12 (-5 *2 (-205)) (-5 *1 (-1094))))
+ ((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-1094))))
+ ((*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-1094))))
+ ((*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-1098 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1106)) (-5 *1 (-1105 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *2) (-12 (-5 *2 (-796)) (-5 *1 (-1106))))
+ ((*1 *1 *2) (-12 (-5 *2 (-885 *3)) (-4 *3 (-975)) (-5 *1 (-1120 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-1120 *3)) (-4 *3 (-975))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-890 *3)) (-4 *3 (-1125)) (-5 *1 (-1123 *3))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-975)) (-4 *1 (-1133 *3 *2)) (-4 *2 (-1162 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1135 *3 *4 *5))
+ (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1013 *3)) (-4 *3 (-1125)) (-5 *1 (-1138 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1167 *3)) (-14 *3 (-1089)) (-5 *1 (-1144 *3 *4))
+ (-4 *4 (-975))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-975)) (-4 *1 (-1154 *3 *2)) (-4 *2 (-1131 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1156 *3 *4 *5))
+ (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1167 *4)) (-14 *4 (-1089)) (-5 *1 (-1163 *3 *4 *5))
+ (-4 *3 (-975)) (-14 *5 *3)))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1144 *4 *3)) (-4 *3 (-975)) (-14 *4 (-1089))
+ (-14 *5 *3) (-5 *1 (-1163 *3 *4 *5))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-1167 *3)) (-14 *3 *2)))
+ ((*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-1172))))
+ ((*1 *2 *3) (-12 (-5 *3 (-445)) (-5 *2 (-1172)) (-5 *1 (-1175))))
+ ((*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-1176))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-975)) (-4 *4 (-788)) (-4 *5 (-734)) (-14 *6 (-591 *4))
+ (-5 *1 (-1181 *3 *4 *5 *2 *6 *7 *8)) (-4 *2 (-882 *3 *5 *4))
+ (-14 *7 (-591 (-712))) (-14 *8 (-712))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-882 *3 *5 *4)) (-5 *1 (-1181 *3 *4 *5 *2 *6 *7 *8))
+ (-4 *3 (-975)) (-4 *4 (-788)) (-4 *5 (-734)) (-14 *6 (-591 *4))
+ (-14 *7 (-591 (-712))) (-14 *8 (-712))))
+ ((*1 *1 *2) (-12 (-4 *1 (-1183 *2)) (-4 *2 (-975))))
+ ((*1 *1 *2) (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1193 *3 *4)) (-5 *1 (-1189 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-160))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1184 *3 *4)) (-5 *1 (-1189 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-160))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-609 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160))
+ (-5 *1 (-1189 *3 *4))))
+ ((*1 *1 *2) (-12 (-5 *1 (-1192 *3 *2)) (-4 *3 (-975)) (-4 *2 (-784)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-712)) (-4 *4 (-517)) (-5 *1 (-901 *4 *2))
+ (-4 *2 (-1147 *4)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-1 (-108) *8))) (-4 *8 (-987 *5 *6 *7))
- (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786))
- (-5 *2 (-2 (|:| |goodPols| (-589 *8)) (|:| |badPols| (-589 *8))))
- (-5 *1 (-906 *5 *6 *7 *8)) (-5 *4 (-589 *8)))))
-(((*1 *2 *2) (-12 (-5 *2 (-292 (-203))) (-5 *1 (-190)))))
-(((*1 *2 *2) (-12 (-5 *2 (-852)) (|has| *1 (-6 -4239)) (-4 *1 (-380))))
- ((*1 *2) (-12 (-4 *1 (-380)) (-5 *2 (-852))))
- ((*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-638))))
- ((*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-638)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814)))))
+ (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-1089))
+ (-4 *5 (-13 (-286) (-788) (-138))) (-5 *2 (-591 (-294 *5)))
+ (-5 *1 (-1045 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-385 (-885 *5)))) (-5 *4 (-591 (-1089)))
+ (-4 *5 (-13 (-286) (-788) (-138))) (-5 *2 (-591 (-591 (-294 *5))))
+ (-5 *1 (-1045 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *1) (-12 (-4 *1 (-345 *2)) (-4 *2 (-160)))))
+(((*1 *1 *2) (-12 (-5 *2 (-807)) (-5 *1 (-242))))
+ ((*1 *1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-242)))))
+(((*1 *2 *1) (-12 (-4 *1 (-346)) (-5 *2 (-854))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *4)) (-4 *4 (-327)) (-5 *2 (-854))
+ (-5 *1 (-495 *4)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-429)) (-4 *3 (-788)) (-4 *3 (-966 (-525)))
+ (-4 *3 (-517)) (-5 *1 (-40 *3 *2)) (-4 *2 (-408 *3))
+ (-4 *2
+ (-13 (-341) (-281)
+ (-10 -8 (-15 -1738 ((-1041 *3 (-564 $)) $))
+ (-15 -1754 ((-1041 *3 (-564 $)) $))
+ (-15 -3022 ($ (-1041 *3 (-564 $))))))))))
+(((*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-986))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-986)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1068 (-383 *3))) (-5 *1 (-159 *3)) (-4 *3 (-284)))))
-(((*1 *2 *3 *4 *5 *4 *4 *4)
- (-12 (-4 *6 (-786)) (-5 *3 (-589 *6)) (-5 *5 (-589 *3))
- (-5 *2
- (-2 (|:| |f1| *3) (|:| |f2| (-589 *5)) (|:| |f3| *5)
- (|:| |f4| (-589 *5))))
- (-5 *1 (-1095 *6)) (-5 *4 (-589 *5)))))
+ (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-591 (-876 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-876 *3))) (-4 *3 (-975)) (-4 *1 (-1050 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 (-591 *3))) (-4 *1 (-1050 *3)) (-4 *3 (-975))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 (-876 *3))) (-4 *1 (-1050 *3)) (-4 *3 (-975)))))
(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-306)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-907 *3 *4 *2 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *2 (-788)) (-4 *5 (-989 *3 *4 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-97)) (-5 *2 (-108))))
+ ((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-964)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-593 *5)) (-4 *5 (-975))
+ (-5 *1 (-52 *5 *2 *3)) (-4 *3 (-790 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-631 *3)) (-4 *1 (-395 *3)) (-4 *3 (-160))))
+ ((*1 *2 *1 *2 *2) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975))))
+ ((*1 *2 *3 *2 *2 *4 *5)
+ (-12 (-5 *4 (-94 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-975))
+ (-5 *1 (-791 *2 *3)) (-4 *3 (-790 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1036)) (-5 *1 (-105))))
+ ((*1 *2 *1) (-12 (-4 *1 (-127)) (-5 *2 (-712))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-5 *2 (-525)) (-4 *1 (-351 *3)) (-4 *3 (-1125))
+ (-4 *3 (-1018))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-351 *3)) (-4 *3 (-1125)) (-4 *3 (-1018))
+ (-5 *2 (-525))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-108) *4)) (-4 *1 (-351 *4)) (-4 *4 (-1125))
+ (-5 *2 (-525))))
+ ((*1 *2 *3 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-525)) (-5 *3 (-132))))
+ ((*1 *2 *1 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-525)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-631 (-385 (-885 (-525)))))
+ (-5 *2
+ (-591
+ (-2 (|:| |radval| (-294 (-525))) (|:| |radmult| (-525))
+ (|:| |radvect| (-591 (-631 (-294 (-525))))))))
+ (-5 *1 (-960)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1070 (-525))) (-5 *1 (-1074 *4)) (-4 *4 (-975))
+ (-5 *3 (-525)))))
+(((*1 *2 *1) (-12 (-4 *1 (-887)) (-5 *2 (-591 (-591 (-876 (-205)))))))
+ ((*1 *2 *1) (-12 (-4 *1 (-905)) (-5 *2 (-591 (-591 (-876 (-205))))))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 (-357))) (-5 *1 (-242))))
+ ((*1 *1)
+ (|partial| -12 (-4 *1 (-345 *2)) (-4 *2 (-517)) (-4 *2 (-160))))
+ ((*1 *2 *1) (-12 (-5 *1 (-396 *2)) (-4 *2 (-517)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1145 *6))
- (-4 *6 (-13 (-27) (-406 *5)))
- (-4 *5 (-13 (-786) (-515) (-964 (-523)))) (-4 *8 (-1145 (-383 *7)))
- (-5 *2 (-540 *3)) (-5 *1 (-511 *5 *6 *7 *8 *3))
- (-4 *3 (-318 *6 *7 *8)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-455 *4 *5))) (-14 *4 (-589 (-1087)))
- (-4 *5 (-427))
+ (-12 (-5 *3 (-1 (-108) *8)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-517))
+ (-4 *6 (-734)) (-4 *7 (-788))
+ (-5 *2 (-2 (|:| |goodPols| (-591 *8)) (|:| |badPols| (-591 *8))))
+ (-5 *1 (-908 *5 *6 *7 *8)) (-5 *4 (-591 *8)))))
+(((*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-1072)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-1 (-205) (-205) (-205)))
+ (-5 *4 (-3 (-1 (-205) (-205) (-205) (-205)) "undefined"))
+ (-5 *5 (-1013 (-205))) (-5 *6 (-591 (-242))) (-5 *2 (-1049 (-205)))
+ (-5 *1 (-638)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1022)) (-5 *1 (-259)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-1 (-108) *8))) (-4 *8 (-989 *5 *6 *7))
+ (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-5 *2 (-2 (|:| |goodPols| (-591 *8)) (|:| |badPols| (-591 *8))))
+ (-5 *1 (-908 *5 *6 *7 *8)) (-5 *4 (-591 *8)))))
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-591 *2)) (-4 *2 (-1018)) (-4 *2 (-1125)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1085 *2)) (-4 *2 (-882 (-385 (-885 *6)) *5 *4))
+ (-5 *1 (-674 *5 *4 *6 *2)) (-4 *5 (-734))
+ (-4 *4 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $)))))
+ (-4 *6 (-517)))))
+(((*1 *2 *2)
+ (-12
(-5 *2
- (-2 (|:| |gblist| (-589 (-225 *4 *5)))
- (|:| |gvlist| (-589 (-523)))))
- (-5 *1 (-577 *4 *5)))))
-(((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-442))))
- ((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-442))))
- ((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-858)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-292 (-203))) (-5 *2 (-292 (-383 (-523))))
- (-5 *1 (-282)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1035 *2)) (-4 *2 (-1123)))))
+ (-918 (-385 (-525)) (-798 *3) (-220 *4 (-712))
+ (-227 *3 (-385 (-525)))))
+ (-14 *3 (-591 (-1089))) (-14 *4 (-712)) (-5 *1 (-917 *3 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-281))))
+ ((*1 *1 *1) (-4 *1 (-281))) ((*1 *1 *1) (-5 *1 (-796))))
+(((*1 *2 *2 *3 *4 *4)
+ (-12 (-5 *4 (-525)) (-4 *3 (-160)) (-4 *5 (-351 *3))
+ (-4 *6 (-351 *3)) (-5 *1 (-630 *3 *5 *6 *2))
+ (-4 *2 (-629 *3 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-501)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-327)) (-4 *2 (-975)) (-5 *1 (-654 *2 *3))
+ (-4 *3 (-1147 *2)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-517)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3))
+ (-5 *1 (-1116 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-591 (-385 *7)))
+ (-4 *7 (-1147 *6)) (-5 *3 (-385 *7)) (-4 *6 (-341))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-535 *6 *7)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-2 (|:| |k| (-1089)) (|:| |c| (-1191 *3)))))
+ (-5 *1 (-1191 *3)) (-4 *3 (-975))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-2 (|:| |k| *3) (|:| |c| (-1193 *3 *4)))))
+ (-5 *1 (-1193 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975)))))
+(((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-591 *2)) (-4 *2 (-1018)) (-4 *2 (-1125)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-594 *3 *4 *5)) (-4 *3 (-1018))
+ (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-679 *3))))
+ ((*1 *1 *2) (-12 (-5 *1 (-679 *2)) (-4 *2 (-1018))))
+ ((*1 *1) (-12 (-5 *1 (-679 *2)) (-4 *2 (-1018)))))
+(((*1 *2) (-12 (-4 *2 (-160)) (-5 *1 (-153 *3 *2)) (-4 *3 (-154 *2))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-348 *2 *4)) (-4 *4 (-1147 *2))
+ (-4 *2 (-160))))
+ ((*1 *2)
+ (-12 (-4 *4 (-1147 *2)) (-4 *2 (-160)) (-5 *1 (-386 *3 *2 *4))
+ (-4 *3 (-387 *2 *4))))
+ ((*1 *2) (-12 (-4 *1 (-387 *2 *3)) (-4 *3 (-1147 *2)) (-4 *2 (-160))))
+ ((*1 *2)
+ (-12 (-4 *3 (-1147 *2)) (-5 *2 (-525)) (-5 *1 (-709 *3 *4))
+ (-4 *4 (-387 *2 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-882 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *2 (-788)) (-4 *3 (-160))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-517)) (-5 *1 (-901 *2 *3)) (-4 *3 (-1147 *2))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1147 *2)) (-4 *2 (-975)) (-4 *2 (-160)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-539)))))
(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1070)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-1174))
- (-5 *1 (-993 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7))))
+ (-12 (-5 *3 (-1072)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-1176))
+ (-5 *1 (-995 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7))))
((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1070)) (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-1174))
- (-5 *1 (-1024 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *2) (|partial| -12 (-5 *2 (-292 (-203))) (-5 *1 (-244)))))
-(((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-934))))
- ((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-934)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-905 *4 *5 *3 *6)) (-4 *4 (-973)) (-4 *5 (-732))
- (-4 *3 (-786)) (-4 *6 (-987 *4 *5 *3)) (-5 *2 (-108)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-589 *6)) (-4 *1 (-880 *4 *5 *6)) (-4 *4 (-973))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-710))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-880 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *2 (-710)))))
+ (-12 (-5 *3 (-1072)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-1176))
+ (-5 *1 (-1026 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796))))
+ ((*1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-4 *1 (-1016 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-589 (-240))) (-5 *4 (-1087))
- (-5 *1 (-239 *2)) (-4 *2 (-1123))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-589 (-240))) (-5 *4 (-1087)) (-5 *2 (-51))
- (-5 *1 (-240)))))
-(((*1 *2 *1) (-12 (-4 *1 (-343 *2)) (-4 *2 (-158)))))
+ (-12 (-5 *3 (-591 *2)) (-5 *4 (-1 (-108) *2 *2)) (-5 *1 (-1126 *2))
+ (-4 *2 (-1018))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-1018)) (-4 *2 (-788))
+ (-5 *1 (-1126 *2)))))
+(((*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3)
+ (-12 (-5 *5 (-631 (-205))) (-5 *6 (-631 (-525))) (-5 *3 (-525))
+ (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-694)))))
+(((*1 *2)
+ (-12 (-4 *3 (-517)) (-5 *2 (-591 *4)) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-395 *3)))))
+(((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7)
+ (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205)))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-65 DOT))))
+ (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-66 IMAGE)))) (-5 *4 (-205))
+ (-5 *2 (-964)) (-5 *1 (-697))))
+ ((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8)
+ (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205)))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-65 DOT))))
+ (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-66 IMAGE)))) (-5 *8 (-366))
+ (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-697)))))
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-591 *2)) (-4 *2 (-1018)) (-4 *2 (-1125)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1036)) (-5 *1 (-308)))))
+(((*1 *1 *1) (-12 (-4 *1 (-408 *2)) (-4 *2 (-788)) (-4 *2 (-517))))
+ ((*1 *1 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)))))
+(((*1 *2 *1) (-12 (-4 *1 (-233 *3)) (-4 *3 (-1125)) (-5 *2 (-712))))
+ ((*1 *2 *1) (-12 (-4 *1 (-281)) (-5 *2 (-712))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-975))
+ (-4 *2 (-13 (-382) (-966 *4) (-341) (-1111) (-263)))
+ (-5 *1 (-420 *4 *3 *2)) (-4 *3 (-1147 *4))))
+ ((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-564 *3)) (-4 *3 (-788))))
+ ((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796))))
+ ((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-796)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-477 *3 *4 *5 *2)) (-4 *2 (-882 *3 *4 *5))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-341)) (-4 *3 (-734)) (-4 *4 (-788))
+ (-5 *1 (-477 *2 *3 *4 *5)) (-4 *5 (-882 *2 *3 *4)))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-631 *2)) (-5 *4 (-712))
+ (-4 *2 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $)))))
+ (-4 *5 (-1147 *2)) (-5 *1 (-472 *2 *5 *6)) (-4 *6 (-387 *2 *5)))))
+(((*1 *2)
+ (-12
+ (-5 *2 (-2 (|:| -2397 (-591 (-1089))) (|:| -2023 (-591 (-1089)))))
+ (-5 *1 (-1127)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-205)) (-5 *1 (-30))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-396 *4) *4)) (-4 *4 (-517)) (-5 *2 (-396 *4))
+ (-5 *1 (-397 *4))))
+ ((*1 *1 *1) (-5 *1 (-859)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-859))))
+ ((*1 *1 *1) (-5 *1 (-860)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-860))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))
+ (-5 *4 (-385 (-525))) (-5 *1 (-949 *3)) (-4 *3 (-1147 (-525)))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))
+ (-5 *1 (-949 *3)) (-4 *3 (-1147 (-525)))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))
+ (-5 *4 (-385 (-525))) (-5 *1 (-950 *3)) (-4 *3 (-1147 *4))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))
+ (-5 *1 (-950 *3)) (-4 *3 (-1147 (-385 (-525))))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-13 (-786) (-341))) (-5 *1 (-985 *2 *3))
+ (-4 *3 (-1147 *2)))))
+(((*1 *2)
+ (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-429))
+ (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-908 *3 *4 *5 *6)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1021 *2 *3 *4 *5 *6)) (-4 *2 (-1018)) (-4 *3 (-1018))
+ (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1171 *4)) (-5 *3 (-712)) (-4 *4 (-327))
+ (-5 *1 (-495 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816))
+ (-5 *3 (-591 (-525)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816))
+ (-5 *3 (-591 (-525))))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-712)) (-4 *4 (-13 (-975) (-659 (-385 (-525)))))
+ (-4 *5 (-788)) (-5 *1 (-1185 *4 *5 *2)) (-4 *2 (-1190 *5 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-327)) (-5 *2 (-712))))
+ ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-380)) (-5 *2 (-712)))))
+(((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-860)))))
+(((*1 *1 *2) (-12 (-5 *2 (-146)) (-5 *1 (-807)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-408 *4)) (-5 *1 (-147 *4 *2))
+ (-4 *4 (-13 (-788) (-517))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-358 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1016))
- (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
+ (-12 (-5 *2 (-159)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854))
+ (-4 *4 (-975)))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-860)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-1107))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1107)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-429)) (-4 *4 (-517))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3727 *4)))
+ (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-636 *3)) (-4 *3 (-1018))
+ (-5 *2 (-591 (-2 (|:| -1221 *3) (|:| -2064 (-712))))))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-517)) (-5 *1 (-901 *3 *2)) (-4 *2 (-1147 *3))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-517))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1147 *2)) (-4 *2 (-975)) (-4 *2 (-517)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-1076 *2 *3)) (-14 *2 (-852)) (-4 *3 (-973)))))
-(((*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3)
- (-12 (-5 *4 (-629 (-203))) (-5 *5 (-629 (-523))) (-5 *3 (-523))
- (-5 *2 (-962)) (-5 *1 (-696)))))
-(((*1 *2 *1) (-12 (-4 *1 (-279)) (-5 *2 (-589 (-110))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 (-589 *3))) (-4 *3 (-1016)) (-5 *1 (-1096 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-900)) (-5 *1 (-836 *3)) (-4 *3 (-1016)))))
-(((*1 *2)
- (-12 (-5 *2 (-1174)) (-5 *1 (-1101 *3 *4)) (-4 *3 (-1016))
- (-4 *4 (-1016)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-589 (-523))) (-5 *1 (-1026)) (-5 *3 (-523)))))
+ (-12 (-4 *1 (-1021 *2 *3 *4 *5 *6)) (-4 *2 (-1018)) (-4 *3 (-1018))
+ (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)))))
(((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-629 *11)) (-5 *4 (-589 (-383 (-883 *8))))
- (-5 *5 (-710)) (-5 *6 (-1070)) (-4 *8 (-13 (-284) (-136)))
- (-4 *11 (-880 *8 *10 *9)) (-4 *9 (-13 (-786) (-564 (-1087))))
- (-4 *10 (-732))
+ (-12 (-5 *3 (-631 *11)) (-5 *4 (-591 (-385 (-885 *8))))
+ (-5 *5 (-712)) (-5 *6 (-1072)) (-4 *8 (-13 (-286) (-138)))
+ (-4 *11 (-882 *8 *10 *9)) (-4 *9 (-13 (-788) (-566 (-1089))))
+ (-4 *10 (-734))
(-5 *2
(-2
(|:| |rgl|
- (-589
- (-2 (|:| |eqzro| (-589 *11)) (|:| |neqzro| (-589 *11))
- (|:| |wcond| (-589 (-883 *8)))
+ (-591
+ (-2 (|:| |eqzro| (-591 *11)) (|:| |neqzro| (-591 *11))
+ (|:| |wcond| (-591 (-885 *8)))
(|:| |bsoln|
- (-2 (|:| |partsol| (-1169 (-383 (-883 *8))))
- (|:| -2922 (-589 (-1169 (-383 (-883 *8))))))))))
- (|:| |rgsz| (-523))))
- (-5 *1 (-855 *8 *9 *10 *11)) (-5 *7 (-523)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-5 *1 (-1059 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-921 *2)) (-4 *2 (-515)) (-5 *1 (-131 *2 *4 *3))
- (-4 *3 (-349 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-921 *2)) (-4 *2 (-515)) (-5 *1 (-474 *2 *4 *5 *3))
- (-4 *5 (-349 *2)) (-4 *3 (-349 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-629 *4)) (-4 *4 (-921 *2)) (-4 *2 (-515))
- (-5 *1 (-632 *2 *4))))
+ (-2 (|:| |partsol| (-1171 (-385 (-885 *8))))
+ (|:| -4003 (-591 (-1171 (-385 (-885 *8))))))))))
+ (|:| |rgsz| (-525))))
+ (-5 *1 (-857 *8 *9 *10 *11)) (-5 *7 (-525)))))
+(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *3 *3 *5 *6 *3 *6 *6 *5 *6 *6 *6 *6
+ *5 *3 *3 *3 *3 *3 *6 *6 *6 *3 *3 *3 *3 *3 *7 *4 *4 *4 *4 *3 *8
+ *9)
+ (-12 (-5 *4 (-631 (-205))) (-5 *5 (-108)) (-5 *6 (-205))
+ (-5 *7 (-631 (-525)))
+ (-5 *8 (-3 (|:| |fn| (-366)) (|:| |fp| (-78 CONFUN))))
+ (-5 *9 (-3 (|:| |fn| (-366)) (|:| |fp| (-75 OBJFUN))))
+ (-5 *3 (-525)) (-5 *2 (-964)) (-5 *1 (-695)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1089)) (-5 *4 (-885 (-525))) (-5 *2 (-308))
+ (-5 *1 (-310)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-525)) (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-286))
+ (-4 *9 (-882 *8 *6 *7))
+ (-5 *2 (-2 (|:| -1357 (-1085 *9)) (|:| |polval| (-1085 *8))))
+ (-5 *1 (-684 *6 *7 *8 *9)) (-5 *3 (-1085 *9)) (-5 *4 (-1085 *8)))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4))
+ (-4 *3 (-345 *4))))
+ ((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))))
+(((*1 *2)
+ (-12 (-4 *3 (-517)) (-5 *2 (-591 *4)) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-395 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-885 *6))) (-5 *4 (-591 (-1089)))
+ (-4 *6 (-13 (-517) (-966 *5))) (-4 *5 (-517))
+ (-5 *2 (-591 (-591 (-273 (-385 (-885 *6)))))) (-5 *1 (-967 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-135)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-907 *4 *5 *6 *3)) (-4 *4 (-975)) (-4 *5 (-734))
+ (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-4 *4 (-517))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))))
+(((*1 *1 *2) (-12 (-4 *1 (-611 *2)) (-4 *2 (-1125))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-1089)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-445)) (-5 *4 (-854)) (-5 *2 (-1176)) (-5 *1 (-1172)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-712)) (-4 *5 (-975)) (-5 *2 (-525))
+ (-5 *1 (-420 *5 *3 *6)) (-4 *3 (-1147 *5))
+ (-4 *6 (-13 (-382) (-966 *5) (-341) (-1111) (-263)))))
((*1 *2 *3)
- (-12 (-4 *4 (-921 *2)) (-4 *2 (-515)) (-5 *1 (-1138 *2 *4 *3))
- (-4 *3 (-1145 *4)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3 (-523))) (-4 *3 (-973)) (-5 *1 (-94 *3))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-973)) (-5 *1 (-94 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-973)) (-5 *1 (-94 *3)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-874 (-203))) (-5 *2 (-1174)) (-5 *1 (-443)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1083 *3)) (-4 *3 (-325)) (-5 *1 (-333 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1083 *7)) (-5 *3 (-523)) (-4 *7 (-880 *6 *4 *5))
- (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-973))
- (-5 *1 (-297 *4 *5 *6 *7)))))
+ (-12 (-4 *4 (-975)) (-5 *2 (-525)) (-5 *1 (-420 *4 *3 *5))
+ (-4 *3 (-1147 *4))
+ (-4 *5 (-13 (-382) (-966 *4) (-341) (-1111) (-263))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-540 *2)) (-4 *2 (-13 (-29 *4) (-1109)))
- (-5 *1 (-538 *4 *2))
- (-4 *4 (-13 (-427) (-964 (-523)) (-786) (-585 (-523))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-540 (-383 (-883 *4))))
- (-4 *4 (-13 (-427) (-964 (-523)) (-786) (-585 (-523))))
- (-5 *2 (-292 *4)) (-5 *1 (-543 *4)))))
-(((*1 *1) (-12 (-4 *1 (-305 *2)) (-4 *2 (-344)) (-4 *2 (-339))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1169 *4)) (-5 *1 (-493 *4))
- (-4 *4 (-325)))))
+ (-12 (-5 *3 (-591 (-205))) (-5 *2 (-1171 (-640))) (-5 *1 (-284)))))
+(((*1 *1) (-12 (-5 *1 (-207 *2)) (-4 *2 (-13 (-341) (-1111))))))
+(((*1 *2 *1 *3 *3 *4)
+ (-12 (-5 *3 (-1 (-796) (-796) (-796))) (-5 *4 (-525)) (-5 *2 (-796))
+ (-5 *1 (-594 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-23)) (-14 *7 *6)))
+ ((*1 *2 *1 *2)
+ (-12 (-5 *2 (-796)) (-5 *1 (-792 *3 *4 *5)) (-4 *3 (-975))
+ (-14 *4 (-94 *3)) (-14 *5 (-1 *3 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-205)) (-5 *1 (-796))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-796))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-796))))
+ ((*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-796)) (-5 *1 (-1085 *3)) (-4 *3 (-975)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6))
- (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-629 *7)) (-5 *3 (-589 *7)) (-4 *7 (-880 *4 *6 *5))
- (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087))))
- (-4 *6 (-732)) (-5 *1 (-855 *4 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-1070)) (-5 *3 (-523)) (-5 *1 (-219)))))
-(((*1 *2 *1) (-12 (-4 *1 (-938 *3)) (-4 *3 (-1123)) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1110 *3)) (-4 *3 (-1016)))))
-(((*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172))))
- ((*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172)))))
-(((*1 *2 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-203)) (-5 *4 (-523))
- (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894)))) (-5 *2 (-962))
- (-5 *1 (-688)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-284)) (-5 *1 (-164 *3)))))
-(((*1 *1 *1) (-12 (-5 *1 (-1110 *2)) (-4 *2 (-1016)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))))
+ (-12 (-5 *2 (-591 (-2 (|:| |gen| *3) (|:| -1409 *4))))
+ (-5 *1 (-594 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-591 (-591 (-591 *4)))) (-5 *3 (-591 *4)) (-4 *4 (-788))
+ (-5 *1 (-1097 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-860)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-261 *2)) (-4 *2 (-1125)) (-4 *2 (-788))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-261 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-900 *2)) (-4 *2 (-788)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-427)) (-4 *3 (-786)) (-4 *3 (-964 (-523)))
- (-4 *3 (-515)) (-5 *1 (-40 *3 *2)) (-4 *2 (-406 *3))
- (-4 *2
- (-13 (-339) (-279)
- (-10 -8 (-15 -2164 ((-1039 *3 (-562 $)) $))
- (-15 -2171 ((-1039 *3 (-562 $)) $))
- (-15 -3976 ($ (-1039 *3 (-562 $))))))))))
-(((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-710)) (-4 *5 (-339)) (-5 *2 (-159 *6))
- (-5 *1 (-798 *5 *4 *6)) (-4 *4 (-1160 *5)) (-4 *6 (-1145 *5)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2210 *3) (|:| |coef2| (-721 *3))))
- (-5 *1 (-721 *3)) (-4 *3 (-515)) (-4 *3 (-973)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087))
- (-4 *4 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-402 *4 *2)) (-4 *2 (-13 (-1109) (-29 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-1087)) (-4 *5 (-136))
- (-4 *5 (-13 (-427) (-964 (-523)) (-786) (-585 (-523))))
- (-5 *2 (-292 *5)) (-5 *1 (-543 *5)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 (-589 *3))) (-4 *3 (-1016)) (-5 *1 (-836 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-794)) (-5 *1 (-366 *3 *4 *5)) (-14 *3 (-710))
- (-14 *4 (-710)) (-4 *5 (-158)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-4 *1 (-55 *4 *2 *5)) (-4 *4 (-1123))
- (-4 *5 (-349 *4)) (-4 *2 (-349 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-4 *1 (-976 *4 *5 *6 *2 *7)) (-4 *6 (-973))
- (-4 *7 (-216 *4 *6)) (-4 *2 (-216 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-858))
- (-5 *2
- (-2 (|:| |brans| (-589 (-589 (-874 (-203)))))
- (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))))
- (-5 *1 (-142))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-858)) (-5 *4 (-383 (-523)))
- (-5 *2
- (-2 (|:| |brans| (-589 (-589 (-874 (-203)))))
- (|:| |xValues| (-1011 (-203))) (|:| |yValues| (-1011 (-203)))))
- (-5 *1 (-142)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515))
- (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-5 *2 (-761)) (-5 *1 (-760)))))
-(((*1 *1 *1 *1) (-4 *1 (-119))) ((*1 *1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *1 *1) (-4 *1 (-897))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-589 *1))
- (-4 *1 (-992 *4 *5 *6 *3)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3)
- (-12 (-5 *3 (-523)) (-5 *5 (-108)) (-5 *6 (-629 (-203)))
- (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-695)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-710)) (-4 *6 (-1016)) (-4 *3 (-831 *6))
- (-5 *2 (-629 *3)) (-5 *1 (-631 *6 *3 *7 *4)) (-4 *7 (-349 *3))
- (-4 *4 (-13 (-349 *6) (-10 -7 (-6 -4248)))))))
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-1147 (-525))) (-5 *1 (-461 *3)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1049 (-205))) (-5 *3 (-591 (-242))) (-5 *1 (-1173))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1049 (-205))) (-5 *3 (-1072)) (-5 *1 (-1173))))
+ ((*1 *1 *1) (-5 *1 (-1173))))
+(((*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-475 (-383 (-523)) (-218 *5 (-710)) (-796 *4)
- (-225 *4 (-383 (-523)))))
- (-14 *4 (-589 (-1087))) (-14 *5 (-710)) (-5 *2 (-108))
- (-5 *1 (-476 *4 *5)))))
-(((*1 *1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-108)) (-5 *1 (-548 *3)) (-4 *3 (-973)))))
+ (-12 (-5 *3 (-1070 (-1070 *4))) (-5 *2 (-1070 *4)) (-5 *1 (-1074 *4))
+ (-4 *4 (-975)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-786) (-515))) (-5 *2 (-108)) (-5 *1 (-253 *4 *3))
- (-4 *3 (-13 (-406 *4) (-930))))))
-(((*1 *1) (-5 *1 (-762))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-412)))))
-(((*1 *2 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1070)) (-5 *1 (-282)))))
+ (-12 (-4 *1 (-842)) (-5 *2 (-396 (-1085 *1))) (-5 *3 (-1085 *1)))))
(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-710)) (-4 *5 (-515))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-899 *5 *3)) (-4 *3 (-1145 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1016))
- (-4 *4 (-13 (-973) (-817 *3) (-786) (-564 (-823 *3))))
- (-5 *2 (-589 (-995 *3 *4 *5))) (-5 *1 (-996 *3 *4 *5))
- (-4 *5 (-13 (-406 *4) (-817 *3) (-564 (-823 *3)))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *3 (-284)) (-4 *3 (-158)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3)))
- (-5 *1 (-628 *3 *4 *5 *6)) (-4 *6 (-627 *3 *4 *5))))
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4))))
+ (-5 *1 (-995 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(((*1 *1 *2 *3 *1 *3)
+ (-12 (-5 *2 (-825 *4)) (-4 *4 (-1018)) (-5 *1 (-822 *4 *3))
+ (-4 *3 (-1018)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-525)) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))))
+(((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-859)))))
+(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-128)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-712)) (-5 *2 (-108))))
((*1 *2 *3 *3)
- (-12 (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-639 *3))
- (-4 *3 (-284)))))
-(((*1 *1 *1 *1) (-4 *1 (-119))) ((*1 *1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *1 *1) (-4 *1 (-897))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-271 *3))) (-5 *1 (-271 *3)) (-4 *3 (-515))
- (-4 *3 (-1123)))))
-(((*1 *2 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-427))
- (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-906 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-589 *7)) (-5 *3 (-108)) (-4 *7 (-987 *4 *5 *6))
- (-4 *4 (-427)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786))
- (-5 *1 (-906 *4 *5 *6 *7)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-362 *2)) (-4 *2 (-1016))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-786)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1160 *4)) (-5 *1 (-1162 *4 *2))
- (-4 *4 (-37 (-383 (-523)))))))
-(((*1 *1 *1) (-5 *1 (-108))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-406 *4)) (-5 *1 (-145 *4 *2))
- (-4 *4 (-13 (-786) (-515))))))
-(((*1 *2 *1) (-12 (-4 *1 (-885)) (-5 *2 (-589 (-589 (-874 (-203)))))))
- ((*1 *2 *1) (-12 (-4 *1 (-903)) (-5 *2 (-589 (-589 (-874 (-203))))))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-1126 *3)) (-4 *3 (-788))
+ (-4 *3 (-1018)))))
+(((*1 *2 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525)))))))
+ (-5 *1 (-1044 *3 *2)) (-4 *3 (-1147 *2)))))
+(((*1 *2 *2) (|partial| -12 (-5 *2 (-294 (-205))) (-5 *1 (-284))))
+ ((*1 *2 *1)
+ (|partial| -12
+ (-5 *2 (-2 (|:| |num| (-825 *3)) (|:| |den| (-825 *3))))
+ (-5 *1 (-825 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *3) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-423)) (-5 *3 (-525)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-325))
+ (-12 (-5 *4 (-1 (-591 *5) *6))
+ (-4 *5 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *6 (-1147 *5))
+ (-5 *2 (-591 (-2 (|:| -2058 *5) (|:| -1317 *3))))
+ (-5 *1 (-750 *5 *6 *3 *7)) (-4 *3 (-601 *6))
+ (-4 *7 (-601 (-385 *6))))))
+(((*1 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206))))
+ ((*1 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1056 *3 *4)) (-14 *3 (-854)) (-4 *4 (-341))
+ (-5 *1 (-924 *3 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *3 *4 *4 *5 *6)
+ (-12 (-5 *3 (-591 (-591 (-876 (-205))))) (-5 *4 (-807))
+ (-5 *5 (-854)) (-5 *6 (-591 (-242))) (-5 *2 (-1172))
+ (-5 *1 (-1175))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-591 (-876 (-205))))) (-5 *4 (-591 (-242)))
+ (-5 *2 (-1172)) (-5 *1 (-1175)))))
+(((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))))
+(((*1 *1) (-5 *1 (-744))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))))
+(((*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-543 *3)) (-4 *3 (-510)))))
+(((*1 *1 *1) (-5 *1 (-205)))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089)))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-365))))
+ ((*1 *1 *1) (-5 *1 (-357))) ((*1 *1) (-5 *1 (-357))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)))))
+(((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-859)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-712)) (-4 *5 (-327)) (-4 *6 (-1147 *5))
(-5 *2
- (-2 (|:| |cont| *5)
- (|:| -3286 (-589 (-2 (|:| |irr| *3) (|:| -3269 (-523)))))))
- (-5 *1 (-195 *5 *3)) (-4 *3 (-1145 *5)))))
-(((*1 *2 *3 *1 *4 *4 *4 *4 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-5 *2 (-589 (-954 *5 *6 *7 *3))) (-5 *1 (-954 *5 *6 *7 *3))
- (-4 *3 (-987 *5 *6 *7))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-589 *6)) (-4 *1 (-992 *3 *4 *5 *6)) (-4 *3 (-427))
- (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5))))
- ((*1 *1 *2 *1)
- (-12 (-4 *1 (-992 *3 *4 *5 *2)) (-4 *3 (-427)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5))))
- ((*1 *2 *3 *1 *4 *4 *4 *4 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-5 *2 (-589 (-1058 *5 *6 *7 *3))) (-5 *1 (-1058 *5 *6 *7 *3))
- (-4 *3 (-987 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-325)) (-5 *3 (-523)) (-5 *2 (-1097 (-852) (-710))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1070)) (-5 *3 (-589 (-240))) (-5 *1 (-238))))
- ((*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-240))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
+ (-591
+ (-2 (|:| -4003 (-631 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-631 *6)))))
+ (-5 *1 (-471 *5 *6 *7))
+ (-5 *3
+ (-2 (|:| -4003 (-631 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-631 *6))))
+ (-4 *7 (-1147 *6)))))
+(((*1 *2 *3 *4 *3 *4 *4 *4)
+ (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *2 (-964))
+ (-5 *1 (-698)))))
+(((*1 *1) (-5 *1 (-108))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1101 *4 *5))
- (-4 *4 (-1016)) (-4 *5 (-1016)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973))
- (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-108)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *1))
- (-4 *1 (-987 *3 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-339)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4)))
- (-5 *2 (-1169 *6)) (-5 *1 (-312 *3 *4 *5 *6))
- (-4 *6 (-318 *3 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1087)) (-4 *5 (-564 (-823 (-523))))
- (-4 *5 (-817 (-523)))
- (-4 *5 (-13 (-786) (-964 (-523)) (-427) (-585 (-523))))
- (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
- (-5 *1 (-526 *5 *3)) (-4 *3 (-575))
- (-4 *3 (-13 (-27) (-1109) (-406 *5))))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-962)) (-5 *1 (-282))))
- ((*1 *2 *3) (-12 (-5 *3 (-589 (-962))) (-5 *2 (-962)) (-5 *1 (-282))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-594 *3)) (-4 *3 (-1123))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-594 *2)) (-4 *2 (-1123))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-594 *2)) (-4 *2 (-1123))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-594 *2)) (-4 *2 (-1123))))
- ((*1 *1 *1 *1) (-5 *1 (-985)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1068 (-1068 *4))) (-5 *2 (-1068 *4)) (-5 *1 (-1065 *4))
- (-4 *4 (-1123))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1174)) (-5 *1 (-1090))))
- ((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-1091)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1083 (-523))) (-5 *1 (-873)) (-5 *3 (-523)))))
-(((*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1070)) (-5 *1 (-650)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))))
+ (-12 (-5 *3 (-591 (-2 (|:| |den| (-525)) (|:| |gcdnum| (-525)))))
+ (-4 *4 (-1147 (-385 *2))) (-5 *2 (-525)) (-5 *1 (-846 *4 *5))
+ (-4 *5 (-1147 (-385 *4))))))
+(((*1 *2 *2) (-12 (-5 *1 (-893 *2)) (-4 *2 (-510)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-108)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-515))
+ (-12 (-4 *4 (-517))
(-5 *2
(-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-367)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6))
- (-5 *2 (-589 (-2 (|:| -3922 *1) (|:| -3439 (-589 *7)))))
- (-5 *3 (-589 *7)) (-4 *1 (-1117 *4 *5 *6 *7)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1123)) (-5 *1 (-351 *4 *2))
- (-4 *2 (-13 (-349 *4) (-10 -7 (-6 -4249)))))))
-(((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7)
- (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *5 (-203))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-59 COEFFN))))
- (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-85 BDYVAL))))
- (-5 *2 (-962)) (-5 *1 (-689))))
- ((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8)
- (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *5 (-203))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-59 COEFFN))))
- (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-85 BDYVAL))))
- (-5 *8 (-364)) (-5 *2 (-962)) (-5 *1 (-689)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-413)))))
-(((*1 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204))))
- ((*1 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *1 *1) (-4 *1 (-1051))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-303 *3)) (-4 *3 (-1123))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-523)) (-5 *1 (-486 *3 *4)) (-4 *3 (-1123)) (-14 *4 *2))))
+ (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-822 *4 *5)) (-5 *3 (-822 *4 *6)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-611 *5)) (-5 *1 (-818 *4 *5 *6)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-342 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))))
+(((*1 *1 *1 *1) (-4 *1 (-510))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-694)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-318 *4 *3 *5)) (-4 *4 (-1127)) (-4 *3 (-1145 *4))
- (-4 *5 (-1145 (-383 *3))) (-5 *2 (-108))))
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205))
+ (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205)))
+ (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205)))
+ (|:| |abserr| (-205)) (|:| |relerr| (-205))))
+ (-5 *2
+ (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357))
+ (|:| |expense| (-357)) (|:| |accuracy| (-357))
+ (|:| |intermediateResults| (-357))))
+ (-5 *1 (-744)))))
+(((*1 *1) (-5 *1 (-132))))
+(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-815 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1020 *4)) (-4 *4 (-1018)) (-5 *2 (-1 *4))
+ (-5 *1 (-947 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-357))) (-5 *1 (-968)) (-5 *3 (-357))))
((*1 *2 *3)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))))
-(((*1 *1) (-5 *1 (-413))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-1174)) (-5 *1 (-1170))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
+ (-12 (-5 *3 (-1013 (-525))) (-5 *2 (-1 (-525))) (-5 *1 (-973)))))
+(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-693)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-566 (-825 *3))) (-4 *3 (-819 *3))
+ (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-566 (-825 *3))) (-4 *2 (-819 *3))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1147 *3)) (-5 *1 (-377 *3 *2))
+ (-4 *3 (-13 (-341) (-138))))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-591 (-1085 *7))) (-5 *3 (-1085 *7))
+ (-4 *7 (-882 *5 *6 *4)) (-4 *5 (-842)) (-4 *6 (-734))
+ (-4 *4 (-788)) (-5 *1 (-839 *5 *6 *4 *7)))))
+(((*1 *2 *3)
+ (-12 (|has| *2 (-6 (-4252 "*"))) (-4 *5 (-351 *2)) (-4 *6 (-351 *2))
+ (-4 *2 (-975)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1147 *2))
+ (-4 *4 (-629 *2 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-712)) (-5 *2 (-1 (-1070 (-885 *4)) (-1070 (-885 *4))))
+ (-5 *1 (-1179 *4)) (-4 *4 (-341)))))
+(((*1 *2 *1 *2 *3)
+ (|partial| -12 (-5 *2 (-1072)) (-5 *3 (-525)) (-5 *1 (-987)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-130 *5 *6 *7)) (-14 *5 (-525))
+ (-14 *6 (-712)) (-4 *7 (-160)) (-4 *8 (-160))
+ (-5 *2 (-130 *5 *6 *8)) (-5 *1 (-129 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 *9)) (-4 *9 (-975)) (-4 *5 (-788)) (-4 *6 (-734))
+ (-4 *8 (-975)) (-4 *2 (-882 *9 *7 *5))
+ (-5 *1 (-670 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-734))
+ (-4 *4 (-882 *8 *6 *5)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-383 *4)) (-4 *4 (-1145 *3)) (-4 *3 (-13 (-339) (-136)))
- (-5 *1 (-375 *3 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))))
+ (-12 (-5 *2 (-591 (-591 *3))) (-4 *3 (-1018)) (-4 *1 (-836 *3)))))
+(((*1 *2 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-693)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-4 *5 (-406 *4))
+ (-12 (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-4 *5 (-408 *4))
(-5 *2
- (-3 (|:| |overq| (-1083 (-383 (-523))))
- (|:| |overan| (-1083 (-47))) (|:| -2509 (-108))))
- (-5 *1 (-411 *4 *5 *3)) (-4 *3 (-1145 *5)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-562 (-47)))) (-5 *1 (-47))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-562 (-47))) (-5 *1 (-47))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1083 (-47))) (-5 *3 (-589 (-562 (-47)))) (-5 *1 (-47))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1083 (-47))) (-5 *3 (-562 (-47))) (-5 *1 (-47))))
- ((*1 *2 *1) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-339) (-784))) (-5 *1 (-165 *2 *3))
- (-4 *3 (-1145 (-155 *2)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-852)) (-4 *1 (-305 *3)) (-4 *3 (-339)) (-4 *3 (-344))))
- ((*1 *2 *1) (-12 (-4 *1 (-305 *2)) (-4 *2 (-339))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-346 *2 *3)) (-4 *3 (-1145 *2)) (-4 *2 (-158))))
- ((*1 *2 *1)
- (-12 (-4 *4 (-1145 *2)) (-4 *2 (-921 *3)) (-5 *1 (-389 *3 *2 *4 *5))
- (-4 *3 (-284)) (-4 *5 (-13 (-385 *2 *4) (-964 *2)))))
- ((*1 *2 *1)
- (-12 (-4 *4 (-1145 *2)) (-4 *2 (-921 *3))
- (-5 *1 (-390 *3 *2 *4 *5 *6)) (-4 *3 (-284)) (-4 *5 (-385 *2 *4))
- (-14 *6 (-1169 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-852)) (-4 *5 (-973))
- (-4 *2 (-13 (-380) (-964 *5) (-339) (-1109) (-261)))
- (-5 *1 (-418 *5 *3 *2)) (-4 *3 (-1145 *5))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-562 (-466)))) (-5 *1 (-466))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-562 (-466))) (-5 *1 (-466))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1083 (-466))) (-5 *3 (-589 (-562 (-466))))
- (-5 *1 (-466))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1083 (-466))) (-5 *3 (-562 (-466))) (-5 *1 (-466))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1169 *4)) (-5 *3 (-852)) (-4 *4 (-325))
- (-5 *1 (-493 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-427)) (-4 *5 (-664 *4 *2)) (-4 *2 (-1145 *4))
- (-5 *1 (-714 *4 *2 *5 *3)) (-4 *3 (-1145 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158))))
- ((*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158))))
- ((*1 *1 *1) (-4 *1 (-982))))
-(((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-710)) (-4 *5 (-515))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-899 *5 *3)) (-4 *3 (-1145 *5)))))
+ (-3 (|:| |overq| (-1085 (-385 (-525))))
+ (|:| |overan| (-1085 (-47))) (|:| -2031 (-108))))
+ (-5 *1 (-413 *4 *5 *3)) (-4 *3 (-1147 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-589 *7)) (-4 *7 (-786))
- (-4 *8 (-880 *5 *6 *7)) (-4 *5 (-515)) (-4 *6 (-732))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1169 (-383 *8)) "failed"))
- (|:| -2922 (-589 (-1169 (-383 *8))))))
- (-5 *1 (-612 *5 *6 *7 *8)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6))
- (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-108)))))
-(((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| -3362 (-110)) (|:| |arg| (-589 (-823 *3)))))
- (-5 *1 (-823 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-110)) (-5 *2 (-589 (-823 *4)))
- (-5 *1 (-823 *4)) (-4 *4 (-1016)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-883 *4))) (-4 *4 (-427)) (-5 *2 (-108))
- (-5 *1 (-336 *4 *5)) (-14 *5 (-589 (-1087)))))
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-854)) (-5 *4 (-396 *6)) (-4 *6 (-1147 *5))
+ (-4 *5 (-975)) (-5 *2 (-591 *6)) (-5 *1 (-421 *5 *6)))))
+(((*1 *1 *2 *2 *2)
+ (-12 (-5 *1 (-207 *2)) (-4 *2 (-13 (-341) (-1111)))))
+ ((*1 *2 *1 *3 *4 *4)
+ (-12 (-5 *3 (-854)) (-5 *4 (-357)) (-5 *2 (-1176)) (-5 *1 (-1172))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-1089))
+ (-4 *5 (-13 (-286) (-788) (-138))) (-5 *2 (-591 (-273 (-294 *5))))
+ (-5 *1 (-1045 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-13 (-286) (-788) (-138)))
+ (-5 *2 (-591 (-273 (-294 *4)))) (-5 *1 (-1045 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-273 (-385 (-885 *5)))) (-5 *4 (-1089))
+ (-4 *5 (-13 (-286) (-788) (-138))) (-5 *2 (-591 (-273 (-294 *5))))
+ (-5 *1 (-1045 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-273 (-385 (-885 *4))))
+ (-4 *4 (-13 (-286) (-788) (-138))) (-5 *2 (-591 (-273 (-294 *4))))
+ (-5 *1 (-1045 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-385 (-885 *5)))) (-5 *4 (-591 (-1089)))
+ (-4 *5 (-13 (-286) (-788) (-138)))
+ (-5 *2 (-591 (-591 (-273 (-294 *5))))) (-5 *1 (-1045 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-385 (-885 *4))))
+ (-4 *4 (-13 (-286) (-788) (-138)))
+ (-5 *2 (-591 (-591 (-273 (-294 *4))))) (-5 *1 (-1045 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-273 (-385 (-885 *5))))) (-5 *4 (-591 (-1089)))
+ (-4 *5 (-13 (-286) (-788) (-138)))
+ (-5 *2 (-591 (-591 (-273 (-294 *5))))) (-5 *1 (-1045 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-589 (-719 *4 (-796 *5)))) (-4 *4 (-427))
- (-14 *5 (-589 (-1087))) (-5 *2 (-108)) (-5 *1 (-574 *4 *5)))))
+ (-12 (-5 *3 (-591 (-273 (-385 (-885 *4)))))
+ (-4 *4 (-13 (-286) (-788) (-138)))
+ (-5 *2 (-591 (-591 (-273 (-294 *4))))) (-5 *1 (-1045 *4)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-496 *3)) (-4 *3 (-13 (-668) (-25))))))
+(((*1 *2 *1) (-12 (-4 *1 (-481 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-788)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205)))
+ (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-77 LSFUN1))))
+ (-5 *2 (-964)) (-5 *1 (-695)))))
+(((*1 *1 *1) (-12 (-5 *1 (-396 *2)) (-4 *2 (-517)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-5 *1 (-305 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-5 *1 (-488 *3 *4))
+ (-14 *4 (-525)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-152 *3)) (-4 *3 (-158)) (-4 *3 (-982)) (-4 *3 (-1109))
- (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-427)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-383 (-523)))
- (-4 *4 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-254 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *4))))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-560 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-5 *2 (-108)))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *4 (-203))
- (-5 *2
- (-2 (|:| |brans| (-589 (-589 (-874 *4))))
- (|:| |xValues| (-1011 *4)) (|:| |yValues| (-1011 *4))))
- (-5 *1 (-142)) (-5 *3 (-589 (-589 (-874 *4)))))))
-(((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-857)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1169 *3)) (-4 *3 (-973)) (-5 *1 (-652 *3 *4))
- (-4 *4 (-1145 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-159 *3)) (-4 *3 (-284)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-794)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2))
- (-4 *4 (-349 *2)))))
-(((*1 *1 *1) (-5 *1 (-985))))
+ (-12 (-5 *2 (-591 *5)) (-5 *1 (-130 *3 *4 *5)) (-14 *3 (-525))
+ (-14 *4 (-712)) (-4 *5 (-160)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1013 (-781 (-205)))) (-5 *1 (-284)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (-5 *2
- (-2
- (|:| |endPointContinuity|
- (-3 (|:| |continuous| "Continuous at the end points")
- (|:| |lowerSingular|
- "There is a singularity at the lower end point")
- (|:| |upperSingular|
- "There is a singularity at the upper end point")
- (|:| |bothSingular|
- "There are singularities at both end points")
- (|:| |notEvaluated|
- "End point continuity not yet evaluated")))
- (|:| |singularitiesStream|
- (-3 (|:| |str| (-1068 (-203)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -3487
- (-3 (|:| |finite| "The range is finite")
- (|:| |lowerInfinite| "The bottom of range is infinite")
- (|:| |upperInfinite| "The top of range is infinite")
- (|:| |bothInfinite|
- "Both top and bottom points are infinite")
- (|:| |notEvaluated| "Range not yet evaluated")))))
- (-5 *1 (-518)))))
-(((*1 *2 *1 *3 *3 *4 *4)
- (-12 (-5 *3 (-710)) (-5 *4 (-852)) (-5 *2 (-1174)) (-5 *1 (-1170))))
- ((*1 *2 *1 *3 *3 *4 *4)
- (-12 (-5 *3 (-710)) (-5 *4 (-852)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *3 *3 *3 *3)
- (-12 (-5 *3 (-523)) (-5 *2 (-108)) (-5 *1 (-454)))))
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-408 *4)) (-5 *1 (-147 *4 *2))
+ (-4 *4 (-13 (-788) (-517))))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-271 (-779 *3))) (-4 *3 (-13 (-27) (-1109) (-406 *5)))
- (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-108))
+ (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2 (-591 (-2 (|:| |val| (-108)) (|:| -3374 *4))))
+ (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-859)))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-1125)) (-5 *1 (-168 *3 *2))
+ (-4 *2 (-618 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-146))))
+ ((*1 *2 *1) (-12 (-5 *2 (-146)) (-5 *1 (-807))))
+ ((*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))))
+(((*1 *2 *2 *3 *3 *4)
+ (-12 (-5 *4 (-712)) (-4 *3 (-517)) (-5 *1 (-901 *3 *2))
+ (-4 *2 (-1147 *3)))))
+(((*1 *2 *2 *3 *3)
+ (|partial| -12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-536 *4 *2))
+ (-4 *2 (-13 (-1111) (-891) (-1053) (-29 *4))))))
+(((*1 *2 *3 *4 *4 *2 *2 *2)
+ (-12 (-5 *2 (-525))
+ (-5 *3
+ (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-712)) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-4 *6 (-734)) (-4 *4 (-882 *5 *6 *7)) (-4 *5 (-429)) (-4 *7 (-788))
+ (-5 *1 (-426 *5 *6 *7 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-514)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-897))) (-5 *1 (-104))))
+ ((*1 *2 *1) (-12 (-5 *2 (-44 (-1072) (-715))) (-5 *1 (-110)))))
+(((*1 *2 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-696)))))
+(((*1 *2)
+ (-12 (-4 *1 (-327))
+ (-5 *2 (-591 (-2 (|:| -1348 (-525)) (|:| -2008 (-525))))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-525)) (-5 *1 (-221))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-1072))) (-5 *2 (-525)) (-5 *1 (-221)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-712)) (-5 *6 (-108)) (-4 *7 (-429)) (-4 *8 (-734))
+ (-4 *9 (-788)) (-4 *3 (-989 *7 *8 *9))
(-5 *2
- (-3 (-779 *3)
- (-2 (|:| |leftHandLimit| (-3 (-779 *3) "failed"))
- (|:| |rightHandLimit| (-3 (-779 *3) "failed")))
- "failed"))
- (-5 *1 (-582 *5 *3))))
+ (-2 (|:| |done| (-591 *4))
+ (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4))))))
+ (-5 *1 (-992 *7 *8 *9 *3 *4)) (-4 *4 (-994 *7 *8 *9 *3))))
((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-271 *3)) (-5 *5 (-1070))
- (-4 *3 (-13 (-27) (-1109) (-406 *6)))
- (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-779 *3)) (-5 *1 (-582 *6 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-271 (-779 (-883 *5)))) (-4 *5 (-427))
+ (-12 (-5 *5 (-712)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788))
+ (-4 *3 (-989 *6 *7 *8))
(-5 *2
- (-3 (-779 (-383 (-883 *5)))
- (-2 (|:| |leftHandLimit| (-3 (-779 (-383 (-883 *5))) "failed"))
- (|:| |rightHandLimit| (-3 (-779 (-383 (-883 *5))) "failed")))
- "failed"))
- (-5 *1 (-583 *5)) (-5 *3 (-383 (-883 *5)))))
+ (-2 (|:| |done| (-591 *4))
+ (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4))))))
+ (-5 *1 (-992 *6 *7 *8 *3 *4)) (-4 *4 (-994 *6 *7 *8 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-271 (-383 (-883 *5)))) (-5 *3 (-383 (-883 *5)))
- (-4 *5 (-427))
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
(-5 *2
- (-3 (-779 *3)
- (-2 (|:| |leftHandLimit| (-3 (-779 *3) "failed"))
- (|:| |rightHandLimit| (-3 (-779 *3) "failed")))
- "failed"))
- (-5 *1 (-583 *5))))
+ (-2 (|:| |done| (-591 *4))
+ (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4))))))
+ (-5 *1 (-992 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-712)) (-5 *6 (-108)) (-4 *7 (-429)) (-4 *8 (-734))
+ (-4 *9 (-788)) (-4 *3 (-989 *7 *8 *9))
+ (-5 *2
+ (-2 (|:| |done| (-591 *4))
+ (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4))))))
+ (-5 *1 (-1059 *7 *8 *9 *3 *4)) (-4 *4 (-1027 *7 *8 *9 *3))))
((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-271 (-383 (-883 *6)))) (-5 *5 (-1070))
- (-5 *3 (-383 (-883 *6))) (-4 *6 (-427)) (-5 *2 (-779 *3))
- (-5 *1 (-583 *6)))))
+ (-12 (-5 *5 (-712)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788))
+ (-4 *3 (-989 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-591 *4))
+ (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4))))))
+ (-5 *1 (-1059 *6 *7 *8 *3 *4)) (-4 *4 (-1027 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-591 *4))
+ (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4))))))
+ (-5 *1 (-1059 *5 *6 *7 *3 *4)) (-4 *4 (-1027 *5 *6 *7 *3)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-616 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-620 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-760 *3)) (-4 *3 (-788)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1154 *3 *2)) (-4 *3 (-975)) (-4 *2 (-1131 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-712)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854))
+ (-4 *4 (-975)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1070 *4)) (-5 *3 (-1 *4 (-525))) (-4 *4 (-975))
+ (-5 *1 (-1074 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-883 (-203))) (-5 *2 (-292 (-355))) (-5 *1 (-282)))))
+ (-12 (-4 *4 (-734))
+ (-4 *5 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $))))) (-4 *6 (-517))
+ (-5 *2 (-2 (|:| -2593 (-885 *6)) (|:| -4125 (-885 *6))))
+ (-5 *1 (-674 *4 *5 *6 *3)) (-4 *3 (-882 (-385 (-885 *6)) *4 *5)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *4 (-564 *3)) (-5 *5 (-1 (-1085 *3) (-1085 *3)))
+ (-4 *3 (-13 (-27) (-408 *6))) (-4 *6 (-13 (-788) (-517)))
+ (-5 *2 (-542 *3)) (-5 *1 (-512 *6 *3)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-405 *3 *2)) (-4 *3 (-13 (-160) (-37 (-385 (-525)))))
+ (-4 *2 (-13 (-788) (-21))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1070)) (-5 *2 (-523)) (-5 *1 (-1106 *4))
- (-4 *4 (-973)))))
+ (-12 (-5 *3 (-885 *5)) (-4 *5 (-975)) (-5 *2 (-457 *4 *5))
+ (-5 *1 (-877 *4 *5)) (-14 *4 (-591 (-1089))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-923 *2)) (-4 *2 (-517)) (-5 *1 (-133 *2 *4 *3))
+ (-4 *3 (-351 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-923 *2)) (-4 *2 (-517)) (-5 *1 (-476 *2 *4 *5 *3))
+ (-4 *5 (-351 *2)) (-4 *3 (-351 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-631 *4)) (-4 *4 (-923 *2)) (-4 *2 (-517))
+ (-5 *1 (-634 *2 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-923 *2)) (-4 *2 (-517)) (-5 *1 (-1140 *2 *4 *3))
+ (-4 *3 (-1147 *4)))))
+(((*1 *2)
+ (-12 (-4 *4 (-341)) (-5 *2 (-712)) (-5 *1 (-306 *3 *4))
+ (-4 *3 (-307 *4))))
+ ((*1 *2) (-12 (-4 *1 (-1188 *3)) (-4 *3 (-341)) (-5 *2 (-712)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *3 *1)
- (-12
+ (-12 (-5 *4 (-108)) (-4 *5 (-327))
(-5 *2
- (-2 (|:| |cycle?| (-108)) (|:| -2831 (-710)) (|:| |period| (-710))))
- (-5 *1 (-1068 *4)) (-4 *4 (-1123)) (-5 *3 (-710)))))
+ (-2 (|:| |cont| *5)
+ (|:| -3781 (-591 (-2 (|:| |irr| *3) (|:| -3265 (-525)))))))
+ (-5 *1 (-197 *5 *3)) (-4 *3 (-1147 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-341) (-786)))
+ (-5 *2 (-2 (|:| |start| *3) (|:| -3781 (-396 *3))))
+ (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4))))))
+(((*1 *2 *1) (-12 (-4 *3 (-975)) (-5 *2 (-591 *1)) (-4 *1 (-1050 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-973)) (-4 *4 (-1016)) (-5 *2 (-589 *1))
- (-4 *1 (-358 *3 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-589 (-675 *3 *4))) (-5 *1 (-675 *3 *4)) (-4 *3 (-973))
- (-4 *4 (-666))))
+ (|partial| -12
+ (-5 *2 (-2 (|:| -4157 (-110)) (|:| |arg| (-591 (-825 *3)))))
+ (-5 *1 (-825 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-110)) (-5 *2 (-591 (-825 *4)))
+ (-5 *1 (-825 *4)) (-4 *4 (-1018)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1106)))))
+(((*1 *2 *3) (-12 (-5 *2 (-396 *3)) (-5 *1 (-519 *3)) (-4 *3 (-510))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-286)) (-5 *2 (-396 *3))
+ (-5 *1 (-684 *4 *5 *6 *3)) (-4 *3 (-882 *6 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-286))
+ (-4 *7 (-882 *6 *4 *5)) (-5 *2 (-396 (-1085 *7)))
+ (-5 *1 (-684 *4 *5 *6 *7)) (-5 *3 (-1085 *7))))
((*1 *2 *1)
- (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *1))
- (-4 *1 (-880 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *1 (-1119 *2)) (-4 *2 (-903)))))
+ (-12 (-4 *3 (-429)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *2 (-396 *1)) (-4 *1 (-882 *3 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-788)) (-4 *5 (-734)) (-4 *6 (-429)) (-5 *2 (-396 *3))
+ (-5 *1 (-910 *4 *5 *6 *3)) (-4 *3 (-882 *6 *5 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-429))
+ (-4 *7 (-882 *6 *4 *5)) (-5 *2 (-396 (-1085 (-385 *7))))
+ (-5 *1 (-1084 *4 *5 *6 *7)) (-5 *3 (-1085 (-385 *7)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-396 *1)) (-4 *1 (-1129))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-5 *2 (-396 *3)) (-5 *1 (-1150 *4 *3))
+ (-4 *3 (-13 (-1147 *4) (-517) (-10 -8 (-15 -1399 ($ $ $)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-972 *4 *5)) (-4 *4 (-13 (-786) (-286) (-138) (-951)))
+ (-14 *5 (-591 (-1089)))
+ (-5 *2
+ (-591 (-1060 *4 (-497 (-798 *6)) (-798 *6) (-721 *4 (-798 *6)))))
+ (-5 *1 (-1195 *4 *5 *6)) (-14 *6 (-591 (-1089))))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4))
+ (-4 *3 (-345 *4))))
+ ((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-517)) (-5 *2 (-591 (-712))) (-5 *1 (-901 *4 *3))
+ (-4 *3 (-1147 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-299 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-124))
- (-5 *2 (-589 (-2 (|:| |gen| *3) (|:| -1847 *4))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-589 (-2 (|:| -2275 *3) (|:| -1511 *4))))
- (-5 *1 (-675 *3 *4)) (-4 *3 (-973)) (-4 *4 (-666))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1147 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731))
- (-5 *2 (-1068 (-2 (|:| |k| *4) (|:| |c| *3)))))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-1087))) (-5 *3 (-51)) (-5 *1 (-823 *4))
- (-4 *4 (-1016)))))
-(((*1 *1 *1 *1) (-5 *1 (-794))))
+ (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108))
+ (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-664)) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-4 *1 (-668)) (-5 *2 (-108)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1089))
+ (-4 *5 (-13 (-429) (-788) (-138) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-2 (|:| -3060 *3) (|:| |coeff| *3))) (-5 *1 (-518 *5 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *5))))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-788)) (-4 *5 (-734))
+ (-4 *6 (-517)) (-4 *7 (-882 *6 *5 *3))
+ (-5 *1 (-439 *5 *3 *6 *7 *2))
+ (-4 *2
+ (-13 (-966 (-385 (-525))) (-341)
+ (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $))
+ (-15 -1754 (*7 $))))))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525))
+ (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G)))) (-5 *2 (-964))
+ (-5 *1 (-690)))))
+(((*1 *1 *1) (-12 (-4 *1 (-224 *2)) (-4 *2 (-1125)))))
(((*1 *2 *2 *3)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *2 (-987 *4 *5 *6)) (-5 *1 (-715 *4 *5 *6 *2 *3))
- (-4 *3 (-992 *4 *5 *6 *2)))))
+ (-12 (-5 *2 (-825 *4)) (-5 *3 (-1 (-108) *5)) (-4 *4 (-1018))
+ (-4 *5 (-1125)) (-5 *1 (-823 *4 *5))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-825 *4)) (-5 *3 (-591 (-1 (-108) *5))) (-4 *4 (-1018))
+ (-4 *5 (-1125)) (-5 *1 (-823 *4 *5))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-825 *5)) (-5 *3 (-591 (-1089)))
+ (-5 *4 (-1 (-108) (-591 *6))) (-4 *5 (-1018)) (-4 *6 (-1125))
+ (-5 *1 (-823 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-108) *5)) (-4 *5 (-1125)) (-4 *4 (-788))
+ (-5 *1 (-870 *4 *2 *5)) (-4 *2 (-408 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-591 (-1 (-108) *5))) (-4 *5 (-1125)) (-4 *4 (-788))
+ (-5 *1 (-870 *4 *2 *5)) (-4 *2 (-408 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1089)) (-5 *4 (-1 (-108) *5)) (-4 *5 (-1125))
+ (-5 *2 (-294 (-525))) (-5 *1 (-871 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1089)) (-5 *4 (-591 (-1 (-108) *5))) (-4 *5 (-1125))
+ (-5 *2 (-294 (-525))) (-5 *1 (-871 *5))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-1089))) (-5 *3 (-1 (-108) (-591 *6)))
+ (-4 *6 (-13 (-408 *5) (-819 *4) (-566 (-825 *4)))) (-4 *4 (-1018))
+ (-4 *5 (-13 (-975) (-819 *4) (-788) (-566 (-825 *4))))
+ (-5 *1 (-997 *4 *5 *6)))))
+(((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-860)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1036)) (-5 *2 (-108)) (-5 *1 (-762)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |polnum| (-723 *3)) (|:| |polden| *3) (|:| -2741 (-712))))
+ (-5 *1 (-723 *3)) (-4 *3 (-975))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -2741 (-712))))
+ (-4 *1 (-989 *3 *4 *5)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1036)) (-5 *1 (-105))))
+ ((*1 *2 *1) (|partial| -12 (-5 *1 (-343 *2)) (-4 *2 (-1018))))
+ ((*1 *2 *1) (|partial| -12 (-5 *2 (-1072)) (-5 *1 (-1107)))))
+(((*1 *1) (-5 *1 (-132))) ((*1 *1 *1) (-5 *1 (-135)))
+ ((*1 *1 *1) (-4 *1 (-1058))))
(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-1087))
- (-4 *4 (-13 (-427) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-516 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *4))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-284)) (-5 *2 (-394 *3))
- (-5 *1 (-682 *4 *5 *6 *3)) (-4 *3 (-880 *6 *4 *5)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-508))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -4053 *4)))
- (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-155 *5)) (-4 *5 (-13 (-406 *4) (-930) (-1109)))
- (-4 *4 (-13 (-515) (-786)))
- (-4 *2 (-13 (-406 (-155 *4)) (-930) (-1109)))
- (-5 *1 (-552 *4 *5 *2)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-203)) (-5 *4 (-523))
- (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G)))) (-5 *2 (-962))
- (-5 *1 (-688)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-271 *2)) (-4 *2 (-666)) (-4 *2 (-1123)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-759)) (-14 *5 (-1087)) (-5 *2 (-589 (-1142 *5 *4)))
- (-5 *1 (-1030 *4 *5)) (-5 *3 (-1142 *5 *4)))))
-(((*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-786)))))
-(((*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4248)) (-4 *1 (-462 *4))
- (-4 *4 (-1123)) (-5 *2 (-108)))))
+ (-12 (-5 *3 (-591 (-591 (-591 *4)))) (-5 *2 (-591 (-591 *4)))
+ (-4 *4 (-788)) (-5 *1 (-1097 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-294 (-205))) (-5 *1 (-192)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-1193 *3 *4)) (-4 *1 (-352 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-160))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-364 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-760 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-760 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-760 *3)) (-4 *1 (-1186 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-975))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975)))))
+(((*1 *1 *1) (-5 *1 (-987))))
+(((*1 *2 *3) (-12 (-5 *3 (-762)) (-5 *2 (-51)) (-5 *1 (-772)))))
+(((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-396 *3)) (-4 *3 (-517))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-2 (|:| -1348 *4) (|:| -1316 (-525)))))
+ (-4 *4 (-1147 (-525))) (-5 *2 (-712)) (-5 *1 (-419 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2))
+ (|has| *2 (-6 (-4252 "*"))) (-4 *2 (-975))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-351 *2)) (-4 *5 (-351 *2)) (-4 *2 (-160))
+ (-5 *1 (-630 *2 *4 *5 *3)) (-4 *3 (-629 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1039 *3 *2 *4 *5)) (-4 *4 (-218 *3 *2))
+ (-4 *5 (-218 *3 *2)) (|has| *2 (-6 (-4252 "*"))) (-4 *2 (-975)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-838 *3))) (-5 *1 (-837 *3)) (-4 *3 (-1018)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-882 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *2 (-788)) (-4 *3 (-160))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *2 (-517)) (-5 *1 (-901 *2 *3)) (-4 *3 (-1147 *2))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-517))))
+ ((*1 *2 *1 *1) (-12 (-4 *1 (-1147 *2)) (-4 *2 (-975)) (-4 *2 (-160)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-205))) (-5 *2 (-591 (-1072))) (-5 *1 (-174))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-205))) (-5 *2 (-591 (-1072))) (-5 *1 (-279))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-205))) (-5 *2 (-591 (-1072))) (-5 *1 (-284)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1083 *7)) (-4 *5 (-973))
- (-4 *7 (-973)) (-4 *2 (-1145 *5)) (-5 *1 (-472 *5 *2 *6 *7))
- (-4 *6 (-1145 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-973)) (-4 *7 (-973))
- (-4 *4 (-1145 *5)) (-5 *2 (-1083 *7)) (-5 *1 (-472 *5 *4 *6 *7))
- (-4 *6 (-1145 *4)))))
-(((*1 *2 *1 *1 *3 *4)
- (-12 (-5 *3 (-1 (-108) *5 *5)) (-5 *4 (-1 (-108) *6 *6))
- (-4 *5 (-13 (-1016) (-33))) (-4 *6 (-13 (-1016) (-33)))
- (-5 *2 (-108)) (-5 *1 (-1052 *5 *6)))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-1083 (-883 *4))) (-5 *1 (-392 *3 *4))
- (-4 *3 (-393 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-4 *3 (-339))
- (-5 *2 (-1083 (-883 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-1083 (-383 (-883 *3)))) (-5 *1 (-428 *3 *4 *5 *6))
- (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))))
-(((*1 *2 *2 *3) (-12 (-5 *3 (-523)) (-5 *1 (-1098 *2)) (-4 *2 (-339)))))
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111) (-932)))
+ (-5 *1 (-163 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-37 (-385 (-525))))
+ (-5 *2 (-2 (|:| -1431 (-1070 *4)) (|:| -1973 (-1070 *4))))
+ (-5 *1 (-1076 *4)) (-5 *3 (-1070 *4)))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-517)) (-4 *3 (-160)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *1 (-630 *3 *4 *5 *2))
+ (-4 *2 (-629 *3 *4 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-883 (-155 (-523))))) (-5 *2 (-589 (-155 *4)))
- (-5 *1 (-354 *4)) (-4 *4 (-13 (-339) (-784)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-589 (-383 (-883 (-155 (-523))))))
- (-5 *4 (-589 (-1087))) (-5 *2 (-589 (-589 (-155 *5))))
- (-5 *1 (-354 *5)) (-4 *5 (-13 (-339) (-784))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087))
- (-4 *4 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
- (-5 *1 (-743 *4 *2)) (-4 *2 (-13 (-29 *4) (-1109) (-889))))))
-(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-857)))))
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-1091 (-385 (-525))))
+ (-5 *1 (-172)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-515) (-136))) (-5 *2 (-589 *3))
- (-5 *1 (-1139 *4 *3)) (-4 *3 (-1145 *4)))))
+ (-12 (-5 *3 (-457 *4 *5)) (-14 *4 (-591 (-1089))) (-4 *5 (-975))
+ (-5 *2 (-227 *4 *5)) (-5 *1 (-877 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-562 *4)) (-5 *1 (-561 *3 *4)) (-4 *3 (-786))
- (-4 *4 (-786)))))
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-348 *4 *5)) (-4 *4 (-160))
+ (-4 *5 (-1147 *4)) (-5 *2 (-631 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-160)) (-4 *5 (-1147 *4)) (-5 *2 (-631 *4))
+ (-5 *1 (-386 *3 *4 *5)) (-4 *3 (-387 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-160)) (-4 *4 (-1147 *3))
+ (-5 *2 (-631 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1142 *5 *4)) (-4 *4 (-759)) (-14 *5 (-1087))
- (-5 *2 (-523)) (-5 *1 (-1030 *4 *5)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-155 (-203))) (-5 *5 (-523)) (-5 *6 (-1070))
- (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1145 *5))
- (-4 *5 (-13 (-339) (-136) (-964 (-523))))
- (-5 *2
- (-2 (|:| |a| *6) (|:| |b| (-383 *6)) (|:| |c| (-383 *6))
- (|:| -1425 *6)))
- (-5 *1 (-943 *5 *6)) (-5 *3 (-383 *6)))))
-(((*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)))))
-(((*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-966)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *5)) (-5 *4 (-589 (-1 *6 (-589 *6))))
- (-4 *5 (-37 (-383 (-523)))) (-4 *6 (-1160 *5)) (-5 *2 (-589 *6))
- (-5 *1 (-1162 *5 *6)))))
+ (|partial| -12 (-4 *4 (-13 (-517) (-788) (-966 (-525))))
+ (-4 *5 (-408 *4)) (-5 *2 (-396 (-1085 (-385 (-525)))))
+ (-5 *1 (-413 *4 *5 *3)) (-4 *3 (-1147 *5)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-232 *2 *3 *4 *5)) (-4 *2 (-975)) (-4 *3 (-788))
+ (-4 *4 (-245 *3)) (-4 *5 (-734)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-517) (-788) (-966 (-525)))) (-5 *1 (-170 *3 *2))
+ (-4 *2 (-13 (-27) (-1111) (-408 (-157 *3))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-517) (-788) (-966 (-525))))
+ (-5 *1 (-170 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 (-157 *4))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-1115 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *4))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-975)) (-4 *4 (-1147 *3)) (-5 *1 (-152 *3 *4 *2))
+ (-4 *2 (-1147 *4))))
+ ((*1 *1 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-558 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1125))
+ (-5 *2 (-108)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-710)) (-4 *4 (-339)) (-4 *5 (-1145 *4)) (-5 *2 (-1174))
- (-5 *1 (-39 *4 *5 *6 *7)) (-4 *6 (-1145 (-383 *5))) (-14 *7 *6))))
-(((*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-541 *3)) (-4 *3 (-508)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *3 (-523)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-394 *2)) (-4 *2 (-515)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1083 *1)) (-4 *1 (-427))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1083 *6)) (-4 *6 (-880 *5 *3 *4)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *5 (-840)) (-5 *1 (-432 *3 *4 *5 *6))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-1083 *1)) (-4 *1 (-840)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1083 *9)) (-5 *4 (-589 *7)) (-5 *5 (-589 (-589 *8)))
- (-4 *7 (-786)) (-4 *8 (-284)) (-4 *9 (-880 *8 *6 *7)) (-4 *6 (-732))
- (-5 *2
- (-2 (|:| |upol| (-1083 *8)) (|:| |Lval| (-589 *8))
- (|:| |Lfact|
- (-589 (-2 (|:| -3573 (-1083 *8)) (|:| -3262 (-523)))))
- (|:| |ctpol| *8)))
- (-5 *1 (-682 *6 *7 *8 *9)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (-5 *2 (-525)) (-5 *1 (-186)))))
(((*1 *2 *3 *2)
- (-12 (-5 *2 (-852)) (-5 *3 (-589 (-240))) (-5 *1 (-238))))
- ((*1 *1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-240)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1127)) (-4 *5 (-1145 *4))
- (-5 *2
- (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-383 *5))
- (|:| |c2| (-383 *5)) (|:| |deg| (-710))))
- (-5 *1 (-137 *4 *5 *3)) (-4 *3 (-1145 (-383 *5))))))
+ (-12 (-5 *2 (-1 (-876 (-205)) (-876 (-205)))) (-5 *3 (-591 (-242)))
+ (-5 *1 (-240))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-876 (-205)) (-876 (-205)))) (-5 *1 (-242))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 (-457 *5 *6))) (-5 *3 (-457 *5 *6))
+ (-14 *5 (-591 (-1089))) (-4 *6 (-429)) (-5 *2 (-1171 *6))
+ (-5 *1 (-579 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-762)) (-5 *4 (-51)) (-5 *2 (-1176)) (-5 *1 (-772)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1169 (-1169 (-523)))) (-5 *1 (-441)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-339)) (-4 *3 (-973))
- (-5 *1 (-1072 *3)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-25)) (-4 *3 (-786))
- (-5 *2 (-2 (|:| -2275 (-523)) (|:| |var| (-562 *1))))
- (-4 *1 (-406 *3)))))
+ (-12 (-5 *2 (-396 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1147 (-47)))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *2 (-2 (|:| |less| (-117 *3)) (|:| |greater| (-117 *3))))
+ (-5 *1 (-117 *3)) (-4 *3 (-788))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-542 *4)) (-4 *4 (-13 (-29 *3) (-1111)))
+ (-4 *3 (-13 (-429) (-966 (-525)) (-788) (-587 (-525))))
+ (-5 *1 (-540 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-542 (-385 (-885 *3))))
+ (-4 *3 (-13 (-429) (-966 (-525)) (-788) (-587 (-525))))
+ (-5 *1 (-545 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1147 *5)) (-4 *5 (-341))
+ (-5 *2 (-2 (|:| -1572 *3) (|:| |special| *3))) (-5 *1 (-669 *5 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1171 *5)) (-4 *5 (-341)) (-4 *5 (-975))
+ (-5 *2 (-591 (-591 (-631 *5)))) (-5 *1 (-958 *5))
+ (-5 *3 (-591 (-631 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1171 (-1171 *5))) (-4 *5 (-341)) (-4 *5 (-975))
+ (-5 *2 (-591 (-591 (-631 *5)))) (-5 *1 (-958 *5))
+ (-5 *3 (-591 (-631 *5)))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-132)) (-5 *2 (-591 *1)) (-4 *1 (-1058))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-135)) (-5 *2 (-591 *1)) (-4 *1 (-1058)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-5 *2 (-591 *3)) (-5 *1 (-42 *4 *3))
+ (-4 *3 (-395 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3))
+ (-4 *3 (-13 (-341) (-1111) (-932))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-161 *3)) (-4 *3 (-286))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-618 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-4 *1 (-682 *3 *4)) (-4 *3 (-975))
+ (-4 *4 (-788))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-802 *3)) (-5 *2 (-525))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *1 (-911 *3)) (-4 *3 (-975))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-591 *1)) (-5 *3 (-591 *7)) (-4 *1 (-994 *4 *5 *6 *7))
+ (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 *1))
+ (-4 *1 (-994 *4 *5 *6 *7))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-591 *1)) (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-591 *1))
+ (-4 *1 (-994 *4 *5 *6 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-975)) (-4 *2 (-733)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-997 *3 *4 *5))) (-4 *3 (-1018))
+ (-4 *4 (-13 (-975) (-819 *3) (-788) (-566 (-825 *3))))
+ (-4 *5 (-13 (-408 *4) (-819 *3) (-566 (-825 *3))))
+ (-5 *1 (-998 *3 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-341)) (-4 *6 (-1147 (-385 *2)))
+ (-4 *2 (-1147 *5)) (-5 *1 (-196 *5 *2 *6 *3))
+ (-4 *3 (-320 *5 *2 *6)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-429)) (-4 *3 (-788)) (-4 *4 (-734))
+ (-5 *1 (-918 *2 *3 *4 *5)) (-4 *5 (-882 *2 *4 *3)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-429)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9)
+ (-12 (-5 *4 (-525)) (-5 *5 (-1072)) (-5 *6 (-631 (-205)))
+ (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-87 G))))
+ (-5 *8 (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))))
+ (-5 *9 (-3 (|:| |fn| (-366)) (|:| |fp| (-86 OUTPUT))))
+ (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-691)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1138 (-525))) (-4 *1 (-596 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-596 *3)) (-4 *3 (-1125)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-905 *3 *4 *2 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-987 *3 *4 *2)) (-4 *2 (-786))))
+ (-12 (-5 *2 (-806 (-898 *3) (-898 *3))) (-5 *1 (-898 *3))
+ (-4 *3 (-899)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-525)) (-4 *1 (-55 *4 *3 *5)) (-4 *4 (-1125))
+ (-4 *3 (-351 *4)) (-4 *5 (-351 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1147 *5)) (-4 *5 (-341))
+ (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3)))
+ (-5 *1 (-535 *5 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4))
+ (-4 *3 (-345 *4))))
+ ((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-564 (-47)))) (-5 *1 (-47))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-564 (-47))) (-5 *1 (-47))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1085 (-47))) (-5 *3 (-591 (-564 (-47)))) (-5 *1 (-47))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1085 (-47))) (-5 *3 (-564 (-47))) (-5 *1 (-47))))
+ ((*1 *2 *1) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-341) (-786))) (-5 *1 (-167 *2 *3))
+ (-4 *3 (-1147 (-157 *2)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-854)) (-4 *1 (-307 *3)) (-4 *3 (-341)) (-4 *3 (-346))))
+ ((*1 *2 *1) (-12 (-4 *1 (-307 *2)) (-4 *2 (-341))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-348 *2 *3)) (-4 *3 (-1147 *2)) (-4 *2 (-160))))
+ ((*1 *2 *1)
+ (-12 (-4 *4 (-1147 *2)) (-4 *2 (-923 *3)) (-5 *1 (-391 *3 *2 *4 *5))
+ (-4 *3 (-286)) (-4 *5 (-13 (-387 *2 *4) (-966 *2)))))
((*1 *2 *1)
- (-12 (-4 *1 (-987 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *2 (-786)))))
+ (-12 (-4 *4 (-1147 *2)) (-4 *2 (-923 *3))
+ (-5 *1 (-392 *3 *2 *4 *5 *6)) (-4 *3 (-286)) (-4 *5 (-387 *2 *4))
+ (-14 *6 (-1171 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-854)) (-4 *5 (-975))
+ (-4 *2 (-13 (-382) (-966 *5) (-341) (-1111) (-263)))
+ (-5 *1 (-420 *5 *3 *2)) (-4 *3 (-1147 *5))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-564 (-468)))) (-5 *1 (-468))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-564 (-468))) (-5 *1 (-468))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1085 (-468))) (-5 *3 (-591 (-564 (-468))))
+ (-5 *1 (-468))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1085 (-468))) (-5 *3 (-564 (-468))) (-5 *1 (-468))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1171 *4)) (-5 *3 (-854)) (-4 *4 (-327))
+ (-5 *1 (-495 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-429)) (-4 *5 (-666 *4 *2)) (-4 *2 (-1147 *4))
+ (-5 *1 (-716 *4 *2 *5 *3)) (-4 *3 (-1147 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160))))
+ ((*1 *2 *1) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160))))
+ ((*1 *1 *1) (-4 *1 (-984))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
(((*1 *2)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))))
-(((*1 *2 *3 *4 *5 *6 *5 *3 *7)
- (-12 (-5 *4 (-523))
- (-5 *6
- (-2 (|:| |try| (-355)) (|:| |did| (-355)) (|:| -2025 (-355))))
- (-5 *7 (-1 (-1174) (-1169 *5) (-1169 *5) (-355)))
- (-5 *3 (-1169 (-355))) (-5 *5 (-355)) (-5 *2 (-1174))
- (-5 *1 (-727))))
- ((*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3)
- (-12 (-5 *4 (-523))
- (-5 *6
- (-2 (|:| |try| (-355)) (|:| |did| (-355)) (|:| -2025 (-355))))
- (-5 *7 (-1 (-1174) (-1169 *5) (-1169 *5) (-355)))
- (-5 *3 (-1169 (-355))) (-5 *5 (-355)) (-5 *2 (-1174))
- (-5 *1 (-727)))))
-(((*1 *2 *2) (-12 (-5 *1 (-891 *2)) (-4 *2 (-508)))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-259))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-898 *3)) (-4 *3 (-899)))))
(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-885 *4))) (-4 *4 (-429)) (-5 *2 (-108))
+ (-5 *1 (-338 *4 *5)) (-14 *5 (-591 (-1089)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-721 *4 (-798 *5)))) (-4 *4 (-429))
+ (-14 *5 (-591 (-1089))) (-5 *2 (-108)) (-5 *1 (-576 *4 *5)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 (-51))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-320 *4 *3 *5)) (-4 *4 (-1129)) (-4 *3 (-1147 *4))
+ (-4 *5 (-1147 (-385 *3))) (-5 *2 (-108))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))))
+(((*1 *2 *3 *4 *5 *6 *7 *7 *8)
(-12
(-5 *3
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
+ (-2 (|:| |det| *12) (|:| |rows| (-591 (-525)))
+ (|:| |cols| (-591 (-525)))))
+ (-5 *4 (-631 *12)) (-5 *5 (-591 (-385 (-885 *9))))
+ (-5 *6 (-591 (-591 *12))) (-5 *7 (-712)) (-5 *8 (-525))
+ (-4 *9 (-13 (-286) (-138))) (-4 *12 (-882 *9 *11 *10))
+ (-4 *10 (-13 (-788) (-566 (-1089)))) (-4 *11 (-734))
(-5 *2
- (-3 (|:| |finite| "The range is finite")
- (|:| |lowerInfinite| "The bottom of range is infinite")
- (|:| |upperInfinite| "The top of range is infinite")
- (|:| |bothInfinite| "Both top and bottom points are infinite")
- (|:| |notEvaluated| "Range not yet evaluated")))
- (-5 *1 (-172)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-710)) (-5 *1 (-722 *2)) (-4 *2 (-37 (-383 (-523))))
- (-4 *2 (-158)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1070))
- (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-108)) (-5 *1 (-202 *4 *5)) (-4 *5 (-13 (-1109) (-29 *4))))))
+ (-2 (|:| |eqzro| (-591 *12)) (|:| |neqzro| (-591 *12))
+ (|:| |wcond| (-591 (-885 *9)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1171 (-385 (-885 *9))))
+ (|:| -4003 (-591 (-1171 (-385 (-885 *9)))))))))
+ (-5 *1 (-857 *9 *10 *11 *12)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-591 (-385 (-885 (-525))))) (-5 *4 (-591 (-1089)))
+ (-5 *2 (-591 (-591 *5))) (-5 *1 (-358 *5))
+ (-4 *5 (-13 (-786) (-341)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 (-885 (-525)))) (-5 *2 (-591 *4)) (-5 *1 (-358 *4))
+ (-4 *4 (-13 (-786) (-341))))))
+(((*1 *1 *2) (-12 (-5 *2 (-1036)) (-5 *1 (-762)))))
+(((*1 *2)
+ (-12 (-4 *2 (-13 (-408 *3) (-932))) (-5 *1 (-255 *3 *2))
+ (-4 *3 (-13 (-788) (-517))))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-135)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357))
+ (-5 *2
+ (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525))
+ (|:| |success| (-108))))
+ (-5 *1 (-730)) (-5 *5 (-525)))))
+(((*1 *2 *3 *3 *3)
+ (|partial| -12 (-4 *4 (-13 (-341) (-138) (-966 (-525))))
+ (-4 *5 (-1147 *4)) (-5 *2 (-591 (-385 *5))) (-5 *1 (-946 *4 *5))
+ (-5 *3 (-385 *5)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5))
+ (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-1182 *3 *4 *5 *6))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-591 *8)) (-5 *3 (-1 (-108) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-517))
+ (-4 *6 (-734)) (-4 *7 (-788)) (-5 *1 (-1182 *5 *6 *7 *8)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-917 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-1023 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *1) (-5 *1 (-413))))
-(((*1 *2 *2 *2)
- (-12 (-4 *2 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523)))))))
- (-5 *1 (-1042 *3 *2)) (-4 *3 (-1145 *2)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1169 *4)) (-4 *4 (-973)) (-4 *2 (-1145 *4))
- (-5 *1 (-419 *4 *2))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-383 (-1083 (-292 *5)))) (-5 *3 (-1169 (-292 *5)))
- (-5 *4 (-523)) (-4 *5 (-13 (-515) (-786))) (-5 *1 (-1044 *5)))))
-(((*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-966)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-157)))))
-(((*1 *1 *1) (-4 *1 (-91))) ((*1 *1 *1 *1) (-5 *1 (-203)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
+ (-12 (-5 *2 (-591 *3)) (-5 *1 (-893 *3)) (-4 *3 (-510)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-341)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3))
+ (-5 *1 (-492 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4))
+ (-4 *7 (-923 *4)) (-4 *2 (-629 *7 *8 *9))
+ (-5 *1 (-493 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-629 *4 *5 *6))
+ (-4 *8 (-351 *7)) (-4 *9 (-351 *7))))
((*1 *1 *1)
- (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087)))
- (-14 *3 (-589 (-1087))) (-4 *4 (-363))))
- ((*1 *1 *1 *1) (-5 *1 (-355)))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
+ (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2))
+ (-4 *4 (-351 *2)) (-4 *2 (-286))))
((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523)))))
- (-4 *3 (-1145 *4)) (-5 *1 (-748 *4 *3 *2 *5)) (-4 *2 (-599 *3))
- (-4 *5 (-599 (-383 *3)))))
+ (-12 (-4 *3 (-286)) (-4 *3 (-160)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *1 (-630 *3 *4 *5 *2))
+ (-4 *2 (-629 *3 *4 *5))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-383 *5))
- (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *5 (-1145 *4))
- (-5 *1 (-748 *4 *5 *2 *6)) (-4 *2 (-599 *5)) (-4 *6 (-599 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-339) (-136) (-964 (-523)))) (-4 *5 (-1145 *4))
- (-5 *2 (-2 (|:| |ans| (-383 *5)) (|:| |nosol| (-108))))
- (-5 *1 (-943 *4 *5)) (-5 *3 (-383 *5)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -3699 *6) (|:| |coeff| *6)) "failed") *6))
- (-4 *6 (-339)) (-4 *7 (-1145 *6))
- (-5 *2
- (-3 (-2 (|:| |answer| (-383 *7)) (|:| |a0| *6))
- (-2 (|:| -3699 (-383 *7)) (|:| |coeff| (-383 *7))) "failed"))
- (-5 *1 (-533 *6 *7)) (-5 *3 (-383 *7)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-108)) (-5 *1 (-110))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-279)) (-5 *3 (-1087)) (-5 *2 (-108))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-279)) (-5 *3 (-110)) (-5 *2 (-108))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1087)) (-5 *2 (-108)) (-5 *1 (-562 *4)) (-4 *4 (-786))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-562 *4)) (-4 *4 (-786))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1016)) (-5 *2 (-108)) (-5 *1 (-818 *5 *3 *4))
- (-4 *3 (-817 *5)) (-4 *4 (-564 (-823 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *6)) (-4 *6 (-817 *5)) (-4 *5 (-1016))
- (-5 *2 (-108)) (-5 *1 (-818 *5 *6 *4)) (-4 *4 (-564 (-823 *5))))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-592 *3 *4 *5)) (-4 *3 (-1016))
- (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-5 *1 (-303 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-5 *1 (-486 *3 *4))
- (-14 *4 (-523)))))
+ (-12 (-5 *2 (-631 *3)) (-4 *3 (-286)) (-5 *1 (-641 *3))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-978 *2 *3 *4 *5 *6)) (-4 *4 (-975))
+ (-4 *5 (-218 *3 *4)) (-4 *6 (-218 *2 *4)) (-4 *4 (-286)))))
+(((*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796)))))
+(((*1 *2)
+ (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-1176))
+ (-5 *1 (-919 *3 *4 *5 *6 *7)) (-4 *7 (-994 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-1176))
+ (-5 *1 (-1025 *3 *4 *5 *6 *7)) (-4 *7 (-994 *3 *4 *5 *6)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))
- (-5 *2 (-355)) (-5 *1 (-244))))
+ (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))
+ (-5 *2 (-357)) (-5 *1 (-246))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1171 (-294 (-205)))) (-5 *2 (-357)) (-5 *1 (-284)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-854)) (-5 *4 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1112 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357))
+ (-5 *2
+ (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525))
+ (|:| |success| (-108))))
+ (-5 *1 (-730)) (-5 *5 (-525)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *2 (-989 *4 *5 *6)) (-5 *1 (-717 *4 *5 *6 *2 *3))
+ (-4 *3 (-994 *4 *5 *6 *2)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1089)) (-5 *3 (-591 *1)) (-4 *1 (-408 *4))
+ (-4 *4 (-788))))
+ ((*1 *1 *2 *1 *1 *1 *1)
+ (-12 (-5 *2 (-1089)) (-4 *1 (-408 *3)) (-4 *3 (-788))))
+ ((*1 *1 *2 *1 *1 *1)
+ (-12 (-5 *2 (-1089)) (-4 *1 (-408 *3)) (-4 *3 (-788))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1089)) (-4 *1 (-408 *3)) (-4 *3 (-788))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-1089)) (-4 *1 (-408 *3)) (-4 *3 (-788)))))
+(((*1 *2 *3) (-12 (-5 *3 (-157 (-525))) (-5 *2 (-108)) (-5 *1 (-423))))
((*1 *2 *3)
- (-12 (-5 *3 (-1169 (-292 (-203)))) (-5 *2 (-355)) (-5 *1 (-282)))))
-(((*1 *2 *3)
(-12
(-5 *3
- (-589
- (-2 (|:| -2262 (-710))
- (|:| |eqns|
- (-589
- (-2 (|:| |det| *7) (|:| |rows| (-589 (-523)))
- (|:| |cols| (-589 (-523))))))
- (|:| |fgb| (-589 *7)))))
- (-4 *7 (-880 *4 *6 *5)) (-4 *4 (-13 (-284) (-136)))
- (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-710))
- (-5 *1 (-855 *4 *5 *6 *7)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1070)) (-5 *1 (-1105)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-1048 *3)) (-4 *3 (-973))))
+ (-477 (-385 (-525)) (-220 *5 (-712)) (-798 *4)
+ (-227 *4 (-385 (-525)))))
+ (-14 *4 (-591 (-1089))) (-14 *5 (-712)) (-5 *2 (-108))
+ (-5 *1 (-478 *4 *5))))
+ ((*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-893 *3)) (-4 *3 (-510))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-108)))))
+(((*1 *2)
+ (-12 (-4 *3 (-517)) (-5 *2 (-591 (-631 *3))) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-395 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-110)) (-4 *4 (-975)) (-5 *1 (-656 *4 *2))
+ (-4 *2 (-593 *4))))
+ ((*1 *2 *3 *2) (-12 (-5 *3 (-110)) (-5 *1 (-775 *2)) (-4 *2 (-975)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-341)) (-4 *3 (-975))
+ (-5 *1 (-1074 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975))
+ (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-108)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-632 *3)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-723 *2)) (-4 *2 (-975)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-712)) (-4 *4 (-286)) (-4 *6 (-1147 *4))
+ (-5 *2 (-1171 (-591 *6))) (-5 *1 (-432 *4 *6)) (-5 *5 (-591 *6)))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-202 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-4 *1 (-233 *3))))
+ ((*1 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1085 *1)) (-5 *4 (-1089)) (-4 *1 (-27))
+ (-5 *2 (-591 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1085 *1)) (-4 *1 (-27)) (-5 *2 (-591 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-885 *1)) (-4 *1 (-27)) (-5 *2 (-591 *1))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-591 *1))
+ (-4 *1 (-29 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *2 (-591 *1)) (-4 *1 (-29 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-515 *3)) (-4 *3 (-13 (-382) (-1111))) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-4 *1 (-786)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-991 *4 *3)) (-4 *4 (-13 (-786) (-341)))
+ (-4 *3 (-1147 *4)) (-5 *2 (-108)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788))))
((*1 *2 *2 *1)
- (|partial| -12 (-5 *2 (-383 *1)) (-4 *1 (-1145 *3)) (-4 *3 (-973))
- (-4 *3 (-515))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-1145 *2)) (-4 *2 (-973)) (-4 *2 (-515)))))
+ (-12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-108)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-788)) (-5 *1 (-862 *3 *2)) (-4 *2 (-408 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1089)) (-5 *2 (-294 (-525))) (-5 *1 (-863)))))
+(((*1 *2 *3 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205))
+ (-5 *2 (-964)) (-5 *1 (-694)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1009 (-779 *3))) (-4 *3 (-13 (-1109) (-889) (-29 *5)))
- (-4 *5 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-5 *2
- (-3 (|:| |f1| (-779 *3)) (|:| |f2| (-589 (-779 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-197 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1009 (-779 *3))) (-5 *5 (-1070))
- (-4 *3 (-13 (-1109) (-889) (-29 *6)))
- (-4 *6 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))))
+ (-12 (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-517))
+ (-4 *7 (-882 *3 *5 *6))
+ (-5 *2 (-2 (|:| -2008 (-712)) (|:| -3482 *8) (|:| |radicand| *8)))
+ (-5 *1 (-886 *5 *6 *3 *7 *8)) (-5 *4 (-712))
+ (-4 *8
+ (-13 (-341)
+ (-10 -8 (-15 -1738 (*7 $)) (-15 -1754 (*7 $)) (-15 -3022 ($ *7))))))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1138 *3)) (-4 *3 (-1125)))))
+(((*1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-369)))))
+(((*1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-254)))))
+(((*1 *1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-598 (-385 *6))) (-5 *4 (-385 *6)) (-4 *6 (-1147 *5))
+ (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
(-5 *2
- (-3 (|:| |f1| (-779 *3)) (|:| |f2| (-589 (-779 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-197 *6 *3))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4))))
+ (-5 *1 (-751 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-1009 (-779 (-292 *5))))
- (-4 *5 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-5 *2
- (-3 (|:| |f1| (-779 (-292 *5))) (|:| |f2| (-589 (-779 (-292 *5))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-198 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-383 (-883 *6))) (-5 *4 (-1009 (-779 (-292 *6))))
- (-5 *5 (-1070))
- (-4 *6 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-5 *2
- (-3 (|:| |f1| (-779 (-292 *6))) (|:| |f2| (-589 (-779 (-292 *6))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-198 *6))))
+ (-12 (-5 *3 (-598 (-385 *6))) (-4 *6 (-1147 *5))
+ (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-5 *2 (-2 (|:| -4003 (-591 (-385 *6))) (|:| -4057 (-631 *5))))
+ (-5 *1 (-751 *5 *6)) (-5 *4 (-591 (-385 *6)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1009 (-779 (-383 (-883 *5))))) (-5 *3 (-383 (-883 *5)))
- (-4 *5 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))))
+ (-12 (-5 *3 (-599 *6 (-385 *6))) (-5 *4 (-385 *6)) (-4 *6 (-1147 *5))
+ (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
(-5 *2
- (-3 (|:| |f1| (-779 (-292 *5))) (|:| |f2| (-589 (-779 (-292 *5))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-198 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1009 (-779 (-383 (-883 *6))))) (-5 *5 (-1070))
- (-5 *3 (-383 (-883 *6)))
- (-4 *6 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-5 *2
- (-3 (|:| |f1| (-779 (-292 *6))) (|:| |f2| (-589 (-779 (-292 *6))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-198 *6))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4))))
+ (-5 *1 (-751 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087))
- (-4 *5 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-3 *3 (-589 *3))) (-5 *1 (-404 *5 *3))
- (-4 *3 (-13 (-1109) (-889) (-29 *5)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-449 *3 *4 *5))
- (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-14 *5 *3)))
- ((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-292 (-355))) (-5 *4 (-1011 (-779 (-355))))
- (-5 *5 (-355)) (-5 *6 (-985)) (-5 *2 (-962)) (-5 *1 (-524))))
- ((*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-962)) (-5 *1 (-524))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-292 (-355))) (-5 *4 (-1011 (-779 (-355))))
- (-5 *5 (-355)) (-5 *2 (-962)) (-5 *1 (-524))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-292 (-355))) (-5 *4 (-1011 (-779 (-355))))
- (-5 *5 (-355)) (-5 *2 (-962)) (-5 *1 (-524))))
+ (-12 (-5 *3 (-599 *6 (-385 *6))) (-4 *6 (-1147 *5))
+ (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-5 *2 (-2 (|:| -4003 (-591 (-385 *6))) (|:| -4057 (-631 *5))))
+ (-5 *1 (-751 *5 *6)) (-5 *4 (-591 (-385 *6))))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-885 (-525)))) (-5 *1 (-415))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-292 (-355))) (-5 *4 (-1011 (-779 (-355))))
- (-5 *2 (-962)) (-5 *1 (-524))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-292 (-355))) (-5 *4 (-589 (-1011 (-779 (-355)))))
- (-5 *2 (-962)) (-5 *1 (-524))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-292 (-355))) (-5 *4 (-589 (-1011 (-779 (-355)))))
- (-5 *5 (-355)) (-5 *2 (-962)) (-5 *1 (-524))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-292 (-355))) (-5 *4 (-589 (-1011 (-779 (-355)))))
- (-5 *5 (-355)) (-5 *2 (-962)) (-5 *1 (-524))))
- ((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-292 (-355))) (-5 *4 (-589 (-1011 (-779 (-355)))))
- (-5 *5 (-355)) (-5 *6 (-985)) (-5 *2 (-962)) (-5 *1 (-524))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-292 (-355))) (-5 *4 (-1009 (-779 (-355))))
- (-5 *5 (-1070)) (-5 *2 (-962)) (-5 *1 (-524))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-292 (-355))) (-5 *4 (-1009 (-779 (-355))))
- (-5 *5 (-1087)) (-5 *2 (-962)) (-5 *1 (-524))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-339) (-136) (-964 (-523)))) (-4 *5 (-1145 *4))
- (-5 *2 (-540 (-383 *5))) (-5 *1 (-527 *4 *5)) (-5 *3 (-383 *5))))
+ (-12 (-5 *3 (-1089)) (-5 *4 (-631 (-205))) (-5 *2 (-1022))
+ (-5 *1 (-701))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-1087)) (-4 *5 (-136))
- (-4 *5 (-13 (-427) (-964 (-523)) (-786) (-585 (-523))))
- (-5 *2 (-3 (-292 *5) (-589 (-292 *5)))) (-5 *1 (-543 *5))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-680 *3 *2)) (-4 *3 (-973)) (-4 *2 (-786))
- (-4 *3 (-37 (-383 (-523))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1087)) (-5 *1 (-883 *3)) (-4 *3 (-37 (-383 (-523))))
- (-4 *3 (-973))))
- ((*1 *1 *1 *2 *3)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-4 *2 (-786))
- (-5 *1 (-1040 *3 *2 *4)) (-4 *4 (-880 *3 (-495 *2) *2))))
+ (-12 (-5 *3 (-1089)) (-5 *4 (-631 (-525))) (-5 *2 (-1022))
+ (-5 *1 (-701)))))
+(((*1 *2 *3 *4 *5 *6 *2 *7 *8)
+ (|partial| -12 (-5 *2 (-591 (-1085 *11))) (-5 *3 (-1085 *11))
+ (-5 *4 (-591 *10)) (-5 *5 (-591 *8)) (-5 *6 (-591 (-712)))
+ (-5 *7 (-1171 (-591 (-1085 *8)))) (-4 *10 (-788))
+ (-4 *8 (-286)) (-4 *11 (-882 *8 *9 *10)) (-4 *9 (-734))
+ (-5 *1 (-649 *9 *10 *8 *11)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5))
+ (-5 *2 (-2 (|:| -3529 (-591 *6)) (|:| -1976 (-591 *6)))))))
+(((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *1 *2 *2) (-12 (-5 *1 (-273 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1072)) (-5 *1 (-920))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1089)) (-5 *3 (-1013 *4)) (-4 *4 (-1125))
+ (-5 *1 (-1011 *4)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-14 *4 (-591 (-1089))) (-4 *2 (-160))
+ (-4 *3 (-218 (-4045 *4) (-712)))
+ (-14 *6
+ (-1 (-108) (-2 (|:| -2226 *5) (|:| -2008 *3))
+ (-2 (|:| -2226 *5) (|:| -2008 *3))))
+ (-5 *1 (-438 *4 *2 *5 *3 *6 *7)) (-4 *5 (-788))
+ (-4 *7 (-882 *2 *3 (-798 *4))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 *3))
+ (-5 *1 (-908 *4 *5 *6 *3)) (-4 *3 (-989 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-989 *4 *5 *6)) (-4 *4 (-517))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-908 *4 *5 *6 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-591 *7) (-591 *7))) (-5 *2 (-591 *7))
+ (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-5 *1 (-908 *4 *5 *6 *7)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-591 *2)) (-5 *1 (-166 *2)) (-4 *2 (-286))))
((*1 *2 *3 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973))
- (-5 *1 (-1072 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1078 *3 *4 *5))
- (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1084 *3 *4 *5))
- (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1085 *3 *4 *5))
- (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-14 *5 *3)))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *1 (-1118 *3)) (-4 *3 (-37 (-383 (-523))))
- (-4 *3 (-973))))
- ((*1 *1 *1 *2)
- (-3255
- (-12 (-5 *2 (-1087)) (-4 *1 (-1129 *3)) (-4 *3 (-973))
- (-12 (-4 *3 (-29 (-523))) (-4 *3 (-889)) (-4 *3 (-1109))
- (-4 *3 (-37 (-383 (-523))))))
- (-12 (-5 *2 (-1087)) (-4 *1 (-1129 *3)) (-4 *3 (-973))
- (-12 (|has| *3 (-15 -3716 ((-589 *2) *3)))
- (|has| *3 (-15 -2669 (*3 *3 *2))) (-4 *3 (-37 (-383 (-523))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1129 *2)) (-4 *2 (-973)) (-4 *2 (-37 (-383 (-523))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1133 *3 *4 *5))
- (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-14 *5 *3)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1145 *2)) (-4 *2 (-973)) (-4 *2 (-37 (-383 (-523))))))
- ((*1 *1 *1 *2)
- (-3255
- (-12 (-5 *2 (-1087)) (-4 *1 (-1150 *3)) (-4 *3 (-973))
- (-12 (-4 *3 (-29 (-523))) (-4 *3 (-889)) (-4 *3 (-1109))
- (-4 *3 (-37 (-383 (-523))))))
- (-12 (-5 *2 (-1087)) (-4 *1 (-1150 *3)) (-4 *3 (-973))
- (-12 (|has| *3 (-15 -3716 ((-589 *2) *3)))
- (|has| *3 (-15 -2669 (*3 *3 *2))) (-4 *3 (-37 (-383 (-523))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1150 *2)) (-4 *2 (-973)) (-4 *2 (-37 (-383 (-523))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1154 *3 *4 *5))
- (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-3255
- (-12 (-5 *2 (-1087)) (-4 *1 (-1160 *3)) (-4 *3 (-973))
- (-12 (-4 *3 (-29 (-523))) (-4 *3 (-889)) (-4 *3 (-1109))
- (-4 *3 (-37 (-383 (-523))))))
- (-12 (-5 *2 (-1087)) (-4 *1 (-1160 *3)) (-4 *3 (-973))
- (-12 (|has| *3 (-15 -3716 ((-589 *2) *3)))
- (|has| *3 (-15 -2669 (*3 *3 *2))) (-4 *3 (-37 (-383 (-523))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1160 *2)) (-4 *2 (-973)) (-4 *2 (-37 (-383 (-523))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1165 *4)) (-14 *4 (-1087)) (-5 *1 (-1161 *3 *4 *5))
- (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)) (-14 *5 *3))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 (-155 (-383 (-523)))))
+ (-12 (-5 *3 (-591 (-591 *4))) (-5 *2 (-591 *4)) (-4 *4 (-286))
+ (-5 *1 (-166 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-591 *8))
+ (-5 *4
+ (-591
+ (-2 (|:| -4003 (-631 *7)) (|:| |basisDen| *7)
+ (|:| |basisInv| (-631 *7)))))
+ (-5 *5 (-712)) (-4 *8 (-1147 *7)) (-4 *7 (-1147 *6)) (-4 *6 (-327))
(-5 *2
- (-589
- (-2 (|:| |outval| (-155 *4)) (|:| |outmult| (-523))
- (|:| |outvect| (-589 (-629 (-155 *4)))))))
- (-5 *1 (-704 *4)) (-4 *4 (-13 (-339) (-784))))))
-(((*1 *1 *1) (-4 *1 (-91)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087)))
- (-14 *3 (-589 (-1087))) (-4 *4 (-363))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410)))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1087)) (-5 *2 (-1091)) (-5 *1 (-1090)))))
-(((*1 *1)
- (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *5 (-108))
- (-5 *2 (-962)) (-5 *1 (-685)))))
-(((*1 *2 *3 *2 *4 *5)
- (-12 (-5 *2 (-589 *3)) (-5 *5 (-852)) (-4 *3 (-1145 *4))
- (-4 *4 (-284)) (-5 *1 (-435 *4 *3)))))
+ (-2 (|:| -4003 (-631 *7)) (|:| |basisDen| *7)
+ (|:| |basisInv| (-631 *7))))
+ (-5 *1 (-471 *6 *7 *8))))
+ ((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1083 (-523))) (-5 *1 (-873)) (-5 *3 (-523))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-284)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3))
- (-5 *1 (-1038 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1 (-108) *2)) (-4 *1 (-140 *2))
- (-4 *2 (-1123)))))
-(((*1 *2 *1)
- (-12 (-14 *3 (-589 (-1087))) (-4 *4 (-158))
- (-14 *6
- (-1 (-108) (-2 (|:| -2557 *5) (|:| -3262 *2))
- (-2 (|:| -2557 *5) (|:| -3262 *2))))
- (-4 *2 (-216 (-1271 *3) (-710))) (-5 *1 (-436 *3 *4 *5 *2 *6 *7))
- (-4 *5 (-786)) (-4 *7 (-880 *4 *2 (-796 *3))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-617 *3)) (-4 *3 (-973)) (-4 *3 (-1016)))))
-(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-442))))
- ((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-442)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-302 *3 *4)) (-4 *3 (-973))
- (-4 *4 (-731)) (-4 *3 (-158)))))
-(((*1 *1 *1) (-4 *1 (-91)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087)))
- (-14 *3 (-589 (-1087))) (-4 *4 (-363))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (-5 *2
+ (-3 (|:| |finite| "The range is finite")
+ (|:| |lowerInfinite| "The bottom of range is infinite")
+ (|:| |upperInfinite| "The top of range is infinite")
+ (|:| |bothInfinite| "Both top and bottom points are infinite")
+ (|:| |notEvaluated| "Range not yet evaluated")))
+ (-5 *1 (-174)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4))))
+ (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(((*1 *2 *3 *3 *1)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-3 *3 (-591 *1)))
+ (-4 *1 (-994 *4 *5 *6 *3)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-631 (-525))) (-5 *1 (-1028)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-221)) (-5 *3 (-1072))))
+ ((*1 *2 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-221))))
+ ((*1 *1 *2) (-12 (-5 *2 (-146)) (-5 *1 (-807)))))
+(((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *1 *1 *1) (-4 *1 (-703))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-508)) (-5 *1 (-146 *2)))))
+ (-12 (-5 *3 (-591 (-227 *4 *5))) (-5 *2 (-227 *4 *5))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-429)) (-5 *1 (-579 *4 *5)))))
+(((*1 *2 *1 *3 *4 *4 *5)
+ (-12 (-5 *3 (-876 (-205))) (-5 *4 (-807)) (-5 *5 (-854))
+ (-5 *2 (-1176)) (-5 *1 (-445))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-876 (-205))) (-5 *2 (-1176)) (-5 *1 (-445))))
+ ((*1 *2 *1 *3 *4 *4 *5)
+ (-12 (-5 *3 (-591 (-876 (-205)))) (-5 *4 (-807)) (-5 *5 (-854))
+ (-5 *2 (-1176)) (-5 *1 (-445)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1072)) (-5 *3 (-764)) (-5 *1 (-763)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-396 *2)) (-4 *2 (-517)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850))))
+ ((*1 *2) (-12 (-5 *2 (-837 (-525))) (-5 *1 (-850)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3 (-525))) (-4 *3 (-975)) (-5 *1 (-94 *3))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-975)) (-5 *1 (-94 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-975)) (-5 *1 (-94 *3)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-623 *4 *3)) (-4 *4 (-1016))
- (-4 *3 (-1016)))))
-(((*1 *1 *1) (-4 *1 (-575)))
+ (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)) (-5 *3 (-525)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1125)) (-5 *1 (-168 *3 *2)) (-4 *2 (-618 *3)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-957 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-591 (-631 *3))) (-4 *3 (-975)) (-5 *1 (-957 *3))))
+ ((*1 *2 *2) (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-957 *3))))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-576 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930) (-1109))))))
-(((*1 *2 *3 *4 *4 *3 *3 *5)
- (|partial| -12 (-5 *4 (-562 *3)) (-5 *5 (-1083 *3))
- (-4 *3 (-13 (-406 *6) (-27) (-1109)))
- (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *2 (-2 (|:| -3699 *3) (|:| |coeff| *3)))
- (-5 *1 (-519 *6 *3 *7)) (-4 *7 (-1016))))
- ((*1 *2 *3 *4 *4 *3 *4 *3 *5)
- (|partial| -12 (-5 *4 (-562 *3)) (-5 *5 (-383 (-1083 *3)))
- (-4 *3 (-13 (-406 *6) (-27) (-1109)))
- (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *2 (-2 (|:| -3699 *3) (|:| |coeff| *3)))
- (-5 *1 (-519 *6 *3 *7)) (-4 *7 (-1016)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1070)) (-5 *1 (-282)))))
-(((*1 *2) (-12 (-5 *2 (-589 (-852))) (-5 *1 (-1172))))
- ((*1 *2 *2) (-12 (-5 *2 (-589 (-852))) (-5 *1 (-1172)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
+ (-12 (-5 *2 (-591 (-631 *3))) (-4 *3 (-975)) (-5 *1 (-957 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1072)) (-5 *1 (-652)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-564 *5)) (-4 *5 (-408 *4)) (-4 *4 (-966 (-525)))
+ (-4 *4 (-13 (-788) (-517))) (-5 *2 (-1085 *5)) (-5 *1 (-31 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-564 *1)) (-4 *1 (-975)) (-4 *1 (-281))
+ (-5 *2 (-1085 *1)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-154 *3)) (-4 *3 (-160)) (-4 *3 (-984)) (-4 *3 (-1111))
+ (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1016)) (-4 *5 (-1016))
- (-4 *6 (-1016)) (-5 *2 (-1 *6 *5)) (-5 *1 (-624 *4 *5 *6)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-394 *3)) (-4 *3 (-515)) (-5 *1 (-395 *3)))))
-(((*1 *1)
- (-12 (-4 *1 (-380)) (-2575 (|has| *1 (-6 -4239)))
- (-2575 (|has| *1 (-6 -4231)))))
- ((*1 *2 *1) (-12 (-4 *1 (-401 *2)) (-4 *2 (-1016)) (-4 *2 (-786))))
- ((*1 *1 *1 *1) (-4 *1 (-786)))
- ((*1 *2 *1) (-12 (-4 *1 (-898 *2)) (-4 *2 (-786))))
- ((*1 *1) (-5 *1 (-1034))))
+ (-12 (-4 *5 (-1018)) (-4 *3 (-833 *5)) (-5 *2 (-1171 *3))
+ (-5 *1 (-633 *5 *3 *6 *4)) (-4 *6 (-351 *3))
+ (-4 *4 (-13 (-351 *5) (-10 -7 (-6 -4250)))))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *3 (-525)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-396 *2)) (-4 *2 (-517)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-501)))))
+(((*1 *2 *3 *1 *4 *4 *4 *4 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-5 *2 (-591 (-956 *5 *6 *7 *3))) (-5 *1 (-956 *5 *6 *7 *3))
+ (-4 *3 (-989 *5 *6 *7))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-591 *6)) (-4 *1 (-994 *3 *4 *5 *6)) (-4 *3 (-429))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *1 (-994 *3 *4 *5 *2)) (-4 *3 (-429)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5))))
+ ((*1 *2 *3 *1 *4 *4 *4 *4 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-5 *2 (-591 (-1060 *5 *6 *7 *3))) (-5 *1 (-1060 *5 *6 *7 *3))
+ (-4 *3 (-989 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4))
+ (-4 *3 (-345 *4))))
+ ((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))))
+(((*1 *2 *1)
+ (|partial| -12
+ (-4 *3 (-13 (-788) (-966 (-525)) (-587 (-525)) (-429)))
+ (-5 *2 (-781 *4)) (-5 *1 (-291 *3 *4 *5 *6))
+ (-4 *4 (-13 (-27) (-1111) (-408 *3))) (-14 *5 (-1089))
+ (-14 *6 *4)))
+ ((*1 *2 *1)
+ (|partial| -12
+ (-4 *3 (-13 (-788) (-966 (-525)) (-587 (-525)) (-429)))
+ (-5 *2 (-781 *4)) (-5 *1 (-1157 *3 *4 *5 *6))
+ (-4 *4 (-13 (-27) (-1111) (-408 *3))) (-14 *5 (-1089))
+ (-14 *6 *4))))
(((*1 *2 *2)
- (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786))
- (-4 *6 (-987 *3 *4 *5)) (-5 *1 (-571 *3 *4 *5 *6 *7 *2))
- (-4 *7 (-992 *3 *4 *5 *6)) (-4 *2 (-1025 *3 *4 *5 *6)))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1083 *5)) (-4 *5 (-427)) (-5 *2 (-589 *6))
- (-5 *1 (-501 *5 *6 *4)) (-4 *6 (-339)) (-4 *4 (-13 (-339) (-784)))))
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-712)) (-4 *6 (-341)) (-5 *4 (-1120 *6))
+ (-5 *2 (-1 (-1070 *4) (-1070 *4))) (-5 *1 (-1179 *6))
+ (-5 *5 (-1070 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173))))
+ ((*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173)))))
+(((*1 *1 *2) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-198)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1089)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-643 *3 *5 *6 *7))
+ (-4 *3 (-566 (-501))) (-4 *5 (-1125)) (-4 *6 (-1125))
+ (-4 *7 (-1125))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-883 *5)) (-4 *5 (-427)) (-5 *2 (-589 *6))
- (-5 *1 (-501 *5 *6 *4)) (-4 *6 (-339)) (-4 *4 (-13 (-339) (-784))))))
+ (-12 (-5 *4 (-1089)) (-5 *2 (-1 *6 *5)) (-5 *1 (-648 *3 *5 *6))
+ (-4 *3 (-566 (-501))) (-4 *5 (-1125)) (-4 *6 (-1125)))))
+(((*1 *2 *2 *2 *2 *2 *3)
+ (-12 (-5 *2 (-631 *4)) (-5 *3 (-712)) (-4 *4 (-975))
+ (-5 *1 (-632 *4)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3))))
- ((*1 *1 *1) (-4 *1 (-1112))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-629 *3))
- (-4 *3 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $)))))
- (-4 *4 (-1145 *3)) (-5 *1 (-470 *3 *4 *5)) (-4 *5 (-385 *3 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))))
-(((*1 *2 *3 *4 *4 *2 *2 *2 *2)
- (-12 (-5 *2 (-523))
- (-5 *3
- (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-710)) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-4 *6 (-732)) (-4 *4 (-880 *5 *6 *7)) (-4 *5 (-427)) (-4 *7 (-786))
- (-5 *1 (-424 *5 *6 *7 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158))))
- ((*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158)))))
-(((*1 *1 *2) (-12 (-5 *1 (-205 *2)) (-4 *2 (-13 (-339) (-1109))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-427))
- (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-906 *3 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-515))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-906 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3))
- (-4 *3 (-13 (-339) (-1109) (-930)))))
- ((*1 *2)
- (|partial| -12 (-4 *4 (-1127)) (-4 *5 (-1145 (-383 *2)))
- (-4 *2 (-1145 *4)) (-5 *1 (-317 *3 *4 *2 *5))
- (-4 *3 (-318 *4 *2 *5))))
- ((*1 *2)
- (|partial| -12 (-4 *1 (-318 *3 *2 *4)) (-4 *3 (-1127))
- (-4 *4 (-1145 (-383 *2))) (-4 *2 (-1145 *3)))))
-(((*1 *2 *1)
- (|partial| -12
- (-4 *3 (-13 (-786) (-964 (-523)) (-585 (-523)) (-427)))
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-542 *3)) (-4 *3 (-341)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1162 *4))
+ (-4 *4 (-37 (-385 (-525))))
+ (-5 *2 (-1 (-1070 *4) (-1070 *4) (-1070 *4))) (-5 *1 (-1164 *4 *5)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *5 (-966 (-47)))
+ (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-4 *5 (-408 *4))
+ (-5 *2 (-396 (-1085 (-47)))) (-5 *1 (-413 *4 *5 *3))
+ (-4 *3 (-1147 *5)))))
+(((*1 *2) (-12 (-4 *1 (-382)) (-5 *2 (-854)))) ((*1 *1) (-4 *1 (-510)))
+ ((*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-640))))
+ ((*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-640))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-837 *3)) (-4 *3 (-1018)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-834 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *2) (-12 (-5 *1 (-834 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-517) (-788)))
+ (-4 *2 (-13 (-408 (-157 *4)) (-932) (-1111)))
+ (-5 *1 (-554 *4 *3 *2)) (-4 *3 (-13 (-408 *4) (-932) (-1111))))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *7) (|:| -3400 *7) (|:| |sol?| (-108)))
+ (-525) *7))
+ (-5 *6 (-591 (-385 *8))) (-4 *7 (-341)) (-4 *8 (-1147 *7))
+ (-5 *3 (-385 *8))
(-5 *2
(-2
- (|:| |%term|
- (-2 (|:| |%coef| (-1154 *4 *5 *6))
- (|:| |%expon| (-295 *4 *5 *6))
- (|:| |%expTerms|
- (-589 (-2 (|:| |k| (-383 (-523))) (|:| |c| *4))))))
- (|:| |%type| (-1070))))
- (-5 *1 (-1155 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1109) (-406 *3)))
- (-14 *5 (-1087)) (-14 *6 *4))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-589 *4)) (-4 *4 (-339)) (-5 *2 (-1169 *4))
- (-5 *1 (-753 *4 *3)) (-4 *3 (-599 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3))))
- ((*1 *1 *1) (-4 *1 (-1112))))
-(((*1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-1090)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-973)) (-5 *2 (-108)) (-5 *1 (-419 *4 *3))
- (-4 *3 (-1145 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *2 (-108)))))
-(((*1 *2 *1)
- (-12 (-14 *3 (-589 (-1087))) (-4 *4 (-158))
- (-4 *5 (-216 (-1271 *3) (-710)))
- (-14 *6
- (-1 (-108) (-2 (|:| -2557 *2) (|:| -3262 *5))
- (-2 (|:| -2557 *2) (|:| -3262 *5))))
- (-4 *2 (-786)) (-5 *1 (-436 *3 *4 *2 *5 *6 *7))
- (-4 *7 (-880 *4 *5 (-796 *3))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-271 (-383 (-883 *5)))) (-5 *4 (-1087))
- (-4 *5 (-13 (-284) (-786) (-136)))
- (-5 *2 (-1077 (-589 (-292 *5)) (-589 (-271 (-292 *5)))))
- (-5 *1 (-1043 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-1087))
- (-4 *5 (-13 (-284) (-786) (-136)))
- (-5 *2 (-1077 (-589 (-292 *5)) (-589 (-271 (-292 *5)))))
- (-5 *1 (-1043 *5)))))
+ (|:| |answer|
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (|:| |a0| *7)))
+ (-5 *1 (-535 *7 *8)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *2 (-108))))
+ (-12 (-4 *1 (-304 *2 *3)) (-4 *3 (-733)) (-4 *2 (-975))
+ (-4 *2 (-429))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 *4)) (-4 *4 (-1147 (-525))) (-5 *2 (-591 (-525)))
+ (-5 *1 (-461 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-429))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-882 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *2 (-788)) (-4 *3 (-429)))))
+(((*1 *2 *3 *4 *5 *6 *7 *6)
+ (|partial| -12
+ (-5 *5
+ (-2 (|:| |contp| *3)
+ (|:| -3781 (-591 (-2 (|:| |irr| *10) (|:| -3265 (-525)))))))
+ (-5 *6 (-591 *3)) (-5 *7 (-591 *8)) (-4 *8 (-788)) (-4 *3 (-286))
+ (-4 *10 (-882 *3 *9 *8)) (-4 *9 (-734))
+ (-5 *2
+ (-2 (|:| |polfac| (-591 *10)) (|:| |correct| *3)
+ (|:| |corrfact| (-591 (-1085 *3)))))
+ (-5 *1 (-574 *8 *9 *3 *10)) (-5 *4 (-591 (-1085 *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-108)) (-5 *1 (-530 *3)) (-4 *3 (-966 (-525)))))
((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973))
- (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-108)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-763)) (-5 *3 (-589 (-1087))) (-5 *1 (-764)))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-303 *3)) (-4 *3 (-1123))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-486 *3 *4)) (-4 *3 (-1123))
- (-14 *4 (-523)))))
-(((*1 *1) (-5 *1 (-130))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-629 *3)) (-4 *3 (-284)) (-5 *1 (-639 *3)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-383 (-883 *4))) (-5 *3 (-1087))
- (-4 *4 (-13 (-515) (-964 (-523)) (-136))) (-5 *1 (-529 *4)))))
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-919 *4 *5 *6 *7 *3))
+ (-4 *3 (-994 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 *3)) (-4 *3 (-994 *5 *6 *7 *8)) (-4 *5 (-429))
+ (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-989 *5 *6 *7)) (-5 *2 (-108))
+ (-5 *1 (-919 *5 *6 *7 *8 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108))
+ (-5 *1 (-1025 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 *3)) (-4 *3 (-994 *5 *6 *7 *8)) (-4 *5 (-429))
+ (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-989 *5 *6 *7)) (-5 *2 (-108))
+ (-5 *1 (-1025 *5 *6 *7 *8 *3)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3))))
- ((*1 *1 *1) (-4 *1 (-1112))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-4 *1 (-299 *4 *2)) (-4 *4 (-1016))
- (-4 *2 (-124)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-836 *3)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-695)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *3 *3 *4 *4)
- (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *2 (-962))
- (-5 *1 (-688)))))
+ (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111) (-932)))
+ (-5 *1 (-163 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1096 (-589 *4))) (-4 *4 (-786))
- (-5 *2 (-589 (-589 *4))) (-5 *1 (-1095 *4)))))
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-408 *4)) (-5 *1 (-147 *4 *2))
+ (-4 *4 (-13 (-788) (-517))))))
+(((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)) (-4 *2 (-510))))
+ ((*1 *1 *1) (-4 *1 (-984))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-455 *4 *5))) (-14 *4 (-589 (-1087)))
- (-4 *5 (-427)) (-5 *2 (-589 (-225 *4 *5))) (-5 *1 (-577 *4 *5)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-852)) (-5 *3 (-589 (-240))) (-5 *1 (-238))))
- ((*1 *1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-240)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087)))
- (-14 *3 (-589 (-1087))) (-4 *4 (-363))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3))))
- ((*1 *1 *1) (-4 *1 (-1112))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1014 *3)) (-4 *3 (-1016)) (-5 *2 (-108)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *6 (-852)) (-4 *5 (-284)) (-4 *3 (-1145 *5))
- (-5 *2 (-2 (|:| |plist| (-589 *3)) (|:| |modulo| *5)))
- (-5 *1 (-435 *5 *3)) (-5 *4 (-589 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6))
- (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1104)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-523)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-710)) (-4 *5 (-158))))
- ((*1 *1 *1 *2 *1 *2)
- (-12 (-5 *2 (-523)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-710)) (-4 *5 (-158))))
- ((*1 *2 *2 *3)
- (-12
- (-5 *2
- (-475 (-383 (-523)) (-218 *5 (-710)) (-796 *4)
- (-225 *4 (-383 (-523)))))
- (-5 *3 (-589 (-796 *4))) (-14 *4 (-589 (-1087))) (-14 *5 (-710))
- (-5 *1 (-476 *4 *5)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1124 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-130))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-133)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *1 *2) (-12 (-5 *1 (-307 *2)) (-4 *2 (-786))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087)))
- (-14 *3 (-589 (-1087))) (-4 *4 (-363))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3))))
- ((*1 *1 *1) (-4 *1 (-1112))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-710))) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852))
- (-4 *4 (-973)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-710)) (-5 *1 (-792 *2)) (-4 *2 (-158))))
- ((*1 *2 *3 *3 *2)
- (-12 (-5 *3 (-710)) (-5 *1 (-792 *2)) (-4 *2 (-158)))))
-(((*1 *2 *3 *4 *3 *3)
- (-12 (-5 *3 (-271 *6)) (-5 *4 (-110)) (-4 *6 (-406 *5))
- (-4 *5 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51))
- (-5 *1 (-293 *5 *6))))
- ((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-271 *7)) (-5 *4 (-110)) (-5 *5 (-589 *7))
- (-4 *7 (-406 *6)) (-4 *6 (-13 (-786) (-515) (-564 (-499))))
- (-5 *2 (-51)) (-5 *1 (-293 *6 *7))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-589 (-271 *7))) (-5 *4 (-589 (-110))) (-5 *5 (-271 *7))
- (-4 *7 (-406 *6)) (-4 *6 (-13 (-786) (-515) (-564 (-499))))
- (-5 *2 (-51)) (-5 *1 (-293 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-589 (-271 *8))) (-5 *4 (-589 (-110))) (-5 *5 (-271 *8))
- (-5 *6 (-589 *8)) (-4 *8 (-406 *7))
- (-4 *7 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51))
- (-5 *1 (-293 *7 *8))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-589 *7)) (-5 *4 (-589 (-110))) (-5 *5 (-271 *7))
- (-4 *7 (-406 *6)) (-4 *6 (-13 (-786) (-515) (-564 (-499))))
- (-5 *2 (-51)) (-5 *1 (-293 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-589 (-110))) (-5 *6 (-589 (-271 *8)))
- (-4 *8 (-406 *7)) (-5 *5 (-271 *8))
- (-4 *7 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51))
- (-5 *1 (-293 *7 *8))))
- ((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-271 *5)) (-5 *4 (-110)) (-4 *5 (-406 *6))
- (-4 *6 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51))
- (-5 *1 (-293 *6 *5))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-110)) (-5 *5 (-271 *3)) (-4 *3 (-406 *6))
- (-4 *6 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51))
- (-5 *1 (-293 *6 *3))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-110)) (-5 *5 (-271 *3)) (-4 *3 (-406 *6))
- (-4 *6 (-13 (-786) (-515) (-564 (-499)))) (-5 *2 (-51))
- (-5 *1 (-293 *6 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-110)) (-5 *5 (-271 *3)) (-5 *6 (-589 *3))
- (-4 *3 (-406 *7)) (-4 *7 (-13 (-786) (-515) (-564 (-499))))
- (-5 *2 (-51)) (-5 *1 (-293 *7 *3)))))
+ (-12 (-5 *3 (-110)) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-108))
+ (-5 *1 (-31 *4 *5)) (-4 *5 (-408 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-110)) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-108))
+ (-5 *1 (-147 *4 *5)) (-4 *5 (-408 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-110)) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-108))
+ (-5 *1 (-255 *4 *5)) (-4 *5 (-13 (-408 *4) (-932)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-280 *4)) (-4 *4 (-281))))
+ ((*1 *2 *3) (-12 (-4 *1 (-281)) (-5 *3 (-110)) (-5 *2 (-108))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-110)) (-4 *5 (-788)) (-5 *2 (-108))
+ (-5 *1 (-407 *4 *5)) (-4 *4 (-408 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-110)) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-108))
+ (-5 *1 (-409 *4 *5)) (-4 *5 (-408 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-110)) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-108))
+ (-5 *1 (-578 *4 *5)) (-4 *5 (-13 (-408 *4) (-932) (-1111))))))
(((*1 *1 *1 *2)
- (|partial| -12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515))
- (-4 *4 (-732)) (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-845 *3)) (-4 *3 (-284)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-257))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973))
- (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1190 *3 *4)) (-4 *3 (-973))
- (-4 *4 (-782)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-852)) (-5 *2 (-1083 *3)) (-5 *1 (-1098 *3))
- (-4 *3 (-339)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203))
- (-5 *2 (-962)) (-5 *1 (-690)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-130))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-133)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *1 *2) (-12 (-5 *1 (-307 *2)) (-4 *2 (-786))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087)))
- (-14 *3 (-589 (-1087))) (-4 *4 (-363))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3))))
- ((*1 *1 *1) (-4 *1 (-1112))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-589 *5) *6))
- (-4 *5 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *6 (-1145 *5))
- (-5 *2 (-589 (-2 (|:| -1982 *5) (|:| -1747 *3))))
- (-5 *1 (-748 *5 *6 *3 *7)) (-4 *3 (-599 *6))
- (-4 *7 (-599 (-383 *6))))))
-(((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-394 *3)) (-4 *3 (-515))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-2 (|:| -3573 *4) (|:| -1487 (-523)))))
- (-4 *4 (-1145 (-523))) (-5 *2 (-710)) (-5 *1 (-417 *4)))))
-(((*1 *1 *1) (-12 (-5 *1 (-159 *2)) (-4 *2 (-284)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-987 *4 *5 *6)) (-4 *4 (-515))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-906 *4 *5 *6 *2)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-76 FUNCTN))))
- (-5 *2 (-962)) (-5 *1 (-688)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 (-306))) (-5 *1 (-306)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-930))
- (-4 *2 (-973)))))
+ (-12 (-5 *2 (-591 (-51))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))))
+(((*1 *1)
+ (|partial| -12 (-4 *1 (-345 *2)) (-4 *2 (-517)) (-4 *2 (-160)))))
(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-523)) (|has| *1 (-6 -4249)) (-4 *1 (-349 *3))
- (-4 *3 (-1123)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-973)) (-4 *4 (-1145 *3)) (-5 *1 (-150 *3 *4 *2))
- (-4 *2 (-1145 *4))))
- ((*1 *1 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-1123)))))
+ (-12 (-4 *1 (-989 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *2 (-788))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)))))
+(((*1 *2 *2) (-12 (-5 *2 (-366)) (-5 *1 (-414))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-366)) (-5 *1 (-414)))))
+(((*1 *2 *2 *1 *3 *4)
+ (-12 (-5 *2 (-591 *8)) (-5 *3 (-1 *8 *8 *8))
+ (-5 *4 (-1 (-108) *8 *8)) (-4 *1 (-1119 *5 *6 *7 *8)) (-4 *5 (-517))
+ (-4 *6 (-734)) (-4 *7 (-788)) (-4 *8 (-989 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1070 *3)) (-5 *1 (-161 *3)) (-4 *3 (-286)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1104)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975))
+ (-5 *2
+ (-2 (|:| -3660 (-712)) (|:| |curves| (-712))
+ (|:| |polygons| (-712)) (|:| |constructs| (-712)))))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205)))
+ (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-61 LSFUN2))))
+ (-5 *2 (-964)) (-5 *1 (-695)))))
+(((*1 *1 *1) (-12 (-5 *1 (-161 *2)) (-4 *2 (-286)))))
+(((*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7)
+ (-12 (-5 *3 (-525)) (-5 *5 (-108)) (-5 *6 (-631 (-205)))
+ (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-75 OBJFUN))))
+ (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-695)))))
+(((*1 *2 *3)
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (-5 *2
+ (-2
+ (|:| |endPointContinuity|
+ (-3 (|:| |continuous| "Continuous at the end points")
+ (|:| |lowerSingular|
+ "There is a singularity at the lower end point")
+ (|:| |upperSingular|
+ "There is a singularity at the upper end point")
+ (|:| |bothSingular|
+ "There are singularities at both end points")
+ (|:| |notEvaluated|
+ "End point continuity not yet evaluated")))
+ (|:| |singularitiesStream|
+ (-3 (|:| |str| (-1070 (-205)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -1767
+ (-3 (|:| |finite| "The range is finite")
+ (|:| |lowerInfinite| "The bottom of range is infinite")
+ (|:| |upperInfinite| "The top of range is infinite")
+ (|:| |bothInfinite|
+ "Both top and bottom points are infinite")
+ (|:| |notEvaluated| "Range not yet evaluated")))))
+ (-5 *1 (-520)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-515))
- (-4 *7 (-880 *3 *5 *6))
- (-5 *2 (-2 (|:| -3262 (-710)) (|:| -2275 *8) (|:| |radicand| *8)))
- (-5 *1 (-884 *5 *6 *3 *7 *8)) (-5 *4 (-710))
- (-4 *8
- (-13 (-339)
- (-10 -8 (-15 -2164 (*7 $)) (-15 -2171 (*7 $)) (-15 -3976 ($ *7))))))))
+ (-12 (-5 *3 (-591 *5)) (-5 *4 (-591 (-1 *6 (-591 *6))))
+ (-4 *5 (-37 (-385 (-525)))) (-4 *6 (-1162 *5)) (-5 *2 (-591 *6))
+ (-5 *1 (-1164 *5 *6)))))
+(((*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6)
+ (-12 (-5 *4 (-525)) (-5 *5 (-631 (-205)))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576)))) (-5 *3 (-205))
+ (-5 *2 (-964)) (-5 *1 (-690)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-1147 (-525))) (-5 *1 (-461 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-591 (-294 (-205)))) (-5 *1 (-246)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-5 *1 (-1061 *3)))))
(((*1 *2 *3)
+ (-12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
+ (-5 *2 (-1 *5 *5)) (-5 *1 (-745 *4 *5))
+ (-4 *5 (-13 (-29 *4) (-1111) (-891))))))
+(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-698)))))
+(((*1 *2 *2 *2)
(-12
- (-5 *3
- (-2 (|:| |xinit| (-203)) (|:| |xend| (-203))
- (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203)))
- (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203)))
- (|:| |abserr| (-203)) (|:| |relerr| (-203))))
(-5 *2
- (-2 (|:| |stiffnessFactor| (-355)) (|:| |stabilityFactor| (-355))))
- (-5 *1 (-185)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204)))))
-(((*1 *1 *1) (-4 *1 (-119))) ((*1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *1) (-4 *1 (-897))) ((*1 *1 *1) (-5 *1 (-1034))))
-(((*1 *2 *1) (-12 (-5 *2 (-794)) (-5 *1 (-51)))))
-(((*1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1) (-4 *1 (-119)))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-221)) (-5 *2 (-523))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-448)) (-5 *2 (-523))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-666)) (-5 *2 (-710))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1028)) (-5 *2 (-852)))))
-(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-691)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 *4))
- (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *4 (-1087)) (-5 *6 (-108))
- (-4 *7 (-13 (-284) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-4 *3 (-13 (-1109) (-889) (-29 *7)))
+ (-591
+ (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-712)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *4 (-734)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-429)) (-4 *5 (-788))
+ (-5 *1 (-426 *3 *4 *5 *6)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2)) (-4 *2 (-1125)))))
+(((*1 *1 *2 *2)
+ (-12
(-5 *2
- (-3 (|:| |f1| (-779 *3)) (|:| |f2| (-589 (-779 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-197 *7 *3)) (-5 *5 (-779 *3)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-710))) (-5 *3 (-157)) (-5 *1 (-1076 *4 *5))
- (-14 *4 (-852)) (-4 *5 (-973)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *1)
- (-12 (-4 *4 (-1016)) (-5 *2 (-820 *3 *4)) (-5 *1 (-816 *3 *4 *5))
- (-4 *3 (-1016)) (-4 *5 (-609 *4)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-339)) (-4 *3 (-973))
- (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-788 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-94 *5)) (-4 *5 (-339)) (-4 *5 (-973))
- (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-789 *5 *3))
- (-4 *3 (-788 *5)))))
+ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357)))
+ (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088))))
+ (-5 *1 (-1088)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-517))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-517)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816)))))
(((*1 *2 *3)
- (-12 (-14 *4 (-589 (-1087))) (-4 *5 (-427))
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205))
+ (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205)))
+ (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205)))
+ (|:| |abserr| (-205)) (|:| |relerr| (-205))))
(-5 *2
- (-2 (|:| |glbase| (-589 (-225 *4 *5))) (|:| |glval| (-589 (-523)))))
- (-5 *1 (-577 *4 *5)) (-5 *3 (-589 (-225 *4 *5))))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-589 (-721 *3))) (-5 *1 (-721 *3)) (-4 *3 (-515))
- (-4 *3 (-973)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1016)) (-4 *5 (-1016))
- (-5 *2 (-1 *5 *4)) (-5 *1 (-623 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-136))
- (-4 *3 (-284)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-906 *3 *4 *5 *6)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-589 (-629 *4))) (-5 *2 (-629 *4)) (-4 *4 (-973))
- (-5 *1 (-956 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-48)))))
-(((*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158))))
- ((*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158)))))
-(((*1 *1 *2) (-12 (-5 *2 (-852)) (-4 *1 (-344))))
+ (-2 (|:| |stiffnessFactor| (-357)) (|:| |stabilityFactor| (-357))))
+ (-5 *1 (-187)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-341) (-786)))
+ (-5 *2 (-591 (-2 (|:| -3781 (-591 *3)) (|:| -1483 *5))))
+ (-5 *1 (-167 *5 *3)) (-4 *3 (-1147 (-157 *5)))))
((*1 *2 *3 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1169 *4)) (-5 *1 (-493 *4))
- (-4 *4 (-325))))
+ (-12 (-4 *4 (-13 (-341) (-786)))
+ (-5 *2 (-591 (-2 (|:| -3781 (-591 *3)) (|:| -1483 *4))))
+ (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4))))))
+(((*1 *2 *3)
+ (-12 (|has| *6 (-6 -4251)) (-4 *4 (-341)) (-4 *5 (-351 *4))
+ (-4 *6 (-351 *4)) (-5 *2 (-591 *6)) (-5 *1 (-492 *4 *5 *6 *3))
+ (-4 *3 (-629 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (|has| *9 (-6 -4251)) (-4 *4 (-517)) (-4 *5 (-351 *4))
+ (-4 *6 (-351 *4)) (-4 *7 (-923 *4)) (-4 *8 (-351 *7))
+ (-4 *9 (-351 *7)) (-5 *2 (-591 *6))
+ (-5 *1 (-493 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-629 *4 *5 *6))
+ (-4 *10 (-629 *7 *8 *9))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-4 *3 (-517)) (-5 *2 (-591 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *4 (-160)) (-4 *5 (-351 *4))
+ (-4 *6 (-351 *4)) (-5 *2 (-591 *6)) (-5 *1 (-630 *4 *5 *6 *3))
+ (-4 *3 (-629 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975))
+ (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-4 *5 (-517))
+ (-5 *2 (-591 *7)))))
+(((*1 *1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-876 *5)) (-5 *3 (-712)) (-4 *5 (-975))
+ (-5 *1 (-1078 *4 *5)) (-14 *4 (-854)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *2 (-525))))
((*1 *2 *1)
- (-12 (-4 *2 (-786)) (-5 *1 (-653 *2 *3 *4)) (-4 *3 (-1016))
+ (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975))
+ (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-525)))))
+(((*1 *1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-108)) (-5 *1 (-550 *3)) (-4 *3 (-975)))))
+(((*1 *2 *3) (-12 (-5 *2 (-396 *3)) (-5 *1 (-519 *3)) (-4 *3 (-510)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-429)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-723 *2)) (-4 *2 (-517)) (-4 *2 (-975))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-517)) (-5 *1 (-901 *3 *2)) (-4 *2 (-1147 *3))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-517))))
+ ((*1 *2 *3 *3 *1)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *3 (-989 *4 *5 *6))
+ (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *1))))
+ (-4 *1 (-994 *4 *5 *6 *3)))))
+(((*1 *2)
+ (-12 (-5 *2 (-631 (-843 *3))) (-5 *1 (-329 *3 *4)) (-14 *3 (-854))
+ (-14 *4 (-854))))
+ ((*1 *2)
+ (-12 (-5 *2 (-631 *3)) (-5 *1 (-330 *3 *4)) (-4 *3 (-327))
(-14 *4
- (-1 (-108) (-2 (|:| -2557 *2) (|:| -3262 *3))
- (-2 (|:| -2557 *2) (|:| -3262 *3)))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-3 (-383 (-883 *5)) (-1077 (-1087) (-883 *5))))
- (-4 *5 (-427)) (-5 *2 (-589 (-629 (-383 (-883 *5)))))
- (-5 *1 (-269 *5)) (-5 *4 (-629 (-383 (-883 *5)))))))
+ (-3 (-1085 *3)
+ (-1171 (-591 (-2 (|:| -3024 *3) (|:| -2226 (-1036)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-631 *3)) (-5 *1 (-331 *3 *4)) (-4 *3 (-327))
+ (-14 *4 (-854)))))
+(((*1 *2)
+ (-12 (-4 *1 (-327))
+ (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+(((*1 *2 *1) (-12 (-4 *1 (-304 *3 *2)) (-4 *3 (-975)) (-4 *2 (-733))))
+ ((*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-975)) (-5 *2 (-712))))
+ ((*1 *2 *1) (-12 (-4 *1 (-790 *3)) (-4 *3 (-975)) (-5 *2 (-712))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-591 *6)) (-4 *1 (-882 *4 *5 *6)) (-4 *4 (-975))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 (-712)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-882 *4 *5 *3)) (-4 *4 (-975)) (-4 *5 (-734))
+ (-4 *3 (-788)) (-5 *2 (-712)))))
+(((*1 *1 *1 *1) (-5 *1 (-796))))
(((*1 *2 *3)
- (-12 (-5 *3 (-629 (-383 (-883 (-523)))))
- (-5 *2 (-589 (-629 (-292 (-523))))) (-5 *1 (-958)))))
+ (-12
+ (-5 *3
+ (-591
+ (-2 (|:| -4073 (-712))
+ (|:| |eqns|
+ (-591
+ (-2 (|:| |det| *7) (|:| |rows| (-591 (-525)))
+ (|:| |cols| (-591 (-525))))))
+ (|:| |fgb| (-591 *7)))))
+ (-4 *7 (-882 *4 *6 *5)) (-4 *4 (-13 (-286) (-138)))
+ (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-712))
+ (-5 *1 (-857 *4 *5 *6 *7)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-13 (-515) (-136))) (-5 *1 (-1139 *3 *2))
- (-4 *2 (-1145 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7)
- (-12 (-5 *3 (-523)) (-5 *5 (-108)) (-5 *6 (-629 (-203)))
- (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-75 OBJFUN))))
- (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-693)))))
-(((*1 *1 *1) (-4 *1 (-575)))
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-429))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-426 *3 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-854)) (-5 *2 (-1176)) (-5 *1 (-1172))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-854)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-882 *4 *5 *6)) (-4 *4 (-286))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-424 *4 *5 *6 *2)))))
+(((*1 *1 *1) (-12 (-4 *1 (-351 *2)) (-4 *2 (-1125))))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-576 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930) (-1109))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1083 *3)) (-5 *1 (-845 *3)) (-4 *3 (-284)))))
-(((*1 *2) (-12 (-5 *2 (-835 (-523))) (-5 *1 (-848)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-312 *5 *6 *7 *8)) (-4 *5 (-406 *4))
- (-4 *6 (-1145 *5)) (-4 *7 (-1145 (-383 *6)))
- (-4 *8 (-318 *5 *6 *7)) (-4 *4 (-13 (-786) (-515) (-964 (-523))))
- (-5 *2 (-2 (|:| -1500 (-710)) (|:| -1843 *8)))
- (-5 *1 (-842 *4 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-312 (-383 (-523)) *4 *5 *6))
- (-4 *4 (-1145 (-383 (-523)))) (-4 *5 (-1145 (-383 *4)))
- (-4 *6 (-318 (-383 (-523)) *4 *5))
- (-5 *2 (-2 (|:| -1500 (-710)) (|:| -1843 *6)))
- (-5 *1 (-843 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-900)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-346 *4 *5)) (-4 *4 (-158))
- (-4 *5 (-1145 *4)) (-5 *2 (-629 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-385 *3 *4)) (-4 *3 (-158)) (-4 *4 (-1145 *3))
- (-5 *2 (-629 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1059 (-1070))) (-5 *1 (-367)))))
-(((*1 *1 *1) (-12 (-4 *1 (-259 *2)) (-4 *2 (-1123)) (-4 *2 (-1016))))
- ((*1 *1 *1) (-12 (-4 *1 (-634 *2)) (-4 *2 (-1016)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-1086)) (-5 *1 (-306)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-14 *5 (-589 (-1087))) (-4 *2 (-158))
- (-4 *4 (-216 (-1271 *5) (-710)))
- (-14 *6
- (-1 (-108) (-2 (|:| -2557 *3) (|:| -3262 *4))
- (-2 (|:| -2557 *3) (|:| -3262 *4))))
- (-5 *1 (-436 *5 *2 *3 *4 *6 *7)) (-4 *3 (-786))
- (-4 *7 (-880 *2 *4 (-796 *5))))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-687)))))
-(((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *5 (-108))
- (-5 *2 (-962)) (-5 *1 (-685)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1034)) (-5 *2 (-1174)) (-5 *1 (-770)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-284)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4))
- (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3)))
- (-5 *1 (-1038 *4 *5 *6 *3)) (-4 *3 (-627 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1169 (-292 (-203)))) (-5 *2 (-1169 (-292 (-355))))
- (-5 *1 (-282)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2)) (-4 *2 (-1123)))))
+ (-12 (-4 *3 (-975)) (-5 *1 (-421 *3 *2)) (-4 *2 (-1147 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *1) (-4 *1 (-327))))
(((*1 *2 *3)
- (-12 (-4 *4 (-339)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4))
- (-5 *2 (-710)) (-5 *1 (-490 *4 *5 *6 *3)) (-4 *3 (-627 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-4 *3 (-515)) (-5 *2 (-710))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *4 (-158)) (-4 *5 (-349 *4))
- (-4 *6 (-349 *4)) (-5 *2 (-710)) (-5 *1 (-628 *4 *5 *6 *3))
- (-4 *3 (-627 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973))
- (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-4 *5 (-515))
- (-5 *2 (-710)))))
+ (-12 (-5 *3 (-1085 *6)) (-4 *6 (-975)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *2 (-1085 *7)) (-5 *1 (-299 *4 *5 *6 *7))
+ (-4 *7 (-882 *6 *4 *5)))))
+(((*1 *2 *2) (|partial| -12 (-5 *2 (-294 (-205))) (-5 *1 (-246)))))
(((*1 *1 *2 *2)
+ (-12 (-5 *2 (-591 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525)))))
+(((*1 *1 *1) (-12 (-4 *1 (-601 *2)) (-4 *2 (-975)) (-4 *2 (-341)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-525)) (-5 *1 (-130 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-712)) (-4 *5 (-160))))
+ ((*1 *1 *1 *2 *1 *2)
+ (-12 (-5 *2 (-525)) (-5 *1 (-130 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-712)) (-4 *5 (-160))))
+ ((*1 *2 *2 *3)
(-12
(-5 *2
- (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355)))
- (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086))))
- (-5 *1 (-1086)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1169 (-589 *3))) (-4 *4 (-284))
- (-5 *2 (-589 *3)) (-5 *1 (-430 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *1 *2 *2) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-515)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *2 (-589 *1)) (-4 *1 (-987 *3 *4 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171))))
- ((*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-523))) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-523))
- (-14 *4 (-710)) (-4 *5 (-158)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1061 *3)) (-4 *3 (-1123)) (-5 *2 (-108)))))
-(((*1 *1 *1 *1) (-4 *1 (-604))) ((*1 *1 *1 *1) (-5 *1 (-1034))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-133)))))
-(((*1 *2 *3 *4 *4 *4 *5 *6 *7)
- (|partial| -12 (-5 *5 (-1087))
- (-5 *6
- (-1
- (-3
- (-2 (|:| |mainpart| *4)
- (|:| |limitedlogs|
- (-589 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
- "failed")
- *4 (-589 *4)))
- (-5 *7
- (-1 (-3 (-2 (|:| -3699 *4) (|:| |coeff| *4)) "failed") *4 *4))
- (-4 *4 (-13 (-1109) (-27) (-406 *8)))
- (-4 *8 (-13 (-427) (-786) (-136) (-964 *3) (-585 *3)))
- (-5 *3 (-523)) (-5 *2 (-589 *4)) (-5 *1 (-942 *8 *4)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *2 (-383 (-523))) (-5 *1 (-113 *4)) (-14 *4 *3)
- (-5 *3 (-523))))
- ((*1 *2 *1 *2) (-12 (-4 *1 (-800 *3)) (-5 *2 (-523))))
- ((*1 *2 *1 *3)
- (-12 (-5 *2 (-383 (-523))) (-5 *1 (-802 *4)) (-14 *4 *3)
- (-5 *3 (-523))))
- ((*1 *2 *1 *3)
- (-12 (-14 *4 *3) (-5 *2 (-383 (-523))) (-5 *1 (-803 *4 *5))
- (-5 *3 (-523)) (-4 *5 (-800 *4))))
- ((*1 *2 *1 *1) (-12 (-4 *1 (-940)) (-5 *2 (-383 (-523)))))
- ((*1 *2 *3 *1 *2)
- (-12 (-4 *1 (-989 *2 *3)) (-4 *2 (-13 (-784) (-339)))
- (-4 *3 (-1145 *2))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-1147 *2 *3)) (-4 *3 (-731))
- (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3976 (*2 (-1087))))
- (-4 *2 (-973)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-230 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-786))
- (-4 *5 (-243 *4)) (-4 *6 (-732)) (-5 *2 (-108)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-560 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1016)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *4 (-523))) (-5 *5 (-1 (-1068 *4))) (-4 *4 (-339))
- (-4 *4 (-973)) (-5 *2 (-1068 *4)) (-5 *1 (-1072 *4)))))
+ (-477 (-385 (-525)) (-220 *5 (-712)) (-798 *4)
+ (-227 *4 (-385 (-525)))))
+ (-5 *3 (-591 (-798 *4))) (-14 *4 (-591 (-1089))) (-14 *5 (-712))
+ (-5 *1 (-478 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-169)) (-5 *1 (-228)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-339)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-475 *4 *5 *6 *3)) (-4 *3 (-880 *4 *5 *6)))))
-(((*1 *1) (-5 *1 (-518))))
-(((*1 *1 *1 *1) (-4 *1 (-604))) ((*1 *1 *1 *1) (-5 *1 (-1034))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 *4)) (-4 *4 (-786)) (-5 *2 (-589 (-607 *4 *5)))
- (-5 *1 (-573 *4 *5 *6)) (-4 *5 (-13 (-158) (-657 (-383 (-523)))))
- (-14 *6 (-852)))))
-(((*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-355)) (-5 *1 (-966)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-108)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786))
- (-4 *3 (-987 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-589 *4))
- (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4))))))
- (-5 *1 (-990 *6 *7 *8 *3 *4)) (-4 *4 (-992 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-589 *4))
- (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4))))))
- (-5 *1 (-1057 *5 *6 *7 *3 *4)) (-4 *4 (-1025 *5 *6 *7 *3)))))
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2)) (-4 *2 (-1125)))))
+(((*1 *2) (-12 (-4 *3 (-160)) (-5 *2 (-1171 *1)) (-4 *1 (-345 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-796)) (-5 *1 (-368 *3 *4 *5)) (-14 *3 (-712))
+ (-14 *4 (-712)) (-4 *5 (-160)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-228)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-5 *2 (-712)) (-5 *1 (-42 *4 *3))
+ (-4 *3 (-395 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-517) (-138))) (-5 *1 (-502 *3 *2))
+ (-4 *2 (-1162 *3))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-341) (-346) (-566 (-525)))) (-4 *4 (-1147 *3))
+ (-4 *5 (-666 *3 *4)) (-5 *1 (-506 *3 *4 *5 *2)) (-4 *2 (-1162 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-341) (-346) (-566 (-525)))) (-5 *1 (-507 *3 *2))
+ (-4 *2 (-1162 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-13 (-517) (-138)))
+ (-5 *1 (-1066 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-381 *3)) (-4 *3 (-382))))
+ ((*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-381 *3)) (-4 *3 (-382))))
+ ((*1 *2 *2) (-12 (-5 *2 (-854)) (|has| *1 (-6 -4241)) (-4 *1 (-382))))
+ ((*1 *2) (-12 (-4 *1 (-382)) (-5 *2 (-854))))
+ ((*1 *2 *1) (-12 (-4 *1 (-802 *3)) (-5 *2 (-1070 (-525))))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-525)) (-4 *4 (-13 (-517) (-138))) (-5 *1 (-502 *4 *2))
+ (-4 *2 (-1162 *4))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-525)) (-4 *4 (-13 (-341) (-346) (-566 *3)))
+ (-4 *5 (-1147 *4)) (-4 *6 (-666 *4 *5)) (-5 *1 (-506 *4 *5 *6 *2))
+ (-4 *2 (-1162 *6))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-525)) (-4 *4 (-13 (-341) (-346) (-566 *3)))
+ (-5 *1 (-507 *4 *2)) (-4 *2 (-1162 *4))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1070 *4)) (-5 *3 (-525)) (-4 *4 (-13 (-517) (-138)))
+ (-5 *1 (-1066 *4)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-383 (-523))) (-4 *4 (-964 (-523)))
- (-4 *4 (-13 (-786) (-515))) (-5 *1 (-31 *4 *2)) (-4 *2 (-406 *4))))
- ((*1 *1 *1 *1) (-5 *1 (-126)))
+ (-12 (-5 *3 (-385 (-525))) (-4 *4 (-966 (-525)))
+ (-4 *4 (-13 (-788) (-517))) (-5 *1 (-31 *4 *2)) (-4 *2 (-408 *4))))
+ ((*1 *1 *1 *1) (-5 *1 (-128)))
((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-145 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *1 *1 *1) (-5 *1 (-203)))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-221)) (-5 *2 (-523))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-147 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *1 *1 *1) (-5 *1 (-205)))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-223)) (-5 *2 (-525))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-383 (-523))) (-4 *4 (-339)) (-4 *4 (-37 *3))
- (-4 *5 (-1160 *4)) (-5 *1 (-255 *4 *5 *2)) (-4 *2 (-1131 *4 *5))))
+ (-12 (-5 *3 (-385 (-525))) (-4 *4 (-341)) (-4 *4 (-37 *3))
+ (-4 *5 (-1162 *4)) (-5 *1 (-257 *4 *5 *2)) (-4 *2 (-1133 *4 *5))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-383 (-523))) (-4 *4 (-339)) (-4 *4 (-37 *3))
- (-4 *5 (-1129 *4)) (-5 *1 (-256 *4 *5 *2 *6)) (-4 *2 (-1152 *4 *5))
- (-4 *6 (-912 *5))))
- ((*1 *1 *1 *1) (-4 *1 (-261)))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-523)) (-5 *1 (-337 *2)) (-4 *2 (-1016))))
- ((*1 *1 *1 *1) (-5 *1 (-355)))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-710)) (-5 *1 (-362 *2)) (-4 *2 (-1016))))
+ (-12 (-5 *3 (-385 (-525))) (-4 *4 (-341)) (-4 *4 (-37 *3))
+ (-4 *5 (-1131 *4)) (-5 *1 (-258 *4 *5 *2 *6)) (-4 *2 (-1154 *4 *5))
+ (-4 *6 (-914 *5))))
+ ((*1 *1 *1 *1) (-4 *1 (-263)))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-339 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *1) (-5 *1 (-357)))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-712)) (-5 *1 (-364 *2)) (-4 *2 (-1018))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-406 *3)) (-4 *3 (-786)) (-4 *3 (-1028))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-448)) (-5 *2 (-523))))
+ (-12 (-5 *2 (-712)) (-4 *1 (-408 *3)) (-4 *3 (-788)) (-4 *3 (-1030))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-450)) (-5 *2 (-525))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5))))
+ (-12 (-5 *2 (-712)) (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-1169 *4)) (-5 *3 (-523)) (-4 *4 (-325))
- (-5 *1 (-493 *4))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-499))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-499))))
+ (-12 (-5 *2 (-1171 *4)) (-5 *3 (-525)) (-4 *4 (-327))
+ (-5 *1 (-495 *4))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-501))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-501))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-710)) (-4 *4 (-1016))
- (-5 *1 (-622 *4))))
+ (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-712)) (-4 *4 (-1018))
+ (-5 *1 (-624 *4))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-523)) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3)) (-4 *3 (-339))))
+ (-12 (-5 *2 (-525)) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3)) (-4 *3 (-341))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3))))
+ (-12 (-5 *2 (-712)) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-629 *4)) (-5 *3 (-710)) (-4 *4 (-973))
- (-5 *1 (-630 *4))))
+ (-12 (-5 *2 (-631 *4)) (-5 *3 (-712)) (-4 *4 (-975))
+ (-5 *1 (-632 *4))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-523)) (-4 *3 (-973)) (-5 *1 (-654 *3 *4))
- (-4 *4 (-591 *3))))
+ (-12 (-5 *2 (-525)) (-4 *3 (-975)) (-5 *1 (-656 *3 *4))
+ (-4 *4 (-593 *3))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-110)) (-5 *3 (-523)) (-4 *4 (-973))
- (-5 *1 (-654 *4 *5)) (-4 *5 (-591 *4))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-852))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-662)) (-5 *2 (-710))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-666)) (-5 *2 (-710))))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-710)) (-5 *1 (-758 *2)) (-4 *2 (-786))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-773 *3)) (-4 *3 (-973))))
+ (-12 (-5 *2 (-110)) (-5 *3 (-525)) (-4 *4 (-975))
+ (-5 *1 (-656 *4 *5)) (-4 *5 (-593 *4))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-662)) (-5 *2 (-854))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-664)) (-5 *2 (-712))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-668)) (-5 *2 (-712))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-712)) (-5 *1 (-760 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-775 *3)) (-4 *3 (-975))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-110)) (-5 *3 (-523)) (-5 *1 (-773 *4)) (-4 *4 (-973))))
- ((*1 *1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-823 *3)) (-4 *3 (-1016))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-930)) (-5 *2 (-383 (-523)))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1028)) (-5 *2 (-852))))
+ (-12 (-5 *2 (-110)) (-5 *3 (-525)) (-5 *1 (-775 *4)) (-4 *4 (-975))))
+ ((*1 *1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-825 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-932)) (-5 *2 (-385 (-525)))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1030)) (-5 *2 (-854))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-523)) (-4 *1 (-1037 *3 *4 *5 *6)) (-4 *4 (-973))
- (-4 *5 (-216 *3 *4)) (-4 *6 (-216 *3 *4)) (-4 *4 (-339))))
+ (-12 (-5 *2 (-525)) (-4 *1 (-1039 *3 *4 *5 *6)) (-4 *4 (-975))
+ (-4 *5 (-218 *3 *4)) (-4 *6 (-218 *3 *4)) (-4 *4 (-341))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1160 *2)) (-4 *2 (-973)) (-4 *2 (-339)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-284)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3))
- (-5 *1 (-1038 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5)))))
-(((*1 *1)
- (-12 (-4 *3 (-1016)) (-5 *1 (-816 *2 *3 *4)) (-4 *2 (-1016))
- (-4 *4 (-609 *3))))
- ((*1 *1) (-12 (-5 *1 (-820 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))))
-(((*1 *2 *1) (-12 (-4 *1 (-513 *2)) (-4 *2 (-13 (-380) (-1109))))))
-(((*1 *2 *1) (-12 (-4 *1 (-343 *2)) (-4 *2 (-158)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-225 *4 *5)) (-14 *4 (-589 (-1087))) (-4 *5 (-973))
- (-5 *2 (-883 *5)) (-5 *1 (-875 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-761)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1142 *4 *5)) (-5 *3 (-589 *5)) (-14 *4 (-1087))
- (-4 *5 (-339)) (-5 *1 (-854 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 *5)) (-4 *5 (-339)) (-5 *2 (-1083 *5))
- (-5 *1 (-854 *4 *5)) (-14 *4 (-1087))))
- ((*1 *2 *3 *3 *4 *4)
- (-12 (-5 *3 (-589 *6)) (-5 *4 (-710)) (-4 *6 (-339))
- (-5 *2 (-383 (-883 *6))) (-5 *1 (-974 *5 *6)) (-14 *5 (-1087)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-515)))))
-(((*1 *1) (-5 *1 (-268))))
-(((*1 *1 *1 *1) (-4 *1 (-284))) ((*1 *1 *1 *1) (-5 *1 (-710)))
- ((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *1) (-12 (-5 *1 (-589 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-589 (-292 (-203)))) (-5 *3 (-203)) (-5 *2 (-108))
- (-5 *1 (-190)))))
-(((*1 *1) (-5 *1 (-1003))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1162 *2)) (-4 *2 (-975)) (-4 *2 (-341)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-157)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852))
- (-4 *4 (-973)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-515) (-786) (-964 (-523))))
- (-4 *5 (-406 *4)) (-5 *2 (-394 (-1083 (-383 (-523)))))
- (-5 *1 (-411 *4 *5 *3)) (-4 *3 (-1145 *5)))))
-(((*1 *2 *3) (-12 (-5 *2 (-394 *3)) (-5 *1 (-517 *3)) (-4 *3 (-508)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1070)) (-5 *4 (-523)) (-5 *5 (-629 (-203)))
- (-5 *2 (-962)) (-5 *1 (-694)))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-49 *3 *4)) (-4 *3 (-975))
+ (-14 *4 (-591 (-1089)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-51)) (-5 *2 (-108)) (-5 *1 (-50 *4)) (-4 *4 (-1125))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-203 *3 *4)) (-4 *3 (-13 (-975) (-788)))
+ (-14 *4 (-591 (-1089)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-616 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-620 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-826 *3)) (-4 *3 (-788)))))
+(((*1 *2 *1) (-12 (-4 *1 (-940 *3)) (-4 *3 (-1125)) (-5 *2 (-591 *3)))))
+(((*1 *1 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-351 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-989 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *2 (-788))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-523))) (-5 *4 (-523)) (-5 *2 (-51))
- (-5 *1 (-933)))))
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2)
+ (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-1176))
+ (-5 *1 (-995 *3 *4 *5 *6 *7)) (-4 *7 (-994 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-429)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-1176))
+ (-5 *1 (-1026 *3 *4 *5 *6 *7)) (-4 *7 (-994 *3 *4 *5 *6)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1169 *4)) (-4 *4 (-585 (-523)))
- (-5 *2 (-1169 (-383 (-523)))) (-5 *1 (-1194 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-225 *4 *5)) (-14 *4 (-589 (-1087))) (-4 *5 (-973))
- (-5 *2 (-455 *4 *5)) (-5 *1 (-875 *4 *5)))))
+ (-12 (-5 *3 (-591 *6)) (-5 *4 (-591 (-1089))) (-4 *6 (-341))
+ (-5 *2 (-591 (-273 (-885 *6)))) (-5 *1 (-503 *5 *6 *7))
+ (-4 *5 (-429)) (-4 *7 (-13 (-341) (-786))))))
+(((*1 *2 *1) (-12 (-4 *1 (-515 *2)) (-4 *2 (-13 (-382) (-1111)))))
+ ((*1 *1 *1 *1) (-4 *1 (-734))))
+(((*1 *2 *2 *3 *4 *5)
+ (-12 (-5 *2 (-591 *9)) (-5 *3 (-1 (-108) *9))
+ (-5 *4 (-1 (-108) *9 *9)) (-5 *5 (-1 *9 *9 *9))
+ (-4 *9 (-989 *6 *7 *8)) (-4 *6 (-517)) (-4 *7 (-734)) (-4 *8 (-788))
+ (-5 *1 (-908 *6 *7 *8 *9)))))
+(((*1 *2 *2) (-12 (-5 *2 (-854)) (|has| *1 (-6 -4241)) (-4 *1 (-382))))
+ ((*1 *2) (-12 (-4 *1 (-382)) (-5 *2 (-854))))
+ ((*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-640))))
+ ((*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-640)))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4))
+ (-4 *3 (-345 *4))))
+ ((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1169 (-589 (-2 (|:| -2058 *4) (|:| -2557 (-1034))))))
- (-4 *4 (-325)) (-5 *2 (-710)) (-5 *1 (-322 *4))))
- ((*1 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-327 *3 *4)) (-14 *3 (-852))
- (-14 *4 (-852))))
- ((*1 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-328 *3 *4)) (-4 *3 (-325))
- (-14 *4
- (-3 (-1083 *3)
- (-1169 (-589 (-2 (|:| -2058 *3) (|:| -2557 (-1034)))))))))
- ((*1 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-329 *3 *4)) (-4 *3 (-325))
- (-14 *4 (-852)))))
-(((*1 *2) (-12 (-5 *2 (-589 *3)) (-5 *1 (-1002 *3)) (-4 *3 (-125)))))
-(((*1 *2 *3) (-12 (-5 *3 (-203)) (-5 *2 (-292 (-355))) (-5 *1 (-282)))))
-(((*1 *1 *1 *1) (-4 *1 (-284))) ((*1 *1 *1 *1) (-5 *1 (-710)))
- ((*1 *1 *1 *1) (-5 *1 (-794))))
+ (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-335 *4))
+ (-4 *4 (-327)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1070 *3)) (-5 *1 (-161 *3)) (-4 *3 (-286)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-429)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-591 (-1089))) (-5 *2 (-1089)) (-5 *1 (-308)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-880 *4 *5 *6)) (-4 *4 (-339))
- (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-5 *1 (-425 *4 *5 *6 *2))))
+ (|partial| -12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-429) (-788) (-138) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-518 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *4))))))
+(((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-92)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-631 *8)) (-4 *8 (-882 *5 *7 *6))
+ (-4 *5 (-13 (-286) (-138))) (-4 *6 (-13 (-788) (-566 (-1089))))
+ (-4 *7 (-734))
+ (-5 *2
+ (-591
+ (-2 (|:| |eqzro| (-591 *8)) (|:| |neqzro| (-591 *8))
+ (|:| |wcond| (-591 (-885 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1171 (-385 (-885 *5))))
+ (|:| -4003 (-591 (-1171 (-385 (-885 *5))))))))))
+ (-5 *1 (-857 *5 *6 *7 *8)) (-5 *4 (-591 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-631 *8)) (-5 *4 (-591 (-1089))) (-4 *8 (-882 *5 *7 *6))
+ (-4 *5 (-13 (-286) (-138))) (-4 *6 (-13 (-788) (-566 (-1089))))
+ (-4 *7 (-734))
+ (-5 *2
+ (-591
+ (-2 (|:| |eqzro| (-591 *8)) (|:| |neqzro| (-591 *8))
+ (|:| |wcond| (-591 (-885 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1171 (-385 (-885 *5))))
+ (|:| -4003 (-591 (-1171 (-385 (-885 *5))))))))))
+ (-5 *1 (-857 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-631 *7)) (-4 *7 (-882 *4 *6 *5))
+ (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089))))
+ (-4 *6 (-734))
+ (-5 *2
+ (-591
+ (-2 (|:| |eqzro| (-591 *7)) (|:| |neqzro| (-591 *7))
+ (|:| |wcond| (-591 (-885 *4)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1171 (-385 (-885 *4))))
+ (|:| -4003 (-591 (-1171 (-385 (-885 *4))))))))))
+ (-5 *1 (-857 *4 *5 *6 *7))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-94 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-339))
+ (-12 (-5 *3 (-631 *9)) (-5 *5 (-854)) (-4 *9 (-882 *6 *8 *7))
+ (-4 *6 (-13 (-286) (-138))) (-4 *7 (-13 (-788) (-566 (-1089))))
+ (-4 *8 (-734))
(-5 *2
- (-2 (|:| R (-629 *6)) (|:| A (-629 *6)) (|:| |Ainv| (-629 *6))))
- (-5 *1 (-907 *6)) (-5 *3 (-629 *6)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-1087)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-820 *5 *3)) (-5 *4 (-823 *5)) (-4 *5 (-1016))
- (-4 *3 (-152 *6)) (-4 (-883 *6) (-817 *5))
- (-4 *6 (-13 (-817 *5) (-158))) (-5 *1 (-163 *5 *6 *3))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *2 (-820 *4 *1)) (-5 *3 (-823 *4)) (-4 *1 (-817 *4))
- (-4 *4 (-1016))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-820 *5 *6)) (-5 *4 (-823 *5)) (-4 *5 (-1016))
- (-4 *6 (-13 (-1016) (-964 *3))) (-4 *3 (-817 *5))
- (-5 *1 (-862 *5 *3 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-820 *5 *3)) (-4 *5 (-1016))
- (-4 *3 (-13 (-406 *6) (-564 *4) (-817 *5) (-964 (-562 $))))
- (-5 *4 (-823 *5)) (-4 *6 (-13 (-515) (-786) (-817 *5)))
- (-5 *1 (-863 *5 *6 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-820 (-523) *3)) (-5 *4 (-823 (-523))) (-4 *3 (-508))
- (-5 *1 (-864 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-820 *5 *6)) (-5 *3 (-562 *6)) (-4 *5 (-1016))
- (-4 *6 (-13 (-786) (-964 (-562 $)) (-564 *4) (-817 *5)))
- (-5 *4 (-823 *5)) (-5 *1 (-865 *5 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-816 *5 *6 *3)) (-5 *4 (-823 *5)) (-4 *5 (-1016))
- (-4 *6 (-817 *5)) (-4 *3 (-609 *6)) (-5 *1 (-866 *5 *6 *3))))
- ((*1 *2 *3 *4 *2 *5)
- (-12 (-5 *5 (-1 (-820 *6 *3) *8 (-823 *6) (-820 *6 *3)))
- (-4 *8 (-786)) (-5 *2 (-820 *6 *3)) (-5 *4 (-823 *6))
- (-4 *6 (-1016)) (-4 *3 (-13 (-880 *9 *7 *8) (-564 *4)))
- (-4 *7 (-732)) (-4 *9 (-13 (-973) (-786) (-817 *6)))
- (-5 *1 (-867 *6 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-820 *5 *3)) (-4 *5 (-1016))
- (-4 *3 (-13 (-880 *8 *6 *7) (-564 *4))) (-5 *4 (-823 *5))
- (-4 *7 (-817 *5)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *8 (-13 (-973) (-786) (-817 *5))) (-5 *1 (-867 *5 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-820 *5 *3)) (-4 *5 (-1016)) (-4 *3 (-921 *6))
- (-4 *6 (-13 (-515) (-817 *5) (-564 *4))) (-5 *4 (-823 *5))
- (-5 *1 (-870 *5 *6 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-820 *5 (-1087))) (-5 *3 (-1087)) (-5 *4 (-823 *5))
- (-4 *5 (-1016)) (-5 *1 (-871 *5))))
- ((*1 *2 *3 *4 *5 *2 *6)
- (-12 (-5 *4 (-589 (-823 *7))) (-5 *5 (-1 *9 (-589 *9)))
- (-5 *6 (-1 (-820 *7 *9) *9 (-823 *7) (-820 *7 *9))) (-4 *7 (-1016))
- (-4 *9 (-13 (-973) (-564 (-823 *7)) (-964 *8))) (-5 *2 (-820 *7 *9))
- (-5 *3 (-589 *9)) (-4 *8 (-13 (-973) (-786)))
- (-5 *1 (-872 *7 *8 *9)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-1070)) (-5 *5 (-629 (-203)))
- (-5 *2 (-962)) (-5 *1 (-687)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *1 *1) (-12 (-5 *1 (-471 *2)) (-14 *2 (-523))))
- ((*1 *1 *1) (-5 *1 (-1034))))
-(((*1 *1 *1) (-12 (-4 *1 (-401 *2)) (-4 *2 (-1016)) (-4 *2 (-344)))))
-(((*1 *2 *1) (-12 (-5 *2 (-713)) (-5 *1 (-51)))))
-(((*1 *2 *1 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |lm| (-758 *3)) (|:| |rm| (-758 *3))))
- (-5 *1 (-758 *3)) (-4 *3 (-786))))
- ((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-1145 (-523))) (-5 *1 (-459 *3)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-1191 *3 *4)) (-4 *1 (-350 *3 *4)) (-4 *3 (-786))
- (-4 *4 (-158))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-362 *2)) (-4 *2 (-1016))))
- ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-758 *2)) (-4 *2 (-786))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-758 *2)) (-4 *2 (-786))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-758 *3)) (-4 *1 (-1184 *3 *4)) (-4 *3 (-786))
- (-4 *4 (-973))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1127)) (-4 *5 (-1145 *4))
- (-5 *2 (-2 (|:| -2275 (-383 *5)) (|:| |poly| *3)))
- (-5 *1 (-137 *4 *5 *3)) (-4 *3 (-1145 (-383 *5))))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-471 *2)) (-14 *2 (-523))))
- ((*1 *1 *1 *1) (-5 *1 (-1034))))
-(((*1 *1 *1) (-12 (-4 *1 (-350 *2 *3)) (-4 *2 (-786)) (-4 *3 (-158))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-573 *2 *3 *4)) (-4 *2 (-786))
- (-4 *3 (-13 (-158) (-657 (-383 (-523))))) (-14 *4 (-852))))
- ((*1 *1 *1) (-12 (-5 *1 (-618 *2)) (-4 *2 (-786))))
- ((*1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-786))))
- ((*1 *1 *1) (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-13 (-1016) (-33))) (-5 *1 (-1052 *3 *2))
- (-4 *3 (-13 (-1016) (-33))))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-4 *1 (-152 *2)) (-4 *2 (-158)) (-4 *2 (-515))))
- ((*1 *1 *1 *2)
- (|partial| -12 (-4 *1 (-302 *2 *3)) (-4 *2 (-973)) (-4 *3 (-731))
- (-4 *2 (-515))))
- ((*1 *1 *1 *1) (|partial| -4 *1 (-515)))
- ((*1 *1 *1 *2)
- (|partial| -12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973))
- (-4 *3 (-349 *2)) (-4 *4 (-349 *2)) (-4 *2 (-515))))
- ((*1 *1 *1 *1) (|partial| -5 *1 (-710)))
- ((*1 *1 *1 *2)
- (|partial| -12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-515))))
- ((*1 *1 *1 *1) (-5 *1 (-794)))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1169 *4)) (-4 *4 (-1145 *3)) (-4 *3 (-515))
- (-5 *1 (-899 *3 *4))))
- ((*1 *1 *1 *2)
- (|partial| -12 (-4 *1 (-976 *3 *4 *2 *5 *6)) (-4 *2 (-973))
- (-4 *5 (-216 *4 *2)) (-4 *6 (-216 *3 *2)) (-4 *2 (-515))))
- ((*1 *2 *2 *2)
- (|partial| -12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1092)))))
-(((*1 *1) (-5 *1 (-985))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-108))
- (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-4 *3 (-13 (-27) (-1109) (-406 *6) (-10 -8 (-15 -3976 ($ *7)))))
- (-4 *7 (-784))
- (-4 *8
- (-13 (-1147 *3 *7) (-339) (-1109)
- (-10 -8 (-15 -4024 ($ $)) (-15 -2669 ($ $)))))
+ (-591
+ (-2 (|:| |eqzro| (-591 *9)) (|:| |neqzro| (-591 *9))
+ (|:| |wcond| (-591 (-885 *6)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1171 (-385 (-885 *6))))
+ (|:| -4003 (-591 (-1171 (-385 (-885 *6))))))))))
+ (-5 *1 (-857 *6 *7 *8 *9)) (-5 *4 (-591 *9))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-631 *9)) (-5 *4 (-591 (-1089))) (-5 *5 (-854))
+ (-4 *9 (-882 *6 *8 *7)) (-4 *6 (-13 (-286) (-138)))
+ (-4 *7 (-13 (-788) (-566 (-1089)))) (-4 *8 (-734))
(-5 *2
- (-3 (|:| |%series| *8)
- (|:| |%problem| (-2 (|:| |func| (-1070)) (|:| |prob| (-1070))))))
- (-5 *1 (-398 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1070)) (-4 *9 (-912 *8))
- (-14 *10 (-1087)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1083 *2)) (-4 *2 (-406 *4)) (-4 *4 (-13 (-786) (-515)))
- (-5 *1 (-31 *4 *2)))))
-(((*1 *2 *1) (-12 (-4 *3 (-1123)) (-5 *2 (-589 *1)) (-4 *1 (-938 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-589 (-1076 *3 *4))) (-5 *1 (-1076 *3 *4))
- (-14 *3 (-852)) (-4 *4 (-973)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-471 *2)) (-14 *2 (-523))))
- ((*1 *1 *1 *1) (-5 *1 (-1034))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-427))
+ (-591
+ (-2 (|:| |eqzro| (-591 *9)) (|:| |neqzro| (-591 *9))
+ (|:| |wcond| (-591 (-885 *6)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1171 (-385 (-885 *6))))
+ (|:| -4003 (-591 (-1171 (-385 (-885 *6))))))))))
+ (-5 *1 (-857 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-631 *8)) (-5 *4 (-854)) (-4 *8 (-882 *5 *7 *6))
+ (-4 *5 (-13 (-286) (-138))) (-4 *6 (-13 (-788) (-566 (-1089))))
+ (-4 *7 (-734))
(-5 *2
- (-589
- (-2 (|:| |eigval| (-3 (-383 (-883 *4)) (-1077 (-1087) (-883 *4))))
- (|:| |eigmult| (-710))
- (|:| |eigvec| (-589 (-629 (-383 (-883 *4))))))))
- (-5 *1 (-269 *4)) (-5 *3 (-629 (-383 (-883 *4)))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-805)) (-5 *3 (-589 (-240))) (-5 *1 (-238)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5))
- (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-1180 *3 *4 *5 *6))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-589 *8)) (-5 *3 (-1 (-108) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-515))
- (-4 *6 (-732)) (-4 *7 (-786)) (-5 *1 (-1180 *5 *6 *7 *8)))))
+ (-591
+ (-2 (|:| |eqzro| (-591 *8)) (|:| |neqzro| (-591 *8))
+ (|:| |wcond| (-591 (-885 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1171 (-385 (-885 *5))))
+ (|:| -4003 (-591 (-1171 (-385 (-885 *5))))))))))
+ (-5 *1 (-857 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-631 *9)) (-5 *4 (-591 *9)) (-5 *5 (-1072))
+ (-4 *9 (-882 *6 *8 *7)) (-4 *6 (-13 (-286) (-138)))
+ (-4 *7 (-13 (-788) (-566 (-1089)))) (-4 *8 (-734)) (-5 *2 (-525))
+ (-5 *1 (-857 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-631 *9)) (-5 *4 (-591 (-1089))) (-5 *5 (-1072))
+ (-4 *9 (-882 *6 *8 *7)) (-4 *6 (-13 (-286) (-138)))
+ (-4 *7 (-13 (-788) (-566 (-1089)))) (-4 *8 (-734)) (-5 *2 (-525))
+ (-5 *1 (-857 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-631 *8)) (-5 *4 (-1072)) (-4 *8 (-882 *5 *7 *6))
+ (-4 *5 (-13 (-286) (-138))) (-4 *6 (-13 (-788) (-566 (-1089))))
+ (-4 *7 (-734)) (-5 *2 (-525)) (-5 *1 (-857 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-631 *10)) (-5 *4 (-591 *10)) (-5 *5 (-854))
+ (-5 *6 (-1072)) (-4 *10 (-882 *7 *9 *8)) (-4 *7 (-13 (-286) (-138)))
+ (-4 *8 (-13 (-788) (-566 (-1089)))) (-4 *9 (-734)) (-5 *2 (-525))
+ (-5 *1 (-857 *7 *8 *9 *10))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-631 *10)) (-5 *4 (-591 (-1089))) (-5 *5 (-854))
+ (-5 *6 (-1072)) (-4 *10 (-882 *7 *9 *8)) (-4 *7 (-13 (-286) (-138)))
+ (-4 *8 (-13 (-788) (-566 (-1089)))) (-4 *9 (-734)) (-5 *2 (-525))
+ (-5 *1 (-857 *7 *8 *9 *10))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-631 *9)) (-5 *4 (-854)) (-5 *5 (-1072))
+ (-4 *9 (-882 *6 *8 *7)) (-4 *6 (-13 (-286) (-138)))
+ (-4 *7 (-13 (-788) (-566 (-1089)))) (-4 *8 (-734)) (-5 *2 (-525))
+ (-5 *1 (-857 *6 *7 *8 *9)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-712))) (-5 *3 (-108)) (-5 *1 (-1078 *4 *5))
+ (-14 *4 (-854)) (-4 *5 (-975)))))
(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1 (-108) *9)) (-5 *5 (-1 (-108) *9 *9))
- (-4 *9 (-987 *6 *7 *8)) (-4 *6 (-515)) (-4 *7 (-732))
- (-4 *8 (-786)) (-5 *2 (-2 (|:| |bas| *1) (|:| -3346 (-589 *9))))
- (-5 *3 (-589 *9)) (-4 *1 (-1117 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1 (-108) *8 *8)) (-4 *8 (-987 *5 *6 *7))
- (-4 *5 (-515)) (-4 *6 (-732)) (-4 *7 (-786))
- (-5 *2 (-2 (|:| |bas| *1) (|:| -3346 (-589 *8))))
- (-5 *3 (-589 *8)) (-4 *1 (-1117 *5 *6 *7 *8)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-523)) (-5 *2 (-589 (-589 (-203)))) (-5 *1 (-1120)))))
+ (-12 (-5 *3 (-1171 *6)) (-5 *4 (-1171 (-525))) (-5 *5 (-525))
+ (-4 *6 (-1018)) (-5 *2 (-1 *6)) (-5 *1 (-947 *6)))))
+(((*1 *1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1 *1) (-4 *1 (-119))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-712)) (-4 *4 (-327)) (-5 *1 (-197 *4 *2))
+ (-4 *2 (-1147 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515))
- (-5 *2 (-108)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-515))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-515)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1070)) (-5 *2 (-589 (-1092))) (-5 *1 (-1049)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
+ (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975))
+ (-5 *2 (-591 (-591 (-591 (-712))))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-601 *2)) (-4 *2 (-975)) (-4 *2 (-341))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-341)) (-5 *1 (-604 *4 *2))
+ (-4 *2 (-601 *4)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-854)) (-5 *2 (-712)) (-5 *1 (-1019 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3))))
+(((*1 *2 *2 *3 *4 *4)
+ (-12 (-5 *4 (-525)) (-4 *3 (-160)) (-4 *5 (-351 *3))
+ (-4 *6 (-351 *3)) (-5 *1 (-630 *3 *5 *6 *2))
+ (-4 *2 (-629 *3 *5 *6)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-629 (-383 (-883 (-523)))))
- (-5 *2 (-629 (-292 (-523)))) (-5 *1 (-958)))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4248)) (-4 *1 (-462 *3)) (-4 *3 (-1123))
- (-4 *3 (-1016)) (-5 *2 (-710))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4248)) (-4 *1 (-462 *4))
- (-4 *4 (-1123)) (-5 *2 (-710)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1083 *3)) (-4 *3 (-325)) (-5 *1 (-333 *3)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-523)) (-4 *4 (-158)) (-4 *5 (-349 *4))
- (-4 *6 (-349 *4)) (-5 *1 (-628 *4 *5 *6 *2))
- (-4 *2 (-627 *4 *5 *6)))))
-(((*1 *1 *2 *2)
- (-12 (-5 *2 (-710)) (-4 *3 (-973)) (-4 *1 (-627 *3 *4 *5))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-1167 *3)) (-4 *3 (-23)) (-4 *3 (-1123)))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1147 (-525)))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1147 (-525))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-98 *3)))))
+(((*1 *2 *3 *4 *2 *5 *6)
+ (-12
+ (-5 *5
+ (-2 (|:| |done| (-591 *11))
+ (|:| |todo| (-591 (-2 (|:| |val| *3) (|:| -3374 *11))))))
+ (-5 *6 (-712))
+ (-5 *2 (-591 (-2 (|:| |val| (-591 *10)) (|:| -3374 *11))))
+ (-5 *3 (-591 *10)) (-5 *4 (-591 *11)) (-4 *10 (-989 *7 *8 *9))
+ (-4 *11 (-994 *7 *8 *9 *10)) (-4 *7 (-429)) (-4 *8 (-734))
+ (-4 *9 (-788)) (-5 *1 (-992 *7 *8 *9 *10 *11))))
+ ((*1 *2 *3 *4 *2 *5 *6)
+ (-12
+ (-5 *5
+ (-2 (|:| |done| (-591 *11))
+ (|:| |todo| (-591 (-2 (|:| |val| *3) (|:| -3374 *11))))))
+ (-5 *6 (-712))
+ (-5 *2 (-591 (-2 (|:| |val| (-591 *10)) (|:| -3374 *11))))
+ (-5 *3 (-591 *10)) (-5 *4 (-591 *11)) (-4 *10 (-989 *7 *8 *9))
+ (-4 *11 (-1027 *7 *8 *9 *10)) (-4 *7 (-429)) (-4 *8 (-734))
+ (-4 *9 (-788)) (-5 *1 (-1059 *7 *8 *9 *10 *11)))))
(((*1 *2 *1)
- (-12 (-4 *2 (-880 *3 *5 *4)) (-5 *1 (-916 *3 *4 *5 *2))
- (-4 *3 (-427)) (-4 *4 (-786)) (-4 *5 (-732)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-1169 (-523))) (-5 *3 (-523)) (-5 *1 (-1026))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-1169 (-523))) (-5 *3 (-589 (-523))) (-5 *4 (-523))
- (-5 *1 (-1026)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-896 *3)) (-4 *3 (-897)))))
-(((*1 *2 *3)
- (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-523))) (-5 *1 (-971)))))
-(((*1 *2 *3 *3 *2)
- (|partial| -12 (-5 *2 (-710))
- (-4 *3 (-13 (-666) (-344) (-10 -7 (-15 ** (*3 *3 (-523))))))
- (-5 *1 (-224 *3)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-370))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1104)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-108) *2)) (-4 *2 (-125)) (-5 *1 (-1002 *2))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-523) *2 *2)) (-4 *2 (-125)) (-5 *1 (-1002 *2)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2056 (-721 *3)) (|:| |coef1| (-721 *3))))
- (-5 *1 (-721 *3)) (-4 *3 (-515)) (-4 *3 (-973))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-515)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *2 (-2 (|:| -2056 *1) (|:| |coef1| *1)))
- (-4 *1 (-987 *3 *4 *5)))))
-(((*1 *1 *1)
- (|partial| -12 (-4 *1 (-343 *2)) (-4 *2 (-158)) (-4 *2 (-515))))
- ((*1 *1 *1) (|partial| -4 *1 (-662))))
-(((*1 *1 *1) (-12 (-4 *1 (-115 *2)) (-4 *2 (-1123))))
- ((*1 *1 *1) (-12 (-5 *1 (-614 *2)) (-4 *2 (-786))))
- ((*1 *1 *1) (-12 (-5 *1 (-618 *2)) (-4 *2 (-786))))
- ((*1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-294 *3)) (-4 *3 (-517)) (-4 *3 (-788)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-854)) (-4 *1 (-307 *3)) (-4 *3 (-341)) (-4 *3 (-346))))
+ ((*1 *2 *1) (-12 (-4 *1 (-307 *2)) (-4 *2 (-341))))
((*1 *2 *1)
- (-12 (-4 *2 (-13 (-784) (-339))) (-5 *1 (-983 *2 *3))
- (-4 *3 (-1145 *2)))))
-(((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-710)) (-4 *4 (-515)) (-5 *1 (-899 *4 *2))
- (-4 *2 (-1145 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-203))))
- ((*1 *1 *1) (-4 *1 (-508)))
- ((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-546 *3)) (-14 *3 *2)))
- ((*1 *2 *1) (-12 (-4 *1 (-1016)) (-5 *2 (-1034)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-339)) (-5 *2 (-589 *3)) (-5 *1 (-876 *4 *3))
- (-4 *3 (-1145 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1083 *6)) (-4 *6 (-973)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *2 (-1083 *7)) (-5 *1 (-297 *4 *5 *6 *7))
- (-4 *7 (-880 *6 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-203)) (-5 *3 (-710)) (-5 *1 (-204))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-155 (-203))) (-5 *3 (-710)) (-5 *1 (-204))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1051))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-823 *4)) (-5 *3 (-1 (-108) *5)) (-4 *4 (-1016))
- (-4 *5 (-1123)) (-5 *1 (-821 *4 *5))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-823 *4)) (-5 *3 (-589 (-1 (-108) *5))) (-4 *4 (-1016))
- (-4 *5 (-1123)) (-5 *1 (-821 *4 *5))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-823 *5)) (-5 *3 (-589 (-1087)))
- (-5 *4 (-1 (-108) (-589 *6))) (-4 *5 (-1016)) (-4 *6 (-1123))
- (-5 *1 (-821 *5 *6))))
+ (-12 (-4 *1 (-348 *2 *3)) (-4 *3 (-1147 *2)) (-4 *2 (-160))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-108) *5)) (-4 *5 (-1123)) (-4 *4 (-786))
- (-5 *1 (-868 *4 *2 *5)) (-4 *2 (-406 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 (-1 (-108) *5))) (-4 *5 (-1123)) (-4 *4 (-786))
- (-5 *1 (-868 *4 *2 *5)) (-4 *2 (-406 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1087)) (-5 *4 (-1 (-108) *5)) (-4 *5 (-1123))
- (-5 *2 (-292 (-523))) (-5 *1 (-869 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1087)) (-5 *4 (-589 (-1 (-108) *5))) (-4 *5 (-1123))
- (-5 *2 (-292 (-523))) (-5 *1 (-869 *5))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-1087))) (-5 *3 (-1 (-108) (-589 *6)))
- (-4 *6 (-13 (-406 *5) (-817 *4) (-564 (-823 *4)))) (-4 *4 (-1016))
- (-4 *5 (-13 (-973) (-817 *4) (-786) (-564 (-823 *4))))
- (-5 *1 (-995 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-761)))))
-(((*1 *1 *1) (-12 (-4 *1 (-115 *2)) (-4 *2 (-1123))))
- ((*1 *1 *1) (-12 (-5 *1 (-614 *2)) (-4 *2 (-786))))
- ((*1 *1 *1) (-12 (-5 *1 (-618 *2)) (-4 *2 (-786))))
- ((*1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794))))
+ (-12 (-5 *2 (-1171 *4)) (-5 *3 (-854)) (-4 *4 (-327))
+ (-5 *1 (-495 *4))))
((*1 *2 *1)
- (-12 (-4 *2 (-13 (-784) (-339))) (-5 *1 (-983 *2 *3))
- (-4 *3 (-1145 *2)))))
-(((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1070)) (-4 *1 (-365)))))
+ (-12 (-4 *1 (-1039 *3 *2 *4 *5)) (-4 *4 (-218 *3 *2))
+ (-4 *5 (-218 *3 *2)) (-4 *2 (-975)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1171 (-712))) (-5 *1 (-619 *3)) (-4 *3 (-1018)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3))
- (-4 *3 (-13 (-339) (-1109) (-930))))))
-(((*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203))
- (-5 *2 (-962)) (-5 *1 (-691)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-589 *7)) (|:| |badPols| (-589 *7))))
- (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-589 *7)))))
-(((*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1174)) (-5 *1 (-355))))
- ((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-355)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427)) (-4 *5 (-732))
- (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-104))) (-5 *1 (-160)))))
+ (-12 (-5 *3 (-591 (-564 *5))) (-4 *4 (-788)) (-5 *2 (-564 *5))
+ (-5 *1 (-534 *4 *5)) (-4 *5 (-408 *4)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-292 (-203)))) (-5 *2 (-108)) (-5 *1 (-244)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1068 *2)) (-4 *2 (-284)) (-5 *1 (-159 *2)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-108)) (-5 *3 (-589 (-240))) (-5 *1 (-238))))
- ((*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-240))))
- ((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-442))))
- ((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-442)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-629 (-383 (-883 (-523))))) (-5 *2 (-589 (-292 (-523))))
- (-5 *1 (-958)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-677 *3))))
- ((*1 *1 *2) (-12 (-5 *1 (-677 *2)) (-4 *2 (-1016))))
- ((*1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1087))
- (-4 *5 (-13 (-427) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-2 (|:| -3699 *3) (|:| |coeff| *3))) (-5 *1 (-516 *5 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *5))))))
-(((*1 *2 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1102)))))
-(((*1 *1 *2 *2 *2 *2 *2 *2 *2 *2)
- (-12 (-4 *1 (-736 *2)) (-4 *2 (-158))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-927 *3)) (-4 *3 (-158)) (-5 *1 (-738 *3)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-240))) (-5 *1 (-1170))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 (-240))) (-5 *1 (-1170))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-240))) (-5 *1 (-1171))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 (-240))) (-5 *1 (-1171)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-874 (-203)) (-874 (-203)))) (-5 *1 (-240))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-305 *4)) (-4 *4 (-339))
- (-5 *2 (-629 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-5 *2 (-1169 *3))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158))
- (-5 *2 (-629 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158))
- (-5 *2 (-1169 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-346 *4 *5)) (-4 *4 (-158))
- (-4 *5 (-1145 *4)) (-5 *2 (-629 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-346 *4 *5)) (-4 *4 (-158))
- (-4 *5 (-1145 *4)) (-5 *2 (-1169 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-385 *4 *5)) (-4 *4 (-158))
- (-4 *5 (-1145 *4)) (-5 *2 (-629 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-385 *3 *4)) (-4 *3 (-158)) (-4 *4 (-1145 *3))
- (-5 *2 (-1169 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-393 *4)) (-4 *4 (-158))
- (-5 *2 (-629 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-1169 *3))))
+ (-12 (-5 *3 (-1171 (-631 *4))) (-4 *4 (-160))
+ (-5 *2 (-1171 (-631 (-885 *4)))) (-5 *1 (-171 *4)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-294 *4)) (-4 *4 (-13 (-769) (-788) (-975)))
+ (-5 *2 (-1072)) (-5 *1 (-767 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-629 *5))) (-5 *3 (-629 *5)) (-4 *5 (-339))
- (-5 *2 (-1169 *5)) (-5 *1 (-1004 *5)))))
-(((*1 *2 *3 *4 *5 *5 *5 *5 *4 *6)
- (-12 (-5 *4 (-523)) (-5 *6 (-1 (-1174) (-1169 *5) (-1169 *5) (-355)))
- (-5 *3 (-1169 (-355))) (-5 *5 (-355)) (-5 *2 (-1174))
- (-5 *1 (-727)))))
-(((*1 *1 *1) (-4 *1 (-575)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-576 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930) (-1109))))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-55 *2 *3 *4)) (-4 *2 (-1123)) (-4 *3 (-349 *2))
- (-4 *4 (-349 *2))))
- ((*1 *1 *1 *2)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-556 *3 *2)) (-4 *3 (-1016))
- (-4 *2 (-1123)))))
+ (-12 (-5 *3 (-294 *5)) (-5 *4 (-108))
+ (-4 *5 (-13 (-769) (-788) (-975))) (-5 *2 (-1072))
+ (-5 *1 (-767 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-763)) (-5 *4 (-294 *5))
+ (-4 *5 (-13 (-769) (-788) (-975))) (-5 *2 (-1176))
+ (-5 *1 (-767 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-763)) (-5 *4 (-294 *6)) (-5 *5 (-108))
+ (-4 *6 (-13 (-769) (-788) (-975))) (-5 *2 (-1176))
+ (-5 *1 (-767 *6))))
+ ((*1 *2 *1) (-12 (-4 *1 (-769)) (-5 *2 (-1072))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-769)) (-5 *3 (-108)) (-5 *2 (-1072))))
+ ((*1 *2 *3 *1) (-12 (-4 *1 (-769)) (-5 *3 (-763)) (-5 *2 (-1176))))
+ ((*1 *2 *3 *1 *4)
+ (-12 (-4 *1 (-769)) (-5 *3 (-763)) (-5 *4 (-108)) (-5 *2 (-1176)))))
+(((*1 *1 *1) (-4 *1 (-984))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-876 (-205))) (-5 *2 (-1176)) (-5 *1 (-445)))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (-589 *1)) (-4 *1 (-987 *4 *5 *6)) (-4 *4 (-973))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))))
+ (-12 (-4 *1 (-46 *2 *3)) (-4 *3 (-733)) (-4 *2 (-975))))
((*1 *2 *1 *1)
- (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-108))))
+ (-12 (-4 *2 (-975)) (-5 *1 (-49 *2 *3)) (-14 *3 (-591 (-1089)))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-591 (-854))) (-4 *2 (-341)) (-5 *1 (-143 *4 *2 *5))
+ (-14 *4 (-854)) (-14 *5 (-924 *4 *2))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-294 *3)) (-5 *1 (-203 *3 *4))
+ (-4 *3 (-13 (-975) (-788))) (-14 *4 (-591 (-1089)))))
((*1 *2 *3 *1)
- (-12 (-4 *1 (-1117 *4 *5 *6 *3)) (-4 *4 (-515)) (-4 *5 (-732))
- (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 (-995 *3 *4 *5))) (-4 *3 (-1016))
- (-4 *4 (-13 (-973) (-817 *3) (-786) (-564 (-823 *3))))
- (-4 *5 (-13 (-406 *4) (-817 *3) (-564 (-823 *3))))
- (-5 *1 (-996 *3 *4 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-355)) (-5 *1 (-92))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-355)) (-5 *1 (-92)))))
-(((*1 *1 *1 *1) (-4 *1 (-279))) ((*1 *1 *1) (-4 *1 (-279))))
-(((*1 *2 *1) (-12 (-5 *2 (-1092)) (-5 *1 (-48)))))
-(((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-443))))
- ((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-1170))))
- ((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-1171)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4)))
- (-5 *2 (-2 (|:| |num| (-1169 *4)) (|:| |den| *4))))))
+ (-12 (-4 *1 (-301 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-126))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-360 *2 *3)) (-4 *3 (-1018)) (-4 *2 (-975))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-4 *2 (-517)) (-5 *1 (-572 *2 *4))
+ (-4 *4 (-1147 *2))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-4 *1 (-650 *2)) (-4 *2 (-975))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *2 (-975)) (-5 *1 (-677 *2 *3)) (-4 *3 (-668))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 *5)) (-5 *3 (-591 (-712))) (-4 *1 (-682 *4 *5))
+ (-4 *4 (-975)) (-4 *5 (-788))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-712)) (-4 *1 (-682 *4 *2)) (-4 *4 (-975))
+ (-4 *2 (-788))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-712)) (-4 *1 (-790 *2)) (-4 *2 (-975))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 *6)) (-5 *3 (-591 (-712))) (-4 *1 (-882 *4 *5 *6))
+ (-4 *4 (-975)) (-4 *5 (-734)) (-4 *6 (-788))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-712)) (-4 *1 (-882 *4 *5 *2)) (-4 *4 (-975))
+ (-4 *5 (-734)) (-4 *2 (-788))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-712)) (-4 *2 (-882 *4 (-497 *5) *5))
+ (-5 *1 (-1042 *4 *5 *2)) (-4 *4 (-975)) (-4 *5 (-788))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-712)) (-5 *2 (-885 *4)) (-5 *1 (-1120 *4))
+ (-4 *4 (-975)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-309 *3)) (-4 *3 (-788)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *4)) (-4 *4 (-587 (-525))) (-5 *2 (-108))
+ (-5 *1 (-1196 *4)))))
+(((*1 *2 *1) (|partial| -12 (-4 *1 (-942)) (-5 *2 (-796)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 *4)) (-4 *4 (-788)) (-5 *2 (-591 (-609 *4 *5)))
+ (-5 *1 (-575 *4 *5 *6)) (-4 *5 (-13 (-160) (-659 (-385 (-525)))))
+ (-14 *6 (-854)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-13 (-341) (-138) (-966 (-525))))
+ (-4 *5 (-1147 *4))
+ (-5 *2 (-2 (|:| -3060 (-385 *5)) (|:| |coeff| (-385 *5))))
+ (-5 *1 (-529 *4 *5)) (-5 *3 (-385 *5)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-775))
- (-5 *3
- (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203)))
- (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203))))
- (|:| |ub| (-589 (-779 (-203))))))
- (-5 *2 (-962))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-775))
- (-5 *3
- (-2 (|:| |lfn| (-589 (-292 (-203)))) (|:| -4105 (-589 (-203)))))
- (-5 *2 (-962)))))
+ (-12 (-5 *3 (-885 *5)) (-4 *5 (-975)) (-5 *2 (-227 *4 *5))
+ (-5 *1 (-877 *4 *5)) (-14 *4 (-591 (-1089))))))
+(((*1 *2 *1)
+ (-12 (|has| *1 (-6 -4250)) (-4 *1 (-464 *3)) (-4 *3 (-1125))
+ (-5 *2 (-591 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-679 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *3) (-12 (-5 *3 (-591 (-525))) (-5 *2 (-712)) (-5 *1 (-546)))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-1085 (-885 *4))) (-5 *1 (-394 *3 *4))
+ (-4 *3 (-395 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-4 *3 (-341))
+ (-5 *2 (-1085 (-885 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1085 (-385 (-885 *3)))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-515) (-786))) (-5 *2 (-155 *5))
- (-5 *1 (-552 *4 *5 *3)) (-4 *5 (-13 (-406 *4) (-930) (-1109)))
- (-4 *3 (-13 (-406 (-155 *4)) (-930) (-1109))))))
+ (-12 (-4 *4 (-1129)) (-4 *5 (-1147 *4))
+ (-5 *2 (-2 (|:| -3482 (-385 *5)) (|:| |poly| *3)))
+ (-5 *1 (-139 *4 *5 *3)) (-4 *3 (-1147 (-385 *5))))))
+(((*1 *1 *2 *3)
+ (-12 (-4 *1 (-360 *3 *2)) (-4 *3 (-975)) (-4 *2 (-1018))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-525)) (-5 *2 (-1070 *3)) (-5 *1 (-1074 *3))
+ (-4 *3 (-975))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-760 *4)) (-4 *4 (-788)) (-4 *1 (-1186 *4 *3))
+ (-4 *3 (-975)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-989 *4 *5 *6)) (-4 *4 (-517))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-908 *4 *5 *6 *2)))))
+(((*1 *2 *3 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1147 *5))
+ (-4 *5 (-13 (-341) (-138) (-966 (-525))))
+ (-5 *2
+ (-2 (|:| |a| *6) (|:| |b| (-385 *6)) (|:| |h| *6)
+ (|:| |c1| (-385 *6)) (|:| |c2| (-385 *6)) (|:| -2447 *6)))
+ (-5 *1 (-946 *5 *6)) (-5 *3 (-385 *6)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *5 (-712)) (-4 *6 (-1018)) (-4 *7 (-833 *6))
+ (-5 *2 (-631 *7)) (-5 *1 (-633 *6 *7 *3 *4)) (-4 *3 (-351 *7))
+ (-4 *4 (-13 (-351 *6) (-10 -7 (-6 -4250)))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-4 *1 (-1186 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-975)) (-4 *4 (-160))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975))
+ (-4 *3 (-160)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-854)) (-5 *4 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-712)) (-5 *1 (-724 *2)) (-4 *2 (-37 (-385 (-525))))
+ (-4 *2 (-160)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-2 (|:| |val| (-589 *8)) (|:| -2394 *9))))
- (-5 *4 (-710)) (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-992 *5 *6 *7 *8))
- (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-1174))
- (-5 *1 (-990 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-2 (|:| |val| (-589 *8)) (|:| -2394 *9))))
- (-5 *4 (-710)) (-4 *8 (-987 *5 *6 *7)) (-4 *9 (-1025 *5 *6 *7 *8))
- (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-1174))
- (-5 *1 (-1057 *5 *6 *7 *8 *9)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-710)) (-4 *4 (-515)) (-5 *1 (-899 *4 *2))
- (-4 *2 (-1145 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1145 *3)) (-5 *1 (-375 *3 *2))
- (-4 *3 (-13 (-339) (-136))))))
+ (-12 (-5 *4 (-591 *3)) (-4 *3 (-1027 *5 *6 *7 *8))
+ (-4 *5 (-13 (-286) (-138))) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *8 (-989 *5 *6 *7)) (-5 *2 (-108))
+ (-5 *1 (-547 *5 *6 *7 *8 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-385 (-525)))
+ (-4 *4 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-256 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *4))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1070 *4)) (-5 *3 (-525)) (-4 *4 (-975))
+ (-5 *1 (-1074 *4))))
+ ((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-525)) (-5 *1 (-1163 *3 *4 *5)) (-4 *3 (-975))
+ (-14 *4 (-1089)) (-14 *5 *3))))
(((*1 *2 *1)
- (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973))
- (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-562 *1))) (-4 *1 (-279)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1123)) (-5 *1 (-1046 *4 *2))
- (-4 *2 (-13 (-556 (-523) *4) (-10 -7 (-6 -4248) (-6 -4249))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-786)) (-4 *3 (-1123)) (-5 *1 (-1046 *3 *2))
- (-4 *2 (-13 (-556 (-523) *3) (-10 -7 (-6 -4248) (-6 -4249)))))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-1003)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108)))))
-(((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))))
-(((*1 *2 *2 *2 *2 *3 *3 *4)
- (|partial| -12 (-5 *3 (-562 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1087)))
- (-4 *2 (-13 (-406 *5) (-27) (-1109)))
- (-4 *5 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *1 (-525 *5 *2 *6)) (-4 *6 (-1016)))))
-(((*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108))
- (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5))))
+ (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *2 (-712)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-876 (-205)))) (-5 *1 (-1172)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-224 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-591 *1)) (-5 *3 (-591 *7)) (-4 *1 (-994 *4 *5 *6 *7))
+ (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6))))
((*1 *2 *3 *1)
- (-12 (-4 *1 (-989 *4 *3)) (-4 *4 (-13 (-784) (-339)))
- (-4 *3 (-1145 *4)) (-5 *2 (-108)))))
-(((*1 *1 *2) (-12 (-5 *2 (-144)) (-5 *1 (-805)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-515)) (-4 *3 (-973))
- (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-788 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-94 *5)) (-4 *5 (-515)) (-4 *5 (-973))
- (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-789 *5 *3))
- (-4 *3 (-788 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-800 *3)) (-5 *2 (-523)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5
- (-1 (-2 (|:| |ans| *6) (|:| -2438 *6) (|:| |sol?| (-108))) (-523)
- *6))
- (-4 *6 (-339)) (-4 *7 (-1145 *6))
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 *1))
+ (-4 *1 (-994 *4 *5 *6 *7))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-591 *1)) (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-591 *1))
+ (-4 *1 (-994 *4 *5 *6 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-712)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788))
+ (-4 *3 (-989 *6 *7 *8))
(-5 *2
- (-3 (-2 (|:| |answer| (-383 *7)) (|:| |a0| *6))
- (-2 (|:| -3699 (-383 *7)) (|:| |coeff| (-383 *7))) "failed"))
- (-5 *1 (-533 *6 *7)) (-5 *3 (-383 *7)))))
-(((*1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-699)))))
-(((*1 *2 *2 *3 *4 *4)
- (-12 (-5 *4 (-523)) (-4 *3 (-158)) (-4 *5 (-349 *3))
- (-4 *6 (-349 *3)) (-5 *1 (-628 *3 *5 *6 *2))
- (-4 *2 (-627 *3 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-167)) (-5 *1 (-257)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-108))
- (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2 (-589 (-2 (|:| |val| (-108)) (|:| -2394 *4))))
- (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355))
+ (-2 (|:| |done| (-591 *4))
+ (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4))))))
+ (-5 *1 (-992 *6 *7 *8 *3 *4)) (-4 *4 (-994 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
(-5 *2
- (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523))
- (|:| |success| (-108))))
- (-5 *1 (-728)) (-5 *5 (-523)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-515) (-136))) (-5 *1 (-500 *3 *2))
- (-4 *2 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-339) (-344) (-564 (-523)))) (-4 *4 (-1145 *3))
- (-4 *5 (-664 *3 *4)) (-5 *1 (-504 *3 *4 *5 *2)) (-4 *2 (-1160 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-339) (-344) (-564 (-523)))) (-5 *1 (-505 *3 *2))
- (-4 *2 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-13 (-515) (-136)))
- (-5 *1 (-1064 *3)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109) (-930)))
- (-5 *1 (-161 *3)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1145 *4)) (-4 *4 (-1127))
- (-4 *6 (-1145 (-383 *5)))
+ (-2 (|:| |done| (-591 *4))
+ (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4))))))
+ (-5 *1 (-992 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-712)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788))
+ (-4 *3 (-989 *6 *7 *8))
(-5 *2
- (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5)
- (|:| |gd| *5)))
- (-4 *1 (-318 *4 *5 *6)))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4))
- (-4 *3 (-343 *4))))
- ((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
+ (-2 (|:| |done| (-591 *4))
+ (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4))))))
+ (-5 *1 (-1059 *6 *7 *8 *3 *4)) (-4 *4 (-1027 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-591 *4))
+ (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4))))))
+ (-5 *1 (-1059 *5 *6 *7 *3 *4)) (-4 *4 (-1027 *5 *6 *7 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-712)) (-5 *2 (-385 (-525))) (-5 *1 (-205))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-712)) (-5 *2 (-385 (-525))) (-5 *1 (-205))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-712)) (-5 *2 (-385 (-525))) (-5 *1 (-357))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-712)) (-5 *2 (-385 (-525))) (-5 *1 (-357)))))
+(((*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174))))
+ ((*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174)))))
+(((*1 *2 *2 *3) (-12 (-5 *2 (-525)) (-5 *3 (-712)) (-5 *1 (-522)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-1072)) (-5 *2 (-357)) (-5 *1 (-727)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-429))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1085 *6)) (-4 *6 (-882 *5 *3 *4)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *5 (-842)) (-5 *1 (-434 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-842)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-847 *3)) (-4 *3 (-286)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-203))) (-5 *4 (-710)) (-5 *2 (-629 (-203)))
- (-5 *1 (-282)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-973)) (-4 *2 (-627 *4 *5 *6))
- (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1145 *4)) (-4 *5 (-349 *4))
- (-4 *6 (-349 *4)))))
-(((*1 *1 *1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-394 *3)) (-4 *3 (-515)))))
-(((*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172))))
- ((*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172)))))
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 *4))
+ (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| |cd| (-1072)) (|:| -2400 (-1072))))
+ (-5 *1 (-763)))))
+(((*1 *1 *2) (-12 (-5 *1 (-207 *2)) (-4 *2 (-13 (-341) (-1111))))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-1070)) (-5 *4 (-1034)) (-5 *2 (-108)) (-5 *1 (-760)))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-147 *3 *2))
+ (-4 *2 (-408 *3)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-396 *2)) (-4 *2 (-517)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-631 *6)) (-5 *5 (-1 (-396 (-1085 *6)) (-1085 *6)))
+ (-4 *6 (-341))
+ (-5 *2
+ (-591
+ (-2 (|:| |outval| *7) (|:| |outmult| (-525))
+ (|:| |outvect| (-591 (-631 *7))))))
+ (-5 *1 (-498 *6 *7 *4)) (-4 *7 (-341)) (-4 *4 (-13 (-341) (-786))))))
+(((*1 *1 *1 *1) (-4 *1 (-134)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-147 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *1 (-148 *2)) (-4 *2 (-510))))
+ ((*1 *1 *1 *1) (-5 *1 (-796)))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-525))) (-5 *1 (-973))
+ (-5 *3 (-525)))))
+(((*1 *1 *1) (-4 *1 (-577)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-578 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932) (-1111))))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1072)) (-5 *1 (-1107)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-132))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-135)))))
+(((*1 *2 *1) (-12 (-4 *1 (-403 *3)) (-4 *3 (-1018)) (-5 *2 (-712)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-558 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1125))
+ (-5 *2 (-591 *3)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515))
- (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))))
-(((*1 *1 *1) (-12 (-4 *1 (-406 *2)) (-4 *2 (-786)) (-4 *2 (-973))))
- ((*1 *1 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-710)) (-5 *1 (-57 *3)) (-4 *3 (-1123))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-5 *1 (-57 *3)))))
-(((*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3)
- (-12 (-5 *4 (-629 (-203))) (-5 *5 (-629 (-523))) (-5 *6 (-203))
- (-5 *3 (-523)) (-5 *2 (-962)) (-5 *1 (-691)))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-349 *2)) (-4 *2 (-1123))
- (-4 *2 (-786))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3 *3)) (|has| *1 (-6 -4249))
- (-4 *1 (-349 *3)) (-4 *3 (-1123)))))
-(((*1 *2 *3 *3 *3 *4 *5 *4 *6)
- (-12 (-5 *3 (-292 (-523))) (-5 *4 (-1 (-203) (-203)))
- (-5 *5 (-1011 (-203))) (-5 *6 (-523)) (-5 *2 (-1119 (-857)))
- (-5 *1 (-294))))
- ((*1 *2 *3 *3 *3 *4 *5 *4 *6 *7)
- (-12 (-5 *3 (-292 (-523))) (-5 *4 (-1 (-203) (-203)))
- (-5 *5 (-1011 (-203))) (-5 *6 (-523)) (-5 *7 (-1070))
- (-5 *2 (-1119 (-857))) (-5 *1 (-294))))
- ((*1 *2 *3 *3 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-292 (-523))) (-5 *4 (-1 (-203) (-203)))
- (-5 *5 (-1011 (-203))) (-5 *6 (-203)) (-5 *7 (-523))
- (-5 *2 (-1119 (-857))) (-5 *1 (-294))))
- ((*1 *2 *3 *3 *3 *4 *5 *6 *7 *8)
- (-12 (-5 *3 (-292 (-523))) (-5 *4 (-1 (-203) (-203)))
- (-5 *5 (-1011 (-203))) (-5 *6 (-203)) (-5 *7 (-523)) (-5 *8 (-1070))
- (-5 *2 (-1119 (-857))) (-5 *1 (-294)))))
+ (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111) (-932)))
+ (-5 *1 (-163 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-774 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-781 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *3 *3 *3 *3)
+ (-12 (-4 *4 (-429)) (-4 *3 (-734)) (-4 *5 (-788)) (-5 *2 (-108))
+ (-5 *1 (-426 *4 *3 *5 *6)) (-4 *6 (-882 *4 *3 *5)))))
(((*1 *2)
- (-12 (-5 *2 (-888 (-1034))) (-5 *1 (-319 *3 *4)) (-14 *3 (-852))
- (-14 *4 (-852))))
+ (|partial| -12 (-4 *4 (-1129)) (-4 *5 (-1147 (-385 *2)))
+ (-4 *2 (-1147 *4)) (-5 *1 (-319 *3 *4 *2 *5))
+ (-4 *3 (-320 *4 *2 *5))))
((*1 *2)
- (-12 (-5 *2 (-888 (-1034))) (-5 *1 (-320 *3 *4)) (-4 *3 (-325))
- (-14 *4 (-1083 *3))))
- ((*1 *2)
- (-12 (-5 *2 (-888 (-1034))) (-5 *1 (-321 *3 *4)) (-4 *3 (-325))
- (-14 *4 (-852)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158))
- (-5 *2 (-629 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-629 *3)))))
-(((*1 *2 *3 *4 *3 *5 *3)
- (-12 (-5 *4 (-629 (-203))) (-5 *5 (-629 (-523))) (-5 *3 (-523))
- (-5 *2 (-962)) (-5 *1 (-694)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-110)) (-5 *4 (-589 *2)) (-5 *1 (-109 *2))
- (-4 *2 (-1016))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 (-589 *4))) (-4 *4 (-1016))
- (-5 *1 (-109 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1016))
- (-5 *1 (-109 *4))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-110)) (-5 *2 (-1 *4 (-589 *4)))
- (-5 *1 (-109 *4)) (-4 *4 (-1016))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-591 *3)) (-4 *3 (-973))
- (-5 *1 (-654 *3 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-973)) (-5 *1 (-773 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-355)) (-5 *2 (-203)) (-5 *1 (-1172))))
- ((*1 *2) (-12 (-5 *2 (-203)) (-5 *1 (-1172)))))
-(((*1 *2 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-786))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1087)) (-5 *1 (-796 *3)) (-14 *3 (-589 *2))))
- ((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-896 *3)) (-4 *3 (-897))))
- ((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-918))))
- ((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-1009 *3)) (-4 *3 (-1123))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1147 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731))
- (-5 *2 (-1087))))
- ((*1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-1165 *3)) (-14 *3 *2))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-1169 *5))) (-5 *4 (-523)) (-5 *2 (-1169 *5))
- (-5 *1 (-956 *5)) (-4 *5 (-339)) (-4 *5 (-344)) (-4 *5 (-973)))))
-(((*1 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172))))
- ((*1 *2 *2) (-12 (-5 *2 (-805)) (-5 *1 (-1172)))))
+ (|partial| -12 (-4 *1 (-320 *3 *2 *4)) (-4 *3 (-1129))
+ (-4 *4 (-1147 (-385 *2))) (-4 *2 (-1147 *3)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-589 *9)) (-4 *8 (-987 *5 *6 *7))
- (-4 *9 (-992 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732))
- (-4 *7 (-786)) (-5 *2 (-710)) (-5 *1 (-990 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-589 *9)) (-4 *8 (-987 *5 *6 *7))
- (-4 *9 (-1025 *5 *6 *7 *8)) (-4 *5 (-427)) (-4 *6 (-732))
- (-4 *7 (-786)) (-5 *2 (-710)) (-5 *1 (-1057 *5 *6 *7 *8 *9)))))
-(((*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1123)))))
-(((*1 *1 *2 *2 *3)
- (-12 (-5 *2 (-710)) (-4 *3 (-1123)) (-4 *1 (-55 *3 *4 *5))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3))))
- ((*1 *1) (-5 *1 (-157)))
- ((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1070)) (-4 *1 (-365))))
- ((*1 *1) (-5 *1 (-370)))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-710)) (-4 *1 (-594 *3)) (-4 *3 (-1123))))
- ((*1 *1)
- (-12 (-4 *3 (-1016)) (-5 *1 (-816 *2 *3 *4)) (-4 *2 (-1016))
- (-4 *4 (-609 *3))))
- ((*1 *1) (-12 (-5 *1 (-820 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016))))
- ((*1 *1) (-12 (-5 *1 (-1076 *2 *3)) (-14 *2 (-852)) (-4 *3 (-973))))
- ((*1 *1 *1) (-5 *1 (-1087))) ((*1 *1) (-5 *1 (-1087)))
- ((*1 *1) (-5 *1 (-1104))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2056 *3)))
- (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1174)) (-5 *1 (-355))))
- ((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-355)))))
-(((*1 *2 *2 *3)
- (|partial| -12
- (-5 *3 (-589 (-2 (|:| |func| *2) (|:| |pole| (-108)))))
- (-4 *2 (-13 (-406 *4) (-930))) (-4 *4 (-13 (-786) (-515)))
- (-5 *1 (-253 *4 *2)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-523)) (-5 *1 (-394 *2)) (-4 *2 (-515)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-589 *6)) (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973))
- (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5))
- (-4 *3 (-515)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 (-2 (|:| -2402 *3) (|:| -2746 *4))))
- (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *1 (-1100 *3 *4))))
- ((*1 *1) (-12 (-4 *1 (-1100 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))))
-(((*1 *2 *3 *3 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-1 (-203) (-203) (-203)))
- (-5 *4 (-3 (-1 (-203) (-203) (-203) (-203)) "undefined"))
- (-5 *5 (-1011 (-203))) (-5 *6 (-589 (-240))) (-5 *2 (-1047 (-203)))
- (-5 *1 (-636))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-874 (-203)) (-203) (-203))) (-5 *4 (-1011 (-203)))
- (-5 *5 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-636))))
- ((*1 *2 *2 *3 *4 *4 *5)
- (-12 (-5 *2 (-1047 (-203))) (-5 *3 (-1 (-874 (-203)) (-203) (-203)))
- (-5 *4 (-1011 (-203))) (-5 *5 (-589 (-240))) (-5 *1 (-636)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1070)) (-5 *4 (-523)) (-5 *5 (-629 (-155 (-203))))
- (-5 *2 (-962)) (-5 *1 (-694)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-880 *4 *5 *6)) (-4 *6 (-564 (-1087)))
- (-4 *4 (-339)) (-4 *5 (-732)) (-4 *6 (-786))
- (-5 *2 (-1077 (-589 (-883 *4)) (-589 (-271 (-883 *4)))))
- (-5 *1 (-475 *4 *5 *6 *7)))))
-(((*1 *2 *2 *2 *2 *3)
- (-12 (-4 *3 (-515)) (-5 *1 (-899 *3 *2)) (-4 *2 (-1145 *3)))))
-(((*1 *2) (-12 (-5 *2 (-779 (-523))) (-5 *1 (-497))))
- ((*1 *1) (-12 (-5 *1 (-779 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-589 (-203)))) (-5 *1 (-857)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-589 (-1083 *7))) (-5 *3 (-1083 *7))
- (-4 *7 (-880 *4 *5 *6)) (-4 *4 (-840)) (-4 *5 (-732))
- (-4 *6 (-786)) (-5 *1 (-837 *4 *5 *6 *7))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-589 (-1083 *5))) (-5 *3 (-1083 *5))
- (-4 *5 (-1145 *4)) (-4 *4 (-840)) (-5 *1 (-838 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1169 *1)) (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127))
- (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-596 (-383 *6))) (-5 *4 (-383 *6)) (-4 *6 (-1145 *5))
- (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *1 *1)
+ (-12
(-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4))))
- (-5 *1 (-749 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-596 (-383 *6))) (-4 *6 (-1145 *5))
- (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-5 *2 (-2 (|:| -2922 (-589 (-383 *6))) (|:| -2373 (-629 *5))))
- (-5 *1 (-749 *5 *6)) (-5 *4 (-589 (-383 *6)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-597 *6 (-383 *6))) (-5 *4 (-383 *6)) (-4 *6 (-1145 *5))
- (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
+ (-2 (|:| |lm| (-364 *3)) (|:| |mm| (-364 *3)) (|:| |rm| (-364 *3))))
+ (-5 *1 (-364 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1 *1)
+ (-12
(-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4))))
- (-5 *1 (-749 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-597 *6 (-383 *6))) (-4 *6 (-1145 *5))
- (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-5 *2 (-2 (|:| -2922 (-589 (-383 *6))) (|:| -2373 (-629 *5))))
- (-5 *1 (-749 *5 *6)) (-5 *4 (-589 (-383 *6))))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1068 *4)) (-5 *3 (-523)) (-4 *4 (-973))
- (-5 *1 (-1072 *4))))
- ((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-523)) (-5 *1 (-1161 *3 *4 *5)) (-4 *3 (-973))
- (-14 *4 (-1087)) (-14 *5 *3))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-852))) (-5 *1 (-1017 *3 *4)) (-14 *3 (-852))
- (-14 *4 (-852)))))
-(((*1 *2) (-12 (-5 *2 (-779 (-523))) (-5 *1 (-497))))
- ((*1 *1) (-12 (-5 *1 (-779 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-629 *1)) (-4 *1 (-325)) (-5 *2 (-1169 *1))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-629 *1)) (-4 *1 (-134)) (-4 *1 (-840))
- (-5 *2 (-1169 *1)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-333 *4))
- (-4 *4 (-325)))))
-(((*1 *2 *3 *1 *4)
- (-12 (-5 *3 (-1052 *5 *6)) (-5 *4 (-1 (-108) *6 *6))
- (-4 *5 (-13 (-1016) (-33))) (-4 *6 (-13 (-1016) (-33)))
- (-5 *2 (-108)) (-5 *1 (-1053 *5 *6)))))
-(((*1 *2 *2) (-12 (-5 *1 (-622 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-523)) (-5 *1 (-420 *3)) (-4 *3 (-380)) (-4 *3 (-973)))))
-(((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-518)))))
-(((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-699)))))
+ (-2 (|:| |lm| (-760 *3)) (|:| |mm| (-760 *3)) (|:| |rm| (-760 *3))))
+ (-5 *1 (-760 *3)) (-4 *3 (-788)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-132))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-135)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1089))
+ (-4 *5 (-13 (-517) (-966 (-525)) (-138)))
+ (-5 *2
+ (-2 (|:| -3060 (-385 (-885 *5))) (|:| |coeff| (-385 (-885 *5)))))
+ (-5 *1 (-531 *5)) (-5 *3 (-385 (-885 *5))))))
+(((*1 *2)
+ (-12 (-4 *2 (-13 (-408 *3) (-932))) (-5 *1 (-255 *3 *2))
+ (-4 *3 (-13 (-788) (-517))))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1085 *3)) (-5 *1 (-847 *3)) (-4 *3 (-286)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-564 *2))) (-5 *4 (-591 (-1089)))
+ (-4 *2 (-13 (-408 (-157 *5)) (-932) (-1111)))
+ (-4 *5 (-13 (-517) (-788))) (-5 *1 (-554 *5 *6 *2))
+ (-4 *6 (-13 (-408 *5) (-932) (-1111))))))
+(((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-936))))
+ ((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-936)))))
+(((*1 *2 *3 *3 *3 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-517)) (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-51)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-394 (-1083 *1))) (-5 *1 (-292 *4)) (-5 *3 (-1083 *1))
- (-4 *4 (-427)) (-4 *4 (-515)) (-4 *4 (-786))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-840)) (-5 *2 (-394 (-1083 *1))) (-5 *3 (-1083 *1)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-108)) (-5 *5 (-523)) (-4 *6 (-339)) (-4 *6 (-344))
- (-4 *6 (-973)) (-5 *2 (-589 (-589 (-629 *6)))) (-5 *1 (-956 *6))
- (-5 *3 (-589 (-629 *6)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-339)) (-4 *4 (-344)) (-4 *4 (-973))
- (-5 *2 (-589 (-589 (-629 *4)))) (-5 *1 (-956 *4))
- (-5 *3 (-589 (-629 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-339)) (-4 *5 (-344)) (-4 *5 (-973))
- (-5 *2 (-589 (-589 (-629 *5)))) (-5 *1 (-956 *5))
- (-5 *3 (-589 (-629 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-852)) (-4 *5 (-339)) (-4 *5 (-344)) (-4 *5 (-973))
- (-5 *2 (-589 (-589 (-629 *5)))) (-5 *1 (-956 *5))
- (-5 *3 (-589 (-629 *5))))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-1091)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-133)))))
-(((*1 *1) (-4 *1 (-325))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-629 *3))
- (-4 *3 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $)))))
- (-4 *4 (-1145 *3)) (-5 *1 (-470 *3 *4 *5)) (-4 *5 (-385 *3 *4))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-629 *3))
- (-4 *3 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $)))))
- (-4 *4 (-1145 *3)) (-5 *1 (-470 *3 *4 *5)) (-4 *5 (-385 *3 *4)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1083 *7))
- (-4 *5 (-973)) (-4 *7 (-973)) (-4 *2 (-1145 *5))
- (-5 *1 (-472 *5 *2 *6 *7)) (-4 *6 (-1145 *2)))))
-(((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-971)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7))
- (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-589 *10))
- (-5 *1 (-571 *5 *6 *7 *8 *9 *10)) (-4 *9 (-992 *5 *6 *7 *8))
- (-4 *10 (-1025 *5 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-719 *5 (-796 *6)))) (-5 *4 (-108)) (-4 *5 (-427))
- (-14 *6 (-589 (-1087))) (-5 *2 (-589 (-970 *5 *6)))
- (-5 *1 (-574 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-719 *5 (-796 *6)))) (-5 *4 (-108)) (-4 *5 (-427))
- (-14 *6 (-589 (-1087)))
- (-5 *2
- (-589 (-1058 *5 (-495 (-796 *6)) (-796 *6) (-719 *5 (-796 *6)))))
- (-5 *1 (-574 *5 *6))))
- ((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7))
- (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-5 *2 (-589 (-954 *5 *6 *7 *8))) (-5 *1 (-954 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7))
- (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-5 *2 (-589 (-954 *5 *6 *7 *8))) (-5 *1 (-954 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-589 (-719 *5 (-796 *6)))) (-5 *4 (-108)) (-4 *5 (-427))
- (-14 *6 (-589 (-1087))) (-5 *2 (-589 (-970 *5 *6)))
- (-5 *1 (-970 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7))
- (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786)) (-5 *2 (-589 *1))
- (-4 *1 (-992 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7))
- (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-5 *2 (-589 (-1058 *5 *6 *7 *8))) (-5 *1 (-1058 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7))
- (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-5 *2 (-589 (-1058 *5 *6 *7 *8))) (-5 *1 (-1058 *5 *6 *7 *8))))
+ (-12 (-5 *3 (-1144 *5 *4)) (-4 *4 (-429)) (-4 *4 (-761))
+ (-14 *5 (-1089)) (-5 *2 (-525)) (-5 *1 (-1032 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-213)) (-4 *3 (-975)) (-4 *4 (-788)) (-4 *5 (-245 *4))
+ (-4 *6 (-734)) (-5 *2 (-1 *1 (-712))) (-4 *1 (-232 *3 *4 *5 *6))))
((*1 *2 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-515))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 *1))
- (-4 *1 (-1117 *4 *5 *6 *7)))))
+ (-12 (-4 *4 (-975)) (-4 *3 (-788)) (-4 *5 (-245 *3)) (-4 *6 (-734))
+ (-5 *2 (-1 *1 (-712))) (-4 *1 (-232 *4 *3 *5 *6))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-712)) (-4 *1 (-245 *2)) (-4 *2 (-788)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-589
- (-2 (|:| -2262 (-710))
- (|:| |eqns|
- (-589
- (-2 (|:| |det| *7) (|:| |rows| (-589 (-523)))
- (|:| |cols| (-589 (-523))))))
- (|:| |fgb| (-589 *7)))))
- (-4 *7 (-880 *4 *6 *5)) (-4 *4 (-13 (-284) (-136)))
- (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732)) (-5 *2 (-710))
- (-5 *1 (-855 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (-12 (-4 *4 (-1016)) (-5 *2 (-820 *3 *5)) (-5 *1 (-816 *3 *4 *5))
- (-4 *3 (-1016)) (-4 *5 (-609 *4)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123)))))
+ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205))
+ (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205)))
+ (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205)))
+ (|:| |abserr| (-205)) (|:| |relerr| (-205))))
+ (-5 *2 (-357)) (-5 *1 (-187)))))
+(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-964)) (-5 *3 (-1089)) (-5 *1 (-174)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-385 *5)) (-4 *5 (-1147 *4)) (-4 *4 (-517))
+ (-4 *4 (-975)) (-4 *2 (-1162 *4)) (-5 *1 (-1165 *4 *5 *6 *2))
+ (-4 *6 (-601 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-777)) (-5 *4 (-985)) (-5 *2 (-962)) (-5 *1 (-776))))
- ((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-962)) (-5 *1 (-776))))
- ((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-589 (-355))) (-5 *5 (-589 (-779 (-355))))
- (-5 *6 (-589 (-292 (-355)))) (-5 *3 (-292 (-355))) (-5 *2 (-962))
- (-5 *1 (-776))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-292 (-355))) (-5 *4 (-589 (-355)))
- (-5 *5 (-589 (-779 (-355)))) (-5 *2 (-962)) (-5 *1 (-776))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-292 (-355))) (-5 *4 (-589 (-355))) (-5 *2 (-962))
- (-5 *1 (-776))))
+ (-12 (-5 *2 (-591 (-157 *4))) (-5 *1 (-145 *3 *4))
+ (-4 *3 (-1147 (-157 (-525)))) (-4 *4 (-13 (-341) (-786)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-341) (-786))) (-5 *2 (-591 (-157 *4)))
+ (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-292 (-355)))) (-5 *4 (-589 (-355)))
- (-5 *2 (-962)) (-5 *1 (-776)))))
-(((*1 *1 *1 *1) (-4 *1 (-448))) ((*1 *1 *1 *1) (-4 *1 (-701))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-136))
- (-4 *3 (-284)) (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-906 *3 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-1003))) (-5 *1 (-268)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355))
- (-5 *2
- (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523))
- (|:| |success| (-108))))
- (-5 *1 (-728)) (-5 *5 (-523)))))
+ (-12 (-4 *4 (-13 (-341) (-786))) (-5 *2 (-591 (-157 *4)))
+ (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4))))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1119 *2 *3 *4 *5)) (-4 *2 (-517)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *5 (-989 *2 *3 *4)))))
(((*1 *2 *3 *2)
- (-12 (-4 *2 (-13 (-339) (-784))) (-5 *1 (-165 *2 *3))
- (-4 *3 (-1145 (-155 *2)))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-339) (-784))) (-5 *1 (-165 *2 *3))
- (-4 *3 (-1145 (-155 *2))))))
-(((*1 *1 *1) (|partial| -4 *1 (-134))) ((*1 *1 *1) (-4 *1 (-325)))
- ((*1 *1 *1) (|partial| -12 (-4 *1 (-134)) (-4 *1 (-840)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355))
- (-5 *2
- (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523))
- (|:| |success| (-108))))
- (-5 *1 (-728)) (-5 *5 (-523)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1161 *2 *3 *4)) (-4 *2 (-973)) (-14 *3 (-1087))
- (-14 *4 *2))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-230 *3 *4 *2 *5)) (-4 *3 (-973)) (-4 *4 (-786))
- (-4 *5 (-732)) (-4 *2 (-243 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))))
+ (-12 (-4 *1 (-728)) (-5 *2 (-964))
+ (-5 *3
+ (-2 (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))))
+ ((*1 *2 *3 *2)
+ (-12 (-4 *1 (-728)) (-5 *2 (-964))
+ (-5 *3
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205)))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1169 (-292 (-203)))) (-5 *4 (-589 (-1087)))
- (-5 *2 (-629 (-292 (-203)))) (-5 *1 (-185))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1016)) (-4 *6 (-831 *5)) (-5 *2 (-629 *6))
- (-5 *1 (-631 *5 *6 *3 *4)) (-4 *3 (-349 *6))
- (-4 *4 (-13 (-349 *5) (-10 -7 (-6 -4248)))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-874 *5)) (-4 *5 (-973)) (-5 *2 (-710))
- (-5 *1 (-1076 *4 *5)) (-14 *4 (-852))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-710))) (-5 *3 (-710)) (-5 *1 (-1076 *4 *5))
- (-14 *4 (-852)) (-4 *5 (-973))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-710))) (-5 *3 (-874 *5)) (-4 *5 (-973))
- (-5 *1 (-1076 *4 *5)) (-14 *4 (-852)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-549 *3)) (-4 *3 (-973))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-902 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-731))
- (-4 *5 (-786)) (-5 *2 (-108)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-427))
- (-4 *3 (-515)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-906 *3 *4 *5 *6)))))
-(((*1 *1 *1) (-12 (-5 *1 (-394 *2)) (-4 *2 (-515)))))
+ (-12 (-4 *6 (-517)) (-4 *2 (-882 *3 *5 *4))
+ (-5 *1 (-674 *5 *4 *6 *2)) (-5 *3 (-385 (-885 *6))) (-4 *5 (-734))
+ (-4 *4 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $))))))))
(((*1 *2 *3 *1)
- (-12 (-4 *1 (-556 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1123))
+ (-12 (-4 *1 (-562 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018))
(-5 *2 (-108)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-838 *4)) (-4 *4 (-1018)) (-5 *2 (-591 (-712)))
+ (-5 *1 (-837 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-883 *5)) (-4 *5 (-973)) (-5 *2 (-225 *4 *5))
- (-5 *1 (-875 *4 *5)) (-14 *4 (-589 (-1087))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523)))))
+ (-12 (-4 *4 (-341)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4))
+ (-5 *2 (-712)) (-5 *1 (-492 *4 *5 *6 *3)) (-4 *3 (-629 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-4 *3 (-517)) (-5 *2 (-712))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *4 (-160)) (-4 *5 (-351 *4))
+ (-4 *6 (-351 *4)) (-5 *2 (-712)) (-5 *1 (-630 *4 *5 *6 *3))
+ (-4 *3 (-629 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975))
+ (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-4 *5 (-517))
+ (-5 *2 (-712)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1169 (-589 (-2 (|:| -2058 *4) (|:| -2557 (-1034))))))
- (-4 *4 (-325)) (-5 *2 (-1174)) (-5 *1 (-493 *4)))))
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1103 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-1018)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-224 *2)) (-4 *2 (-1125)))))
+(((*1 *1)
+ (-12 (-4 *1 (-382)) (-2247 (|has| *1 (-6 -4241)))
+ (-2247 (|has| *1 (-6 -4233)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-403 *2)) (-4 *2 (-1018)) (-4 *2 (-788))))
+ ((*1 *1 *1 *1) (-4 *1 (-788)))
+ ((*1 *2 *1) (-12 (-4 *1 (-900 *2)) (-4 *2 (-788))))
+ ((*1 *1) (-5 *1 (-1036))))
(((*1 *2 *3 *4)
- (-12 (-4 *2 (-1145 *4)) (-5 *1 (-746 *4 *2 *3 *5))
- (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *3 (-599 *2))
- (-4 *5 (-599 (-383 *2)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *2 (-1145 *4)) (-5 *1 (-746 *4 *2 *5 *3))
- (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *5 (-599 *2))
- (-4 *3 (-599 (-383 *2))))))
+ (-12 (-4 *4 (-341)) (-5 *2 (-591 (-1070 *4))) (-5 *1 (-264 *4 *5))
+ (-5 *3 (-1070 *4)) (-4 *5 (-1162 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-1089))) (-4 *4 (-13 (-286) (-138)))
+ (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734))
+ (-5 *2 (-591 (-385 (-885 *4)))) (-5 *1 (-857 *4 *5 *6 *7))
+ (-4 *7 (-882 *4 *6 *5)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1162 *2)) (-4 *2 (-975)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-631 *3))
+ (-4 *3 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $)))))
+ (-4 *4 (-1147 *3)) (-5 *1 (-472 *3 *4 *5)) (-4 *5 (-387 *3 *4))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-631 *3))
+ (-4 *3 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $)))))
+ (-4 *4 (-1147 *3)) (-5 *1 (-472 *3 *4 *5)) (-4 *5 (-387 *3 *4)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-339))
+ (-12 (-5 *3 (-591 (-781 (-205)))) (-5 *4 (-205)) (-5 *2 (-591 *4))
+ (-5 *1 (-246)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-294 (-357))) (-5 *2 (-294 (-205))) (-5 *1 (-284)))))
+(((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-859)))))
+(((*1 *1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-788))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-525)) (-4 *1 (-261 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-4 *1 (-261 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *2)
+ (-12
(-5 *2
- (-2 (|:| A (-629 *5))
- (|:| |eqs|
- (-589
- (-2 (|:| C (-629 *5)) (|:| |g| (-1169 *5)) (|:| -1747 *6)
- (|:| |rh| *5))))))
- (-5 *1 (-752 *5 *6)) (-5 *3 (-629 *5)) (-5 *4 (-1169 *5))
- (-4 *6 (-599 *5))))
+ (-2
+ (|:| -2019
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (|:| -1221
+ (-2
+ (|:| |endPointContinuity|
+ (-3 (|:| |continuous| "Continuous at the end points")
+ (|:| |lowerSingular|
+ "There is a singularity at the lower end point")
+ (|:| |upperSingular|
+ "There is a singularity at the upper end point")
+ (|:| |bothSingular|
+ "There are singularities at both end points")
+ (|:| |notEvaluated|
+ "End point continuity not yet evaluated")))
+ (|:| |singularitiesStream|
+ (-3 (|:| |str| (-1070 (-205)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -1767
+ (-3 (|:| |finite| "The range is finite")
+ (|:| |lowerInfinite|
+ "The bottom of range is infinite")
+ (|:| |upperInfinite| "The top of range is infinite")
+ (|:| |bothInfinite|
+ "Both top and bottom points are infinite")
+ (|:| |notEvaluated| "Range not yet evaluated")))))))
+ (-5 *1 (-520))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-712)) (-4 *1 (-636 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2
+ (|:| -2019
+ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205))
+ (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205)))
+ (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205)))
+ (|:| |abserr| (-205)) (|:| |relerr| (-205))))
+ (|:| -1221
+ (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357))
+ (|:| |expense| (-357)) (|:| |accuracy| (-357))
+ (|:| |intermediateResults| (-357))))))
+ (-5 *1 (-744))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-339)) (-4 *6 (-599 *5))
- (-5 *2 (-2 (|:| -2373 (-629 *6)) (|:| |vec| (-1169 *5))))
- (-5 *1 (-752 *5 *6)) (-5 *3 (-629 *6)) (-5 *4 (-1169 *5)))))
+ (-12 (-5 *2 (-1176)) (-5 *1 (-1103 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-1018)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 *3)) (-4 *3 (-1145 *5)) (-4 *5 (-284))
- (-5 *2 (-710)) (-5 *1 (-430 *5 *3)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-710)) (-5 *2 (-108)))))
-(((*1 *2 *2) (-12 (-5 *2 (-589 (-629 (-292 (-523))))) (-5 *1 (-958)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-515)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158))
- (-5 *2 (-1169 (-629 *4)))))
- ((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-1169 (-629 *4))) (-5 *1 (-392 *3 *4))
- (-4 *3 (-393 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-1169 (-629 *3)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-1087))) (-4 *5 (-339))
- (-5 *2 (-1169 (-629 (-383 (-883 *5))))) (-5 *1 (-1004 *5))
- (-5 *4 (-629 (-383 (-883 *5))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-1087))) (-4 *5 (-339))
- (-5 *2 (-1169 (-629 (-883 *5)))) (-5 *1 (-1004 *5))
- (-5 *4 (-629 (-883 *5)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-629 *4))) (-4 *4 (-339))
- (-5 *2 (-1169 (-629 *4))) (-5 *1 (-1004 *4)))))
-(((*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-203)) (-5 *4 (-523))
- (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G)))) (-5 *2 (-962))
- (-5 *1 (-688)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-852)) (-4 *4 (-344)) (-4 *4 (-339)) (-5 *2 (-1083 *1))
- (-4 *1 (-305 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-5 *2 (-1083 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-346 *3 *2)) (-4 *3 (-158)) (-4 *3 (-339))
- (-4 *2 (-1145 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1169 *4)) (-4 *4 (-325)) (-5 *2 (-1083 *4))
- (-5 *1 (-493 *4)))))
+ (-12 (-5 *4 (-712)) (-4 *5 (-975)) (-4 *2 (-1147 *5))
+ (-5 *1 (-1165 *5 *2 *6 *3)) (-4 *6 (-601 *2)) (-4 *3 (-1162 *5)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-510))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-631 (-385 (-525)))) (-5 *2 (-591 *4)) (-5 *1 (-720 *4))
+ (-4 *4 (-13 (-341) (-786))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-973))
- (-4 *2 (-13 (-380) (-964 *4) (-339) (-1109) (-261)))
- (-5 *1 (-418 *4 *3 *2)) (-4 *3 (-1145 *4))))
+ (-12 (-4 *4 (-13 (-286) (-138))) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-882 *4 *5 *6)) (-5 *2 (-591 (-591 *7)))
+ (-5 *1 (-425 *4 *5 *6 *7)) (-5 *3 (-591 *7))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-852)) (-4 *5 (-973))
- (-4 *2 (-13 (-380) (-964 *5) (-339) (-1109) (-261)))
- (-5 *1 (-418 *5 *3 *2)) (-4 *3 (-1145 *5)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1191 *4 *2)) (-4 *1 (-350 *4 *2)) (-4 *4 (-786))
- (-4 *2 (-158))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1184 *3 *2)) (-4 *3 (-786)) (-4 *2 (-973))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-758 *4)) (-4 *1 (-1184 *4 *2)) (-4 *4 (-786))
- (-4 *2 (-973))))
- ((*1 *2 *1 *3)
- (-12 (-4 *2 (-973)) (-5 *1 (-1190 *2 *3)) (-4 *3 (-782)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1142 *5 *4)) (-4 *4 (-427)) (-4 *4 (-759))
- (-14 *5 (-1087)) (-5 *2 (-523)) (-5 *1 (-1030 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-108)) (-5 *5 (-629 (-155 (-203))))
- (-5 *2 (-962)) (-5 *1 (-695)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-589 (-874 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 (-874 *3))) (-4 *3 (-973)) (-4 *1 (-1048 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-589 *3))) (-4 *1 (-1048 *3)) (-4 *3 (-973))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-874 *3))) (-4 *1 (-1048 *3)) (-4 *3 (-973)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-2 (|:| |gen| *3) (|:| -1847 *4))))
- (-5 *1 (-592 *3 *4 *5)) (-4 *3 (-1016)) (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-614 *3)) (-4 *3 (-786))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-618 *3)) (-4 *3 (-786))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-758 *3)) (-4 *3 (-786)))))
-(((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))))
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-734))
+ (-4 *7 (-788)) (-4 *8 (-882 *5 *6 *7)) (-5 *2 (-591 (-591 *8)))
+ (-5 *1 (-425 *5 *6 *7 *8)) (-5 *3 (-591 *8)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1072)) (-5 *4 (-525)) (-5 *5 (-631 (-205)))
+ (-5 *2 (-964)) (-5 *1 (-696)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-854)) (-4 *1 (-686 *3)) (-4 *3 (-160)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1171 *3)) (-4 *3 (-975)) (-5 *1 (-654 *3 *4))
+ (-4 *4 (-1147 *3)))))
+(((*1 *1) (-5 *1 (-1172))))
(((*1 *2 *1)
- (-12 (-4 *1 (-302 *2 *3)) (-4 *3 (-731)) (-4 *2 (-973))
- (-4 *2 (-427))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 *4)) (-4 *4 (-1145 (-523))) (-5 *2 (-589 (-523)))
- (-5 *1 (-459 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-427))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-880 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *2 (-786)) (-4 *3 (-427)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-307 *3)) (-4 *3 (-786)))))
+ (-12
+ (-5 *2
+ (-1171
+ (-2 (|:| |scaleX| (-205)) (|:| |scaleY| (-205))
+ (|:| |deltaX| (-205)) (|:| |deltaY| (-205)) (|:| -3660 (-525))
+ (|:| -2749 (-525)) (|:| |spline| (-525)) (|:| -3283 (-525))
+ (|:| |axesColor| (-807)) (|:| -3331 (-525))
+ (|:| |unitsColor| (-807)) (|:| |showing| (-525)))))
+ (-5 *1 (-1172)))))
+(((*1 *1 *1) (-12 (-4 *1 (-352 *2 *3)) (-4 *2 (-788)) (-4 *3 (-160))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-575 *2 *3 *4)) (-4 *2 (-788))
+ (-4 *3 (-13 (-160) (-659 (-385 (-525))))) (-14 *4 (-854))))
+ ((*1 *1 *1) (-12 (-5 *1 (-620 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1) (-12 (-5 *1 (-760 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-694)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-108)))))
+(((*1 *2 *2) (-12 (-5 *2 (-631 *3)) (-4 *3 (-286)) (-5 *1 (-641 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-779 (-203)))) (-5 *4 (-203)) (-5 *2 (-589 *4))
- (-5 *1 (-244)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6))
- (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1169 *5)) (-4 *5 (-731)) (-5 *2 (-108))
- (-5 *1 (-781 *4 *5)) (-14 *4 (-710)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-710)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-523))
- (-14 *4 *2) (-4 *5 (-158))))
- ((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-852)) (-5 *1 (-151 *3 *4))
- (-4 *3 (-152 *4))))
- ((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-852))))
- ((*1 *2)
- (-12 (-4 *1 (-346 *3 *4)) (-4 *3 (-158)) (-4 *4 (-1145 *3))
- (-5 *2 (-852))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-339)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4))
- (-5 *2 (-710)) (-5 *1 (-490 *4 *5 *6 *3)) (-4 *3 (-627 *4 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 *5)) (-5 *4 (-1169 *5)) (-4 *5 (-339))
- (-5 *2 (-710)) (-5 *1 (-610 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-339)) (-4 *6 (-13 (-349 *5) (-10 -7 (-6 -4249))))
- (-4 *4 (-13 (-349 *5) (-10 -7 (-6 -4249)))) (-5 *2 (-710))
- (-5 *1 (-611 *5 *6 *4 *3)) (-4 *3 (-627 *5 *6 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-4 *3 (-515)) (-5 *2 (-710))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *4 (-158)) (-4 *5 (-349 *4))
- (-4 *6 (-349 *4)) (-5 *2 (-710)) (-5 *1 (-628 *4 *5 *6 *3))
- (-4 *3 (-627 *4 *5 *6))))
+ (-12 (-5 *3 (-1085 *1)) (-5 *4 (-1089)) (-4 *1 (-27))
+ (-5 *2 (-591 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1085 *1)) (-4 *1 (-27)) (-5 *2 (-591 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-885 *1)) (-4 *1 (-27)) (-5 *2 (-591 *1))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-788) (-517))) (-5 *2 (-591 *1))
+ (-4 *1 (-29 *4))))
((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973))
- (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-4 *5 (-515))
- (-5 *2 (-710)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1169 *4)) (-5 *3 (-523)) (-4 *4 (-325))
- (-5 *1 (-493 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-629 (-292 (-203))))
- (-5 *2
- (-2 (|:| |stiffnessFactor| (-355)) (|:| |stabilityFactor| (-355))))
- (-5 *1 (-185)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1087)) (-5 *1 (-257)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-810 (-1 (-203) (-203)))) (-5 *4 (-1011 (-355)))
- (-5 *5 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-232))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-810 (-1 (-203) (-203)))) (-5 *4 (-1011 (-355)))
- (-5 *2 (-1047 (-203))) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 (-874 (-203)) (-203))) (-5 *4 (-1011 (-355)))
- (-5 *5 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-232))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-874 (-203)) (-203))) (-5 *4 (-1011 (-355)))
- (-5 *2 (-1047 (-203))) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-203) (-203) (-203))) (-5 *4 (-1011 (-355)))
- (-5 *5 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 (-203) (-203) (-203))) (-5 *4 (-1011 (-355)))
- (-5 *2 (-1047 (-203))) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-874 (-203)) (-203) (-203))) (-5 *4 (-1011 (-355)))
- (-5 *5 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 (-874 (-203)) (-203) (-203))) (-5 *4 (-1011 (-355)))
- (-5 *2 (-1047 (-203))) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-813 (-1 (-203) (-203) (-203)))) (-5 *4 (-1011 (-355)))
- (-5 *5 (-589 (-240))) (-5 *2 (-1047 (-203))) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-813 (-1 (-203) (-203) (-203)))) (-5 *4 (-1011 (-355)))
- (-5 *2 (-1047 (-203))) (-5 *1 (-232))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *2 (-591 *1)) (-4 *1 (-29 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-810 *6)) (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240)))
- (-4 *6 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1047 (-203)))
- (-5 *1 (-236 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-810 *5)) (-5 *4 (-1009 (-355)))
- (-4 *5 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1047 (-203)))
- (-5 *1 (-236 *5))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240)))
- (-5 *2 (-1047 (-203))) (-5 *1 (-236 *3))
- (-4 *3 (-13 (-564 (-499)) (-1016)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1009 (-355))) (-5 *2 (-1047 (-203))) (-5 *1 (-236 *3))
- (-4 *3 (-13 (-564 (-499)) (-1016)))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-813 *6)) (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240)))
- (-4 *6 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1047 (-203)))
- (-5 *1 (-236 *6))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-813 *5)) (-5 *4 (-1009 (-355)))
- (-4 *5 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1047 (-203)))
- (-5 *1 (-236 *5)))))
-(((*1 *1 *2 *3 *3 *4 *4)
- (-12 (-5 *2 (-883 (-523))) (-5 *3 (-1087))
- (-5 *4 (-1011 (-383 (-523)))) (-5 *1 (-30)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-339) (-964 (-383 *2)))) (-5 *2 (-523))
- (-5 *1 (-111 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-35 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-5 *2 (-2 (|:| -2402 *3) (|:| -2746 *4))))))
-(((*1 *2 *3 *4)
- (-12 (-4 *7 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-515))
- (-4 *8 (-880 *7 *5 *6))
- (-5 *2 (-2 (|:| -3262 (-710)) (|:| -2275 *3) (|:| |radicand| *3)))
- (-5 *1 (-884 *5 *6 *7 *8 *3)) (-5 *4 (-710))
- (-4 *3
- (-13 (-339)
- (-10 -8 (-15 -2164 (*8 $)) (-15 -2171 (*8 $)) (-15 -3976 ($ *8))))))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-710)) (-5 *1 (-541 *2)) (-4 *2 (-508))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-2 (|:| -3912 *3) (|:| -3262 (-710)))) (-5 *1 (-541 *3))
- (-4 *3 (-508)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-288)) (-5 *1 (-768)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-710)) (-5 *1 (-42 *4 *3))
- (-4 *3 (-393 *4)))))
+ (-12 (-5 *3 (-294 (-205))) (-5 *4 (-591 (-1089)))
+ (-5 *5 (-1013 (-781 (-205)))) (-5 *2 (-1070 (-205))) (-5 *1 (-279)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-788) (-517))) (-5 *2 (-108)) (-5 *1 (-255 *4 *3))
+ (-4 *3 (-13 (-408 *4) (-932))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1070 (-1070 *4))) (-5 *2 (-1070 *4)) (-5 *1 (-1074 *4))
+ (-4 *4 (-37 (-385 (-525)))) (-4 *4 (-975)))))
+(((*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *2)) (-4 *2 (-160))))
+ ((*1 *2) (-12 (-4 *2 (-160)) (-5 *1 (-394 *3 *2)) (-4 *3 (-395 *2))))
+ ((*1 *2) (-12 (-4 *1 (-395 *2)) (-4 *2 (-160)))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4))
+ (-4 *3 (-345 *4))))
+ ((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))))
+(((*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1 (-357))) (-5 *1 (-968)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
+ (|partial| -12 (-5 *2 (-1085 *3)) (-4 *3 (-327)) (-5 *1 (-335 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-1 (-1068 (-883 *4)) (-1068 (-883 *4))))
- (-5 *1 (-1177 *4)) (-4 *4 (-339)))))
-(((*1 *2 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-1123))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-1016))
- (-4 *2 (-13 (-406 *4) (-817 *3) (-564 (-823 *3))))
- (-5 *1 (-995 *3 *4 *2))
- (-4 *4 (-13 (-973) (-817 *3) (-786) (-564 (-823 *3))))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-1016)) (-5 *1 (-1077 *3 *2)) (-4 *3 (-1016)))))
-(((*1 *2 *1) (-12 (-4 *1 (-222 *2)) (-4 *2 (-1123))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515))
- (-4 *4 (-732)) (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-1157 *3)) (-4 *3 (-1123))))
- ((*1 *2 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))))
-(((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1142 *5 *4)) (-4 *4 (-427)) (-4 *4 (-759))
- (-14 *5 (-1087)) (-5 *2 (-523)) (-5 *1 (-1030 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-710))
- (-5 *1 (-424 *4 *5 *6 *3)) (-4 *3 (-880 *4 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *2 (-108)))))
+ (-12 (-5 *3 (-1085 *4)) (-4 *4 (-327))
+ (-5 *2 (-1171 (-591 (-2 (|:| -3024 *4) (|:| -2226 (-1036))))))
+ (-5 *1 (-324 *4)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-427)) (-4 *3 (-732)) (-4 *5 (-786)) (-5 *2 (-108))
- (-5 *1 (-424 *4 *3 *5 *6)) (-4 *6 (-880 *4 *3 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-794)) (-5 *1 (-1068 *3)) (-4 *3 (-1016))
- (-4 *3 (-1123)))))
-(((*1 *2 *1) (-12 (-5 *1 (-271 *2)) (-4 *2 (-1123))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-1016))
- (-4 *2 (-13 (-406 *4) (-817 *3) (-564 (-823 *3))))
- (-5 *1 (-995 *3 *4 *2))
- (-4 *4 (-13 (-973) (-817 *3) (-786) (-564 (-823 *3))))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-1016)) (-5 *1 (-1077 *2 *3)) (-4 *3 (-1016)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-257)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848))))
- ((*1 *2) (-12 (-5 *2 (-835 (-523))) (-5 *1 (-848)))))
+ (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1399 *3)))
+ (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-1054 *4 *5))) (-5 *3 (-1 (-108) *5 *5))
+ (-4 *4 (-13 (-1018) (-33))) (-4 *5 (-13 (-1018) (-33)))
+ (-5 *1 (-1055 *4 *5))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-591 (-1054 *3 *4))) (-4 *3 (-13 (-1018) (-33)))
+ (-4 *4 (-13 (-1018) (-33))) (-5 *1 (-1055 *3 *4)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-4 *1 (-1016 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1087)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-641 *4 *5 *6 *7))
- (-4 *4 (-564 (-499))) (-4 *5 (-1123)) (-4 *6 (-1123))
- (-4 *7 (-1123)))))
-(((*1 *1) (-12 (-4 *1 (-305 *2)) (-4 *2 (-344)) (-4 *2 (-339)))))
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850))))
+ ((*1 *2) (-12 (-5 *2 (-837 (-525))) (-5 *1 (-850)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-1083 *4)) (-5 *1 (-493 *4))
- (-4 *4 (-325)))))
-(((*1 *1 *2 *1)
- (-12 (|has| *1 (-6 -4248)) (-4 *1 (-140 *2)) (-4 *2 (-1123))
- (-4 *2 (-1016))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4248)) (-4 *1 (-140 *3))
- (-4 *3 (-1123))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-616 *3)) (-4 *3 (-1123))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *2 (-1 (-108) *4)) (-5 *3 (-523)) (-4 *4 (-1016))
- (-5 *1 (-677 *4))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-5 *1 (-677 *2)) (-4 *2 (-1016))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1052 *3 *4)) (-4 *3 (-13 (-1016) (-33)))
- (-4 *4 (-13 (-1016) (-33))) (-5 *1 (-1053 *3 *4)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-1035 *2)) (-4 *2 (-1123)))))
+ (-12 (-4 *4 (-517)) (-5 *2 (-1085 *3)) (-5 *1 (-40 *4 *3))
+ (-4 *3
+ (-13 (-341) (-281)
+ (-10 -8 (-15 -1738 ((-1041 *4 (-564 $)) $))
+ (-15 -1754 ((-1041 *4 (-564 $)) $))
+ (-15 -3022 ($ (-1041 *4 (-564 $))))))))))
(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-523)) (-5 *1 (-1106 *3)) (-4 *3 (-973)))))
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850))))
+ ((*1 *2) (-12 (-5 *2 (-837 (-525))) (-5 *1 (-850)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517))
+ (-5 *2 (-108)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-286)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3))
+ (-5 *1 (-1040 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))))
+(((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-591
+ (-2
+ (|:| -2019
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (|:| -1221
+ (-2
+ (|:| |endPointContinuity|
+ (-3 (|:| |continuous| "Continuous at the end points")
+ (|:| |lowerSingular|
+ "There is a singularity at the lower end point")
+ (|:| |upperSingular|
+ "There is a singularity at the upper end point")
+ (|:| |bothSingular|
+ "There are singularities at both end points")
+ (|:| |notEvaluated|
+ "End point continuity not yet evaluated")))
+ (|:| |singularitiesStream|
+ (-3 (|:| |str| (-1070 (-205)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -1767
+ (-3 (|:| |finite| "The range is finite")
+ (|:| |lowerInfinite|
+ "The bottom of range is infinite")
+ (|:| |upperInfinite| "The top of range is infinite")
+ (|:| |bothInfinite|
+ "Both top and bottom points are infinite")
+ (|:| |notEvaluated| "Range not yet evaluated"))))))))
+ (-5 *1 (-520)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1068 (-2 (|:| |k| (-523)) (|:| |c| *3))))
- (-5 *1 (-548 *3)) (-4 *3 (-973)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-710)) (-4 *5 (-325)) (-4 *6 (-1145 *5))
+ (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-591 (-876 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-876 *3))) (-4 *3 (-975)) (-4 *1 (-1050 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 (-591 *3))) (-4 *1 (-1050 *3)) (-4 *3 (-975))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 (-876 *3))) (-4 *1 (-1050 *3)) (-4 *3 (-975)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-162)))))
+(((*1 *1 *1) (-4 *1 (-577)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-578 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932) (-1111))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-710))
(-5 *2
- (-589
- (-2 (|:| -2922 (-629 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-629 *6)))))
- (-5 *1 (-469 *5 *6 *7))
- (-5 *3
- (-2 (|:| -2922 (-629 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-629 *6))))
- (-4 *7 (-1145 *6)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-852)) (-5 *4 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158))
- (-5 *2 (-629 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-629 *3)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 (-203) (-203))) (-5 *4 (-1011 (-355)))
- (-5 *5 (-589 (-240))) (-5 *2 (-1170)) (-5 *1 (-232))))
+ (-2 (|:| -2432 (-357)) (|:| -2400 (-1072))
+ (|:| |explanations| (-591 (-1072))) (|:| |extra| (-964))))
+ (-5 *1 (-526))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-203) (-203))) (-5 *4 (-1011 (-355)))
- (-5 *2 (-1170)) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-808 (-1 (-203) (-203)))) (-5 *4 (-1011 (-355)))
- (-5 *5 (-589 (-240))) (-5 *2 (-1170)) (-5 *1 (-232))))
+ (-12 (-5 *3 (-710)) (-5 *4 (-987))
+ (-5 *2
+ (-2 (|:| -2432 (-357)) (|:| -2400 (-1072))
+ (|:| |explanations| (-591 (-1072))) (|:| |extra| (-964))))
+ (-5 *1 (-526))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-808 (-1 (-203) (-203)))) (-5 *4 (-1011 (-355)))
- (-5 *2 (-1170)) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-810 (-1 (-203) (-203)))) (-5 *4 (-1011 (-355)))
- (-5 *5 (-589 (-240))) (-5 *2 (-1171)) (-5 *1 (-232))))
+ (-12 (-4 *1 (-728)) (-5 *3 (-987))
+ (-5 *4
+ (-2 (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-591 (-1013 (-781 (-205))))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (-5 *2
+ (-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))
+ (|:| |extra| (-964))))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-810 (-1 (-203) (-203)))) (-5 *4 (-1011 (-355)))
- (-5 *2 (-1171)) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 (-874 (-203)) (-203))) (-5 *4 (-1011 (-355)))
- (-5 *5 (-589 (-240))) (-5 *2 (-1171)) (-5 *1 (-232))))
+ (-12 (-4 *1 (-728)) (-5 *3 (-987))
+ (-5 *4
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (-5 *2
+ (-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))
+ (|:| |extra| (-964))))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-874 (-203)) (-203))) (-5 *4 (-1011 (-355)))
- (-5 *2 (-1171)) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-203) (-203) (-203))) (-5 *4 (-1011 (-355)))
- (-5 *5 (-589 (-240))) (-5 *2 (-1171)) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 (-203) (-203) (-203))) (-5 *4 (-1011 (-355)))
- (-5 *2 (-1171)) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-874 (-203)) (-203) (-203))) (-5 *4 (-1011 (-355)))
- (-5 *5 (-589 (-240))) (-5 *2 (-1171)) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 (-874 (-203)) (-203) (-203))) (-5 *4 (-1011 (-355)))
- (-5 *2 (-1171)) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-813 (-1 (-203) (-203) (-203)))) (-5 *4 (-1011 (-355)))
- (-5 *5 (-589 (-240))) (-5 *2 (-1171)) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-813 (-1 (-203) (-203) (-203)))) (-5 *4 (-1011 (-355)))
- (-5 *2 (-1171)) (-5 *1 (-232))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-271 *7)) (-5 *4 (-1087)) (-5 *5 (-589 (-240)))
- (-4 *7 (-406 *6)) (-4 *6 (-13 (-515) (-786) (-964 (-523))))
- (-5 *2 (-1170)) (-5 *1 (-233 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1170))
- (-5 *1 (-236 *3)) (-4 *3 (-13 (-564 (-499)) (-1016)))))
+ (-12 (-4 *1 (-741)) (-5 *3 (-987))
+ (-5 *4
+ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205))
+ (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205)))
+ (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205)))
+ (|:| |abserr| (-205)) (|:| |relerr| (-205))))
+ (-5 *2 (-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-749))
+ (-5 *2
+ (-2 (|:| -2432 (-357)) (|:| -2400 (-1072))
+ (|:| |explanations| (-591 (-1072)))))
+ (-5 *1 (-746))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1009 (-355))) (-5 *2 (-1170)) (-5 *1 (-236 *3))
- (-4 *3 (-13 (-564 (-499)) (-1016)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-808 *6)) (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240)))
- (-4 *6 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1170))
- (-5 *1 (-236 *6))))
+ (-12 (-5 *3 (-749)) (-5 *4 (-987))
+ (-5 *2
+ (-2 (|:| -2432 (-357)) (|:| -2400 (-1072))
+ (|:| |explanations| (-591 (-1072)))))
+ (-5 *1 (-746))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-808 *5)) (-5 *4 (-1009 (-355)))
- (-4 *5 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1170))
- (-5 *1 (-236 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-810 *6)) (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240)))
- (-4 *6 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1171))
- (-5 *1 (-236 *6))))
+ (-12 (-4 *1 (-777)) (-5 *3 (-987))
+ (-5 *4
+ (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))
+ (-5 *2 (-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-810 *5)) (-5 *4 (-1009 (-355)))
- (-4 *5 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1171))
- (-5 *1 (-236 *5))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240))) (-5 *2 (-1171))
- (-5 *1 (-236 *3)) (-4 *3 (-13 (-564 (-499)) (-1016)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1009 (-355))) (-5 *2 (-1171)) (-5 *1 (-236 *3))
- (-4 *3 (-13 (-564 (-499)) (-1016)))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-813 *6)) (-5 *4 (-1009 (-355))) (-5 *5 (-589 (-240)))
- (-4 *6 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1171))
- (-5 *1 (-236 *6))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-813 *5)) (-5 *4 (-1009 (-355)))
- (-4 *5 (-13 (-564 (-499)) (-1016))) (-5 *2 (-1171))
- (-5 *1 (-236 *5))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 (-203))) (-5 *2 (-1170)) (-5 *1 (-237))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-589 (-203))) (-5 *4 (-589 (-240))) (-5 *2 (-1170))
- (-5 *1 (-237))))
+ (-12 (-4 *1 (-777)) (-5 *3 (-987))
+ (-5 *4
+ (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205)))
+ (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205))))
+ (|:| |ub| (-591 (-781 (-205))))))
+ (-5 *2 (-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))))))
((*1 *2 *3)
- (-12 (-5 *3 (-589 (-874 (-203)))) (-5 *2 (-1170)) (-5 *1 (-237))))
+ (-12 (-5 *3 (-779))
+ (-5 *2
+ (-2 (|:| -2432 (-357)) (|:| -2400 (-1072))
+ (|:| |explanations| (-591 (-1072)))))
+ (-5 *1 (-778))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-874 (-203)))) (-5 *4 (-589 (-240)))
- (-5 *2 (-1170)) (-5 *1 (-237))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-589 (-203))) (-5 *2 (-1171)) (-5 *1 (-237))))
- ((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-589 (-203))) (-5 *4 (-589 (-240))) (-5 *2 (-1171))
- (-5 *1 (-237)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1161 *2 *3 *4)) (-4 *2 (-973)) (-14 *3 (-1087))
- (-14 *4 *2))))
-(((*1 *2 *3) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-520)) (-5 *3 (-523)))))
-(((*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7)
- (-12 (-5 *4 (-523)) (-5 *5 (-629 (-203)))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-87 G))))
- (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN)))) (-5 *3 (-203))
- (-5 *2 (-962)) (-5 *1 (-689)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1016)) (-4 *6 (-1016))
- (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-624 *4 *5 *6)) (-4 *5 (-1016)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-880 *4 *5 *6)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-424 *4 *5 *6 *2)))))
-(((*1 *2 *3 *3 *4 *5 *5)
- (-12 (-5 *5 (-108)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786))
- (-4 *3 (-987 *6 *7 *8))
- (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4))))
- (-5 *1 (-993 *6 *7 *8 *3 *4)) (-4 *4 (-992 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-589 (-2 (|:| |val| (-589 *8)) (|:| -2394 *9))))
- (-5 *5 (-108)) (-4 *8 (-987 *6 *7 *4)) (-4 *9 (-992 *6 *7 *4 *8))
- (-4 *6 (-427)) (-4 *7 (-732)) (-4 *4 (-786))
- (-5 *2 (-589 (-2 (|:| |val| *8) (|:| -2394 *9))))
- (-5 *1 (-993 *6 *7 *4 *8 *9)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-589 *1)) (-4 *1 (-279))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-279)) (-5 *2 (-110))))
- ((*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-562 *3)) (-4 *3 (-786))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-110)) (-5 *3 (-589 *5)) (-5 *4 (-710)) (-4 *5 (-786))
- (-5 *1 (-562 *5)))))
+ (-12 (-5 *3 (-779)) (-5 *4 (-987))
+ (-5 *2
+ (-2 (|:| -2432 (-357)) (|:| -2400 (-1072))
+ (|:| |explanations| (-591 (-1072)))))
+ (-5 *1 (-778))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-828)) (-5 *3 (-987))
+ (-5 *4
+ (-2 (|:| |pde| (-591 (-294 (-205))))
+ (|:| |constraints|
+ (-591
+ (-2 (|:| |start| (-205)) (|:| |finish| (-205))
+ (|:| |grid| (-712)) (|:| |boundaryType| (-525))
+ (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205))))))
+ (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072))
+ (|:| |tol| (-205))))
+ (-5 *2 (-2 (|:| -2432 (-357)) (|:| |explanations| (-1072))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-831))
+ (-5 *2
+ (-2 (|:| -2432 (-357)) (|:| -2400 (-1072))
+ (|:| |explanations| (-591 (-1072)))))
+ (-5 *1 (-830))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-831)) (-5 *4 (-987))
+ (-5 *2
+ (-2 (|:| -2432 (-357)) (|:| -2400 (-1072))
+ (|:| |explanations| (-591 (-1072)))))
+ (-5 *1 (-830)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1162 *4)) (-5 *1 (-1164 *4 *2))
+ (-4 *4 (-37 (-385 (-525)))))))
+(((*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-357)) (-5 *1 (-968)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-693)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-525))) (-5 *1 (-254)))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-1100 *2)) (-4 *2 (-341)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1070 *3)) (-5 *1 (-161 *3)) (-4 *3 (-286)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158))
- (-5 *2 (-629 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-629 *4)) (-5 *1 (-392 *3 *4))
- (-4 *3 (-393 *4))))
- ((*1 *2) (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-629 *3)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-562 *1)) (-4 *1 (-279)))))
+ (-12 (-5 *3 (-1 (-1070 *4) (-1070 *4))) (-5 *2 (-1070 *4))
+ (-5 *1 (-1194 *4)) (-4 *4 (-1125))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 (-591 (-1070 *5)) (-591 (-1070 *5)))) (-5 *4 (-525))
+ (-5 *2 (-591 (-1070 *5))) (-5 *1 (-1194 *5)) (-4 *5 (-1125)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-4 *1 (-301 *2 *4)) (-4 *4 (-126))
+ (-4 *2 (-1018))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *1 (-339 *2)) (-4 *2 (-1018))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *1 (-364 *2)) (-4 *2 (-1018))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *1 (-396 *2)) (-4 *2 (-517))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-4 *2 (-1018)) (-5 *1 (-594 *2 *4 *5))
+ (-4 *4 (-23)) (-14 *5 *4)))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-525)) (-5 *1 (-760 *2)) (-4 *2 (-788)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-340 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1016)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-302 *2 *3)) (-4 *2 (-973)) (-4 *3 (-731))
- (-4 *2 (-427))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-318 *2 *3 *4)) (-4 *2 (-1127)) (-4 *3 (-1145 *2))
- (-4 *4 (-1145 (-383 *3)))))
- ((*1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-427))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-880 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *2 (-786)) (-4 *3 (-427))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-880 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-427))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-284)) (-4 *3 (-515)) (-5 *1 (-1075 *3 *2))
- (-4 *2 (-1145 *3)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-203)) (-5 *4 (-523))
- (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894)))) (-5 *2 (-962))
- (-5 *1 (-688)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-427)) (-4 *4 (-515))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1249 *4)))
- (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-880 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *2 (-786)) (-4 *3 (-158))))
- ((*1 *2 *3 *3)
- (-12 (-4 *2 (-515)) (-5 *1 (-899 *2 *3)) (-4 *3 (-1145 *2))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-515))))
- ((*1 *2 *1 *1) (-12 (-4 *1 (-1145 *2)) (-4 *2 (-973)) (-4 *2 (-158)))))
+ (-12 (-5 *2 (-1070 (-385 *3))) (-5 *1 (-161 *3)) (-4 *3 (-286)))))
+(((*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-146)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-286)) (-4 *6 (-351 *5)) (-4 *4 (-351 *5))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4))))
+ (-5 *1 (-1040 *5 *6 *4 *3)) (-4 *3 (-629 *5 *6 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-966 (-525))) (-4 *1 (-281)) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-4 *1 (-510)) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-838 *3)) (-4 *3 (-1018)))))
+(((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-444))))
+ ((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-444))))
+ ((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-860)))))
+(((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-860)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-712))) (-5 *3 (-159)) (-5 *1 (-1078 *4 *5))
+ (-14 *4 (-854)) (-4 *5 (-975)))))
+(((*1 *2 *3 *1) (-12 (-5 *3 (-1089)) (-5 *2 (-415)) (-5 *1 (-1093)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4))))
- (-5 *1 (-1053 *3 *4)) (-4 *3 (-13 (-1016) (-33)))
- (-4 *4 (-13 (-1016) (-33))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1087))
- (-4 *4 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
- (-5 *2 (-1 *5 *5)) (-5 *1 (-743 *4 *5))
- (-4 *5 (-13 (-29 *4) (-1109) (-889))))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-695)))))
-(((*1 *1 *1 *1)
- (|partial| -12 (-4 *2 (-158)) (-5 *1 (-266 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1145 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
- (-14 *6 (-1 (-3 *4 "failed") *4 *4))
- (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-5 *1 (-651 *2 *3 *4 *5 *6)) (-4 *2 (-158))
- (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
- (-14 *5 (-1 (-3 *3 "failed") *3 *3))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
+ (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108))
+ (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-1050 *3)) (-4 *3 (-975))))
+ ((*1 *2 *2 *1)
+ (|partial| -12 (-5 *2 (-385 *1)) (-4 *1 (-1147 *3)) (-4 *3 (-975))
+ (-4 *3 (-517))))
((*1 *1 *1 *1)
- (|partial| -12 (-5 *1 (-655 *2 *3 *4 *5 *6)) (-4 *2 (-158))
- (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
- (-14 *5 (-1 (-3 *3 "failed") *3 *3))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
-(((*1 *1 *2 *3)
- (-12
- (-5 *3
- (-589
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2)
- (|:| |xpnt| (-523)))))
- (-4 *2 (-515)) (-5 *1 (-394 *2))))
- ((*1 *2 *3)
+ (|partial| -12 (-4 *1 (-1147 *2)) (-4 *2 (-975)) (-4 *2 (-517)))))
+(((*1 *1 *2 *2)
(-12
- (-5 *3
- (-2 (|:| |contp| (-523))
- (|:| -3286 (-589 (-2 (|:| |irr| *4) (|:| -3269 (-523)))))))
- (-4 *4 (-1145 (-523))) (-5 *2 (-394 *4)) (-5 *1 (-417 *4)))))
-(((*1 *1) (-5 *1 (-108))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 *1)) (-5 *4 (-1169 *1)) (-4 *1 (-585 *5))
- (-4 *5 (-973))
- (-5 *2 (-2 (|:| -2373 (-629 *5)) (|:| |vec| (-1169 *5))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-629 *1)) (-4 *1 (-585 *4)) (-4 *4 (-973))
- (-5 *2 (-629 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-786)) (-5 *1 (-223 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-523))) (-5 *1 (-932 *3)) (-14 *3 (-523)))))
-(((*1 *1 *2) (-12 (-5 *2 (-758 *3)) (-4 *3 (-786)) (-5 *1 (-614 *3)))))
+ (-5 *2
+ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357)))
+ (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088))))
+ (-5 *1 (-1088)))))
+(((*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160))))
+ ((*1 *2 *1) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-591 (-2 (|:| |val| (-591 *6)) (|:| -3374 *7))))
+ (-4 *6 (-989 *3 *4 *5)) (-4 *7 (-994 *3 *4 *5 *6)) (-4 *3 (-429))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-919 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-591 (-2 (|:| |val| (-591 *6)) (|:| -3374 *7))))
+ (-4 *6 (-989 *3 *4 *5)) (-4 *7 (-994 *3 *4 *5 *6)) (-4 *3 (-429))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-1025 *3 *4 *5 *6 *7)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-591 *8)) (-5 *3 (-1 (-108) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-517))
+ (-4 *6 (-734)) (-4 *7 (-788)) (-5 *1 (-908 *5 *6 *7 *8)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-825 *4)) (-4 *4 (-1018)) (-4 *2 (-1018))
+ (-5 *1 (-822 *4 *2)))))
+(((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *4 (-205))
+ (-5 *2
+ (-2 (|:| |brans| (-591 (-591 (-876 *4))))
+ (|:| |xValues| (-1013 *4)) (|:| |yValues| (-1013 *4))))
+ (-5 *1 (-144)) (-5 *3 (-591 (-591 (-876 *4)))))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-591 *7)) (-5 *3 (-525)) (-4 *7 (-882 *4 *5 *6))
+ (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-5 *1 (-426 *4 *5 *6 *7)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)) (-5 *3 (-523)))))
-(((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-1125)))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852))
- (-4 *4 (-973)))))
-(((*1 *2 *1) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-1083 *3)))))
-(((*1 *2) (-12 (-5 *2 (-772 (-523))) (-5 *1 (-497))))
- ((*1 *1) (-12 (-5 *1 (-772 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-696)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1068 (-1068 *4))) (-5 *2 (-1068 *4)) (-5 *1 (-1072 *4))
- (-4 *4 (-973)))))
+ (-12 (-5 *2 (-591 (-854))) (-5 *1 (-1019 *3 *4)) (-14 *3 (-854))
+ (-14 *4 (-854)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-455 *4 *5)) (-14 *4 (-589 (-1087))) (-4 *5 (-973))
- (-5 *2 (-225 *4 *5)) (-5 *1 (-875 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-515) (-786)))
- (-4 *2 (-13 (-406 (-155 *4)) (-930) (-1109)))
- (-5 *1 (-552 *4 *3 *2)) (-4 *3 (-13 (-406 *4) (-930) (-1109))))))
+ (-12 (-5 *3 (-591 (-591 (-876 (-205)))))
+ (-5 *2 (-591 (-1013 (-205)))) (-5 *1 (-861)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-723 *2)) (-4 *2 (-975))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-4 *1 (-562 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1018)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-104))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-110))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-342 *2 *3)) (-4 *3 (-1018)) (-4 *2 (-1018))))
+ ((*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-1072))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-416 *3)) (-14 *3 *2)))
+ ((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-564 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-897))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-996 *3)) (-14 *3 *2)))
+ ((*1 *1 *1) (-5 *1 (-1089))))
+(((*1 *1 *2 *2)
+ (-12
+ (-5 *2
+ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357)))
+ (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088))))
+ (-5 *1 (-1088)))))
+(((*1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1174))))
+ ((*1 *2 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1174)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-701)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3)
+ (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205))
+ (-5 *2 (-964)) (-5 *1 (-694)))))
+(((*1 *1 *2) (-12 (-5 *2 (-366)) (-5 *1 (-580)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-1072)) (-5 *4 (-1036)) (-5 *2 (-108)) (-5 *1 (-762)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-703))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-157 (-205))) (-5 *5 (-525)) (-5 *6 (-1072))
+ (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525)))))))
+ (-5 *1 (-1044 *3 *2)) (-4 *3 (-1147 *2)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1125)) (-5 *1 (-353 *4 *2))
+ (-4 *2 (-13 (-351 *4) (-10 -7 (-6 -4251)))))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *5 (-564 *4)) (-5 *6 (-1089))
+ (-4 *4 (-13 (-408 *7) (-27) (-1111)))
+ (-4 *7 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4))))
+ (-5 *1 (-527 *7 *4 *3)) (-4 *3 (-601 *4)) (-4 *3 (-1018)))))
+(((*1 *1 *2 *2)
+ (-12
+ (-5 *2
+ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357)))
+ (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088))))
+ (-5 *1 (-1088)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1085 *1)) (-4 *1 (-942)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *2 (-108)))))
+(((*1 *2 *3 *4 *4 *5)
+ (|partial| -12 (-5 *4 (-564 *3)) (-5 *5 (-591 *3))
+ (-4 *3 (-13 (-408 *6) (-27) (-1111)))
+ (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-527 *6 *3 *7)) (-4 *7 (-1018)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-883 *4)) (-4 *4 (-973)) (-4 *4 (-564 *2))
- (-5 *2 (-355)) (-5 *1 (-724 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-883 *5)) (-5 *4 (-852)) (-4 *5 (-973))
- (-4 *5 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-515))
- (-4 *4 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-852)) (-4 *5 (-515))
- (-4 *5 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-292 *4)) (-4 *4 (-515)) (-4 *4 (-786))
- (-4 *4 (-564 *2)) (-5 *2 (-355)) (-5 *1 (-724 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-292 *5)) (-5 *4 (-852)) (-4 *5 (-515))
- (-4 *5 (-786)) (-4 *5 (-564 *2)) (-5 *2 (-355))
- (-5 *1 (-724 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
+ (-12 (-5 *3 (-1072))
+ (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-108)) (-5 *1 (-204 *4 *5)) (-4 *5 (-13 (-1111) (-29 *4))))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-1 (-501) (-591 (-501)))) (-5 *1 (-110))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-501) (-591 (-501)))) (-5 *1 (-110)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1125)) (-5 *1 (-1048 *4 *2))
+ (-4 *2 (-13 (-558 (-525) *4) (-10 -7 (-6 -4250) (-6 -4251))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-788)) (-4 *3 (-1125)) (-5 *1 (-1048 *3 *2))
+ (-4 *2 (-13 (-558 (-525) *3) (-10 -7 (-6 -4250) (-6 -4251)))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1070 *3)) (-5 *1 (-161 *3)) (-4 *3 (-286)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-135)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1022)) (-5 *1 (-308)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-44 (-1072) (-715))) (-5 *1 (-110)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1020 *3)) (-5 *1 (-837 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1020 *3)) (-5 *1 (-838 *3)) (-4 *3 (-1018)))))
(((*1 *2)
- (-12 (-4 *2 (-13 (-406 *3) (-930))) (-5 *1 (-253 *3 *2))
- (-4 *3 (-13 (-786) (-515)))))
- ((*1 *1)
- (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087)))
- (-14 *3 (-589 (-1087))) (-4 *4 (-363))))
- ((*1 *1) (-5 *1 (-452))) ((*1 *1) (-4 *1 (-1109))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123)))))
-(((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-1090))))
- ((*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1174)) (-5 *1 (-1090))))
- ((*1 *2 *3 *1) (-12 (-5 *3 (-1087)) (-5 *2 (-1174)) (-5 *1 (-1090)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-896 *3)) (-4 *3 (-897)))))
+ (-12 (-4 *3 (-517)) (-5 *2 (-591 *4)) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-395 *3)))))
+(((*1 *1 *2 *2)
+ (-12
+ (-5 *2
+ (-3 (|:| I (-294 (-525))) (|:| -3576 (-294 (-357)))
+ (|:| CF (-294 (-157 (-357)))) (|:| |switch| (-1088))))
+ (-5 *1 (-1088)))))
+(((*1 *2) (-12 (-5 *2 (-837 (-525))) (-5 *1 (-850)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-341)) (-4 *3 (-975))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3857 *1)))
+ (-4 *1 (-790 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108))
+ (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-591 *6)) (-4 *6 (-788)) (-4 *4 (-341)) (-4 *5 (-734))
+ (-5 *2 (-108)) (-5 *1 (-477 *4 *5 *6 *7)) (-4 *7 (-882 *4 *5 *6)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-306)))))
+ (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4)))
+ (-5 *1 (-647 *3 *4)) (-4 *3 (-1125)) (-4 *4 (-1125)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-631 (-385 (-885 (-525)))))
+ (-5 *2 (-591 (-631 (-294 (-525))))) (-5 *1 (-960))
+ (-5 *3 (-294 (-525))))))
+(((*1 *1 *1) (-12 (-4 *1 (-408 *2)) (-4 *2 (-788)) (-4 *2 (-975))))
+ ((*1 *1 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-589 (-589 (-523)))) (-5 *1 (-900))
- (-5 *3 (-589 (-523))))))
+ (-12 (-4 *4 (-13 (-341) (-966 (-385 *2)))) (-5 *2 (-525))
+ (-5 *1 (-111 *4 *3)) (-4 *3 (-1147 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-318 *4 *5 *6)) (-4 *4 (-1127))
- (-4 *5 (-1145 *4)) (-4 *6 (-1145 (-383 *5)))
- (-5 *2 (-2 (|:| |num| (-629 *5)) (|:| |den| *5))))))
-(((*1 *1) (-5 *1 (-144))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4))
- (-4 *3 (-343 *4))))
- ((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))))
-(((*1 *1 *1) (-12 (-4 *1 (-616 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-836 *4)) (-4 *4 (-1016)) (-5 *2 (-589 (-710)))
- (-5 *1 (-835 *4)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-589 *7)) (-5 *3 (-523)) (-4 *7 (-880 *4 *5 *6))
- (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-5 *1 (-424 *4 *5 *6 *7)))))
-(((*1 *1 *2) (-12 (-5 *2 (-292 (-155 (-355)))) (-5 *1 (-306))))
- ((*1 *1 *2) (-12 (-5 *2 (-292 (-523))) (-5 *1 (-306))))
- ((*1 *1 *2) (-12 (-5 *2 (-292 (-355))) (-5 *1 (-306))))
- ((*1 *1 *2) (-12 (-5 *2 (-292 (-633))) (-5 *1 (-306))))
- ((*1 *1 *2) (-12 (-5 *2 (-292 (-640))) (-5 *1 (-306))))
- ((*1 *1 *2) (-12 (-5 *2 (-292 (-638))) (-5 *1 (-306))))
- ((*1 *1) (-5 *1 (-306))))
-(((*1 *2 *2 *2) (-12 (-5 *1 (-146 *2)) (-4 *2 (-508)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *1))
- (-4 *1 (-987 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1039 (-523) (-562 (-47)))) (-5 *1 (-47))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-921 *2)) (-4 *4 (-1145 *3)) (-4 *2 (-284))
- (-5 *1 (-389 *2 *3 *4 *5)) (-4 *5 (-13 (-385 *3 *4) (-964 *3)))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-515)) (-4 *3 (-786)) (-5 *2 (-1039 *3 (-562 *1)))
- (-4 *1 (-406 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-1039 (-523) (-562 (-466)))) (-5 *1 (-466))))
- ((*1 *2 *1)
- (-12 (-4 *4 (-158)) (-4 *2 (|SubsetCategory| (-666) *4))
- (-5 *1 (-568 *3 *4 *2)) (-4 *3 (-37 *4))))
- ((*1 *2 *1)
- (-12 (-4 *4 (-158)) (-4 *2 (|SubsetCategory| (-666) *4))
- (-5 *1 (-605 *3 *4 *2)) (-4 *3 (-657 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-599 *2)) (-4 *2 (-973)) (-4 *2 (-339))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-339)) (-5 *1 (-602 *4 *2))
- (-4 *2 (-599 *4)))))
+ (-12 (-5 *3 (-457 *4 *5)) (-14 *4 (-591 (-1089))) (-4 *5 (-975))
+ (-5 *2 (-885 *5)) (-5 *1 (-877 *4 *5)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355))
- (-5 *2
- (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523))
- (|:| |success| (-108))))
- (-5 *1 (-728)) (-5 *5 (-523)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1083 *1)) (-5 *3 (-1087)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-1083 *1)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-883 *1)) (-4 *1 (-27))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1087)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-786) (-515)))))
- ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-786) (-515)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1083 *2)) (-5 *4 (-1087)) (-4 *2 (-406 *5))
- (-5 *1 (-31 *5 *2)) (-4 *5 (-13 (-786) (-515)))))
- ((*1 *1 *2 *3)
- (|partial| -12 (-5 *2 (-1083 *1)) (-5 *3 (-852)) (-4 *1 (-940))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-1083 *1)) (-5 *3 (-852)) (-5 *4 (-794))
- (-4 *1 (-940))))
- ((*1 *1 *2 *3)
- (|partial| -12 (-5 *3 (-852)) (-4 *4 (-13 (-784) (-339)))
- (-4 *1 (-989 *4 *2)) (-4 *2 (-1145 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1083 (-383 (-523)))) (-5 *1 (-873)) (-5 *3 (-523)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-852))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-662)) (-5 *2 (-710)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1039 (-523) (-562 (-47)))) (-5 *1 (-47))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-284)) (-4 *4 (-921 *3)) (-4 *5 (-1145 *4))
- (-5 *2 (-1169 *6)) (-5 *1 (-389 *3 *4 *5 *6))
- (-4 *6 (-13 (-385 *4 *5) (-964 *4)))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-973)) (-4 *3 (-786)) (-5 *2 (-1039 *3 (-562 *1)))
- (-4 *1 (-406 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-1039 (-523) (-562 (-466)))) (-5 *1 (-466))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-158)) (-4 *2 (-37 *3)) (-5 *1 (-568 *2 *3 *4))
- (-4 *4 (|SubsetCategory| (-666) *3))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-158)) (-4 *2 (-657 *3)) (-5 *1 (-605 *2 *3 *4))
- (-4 *4 (|SubsetCategory| (-666) *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1083 *3)) (-4 *3 (-344)) (-4 *1 (-305 *3))
- (-4 *3 (-339)))))
-(((*1 *2 *1) (-12 (-4 *1 (-365)) (-5 *2 (-1070)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1087)) (-4 *5 (-1127)) (-4 *6 (-1145 *5))
- (-4 *7 (-1145 (-383 *6))) (-5 *2 (-589 (-883 *5)))
- (-5 *1 (-317 *4 *5 *6 *7)) (-4 *4 (-318 *5 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1087)) (-4 *1 (-318 *4 *5 *6)) (-4 *4 (-1127))
- (-4 *5 (-1145 *4)) (-4 *6 (-1145 (-383 *5))) (-4 *4 (-339))
- (-5 *2 (-589 (-883 *4))))))
+ (-12 (-4 *3 (-517)) (-5 *1 (-40 *3 *2))
+ (-4 *2
+ (-13 (-341) (-281)
+ (-10 -8 (-15 -1738 ((-1041 *3 (-564 $)) $))
+ (-15 -1754 ((-1041 *3 (-564 $)) $))
+ (-15 -3022 ($ (-1041 *3 (-564 $))))))))))
+(((*1 *1) (-5 *1 (-764))))
+(((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-763)))))
+(((*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7)
+ (-12 (-5 *3 (-1072)) (-5 *5 (-631 (-205))) (-5 *6 (-205))
+ (-5 *7 (-631 (-525))) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-694)))))
+(((*1 *2 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-786)) (-5 *1 (-282 *3)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-589 (-455 *3 *4))) (-14 *3 (-589 (-1087)))
- (-4 *4 (-427)) (-5 *1 (-577 *3 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-589 *7)) (|:| |badPols| (-589 *7))))
- (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-589 *7)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203))
- (-5 *2 (-962)) (-5 *1 (-692)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1053 *2 *3)) (-4 *2 (-13 (-1016) (-33)))
- (-4 *3 (-13 (-1016) (-33))))))
-(((*1 *1 *1 *1 *2 *3)
- (-12 (-5 *2 (-874 *5)) (-5 *3 (-710)) (-4 *5 (-973))
- (-5 *1 (-1076 *4 *5)) (-14 *4 (-852)))))
+ (-12 (-4 *3 (-13 (-341) (-786))) (-5 *1 (-167 *3 *2))
+ (-4 *2 (-1147 (-157 *3))))))
(((*1 *2 *3 *4)
- (-12 (-5 *2 (-589 (-155 *4))) (-5 *1 (-143 *3 *4))
- (-4 *3 (-1145 (-155 (-523)))) (-4 *4 (-13 (-339) (-784)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-339) (-784))) (-5 *2 (-589 (-155 *4)))
- (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *4 (-13 (-339) (-784))) (-5 *2 (-589 (-155 *4)))
- (-5 *1 (-165 *4 *3)) (-4 *3 (-1145 (-155 *4))))))
-(((*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7)
- (-12 (-5 *3 (-1070)) (-5 *5 (-629 (-203))) (-5 *6 (-203))
- (-5 *7 (-629 (-523))) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-692)))))
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 *4))
+ (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-517)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3))
+ (-5 *1 (-1116 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-758 *4)) (-4 *4 (-786)) (-5 *2 (-108))
- (-5 *1 (-614 *4)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-589 *1)) (-4 *1 (-987 *4 *5 *6)) (-4 *4 (-973))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1117 *4 *5 *6 *3)) (-4 *4 (-515)) (-4 *5 (-732))
- (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-108)))))
+ (-12 (-5 *2 (-1070 (-591 (-525)))) (-5 *1 (-816)) (-5 *3 (-525)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4))))
- (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *4 (-523)) (-5 *6 (-1 (-1174) (-1169 *5) (-1169 *5) (-355)))
- (-5 *3 (-1169 (-355))) (-5 *5 (-355)) (-5 *2 (-1174))
- (-5 *1 (-727))))
- ((*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3)
- (-12 (-5 *4 (-523)) (-5 *6 (-1 (-1174) (-1169 *5) (-1169 *5) (-355)))
- (-5 *3 (-1169 (-355))) (-5 *5 (-355)) (-5 *2 (-1174))
- (-5 *1 (-727)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1174)) (-5 *1 (-193 *4))
- (-4 *4
- (-13 (-786)
- (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 (*2 $))
- (-15 -2149 (*2 $)))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1174)) (-5 *1 (-193 *3))
- (-4 *3
- (-13 (-786)
- (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 (*2 $))
- (-15 -2149 (*2 $)))))))
- ((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-473)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 *1)) (-4 *3 (-973)) (-4 *1 (-627 *3 *4 *5))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-973)) (-4 *1 (-627 *3 *4 *5))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1169 *3)) (-4 *3 (-973)) (-5 *1 (-629 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 *4)) (-4 *4 (-973)) (-4 *1 (-1037 *3 *4 *5 *6))
- (-4 *5 (-216 *3 *4)) (-4 *6 (-216 *3 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *2 *1) (-12 (-4 *3 (-973)) (-5 *2 (-589 *1)) (-4 *1 (-1048 *3)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-4 *6 (-1145 *9)) (-4 *7 (-732)) (-4 *8 (-786)) (-4 *9 (-284))
- (-4 *10 (-880 *9 *7 *8))
- (-5 *2
- (-2 (|:| |deter| (-589 (-1083 *10)))
- (|:| |dterm|
- (-589 (-589 (-2 (|:| -1998 (-710)) (|:| |pcoef| *10)))))
- (|:| |nfacts| (-589 *6)) (|:| |nlead| (-589 *10))))
- (-5 *1 (-717 *6 *7 *8 *9 *10)) (-5 *3 (-1083 *10)) (-5 *4 (-589 *6))
- (-5 *5 (-589 *10)))))
-(((*1 *2 *2 *2 *3 *3 *4 *2 *5)
- (|partial| -12 (-5 *3 (-562 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1087))) (-5 *5 (-1083 *2))
- (-4 *2 (-13 (-406 *6) (-27) (-1109)))
- (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *1 (-519 *6 *2 *7)) (-4 *7 (-1016))))
- ((*1 *2 *2 *2 *3 *3 *4 *3 *2 *5)
- (|partial| -12 (-5 *3 (-562 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1087)))
- (-5 *5 (-383 (-1083 *2))) (-4 *2 (-13 (-406 *6) (-27) (-1109)))
- (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *1 (-519 *6 *2 *7)) (-4 *7 (-1016)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-13 (-784) (-339))) (-5 *1 (-983 *2 *3))
- (-4 *3 (-1145 *2)))))
-(((*1 *1 *1) (-4 *1 (-508))))
-(((*1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-1090)))))
-(((*1 *2 *1) (-12 (-4 *1 (-302 *3 *2)) (-4 *3 (-973)) (-4 *2 (-731))))
- ((*1 *2 *1) (-12 (-4 *1 (-648 *3)) (-4 *3 (-973)) (-5 *2 (-710))))
- ((*1 *2 *1) (-12 (-4 *1 (-788 *3)) (-4 *3 (-973)) (-5 *2 (-710))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-589 *6)) (-4 *1 (-880 *4 *5 *6)) (-4 *4 (-973))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 (-710)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-880 *4 *5 *3)) (-4 *4 (-973)) (-4 *5 (-732))
- (-4 *3 (-786)) (-5 *2 (-710)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-339)) (-5 *1 (-706 *2 *3)) (-4 *2 (-648 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1087))
- (-5 *2 (-3 (|:| |fst| (-410)) (|:| -3164 "void"))) (-5 *1 (-1090)))))
+ (-12 (-4 *5 (-341))
+ (-5 *2 (-591 (-2 (|:| C (-631 *5)) (|:| |g| (-1171 *5)))))
+ (-5 *1 (-909 *5)) (-5 *3 (-631 *5)) (-5 *4 (-1171 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-975)) (-4 *2 (-629 *4 *5 *6))
+ (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1147 *4)) (-4 *5 (-351 *4))
+ (-4 *6 (-351 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1094)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-796)))))
(((*1 *2 *2 *2)
- (-12 (-4 *3 (-339)) (-5 *1 (-706 *2 *3)) (-4 *2 (-648 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))))
+ (-12 (-4 *3 (-341)) (-5 *1 (-708 *2 *3)) (-4 *2 (-650 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1147 *6))
+ (-4 *6 (-13 (-27) (-408 *5)))
+ (-4 *5 (-13 (-788) (-517) (-966 (-525)))) (-4 *8 (-1147 (-385 *7)))
+ (-5 *2 (-542 *3)) (-5 *1 (-513 *5 *6 *7 *8 *3))
+ (-4 *3 (-320 *6 *7 *8)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2) (-12 (-5 *2 (-591 *3)) (-5 *1 (-1004 *3)) (-4 *3 (-127)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1085 *7))
+ (-4 *5 (-975)) (-4 *7 (-975)) (-4 *2 (-1147 *5))
+ (-5 *1 (-474 *5 *2 *6 *7)) (-4 *6 (-1147 *2)))))
+(((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-859)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-37 (-383 (-523))))
- (-5 *2 (-2 (|:| -2588 (-1068 *4)) (|:| -2598 (-1068 *4))))
- (-5 *1 (-1074 *4)) (-5 *3 (-1068 *4)))))
+ (-12 (-4 *4 (-788)) (-5 *2 (-591 (-591 (-591 *4))))
+ (-5 *1 (-1097 *4)) (-5 *3 (-591 (-591 *4))))))
(((*1 *2 *3 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-710)) (|:| |poli| *7)
- (|:| |polj| *7)))
- (-4 *5 (-732)) (-4 *7 (-880 *4 *5 *6)) (-4 *4 (-427)) (-4 *6 (-786))
- (-5 *2 (-108)) (-5 *1 (-424 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-556 *2 *3)) (-4 *3 (-1123)) (-4 *2 (-1016))
- (-4 *2 (-786)))))
+ (-12 (-4 *4 (-517)) (-5 *2 (-591 *3)) (-5 *1 (-901 *4 *3))
+ (-4 *3 (-1147 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-103))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-501))) (-5 *1 (-501)))))
(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1087)) (-5 *5 (-589 (-383 (-883 *6))))
- (-5 *3 (-383 (-883 *6)))
- (-4 *6 (-13 (-515) (-964 (-523)) (-136)))
+ (|partial| -12 (-5 *5 (-1171 (-591 *3))) (-4 *4 (-286))
+ (-5 *2 (-591 *3)) (-5 *1 (-432 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1085 *7)) (-5 *3 (-525)) (-4 *7 (-882 *6 *4 *5))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-975))
+ (-5 *1 (-299 *4 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-1093)))))
+(((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
+ (|partial| -12 (-5 *5 (-108)) (-4 *6 (-429)) (-4 *7 (-734))
+ (-4 *8 (-788)) (-4 *9 (-989 *6 *7 *8))
(-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-529 *6)))))
-(((*1 *1) (-5 *1 (-762))))
-(((*1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-219)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-589 (-383 *6))) (-5 *3 (-383 *6))
- (-4 *6 (-1145 *5)) (-4 *5 (-13 (-339) (-136) (-964 (-523))))
+ (-2 (|:| -1317 (-591 *9)) (|:| -3374 *4) (|:| |ineq| (-591 *9))))
+ (-5 *1 (-919 *6 *7 *8 *9 *4)) (-5 *3 (-591 *9))
+ (-4 *4 (-994 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
+ (|partial| -12 (-5 *5 (-108)) (-4 *6 (-429)) (-4 *7 (-734))
+ (-4 *8 (-788)) (-4 *9 (-989 *6 *7 *8))
(-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-527 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))
- (-5 *2 (-383 (-523))) (-5 *1 (-947 *4)) (-4 *4 (-1145 (-523))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-1184 *3 *4)) (-4 *3 (-786))
- (-4 *4 (-973)) (-4 *4 (-158))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-786)) (-4 *3 (-973))
- (-4 *3 (-158)))))
-(((*1 *2 *1) (-12 (-4 *1 (-964 (-523))) (-4 *1 (-279)) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-4 *1 (-508)) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-836 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-355) (-355))) (-5 *4 (-355))
+ (-2 (|:| -1317 (-591 *9)) (|:| -3374 *4) (|:| |ineq| (-591 *9))))
+ (-5 *1 (-1025 *6 *7 *8 *9 *4)) (-5 *3 (-591 *9))
+ (-4 *4 (-994 *6 *7 *8 *9)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1018)) (-5 *2 (-1072)))))
+(((*1 *2 *2) (-12 (-5 *1 (-893 *2)) (-4 *2 (-510)))))
+(((*1 *2 *1) (-12 (-5 *2 (-715)) (-5 *1 (-51)))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-859)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-919 *4 *5 *6 *7 *3))
+ (-4 *3 (-994 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108))
+ (-5 *1 (-1025 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-341)) (-5 *1 (-708 *2 *3)) (-4 *2 (-650 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))))
+(((*1 *1) (-5 *1 (-308))))
+(((*1 *2 *2)
+ (-12
(-5 *2
- (-2 (|:| -2058 *4) (|:| -2052 *4) (|:| |totalpts| (-523))
- (|:| |success| (-108))))
- (-5 *1 (-728)) (-5 *5 (-523)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-203) (-203))) (-5 *1 (-294)) (-5 *3 (-203)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-355)) (-5 *1 (-985)))))
-(((*1 *1 *1 *1) (-5 *1 (-794))))
+ (-591
+ (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-712)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *4 (-734)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-429)) (-4 *5 (-788))
+ (-5 *1 (-426 *3 *4 *5 *6)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-629 *3)) (-4 *3 (-284)) (-5 *1 (-639 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-370))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1104)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-4 *3 (-515))
- (-5 *2 (-1083 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-840)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-880 *4 *5 *6)) (-5 *2 (-394 (-1083 *7)))
- (-5 *1 (-837 *4 *5 *6 *7)) (-5 *3 (-1083 *7))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-840)) (-4 *5 (-1145 *4)) (-5 *2 (-394 (-1083 *5)))
- (-5 *1 (-838 *4 *5)) (-5 *3 (-1083 *5)))))
+ (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-788) (-517))) (-5 *1 (-147 *4 *2))
+ (-4 *2 (-408 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1011 *2)) (-4 *2 (-408 *4)) (-4 *4 (-13 (-788) (-517)))
+ (-5 *1 (-147 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1011 *1)) (-4 *1 (-149))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-149)) (-5 *2 (-1089)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-712)) (-5 *2 (-1 (-1070 (-885 *4)) (-1070 (-885 *4))))
+ (-5 *1 (-1179 *4)) (-4 *4 (-341)))))
+(((*1 *2 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))))
+(((*1 *2 *1 *2 *3)
+ (-12 (-5 *3 (-591 (-1072))) (-5 *2 (-1072)) (-5 *1 (-1172))))
+ ((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1172))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1172))))
+ ((*1 *2 *1 *2 *3)
+ (-12 (-5 *3 (-591 (-1072))) (-5 *2 (-1072)) (-5 *1 (-1173))))
+ ((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1173))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1173)))))
+(((*1 *1) (-5 *1 (-987))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *3 *4 *4 *5 *6 *7)
+ (-12 (-5 *5 (-1089))
+ (-5 *6
+ (-1
+ (-3
+ (-2 (|:| |mainpart| *4)
+ (|:| |limitedlogs|
+ (-591 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
+ "failed")
+ *4 (-591 *4)))
+ (-5 *7
+ (-1 (-3 (-2 (|:| -3060 *4) (|:| |coeff| *4)) "failed") *4 *4))
+ (-4 *4 (-13 (-1111) (-27) (-408 *8)))
+ (-4 *8 (-13 (-429) (-788) (-138) (-966 *3) (-587 *3)))
+ (-5 *3 (-525))
+ (-5 *2 (-2 (|:| |ans| *4) (|:| -3400 *4) (|:| |sol?| (-108))))
+ (-5 *1 (-943 *8 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-294 (-157 (-357)))) (-5 *1 (-308))))
+ ((*1 *1 *2) (-12 (-5 *2 (-294 (-525))) (-5 *1 (-308))))
+ ((*1 *1 *2) (-12 (-5 *2 (-294 (-357))) (-5 *1 (-308))))
+ ((*1 *1 *2) (-12 (-5 *2 (-294 (-635))) (-5 *1 (-308))))
+ ((*1 *1 *2) (-12 (-5 *2 (-294 (-642))) (-5 *1 (-308))))
+ ((*1 *1 *2) (-12 (-5 *2 (-294 (-640))) (-5 *1 (-308))))
+ ((*1 *1) (-5 *1 (-308))))
+(((*1 *2 *3) (-12 (-5 *3 (-205)) (-5 *2 (-294 (-357))) (-5 *1 (-284)))))
(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1052 *2 *3)) (-4 *2 (-13 (-1016) (-33)))
- (-4 *3 (-13 (-1016) (-33))))))
-(((*1 *2 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-691)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1083 *3)) (-4 *3 (-973)) (-4 *1 (-1145 *3)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-687)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)) (-5 *3 (-523)))))
-(((*1 *2 *1) (-12 (-4 *1 (-938 *3)) (-4 *3 (-1123)) (-5 *2 (-589 *3)))))
-(((*1 *1 *1) (-12 (-5 *1 (-845 *2)) (-4 *2 (-284)))))
+ (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))))
+(((*1 *1) (-5 *1 (-764))))
(((*1 *2 *3)
- (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-768)) (-5 *3 (-1070)))))
-(((*1 *2 *3 *3 *4 *4 *3 *3 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203))
- (-5 *2 (-962)) (-5 *1 (-695)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973))
- (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-108)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1020)) (-5 *1 (-257)))))
-(((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-857)))))
-(((*1 *2 *3) (-12 (-5 *2 (-394 *3)) (-5 *1 (-517 *3)) (-4 *3 (-508))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-284)) (-5 *2 (-394 *3))
- (-5 *1 (-682 *4 *5 *6 *3)) (-4 *3 (-880 *6 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-284))
- (-4 *7 (-880 *6 *4 *5)) (-5 *2 (-394 (-1083 *7)))
- (-5 *1 (-682 *4 *5 *6 *7)) (-5 *3 (-1083 *7))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-427)) (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *2 (-394 *1)) (-4 *1 (-880 *3 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-786)) (-4 *5 (-732)) (-4 *6 (-427)) (-5 *2 (-394 *3))
- (-5 *1 (-908 *4 *5 *6 *3)) (-4 *3 (-880 *6 *5 *4))))
+ (-12 (-5 *3 (-1070 (-205))) (-5 *2 (-591 (-1072))) (-5 *1 (-174))))
((*1 *2 *3)
- (-12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-427))
- (-4 *7 (-880 *6 *4 *5)) (-5 *2 (-394 (-1083 (-383 *7))))
- (-5 *1 (-1082 *4 *5 *6 *7)) (-5 *3 (-1083 (-383 *7)))))
- ((*1 *2 *1) (-12 (-5 *2 (-394 *1)) (-4 *1 (-1127))))
+ (-12 (-5 *3 (-1070 (-205))) (-5 *2 (-591 (-1072))) (-5 *1 (-279))))
((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-394 *3)) (-5 *1 (-1148 *4 *3))
- (-4 *3 (-13 (-1145 *4) (-515) (-10 -8 (-15 -2056 ($ $ $)))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-970 *4 *5)) (-4 *4 (-13 (-784) (-284) (-136) (-949)))
- (-14 *5 (-589 (-1087)))
- (-5 *2
- (-589 (-1058 *4 (-495 (-796 *6)) (-796 *6) (-719 *4 (-796 *6)))))
- (-5 *1 (-1193 *4 *5 *6)) (-14 *6 (-589 (-1087))))))
-(((*1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-252)))))
-(((*1 *2)
- (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786))
- (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-1174))
- (-5 *1 (-993 *3 *4 *5 *6 *7)) (-4 *7 (-992 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-427)) (-4 *4 (-732)) (-4 *5 (-786))
- (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-1174))
- (-5 *1 (-1024 *3 *4 *5 *6 *7)) (-4 *7 (-992 *3 *4 *5 *6)))))
+ (-12 (-5 *3 (-1070 (-205))) (-5 *2 (-591 (-1072))) (-5 *1 (-284)))))
+(((*1 *2 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173))))
+ ((*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-796)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-825 *4)) (-4 *4 (-1018)) (-5 *1 (-822 *4 *3))
+ (-4 *3 (-1018)))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *6)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-72 FCN)))) (-5 *2 (-964))
+ (-5 *1 (-688)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-4 *1 (-215 *3))))
+ ((*1 *1) (-12 (-4 *1 (-215 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-876 *3)) (-4 *3 (-13 (-341) (-1111) (-932)))
+ (-5 *1 (-163 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-975)) (-5 *2 (-525)) (-5 *1 (-420 *4 *3 *5))
+ (-4 *3 (-1147 *4))
+ (-4 *5 (-13 (-382) (-966 *4) (-341) (-1111) (-263))))))
+(((*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1176)) (-5 *1 (-357))))
+ ((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-357)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-205)) (-5 *3 (-712)) (-5 *1 (-206))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-157 (-205))) (-5 *3 (-712)) (-5 *1 (-206))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1053))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4250)) (-4 *1 (-142 *3))
+ (-4 *3 (-1125))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1125)) (-5 *1 (-555 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-618 *3)) (-4 *3 (-1125))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-4 *1 (-1119 *4 *5 *3 *2)) (-4 *4 (-517))
+ (-4 *5 (-734)) (-4 *3 (-788)) (-4 *2 (-989 *4 *5 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-712)) (-5 *1 (-1123 *2)) (-4 *2 (-1125)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *2 (-523))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973))
- (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-523)))))
-(((*1 *1) (-5 *1 (-1171))))
-(((*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1070)) (-5 *1 (-725)))))
+ (-12 (-5 *2 (-591 (-1112 *3))) (-5 *1 (-1112 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-854)) (-5 *4 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1172)))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-519 *2)) (-4 *2 (-510)))))
+(((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-414)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-396 *2)) (-4 *2 (-517)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-380)) (-5 *2 (-712))))
+ ((*1 *1 *1) (-4 *1 (-380))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-341)) (-4 *3 (-975))
+ (-5 *1 (-1074 *3)))))
(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-1053 *2 *3)) (-4 *2 (-13 (-1016) (-33)))
- (-4 *3 (-13 (-1016) (-33))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-629 (-383 (-883 *4)))) (-4 *4 (-427))
- (-5 *2 (-589 (-3 (-383 (-883 *4)) (-1077 (-1087) (-883 *4)))))
- (-5 *1 (-269 *4)))))
-(((*1 *1) (-4 *1 (-325)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 *5)) (-4 *5 (-406 *4))
- (-4 *4 (-13 (-515) (-786) (-136)))
- (-5 *2
- (-2 (|:| |primelt| *5) (|:| |poly| (-589 (-1083 *5)))
- (|:| |prim| (-1083 *5))))
- (-5 *1 (-408 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-515) (-786) (-136)))
+ (-12 (-5 *1 (-1054 *2 *3)) (-4 *2 (-13 (-1018) (-33)))
+ (-4 *3 (-13 (-1018) (-33))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *2 (-712))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975))
+ (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-712)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357))
(-5 *2
- (-2 (|:| |primelt| *3) (|:| |pol1| (-1083 *3))
- (|:| |pol2| (-1083 *3)) (|:| |prim| (-1083 *3))))
- (-5 *1 (-408 *4 *3)) (-4 *3 (-27)) (-4 *3 (-406 *4))))
- ((*1 *2 *3 *4 *3 *4)
- (-12 (-5 *3 (-883 *5)) (-5 *4 (-1087)) (-4 *5 (-13 (-339) (-136)))
+ (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525))
+ (|:| |success| (-108))))
+ (-5 *1 (-730)) (-5 *5 (-525)))))
+(((*1 *1) (-5 *1 (-415))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *4 (-1089)) (-5 *6 (-108))
+ (-4 *7 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))))
+ (-4 *3 (-13 (-1111) (-891) (-29 *7)))
(-5 *2
- (-2 (|:| |coef1| (-523)) (|:| |coef2| (-523))
- (|:| |prim| (-1083 *5))))
- (-5 *1 (-890 *5))))
+ (-3 (|:| |f1| (-781 *3)) (|:| |f2| (-591 (-781 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-199 *7 *3)) (-5 *5 (-781 *3)))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-1089)) (-4 *4 (-975)) (-4 *4 (-788))
+ (-5 *2 (-2 (|:| |var| (-564 *1)) (|:| -2008 (-525))))
+ (-4 *1 (-408 *4))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-110)) (-4 *4 (-975)) (-4 *4 (-788))
+ (-5 *2 (-2 (|:| |var| (-564 *1)) (|:| -2008 (-525))))
+ (-4 *1 (-408 *4))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1030)) (-4 *3 (-788))
+ (-5 *2 (-2 (|:| |var| (-564 *1)) (|:| -2008 (-525))))
+ (-4 *1 (-408 *3))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |val| (-825 *3)) (|:| -2008 (-712))))
+ (-5 *1 (-825 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-882 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *2 (-2 (|:| |var| *5) (|:| -2008 (-712))))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-975))
+ (-4 *7 (-882 *6 *4 *5))
+ (-5 *2 (-2 (|:| |var| *5) (|:| -2008 (-525))))
+ (-5 *1 (-883 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-341)
+ (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $))
+ (-15 -1754 (*7 $))))))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-712)) (-5 *1 (-57 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-5 *1 (-57 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1089)) (-5 *5 (-1013 (-205))) (-5 *2 (-860))
+ (-5 *1 (-858 *3)) (-4 *3 (-566 (-501)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-589 (-1087)))
- (-4 *5 (-13 (-339) (-136)))
- (-5 *2
- (-2 (|:| -2275 (-589 (-523))) (|:| |poly| (-589 (-1083 *5)))
- (|:| |prim| (-1083 *5))))
- (-5 *1 (-890 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-589 (-883 *6))) (-5 *4 (-589 (-1087))) (-5 *5 (-1087))
- (-4 *6 (-13 (-339) (-136)))
+ (-12 (-5 *4 (-1089)) (-5 *2 (-860)) (-5 *1 (-858 *3))
+ (-4 *3 (-566 (-501)))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-205) (-205))) (-5 *1 (-860))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-205) (-205))) (-5 *3 (-1013 (-205)))
+ (-5 *1 (-860)))))
+(((*1 *2 *1) (-12 (-4 *1 (-515 *2)) (-4 *2 (-13 (-382) (-1111)))))
+ ((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796))))
+ ((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-796)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-341)) (-4 *4 (-517)) (-4 *5 (-1147 *4))
+ (-5 *2 (-2 (|:| -2877 (-572 *4 *5)) (|:| -1293 (-385 *5))))
+ (-5 *1 (-572 *4 *5)) (-5 *3 (-385 *5))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-1078 *3 *4))) (-5 *1 (-1078 *3 *4))
+ (-14 *3 (-854)) (-4 *4 (-975))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-429)) (-4 *3 (-975))
+ (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1)))
+ (-4 *1 (-1147 *3)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-591 (-876 *4))) (-4 *1 (-1050 *4)) (-4 *4 (-975))
+ (-5 *2 (-712)))))
+(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-525)) (-5 *3 (-854)) (-4 *1 (-382))))
+ ((*1 *1 *2 *2) (-12 (-5 *2 (-525)) (-4 *1 (-382))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *2 *6)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1018)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1018))
+ (-4 *6 (-1018)) (-4 *2 (-1018)) (-5 *1 (-623 *5 *6 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1070 (-525))) (-5 *1 (-1074 *4)) (-4 *4 (-975))
+ (-5 *3 (-525)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-1018)) (-4 *2 (-833 *4)) (-5 *1 (-633 *4 *2 *5 *3))
+ (-4 *5 (-351 *2)) (-4 *3 (-13 (-351 *4) (-10 -7 (-6 -4250)))))))
+(((*1 *2 *3 *3 *3 *4 *5)
+ (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1147 *6))
+ (-4 *6 (-13 (-341) (-138) (-966 *4))) (-5 *4 (-525))
(-5 *2
- (-2 (|:| -2275 (-589 (-523))) (|:| |poly| (-589 (-1083 *6)))
- (|:| |prim| (-1083 *6))))
- (-5 *1 (-890 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 *5)) (-5 *4 (-1169 *5)) (-4 *5 (-339))
- (-5 *2 (-108)) (-5 *1 (-610 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-339)) (-4 *6 (-13 (-349 *5) (-10 -7 (-6 -4249))))
- (-4 *4 (-13 (-349 *5) (-10 -7 (-6 -4249)))) (-5 *2 (-108))
- (-5 *1 (-611 *5 *6 *4 *3)) (-4 *3 (-627 *5 *6 *4)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-523))) (-5 *1 (-225 *3 *4))
- (-14 *3 (-589 (-1087))) (-4 *4 (-973))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-523))) (-14 *3 (-589 (-1087)))
- (-5 *1 (-429 *3 *4 *5)) (-4 *4 (-973))
- (-4 *5 (-216 (-1271 *3) (-710)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-523))) (-5 *1 (-455 *3 *4))
- (-14 *3 (-589 (-1087))) (-4 *4 (-973)))))
-(((*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172))))
- ((*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-1172)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-466)))))
-(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-622 *3)) (-4 *3 (-1016)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-383 (-523))) (-5 *1 (-548 *3)) (-4 *3 (-37 *2))
- (-4 *3 (-973)))))
-(((*1 *2 *3) (-12 (-5 *3 (-499)) (-5 *1 (-498 *2)) (-4 *2 (-1123))))
- ((*1 *2 *1) (-12 (-5 *2 (-51)) (-5 *1 (-499)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-230 *2 *3 *4 *5)) (-4 *2 (-973)) (-4 *3 (-786))
- (-4 *4 (-243 *3)) (-4 *5 (-732)))))
+ (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-108))))
+ (|:| -1317
+ (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
+ (|:| |beta| *3)))))
+ (-5 *1 (-945 *6 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1131 *3 *2)) (-4 *3 (-973)) (-4 *2 (-1160 *3)))))
-(((*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10)
- (|partial| -12 (-5 *2 (-589 (-1083 *13))) (-5 *3 (-1083 *13))
- (-5 *4 (-589 *12)) (-5 *5 (-589 *10)) (-5 *6 (-589 *13))
- (-5 *7 (-589 (-589 (-2 (|:| -1998 (-710)) (|:| |pcoef| *13)))))
- (-5 *8 (-589 (-710))) (-5 *9 (-1169 (-589 (-1083 *10))))
- (-4 *12 (-786)) (-4 *10 (-284)) (-4 *13 (-880 *10 *11 *12))
- (-4 *11 (-732)) (-5 *1 (-647 *11 *12 *10 *13)))))
+ (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *2 (-712))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975))
+ (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-712)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1089)) (-4 *4 (-517)) (-4 *4 (-788))
+ (-5 *1 (-534 *4 *2)) (-4 *2 (-408 *4)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-537)))))
-(((*1 *1) (-5 *1 (-108))))
+ (-12 (-4 *2 (-286)) (-4 *3 (-923 *2)) (-4 *4 (-1147 *3))
+ (-5 *1 (-391 *2 *3 *4 *5)) (-4 *5 (-13 (-387 *3 *4) (-966 *3))))))
+(((*1 *1) (-5 *1 (-1092))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-515 *3)) (-4 *3 (-13 (-382) (-1111))) (-5 *2 (-108)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-2 (|:| |den| (-523)) (|:| |gcdnum| (-523)))))
- (-4 *4 (-1145 (-383 *2))) (-5 *2 (-523)) (-5 *1 (-844 *4 *5))
- (-4 *5 (-1145 (-383 *4))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2))
- (|has| *2 (-6 (-4250 "*"))) (-4 *2 (-973))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-349 *2)) (-4 *5 (-349 *2)) (-4 *2 (-158))
- (-5 *1 (-628 *2 *4 *5 *3)) (-4 *3 (-627 *2 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1037 *3 *2 *4 *5)) (-4 *4 (-216 *3 *2))
- (-4 *5 (-216 *3 *2)) (|has| *2 (-6 (-4250 "*"))) (-4 *2 (-973)))))
+ (-12 (-4 *1 (-828))
+ (-5 *3
+ (-2 (|:| |pde| (-591 (-294 (-205))))
+ (|:| |constraints|
+ (-591
+ (-2 (|:| |start| (-205)) (|:| |finish| (-205))
+ (|:| |grid| (-712)) (|:| |boundaryType| (-525))
+ (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205))))))
+ (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072))
+ (|:| |tol| (-205))))
+ (-5 *2 (-964)))))
+(((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-422 *3)) (-4 *3 (-975)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 (-885 (-157 (-525))))) (-5 *2 (-591 (-157 *4)))
+ (-5 *1 (-356 *4)) (-4 *4 (-13 (-341) (-786)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-591 (-385 (-885 (-157 (-525))))))
+ (-5 *4 (-591 (-1089))) (-5 *2 (-591 (-591 (-157 *5))))
+ (-5 *1 (-356 *5)) (-4 *5 (-13 (-341) (-786))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1147 *2)) (-4 *2 (-975)) (-4 *2 (-517)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515))
- (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 *3))
- (-5 *1 (-906 *4 *5 *6 *3)) (-4 *3 (-987 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-987 *4 *5 *6)) (-4 *4 (-515))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-906 *4 *5 *6 *3))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515))
- (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 (-589 *7) (-589 *7))) (-5 *2 (-589 *7))
- (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786))
- (-5 *1 (-906 *4 *5 *6 *7)))))
-(((*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-379 *3)) (-4 *3 (-380))))
- ((*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-379 *3)) (-4 *3 (-380))))
- ((*1 *2 *2) (-12 (-5 *2 (-852)) (|has| *1 (-6 -4239)) (-4 *1 (-380))))
- ((*1 *2) (-12 (-4 *1 (-380)) (-5 *2 (-852))))
- ((*1 *2 *1) (-12 (-4 *1 (-800 *3)) (-5 *2 (-1068 (-523))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109) (-930)))
- (-5 *1 (-161 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 *4)) (-4 *4 (-973)) (-5 *2 (-1169 *4))
- (-5 *1 (-1088 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-852)) (-5 *2 (-1169 *3)) (-5 *1 (-1088 *3))
- (-4 *3 (-973)))))
-(((*1 *2)
- (-12 (-4 *3 (-515)) (-5 *2 (-589 *4)) (-5 *1 (-42 *3 *4))
- (-4 *4 (-393 *3)))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1053))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1016)) (-4 *3 (-831 *5)) (-5 *2 (-629 *3))
- (-5 *1 (-631 *5 *3 *6 *4)) (-4 *6 (-349 *3))
- (-4 *4 (-13 (-349 *5) (-10 -7 (-6 -4248)))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-110))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1070)) (-4 *4 (-786)) (-5 *1 (-860 *4 *2))
- (-4 *2 (-406 *4))))
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-286) (-138))) (-4 *6 (-734))
+ (-4 *7 (-788)) (-4 *8 (-989 *5 *6 *7)) (-5 *2 (-591 *3))
+ (-5 *1 (-547 *5 *6 *7 *8 *3)) (-4 *3 (-1027 *5 *6 *7 *8))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1087)) (-5 *4 (-1070)) (-5 *2 (-292 (-523)))
- (-5 *1 (-861)))))
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-286) (-138)))
+ (-5 *2
+ (-591 (-2 (|:| -2274 (-1085 *5)) (|:| -3572 (-591 (-885 *5))))))
+ (-5 *1 (-999 *5 *6)) (-5 *3 (-591 (-885 *5)))
+ (-14 *6 (-591 (-1089)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-286) (-138)))
+ (-5 *2
+ (-591 (-2 (|:| -2274 (-1085 *4)) (|:| -3572 (-591 (-885 *4))))))
+ (-5 *1 (-999 *4 *5)) (-5 *3 (-591 (-885 *4)))
+ (-14 *5 (-591 (-1089)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-286) (-138)))
+ (-5 *2
+ (-591 (-2 (|:| -2274 (-1085 *5)) (|:| -3572 (-591 (-885 *5))))))
+ (-5 *1 (-999 *5 *6)) (-5 *3 (-591 (-885 *5)))
+ (-14 *6 (-591 (-1089))))))
+(((*1 *2 *3 *2 *4 *5)
+ (-12 (-5 *2 (-591 *3)) (-5 *5 (-854)) (-4 *3 (-1147 *4))
+ (-4 *4 (-286)) (-5 *1 (-437 *4 *3)))))
+(((*1 *2 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-689)))))
+(((*1 *2 *2) (-12 (-5 *2 (-591 (-294 (-205)))) (-5 *1 (-246)))))
(((*1 *2 *2 *2)
- (-12 (-5 *2 (-589 (-562 *4))) (-4 *4 (-406 *3)) (-4 *3 (-786))
- (-5 *1 (-532 *3 *4))))
- ((*1 *1 *1 *1)
- (-12 (-5 *1 (-820 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-108))
- (-5 *2 (-962)) (-5 *1 (-693)))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-2 (|:| -3573 (-1083 *6)) (|:| -3262 (-523)))))
- (-4 *6 (-284)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-523))
- (-5 *1 (-682 *4 *5 *6 *7)) (-4 *7 (-880 *6 *4 *5)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-570 *4 *5))
- (-5 *3
- (-1 (-2 (|:| |ans| *4) (|:| -2438 *4) (|:| |sol?| (-108)))
- (-523) *4))
- (-4 *4 (-339)) (-4 *5 (-1145 *4)) (-5 *1 (-533 *4 *5)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-823 *4)) (-4 *4 (-1016)) (-5 *1 (-820 *4 *3))
- (-4 *3 (-1016)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *1 *1 *2 *3 *1)
- (-12 (-4 *1 (-302 *2 *3)) (-4 *2 (-973)) (-4 *3 (-731)))))
+ (|partial| -12 (-5 *3 (-631 *1)) (-4 *1 (-327)) (-5 *2 (-1171 *1))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-631 *1)) (-4 *1 (-136)) (-4 *1 (-842))
+ (-5 *2 (-1171 *1)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 (-589 *5))) (-4 *5 (-1160 *4))
- (-4 *4 (-37 (-383 (-523))))
- (-5 *2 (-1 (-1068 *4) (-589 (-1068 *4)))) (-5 *1 (-1162 *4 *5)))))
-(((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7)
- (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203)))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-65 DOT))))
- (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-66 IMAGE)))) (-5 *4 (-203))
- (-5 *2 (-962)) (-5 *1 (-695))))
- ((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8)
- (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203)))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-65 DOT))))
- (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-66 IMAGE)))) (-5 *8 (-364))
- (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-695)))))
+ (-12 (-5 *2 (-2 (|:| -1777 (-525)) (|:| -3781 (-591 *3))))
+ (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-806 *2 *3)) (-4 *2 (-1125)) (-4 *3 (-1125)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *2 (-517)) (-5 *1 (-901 *2 *3)) (-4 *3 (-1147 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-517))
+ (-5 *2 (-2 (|:| -4057 (-631 *5)) (|:| |vec| (-1171 (-591 (-854))))))
+ (-5 *1 (-88 *5 *3)) (-5 *4 (-854)) (-4 *3 (-601 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1144 *5 *4)) (-4 *4 (-761)) (-14 *5 (-1089))
+ (-5 *2 (-591 *4)) (-5 *1 (-1032 *4 *5)))))
+(((*1 *1 *1) (-5 *1 (-987))))
(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1 (-874 (-203)) (-874 (-203)))) (-5 *3 (-589 (-240)))
- (-5 *1 (-238))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1 (-874 (-203)) (-874 (-203)))) (-5 *1 (-240))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-455 *5 *6))) (-5 *3 (-455 *5 *6))
- (-14 *5 (-589 (-1087))) (-4 *6 (-427)) (-5 *2 (-1169 *6))
- (-5 *1 (-577 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *1 *1) (-4 *1 (-261)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-394 *4)) (-4 *4 (-515))
- (-5 *2 (-589 (-2 (|:| -2275 (-710)) (|:| |logand| *4))))
- (-5 *1 (-296 *4))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087)))
- (-14 *3 (-589 (-1087))) (-4 *4 (-363))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-607 *3 *4)) (-5 *1 (-573 *3 *4 *5)) (-4 *3 (-786))
- (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-14 *5 (-852))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-710)) (-4 *4 (-13 (-973) (-657 (-383 (-523)))))
- (-4 *5 (-786)) (-5 *1 (-1183 *4 *5 *2)) (-4 *2 (-1188 *5 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-1187 *3 *4))
- (-4 *4 (-657 (-383 (-523)))) (-4 *3 (-786)) (-4 *4 (-158)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-306))))
- ((*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-306)))))
+ (-12 (-5 *2 (-108)) (-5 *3 (-591 (-242))) (-5 *1 (-240)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973))
- (-5 *2 (-589 (-589 (-589 (-710))))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-793))))
- ((*1 *2 *1) (-12 (-5 *2 (-1020)) (-5 *1 (-895))))
- ((*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-918))))
- ((*1 *2 *1) (-12 (-4 *1 (-938 *2)) (-4 *2 (-1123))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-13 (-1016) (-33))) (-5 *1 (-1052 *2 *3))
- (-4 *3 (-13 (-1016) (-33))))))
-(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-589 *1)) (-4 *1 (-851)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-427))))
- ((*1 *1 *1 *1) (-4 *1 (-427)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-5 *1 (-459 *2)) (-4 *2 (-1145 (-523)))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-523)) (-5 *1 (-635 *2)) (-4 *2 (-1145 *3))))
- ((*1 *1 *1 *1) (-5 *1 (-710)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-732)) (-4 *4 (-786)) (-4 *5 (-284))
- (-5 *1 (-847 *3 *4 *5 *2)) (-4 *2 (-880 *5 *3 *4))))
+ (-12 (-4 *4 (-1018)) (-5 *2 (-822 *3 *4)) (-5 *1 (-818 *3 *4 *5))
+ (-4 *3 (-1018)) (-4 *5 (-611 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *7 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-517))
+ (-4 *8 (-882 *7 *5 *6))
+ (-5 *2 (-2 (|:| -2008 (-712)) (|:| -3482 *3) (|:| |radicand| *3)))
+ (-5 *1 (-886 *5 *6 *7 *8 *3)) (-5 *4 (-712))
+ (-4 *3
+ (-13 (-341)
+ (-10 -8 (-15 -1738 (*8 $)) (-15 -1754 (*8 $)) (-15 -3022 ($ *8))))))))
+(((*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-968)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-882 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *2 (-788))))
((*1 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-880 *6 *4 *5))
- (-5 *1 (-847 *4 *5 *6 *2)) (-4 *4 (-732)) (-4 *5 (-786))
- (-4 *6 (-284))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1083 *6)) (-4 *6 (-880 *5 *3 *4)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *5 (-284)) (-5 *1 (-847 *3 *4 *5 *6))))
+ (|partial| -12 (-4 *4 (-734)) (-4 *5 (-975)) (-4 *6 (-882 *5 *4 *2))
+ (-4 *2 (-788)) (-5 *1 (-883 *4 *2 *5 *6 *3))
+ (-4 *3
+ (-13 (-341)
+ (-10 -8 (-15 -3022 ($ *6)) (-15 -1738 (*6 $))
+ (-15 -1754 (*6 $)))))))
((*1 *2 *3)
- (-12 (-5 *3 (-589 (-1083 *7))) (-4 *4 (-732)) (-4 *5 (-786))
- (-4 *6 (-284)) (-5 *2 (-1083 *7)) (-5 *1 (-847 *4 *5 *6 *7))
- (-4 *7 (-880 *6 *4 *5))))
- ((*1 *1 *1 *1) (-5 *1 (-852)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-427)) (-4 *3 (-515)) (-5 *1 (-899 *3 *2))
- (-4 *2 (-1145 *3))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-427)))))
-(((*1 *1) (-5 *1 (-413))))
-(((*1 *1) (-12 (-4 *1 (-401 *2)) (-4 *2 (-344)) (-4 *2 (-1016)))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-1091)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-288)) (-5 *1 (-273))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-1070))) (-5 *2 (-288)) (-5 *1 (-273))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-288)) (-5 *1 (-273))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-1070))) (-5 *3 (-1070)) (-5 *2 (-288))
- (-5 *1 (-273)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1020)) (-5 *1 (-1091)))))
+ (|partial| -12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-517))
+ (-5 *2 (-1089)) (-5 *1 (-971 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-1085 *3)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-110)) (-5 *3 (-589 (-1 *4 (-589 *4)))) (-4 *4 (-1016))
- (-5 *1 (-109 *4))))
+ (|partial| -12 (-5 *2 (-591 (-1085 *5))) (-5 *3 (-1085 *5))
+ (-4 *5 (-154 *4)) (-4 *4 (-510)) (-5 *1 (-140 *4 *5))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1016))
- (-5 *1 (-109 *4))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-110)) (-5 *2 (-589 (-1 *4 (-589 *4))))
- (-5 *1 (-109 *4)) (-4 *4 (-1016)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-695)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1083 (-383 (-883 *3)))) (-5 *1 (-428 *3 *4 *5 *6))
- (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-2 (|:| |k| (-614 *3)) (|:| |c| *4))))
- (-5 *1 (-573 *3 *4 *5)) (-4 *3 (-786))
- (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-14 *5 (-852)))))
-(((*1 *1 *2 *3 *3 *3 *4)
- (-12 (-4 *4 (-339)) (-4 *3 (-1145 *4)) (-4 *5 (-1145 (-383 *3)))
- (-4 *1 (-311 *4 *3 *5 *2)) (-4 *2 (-318 *4 *3 *5))))
- ((*1 *1 *2 *2 *3)
- (-12 (-5 *3 (-523)) (-4 *2 (-339)) (-4 *4 (-1145 *2))
- (-4 *5 (-1145 (-383 *4))) (-4 *1 (-311 *2 *4 *5 *6))
- (-4 *6 (-318 *2 *4 *5))))
- ((*1 *1 *2 *2)
- (-12 (-4 *2 (-339)) (-4 *3 (-1145 *2)) (-4 *4 (-1145 (-383 *3)))
- (-4 *1 (-311 *2 *3 *4 *5)) (-4 *5 (-318 *2 *3 *4))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-339)) (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4)))
- (-4 *1 (-311 *3 *4 *5 *2)) (-4 *2 (-318 *3 *4 *5))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-389 *4 (-383 *4) *5 *6)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-4 *6 (-318 *3 *4 *5)) (-4 *3 (-339))
- (-4 *1 (-311 *3 *4 *5 *6)))))
-(((*1 *1 *1 *1) (-4 *1 (-897))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-599 *3)) (-4 *3 (-973)) (-4 *3 (-339))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-710)) (-5 *4 (-1 *5 *5)) (-4 *5 (-339))
- (-5 *1 (-602 *5 *2)) (-4 *2 (-599 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-292 (-203))) (-5 *2 (-203)) (-5 *1 (-282)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973))
- (-5 *2 (-758 *3))))
- ((*1 *2 *1) (-12 (-4 *2 (-782)) (-5 *1 (-1190 *3 *2)) (-4 *3 (-973)))))
-(((*1 *2 *1) (-12 (-4 *1 (-325)) (-5 *2 (-710))))
- ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-378)) (-5 *2 (-710)))))
-(((*1 *1 *1) (-5 *1 (-985))))
-(((*1 *1 *2 *2 *3 *1)
- (-12 (-5 *2 (-1087)) (-5 *3 (-1020)) (-5 *1 (-268)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1101 *4 *5))
- (-4 *4 (-1016)) (-4 *5 (-1016)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1083 *4)) (-4 *4 (-325))
- (-4 *2
- (-13 (-378)
- (-10 -7 (-15 -3976 (*2 *4)) (-15 -4076 ((-852) *2))
- (-15 -2922 ((-1169 *2) (-852))) (-15 -1732 (*2 *2)))))
- (-5 *1 (-332 *2 *4)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *1) (-12 (-4 *1 (-784)) (-5 *2 (-523))))
- ((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-836 *3)) (-4 *3 (-1016))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-989 *4 *3)) (-4 *4 (-13 (-784) (-339)))
- (-4 *3 (-1145 *4)) (-5 *2 (-523))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-515) (-786) (-964 *2) (-585 *2) (-427)))
- (-5 *2 (-523)) (-5 *1 (-1031 *4 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *4)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1087)) (-5 *5 (-779 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *6)))
- (-4 *6 (-13 (-515) (-786) (-964 *2) (-585 *2) (-427)))
- (-5 *2 (-523)) (-5 *1 (-1031 *6 *3))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *4 (-1087)) (-5 *5 (-1070))
- (-4 *6 (-13 (-515) (-786) (-964 *2) (-585 *2) (-427)))
- (-5 *2 (-523)) (-5 *1 (-1031 *6 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *6)))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-427)) (-5 *2 (-523))
- (-5 *1 (-1032 *4))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1087)) (-5 *5 (-779 (-383 (-883 *6))))
- (-5 *3 (-383 (-883 *6))) (-4 *6 (-427)) (-5 *2 (-523))
- (-5 *1 (-1032 *6))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *3 (-383 (-883 *6))) (-5 *4 (-1087))
- (-5 *5 (-1070)) (-4 *6 (-427)) (-5 *2 (-523)) (-5 *1 (-1032 *6))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *2 (-523)) (-5 *1 (-1106 *3)) (-4 *3 (-973)))))
-(((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-60 *3)) (-14 *3 (-1087))))
- ((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-67 *3)) (-14 *3 (-1087))))
- ((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-70 *3)) (-14 *3 (-1087))))
- ((*1 *2 *1) (-12 (-4 *1 (-371)) (-5 *2 (-1174))))
- ((*1 *2 *3) (-12 (-5 *3 (-364)) (-5 *2 (-1174)) (-5 *1 (-373))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1070)) (-5 *4 (-794)) (-5 *2 (-1174)) (-5 *1 (-1050))))
- ((*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1174)) (-5 *1 (-1050))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-794))) (-5 *2 (-1174)) (-5 *1 (-1050)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-325)) (-5 *2 (-394 (-1083 (-1083 *4))))
- (-5 *1 (-1122 *4)) (-5 *3 (-1083 (-1083 *4))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-4 *1 (-55 *4 *5 *2)) (-4 *4 (-1123))
- (-4 *5 (-349 *4)) (-4 *2 (-349 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-4 *1 (-976 *4 *5 *6 *7 *2)) (-4 *6 (-973))
- (-4 *7 (-216 *5 *6)) (-4 *2 (-216 *4 *6)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-355))) (-5 *1 (-966)) (-5 *3 (-355)))))
+ (|partial| -12 (-5 *2 (-591 *3)) (-4 *3 (-1147 *5))
+ (-4 *5 (-1147 *4)) (-4 *4 (-327)) (-5 *1 (-336 *4 *5 *3))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-591 (-1085 (-525)))) (-5 *3 (-1085 (-525)))
+ (-5 *1 (-533))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-591 (-1085 *1))) (-5 *3 (-1085 *1))
+ (-4 *1 (-842)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-314 *5 *6 *7 *8)) (-4 *5 (-408 *4))
+ (-4 *6 (-1147 *5)) (-4 *7 (-1147 (-385 *6)))
+ (-4 *8 (-320 *5 *6 *7)) (-4 *4 (-13 (-788) (-517) (-966 (-525))))
+ (-5 *2 (-2 (|:| -3873 (-712)) (|:| -1245 *8)))
+ (-5 *1 (-844 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-314 (-385 (-525)) *4 *5 *6))
+ (-4 *4 (-1147 (-385 (-525)))) (-4 *5 (-1147 (-385 *4)))
+ (-4 *6 (-320 (-385 (-525)) *4 *5))
+ (-5 *2 (-2 (|:| -3873 (-712)) (|:| -1245 *6)))
+ (-5 *1 (-845 *4 *5 *6)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-429))
+ (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-908 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4 *5 *3 *6 *3)
+ (-12 (-5 *3 (-525)) (-5 *5 (-157 (-205))) (-5 *6 (-1072))
+ (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4))
+ (-4 *3 (-345 *4))))
+ ((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))))
+(((*1 *1 *1) (-4 *1 (-119))) ((*1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *1) (-4 *1 (-899))) ((*1 *1 *1) (-5 *1 (-1036))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525)))))
+ (-4 *5 (-1147 *4))
+ (-5 *2 (-591 (-2 (|:| |deg| (-712)) (|:| -1317 *5))))
+ (-5 *1 (-750 *4 *5 *3 *6)) (-4 *3 (-601 *5))
+ (-4 *6 (-601 (-385 *5))))))
+(((*1 *2 *2 *2) (-12 (-5 *1 (-148 *2)) (-4 *2 (-510)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850))))
+ ((*1 *2) (-12 (-5 *2 (-837 (-525))) (-5 *1 (-850)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-710)) (-5 *1 (-792 *2)) (-4 *2 (-158)))))
-(((*1 *1 *1) (-4 *1 (-575)))
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-697)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-135))))
+ ((*1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-135)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-760 *4)) (-4 *4 (-788)) (-5 *2 (-108))
+ (-5 *1 (-616 *4)))))
+(((*1 *2)
+ (-12 (-5 *2 (-854)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525)))))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-576 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930) (-1109))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-3 (|:| |fst| (-410)) (|:| -3164 "void")))
- (-5 *1 (-413)))))
+ (-12 (-5 *2 (-854)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-523)) (|has| *1 (-6 -4239)) (-4 *1 (-380))
- (-5 *2 (-852)))))
-(((*1 *1 *1) (-12 (-4 *1 (-222 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-589 (-157))))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-905 *3 *4 *2 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *2 (-786)) (-4 *5 (-987 *3 *4 *2)))))
-(((*1 *2 *1) (-12 (-4 *1 (-479 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-786)))))
-(((*1 *2 *1 *3 *4 *4 *5)
- (-12 (-5 *3 (-874 (-203))) (-5 *4 (-805)) (-5 *5 (-852))
- (-5 *2 (-1174)) (-5 *1 (-443))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-874 (-203))) (-5 *2 (-1174)) (-5 *1 (-443))))
- ((*1 *2 *1 *3 *4 *4 *5)
- (-12 (-5 *3 (-589 (-874 (-203)))) (-5 *4 (-805)) (-5 *5 (-852))
- (-5 *2 (-1174)) (-5 *1 (-443)))))
+ (-12 (-4 *4 (-351 *2)) (-4 *5 (-351 *2)) (-4 *2 (-341))
+ (-5 *1 (-492 *2 *4 *5 *3)) (-4 *3 (-629 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *3 (-351 *2)) (-4 *4 (-351 *2))
+ (|has| *2 (-6 (-4252 "*"))) (-4 *2 (-975))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-351 *2)) (-4 *5 (-351 *2)) (-4 *2 (-160))
+ (-5 *1 (-630 *2 *4 *5 *3)) (-4 *3 (-629 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1039 *3 *2 *4 *5)) (-4 *4 (-218 *3 *2))
+ (-4 *5 (-218 *3 *2)) (|has| *2 (-6 (-4252 "*"))) (-4 *2 (-975)))))
+(((*1 *2 *1) (-12 (-4 *1 (-940 *3)) (-4 *3 (-1125)) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1112 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-501))) (-5 *1 (-501)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-372)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1094)) (-5 *1 (-48)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-515))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 (-1180 *4 *5 *6 *7)))
- (-5 *1 (-1180 *4 *5 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-589 *9)) (-5 *4 (-1 (-108) *9 *9))
- (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-987 *6 *7 *8)) (-4 *6 (-515))
- (-4 *7 (-732)) (-4 *8 (-786)) (-5 *2 (-589 (-1180 *6 *7 *8 *9)))
- (-5 *1 (-1180 *6 *7 *8 *9)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-367)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-895))) (-5 *1 (-104)))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-38 *3)) (-4 *3 (-1147 (-47))))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-372))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1106)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2))
+ (-4 *4 (-351 *2)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523)))))))
- (-5 *2 (-589 *4)) (-5 *1 (-1042 *3 *4)) (-4 *3 (-1145 *4))))
- ((*1 *2 *3 *3 *3)
- (-12 (-4 *3 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523)))))))
- (-5 *2 (-589 *3)) (-5 *1 (-1042 *4 *3)) (-4 *4 (-1145 *3)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-523)) (-4 *1 (-1129 *4)) (-4 *4 (-973)) (-4 *4 (-515))
- (-5 *2 (-383 (-883 *4)))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-4 *1 (-1129 *4)) (-4 *4 (-973)) (-4 *4 (-515))
- (-5 *2 (-383 (-883 *4))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-108)) (-5 *5 (-629 (-203)))
- (-5 *2 (-962)) (-5 *1 (-695)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *1)) (-4 *1 (-427))))
- ((*1 *1 *1 *1) (-4 *1 (-427))))
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-591 (-631 (-525))))
+ (-5 *1 (-1028)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-4 *1 (-1147 *3)) (-4 *3 (-975)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-788))
+ (-5 *2
+ (-2 (|:| |f1| (-591 *4)) (|:| |f2| (-591 (-591 (-591 *4))))
+ (|:| |f3| (-591 (-591 *4))) (|:| |f4| (-591 (-591 (-591 *4))))))
+ (-5 *1 (-1097 *4)) (-5 *3 (-591 (-591 (-591 *4)))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-108)))))
+ (-12 (-5 *2 (-806 (-898 *3) (-898 *3))) (-5 *1 (-898 *3))
+ (-4 *3 (-899)))))
+(((*1 *1 *2) (-12 (-5 *2 (-854)) (-4 *1 (-346))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-854)) (-5 *2 (-1171 *4)) (-5 *1 (-495 *4))
+ (-4 *4 (-327))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-788)) (-5 *1 (-655 *2 *3 *4)) (-4 *3 (-1018))
+ (-14 *4
+ (-1 (-108) (-2 (|:| -2226 *2) (|:| -2008 *3))
+ (-2 (|:| -2226 *2) (|:| -2008 *3)))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-712)) (-5 *1 (-724 *2)) (-4 *2 (-37 (-385 (-525))))
+ (-4 *2 (-160)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *5)) (-5 *4 (-852)) (-4 *5 (-786))
- (-5 *2 (-589 (-614 *5))) (-5 *1 (-614 *5)))))
-(((*1 *2)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-629 (-383 *4))))))
+ (-12 (-5 *4 (-591 (-591 *8))) (-5 *3 (-591 *8))
+ (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-5 *2 (-108)) (-5 *1 (-908 *5 *6 *7 *8)))))
+(((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-973)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5))
+ (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-1182 *3 *4 *5 *6))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-591 *8)) (-5 *3 (-1 (-108) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-989 *5 *6 *7)) (-4 *5 (-517))
+ (-4 *6 (-734)) (-4 *7 (-788)) (-5 *1 (-1182 *5 *6 *7 *8)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1147 *5))
+ (-5 *1 (-669 *5 *2)) (-4 *5 (-341)))))
+(((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-5 *2 (-712)) (-5 *1 (-42 *4 *3))
+ (-4 *3 (-395 *4)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515))
- (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-710)) (-5 *6 (-108)) (-4 *7 (-427)) (-4 *8 (-732))
- (-4 *9 (-786)) (-4 *3 (-987 *7 *8 *9))
- (-5 *2
- (-2 (|:| |done| (-589 *4))
- (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4))))))
- (-5 *1 (-990 *7 *8 *9 *3 *4)) (-4 *4 (-992 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-710)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786))
- (-4 *3 (-987 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-589 *4))
- (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4))))))
- (-5 *1 (-990 *6 *7 *8 *3 *4)) (-4 *4 (-992 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-589 *4))
- (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4))))))
- (-5 *1 (-990 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-710)) (-5 *6 (-108)) (-4 *7 (-427)) (-4 *8 (-732))
- (-4 *9 (-786)) (-4 *3 (-987 *7 *8 *9))
- (-5 *2
- (-2 (|:| |done| (-589 *4))
- (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4))))))
- (-5 *1 (-1057 *7 *8 *9 *3 *4)) (-4 *4 (-1025 *7 *8 *9 *3))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1163 *2 *3 *4)) (-4 *2 (-975)) (-14 *3 (-1089))
+ (-14 *4 *2))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1018))
+ (-4 *4 (-13 (-975) (-819 *3) (-788) (-566 (-825 *3))))
+ (-5 *2 (-591 (-1089))) (-5 *1 (-997 *3 *4 *5))
+ (-4 *5 (-13 (-408 *4) (-819 *3) (-566 (-825 *3)))))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 (-135))) (-5 *1 (-132))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-132)))))
+(((*1 *1 *1) (-12 (-5 *1 (-473 *2)) (-14 *2 (-525))))
+ ((*1 *1 *1) (-5 *1 (-1036))))
+(((*1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-975)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-429)) (-4 *3 (-734)) (-4 *5 (-788)) (-5 *2 (-108))
+ (-5 *1 (-426 *4 *3 *5 *6)) (-4 *6 (-882 *4 *3 *5)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-110)))))
+(((*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3)
+ (-12 (-5 *4 (-631 (-205))) (-5 *5 (-631 (-525))) (-5 *6 (-205))
+ (-5 *3 (-525)) (-5 *2 (-964)) (-5 *1 (-693)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2))
+ (-4 *4 (-351 *2)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-882 *4 *5 *6)) (-4 *4 (-341))
+ (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-5 *1 (-427 *4 *5 *6 *2))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-710)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786))
- (-4 *3 (-987 *6 *7 *8))
+ (-12 (-5 *4 (-94 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-341))
(-5 *2
- (-2 (|:| |done| (-589 *4))
- (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4))))))
- (-5 *1 (-1057 *6 *7 *8 *3 *4)) (-4 *4 (-1025 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-589 *4))
- (|:| |todo| (-589 (-2 (|:| |val| (-589 *3)) (|:| -2394 *4))))))
- (-5 *1 (-1057 *5 *6 *7 *3 *4)) (-4 *4 (-1025 *5 *6 *7 *3)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-14 *4 (-589 (-1087))) (-4 *2 (-158))
- (-4 *3 (-216 (-1271 *4) (-710)))
- (-14 *6
- (-1 (-108) (-2 (|:| -2557 *5) (|:| -3262 *3))
- (-2 (|:| -2557 *5) (|:| -3262 *3))))
- (-5 *1 (-436 *4 *2 *5 *3 *6 *7)) (-4 *5 (-786))
- (-4 *7 (-880 *2 *3 (-796 *4))))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-427)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-589 (-1011 (-355)))) (-5 *3 (-589 (-240)))
- (-5 *1 (-238))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 (-1011 (-355)))) (-5 *1 (-240))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-589 (-1011 (-355)))) (-5 *1 (-443))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 (-1011 (-355)))) (-5 *1 (-443)))))
-(((*1 *2 *3) (-12 (-5 *3 (-364)) (-5 *2 (-1174)) (-5 *1 (-367))))
- ((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-367)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-710)) (-5 *1 (-42 *4 *3))
- (-4 *3 (-393 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794))))
- ((*1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-4 *1 (-1014 *3))))
- ((*1 *1) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-852)) (-5 *2 (-443)) (-5 *1 (-1170)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-852)) (-5 *1 (-959 *2))
- (-4 *2 (-13 (-1016) (-10 -8 (-15 * ($ $ $))))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-157)))))
-(((*1 *2 *3) (-12 (-5 *3 (-51)) (-5 *1 (-50 *2)) (-4 *2 (-1123))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-883 (-355))) (-5 *1 (-315 *3 *4 *5))
- (-4 *5 (-964 (-355))) (-14 *3 (-589 (-1087)))
- (-14 *4 (-589 (-1087))) (-4 *5 (-363))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-383 (-883 (-355)))) (-5 *1 (-315 *3 *4 *5))
- (-4 *5 (-964 (-355))) (-14 *3 (-589 (-1087)))
- (-14 *4 (-589 (-1087))) (-4 *5 (-363))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-292 (-355))) (-5 *1 (-315 *3 *4 *5))
- (-4 *5 (-964 (-355))) (-14 *3 (-589 (-1087)))
- (-14 *4 (-589 (-1087))) (-4 *5 (-363))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-883 (-523))) (-5 *1 (-315 *3 *4 *5))
- (-4 *5 (-964 (-523))) (-14 *3 (-589 (-1087)))
- (-14 *4 (-589 (-1087))) (-4 *5 (-363))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-383 (-883 (-523)))) (-5 *1 (-315 *3 *4 *5))
- (-4 *5 (-964 (-523))) (-14 *3 (-589 (-1087)))
- (-14 *4 (-589 (-1087))) (-4 *5 (-363))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-292 (-523))) (-5 *1 (-315 *3 *4 *5))
- (-4 *5 (-964 (-523))) (-14 *3 (-589 (-1087)))
- (-14 *4 (-589 (-1087))) (-4 *5 (-363))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1087)) (-5 *1 (-315 *3 *4 *5)) (-14 *3 (-589 *2))
- (-14 *4 (-589 *2)) (-4 *5 (-363))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-292 *5)) (-4 *5 (-363)) (-5 *1 (-315 *3 *4 *5))
- (-14 *3 (-589 (-1087))) (-14 *4 (-589 (-1087)))))
- ((*1 *1 *2) (-12 (-5 *2 (-629 (-383 (-883 (-523))))) (-4 *1 (-360))))
- ((*1 *1 *2) (-12 (-5 *2 (-629 (-383 (-883 (-355))))) (-4 *1 (-360))))
- ((*1 *1 *2) (-12 (-5 *2 (-629 (-883 (-523)))) (-4 *1 (-360))))
- ((*1 *1 *2) (-12 (-5 *2 (-629 (-883 (-355)))) (-4 *1 (-360))))
- ((*1 *1 *2) (-12 (-5 *2 (-629 (-292 (-523)))) (-4 *1 (-360))))
- ((*1 *1 *2) (-12 (-5 *2 (-629 (-292 (-355)))) (-4 *1 (-360))))
- ((*1 *1 *2) (-12 (-5 *2 (-383 (-883 (-523)))) (-4 *1 (-372))))
- ((*1 *1 *2) (-12 (-5 *2 (-383 (-883 (-355)))) (-4 *1 (-372))))
- ((*1 *1 *2) (-12 (-5 *2 (-883 (-523))) (-4 *1 (-372))))
- ((*1 *1 *2) (-12 (-5 *2 (-883 (-355))) (-4 *1 (-372))))
- ((*1 *1 *2) (-12 (-5 *2 (-292 (-523))) (-4 *1 (-372))))
- ((*1 *1 *2) (-12 (-5 *2 (-292 (-355))) (-4 *1 (-372))))
- ((*1 *1 *2) (-12 (-5 *2 (-1169 (-383 (-883 (-523))))) (-4 *1 (-416))))
- ((*1 *1 *2) (-12 (-5 *2 (-1169 (-383 (-883 (-355))))) (-4 *1 (-416))))
- ((*1 *1 *2) (-12 (-5 *2 (-1169 (-883 (-523)))) (-4 *1 (-416))))
- ((*1 *1 *2) (-12 (-5 *2 (-1169 (-883 (-355)))) (-4 *1 (-416))))
- ((*1 *1 *2) (-12 (-5 *2 (-1169 (-292 (-523)))) (-4 *1 (-416))))
- ((*1 *1 *2) (-12 (-5 *2 (-1169 (-292 (-355)))) (-4 *1 (-416))))
+ (-2 (|:| R (-631 *6)) (|:| A (-631 *6)) (|:| |Ainv| (-631 *6))))
+ (-5 *1 (-909 *6)) (-5 *3 (-631 *6)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-517)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *2 (-591 *1)) (-4 *1 (-989 *3 *4 *5)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-341)) (-5 *2 (-591 *3)) (-5 *1 (-878 *4 *3))
+ (-4 *3 (-1147 *4)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1144 *4 *5)) (-5 *3 (-591 *5)) (-14 *4 (-1089))
+ (-4 *5 (-341)) (-5 *1 (-856 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-591 *5)) (-4 *5 (-341)) (-5 *2 (-1085 *5))
+ (-5 *1 (-856 *4 *5)) (-14 *4 (-1089))))
+ ((*1 *2 *3 *3 *4 *4)
+ (-12 (-5 *3 (-591 *6)) (-5 *4 (-712)) (-4 *6 (-341))
+ (-5 *2 (-385 (-885 *6))) (-5 *1 (-976 *5 *6)) (-14 *5 (-1089)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-46 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733))
+ (-5 *2 (-108))))
((*1 *2 *1)
- (-12
- (-5 *2
- (-3
- (|:| |nia|
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (|:| |mdnia|
- (-2 (|:| |fn| (-292 (-203)))
- (|:| -3487 (-589 (-1011 (-779 (-203)))))
- (|:| |abserr| (-203)) (|:| |relerr| (-203))))))
- (-5 *1 (-708))))
+ (-12 (-4 *1 (-360 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1018))
+ (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-550 *3)) (-4 *3 (-975))))
((*1 *2 *1)
- (-12
- (-5 *2
- (-2 (|:| |xinit| (-203)) (|:| |xend| (-203))
- (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203)))
- (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203)))
- (|:| |abserr| (-203)) (|:| |relerr| (-203))))
- (-5 *1 (-747))))
+ (-12 (-4 *3 (-517)) (-5 *2 (-108)) (-5 *1 (-572 *3 *4))
+ (-4 *4 (-1147 *3))))
((*1 *2 *1)
- (-12
- (-5 *2
- (-3
- (|:| |noa|
- (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203)))
- (|:| |lb| (-589 (-779 (-203))))
- (|:| |cf| (-589 (-292 (-203))))
- (|:| |ub| (-589 (-779 (-203))))))
- (|:| |lsa|
- (-2 (|:| |lfn| (-589 (-292 (-203))))
- (|:| -4105 (-589 (-203)))))))
- (-5 *1 (-777))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-677 *3 *4)) (-4 *3 (-975))
+ (-4 *4 (-668))))
((*1 *2 *1)
- (-12
- (-5 *2
- (-2 (|:| |pde| (-589 (-292 (-203))))
- (|:| |constraints|
- (-589
- (-2 (|:| |start| (-203)) (|:| |finish| (-203))
- (|:| |grid| (-710)) (|:| |boundaryType| (-523))
- (|:| |dStart| (-629 (-203))) (|:| |dFinish| (-629 (-203))))))
- (|:| |f| (-589 (-589 (-292 (-203))))) (|:| |st| (-1070))
- (|:| |tol| (-203))))
- (-5 *1 (-829))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-973))
- (-4 *4 (-732)) (-4 *5 (-786)) (-4 *1 (-905 *3 *4 *5 *6))))
- ((*1 *2 *1) (-12 (-4 *1 (-964 *2)) (-4 *2 (-1123))))
- ((*1 *1 *2)
- (-3255
- (-12 (-5 *2 (-883 *3))
- (-12 (-2575 (-4 *3 (-37 (-383 (-523)))))
- (-2575 (-4 *3 (-37 (-523)))) (-4 *5 (-564 (-1087))))
- (-4 *3 (-973)) (-4 *1 (-987 *3 *4 *5)) (-4 *4 (-732))
- (-4 *5 (-786)))
- (-12 (-5 *2 (-883 *3))
- (-12 (-2575 (-4 *3 (-508))) (-2575 (-4 *3 (-37 (-383 (-523)))))
- (-4 *3 (-37 (-523))) (-4 *5 (-564 (-1087))))
- (-4 *3 (-973)) (-4 *1 (-987 *3 *4 *5)) (-4 *4 (-732))
- (-4 *5 (-786)))
- (-12 (-5 *2 (-883 *3))
- (-12 (-2575 (-4 *3 (-921 (-523)))) (-4 *3 (-37 (-383 (-523))))
- (-4 *5 (-564 (-1087))))
- (-4 *3 (-973)) (-4 *1 (-987 *3 *4 *5)) (-4 *4 (-732))
- (-4 *5 (-786)))))
- ((*1 *1 *2)
- (-3255
- (-12 (-5 *2 (-883 (-523))) (-4 *1 (-987 *3 *4 *5))
- (-12 (-2575 (-4 *3 (-37 (-383 (-523))))) (-4 *3 (-37 (-523)))
- (-4 *5 (-564 (-1087))))
- (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)))
- (-12 (-5 *2 (-883 (-523))) (-4 *1 (-987 *3 *4 *5))
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *5 (-564 (-1087))))
- (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-883 (-383 (-523)))) (-4 *1 (-987 *3 *4 *5))
- (-4 *3 (-37 (-383 (-523)))) (-4 *5 (-564 (-1087))) (-4 *3 (-973))
- (-4 *4 (-732)) (-4 *5 (-786)))))
+ (-12 (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975))
+ (-5 *2 (-108)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-473 *2)) (-14 *2 (-525))))
+ ((*1 *1 *1 *1) (-5 *1 (-1036))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-1036)) (-5 *1 (-105)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-631 *5))) (-4 *5 (-286)) (-4 *5 (-975))
+ (-5 *2 (-1171 (-1171 *5))) (-5 *1 (-958 *5)) (-5 *4 (-1171 *5)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1089))
+ (-5 *2 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-5 *1 (-1092)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12
+ (-5 *3
+ (-1 (-3 (-2 (|:| -3060 *4) (|:| |coeff| *4)) "failed") *4))
+ (-4 *4 (-341)) (-5 *1 (-535 *4 *2)) (-4 *2 (-1147 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-281)) (-5 *2 (-591 (-110))))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
+ (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-286)) (-5 *2 (-396 *3))
+ (-5 *1 (-684 *4 *5 *6 *3)) (-4 *3 (-882 *6 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-457 *4 *5))) (-14 *4 (-591 (-1089)))
+ (-4 *5 (-429))
(-5 *2
- (-3 (|:| |continuous| "Continuous at the end points")
- (|:| |lowerSingular|
- "There is a singularity at the lower end point")
- (|:| |upperSingular|
- "There is a singularity at the upper end point")
- (|:| |bothSingular| "There are singularities at both end points")
- (|:| |notEvaluated| "End point continuity not yet evaluated")))
- (-5 *1 (-172)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-427) (-136))) (-5 *2 (-394 *3))
- (-5 *1 (-95 *4 *3)) (-4 *3 (-1145 *4))))
+ (-2 (|:| |gblist| (-591 (-227 *4 *5)))
+ (|:| |gvlist| (-591 (-525)))))
+ (-5 *1 (-579 *4 *5)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-473 *2)) (-14 *2 (-525))))
+ ((*1 *1 *1 *1) (-5 *1 (-1036))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-765)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-632 *3)))))
+(((*1 *1 *2 *2) (-12 (-4 *1 (-515 *2)) (-4 *2 (-13 (-382) (-1111))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-712)) (-4 *4 (-341)) (-5 *1 (-829 *2 *4))
+ (-4 *2 (-1147 *4)))))
+(((*1 *2 *3 *3 *4 *5 *3 *6)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-79 FCN)))) (-5 *2 (-964))
+ (-5 *1 (-688)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-517) (-788) (-966 (-525)))) (-5 *1 (-170 *3 *2))
+ (-4 *2 (-13 (-27) (-1111) (-408 (-157 *3))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *3))))))
+(((*1 *2 *3) (-12 (-5 *3 (-796)) (-5 *2 (-1176)) (-5 *1 (-1052))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-796))) (-5 *2 (-1176)) (-5 *1 (-1052)))))
+(((*1 *1 *1) (-12 (-5 *1 (-273 *2)) (-4 *2 (-21)) (-4 *2 (-1125)))))
+(((*1 *1 *2 *2) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160)))))
+(((*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))))
+(((*1 *2 *2 *3)
+ (|partial| -12
+ (-5 *3 (-591 (-2 (|:| |func| *2) (|:| |pole| (-108)))))
+ (-4 *2 (-13 (-408 *4) (-932))) (-4 *4 (-13 (-788) (-517)))
+ (-5 *1 (-255 *4 *2)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-138)) (-4 *2 (-286)) (-4 *2 (-429)) (-4 *3 (-788))
+ (-4 *4 (-734)) (-5 *1 (-918 *2 *3 *4 *5)) (-4 *5 (-882 *2 *4 *3))))
+ ((*1 *2 *3) (-12 (-5 *3 (-47)) (-5 *2 (-294 (-525))) (-5 *1 (-1035))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-108)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788))
+ (-4 *3 (-989 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-591 *4))
+ (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4))))))
+ (-5 *1 (-992 *6 *7 *8 *3 *4)) (-4 *4 (-994 *6 *7 *8 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 *3)) (-4 *3 (-1145 *5)) (-4 *5 (-13 (-427) (-136)))
- (-5 *2 (-394 *3)) (-5 *1 (-95 *5 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-589 (-995 *4 *5 *2))) (-4 *4 (-1016))
- (-4 *5 (-13 (-973) (-817 *4) (-786) (-564 (-823 *4))))
- (-4 *2 (-13 (-406 *5) (-817 *4) (-564 (-823 *4))))
- (-5 *1 (-53 *4 *5 *2))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-589 (-995 *5 *6 *2))) (-5 *4 (-852)) (-4 *5 (-1016))
- (-4 *6 (-13 (-973) (-817 *5) (-786) (-564 (-823 *5))))
- (-4 *2 (-13 (-406 *6) (-817 *5) (-564 (-823 *5))))
- (-5 *1 (-53 *5 *6 *2)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-851)) (-5 *2 (-2 (|:| -2275 (-589 *1)) (|:| -4102 *1)))
- (-5 *3 (-589 *1)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1169 *4)) (-4 *4 (-585 (-523)))
- (-5 *2 (-1169 (-523))) (-5 *1 (-1194 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-333 *3)) (-4 *3 (-325)))))
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-591 *4))
+ (|:| |todo| (-591 (-2 (|:| |val| (-591 *3)) (|:| -3374 *4))))))
+ (-5 *1 (-1059 *5 *6 *7 *3 *4)) (-4 *4 (-1027 *5 *6 *7 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-427)) (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786))
- (-5 *2 (-589 *3)) (-5 *1 (-906 *4 *5 *6 *3))
- (-4 *3 (-987 *4 *5 *6)))))
-(((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1087)) (-5 *1 (-617 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852))
- (-4 *4 (-973)))))
+ (|partial| -12 (-5 *3 (-854))
+ (-5 *2 (-1171 (-591 (-2 (|:| -3024 *4) (|:| -2226 (-1036))))))
+ (-5 *1 (-324 *4)) (-4 *4 (-327)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *2 (-385 (-525))) (-5 *1 (-113 *4)) (-14 *4 *3)
+ (-5 *3 (-525))))
+ ((*1 *2 *1 *2) (-12 (-4 *1 (-802 *3)) (-5 *2 (-525))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *2 (-385 (-525))) (-5 *1 (-804 *4)) (-14 *4 *3)
+ (-5 *3 (-525))))
+ ((*1 *2 *1 *3)
+ (-12 (-14 *4 *3) (-5 *2 (-385 (-525))) (-5 *1 (-805 *4 *5))
+ (-5 *3 (-525)) (-4 *5 (-802 *4))))
+ ((*1 *2 *1 *1) (-12 (-4 *1 (-942)) (-5 *2 (-385 (-525)))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-4 *1 (-991 *2 *3)) (-4 *2 (-13 (-786) (-341)))
+ (-4 *3 (-1147 *2))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-1149 *2 *3)) (-4 *3 (-733))
+ (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3022 (*2 (-1089))))
+ (-4 *2 (-975)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-629 *5))) (-4 *5 (-284)) (-4 *5 (-973))
- (-5 *2 (-1169 (-1169 *5))) (-5 *1 (-956 *5)) (-5 *4 (-1169 *5)))))
-(((*1 *1 *1) (-5 *1 (-794)))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1019 *2 *3 *4 *5 *6)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *2 (-1016))))
- ((*1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-1069))))
- ((*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-1087)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-339)) (-5 *1 (-952 *3 *2)) (-4 *2 (-599 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-339)) (-5 *2 (-2 (|:| -1747 *3) (|:| -3362 (-589 *5))))
- (-5 *1 (-952 *5 *3)) (-5 *4 (-589 *5)) (-4 *3 (-599 *5)))))
+ (-12 (-5 *4 (-525)) (-4 *5 (-327)) (-5 *2 (-396 (-1085 (-1085 *5))))
+ (-5 *1 (-1124 *5)) (-5 *3 (-1085 (-1085 *5))))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-341)) (-5 *1 (-708 *2 *3)) (-4 *2 (-650 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-712))
+ (-4 *3 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $)))))
+ (-4 *4 (-1147 *3)) (-5 *1 (-472 *3 *4 *5)) (-4 *5 (-387 *3 *4)))))
+(((*1 *1) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1022)) (-5 *1 (-1093)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1018)) (-5 *1 (-89 *3)))))
+(((*1 *1 *2 *2)
+ (-12 (-5 *2 (-712)) (-4 *3 (-975)) (-4 *1 (-629 *3 *4 *5))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-712)) (-4 *1 (-1169 *3)) (-4 *3 (-23)) (-4 *3 (-1125)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5)) (-4 *5 (-1016)) (-5 *2 (-1 *5 *4))
- (-5 *1 (-623 *4 *5)) (-4 *4 (-1016))))
+ (-12 (-5 *2 (-1085 (-525))) (-5 *1 (-875)) (-5 *3 (-525))))
((*1 *2 *2)
- (-12 (-4 *3 (-786)) (-5 *1 (-860 *3 *2)) (-4 *2 (-406 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1087)) (-5 *2 (-292 (-523))) (-5 *1 (-861))))
- ((*1 *2 *1) (-12 (-4 *1 (-1184 *3 *2)) (-4 *3 (-786)) (-4 *2 (-973))))
- ((*1 *2 *1) (-12 (-4 *2 (-973)) (-5 *1 (-1190 *2 *3)) (-4 *3 (-782)))))
-(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5)
- (-12 (-5 *3 (-203)) (-5 *4 (-523))
- (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G)))) (-5 *2 (-962))
- (-5 *1 (-688)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-678)))))
+ (-12 (-4 *3 (-286)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3))
+ (-5 *1 (-1040 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5)))))
(((*1 *2 *1 *1)
- (-12 (-5 *2 (-589 (-271 *4))) (-5 *1 (-573 *3 *4 *5)) (-4 *3 (-786))
- (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-14 *5 (-852)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-836 *4)) (-4 *4 (-1016)) (-5 *2 (-589 (-710)))
- (-5 *1 (-835 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-515) (-786)))
- (-4 *2 (-13 (-406 *4) (-930) (-1109))) (-5 *1 (-552 *4 *2 *3))
- (-4 *3 (-13 (-406 (-155 *4)) (-930) (-1109))))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2210 *3) (|:| |coef1| (-721 *3))))
- (-5 *1 (-721 *3)) (-4 *3 (-515)) (-4 *3 (-973)))))
+ (-12 (-4 *1 (-1169 *3)) (-4 *3 (-1125)) (-4 *3 (-975))
+ (-5 *2 (-631 *3)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 (-108) *7 (-591 *7))) (-4 *1 (-1119 *4 *5 *6 *7))
+ (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-989 *4 *5 *6))
+ (-5 *2 (-108)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-286))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-424 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-591 *7)) (-5 *3 (-1072)) (-4 *7 (-882 *4 *5 *6))
+ (-4 *4 (-286)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-5 *1 (-424 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-591 *7)) (-5 *3 (-1072)) (-4 *7 (-882 *4 *5 *6))
+ (-4 *4 (-286)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-5 *1 (-424 *4 *5 *6 *7)))))
(((*1 *2)
- (-12 (-4 *3 (-13 (-786) (-515) (-964 (-523)))) (-5 *2 (-1174))
- (-5 *1 (-409 *3 *4)) (-4 *4 (-406 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 (-2 (|:| -2402 (-1087)) (|:| -2746 (-413)))))
- (-5 *1 (-1091)))))
+ (-12 (-4 *4 (-341)) (-5 *2 (-854)) (-5 *1 (-306 *3 *4))
+ (-4 *3 (-307 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-341)) (-5 *2 (-774 (-854))) (-5 *1 (-306 *3 *4))
+ (-4 *3 (-307 *4))))
+ ((*1 *2) (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-5 *2 (-854))))
+ ((*1 *2)
+ (-12 (-4 *1 (-1188 *3)) (-4 *3 (-341)) (-5 *2 (-774 (-854))))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-341)) (-4 *3 (-975))
+ (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-790 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-94 *5)) (-4 *5 (-341)) (-4 *5 (-975))
+ (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-791 *5 *3))
+ (-4 *3 (-790 *5)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-1013 *3)) (-4 *3 (-882 *7 *6 *4)) (-4 *6 (-734))
+ (-4 *4 (-788)) (-4 *7 (-517))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-525))))
+ (-5 *1 (-549 *6 *4 *7 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-734)) (-4 *4 (-788)) (-4 *6 (-517))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-525))))
+ (-5 *1 (-549 *5 *4 *6 *3)) (-4 *3 (-882 *6 *5 *4))))
+ ((*1 *1 *1 *1 *1) (-5 *1 (-796))) ((*1 *1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *1) (-5 *1 (-796)))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-1081 *4 *2)) (-4 *2 (-13 (-408 *4) (-149) (-27) (-1111)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1011 *2)) (-4 *2 (-13 (-408 *4) (-149) (-27) (-1111)))
+ (-4 *4 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-1081 *4 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1089)) (-4 *5 (-13 (-517) (-788) (-966 (-525))))
+ (-5 *2 (-385 (-885 *5))) (-5 *1 (-1082 *5)) (-5 *3 (-885 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1089)) (-4 *5 (-13 (-517) (-788) (-966 (-525))))
+ (-5 *2 (-3 (-385 (-885 *5)) (-294 *5))) (-5 *1 (-1082 *5))
+ (-5 *3 (-385 (-885 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1011 (-885 *5))) (-5 *3 (-885 *5))
+ (-4 *5 (-13 (-517) (-788) (-966 (-525)))) (-5 *2 (-385 *3))
+ (-5 *1 (-1082 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1011 (-385 (-885 *5)))) (-5 *3 (-385 (-885 *5)))
+ (-4 *5 (-13 (-517) (-788) (-966 (-525)))) (-5 *2 (-3 *3 (-294 *5)))
+ (-5 *1 (-1082 *5)))))
+(((*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-108))
+ (-5 *6 (-205)) (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-66 APROD))))
+ (-5 *8 (-3 (|:| |fn| (-366)) (|:| |fp| (-71 MSOLVE))))
+ (-5 *2 (-964)) (-5 *1 (-698)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-25)) (-4 *3 (-786)) (-5 *2 (-589 *1))
- (-4 *1 (-406 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-589 (-823 *3))) (-5 *1 (-823 *3))
- (-4 *3 (-1016))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *2 (-589 *1)) (-4 *1 (-880 *3 *4 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-973))
- (-4 *7 (-880 *6 *4 *5)) (-5 *2 (-589 *3))
- (-5 *1 (-881 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-339)
- (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $))
- (-15 -2171 (*7 $))))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))))
-(((*1 *1) (-5 *1 (-413))))
+ (-12 (-4 *3 (-1018)) (-4 *4 (-13 (-975) (-819 *3) (-788) (-566 *2)))
+ (-5 *2 (-825 *3)) (-5 *1 (-997 *3 *4 *5))
+ (-4 *5 (-13 (-408 *4) (-819 *3) (-566 *2))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *1 *1 *1) (|partial| -4 *1 (-126))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-3 (-108) "failed")) (-4 *3 (-429)) (-4 *4 (-788))
+ (-4 *5 (-734)) (-5 *1 (-918 *3 *4 *5 *6)) (-4 *6 (-882 *3 *5 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-414)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-919 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *2 (-108))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-1025 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-108)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-689)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-710)) (-5 *1 (-42 *4 *3))
- (-4 *3 (-393 *4)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-383 (-1083 (-292 *3)))) (-4 *3 (-13 (-515) (-786)))
- (-5 *1 (-1044 *3)))))
+ (-12 (-5 *2 (-1 (-205) (-205))) (-5 *1 (-296)) (-5 *3 (-205)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 *2)) (-5 *1 (-164 *2)) (-4 *2 (-284))))
- ((*1 *2 *3 *2)
- (-12 (-5 *3 (-589 (-589 *4))) (-5 *2 (-589 *4)) (-4 *4 (-284))
- (-5 *1 (-164 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-589 *8))
- (-5 *4
- (-589
- (-2 (|:| -2922 (-629 *7)) (|:| |basisDen| *7)
- (|:| |basisInv| (-629 *7)))))
- (-5 *5 (-710)) (-4 *8 (-1145 *7)) (-4 *7 (-1145 *6)) (-4 *6 (-325))
- (-5 *2
- (-2 (|:| -2922 (-629 *7)) (|:| |basisDen| *7)
- (|:| |basisInv| (-629 *7))))
- (-5 *1 (-469 *6 *7 *8))))
- ((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *5 (-710)) (-4 *6 (-1016)) (-4 *7 (-831 *6))
- (-5 *2 (-629 *7)) (-5 *1 (-631 *6 *7 *3 *4)) (-4 *3 (-349 *7))
- (-4 *4 (-13 (-349 *6) (-10 -7 (-6 -4248)))))))
-(((*1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-144)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1052 *2 *3)) (-4 *2 (-13 (-1016) (-33)))
- (-4 *3 (-13 (-1016) (-33))))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-5 *1 (-89 *3)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-337 (-110))) (-4 *2 (-973)) (-5 *1 (-654 *2 *4))
- (-4 *4 (-591 *2))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-337 (-110))) (-5 *1 (-773 *2)) (-4 *2 (-973)))))
+ (-12 (-4 *4 (-517))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1399 *3)))
+ (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4)))
- (-5 *2 (-2 (|:| |num| (-1169 *4)) (|:| |den| *4))))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-852)) (-5 *4 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170)))))
-(((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-742)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-630 *3)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-589 *6)) (-4 *6 (-786)) (-4 *4 (-339)) (-4 *5 (-732))
- (-5 *2
- (-2 (|:| |mval| (-629 *4)) (|:| |invmval| (-629 *4))
- (|:| |genIdeal| (-475 *4 *5 *6 *7))))
- (-5 *1 (-475 *4 *5 *6 *7)) (-4 *7 (-880 *4 *5 *6)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2)) (-4 *2 (-1123)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169 (-1087))) (-5 *3 (-1169 (-428 *4 *5 *6 *7)))
- (-5 *1 (-428 *4 *5 *6 *7)) (-4 *4 (-158)) (-14 *5 (-852))
- (-14 *6 (-589 (-1087))) (-14 *7 (-1169 (-629 *4)))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-428 *4 *5 *6 *7)))
- (-5 *1 (-428 *4 *5 *6 *7)) (-4 *4 (-158)) (-14 *5 (-852))
- (-14 *6 (-589 *2)) (-14 *7 (-1169 (-629 *4)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 (-428 *3 *4 *5 *6))) (-5 *1 (-428 *3 *4 *5 *6))
- (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087)))
- (-14 *6 (-1169 (-629 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169 (-1087))) (-5 *1 (-428 *3 *4 *5 *6))
- (-4 *3 (-158)) (-14 *4 (-852)) (-14 *5 (-589 (-1087)))
- (-14 *6 (-1169 (-629 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1087)) (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-158))
- (-14 *4 (-852)) (-14 *5 (-589 *2)) (-14 *6 (-1169 (-629 *3)))))
- ((*1 *1)
- (-12 (-5 *1 (-428 *2 *3 *4 *5)) (-4 *2 (-158)) (-14 *3 (-852))
- (-14 *4 (-589 (-1087))) (-14 *5 (-1169 (-629 *2))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3))
- (-4 *3 (-13 (-339) (-1109) (-930))))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-1104)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6))
- (-5 *2 (-2 (|:| |bas| (-451 *4 *5 *6 *7)) (|:| -3346 (-589 *7))))
- (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-589 *7)))))
-(((*1 *1 *1 *1) (-4 *1 (-701))))
+ (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *1))
+ (-4 *1 (-989 *3 *4 *5)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-940 *3)) (-4 *3 (-1125)) (-4 *3 (-1018))
+ (-5 *2 (-108)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1123)) (-5 *1 (-351 *4 *2))
- (-4 *2 (-13 (-349 *4) (-10 -7 (-6 -4249)))))))
+ (-12 (-5 *4 (-712)) (-5 *2 (-108)) (-5 *1 (-543 *3)) (-4 *3 (-510)))))
+(((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 (-525)) (-5 *1 (-1070 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2)) (-4 *2 (-1125)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-880 *3 *4 *2)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *2 (-786))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-732)) (-4 *5 (-973)) (-4 *6 (-880 *5 *4 *2))
- (-4 *2 (-786)) (-5 *1 (-881 *4 *2 *5 *6 *3))
- (-4 *3
- (-13 (-339)
- (-10 -8 (-15 -3976 ($ *6)) (-15 -2164 (*6 $))
- (-15 -2171 (*6 $)))))))
+ (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975))
+ (-5 *2 (-591 (-591 (-591 (-876 *3))))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1188 *3)) (-4 *3 (-341)) (-5 *2 (-108)))))
+(((*1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1096)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-763)))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4250)) (-4 *1 (-464 *3)) (-4 *3 (-1125))
+ (-4 *3 (-1018)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-838 *4)) (-4 *4 (-1018)) (-5 *2 (-108))
+ (-5 *1 (-837 *4))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-854)) (-5 *2 (-108)) (-5 *1 (-1019 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3))))
+(((*1 *1 *1) (-5 *1 (-987))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
+ (-5 *1 (-745 *4 *2)) (-4 *2 (-13 (-29 *4) (-1111) (-891))))))
+(((*1 *2 *3 *3 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205))
+ (-5 *2 (-964)) (-5 *1 (-698)))))
+(((*1 *1) (-12 (-5 *1 (-591 *2)) (-4 *2 (-1125)))))
+(((*1 *1) (-5 *1 (-205))) ((*1 *1) (-5 *1 (-357))))
+(((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-3 (|:| |Null| "null") (|:| |Assignment| "assignment")
+ (|:| |Conditional| "conditional") (|:| |Return| "return")
+ (|:| |Block| "block") (|:| |Comment| "comment")
+ (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while")
+ (|:| |Repeat| "repeat") (|:| |Goto| "goto")
+ (|:| |Continue| "continue")
+ (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save")
+ (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")))
+ (-5 *1 (-308)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-515 *3)) (-4 *3 (-13 (-382) (-1111))) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-4 *1 (-786)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-991 *4 *3)) (-4 *4 (-13 (-786) (-341)))
+ (-4 *3 (-1147 *4)) (-5 *2 (-108)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 *5)) (-4 *5 (-1147 *3)) (-4 *3 (-286))
+ (-5 *2 (-108)) (-5 *1 (-432 *3 *5)))))
+(((*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174))))
+ ((*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-351 *2)) (-4 *2 (-1125)) (-4 *2 (-788))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-351 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-900 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1050 *2)) (-4 *2 (-975))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-1050 *3)) (-4 *3 (-975))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-1078 *3 *4))) (-5 *1 (-1078 *3 *4))
+ (-14 *3 (-854)) (-4 *4 (-975))))
+ ((*1 *1 *1 *1)
+ (-12 (-5 *1 (-1078 *2 *3)) (-14 *2 (-854)) (-4 *3 (-975)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-690)))))
+(((*1 *1 *1 *1) (-4 *1 (-286))) ((*1 *1 *1 *1) (-5 *1 (-712)))
+ ((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-712)) (-5 *1 (-153 *3 *4))
+ (-4 *3 (-154 *4))))
+ ((*1 *2)
+ (-12 (-14 *4 *2) (-4 *5 (-1125)) (-5 *2 (-712))
+ (-5 *1 (-217 *3 *4 *5)) (-4 *3 (-218 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *4 (-788)) (-5 *2 (-712)) (-5 *1 (-407 *3 *4))
+ (-4 *3 (-408 *4))))
+ ((*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-509 *3)) (-4 *3 (-510))))
+ ((*1 *2) (-12 (-4 *1 (-705)) (-5 *2 (-712))))
+ ((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-712)) (-5 *1 (-737 *3 *4))
+ (-4 *3 (-738 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-517)) (-5 *2 (-712)) (-5 *1 (-922 *3 *4))
+ (-4 *3 (-923 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-712)) (-5 *1 (-926 *3 *4))
+ (-4 *3 (-927 *4))))
+ ((*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-941 *3)) (-4 *3 (-942))))
+ ((*1 *2) (-12 (-4 *1 (-975)) (-5 *2 (-712))))
+ ((*1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-983 *3)) (-4 *3 (-984)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *1 *2) (-12 (-5 *2 (-385 (-525))) (-5 *1 (-462)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-159)))))
+(((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-902)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-699)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1 (-108) *9)) (-5 *5 (-1 (-108) *9 *9))
+ (-4 *9 (-989 *6 *7 *8)) (-4 *6 (-517)) (-4 *7 (-734))
+ (-4 *8 (-788)) (-5 *2 (-2 (|:| |bas| *1) (|:| -1211 (-591 *9))))
+ (-5 *3 (-591 *9)) (-4 *1 (-1119 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1 (-108) *8 *8)) (-4 *8 (-989 *5 *6 *7))
+ (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-5 *2 (-2 (|:| |bas| *1) (|:| -1211 (-591 *8))))
+ (-5 *3 (-591 *8)) (-4 *1 (-1119 *5 *6 *7 *8)))))
+(((*1 *1 *1) (-4 *1 (-984)))
+ ((*1 *1 *1 *2 *2)
+ (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-975)) (-4 *2 (-733))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-975)) (-4 *2 (-733)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-414)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-712)) (-5 *1 (-543 *2)) (-4 *2 (-510))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-515))
- (-5 *2 (-1087)) (-5 *1 (-969 *4)))))
+ (-12 (-5 *2 (-2 (|:| -2672 *3) (|:| -2008 (-712)))) (-5 *1 (-543 *3))
+ (-4 *3 (-510)))))
+(((*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7)
+ (-12 (-5 *4 (-525)) (-5 *5 (-631 (-205)))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-84 FCN))))
+ (-5 *7 (-3 (|:| |fn| (-366)) (|:| |fp| (-86 OUTPUT))))
+ (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-691)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *4)) (-4 *4 (-158))
- (-5 *2 (-589 (-883 *4)))))
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160))
+ (-5 *2 (-591 (-885 *4)))))
((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-589 (-883 *4))) (-5 *1 (-392 *3 *4))
- (-4 *3 (-393 *4))))
+ (-12 (-4 *4 (-160)) (-5 *2 (-591 (-885 *4))) (-5 *1 (-394 *3 *4))
+ (-4 *3 (-395 *4))))
((*1 *2)
- (-12 (-4 *1 (-393 *3)) (-4 *3 (-158)) (-5 *2 (-589 (-883 *3)))))
+ (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-591 (-885 *3)))))
((*1 *2)
- (-12 (-5 *2 (-589 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6))
- (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1169 (-428 *4 *5 *6 *7))) (-5 *2 (-589 (-883 *4)))
- (-5 *1 (-428 *4 *5 *6 *7)) (-4 *4 (-515)) (-4 *4 (-158))
- (-14 *5 (-852)) (-14 *6 (-589 (-1087))) (-14 *7 (-1169 (-629 *4))))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-1 (-540 *3) *3 (-1087)))
- (-5 *6
- (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3
- (-1087)))
- (-4 *3 (-261)) (-4 *3 (-575)) (-4 *3 (-964 *4)) (-4 *3 (-406 *7))
- (-5 *4 (-1087)) (-4 *7 (-564 (-823 (-523)))) (-4 *7 (-427))
- (-4 *7 (-817 (-523))) (-4 *7 (-786)) (-5 *2 (-540 *3))
- (-5 *1 (-532 *7 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-284) (-136))) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-880 *4 *5 *6)) (-5 *2 (-589 (-589 *7)))
- (-5 *1 (-423 *4 *5 *6 *7)) (-5 *3 (-589 *7))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-732))
- (-4 *7 (-786)) (-4 *8 (-880 *5 *6 *7)) (-5 *2 (-589 (-589 *8)))
- (-5 *1 (-423 *5 *6 *7 *8)) (-5 *3 (-589 *8))))
+ (-12 (-5 *2 (-591 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3)))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-284) (-136))) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-880 *4 *5 *6)) (-5 *2 (-589 (-589 *7)))
- (-5 *1 (-423 *4 *5 *6 *7)) (-5 *3 (-589 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-732))
- (-4 *7 (-786)) (-4 *8 (-880 *5 *6 *7)) (-5 *2 (-589 (-589 *8)))
- (-5 *1 (-423 *5 *6 *7 *8)) (-5 *3 (-589 *8)))))
+ (-12 (-5 *3 (-1171 (-430 *4 *5 *6 *7))) (-5 *2 (-591 (-885 *4)))
+ (-5 *1 (-430 *4 *5 *6 *7)) (-4 *4 (-517)) (-4 *4 (-160))
+ (-14 *5 (-854)) (-14 *6 (-591 (-1089))) (-14 *7 (-1171 (-631 *4))))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-98 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-98 *2)) (-4 *2 (-1018)))))
(((*1 *2 *1 *3)
- (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-985)) (-5 *3 (-1070)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6)
- (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203)))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-68 APROD)))) (-5 *4 (-203))
- (-5 *2 (-962)) (-5 *1 (-696)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-710)) (-4 *1 (-209 *4))
- (-4 *4 (-973))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-209 *3)) (-4 *3 (-973))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-211)) (-5 *2 (-710))))
- ((*1 *1 *1) (-4 *1 (-211)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *3 (-13 (-339) (-136))) (-5 *1 (-375 *3 *4))
- (-4 *4 (-1145 *3))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-13 (-339) (-136))) (-5 *1 (-375 *2 *3))
- (-4 *3 (-1145 *2))))
- ((*1 *1) (-12 (-4 *1 (-599 *2)) (-4 *2 (-973))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 *4)) (-5 *3 (-589 (-710))) (-4 *1 (-831 *4))
- (-4 *4 (-1016))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-710)) (-4 *1 (-831 *2)) (-4 *2 (-1016))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *1 (-831 *3)) (-4 *3 (-1016))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-831 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *1) (-12 (-4 *1 (-231 *3)) (-4 *3 (-1123)) (-5 *2 (-710))))
- ((*1 *2 *1) (-12 (-4 *1 (-279)) (-5 *2 (-710))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-973))
- (-4 *2 (-13 (-380) (-964 *4) (-339) (-1109) (-261)))
- (-5 *1 (-418 *4 *3 *2)) (-4 *3 (-1145 *4))))
- ((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-562 *3)) (-4 *3 (-786))))
- ((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794))))
- ((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-794)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-155 (-203))) (-5 *5 (-523)) (-5 *6 (-1070))
- (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *1) (-5 *1 (-306))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-203)) (-5 *5 (-523)) (-5 *2 (-1119 *3))
- (-5 *1 (-729 *3)) (-4 *3 (-903))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-589 (-874 (-203))))) (-5 *4 (-108))
- (-5 *1 (-1119 *2)) (-4 *2 (-903)))))
+ (-12 (-5 *3 (-591 *1)) (-4 *1 (-989 *4 *5 *6)) (-4 *4 (-975))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1119 *4 *5 *6 *3)) (-4 *4 (-517)) (-4 *5 (-734))
+ (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))))
+(((*1 *1) (-5 *1 (-445))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *6)) (-5 *4 (-589 (-1068 *7))) (-4 *6 (-786))
- (-4 *7 (-880 *5 (-495 *6) *6)) (-4 *5 (-973))
- (-5 *2 (-1 (-1068 *7) *7)) (-5 *1 (-1040 *5 *6 *7)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-786))
- (-5 *2 (-2 (|:| -2275 *1) (|:| |gap| (-710)) (|:| -3143 *1)))
- (-4 *1 (-987 *4 *5 *3))))
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7))
+ (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-591 *10))
+ (-5 *1 (-573 *5 *6 *7 *8 *9 *10)) (-4 *9 (-994 *5 *6 *7 *8))
+ (-4 *10 (-1027 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-721 *5 (-798 *6)))) (-5 *4 (-108)) (-4 *5 (-429))
+ (-14 *6 (-591 (-1089))) (-5 *2 (-591 (-972 *5 *6)))
+ (-5 *1 (-576 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-721 *5 (-798 *6)))) (-5 *4 (-108)) (-4 *5 (-429))
+ (-14 *6 (-591 (-1089)))
+ (-5 *2
+ (-591 (-1060 *5 (-497 (-798 *6)) (-798 *6) (-721 *5 (-798 *6)))))
+ (-5 *1 (-576 *5 *6))))
+ ((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7))
+ (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-5 *2 (-591 (-956 *5 *6 *7 *8))) (-5 *1 (-956 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7))
+ (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-5 *2 (-591 (-956 *5 *6 *7 *8))) (-5 *1 (-956 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-591 (-721 *5 (-798 *6)))) (-5 *4 (-108)) (-4 *5 (-429))
+ (-14 *6 (-591 (-1089))) (-5 *2 (-591 (-972 *5 *6)))
+ (-5 *1 (-972 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7))
+ (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-591 *1))
+ (-4 *1 (-994 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7))
+ (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-5 *2 (-591 (-1060 *5 *6 *7 *8))) (-5 *1 (-1060 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-108)) (-4 *8 (-989 *5 *6 *7))
+ (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-5 *2 (-591 (-1060 *5 *6 *7 *8))) (-5 *1 (-1060 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-517))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 *1))
+ (-4 *1 (-1119 *4 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-205)) (-5 *1 (-763)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-1091 (-385 (-525))))
+ (-5 *1 (-172)))))
+(((*1 *1 *1 *1) (-4 *1 (-286))) ((*1 *1 *1 *1) (-5 *1 (-712)))
+ ((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-218 *3 *2)) (-4 *2 (-1125)) (-4 *2 (-975))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-796))))
+ ((*1 *1 *1) (-5 *1 (-796)))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-876 (-205))) (-5 *2 (-205)) (-5 *1 (-1122))))
((*1 *2 *1 *1)
- (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *2 (-2 (|:| -2275 *1) (|:| |gap| (-710)) (|:| -3143 *1)))
- (-4 *1 (-987 *3 *4 *5)))))
+ (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-975)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-885 *4)) (-4 *4 (-13 (-286) (-138)))
+ (-4 *2 (-882 *4 *6 *5)) (-5 *1 (-857 *4 *5 *6 *2))
+ (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)))))
+(((*1 *1 *1) (-4 *1 (-1058))))
+(((*1 *2 *3 *4 *4 *5 *4 *6 *4 *5)
+ (-12 (-5 *3 (-1072)) (-5 *5 (-631 (-205))) (-5 *6 (-631 (-525)))
+ (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-699)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205))
+ (-5 *2 (-964)) (-5 *1 (-694)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-49 *3 *4)) (-4 *3 (-973))
- (-14 *4 (-589 (-1087)))))
+ (|partial| -12 (-4 *3 (-25)) (-4 *3 (-788))
+ (-5 *2 (-2 (|:| -3482 (-525)) (|:| |var| (-564 *1))))
+ (-4 *1 (-408 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-5 *2 (-1176)) (-5 *1 (-1092))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1089))
+ (-5 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-5 *2 (-1176))
+ (-5 *1 (-1092))))
+ ((*1 *2 *3 *4 *1)
+ (-12 (-5 *3 (-1089))
+ (-5 *4 (-3 (|:| |fst| (-412)) (|:| -4170 "void"))) (-5 *2 (-1176))
+ (-5 *1 (-1092)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-146)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1171 *1)) (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129))
+ (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-221))))
((*1 *2 *3)
- (-12 (-5 *3 (-51)) (-5 *2 (-108)) (-5 *1 (-50 *4)) (-4 *4 (-1123))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-201 *3 *4)) (-4 *3 (-13 (-973) (-786)))
- (-14 *4 (-589 (-1087)))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-614 *3)) (-4 *3 (-786))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-618 *3)) (-4 *3 (-786))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-824 *3)) (-4 *3 (-786)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-852)) (-4 *1 (-684 *3)) (-4 *3 (-158)))))
-(((*1 *2 *1) (-12 (-4 *1 (-231 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))))
+ (-12 (-5 *3 (-591 (-1072))) (-5 *2 (-1176)) (-5 *1 (-221)))))
+(((*1 *2 *1 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |lm| (-760 *3)) (|:| |rm| (-760 *3))))
+ (-5 *1 (-760 *3)) (-4 *3 (-788))))
+ ((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-689)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-335 *4))
+ (-4 *4 (-327)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089))))
+ (-4 *6 (-734)) (-4 *7 (-882 *4 *6 *5))
+ (-5 *2
+ (-2 (|:| |sysok| (-108)) (|:| |z0| (-591 *7)) (|:| |n0| (-591 *7))))
+ (-5 *1 (-857 *4 *5 *6 *7)) (-5 *3 (-591 *7)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-1028)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-852)) (-4 *1 (-216 *3 *4)) (-4 *4 (-973))
- (-4 *4 (-1123))))
+ (-12 (-5 *2 (-854)) (-4 *1 (-218 *3 *4)) (-4 *4 (-975))
+ (-4 *4 (-1125))))
((*1 *1 *2)
- (-12 (-14 *3 (-589 (-1087))) (-4 *4 (-158))
- (-4 *5 (-216 (-1271 *3) (-710)))
+ (-12 (-14 *3 (-591 (-1089))) (-4 *4 (-160))
+ (-4 *5 (-218 (-4045 *3) (-712)))
(-14 *6
- (-1 (-108) (-2 (|:| -2557 *2) (|:| -3262 *5))
- (-2 (|:| -2557 *2) (|:| -3262 *5))))
- (-5 *1 (-436 *3 *4 *2 *5 *6 *7)) (-4 *2 (-786))
- (-4 *7 (-880 *4 *5 (-796 *3)))))
- ((*1 *2 *2) (-12 (-5 *2 (-874 (-203))) (-5 *1 (-1120)))))
-(((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-794)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-630 *3))))
- ((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-630 *3)))))
-(((*1 *2 *1 *2)
- (-12 (-4 *1 (-340 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1016)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1070)) (-5 *2 (-589 (-1092))) (-5 *1 (-811)))))
-(((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *1 *1) (-12 (-5 *1 (-558 *2)) (-4 *2 (-1016))))
- ((*1 *1 *1) (-5 *1 (-578))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-732))
- (-4 *3 (-13 (-786) (-10 -8 (-15 -3077 ((-1087) $))))) (-4 *5 (-515))
- (-5 *1 (-672 *4 *3 *5 *2)) (-4 *2 (-880 (-383 (-883 *5)) *4 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *4 (-973)) (-4 *5 (-732))
- (-4 *3
- (-13 (-786)
- (-10 -8 (-15 -3077 ((-1087) $))
- (-15 -2354 ((-3 $ "failed") (-1087))))))
- (-5 *1 (-913 *4 *5 *3 *2)) (-4 *2 (-880 (-883 *4) *5 *3))))
+ (-1 (-108) (-2 (|:| -2226 *2) (|:| -2008 *5))
+ (-2 (|:| -2226 *2) (|:| -2008 *5))))
+ (-5 *1 (-438 *3 *4 *2 *5 *6 *7)) (-4 *2 (-788))
+ (-4 *7 (-882 *4 *5 (-798 *3)))))
+ ((*1 *2 *2) (-12 (-5 *2 (-876 (-205))) (-5 *1 (-1122)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-517))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-908 *4 *5 *6 *7)))))
+(((*1 *1 *1) (-5 *1 (-501))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-4 *1 (-154 *2)) (-4 *2 (-160)) (-4 *2 (-517))))
+ ((*1 *1 *1 *2)
+ (|partial| -12 (-4 *1 (-304 *2 *3)) (-4 *2 (-975)) (-4 *3 (-733))
+ (-4 *2 (-517))))
+ ((*1 *1 *1 *1) (|partial| -4 *1 (-517)))
+ ((*1 *1 *1 *2)
+ (|partial| -12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975))
+ (-4 *3 (-351 *2)) (-4 *4 (-351 *2)) (-4 *2 (-517))))
+ ((*1 *1 *1 *1) (|partial| -5 *1 (-712)))
+ ((*1 *1 *1 *2)
+ (|partial| -12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-517))))
+ ((*1 *1 *1 *1) (-5 *1 (-796)))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 *6))
- (-4 *6
- (-13 (-786)
- (-10 -8 (-15 -3077 ((-1087) $))
- (-15 -2354 ((-3 $ "failed") (-1087))))))
- (-4 *4 (-973)) (-4 *5 (-732)) (-5 *1 (-913 *4 *5 *6 *2))
- (-4 *2 (-880 (-883 *4) *5 *6)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)) (-5 *3 (-523)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-695)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-108))
- (-5 *2
- (-2 (|:| |contp| (-523))
- (|:| -3286 (-589 (-2 (|:| |irr| *3) (|:| -3269 (-523)))))))
- (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-108))
- (-5 *2
- (-2 (|:| |contp| (-523))
- (|:| -3286 (-589 (-2 (|:| |irr| *3) (|:| -3269 (-523)))))))
- (-5 *1 (-1134 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *2 *3 *3 *3 *4 *5 *6)
- (-12 (-5 *3 (-292 (-523))) (-5 *4 (-1 (-203) (-203)))
- (-5 *5 (-1011 (-203))) (-5 *6 (-589 (-240))) (-5 *2 (-1047 (-203)))
- (-5 *1 (-636)))))
+ (-12 (-5 *2 (-1171 *4)) (-4 *4 (-1147 *3)) (-4 *3 (-517))
+ (-5 *1 (-901 *3 *4))))
+ ((*1 *1 *1 *2)
+ (|partial| -12 (-4 *1 (-978 *3 *4 *2 *5 *6)) (-4 *2 (-975))
+ (-4 *5 (-218 *4 *2)) (-4 *6 (-218 *3 *2)) (-4 *2 (-517))))
+ ((*1 *2 *2 *2)
+ (|partial| -12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))))
+(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-121 *2)) (-4 *2 (-1018)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-1087))
- (-4 *5 (-13 (-284) (-786) (-136))) (-5 *2 (-589 (-292 *5)))
- (-5 *1 (-1043 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-383 (-883 *5)))) (-5 *4 (-589 (-1087)))
- (-4 *5 (-13 (-284) (-786) (-136))) (-5 *2 (-589 (-589 (-292 *5))))
- (-5 *1 (-1043 *5)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-905 *4 *5 *6 *3)) (-4 *4 (-973)) (-4 *5 (-732))
- (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6)) (-4 *4 (-515))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *4 (-562 *3)) (-5 *5 (-1 (-1083 *3) (-1083 *3)))
- (-4 *3 (-13 (-27) (-406 *6))) (-4 *6 (-13 (-786) (-515)))
- (-5 *2 (-540 *3)) (-5 *1 (-510 *6 *3)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-630 *3)))))
-(((*1 *2 *2 *2)
+ (-12 (-5 *3 (-1 *2 (-591 *2))) (-5 *4 (-591 *5))
+ (-4 *5 (-37 (-385 (-525)))) (-4 *2 (-1162 *5))
+ (-5 *1 (-1164 *5 *2)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-1089)))))
+(((*1 *1 *1) (|partial| -4 *1 (-1065))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-631 *4)) (-4 *4 (-975)) (-5 *1 (-1056 *3 *4))
+ (-14 *3 (-712)))))
+(((*1 *2 *3)
(-12
- (-5 *2
- (-589
- (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-710)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *4 (-732)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-427)) (-4 *5 (-786))
- (-5 *1 (-424 *3 *4 *5 *6)))))
-(((*1 *1 *1 *2)
+ (-5 *3
+ (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))))
+ (-5 *2 (-591 (-385 (-525)))) (-5 *1 (-949 *4))
+ (-4 *4 (-1147 (-525))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-514)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-796)) (-5 *1 (-1070 *3)) (-4 *3 (-1018))
+ (-4 *3 (-1125)))))
+(((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| -3753 (-589 (-794))) (|:| -1773 (-589 (-794)))
- (|:| |presup| (-589 (-794))) (|:| -2065 (-589 (-794)))
- (|:| |args| (-589 (-794)))))
- (-5 *1 (-1087))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-589 (-794)))) (-5 *1 (-1087)))))
+ (-2 (|:| |mval| (-631 *3)) (|:| |invmval| (-631 *3))
+ (|:| |genIdeal| (-477 *3 *4 *5 *6))))
+ (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-4 *5 (-408 *4))
+ (-5 *2 (-396 *3)) (-5 *1 (-413 *4 *5 *3)) (-4 *3 (-1147 *5)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-629 *6)) (-5 *5 (-1 (-394 (-1083 *6)) (-1083 *6)))
- (-4 *6 (-339))
+ (-12 (-5 *4 (-591 *7)) (-5 *5 (-591 (-591 *8))) (-4 *7 (-788))
+ (-4 *8 (-286)) (-4 *6 (-734)) (-4 *9 (-882 *8 *6 *7))
(-5 *2
- (-589
- (-2 (|:| |outval| *7) (|:| |outmult| (-523))
- (|:| |outvect| (-589 (-629 *7))))))
- (-5 *1 (-496 *6 *7 *4)) (-4 *7 (-339)) (-4 *4 (-13 (-339) (-784))))))
-(((*1 *1 *1) (-12 (-4 *1 (-599 *2)) (-4 *2 (-973))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *4 (-158)) (-4 *5 (-349 *4))
- (-4 *6 (-349 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4)))
- (-5 *1 (-628 *4 *5 *6 *3)) (-4 *3 (-627 *4 *5 *6))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-158)) (-4 *2 (-973)) (-5 *1 (-654 *2 *3))
- (-4 *3 (-591 *2))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-158)) (-4 *2 (-973)) (-5 *1 (-654 *2 *3))
- (-4 *3 (-591 *2))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-773 *2)) (-4 *2 (-158)) (-4 *2 (-973))))
- ((*1 *1 *1) (-12 (-5 *1 (-773 *2)) (-4 *2 (-158)) (-4 *2 (-973)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2)
- (-12 (-5 *2 (-1174)) (-5 *1 (-1101 *3 *4)) (-4 *3 (-1016))
- (-4 *4 (-1016)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-203)))))
+ (-2 (|:| |unitPart| *9)
+ (|:| |suPart|
+ (-591 (-2 (|:| -1348 (-1085 *9)) (|:| -2008 (-525)))))))
+ (-5 *1 (-684 *6 *7 *8 *9)) (-5 *3 (-1085 *9)))))
+(((*1 *2 *3) (-12 (-5 *3 (-763)) (-5 *2 (-51)) (-5 *1 (-770)))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205))
+ (-5 *2 (-964)) (-5 *1 (-695)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-308)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 (-108) *6)) (-4 *6 (-13 (-1016) (-964 *5)))
- (-4 *5 (-817 *4)) (-4 *4 (-1016)) (-5 *2 (-1 (-108) *5))
- (-5 *1 (-862 *4 *5 *6)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-589 *1))
- (-4 *1 (-987 *3 *4 *5)))))
+ (-12 (-5 *3 (-1072)) (-5 *2 (-591 (-1094))) (-5 *1 (-1051)))))
+(((*1 *1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1089)) (-5 *3 (-108)) (-5 *1 (-825 *4))
+ (-4 *4 (-1018)))))
+(((*1 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206))))
+ ((*1 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *1 *1) (-4 *1 (-1053))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-734)) (-4 *6 (-788)) (-4 *7 (-517))
+ (-4 *3 (-882 *7 *5 *6))
+ (-5 *2
+ (-2 (|:| -2008 (-712)) (|:| -3482 *3) (|:| |radicand| (-591 *3))))
+ (-5 *1 (-886 *5 *6 *7 *3 *8)) (-5 *4 (-712))
+ (-4 *8
+ (-13 (-341)
+ (-10 -8 (-15 -1738 (*3 $)) (-15 -1754 (*3 $)) (-15 -3022 ($ *3))))))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-765)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1 (-108) *2)) (-4 *1 (-142 *2))
+ (-4 *2 (-1125)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087))))
- (-4 *6 (-732)) (-5 *2 (-383 (-883 *4))) (-5 *1 (-855 *4 *5 *6 *3))
- (-4 *3 (-880 *4 *6 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-629 *7)) (-4 *7 (-880 *4 *6 *5))
- (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087))))
- (-4 *6 (-732)) (-5 *2 (-629 (-383 (-883 *4))))
- (-5 *1 (-855 *4 *5 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-880 *4 *6 *5))
- (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087))))
- (-4 *6 (-732)) (-5 *2 (-589 (-383 (-883 *4))))
- (-5 *1 (-855 *4 *5 *6 *7)))))
+ (-12 (-4 *4 (-975)) (-4 *5 (-1147 *4)) (-5 *2 (-1 *6 (-591 *6)))
+ (-5 *1 (-1165 *4 *5 *3 *6)) (-4 *3 (-601 *5)) (-4 *6 (-1162 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173))))
+ ((*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-225 *4 *5)) (-14 *4 (-589 (-1087))) (-4 *5 (-427))
- (-5 *2 (-455 *4 *5)) (-5 *1 (-577 *4 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *3 (-1127)) (-4 *5 (-1145 *3)) (-4 *6 (-1145 (-383 *5)))
- (-5 *2 (-108)) (-5 *1 (-317 *4 *3 *5 *6)) (-4 *4 (-318 *3 *5 *6))))
- ((*1 *2 *3 *3)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))))
+ (|partial| -12 (-4 *4 (-13 (-517) (-138)))
+ (-5 *2 (-2 (|:| -3388 *3) (|:| -3400 *3))) (-5 *1 (-1141 *4 *3))
+ (-4 *3 (-1147 *4)))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4250)) (-4 *1 (-464 *3)) (-4 *3 (-1125))
+ (-4 *3 (-1018)) (-5 *2 (-712))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4250)) (-4 *1 (-464 *4))
+ (-4 *4 (-1125)) (-5 *2 (-712)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-898 *3)) (-4 *3 (-899)))))
+(((*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160))))
+ ((*1 *2 *1) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160)))))
+(((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-444))))
+ ((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-444))))
+ ((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-860)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-357)) (-5 *1 (-987)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357))
+ (-5 *2
+ (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525))
+ (|:| |success| (-108))))
+ (-5 *1 (-730)) (-5 *5 (-525)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-155 *4)) (-5 *1 (-165 *4 *3))
- (-4 *4 (-13 (-339) (-784))) (-4 *3 (-1145 *2)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-203)) (-5 *2 (-1174)) (-5 *1 (-761)))))
+ (-12 (-5 *3 (-1 *5)) (-4 *5 (-1018)) (-5 *2 (-1 *5 *4))
+ (-5 *1 (-625 *4 *5)) (-4 *4 (-1018))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-788)) (-5 *1 (-862 *3 *2)) (-4 *2 (-408 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1089)) (-5 *2 (-294 (-525))) (-5 *1 (-863))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1186 *3 *2)) (-4 *3 (-788)) (-4 *2 (-975))))
+ ((*1 *2 *1) (-12 (-4 *2 (-975)) (-5 *1 (-1192 *2 *3)) (-4 *3 (-784)))))
+(((*1 *2 *3 *3 *2 *4)
+ (-12 (-5 *3 (-631 *2)) (-5 *4 (-525))
+ (-4 *2 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $)))))
+ (-4 *5 (-1147 *2)) (-5 *1 (-472 *2 *5 *6)) (-4 *6 (-387 *2 *5)))))
+(((*1 *1 *1 *2 *3 *1)
+ (-12 (-4 *1 (-304 *2 *3)) (-4 *2 (-975)) (-4 *3 (-733)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517))
+ (-5 *2 (-108)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1085 *3)) (-4 *3 (-346)) (-4 *1 (-307 *3))
+ (-4 *3 (-341)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-517)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174))))
+ ((*1 *2 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-760 *3)) (-4 *3 (-788)) (-5 *1 (-616 *3)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-515))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-906 *4 *5 *6 *7)))))
+ (-12 (-4 *4 (-761)) (-14 *5 (-1089)) (-5 *2 (-591 (-1144 *5 *4)))
+ (-5 *1 (-1032 *4 *5)) (-5 *3 (-1144 *5 *4)))))
+(((*1 *1) (-5 *1 (-132))))
+(((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-205))))
+ ((*1 *1 *1) (-4 *1 (-510)))
+ ((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-548 *3)) (-14 *3 *2)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1018)) (-5 *2 (-1036)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-823 *4)) (-4 *4 (-1016)) (-5 *1 (-821 *4 *3))
- (-4 *3 (-1123))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-51)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))))
+ (-12 (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525)))))
+ (-4 *3 (-1147 *4)) (-5 *1 (-750 *4 *3 *2 *5)) (-4 *2 (-601 *3))
+ (-4 *5 (-601 (-385 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-385 *5))
+ (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *5 (-1147 *4))
+ (-5 *1 (-750 *4 *5 *2 *6)) (-4 *2 (-601 *5)) (-4 *6 (-601 *3)))))
+(((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1072)) (-4 *1 (-367)))))
+(((*1 *2 *3 *2)
+ (|partial| -12 (-5 *2 (-1171 *4)) (-5 *3 (-631 *4)) (-4 *4 (-341))
+ (-5 *1 (-612 *4))))
+ ((*1 *2 *3 *2)
+ (|partial| -12 (-4 *4 (-341))
+ (-4 *5 (-13 (-351 *4) (-10 -7 (-6 -4251))))
+ (-4 *2 (-13 (-351 *4) (-10 -7 (-6 -4251))))
+ (-5 *1 (-613 *4 *5 *2 *3)) (-4 *3 (-629 *4 *5 *2))))
+ ((*1 *2 *3 *2 *4 *5)
+ (|partial| -12 (-5 *4 (-591 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-341))
+ (-5 *1 (-755 *2 *3)) (-4 *3 (-601 *2))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-341) (-10 -8 (-15 ** ($ $ (-385 (-525)))))))
+ (-5 *1 (-1044 *3 *2)) (-4 *3 (-1147 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-622 *2)) (-4 *2 (-1016))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-589 *5) (-589 *5))) (-5 *4 (-523))
- (-5 *2 (-589 *5)) (-5 *1 (-622 *5)) (-4 *5 (-1016)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 (-355))) (-5 *1 (-240))))
- ((*1 *1)
- (|partial| -12 (-4 *1 (-343 *2)) (-4 *2 (-515)) (-4 *2 (-158))))
- ((*1 *2 *1) (-12 (-5 *1 (-394 *2)) (-4 *2 (-515)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1034)) (-5 *1 (-105))))
- ((*1 *2 *1) (-12 (-4 *1 (-125)) (-5 *2 (-710))))
- ((*1 *2 *3 *1 *2)
- (-12 (-5 *2 (-523)) (-4 *1 (-349 *3)) (-4 *3 (-1123))
- (-4 *3 (-1016))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-349 *3)) (-4 *3 (-1123)) (-4 *3 (-1016))
- (-5 *2 (-523))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-108) *4)) (-4 *1 (-349 *4)) (-4 *4 (-1123))
- (-5 *2 (-523))))
- ((*1 *2 *3 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-523)) (-5 *3 (-130))))
- ((*1 *2 *1 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-523)))))
+ (-12 (-5 *3 (-525)) (-5 *2 (-591 (-591 (-205)))) (-5 *1 (-1122)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-840)) (-5 *2 (-394 (-1083 *1))) (-5 *3 (-1083 *1)))))
-(((*1 *2 *1) (-12 (-4 *3 (-973)) (-5 *2 (-589 *1)) (-4 *1 (-1048 *3)))))
-(((*1 *2 *3 *3 *3)
- (|partial| -12 (-4 *4 (-13 (-339) (-136) (-964 (-523))))
- (-4 *5 (-1145 *4)) (-5 *2 (-589 (-383 *5))) (-5 *1 (-944 *4 *5))
- (-5 *3 (-383 *5)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-1145 (-523))) (-5 *1 (-459 *3)))))
-(((*1 *2 *3 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1145 *5))
- (-4 *5 (-13 (-339) (-136) (-964 (-523))))
- (-5 *2
- (-2 (|:| |a| *6) (|:| |b| (-383 *6)) (|:| |h| *6)
- (|:| |c1| (-383 *6)) (|:| |c2| (-383 *6)) (|:| -1425 *6)))
- (-5 *1 (-944 *5 *6)) (-5 *3 (-383 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-284) (-136))) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-880 *4 *5 *6)) (-5 *2 (-589 (-589 *7)))
- (-5 *1 (-423 *4 *5 *6 *7)) (-5 *3 (-589 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-284) (-136))) (-4 *6 (-732))
- (-4 *7 (-786)) (-4 *8 (-880 *5 *6 *7)) (-5 *2 (-589 (-589 *8)))
- (-5 *1 (-423 *5 *6 *7 *8)) (-5 *3 (-589 *8)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-973)) (-4 *3 (-1145 *4)) (-4 *2 (-1160 *4))
- (-5 *1 (-1163 *4 *3 *5 *2)) (-4 *5 (-599 *3)))))
-(((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-638))))
- ((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-638)))))
-(((*1 *2 *1) (-12 (-5 *2 (-761)) (-5 *1 (-760)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-589 (-455 *5 *6))) (-5 *4 (-796 *5))
- (-14 *5 (-589 (-1087))) (-5 *2 (-455 *5 *6)) (-5 *1 (-577 *5 *6))
- (-4 *6 (-427))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-455 *5 *6))) (-5 *4 (-796 *5))
- (-14 *5 (-589 (-1087))) (-5 *2 (-455 *5 *6)) (-5 *1 (-577 *5 *6))
- (-4 *6 (-427)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-710)) (-4 *4 (-13 (-515) (-136)))
- (-5 *1 (-1139 *4 *2)) (-4 *2 (-1145 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-719 *5 (-796 *6)))) (-5 *4 (-108)) (-4 *5 (-427))
- (-14 *6 (-589 (-1087))) (-5 *2 (-589 (-970 *5 *6)))
- (-5 *1 (-574 *5 *6)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2))
- (-4 *4 (-349 *2)))))
+ (-12 (-5 *3 (-591 (-591 (-591 *4)))) (-5 *2 (-591 (-591 *4)))
+ (-5 *1 (-1097 *4)) (-4 *4 (-788)))))
(((*1 *2 *1 *1)
- (-12 (-4 *1 (-216 *3 *2)) (-4 *2 (-1123)) (-4 *2 (-973))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-794))))
- ((*1 *1 *1) (-5 *1 (-794)))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-874 (-203))) (-5 *2 (-203)) (-5 *1 (-1120))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-973)))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158)))))
-(((*1 *2 *3 *2)
(-12
(-5 *2
- (-589
- (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-710)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *3 (-732)) (-4 *6 (-880 *4 *3 *5)) (-4 *4 (-427)) (-4 *5 (-786))
- (-5 *1 (-424 *4 *3 *5 *6)))))
-(((*1 *2 *1) (-12 (-4 *1 (-343 *2)) (-4 *2 (-158)))))
-(((*1 *2 *2) (|partial| -12 (-5 *2 (-292 (-203))) (-5 *1 (-282))))
+ (-2 (|:| -2805 *3) (|:| |coef1| (-723 *3)) (|:| |coef2| (-723 *3))))
+ (-5 *1 (-723 *3)) (-4 *3 (-517)) (-4 *3 (-975)))))
+(((*1 *2 *2 *2 *2 *3)
+ (-12 (-4 *3 (-517)) (-5 *1 (-901 *3 *2)) (-4 *2 (-1147 *3)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-1 (-205) (-205) (-205)))
+ (-5 *4 (-1 (-205) (-205) (-205) (-205)))
+ (-5 *2 (-1 (-876 (-205)) (-205) (-205))) (-5 *1 (-638)))))
+(((*1 *2 *1) (-12 (-4 *1 (-245 *2)) (-4 *2 (-788))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1089)) (-5 *1 (-798 *3)) (-14 *3 (-591 *2))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-898 *3)) (-4 *3 (-899))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-920))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-1011 *3)) (-4 *3 (-1125))))
((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| |num| (-823 *3)) (|:| |den| (-823 *3))))
- (-5 *1 (-823 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203)))
- (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-77 LSFUN1))))
- (-5 *2 (-962)) (-5 *1 (-693)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-508))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *1) (-12 (-4 *1 (-343 *2)) (-4 *2 (-158)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4248)) (-4 *1 (-213 *3))
- (-4 *3 (-1016))))
- ((*1 *1 *2 *1)
- (-12 (|has| *1 (-6 -4248)) (-4 *1 (-213 *2)) (-4 *2 (-1016))))
- ((*1 *1 *2 *1)
- (-12 (-4 *1 (-259 *2)) (-4 *2 (-1123)) (-4 *2 (-1016))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-259 *3)) (-4 *3 (-1123))))
- ((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-560 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1016))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *2 (-1 (-108) *4)) (-5 *3 (-523)) (-4 *4 (-1016))
- (-5 *1 (-677 *4))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-5 *1 (-677 *2)) (-4 *2 (-1016))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1052 *3 *4)) (-4 *3 (-13 (-1016) (-33)))
- (-4 *4 (-13 (-1016) (-33))) (-5 *1 (-1053 *3 *4)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-710)) (-4 *4 (-325)) (-5 *1 (-195 *4 *2))
- (-4 *2 (-1145 *4)))))
-(((*1 *2)
- (-12 (-5 *2 (-852)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-852)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087))))
- (-4 *6 (-732)) (-4 *7 (-880 *4 *6 *5))
- (-5 *2
- (-2 (|:| |sysok| (-108)) (|:| |z0| (-589 *7)) (|:| |n0| (-589 *7))))
- (-5 *1 (-855 *4 *5 *6 *7)) (-5 *3 (-589 *7)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-130))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1056)) (-5 *2 (-133)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2210 *4)))
- (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-108) *8)) (-4 *8 (-987 *5 *6 *7)) (-4 *5 (-515))
- (-4 *6 (-732)) (-4 *7 (-786))
- (-5 *2 (-2 (|:| |goodPols| (-589 *8)) (|:| |badPols| (-589 *8))))
- (-5 *1 (-906 *5 *6 *7 *8)) (-5 *4 (-589 *8)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-896 *3)) (-4 *3 (-897)))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-541 *2)) (-4 *2 (-508)))))
-(((*1 *2 *2 *2)
+ (-12 (-4 *1 (-1149 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733))
+ (-5 *2 (-1089))))
+ ((*1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-1167 *3)) (-14 *3 *2))))
+(((*1 *2 *1) (-12 (-4 *1 (-618 *3)) (-4 *3 (-1125)) (-5 *2 (-108)))))
+(((*1 *2 *3 *1)
(-12
(-5 *2
- (-2 (|:| -2922 (-629 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-629 *3))))
- (-4 *3 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $)))))
- (-4 *4 (-1145 *3)) (-5 *1 (-470 *3 *4 *5)) (-4 *5 (-385 *3 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1068 (-523))) (-5 *1 (-1072 *4)) (-4 *4 (-973))
- (-5 *3 (-523)))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-1092))) (-5 *1 (-167)))))
-(((*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))))
+ (-2 (|:| |cycle?| (-108)) (|:| -1259 (-712)) (|:| |period| (-712))))
+ (-5 *1 (-1070 *4)) (-4 *4 (-1125)) (-5 *3 (-712)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-525)) (-5 *1 (-637 *2)) (-4 *2 (-1147 *3)))))
+(((*1 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-770)))))
+(((*1 *2 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525))
+ (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 -3576)))) (-5 *2 (-964))
+ (-5 *1 (-690)))))
+(((*1 *1)
+ (-12 (-4 *3 (-1018)) (-5 *1 (-818 *2 *3 *4)) (-4 *2 (-1018))
+ (-4 *4 (-611 *3))))
+ ((*1 *1) (-12 (-5 *1 (-822 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-525)) (-5 *4 (-396 *2)) (-4 *2 (-882 *7 *5 *6))
+ (-5 *1 (-684 *5 *6 *7 *2)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-286)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-128))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-774 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-781 *3)) (-4 *3 (-1018)))))
(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-786)) (-4 *5 (-732))
- (-4 *6 (-515)) (-4 *7 (-880 *6 *5 *3))
- (-5 *1 (-437 *5 *3 *6 *7 *2))
- (-4 *2
- (-13 (-964 (-383 (-523))) (-339)
- (-10 -8 (-15 -3976 ($ *7)) (-15 -2164 (*7 $))
- (-15 -2171 (*7 $))))))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1110 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203)))
- (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-61 LSFUN2))))
- (-5 *2 (-962)) (-5 *1 (-693)))))
-(((*1 *2)
- (-12 (-4 *3 (-973)) (-5 *2 (-888 (-652 *3 *4))) (-5 *1 (-652 *3 *4))
- (-4 *4 (-1145 *3)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-710)) (|:| |poli| *7)
- (|:| |polj| *7)))
- (-4 *5 (-732)) (-4 *7 (-880 *4 *5 *6)) (-4 *4 (-427)) (-4 *6 (-786))
- (-5 *2 (-108)) (-5 *1 (-424 *4 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-284) (-136))) (-4 *4 (-13 (-786) (-564 (-1087))))
- (-4 *5 (-732)) (-5 *1 (-855 *3 *4 *5 *2)) (-4 *2 (-880 *3 *5 *4)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-710)) (-5 *5 (-589 *3)) (-4 *3 (-284)) (-4 *6 (-786))
- (-4 *7 (-732)) (-5 *2 (-108)) (-5 *1 (-572 *6 *7 *3 *8))
- (-4 *8 (-880 *3 *7 *6)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-710)) (-5 *1 (-792 *2)) (-4 *2 (-37 (-383 (-523))))
- (-4 *2 (-158)))))
+ (-12 (-5 *3 (-591 (-564 *6))) (-5 *4 (-1089)) (-5 *2 (-564 *6))
+ (-4 *6 (-408 *5)) (-4 *5 (-788)) (-5 *1 (-534 *5 *6)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
+ (|partial| -12 (-5 *4 (-854)) (-4 *5 (-517)) (-5 *2 (-631 *5))
+ (-5 *1 (-888 *5 *3)) (-4 *3 (-601 *5)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-242))) (-5 *1 (-1172))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 (-242))) (-5 *1 (-1172))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-242))) (-5 *1 (-1173))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 (-242))) (-5 *1 (-1173)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-882 *4 *6 *5))
+ (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089))))
+ (-4 *6 (-734)) (-5 *2 (-108)) (-5 *1 (-857 *4 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-885 *4))) (-4 *4 (-13 (-286) (-138)))
+ (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734)) (-5 *2 (-108))
+ (-5 *1 (-857 *4 *5 *6 *7)) (-4 *7 (-882 *4 *6 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1190 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975))
+ (-5 *2 (-760 *3))))
+ ((*1 *2 *1) (-12 (-4 *2 (-784)) (-5 *1 (-1192 *3 *2)) (-4 *3 (-975)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089))))
+ (-4 *6 (-734)) (-5 *2 (-591 *3)) (-5 *1 (-857 *4 *5 *6 *3))
+ (-4 *3 (-882 *4 *6 *5)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-591 *6)) (-4 *6 (-788)) (-4 *4 (-341)) (-4 *5 (-734))
+ (-5 *2
+ (-2 (|:| |mval| (-631 *4)) (|:| |invmval| (-631 *4))
+ (|:| |genIdeal| (-477 *4 *5 *6 *7))))
+ (-5 *1 (-477 *4 *5 *6 *7)) (-4 *7 (-882 *4 *5 *6)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-589 (-523))) (-5 *1 (-49 *3 *4)) (-4 *3 (-973))
- (-14 *4 (-589 (-1087)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1160 *3))
- (-5 *1 (-255 *3 *4 *2)) (-4 *2 (-1131 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-383 (-523)))) (-4 *4 (-1129 *3))
- (-5 *1 (-256 *3 *4 *2 *5)) (-4 *2 (-1152 *3 *4)) (-4 *5 (-912 *4))))
- ((*1 *1 *1) (-4 *1 (-261)))
- ((*1 *1 *1)
- (-12 (-5 *1 (-315 *2 *3 *4)) (-14 *2 (-589 (-1087)))
- (-14 *3 (-589 (-1087))) (-4 *4 (-363))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-607 *3 *4)) (-4 *3 (-786))
- (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-5 *1 (-573 *3 *4 *5))
- (-14 *5 (-852))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1073 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-37 (-383 (-523))))
- (-5 *1 (-1074 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-710)) (-4 *4 (-13 (-973) (-657 (-383 (-523)))))
- (-4 *5 (-786)) (-5 *1 (-1183 *4 *5 *2)) (-4 *2 (-1188 *5 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-1187 *3 *4))
- (-4 *4 (-657 (-383 (-523)))) (-4 *3 (-786)) (-4 *4 (-158)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-203)) (-5 *4 (-523))
- (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894)))) (-5 *2 (-962))
- (-5 *1 (-688)))))
-(((*1 *2)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-629 (-383 *4))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-794))))
- ((*1 *1 *1) (-5 *1 (-794))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-1087))) (-5 *3 (-1087)) (-5 *1 (-499))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-1087)) (-5 *1 (-644 *3)) (-4 *3 (-564 (-499)))))
- ((*1 *2 *3 *2 *2)
- (-12 (-5 *2 (-1087)) (-5 *1 (-644 *3)) (-4 *3 (-564 (-499)))))
- ((*1 *2 *3 *2 *2 *2)
- (-12 (-5 *2 (-1087)) (-5 *1 (-644 *3)) (-4 *3 (-564 (-499)))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *4 (-589 (-1087))) (-5 *2 (-1087)) (-5 *1 (-644 *3))
- (-4 *3 (-564 (-499))))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-589 (-1169 *4))) (-5 *1 (-342 *3 *4))
- (-4 *3 (-343 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-4 *3 (-515))
- (-5 *2 (-589 (-1169 *3))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-1070))) (-5 *2 (-1070)) (-5 *1 (-172))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-1086)) (-5 *1 (-306)))))
+ (-12 (-5 *2 (-591 (-591 *3))) (-4 *3 (-1018)) (-5 *1 (-1098 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-445))))
+ ((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-1172))))
+ ((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-1173)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-1171 *5))) (-5 *4 (-525)) (-5 *2 (-1171 *5))
+ (-5 *1 (-958 *5)) (-4 *5 (-341)) (-4 *5 (-346)) (-4 *5 (-975)))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-589 (-823 *3))) (-5 *1 (-823 *3))
- (-4 *3 (-1016)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3))
- (-4 *3 (-13 (-339) (-1109) (-930))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-917 *4 *5 *6 *7 *3))
- (-4 *3 (-992 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108))
- (-5 *1 (-1023 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7)))))
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1072)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-1176))
+ (-5 *1 (-919 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1072)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-1176))
+ (-5 *1 (-1025 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))))
+(((*1 *1 *1) (-12 (-5 *1 (-898 *2)) (-4 *2 (-899)))))
(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-515))
- (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3))) (-5 *1 (-1140 *4 *3))
- (-4 *3 (-1145 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-144)) (-5 *1 (-805)))))
-(((*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3)
- (-12 (-5 *5 (-629 (-203))) (-5 *6 (-629 (-523))) (-5 *3 (-523))
- (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-692)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-340 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1016)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109) (-930)))
- (-5 *1 (-161 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1136 *3)) (-4 *3 (-1123)))))
-(((*1 *1 *1) (-5 *1 (-47)))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-57 *5)) (-4 *5 (-1123))
- (-4 *2 (-1123)) (-5 *1 (-56 *5 *2))))
- ((*1 *2 *3 *1 *2 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1016)) (|has| *1 (-6 -4248))
- (-4 *1 (-140 *2)) (-4 *2 (-1123))))
- ((*1 *2 *3 *1 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4248)) (-4 *1 (-140 *2))
- (-4 *2 (-1123))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4248)) (-4 *1 (-140 *2))
- (-4 *2 (-1123))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-973))
- (-5 *2 (-2 (|:| -3764 (-1083 *4)) (|:| |deg| (-852))))
- (-5 *1 (-199 *4 *5)) (-5 *3 (-1083 *4)) (-4 *5 (-13 (-515) (-786)))))
+ (-12 (-5 *3 (-1091 (-385 (-525)))) (-5 *2 (-385 (-525)))
+ (-5 *1 (-172)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-697)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1085 *4)) (-4 *4 (-327)) (-5 *2 (-890 (-1036)))
+ (-5 *1 (-324 *4)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-822 *5 *3)) (-5 *4 (-825 *5)) (-4 *5 (-1018))
+ (-4 *3 (-154 *6)) (-4 (-885 *6) (-819 *5))
+ (-4 *6 (-13 (-819 *5) (-160))) (-5 *1 (-165 *5 *6 *3))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *2 (-822 *4 *1)) (-5 *3 (-825 *4)) (-4 *1 (-819 *4))
+ (-4 *4 (-1018))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-218 *5 *6)) (-14 *5 (-710))
- (-4 *6 (-1123)) (-4 *2 (-1123)) (-5 *1 (-217 *5 *6 *2))))
- ((*1 *1 *2 *3)
- (-12 (-4 *4 (-158)) (-5 *1 (-266 *4 *2 *3 *5 *6 *7))
- (-4 *2 (-1145 *4)) (-4 *3 (-23)) (-14 *5 (-1 *2 *2 *3))
- (-14 *6 (-1 (-3 *3 "failed") *3 *3))
- (-14 *7 (-1 (-3 *2 "failed") *2 *2 *3))))
- ((*1 *1 *1) (-12 (-5 *1 (-292 *2)) (-4 *2 (-515)) (-4 *2 (-786))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-311 *2 *3 *4 *5)) (-4 *2 (-339)) (-4 *3 (-1145 *2))
- (-4 *4 (-1145 (-383 *3))) (-4 *5 (-318 *2 *3 *4))))
+ (-12 (-5 *2 (-822 *5 *6)) (-5 *4 (-825 *5)) (-4 *5 (-1018))
+ (-4 *6 (-13 (-1018) (-966 *3))) (-4 *3 (-819 *5))
+ (-5 *1 (-864 *5 *3 *6))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1123)) (-4 *2 (-1123))
- (-5 *1 (-347 *5 *4 *2 *6)) (-4 *4 (-349 *5)) (-4 *6 (-349 *2))))
+ (-12 (-5 *2 (-822 *5 *3)) (-4 *5 (-1018))
+ (-4 *3 (-13 (-408 *6) (-566 *4) (-819 *5) (-966 (-564 $))))
+ (-5 *4 (-825 *5)) (-4 *6 (-13 (-517) (-788) (-819 *5)))
+ (-5 *1 (-865 *5 *6 *3))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1016)) (-4 *2 (-1016))
- (-5 *1 (-399 *5 *4 *2 *6)) (-4 *4 (-401 *5)) (-4 *6 (-401 *2))))
- ((*1 *1 *1) (-5 *1 (-466)))
+ (-12 (-5 *2 (-822 (-525) *3)) (-5 *4 (-825 (-525))) (-4 *3 (-510))
+ (-5 *1 (-866 *3))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-589 *5)) (-4 *5 (-1123))
- (-4 *2 (-1123)) (-5 *1 (-587 *5 *2))))
+ (-12 (-5 *2 (-822 *5 *6)) (-5 *3 (-564 *6)) (-4 *5 (-1018))
+ (-4 *6 (-13 (-788) (-966 (-564 $)) (-566 *4) (-819 *5)))
+ (-5 *4 (-825 *5)) (-5 *1 (-867 *5 *6))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-973)) (-4 *2 (-973))
- (-4 *6 (-349 *5)) (-4 *7 (-349 *5)) (-4 *8 (-349 *2))
- (-4 *9 (-349 *2)) (-5 *1 (-625 *5 *6 *7 *4 *2 *8 *9 *10))
- (-4 *4 (-627 *5 *6 *7)) (-4 *10 (-627 *2 *8 *9))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-651 *2 *3 *4 *5 *6)) (-4 *2 (-158)) (-4 *3 (-23))
- (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-973)) (-5 *1 (-652 *3 *2)) (-4 *2 (-1145 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-655 *2 *3 *4 *5 *6)) (-4 *2 (-158)) (-4 *3 (-23))
- (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-383 *4)) (-4 *4 (-1145 *3)) (-4 *3 (-339))
- (-4 *3 (-158)) (-4 *1 (-664 *3 *4))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-158)) (-4 *1 (-664 *3 *2)) (-4 *2 (-1145 *3))))
+ (-12 (-5 *2 (-818 *5 *6 *3)) (-5 *4 (-825 *5)) (-4 *5 (-1018))
+ (-4 *6 (-819 *5)) (-4 *3 (-611 *6)) (-5 *1 (-868 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2 *5)
+ (-12 (-5 *5 (-1 (-822 *6 *3) *8 (-825 *6) (-822 *6 *3)))
+ (-4 *8 (-788)) (-5 *2 (-822 *6 *3)) (-5 *4 (-825 *6))
+ (-4 *6 (-1018)) (-4 *3 (-13 (-882 *9 *7 *8) (-566 *4)))
+ (-4 *7 (-734)) (-4 *9 (-13 (-975) (-788) (-819 *6)))
+ (-5 *1 (-869 *6 *7 *8 *9 *3))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-888 *5)) (-4 *5 (-1123))
- (-4 *2 (-1123)) (-5 *1 (-887 *5 *2))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-961 *3 *4 *5 *2 *6)) (-4 *2 (-880 *3 *4 *5))
- (-14 *6 (-589 *2))))
+ (-12 (-5 *2 (-822 *5 *3)) (-4 *5 (-1018))
+ (-4 *3 (-13 (-882 *8 *6 *7) (-566 *4))) (-5 *4 (-825 *5))
+ (-4 *7 (-819 *5)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *8 (-13 (-975) (-788) (-819 *5))) (-5 *1 (-869 *5 *6 *7 *8 *3))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-973)) (-4 *2 (-973))
- (-14 *5 (-710)) (-14 *6 (-710)) (-4 *8 (-216 *6 *7))
- (-4 *9 (-216 *5 *7)) (-4 *10 (-216 *6 *2)) (-4 *11 (-216 *5 *2))
- (-5 *1 (-978 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12))
- (-4 *4 (-976 *5 *6 *7 *8 *9)) (-4 *12 (-976 *5 *6 *2 *10 *11))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1068 *5)) (-4 *5 (-1123))
- (-4 *2 (-1123)) (-5 *1 (-1066 *5 *2))))
- ((*1 *2 *2 *1 *3 *4)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-108) *2 *2))
- (-4 *1 (-1117 *5 *6 *7 *2)) (-4 *5 (-515)) (-4 *6 (-732))
- (-4 *7 (-786)) (-4 *2 (-987 *5 *6 *7))))
+ (-12 (-5 *2 (-822 *5 *3)) (-4 *5 (-1018)) (-4 *3 (-923 *6))
+ (-4 *6 (-13 (-517) (-819 *5) (-566 *4))) (-5 *4 (-825 *5))
+ (-5 *1 (-872 *5 *6 *3))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1169 *5)) (-4 *5 (-1123))
- (-4 *2 (-1123)) (-5 *1 (-1168 *5 *2)))))
-(((*1 *2)
- (-12 (-4 *1 (-325))
- (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1016)) (-4 *3 (-831 *5)) (-5 *2 (-1169 *3))
- (-5 *1 (-631 *5 *3 *6 *4)) (-4 *6 (-349 *3))
- (-4 *4 (-13 (-349 *5) (-10 -7 (-6 -4248)))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-333 *4))
- (-4 *4 (-325)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1070)) (-5 *2 (-355)) (-5 *1 (-725)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1083 *4)) (-4 *4 (-325))
- (-5 *2 (-1169 (-589 (-2 (|:| -2058 *4) (|:| -2557 (-1034))))))
- (-5 *1 (-322 *4)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523)))))))
- (-5 *1 (-1042 *3 *2)) (-4 *3 (-1145 *2)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1016)) (-5 *1 (-98 *3))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-98 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-1110 *3))) (-5 *1 (-1110 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-234)))))
+ (-12 (-5 *2 (-822 *5 (-1089))) (-5 *3 (-1089)) (-5 *4 (-825 *5))
+ (-4 *5 (-1018)) (-5 *1 (-873 *5))))
+ ((*1 *2 *3 *4 *5 *2 *6)
+ (-12 (-5 *4 (-591 (-825 *7))) (-5 *5 (-1 *9 (-591 *9)))
+ (-5 *6 (-1 (-822 *7 *9) *9 (-825 *7) (-822 *7 *9))) (-4 *7 (-1018))
+ (-4 *9 (-13 (-975) (-566 (-825 *7)) (-966 *8))) (-5 *2 (-822 *7 *9))
+ (-5 *3 (-591 *9)) (-4 *8 (-13 (-975) (-788)))
+ (-5 *1 (-874 *7 *8 *9)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087))
- (-4 *5 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2
- (-2 (|:| |func| *3) (|:| |kers| (-589 (-562 *3)))
- (|:| |vals| (-589 *3))))
- (-5 *1 (-254 *5 *3)) (-4 *3 (-13 (-27) (-1109) (-406 *5))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-562 *6)) (-4 *6 (-13 (-406 *5) (-27) (-1109)))
- (-4 *5 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *2 (-1083 (-383 (-1083 *6)))) (-5 *1 (-519 *5 *6 *7))
- (-5 *3 (-1083 *6)) (-4 *7 (-1016))))
+ (|partial| -12 (-4 *3 (-25)) (-4 *3 (-788)) (-5 *2 (-591 *1))
+ (-4 *1 (-408 *3))))
((*1 *2 *1)
- (-12 (-4 *2 (-1145 *3)) (-5 *1 (-652 *3 *2)) (-4 *3 (-973))))
+ (|partial| -12 (-5 *2 (-591 (-825 *3))) (-5 *1 (-825 *3))
+ (-4 *3 (-1018))))
((*1 *2 *1)
- (-12 (-4 *1 (-664 *3 *2)) (-4 *3 (-158)) (-4 *2 (-1145 *3))))
- ((*1 *2 *3 *4 *4 *5 *6 *7 *8)
- (|partial| -12 (-5 *4 (-1083 *11)) (-5 *6 (-589 *10))
- (-5 *7 (-589 (-710))) (-5 *8 (-589 *11)) (-4 *10 (-786))
- (-4 *11 (-284)) (-4 *9 (-732)) (-4 *5 (-880 *11 *9 *10))
- (-5 *2 (-589 (-1083 *5))) (-5 *1 (-682 *9 *10 *11 *5))
- (-5 *3 (-1083 *5))))
+ (|partial| -12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *2 (-591 *1)) (-4 *1 (-882 *3 *4 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-975))
+ (-4 *7 (-882 *6 *4 *5)) (-5 *2 (-591 *3))
+ (-5 *1 (-883 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-341)
+ (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $))
+ (-15 -1754 (*7 $))))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-907 *3 *4 *2 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-989 *3 *4 *2)) (-4 *2 (-788))))
((*1 *2 *1)
- (-12 (-4 *2 (-880 *3 *4 *5)) (-5 *1 (-961 *3 *4 *5 *2 *6))
- (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-14 *6 (-589 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-1002 *3)) (-4 *3 (-125)))))
-(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-355)) (-5 *1 (-985)))))
-(((*1 *1 *1) (-5 *1 (-985))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-1070)) (-4 *6 (-427)) (-4 *7 (-732)) (-4 *8 (-786))
- (-4 *4 (-987 *6 *7 *8)) (-5 *2 (-1174))
- (-5 *1 (-715 *6 *7 *8 *4 *5)) (-4 *5 (-992 *6 *7 *8 *4)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-443)) (-5 *4 (-852)) (-5 *2 (-1174)) (-5 *1 (-1170)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5
- (-1 (-2 (|:| |ans| *6) (|:| -2438 *6) (|:| |sol?| (-108))) (-523)
- *6))
- (-4 *6 (-339)) (-4 *7 (-1145 *6))
- (-5 *2 (-2 (|:| |answer| (-540 (-383 *7))) (|:| |a0| *6)))
- (-5 *1 (-533 *6 *7)) (-5 *3 (-383 *7)))))
+ (-12 (-4 *1 (-989 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *2 (-788)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1156 *3 *4 *5)) (-5 *1 (-297 *3 *4 *5))
+ (-4 *3 (-13 (-341) (-788))) (-14 *4 (-1089)) (-14 *5 *3)))
+ ((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-525))))
+ ((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-396 *3)) (-4 *3 (-517))))
+ ((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-640))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-1018)) (-5 *1 (-655 *3 *2 *4)) (-4 *3 (-788))
+ (-14 *4
+ (-1 (-108) (-2 (|:| -2226 *3) (|:| -2008 *2))
+ (-2 (|:| -2226 *3) (|:| -2008 *2)))))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-591 (-876 (-205))))) (-5 *1 (-445)))))
+(((*1 *2 *1)
+ (-12 (-14 *3 (-591 (-1089))) (-4 *4 (-160))
+ (-14 *6
+ (-1 (-108) (-2 (|:| -2226 *5) (|:| -2008 *2))
+ (-2 (|:| -2226 *5) (|:| -2008 *2))))
+ (-4 *2 (-218 (-4045 *3) (-712))) (-5 *1 (-438 *3 *4 *5 *2 *6 *7))
+ (-4 *5 (-788)) (-4 *7 (-882 *4 *2 (-798 *3))))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-290)) (-5 *1 (-770)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *5 (-923 *4))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-133 *4 *5 *3))
+ (-4 *3 (-351 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *5 (-923 *4))
+ (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4)))
+ (-5 *1 (-476 *4 *5 *6 *3)) (-4 *6 (-351 *4)) (-4 *3 (-351 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-631 *5)) (-4 *5 (-923 *4)) (-4 *4 (-517))
+ (-5 *2 (-2 (|:| |num| (-631 *4)) (|:| |den| *4)))
+ (-5 *1 (-634 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-341) (-138) (-966 (-385 (-525)))))
+ (-4 *6 (-1147 *5))
+ (-5 *2 (-2 (|:| -1317 *7) (|:| |rh| (-591 (-385 *6)))))
+ (-5 *1 (-748 *5 *6 *7 *3)) (-5 *4 (-591 (-385 *6)))
+ (-4 *7 (-601 *6)) (-4 *3 (-601 (-385 *6)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *5 (-923 *4))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1140 *4 *5 *3))
+ (-4 *3 (-1147 *5)))))
+(((*1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1070 *3)) (-4 *3 (-1018))
+ (-4 *3 (-1125)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *2)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1018)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089))))
+ (-4 *6 (-734)) (-5 *2 (-591 (-591 (-525))))
+ (-5 *1 (-857 *4 *5 *6 *7)) (-5 *3 (-525)) (-4 *7 (-882 *4 *6 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-1147 *2)) (-4 *2 (-1147 *4)) (-5 *1 (-916 *4 *2 *3 *5))
+ (-4 *4 (-327)) (-4 *5 (-666 *2 *3)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23))
+ (-14 *4 *3))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1145 *5)) (-4 *5 (-339))
+ (-12 (-5 *3 (-591 (-721 *5 (-798 *6)))) (-5 *4 (-108)) (-4 *5 (-429))
+ (-14 *6 (-591 (-1089)))
(-5 *2
- (-2 (|:| |ir| (-540 (-383 *6))) (|:| |specpart| (-383 *6))
- (|:| |polypart| *6)))
- (-5 *1 (-533 *5 *6)) (-5 *3 (-383 *6)))))
-(((*1 *1 *2) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-196)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-772 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-779 *3)) (-4 *3 (-1016)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-284)) (-4 *3 (-921 *2)) (-4 *4 (-1145 *3))
- (-5 *1 (-389 *2 *3 *4 *5)) (-4 *5 (-13 (-385 *3 *4) (-964 *3))))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-136)) (-4 *2 (-284)) (-4 *2 (-427)) (-4 *3 (-786))
- (-4 *4 (-732)) (-5 *1 (-916 *2 *3 *4 *5)) (-4 *5 (-880 *2 *4 *3))))
- ((*1 *2 *3) (-12 (-5 *3 (-47)) (-5 *2 (-292 (-523))) (-5 *1 (-1033))))
+ (-591 (-1060 *5 (-497 (-798 *6)) (-798 *6) (-721 *5 (-798 *6)))))
+ (-5 *1 (-576 *5 *6)))))
+(((*1 *2)
+ (-12 (-4 *3 (-517)) (-5 *2 (-591 (-631 *3))) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-395 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *1 *1) (-4 *1 (-466)))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160)))))
+(((*1 *1 *1 *1) (-4 *1 (-134)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-147 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *1 (-148 *2)) (-4 *2 (-510)))))
+(((*1 *2)
+ (-12 (-4 *3 (-517)) (-5 *2 (-591 *4)) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-395 *3)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-591 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525))))))
+ (-5 *2 (-591 (-205))) (-5 *1 (-284)))))
+(((*1 *2 *3 *4 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-157 (-205)))) (-5 *2 (-964))
+ (-5 *1 (-698)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-523)) (-5 *4 (-394 *2)) (-4 *2 (-880 *7 *5 *6))
- (-5 *1 (-682 *5 *6 *7 *2)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-284)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-761)))))
-(((*1 *2 *3)
- (-12 (-4 *2 (-339)) (-4 *2 (-784)) (-5 *1 (-876 *2 *3))
- (-4 *3 (-1145 *2)))))
-(((*1 *2) (-12 (-5 *2 (-1059 (-1070))) (-5 *1 (-367)))))
+ (-12 (-5 *3 (-1085 *5)) (-4 *5 (-429)) (-5 *2 (-591 *6))
+ (-5 *1 (-503 *5 *6 *4)) (-4 *6 (-341)) (-4 *4 (-13 (-341) (-786)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-885 *5)) (-4 *5 (-429)) (-5 *2 (-591 *6))
+ (-5 *1 (-503 *5 *6 *4)) (-4 *6 (-341)) (-4 *4 (-13 (-341) (-786))))))
+(((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-281)) (-5 *3 (-1089)) (-5 *2 (-108))))
+ ((*1 *2 *1 *1) (-12 (-4 *1 (-281)) (-5 *2 (-108)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089)))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-365))))
+ ((*1 *1 *1) (-4 *1 (-466)))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-689)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-556 *2 *3)) (-4 *3 (-1123)) (-4 *2 (-1016))
- (-4 *2 (-786)))))
-(((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-442))))
- ((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-442))))
- ((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-858)))))
-(((*1 *2 *1) (-12 (-4 *1 (-616 *3)) (-4 *3 (-1123)) (-5 *2 (-108)))))
-(((*1 *2 *3 *2)
- (|partial| -12 (-5 *2 (-1169 *4)) (-5 *3 (-629 *4)) (-4 *4 (-339))
- (-5 *1 (-610 *4))))
- ((*1 *2 *3 *2)
- (|partial| -12 (-4 *4 (-339))
- (-4 *5 (-13 (-349 *4) (-10 -7 (-6 -4249))))
- (-4 *2 (-13 (-349 *4) (-10 -7 (-6 -4249))))
- (-5 *1 (-611 *4 *5 *2 *3)) (-4 *3 (-627 *4 *5 *2))))
- ((*1 *2 *3 *2 *4 *5)
- (|partial| -12 (-5 *4 (-589 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-339))
- (-5 *1 (-753 *2 *3)) (-4 *3 (-599 *2))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-339) (-10 -8 (-15 ** ($ $ (-383 (-523)))))))
- (-5 *1 (-1042 *3 *2)) (-4 *3 (-1145 *2)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-394 *4)) (-4 *4 (-515)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794))))
- ((*1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-271 (-772 *3)))
- (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-772 *3)) (-5 *1 (-582 *5 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-271 (-772 (-883 *5)))) (-4 *5 (-427))
- (-5 *2 (-772 (-383 (-883 *5)))) (-5 *1 (-583 *5))
- (-5 *3 (-383 (-883 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-271 (-383 (-883 *5)))) (-5 *3 (-383 (-883 *5)))
- (-4 *5 (-427)) (-5 *2 (-772 *3)) (-5 *1 (-583 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-339)) (-4 *6 (-1145 (-383 *2)))
- (-4 *2 (-1145 *5)) (-5 *1 (-194 *5 *2 *6 *3))
- (-4 *3 (-318 *5 *2 *6)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-880 *4 *5 *6)) (-4 *4 (-284))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-422 *4 *5 *6 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *4 (-339)) (-5 *2 (-589 (-1068 *4))) (-5 *1 (-262 *4 *5))
- (-5 *3 (-1068 *4)) (-4 *5 (-1160 *4)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-339)) (-5 *1 (-706 *2 *3)) (-4 *2 (-648 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-710)) (-5 *1 (-722 *2)) (-4 *2 (-37 (-383 (-523))))
- (-4 *2 (-158)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203))
- (-5 *2 (-962)) (-5 *1 (-692)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1052 *3 *2)) (-4 *3 (-13 (-1016) (-33)))
- (-4 *2 (-13 (-1016) (-33))))))
-(((*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1 (-355))) (-5 *1 (-966)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-339)) (-5 *1 (-262 *3 *2)) (-4 *2 (-1160 *3)))))
+ (-12 (-4 *3 (-975)) (-5 *2 (-1171 *3)) (-5 *1 (-654 *3 *4))
+ (-4 *4 (-1147 *3)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)) (-5 *3 (-523)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 *5)) (-4 *5 (-158)) (-5 *1 (-128 *3 *4 *5))
- (-14 *3 (-523)) (-14 *4 (-710)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
+ (-12 (-5 *3 (-631 *4)) (-4 *4 (-341)) (-5 *2 (-1085 *4))
+ (-5 *1 (-498 *4 *5 *6)) (-4 *5 (-341)) (-4 *6 (-13 (-341) (-786))))))
+(((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-236)))))
(((*1 *2)
- (-12 (-4 *3 (-515)) (-5 *2 (-589 (-629 *3))) (-5 *1 (-42 *3 *4))
- (-4 *4 (-393 *3)))))
+ (-12 (-4 *3 (-517)) (-5 *2 (-591 *4)) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-395 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (|has| *2 (-6 (-4252 "*"))) (-4 *5 (-351 *2)) (-4 *6 (-351 *2))
+ (-4 *2 (-975)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1147 *2))
+ (-4 *4 (-629 *2 *5 *6)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-157 (-205))) (-5 *5 (-525)) (-5 *6 (-1072))
+ (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-341)) (-4 *3 (-734)) (-4 *4 (-788))
+ (-5 *1 (-477 *2 *3 *4 *5)) (-4 *5 (-882 *2 *3 *4)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-591 *5)) (-5 *4 (-525)) (-4 *5 (-786)) (-4 *5 (-341))
+ (-5 *2 (-712)) (-5 *1 (-878 *5 *6)) (-4 *6 (-1147 *5)))))
(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1087)) (-5 *1 (-540 *2)) (-4 *2 (-964 *3))
- (-4 *2 (-339))))
- ((*1 *1 *2 *2) (-12 (-5 *1 (-540 *2)) (-4 *2 (-339))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-786) (-515))) (-5 *1 (-576 *4 *2))
- (-4 *2 (-13 (-406 *4) (-930) (-1109)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1009 *2)) (-4 *2 (-13 (-406 *4) (-930) (-1109)))
- (-4 *4 (-13 (-786) (-515))) (-5 *1 (-576 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-889)) (-5 *2 (-1087))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1009 *1)) (-4 *1 (-889)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-358 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1016))
- (-5 *2 (-589 (-2 (|:| |k| *4) (|:| |c| *3))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-589 (-2 (|:| |k| (-824 *3)) (|:| |c| *4))))
- (-5 *1 (-573 *3 *4 *5)) (-4 *3 (-786))
- (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-14 *5 (-852))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-589 (-614 *3))) (-5 *1 (-824 *3)) (-4 *3 (-786)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-1087))
- (-4 *6 (-13 (-786) (-284) (-964 (-523)) (-585 (-523)) (-136)))
- (-4 *4 (-13 (-29 *6) (-1109) (-889)))
- (-5 *2 (-2 (|:| |particular| *4) (|:| -2922 (-589 *4))))
- (-5 *1 (-740 *6 *4 *3)) (-4 *3 (-599 *4)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *1) (-12 (-4 *1 (-513 *2)) (-4 *2 (-13 (-380) (-1109)))))
- ((*1 *1 *1 *1) (-4 *1 (-732))))
-(((*1 *2 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *2)) (-4 *2 (-158))))
- ((*1 *2) (-12 (-4 *2 (-158)) (-5 *1 (-392 *3 *2)) (-4 *3 (-393 *2))))
- ((*1 *2) (-12 (-4 *1 (-393 *2)) (-4 *2 (-158)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1016)) (-4 *1 (-213 *3))))
- ((*1 *1) (-12 (-4 *1 (-213 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-710))
- (-4 *3 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $)))))
- (-4 *4 (-1145 *3)) (-5 *1 (-470 *3 *4 *5)) (-4 *5 (-385 *3 *4)))))
+ (-12 (-5 *1 (-405 *3 *2)) (-4 *3 (-13 (-160) (-37 (-385 (-525)))))
+ (-4 *2 (-13 (-788) (-21))))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-1072)) (-4 *1 (-342 *2 *4)) (-4 *2 (-1018))
+ (-4 *4 (-1018))))
+ ((*1 *1 *2)
+ (-12 (-4 *1 (-342 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))))
+(((*1 *2 *1) (-12 (-5 *2 (-169)) (-5 *1 (-259)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-420 *3)) (-4 *3 (-380)) (-4 *3 (-973))))
- ((*1 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-420 *3)) (-4 *3 (-380)) (-4 *3 (-973)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1145 *2)) (-4 *2 (-1127)) (-5 *1 (-137 *2 *4 *3))
- (-4 *3 (-1145 (-383 *4))))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 (-383 (-523))))
- (-5 *2
- (-589
- (-2 (|:| |outval| *4) (|:| |outmult| (-523))
- (|:| |outvect| (-589 (-629 *4))))))
- (-5 *1 (-718 *4)) (-4 *4 (-13 (-339) (-784))))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-589 (-874 (-203))))) (-5 *1 (-443)))))
-(((*1 *2)
(-12
(-5 *2
- (-1169 (-589 (-2 (|:| -2058 (-841 *3)) (|:| -2557 (-1034))))))
- (-5 *1 (-327 *3 *4)) (-14 *3 (-852)) (-14 *4 (-852))))
- ((*1 *2)
- (-12 (-5 *2 (-1169 (-589 (-2 (|:| -2058 *3) (|:| -2557 (-1034))))))
- (-5 *1 (-328 *3 *4)) (-4 *3 (-325)) (-14 *4 (-3 (-1083 *3) *2))))
- ((*1 *2)
- (-12 (-5 *2 (-1169 (-589 (-2 (|:| -2058 *3) (|:| -2557 (-1034))))))
- (-5 *1 (-329 *3 *4)) (-4 *3 (-325)) (-14 *4 (-852)))))
-(((*1 *1 *1) (-4 *1 (-132)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-145 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *2 *2) (-12 (-5 *1 (-146 *2)) (-4 *2 (-508)))))
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4)
+ (|:| |xpnt| (-525))))
+ (-4 *4 (-13 (-1147 *3) (-517) (-10 -8 (-15 -1399 ($ $ $)))))
+ (-4 *3 (-517)) (-5 *1 (-1150 *3 *4)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-515) (-136))) (-5 *1 (-500 *3 *2))
- (-4 *2 (-1160 *3))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-339) (-344) (-564 (-523)))) (-4 *4 (-1145 *3))
- (-4 *5 (-664 *3 *4)) (-5 *1 (-504 *3 *4 *5 *2)) (-4 *2 (-1160 *5))))
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-339) (-344) (-564 (-523)))) (-5 *1 (-505 *3 *2))
- (-4 *2 (-1160 *3))))
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089)))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-365))))
+ ((*1 *1 *1) (-4 *1 (-466)))
((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-13 (-515) (-136)))
- (-5 *1 (-1064 *3)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-710)) (-4 *2 (-1016))
- (-5 *1 (-619 *2)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-589 *6)) (-4 *6 (-786)) (-4 *4 (-339)) (-4 *5 (-732))
- (-5 *1 (-475 *4 *5 *6 *2)) (-4 *2 (-880 *4 *5 *6))))
- ((*1 *1 *1 *2)
- (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *1 (-475 *3 *4 *5 *2)) (-4 *2 (-880 *3 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *2 (-108)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-699)))))
-(((*1 *2 *3 *4 *5 *3 *6 *3)
- (-12 (-5 *3 (-523)) (-5 *5 (-155 (-203))) (-5 *6 (-1070))
- (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *1 *1) (-4 *1 (-982)))
- ((*1 *1 *1 *2 *2)
- (-12 (-4 *1 (-1147 *3 *2)) (-4 *3 (-973)) (-4 *2 (-731))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1147 *3 *2)) (-4 *3 (-973)) (-4 *2 (-731)))))
-(((*1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-768)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4))))
- (-5 *1 (-993 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-589 (-2 (|:| |totdeg| (-710)) (|:| -3764 *3))))
- (-5 *4 (-710)) (-4 *3 (-880 *5 *6 *7)) (-4 *5 (-427)) (-4 *6 (-732))
- (-4 *7 (-786)) (-5 *1 (-424 *5 *6 *7 *3)))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-427)) (-4 *4 (-515))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| -1249 *4))) (-5 *1 (-899 *4 *3))
- (-4 *3 (-1145 *4)))))
+ (-12 (-4 *4 (-13 (-341) (-138) (-966 (-525)))) (-4 *5 (-1147 *4))
+ (-5 *2 (-2 (|:| |ans| (-385 *5)) (|:| |nosol| (-108))))
+ (-5 *1 (-945 *4 *5)) (-5 *3 (-385 *5)))))
+(((*1 *2 *1) (-12 (-4 *3 (-975)) (-5 *2 (-591 *1)) (-4 *1 (-1050 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-108)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1068 (-383 *3))) (-5 *1 (-159 *3)) (-4 *3 (-284)))))
-(((*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-420 *3)) (-4 *3 (-973)))))
-(((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-133)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-515))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2210 *4)))
- (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-508))))
+ (-12 (-4 *1 (-232 *3 *4 *2 *5)) (-4 *3 (-975)) (-4 *4 (-788))
+ (-4 *5 (-734)) (-4 *2 (-245 *4)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-786)) (-4 *5 (-840)) (-4 *6 (-732))
- (-4 *8 (-880 *5 *6 *7)) (-5 *2 (-394 (-1083 *8)))
- (-5 *1 (-837 *5 *6 *7 *8)) (-5 *4 (-1083 *8))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-840)) (-4 *5 (-1145 *4)) (-5 *2 (-394 (-1083 *5)))
- (-5 *1 (-838 *4 *5)) (-5 *3 (-1083 *5)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1087)) (-5 *3 (-410)) (-4 *5 (-786))
- (-5 *1 (-1022 *5 *4)) (-4 *4 (-406 *5)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-852)) (-5 *3 (-589 (-240))) (-5 *1 (-238))))
- ((*1 *1 *2) (-12 (-5 *2 (-852)) (-5 *1 (-240)))))
-(((*1 *2 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-1070)) (-5 *5 (-629 (-203)))
- (-5 *2 (-962)) (-5 *1 (-687)))))
+ (-12 (-5 *3 (-3 (-385 (-885 *5)) (-1079 (-1089) (-885 *5))))
+ (-4 *5 (-429)) (-5 *2 (-591 (-631 (-385 (-885 *5)))))
+ (-5 *1 (-271 *5)) (-5 *4 (-631 (-385 (-885 *5)))))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-712)) (-5 *3 (-876 *4)) (-4 *1 (-1050 *4))
+ (-4 *4 (-975))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-712)) (-5 *4 (-876 (-205))) (-5 *2 (-1176))
+ (-5 *1 (-1173)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-333 *4))
- (-4 *4 (-325)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1087)) (-4 *5 (-339)) (-5 *2 (-1068 (-1068 (-883 *5))))
- (-5 *1 (-1177 *5)) (-5 *4 (-1068 (-883 *5))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-128 *5 *6 *7)) (-14 *5 (-523))
- (-14 *6 (-710)) (-4 *7 (-158)) (-4 *8 (-158))
- (-5 *2 (-128 *5 *6 *8)) (-5 *1 (-127 *5 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *9)) (-4 *9 (-973)) (-4 *5 (-786)) (-4 *6 (-732))
- (-4 *8 (-973)) (-4 *2 (-880 *9 *7 *5))
- (-5 *1 (-668 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-732))
- (-4 *4 (-880 *8 *6 *5)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
+ (-12 (-5 *2 (-396 (-1085 *1))) (-5 *1 (-294 *4)) (-5 *3 (-1085 *1))
+ (-4 *4 (-429)) (-4 *4 (-517)) (-4 *4 (-788))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-842)) (-5 *2 (-396 (-1085 *1))) (-5 *3 (-1085 *1)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517))
+ (-5 *2 (-108)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-132))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-135)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-876 *4))) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854))
+ (-4 *4 (-975)))))
(((*1 *2)
- (-12 (-4 *3 (-515)) (-5 *2 (-589 *4)) (-5 *1 (-42 *3 *4))
- (-4 *4 (-393 *3)))))
-(((*1 *1) (-5 *1 (-742))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-629 (-523))) (-5 *1 (-1026)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-710)) (-4 *4 (-325)) (-5 *1 (-195 *4 *2))
- (-4 *2 (-1145 *4)))))
+ (-12 (-4 *3 (-517)) (-5 *2 (-591 (-631 *3))) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-395 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-859)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-544 *4))
+ (-4 *4 (-327)))))
+(((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-135)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1089)) (-4 *5 (-1129)) (-4 *6 (-1147 *5))
+ (-4 *7 (-1147 (-385 *6))) (-5 *2 (-591 (-885 *5)))
+ (-5 *1 (-319 *4 *5 *6 *7)) (-4 *4 (-320 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1089)) (-4 *1 (-320 *4 *5 *6)) (-4 *4 (-1129))
+ (-4 *5 (-1147 *4)) (-4 *6 (-1147 (-385 *5))) (-4 *4 (-341))
+ (-5 *2 (-591 (-885 *4))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))))
+(((*1 *2 *1) (-12 (-5 *1 (-847 *2)) (-4 *2 (-286)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-525) (-525))) (-5 *1 (-339 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-712) (-712))) (-5 *1 (-364 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4)
+ (-5 *1 (-594 *3 *4 *5)) (-4 *3 (-1018)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-169)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-631 *5)) (-4 *5 (-975)) (-5 *1 (-979 *3 *4 *5))
+ (-14 *3 (-712)) (-14 *4 (-712)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-325)) (-4 *4 (-305 *3)) (-4 *5 (-1145 *4))
- (-5 *1 (-716 *3 *4 *5 *2 *6)) (-4 *2 (-1145 *5)) (-14 *6 (-852))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429)) (-4 *5 (-734))
+ (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-286)) (-5 *2 (-108)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-396 *4)) (-4 *4 (-517)))))
+(((*1 *1 *1) (-5 *1 (-987))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-1154 *3 *2)) (-4 *3 (-975))
+ (-4 *2 (-1131 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-591 (-591 (-159)))))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-157 (-205))) (-5 *5 (-525)) (-5 *6 (-1072))
+ (-5 *3 (-205)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-55 *2 *3 *4)) (-4 *2 (-1125)) (-4 *3 (-351 *2))
+ (-4 *4 (-351 *2))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-1186 *3)) (-4 *3 (-339)) (-4 *3 (-344))))
- ((*1 *1 *1) (-12 (-4 *1 (-1186 *2)) (-4 *2 (-339)) (-4 *2 (-344)))))
-(((*1 *2 *1) (-12 (-5 *1 (-953 *2)) (-4 *2 (-1123)))))
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-558 *3 *2)) (-4 *3 (-1018))
+ (-4 *2 (-1125)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1070 *3)) (-5 *1 (-161 *3)) (-4 *3 (-286)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-510))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-327)) (-5 *2 (-396 (-1085 (-1085 *4))))
+ (-5 *1 (-1124 *4)) (-5 *3 (-1085 (-1085 *4))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-589 (-874 *3))))))
-(((*1 *1 *1) (-4 *1 (-800 *2))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5)))))
+ (-12 (-5 *2 (-591 (-2 (|:| |k| (-616 *3)) (|:| |c| *4))))
+ (-5 *1 (-575 *3 *4 *5)) (-4 *3 (-788))
+ (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-14 *5 (-854)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-591 (-876 (-205))))) (-5 *2 (-591 (-205)))
+ (-5 *1 (-445)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-515)) (-5 *1 (-40 *3 *2))
- (-4 *2
- (-13 (-339) (-279)
- (-10 -8 (-15 -2164 ((-1039 *3 (-562 $)) $))
- (-15 -2171 ((-1039 *3 (-562 $)) $))
- (-15 -3976 ($ (-1039 *3 (-562 $)))))))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-515)) (-5 *1 (-40 *3 *2))
- (-4 *2
- (-13 (-339) (-279)
- (-10 -8 (-15 -2164 ((-1039 *3 (-562 $)) $))
- (-15 -2171 ((-1039 *3 (-562 $)) $))
- (-15 -3976 ($ (-1039 *3 (-562 $)))))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 *2))
- (-4 *2
- (-13 (-339) (-279)
- (-10 -8 (-15 -2164 ((-1039 *4 (-562 $)) $))
- (-15 -2171 ((-1039 *4 (-562 $)) $))
- (-15 -3976 ($ (-1039 *4 (-562 $)))))))
- (-4 *4 (-515)) (-5 *1 (-40 *4 *2))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 (-562 *2)))
- (-4 *2
- (-13 (-339) (-279)
- (-10 -8 (-15 -2164 ((-1039 *4 (-562 $)) $))
- (-15 -2171 ((-1039 *4 (-562 $)) $))
- (-15 -3976 ($ (-1039 *4 (-562 $)))))))
- (-4 *4 (-515)) (-5 *1 (-40 *4 *2)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-589 (-523))) (-5 *3 (-108)) (-5 *1 (-1026)))))
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1087)) (-5 *2 (-589 (-895))) (-5 *1 (-268)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-133)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-589 *5)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-523))
- (-14 *4 (-710)) (-4 *5 (-158)))))
-(((*1 *2 *3 *4 *5 *5 *4 *6)
- (-12 (-5 *5 (-562 *4)) (-5 *6 (-1083 *4))
- (-4 *4 (-13 (-406 *7) (-27) (-1109)))
- (-4 *7 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4))))
- (-5 *1 (-519 *7 *4 *3)) (-4 *3 (-599 *4)) (-4 *3 (-1016))))
- ((*1 *2 *3 *4 *5 *5 *5 *4 *6)
- (-12 (-5 *5 (-562 *4)) (-5 *6 (-383 (-1083 *4)))
- (-4 *4 (-13 (-406 *7) (-27) (-1109)))
- (-4 *7 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4))))
- (-5 *1 (-519 *7 *4 *3)) (-4 *3 (-599 *4)) (-4 *3 (-1016)))))
-(((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1174)) (-5 *1 (-355)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-589 (-710)))) (-5 *1 (-835 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1169 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-339))
- (-4 *1 (-664 *5 *6)) (-4 *5 (-158)) (-4 *6 (-1145 *5))
- (-5 *2 (-629 *5)))))
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-591 *1))
+ (-4 *1 (-994 *4 *5 *6 *3)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-510)) (-5 *2 (-108)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-4 *1 (-352 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-160))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-4 *1 (-1190 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-975)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 *5)) (-4 *5 (-406 *4)) (-4 *4 (-13 (-786) (-515)))
- (-5 *2 (-794)) (-5 *1 (-31 *4 *5)))))
+ (-12 (-4 *4 (-327)) (-5 *2 (-396 (-1085 (-1085 *4))))
+ (-5 *1 (-1124 *4)) (-5 *3 (-1085 (-1085 *4))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-1169 (-629 *4))) (-5 *1 (-88 *4 *5))
- (-5 *3 (-629 *4)) (-4 *5 (-599 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-523)) (-5 *2 (-589 (-2 (|:| -3573 *3) (|:| -1487 *4))))
- (-5 *1 (-635 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *1 *2 *2)
(-12
- (-5 *2
- (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355)))
- (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086))))
- (-5 *1 (-1086)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-629 *2)) (-5 *4 (-710))
- (-4 *2 (-13 (-284) (-10 -8 (-15 -2105 ((-394 $) $)))))
- (-4 *5 (-1145 *2)) (-5 *1 (-470 *2 *5 *6)) (-4 *6 (-385 *2 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1169 *1)) (-4 *1 (-346 *4 *5)) (-4 *4 (-158))
- (-4 *5 (-1145 *4)) (-5 *2 (-629 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-158)) (-4 *5 (-1145 *4)) (-5 *2 (-629 *4))
- (-5 *1 (-384 *3 *4 *5)) (-4 *3 (-385 *4 *5))))
- ((*1 *2)
- (-12 (-4 *1 (-385 *3 *4)) (-4 *3 (-158)) (-4 *4 (-1145 *3))
- (-5 *2 (-629 *3)))))
+ (-5 *3
+ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205))
+ (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205)))
+ (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205)))
+ (|:| |abserr| (-205)) (|:| |relerr| (-205))))
+ (-5 *2 (-357)) (-5 *1 (-187)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 (-591 *5))) (-4 *5 (-1162 *4))
+ (-4 *4 (-37 (-385 (-525))))
+ (-5 *2 (-1 (-1070 *4) (-591 (-1070 *4)))) (-5 *1 (-1164 *4 *5)))))
+(((*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-788)))))
+(((*1 *2 *1) (-12 (-5 *2 (-902)) (-5 *1 (-838 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-4 *3 (-346))
+ (-5 *2 (-1085 *3)))))
+(((*1 *1) (-5 *1 (-135)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-242))) (-5 *2 (-1049 (-205))) (-5 *1 (-240))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1049 (-205))) (-5 *1 (-242)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-975)) (-4 *4 (-1018)) (-5 *2 (-591 *1))
+ (-4 *1 (-360 *3 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-677 *3 *4))) (-5 *1 (-677 *3 *4)) (-4 *3 (-975))
+ (-4 *4 (-668))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *1))
+ (-4 *1 (-882 *3 *4 *5)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-591 *6)) (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5))
+ (-4 *3 (-517)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1089 (-383 (-523)))) (-5 *1 (-170)) (-5 *3 (-523)))))
-(((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-92)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-589 (-562 *2))) (-5 *4 (-589 (-1087)))
- (-4 *2 (-13 (-406 (-155 *5)) (-930) (-1109)))
- (-4 *5 (-13 (-515) (-786))) (-5 *1 (-552 *5 *6 *2))
- (-4 *6 (-13 (-406 *5) (-930) (-1109))))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-909 *2)) (-4 *2 (-973))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-874 (-203))) (-5 *1 (-1120))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1167 *2)) (-4 *2 (-1123)) (-4 *2 (-973)))))
+ (-12 (-5 *3 (-294 (-205))) (-5 *2 (-294 (-385 (-525))))
+ (-5 *1 (-284)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1163 *2 *3 *4)) (-4 *2 (-975)) (-14 *3 (-1089))
+ (-14 *4 *2))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-108))
- (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
+ (-12 (-5 *3 (-631 *8)) (-5 *4 (-712)) (-4 *8 (-882 *5 *7 *6))
+ (-4 *5 (-13 (-286) (-138))) (-4 *6 (-13 (-788) (-566 (-1089))))
+ (-4 *7 (-734))
(-5 *2
- (-3 (|:| |%expansion| (-289 *5 *3 *6 *7))
- (|:| |%problem| (-2 (|:| |func| (-1070)) (|:| |prob| (-1070))))))
- (-5 *1 (-396 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1109) (-406 *5)))
- (-14 *6 (-1087)) (-14 *7 *3))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-1068 *3))) (-5 *1 (-1068 *3)) (-4 *3 (-1123)))))
-(((*1 *2 *1) (-12 (-4 *1 (-365)) (-5 *2 (-1070)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-230 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-786))
- (-4 *5 (-243 *4)) (-4 *6 (-732)) (-5 *2 (-589 *4)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814)) (-5 *3 (-523))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814)) (-5 *3 (-523))))
+ (-591
+ (-2 (|:| |det| *8) (|:| |rows| (-591 (-525)))
+ (|:| |cols| (-591 (-525))))))
+ (-5 *1 (-857 *5 *6 *7 *8)))))
+(((*1 *1 *1) (-4 *1 (-606))) ((*1 *1 *1) (-5 *1 (-1036))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-591 (-631 *6))) (-5 *4 (-108)) (-5 *5 (-525))
+ (-5 *2 (-631 *6)) (-5 *1 (-958 *6)) (-4 *6 (-341)) (-4 *6 (-975))))
((*1 *2 *3 *3)
- (-12 (-5 *2 (-1068 (-589 (-523)))) (-5 *1 (-814)) (-5 *3 (-523)))))
+ (-12 (-5 *3 (-591 (-631 *4))) (-5 *2 (-631 *4)) (-5 *1 (-958 *4))
+ (-4 *4 (-341)) (-4 *4 (-975))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-591 (-631 *5))) (-5 *4 (-525)) (-5 *2 (-631 *5))
+ (-5 *1 (-958 *5)) (-4 *5 (-341)) (-4 *5 (-975)))))
+(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-357)) (-5 *3 (-1072)) (-5 *1 (-92))))
+ ((*1 *2 *3 *2) (-12 (-5 *2 (-357)) (-5 *3 (-1072)) (-5 *1 (-92)))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-341)) (-4 *4 (-351 *3)) (-4 *5 (-351 *3))
+ (-5 *1 (-492 *3 *4 *5 *2)) (-4 *2 (-629 *3 *4 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-517)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4))
+ (-4 *7 (-923 *4)) (-4 *2 (-629 *7 *8 *9))
+ (-5 *1 (-493 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-629 *4 *5 *6))
+ (-4 *8 (-351 *7)) (-4 *9 (-351 *7))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975))
+ (-4 *3 (-351 *2)) (-4 *4 (-351 *2)) (-4 *2 (-341))))
+ ((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-341)) (-4 *3 (-160)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *1 (-630 *3 *4 *5 *2))
+ (-4 *2 (-629 *3 *4 *5))))
+ ((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-631 *2)) (-4 *2 (-341)) (-4 *2 (-975))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-1039 *2 *3 *4 *5)) (-4 *3 (-975))
+ (-4 *4 (-218 *2 *3)) (-4 *5 (-218 *2 *3)) (-4 *3 (-341))))
+ ((*1 *2 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-788)) (-5 *1 (-1097 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-591 (-205)))) (-5 *1 (-859)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-712)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-51)) (-5 *1 (-770)))))
+(((*1 *2 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125)))))
+(((*1 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174))))
+ ((*1 *2 *2) (-12 (-5 *2 (-807)) (-5 *1 (-1174)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2805 *4)))
+ (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-341)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-477 *4 *5 *6 *3)) (-4 *3 (-882 *4 *5 *6)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-712)) (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-712)) (-5 *1 (-619 *3)) (-4 *3 (-975)) (-4 *3 (-1018)))))
+(((*1 *2)
+ (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-591 (-294 (-205)))) (-5 *3 (-205)) (-5 *2 (-108))
+ (-5 *1 (-192)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-108)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *1 *2 *2)
- (-12
- (-5 *2
- (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355)))
- (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086))))
- (-5 *1 (-1086)))))
-(((*1 *2 *2) (-12 (-5 *2 (-589 (-292 (-203)))) (-5 *1 (-244)))))
+ (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-525))) (-5 *1 (-973)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2)) (-4 *2 (-1125)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-113 *3)) (-14 *3 *2)))
+ ((*1 *1 *1) (-12 (-5 *1 (-113 *2)) (-14 *2 (-525))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-804 *3)) (-14 *3 *2)))
+ ((*1 *1 *1) (-12 (-5 *1 (-804 *2)) (-14 *2 (-525))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-525)) (-14 *3 *2) (-5 *1 (-805 *3 *4))
+ (-4 *4 (-802 *3))))
+ ((*1 *1 *1)
+ (-12 (-14 *2 (-525)) (-5 *1 (-805 *2 *3)) (-4 *3 (-802 *2))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-525)) (-4 *1 (-1133 *3 *4)) (-4 *3 (-975))
+ (-4 *4 (-1162 *3))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1133 *2 *3)) (-4 *2 (-975)) (-4 *3 (-1162 *2)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-1072)) (-5 *5 (-631 (-205)))
+ (-5 *2 (-964)) (-5 *1 (-689)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-1018))
+ (-4 *6 (-1018)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-626 *4 *5 *6)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-110)) (-5 *3 (-591 (-1 *4 (-591 *4)))) (-4 *4 (-1018))
+ (-5 *1 (-109 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1018))
+ (-5 *1 (-109 *4))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-110)) (-5 *2 (-591 (-1 *4 (-591 *4))))
+ (-5 *1 (-109 *4)) (-4 *4 (-1018)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))))
+(((*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-859))))
+ ((*1 *1 *1 *2 *2) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-860))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1013 (-205))) (-5 *1 (-860))))
+ ((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2 *3 *4 *3 *4 *4 *4 *4 *4)
+ (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *2 (-964))
+ (-5 *1 (-697)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-710)) (-5 *1 (-151 *3 *4))
- (-4 *3 (-152 *4))))
- ((*1 *2)
- (-12 (-14 *4 *2) (-4 *5 (-1123)) (-5 *2 (-710))
- (-5 *1 (-215 *3 *4 *5)) (-4 *3 (-216 *4 *5))))
- ((*1 *2)
- (-12 (-4 *4 (-786)) (-5 *2 (-710)) (-5 *1 (-405 *3 *4))
- (-4 *3 (-406 *4))))
- ((*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-507 *3)) (-4 *3 (-508))))
- ((*1 *2) (-12 (-4 *1 (-703)) (-5 *2 (-710))))
- ((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-710)) (-5 *1 (-735 *3 *4))
- (-4 *3 (-736 *4))))
+ (-12 (-4 *4 (-1129)) (-4 *5 (-1147 *4)) (-4 *6 (-1147 (-385 *5)))
+ (-5 *2 (-712)) (-5 *1 (-319 *3 *4 *5 *6)) (-4 *3 (-320 *4 *5 *6))))
((*1 *2)
- (-12 (-4 *4 (-515)) (-5 *2 (-710)) (-5 *1 (-920 *3 *4))
- (-4 *3 (-921 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-710)) (-5 *1 (-924 *3 *4))
- (-4 *3 (-925 *4))))
- ((*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-939 *3)) (-4 *3 (-940))))
- ((*1 *2) (-12 (-4 *1 (-973)) (-5 *2 (-710))))
- ((*1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-981 *3)) (-4 *3 (-982)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-1 (-203) (-203) (-203)))
- (-5 *4 (-1 (-203) (-203) (-203) (-203)))
- (-5 *2 (-1 (-874 (-203)) (-203) (-203))) (-5 *1 (-636)))))
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-712)))))
+(((*1 *2)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-631 (-385 *4))))))
+(((*1 *2)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-631 (-385 *4))))))
(((*1 *2 *3 *2)
(-12
(-5 *2
- (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203))
- (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203))
- (|:| |deltaX| (-203)) (|:| |deltaY| (-203))))
- (-5 *3 (-589 (-240))) (-5 *1 (-238))))
+ (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205))
+ (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205))
+ (|:| |deltaX| (-205)) (|:| |deltaY| (-205))))
+ (-5 *3 (-591 (-242))) (-5 *1 (-240))))
((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203))
- (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203))
- (|:| |deltaX| (-203)) (|:| |deltaY| (-203))))
- (-5 *1 (-240))))
+ (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205))
+ (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205))
+ (|:| |deltaX| (-205)) (|:| |deltaY| (-205))))
+ (-5 *1 (-242))))
((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171))))
+ (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173))))
((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171))))
+ (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173))))
((*1 *2 *1 *3 *3 *4 *4 *4)
- (-12 (-5 *3 (-523)) (-5 *4 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171))))
+ (-12 (-5 *3 (-525)) (-5 *4 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173))))
((*1 *2 *1 *3)
(-12
(-5 *3
- (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203))
- (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203))
- (|:| |deltaX| (-203)) (|:| |deltaY| (-203))))
- (-5 *2 (-1174)) (-5 *1 (-1171))))
+ (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205))
+ (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205))
+ (|:| |deltaX| (-205)) (|:| |deltaY| (-205))))
+ (-5 *2 (-1176)) (-5 *1 (-1173))))
((*1 *2 *1)
(-12
(-5 *2
- (-2 (|:| |theta| (-203)) (|:| |phi| (-203)) (|:| -1254 (-203))
- (|:| |scaleX| (-203)) (|:| |scaleY| (-203)) (|:| |scaleZ| (-203))
- (|:| |deltaX| (-203)) (|:| |deltaY| (-203))))
- (-5 *1 (-1171))))
+ (-2 (|:| |theta| (-205)) (|:| |phi| (-205)) (|:| -3115 (-205))
+ (|:| |scaleX| (-205)) (|:| |scaleY| (-205)) (|:| |scaleZ| (-205))
+ (|:| |deltaX| (-205)) (|:| |deltaY| (-205))))
+ (-5 *1 (-1173))))
((*1 *2 *1 *3 *3 *3 *3 *3)
- (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-629 (-292 (-203)))) (-5 *2 (-355)) (-5 *1 (-185)))))
-(((*1 *1 *1 *1) (-4 *1 (-508))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-721 *2)) (-4 *2 (-973)))))
-(((*1 *1 *1) (-4 *1 (-575)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-576 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930) (-1109))))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7)) (-5 *2 (-589 *4))
- (-5 *1 (-993 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-318 *4 *3 *5)) (-4 *4 (-1127)) (-4 *3 (-1145 *4))
- (-4 *5 (-1145 (-383 *3))) (-5 *2 (-108))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-523)) (-5 *2 (-1174)) (-5 *1 (-835 *4))
- (-4 *4 (-1016))))
- ((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-835 *3)) (-4 *3 (-1016)))))
+ (-12 (-5 *3 (-357)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4))))
+ (-5 *1 (-1055 *3 *4)) (-4 *3 (-13 (-1018) (-33)))
+ (-4 *4 (-13 (-1018) (-33))))))
+(((*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1119 *4 *5 *3 *6)) (-4 *4 (-517)) (-4 *5 (-734))
+ (-4 *3 (-788)) (-4 *6 (-989 *4 *5 *3)) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1188 *3)) (-4 *3 (-341)) (-5 *2 (-108)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 (-157 (-205)) (-157 (-205)))) (-5 *4 (-1013 (-205)))
+ (-5 *2 (-1173)) (-5 *1 (-236)))))
(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1087)) (-5 *5 (-589 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *6)))
- (-4 *6 (-13 (-427) (-786) (-136) (-964 (-523)) (-585 (-523))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-516 *6 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-515))
- (-5 *2 (-2 (|:| -2373 (-629 *5)) (|:| |vec| (-1169 (-589 (-852))))))
- (-5 *1 (-88 *5 *3)) (-5 *4 (-852)) (-4 *3 (-599 *5)))))
-(((*1 *1 *2 *2)
+ (-12 (-5 *3 (-1085 *9)) (-5 *4 (-591 *7)) (-4 *7 (-788))
+ (-4 *9 (-882 *8 *6 *7)) (-4 *6 (-734)) (-4 *8 (-286))
+ (-5 *2 (-591 (-712))) (-5 *1 (-684 *6 *7 *8 *9)) (-5 *5 (-712)))))
+(((*1 *1 *2)
(-12
(-5 *2
- (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355)))
- (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086))))
- (-5 *1 (-1086)))))
+ (-591
+ (-2
+ (|:| -2019
+ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205))
+ (|:| |fn| (-1171 (-294 (-205))))
+ (|:| |yinit| (-591 (-205))) (|:| |intvals| (-591 (-205)))
+ (|:| |g| (-294 (-205))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (|:| -1221
+ (-2 (|:| |stiffness| (-357)) (|:| |stability| (-357))
+ (|:| |expense| (-357)) (|:| |accuracy| (-357))
+ (|:| |intermediateResults| (-357)))))))
+ (-5 *1 (-744)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *4 (-525))) (-5 *5 (-1 (-1070 *4))) (-4 *4 (-341))
+ (-4 *4 (-975)) (-5 *2 (-1070 *4)) (-5 *1 (-1074 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-860)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-314 *5 *6 *7 *8)) (-4 *5 (-408 *4)) (-4 *6 (-1147 *5))
+ (-4 *7 (-1147 (-385 *6))) (-4 *8 (-320 *5 *6 *7))
+ (-4 *4 (-13 (-788) (-517) (-966 (-525)))) (-5 *2 (-108))
+ (-5 *1 (-844 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-314 (-385 (-525)) *4 *5 *6))
+ (-4 *4 (-1147 (-385 (-525)))) (-4 *5 (-1147 (-385 *4)))
+ (-4 *6 (-320 (-385 (-525)) *4 *5)) (-5 *2 (-108))
+ (-5 *1 (-845 *4 *5 *6)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-341) (-786))) (-5 *1 (-167 *3 *2))
+ (-4 *2 (-1147 (-157 *3))))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-3 (-108) "failed")) (-4 *3 (-427)) (-4 *4 (-786))
- (-4 *5 (-732)) (-5 *1 (-916 *3 *4 *5 *6)) (-4 *6 (-880 *3 *5 *4)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-403 *3 *2)) (-4 *3 (-13 (-158) (-37 (-383 (-523)))))
- (-4 *2 (-13 (-786) (-21))))))
-(((*1 *1 *2) (-12 (-5 *2 (-805)) (-5 *1 (-240))))
- ((*1 *1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-240)))))
+ (-12 (-5 *2 (-876 *4)) (-4 *4 (-975)) (-5 *1 (-1078 *3 *4))
+ (-14 *3 (-854)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-589 (-883 *4))) (-5 *3 (-589 (-1087))) (-4 *4 (-427))
- (-5 *1 (-849 *4)))))
+ (|partial| -12 (-5 *2 (-591 (-457 *4 *5))) (-5 *3 (-591 (-798 *4)))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-429)) (-5 *1 (-448 *4 *5 *6))
+ (-4 *6 (-429)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-517))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2805 *4)))
+ (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-146))))
+ ((*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1147 *5)) (-4 *5 (-341))
+ (-5 *2 (-2 (|:| -1572 (-396 *3)) (|:| |special| (-396 *3))))
+ (-5 *1 (-669 *5 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-4 *1 (-102 *3)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-712)) (-5 *3 (-876 *5)) (-4 *5 (-975))
+ (-5 *1 (-1078 *4 *5)) (-14 *4 (-854))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-712))) (-5 *3 (-712)) (-5 *1 (-1078 *4 *5))
+ (-14 *4 (-854)) (-4 *5 (-975))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-712))) (-5 *3 (-876 *5)) (-4 *5 (-975))
+ (-5 *1 (-1078 *4 *5)) (-14 *4 (-854)))))
(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-1123)) (-5 *1 (-166 *3 *2))
- (-4 *2 (-616 *3)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *1) (-5 *1 (-764))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 *8)) (-4 *8 (-880 *5 *7 *6))
- (-4 *5 (-13 (-284) (-136))) (-4 *6 (-13 (-786) (-564 (-1087))))
- (-4 *7 (-732))
- (-5 *2
- (-589
- (-2 (|:| |eqzro| (-589 *8)) (|:| |neqzro| (-589 *8))
- (|:| |wcond| (-589 (-883 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1169 (-383 (-883 *5))))
- (|:| -2922 (-589 (-1169 (-383 (-883 *5))))))))))
- (-5 *1 (-855 *5 *6 *7 *8)) (-5 *4 (-589 *8))))
+ (|partial| -12 (-5 *4 (-385 *2)) (-4 *2 (-1147 *5))
+ (-5 *1 (-748 *5 *2 *3 *6))
+ (-4 *5 (-13 (-341) (-138) (-966 (-385 (-525)))))
+ (-4 *3 (-601 *2)) (-4 *6 (-601 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 (-385 *2))) (-4 *2 (-1147 *5))
+ (-5 *1 (-748 *5 *2 *3 *6))
+ (-4 *5 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *3 (-601 *2))
+ (-4 *6 (-601 (-385 *2))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1089)) (-5 *2 (-1 (-205) (-205))) (-5 *1 (-645 *3))
+ (-4 *3 (-566 (-501)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1089)) (-5 *2 (-1 (-205) (-205) (-205)))
+ (-5 *1 (-645 *3)) (-4 *3 (-566 (-501))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-882 *4 *5 *6)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-426 *4 *5 *6 *2)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-286)) (-5 *1 (-166 *3)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-3 (-385 (-885 *6)) (-1079 (-1089) (-885 *6))))
+ (-5 *5 (-712)) (-4 *6 (-429)) (-5 *2 (-591 (-631 (-385 (-885 *6)))))
+ (-5 *1 (-271 *6)) (-5 *4 (-631 (-385 (-885 *6))))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 *8)) (-5 *4 (-589 (-1087))) (-4 *8 (-880 *5 *7 *6))
- (-4 *5 (-13 (-284) (-136))) (-4 *6 (-13 (-786) (-564 (-1087))))
- (-4 *7 (-732))
- (-5 *2
- (-589
- (-2 (|:| |eqzro| (-589 *8)) (|:| |neqzro| (-589 *8))
- (|:| |wcond| (-589 (-883 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1169 (-383 (-883 *5))))
- (|:| -2922 (-589 (-1169 (-383 (-883 *5))))))))))
- (-5 *1 (-855 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-629 *7)) (-4 *7 (-880 *4 *6 *5))
- (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087))))
- (-4 *6 (-732))
- (-5 *2
- (-589
- (-2 (|:| |eqzro| (-589 *7)) (|:| |neqzro| (-589 *7))
- (|:| |wcond| (-589 (-883 *4)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1169 (-383 (-883 *4))))
- (|:| -2922 (-589 (-1169 (-383 (-883 *4))))))))))
- (-5 *1 (-855 *4 *5 *6 *7))))
+ (-12
+ (-5 *3
+ (-2 (|:| |eigval| (-3 (-385 (-885 *5)) (-1079 (-1089) (-885 *5))))
+ (|:| |eigmult| (-712)) (|:| |eigvec| (-591 *4))))
+ (-4 *5 (-429)) (-5 *2 (-591 (-631 (-385 (-885 *5)))))
+ (-5 *1 (-271 *5)) (-5 *4 (-631 (-385 (-885 *5)))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-5 *2 (-712)) (-5 *1 (-42 *4 *3))
+ (-4 *3 (-395 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-975)) (-5 *2 (-108)) (-5 *1 (-421 *4 *3))
+ (-4 *3 (-1147 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *2 (-108)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-571 *4 *2)) (-4 *2 (-13 (-1111) (-891) (-29 *4))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-4 *3 (-517))
+ (-5 *2 (-1085 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 (-205) (-205))) (-5 *4 (-1013 (-357)))
+ (-5 *5 (-591 (-242))) (-5 *2 (-1172)) (-5 *1 (-234))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 (-205) (-205))) (-5 *4 (-1013 (-357)))
+ (-5 *2 (-1172)) (-5 *1 (-234))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-629 *9)) (-5 *5 (-852)) (-4 *9 (-880 *6 *8 *7))
- (-4 *6 (-13 (-284) (-136))) (-4 *7 (-13 (-786) (-564 (-1087))))
- (-4 *8 (-732))
- (-5 *2
- (-589
- (-2 (|:| |eqzro| (-589 *9)) (|:| |neqzro| (-589 *9))
- (|:| |wcond| (-589 (-883 *6)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1169 (-383 (-883 *6))))
- (|:| -2922 (-589 (-1169 (-383 (-883 *6))))))))))
- (-5 *1 (-855 *6 *7 *8 *9)) (-5 *4 (-589 *9))))
+ (-12 (-5 *3 (-810 (-1 (-205) (-205)))) (-5 *4 (-1013 (-357)))
+ (-5 *5 (-591 (-242))) (-5 *2 (-1172)) (-5 *1 (-234))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-810 (-1 (-205) (-205)))) (-5 *4 (-1013 (-357)))
+ (-5 *2 (-1172)) (-5 *1 (-234))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-629 *9)) (-5 *4 (-589 (-1087))) (-5 *5 (-852))
- (-4 *9 (-880 *6 *8 *7)) (-4 *6 (-13 (-284) (-136)))
- (-4 *7 (-13 (-786) (-564 (-1087)))) (-4 *8 (-732))
- (-5 *2
- (-589
- (-2 (|:| |eqzro| (-589 *9)) (|:| |neqzro| (-589 *9))
- (|:| |wcond| (-589 (-883 *6)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1169 (-383 (-883 *6))))
- (|:| -2922 (-589 (-1169 (-383 (-883 *6))))))))))
- (-5 *1 (-855 *6 *7 *8 *9))))
+ (-12 (-5 *3 (-812 (-1 (-205) (-205)))) (-5 *4 (-1013 (-357)))
+ (-5 *5 (-591 (-242))) (-5 *2 (-1173)) (-5 *1 (-234))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 *8)) (-5 *4 (-852)) (-4 *8 (-880 *5 *7 *6))
- (-4 *5 (-13 (-284) (-136))) (-4 *6 (-13 (-786) (-564 (-1087))))
- (-4 *7 (-732))
- (-5 *2
- (-589
- (-2 (|:| |eqzro| (-589 *8)) (|:| |neqzro| (-589 *8))
- (|:| |wcond| (-589 (-883 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1169 (-383 (-883 *5))))
- (|:| -2922 (-589 (-1169 (-383 (-883 *5))))))))))
- (-5 *1 (-855 *5 *6 *7 *8))))
+ (-12 (-5 *3 (-812 (-1 (-205) (-205)))) (-5 *4 (-1013 (-357)))
+ (-5 *2 (-1173)) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 (-876 (-205)) (-205))) (-5 *4 (-1013 (-357)))
+ (-5 *5 (-591 (-242))) (-5 *2 (-1173)) (-5 *1 (-234))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 (-876 (-205)) (-205))) (-5 *4 (-1013 (-357)))
+ (-5 *2 (-1173)) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-205) (-205) (-205))) (-5 *4 (-1013 (-357)))
+ (-5 *5 (-591 (-242))) (-5 *2 (-1173)) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 (-205) (-205) (-205))) (-5 *4 (-1013 (-357)))
+ (-5 *2 (-1173)) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-876 (-205)) (-205) (-205))) (-5 *4 (-1013 (-357)))
+ (-5 *5 (-591 (-242))) (-5 *2 (-1173)) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 (-876 (-205)) (-205) (-205))) (-5 *4 (-1013 (-357)))
+ (-5 *2 (-1173)) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-815 (-1 (-205) (-205) (-205)))) (-5 *4 (-1013 (-357)))
+ (-5 *5 (-591 (-242))) (-5 *2 (-1173)) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-815 (-1 (-205) (-205) (-205)))) (-5 *4 (-1013 (-357)))
+ (-5 *2 (-1173)) (-5 *1 (-234))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-273 *7)) (-5 *4 (-1089)) (-5 *5 (-591 (-242)))
+ (-4 *7 (-408 *6)) (-4 *6 (-13 (-517) (-788) (-966 (-525))))
+ (-5 *2 (-1172)) (-5 *1 (-235 *6 *7))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-629 *9)) (-5 *4 (-589 *9)) (-5 *5 (-1070))
- (-4 *9 (-880 *6 *8 *7)) (-4 *6 (-13 (-284) (-136)))
- (-4 *7 (-13 (-786) (-564 (-1087)))) (-4 *8 (-732)) (-5 *2 (-523))
- (-5 *1 (-855 *6 *7 *8 *9))))
+ (-12 (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1172))
+ (-5 *1 (-238 *3)) (-4 *3 (-13 (-566 (-501)) (-1018)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1011 (-357))) (-5 *2 (-1172)) (-5 *1 (-238 *3))
+ (-4 *3 (-13 (-566 (-501)) (-1018)))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-629 *9)) (-5 *4 (-589 (-1087))) (-5 *5 (-1070))
- (-4 *9 (-880 *6 *8 *7)) (-4 *6 (-13 (-284) (-136)))
- (-4 *7 (-13 (-786) (-564 (-1087)))) (-4 *8 (-732)) (-5 *2 (-523))
- (-5 *1 (-855 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 *8)) (-5 *4 (-1070)) (-4 *8 (-880 *5 *7 *6))
- (-4 *5 (-13 (-284) (-136))) (-4 *6 (-13 (-786) (-564 (-1087))))
- (-4 *7 (-732)) (-5 *2 (-523)) (-5 *1 (-855 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-629 *10)) (-5 *4 (-589 *10)) (-5 *5 (-852))
- (-5 *6 (-1070)) (-4 *10 (-880 *7 *9 *8)) (-4 *7 (-13 (-284) (-136)))
- (-4 *8 (-13 (-786) (-564 (-1087)))) (-4 *9 (-732)) (-5 *2 (-523))
- (-5 *1 (-855 *7 *8 *9 *10))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-629 *10)) (-5 *4 (-589 (-1087))) (-5 *5 (-852))
- (-5 *6 (-1070)) (-4 *10 (-880 *7 *9 *8)) (-4 *7 (-13 (-284) (-136)))
- (-4 *8 (-13 (-786) (-564 (-1087)))) (-4 *9 (-732)) (-5 *2 (-523))
- (-5 *1 (-855 *7 *8 *9 *10))))
+ (-12 (-5 *3 (-810 *6)) (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242)))
+ (-4 *6 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1172))
+ (-5 *1 (-238 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-810 *5)) (-5 *4 (-1011 (-357)))
+ (-4 *5 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1172))
+ (-5 *1 (-238 *5))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-629 *9)) (-5 *4 (-852)) (-5 *5 (-1070))
- (-4 *9 (-880 *6 *8 *7)) (-4 *6 (-13 (-284) (-136)))
- (-4 *7 (-13 (-786) (-564 (-1087)))) (-4 *8 (-732)) (-5 *2 (-523))
- (-5 *1 (-855 *6 *7 *8 *9)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3)
- (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203))) (-5 *4 (-203))
- (-5 *2 (-962)) (-5 *1 (-692)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-203))) (-5 *2 (-1169 (-638))) (-5 *1 (-282)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-523)) (-5 *1 (-219))))
+ (-12 (-5 *3 (-812 *6)) (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242)))
+ (-4 *6 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1173))
+ (-5 *1 (-238 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-812 *5)) (-5 *4 (-1011 (-357)))
+ (-4 *5 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1173))
+ (-5 *1 (-238 *5))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242))) (-5 *2 (-1173))
+ (-5 *1 (-238 *3)) (-4 *3 (-13 (-566 (-501)) (-1018)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1011 (-357))) (-5 *2 (-1173)) (-5 *1 (-238 *3))
+ (-4 *3 (-13 (-566 (-501)) (-1018)))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-815 *6)) (-5 *4 (-1011 (-357))) (-5 *5 (-591 (-242)))
+ (-4 *6 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1173))
+ (-5 *1 (-238 *6))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-815 *5)) (-5 *4 (-1011 (-357)))
+ (-4 *5 (-13 (-566 (-501)) (-1018))) (-5 *2 (-1173))
+ (-5 *1 (-238 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-591 (-205))) (-5 *2 (-1172)) (-5 *1 (-239))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-591 (-205))) (-5 *4 (-591 (-242))) (-5 *2 (-1172))
+ (-5 *1 (-239))))
((*1 *2 *3)
- (-12 (-5 *3 (-589 (-1070))) (-5 *2 (-523)) (-5 *1 (-219)))))
-(((*1 *2)
- (-12 (-4 *2 (-13 (-406 *3) (-930))) (-5 *1 (-253 *3 *2))
- (-4 *3 (-13 (-786) (-515))))))
+ (-12 (-5 *3 (-591 (-876 (-205)))) (-5 *2 (-1172)) (-5 *1 (-239))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-876 (-205)))) (-5 *4 (-591 (-242)))
+ (-5 *2 (-1172)) (-5 *1 (-239))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-591 (-205))) (-5 *2 (-1173)) (-5 *1 (-239))))
+ ((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-591 (-205))) (-5 *4 (-591 (-242))) (-5 *2 (-1173))
+ (-5 *1 (-239)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3))
+ (-4 *3 (-13 (-341) (-1111) (-932))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-406 *4)) (-5 *1 (-145 *4 *2))
- (-4 *4 (-13 (-786) (-515))))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-13 (-784) (-339))) (-5 *2 (-108)) (-5 *1 (-983 *4 *3))
- (-4 *3 (-1145 *4)))))
-(((*1 *1 *2 *2)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-1176))
+ (-5 *1 (-426 *4 *5 *6 *3)) (-4 *3 (-882 *4 *5 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1144 *5 *4)) (-4 *4 (-761)) (-14 *5 (-1089))
+ (-5 *2 (-525)) (-5 *1 (-1032 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-763)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 (-591 *8))) (-5 *3 (-591 *8))
+ (-4 *8 (-882 *5 *7 *6)) (-4 *5 (-13 (-286) (-138)))
+ (-4 *6 (-13 (-788) (-566 (-1089)))) (-4 *7 (-734)) (-5 *2 (-108))
+ (-5 *1 (-857 *5 *6 *7 *8)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-517))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-517)))))
+(((*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-642))))
+ ((*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-642)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 *5)) (-5 *4 (-854)) (-4 *5 (-788))
+ (-5 *2 (-57 (-591 (-616 *5)))) (-5 *1 (-616 *5)))))
+(((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-1070 (-2 (|:| |k| (-525)) (|:| |c| *6))))
+ (-5 *4 (-955 (-781 (-525)))) (-5 *5 (-1089)) (-5 *7 (-385 (-525)))
+ (-4 *6 (-975)) (-5 *2 (-796)) (-5 *1 (-550 *6)))))
+(((*1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-701)))))
+(((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *5 (-108))
+ (-5 *2 (-964)) (-5 *1 (-687)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-372))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-1106)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975))
+ (-5 *2 (-591 (-591 (-876 *3))))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-591 (-591 (-876 *4)))) (-5 *3 (-108)) (-4 *4 (-975))
+ (-4 *1 (-1050 *4))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-591 (-876 *3)))) (-4 *3 (-975))
+ (-4 *1 (-1050 *3))))
+ ((*1 *1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-591 (-591 (-591 *4)))) (-5 *3 (-108))
+ (-4 *1 (-1050 *4)) (-4 *4 (-975))))
+ ((*1 *1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-591 (-591 (-876 *4)))) (-5 *3 (-108))
+ (-4 *1 (-1050 *4)) (-4 *4 (-975))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-591 (-591 (-591 *5)))) (-5 *3 (-591 (-159)))
+ (-5 *4 (-159)) (-4 *1 (-1050 *5)) (-4 *5 (-975))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-591 (-591 (-876 *5)))) (-5 *3 (-591 (-159)))
+ (-5 *4 (-159)) (-4 *1 (-1050 *5)) (-4 *5 (-975)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-591 *1)) (-4 *1 (-281))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-281)) (-5 *2 (-110))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-564 *3)) (-4 *3 (-788))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-110)) (-5 *3 (-591 *5)) (-5 *4 (-712)) (-4 *5 (-788))
+ (-5 *1 (-564 *5)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -3060 *6) (|:| |coeff| *6)) "failed") *6))
+ (-4 *6 (-341)) (-4 *7 (-1147 *6))
+ (-5 *2
+ (-3 (-2 (|:| |answer| (-385 *7)) (|:| |a0| *6))
+ (-2 (|:| -3060 (-385 *7)) (|:| |coeff| (-385 *7))) "failed"))
+ (-5 *1 (-535 *6 *7)) (-5 *3 (-385 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-631 (-385 (-885 (-525)))))
+ (-5 *2 (-591 (-631 (-294 (-525))))) (-5 *1 (-960)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-345 *2)) (-4 *2 (-160)) (-4 *2 (-517))))
+ ((*1 *1 *1) (|partial| -4 *1 (-664))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4)
+ (-12 (-5 *3 (-1072)) (-5 *5 (-631 (-205))) (-5 *6 (-205))
+ (-5 *7 (-631 (-525))) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-694)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2)
+ (-12 (-5 *2 (-854)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-854)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-4 *6 (-1147 *9)) (-4 *7 (-734)) (-4 *8 (-788)) (-4 *9 (-286))
+ (-4 *10 (-882 *9 *7 *8))
+ (-5 *2
+ (-2 (|:| |deter| (-591 (-1085 *10)))
+ (|:| |dterm|
+ (-591 (-591 (-2 (|:| -4100 (-712)) (|:| |pcoef| *10)))))
+ (|:| |nfacts| (-591 *6)) (|:| |nlead| (-591 *10))))
+ (-5 *1 (-719 *6 *7 *8 *9 *10)) (-5 *3 (-1085 *10)) (-5 *4 (-591 *6))
+ (-5 *5 (-591 *10)))))
+(((*1 *2 *3 *2)
(-12
(-5 *2
- (-3 (|:| I (-292 (-523))) (|:| -3894 (-292 (-355)))
- (|:| CF (-292 (-155 (-355)))) (|:| |switch| (-1086))))
- (-5 *1 (-1086)))))
-(((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-1123)))))
+ (-591
+ (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-712)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *3 (-734)) (-4 *6 (-882 *4 *3 *5)) (-4 *4 (-429)) (-4 *5 (-788))
+ (-5 *1 (-426 *4 *3 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1089)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-643 *4 *5 *6 *7))
+ (-4 *4 (-566 (-501))) (-4 *5 (-1125)) (-4 *6 (-1125))
+ (-4 *7 (-1125)))))
+(((*1 *1 *1) (-12 (-5 *1 (-560 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1) (-5 *1 (-580))))
+(((*1 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206))))
+ ((*1 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *1 *1) (-4 *1 (-1053))))
+(((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-591 (-564 *2))) (-5 *4 (-1089))
+ (-4 *2 (-13 (-27) (-1111) (-408 *5)))
+ (-4 *5 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-256 *5 *2)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-591 (-457 *3 *4))) (-14 *3 (-591 (-1089)))
+ (-4 *4 (-429)) (-5 *1 (-579 *3 *4)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-631 *3))
+ (-4 *3 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $)))))
+ (-4 *4 (-1147 *3)) (-5 *1 (-472 *3 *4 *5)) (-4 *5 (-387 *3 *4)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-108)) (-5 *5 (-1020 (-712))) (-5 *6 (-712))
+ (-5 *2
+ (-2 (|:| |contp| (-525))
+ (|:| -3781 (-591 (-2 (|:| |irr| *3) (|:| -3265 (-525)))))))
+ (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 *3))
+ (-5 *1 (-908 *4 *5 *6 *3)) (-4 *3 (-989 *4 *5 *6)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -3060 *6) (|:| |coeff| *6)) "failed") *6))
+ (-4 *6 (-341)) (-4 *7 (-1147 *6))
+ (-5 *2 (-2 (|:| |answer| (-542 (-385 *7))) (|:| |a0| *6)))
+ (-5 *1 (-535 *6 *7)) (-5 *3 (-385 *7)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1089)) (-4 *4 (-429)) (-4 *4 (-788))
+ (-5 *1 (-534 *4 *2)) (-4 *2 (-263)) (-4 *2 (-408 *4)))))
+(((*1 *2)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))))
+(((*1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-1096)))))
(((*1 *1 *2 *3)
- (-12 (-5 *3 (-394 *2)) (-4 *2 (-284)) (-5 *1 (-845 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-383 (-883 *5))) (-5 *4 (-1087))
- (-4 *5 (-13 (-284) (-136))) (-5 *2 (-51)) (-5 *1 (-846 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-394 (-883 *6))) (-5 *5 (-1087)) (-5 *3 (-883 *6))
- (-4 *6 (-13 (-284) (-136))) (-5 *2 (-51)) (-5 *1 (-846 *6)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-51))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794))))
- ((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *5 (-1070))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-80 PDEF))))
- (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-81 BNDY)))) (-5 *2 (-962))
- (-5 *1 (-690)))))
-(((*1 *2 *1 *3 *3)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-556 *3 *4)) (-4 *3 (-1016))
- (-4 *4 (-1123)) (-5 *2 (-1174)))))
+ (-12 (-5 *3 (-1089)) (-5 *1 (-542 *2)) (-4 *2 (-966 *3))
+ (-4 *2 (-341))))
+ ((*1 *1 *2 *2) (-12 (-5 *1 (-542 *2)) (-4 *2 (-341))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1089)) (-4 *4 (-13 (-788) (-517))) (-5 *1 (-578 *4 *2))
+ (-4 *2 (-13 (-408 *4) (-932) (-1111)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1011 *2)) (-4 *2 (-13 (-408 *4) (-932) (-1111)))
+ (-4 *4 (-13 (-788) (-517))) (-5 *1 (-578 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-891)) (-5 *2 (-1089))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1011 *1)) (-4 *1 (-891)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-159))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-905)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1161 *2 *3 *4)) (-4 *2 (-973)) (-14 *3 (-1087))
- (-14 *4 *2))))
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-1147 *4)) (-5 *1 (-504 *4 *2 *5 *6))
+ (-4 *4 (-286)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-712))))))
+(((*1 *1 *2) (-12 (-5 *1 (-207 *2)) (-4 *2 (-13 (-341) (-1111))))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796))))
+ ((*1 *1 *1) (-5 *1 (-796))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1078 *2 *3)) (-14 *2 (-854)) (-4 *3 (-975)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-591 *3))) (-4 *3 (-1018)) (-5 *1 (-838 *3)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-591 *1)) (-4 *1 (-989 *4 *5 *6)) (-4 *4 (-975))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1119 *4 *5 *6 *3)) (-4 *4 (-517)) (-4 *5 (-734))
+ (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))))
(((*1 *2 *3 *4 *4 *5 *3 *6)
- (|partial| -12 (-5 *4 (-562 *3)) (-5 *5 (-589 *3)) (-5 *6 (-1083 *3))
- (-4 *3 (-13 (-406 *7) (-27) (-1109)))
- (-4 *7 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
+ (|partial| -12 (-5 *4 (-564 *3)) (-5 *5 (-591 *3)) (-5 *6 (-1085 *3))
+ (-4 *3 (-13 (-408 *7) (-27) (-1111)))
+ (-4 *7 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
(-5 *2
(-2 (|:| |mainpart| *3)
(|:| |limitedlogs|
- (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-519 *7 *3 *8)) (-4 *8 (-1016))))
+ (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-521 *7 *3 *8)) (-4 *8 (-1018))))
((*1 *2 *3 *4 *4 *5 *4 *3 *6)
- (|partial| -12 (-5 *4 (-562 *3)) (-5 *5 (-589 *3))
- (-5 *6 (-383 (-1083 *3))) (-4 *3 (-13 (-406 *7) (-27) (-1109)))
- (-4 *7 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
+ (|partial| -12 (-5 *4 (-564 *3)) (-5 *5 (-591 *3))
+ (-5 *6 (-385 (-1085 *3))) (-4 *3 (-13 (-408 *7) (-27) (-1111)))
+ (-4 *7 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
(-5 *2
(-2 (|:| |mainpart| *3)
(|:| |limitedlogs|
- (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-519 *7 *3 *8)) (-4 *8 (-1016)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1174)) (-5 *1 (-1090))))
- ((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-1090)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2 (-589 (-2 (|:| |val| *3) (|:| -2394 *4))))
- (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-917 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-1023 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7)))))
-(((*1 *1 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-1 (-874 (-203)) (-203))) (-5 *3 (-1011 (-203)))
- (-5 *1 (-857))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-874 (-203)) (-203))) (-5 *3 (-1011 (-203)))
- (-5 *1 (-857))))
- ((*1 *1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1 (-874 (-203)) (-203))) (-5 *3 (-1011 (-203)))
- (-5 *1 (-858))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-874 (-203)) (-203))) (-5 *3 (-1011 (-203)))
- (-5 *1 (-858)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-523)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-710)) (-4 *5 (-158))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-523)) (-14 *3 (-710))
- (-4 *4 (-158))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2))
- (-4 *4 (-349 *2))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-973)) (-4 *1 (-627 *3 *2 *4)) (-4 *2 (-349 *3))
- (-4 *4 (-349 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1054 *2 *3)) (-14 *2 (-710)) (-4 *3 (-973)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-115 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-589 (-589 *6))) (-4 *6 (-880 *3 *5 *4))
- (-4 *3 (-13 (-284) (-136))) (-4 *4 (-13 (-786) (-564 (-1087))))
- (-4 *5 (-732)) (-5 *1 (-855 *3 *4 *5 *6)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-1 (-203) (-203) (-203)))
- (-5 *4 (-3 (-1 (-203) (-203) (-203) (-203)) "undefined"))
- (-5 *5 (-1011 (-203))) (-5 *6 (-589 (-240))) (-5 *2 (-1047 (-203)))
- (-5 *1 (-636)))))
-(((*1 *1 *2 *3 *1 *3)
- (-12 (-5 *2 (-823 *4)) (-4 *4 (-1016)) (-5 *1 (-820 *4 *3))
- (-4 *3 (-1016)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-403 *3 *2)) (-4 *3 (-13 (-158) (-37 (-383 (-523)))))
- (-4 *2 (-13 (-786) (-21))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-110)) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-108))
- (-5 *1 (-31 *4 *5)) (-4 *5 (-406 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-110)) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-108))
- (-5 *1 (-145 *4 *5)) (-4 *5 (-406 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-110)) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-108))
- (-5 *1 (-253 *4 *5)) (-4 *5 (-13 (-406 *4) (-930)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-278 *4)) (-4 *4 (-279))))
- ((*1 *2 *3) (-12 (-4 *1 (-279)) (-5 *3 (-110)) (-5 *2 (-108))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-110)) (-4 *5 (-786)) (-5 *2 (-108))
- (-5 *1 (-405 *4 *5)) (-4 *4 (-406 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-110)) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-108))
- (-5 *1 (-407 *4 *5)) (-4 *5 (-406 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-110)) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-108))
- (-5 *1 (-576 *4 *5)) (-4 *5 (-13 (-406 *4) (-930) (-1109))))))
-(((*1 *1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-880 *3 *4 *5)) (-4 *3 (-427))
- (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-424 *3 *4 *5 *6)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-211)) (-4 *3 (-973)) (-4 *4 (-786)) (-4 *5 (-243 *4))
- (-4 *6 (-732)) (-5 *2 (-1 *1 (-710))) (-4 *1 (-230 *3 *4 *5 *6))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-973)) (-4 *3 (-786)) (-4 *5 (-243 *3)) (-4 *6 (-732))
- (-5 *2 (-1 *1 (-710))) (-4 *1 (-230 *4 *3 *5 *6))))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-710)) (-4 *1 (-243 *2)) (-4 *2 (-786)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-159 *3)) (-4 *3 (-284)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-339))
- (-5 *2 (-589 (-2 (|:| C (-629 *5)) (|:| |g| (-1169 *5)))))
- (-5 *1 (-907 *5)) (-5 *3 (-629 *5)) (-5 *4 (-1169 *5)))))
-(((*1 *2) (-12 (-5 *2 (-1174)) (-5 *1 (-420 *3)) (-4 *3 (-973)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12
- (-5 *3
- (-1 (-3 (-2 (|:| -3699 *4) (|:| |coeff| *4)) "failed") *4))
- (-4 *4 (-339)) (-5 *1 (-533 *4 *2)) (-4 *2 (-1145 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-306)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-562 *3)) (-4 *3 (-13 (-406 *5) (-27) (-1109)))
- (-4 *5 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *2 (-540 *3)) (-5 *1 (-525 *5 *3 *6)) (-4 *6 (-1016)))))
-(((*1 *1) (-4 *1 (-23))) ((*1 *1) (-4 *1 (-33)))
- ((*1 *1)
- (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-523)) (-14 *3 (-710))
- (-4 *4 (-158))))
- ((*1 *1) (-4 *1 (-666))) ((*1 *1) (-5 *1 (-1087))))
+ (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-521 *7 *3 *8)) (-4 *8 (-1018)))))
+(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-444))))
+ ((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-444)))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4))
+ (-4 *3 (-345 *4))))
+ ((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))))
+(((*1 *1 *2) (-12 (-5 *2 (-807)) (-5 *1 (-242))))
+ ((*1 *1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-242)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-854)) (-5 *1 (-727)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-302 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731))
- (-5 *2 (-589 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-358 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1016))
- (-5 *2 (-589 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-549 *3)) (-4 *3 (-973))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-589 *3)) (-5 *1 (-675 *3 *4)) (-4 *3 (-973))
- (-4 *4 (-666))))
- ((*1 *2 *1) (-12 (-4 *1 (-788 *3)) (-4 *3 (-973)) (-5 *2 (-589 *3))))
+ (-12 (-5 *2 (-712)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854))
+ (-4 *4 (-975)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1176)) (-5 *1 (-1103 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-1018)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-108))))
((*1 *2 *1)
- (-12 (-4 *1 (-1160 *3)) (-4 *3 (-973)) (-5 *2 (-1068 *3)))))
+ (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108))
+ (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-991 *4 *3)) (-4 *4 (-13 (-786) (-341)))
+ (-4 *3 (-1147 *4)) (-5 *2 (-108)))))
+(((*1 *2) (-12 (-5 *2 (-774 (-525))) (-5 *1 (-499))))
+ ((*1 *1) (-12 (-5 *1 (-774 *2)) (-4 *2 (-1018)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-315 *3 *4 *5)) (-14 *3 (-589 (-1087)))
- (-14 *4 (-589 (-1087))) (-4 *5 (-363))))
+ (-12 (-4 *3 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-256 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-256 *4 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *4)))))
+ ((*1 *1 *1) (-5 *1 (-357)))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4))))
+ (-5 *1 (-717 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4250)) (-4 *1 (-215 *3))
+ (-4 *3 (-1018))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-261 *3)) (-4 *3 (-1125)))))
+(((*1 *2 *1) (-12 (-5 *1 (-1121 *2)) (-4 *2 (-905)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-517)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2805 *4)))
+ (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-1072)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788))
+ (-4 *4 (-989 *6 *7 *8)) (-5 *2 (-1176))
+ (-5 *1 (-717 *6 *7 *8 *4 *5)) (-4 *5 (-994 *6 *7 *8 *4)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-4 *1 (-55 *4 *5 *2)) (-4 *4 (-1125))
+ (-4 *5 (-351 *4)) (-4 *2 (-351 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-525)) (-4 *1 (-978 *4 *5 *6 *7 *2)) (-4 *6 (-975))
+ (-4 *7 (-218 *5 *6)) (-4 *2 (-218 *4 *6)))))
+(((*1 *2)
+ (-12
+ (-5 *2
+ (-1171 (-591 (-2 (|:| -3024 (-843 *3)) (|:| -2226 (-1036))))))
+ (-5 *1 (-329 *3 *4)) (-14 *3 (-854)) (-14 *4 (-854))))
((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-315 *3 *4 *5)) (-14 *3 (-589 (-1087)))
- (-14 *4 (-589 (-1087))) (-4 *5 (-363)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-589 (-257))) (-5 *1 (-257))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 (-1092))) (-5 *1 (-1092)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-589 *7)) (-4 *7 (-992 *3 *4 *5 *6)) (-4 *3 (-427))
- (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5))
- (-5 *1 (-917 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-589 *7)) (-4 *7 (-992 *3 *4 *5 *6)) (-4 *3 (-427))
- (-4 *4 (-732)) (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5))
- (-5 *1 (-1023 *3 *4 *5 *6 *7)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-786)) (-5 *2 (-1096 (-589 *4))) (-5 *1 (-1095 *4))
- (-5 *3 (-589 *4)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-589 (-523))) (-5 *1 (-1026)) (-5 *3 (-523)))))
+ (-12 (-5 *2 (-1171 (-591 (-2 (|:| -3024 *3) (|:| -2226 (-1036))))))
+ (-5 *1 (-330 *3 *4)) (-4 *3 (-327)) (-14 *4 (-3 (-1085 *3) *2))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1171 (-591 (-2 (|:| -3024 *3) (|:| -2226 (-1036))))))
+ (-5 *1 (-331 *3 *4)) (-4 *3 (-327)) (-14 *4 (-854)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1160 *4))
- (-4 *4 (-37 (-383 (-523)))) (-5 *2 (-1 (-1068 *4) (-1068 *4)))
- (-5 *1 (-1162 *4 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))))
+ (|partial| -12 (-5 *3 (-1171 *4)) (-4 *4 (-587 (-525)))
+ (-5 *2 (-1171 (-525))) (-5 *1 (-1196 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1138 (-525))) (-4 *1 (-261 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-261 *3)) (-4 *3 (-1125)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-712)) (-5 *1 (-98 *3)) (-4 *3 (-1018)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1160 *4)) (-5 *1 (-1162 *4 *2))
- (-4 *4 (-37 (-383 (-523)))))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-1034)) (-5 *1 (-105)))))
-(((*1 *2 *1) (-12 (-5 *2 (-203)) (-5 *1 (-761)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-108)))))
-(((*1 *2 *2 *2 *3 *3)
- (-12 (-5 *3 (-710)) (-4 *4 (-973)) (-5 *1 (-1141 *4 *2))
- (-4 *2 (-1145 *4)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 (-475 *3 *4 *5 *6))) (-4 *3 (-339)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-339)) (-4 *3 (-732)) (-4 *4 (-786))
- (-5 *1 (-475 *2 *3 *4 *5)) (-4 *5 (-880 *2 *3 *4))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-589 *1)) (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-589 *1)) (-5 *3 (-589 *7)) (-4 *1 (-992 *4 *5 *6 *7))
- (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 *1))
- (-4 *1 (-992 *4 *5 *6 *7))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-589 *1))
- (-4 *1 (-992 *4 *5 *6 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1014 *2)) (-4 *2 (-1016)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-710)) (-4 *2 (-515)) (-5 *1 (-899 *2 *4))
- (-4 *4 (-1145 *2)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-222 *2)) (-4 *2 (-1123))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-259 *2)) (-4 *2 (-1123))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-259 *2)) (-4 *2 (-1123))))
- ((*1 *1 *1 *2)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2)) (-4 *2 (-1123))))
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-591 *9)) (-4 *8 (-989 *5 *6 *7))
+ (-4 *9 (-994 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734))
+ (-4 *7 (-788)) (-5 *2 (-712)) (-5 *1 (-992 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-591 *9)) (-4 *8 (-989 *5 *6 *7))
+ (-4 *9 (-1027 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734))
+ (-4 *7 (-788)) (-5 *2 (-712)) (-5 *1 (-1059 *5 *6 *7 *8 *9)))))
+(((*1 *1) (-5 *1 (-135))))
+(((*1 *2 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173))))
+ ((*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-1173)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-5 *1 (-1164 *3 *2))
+ (-4 *2 (-1162 *3)))))
+(((*1 *2)
+ (-12 (-4 *2 (-13 (-408 *3) (-932))) (-5 *1 (-255 *3 *2))
+ (-4 *3 (-13 (-788) (-517)))))
+ ((*1 *1)
+ (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089)))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-365))))
+ ((*1 *1) (-5 *1 (-454))) ((*1 *1) (-4 *1 (-1111))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525)))))
+ (-4 *5 (-1147 *4)) (-5 *2 (-591 (-2 (|:| -1682 *5) (|:| -2717 *5))))
+ (-5 *1 (-748 *4 *5 *3 *6)) (-4 *3 (-601 *5))
+ (-4 *6 (-601 (-385 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-341) (-138) (-966 (-385 (-525)))))
+ (-4 *4 (-1147 *5)) (-5 *2 (-591 (-2 (|:| -1682 *4) (|:| -2717 *4))))
+ (-5 *1 (-748 *5 *4 *3 *6)) (-4 *3 (-601 *4))
+ (-4 *6 (-601 (-385 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525)))))
+ (-4 *5 (-1147 *4)) (-5 *2 (-591 (-2 (|:| -1682 *5) (|:| -2717 *5))))
+ (-5 *1 (-748 *4 *5 *6 *3)) (-4 *6 (-601 *5))
+ (-4 *3 (-601 (-385 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-341) (-138) (-966 (-385 (-525)))))
+ (-4 *4 (-1147 *5)) (-5 *2 (-591 (-2 (|:| -1682 *4) (|:| -2717 *4))))
+ (-5 *1 (-748 *5 *4 *6 *3)) (-4 *6 (-601 *4))
+ (-4 *3 (-601 (-385 *4))))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-940 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-341)) (-5 *1 (-708 *2 *3)) (-4 *2 (-650 *3))))
((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-1157 *2)) (-4 *2 (-1123)))))
+ (|partial| -12 (-4 *1 (-790 *2)) (-4 *2 (-975)) (-4 *2 (-341)))))
+(((*1 *2 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1147 *5))
+ (-4 *5 (-13 (-341) (-138) (-966 (-525))))
+ (-5 *2
+ (-2 (|:| |a| *6) (|:| |b| (-385 *6)) (|:| |c| (-385 *6))
+ (|:| -2447 *6)))
+ (-5 *1 (-945 *5 *6)) (-5 *3 (-385 *6)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-796))))
+ ((*1 *1 *1) (-5 *1 (-796))))
+(((*1 *1 *1) (-12 (-5 *1 (-1112 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3)
+ (-12 (-5 *4 (-631 (-205))) (-5 *5 (-631 (-525))) (-5 *3 (-525))
+ (-5 *2 (-964)) (-5 *1 (-698)))))
(((*1 *2 *1)
- (-12
- (-5 *2
- (-3 (|:| |Null| "null") (|:| |Assignment| "assignment")
- (|:| |Conditional| "conditional") (|:| |Return| "return")
- (|:| |Block| "block") (|:| |Comment| "comment")
- (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while")
- (|:| |Repeat| "repeat") (|:| |Goto| "goto")
- (|:| |Continue| "continue")
- (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save")
- (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")))
- (-5 *1 (-306)))))
+ (-12 (-4 *3 (-341)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4)))
+ (-5 *2 (-1171 *6)) (-5 *1 (-314 *3 *4 *5 *6))
+ (-4 *6 (-320 *3 *4 *5)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-232 *4 *3 *5 *6)) (-4 *4 (-975)) (-4 *3 (-788))
+ (-4 *5 (-245 *3)) (-4 *6 (-734)) (-5 *2 (-591 (-712)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-232 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-788))
+ (-4 *5 (-245 *4)) (-4 *6 (-734)) (-5 *2 (-591 (-712))))))
+(((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-445)) (-5 *4 (-854)) (-5 *2 (-1176)) (-5 *1 (-1172)))))
+(((*1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-936)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-286))
+ (-5 *2 (-591 (-712))) (-5 *1 (-719 *3 *4 *5 *6 *7))
+ (-4 *3 (-1147 *6)) (-4 *7 (-882 *6 *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 (-1013 (-385 (-525))))) (-5 *1 (-242))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 (-1013 (-357)))) (-5 *1 (-242)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 (-525))) (-5 *1 (-227 *3 *4))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-975))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 (-525))) (-14 *3 (-591 (-1089)))
+ (-5 *1 (-431 *3 *4 *5)) (-4 *4 (-975))
+ (-4 *5 (-218 (-4045 *3) (-712)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-591 (-525))) (-5 *1 (-457 *3 *4))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-975)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-905 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515))
- (-5 *2 (-108)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087))))
- (-4 *6 (-732)) (-5 *2 (-589 (-589 (-523))))
- (-5 *1 (-855 *4 *5 *6 *7)) (-5 *3 (-523)) (-4 *7 (-880 *4 *6 *5)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1083 *9)) (-5 *4 (-589 *7)) (-4 *7 (-786))
- (-4 *9 (-880 *8 *6 *7)) (-4 *6 (-732)) (-4 *8 (-284))
- (-5 *2 (-589 (-710))) (-5 *1 (-682 *6 *7 *8 *9)) (-5 *5 (-710)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-383 (-883 *5)))) (-5 *4 (-589 (-1087)))
- (-4 *5 (-515)) (-5 *2 (-589 (-589 (-883 *5)))) (-5 *1 (-1093 *5)))))
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1037 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3)
+ (-12 (-5 *3 (-525)) (-5 *5 (-108)) (-5 *6 (-631 (-205)))
+ (-5 *4 (-205)) (-5 *2 (-964)) (-5 *1 (-697)))))
+(((*1 *1 *1) (-12 (-4 *1 (-224 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-4 *3 (-517)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-723 *2)) (-4 *2 (-975)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-51))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
+ (-12 (-5 *2 (-591 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
+ (-5 *1 (-542 *3)) (-4 *3 (-341)))))
+(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-591 *1)) (-4 *1 (-286)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-591 (-1085 *7))) (-5 *3 (-1085 *7))
+ (-4 *7 (-882 *4 *5 *6)) (-4 *4 (-842)) (-4 *5 (-734))
+ (-4 *6 (-788)) (-5 *1 (-839 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-591 (-1085 *5))) (-5 *3 (-1085 *5))
+ (-4 *5 (-1147 *4)) (-4 *4 (-842)) (-5 *1 (-840 *4 *5)))))
+(((*1 *1 *1) (-5 *1 (-987))))
(((*1 *2 *1)
- (-12
- (-5 *2
- (-589
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203)))))
- (-5 *1 (-518))))
+ (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *2 (-525))))
((*1 *2 *1)
- (-12 (-4 *1 (-560 *3 *4)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-5 *2 (-589 *3))))
+ (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975))
+ (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-525)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1041 (-525) (-564 (-47)))) (-5 *1 (-47))))
((*1 *2 *1)
- (-12
- (-5 *2
- (-589
- (-2 (|:| |xinit| (-203)) (|:| |xend| (-203))
- (|:| |fn| (-1169 (-292 (-203)))) (|:| |yinit| (-589 (-203)))
- (|:| |intvals| (-589 (-203))) (|:| |g| (-292 (-203)))
- (|:| |abserr| (-203)) (|:| |relerr| (-203)))))
- (-5 *1 (-742)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-589 *1)) (-5 *3 (-589 *7)) (-4 *1 (-992 *4 *5 *6 *7))
- (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 *1))
- (-4 *1 (-992 *4 *5 *6 *7))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-589 *1)) (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-589 *1))
- (-4 *1 (-992 *4 *5 *6 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158))))
- ((*1 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1068 (-523))) (-5 *1 (-1072 *4)) (-4 *4 (-973))
- (-5 *3 (-523)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-412)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-973)) (-5 *1 (-1141 *3 *2)) (-4 *2 (-1145 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-629 *2)) (-4 *2 (-158)) (-5 *1 (-135 *2))))
+ (-12 (-4 *3 (-923 *2)) (-4 *4 (-1147 *3)) (-4 *2 (-286))
+ (-5 *1 (-391 *2 *3 *4 *5)) (-4 *5 (-13 (-387 *3 *4) (-966 *3)))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-517)) (-4 *3 (-788)) (-5 *2 (-1041 *3 (-564 *1)))
+ (-4 *1 (-408 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1041 (-525) (-564 (-468)))) (-5 *1 (-468))))
+ ((*1 *2 *1)
+ (-12 (-4 *4 (-160)) (-4 *2 (|SubsetCategory| (-668) *4))
+ (-5 *1 (-570 *3 *4 *2)) (-4 *3 (-37 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *4 (-160)) (-4 *2 (|SubsetCategory| (-668) *4))
+ (-5 *1 (-607 *3 *4 *2)) (-4 *3 (-659 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2))
+ (-4 *4 (-351 *2)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-445)) (-5 *3 (-591 (-242))) (-5 *1 (-1172))))
+ ((*1 *1 *1) (-5 *1 (-1172))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-4 *3 (-346)) (-5 *2 (-108))))
((*1 *2 *3)
- (-12 (-4 *4 (-158)) (-4 *2 (-1145 *4)) (-5 *1 (-162 *4 *2 *3))
- (-4 *3 (-664 *4 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 (-383 (-883 *5)))) (-5 *4 (-1087))
- (-5 *2 (-883 *5)) (-5 *1 (-269 *5)) (-4 *5 (-427))))
+ (-12 (-5 *3 (-1085 *4)) (-4 *4 (-327)) (-5 *2 (-108))
+ (-5 *1 (-335 *4))))
((*1 *2 *3)
- (-12 (-5 *3 (-629 (-383 (-883 *4)))) (-5 *2 (-883 *4))
- (-5 *1 (-269 *4)) (-4 *4 (-427))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-346 *3 *2)) (-4 *3 (-158)) (-4 *2 (-1145 *3))))
+ (-12 (-5 *3 (-1171 *4)) (-4 *4 (-327)) (-5 *2 (-108))
+ (-5 *1 (-495 *4)))))
+(((*1 *1) (-5 *1 (-415))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1089)) (-4 *5 (-341)) (-5 *2 (-591 (-1120 *5)))
+ (-5 *1 (-1179 *5)) (-5 *4 (-1120 *5)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-108)) (-5 *5 (-525)) (-4 *6 (-341)) (-4 *6 (-346))
+ (-4 *6 (-975)) (-5 *2 (-591 (-591 (-631 *6)))) (-5 *1 (-958 *6))
+ (-5 *3 (-591 (-631 *6)))))
((*1 *2 *3)
- (-12 (-5 *3 (-629 (-155 (-383 (-523)))))
- (-5 *2 (-883 (-155 (-383 (-523))))) (-5 *1 (-704 *4))
- (-4 *4 (-13 (-339) (-784)))))
+ (-12 (-4 *4 (-341)) (-4 *4 (-346)) (-4 *4 (-975))
+ (-5 *2 (-591 (-591 (-631 *4)))) (-5 *1 (-958 *4))
+ (-5 *3 (-591 (-631 *4)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 (-155 (-383 (-523))))) (-5 *4 (-1087))
- (-5 *2 (-883 (-155 (-383 (-523))))) (-5 *1 (-704 *5))
- (-4 *5 (-13 (-339) (-784)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-629 (-383 (-523)))) (-5 *2 (-883 (-383 (-523))))
- (-5 *1 (-718 *4)) (-4 *4 (-13 (-339) (-784)))))
+ (-12 (-5 *4 (-108)) (-4 *5 (-341)) (-4 *5 (-346)) (-4 *5 (-975))
+ (-5 *2 (-591 (-591 (-631 *5)))) (-5 *1 (-958 *5))
+ (-5 *3 (-591 (-631 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 (-383 (-523)))) (-5 *4 (-1087))
- (-5 *2 (-883 (-383 (-523)))) (-5 *1 (-718 *5))
- (-4 *5 (-13 (-339) (-784))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-985)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-629 (-523))) (-5 *1 (-1026)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-695)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-695)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 (-155 (-203)) (-155 (-203)))) (-5 *4 (-1011 (-203)))
- (-5 *2 (-1171)) (-5 *1 (-234)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-152 *3)) (-4 *3 (-158)) (-4 *3 (-508))
- (-5 *2 (-383 (-523)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-383 (-523))) (-5 *1 (-394 *3)) (-4 *3 (-508))
- (-4 *3 (-515))))
- ((*1 *2 *1) (-12 (-4 *1 (-508)) (-5 *2 (-383 (-523)))))
+ (-12 (-5 *4 (-854)) (-4 *5 (-341)) (-4 *5 (-346)) (-4 *5 (-975))
+ (-5 *2 (-591 (-591 (-631 *5)))) (-5 *1 (-958 *5))
+ (-5 *3 (-591 (-631 *5))))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -1399 (-723 *3)) (|:| |coef2| (-723 *3))))
+ (-5 *1 (-723 *3)) (-4 *3 (-517)) (-4 *3 (-975))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-517)) (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *2 (-2 (|:| -1399 *1) (|:| |coef2| *1)))
+ (-4 *1 (-989 *3 *4 *5)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *1 *1) (-12 (-4 *1 (-618 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-882 *4 *5 *6)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *1 (-426 *4 *5 *6 *2)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-525)) (-4 *1 (-55 *4 *5 *3)) (-4 *4 (-1125))
+ (-4 *5 (-351 *4)) (-4 *3 (-351 *4)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1171 (-1089))) (-5 *3 (-1171 (-430 *4 *5 *6 *7)))
+ (-5 *1 (-430 *4 *5 *6 *7)) (-4 *4 (-160)) (-14 *5 (-854))
+ (-14 *6 (-591 (-1089))) (-14 *7 (-1171 (-631 *4)))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-430 *4 *5 *6 *7)))
+ (-5 *1 (-430 *4 *5 *6 *7)) (-4 *4 (-160)) (-14 *5 (-854))
+ (-14 *6 (-591 *2)) (-14 *7 (-1171 (-631 *4)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1171 (-430 *3 *4 *5 *6))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089)))
+ (-14 *6 (-1171 (-631 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1171 (-1089))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-4 *3 (-160)) (-14 *4 (-854)) (-14 *5 (-591 (-1089)))
+ (-14 *6 (-1171 (-631 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1089)) (-5 *1 (-430 *3 *4 *5 *6)) (-4 *3 (-160))
+ (-14 *4 (-854)) (-14 *5 (-591 *2)) (-14 *6 (-1171 (-631 *3)))))
+ ((*1 *1)
+ (-12 (-5 *1 (-430 *2 *3 *4 *5)) (-4 *2 (-160)) (-14 *3 (-854))
+ (-14 *4 (-591 (-1089))) (-14 *5 (-1171 (-631 *2))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-429))
+ (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-908 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-591 *7)) (-5 *3 (-108)) (-4 *7 (-989 *4 *5 *6))
+ (-4 *4 (-429)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-5 *1 (-908 *4 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1171 (-1019 *3 *4))) (-5 *1 (-1019 *3 *4))
+ (-14 *3 (-854)) (-14 *4 (-854)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1129)) (-4 *5 (-1147 *4)) (-4 *6 (-1147 (-385 *5)))
+ (-5 *2 (-712)) (-5 *1 (-319 *3 *4 *5 *6)) (-4 *3 (-320 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-712))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-712)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1041 (-525) (-564 (-47)))) (-5 *1 (-47))))
((*1 *2 *1)
- (-12 (-4 *1 (-736 *3)) (-4 *3 (-158)) (-4 *3 (-508))
- (-5 *2 (-383 (-523)))))
+ (-12 (-4 *3 (-286)) (-4 *4 (-923 *3)) (-4 *5 (-1147 *4))
+ (-5 *2 (-1171 *6)) (-5 *1 (-391 *3 *4 *5 *6))
+ (-4 *6 (-13 (-387 *4 *5) (-966 *4)))))
((*1 *2 *1)
- (-12 (-5 *2 (-383 (-523))) (-5 *1 (-772 *3)) (-4 *3 (-508))
- (-4 *3 (-1016))))
+ (-12 (-4 *3 (-975)) (-4 *3 (-788)) (-5 *2 (-1041 *3 (-564 *1)))
+ (-4 *1 (-408 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1041 (-525) (-564 (-468)))) (-5 *1 (-468))))
((*1 *2 *1)
- (-12 (-5 *2 (-383 (-523))) (-5 *1 (-779 *3)) (-4 *3 (-508))
- (-4 *3 (-1016))))
+ (-12 (-4 *3 (-160)) (-4 *2 (-37 *3)) (-5 *1 (-570 *2 *3 *4))
+ (-4 *4 (|SubsetCategory| (-668) *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-925 *3)) (-4 *3 (-158)) (-4 *3 (-508))
- (-5 *2 (-383 (-523)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-383 (-523))) (-5 *1 (-936 *3)) (-4 *3 (-964 *2)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-710)) (-4 *4 (-325)) (-5 *1 (-195 *4 *2))
- (-4 *2 (-1145 *4))))
- ((*1 *2 *2 *3 *2 *3)
- (-12 (-5 *3 (-523)) (-5 *1 (-635 *2)) (-4 *2 (-1145 *3)))))
+ (-12 (-4 *3 (-160)) (-4 *2 (-659 *3)) (-5 *1 (-607 *2 *3 *4))
+ (-4 *4 (|SubsetCategory| (-668) *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-510))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-135)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1016)) (-4 *6 (-817 *5)) (-5 *2 (-816 *5 *6 (-589 *6)))
- (-5 *1 (-818 *5 *6 *4)) (-5 *3 (-589 *6)) (-4 *4 (-564 (-823 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1016)) (-5 *2 (-589 (-271 *3))) (-5 *1 (-818 *5 *3 *4))
- (-4 *3 (-964 (-1087))) (-4 *3 (-817 *5)) (-4 *4 (-564 (-823 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1016)) (-5 *2 (-589 (-271 (-883 *3))))
- (-5 *1 (-818 *5 *3 *4)) (-4 *3 (-973))
- (-2575 (-4 *3 (-964 (-1087)))) (-4 *3 (-817 *5))
- (-4 *4 (-564 (-823 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1016)) (-5 *2 (-820 *5 *3)) (-5 *1 (-818 *5 *3 *4))
- (-2575 (-4 *3 (-964 (-1087)))) (-2575 (-4 *3 (-973)))
- (-4 *3 (-817 *5)) (-4 *4 (-564 (-823 *5))))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4))
- (-4 *3 (-343 *4))))
- ((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-4 *1 (-401 *3)) (-4 *3 (-1016)) (-5 *2 (-710)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-44 (-1070) (-713))) (-5 *1 (-110)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-695)))))
-(((*1 *1 *1) (-4 *1 (-1056))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1068 *4)) (-5 *3 (-523)) (-4 *4 (-973))
- (-5 *1 (-1072 *4))))
- ((*1 *1 *2 *2 *1)
- (-12 (-5 *2 (-523)) (-5 *1 (-1161 *3 *4 *5)) (-4 *3 (-973))
- (-14 *4 (-1087)) (-14 *5 *3))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1070)) (-4 *1 (-340 *3 *4)) (-4 *3 (-1016))
- (-4 *4 (-1016)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |preimage| (-589 *3)) (|:| |image| (-589 *3))))
- (-5 *1 (-836 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-355)) (-5 *3 (-1070)) (-5 *1 (-92))))
- ((*1 *2 *3 *2) (-12 (-5 *2 (-355)) (-5 *3 (-1070)) (-5 *1 (-92)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-834 *3)) (-4 *3 (-1016)) (-5 *2 (-1018 *3))))
- ((*1 *2 *1 *3)
- (-12 (-4 *4 (-1016)) (-5 *2 (-1018 (-589 *4))) (-5 *1 (-835 *4))
- (-5 *3 (-589 *4))))
- ((*1 *2 *1 *3)
- (-12 (-4 *4 (-1016)) (-5 *2 (-1018 (-1018 *4))) (-5 *1 (-835 *4))
- (-5 *3 (-1018 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *2 (-1018 *3)) (-5 *1 (-835 *3)) (-4 *3 (-1016)))))
+ (-12 (-5 *3 (-591 (-385 (-885 *5)))) (-5 *4 (-591 (-1089)))
+ (-4 *5 (-517)) (-5 *2 (-591 (-591 (-885 *5)))) (-5 *1 (-1095 *5)))))
+(((*1 *1) (-5 *1 (-1005))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-57 *6)) (-4 *6 (-1123))
- (-4 *5 (-1123)) (-5 *2 (-57 *5)) (-5 *1 (-56 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-218 *6 *7)) (-14 *6 (-710))
- (-4 *7 (-1123)) (-4 *5 (-1123)) (-5 *2 (-218 *6 *5))
- (-5 *1 (-217 *6 *7 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1123)) (-4 *5 (-1123))
- (-4 *2 (-349 *5)) (-5 *1 (-347 *6 *4 *5 *2)) (-4 *4 (-349 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1016)) (-4 *5 (-1016))
- (-4 *2 (-401 *5)) (-5 *1 (-399 *6 *4 *5 *2)) (-4 *4 (-401 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-589 *6)) (-4 *6 (-1123))
- (-4 *5 (-1123)) (-5 *2 (-589 *5)) (-5 *1 (-587 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-888 *6)) (-4 *6 (-1123))
- (-4 *5 (-1123)) (-5 *2 (-888 *5)) (-5 *1 (-887 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1068 *6)) (-4 *6 (-1123))
- (-4 *3 (-1123)) (-5 *2 (-1068 *3)) (-5 *1 (-1066 *6 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1169 *6)) (-4 *6 (-1123))
- (-4 *5 (-1123)) (-5 *2 (-1169 *5)) (-5 *1 (-1168 *6 *5)))))
+ (-12 (-5 *4 (-205)) (-5 *5 (-525)) (-5 *2 (-1121 *3))
+ (-5 *1 (-731 *3)) (-4 *3 (-905))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-591 (-876 (-205))))) (-5 *4 (-108))
+ (-5 *1 (-1121 *2)) (-4 *2 (-905)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1018 (-1018 *3))) (-5 *1 (-835 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-1052 *4 *5))) (-5 *3 (-1 (-108) *5 *5))
- (-4 *4 (-13 (-1016) (-33))) (-4 *5 (-13 (-1016) (-33)))
- (-5 *1 (-1053 *4 *5))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-1052 *3 *4))) (-4 *3 (-13 (-1016) (-33)))
- (-4 *4 (-13 (-1016) (-33))) (-5 *1 (-1053 *3 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1068 (-203))) (-5 *2 (-589 (-1070))) (-5 *1 (-172))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1068 (-203))) (-5 *2 (-589 (-1070))) (-5 *1 (-277))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1068 (-203))) (-5 *2 (-589 (-1070))) (-5 *1 (-282)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-629 *3)) (-4 *3 (-973)) (-5 *1 (-630 *3)))))
+ (-12 (-4 *1 (-994 *3 *4 *5 *6)) (-4 *3 (-429)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429)) (-4 *5 (-734))
+ (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))))
+(((*1 *2 *3 *3 *4 *4)
+ (-12 (-5 *3 (-631 (-205))) (-5 *4 (-525)) (-5 *2 (-964))
+ (-5 *1 (-690)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-732)) (-4 *6 (-786)) (-4 *7 (-515))
- (-4 *3 (-880 *7 *5 *6))
- (-5 *2
- (-2 (|:| -3262 (-710)) (|:| -2275 *3) (|:| |radicand| (-589 *3))))
- (-5 *1 (-884 *5 *6 *7 *3 *8)) (-5 *4 (-710))
- (-4 *8
- (-13 (-339)
- (-10 -8 (-15 -2164 (*3 $)) (-15 -2171 (*3 $)) (-15 -3976 ($ *3))))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-515))
- (-5 *2 (-2 (|:| -2275 *4) (|:| -3429 *3) (|:| -3143 *3)))
- (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-973)) (-4 *4 (-732)) (-4 *5 (-786))
- (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-987 *3 *4 *5))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-515)) (-4 *3 (-973))
- (-5 *2 (-2 (|:| -2275 *3) (|:| -3429 *1) (|:| -3143 *1)))
- (-4 *1 (-1145 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *2 (-962))
- (-5 *1 (-695)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3)))))
-(((*1 *2 *3 *4 *4 *5 *4 *4 *5)
- (-12 (-5 *3 (-1070)) (-5 *4 (-523)) (-5 *5 (-629 (-203)))
- (-5 *2 (-962)) (-5 *1 (-697)))))
+ (-12 (-4 *5 (-341)) (-4 *7 (-1147 *5)) (-4 *4 (-666 *5 *7))
+ (-5 *2 (-2 (|:| -4057 (-631 *6)) (|:| |vec| (-1171 *5))))
+ (-5 *1 (-752 *5 *6 *7 *4 *3)) (-4 *6 (-601 *5)) (-4 *3 (-601 *4)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1171 *4)) (-4 *4 (-587 *5)) (-4 *5 (-341))
+ (-4 *5 (-517)) (-5 *2 (-1171 *5)) (-5 *1 (-586 *5 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1171 *4)) (-4 *4 (-587 *5))
+ (-2247 (-4 *5 (-341))) (-4 *5 (-517)) (-5 *2 (-1171 (-385 *5)))
+ (-5 *1 (-586 *5 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-1172))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-1173)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |stiffness| (-355)) (|:| |stability| (-355))
- (|:| |expense| (-355)) (|:| |accuracy| (-355))
- (|:| |intermediateResults| (-355))))
- (-5 *2 (-962)) (-5 *1 (-282)))))
+ (-2 (|:| |pde| (-591 (-294 (-205))))
+ (|:| |constraints|
+ (-591
+ (-2 (|:| |start| (-205)) (|:| |finish| (-205))
+ (|:| |grid| (-712)) (|:| |boundaryType| (-525))
+ (|:| |dStart| (-631 (-205))) (|:| |dFinish| (-631 (-205))))))
+ (|:| |f| (-591 (-591 (-294 (-205))))) (|:| |st| (-1072))
+ (|:| |tol| (-205))))
+ (-5 *2 (-108)) (-5 *1 (-192)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-4 *3 (-344))
- (-5 *2 (-1083 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-157))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1119 *3)) (-4 *3 (-903)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-953 (-779 (-523))))
- (-5 *3 (-1068 (-2 (|:| |k| (-523)) (|:| |c| *4)))) (-4 *4 (-973))
- (-5 *1 (-548 *4)))))
-(((*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5)
- (-12 (-5 *3 (-852)) (-5 *4 (-203)) (-5 *5 (-523)) (-5 *6 (-805))
- (-5 *2 (-1174)) (-5 *1 (-1170)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 (-589 *7) *7 (-1083 *7))) (-5 *5 (-1 (-394 *7) *7))
- (-4 *7 (-1145 *6)) (-4 *6 (-13 (-339) (-136) (-964 (-383 (-523)))))
- (-5 *2 (-589 (-2 (|:| |frac| (-383 *7)) (|:| -1747 *3))))
- (-5 *1 (-748 *6 *7 *3 *8)) (-4 *3 (-599 *7))
- (-4 *8 (-599 (-383 *7)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-394 *6) *6)) (-4 *6 (-1145 *5))
- (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-5 *2
- (-589 (-2 (|:| |frac| (-383 *6)) (|:| -1747 (-597 *6 (-383 *6))))))
- (-5 *1 (-751 *5 *6)) (-5 *3 (-597 *6 (-383 *6))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-355)) (-5 *1 (-725)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-589 *6)) (-4 *6 (-987 *3 *4 *5)) (-4 *3 (-515))
- (-4 *4 (-732)) (-4 *5 (-786)) (-5 *1 (-906 *3 *4 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1087)) (-5 *4 (-883 (-523))) (-5 *2 (-306))
- (-5 *1 (-308)))))
-(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-523)) (-5 *3 (-852)) (-4 *1 (-380))))
- ((*1 *1 *2 *2) (-12 (-5 *2 (-523)) (-4 *1 (-380))))
+ (-12 (-4 *1 (-154 *3)) (-4 *3 (-160)) (-4 *3 (-510))
+ (-5 *2 (-385 (-525)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-385 (-525))) (-5 *1 (-396 *3)) (-4 *3 (-510))
+ (-4 *3 (-517))))
+ ((*1 *2 *1) (-12 (-4 *1 (-510)) (-5 *2 (-385 (-525)))))
((*1 *2 *1)
- (-12 (-4 *1 (-1019 *3 *4 *5 *2 *6)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *2 (-1016)))))
+ (-12 (-4 *1 (-738 *3)) (-4 *3 (-160)) (-4 *3 (-510))
+ (-5 *2 (-385 (-525)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-385 (-525))) (-5 *1 (-774 *3)) (-4 *3 (-510))
+ (-4 *3 (-1018))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-385 (-525))) (-5 *1 (-781 *3)) (-4 *3 (-510))
+ (-4 *3 (-1018))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-927 *3)) (-4 *3 (-160)) (-4 *3 (-510))
+ (-5 *2 (-385 (-525)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-385 (-525))) (-5 *1 (-938 *3)) (-4 *3 (-966 *2)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-734))
+ (-4 *3 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $))))) (-4 *5 (-517))
+ (-5 *1 (-674 *4 *3 *5 *2)) (-4 *2 (-882 (-385 (-885 *5)) *4 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *4 (-975)) (-4 *5 (-734))
+ (-4 *3
+ (-13 (-788)
+ (-10 -8 (-15 -1408 ((-1089) $))
+ (-15 -2037 ((-3 $ "failed") (-1089))))))
+ (-5 *1 (-915 *4 *5 *3 *2)) (-4 *2 (-882 (-885 *4) *5 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-591 *6))
+ (-4 *6
+ (-13 (-788)
+ (-10 -8 (-15 -1408 ((-1089) $))
+ (-15 -2037 ((-3 $ "failed") (-1089))))))
+ (-4 *4 (-975)) (-4 *5 (-734)) (-5 *1 (-915 *4 *5 *6 *2))
+ (-4 *2 (-882 (-885 *4) *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-1 (-108) *8))) (-4 *8 (-989 *5 *6 *7))
+ (-4 *5 (-517)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-5 *2 (-2 (|:| |goodPols| (-591 *8)) (|:| |badPols| (-591 *8))))
+ (-5 *1 (-908 *5 *6 *7 *8)) (-5 *4 (-591 *8)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *1 (-594 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-975)) (-5 *1 (-421 *3 *2)) (-4 *2 (-1147 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1171 *5)) (-4 *5 (-733)) (-5 *2 (-108))
+ (-5 *1 (-783 *4 *5)) (-14 *4 (-712)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-110)) (-4 *3 (-13 (-786) (-515))) (-5 *1 (-31 *3 *4))
- (-4 *4 (-406 *3))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-710)) (-5 *1 (-110))))
- ((*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-110))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
((*1 *2 *2)
- (-12 (-5 *2 (-110)) (-4 *3 (-13 (-786) (-515))) (-5 *1 (-145 *3 *4))
- (-4 *4 (-406 *3))))
- ((*1 *2 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-110)) (-5 *1 (-149))))
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
((*1 *2 *2)
- (-12 (-5 *2 (-110)) (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *4))
- (-4 *4 (-13 (-406 *3) (-930)))))
- ((*1 *2 *2) (-12 (-5 *2 (-110)) (-5 *1 (-278 *3)) (-4 *3 (-279))))
- ((*1 *2 *2) (-12 (-4 *1 (-279)) (-5 *2 (-110))))
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *1 *1) (-4 *1 (-466)))
((*1 *2 *2)
- (-12 (-5 *2 (-110)) (-4 *4 (-786)) (-5 *1 (-405 *3 *4))
- (-4 *3 (-406 *4))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-110)) (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *4))
- (-4 *4 (-406 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-110)) (-5 *1 (-562 *3)) (-4 *3 (-786))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-110)) (-4 *3 (-13 (-786) (-515))) (-5 *1 (-576 *3 *4))
- (-4 *4 (-13 (-406 *3) (-930) (-1109))))))
-(((*1 *2)
- (|partial| -12 (-4 *3 (-515)) (-4 *3 (-158))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -2922 (-589 *1))))
- (-4 *1 (-343 *3))))
- ((*1 *2)
- (|partial| -12
- (-5 *2
- (-2 (|:| |particular| (-428 *3 *4 *5 *6))
- (|:| -2922 (-589 (-428 *3 *4 *5 *6)))))
- (-5 *1 (-428 *3 *4 *5 *6)) (-4 *3 (-158)) (-14 *4 (-852))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-299 *3 *4)) (-4 *3 (-1016))
- (-4 *4 (-124)))))
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-788)) (-5 *2 (-1098 (-591 *4))) (-5 *1 (-1097 *4))
+ (-5 *3 (-591 *4)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-836 *3)) (-4 *3 (-1018)) (-5 *2 (-1020 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *4 (-1018)) (-5 *2 (-1020 (-591 *4))) (-5 *1 (-837 *4))
+ (-5 *3 (-591 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *4 (-1018)) (-5 *2 (-1020 (-1020 *4))) (-5 *1 (-837 *4))
+ (-5 *3 (-1020 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *2 (-1020 *3)) (-5 *1 (-837 *3)) (-4 *3 (-1018)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-339)) (-4 *4 (-349 *3)) (-4 *5 (-349 *3))
- (-5 *1 (-490 *3 *4 *5 *2)) (-4 *2 (-627 *3 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *5 (-349 *4)) (-4 *6 (-349 *4))
- (-4 *7 (-921 *4)) (-4 *2 (-627 *7 *8 *9))
- (-5 *1 (-491 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-627 *4 *5 *6))
- (-4 *8 (-349 *7)) (-4 *9 (-349 *7))))
+ (-12 (-4 *3 (-975)) (-5 *1 (-654 *3 *2)) (-4 *2 (-1147 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-517)) (-5 *2 (-108)))))
+(((*1 *1 *1) (-5 *1 (-205))) ((*1 *1 *1) (-5 *1 (-357)))
+ ((*1 *1) (-5 *1 (-357))))
+(((*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-335 *3)) (-4 *3 (-327)))))
+(((*1 *2 *1) (-12 (-4 *1 (-286)) (-5 *2 (-712)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975))))
+ ((*1 *1 *1) (-12 (-5 *1 (-1192 *2 *3)) (-4 *2 (-975)) (-4 *3 (-784)))))
+(((*1 *1 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-975)) (-4 *3 (-733))))
((*1 *1 *1)
- (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-349 *2))
- (-4 *4 (-349 *2)) (-4 *2 (-284))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-284)) (-4 *3 (-158)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *1 (-628 *3 *4 *5 *2))
- (-4 *2 (-627 *3 *4 *5))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-629 *3)) (-4 *3 (-284)) (-5 *1 (-639 *3))))
+ (-12 (-5 *1 (-49 *2 *3)) (-4 *2 (-975)) (-14 *3 (-591 (-1089)))))
((*1 *1 *1)
- (-12 (-4 *1 (-976 *2 *3 *4 *5 *6)) (-4 *4 (-973))
- (-4 *5 (-216 *3 *4)) (-4 *6 (-216 *2 *4)) (-4 *4 (-284)))))
-(((*1 *2 *1) (-12 (-5 *2 (-167)) (-5 *1 (-226)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
+ (-12 (-5 *1 (-203 *2 *3)) (-4 *2 (-13 (-975) (-788)))
+ (-14 *3 (-591 (-1089)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-360 *2 *3)) (-4 *2 (-975)) (-4 *3 (-1018))))
+ ((*1 *1 *1)
+ (-12 (-14 *2 (-591 (-1089))) (-4 *3 (-160))
+ (-4 *5 (-218 (-4045 *2) (-712)))
+ (-14 *6
+ (-1 (-108) (-2 (|:| -2226 *4) (|:| -2008 *5))
+ (-2 (|:| -2226 *4) (|:| -2008 *5))))
+ (-5 *1 (-438 *2 *3 *4 *5 *6 *7)) (-4 *4 (-788))
+ (-4 *7 (-882 *3 *5 (-798 *2)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-481 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-788))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-517)) (-5 *1 (-572 *2 *3)) (-4 *3 (-1147 *2))))
+ ((*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-975))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-677 *2 *3)) (-4 *3 (-788)) (-4 *2 (-975))
+ (-4 *3 (-668))))
+ ((*1 *1 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-989 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *2 (-788))))
+ ((*1 *1 *1) (-12 (-5 *1 (-1192 *2 *3)) (-4 *2 (-975)) (-4 *3 (-784)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-108)) (-5 *1 (-110))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-281)) (-5 *3 (-1089)) (-5 *2 (-108))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-281)) (-5 *3 (-110)) (-5 *2 (-108))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1089)) (-5 *2 (-108)) (-5 *1 (-564 *4)) (-4 *4 (-788))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-564 *4)) (-4 *4 (-788))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1018)) (-5 *2 (-108)) (-5 *1 (-820 *5 *3 *4))
+ (-4 *3 (-819 *5)) (-4 *4 (-566 (-825 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 *6)) (-4 *6 (-819 *5)) (-4 *5 (-1018))
+ (-5 *2 (-108)) (-5 *1 (-820 *5 *6 *4)) (-4 *4 (-566 (-825 *5))))))
+(((*1 *1 *2) (-12 (-5 *2 (-760 *3)) (-4 *3 (-788)) (-5 *1 (-616 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-1 (-589 *2) *2 *2 *2)) (-4 *2 (-1016))
- (-5 *1 (-98 *2))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1016)) (-5 *1 (-98 *2)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-589 (-883 (-523)))) (-5 *4 (-589 (-1087)))
- (-5 *2 (-589 (-589 (-355)))) (-5 *1 (-950)) (-5 *5 (-355))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-970 *4 *5)) (-4 *4 (-13 (-784) (-284) (-136) (-949)))
- (-14 *5 (-589 (-1087))) (-5 *2 (-589 (-589 (-951 (-383 *4)))))
- (-5 *1 (-1193 *4 *5 *6)) (-14 *6 (-589 (-1087)))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-108))
- (-4 *5 (-13 (-784) (-284) (-136) (-949)))
- (-5 *2 (-589 (-589 (-951 (-383 *5))))) (-5 *1 (-1193 *5 *6 *7))
- (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-108))
- (-4 *5 (-13 (-784) (-284) (-136) (-949)))
- (-5 *2 (-589 (-589 (-951 (-383 *5))))) (-5 *1 (-1193 *5 *6 *7))
- (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-883 *5))) (-5 *4 (-108))
- (-4 *5 (-13 (-784) (-284) (-136) (-949)))
- (-5 *2 (-589 (-589 (-951 (-383 *5))))) (-5 *1 (-1193 *5 *6 *7))
- (-14 *6 (-589 (-1087))) (-14 *7 (-589 (-1087)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-883 *4)))
- (-4 *4 (-13 (-784) (-284) (-136) (-949)))
- (-5 *2 (-589 (-589 (-951 (-383 *4))))) (-5 *1 (-1193 *4 *5 *6))
- (-14 *5 (-589 (-1087))) (-14 *6 (-589 (-1087))))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1052 *4 *5)) (-4 *4 (-13 (-1016) (-33)))
- (-4 *5 (-13 (-1016) (-33))) (-5 *2 (-108)) (-5 *1 (-1053 *4 *5)))))
-(((*1 *2) (-12 (-5 *2 (-1047 (-203))) (-5 *1 (-1107)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-589 (-1087))) (-5 *2 (-1087)) (-5 *1 (-306)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-292 (-203))) (-5 *2 (-292 (-355))) (-5 *1 (-282)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523)))))
- (-4 *5 (-1145 *4)) (-5 *2 (-589 (-2 (|:| -3882 *5) (|:| -3282 *5))))
- (-5 *1 (-746 *4 *5 *3 *6)) (-4 *3 (-599 *5))
- (-4 *6 (-599 (-383 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-339) (-136) (-964 (-383 (-523)))))
- (-4 *4 (-1145 *5)) (-5 *2 (-589 (-2 (|:| -3882 *4) (|:| -3282 *4))))
- (-5 *1 (-746 *5 *4 *3 *6)) (-4 *3 (-599 *4))
- (-4 *6 (-599 (-383 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523)))))
- (-4 *5 (-1145 *4)) (-5 *2 (-589 (-2 (|:| -3882 *5) (|:| -3282 *5))))
- (-5 *1 (-746 *4 *5 *6 *3)) (-4 *6 (-599 *5))
- (-4 *3 (-599 (-383 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-339) (-136) (-964 (-383 (-523)))))
- (-4 *4 (-1145 *5)) (-5 *2 (-589 (-2 (|:| -3882 *4) (|:| -3282 *4))))
- (-5 *1 (-746 *5 *4 *6 *3)) (-4 *6 (-599 *4))
- (-4 *3 (-599 (-383 *4))))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1119 *3)) (-4 *3 (-903)))))
-(((*1 *1 *1 *1 *1) (-5 *1 (-794))) ((*1 *1 *1 *1) (-5 *1 (-794)))
- ((*1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410)))))
-(((*1 *2 *2) (-12 (-5 *2 (-852)) (-5 *1 (-333 *3)) (-4 *3 (-325)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-517)))))
+(((*1 *1 *2 *3 *3 *3 *4)
+ (-12 (-4 *4 (-341)) (-4 *3 (-1147 *4)) (-4 *5 (-1147 (-385 *3)))
+ (-4 *1 (-313 *4 *3 *5 *2)) (-4 *2 (-320 *4 *3 *5))))
+ ((*1 *1 *2 *2 *3)
+ (-12 (-5 *3 (-525)) (-4 *2 (-341)) (-4 *4 (-1147 *2))
+ (-4 *5 (-1147 (-385 *4))) (-4 *1 (-313 *2 *4 *5 *6))
+ (-4 *6 (-320 *2 *4 *5))))
+ ((*1 *1 *2 *2)
+ (-12 (-4 *2 (-341)) (-4 *3 (-1147 *2)) (-4 *4 (-1147 (-385 *3)))
+ (-4 *1 (-313 *2 *3 *4 *5)) (-4 *5 (-320 *2 *3 *4))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-341)) (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4)))
+ (-4 *1 (-313 *3 *4 *5 *2)) (-4 *2 (-320 *3 *4 *5))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-391 *4 (-385 *4) *5 *6)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-4 *6 (-320 *3 *4 *5)) (-4 *3 (-341))
+ (-4 *1 (-313 *3 *4 *5 *6)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-1129)) (-4 *5 (-1147 *4))
+ (-5 *2 (-2 (|:| |radicand| (-385 *5)) (|:| |deg| (-712))))
+ (-5 *1 (-139 *4 *5 *3)) (-4 *3 (-1147 (-385 *5))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1154 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1131 *3))
+ (-5 *2 (-385 (-525))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-341)) (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3)))
+ (-5 *1 (-708 *3 *4)) (-4 *3 (-650 *4))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-341)) (-4 *3 (-975))
+ (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-790 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-94 *5)) (-4 *5 (-341)) (-4 *5 (-975))
+ (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-791 *5 *3))
+ (-4 *3 (-790 *5)))))
+(((*1 *2 *3 *3 *4 *5 *5)
+ (-12 (-5 *5 (-108)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788))
+ (-4 *3 (-989 *6 *7 *8))
+ (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4))))
+ (-5 *1 (-995 *6 *7 *8 *3 *4)) (-4 *4 (-994 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-591 (-2 (|:| |val| (-591 *8)) (|:| -3374 *9))))
+ (-5 *5 (-108)) (-4 *8 (-989 *6 *7 *4)) (-4 *9 (-994 *6 *7 *4 *8))
+ (-4 *6 (-429)) (-4 *7 (-734)) (-4 *4 (-788))
+ (-5 *2 (-591 (-2 (|:| |val| *8) (|:| -3374 *9))))
+ (-5 *1 (-995 *6 *7 *4 *8 *9)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-591 (-885 *4))) (-5 *3 (-591 (-1089))) (-4 *4 (-429))
+ (-5 *1 (-851 *4)))))
+(((*1 *1 *1) (-4 *1 (-510))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-4 *1 (-304 *3 *4)) (-4 *3 (-975))
+ (-4 *4 (-733)) (-4 *3 (-160)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-294 *3)) (-4 *3 (-13 (-975) (-788)))
+ (-5 *1 (-203 *3 *4)) (-14 *4 (-591 (-1089))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-836 (-523))) (-5 *4 (-523)) (-5 *2 (-629 *4))
- (-5 *1 (-955 *5)) (-4 *5 (-973))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-629 (-523))) (-5 *1 (-955 *4))
- (-4 *4 (-973))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-836 (-523)))) (-5 *4 (-523))
- (-5 *2 (-589 (-629 *4))) (-5 *1 (-955 *5)) (-4 *5 (-973))))
+ (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-591 (-1089))) (-4 *5 (-517))
+ (-5 *2 (-591 (-591 (-273 (-385 (-885 *5)))))) (-5 *1 (-711 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-589 (-589 (-523)))) (-5 *2 (-589 (-629 (-523))))
- (-5 *1 (-955 *4)) (-4 *4 (-973)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-4 *1 (-1145 *3)) (-4 *3 (-973)))))
-(((*1 *2 *3) (-12 (-5 *3 (-874 *2)) (-5 *1 (-911 *2)) (-4 *2 (-973)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1054 *3 *4)) (-14 *3 (-852)) (-4 *4 (-339))
- (-5 *1 (-922 *3 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-858)))))
-(((*1 *2)
- (-12 (-4 *3 (-515)) (-5 *2 (-589 (-629 *3))) (-5 *1 (-42 *3 *4))
- (-4 *4 (-393 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *3 *4 *4 *3)
- (|partial| -12 (-5 *4 (-562 *3))
- (-4 *3 (-13 (-406 *5) (-27) (-1109)))
- (-4 *5 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *2 (-2 (|:| -3699 *3) (|:| |coeff| *3)))
- (-5 *1 (-525 *5 *3 *6)) (-4 *6 (-1016)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852))
- (-4 *4 (-973)))))
+ (-12 (-5 *3 (-591 (-885 *4))) (-4 *4 (-517))
+ (-5 *2 (-591 (-591 (-273 (-385 (-885 *4)))))) (-5 *1 (-711 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-631 *7))
+ (-5 *5
+ (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -4003 (-591 *6)))
+ *7 *6))
+ (-4 *6 (-341)) (-4 *7 (-601 *6))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1171 *6) "failed"))
+ (|:| -4003 (-591 (-1171 *6)))))
+ (-5 *1 (-754 *6 *7)) (-5 *4 (-1171 *6)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-591 *1))
+ (-4 *1 (-882 *3 *4 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-710)) (-5 *4 (-523)) (-5 *1 (-420 *2)) (-4 *2 (-973)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-523)) (-5 *2 (-108)) (-5 *1 (-512)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-133))))
- ((*1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-133)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2))
- (-4 *2 (-406 *3)))))
-(((*1 *1 *1) (-5 *1 (-985))))
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-955 (-781 (-525))))
+ (-5 *3 (-1070 (-2 (|:| |k| (-525)) (|:| |c| *4)))) (-4 *4 (-975))
+ (-5 *1 (-550 *4)))))
+(((*1 *2 *3 *4 *3 *3)
+ (-12 (-5 *3 (-273 *6)) (-5 *4 (-110)) (-4 *6 (-408 *5))
+ (-4 *5 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51))
+ (-5 *1 (-295 *5 *6))))
+ ((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-273 *7)) (-5 *4 (-110)) (-5 *5 (-591 *7))
+ (-4 *7 (-408 *6)) (-4 *6 (-13 (-788) (-517) (-566 (-501))))
+ (-5 *2 (-51)) (-5 *1 (-295 *6 *7))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-591 (-273 *7))) (-5 *4 (-591 (-110))) (-5 *5 (-273 *7))
+ (-4 *7 (-408 *6)) (-4 *6 (-13 (-788) (-517) (-566 (-501))))
+ (-5 *2 (-51)) (-5 *1 (-295 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-591 (-273 *8))) (-5 *4 (-591 (-110))) (-5 *5 (-273 *8))
+ (-5 *6 (-591 *8)) (-4 *8 (-408 *7))
+ (-4 *7 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51))
+ (-5 *1 (-295 *7 *8))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-591 *7)) (-5 *4 (-591 (-110))) (-5 *5 (-273 *7))
+ (-4 *7 (-408 *6)) (-4 *6 (-13 (-788) (-517) (-566 (-501))))
+ (-5 *2 (-51)) (-5 *1 (-295 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-591 (-110))) (-5 *6 (-591 (-273 *8)))
+ (-4 *8 (-408 *7)) (-5 *5 (-273 *8))
+ (-4 *7 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51))
+ (-5 *1 (-295 *7 *8))))
+ ((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-273 *5)) (-5 *4 (-110)) (-4 *5 (-408 *6))
+ (-4 *6 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51))
+ (-5 *1 (-295 *6 *5))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-110)) (-5 *5 (-273 *3)) (-4 *3 (-408 *6))
+ (-4 *6 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51))
+ (-5 *1 (-295 *6 *3))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-110)) (-5 *5 (-273 *3)) (-4 *3 (-408 *6))
+ (-4 *6 (-13 (-788) (-517) (-566 (-501)))) (-5 *2 (-51))
+ (-5 *1 (-295 *6 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-110)) (-5 *5 (-273 *3)) (-5 *6 (-591 *3))
+ (-4 *3 (-408 *7)) (-4 *7 (-13 (-788) (-517) (-566 (-501))))
+ (-5 *2 (-51)) (-5 *1 (-295 *7 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1087)) (-5 *2 (-499)) (-5 *1 (-498 *4))
- (-4 *4 (-1123)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-589 *3)) (-5 *1 (-899 *4 *3))
- (-4 *3 (-1145 *4)))))
+ (-12 (-5 *3 (-227 *4 *5)) (-14 *4 (-591 (-1089))) (-4 *5 (-429))
+ (-5 *2 (-457 *4 *5)) (-5 *1 (-579 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-104))) (-5 *1 (-162)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-1176)) (-5 *1 (-1092))))
+ ((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-1092)))))
+(((*1 *1) (-5 *1 (-135))) ((*1 *1 *1) (-5 *1 (-796))))
+(((*1 *1 *2 *1) (-12 (-5 *1 (-591 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-1070 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-429)) (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-5 *2 (-591 *3)) (-5 *1 (-908 *4 *5 *6 *3))
+ (-4 *3 (-989 *4 *5 *6)))))
+(((*1 *2 *2 *3 *2) (-12 (-5 *2 (-1072)) (-5 *3 (-525)) (-5 *1 (-221))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-591 (-1072))) (-5 *3 (-525)) (-5 *4 (-1072))
+ (-5 *1 (-221))))
+ ((*1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-796))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1149 *2 *3)) (-4 *3 (-733)) (-4 *2 (-975)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-781 (-357))) (-5 *2 (-781 (-205))) (-5 *1 (-284)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1036)) (-5 *2 (-1176)) (-5 *1 (-772)))))
(((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))))
-(((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-874 *4))) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852))
- (-4 *4 (-973)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-852)) (-5 *1 (-725)))))
-(((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-355)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-104))))
- ((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-110))))
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-224 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-261 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-261 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *1 *2)
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4251)) (-4 *1 (-1159 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *3 (-733)) (-4 *2 (-975))))
((*1 *2 *1)
- (-12 (-4 *1 (-340 *2 *3)) (-4 *3 (-1016)) (-4 *2 (-1016))))
- ((*1 *2 *1) (-12 (-4 *1 (-365)) (-5 *2 (-1070))))
- ((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-414 *3)) (-14 *3 *2)))
- ((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-562 *3)) (-4 *3 (-786))))
- ((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-895))))
- ((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-994 *3)) (-14 *3 *2)))
- ((*1 *1 *1) (-5 *1 (-1087))))
+ (-12 (-4 *2 (-975)) (-5 *1 (-49 *2 *3)) (-14 *3 (-591 (-1089)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-294 *3)) (-5 *1 (-203 *3 *4))
+ (-4 *3 (-13 (-975) (-788))) (-14 *4 (-591 (-1089)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-360 *2 *3)) (-4 *3 (-1018)) (-4 *2 (-975))))
+ ((*1 *2 *1)
+ (-12 (-14 *3 (-591 (-1089))) (-4 *5 (-218 (-4045 *3) (-712)))
+ (-14 *6
+ (-1 (-108) (-2 (|:| -2226 *4) (|:| -2008 *5))
+ (-2 (|:| -2226 *4) (|:| -2008 *5))))
+ (-4 *2 (-160)) (-5 *1 (-438 *3 *2 *4 *5 *6 *7)) (-4 *4 (-788))
+ (-4 *7 (-882 *2 *5 (-798 *3)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-481 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1018))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-517)) (-5 *1 (-572 *2 *3)) (-4 *3 (-1147 *2))))
+ ((*1 *2 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-975))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-975)) (-5 *1 (-677 *2 *3)) (-4 *3 (-788))
+ (-4 *3 (-668))))
+ ((*1 *2 *1) (-12 (-4 *1 (-790 *2)) (-4 *2 (-975))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-904 *2 *3 *4)) (-4 *3 (-733)) (-4 *4 (-788))
+ (-4 *2 (-975))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-989 *3 *4 *2)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *2 (-788)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1072)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-1176))
+ (-5 *1 (-995 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1072)) (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-1176))
+ (-5 *1 (-1026 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-589 (-710))) (-5 *1 (-899 *4 *3))
- (-4 *3 (-1145 *4)))))
-(((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4))
- (-4 *3 (-343 *4))))
- ((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-333 *4))
- (-4 *4 (-325)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-940)) (-5 *2 (-794)))))
-(((*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)) (-4 *2 (-508))))
- ((*1 *1 *1) (-4 *1 (-982))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-629 *4)) (-5 *3 (-852)) (|has| *4 (-6 (-4250 "*")))
- (-4 *4 (-973)) (-5 *1 (-955 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-589 (-629 *4))) (-5 *3 (-852))
- (|has| *4 (-6 (-4250 "*"))) (-4 *4 (-973)) (-5 *1 (-955 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
+ (-12 (-5 *3 (-1171 *5)) (-4 *5 (-733)) (-5 *2 (-108))
+ (-5 *1 (-783 *4 *5)) (-14 *4 (-712)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-1147 *4)) (-5 *1 (-504 *4 *2 *5 *6))
+ (-4 *4 (-286)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-712))))))
+(((*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-591 *7)) (|:| |badPols| (-591 *7))))
+ (-5 *1 (-908 *4 *5 *6 *7)) (-5 *3 (-591 *7)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796))))
+ ((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -2718 (-591 (-796))) (|:| -2593 (-591 (-796)))
+ (|:| |presup| (-591 (-796))) (|:| -1772 (-591 (-796)))
+ (|:| |args| (-591 (-796)))))
+ (-5 *1 (-1089)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2976 *4)))
+ (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-598 *4)) (-4 *4 (-320 *5 *6 *7))
+ (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-4 *6 (-1147 *5)) (-4 *7 (-1147 (-385 *6)))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4))))
+ (-5 *1 (-747 *5 *6 *7 *4)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-1092)) (-5 *3 (-1089)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-281))))
+ ((*1 *1 *1) (-4 *1 (-281)))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796))))
+ ((*1 *1 *1) (-5 *1 (-796))))
+(((*1 *2 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-157 (-205)))) (-5 *2 (-964))
+ (-5 *1 (-696)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-327)) (-5 *2 (-108)) (-5 *1 (-197 *4 *3))
+ (-4 *3 (-1147 *4)))))
+(((*1 *2 *2 *2 *3 *3 *4 *2 *5)
+ (|partial| -12 (-5 *3 (-564 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1089))) (-5 *5 (-1085 *2))
+ (-4 *2 (-13 (-408 *6) (-27) (-1111)))
+ (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *1 (-521 *6 *2 *7)) (-4 *7 (-1018))))
+ ((*1 *2 *2 *2 *3 *3 *4 *3 *2 *5)
+ (|partial| -12 (-5 *3 (-564 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1089)))
+ (-5 *5 (-385 (-1085 *2))) (-4 *2 (-13 (-408 *6) (-27) (-1111)))
+ (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *1 (-521 *6 *2 *7)) (-4 *7 (-1018)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-1107)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1152 *3 *2)) (-4 *3 (-973))
- (-4 *2 (-1129 *3)))))
-(((*1 *1 *2 *3)
- (-12 (-4 *1 (-358 *3 *2)) (-4 *3 (-973)) (-4 *2 (-1016))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-523)) (-5 *2 (-1068 *3)) (-5 *1 (-1072 *3))
- (-4 *3 (-973))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-758 *4)) (-4 *4 (-786)) (-4 *1 (-1184 *4 *3))
- (-4 *3 (-973)))))
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))))
+(((*1 *2 *3 *4 *5 *5 *4 *6)
+ (-12 (-5 *4 (-525)) (-5 *6 (-1 (-1176) (-1171 *5) (-1171 *5) (-357)))
+ (-5 *3 (-1171 (-357))) (-5 *5 (-357)) (-5 *2 (-1176))
+ (-5 *1 (-729)))))
+(((*1 *1 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-975)) (-4 *3 (-733))))
+ ((*1 *2 *1) (-12 (-4 *1 (-360 *3 *2)) (-4 *3 (-975)) (-4 *2 (-1018))))
+ ((*1 *2 *1)
+ (-12 (-14 *3 (-591 (-1089))) (-4 *4 (-160))
+ (-4 *6 (-218 (-4045 *3) (-712)))
+ (-14 *7
+ (-1 (-108) (-2 (|:| -2226 *5) (|:| -2008 *6))
+ (-2 (|:| -2226 *5) (|:| -2008 *6))))
+ (-5 *2 (-655 *5 *6 *7)) (-5 *1 (-438 *3 *4 *5 *6 *7 *8))
+ (-4 *5 (-788)) (-4 *8 (-882 *4 *6 (-798 *3)))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-668)) (-4 *2 (-788)) (-5 *1 (-677 *3 *2))
+ (-4 *3 (-975))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-904 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-733))
+ (-4 *4 (-788)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-905)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-591 (-525))) (-5 *1 (-1028)) (-5 *3 (-525)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1087)) (-4 *5 (-339)) (-5 *2 (-589 (-1118 *5)))
- (-5 *1 (-1177 *5)) (-5 *4 (-1118 *5)))))
-(((*1 *2)
- (-12
- (-5 *2 (-2 (|:| -2635 (-589 (-1087))) (|:| -3007 (-589 (-1087)))))
- (-5 *1 (-1125)))))
+ (|partial| -12 (-5 *4 (-273 (-774 *3)))
+ (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-774 *3)) (-5 *1 (-584 *5 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-273 (-774 (-885 *5)))) (-4 *5 (-429))
+ (-5 *2 (-774 (-385 (-885 *5)))) (-5 *1 (-585 *5))
+ (-5 *3 (-385 (-885 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-273 (-385 (-885 *5)))) (-5 *3 (-385 (-885 *5)))
+ (-4 *5 (-429)) (-5 *2 (-774 *3)) (-5 *1 (-585 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-975))
+ (-4 *2 (-13 (-382) (-966 *4) (-341) (-1111) (-263)))
+ (-5 *1 (-420 *4 *3 *2)) (-4 *3 (-1147 *4))))
+ ((*1 *1 *1) (-4 *1 (-510)))
+ ((*1 *2 *1) (-12 (-5 *2 (-854)) (-5 *1 (-616 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1) (-12 (-5 *2 (-854)) (-5 *1 (-620 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-760 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-826 *3)) (-4 *3 (-788))))
+ ((*1 *2 *1) (-12 (-4 *1 (-925 *3)) (-4 *3 (-1125)) (-5 *2 (-712))))
+ ((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-1123 *3)) (-4 *3 (-1125))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1169 *2)) (-4 *2 (-1125)) (-4 *2 (-932))
+ (-4 *2 (-975)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357))
+ (-5 *2
+ (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525))
+ (|:| |success| (-108))))
+ (-5 *1 (-730)) (-5 *5 (-525)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-836 *3))) (-5 *1 (-835 *3)) (-4 *3 (-1016)))))
-(((*1 *2 *2) (-12 (-5 *2 (-589 (-292 (-203)))) (-5 *1 (-244)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1160 *2)) (-4 *2 (-973)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4248)) (-4 *1 (-462 *4))
- (-4 *4 (-1123)) (-5 *2 (-108)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 (-710) *2)) (-5 *4 (-710)) (-4 *2 (-1016))
- (-5 *1 (-619 *2))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1 *3 (-710) *3)) (-4 *3 (-1016)) (-5 *1 (-622 *3)))))
+ (-12 (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975))
+ (-5 *2 (-2 (|:| |k| (-760 *3)) (|:| |c| *4))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1169 *5)) (-4 *5 (-585 *4)) (-4 *4 (-515))
- (-5 *2 (-108)) (-5 *1 (-584 *4 *5)))))
-(((*1 *2 *1 *3 *3 *2)
- (-12 (-5 *3 (-523)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1123))
- (-4 *4 (-349 *2)) (-4 *5 (-349 *2))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-523)) (-4 *1 (-55 *2 *4 *5)) (-4 *4 (-349 *2))
- (-4 *5 (-349 *2)) (-4 *2 (-1123))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 "right") (-4 *1 (-115 *3)) (-4 *3 (-1123))))
- ((*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-115 *3)) (-4 *3 (-1123))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-589 (-523))) (-4 *2 (-158)) (-5 *1 (-128 *4 *5 *2))
- (-14 *4 (-523)) (-14 *5 (-710))))
- ((*1 *2 *1 *3 *3 *3 *3)
- (-12 (-5 *3 (-523)) (-4 *2 (-158)) (-5 *1 (-128 *4 *5 *2))
- (-14 *4 *3) (-14 *5 (-710))))
- ((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-523)) (-4 *2 (-158)) (-5 *1 (-128 *4 *5 *2))
- (-14 *4 *3) (-14 *5 (-710))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-523)) (-4 *2 (-158)) (-5 *1 (-128 *4 *5 *2))
- (-14 *4 *3) (-14 *5 (-710))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-4 *2 (-158)) (-5 *1 (-128 *4 *5 *2))
- (-14 *4 *3) (-14 *5 (-710))))
+ (-12 (-5 *3 (-591 (-1089))) (-5 *2 (-1176)) (-5 *1 (-1127))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-591 (-1089))) (-5 *2 (-1176)) (-5 *1 (-1127)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-631 (-385 (-885 (-525)))))
+ (-5 *2 (-631 (-294 (-525)))) (-5 *1 (-960)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-138))
+ (-4 *3 (-286)) (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-908 *3 *4 *5 *6)))))
+(((*1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-221)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-360 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1018))
+ (-5 *2 (-591 (-2 (|:| |k| *4) (|:| |c| *3))))))
((*1 *2 *1)
- (-12 (-4 *2 (-158)) (-5 *1 (-128 *3 *4 *2)) (-14 *3 (-523))
- (-14 *4 (-710))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1087)) (-5 *2 (-223 (-1070))) (-5 *1 (-193 *4))
- (-4 *4
- (-13 (-786)
- (-10 -8 (-15 -1502 ((-1070) $ *3)) (-15 -3942 ((-1174) $))
- (-15 -2149 ((-1174) $)))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-918)) (-5 *1 (-193 *3))
- (-4 *3
- (-13 (-786)
- (-10 -8 (-15 -1502 ((-1070) $ (-1087))) (-15 -3942 ((-1174) $))
- (-15 -2149 ((-1174) $)))))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 "count") (-5 *2 (-710)) (-5 *1 (-223 *4)) (-4 *4 (-786))))
- ((*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-223 *3)) (-4 *3 (-786))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 "unique") (-5 *1 (-223 *3)) (-4 *3 (-786))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-263 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1123))))
- ((*1 *2 *1 *3 *2)
- (-12 (-4 *1 (-265 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-1123))))
- ((*1 *2 *1 *2)
- (-12 (-4 *3 (-158)) (-5 *1 (-266 *3 *2 *4 *5 *6 *7))
- (-4 *2 (-1145 *3)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4))
- (-14 *6 (-1 (-3 *4 "failed") *4 *4))
- (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-589 *1)) (-4 *1 (-279))))
- ((*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-279)) (-5 *2 (-110))))
- ((*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-279)) (-5 *2 (-110))))
- ((*1 *1 *2 *1 *1) (-12 (-4 *1 (-279)) (-5 *2 (-110))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-279)) (-5 *2 (-110))))
- ((*1 *2 *1 *2 *2)
- (-12 (-4 *1 (-318 *2 *3 *4)) (-4 *2 (-1127)) (-4 *3 (-1145 *2))
- (-4 *4 (-1145 (-383 *3)))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-523)) (-4 *1 (-393 *2)) (-4 *2 (-158))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1070)) (-5 *1 (-473))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-51)) (-5 *1 (-578))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1136 (-523))) (-4 *1 (-594 *3)) (-4 *3 (-1123))))
- ((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-710)) (-5 *1 (-617 *2)) (-4 *2 (-1016))))
- ((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-589 (-523))) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-110)) (-5 *3 (-589 (-823 *4))) (-5 *1 (-823 *4))
- (-4 *4 (-1016))))
- ((*1 *2 *1 *2) (-12 (-4 *1 (-834 *2)) (-4 *2 (-1016))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-836 *4)) (-5 *1 (-835 *4))
- (-4 *4 (-1016))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-218 *4 *2)) (-14 *4 (-852)) (-4 *2 (-339))
- (-5 *1 (-922 *4 *2))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 "value") (-4 *1 (-938 *2)) (-4 *2 (-1123))))
- ((*1 *2 *1) (-12 (-5 *1 (-953 *2)) (-4 *2 (-1123))))
- ((*1 *2 *1 *3 *3 *2)
- (-12 (-5 *3 (-523)) (-4 *1 (-976 *4 *5 *2 *6 *7)) (-4 *2 (-973))
- (-4 *6 (-216 *5 *2)) (-4 *7 (-216 *4 *2))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-523)) (-4 *1 (-976 *4 *5 *2 *6 *7))
- (-4 *6 (-216 *5 *2)) (-4 *7 (-216 *4 *2)) (-4 *2 (-973))))
- ((*1 *2 *1 *2 *3)
- (-12 (-5 *3 (-852)) (-4 *4 (-1016))
- (-4 *5 (-13 (-973) (-817 *4) (-786) (-564 (-823 *4))))
- (-5 *1 (-995 *4 *5 *2))
- (-4 *2 (-13 (-406 *5) (-817 *4) (-564 (-823 *4))))))
- ((*1 *2 *1 *2 *3)
- (-12 (-5 *3 (-852)) (-4 *4 (-1016))
- (-4 *5 (-13 (-973) (-817 *4) (-786) (-564 (-823 *4))))
- (-5 *1 (-996 *4 *5 *2))
- (-4 *2 (-13 (-406 *5) (-817 *4) (-564 (-823 *4))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-523))) (-4 *1 (-1019 *3 *4 *5 *6 *7))
- (-4 *3 (-1016)) (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016))
- (-4 *7 (-1016))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-523)) (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016))
- (-4 *4 (-1016)) (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016))))
- ((*1 *1 *1 *1) (-4 *1 (-1056)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-1087))))
- ((*1 *2 *3 *2)
- (-12 (-5 *3 (-383 *1)) (-4 *1 (-1145 *2)) (-4 *2 (-973))
- (-4 *2 (-339))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-383 *1)) (-4 *1 (-1145 *3)) (-4 *3 (-973))
- (-4 *3 (-515))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-1147 *2 *3)) (-4 *3 (-731)) (-4 *2 (-973))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 "last") (-4 *1 (-1157 *2)) (-4 *2 (-1123))))
+ (-12 (-5 *2 (-591 (-2 (|:| |k| (-826 *3)) (|:| |c| *4))))
+ (-5 *1 (-575 *3 *4 *5)) (-4 *3 (-788))
+ (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-14 *5 (-854))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-616 *3))) (-5 *1 (-826 *3)) (-4 *3 (-788)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-788)) (-4 *5 (-842)) (-4 *6 (-734))
+ (-4 *8 (-882 *5 *6 *7)) (-5 *2 (-396 (-1085 *8)))
+ (-5 *1 (-839 *5 *6 *7 *8)) (-5 *4 (-1085 *8))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-842)) (-4 *5 (-1147 *4)) (-5 *2 (-396 (-1085 *5)))
+ (-5 *1 (-840 *4 *5)) (-5 *3 (-1085 *5)))))
+(((*1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-1018)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-305 *3)) (-4 *3 (-1125))))
((*1 *1 *1 *2)
- (-12 (-5 *2 "rest") (-4 *1 (-1157 *3)) (-4 *3 (-1123))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 "first") (-4 *1 (-1157 *2)) (-4 *2 (-1123)))))
+ (-12 (-5 *2 (-525)) (-5 *1 (-488 *3 *4)) (-4 *3 (-1125)) (-14 *4 *2))))
+(((*1 *2 *1) (-12 (-4 *1 (-304 *2 *3)) (-4 *3 (-733)) (-4 *2 (-975))))
+ ((*1 *2 *1) (-12 (-4 *1 (-408 *2)) (-4 *2 (-788)))))
+(((*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174))))
+ ((*1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-1174)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-591 (-591 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
+ (-5 *4 (-591 (-3 (|:| |array| (-591 *3)) (|:| |scalar| (-1089)))))
+ (-5 *6 (-591 (-1089))) (-5 *3 (-1089)) (-5 *2 (-1022))
+ (-5 *1 (-375))))
+ ((*1 *2 *3 *4 *5 *6 *3)
+ (-12 (-5 *5 (-591 (-591 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
+ (-5 *4 (-591 (-3 (|:| |array| (-591 *3)) (|:| |scalar| (-1089)))))
+ (-5 *6 (-591 (-1089))) (-5 *3 (-1089)) (-5 *2 (-1022))
+ (-5 *1 (-375))))
+ ((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *4 (-591 (-1089))) (-5 *5 (-1092)) (-5 *3 (-1089))
+ (-5 *2 (-1022)) (-5 *1 (-375)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-429))
+ (-4 *3 (-517)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-908 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205))
+ (-5 *6 (-3 (|:| |fn| (-366)) (|:| |fp| (-76 FUNCTN))))
+ (-5 *2 (-964)) (-5 *1 (-690)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-591 (-1171 *4))) (-5 *1 (-344 *3 *4))
+ (-4 *3 (-345 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-4 *3 (-517))
+ (-5 *2 (-591 (-1171 *3))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))))
+ (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *2 (-525))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975))
+ (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-525)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-385 *4)) (-4 *4 (-1147 *3))
+ (-4 *3 (-13 (-341) (-138) (-966 (-525)))) (-5 *1 (-529 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-14 *4 (-591 (-1089))) (-14 *5 (-712))
+ (-5 *2
+ (-591
+ (-477 (-385 (-525)) (-220 *5 (-712)) (-798 *4)
+ (-227 *4 (-385 (-525))))))
+ (-5 *1 (-478 *4 *5))
+ (-5 *3
+ (-477 (-385 (-525)) (-220 *5 (-712)) (-798 *4)
+ (-227 *4 (-385 (-525))))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-230 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-786))
- (-4 *5 (-243 *4)) (-4 *6 (-732)) (-5 *2 (-710))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-230 *4 *3 *5 *6)) (-4 *4 (-973)) (-4 *3 (-786))
- (-4 *5 (-243 *3)) (-4 *6 (-732)) (-5 *2 (-710))))
- ((*1 *2 *1) (-12 (-4 *1 (-243 *3)) (-4 *3 (-786)) (-5 *2 (-710))))
- ((*1 *2 *1) (-12 (-4 *1 (-325)) (-5 *2 (-852))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-312 *4 *5 *6 *7)) (-4 *4 (-13 (-344) (-339)))
- (-4 *5 (-1145 *4)) (-4 *6 (-1145 (-383 *5))) (-4 *7 (-318 *4 *5 *6))
- (-5 *2 (-710)) (-5 *1 (-368 *4 *5 *6 *7))))
- ((*1 *2 *1) (-12 (-4 *1 (-378)) (-5 *2 (-772 (-852)))))
- ((*1 *2 *1) (-12 (-4 *1 (-380)) (-5 *2 (-523))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-549 *3)) (-4 *3 (-973))))
- ((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-549 *3)) (-4 *3 (-973))))
+ (-12 (-4 *1 (-304 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733))
+ (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-4 *1 (-408 *3)) (-4 *3 (-788)) (-5 *2 (-108)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-940 *3)) (-4 *3 (-1125)) (-4 *3 (-1018))
+ (-5 *2 (-108)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-301 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-126))
+ (-5 *2 (-591 (-2 (|:| |gen| *3) (|:| -1409 *4))))))
((*1 *2 *1)
- (-12 (-4 *3 (-515)) (-5 *2 (-523)) (-5 *1 (-570 *3 *4))
- (-4 *4 (-1145 *3))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-680 *4 *3)) (-4 *4 (-973))
- (-4 *3 (-786))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-680 *4 *3)) (-4 *4 (-973)) (-4 *3 (-786))
- (-5 *2 (-710))))
- ((*1 *2 *1) (-12 (-4 *1 (-800 *3)) (-5 *2 (-710))))
- ((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-835 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-836 *3)) (-4 *3 (-1016))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-312 *5 *6 *7 *8)) (-4 *5 (-406 *4))
- (-4 *6 (-1145 *5)) (-4 *7 (-1145 (-383 *6)))
- (-4 *8 (-318 *5 *6 *7)) (-4 *4 (-13 (-786) (-515) (-964 (-523))))
- (-5 *2 (-710)) (-5 *1 (-842 *4 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-312 (-383 (-523)) *4 *5 *6))
- (-4 *4 (-1145 (-383 (-523)))) (-4 *5 (-1145 (-383 *4)))
- (-4 *6 (-318 (-383 (-523)) *4 *5)) (-5 *2 (-710))
- (-5 *1 (-843 *4 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-312 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-339))
- (-4 *7 (-1145 *6)) (-4 *4 (-1145 (-383 *7))) (-4 *8 (-318 *6 *7 *4))
- (-4 *9 (-13 (-344) (-339))) (-5 *2 (-710))
- (-5 *1 (-946 *6 *7 *4 *8 *9))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1145 *3)) (-4 *3 (-973)) (-4 *3 (-515)) (-5 *2 (-710))))
- ((*1 *2 *1 *2)
- (-12 (-4 *1 (-1147 *3 *2)) (-4 *3 (-973)) (-4 *2 (-731))))
- ((*1 *2 *1) (-12 (-4 *1 (-1147 *3 *2)) (-4 *3 (-973)) (-4 *2 (-731)))))
-(((*1 *1 *1 *2 *2 *2 *2)
- (-12 (-5 *2 (-523)) (-4 *1 (-627 *3 *4 *5)) (-4 *3 (-973))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3)))))
+ (-12 (-5 *2 (-591 (-2 (|:| -3482 *3) (|:| -2548 *4))))
+ (-5 *1 (-677 *3 *4)) (-4 *3 (-975)) (-4 *4 (-668))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1149 *3 *4)) (-4 *3 (-975)) (-4 *4 (-733))
+ (-5 *2 (-1070 (-2 (|:| |k| *4) (|:| |c| *3)))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1085 (-385 (-525)))) (-5 *1 (-875)) (-5 *3 (-525)))))
+(((*1 *2 *2) (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-375)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1184 (-1089) *3)) (-4 *3 (-975)) (-5 *1 (-1191 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1184 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975))
+ (-5 *1 (-1193 *3 *4)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357))
+ (-5 *2
+ (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525))
+ (|:| |success| (-108))))
+ (-5 *1 (-730)) (-5 *5 (-525)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-396 (-1085 *1))) (-5 *1 (-294 *4)) (-5 *3 (-1085 *1))
+ (-4 *4 (-429)) (-4 *4 (-517)) (-4 *4 (-788))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-842)) (-5 *2 (-396 (-1085 *1))) (-5 *3 (-1085 *1)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-357)) (-5 *1 (-92))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-357)) (-5 *1 (-92)))))
+(((*1 *2 *3) (-12 (-5 *2 (-525)) (-5 *1 (-530 *3)) (-4 *3 (-966 *2))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *2 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1018)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4250)) (-4 *1 (-464 *4))
+ (-4 *4 (-1125)) (-5 *2 (-108)))))
+(((*1 *1 *1) (-4 *1 (-223)))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-160)) (-5 *1 (-268 *2 *3 *4 *5 *6 *7))
+ (-4 *3 (-1147 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
+ (-14 *6 (-1 (-3 *4 "failed") *4 *4))
+ (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
+ ((*1 *1 *1)
+ (-3321 (-12 (-5 *1 (-273 *2)) (-4 *2 (-341)) (-4 *2 (-1125)))
+ (-12 (-5 *1 (-273 *2)) (-4 *2 (-450)) (-4 *2 (-1125)))))
+ ((*1 *1 *1) (-4 *1 (-450)))
+ ((*1 *2 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-327)) (-5 *1 (-495 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-657 *2 *3 *4 *5 *6)) (-4 *2 (-160)) (-4 *3 (-23))
+ (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
+ ((*1 *1 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)) (-4 *2 (-341)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-589 (-874 (-203))))) (-5 *1 (-1119 *3))
- (-4 *3 (-903)))))
+ (-12 (-14 *3 (-591 (-1089))) (-4 *4 (-160))
+ (-4 *5 (-218 (-4045 *3) (-712)))
+ (-14 *6
+ (-1 (-108) (-2 (|:| -2226 *2) (|:| -2008 *5))
+ (-2 (|:| -2226 *2) (|:| -2008 *5))))
+ (-4 *2 (-788)) (-5 *1 (-438 *3 *4 *2 *5 *6 *7))
+ (-4 *7 (-882 *4 *5 (-798 *3))))))
+(((*1 *1 *2) (-12 (-5 *2 (-146)) (-5 *1 (-807)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-525)) (-5 *1 (-357)))))
+(((*1 *2 *3 *4 *5 *5 *4 *6)
+ (-12 (-5 *5 (-564 *4)) (-5 *6 (-1085 *4))
+ (-4 *4 (-13 (-408 *7) (-27) (-1111)))
+ (-4 *7 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4))))
+ (-5 *1 (-521 *7 *4 *3)) (-4 *3 (-601 *4)) (-4 *3 (-1018))))
+ ((*1 *2 *3 *4 *5 *5 *5 *4 *6)
+ (-12 (-5 *5 (-564 *4)) (-5 *6 (-385 (-1085 *4)))
+ (-4 *4 (-13 (-408 *7) (-27) (-1111)))
+ (-4 *7 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4003 (-591 *4))))
+ (-5 *1 (-521 *7 *4 *3)) (-4 *3 (-601 *4)) (-4 *3 (-1018)))))
+(((*1 *1 *1 *1) (-5 *1 (-205)))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-712)) (-5 *2 (-1 (-357))) (-5 *1 (-968))))
+ ((*1 *1 *1 *1) (-4 *1 (-1053))))
+(((*1 *2 *3 *3 *4 *4 *4 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-694)))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4250)) (-4 *1 (-558 *4 *3)) (-4 *4 (-1018))
+ (-4 *3 (-1125)) (-4 *3 (-1018)) (-5 *2 (-108)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-292 (-203)))) (-5 *4 (-710))
- (-5 *2 (-629 (-203))) (-5 *1 (-244)))))
-(((*1 *1) (-5 *1 (-413))))
-(((*1 *2)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-108)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-589 *6)) (-5 *4 (-589 (-225 *5 *6))) (-4 *6 (-427))
- (-5 *2 (-225 *5 *6)) (-14 *5 (-589 (-1087))) (-5 *1 (-577 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-159 *3)) (-4 *3 (-284)))))
+ (-12 (-5 *3 (-591 (-525))) (-5 *4 (-838 (-525)))
+ (-5 *2 (-631 (-525))) (-5 *1 (-546))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-591 (-631 (-525))))
+ (-5 *1 (-546))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-525))) (-5 *4 (-591 (-838 (-525))))
+ (-5 *2 (-591 (-631 (-525)))) (-5 *1 (-546)))))
+(((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1089)) (-5 *1 (-619 *3)) (-4 *3 (-1018)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-383 *2)) (-4 *2 (-1145 *5))
- (-5 *1 (-746 *5 *2 *3 *6))
- (-4 *5 (-13 (-339) (-136) (-964 (-383 (-523)))))
- (-4 *3 (-599 *2)) (-4 *6 (-599 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-383 *2))) (-4 *2 (-1145 *5))
- (-5 *1 (-746 *5 *2 *3 *6))
- (-4 *5 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *3 (-599 *2))
- (-4 *6 (-599 (-383 *2))))))
+ (-12 (-5 *3 (-591 (-242))) (-5 *4 (-1089)) (-5 *2 (-108))
+ (-5 *1 (-242)))))
+(((*1 *2 *2) (-12 (-5 *2 (-357)) (-5 *1 (-92)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *1) (-12 (-4 *1 (-307 *2)) (-4 *2 (-346)) (-4 *2 (-341)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-591 (-525))) (-5 *1 (-1028)) (-5 *3 (-525)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1169 *4)) (-4 *4 (-585 *5)) (-4 *5 (-339))
- (-4 *5 (-515)) (-5 *2 (-1169 *5)) (-5 *1 (-584 *5 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1169 *4)) (-4 *4 (-585 *5))
- (-2575 (-4 *5 (-339))) (-4 *5 (-515)) (-5 *2 (-1169 (-383 *5)))
- (-5 *1 (-584 *5 *4)))))
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-591 *9)) (-4 *8 (-989 *5 *6 *7))
+ (-4 *9 (-994 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734))
+ (-4 *7 (-788)) (-5 *2 (-712)) (-5 *1 (-992 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 *8)) (-5 *4 (-591 *9)) (-4 *8 (-989 *5 *6 *7))
+ (-4 *9 (-1027 *5 *6 *7 *8)) (-4 *5 (-429)) (-4 *6 (-734))
+ (-4 *7 (-788)) (-5 *2 (-712)) (-5 *1 (-1059 *5 *6 *7 *8 *9)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *1 *1) (-4 *1 (-134)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-147 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *2 *2) (-12 (-5 *1 (-148 *2)) (-4 *2 (-510)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *8 (-989 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |val| (-591 *8)) (|:| |towers| (-591 (-956 *5 *6 *7 *8)))))
+ (-5 *1 (-956 *5 *6 *7 *8)) (-5 *3 (-591 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *8 (-989 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |val| (-591 *8))
+ (|:| |towers| (-591 (-1060 *5 *6 *7 *8)))))
+ (-5 *1 (-1060 *5 *6 *7 *8)) (-5 *3 (-591 *8)))))
(((*1 *2 *3 *2)
- (|partial| -12 (-5 *3 (-852)) (-5 *1 (-417 *2))
- (-4 *2 (-1145 (-523)))))
+ (|partial| -12 (-5 *3 (-854)) (-5 *1 (-419 *2))
+ (-4 *2 (-1147 (-525)))))
((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-852)) (-5 *4 (-710)) (-5 *1 (-417 *2))
- (-4 *2 (-1145 (-523)))))
+ (|partial| -12 (-5 *3 (-854)) (-5 *4 (-712)) (-5 *1 (-419 *2))
+ (-4 *2 (-1147 (-525)))))
((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-852)) (-5 *4 (-589 (-710))) (-5 *1 (-417 *2))
- (-4 *2 (-1145 (-523)))))
+ (|partial| -12 (-5 *3 (-854)) (-5 *4 (-591 (-712))) (-5 *1 (-419 *2))
+ (-4 *2 (-1147 (-525)))))
((*1 *2 *3 *2 *4 *5)
- (|partial| -12 (-5 *3 (-852)) (-5 *4 (-589 (-710))) (-5 *5 (-710))
- (-5 *1 (-417 *2)) (-4 *2 (-1145 (-523)))))
+ (|partial| -12 (-5 *3 (-854)) (-5 *4 (-591 (-712))) (-5 *5 (-712))
+ (-5 *1 (-419 *2)) (-4 *2 (-1147 (-525)))))
((*1 *2 *3 *2 *4 *5 *6)
- (|partial| -12 (-5 *3 (-852)) (-5 *4 (-589 (-710))) (-5 *5 (-710))
- (-5 *6 (-108)) (-5 *1 (-417 *2)) (-4 *2 (-1145 (-523)))))
+ (|partial| -12 (-5 *3 (-854)) (-5 *4 (-591 (-712))) (-5 *5 (-712))
+ (-5 *6 (-108)) (-5 *1 (-419 *2)) (-4 *2 (-1147 (-525)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-852)) (-5 *4 (-394 *2)) (-4 *2 (-1145 *5))
- (-5 *1 (-419 *5 *2)) (-4 *5 (-973)))))
+ (-12 (-5 *3 (-854)) (-5 *4 (-396 *2)) (-4 *2 (-1147 *5))
+ (-5 *1 (-421 *5 *2)) (-4 *5 (-975)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-593 *3)) (-4 *3 (-975))
+ (-5 *1 (-656 *3 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-975)) (-5 *1 (-775 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1145 *3)) (-4 *3 (-973)) (-5 *2 (-1083 *3)))))
+ (-12 (-4 *1 (-1021 *3 *2 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1018)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1171 *1)) (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129))
+ (-4 *4 (-1147 *3)) (-4 *5 (-1147 (-385 *4))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *4 *5))
+ (-4 *5 (-13 (-27) (-1111) (-408 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *4 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-385 (-525)))
+ (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *5 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-273 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5)))
+ (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-273 *3)) (-5 *5 (-385 (-525)))
+ (-4 *3 (-13 (-27) (-1111) (-408 *6)))
+ (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *6 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-1 *8 (-385 (-525)))) (-5 *4 (-273 *8))
+ (-5 *5 (-1138 (-385 (-525)))) (-5 *6 (-385 (-525)))
+ (-4 *8 (-13 (-27) (-1111) (-408 *7)))
+ (-4 *7 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-436 *7 *8))))
+ ((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *4 (-1089)) (-5 *5 (-273 *3)) (-5 *6 (-1138 (-385 (-525))))
+ (-5 *7 (-385 (-525))) (-4 *3 (-13 (-27) (-1111) (-408 *8)))
+ (-4 *8 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-436 *8 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-385 (-525))) (-4 *4 (-975)) (-4 *1 (-1154 *4 *3))
+ (-4 *3 (-1131 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1070)) (-4 *4 (-13 (-284) (-136)))
- (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732))
- (-5 *2
- (-589
- (-2 (|:| |eqzro| (-589 *7)) (|:| |neqzro| (-589 *7))
- (|:| |wcond| (-589 (-883 *4)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1169 (-383 (-883 *4))))
- (|:| -2922 (-589 (-1169 (-383 (-883 *4))))))))))
- (-5 *1 (-855 *4 *5 *6 *7)) (-4 *7 (-880 *4 *6 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-46 *3 *2)) (-4 *3 (-973)) (-4 *2 (-731))))
+ (-12 (-5 *3 (-1013 (-781 (-205)))) (-5 *2 (-205)) (-5 *1 (-174))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1013 (-781 (-205)))) (-5 *2 (-205)) (-5 *1 (-279))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1013 (-781 (-205)))) (-5 *2 (-205)) (-5 *1 (-284)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-108)) (-5 *5 (-631 (-205)))
+ (-5 *2 (-964)) (-5 *1 (-697)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-591 (-1089))) (-4 *4 (-1018))
+ (-4 *5 (-13 (-975) (-819 *4) (-788) (-566 (-825 *4))))
+ (-5 *1 (-53 *4 *5 *2))
+ (-4 *2 (-13 (-408 *5) (-819 *4) (-566 (-825 *4)))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160))
+ (-5 *2 (-1171 (-631 *4)))))
+ ((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-1171 (-631 *4))) (-5 *1 (-394 *3 *4))
+ (-4 *3 (-395 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-1171 (-631 *3)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-1089))) (-4 *5 (-341))
+ (-5 *2 (-1171 (-631 (-385 (-885 *5))))) (-5 *1 (-1006 *5))
+ (-5 *4 (-631 (-385 (-885 *5))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-1089))) (-4 *5 (-341))
+ (-5 *2 (-1171 (-631 (-885 *5)))) (-5 *1 (-1006 *5))
+ (-5 *4 (-631 (-885 *5)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-631 *4))) (-4 *4 (-341))
+ (-5 *2 (-1171 (-631 *4))) (-5 *1 (-1006 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-5 *2 (-712)) (-5 *1 (-42 *4 *3))
+ (-4 *3 (-395 *4)))))
+(((*1 *1 *1) (-4 *1 (-34)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1089)) (-5 *2 (-104)) (-5 *1 (-162))))
+ ((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1089)) (-5 *2 (-104)) (-5 *1 (-1005)))))
+(((*1 *2) (-12 (-5 *2 (-591 (-712))) (-5 *1 (-1174))))
+ ((*1 *2 *2) (-12 (-5 *2 (-591 (-712))) (-5 *1 (-1174)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1098 (-591 *4))) (-4 *4 (-788))
+ (-5 *2 (-591 (-591 *4))) (-5 *1 (-1097 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-1005))) (-5 *1 (-270)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3))
+ (-4 *3 (-13 (-341) (-1111) (-932))))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-1193 *3 *4)) (-4 *1 (-352 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-160))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-364 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-760 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-760 *2)) (-4 *2 (-788))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-760 *3)) (-4 *1 (-1186 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-975))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1186 *2 *3)) (-4 *2 (-788)) (-4 *3 (-975)))))
+(((*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5)
+ (-12 (-5 *3 (-854)) (-5 *4 (-205)) (-5 *5 (-525)) (-5 *6 (-807))
+ (-5 *2 (-1176)) (-5 *1 (-1172)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 *4)) (-4 *4 (-1018)) (-5 *2 (-1176))
+ (-5 *1 (-1126 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-591 *4)) (-4 *4 (-1018)) (-5 *2 (-1176))
+ (-5 *1 (-1126 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *4 *5))
+ (-4 *5 (-13 (-27) (-1111) (-408 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *4 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-525)) (-4 *5 (-13 (-429) (-788) (-966 *4) (-587 *4)))
+ (-5 *2 (-51)) (-5 *1 (-293 *5 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-273 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5)))
+ (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-273 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *6)))
+ (-4 *6 (-13 (-429) (-788) (-966 *5) (-587 *5))) (-5 *5 (-525))
+ (-5 *2 (-51)) (-5 *1 (-293 *6 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *7 (-525))) (-5 *4 (-273 *7)) (-5 *5 (-1138 (-525)))
+ (-4 *7 (-13 (-27) (-1111) (-408 *6)))
+ (-4 *6 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-436 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-1089)) (-5 *5 (-273 *3)) (-5 *6 (-1138 (-525)))
+ (-4 *3 (-13 (-27) (-1111) (-408 *7)))
+ (-4 *7 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-436 *7 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-525)) (-4 *4 (-975)) (-4 *1 (-1133 *4 *3))
+ (-4 *3 (-1162 *4))))
((*1 *2 *1)
- (-12 (-5 *2 (-710)) (-5 *1 (-49 *3 *4)) (-4 *3 (-973))
- (-14 *4 (-589 (-1087)))))
+ (-12 (-4 *1 (-1154 *3 *2)) (-4 *3 (-975)) (-4 *2 (-1131 *3)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-631 *3)) (-4 *3 (-975)) (-5 *1 (-632 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-51))) (-5 *1 (-825 *3)) (-4 *3 (-1018)))))
+(((*1 *1 *1) (-4 *1 (-34)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-712)) (-4 *4 (-517)) (-5 *1 (-901 *4 *2))
+ (-4 *2 (-1147 *4)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4))))
+ (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1072)) (-5 *2 (-195 (-475))) (-5 *1 (-776)))))
+(((*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854))
+ (-4 *4 (-975)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-357))) (-5 *1 (-968)) (-5 *3 (-357)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-712)) (-4 *4 (-327)) (-5 *1 (-197 *4 *2))
+ (-4 *2 (-1147 *4))))
+ ((*1 *2 *2 *3 *2 *3)
+ (-12 (-5 *3 (-525)) (-5 *1 (-637 *2)) (-4 *2 (-1147 *3)))))
+(((*1 *1 *1) (-12 (-4 *1 (-224 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1089))
+ (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *4 *5))
+ (-4 *5 (-13 (-27) (-1111) (-408 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *4 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-712))
+ (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *5 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-273 *3)) (-4 *3 (-13 (-27) (-1111) (-408 *5)))
+ (-4 *5 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-273 *3)) (-5 *5 (-712))
+ (-4 *3 (-13 (-27) (-1111) (-408 *6)))
+ (-4 *6 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-293 *6 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 (-525))) (-5 *4 (-273 *6))
+ (-4 *6 (-13 (-27) (-1111) (-408 *5)))
+ (-4 *5 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-436 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1089)) (-5 *5 (-273 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *6)))
+ (-4 *6 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-436 *6 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *7 (-525))) (-5 *4 (-273 *7)) (-5 *5 (-1138 (-712)))
+ (-4 *7 (-13 (-27) (-1111) (-408 *6)))
+ (-4 *6 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-436 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-1089)) (-5 *5 (-273 *3)) (-5 *6 (-1138 (-712)))
+ (-4 *3 (-13 (-27) (-1111) (-408 *7)))
+ (-4 *7 (-13 (-517) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-51)) (-5 *1 (-436 *7 *3))))
((*1 *2 *1)
- (-12 (-5 *2 (-523)) (-5 *1 (-201 *3 *4)) (-4 *3 (-13 (-973) (-786)))
- (-14 *4 (-589 (-1087)))))
+ (-12 (-4 *1 (-1133 *3 *2)) (-4 *3 (-975)) (-4 *2 (-1162 *3)))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-1094))) (-5 *1 (-1094))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-1094))) (-5 *1 (-1094)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-339 *3)) (-4 *3 (-1018))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-230 *4 *3 *5 *6)) (-4 *4 (-973)) (-4 *3 (-786))
- (-4 *5 (-243 *3)) (-4 *6 (-732)) (-5 *2 (-710))))
- ((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-252))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1083 *8)) (-5 *4 (-589 *6)) (-4 *6 (-786))
- (-4 *8 (-880 *7 *5 *6)) (-4 *5 (-732)) (-4 *7 (-973))
- (-5 *2 (-589 (-710))) (-5 *1 (-297 *5 *6 *7 *8))))
- ((*1 *2 *1) (-12 (-4 *1 (-305 *3)) (-4 *3 (-339)) (-5 *2 (-852))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-350 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158))
- (-5 *2 (-710))))
- ((*1 *2 *1) (-12 (-4 *1 (-445 *3 *2)) (-4 *3 (-158)) (-4 *2 (-23))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-515)) (-5 *2 (-523)) (-5 *1 (-570 *3 *4))
- (-4 *4 (-1145 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-648 *3)) (-4 *3 (-973)) (-5 *2 (-710))))
- ((*1 *2 *1) (-12 (-4 *1 (-788 *3)) (-4 *3 (-973)) (-5 *2 (-710))))
- ((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-835 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-836 *3)) (-4 *3 (-1016))))
+ (-12 (-5 *3 (-525)) (-5 *2 (-712)) (-5 *1 (-364 *4)) (-4 *4 (-1018))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-589 *6)) (-4 *1 (-880 *4 *5 *6)) (-4 *4 (-973))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 (-710)))))
+ (-12 (-5 *3 (-525)) (-4 *2 (-23)) (-5 *1 (-594 *4 *2 *5))
+ (-4 *4 (-1018)) (-14 *5 *2)))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-880 *4 *5 *3)) (-4 *4 (-973)) (-4 *5 (-732))
- (-4 *3 (-786)) (-5 *2 (-710))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-902 *3 *2 *4)) (-4 *3 (-973)) (-4 *4 (-786))
- (-4 *2 (-731))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-710))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1131 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1160 *3))
- (-5 *2 (-523))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1152 *3 *4)) (-4 *3 (-973)) (-4 *4 (-1129 *3))
- (-5 *2 (-383 (-523)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1186 *3)) (-4 *3 (-339)) (-5 *2 (-772 (-852)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1188 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973))
- (-5 *2 (-710)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-687)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-254 *3 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1087))
- (-4 *4 (-13 (-515) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-254 *4 *2)) (-4 *2 (-13 (-27) (-1109) (-406 *4))))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *3 (-710)) (-4 *4 (-13 (-515) (-136)))
- (-5 *1 (-1139 *4 *2)) (-4 *2 (-1145 *4)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-203)) (-5 *1 (-30))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-394 *4) *4)) (-4 *4 (-515)) (-5 *2 (-394 *4))
- (-5 *1 (-395 *4))))
- ((*1 *1 *1) (-5 *1 (-857)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-857))))
- ((*1 *1 *1) (-5 *1 (-858)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-858))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))
- (-5 *4 (-383 (-523))) (-5 *1 (-947 *3)) (-4 *3 (-1145 (-523)))))
- ((*1 *2 *3 *2 *2)
- (|partial| -12
- (-5 *2 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))
- (-5 *1 (-947 *3)) (-4 *3 (-1145 (-523)))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))
- (-5 *4 (-383 (-523))) (-5 *1 (-948 *3)) (-4 *3 (-1145 *4))))
- ((*1 *2 *3 *2 *2)
- (|partial| -12
- (-5 *2 (-2 (|:| -2428 (-383 (-523))) (|:| -2438 (-383 (-523)))))
- (-5 *1 (-948 *3)) (-4 *3 (-1145 (-383 (-523))))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-13 (-784) (-339))) (-5 *1 (-983 *2 *3))
- (-4 *3 (-1145 *2)))))
-(((*1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-494 *3)) (-4 *3 (-13 (-666) (-25))))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9)
- (-12 (-5 *4 (-523)) (-5 *5 (-1070)) (-5 *6 (-629 (-203)))
- (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-87 G))))
- (-5 *8 (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))))
- (-5 *9 (-3 (|:| |fn| (-364)) (|:| |fp| (-86 OUTPUT))))
- (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-689)))))
-(((*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1070)) (-5 *1 (-650)))))
+ (-12 (-5 *3 (-525)) (-5 *2 (-712)) (-5 *1 (-760 *4)) (-4 *4 (-788)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *3 (-1129)) (-4 *5 (-1147 *3)) (-4 *6 (-1147 (-385 *5)))
+ (-5 *2 (-108)) (-5 *1 (-319 *4 *3 *5 *6)) (-4 *4 (-320 *3 *5 *6))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429)) (-4 *5 (-734))
+ (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108)))))
+(((*1 *1 *1) (-4 *1 (-34)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-1093)))))
+(((*1 *2 *3)
+ (-12 (-4 *2 (-1147 *4)) (-5 *1 (-750 *4 *2 *3 *5))
+ (-4 *4 (-13 (-341) (-138) (-966 (-385 (-525))))) (-4 *3 (-601 *2))
+ (-4 *5 (-601 (-385 *2))))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-660 *2)) (-4 *2 (-341)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-712)) (-4 *6 (-1018)) (-4 *3 (-833 *6))
+ (-5 *2 (-631 *3)) (-5 *1 (-633 *6 *3 *7 *4)) (-4 *7 (-351 *3))
+ (-4 *4 (-13 (-351 *6) (-10 -7 (-6 -4250)))))))
+(((*1 *2 *2) (-12 (-5 *1 (-543 *2)) (-4 *2 (-510)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-599 *2)) (-4 *2 (-973)) (-4 *2 (-339))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-339)) (-5 *1 (-602 *4 *2))
- (-4 *2 (-599 *4)))))
-(((*1 *1 *1 *1) (-4 *1 (-132)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-145 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *1 (-146 *2)) (-4 *2 (-508))))
- ((*1 *1 *1 *1) (-5 *1 (-794)))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-523))) (-5 *1 (-971))
- (-5 *3 (-523)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-692)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-515)) (-5 *1 (-40 *3 *2))
- (-4 *2
- (-13 (-339) (-279)
- (-10 -8 (-15 -2164 ((-1039 *3 (-562 $)) $))
- (-15 -2171 ((-1039 *3 (-562 $)) $))
- (-15 -3976 ($ (-1039 *3 (-562 $))))))))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *6)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-72 FCN)))) (-5 *2 (-962))
- (-5 *1 (-686)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-823 *3)) (-4 *3 (-1016)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-794)))))
-(((*1 *1 *2) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-460)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-786)) (-5 *1 (-117 *3)))))
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1036)) (-5 *1 (-781 *3)) (-4 *3 (-1018)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-364 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-760 *2)) (-4 *2 (-788)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-4 *1 (-1119 *3 *4 *5 *2)) (-4 *3 (-517))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-4 *2 (-989 *3 *4 *5)))))
+(((*1 *1 *1 *1 *1) (-5 *1 (-796))) ((*1 *1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *1) (-5 *1 (-796))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-339)) (-4 *5 (-515))
- (-5 *2
- (-2 (|:| |minor| (-589 (-852))) (|:| -1747 *3)
- (|:| |minors| (-589 (-589 (-852)))) (|:| |ops| (-589 *3))))
- (-5 *1 (-88 *5 *3)) (-5 *4 (-852)) (-4 *3 (-599 *5)))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4))
- (-4 *3 (-343 *4))))
- ((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))))
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2 (-591 (-2 (|:| |val| (-108)) (|:| -3374 *4))))
+ (-5 *1 (-717 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-523)) (-4 *2 (-406 *3)) (-5 *1 (-31 *3 *2))
- (-4 *3 (-964 *4)) (-4 *3 (-13 (-786) (-515))))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-160))) (-5 *1 (-1003)))))
+ (-12 (-5 *3 (-591 *6)) (-5 *4 (-591 (-1070 *7))) (-4 *6 (-788))
+ (-4 *7 (-882 *5 (-497 *6) *6)) (-4 *5 (-975))
+ (-5 *2 (-1 (-1070 *7) *7)) (-5 *1 (-1042 *5 *6 *7)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -3400 *6) (|:| |sol?| (-108))) (-525)
+ *6))
+ (-4 *6 (-341)) (-4 *7 (-1147 *6))
+ (-5 *2 (-2 (|:| |answer| (-542 (-385 *7))) (|:| |a0| *6)))
+ (-5 *1 (-535 *6 *7)) (-5 *3 (-385 *7)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -3359 (-355)) (|:| -1522 (-1070))
- (|:| |explanations| (-589 (-1070)))))
- (-5 *2 (-962)) (-5 *1 (-282))))
- ((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -3359 (-355)) (|:| -1522 (-1070))
- (|:| |explanations| (-589 (-1070))) (|:| |extra| (-962))))
- (-5 *2 (-962)) (-5 *1 (-282)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-339)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-475 *4 *5 *6 *3)) (-4 *3 (-880 *4 *5 *6)))))
+ (-12 (-5 *3 (-591 (-1072))) (-5 *2 (-1072)) (-5 *1 (-174))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *4)) (-4 *4 (-160))
+ (-5 *2 (-631 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-631 *4)) (-5 *1 (-394 *3 *4))
+ (-4 *3 (-395 *4))))
+ ((*1 *2) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-631 *3)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357))
+ (-5 *2
+ (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525))
+ (|:| |success| (-108))))
+ (-5 *1 (-730)) (-5 *5 (-525)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-880 *4 *5 *6)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *1 (-424 *4 *5 *6 *2)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1087)) (-5 *2 (-104)) (-5 *1 (-160))))
- ((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1087)) (-5 *2 (-104)) (-5 *1 (-1003)))))
-(((*1 *2 *2 *2 *3 *4)
- (-12 (-5 *3 (-94 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-973))
- (-5 *1 (-789 *5 *2)) (-4 *2 (-788 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-383 (-883 *3))) (-5 *1 (-428 *3 *4 *5 *6))
- (-4 *3 (-515)) (-4 *3 (-158)) (-14 *4 (-852))
- (-14 *5 (-589 (-1087))) (-14 *6 (-1169 (-629 *3))))))
-(((*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6)
- (-12 (-5 *4 (-523)) (-5 *5 (-629 (-203)))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894)))) (-5 *3 (-203))
- (-5 *2 (-962)) (-5 *1 (-688)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-1087))) (-4 *4 (-13 (-284) (-136)))
- (-4 *5 (-13 (-786) (-564 (-1087)))) (-4 *6 (-732))
- (-5 *2 (-589 (-383 (-883 *4)))) (-5 *1 (-855 *4 *5 *6 *7))
- (-4 *7 (-880 *4 *6 *5)))))
-(((*1 *1) (-5 *1 (-413))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-917 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-987 *3 *4 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *2 (-108))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-1023 *4 *5 *6 *7 *8)) (-4 *8 (-992 *4 *5 *6 *7))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1117 *3 *4 *5 *6)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *6 (-987 *3 *4 *5)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-761)))))
-(((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7))
- (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-5 *2 (-589 (-954 *5 *6 *7 *8))) (-5 *1 (-954 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-108)) (-4 *8 (-987 *5 *6 *7))
- (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-5 *2 (-589 (-1058 *5 *6 *7 *8))) (-5 *1 (-1058 *5 *6 *7 *8)))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-710)) (-4 *1 (-1145 *3)) (-4 *3 (-973)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1083 *3)) (-4 *3 (-325)) (-5 *1 (-333 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-857)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23))
- (-14 *4 *3))))
+ (-12 (-4 *3 (-341)) (-5 *1 (-264 *3 *2)) (-4 *2 (-1162 *3)))))
(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-883 (-523))))
- (-5 *4 (-292 (-155 (-355)))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-885 (-525))))
+ (-5 *4 (-294 (-157 (-357)))) (-5 *1 (-308))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-883 (-523))))
- (-5 *4 (-292 (-355))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-885 (-525))))
+ (-5 *4 (-294 (-357))) (-5 *1 (-308))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-883 (-523))))
- (-5 *4 (-292 (-523))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-885 (-525))))
+ (-5 *4 (-294 (-525))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-292 (-155 (-355)))))
- (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-294 (-157 (-357)))))
+ (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-292 (-355)))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-294 (-357)))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-292 (-523)))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-294 (-525)))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-292 (-155 (-355)))))
- (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-294 (-157 (-357)))))
+ (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-292 (-355)))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-294 (-357)))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-292 (-523)))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-294 (-525)))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-292 (-155 (-355)))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-294 (-157 (-357)))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-292 (-355))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-294 (-357))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-292 (-523))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-294 (-525))) (-5 *1 (-308))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-883 (-523))))
- (-5 *4 (-292 (-633))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-885 (-525))))
+ (-5 *4 (-294 (-635))) (-5 *1 (-308))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-883 (-523))))
- (-5 *4 (-292 (-638))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-885 (-525))))
+ (-5 *4 (-294 (-640))) (-5 *1 (-308))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1087)) (-5 *3 (-589 (-883 (-523))))
- (-5 *4 (-292 (-640))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-591 (-885 (-525))))
+ (-5 *4 (-294 (-642))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-292 (-633)))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-294 (-635)))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-292 (-638)))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-294 (-640)))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-292 (-640)))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-294 (-642)))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-292 (-633)))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-294 (-635)))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-292 (-638)))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-294 (-640)))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-292 (-640)))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-294 (-642)))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-633))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-635))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-638))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-640))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-1169 (-640))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-1171 (-642))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-633))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-635))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-638))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-640))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-629 (-640))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-631 (-642))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-292 (-633))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-294 (-635))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-292 (-638))) (-5 *1 (-306))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-294 (-640))) (-5 *1 (-308))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-292 (-640))) (-5 *1 (-306))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1087)) (-5 *3 (-1070)) (-5 *1 (-306))))
- ((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-3 (-108) (-589 *1)))
- (-4 *1 (-992 *4 *5 *6 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-1101 *3 *4)) (-4 *3 (-1016))
- (-4 *4 (-1016)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-108)) (-5 *1 (-768)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-499)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-589 (-589 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
- (-5 *4 (-589 (-3 (|:| |array| (-589 *3)) (|:| |scalar| (-1087)))))
- (-5 *6 (-589 (-1087))) (-5 *3 (-1087)) (-5 *2 (-1020))
- (-5 *1 (-373))))
- ((*1 *2 *3 *4 *5 *6 *3)
- (-12 (-5 *5 (-589 (-589 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
- (-5 *4 (-589 (-3 (|:| |array| (-589 *3)) (|:| |scalar| (-1087)))))
- (-5 *6 (-589 (-1087))) (-5 *3 (-1087)) (-5 *2 (-1020))
- (-5 *1 (-373))))
- ((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *4 (-589 (-1087))) (-5 *5 (-1090)) (-5 *3 (-1087))
- (-5 *2 (-1020)) (-5 *1 (-373)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-427)) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *3 (-987 *5 *6 *7))
- (-5 *2 (-589 (-2 (|:| |val| (-108)) (|:| -2394 *4))))
- (-5 *1 (-1024 *5 *6 *7 *3 *4)) (-4 *4 (-992 *5 *6 *7 *3)))))
-(((*1 *1) (-12 (-4 *1 (-440 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23))))
- ((*1 *1) (-5 *1 (-499))) ((*1 *1) (-4 *1 (-662)))
- ((*1 *1) (-4 *1 (-666)))
- ((*1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016))))
- ((*1 *1) (-12 (-5 *1 (-824 *2)) (-4 *2 (-786)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-523)) (-4 *4 (-13 (-515) (-136))) (-5 *1 (-500 *4 *2))
- (-4 *2 (-1160 *4))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-523)) (-4 *4 (-13 (-339) (-344) (-564 *3)))
- (-4 *5 (-1145 *4)) (-4 *6 (-664 *4 *5)) (-5 *1 (-504 *4 *5 *6 *2))
- (-4 *2 (-1160 *6))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-523)) (-4 *4 (-13 (-339) (-344) (-564 *3)))
- (-5 *1 (-505 *4 *2)) (-4 *2 (-1160 *4))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1068 *4)) (-5 *3 (-523)) (-4 *4 (-13 (-515) (-136)))
- (-5 *1 (-1064 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 (-383 (-523)))) (-5 *2 (-589 *4)) (-5 *1 (-718 *4))
- (-4 *4 (-13 (-339) (-784))))))
-(((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
- (|partial| -12 (-5 *5 (-108)) (-4 *6 (-427)) (-4 *7 (-732))
- (-4 *8 (-786)) (-4 *9 (-987 *6 *7 *8))
- (-5 *2
- (-2 (|:| -1747 (-589 *9)) (|:| -2394 *4) (|:| |ineq| (-589 *9))))
- (-5 *1 (-917 *6 *7 *8 *9 *4)) (-5 *3 (-589 *9))
- (-4 *4 (-992 *6 *7 *8 *9))))
- ((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
- (|partial| -12 (-5 *5 (-108)) (-4 *6 (-427)) (-4 *7 (-732))
- (-4 *8 (-786)) (-4 *9 (-987 *6 *7 *8))
- (-5 *2
- (-2 (|:| -1747 (-589 *9)) (|:| -2394 *4) (|:| |ineq| (-589 *9))))
- (-5 *1 (-1023 *6 *7 *8 *9 *4)) (-5 *3 (-589 *9))
- (-4 *4 (-992 *6 *7 *8 *9)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 (-133))) (-5 *1 (-130))))
- ((*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-130)))))
-(((*1 *2 *3 *4 *4 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *5 (-203))
- (-5 *2 (-962)) (-5 *1 (-692)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3)
- (-12 (-5 *6 (-589 (-108))) (-5 *7 (-629 (-203)))
- (-5 *8 (-629 (-523))) (-5 *3 (-523)) (-5 *4 (-203)) (-5 *5 (-108))
- (-5 *2 (-962)) (-5 *1 (-694)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1092)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1087)) (-5 *4 (-883 (-523))) (-5 *2 (-306))
- (-5 *1 (-308))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1087)) (-5 *4 (-1009 (-883 (-523)))) (-5 *2 (-306))
- (-5 *1 (-308))))
- ((*1 *1 *2 *2 *2)
- (-12 (-5 *2 (-710)) (-5 *1 (-617 *3)) (-4 *3 (-973)) (-4 *3 (-1016)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-763)))))
-(((*1 *1) (-4 *1 (-23)))
- ((*1 *1) (-12 (-4 *1 (-445 *2 *3)) (-4 *2 (-158)) (-4 *3 (-23))))
- ((*1 *1) (-5 *1 (-499)))
- ((*1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-629 *5)) (-4 *5 (-973)) (-5 *1 (-977 *3 *4 *5))
- (-14 *3 (-710)) (-14 *4 (-710)))))
+ (-12 (-5 *2 (-1089)) (-5 *3 (-294 (-642))) (-5 *1 (-308))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1072)) (-5 *1 (-308))))
+ ((*1 *1 *1 *1) (-5 *1 (-796))))
+(((*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *5 (-205))
+ (-5 *2 (-964)) (-5 *1 (-693)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-898 *3)) (-4 *3 (-899)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-710)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852))
- (-4 *4 (-973)))))
-(((*1 *2 *3) (-12 (-5 *3 (-710)) (-5 *2 (-1 (-355))) (-5 *1 (-966)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-805)) (-5 *3 (-589 (-240))) (-5 *1 (-238)))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108))
- (-5 *1 (-917 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108))
- (-5 *1 (-1023 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1145 (-523)))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *1 *2)
(-12
(-5 *2
- (-589
- (-2
- (|:| -2402
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (|:| -2746
- (-2
- (|:| |endPointContinuity|
- (-3 (|:| |continuous| "Continuous at the end points")
- (|:| |lowerSingular|
- "There is a singularity at the lower end point")
- (|:| |upperSingular|
- "There is a singularity at the upper end point")
- (|:| |bothSingular|
- "There are singularities at both end points")
- (|:| |notEvaluated|
- "End point continuity not yet evaluated")))
- (|:| |singularitiesStream|
- (-3 (|:| |str| (-1068 (-203)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -3487
- (-3 (|:| |finite| "The range is finite")
- (|:| |lowerInfinite|
- "The bottom of range is infinite")
- (|:| |upperInfinite| "The top of range is infinite")
- (|:| |bothInfinite|
- "Both top and bottom points are infinite")
- (|:| |notEvaluated| "Range not yet evaluated"))))))))
- (-5 *1 (-518)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-378)) (-5 *2 (-710))))
- ((*1 *1 *1) (-4 *1 (-378))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-589 (-1070))) (-5 *1 (-370)))))
-(((*1 *2 *3) (-12 (-5 *3 (-589 *2)) (-5 *1 (-1098 *2)) (-4 *2 (-339)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| (-1070))) (-5 *2 (-108)) (-5 *1 (-1092))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| (-1087))) (-5 *2 (-108)) (-5 *1 (-1092))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| (-203))) (-5 *2 (-108)) (-5 *1 (-1092))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| (-523))) (-5 *2 (-108)) (-5 *1 (-1092)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-629 (-883 *4))) (-5 *1 (-955 *4))
- (-4 *4 (-973)))))
-(((*1 *2 *1) (-12 (-5 *2 (-394 *3)) (-5 *1 (-845 *3)) (-4 *3 (-284)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 (-719 *5 (-796 *6)))) (-5 *4 (-108)) (-4 *5 (-427))
- (-14 *6 (-589 (-1087)))
+ (-591
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205)))))
+ (-5 *1 (-520))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-562 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-5 *2 (-591 *3))))
+ ((*1 *2 *1)
+ (-12
(-5 *2
- (-589 (-1058 *5 (-495 (-796 *6)) (-796 *6) (-719 *5 (-796 *6)))))
- (-5 *1 (-574 *5 *6)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1076 *2 *3)) (-14 *2 (-852)) (-4 *3 (-973)))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4248)) (-4 *1 (-556 *4 *3)) (-4 *4 (-1016))
- (-4 *3 (-1123)) (-4 *3 (-1016)) (-5 *2 (-108)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-1052 *3 *4)) (-4 *3 (-13 (-1016) (-33)))
- (-4 *4 (-13 (-1016) (-33))))))
-(((*1 *1 *1 *1)
- (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23))
- (-14 *4 *3)))
- ((*1 *1 *2 *3 *1)
- (-12 (-5 *1 (-592 *2 *3 *4)) (-4 *2 (-1016)) (-4 *3 (-23))
- (-14 *4 *3)))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-973)) (-4 *2 (-1016)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-589 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171))))
- ((*1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-1171)))))
-(((*1 *2 *3 *3 *3 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-339)) (-4 *3 (-973))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4102 *1)))
- (-4 *1 (-788 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-108)) (-5 *1 (-38 *3)) (-4 *3 (-1145 (-47))))))
+ (-591
+ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205))
+ (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205)))
+ (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205)))
+ (|:| |abserr| (-205)) (|:| |relerr| (-205)))))
+ (-5 *1 (-744)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-468)))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-13 (-517) (-138))) (-5 *1 (-1141 *3 *2))
+ (-4 *2 (-1147 *3)))))
+(((*1 *1 *1) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160)) (-4 *2 (-984))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089)))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-365))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)) (-4 *2 (-984))))
+ ((*1 *1 *1) (-4 *1 (-786)))
+ ((*1 *2 *1) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160)) (-4 *2 (-984))))
+ ((*1 *1 *1) (-4 *1 (-984))) ((*1 *1 *1) (-4 *1 (-1053))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-591 (-525))) (-5 *1 (-1028)) (-5 *3 (-525)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-882 *4 *6 *5)) (-4 *4 (-429))
+ (-4 *5 (-788)) (-4 *6 (-734)) (-5 *1 (-918 *4 *5 *6 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-313 *3 *4 *5 *6)) (-4 *3 (-341)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-4 *6 (-320 *3 *4 *5))
+ (-5 *2 (-391 *4 (-385 *4) *5 *6))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1171 *6)) (-4 *6 (-13 (-387 *4 *5) (-966 *4)))
+ (-4 *4 (-923 *3)) (-4 *5 (-1147 *4)) (-4 *3 (-286))
+ (-5 *1 (-391 *3 *4 *5 *6))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-882 *3 *4 *5)) (-4 *3 (-341))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-477 *3 *4 *5 *6)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-680)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-1169 *1)) (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127))
- (-4 *4 (-1145 *3)) (-4 *5 (-1145 (-383 *4))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-589 *3)) (-4 *3 (-1123)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-51)) (-5 *1 (-1102)))))
+ (|partial| -12 (-5 *2 (-591 (-885 *3))) (-4 *3 (-429))
+ (-5 *1 (-338 *3 *4)) (-14 *4 (-591 (-1089)))))
+ ((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-591 (-721 *3 (-798 *4)))) (-4 *3 (-429))
+ (-14 *4 (-591 (-1089))) (-5 *1 (-576 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-286)) (-4 *5 (-351 *4)) (-4 *6 (-351 *4))
+ (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3)))
+ (-5 *1 (-1040 *4 *5 *6 *3)) (-4 *3 (-629 *4 *5 *6)))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4))
+ (-4 *3 (-345 *4))))
+ ((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-854)) (-5 *3 (-591 (-242))) (-5 *1 (-240))))
+ ((*1 *1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-242)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-1068 *3))) (-5 *2 (-1068 *3)) (-5 *1 (-1072 *3))
- (-4 *3 (-37 (-383 (-523)))) (-4 *3 (-973)))))
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-325)) (-5 *2 (-394 *3)) (-5 *1 (-195 *4 *3))
- (-4 *3 (-1145 *4))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-394 *3)) (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-710)) (-5 *2 (-394 *3)) (-5 *1 (-417 *3))
- (-4 *3 (-1145 (-523)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-710))) (-5 *2 (-394 *3)) (-5 *1 (-417 *3))
- (-4 *3 (-1145 (-523)))))
+ (-12 (-5 *3 (-1085 (-525))) (-5 *2 (-525)) (-5 *1 (-875)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *5 (-631 (-205))) (-5 *4 (-205))
+ (-5 *2 (-964)) (-5 *1 (-694)))))
+(((*1 *1 *1) (-4 *1 (-34)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-57 *6)) (-4 *6 (-1125))
+ (-4 *5 (-1125)) (-5 *2 (-57 *5)) (-5 *1 (-56 *6 *5))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-589 (-710))) (-5 *5 (-710)) (-5 *2 (-394 *3))
- (-5 *1 (-417 *3)) (-4 *3 (-1145 (-523)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-710)) (-5 *2 (-394 *3)) (-5 *1 (-417 *3))
- (-4 *3 (-1145 (-523)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-394 *3)) (-5 *1 (-935 *3))
- (-4 *3 (-1145 (-383 (-523))))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-394 *3)) (-5 *1 (-1134 *3)) (-4 *3 (-1145 (-523))))))
-(((*1 *2)
- (-12 (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-840))
- (-5 *1 (-432 *3 *4 *2 *5)) (-4 *5 (-880 *2 *3 *4))))
- ((*1 *2)
- (-12 (-4 *3 (-732)) (-4 *4 (-786)) (-4 *2 (-840))
- (-5 *1 (-837 *2 *3 *4 *5)) (-4 *5 (-880 *2 *3 *4))))
- ((*1 *2) (-12 (-4 *2 (-840)) (-5 *1 (-838 *2 *3)) (-4 *3 (-1145 *2)))))
-(((*1 *2 *3 *4 *5 *5 *2)
- (|partial| -12 (-5 *2 (-108)) (-5 *3 (-883 *6)) (-5 *4 (-1087))
- (-5 *5 (-779 *7))
- (-4 *6 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-4 *7 (-13 (-1109) (-29 *6))) (-5 *1 (-202 *6 *7))))
- ((*1 *2 *3 *4 *4 *2)
- (|partial| -12 (-5 *2 (-108)) (-5 *3 (-1083 *6)) (-5 *4 (-779 *6))
- (-4 *6 (-13 (-1109) (-29 *5)))
- (-4 *5 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *1 (-202 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-133)))))
-(((*1 *2 *1) (-12 (-4 *1 (-365)) (-5 *2 (-108)))))
+ (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-220 *6 *7)) (-14 *6 (-712))
+ (-4 *7 (-1125)) (-4 *5 (-1125)) (-5 *2 (-220 *6 *5))
+ (-5 *1 (-219 *6 *7 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1125)) (-4 *5 (-1125))
+ (-4 *2 (-351 *5)) (-5 *1 (-349 *6 *4 *5 *2)) (-4 *4 (-351 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1018)) (-4 *5 (-1018))
+ (-4 *2 (-403 *5)) (-5 *1 (-401 *6 *4 *5 *2)) (-4 *4 (-403 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-591 *6)) (-4 *6 (-1125))
+ (-4 *5 (-1125)) (-5 *2 (-591 *5)) (-5 *1 (-589 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-890 *6)) (-4 *6 (-1125))
+ (-4 *5 (-1125)) (-5 *2 (-890 *5)) (-5 *1 (-889 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1070 *6)) (-4 *6 (-1125))
+ (-4 *3 (-1125)) (-5 *2 (-1070 *3)) (-5 *1 (-1068 *6 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1171 *6)) (-4 *6 (-1125))
+ (-4 *5 (-1125)) (-5 *2 (-1171 *5)) (-5 *1 (-1170 *6 *5)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-4 *3 (-515))
- (-5 *2 (-1083 *3)))))
+ (-12 (-4 *1 (-1147 *3)) (-4 *3 (-975)) (-5 *2 (-1085 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-914 *2)) (-4 *2 (-1111)))))
+(((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-838 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-694)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *2 (-523))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973))
- (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-523)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-523)) (-5 *1 (-355)))))
-(((*1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-126)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-5 *1 (-1068 *3)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *5 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-1070)) (-5 *5 (-629 (-203)))
- (-5 *2 (-962)) (-5 *1 (-687)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-917 *4 *5 *6 *7 *3))
- (-4 *3 (-992 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6)) (-5 *2 (-108))
- (-5 *1 (-1023 *4 *5 *6 *7 *3)) (-4 *3 (-992 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-691)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7)
- (-12 (-5 *3 (-523)) (-5 *5 (-629 (-203)))
- (-5 *6 (-3 (|:| |fn| (-364)) (|:| |fp| (-73 FCN JACOBF JACEPS))))
- (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-74 G JACOBG JACGEP))))
- (-5 *4 (-203)) (-5 *2 (-962)) (-5 *1 (-689)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1169 (-1169 (-523)))) (-5 *3 (-852)) (-5 *1 (-441)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-710)) (-4 *4 (-13 (-973) (-657 (-383 (-523)))))
- (-4 *5 (-786)) (-5 *1 (-1183 *4 *5 *2)) (-4 *2 (-1188 *5 *4)))))
-(((*1 *2 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-691)))))
+ (-12 (-4 *2 (-13 (-786) (-341))) (-5 *1 (-985 *2 *3))
+ (-4 *3 (-1147 *2)))))
+(((*1 *1 *1 *1) (-4 *1 (-899))))
+(((*1 *1 *2) (-12 (-5 *2 (-712)) (-5 *1 (-128)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-394 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1145 (-47)))))
- ((*1 *2 *3 *1)
- (-12 (-5 *2 (-2 (|:| |less| (-117 *3)) (|:| |greater| (-117 *3))))
- (-5 *1 (-117 *3)) (-4 *3 (-786))))
+ (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)) (-5 *3 (-525)))))
+(((*1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))))
+(((*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)))))
+(((*1 *1 *1) (-4 *1 (-34)))
((*1 *2 *2)
- (-12 (-5 *2 (-540 *4)) (-4 *4 (-13 (-29 *3) (-1109)))
- (-4 *3 (-13 (-427) (-964 (-523)) (-786) (-585 (-523))))
- (-5 *1 (-538 *3 *4))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
((*1 *2 *2)
- (-12 (-5 *2 (-540 (-383 (-883 *3))))
- (-4 *3 (-13 (-427) (-964 (-523)) (-786) (-585 (-523))))
- (-5 *1 (-543 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1145 *5)) (-4 *5 (-339))
- (-5 *2 (-2 (|:| -2031 *3) (|:| |special| *3))) (-5 *1 (-667 *5 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169 *5)) (-4 *5 (-339)) (-4 *5 (-973))
- (-5 *2 (-589 (-589 (-629 *5)))) (-5 *1 (-956 *5))
- (-5 *3 (-589 (-629 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169 (-1169 *5))) (-4 *5 (-339)) (-4 *5 (-973))
- (-5 *2 (-589 (-589 (-629 *5)))) (-5 *1 (-956 *5))
- (-5 *3 (-589 (-629 *5)))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-130)) (-5 *2 (-589 *1)) (-4 *1 (-1056))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-133)) (-5 *2 (-589 *1)) (-4 *1 (-1056)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-383 (-883 *4))) (-4 *4 (-284))
- (-5 *2 (-383 (-394 (-883 *4)))) (-5 *1 (-968 *4)))))
-(((*1 *2 *1) (-12 (-4 *3 (-1123)) (-5 *2 (-589 *1)) (-4 *1 (-938 *3)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-804 *2 *3)) (-4 *2 (-1123)) (-4 *3 (-1123)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1087)) (-5 *1 (-257))))
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-968)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-517)) (-5 *2 (-890 *3)) (-5 *1 (-1077 *4 *3))
+ (-4 *3 (-1147 *4)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1089)) (-4 *5 (-566 (-825 (-525))))
+ (-4 *5 (-819 (-525)))
+ (-4 *5 (-13 (-788) (-966 (-525)) (-429) (-587 (-525))))
+ (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
+ (-5 *1 (-528 *5 *3)) (-4 *3 (-577))
+ (-4 *3 (-13 (-27) (-1111) (-408 *5))))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-154 *3)) (-4 *3 (-160)) (-4 *3 (-510))
+ (-5 *2 (-385 (-525)))))
((*1 *2 *1)
- (-12 (-5 *2 (-3 (-523) (-203) (-1087) (-1070) (-1092)))
- (-5 *1 (-1092)))))
-(((*1 *2 *3) (-12 (-5 *3 (-852)) (-5 *2 (-1070)) (-5 *1 (-725)))))
-(((*1 *2 *2 *3) (-12 (-5 *3 (-710)) (-5 *1 (-541 *2)) (-4 *2 (-508)))))
+ (|partial| -12 (-5 *2 (-385 (-525))) (-5 *1 (-396 *3)) (-4 *3 (-510))
+ (-4 *3 (-517))))
+ ((*1 *2 *1) (|partial| -12 (-4 *1 (-510)) (-5 *2 (-385 (-525)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-738 *3)) (-4 *3 (-160)) (-4 *3 (-510))
+ (-5 *2 (-385 (-525)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-385 (-525))) (-5 *1 (-774 *3)) (-4 *3 (-510))
+ (-4 *3 (-1018))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-385 (-525))) (-5 *1 (-781 *3)) (-4 *3 (-510))
+ (-4 *3 (-1018))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-927 *3)) (-4 *3 (-160)) (-4 *3 (-510))
+ (-5 *2 (-385 (-525)))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-385 (-525))) (-5 *1 (-938 *3))
+ (-4 *3 (-966 *2)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-341)) (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-477 *4 *5 *6 *3)) (-4 *3 (-882 *4 *5 *6)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-1089))
+ (-4 *6 (-13 (-788) (-286) (-966 (-525)) (-587 (-525)) (-138)))
+ (-4 *4 (-13 (-29 *6) (-1111) (-891)))
+ (-5 *2 (-2 (|:| |particular| *4) (|:| -4003 (-591 *4))))
+ (-5 *1 (-742 *6 *4 *3)) (-4 *3 (-601 *4)))))
+(((*1 *2 *1) (-12 (-5 *1 (-161 *2)) (-4 *2 (-286))))
+ ((*1 *2 *1) (-12 (-5 *1 (-847 *2)) (-4 *2 (-286))))
+ ((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-517)) (-4 *2 (-286))))
+ ((*1 *2 *1) (-12 (-4 *1 (-984)) (-5 *2 (-525)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-523)) (-4 *4 (-732)) (-4 *5 (-786)) (-4 *2 (-973))
- (-5 *1 (-297 *4 *5 *2 *6)) (-4 *6 (-880 *2 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-108)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))
+ (-5 *2 (-591 (-1089))) (-5 *1 (-246))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1085 *7)) (-4 *7 (-882 *6 *4 *5)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-975)) (-5 *2 (-591 *5))
+ (-5 *1 (-299 *4 *5 *6 *7))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-1089))) (-5 *1 (-317 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 *2) (-4 *5 (-365))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-408 *3)) (-4 *3 (-788)) (-5 *2 (-591 (-1089)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-825 *3))) (-5 *1 (-825 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-882 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *2 (-591 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-975))
+ (-4 *7 (-882 *6 *4 *5)) (-5 *2 (-591 *5))
+ (-5 *1 (-883 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-341)
+ (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $)) (-15 -1754 (*7 $)))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1020 (-1089))) (-5 *1 (-898 *3)) (-4 *3 (-899))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-904 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-733))
+ (-4 *5 (-788)) (-5 *2 (-591 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-591 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-517)) (-5 *2 (-591 (-1089)))
+ (-5 *1 (-971 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1089)) (-5 *2 (-1 (-1085 (-885 *4)) (-885 *4)))
+ (-5 *1 (-1179 *4)) (-4 *4 (-341)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-294 (-205)))) (-5 *2 (-108)) (-5 *1 (-246)))))
(((*1 *1 *2 *3)
- (-12 (-5 *2 (-710)) (-4 *3 (-973)) (-4 *1 (-627 *3 *4 *5))
- (-4 *4 (-349 *3)) (-4 *5 (-349 *3))))
+ (-12 (-5 *2 (-712)) (-4 *3 (-975)) (-4 *1 (-629 *3 *4 *5))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3))))
((*1 *1 *2)
- (-12 (-4 *2 (-973)) (-4 *1 (-1037 *3 *2 *4 *5)) (-4 *4 (-216 *3 *2))
- (-4 *5 (-216 *3 *2)))))
+ (-12 (-4 *2 (-975)) (-4 *1 (-1039 *3 *2 *4 *5)) (-4 *4 (-218 *3 *2))
+ (-4 *5 (-218 *3 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2 (-591 (-2 (|:| |val| (-108)) (|:| -3374 *4))))
+ (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *1 *1) (-4 *1 (-466)))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1018)) (-4 *4 (-1018))
+ (-4 *6 (-1018)) (-5 *2 (-1 *6 *5)) (-5 *1 (-626 *5 *4 *6)))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-694)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-591 (-385 *6))) (-5 *3 (-385 *6))
+ (-4 *6 (-1147 *5)) (-4 *5 (-13 (-341) (-138) (-966 (-525))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-529 *5 *6)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1072)) (-5 *1 (-110))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1072)) (-4 *4 (-788)) (-5 *1 (-862 *4 *2))
+ (-4 *2 (-408 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1089)) (-5 *4 (-1072)) (-5 *2 (-294 (-525)))
+ (-5 *1 (-863)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-852)) (-5 *2 (-1083 *4)) (-5 *1 (-333 *4))
- (-4 *4 (-325)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-710)) (-5 *1 (-1076 *3 *4)) (-14 *3 (-852))
- (-4 *4 (-973)))))
+ (-12 (-4 *4 (-975)) (-5 *2 (-525)) (-5 *1 (-420 *4 *3 *5))
+ (-4 *3 (-1147 *4))
+ (-4 *5 (-13 (-382) (-966 *4) (-341) (-1111) (-263))))))
+(((*1 *1 *1 *2 *1) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *2) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1018)))))
(((*1 *2 *3 *2)
- (-12 (-5 *2 (-355)) (-5 *3 (-589 (-240))) (-5 *1 (-238))))
- ((*1 *1 *2) (-12 (-5 *2 (-355)) (-5 *1 (-240)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1145 *2)) (-4 *2 (-973)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 (-794))) (-5 *1 (-794))))
- ((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4))
- (-4 *3 (-343 *4))))
- ((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))))
-(((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-857)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-159 *3)) (-4 *3 (-284))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-616 *3)) (-4 *3 (-1123))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-710)) (-4 *1 (-680 *3 *4)) (-4 *3 (-973))
- (-4 *4 (-786))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-800 *3)) (-5 *2 (-523))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 *3)) (-4 *1 (-909 *3)) (-4 *3 (-973))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-589 *1)) (-5 *3 (-589 *7)) (-4 *1 (-992 *4 *5 *6 *7))
- (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *7 (-987 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-589 *7)) (-4 *7 (-987 *4 *5 *6)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-589 *1))
- (-4 *1 (-992 *4 *5 *6 *7))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-589 *1)) (-4 *1 (-992 *4 *5 *6 *3)) (-4 *4 (-427))
- (-4 *5 (-732)) (-4 *6 (-786)) (-4 *3 (-987 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-427)) (-4 *5 (-732)) (-4 *6 (-786))
- (-4 *3 (-987 *4 *5 *6)) (-5 *2 (-589 *1))
- (-4 *1 (-992 *4 *5 *6 *3))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1117 *3 *4 *5 *2)) (-4 *3 (-515)) (-4 *4 (-732))
- (-4 *5 (-786)) (-4 *2 (-987 *3 *4 *5))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1147 *3 *2)) (-4 *3 (-973)) (-4 *2 (-731)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1170))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1070)) (-5 *2 (-1174)) (-5 *1 (-1171)))))
-(((*1 *2 *3 *4 *2 *5 *6)
- (-12
- (-5 *5
- (-2 (|:| |done| (-589 *11))
- (|:| |todo| (-589 (-2 (|:| |val| *3) (|:| -2394 *11))))))
- (-5 *6 (-710))
- (-5 *2 (-589 (-2 (|:| |val| (-589 *10)) (|:| -2394 *11))))
- (-5 *3 (-589 *10)) (-5 *4 (-589 *11)) (-4 *10 (-987 *7 *8 *9))
- (-4 *11 (-992 *7 *8 *9 *10)) (-4 *7 (-427)) (-4 *8 (-732))
- (-4 *9 (-786)) (-5 *1 (-990 *7 *8 *9 *10 *11))))
- ((*1 *2 *3 *4 *2 *5 *6)
- (-12
- (-5 *5
- (-2 (|:| |done| (-589 *11))
- (|:| |todo| (-589 (-2 (|:| |val| *3) (|:| -2394 *11))))))
- (-5 *6 (-710))
- (-5 *2 (-589 (-2 (|:| |val| (-589 *10)) (|:| -2394 *11))))
- (-5 *3 (-589 *10)) (-5 *4 (-589 *11)) (-4 *10 (-987 *7 *8 *9))
- (-4 *11 (-1025 *7 *8 *9 *10)) (-4 *7 (-427)) (-4 *8 (-732))
- (-4 *9 (-786)) (-5 *1 (-1057 *7 *8 *9 *10 *11)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-383 *5)) (-4 *5 (-1145 *4)) (-4 *4 (-515))
- (-4 *4 (-973)) (-4 *2 (-1160 *4)) (-5 *1 (-1163 *4 *5 *6 *2))
- (-4 *6 (-599 *5)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1087)) (-5 *5 (-1011 (-203))) (-5 *2 (-858))
- (-5 *1 (-856 *3)) (-4 *3 (-564 (-499)))))
- ((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *4 (-1087)) (-5 *5 (-1011 (-203))) (-5 *2 (-858))
- (-5 *1 (-856 *3)) (-4 *3 (-564 (-499)))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-857))))
- ((*1 *1 *2 *2 *2 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-1 (-203) (-203))) (-5 *3 (-1011 (-203)))
- (-5 *1 (-857))))
- ((*1 *1 *2 *2 *2 *2 *3)
- (-12 (-5 *2 (-1 (-203) (-203))) (-5 *3 (-1011 (-203)))
- (-5 *1 (-857))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1011 (-203))) (-5 *1 (-858))))
- ((*1 *1 *2 *2 *3 *3 *3)
- (-12 (-5 *2 (-1 (-203) (-203))) (-5 *3 (-1011 (-203)))
- (-5 *1 (-858))))
- ((*1 *1 *2 *2 *3)
- (-12 (-5 *2 (-1 (-203) (-203))) (-5 *3 (-1011 (-203)))
- (-5 *1 (-858))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-589 (-1 (-203) (-203)))) (-5 *3 (-1011 (-203)))
- (-5 *1 (-858))))
+ (-12 (-5 *2 (-807)) (-5 *3 (-591 (-242))) (-5 *1 (-240)))))
+(((*1 *2 *3 *3 *4 *5 *5)
+ (-12 (-5 *5 (-108)) (-4 *6 (-429)) (-4 *7 (-734)) (-4 *8 (-788))
+ (-4 *3 (-989 *6 *7 *8))
+ (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *4))))
+ (-5 *1 (-1026 *6 *7 *8 *3 *4)) (-4 *4 (-994 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-591 (-2 (|:| |val| (-591 *8)) (|:| -3374 *9))))
+ (-5 *5 (-108)) (-4 *8 (-989 *6 *7 *4)) (-4 *9 (-994 *6 *7 *4 *8))
+ (-4 *6 (-429)) (-4 *7 (-734)) (-4 *4 (-788))
+ (-5 *2 (-591 (-2 (|:| |val| *8) (|:| -3374 *9))))
+ (-5 *1 (-1026 *6 *7 *4 *8 *9)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1085 (-385 (-1085 *2)))) (-5 *4 (-564 *2))
+ (-4 *2 (-13 (-408 *5) (-27) (-1111)))
+ (-4 *5 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *1 (-521 *5 *2 *6)) (-4 *6 (-1018))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-1 (-203) (-203)))) (-5 *3 (-1011 (-203)))
- (-5 *1 (-858))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-203) (-203))) (-5 *3 (-1011 (-203)))
- (-5 *1 (-858))))
+ (-12 (-5 *2 (-1085 *1)) (-4 *1 (-882 *4 *5 *3)) (-4 *4 (-975))
+ (-4 *5 (-734)) (-4 *3 (-788))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-203) (-203))) (-5 *3 (-1011 (-203)))
- (-5 *1 (-858)))))
+ (-12 (-5 *2 (-1085 *4)) (-4 *4 (-975)) (-4 *1 (-882 *4 *5 *3))
+ (-4 *5 (-734)) (-4 *3 (-788))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 (-1085 *2))) (-4 *5 (-734)) (-4 *4 (-788))
+ (-4 *6 (-975))
+ (-4 *2
+ (-13 (-341)
+ (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $)) (-15 -1754 (*7 $)))))
+ (-5 *1 (-883 *5 *4 *6 *7 *2)) (-4 *7 (-882 *6 *5 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 (-1085 (-385 (-885 *5))))) (-5 *4 (-1089))
+ (-5 *2 (-385 (-885 *5))) (-5 *1 (-971 *5)) (-4 *5 (-517)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 (-591 *7) *7 (-1085 *7))) (-5 *5 (-1 (-396 *7) *7))
+ (-4 *7 (-1147 *6)) (-4 *6 (-13 (-341) (-138) (-966 (-385 (-525)))))
+ (-5 *2 (-591 (-2 (|:| |frac| (-385 *7)) (|:| -1317 *3))))
+ (-5 *1 (-750 *6 *7 *3 *8)) (-4 *3 (-601 *7))
+ (-4 *8 (-601 (-385 *7)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-396 *6) *6)) (-4 *6 (-1147 *5))
+ (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-5 *2
+ (-591 (-2 (|:| |frac| (-385 *6)) (|:| -1317 (-599 *6 (-385 *6))))))
+ (-5 *1 (-753 *5 *6)) (-5 *3 (-599 *6 (-385 *6))))))
(((*1 *2 *2 *3)
- (-12 (-4 *3 (-973)) (-5 *1 (-419 *3 *2)) (-4 *2 (-1145 *3)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-973)) (-4 *5 (-732)) (-4 *3 (-786))
- (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-880 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-973)) (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1)))
- (-4 *1 (-1145 *3)))))
-(((*1 *2 *3 *4 *2 *5)
- (-12 (-5 *3 (-589 *8)) (-5 *4 (-589 (-823 *6)))
- (-5 *5 (-1 (-820 *6 *8) *8 (-823 *6) (-820 *6 *8))) (-4 *6 (-1016))
- (-4 *8 (-13 (-973) (-564 (-823 *6)) (-964 *7))) (-5 *2 (-820 *6 *8))
- (-4 *7 (-13 (-973) (-786))) (-5 *1 (-872 *6 *7 *8)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-155 (-203))) (-5 *5 (-523)) (-5 *6 (-1070))
- (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-513 *3)) (-4 *3 (-13 (-380) (-1109))) (-5 *2 (-108)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-383 *5)) (-4 *4 (-1127)) (-4 *5 (-1145 *4))
- (-5 *1 (-137 *4 *5 *2)) (-4 *2 (-1145 *3))))
+ (-12 (-5 *2 (-1 (-876 (-205)) (-205) (-205)))
+ (-5 *3 (-1 (-205) (-205) (-205) (-205))) (-5 *1 (-234)))))
+(((*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525))
+ (-5 *5 (-3 (|:| |fn| (-366)) (|:| |fp| (-62 G)))) (-5 *2 (-964))
+ (-5 *1 (-690)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-975)) (-5 *1 (-827 *2 *3)) (-4 *2 (-1147 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *1 *1) (-4 *1 (-263)))
((*1 *2 *3)
- (-12 (-5 *3 (-1089 (-383 (-523)))) (-5 *2 (-383 (-523)))
- (-5 *1 (-170))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-629 (-292 (-203)))) (-5 *3 (-589 (-1087)))
- (-5 *4 (-1169 (-292 (-203)))) (-5 *1 (-185))))
+ (-12 (-5 *3 (-396 *4)) (-4 *4 (-517))
+ (-5 *2 (-591 (-2 (|:| -3482 (-712)) (|:| |logand| *4))))
+ (-5 *1 (-298 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089)))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-365))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-609 *3 *4)) (-5 *1 (-575 *3 *4 *5)) (-4 *3 (-788))
+ (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-14 *5 (-854))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-712)) (-4 *4 (-13 (-975) (-659 (-385 (-525)))))
+ (-4 *5 (-788)) (-5 *1 (-1185 *4 *5 *2)) (-4 *2 (-1190 *5 *4))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-271 *3))) (-4 *3 (-286 *3)) (-4 *3 (-1016))
- (-4 *3 (-1123)) (-5 *1 (-271 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-286 *2)) (-4 *2 (-1016)) (-4 *2 (-1123))
- (-5 *1 (-271 *2))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-110)) (-5 *3 (-1 *1 *1)) (-4 *1 (-279))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-110)) (-5 *3 (-1 *1 (-589 *1))) (-4 *1 (-279))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-110))) (-5 *3 (-589 (-1 *1 (-589 *1))))
- (-4 *1 (-279))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-110))) (-5 *3 (-589 (-1 *1 *1))) (-4 *1 (-279))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-1 *1 *1)) (-4 *1 (-279))))
+ (-12 (-5 *2 (-712)) (-5 *1 (-1189 *3 *4))
+ (-4 *4 (-659 (-385 (-525)))) (-4 *3 (-788)) (-4 *4 (-160)))))
+(((*1 *2 *3 *4 *4 *2 *2 *2 *2)
+ (-12 (-5 *2 (-525))
+ (-5 *3
+ (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-712)) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-4 *6 (-734)) (-4 *4 (-882 *5 *6 *7)) (-4 *5 (-429)) (-4 *7 (-788))
+ (-5 *1 (-426 *5 *6 *7 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-919 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-1025 *4 *5 *6 *7 *8)) (-4 *8 (-994 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-712)) (-5 *4 (-1171 *2)) (-4 *5 (-286))
+ (-4 *6 (-923 *5)) (-4 *2 (-13 (-387 *6 *7) (-966 *6)))
+ (-5 *1 (-391 *5 *6 *7 *2)) (-4 *7 (-1147 *6)))))
+(((*1 *1 *1 *1) (-4 *1 (-281))) ((*1 *1 *1) (-4 *1 (-281))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-290)) (-5 *1 (-275))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-1072))) (-5 *2 (-290)) (-5 *1 (-275))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-290)) (-5 *1 (-275))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 (-1072))) (-5 *3 (-1072)) (-5 *2 (-290))
+ (-5 *1 (-275)))))
+(((*1 *2 *3 *2)
+ (-12 (-4 *2 (-13 (-341) (-786))) (-5 *1 (-167 *2 *3))
+ (-4 *3 (-1147 (-157 *2)))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-341) (-786))) (-5 *1 (-167 *2 *3))
+ (-4 *3 (-1147 (-157 *2))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-157 (-205))) (-5 *4 (-525)) (-5 *2 (-964))
+ (-5 *1 (-700)))))
+(((*1 *1 *2 *3)
+ (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-975)) (-4 *3 (-733))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-591 (-854))) (-5 *1 (-143 *4 *2 *5)) (-14 *4 (-854))
+ (-4 *2 (-341)) (-14 *5 (-924 *4 *2))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-655 *5 *6 *7)) (-4 *5 (-788))
+ (-4 *6 (-218 (-4045 *4) (-712)))
+ (-14 *7
+ (-1 (-108) (-2 (|:| -2226 *5) (|:| -2008 *6))
+ (-2 (|:| -2226 *5) (|:| -2008 *6))))
+ (-14 *4 (-591 (-1089))) (-4 *2 (-160))
+ (-5 *1 (-438 *4 *2 *5 *6 *7 *8)) (-4 *8 (-882 *2 *6 (-798 *4)))))
+ ((*1 *1 *2 *3)
+ (-12 (-4 *1 (-481 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-788))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-525)) (-4 *2 (-517)) (-5 *1 (-572 *2 *4))
+ (-4 *4 (-1147 *2))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-712)) (-4 *1 (-650 *2)) (-4 *2 (-975))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-677 *2 *3)) (-4 *2 (-975)) (-4 *3 (-668))))
((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1087)) (-5 *3 (-1 *1 (-589 *1))) (-4 *1 (-279))))
+ (-12 (-5 *2 (-591 *5)) (-5 *3 (-591 (-712))) (-4 *1 (-682 *4 *5))
+ (-4 *4 (-975)) (-4 *5 (-788))))
((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-1087))) (-5 *3 (-589 (-1 *1 (-589 *1))))
- (-4 *1 (-279))))
+ (-12 (-5 *3 (-712)) (-4 *1 (-682 *4 *2)) (-4 *4 (-975))
+ (-4 *2 (-788))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-712)) (-4 *1 (-790 *2)) (-4 *2 (-975))))
((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 (-1087))) (-5 *3 (-589 (-1 *1 *1))) (-4 *1 (-279))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-271 *3))) (-4 *1 (-286 *3)) (-4 *3 (-1016))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-271 *3)) (-4 *1 (-286 *3)) (-4 *3 (-1016))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 (-523))) (-5 *4 (-1089 (-383 (-523))))
- (-5 *1 (-287 *2)) (-4 *2 (-37 (-383 (-523))))))
+ (-12 (-5 *2 (-591 *6)) (-5 *3 (-591 (-712))) (-4 *1 (-882 *4 *5 *6))
+ (-4 *4 (-975)) (-4 *5 (-734)) (-4 *6 (-788))))
((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 *4)) (-5 *3 (-589 *1)) (-4 *1 (-350 *4 *5))
- (-4 *4 (-786)) (-4 *5 (-158))))
- ((*1 *1 *1 *2 *1)
- (-12 (-4 *1 (-350 *2 *3)) (-4 *2 (-786)) (-4 *3 (-158))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1087)) (-5 *3 (-710)) (-5 *4 (-1 *1 *1))
- (-4 *1 (-406 *5)) (-4 *5 (-786)) (-4 *5 (-973))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1087)) (-5 *3 (-710)) (-5 *4 (-1 *1 (-589 *1)))
- (-4 *1 (-406 *5)) (-4 *5 (-786)) (-4 *5 (-973))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-589 (-1087))) (-5 *3 (-589 (-710)))
- (-5 *4 (-589 (-1 *1 (-589 *1)))) (-4 *1 (-406 *5)) (-4 *5 (-786))
- (-4 *5 (-973))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-589 (-1087))) (-5 *3 (-589 (-710)))
- (-5 *4 (-589 (-1 *1 *1))) (-4 *1 (-406 *5)) (-4 *5 (-786))
- (-4 *5 (-973))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-589 (-110))) (-5 *3 (-589 *1)) (-5 *4 (-1087))
- (-4 *1 (-406 *5)) (-4 *5 (-786)) (-4 *5 (-564 (-499)))))
- ((*1 *1 *1 *2 *1 *3)
- (-12 (-5 *2 (-110)) (-5 *3 (-1087)) (-4 *1 (-406 *4)) (-4 *4 (-786))
- (-4 *4 (-564 (-499)))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-406 *2)) (-4 *2 (-786)) (-4 *2 (-564 (-499)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-1087))) (-4 *1 (-406 *3)) (-4 *3 (-786))
- (-4 *3 (-564 (-499)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1087)) (-4 *1 (-406 *3)) (-4 *3 (-786))
- (-4 *3 (-564 (-499)))))
+ (-12 (-5 *3 (-712)) (-4 *1 (-882 *4 *5 *2)) (-4 *4 (-975))
+ (-4 *5 (-734)) (-4 *2 (-788))))
((*1 *1 *1 *2 *3)
- (-12 (-4 *1 (-484 *2 *3)) (-4 *2 (-1016)) (-4 *3 (-1123))))
+ (-12 (-5 *2 (-591 *6)) (-5 *3 (-591 *5)) (-4 *1 (-904 *4 *5 *6))
+ (-4 *4 (-975)) (-4 *5 (-733)) (-4 *6 (-788))))
((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 *4)) (-5 *3 (-589 *5)) (-4 *1 (-484 *4 *5))
- (-4 *4 (-1016)) (-4 *5 (-1123))))
- ((*1 *2 *1 *2)
- (-12 (-5 *2 (-772 *3)) (-4 *3 (-339)) (-5 *1 (-658 *3))))
- ((*1 *2 *1 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339))))
- ((*1 *2 *1 *2) (-12 (-4 *1 (-834 *2)) (-4 *2 (-1016))))
- ((*1 *2 *2 *3 *2)
- (-12 (-5 *2 (-383 (-883 *4))) (-5 *3 (-1087)) (-4 *4 (-515))
- (-5 *1 (-969 *4))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-589 (-1087))) (-5 *4 (-589 (-383 (-883 *5))))
- (-5 *2 (-383 (-883 *5))) (-4 *5 (-515)) (-5 *1 (-969 *5))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-271 (-383 (-883 *4)))) (-5 *2 (-383 (-883 *4)))
- (-4 *4 (-515)) (-5 *1 (-969 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 (-271 (-383 (-883 *4))))) (-5 *2 (-383 (-883 *4)))
- (-4 *4 (-515)) (-5 *1 (-969 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-973)) (-5 *1 (-1072 *3))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-1147 *3 *4)) (-4 *3 (-973)) (-4 *4 (-731))
- (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1068 *3)))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4248)) (-4 *1 (-462 *3)) (-4 *3 (-1123))
- (-4 *3 (-1016)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-836 *4)) (-4 *4 (-1016)) (-5 *2 (-108))
- (-5 *1 (-835 *4))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-852)) (-5 *2 (-108)) (-5 *1 (-1017 *4 *5)) (-14 *4 *3)
- (-14 *5 *3))))
+ (-12 (-4 *1 (-904 *4 *3 *2)) (-4 *4 (-975)) (-4 *3 (-733))
+ (-4 *2 (-788)))))
+(((*1 *1 *1) (-4 *1 (-577)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-578 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932) (-1111))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-966 (-525))) (-4 *3 (-13 (-788) (-517)))
+ (-5 *1 (-31 *3 *2)) (-4 *2 (-408 *3))))
+ ((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-1085 *4)) (-5 *1 (-153 *3 *4))
+ (-4 *3 (-154 *4))))
+ ((*1 *1 *1) (-12 (-4 *1 (-975)) (-4 *1 (-281))))
+ ((*1 *2) (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-5 *2 (-1085 *3))))
+ ((*1 *2) (-12 (-4 *1 (-666 *3 *2)) (-4 *3 (-160)) (-4 *2 (-1147 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-991 *3 *2)) (-4 *3 (-13 (-786) (-341)))
+ (-4 *2 (-1147 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 *3)) (-4 *3 (-882 *5 *6 *7)) (-4 *5 (-429))
+ (-4 *6 (-734)) (-4 *7 (-788))
+ (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5)))
+ (-5 *1 (-426 *5 *6 *7 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1188 *3)) (-4 *3 (-341)) (-5 *2 (-108)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-1089))) (-5 *3 (-51)) (-5 *1 (-825 *4))
+ (-4 *4 (-1018)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-284) (-136))) (-4 *5 (-13 (-786) (-564 (-1087))))
- (-4 *6 (-732)) (-5 *2 (-589 *3)) (-5 *1 (-855 *4 *5 *6 *3))
- (-4 *3 (-880 *4 *6 *5)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-589 (-455 *4 *5))) (-5 *3 (-589 (-796 *4)))
- (-14 *4 (-589 (-1087))) (-4 *5 (-427)) (-5 *1 (-446 *4 *5 *6))
- (-4 *6 (-427)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-284)) (-5 *1 (-430 *3 *2)) (-4 *2 (-1145 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-284)) (-5 *1 (-435 *3 *2)) (-4 *2 (-1145 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-284)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-710)))
- (-5 *1 (-502 *3 *2 *4 *5)) (-4 *2 (-1145 *3)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-710)) (-5 *2 (-108))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-108)) (-5 *1 (-1124 *3)) (-4 *3 (-786))
- (-4 *3 (-1016)))))
-(((*1 *2 *1) (-12 (-5 *2 (-589 (-883 (-523)))) (-5 *1 (-413))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1087)) (-5 *4 (-629 (-203))) (-5 *2 (-1020))
- (-5 *1 (-699))))
+ (-12 (-5 *3 (-712)) (-5 *2 (-1176)) (-5 *1 (-799 *4 *5 *6 *7))
+ (-4 *4 (-975)) (-14 *5 (-591 (-1089))) (-14 *6 (-591 *3))
+ (-14 *7 *3)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-712)) (-4 *4 (-975)) (-4 *5 (-788)) (-4 *6 (-734))
+ (-14 *8 (-591 *5)) (-5 *2 (-1176))
+ (-5 *1 (-1181 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-882 *4 *6 *5))
+ (-14 *9 (-591 *3)) (-14 *10 *3))))
+(((*1 *1 *1) (-5 *1 (-987))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-712)) (-5 *1 (-794 *2)) (-4 *2 (-160)))))
+(((*1 *2 *2) (-12 (-5 *2 (-294 (-205))) (-5 *1 (-246)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1013 (-781 (-205)))) (-5 *2 (-205)) (-5 *1 (-174))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1013 (-781 (-205)))) (-5 *2 (-205)) (-5 *1 (-279))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1013 (-781 (-205)))) (-5 *2 (-205)) (-5 *1 (-284)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1085 *7)) (-4 *5 (-975))
+ (-4 *7 (-975)) (-4 *2 (-1147 *5)) (-5 *1 (-474 *5 *2 *6 *7))
+ (-4 *6 (-1147 *2))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1087)) (-5 *4 (-629 (-523))) (-5 *2 (-1020))
- (-5 *1 (-699)))))
+ (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-975)) (-4 *7 (-975))
+ (-4 *4 (-1147 *5)) (-5 *2 (-1085 *7)) (-5 *1 (-474 *5 *4 *6 *7))
+ (-4 *6 (-1147 *4)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1078 3 *3)) (-4 *3 (-975)) (-4 *1 (-1050 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1050 *2)) (-4 *2 (-975)))))
+(((*1 *2 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-1072)) (-5 *5 (-631 (-205)))
+ (-5 *2 (-964)) (-5 *1 (-689)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-320 *4 *3 *5)) (-4 *4 (-1129)) (-4 *3 (-1147 *4))
+ (-4 *5 (-1147 (-385 *3))) (-5 *2 (-108))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-157 *4)) (-5 *1 (-167 *4 *3))
+ (-4 *4 (-13 (-341) (-786))) (-4 *3 (-1147 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1125)))))
+(((*1 *2)
+ (-12 (-5 *2 (-2 (|:| -2023 (-591 *3)) (|:| -2397 (-591 *3))))
+ (-5 *1 (-1126 *3)) (-4 *3 (-1018)))))
(((*1 *2 *3 *4)
- (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4)))
- (-5 *1 (-645 *3 *4)) (-4 *3 (-1123)) (-4 *4 (-1123)))))
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1147 *5)) (-4 *5 (-341))
+ (-5 *2
+ (-2 (|:| |ir| (-542 (-385 *6))) (|:| |specpart| (-385 *6))
+ (|:| |polypart| *6)))
+ (-5 *1 (-535 *5 *6)) (-5 *3 (-385 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-995 *5 *6 *7 *3 *4))
+ (-4 *4 (-994 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7))
+ (-5 *2 (-591 (-2 (|:| |val| (-108)) (|:| -3374 *4))))
+ (-5 *1 (-995 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-591
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3)
+ (|:| |xpnt| (-525)))))
+ (-5 *1 (-396 *3)) (-4 *3 (-517))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *4 (-712)) (-4 *3 (-327)) (-4 *5 (-1147 *3))
+ (-5 *2 (-591 (-1085 *3))) (-5 *1 (-471 *3 *5 *6))
+ (-4 *6 (-1147 *5)))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-693)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-253 *3 *2))
- (-4 *2 (-13 (-406 *3) (-930))))))
-(((*1 *2) (-12 (-5 *2 (-589 (-1087))) (-5 *1 (-100)))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-273 (-385 (-885 *5)))) (-5 *4 (-1089))
+ (-4 *5 (-13 (-286) (-788) (-138)))
+ (-5 *2 (-1079 (-591 (-294 *5)) (-591 (-273 (-294 *5)))))
+ (-5 *1 (-1045 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-1089))
+ (-4 *5 (-13 (-286) (-788) (-138)))
+ (-5 *2 (-1079 (-591 (-294 *5)) (-591 (-273 (-294 *5)))))
+ (-5 *1 (-1045 *5)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-550 *2)) (-4 *2 (-975)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-517)) (-4 *3 (-975))
+ (-5 *2 (-2 (|:| -2963 *1) (|:| -3407 *1))) (-4 *1 (-790 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-94 *5)) (-4 *5 (-517)) (-4 *5 (-975))
+ (-5 *2 (-2 (|:| -2963 *3) (|:| -3407 *3))) (-5 *1 (-791 *5 *3))
+ (-4 *3 (-790 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-385 (-1085 (-294 *3)))) (-4 *3 (-13 (-517) (-788)))
+ (-5 *1 (-1046 *3)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1054 *3 *4)) (-4 *3 (-13 (-1018) (-33)))
+ (-4 *4 (-13 (-1018) (-33))))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (-5 *2 (-108)) (-5 *1 (-277)))))
-(((*1 *1) (-5 *1 (-268))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-1016)) (-4 *2 (-831 *4)) (-5 *1 (-631 *4 *2 *5 *3))
- (-4 *5 (-349 *2)) (-4 *3 (-13 (-349 *4) (-10 -7 (-6 -4248)))))))
-(((*1 *1) (-5 *1 (-443))))
-(((*1 *2 *3 *4 *3 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-155 (-203)))) (-5 *2 (-962))
- (-5 *1 (-696)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1142 *5 *4)) (-4 *4 (-759)) (-14 *5 (-1087))
- (-5 *2 (-523)) (-5 *1 (-1030 *4 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-794)) (-5 *2 (-1070)) (-5 *1 (-650)))))
+ (-477 (-385 (-525)) (-220 *5 (-712)) (-798 *4)
+ (-227 *4 (-385 (-525)))))
+ (-14 *4 (-591 (-1089))) (-14 *5 (-712)) (-5 *2 (-108))
+ (-5 *1 (-478 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-618 *3)) (-4 *3 (-1125)) (-5 *2 (-712)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-1088)) (-5 *1 (-308)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-852)) (-5 *4 (-394 *6)) (-4 *6 (-1145 *5))
- (-4 *5 (-973)) (-5 *2 (-589 *6)) (-5 *1 (-419 *5 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-155 (-523))) (-5 *2 (-108)) (-5 *1 (-421))))
- ((*1 *2 *3)
- (-12
- (-5 *3
- (-475 (-383 (-523)) (-218 *5 (-710)) (-796 *4)
- (-225 *4 (-383 (-523)))))
- (-14 *4 (-589 (-1087))) (-14 *5 (-710)) (-5 *2 (-108))
- (-5 *1 (-476 *4 *5))))
- ((*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-891 *3)) (-4 *3 (-508))))
- ((*1 *2 *1) (-12 (-4 *1 (-1127)) (-5 *2 (-108)))))
-(((*1 *1 *2 *2 *3)
- (-12 (-5 *3 (-589 (-1087))) (-4 *4 (-1016))
- (-4 *5 (-13 (-973) (-817 *4) (-786) (-564 (-823 *4))))
- (-5 *1 (-995 *4 *5 *2))
- (-4 *2 (-13 (-406 *5) (-817 *4) (-564 (-823 *4))))))
- ((*1 *1 *2 *2)
- (-12 (-4 *3 (-1016))
- (-4 *4 (-13 (-973) (-817 *3) (-786) (-564 (-823 *3))))
- (-5 *1 (-995 *3 *4 *2))
- (-4 *2 (-13 (-406 *4) (-817 *3) (-564 (-823 *3)))))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-383 (-523))) (-5 *1 (-203))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-383 (-523))) (-5 *1 (-203))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-383 (-523))) (-5 *1 (-355))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-383 (-523))) (-5 *1 (-355)))))
-(((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-442))))
- ((*1 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-442))))
- ((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-858)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-1009 (-883 (-523)))) (-5 *3 (-883 (-523)))
- (-5 *1 (-306))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-1009 (-883 (-523)))) (-5 *1 (-306)))))
+ (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1147 *6))
+ (-4 *6 (-13 (-27) (-408 *5)))
+ (-4 *5 (-13 (-788) (-517) (-966 (-525)))) (-4 *8 (-1147 (-385 *7)))
+ (-5 *2 (-542 *3)) (-5 *1 (-513 *5 *6 *7 *8 *3))
+ (-4 *3 (-320 *6 *7 *8)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6))
+ (-5 *2 (-2 (|:| |bas| (-453 *4 *5 *6 *7)) (|:| -1211 (-591 *7))))
+ (-5 *1 (-908 *4 *5 *6 *7)) (-5 *3 (-591 *7)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 *3)) (-4 *3 (-1125)) (-5 *1 (-1070 *3)))))
+(((*1 *1 *1) (-5 *1 (-987))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-624 *3)) (-4 *3 (-1018)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *6)) (-5 *4 (-1087)) (-4 *6 (-406 *5))
- (-4 *5 (-786)) (-5 *2 (-589 (-562 *6))) (-5 *1 (-532 *5 *6)))))
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-517) (-138))) (-5 *1 (-502 *3 *2))
+ (-4 *2 (-1162 *3))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-341) (-346) (-566 (-525)))) (-4 *4 (-1147 *3))
+ (-4 *5 (-666 *3 *4)) (-5 *1 (-506 *3 *4 *5 *2)) (-4 *2 (-1162 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-341) (-346) (-566 (-525)))) (-5 *1 (-507 *3 *2))
+ (-4 *2 (-1162 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-13 (-517) (-138)))
+ (-5 *1 (-1066 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-385 (-885 *3))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-394 *5)) (-4 *5 (-515))
+ (-12 (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788))
+ (-4 *3 (-989 *5 *6 *7)) (-5 *2 (-591 *4))
+ (-5 *1 (-1026 *5 *6 *7 *3 *4)) (-4 *4 (-994 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1072)) (-4 *4 (-13 (-286) (-138)))
+ (-4 *5 (-13 (-788) (-566 (-1089)))) (-4 *6 (-734))
(-5 *2
- (-2 (|:| -3262 (-710)) (|:| -2275 *5) (|:| |radicand| (-589 *5))))
- (-5 *1 (-296 *5)) (-5 *4 (-710))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-930)) (-5 *2 (-523)))))
-(((*1 *1 *1 *1) (-5 *1 (-794))))
-(((*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848))))
- ((*1 *2) (-12 (-5 *2 (-835 (-523))) (-5 *1 (-848)))))
-(((*1 *1) (-5 *1 (-203))) ((*1 *1) (-5 *1 (-355))))
-(((*1 *1 *1 *1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)) (-4 *2 (-515)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-905 *3 *4 *2 *5)) (-4 *3 (-973)) (-4 *4 (-732))
- (-4 *2 (-786)) (-4 *5 (-987 *3 *4 *2)))))
-(((*1 *1 *2 *3 *3 *4 *5)
- (-12 (-5 *2 (-589 (-589 (-874 (-203))))) (-5 *3 (-589 (-805)))
- (-5 *4 (-589 (-852))) (-5 *5 (-589 (-240))) (-5 *1 (-443))))
- ((*1 *1 *2 *3 *3 *4)
- (-12 (-5 *2 (-589 (-589 (-874 (-203))))) (-5 *3 (-589 (-805)))
- (-5 *4 (-589 (-852))) (-5 *1 (-443))))
- ((*1 *1 *2) (-12 (-5 *2 (-589 (-589 (-874 (-203))))) (-5 *1 (-443))))
- ((*1 *1 *1) (-5 *1 (-443))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-710)) (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1136 (-523))) (-4 *1 (-259 *3)) (-4 *3 (-1123))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-523)) (-4 *1 (-259 *3)) (-4 *3 (-1123)))))
+ (-591
+ (-2 (|:| |eqzro| (-591 *7)) (|:| |neqzro| (-591 *7))
+ (|:| |wcond| (-591 (-885 *4)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1171 (-385 (-885 *4))))
+ (|:| -4003 (-591 (-1171 (-385 (-885 *4))))))))))
+ (-5 *1 (-857 *4 *5 *6 *7)) (-4 *7 (-882 *4 *6 *5)))))
+(((*1 *1 *1) (|partial| -4 *1 (-136))) ((*1 *1 *1) (-4 *1 (-327)))
+ ((*1 *1 *1) (|partial| -12 (-4 *1 (-136)) (-4 *1 (-842)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1050 *3)) (-4 *3 (-975)) (-5 *2 (-591 (-876 *3))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-596 *4)) (-4 *4 (-318 *5 *6 *7))
- (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-4 *6 (-1145 *5)) (-4 *7 (-1145 (-383 *6)))
+ (-12 (-4 *5 (-1018)) (-4 *6 (-819 *5)) (-5 *2 (-818 *5 *6 (-591 *6)))
+ (-5 *1 (-820 *5 *6 *4)) (-5 *3 (-591 *6)) (-4 *4 (-566 (-825 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1018)) (-5 *2 (-591 (-273 *3))) (-5 *1 (-820 *5 *3 *4))
+ (-4 *3 (-966 (-1089))) (-4 *3 (-819 *5)) (-4 *4 (-566 (-825 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1018)) (-5 *2 (-591 (-273 (-885 *3))))
+ (-5 *1 (-820 *5 *3 *4)) (-4 *3 (-975))
+ (-2247 (-4 *3 (-966 (-1089)))) (-4 *3 (-819 *5))
+ (-4 *4 (-566 (-825 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1018)) (-5 *2 (-822 *5 *3)) (-5 *1 (-820 *5 *3 *4))
+ (-2247 (-4 *3 (-966 (-1089)))) (-2247 (-4 *3 (-975)))
+ (-4 *3 (-819 *5)) (-4 *4 (-566 (-825 *5))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-2 (|:| -2019 (-1089)) (|:| -1221 *4))))
+ (-5 *1 (-822 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1018))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018))
+ (-4 *7 (-1018)) (-5 *2 (-591 *1)) (-4 *1 (-1021 *3 *4 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-712)) (-5 *2 (-1085 *4)) (-5 *1 (-495 *4))
+ (-4 *4 (-327)))))
+(((*1 *1 *1) (-5 *1 (-796)))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *2 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1018))))
+ ((*1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-1071))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1072)) (-5 *1 (-1089)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089)))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-365))))
+ ((*1 *1 *1) (-4 *1 (-466)))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-907 *3 *4 *5 *6)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-3 (-2 (|:| -3060 *7) (|:| |coeff| *7)) "failed") *7))
+ (-5 *6 (-591 (-385 *8))) (-4 *7 (-341)) (-4 *8 (-1147 *7))
+ (-5 *3 (-385 *8))
+ (-5 *2
+ (-2
+ (|:| |answer|
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-591 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (|:| |a0| *7)))
+ (-5 *1 (-535 *7 *8)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-13 (-286) (-10 -8 (-15 -2827 ((-396 $) $)))))
+ (-4 *4 (-1147 *3))
+ (-5 *2
+ (-2 (|:| -4003 (-631 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-631 *3))))
+ (-5 *1 (-328 *3 *4 *5)) (-4 *5 (-387 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-525)) (-4 *4 (-1147 *3))
+ (-5 *2
+ (-2 (|:| -4003 (-631 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-631 *3))))
+ (-5 *1 (-709 *4 *5)) (-4 *5 (-387 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-327)) (-4 *3 (-1147 *4)) (-4 *5 (-1147 *3))
+ (-5 *2
+ (-2 (|:| -4003 (-631 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-631 *3))))
+ (-5 *1 (-916 *4 *3 *5 *6)) (-4 *6 (-666 *3 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-327)) (-4 *3 (-1147 *4)) (-4 *5 (-1147 *3))
(-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2922 (-589 *4))))
- (-5 *1 (-745 *5 *6 *7 *4)))))
+ (-2 (|:| -4003 (-631 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-631 *3))))
+ (-5 *1 (-1180 *4 *3 *5 *6)) (-4 *6 (-387 *3 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-341)) (-5 *2 (-591 *3)) (-5 *1 (-878 *4 *3))
+ (-4 *3 (-1147 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-457 *4 *5))) (-14 *4 (-591 (-1089)))
+ (-4 *5 (-429)) (-5 *2 (-591 (-227 *4 *5))) (-5 *1 (-579 *4 *5)))))
(((*1 *2 *3)
- (-12 (-4 *2 (-1145 *4)) (-5 *1 (-748 *4 *2 *3 *5))
- (-4 *4 (-13 (-339) (-136) (-964 (-383 (-523))))) (-4 *3 (-599 *2))
- (-4 *5 (-599 (-383 *2))))))
+ (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3))
+ (-4 *3 (-13 (-341) (-1111) (-932))))))
+(((*1 *1) (-5 *1 (-108))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1022)) (-5 *3 (-715)) (-5 *1 (-51)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-398 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1111) (-408 *3)))
+ (-14 *4 (-1089)) (-14 *5 *2)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-4 *2 (-13 (-27) (-1111) (-408 *3) (-10 -8 (-15 -3022 ($ *4)))))
+ (-4 *4 (-786))
+ (-4 *5
+ (-13 (-1149 *2 *4) (-341) (-1111)
+ (-10 -8 (-15 -3266 ($ $)) (-15 -4141 ($ $)))))
+ (-5 *1 (-400 *3 *2 *4 *5 *6 *7)) (-4 *6 (-914 *5)) (-14 *7 (-1089)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1089)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *1 *1) (-5 *1 (-796))) ((*1 *1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *2) (-12 (-5 *1 (-1138 *2)) (-4 *2 (-1125)))))
+(((*1 *1 *1) (-4 *1 (-91)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-591 (-564 *4))) (-4 *4 (-408 *3)) (-4 *3 (-788))
+ (-5 *1 (-534 *3 *4))))
+ ((*1 *1 *1 *1)
+ (-12 (-5 *1 (-822 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1016 *2)) (-4 *2 (-1018)))))
(((*1 *2 *1)
+ (-12 (-5 *2 (-591 (-525))) (-5 *1 (-934 *3)) (-14 *3 (-525)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-205)) (-5 *2 (-108)) (-5 *1 (-278 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3)))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1013 (-781 (-205)))) (-5 *3 (-205)) (-5 *2 (-108))
+ (-5 *1 (-284))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-5 *2 (-108))
+ (-5 *1 (-477 *3 *4 *5 *6)) (-4 *6 (-882 *3 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-712)) (-5 *2 (-1176)) (-5 *1 (-357)))))
+(((*1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-968)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-525))) (-5 *1 (-49 *3 *4)) (-4 *3 (-975))
+ (-14 *4 (-591 (-1089)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *1 *1) (-4 *1 (-263)))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089)))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-365))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-609 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-13 (-160) (-659 (-385 (-525))))) (-5 *1 (-575 *3 *4 *5))
+ (-14 *5 (-854))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-712)) (-4 *4 (-13 (-975) (-659 (-385 (-525)))))
+ (-4 *5 (-788)) (-5 *1 (-1185 *4 *5 *2)) (-4 *2 (-1190 *5 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-5 *1 (-1189 *3 *4))
+ (-4 *4 (-659 (-385 (-525)))) (-4 *3 (-788)) (-4 *4 (-160)))))
+(((*1 *2 *3)
+ (-12 (-4 *5 (-13 (-566 *2) (-160))) (-5 *2 (-825 *4))
+ (-5 *1 (-158 *4 *5 *3)) (-4 *4 (-1018)) (-4 *3 (-154 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-1013 (-781 (-357)))))
+ (-5 *2 (-591 (-1013 (-781 (-205))))) (-5 *1 (-284))))
+ ((*1 *1 *2) (-12 (-5 *2 (-205)) (-5 *1 (-357))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-796)) (-5 *3 (-525)) (-5 *1 (-372))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1171 *3)) (-4 *3 (-160)) (-4 *1 (-387 *3 *4))
+ (-4 *4 (-1147 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-160)) (-4 *4 (-1147 *3))
+ (-5 *2 (-1171 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-160)) (-4 *1 (-395 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-5 *2 (-1171 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-396 *1)) (-4 *1 (-408 *3)) (-4 *3 (-517))
+ (-4 *3 (-788))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-975))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-440 *3 *4 *5 *6))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1022)) (-5 *1 (-501))))
+ ((*1 *2 *1) (-12 (-4 *1 (-566 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-160)) (-4 *1 (-666 *3 *2)) (-4 *2 (-1147 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-825 *3))) (-5 *1 (-825 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 *3)) (-4 *3 (-975)) (-4 *1 (-911 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-986))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-885 *3)) (-4 *3 (-975)) (-4 *1 (-989 *3 *4 *5))
+ (-4 *5 (-566 (-1089))) (-4 *4 (-734)) (-4 *5 (-788))))
+ ((*1 *1 *2)
+ (-3321
+ (-12 (-5 *2 (-885 (-525))) (-4 *1 (-989 *3 *4 *5))
+ (-12 (-2247 (-4 *3 (-37 (-385 (-525))))) (-4 *3 (-37 (-525)))
+ (-4 *5 (-566 (-1089))))
+ (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)))
+ (-12 (-5 *2 (-885 (-525))) (-4 *1 (-989 *3 *4 *5))
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *5 (-566 (-1089))))
+ (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-885 (-385 (-525)))) (-4 *1 (-989 *3 *4 *5))
+ (-4 *3 (-37 (-385 (-525)))) (-4 *5 (-566 (-1089))) (-4 *3 (-975))
+ (-4 *4 (-734)) (-4 *5 (-788))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-2 (|:| |val| (-591 *7)) (|:| -3374 *8)))
+ (-4 *7 (-989 *4 *5 *6)) (-4 *8 (-994 *4 *5 *6 *7)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-1072))
+ (-5 *1 (-992 *4 *5 *6 *7 *8))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1089)) (-5 *1 (-1003))))
+ ((*1 *1 *2) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *2)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *2)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1018))))
+ ((*1 *1 *2)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *2 *6)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *2 (-1018)) (-4 *6 (-1018))))
+ ((*1 *1 *2)
+ (-12 (-4 *1 (-1021 *3 *4 *2 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *2 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018))))
+ ((*1 *1 *2)
+ (-12 (-4 *1 (-1021 *3 *2 *4 *5 *6)) (-4 *3 (-1018)) (-4 *2 (-1018))
+ (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018))))
+ ((*1 *1 *2)
+ (-12 (-4 *1 (-1021 *2 *3 *4 *5 *6)) (-4 *2 (-1018)) (-4 *3 (-1018))
+ (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-591 *1)) (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018))
+ (-4 *4 (-1018)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-2 (|:| |val| (-591 *7)) (|:| -3374 *8)))
+ (-4 *7 (-989 *4 *5 *6)) (-4 *8 (-1027 *4 *5 *6 *7)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-1072))
+ (-5 *1 (-1059 *4 *5 *6 *7 *8))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1022)) (-5 *1 (-1094))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1022)) (-5 *1 (-1094))))
+ ((*1 *1 *2 *3 *2) (-12 (-5 *2 (-796)) (-5 *3 (-525)) (-5 *1 (-1106))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-796)) (-5 *3 (-525)) (-5 *1 (-1106))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-721 *4 (-798 *5)))
+ (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-14 *5 (-591 (-1089)))
+ (-5 *2 (-721 *4 (-798 *6))) (-5 *1 (-1195 *4 *5 *6))
+ (-14 *6 (-591 (-1089)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-885 *4)) (-4 *4 (-13 (-786) (-286) (-138) (-951)))
+ (-5 *2 (-885 (-953 (-385 *4)))) (-5 *1 (-1195 *4 *5 *6))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-591 (-1089)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-721 *4 (-798 *6)))
+ (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-14 *6 (-591 (-1089)))
+ (-5 *2 (-885 (-953 (-385 *4)))) (-5 *1 (-1195 *4 *5 *6))
+ (-14 *5 (-591 (-1089)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1085 *4)) (-4 *4 (-13 (-786) (-286) (-138) (-951)))
+ (-5 *2 (-1085 (-953 (-385 *4)))) (-5 *1 (-1195 *4 *5 *6))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-591 (-1089)))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *3 (-1060 *4 (-497 (-798 *6)) (-798 *6) (-721 *4 (-798 *6))))
+ (-4 *4 (-13 (-786) (-286) (-138) (-951))) (-14 *6 (-591 (-1089)))
+ (-5 *2 (-591 (-721 *4 (-798 *6)))) (-5 *1 (-1195 *4 *5 *6))
+ (-14 *5 (-591 (-1089))))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4))
+ (-4 *3 (-345 *4))))
+ ((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-994 *4 *5 *6 *3)) (-4 *4 (-429)) (-4 *5 (-734))
+ (-4 *6 (-788)) (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *3 (-989 *4 *5 *6))
+ (-5 *2 (-591 (-2 (|:| |val| (-108)) (|:| -3374 *1))))
+ (-4 *1 (-994 *4 *5 *6 *3)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-564 *1)) (-4 *1 (-281)))))
+(((*1 *2 *3)
(-12
+ (-5 *3
+ (-2 (|:| |xinit| (-205)) (|:| |xend| (-205))
+ (|:| |fn| (-1171 (-294 (-205)))) (|:| |yinit| (-591 (-205)))
+ (|:| |intvals| (-591 (-205))) (|:| |g| (-294 (-205)))
+ (|:| |abserr| (-205)) (|:| |relerr| (-205))))
+ (-5 *2 (-357)) (-5 *1 (-187)))))
+(((*1 *2 *1) (-12 (-5 *2 (-796)) (-5 *1 (-51)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-357)) (-5 *1 (-727)))))
+(((*1 *2 *3 *3 *3)
+ (|partial| -12
+ (-4 *4 (-13 (-138) (-27) (-966 (-525)) (-966 (-385 (-525)))))
+ (-4 *5 (-1147 *4)) (-5 *2 (-1085 (-385 *5))) (-5 *1 (-567 *4 *5))
+ (-5 *3 (-385 *5))))
+ ((*1 *2 *3 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 (-396 *6) *6)) (-4 *6 (-1147 *5))
+ (-4 *5 (-13 (-138) (-27) (-966 (-525)) (-966 (-385 (-525)))))
+ (-5 *2 (-1085 (-385 *6))) (-5 *1 (-567 *5 *6)) (-5 *3 (-385 *6)))))
+(((*1 *1 *1) (-4 *1 (-91)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-429))))
+ ((*1 *1 *1 *1) (-4 *1 (-429)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-5 *1 (-461 *2)) (-4 *2 (-1147 (-525)))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-525)) (-5 *1 (-637 *2)) (-4 *2 (-1147 *3))))
+ ((*1 *1 *1 *1) (-5 *1 (-712)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-734)) (-4 *4 (-788)) (-4 *5 (-286))
+ (-5 *1 (-849 *3 *4 *5 *2)) (-4 *2 (-882 *5 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-882 *6 *4 *5))
+ (-5 *1 (-849 *4 *5 *6 *2)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-4 *6 (-286))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1085 *6)) (-4 *6 (-882 *5 *3 *4)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *5 (-286)) (-5 *1 (-849 *3 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-1085 *7))) (-4 *4 (-734)) (-4 *5 (-788))
+ (-4 *6 (-286)) (-5 *2 (-1085 *7)) (-5 *1 (-849 *4 *5 *6 *7))
+ (-4 *7 (-882 *6 *4 *5))))
+ ((*1 *1 *1 *1) (-5 *1 (-854)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-429)) (-4 *3 (-517)) (-5 *1 (-901 *3 *2))
+ (-4 *2 (-1147 *3))))
+ ((*1 *2 *2 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-429)))))
+(((*1 *2 *1) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160)) (-4 *2 (-1111))))
+ ((*1 *2 *1) (-12 (-5 *1 (-309 *2)) (-4 *2 (-788))))
+ ((*1 *2 *1) (-12 (-5 *2 (-591 *3)) (-5 *1 (-564 *3)) (-4 *3 (-788)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-335 *4))
+ (-4 *4 (-327)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1171 *4)) (-4 *4 (-1125)) (-4 *1 (-218 *3 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-2 (|:| |val| (-591 *8)) (|:| -3374 *9))))
+ (-5 *4 (-712)) (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-994 *5 *6 *7 *8))
+ (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-1176))
+ (-5 *1 (-992 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-2 (|:| |val| (-591 *8)) (|:| -3374 *9))))
+ (-5 *4 (-712)) (-4 *8 (-989 *5 *6 *7)) (-4 *9 (-1027 *5 *6 *7 *8))
+ (-4 *5 (-429)) (-4 *6 (-734)) (-4 *7 (-788)) (-5 *2 (-1176))
+ (-5 *1 (-1059 *5 *6 *7 *8 *9)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 *6)) (-4 *5 (-1129)) (-4 *6 (-1147 *5))
+ (-5 *2 (-2 (|:| -2008 (-712)) (|:| -3482 *3) (|:| |radicand| *6)))
+ (-5 *1 (-139 *5 *6 *7)) (-5 *4 (-712)) (-4 *7 (-1147 *3)))))
+(((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-712)) (-4 *5 (-341)) (-5 *2 (-385 *6))
+ (-5 *1 (-800 *5 *4 *6)) (-4 *4 (-1162 *5)) (-4 *6 (-1147 *5))))
+ ((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-712)) (-5 *4 (-1163 *5 *6 *7)) (-4 *5 (-341))
+ (-14 *6 (-1089)) (-14 *7 *5) (-5 *2 (-385 (-1144 *6 *5)))
+ (-5 *1 (-801 *5 *6 *7))))
+ ((*1 *2 *3 *3 *4)
+ (|partial| -12 (-5 *3 (-712)) (-5 *4 (-1163 *5 *6 *7)) (-4 *5 (-341))
+ (-14 *6 (-1089)) (-14 *7 *5) (-5 *2 (-385 (-1144 *6 *5)))
+ (-5 *1 (-801 *5 *6 *7)))))
+(((*1 *2 *2 *2) (-12 (-5 *1 (-148 *2)) (-4 *2 (-510)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1085 *3)) (-4 *3 (-975)) (-4 *1 (-1147 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-135)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1171 (-294 (-205)))) (-5 *2 (-1171 (-294 (-357))))
+ (-5 *1 (-284)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1159 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *1) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-5 *2 (-294 *4))
+ (-5 *1 (-170 *4 *3)) (-4 *3 (-13 (-27) (-1111) (-408 (-157 *4))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *3))))))
+(((*1 *1 *1) (-4 *1 (-91)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-525)) (-5 *1 (-847 *3)) (-4 *3 (-286)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1018)) (-5 *1 (-896 *2 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-854)) (-4 *4 (-346)) (-4 *4 (-341)) (-5 *2 (-1085 *1))
+ (-4 *1 (-307 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-5 *2 (-1085 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-348 *3 *2)) (-4 *3 (-160)) (-4 *3 (-341))
+ (-4 *2 (-1147 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *4)) (-4 *4 (-327)) (-5 *2 (-1085 *4))
+ (-5 *1 (-495 *4)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1055 *2 *3)) (-4 *2 (-13 (-1018) (-33)))
+ (-4 *3 (-13 (-1018) (-33))))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-788))
+ (-5 *2 (-2 (|:| -3482 *1) (|:| |gap| (-712)) (|:| -3407 *1)))
+ (-4 *1 (-989 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *2 (-2 (|:| -3482 *1) (|:| |gap| (-712)) (|:| -3407 *1)))
+ (-4 *1 (-989 *3 *4 *5)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-357)) (-5 *1 (-92)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1089)) (-5 *2 (-1176)) (-5 *1 (-1092))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-1093)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-385 (-525))) (-5 *1 (-953 *3))
+ (-4 *3 (-13 (-786) (-341) (-951)))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-4 *2 (-13 (-786) (-341))) (-5 *1 (-985 *2 *3))
+ (-4 *3 (-1147 *2))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-4 *1 (-991 *2 *3)) (-4 *2 (-13 (-786) (-341)))
+ (-4 *3 (-1147 *2)))))
+(((*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3)
+ (-12 (-5 *4 (-591 (-108))) (-5 *5 (-631 (-205)))
+ (-5 *6 (-631 (-525))) (-5 *7 (-205)) (-5 *3 (-525)) (-5 *2 (-964))
+ (-5 *1 (-696)))))
+(((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-1004 *3)) (-4 *3 (-127)))))
+(((*1 *2) (-12 (-5 *2 (-1089)) (-5 *1 (-1092)))))
+(((*1 *2 *1) (-12 (-4 *1 (-154 *2)) (-4 *2 (-160))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-5 *2 (-294 *4))
+ (-5 *1 (-170 *4 *3)) (-4 *3 (-13 (-27) (-1111) (-408 (-157 *4))))))
+ ((*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160))))
+ ((*1 *2 *1) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *1 (-1115 *3 *2)) (-4 *2 (-13 (-27) (-1111) (-408 *3))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *3 (-989 *4 *5 *6)) (-5 *2 (-3 (-108) (-591 *1)))
+ (-4 *1 (-994 *4 *5 *6 *3)))))
+(((*1 *1 *1) (-4 *1 (-91))) ((*1 *1 *1 *1) (-5 *1 (-205)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089)))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-365))))
+ ((*1 *1 *1 *1) (-5 *1 (-357)))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-631 *5))) (-5 *4 (-525)) (-4 *5 (-341))
+ (-4 *5 (-975)) (-5 *2 (-108)) (-5 *1 (-958 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-631 *4))) (-4 *4 (-341)) (-4 *4 (-975))
+ (-5 *2 (-108)) (-5 *1 (-958 *4)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-205)) (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-345 *2)) (-4 *2 (-160))))
+ ((*1 *2) (-12 (-4 *2 (-160)) (-5 *1 (-394 *3 *2)) (-4 *3 (-395 *2))))
+ ((*1 *2) (-12 (-4 *1 (-395 *2)) (-4 *2 (-160)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1162 *4))
+ (-4 *4 (-37 (-385 (-525)))) (-5 *2 (-1 (-1070 *4) (-1070 *4)))
+ (-5 *1 (-1164 *4 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-2 (|:| |val| (-591 *7)) (|:| -3374 *8)))
+ (-4 *7 (-989 *4 *5 *6)) (-4 *8 (-994 *4 *5 *6 *7)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-919 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-2 (|:| |val| (-591 *7)) (|:| -3374 *8)))
+ (-4 *7 (-989 *4 *5 *6)) (-4 *8 (-994 *4 *5 *6 *7)) (-4 *4 (-429))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-1025 *4 *5 *6 *7 *8)))))
+(((*1 *1 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-876 (-205)) (-205))) (-5 *3 (-1013 (-205)))
+ (-5 *1 (-859))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-876 (-205)) (-205))) (-5 *3 (-1013 (-205)))
+ (-5 *1 (-859))))
+ ((*1 *1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-876 (-205)) (-205))) (-5 *3 (-1013 (-205)))
+ (-5 *1 (-860))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-876 (-205)) (-205))) (-5 *3 (-1013 (-205)))
+ (-5 *1 (-860)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-525)) (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-357) (-357))) (-5 *4 (-357))
(-5 *2
- (-589
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3)
- (|:| |xpnt| (-523)))))
- (-5 *1 (-394 *3)) (-4 *3 (-515))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *4 (-710)) (-4 *3 (-325)) (-4 *5 (-1145 *3))
- (-5 *2 (-589 (-1083 *3))) (-5 *1 (-469 *3 *5 *6))
- (-4 *6 (-1145 *5)))))
+ (-2 (|:| -3024 *4) (|:| -1483 *4) (|:| |totalpts| (-525))
+ (|:| |success| (-108))))
+ (-5 *1 (-730)) (-5 *5 (-525)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1072)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089)))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-365))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-802 *3)) (-5 *2 (-525))))
+ ((*1 *1 *1) (-4 *1 (-932)))
+ ((*1 *1 *2) (-12 (-5 *2 (-525)) (-4 *1 (-942))))
+ ((*1 *1 *2) (-12 (-5 *2 (-385 (-525))) (-4 *1 (-942))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-942)) (-5 *2 (-712))))
+ ((*1 *1 *1) (-4 *1 (-942))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1089))
+ (-4 *5 (-13 (-286) (-788) (-138) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-542 *3)) (-5 *1 (-404 *5 *3))
+ (-4 *3 (-13 (-1111) (-29 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1089)) (-4 *5 (-13 (-517) (-966 (-525)) (-138)))
+ (-5 *2 (-542 (-385 (-885 *5)))) (-5 *1 (-531 *5))
+ (-5 *3 (-385 (-885 *5))))))
+(((*1 *2) (-12 (-5 *2 (-1176)) (-5 *1 (-1127)))))
+(((*1 *1 *1) (-4 *1 (-91)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089)))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-365))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *4)) (-4 *4 (-327)) (-5 *2 (-1085 *4))
+ (-5 *1 (-495 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-591 *1)) (-4 *1 (-429))))
+ ((*1 *1 *1 *1) (-4 *1 (-429))))
+(((*1 *2 *2) (-12 (-5 *2 (-854)) (-5 *1 (-335 *3)) (-4 *3 (-327)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1020 (-1020 *3))) (-5 *1 (-837 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-236)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-152 *3)) (-4 *3 (-158)) (-4 *3 (-508)) (-5 *2 (-108))))
+ (-12 (-4 *1 (-154 *3)) (-4 *3 (-160)) (-4 *3 (-510)) (-5 *2 (-108))))
((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-394 *3)) (-4 *3 (-508)) (-4 *3 (-515))))
- ((*1 *2 *1) (-12 (-4 *1 (-508)) (-5 *2 (-108))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-396 *3)) (-4 *3 (-510)) (-4 *3 (-517))))
+ ((*1 *2 *1) (-12 (-4 *1 (-510)) (-5 *2 (-108))))
((*1 *2 *1)
- (-12 (-4 *1 (-736 *3)) (-4 *3 (-158)) (-4 *3 (-508)) (-5 *2 (-108))))
+ (-12 (-4 *1 (-738 *3)) (-4 *3 (-160)) (-4 *3 (-510)) (-5 *2 (-108))))
((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-772 *3)) (-4 *3 (-508)) (-4 *3 (-1016))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-774 *3)) (-4 *3 (-510)) (-4 *3 (-1018))))
((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-779 *3)) (-4 *3 (-508)) (-4 *3 (-1016))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-781 *3)) (-4 *3 (-510)) (-4 *3 (-1018))))
((*1 *2 *1)
- (-12 (-4 *1 (-925 *3)) (-4 *3 (-158)) (-4 *3 (-508)) (-5 *2 (-108))))
+ (-12 (-4 *1 (-927 *3)) (-4 *3 (-160)) (-4 *3 (-510)) (-5 *2 (-108))))
((*1 *2 *3)
- (-12 (-5 *2 (-108)) (-5 *1 (-936 *3)) (-4 *3 (-964 (-383 (-523)))))))
-(((*1 *2 *3 *3 *3 *4 *5)
- (-12 (-5 *5 (-589 (-589 (-203)))) (-5 *4 (-203))
- (-5 *2 (-589 (-874 *4))) (-5 *1 (-1120)) (-5 *3 (-874 *4)))))
-(((*1 *1 *1) (-12 (-4 *1 (-152 *2)) (-4 *2 (-158))))
- ((*1 *1 *1 *1) (-4 *1 (-448)))
- ((*1 *1 *1) (-12 (-4 *1 (-736 *2)) (-4 *2 (-158))))
- ((*1 *2 *2) (-12 (-5 *2 (-589 (-523))) (-5 *1 (-814))))
- ((*1 *1 *1) (-5 *1 (-900)))
- ((*1 *1 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-158)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-874 *3)) (-4 *3 (-13 (-339) (-1109) (-930)))
- (-5 *1 (-161 *3)))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-938 *3)) (-4 *3 (-966 (-385 (-525)))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4)))
+ (-5 *2 (-2 (|:| |num| (-1171 *4)) (|:| |den| *4))))))
+(((*1 *1 *1) (-5 *1 (-796))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108))
+ (-5 *1 (-919 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108))
+ (-5 *1 (-1025 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 (-796 *5))) (-14 *5 (-589 (-1087))) (-4 *6 (-427))
- (-5 *2 (-589 (-589 (-225 *5 *6)))) (-5 *1 (-446 *5 *6 *7))
- (-5 *3 (-589 (-225 *5 *6))) (-4 *7 (-427)))))
+ (-12 (-5 *4 (-591 (-47))) (-5 *2 (-396 *3)) (-5 *1 (-38 *3))
+ (-4 *3 (-1147 (-47)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-396 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1147 (-47)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 (-47))) (-4 *5 (-788)) (-4 *6 (-734))
+ (-5 *2 (-396 *3)) (-5 *1 (-41 *5 *6 *3)) (-4 *3 (-882 (-47) *6 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 (-47))) (-4 *5 (-788)) (-4 *6 (-734))
+ (-4 *7 (-882 (-47) *6 *5)) (-5 *2 (-396 (-1085 *7)))
+ (-5 *1 (-41 *5 *6 *7)) (-5 *3 (-1085 *7))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-286)) (-5 *2 (-396 *3)) (-5 *1 (-155 *4 *3))
+ (-4 *3 (-1147 (-157 *4)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-108)) (-4 *4 (-13 (-341) (-786))) (-5 *2 (-396 *3))
+ (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *4 (-13 (-341) (-786))) (-5 *2 (-396 *3))
+ (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-341) (-786))) (-5 *2 (-396 *3))
+ (-5 *1 (-167 *4 *3)) (-4 *3 (-1147 (-157 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-327)) (-5 *2 (-396 *3)) (-5 *1 (-197 *4 *3))
+ (-4 *3 (-1147 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-396 *3)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-712)) (-5 *2 (-396 *3)) (-5 *1 (-419 *3))
+ (-4 *3 (-1147 (-525)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-591 (-712))) (-5 *2 (-396 *3)) (-5 *1 (-419 *3))
+ (-4 *3 (-1147 (-525)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-591 (-712))) (-5 *5 (-712)) (-5 *2 (-396 *3))
+ (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-712)) (-5 *2 (-396 *3)) (-5 *1 (-419 *3))
+ (-4 *3 (-1147 (-525)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-396 (-157 (-525)))) (-5 *1 (-423))
+ (-5 *3 (-157 (-525)))))
+ ((*1 *2 *3)
+ (-12
+ (-4 *4
+ (-13 (-788)
+ (-10 -8 (-15 -1408 ((-1089) $))
+ (-15 -2037 ((-3 $ "failed") (-1089))))))
+ (-4 *5 (-734)) (-4 *7 (-517)) (-5 *2 (-396 *3))
+ (-5 *1 (-433 *4 *5 *6 *7 *3)) (-4 *6 (-517))
+ (-4 *3 (-882 *7 *5 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-286)) (-5 *2 (-396 (-1085 *4))) (-5 *1 (-435 *4))
+ (-5 *3 (-1085 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-396 *6) *6)) (-4 *6 (-1147 *5)) (-4 *5 (-341))
+ (-4 *7 (-13 (-341) (-138) (-666 *5 *6))) (-5 *2 (-396 *3))
+ (-5 *1 (-467 *5 *6 *7 *3)) (-4 *3 (-1147 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-396 (-1085 *7)) (-1085 *7)))
+ (-4 *7 (-13 (-286) (-138))) (-4 *5 (-788)) (-4 *6 (-734))
+ (-5 *2 (-396 *3)) (-5 *1 (-505 *5 *6 *7 *3))
+ (-4 *3 (-882 *7 *6 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-396 (-1085 *7)) (-1085 *7)))
+ (-4 *7 (-13 (-286) (-138))) (-4 *5 (-788)) (-4 *6 (-734))
+ (-4 *8 (-882 *7 *6 *5)) (-5 *2 (-396 (-1085 *8)))
+ (-5 *1 (-505 *5 *6 *7 *8)) (-5 *3 (-1085 *8))))
+ ((*1 *2 *3) (-12 (-5 *2 (-396 *3)) (-5 *1 (-519 *3)) (-4 *3 (-510))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-591 *5) *6))
+ (-4 *5 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-4 *6 (-1147 *5)) (-5 *2 (-591 (-598 (-385 *6))))
+ (-5 *1 (-602 *5 *6)) (-5 *3 (-598 (-385 *6)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-27))
+ (-4 *4 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))
+ (-4 *5 (-1147 *4)) (-5 *2 (-591 (-598 (-385 *5))))
+ (-5 *1 (-602 *4 *5)) (-5 *3 (-598 (-385 *5)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-760 *4)) (-4 *4 (-788)) (-5 *2 (-591 (-616 *4)))
+ (-5 *1 (-616 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-525)) (-5 *2 (-591 *3)) (-5 *1 (-637 *3))
+ (-4 *3 (-1147 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-788)) (-4 *5 (-734)) (-4 *6 (-327)) (-5 *2 (-396 *3))
+ (-5 *1 (-639 *4 *5 *6 *3)) (-4 *3 (-882 *6 *5 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-788)) (-4 *5 (-734)) (-4 *6 (-327))
+ (-4 *7 (-882 *6 *5 *4)) (-5 *2 (-396 (-1085 *7)))
+ (-5 *1 (-639 *4 *5 *6 *7)) (-5 *3 (-1085 *7))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-734))
+ (-4 *5
+ (-13 (-788)
+ (-10 -8 (-15 -1408 ((-1089) $))
+ (-15 -2037 ((-3 $ "failed") (-1089))))))
+ (-4 *6 (-286)) (-5 *2 (-396 *3)) (-5 *1 (-672 *4 *5 *6 *3))
+ (-4 *3 (-882 (-885 *6) *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-734))
+ (-4 *5 (-13 (-788) (-10 -8 (-15 -1408 ((-1089) $))))) (-4 *6 (-517))
+ (-5 *2 (-396 *3)) (-5 *1 (-674 *4 *5 *6 *3))
+ (-4 *3 (-882 (-385 (-885 *6)) *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-13 (-286) (-138)))
+ (-5 *2 (-396 *3)) (-5 *1 (-675 *4 *5 *6 *3))
+ (-4 *3 (-882 (-385 *6) *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-788)) (-4 *5 (-734)) (-4 *6 (-13 (-286) (-138)))
+ (-5 *2 (-396 *3)) (-5 *1 (-683 *4 *5 *6 *3))
+ (-4 *3 (-882 *6 *5 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-788)) (-4 *5 (-734)) (-4 *6 (-13 (-286) (-138)))
+ (-4 *7 (-882 *6 *5 *4)) (-5 *2 (-396 (-1085 *7)))
+ (-5 *1 (-683 *4 *5 *6 *7)) (-5 *3 (-1085 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-396 *3)) (-5 *1 (-937 *3))
+ (-4 *3 (-1147 (-385 (-525))))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-396 *3)) (-5 *1 (-969 *3))
+ (-4 *3 (-1147 (-385 (-885 (-525)))))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1147 (-385 (-525))))
+ (-4 *5 (-13 (-341) (-138) (-666 (-385 (-525)) *4)))
+ (-5 *2 (-396 *3)) (-5 *1 (-1000 *4 *5 *3)) (-4 *3 (-1147 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1147 (-385 (-885 (-525)))))
+ (-4 *5 (-13 (-341) (-138) (-666 (-385 (-885 (-525))) *4)))
+ (-5 *2 (-396 *3)) (-5 *1 (-1002 *4 *5 *3)) (-4 *3 (-1147 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-734)) (-4 *5 (-788)) (-4 *6 (-429))
+ (-4 *7 (-882 *6 *4 *5)) (-5 *2 (-396 (-1085 (-385 *7))))
+ (-5 *1 (-1084 *4 *5 *6 *7)) (-5 *3 (-1085 (-385 *7)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-396 *1)) (-4 *1 (-1129))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-396 *3)) (-5 *1 (-1136 *3)) (-4 *3 (-1147 (-525))))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *5 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-1072)) (-5 *5 (-631 (-205)))
+ (-5 *2 (-964)) (-5 *1 (-689)))))
+(((*1 *1 *1) (-4 *1 (-91)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-317 *2 *3 *4)) (-14 *2 (-591 (-1089)))
+ (-14 *3 (-591 (-1089))) (-4 *4 (-365))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3)))))
(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-589 (-383 *7)))
- (-4 *7 (-1145 *6)) (-5 *3 (-383 *7)) (-4 *6 (-339))
+ (-12 (-5 *3 (-885 (-385 (-525)))) (-5 *4 (-1089))
+ (-5 *5 (-1013 (-781 (-205)))) (-5 *2 (-591 (-205))) (-5 *1 (-279)))))
+(((*1 *2 *2)
+ (-12 (-4 *2 (-13 (-341) (-786))) (-5 *1 (-167 *2 *3))
+ (-4 *3 (-1147 (-157 *2))))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-1070 *2)) (-4 *2 (-286)) (-5 *1 (-161 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160))))
+ ((*1 *2 *1) (-12 (-4 *1 (-927 *2)) (-4 *2 (-160)))))
+(((*1 *1) (-5 *1 (-520))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-46 *3 *4)) (-4 *3 (-975))
+ (-4 *4 (-733))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-975)) (-5 *1 (-49 *3 *4))
+ (-14 *4 (-591 (-1089)))))
+ ((*1 *1 *2 *1 *1 *3)
+ (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1125))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-57 *5)) (-4 *5 (-1125))
+ (-4 *6 (-1125)) (-5 *2 (-57 *6)) (-5 *1 (-56 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-130 *5 *6 *7)) (-14 *5 (-525))
+ (-14 *6 (-712)) (-4 *7 (-160)) (-4 *8 (-160))
+ (-5 *2 (-130 *5 *6 *8)) (-5 *1 (-129 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-157 *5)) (-4 *5 (-160))
+ (-4 *6 (-160)) (-5 *2 (-157 *6)) (-5 *1 (-156 *5 *6))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-294 *3) (-294 *3))) (-4 *3 (-13 (-975) (-788)))
+ (-5 *1 (-203 *3 *4)) (-14 *4 (-591 (-1089)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-220 *5 *6)) (-14 *5 (-712))
+ (-4 *6 (-1125)) (-4 *7 (-1125)) (-5 *2 (-220 *5 *7))
+ (-5 *1 (-219 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-273 *5)) (-4 *5 (-1125))
+ (-4 *6 (-1125)) (-5 *2 (-273 *6)) (-5 *1 (-272 *5 *6))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1125)) (-5 *1 (-273 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1072)) (-5 *5 (-564 *6))
+ (-4 *6 (-281)) (-4 *2 (-1125)) (-5 *1 (-276 *6 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-564 *5)) (-4 *5 (-281))
+ (-4 *2 (-281)) (-5 *1 (-277 *5 *2))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-564 *1)) (-4 *1 (-281))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-631 *5)) (-4 *5 (-975))
+ (-4 *6 (-975)) (-5 *2 (-631 *6)) (-5 *1 (-283 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-294 *5)) (-4 *5 (-788))
+ (-4 *6 (-788)) (-5 *2 (-294 *6)) (-5 *1 (-292 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-314 *5 *6 *7 *8)) (-4 *5 (-341))
+ (-4 *6 (-1147 *5)) (-4 *7 (-1147 (-385 *6))) (-4 *8 (-320 *5 *6 *7))
+ (-4 *9 (-341)) (-4 *10 (-1147 *9)) (-4 *11 (-1147 (-385 *10)))
+ (-5 *2 (-314 *9 *10 *11 *12))
+ (-5 *1 (-311 *5 *6 *7 *8 *9 *10 *11 *12))
+ (-4 *12 (-320 *9 *10 *11))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-316 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1129)) (-4 *8 (-1129))
+ (-4 *6 (-1147 *5)) (-4 *7 (-1147 (-385 *6))) (-4 *9 (-1147 *8))
+ (-4 *2 (-320 *8 *9 *10)) (-5 *1 (-318 *5 *6 *7 *4 *8 *9 *10 *2))
+ (-4 *4 (-320 *5 *6 *7)) (-4 *10 (-1147 (-385 *9)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1125)) (-4 *6 (-1125))
+ (-4 *2 (-351 *6)) (-5 *1 (-349 *5 *4 *6 *2)) (-4 *4 (-351 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-360 *3 *4)) (-4 *3 (-975))
+ (-4 *4 (-1018))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-396 *5)) (-4 *5 (-517))
+ (-4 *6 (-517)) (-5 *2 (-396 *6)) (-5 *1 (-383 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-385 *5)) (-4 *5 (-517))
+ (-4 *6 (-517)) (-5 *2 (-385 *6)) (-5 *1 (-384 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-391 *5 *6 *7 *8)) (-4 *5 (-286))
+ (-4 *6 (-923 *5)) (-4 *7 (-1147 *6))
+ (-4 *8 (-13 (-387 *6 *7) (-966 *6))) (-4 *9 (-286))
+ (-4 *10 (-923 *9)) (-4 *11 (-1147 *10))
+ (-5 *2 (-391 *9 *10 *11 *12))
+ (-5 *1 (-390 *5 *6 *7 *8 *9 *10 *11 *12))
+ (-4 *12 (-13 (-387 *10 *11) (-966 *10)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-160)) (-4 *6 (-160))
+ (-4 *2 (-395 *6)) (-5 *1 (-393 *4 *5 *2 *6)) (-4 *4 (-395 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-517)) (-5 *1 (-396 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-13 (-975) (-788)))
+ (-4 *6 (-13 (-975) (-788))) (-4 *2 (-408 *6))
+ (-5 *1 (-399 *5 *4 *6 *2)) (-4 *4 (-408 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1018)) (-4 *6 (-1018))
+ (-4 *2 (-403 *6)) (-5 *1 (-401 *5 *4 *6 *2)) (-4 *4 (-403 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-464 *3)) (-4 *3 (-1125))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-481 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-788))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-542 *5)) (-4 *5 (-341))
+ (-4 *6 (-341)) (-5 *2 (-542 *6)) (-5 *1 (-541 *5 *6))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 *6 *5))
+ (-5 *4 (-3 (-2 (|:| -3060 *5) (|:| |coeff| *5)) "failed"))
+ (-4 *5 (-341)) (-4 *6 (-341))
+ (-5 *2 (-2 (|:| -3060 *6) (|:| |coeff| *6)))
+ (-5 *1 (-541 *5 *6))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed"))
+ (-4 *5 (-341)) (-4 *2 (-341)) (-5 *1 (-541 *5 *2))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 *6 *5))
+ (-5 *4
+ (-3
+ (-2 (|:| |mainpart| *5)
+ (|:| |limitedlogs|
+ (-591 (-2 (|:| |coeff| *5) (|:| |logand| *5)))))
+ "failed"))
+ (-4 *5 (-341)) (-4 *6 (-341))
(-5 *2
- (-2 (|:| |mainpart| *3)
+ (-2 (|:| |mainpart| *6)
(|:| |limitedlogs|
- (-589 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-533 *6 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-710)) (-5 *2 (-589 (-1087))) (-5 *1 (-190))
- (-5 *3 (-1087))))
+ (-591 (-2 (|:| |coeff| *6) (|:| |logand| *6))))))
+ (-5 *1 (-541 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-292 (-203))) (-5 *4 (-710)) (-5 *2 (-589 (-1087)))
- (-5 *1 (-244))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-350 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158))
- (-5 *2 (-589 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-589 *3)) (-5 *1 (-573 *3 *4 *5)) (-4 *3 (-786))
- (-4 *4 (-13 (-158) (-657 (-383 (-523))))) (-14 *5 (-852))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-614 *3)) (-4 *3 (-786))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-618 *3)) (-4 *3 (-786))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-758 *3)) (-4 *3 (-786))))
- ((*1 *2 *1) (-12 (-5 *2 (-589 *3)) (-5 *1 (-824 *3)) (-4 *3 (-786))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1184 *3 *4)) (-4 *3 (-786)) (-4 *4 (-973))
- (-5 *2 (-589 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1034)) (-5 *1 (-105))))
- ((*1 *2 *1) (|partial| -12 (-5 *1 (-341 *2)) (-4 *2 (-1016))))
- ((*1 *2 *1) (|partial| -12 (-5 *2 (-1070)) (-5 *1 (-1105)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1068 *3)) (-4 *3 (-339)) (-4 *3 (-973))
- (-5 *1 (-1072 *3)))))
-(((*1 *2 *3 *4 *3 *4 *3)
- (-12 (-5 *3 (-523)) (-5 *4 (-629 (-203))) (-5 *2 (-962))
- (-5 *1 (-696)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4248)) (-4 *1 (-140 *3))
- (-4 *3 (-1123))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-555 *5)) (-4 *5 (-1125))
+ (-4 *6 (-1125)) (-5 *2 (-555 *6)) (-5 *1 (-552 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-555 *6)) (-5 *5 (-555 *7))
+ (-4 *6 (-1125)) (-4 *7 (-1125)) (-4 *8 (-1125)) (-5 *2 (-555 *8))
+ (-5 *1 (-553 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1070 *6)) (-5 *5 (-555 *7))
+ (-4 *6 (-1125)) (-4 *7 (-1125)) (-4 *8 (-1125)) (-5 *2 (-1070 *8))
+ (-5 *1 (-553 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-555 *6)) (-5 *5 (-1070 *7))
+ (-4 *6 (-1125)) (-4 *7 (-1125)) (-4 *8 (-1125)) (-5 *2 (-1070 *8))
+ (-5 *1 (-553 *6 *7 *8))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1123)) (-5 *1 (-553 *3))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1125)) (-5 *1 (-555 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-591 *5)) (-4 *5 (-1125))
+ (-4 *6 (-1125)) (-5 *2 (-591 *6)) (-5 *1 (-589 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-591 *6)) (-5 *5 (-591 *7))
+ (-4 *6 (-1125)) (-4 *7 (-1125)) (-4 *8 (-1125)) (-5 *2 (-591 *8))
+ (-5 *1 (-590 *6 *7 *8))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-596 *3)) (-4 *3 (-1125))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-975)) (-4 *8 (-975))
+ (-4 *6 (-351 *5)) (-4 *7 (-351 *5)) (-4 *2 (-629 *8 *9 *10))
+ (-5 *1 (-627 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-629 *5 *6 *7))
+ (-4 *9 (-351 *8)) (-4 *10 (-351 *8))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-975))
+ (-4 *8 (-975)) (-4 *6 (-351 *5)) (-4 *7 (-351 *5))
+ (-4 *2 (-629 *8 *9 *10)) (-5 *1 (-627 *5 *6 *7 *4 *8 *9 *10 *2))
+ (-4 *4 (-629 *5 *6 *7)) (-4 *9 (-351 *8)) (-4 *10 (-351 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-517)) (-4 *7 (-517))
+ (-4 *6 (-1147 *5)) (-4 *2 (-1147 (-385 *8)))
+ (-5 *1 (-651 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1147 (-385 *6)))
+ (-4 *8 (-1147 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-975)) (-4 *9 (-975)) (-4 *5 (-788))
+ (-4 *6 (-734)) (-4 *2 (-882 *9 *7 *5))
+ (-5 *1 (-670 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-734))
+ (-4 *4 (-882 *8 *6 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-788)) (-4 *6 (-788)) (-4 *7 (-734))
+ (-4 *9 (-975)) (-4 *2 (-882 *9 *8 *6))
+ (-5 *1 (-671 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-734))
+ (-4 *4 (-882 *9 *7 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-677 *5 *7)) (-4 *5 (-975))
+ (-4 *6 (-975)) (-4 *7 (-668)) (-5 *2 (-677 *6 *7))
+ (-5 *1 (-676 *5 *6 *7))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-616 *3)) (-4 *3 (-1123))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-4 *1 (-1117 *4 *5 *3 *2)) (-4 *4 (-515))
- (-4 *5 (-732)) (-4 *3 (-786)) (-4 *2 (-987 *4 *5 *3))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-710)) (-5 *1 (-1121 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-589 (-225 *4 *5))) (-5 *2 (-225 *4 *5))
- (-14 *4 (-589 (-1087))) (-4 *5 (-427)) (-5 *1 (-577 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-710)) (-5 *1 (-42 *4 *3))
- (-4 *3 (-393 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-589 (-523))) (-5 *2 (-710)) (-5 *1 (-544)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4249)) (-4 *1 (-222 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1087)) (-5 *2 (-413)) (-5 *1 (-1091)))))
-(((*1 *1 *2) (-12 (-5 *2 (-383 (-523))) (-5 *1 (-103))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-589 (-499))) (-5 *1 (-499)))))
-(((*1 *2 *1) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-1083 *3)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1123)) (-5 *1 (-553 *3))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-975)) (-5 *1 (-677 *3 *4))
+ (-4 *4 (-668))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-723 *5)) (-4 *5 (-975))
+ (-4 *6 (-975)) (-5 *2 (-723 *6)) (-5 *1 (-722 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-160)) (-4 *6 (-160))
+ (-4 *2 (-738 *6)) (-5 *1 (-739 *4 *5 *2 *6)) (-4 *4 (-738 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-774 *5)) (-4 *5 (-1018))
+ (-4 *6 (-1018)) (-5 *2 (-774 *6)) (-5 *1 (-773 *5 *6))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-774 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-774 *5))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *1 (-773 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-781 *5)) (-4 *5 (-1018))
+ (-4 *6 (-1018)) (-5 *2 (-781 *6)) (-5 *1 (-780 *5 *6))))
+ ((*1 *2 *3 *4 *2 *2)
+ (-12 (-5 *2 (-781 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-781 *5))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *1 (-780 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-810 *5)) (-4 *5 (-1125))
+ (-4 *6 (-1125)) (-5 *2 (-810 *6)) (-5 *1 (-809 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-812 *5)) (-4 *5 (-1125))
+ (-4 *6 (-1125)) (-5 *2 (-812 *6)) (-5 *1 (-811 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-815 *5)) (-4 *5 (-1125))
+ (-4 *6 (-1125)) (-5 *2 (-815 *6)) (-5 *1 (-814 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-822 *5 *6)) (-4 *5 (-1018))
+ (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-822 *5 *7))
+ (-5 *1 (-821 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-825 *5)) (-4 *5 (-1018))
+ (-4 *6 (-1018)) (-5 *2 (-825 *6)) (-5 *1 (-824 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-885 *5)) (-4 *5 (-975))
+ (-4 *6 (-975)) (-5 *2 (-885 *6)) (-5 *1 (-879 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-788))
+ (-4 *8 (-975)) (-4 *6 (-734))
+ (-4 *2
+ (-13 (-1018)
+ (-10 -8 (-15 -4156 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-712))))))
+ (-5 *1 (-884 *6 *7 *8 *5 *2)) (-4 *5 (-882 *8 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-890 *5)) (-4 *5 (-1125))
+ (-4 *6 (-1125)) (-5 *2 (-890 *6)) (-5 *1 (-889 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-876 *5)) (-4 *5 (-975))
+ (-4 *6 (-975)) (-5 *2 (-876 *6)) (-5 *1 (-912 *5 *6))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 *2 (-885 *4))) (-4 *4 (-975))
+ (-4 *2 (-882 (-885 *4) *5 *6)) (-4 *5 (-734))
+ (-4 *6
+ (-13 (-788)
+ (-10 -8 (-15 -1408 ((-1089) $))
+ (-15 -2037 ((-3 $ "failed") (-1089))))))
+ (-5 *1 (-915 *4 *5 *6 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-517)) (-4 *6 (-517))
+ (-4 *2 (-923 *6)) (-5 *1 (-921 *5 *6 *4 *2)) (-4 *4 (-923 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-160)) (-4 *6 (-160))
+ (-4 *2 (-927 *6)) (-5 *1 (-928 *4 *5 *2 *6)) (-4 *4 (-927 *5))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-978 *3 *4 *5 *6 *7))
+ (-4 *5 (-975)) (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1123)) (-5 *1 (-1068 *3)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-339)) (-5 *1 (-706 *2 *3)) (-4 *2 (-648 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-788 *2)) (-4 *2 (-973)) (-4 *2 (-339)))))
-(((*1 *1 *1) (|partial| -4 *1 (-1063))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-710)) (-4 *1 (-1145 *4)) (-4 *4 (-973))
- (-5 *2 (-1169 *4)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1182 *3 *4)) (-4 *3 (-786)) (-4 *4 (-158))
- (-5 *1 (-607 *3 *4))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-607 *3 *4)) (-5 *1 (-1187 *3 *4))
- (-4 *3 (-786)) (-4 *4 (-158)))))
+ (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975))
+ (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-975)) (-4 *10 (-975))
+ (-14 *5 (-712)) (-14 *6 (-712)) (-4 *8 (-218 *6 *7))
+ (-4 *9 (-218 *5 *7)) (-4 *2 (-978 *5 *6 *10 *11 *12))
+ (-5 *1 (-980 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2))
+ (-4 *4 (-978 *5 *6 *7 *8 *9)) (-4 *11 (-218 *6 *10))
+ (-4 *12 (-218 *5 *10))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1013 *5)) (-4 *5 (-1125))
+ (-4 *6 (-1125)) (-5 *2 (-1013 *6)) (-5 *1 (-1009 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1013 *5)) (-4 *5 (-786))
+ (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-591 *6))
+ (-5 *1 (-1009 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1011 *5)) (-4 *5 (-1125))
+ (-4 *6 (-1125)) (-5 *2 (-1011 *6)) (-5 *1 (-1010 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1014 *4 *2)) (-4 *4 (-786))
+ (-4 *2 (-1063 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1070 *5)) (-4 *5 (-1125))
+ (-4 *6 (-1125)) (-5 *2 (-1070 *6)) (-5 *1 (-1068 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1070 *6)) (-5 *5 (-1070 *7))
+ (-4 *6 (-1125)) (-4 *7 (-1125)) (-4 *8 (-1125)) (-5 *2 (-1070 *8))
+ (-5 *1 (-1069 *6 *7 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1085 *5)) (-4 *5 (-975))
+ (-4 *6 (-975)) (-5 *2 (-1085 *6)) (-5 *1 (-1083 *5 *6))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1102 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-1018))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1135 *5 *7 *9)) (-4 *5 (-975))
+ (-4 *6 (-975)) (-14 *7 (-1089)) (-14 *9 *5) (-14 *10 *6)
+ (-5 *2 (-1135 *6 *8 *10)) (-5 *1 (-1130 *5 *6 *7 *8 *9 *10))
+ (-14 *8 (-1089))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1138 *5)) (-4 *5 (-1125))
+ (-4 *6 (-1125)) (-5 *2 (-1138 *6)) (-5 *1 (-1137 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1138 *5)) (-4 *5 (-786))
+ (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-1070 *6))
+ (-5 *1 (-1137 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1144 *5 *6)) (-14 *5 (-1089))
+ (-4 *6 (-975)) (-4 *8 (-975)) (-5 *2 (-1144 *7 *8))
+ (-5 *1 (-1139 *5 *6 *7 *8)) (-14 *7 (-1089))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-975)) (-4 *6 (-975))
+ (-4 *2 (-1147 *6)) (-5 *1 (-1145 *5 *4 *6 *2)) (-4 *4 (-1147 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1156 *5 *7 *9)) (-4 *5 (-975))
+ (-4 *6 (-975)) (-14 *7 (-1089)) (-14 *9 *5) (-14 *10 *6)
+ (-5 *2 (-1156 *6 *8 *10)) (-5 *1 (-1151 *5 *6 *7 *8 *9 *10))
+ (-14 *8 (-1089))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-975)) (-4 *6 (-975))
+ (-4 *2 (-1162 *6)) (-5 *1 (-1160 *5 *6 *4 *2)) (-4 *4 (-1162 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1171 *5)) (-4 *5 (-1125))
+ (-4 *6 (-1125)) (-5 *2 (-1171 *6)) (-5 *1 (-1170 *5 *6))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1171 *5))
+ (-4 *5 (-1125)) (-4 *6 (-1125)) (-5 *2 (-1171 *6))
+ (-5 *1 (-1170 *5 *6))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1186 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-975))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-975)) (-5 *1 (-1192 *3 *4))
+ (-4 *4 (-784)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-591 (-825 *3))) (-5 *1 (-825 *3))
+ (-4 *3 (-1018)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-108))
+ (-4 *5 (-13 (-786) (-286) (-138) (-951)))
+ (-5 *2 (-591 (-972 *5 *6))) (-5 *1 (-1195 *5 *6 *7))
+ (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-885 *5))) (-5 *4 (-108))
+ (-4 *5 (-13 (-786) (-286) (-138) (-951)))
+ (-5 *2 (-591 (-972 *5 *6))) (-5 *1 (-1195 *5 *6 *7))
+ (-14 *6 (-591 (-1089))) (-14 *7 (-591 (-1089)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-885 *4)))
+ (-4 *4 (-13 (-786) (-286) (-138) (-951)))
+ (-5 *2 (-591 (-972 *4 *5))) (-5 *1 (-1195 *4 *5 *6))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-591 (-1089))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
+(((*1 *2 *1 *1 *3 *4)
+ (-12 (-5 *3 (-1 (-108) *5 *5)) (-5 *4 (-1 (-108) *6 *6))
+ (-4 *5 (-13 (-1018) (-33))) (-4 *6 (-13 (-1018) (-33)))
+ (-5 *2 (-108)) (-5 *1 (-1054 *5 *6)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-712)) (-4 *1 (-601 *3)) (-4 *3 (-975)) (-4 *3 (-341))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-712)) (-5 *4 (-1 *5 *5)) (-4 *5 (-341))
+ (-5 *1 (-604 *5 *2)) (-4 *2 (-601 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-854)) (-5 *2 (-1085 *4)) (-5 *1 (-335 *4))
+ (-4 *4 (-327)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3))))
+ ((*1 *1 *1) (-4 *1 (-1114))))
+(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-860)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-385 (-525))) (-5 *1 (-550 *3)) (-4 *3 (-37 *2))
+ (-4 *3 (-975)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-205)) (-5 *1 (-206))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-157 (-205))) (-5 *1 (-206))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-409 *3 *2))
+ (-4 *2 (-408 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1053))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-2 (|:| -2058 *4) (|:| -1255 (-523)))))
- (-4 *4 (-1016)) (-5 *2 (-1 *4)) (-5 *1 (-945 *4)))))
+ (-12 (-5 *3 (-2 (|:| -3388 (-385 (-525))) (|:| -3400 (-385 (-525)))))
+ (-5 *2 (-385 (-525))) (-5 *1 (-949 *4)) (-4 *4 (-1147 (-525))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-2 (|:| -3573 *4) (|:| -1487 (-523)))))
- (-4 *4 (-1145 (-523))) (-5 *2 (-677 (-710))) (-5 *1 (-417 *4))))
+ (-12 (-4 *4 (-842)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-882 *4 *5 *6)) (-5 *2 (-396 (-1085 *7)))
+ (-5 *1 (-839 *4 *5 *6 *7)) (-5 *3 (-1085 *7))))
((*1 *2 *3)
- (-12 (-5 *3 (-394 *5)) (-4 *5 (-1145 *4)) (-4 *4 (-973))
- (-5 *2 (-677 (-710))) (-5 *1 (-419 *4 *5)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1123)) (-5 *1 (-553 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1123)) (-5 *1 (-1068 *3)))))
+ (-12 (-4 *4 (-842)) (-4 *5 (-1147 *4)) (-5 *2 (-396 (-1085 *5)))
+ (-5 *1 (-840 *4 *5)) (-5 *3 (-1085 *5)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-712)) (-4 *2 (-1018))
+ (-5 *1 (-621 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-825 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1037 *3)) (-4 *3 (-1125)) (-5 *2 (-712)))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-689)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-3 (|:| |fst| (-412)) (|:| -4170 "void")))
+ (-5 *1 (-415)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-341)) (-5 *1 (-264 *3 *2)) (-4 *2 (-1162 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-27))
- (-4 *4 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-4 *5 (-1145 *4)) (-5 *2 (-589 (-596 (-383 *5))))
- (-5 *1 (-600 *4 *5)) (-5 *3 (-596 (-383 *5))))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-339)) (-4 *3 (-732)) (-4 *4 (-786))
- (-5 *1 (-475 *2 *3 *4 *5)) (-4 *5 (-880 *2 *3 *4)))))
+ (|partial| -12 (-5 *3 (-110)) (-4 *2 (-1018)) (-4 *2 (-788))
+ (-5 *1 (-109 *2)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109))))))
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3))))
+ ((*1 *1 *1) (-4 *1 (-1114))))
(((*1 *2 *3)
- (-12 (-4 *4 (-515))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -4053 *4)))
- (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *2)
- (-12 (-4 *4 (-158)) (-5 *2 (-108)) (-5 *1 (-342 *3 *4))
- (-4 *3 (-343 *4))))
- ((*1 *2) (-12 (-4 *1 (-343 *3)) (-4 *3 (-158)) (-5 *2 (-108)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *1 (-407 *3 *2))
- (-4 *2 (-406 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1051))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-589 *3)) (-4 *3 (-1025 *5 *6 *7 *8))
- (-4 *5 (-13 (-284) (-136))) (-4 *6 (-732)) (-4 *7 (-786))
- (-4 *8 (-987 *5 *6 *7)) (-5 *2 (-108))
- (-5 *1 (-545 *5 *6 *7 *8 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-852)) (-4 *6 (-13 (-515) (-786)))
- (-5 *2 (-589 (-292 *6))) (-5 *1 (-199 *5 *6)) (-5 *3 (-292 *6))
- (-4 *5 (-973))))
- ((*1 *2 *1) (-12 (-5 *1 (-394 *2)) (-4 *2 (-515))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-540 *5)) (-4 *5 (-13 (-29 *4) (-1109)))
- (-4 *4 (-13 (-427) (-964 (-523)) (-786) (-585 (-523))))
- (-5 *2 (-589 *5)) (-5 *1 (-538 *4 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-540 (-383 (-883 *4))))
- (-4 *4 (-13 (-427) (-964 (-523)) (-786) (-585 (-523))))
- (-5 *2 (-589 (-292 *4))) (-5 *1 (-543 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1012 *3 *2)) (-4 *3 (-784)) (-4 *2 (-1061 *3))))
+ (|partial| -12 (-5 *3 (-885 (-157 *4))) (-4 *4 (-160))
+ (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-885 (-157 *5))) (-5 *4 (-854)) (-4 *5 (-160))
+ (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-589 *1)) (-4 *1 (-1012 *4 *2)) (-4 *4 (-784))
- (-4 *2 (-1061 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-786) (-427))) (-5 *1 (-1115 *3 *2))
- (-4 *2 (-13 (-406 *3) (-1109)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1182 (-1087) *3)) (-5 *1 (-1189 *3)) (-4 *3 (-973))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1182 *3 *4)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-786))
- (-4 *4 (-973)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-786)) (-5 *1 (-860 *3 *2)) (-4 *2 (-406 *3))))
+ (|partial| -12 (-5 *3 (-885 *4)) (-4 *4 (-975)) (-4 *4 (-566 (-357)))
+ (-5 *2 (-157 (-357))) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-885 *5)) (-5 *4 (-854)) (-4 *5 (-975))
+ (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-1087)) (-5 *2 (-292 (-523))) (-5 *1 (-861)))))
+ (|partial| -12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-517))
+ (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-854)) (-4 *5 (-517))
+ (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-385 (-885 (-157 *4)))) (-4 *4 (-517))
+ (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-385 (-885 (-157 *5)))) (-5 *4 (-854))
+ (-4 *5 (-517)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357)))
+ (-5 *1 (-726 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-294 *4)) (-4 *4 (-517)) (-4 *4 (-788))
+ (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-294 *5)) (-5 *4 (-854)) (-4 *5 (-517))
+ (-4 *5 (-788)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357)))
+ (-5 *1 (-726 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-294 (-157 *4))) (-4 *4 (-517)) (-4 *4 (-788))
+ (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-294 (-157 *5))) (-5 *4 (-854)) (-4 *5 (-517))
+ (-4 *5 (-788)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357)))
+ (-5 *1 (-726 *5)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-339)) (-4 *4 (-732)) (-4 *5 (-786)) (-5 *2 (-108))
- (-5 *1 (-475 *3 *4 *5 *6)) (-4 *6 (-880 *3 *4 *5))))
+ (-12 (-5 *2 (-591 (-591 (-712)))) (-5 *1 (-837 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *3) (-12 (-5 *3 (-876 *2)) (-5 *1 (-913 *2)) (-4 *2 (-975)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-4 *1 (-46 *3 *2)) (-4 *3 (-975)) (-4 *2 (-733))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-712)) (-5 *1 (-49 *3 *4)) (-4 *3 (-975))
+ (-14 *4 (-591 (-1089)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-525)) (-5 *1 (-203 *3 *4)) (-4 *3 (-13 (-975) (-788)))
+ (-14 *4 (-591 (-1089)))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-589 *6)) (-4 *6 (-786)) (-4 *4 (-339)) (-4 *5 (-732))
- (-5 *2 (-108)) (-5 *1 (-475 *4 *5 *6 *7)) (-4 *7 (-880 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-349 *2)) (-4 *5 (-349 *2)) (-4 *2 (-339))
- (-5 *1 (-490 *2 *4 *5 *3)) (-4 *3 (-627 *2 *4 *5))))
+ (-12 (-4 *1 (-232 *4 *3 *5 *6)) (-4 *4 (-975)) (-4 *3 (-788))
+ (-4 *5 (-245 *3)) (-4 *6 (-734)) (-5 *2 (-712))))
+ ((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-254))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1085 *8)) (-5 *4 (-591 *6)) (-4 *6 (-788))
+ (-4 *8 (-882 *7 *5 *6)) (-4 *5 (-734)) (-4 *7 (-975))
+ (-5 *2 (-591 (-712))) (-5 *1 (-299 *5 *6 *7 *8))))
+ ((*1 *2 *1) (-12 (-4 *1 (-307 *3)) (-4 *3 (-341)) (-5 *2 (-854))))
((*1 *2 *1)
- (-12 (-4 *1 (-627 *2 *3 *4)) (-4 *3 (-349 *2)) (-4 *4 (-349 *2))
- (|has| *2 (-6 (-4250 "*"))) (-4 *2 (-973))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-349 *2)) (-4 *5 (-349 *2)) (-4 *2 (-158))
- (-5 *1 (-628 *2 *4 *5 *3)) (-4 *3 (-627 *2 *4 *5))))
+ (-12 (-4 *1 (-352 *3 *4)) (-4 *3 (-788)) (-4 *4 (-160))
+ (-5 *2 (-712))))
+ ((*1 *2 *1) (-12 (-4 *1 (-447 *3 *2)) (-4 *3 (-160)) (-4 *2 (-23))))
((*1 *2 *1)
- (-12 (-4 *1 (-1037 *3 *2 *4 *5)) (-4 *4 (-216 *3 *2))
- (-4 *5 (-216 *3 *2)) (|has| *2 (-6 (-4250 "*"))) (-4 *2 (-973)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-758 *3)) (-4 *3 (-786)) (-5 *1 (-614 *3)))))
-(((*1 *2 *1) (-12 (|has| *1 (-6 -4248)) (-4 *1 (-33)) (-5 *2 (-710))))
+ (-12 (-4 *3 (-517)) (-5 *2 (-525)) (-5 *1 (-572 *3 *4))
+ (-4 *4 (-1147 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-975)) (-5 *2 (-712))))
+ ((*1 *2 *1) (-12 (-4 *1 (-790 *3)) (-4 *3 (-975)) (-5 *2 (-712))))
+ ((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-837 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-838 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-591 *6)) (-4 *1 (-882 *4 *5 *6)) (-4 *4 (-975))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-591 (-712)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-882 *4 *5 *3)) (-4 *4 (-975)) (-4 *5 (-734))
+ (-4 *3 (-788)) (-5 *2 (-712))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-904 *3 *2 *4)) (-4 *3 (-975)) (-4 *4 (-788))
+ (-4 *2 (-733))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1119 *3 *4 *5 *6)) (-4 *3 (-517)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-4 *6 (-989 *3 *4 *5)) (-5 *2 (-712))))
((*1 *2 *1)
- (-12 (-4 *1 (-1019 *3 *4 *5 *6 *7)) (-4 *3 (-1016)) (-4 *4 (-1016))
- (-4 *5 (-1016)) (-4 *6 (-1016)) (-4 *7 (-1016)) (-5 *2 (-523))))
+ (-12 (-4 *1 (-1133 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1162 *3))
+ (-5 *2 (-525))))
((*1 *2 *1)
- (-12 (-5 *2 (-710)) (-5 *1 (-1190 *3 *4)) (-4 *3 (-973))
- (-4 *4 (-782)))))
+ (-12 (-4 *1 (-1154 *3 *4)) (-4 *3 (-975)) (-4 *4 (-1131 *3))
+ (-5 *2 (-385 (-525)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1188 *3)) (-4 *3 (-341)) (-5 *2 (-774 (-854)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1190 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975))
+ (-5 *2 (-712)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1156 *3 *4 *5)) (-4 *3 (-13 (-341) (-788)))
+ (-14 *4 (-1089)) (-14 *5 *3) (-5 *1 (-297 *3 *4 *5))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1 (-357))) (-5 *1 (-968)) (-5 *3 (-357)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-852))) (-5 *2 (-835 (-523))) (-5 *1 (-848)))))
-(((*1 *2 *2)
(-12
+ (-5 *3
+ (-2 (|:| -4057 (-631 (-385 (-885 *4))))
+ (|:| |vec| (-591 (-385 (-885 *4)))) (|:| -4073 (-712))
+ (|:| |rows| (-591 (-525))) (|:| |cols| (-591 (-525)))))
+ (-4 *4 (-13 (-286) (-138))) (-4 *5 (-13 (-788) (-566 (-1089))))
+ (-4 *6 (-734))
(-5 *2
- (-2 (|:| |fn| (-292 (-203))) (|:| -4105 (-589 (-203)))
- (|:| |lb| (-589 (-779 (-203)))) (|:| |cf| (-589 (-292 (-203))))
- (|:| |ub| (-589 (-779 (-203))))))
- (-5 *1 (-244)))))
-(((*1 *1) (-5 *1 (-762))))
-(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-1070)) (-5 *3 (-762)) (-5 *1 (-761)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-494 *3)) (-4 *3 (-13 (-666) (-25))))))
+ (-2 (|:| |partsol| (-1171 (-385 (-885 *4))))
+ (|:| -4003 (-591 (-1171 (-385 (-885 *4)))))))
+ (-5 *1 (-857 *4 *5 *6 *7)) (-4 *7 (-882 *4 *6 *5)))))
+(((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *4 (-1 (-3 (-525) "failed") *5)) (-4 *5 (-975))
+ (-5 *2 (-525)) (-5 *1 (-508 *5 *3)) (-4 *3 (-1147 *5))))
+ ((*1 *2 *3 *4 *2 *5)
+ (|partial| -12 (-5 *5 (-1 (-3 (-525) "failed") *4)) (-4 *4 (-975))
+ (-5 *2 (-525)) (-5 *1 (-508 *4 *3)) (-4 *3 (-1147 *4))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1 (-3 (-525) "failed") *4)) (-4 *4 (-975))
+ (-5 *2 (-525)) (-5 *1 (-508 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-564 *1)) (-4 *1 (-408 *4)) (-4 *4 (-788))
+ (-4 *4 (-517)) (-5 *2 (-385 (-1085 *1)))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *4 (-564 *3)) (-4 *3 (-13 (-408 *6) (-27) (-1111)))
+ (-4 *6 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *2 (-1085 (-385 (-1085 *3)))) (-5 *1 (-521 *6 *3 *7))
+ (-5 *5 (-1085 *3)) (-4 *7 (-1018))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1167 *5)) (-14 *5 (-1089)) (-4 *6 (-975))
+ (-5 *2 (-1144 *5 (-885 *6))) (-5 *1 (-880 *5 *6)) (-5 *3 (-885 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-882 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *2 (-1085 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *4 (-975)) (-4 *5 (-734)) (-4 *3 (-788)) (-5 *2 (-1085 *1))
+ (-4 *1 (-882 *4 *5 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-734)) (-4 *4 (-788)) (-4 *6 (-975))
+ (-4 *7 (-882 *6 *5 *4)) (-5 *2 (-385 (-1085 *3)))
+ (-5 *1 (-883 *5 *4 *6 *7 *3))
+ (-4 *3
+ (-13 (-341)
+ (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $)) (-15 -1754 (*7 $)))))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-1085 *3))
+ (-4 *3
+ (-13 (-341)
+ (-10 -8 (-15 -3022 ($ *7)) (-15 -1738 (*7 $)) (-15 -1754 (*7 $)))))
+ (-4 *7 (-882 *6 *5 *4)) (-4 *5 (-734)) (-4 *4 (-788)) (-4 *6 (-975))
+ (-5 *1 (-883 *5 *4 *6 *7 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1089)) (-4 *5 (-517))
+ (-5 *2 (-385 (-1085 (-385 (-885 *5))))) (-5 *1 (-971 *5))
+ (-5 *3 (-385 (-885 *5))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5)) (-4 *3 (-517))
+ (-4 *4 (-734)) (-4 *5 (-788)) (-5 *1 (-908 *3 *4 *5 *6)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1162 *3))
+ (-5 *1 (-257 *3 *4 *2)) (-4 *2 (-1133 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *4 (-1131 *3))
+ (-5 *1 (-258 *3 *4 *2 *5)) (-4 *2 (-1154 *3 *4)) (-4 *5 (-914 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1075 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-37 (-385 (-525))))
+ (-5 *1 (-1076 *3))))
+ ((*1 *1 *1) (-4 *1 (-1114))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-1085 (-885 *4))) (-5 *1 (-394 *3 *4))
+ (-4 *3 (-395 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-395 *3)) (-4 *3 (-160)) (-4 *3 (-341))
+ (-5 *2 (-1085 (-885 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1085 (-385 (-885 *3)))) (-5 *1 (-430 *3 *4 *5 *6))
+ (-4 *3 (-517)) (-4 *3 (-160)) (-14 *4 (-854))
+ (-14 *5 (-591 (-1089))) (-14 *6 (-1171 (-631 *3))))))
+(((*1 *2)
+ (-12 (-4 *4 (-160)) (-5 *2 (-108)) (-5 *1 (-344 *3 *4))
+ (-4 *3 (-345 *4))))
+ ((*1 *2) (-12 (-4 *1 (-345 *3)) (-4 *3 (-160)) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-788)) (-5 *2 (-591 (-591 *4))) (-5 *1 (-1097 *4))
+ (-5 *3 (-591 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-233 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-598 (-385 *2))) (-4 *2 (-1147 *4)) (-5 *1 (-751 *4 *2))
+ (-4 *4 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-599 *2 (-385 *2))) (-4 *2 (-1147 *4))
+ (-5 *1 (-751 *4 *2))
+ (-4 *4 (-13 (-341) (-138) (-966 (-525)) (-966 (-385 (-525))))))))
+(((*1 *2 *1) (-12 (-5 *2 (-712)) (-5 *1 (-305 *3)) (-4 *3 (-1125))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-712)) (-5 *1 (-488 *3 *4)) (-4 *3 (-1125))
+ (-14 *4 (-525)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1070 *3)) (-4 *3 (-975)) (-5 *1 (-1074 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1163 *2 *3 *4)) (-4 *2 (-975)) (-14 *3 (-1089))
+ (-14 *4 *2))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-525)) (|has| *1 (-6 -4241)) (-4 *1 (-382))
+ (-5 *2 (-854)))))
+(((*1 *2 *3) (-12 (-5 *3 (-205)) (-5 *2 (-1072)) (-5 *1 (-174))))
+ ((*1 *2 *3) (-12 (-5 *3 (-205)) (-5 *2 (-1072)) (-5 *1 (-279))))
+ ((*1 *2 *3) (-12 (-5 *3 (-205)) (-5 *2 (-1072)) (-5 *1 (-284)))))
+(((*1 *1) (-5 *1 (-415))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-564 *1))) (-4 *1 (-281)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973))
- (-5 *2 (-589 (-589 (-874 *3))))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-589 (-589 (-874 *4)))) (-5 *3 (-108)) (-4 *4 (-973))
- (-4 *1 (-1048 *4))))
+ (-12 (-5 *2 (-712)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854))
+ (-4 *4 (-975)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-925 *2)) (-4 *2 (-1125)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-591 *6)) (-4 *6 (-788)) (-4 *4 (-341)) (-4 *5 (-734))
+ (-5 *1 (-477 *4 *5 *6 *2)) (-4 *2 (-882 *4 *5 *6))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-477 *3 *4 *5 *2)) (-4 *2 (-882 *3 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-854)) (-5 *2 (-837 (-525))) (-5 *1 (-850))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-837 (-525))) (-5 *1 (-850)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-341) (-138)))
+ (-5 *2 (-591 (-2 (|:| -2008 (-712)) (|:| -1682 *4) (|:| |num| *4))))
+ (-5 *1 (-377 *3 *4)) (-4 *4 (-1147 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 *2)) (-4 *2 (-408 *4)) (-5 *1 (-147 *4 *2))
+ (-4 *4 (-13 (-788) (-517))))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-882 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-429))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *3 (-989 *4 *5 *6))
+ (-5 *2 (-591 (-2 (|:| |val| *3) (|:| -3374 *1))))
+ (-4 *1 (-994 *4 *5 *6 *3))))
+ ((*1 *1 *1) (-4 *1 (-1129)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-517)) (-5 *1 (-1150 *3 *2))
+ (-4 *2 (-13 (-1147 *3) (-517) (-10 -8 (-15 -1399 ($ $ $))))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-629 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-351 *3))
+ (-4 *5 (-351 *3)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-978 *3 *4 *5 *6 *7)) (-4 *5 (-975))
+ (-4 *6 (-218 *4 *5)) (-4 *7 (-218 *3 *5)) (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-4 *1 (-802 *3)) (-5 *2 (-525)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-975))
+ (-4 *2 (-13 (-382) (-966 *4) (-341) (-1111) (-263)))
+ (-5 *1 (-420 *4 *3 *2)) (-4 *3 (-1147 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-854)) (-4 *5 (-975))
+ (-4 *2 (-13 (-382) (-966 *5) (-341) (-1111) (-263)))
+ (-5 *1 (-420 *5 *3 *2)) (-4 *3 (-1147 *5)))))
+(((*1 *2 *2 *3)
+ (-12
+ (-5 *2
+ (-2 (|:| |partsol| (-1171 (-385 (-885 *4))))
+ (|:| -4003 (-591 (-1171 (-385 (-885 *4)))))))
+ (-5 *3 (-591 *7)) (-4 *4 (-13 (-286) (-138)))
+ (-4 *7 (-882 *4 *6 *5)) (-4 *5 (-13 (-788) (-566 (-1089))))
+ (-4 *6 (-734)) (-5 *1 (-857 *4 *5 *6 *7)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-854)) (-5 *3 (-591 (-242))) (-5 *1 (-240))))
+ ((*1 *1 *2) (-12 (-5 *2 (-854)) (-5 *1 (-242)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-1089)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1089)) (-4 *5 (-341)) (-5 *2 (-1070 (-1070 (-885 *5))))
+ (-5 *1 (-1179 *5)) (-5 *4 (-1070 (-885 *5))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-517)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-591 *7)) (|:| |badPols| (-591 *7))))
+ (-5 *1 (-908 *4 *5 *6 *7)) (-5 *3 (-591 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-885 (-525))) (-5 *2 (-591 *1)) (-4 *1 (-942))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-885 (-385 (-525)))) (-5 *2 (-591 *1)) (-4 *1 (-942))))
+ ((*1 *2 *3) (-12 (-5 *3 (-885 *1)) (-4 *1 (-942)) (-5 *2 (-591 *1))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1085 (-525))) (-5 *2 (-591 *1)) (-4 *1 (-942))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1085 (-385 (-525)))) (-5 *2 (-591 *1)) (-4 *1 (-942))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1085 *1)) (-4 *1 (-942)) (-5 *2 (-591 *1))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-786) (-341))) (-4 *3 (-1147 *4)) (-5 *2 (-591 *1))
+ (-4 *1 (-991 *4 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-157 (-357))) (-5 *1 (-726 *3)) (-4 *3 (-566 (-357)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-854)) (-5 *2 (-157 (-357))) (-5 *1 (-726 *3))
+ (-4 *3 (-566 (-357)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-157 *4)) (-4 *4 (-160)) (-4 *4 (-566 (-357)))
+ (-5 *2 (-157 (-357))) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-157 *5)) (-5 *4 (-854)) (-4 *5 (-160))
+ (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-885 (-157 *4))) (-4 *4 (-160)) (-4 *4 (-566 (-357)))
+ (-5 *2 (-157 (-357))) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-885 (-157 *5))) (-5 *4 (-854)) (-4 *5 (-160))
+ (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-885 *4)) (-4 *4 (-975)) (-4 *4 (-566 (-357)))
+ (-5 *2 (-157 (-357))) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-885 *5)) (-5 *4 (-854)) (-4 *5 (-975))
+ (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-517)) (-4 *4 (-566 (-357)))
+ (-5 *2 (-157 (-357))) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-854)) (-4 *5 (-517))
+ (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-385 (-885 (-157 *4)))) (-4 *4 (-517))
+ (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 (-885 (-157 *5)))) (-5 *4 (-854)) (-4 *5 (-517))
+ (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-294 *4)) (-4 *4 (-517)) (-4 *4 (-788))
+ (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-294 *5)) (-5 *4 (-854)) (-4 *5 (-517)) (-4 *5 (-788))
+ (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-294 (-157 *4))) (-4 *4 (-517)) (-4 *4 (-788))
+ (-4 *4 (-566 (-357))) (-5 *2 (-157 (-357))) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-294 (-157 *5))) (-5 *4 (-854)) (-4 *5 (-517))
+ (-4 *5 (-788)) (-4 *5 (-566 (-357))) (-5 *2 (-157 (-357)))
+ (-5 *1 (-726 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-591 *7)) (-4 *7 (-989 *4 *5 *6)) (-4 *4 (-517))
+ (-4 *5 (-734)) (-4 *6 (-788)) (-5 *2 (-108))
+ (-5 *1 (-908 *4 *5 *6 *7)))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-1072)) (-5 *2 (-715)) (-5 *1 (-110))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1089)) (-5 *3 (-1022)) (-5 *1 (-897)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-525)) (-5 *1 (-130 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-712)) (-4 *5 (-160))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-130 *2 *3 *4)) (-14 *2 (-525)) (-14 *3 (-712))
+ (-4 *4 (-160))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-629 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-351 *2))
+ (-4 *4 (-351 *2))))
((*1 *1 *2)
- (-12 (-5 *2 (-589 (-589 (-874 *3)))) (-4 *3 (-973))
- (-4 *1 (-1048 *3))))
- ((*1 *1 *1 *2 *3 *3)
- (-12 (-5 *2 (-589 (-589 (-589 *4)))) (-5 *3 (-108))
- (-4 *1 (-1048 *4)) (-4 *4 (-973))))
- ((*1 *1 *1 *2 *3 *3)
- (-12 (-5 *2 (-589 (-589 (-874 *4)))) (-5 *3 (-108))
- (-4 *1 (-1048 *4)) (-4 *4 (-973))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-589 (-589 (-589 *5)))) (-5 *3 (-589 (-157)))
- (-5 *4 (-157)) (-4 *1 (-1048 *5)) (-4 *5 (-973))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-589 (-589 (-874 *5)))) (-5 *3 (-589 (-157)))
- (-5 *4 (-157)) (-4 *1 (-1048 *5)) (-4 *5 (-973)))))
-(((*1 *1 *1) (-12 (-5 *1 (-823 *2)) (-4 *2 (-1016)))))
-(((*1 *1 *1) (-5 *1 (-985))))
-(((*1 *2 *3) (-12 (-5 *3 (-203)) (-5 *2 (-638)) (-5 *1 (-282)))))
+ (-12 (-4 *3 (-975)) (-4 *1 (-629 *3 *2 *4)) (-4 *2 (-351 *3))
+ (-4 *4 (-351 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1056 *2 *3)) (-14 *2 (-712)) (-4 *3 (-975)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-342 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)) (-5 *3 (-525)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-1037 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-919 *4 *5 *6 *7 *3))
+ (-4 *3 (-994 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-429)) (-4 *5 (-734)) (-4 *6 (-788))
+ (-4 *7 (-989 *4 *5 *6)) (-5 *2 (-108))
+ (-5 *1 (-1025 *4 *5 *6 *7 *3)) (-4 *3 (-994 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 *5)) (-5 *4 (-854)) (-4 *5 (-788))
+ (-5 *2 (-591 (-616 *5))) (-5 *1 (-616 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-429)) (-4 *3 (-788)) (-4 *3 (-966 (-525)))
+ (-4 *3 (-517)) (-5 *1 (-40 *3 *2)) (-4 *2 (-408 *3))
+ (-4 *2
+ (-13 (-341) (-281)
+ (-10 -8 (-15 -1738 ((-1041 *3 (-564 $)) $))
+ (-15 -1754 ((-1041 *3 (-564 $)) $))
+ (-15 -3022 ($ (-1041 *3 (-564 $))))))))))
+(((*1 *2 *3 *3 *3 *4 *5)
+ (-12 (-5 *5 (-591 (-591 (-205)))) (-5 *4 (-205))
+ (-5 *2 (-591 (-876 *4))) (-5 *1 (-1122)) (-5 *3 (-876 *4)))))
+(((*1 *2 *3)
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (-5 *2 (-2 (|:| -4157 (-110)) (|:| |w| (-205)))) (-5 *1 (-186)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1176)) (-5 *1 (-763)))))
+(((*1 *1 *2 *2 *3)
+ (-12 (-5 *2 (-712)) (-4 *3 (-1125)) (-4 *1 (-55 *3 *4 *5))
+ (-4 *4 (-351 *3)) (-4 *5 (-351 *3))))
+ ((*1 *1) (-5 *1 (-159)))
+ ((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1072)) (-4 *1 (-367))))
+ ((*1 *1) (-5 *1 (-372)))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-712)) (-4 *1 (-596 *3)) (-4 *3 (-1125))))
+ ((*1 *1)
+ (-12 (-4 *3 (-1018)) (-5 *1 (-818 *2 *3 *4)) (-4 *2 (-1018))
+ (-4 *4 (-611 *3))))
+ ((*1 *1) (-12 (-5 *1 (-822 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018))))
+ ((*1 *1) (-12 (-5 *1 (-1078 *2 *3)) (-14 *2 (-854)) (-4 *3 (-975))))
+ ((*1 *1 *1) (-5 *1 (-1089))) ((*1 *1) (-5 *1 (-1089)))
+ ((*1 *1) (-5 *1 (-1106))))
+(((*1 *1) (-5 *1 (-415))))
+(((*1 *2 *3) (-12 (-5 *3 (-205)) (-5 *2 (-640)) (-5 *1 (-284)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-989 *2 *3 *4)) (-4 *2 (-975)) (-4 *3 (-734))
+ (-4 *4 (-788)) (-4 *2 (-429)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-517))) (-5 *1 (-255 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-932))))))
(((*1 *1 *2)
- (-12 (-5 *2 (-389 *3 *4 *5 *6)) (-4 *6 (-964 *4)) (-4 *3 (-284))
- (-4 *4 (-921 *3)) (-4 *5 (-1145 *4)) (-4 *6 (-385 *4 *5))
- (-14 *7 (-1169 *6)) (-5 *1 (-390 *3 *4 *5 *6 *7))))
+ (-12 (-5 *2 (-1 (-205) (-205) (-205) (-205))) (-5 *1 (-242))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-205) (-205) (-205))) (-5 *1 (-242))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-205) (-205))) (-5 *1 (-242)))))
+(((*1 *1 *1 *1) (-5 *1 (-150)))
+ ((*1 *1 *2) (-12 (-5 *2 (-525)) (-5 *1 (-150)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *3 (-1018)) (-4 *4 (-1018))
+ (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-1018)) (-5 *2 (-108)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-591 (-2 (|:| -2019 *3) (|:| -1221 *4))))
+ (-4 *3 (-1018)) (-4 *4 (-1018)) (-4 *1 (-1102 *3 *4))))
+ ((*1 *1) (-12 (-4 *1 (-1102 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1018)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-591 (-796))) (-5 *1 (-796)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-550 *2)) (-4 *2 (-37 (-385 (-525)))) (-4 *2 (-975)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-232 *2 *3 *4 *5)) (-4 *2 (-975)) (-4 *3 (-788))
+ (-4 *4 (-245 *3)) (-4 *5 (-734)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-591 (-591 (-591 *5)))) (-5 *3 (-1 (-108) *5 *5))
+ (-5 *4 (-591 *5)) (-4 *5 (-788)) (-5 *1 (-1097 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-876 *3) (-876 *3))) (-5 *1 (-163 *3))
+ (-4 *3 (-13 (-341) (-1111) (-932))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-525)) (-5 *1 (-522)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-517) (-788) (-966 (-525)))) (-5 *2 (-108))
+ (-5 *1 (-170 *4 *3)) (-4 *3 (-13 (-27) (-1111) (-408 (-157 *4))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-429) (-788) (-966 (-525)) (-587 (-525))))
+ (-5 *2 (-108)) (-5 *1 (-1115 *4 *3))
+ (-4 *3 (-13 (-27) (-1111) (-408 *4))))))
+(((*1 *1 *2) (-12 (-5 *2 (-146)) (-5 *1 (-807)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-51)) (-5 *1 (-50 *2)) (-4 *2 (-1125))))
((*1 *1 *2)
- (-12 (-5 *2 (-1169 *6)) (-4 *6 (-385 *4 *5)) (-4 *4 (-921 *3))
- (-4 *5 (-1145 *4)) (-4 *3 (-284)) (-5 *1 (-390 *3 *4 *5 *6 *7))
- (-14 *7 *2))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-596 (-383 *6))) (-5 *4 (-1 (-589 *5) *6))
- (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-4 *6 (-1145 *5)) (-5 *2 (-589 (-383 *6))) (-5 *1 (-751 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-596 (-383 *7))) (-5 *4 (-1 (-589 *6) *7))
- (-5 *5 (-1 (-394 *7) *7))
- (-4 *6 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-4 *7 (-1145 *6)) (-5 *2 (-589 (-383 *7))) (-5 *1 (-751 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-597 *6 (-383 *6))) (-5 *4 (-1 (-589 *5) *6))
- (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-4 *6 (-1145 *5)) (-5 *2 (-589 (-383 *6))) (-5 *1 (-751 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-597 *7 (-383 *7))) (-5 *4 (-1 (-589 *6) *7))
- (-5 *5 (-1 (-394 *7) *7))
- (-4 *6 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-4 *7 (-1145 *6)) (-5 *2 (-589 (-383 *7))) (-5 *1 (-751 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-596 (-383 *5))) (-4 *5 (-1145 *4)) (-4 *4 (-27))
- (-4 *4 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-5 *2 (-589 (-383 *5))) (-5 *1 (-751 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-596 (-383 *6))) (-5 *4 (-1 (-394 *6) *6))
- (-4 *6 (-1145 *5)) (-4 *5 (-27))
- (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-5 *2 (-589 (-383 *6))) (-5 *1 (-751 *5 *6))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-597 *5 (-383 *5))) (-4 *5 (-1145 *4)) (-4 *4 (-27))
- (-4 *4 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-5 *2 (-589 (-383 *5))) (-5 *1 (-751 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-597 *6 (-383 *6))) (-5 *4 (-1 (-394 *6) *6))
- (-4 *6 (-1145 *5)) (-4 *5 (-27))
- (-4 *5 (-13 (-339) (-136) (-964 (-523)) (-964 (-383 (-523)))))
- (-5 *2 (-589 (-383 *6))) (-5 *1 (-751 *5 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-203)) (-5 *1 (-204))))
- ((*1 *2 *2) (-12 (-5 *2 (-155 (-203))) (-5 *1 (-204)))))
+ (|partial| -12 (-5 *2 (-885 (-357))) (-5 *1 (-317 *3 *4 *5))
+ (-4 *5 (-966 (-357))) (-14 *3 (-591 (-1089)))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-365))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-385 (-885 (-357)))) (-5 *1 (-317 *3 *4 *5))
+ (-4 *5 (-966 (-357))) (-14 *3 (-591 (-1089)))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-365))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-294 (-357))) (-5 *1 (-317 *3 *4 *5))
+ (-4 *5 (-966 (-357))) (-14 *3 (-591 (-1089)))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-365))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-885 (-525))) (-5 *1 (-317 *3 *4 *5))
+ (-4 *5 (-966 (-525))) (-14 *3 (-591 (-1089)))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-365))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-385 (-885 (-525)))) (-5 *1 (-317 *3 *4 *5))
+ (-4 *5 (-966 (-525))) (-14 *3 (-591 (-1089)))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-365))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-294 (-525))) (-5 *1 (-317 *3 *4 *5))
+ (-4 *5 (-966 (-525))) (-14 *3 (-591 (-1089)))
+ (-14 *4 (-591 (-1089))) (-4 *5 (-365))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1089)) (-5 *1 (-317 *3 *4 *5))
+ (-14 *3 (-591 *2)) (-14 *4 (-591 *2)) (-4 *5 (-365))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-294 *5)) (-4 *5 (-365))
+ (-5 *1 (-317 *3 *4 *5)) (-14 *3 (-591 (-1089)))
+ (-14 *4 (-591 (-1089)))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-631 (-385 (-885 (-525))))) (-4 *1 (-362))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-631 (-385 (-885 (-357))))) (-4 *1 (-362))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-631 (-885 (-525)))) (-4 *1 (-362))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-631 (-885 (-357)))) (-4 *1 (-362))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-631 (-294 (-525)))) (-4 *1 (-362))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-631 (-294 (-357)))) (-4 *1 (-362))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-385 (-885 (-525)))) (-4 *1 (-374))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-385 (-885 (-357)))) (-4 *1 (-374))))
+ ((*1 *1 *2) (|partial| -12 (-5 *2 (-885 (-525))) (-4 *1 (-374))))
+ ((*1 *1 *2) (|partial| -12 (-5 *2 (-885 (-357))) (-4 *1 (-374))))
+ ((*1 *1 *2) (|partial| -12 (-5 *2 (-294 (-525))) (-4 *1 (-374))))
+ ((*1 *1 *2) (|partial| -12 (-5 *2 (-294 (-357))) (-4 *1 (-374))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1171 (-385 (-885 (-525))))) (-4 *1 (-418))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1171 (-385 (-885 (-357))))) (-4 *1 (-418))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1171 (-885 (-525)))) (-4 *1 (-418))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1171 (-885 (-357)))) (-4 *1 (-418))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1171 (-294 (-525)))) (-4 *1 (-418))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1171 (-294 (-357)))) (-4 *1 (-418))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-327)) (-4 *5 (-307 *4)) (-4 *6 (-1147 *5))
+ (-5 *2 (-1085 (-1085 *4))) (-5 *1 (-718 *4 *5 *6 *3 *7))
+ (-4 *3 (-1147 *6)) (-14 *7 (-854))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-591 *6)) (-4 *6 (-989 *3 *4 *5))
+ (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-4 *1 (-907 *3 *4 *5 *6))))
+ ((*1 *2 *1) (|partial| -12 (-4 *1 (-966 *2)) (-4 *2 (-1125))))
+ ((*1 *1 *2)
+ (|partial| -3321
+ (-12 (-5 *2 (-885 *3))
+ (-12 (-2247 (-4 *3 (-37 (-385 (-525)))))
+ (-2247 (-4 *3 (-37 (-525)))) (-4 *5 (-566 (-1089))))
+ (-4 *3 (-975)) (-4 *1 (-989 *3 *4 *5)) (-4 *4 (-734))
+ (-4 *5 (-788)))
+ (-12 (-5 *2 (-885 *3))
+ (-12 (-2247 (-4 *3 (-510))) (-2247 (-4 *3 (-37 (-385 (-525)))))
+ (-4 *3 (-37 (-525))) (-4 *5 (-566 (-1089))))
+ (-4 *3 (-975)) (-4 *1 (-989 *3 *4 *5)) (-4 *4 (-734))
+ (-4 *5 (-788)))
+ (-12 (-5 *2 (-885 *3))
+ (-12 (-2247 (-4 *3 (-923 (-525)))) (-4 *3 (-37 (-385 (-525))))
+ (-4 *5 (-566 (-1089))))
+ (-4 *3 (-975)) (-4 *1 (-989 *3 *4 *5)) (-4 *4 (-734))
+ (-4 *5 (-788)))))
+ ((*1 *1 *2)
+ (|partial| -3321
+ (-12 (-5 *2 (-885 (-525))) (-4 *1 (-989 *3 *4 *5))
+ (-12 (-2247 (-4 *3 (-37 (-385 (-525))))) (-4 *3 (-37 (-525)))
+ (-4 *5 (-566 (-1089))))
+ (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)))
+ (-12 (-5 *2 (-885 (-525))) (-4 *1 (-989 *3 *4 *5))
+ (-12 (-4 *3 (-37 (-385 (-525)))) (-4 *5 (-566 (-1089))))
+ (-4 *3 (-975)) (-4 *4 (-734)) (-4 *5 (-788)))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-885 (-385 (-525)))) (-4 *1 (-989 *3 *4 *5))
+ (-4 *3 (-37 (-385 (-525)))) (-4 *5 (-566 (-1089))) (-4 *3 (-975))
+ (-4 *4 (-734)) (-4 *5 (-788)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1085 (-525))) (-5 *1 (-875)) (-5 *3 (-525)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1083 *1)) (-5 *4 (-1087)) (-4 *1 (-27))
- (-5 *2 (-589 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-1083 *1)) (-4 *1 (-27)) (-5 *2 (-589 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-883 *1)) (-4 *1 (-27)) (-5 *2 (-589 *1))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1087)) (-4 *4 (-13 (-786) (-515))) (-5 *2 (-589 *1))
- (-4 *1 (-29 *4))))
+ (-12 (-5 *3 (-205)) (-5 *4 (-525)) (-5 *2 (-964)) (-5 *1 (-700)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-975)) (-5 *2 (-1171 *3)) (-5 *1 (-654 *3 *4))
+ (-4 *4 (-1147 *3)))))
+(((*1 *2 *2) (-12 (-5 *1 (-624 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-259))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-825 *3)) (-4 *3 (-1018))))
((*1 *2 *1)
- (-12 (-4 *3 (-13 (-786) (-515))) (-5 *2 (-589 *1)) (-4 *1 (-29 *3)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-912 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-823 *4)) (-4 *4 (-1016)) (-5 *2 (-108))
- (-5 *1 (-820 *4 *5)) (-4 *5 (-1016))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-823 *5)) (-4 *5 (-1016)) (-5 *2 (-108))
- (-5 *1 (-821 *5 *3)) (-4 *3 (-1123))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *6)) (-5 *4 (-823 *5)) (-4 *5 (-1016))
- (-4 *6 (-1123)) (-5 *2 (-108)) (-5 *1 (-821 *5 *6)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-710)) (-5 *1 (-110))))
- ((*1 *2 *1) (-12 (-5 *2 (-710)) (-5 *1 (-110))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-230 *4 *3 *5 *6)) (-4 *4 (-973)) (-4 *3 (-786))
- (-4 *5 (-243 *3)) (-4 *6 (-732)) (-5 *2 (-710))))
+ (-12 (-4 *1 (-1186 *3 *4)) (-4 *3 (-788)) (-4 *4 (-975))
+ (-5 *2 (-108))))
((*1 *2 *1)
- (-12 (-4 *1 (-230 *3 *4 *5 *6)) (-4 *3 (-973)) (-4 *4 (-786))
- (-4 *5 (-243 *4)) (-4 *6 (-732)) (-5 *2 (-710))))
- ((*1 *2 *1) (-12 (-4 *1 (-243 *3)) (-4 *3 (-786)) (-5 *2 (-710)))))
-(((*1 *1 *2 *2 *2)
- (-12 (-5 *1 (-205 *2)) (-4 *2 (-13 (-339) (-1109)))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339))))
- ((*1 *1 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-339))))
- ((*1 *2 *1 *3 *4 *4)
- (-12 (-5 *3 (-852)) (-5 *4 (-355)) (-5 *2 (-1174)) (-5 *1 (-1170)))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-1192 *3 *4)) (-4 *3 (-975))
+ (-4 *4 (-784)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-591 (-1089))) (-5 *3 (-1089)) (-5 *1 (-501))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1089)) (-5 *1 (-646 *3)) (-4 *3 (-566 (-501)))))
+ ((*1 *2 *3 *2 *2)
+ (-12 (-5 *2 (-1089)) (-5 *1 (-646 *3)) (-4 *3 (-566 (-501)))))
+ ((*1 *2 *3 *2 *2 *2)
+ (-12 (-5 *2 (-1089)) (-5 *1 (-646 *3)) (-4 *3 (-566 (-501)))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *4 (-591 (-1089))) (-5 *2 (-1089)) (-5 *1 (-646 *3))
+ (-4 *3 (-566 (-501))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-589 *2)) (-5 *4 (-1 (-108) *2 *2)) (-5 *1 (-1124 *2))
- (-4 *2 (-1016))))
+ (-12 (-5 *3 (-1171 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-341))
+ (-4 *1 (-666 *5 *6)) (-4 *5 (-160)) (-4 *6 (-1147 *5))
+ (-5 *2 (-631 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-777))
+ (-5 *3
+ (-2 (|:| |fn| (-294 (-205))) (|:| -3506 (-591 (-205)))
+ (|:| |lb| (-591 (-781 (-205)))) (|:| |cf| (-591 (-294 (-205))))
+ (|:| |ub| (-591 (-781 (-205))))))
+ (-5 *2 (-964))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-777))
+ (-5 *3
+ (-2 (|:| |lfn| (-591 (-294 (-205)))) (|:| -3506 (-591 (-205)))))
+ (-5 *2 (-964)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-591 *6) "failed") (-525) *6 *6)) (-4 *6 (-341))
+ (-4 *7 (-1147 *6))
+ (-5 *2 (-2 (|:| |answer| (-542 (-385 *7))) (|:| |a0| *6)))
+ (-5 *1 (-535 *6 *7)) (-5 *3 (-385 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1091 (-385 (-525)))) (-5 *1 (-172)) (-5 *3 (-525)))))
+(((*1 *1 *1) (-5 *1 (-108))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854))
+ (-4 *4 (-975)))))
+(((*1 *2 *2)
+ (-12
+ (-5 *2
+ (-477 (-385 (-525)) (-220 *4 (-712)) (-798 *3)
+ (-227 *3 (-385 (-525)))))
+ (-14 *3 (-591 (-1089))) (-14 *4 (-712)) (-5 *1 (-478 *3 *4)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-357)) (-5 *3 (-591 (-242))) (-5 *1 (-240))))
+ ((*1 *1 *2) (-12 (-5 *2 (-357)) (-5 *1 (-242)))))
+(((*1 *1 *1) (-12 (-5 *1 (-847 *2)) (-4 *2 (-286)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591 (-1094))) (-5 *1 (-169)))))
+(((*1 *2 *3) (-12 (-5 *2 (-357)) (-5 *1 (-726 *3)) (-4 *3 (-566 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-854)) (-5 *2 (-357)) (-5 *1 (-726 *3))
+ (-4 *3 (-566 *2))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-885 *4)) (-4 *4 (-975)) (-4 *4 (-566 *2))
+ (-5 *2 (-357)) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-885 *5)) (-5 *4 (-854)) (-4 *5 (-975))
+ (-4 *5 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-517)) (-4 *4 (-566 *2))
+ (-5 *2 (-357)) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-854)) (-4 *5 (-517))
+ (-4 *5 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-1016)) (-4 *2 (-786))
- (-5 *1 (-1124 *2)))))
+ (-12 (-5 *3 (-294 *4)) (-4 *4 (-517)) (-4 *4 (-788))
+ (-4 *4 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-294 *5)) (-5 *4 (-854)) (-4 *5 (-517)) (-4 *5 (-788))
+ (-4 *5 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *5)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-1169 (-589 (-523)))) (-5 *1 (-454))))
+ (-12 (-4 *4 (-517))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-901 *4 *3)) (-4 *3 (-1147 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1144 *5 *4)) (-4 *4 (-429)) (-4 *4 (-761))
+ (-14 *5 (-1089)) (-5 *2 (-525)) (-5 *1 (-1032 *4 *5)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-127)) (-5 *3 (-712)) (-5 *2 (-1176)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-712)) (-5 *2 (-1176)) (-5 *1 (-1172))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-712)) (-5 *2 (-1176)) (-5 *1 (-1173)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-825 *4)) (-4 *4 (-1018)) (-5 *1 (-823 *4 *3))
+ (-4 *3 (-1125))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-51)) (-5 *1 (-825 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1171 (-294 (-205)))) (-5 *4 (-591 (-1089)))
+ (-5 *2 (-631 (-294 (-205)))) (-5 *1 (-187))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1018)) (-4 *6 (-833 *5)) (-5 *2 (-631 *6))
+ (-5 *1 (-633 *5 *6 *3 *4)) (-4 *3 (-351 *6))
+ (-4 *4 (-13 (-351 *5) (-10 -7 (-6 -4250)))))))
+(((*1 *1 *1) (-5 *1 (-47)))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-57 *5)) (-4 *5 (-1125))
+ (-4 *2 (-1125)) (-5 *1 (-56 *5 *2))))
+ ((*1 *2 *3 *1 *2 *2)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1018)) (|has| *1 (-6 -4250))
+ (-4 *1 (-142 *2)) (-4 *2 (-1125))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4250)) (-4 *1 (-142 *2))
+ (-4 *2 (-1125))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4250)) (-4 *1 (-142 *2))
+ (-4 *2 (-1125))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-975))
+ (-5 *2 (-2 (|:| -1357 (-1085 *4)) (|:| |deg| (-854))))
+ (-5 *1 (-201 *4 *5)) (-5 *3 (-1085 *4)) (-4 *5 (-13 (-517) (-788)))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-220 *5 *6)) (-14 *5 (-712))
+ (-4 *6 (-1125)) (-4 *2 (-1125)) (-5 *1 (-219 *5 *6 *2))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1123)) (-5 *1 (-553 *3))))
+ (-12 (-4 *4 (-160)) (-5 *1 (-268 *4 *2 *3 *5 *6 *7))
+ (-4 *2 (-1147 *4)) (-4 *3 (-23)) (-14 *5 (-1 *2 *2 *3))
+ (-14 *6 (-1 (-3 *3 "failed") *3 *3))
+ (-14 *7 (-1 (-3 *2 "failed") *2 *2 *3))))
+ ((*1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-517)) (-4 *2 (-788))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-313 *2 *3 *4 *5)) (-4 *2 (-341)) (-4 *3 (-1147 *2))
+ (-4 *4 (-1147 (-385 *3))) (-4 *5 (-320 *2 *3 *4))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1125)) (-4 *2 (-1125))
+ (-5 *1 (-349 *5 *4 *2 *6)) (-4 *4 (-351 *5)) (-4 *6 (-351 *2))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1018)) (-4 *2 (-1018))
+ (-5 *1 (-401 *5 *4 *2 *6)) (-4 *4 (-403 *5)) (-4 *6 (-403 *2))))
+ ((*1 *1 *1) (-5 *1 (-468)))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-591 *5)) (-4 *5 (-1125))
+ (-4 *2 (-1125)) (-5 *1 (-589 *5 *2))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-975)) (-4 *2 (-975))
+ (-4 *6 (-351 *5)) (-4 *7 (-351 *5)) (-4 *8 (-351 *2))
+ (-4 *9 (-351 *2)) (-5 *1 (-627 *5 *6 *7 *4 *2 *8 *9 *10))
+ (-4 *4 (-629 *5 *6 *7)) (-4 *10 (-629 *2 *8 *9))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1123)) (-5 *1 (-1068 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1123)) (-5 *1 (-1068 *3)))))
+ (-12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-160)) (-4 *3 (-23))
+ (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-975)) (-5 *1 (-654 *3 *2)) (-4 *2 (-1147 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-657 *2 *3 *4 *5 *6)) (-4 *2 (-160)) (-4 *3 (-23))
+ (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-385 *4)) (-4 *4 (-1147 *3)) (-4 *3 (-341))
+ (-4 *3 (-160)) (-4 *1 (-666 *3 *4))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-160)) (-4 *1 (-666 *3 *2)) (-4 *2 (-1147 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-890 *5)) (-4 *5 (-1125))
+ (-4 *2 (-1125)) (-5 *1 (-889 *5 *2))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788))
+ (-5 *1 (-963 *3 *4 *5 *2 *6)) (-4 *2 (-882 *3 *4 *5))
+ (-14 *6 (-591 *2))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-975)) (-4 *2 (-975))
+ (-14 *5 (-712)) (-14 *6 (-712)) (-4 *8 (-218 *6 *7))
+ (-4 *9 (-218 *5 *7)) (-4 *10 (-218 *6 *2)) (-4 *11 (-218 *5 *2))
+ (-5 *1 (-980 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12))
+ (-4 *4 (-978 *5 *6 *7 *8 *9)) (-4 *12 (-978 *5 *6 *2 *10 *11))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1070 *5)) (-4 *5 (-1125))
+ (-4 *2 (-1125)) (-5 *1 (-1068 *5 *2))))
+ ((*1 *2 *2 *1 *3 *4)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-108) *2 *2))
+ (-4 *1 (-1119 *5 *6 *7 *2)) (-4 *5 (-517)) (-4 *6 (-734))
+ (-4 *7 (-788)) (-4 *2 (-989 *5 *6 *7))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1171 *5)) (-4 *5 (-1125))
+ (-4 *2 (-1125)) (-5 *1 (-1170 *5 *2)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |var| (-1087)) (|:| |fn| (-292 (-203)))
- (|:| -3487 (-1011 (-779 (-203)))) (|:| |abserr| (-203))
- (|:| |relerr| (-203))))
- (-5 *2 (-523)) (-5 *1 (-184)))))
-(((*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-515)) (-4 *2 (-508))))
- ((*1 *1 *1) (-4 *1 (-982))))
-(((*1 *2 *3 *3)
- (-12 (-4 *2 (-515)) (-4 *2 (-427)) (-5 *1 (-899 *2 *3))
- (-4 *3 (-1145 *2)))))
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (-5 *2 (-1070 (-205))) (-5 *1 (-174))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-294 (-205))) (-5 *4 (-591 (-1089)))
+ (-5 *5 (-1013 (-781 (-205)))) (-5 *2 (-1070 (-205))) (-5 *1 (-279))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1171 (-294 (-205)))) (-5 *4 (-591 (-1089)))
+ (-5 *5 (-1013 (-781 (-205)))) (-5 *2 (-1070 (-205))) (-5 *1 (-279)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-419 *3)) (-4 *3 (-1147 (-525))))))
(((*1 *1 *1)
- (-12 (-4 *1 (-987 *2 *3 *4)) (-4 *2 (-973)) (-4 *3 (-732))
- (-4 *4 (-786)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-1142 *5 *4)) (-5 *1 (-1085 *4 *5 *6))
- (-4 *4 (-973)) (-14 *5 (-1087)) (-14 *6 *4)))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-1142 *5 *4)) (-5 *1 (-1161 *4 *5 *6))
- (-4 *4 (-973)) (-14 *5 (-1087)) (-14 *6 *4))))
-(((*1 *1 *2 *2) (-12 (-5 *1 (-808 *2)) (-4 *2 (-1123))))
- ((*1 *1 *2 *2 *2) (-12 (-5 *1 (-810 *2)) (-4 *2 (-1123))))
+ (-12 (-5 *1 (-49 *2 *3)) (-4 *2 (-975)) (-14 *3 (-591 (-1089)))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-203 *2 *3)) (-4 *2 (-13 (-975) (-788)))
+ (-14 *3 (-591 (-1089))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-564 *6)) (-4 *6 (-13 (-408 *5) (-27) (-1111)))
+ (-4 *5 (-13 (-429) (-966 (-525)) (-788) (-138) (-587 (-525))))
+ (-5 *2 (-1085 (-385 (-1085 *6)))) (-5 *1 (-521 *5 *6 *7))
+ (-5 *3 (-1085 *6)) (-4 *7 (-1018))))
((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-589 (-874 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-589 (-874 *3))) (-4 *3 (-973)) (-4 *1 (-1048 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-589 *3))) (-4 *1 (-1048 *3)) (-4 *3 (-973))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-874 *3))) (-4 *1 (-1048 *3)) (-4 *3 (-973)))))
-(((*1 *1 *2) (-12 (-5 *2 (-589 *3)) (-4 *3 (-1123)) (-4 *1 (-102 *3)))))
-(((*1 *2)
- (-12 (-4 *4 (-1127)) (-4 *5 (-1145 *4)) (-4 *6 (-1145 (-383 *5)))
- (-5 *2 (-710)) (-5 *1 (-317 *3 *4 *5 *6)) (-4 *3 (-318 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-710))))
- ((*1 *2 *1) (-12 (-4 *1 (-1048 *3)) (-4 *3 (-973)) (-5 *2 (-710)))))
+ (-12 (-4 *2 (-1147 *3)) (-5 *1 (-654 *3 *2)) (-4 *3 (-975))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-666 *3 *2)) (-4 *3 (-160)) (-4 *2 (-1147 *3))))
+ ((*1 *2 *3 *4 *4 *5 *6 *7 *8)
+ (|partial| -12 (-5 *4 (-1085 *11)) (-5 *6 (-591 *10))
+ (-5 *7 (-591 (-712))) (-5 *8 (-591 *11)) (-4 *10 (-788))
+ (-4 *11 (-286)) (-4 *9 (-734)) (-4 *5 (-882 *11 *9 *10))
+ (-5 *2 (-591 (-1085 *5))) (-5 *1 (-684 *9 *10 *11 *5))
+ (-5 *3 (-1085 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-882 *3 *4 *5)) (-5 *1 (-963 *3 *4 *5 *2 *6))
+ (-4 *3 (-341)) (-4 *4 (-734)) (-4 *5 (-788)) (-14 *6 (-591 *2)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-203)) (-5 *4 (-523)) (-5 *2 (-962)) (-5 *1 (-698)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1169 *1)) (-4 *1 (-343 *2)) (-4 *2 (-158))))
- ((*1 *2) (-12 (-4 *2 (-158)) (-5 *1 (-392 *3 *2)) (-4 *3 (-393 *2))))
- ((*1 *2) (-12 (-4 *1 (-393 *2)) (-4 *2 (-158)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-515) (-786) (-964 (-523)))) (-5 *2 (-108))
- (-5 *1 (-168 *4 *3)) (-4 *3 (-13 (-27) (-1109) (-406 (-155 *4))))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-410))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-427) (-786) (-964 (-523)) (-585 (-523))))
- (-5 *2 (-108)) (-5 *1 (-1113 *4 *3))
- (-4 *3 (-13 (-27) (-1109) (-406 *4))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-325))
- (-5 *2 (-589 (-2 (|:| |deg| (-710)) (|:| -1549 *3))))
- (-5 *1 (-195 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-710)) (-4 *5 (-515))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-899 *5 *3)) (-4 *3 (-1145 *5)))))
-(((*1 *2 *3 *4 *3 *4 *4 *4)
- (-12 (-5 *3 (-629 (-203))) (-5 *4 (-523)) (-5 *2 (-962))
- (-5 *1 (-696)))))
-(((*1 *2 *1) (-12 (-4 *1 (-513 *2)) (-4 *2 (-13 (-380) (-1109)))))
- ((*1 *2) (-12 (-5 *2 (-523)) (-5 *1 (-794))))
- ((*1 *2 *1) (-12 (-5 *2 (-523)) (-5 *1 (-794)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-203)) (-5 *4 (-523))
- (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 G)))) (-5 *2 (-962))
- (-5 *1 (-688)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-523))) (-5 *2 (-835 (-523))) (-5 *1 (-848))))
- ((*1 *2) (-12 (-5 *2 (-835 (-523))) (-5 *1 (-848)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-46 *2 *3)) (-4 *3 (-731)) (-4 *2 (-973))))
- ((*1 *2 *1 *1)
- (-12 (-4 *2 (-973)) (-5 *1 (-49 *2 *3)) (-14 *3 (-589 (-1087)))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-589 (-852))) (-4 *2 (-339)) (-5 *1 (-141 *4 *2 *5))
- (-14 *4 (-852)) (-14 *5 (-922 *4 *2))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-292 *3)) (-5 *1 (-201 *3 *4))
- (-4 *3 (-13 (-973) (-786))) (-14 *4 (-589 (-1087)))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-299 *3 *2)) (-4 *3 (-1016)) (-4 *2 (-124))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-358 *2 *3)) (-4 *3 (-1016)) (-4 *2 (-973))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-523)) (-4 *2 (-515)) (-5 *1 (-570 *2 *4))
- (-4 *4 (-1145 *2))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-4 *1 (-648 *2)) (-4 *2 (-973))))
- ((*1 *2 *1 *3)
- (-12 (-4 *2 (-973)) (-5 *1 (-675 *2 *3)) (-4 *3 (-666))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 *5)) (-5 *3 (-589 (-710))) (-4 *1 (-680 *4 *5))
- (-4 *4 (-973)) (-4 *5 (-786))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-710)) (-4 *1 (-680 *4 *2)) (-4 *4 (-973))
- (-4 *2 (-786))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-4 *1 (-788 *2)) (-4 *2 (-973))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-589 *6)) (-5 *3 (-589 (-710))) (-4 *1 (-880 *4 *5 *6))
- (-4 *4 (-973)) (-4 *5 (-732)) (-4 *6 (-786))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-710)) (-4 *1 (-880 *4 *5 *2)) (-4 *4 (-973))
- (-4 *5 (-732)) (-4 *2 (-786))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-710)) (-4 *2 (-880 *4 (-495 *5) *5))
- (-5 *1 (-1040 *4 *5 *2)) (-4 *4 (-973)) (-4 *5 (-786))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-710)) (-5 *2 (-883 *4)) (-5 *1 (-1118 *4))
- (-4 *4 (-973)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1083 *6)) (-5 *3 (-523)) (-4 *6 (-284)) (-4 *4 (-732))
- (-4 *5 (-786)) (-5 *1 (-682 *4 *5 *6 *7)) (-4 *7 (-880 *6 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-589 (-292 (-203)))) (-5 *2 (-108)) (-5 *1 (-244))))
- ((*1 *2 *3) (-12 (-5 *3 (-292 (-203))) (-5 *2 (-108)) (-5 *1 (-244))))
+ (-12 (-5 *3 (-838 (-525))) (-5 *4 (-525)) (-5 *2 (-631 *4))
+ (-5 *1 (-957 *5)) (-4 *5 (-975))))
((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-906 *4 *5 *6 *3)) (-4 *3 (-987 *4 *5 *6)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-362 *2)) (-4 *2 (-1016))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-786)))))
-(((*1 *2 *3 *4 *4 *3 *5)
- (-12 (-5 *4 (-562 *3)) (-5 *5 (-1083 *3))
- (-4 *3 (-13 (-406 *6) (-27) (-1109)))
- (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *2 (-540 *3)) (-5 *1 (-519 *6 *3 *7)) (-4 *7 (-1016))))
- ((*1 *2 *3 *4 *4 *4 *3 *5)
- (-12 (-5 *4 (-562 *3)) (-5 *5 (-383 (-1083 *3)))
- (-4 *3 (-13 (-406 *6) (-27) (-1109)))
- (-4 *6 (-13 (-427) (-964 (-523)) (-786) (-136) (-585 (-523))))
- (-5 *2 (-540 *3)) (-5 *1 (-519 *6 *3 *7)) (-4 *7 (-1016)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-515)) (-4 *5 (-732)) (-4 *6 (-786)) (-5 *2 (-108))
- (-5 *1 (-906 *4 *5 *6 *3)) (-4 *3 (-987 *4 *5 *6)))))
-(((*1 *1 *2 *1 *1) (-12 (-5 *2 (-1086)) (-5 *1 (-306))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-1086)) (-5 *1 (-306)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -3429 *1) (|:| -3143 *1))) (-4 *1 (-284))))
- ((*1 *2 *1 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |lm| (-362 *3)) (|:| |rm| (-362 *3))))
- (-5 *1 (-362 *3)) (-4 *3 (-1016))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -3429 (-710)) (|:| -3143 (-710))))
- (-5 *1 (-710))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-515)) (-5 *2 (-2 (|:| -3429 *3) (|:| -3143 *3)))
- (-5 *1 (-899 *4 *3)) (-4 *3 (-1145 *4)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5)
- (-12 (-5 *3 (-203)) (-5 *4 (-523))
- (-5 *5 (-3 (|:| |fn| (-364)) (|:| |fp| (-62 -3894)))) (-5 *2 (-962))
- (-5 *1 (-686)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-760)))))
-(((*1 *1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-525))) (-5 *2 (-631 (-525))) (-5 *1 (-957 *4))
+ (-4 *4 (-975))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-591 (-838 (-525)))) (-5 *4 (-525))
+ (-5 *2 (-591 (-631 *4))) (-5 *1 (-957 *5)) (-4 *5 (-975))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-591 (-525)))) (-5 *2 (-591 (-631 (-525))))
+ (-5 *1 (-957 *4)) (-4 *4 (-975)))))
+(((*1 *2 *3)
(-12
(-5 *3
- (-589
- (-2 (|:| |scalar| (-383 (-523))) (|:| |coeff| (-1083 *2))
- (|:| |logand| (-1083 *2)))))
- (-5 *4 (-589 (-2 (|:| |integrand| *2) (|:| |intvar| *2))))
- (-4 *2 (-339)) (-5 *1 (-540 *2)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -3699 *6) (|:| |coeff| *6)) "failed") *6))
- (-4 *6 (-339)) (-4 *7 (-1145 *6))
- (-5 *2 (-2 (|:| |answer| (-540 (-383 *7))) (|:| |a0| *6)))
- (-5 *1 (-533 *6 *7)) (-5 *3 (-383 *7)))))
+ (-2 (|:| |var| (-1089)) (|:| |fn| (-294 (-205)))
+ (|:| -1767 (-1013 (-781 (-205)))) (|:| |abserr| (-205))
+ (|:| |relerr| (-205))))
+ (-5 *2
+ (-2
+ (|:| |endPointContinuity|
+ (-3 (|:| |continuous| "Continuous at the end points")
+ (|:| |lowerSingular|
+ "There is a singularity at the lower end point")
+ (|:| |upperSingular|
+ "There is a singularity at the upper end point")
+ (|:| |bothSingular|
+ "There are singularities at both end points")
+ (|:| |notEvaluated|
+ "End point continuity not yet evaluated")))
+ (|:| |singularitiesStream|
+ (-3 (|:| |str| (-1070 (-205)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -1767
+ (-3 (|:| |finite| "The range is finite")
+ (|:| |lowerInfinite| "The bottom of range is infinite")
+ (|:| |upperInfinite| "The top of range is infinite")
+ (|:| |bothInfinite|
+ "Both top and bottom points are infinite")
+ (|:| |notEvaluated| "Range not yet evaluated")))))
+ (-5 *1 (-520)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-525)) (-5 *4 (-631 (-205))) (-5 *2 (-964))
+ (-5 *1 (-697)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-589 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
- (-5 *1 (-540 *3)) (-4 *3 (-339)))))
-(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1056)) (-5 *3 (-133)) (-5 *2 (-108)))))
+ (-12 (-4 *1 (-1133 *3 *2)) (-4 *3 (-975)) (-4 *2 (-1162 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-860))
+ (-5 *2
+ (-2 (|:| |brans| (-591 (-591 (-876 (-205)))))
+ (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))))
+ (-5 *1 (-144))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-860)) (-5 *4 (-385 (-525)))
+ (-5 *2
+ (-2 (|:| |brans| (-591 (-591 (-876 (-205)))))
+ (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))))
+ (-5 *1 (-144))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *2
+ (-2 (|:| |brans| (-591 (-591 (-876 (-205)))))
+ (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))))
+ (-5 *1 (-144)) (-5 *3 (-591 (-876 (-205))))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *2
+ (-2 (|:| |brans| (-591 (-591 (-876 (-205)))))
+ (|:| |xValues| (-1013 (-205))) (|:| |yValues| (-1013 (-205)))))
+ (-5 *1 (-144)) (-5 *3 (-591 (-591 (-876 (-205)))))))
+ ((*1 *1 *2) (-12 (-5 *2 (-591 (-1013 (-357)))) (-5 *1 (-242))))
+ ((*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-242)))))
+(((*1 *2 *1 *1)
+ (|partial| -12 (-4 *1 (-989 *3 *4 *5)) (-4 *3 (-975)) (-4 *4 (-734))
+ (-4 *5 (-788)) (-5 *2 (-108)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-292 *3)) (-4 *3 (-13 (-973) (-786)))
- (-5 *1 (-201 *3 *4)) (-14 *4 (-589 (-1087))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1123)) (-4 *4 (-349 *3))
- (-4 *5 (-349 *3)) (-5 *2 (-523))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6 *7)) (-4 *5 (-973))
- (-4 *6 (-216 *4 *5)) (-4 *7 (-216 *3 *5)) (-5 *2 (-523)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-591 *3)) (-4 *3 (-973))
- (-5 *1 (-654 *3 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-973)) (-5 *1 (-773 *3)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-589 (-883 *3))) (-4 *3 (-427))
- (-5 *1 (-336 *3 *4)) (-14 *4 (-589 (-1087)))))
- ((*1 *2 *2)
- (|partial| -12 (-5 *2 (-589 (-719 *3 (-796 *4)))) (-4 *3 (-427))
- (-14 *4 (-589 (-1087))) (-5 *1 (-574 *3 *4)))))
+ (-12 (-5 *2 (-854)) (-5 *1 (-143 *3 *4 *5)) (-14 *3 *2)
+ (-4 *4 (-341)) (-14 *5 (-924 *3 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-973)) (-5 *2 (-523)) (-5 *1 (-418 *4 *3 *5))
- (-4 *3 (-1145 *4))
- (-4 *5 (-13 (-380) (-964 *4) (-339) (-1109) (-261))))))
+ (-12 (-5 *2 (-591 (-1072))) (-5 *1 (-770)) (-5 *3 (-1072)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1036)) (-5 *1 (-308)))))
+(((*1 *1 *1 *1) (-4 *1 (-119))) ((*1 *1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *1 *1) (-4 *1 (-899))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-874 *3) (-874 *3))) (-5 *1 (-161 *3))
- (-4 *3 (-13 (-339) (-1109) (-930))))))
-(((*1 *1 *1) (-5 *1 (-794))))
+ (-12 (-5 *3 (-591 *5)) (-4 *5 (-408 *4)) (-4 *4 (-13 (-788) (-517)))
+ (-5 *2 (-796)) (-5 *1 (-31 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1037 *2)) (-4 *2 (-1125)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-788) (-429))) (-5 *1 (-1117 *3 *2))
+ (-4 *2 (-13 (-408 *3) (-1111))))))
+(((*1 *1 *1 *1) (-4 *1 (-119))) ((*1 *1 *1 *1) (-5 *1 (-796)))
+ ((*1 *1 *1 *1) (-4 *1 (-899))))
(((*1 *2 *3)
- (-12 (-5 *3 (-589 *2)) (-4 *2 (-406 *4)) (-5 *1 (-145 *4 *2))
- (-4 *4 (-13 (-786) (-515))))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-523)) (-5 *1 (-520)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-49 *2 *3)) (-4 *2 (-973)) (-14 *3 (-589 (-1087)))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-201 *2 *3)) (-4 *2 (-13 (-973) (-786)))
- (-14 *3 (-589 (-1087))))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-589 (-1083 *4))) (-5 *3 (-1083 *4))
- (-4 *4 (-840)) (-5 *1 (-606 *4)))))
+ (|partial| -12 (-5 *3 (-885 *4)) (-4 *4 (-975)) (-4 *4 (-566 *2))
+ (-5 *2 (-357)) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-885 *5)) (-5 *4 (-854)) (-4 *5 (-975))
+ (-4 *5 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-385 (-885 *4))) (-4 *4 (-517))
+ (-4 *4 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-385 (-885 *5))) (-5 *4 (-854)) (-4 *5 (-517))
+ (-4 *5 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-294 *4)) (-4 *4 (-517)) (-4 *4 (-788))
+ (-4 *4 (-566 *2)) (-5 *2 (-357)) (-5 *1 (-726 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-294 *5)) (-5 *4 (-854)) (-4 *5 (-517))
+ (-4 *5 (-788)) (-4 *5 (-566 *2)) (-5 *2 (-357))
+ (-5 *1 (-726 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-738 *2)) (-4 *2 (-160)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-591 (-501))) (-5 *2 (-1089)) (-5 *1 (-501)))))
(((*1 *2)
- (-12 (-4 *1 (-318 *3 *4 *5)) (-4 *3 (-1127)) (-4 *4 (-1145 *3))
- (-4 *5 (-1145 (-383 *4))) (-5 *2 (-629 (-383 *4))))))
-(((*1 *2 *3) (-12 (-5 *3 (-292 (-203))) (-5 *2 (-108)) (-5 *1 (-244)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-634 *3)) (-4 *3 (-1016))
- (-5 *2 (-589 (-2 (|:| -2746 *3) (|:| -2452 (-710))))))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *2 (-589 (-1083 *7))) (-5 *3 (-1083 *7))
- (-4 *7 (-880 *5 *6 *4)) (-4 *5 (-840)) (-4 *6 (-732))
- (-4 *4 (-786)) (-5 *1 (-837 *5 *6 *4 *7)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-523)) (-4 *1 (-55 *4 *3 *5)) (-4 *4 (-1123))
- (-4 *3 (-349 *4)) (-4 *5 (-349 *4)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-589 (-51))) (-5 *1 (-823 *3)) (-4 *3 (-1016)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-548 *2)) (-4 *2 (-37 (-383 (-523)))) (-4 *2 (-973)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-5 *1 (-808 *2)) (-4 *2 (-1123))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-5 *1 (-810 *2)) (-4 *2 (-1123))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-710)) (-5 *1 (-813 *2)) (-4 *2 (-1123)))))
-(((*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10)
- (-12 (-5 *4 (-523)) (-5 *5 (-1070)) (-5 *6 (-629 (-203)))
- (-5 *7 (-3 (|:| |fn| (-364)) (|:| |fp| (-87 G))))
- (-5 *8 (-3 (|:| |fn| (-364)) (|:| |fp| (-84 FCN))))
- (-5 *9 (-3 (|:| |fn| (-364)) (|:| |fp| (-69 PEDERV))))
- (-5 *10 (-3 (|:| |fn| (-364)) (|:| |fp| (-86 OUTPUT))))
- (-5 *3 (-203)) (-5 *2 (-962)) (-5 *1 (-689)))))
-(((*1 *2 *1) (-12 (-4 *1 (-325)) (-5 *2 (-108))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1083 *4)) (-4 *4 (-325)) (-5 *2 (-108))
- (-5 *1 (-333 *4)))))
-((-1200 . 726016) (-1201 . 725629) (-1202 . 725411) (-1203 . 725326)
- (-1204 . 725244) (-1205 . 725121) (-1206 . 724928) (-1207 . 724813)
- (-1208 . 724739) (-1209 . 724605) (-1210 . 724484) (-1211 . 724303)
- (-1212 . 724248) (-1213 . 724136) (-1214 . 724105) (-1215 . 723991)
- (-1216 . 723835) (-1217 . 723577) (-1218 . 723397) (-1219 . 723153)
- (-1220 . 723035) (-1221 . 722961) (-1222 . 722842) (-1223 . 722582)
- (-1224 . 722336) (-1225 . 722283) (-1226 . 722124) (-1227 . 721689)
- (-1228 . 721576) (-1229 . 721438) (-1230 . 720948) (-1231 . 720833)
- (-1232 . 720542) (-1233 . 720382) (-1234 . 718807) (-1235 . 718670)
- (-1236 . 718506) (-1237 . 718340) (-1238 . 718231) (-1239 . 718050)
- (-1240 . 717911) (-1241 . 717552) (-1242 . 717357) (-1243 . 717270)
- (-1244 . 716928) (-1245 . 716854) (-1246 . 716405) (-1247 . 716135)
- (-1248 . 716039) (-1249 . 715939) (-1250 . 715840) (-1251 . 715630)
- (-1252 . 715315) (-1253 . 715113) (-1254 . 714834) (-1255 . 714398)
- (-1256 . 714023) (-1257 . 713957) (-1258 . 713527) (-1259 . 713418)
- (-1260 . 711656) (-1261 . 711296) (-1262 . 711229) (-1263 . 711198)
- (-1264 . 711142) (-1265 . 710342) (-1266 . 710254) (-1267 . 710180)
- (-1268 . 710152) (-1269 . 709933) (-1270 . 709850) (-1271 . 709534)
- (-1272 . 709449) (-1273 . 708927) (-1274 . 708632) (-1275 . 708479)
- (-1276 . 707474) (-1277 . 707265) (-1278 . 707022) (-1279 . 706864)
- (-1280 . 706717) (-1281 . 706608) (-1282 . 706485) (-1283 . 706278)
- (-1284 . 706111) (-1285 . 705847) (-1286 . 705716) (-1287 . 705492)
- (-1288 . 705394) (-1289 . 705352) (-1290 . 705200) (-1291 . 705033)
- (-1292 . 704959) (-1293 . 704840) (-1294 . 704768) (-1295 . 704685)
- (-1296 . 704611) (-1297 . 704516) (-1298 . 704377) (-1299 . 703891)
- (-1300 . 703785) (-1301 . 703687) (-1302 . 703498) (-1303 . 703446)
- (-1304 . 702631) (-1305 . 702328) (-1306 . 702129) (-1307 . 702030)
- (-1308 . 701751) (-1309 . 701609) (-1310 . 700961) (-1311 . 700626)
- (-1312 . 700458) (-1313 . 700167) (-1314 . 700011) (-1315 . 699925)
- (-1316 . 699816) (-1317 . 699431) (-1318 . 699305) (-1319 . 699185)
- (-1320 . 699132) (-1321 . 698995) (-1322 . 698939) (-1323 . 698905)
- (-1324 . 698675) (-1325 . 698532) (-1326 . 698364) (-1327 . 698218)
- (-1328 . 697902) (-1329 . 697514) (-1330 . 697125) (-1331 . 696989)
- (-1332 . 696921) (-1333 . 696800) (-1334 . 696678) (-1335 . 696650)
- (-1336 . 696497) (-1337 . 696431) (-1338 . 696403) (-1339 . 696193)
- (-1340 . 696136) (-1341 . 696029) (-1342 . 695899) (-1343 . 695639)
- (-1344 . 695477) (-1345 . 695187) (-1346 . 695007) (-1347 . 694829)
- (-1348 . 694513) (-1349 . 690525) (-1350 . 690436) (-1351 . 690299)
- (-1352 . 690025) (-1353 . 689775) (-1354 . 689690) (-1355 . 689624)
- (-1356 . 689542) (-1357 . 688362) (-1358 . 688200) (-1359 . 687402)
- (-1360 . 687258) (-1361 . 686072) (-1362 . 686020) (-1363 . 685862)
- (-1364 . 685771) (-1365 . 685712) (-1366 . 685603) (-1367 . 685474)
- (-1368 . 685379) (-1369 . 685285) (-1370 . 685055) (-1371 . 684989)
- (-1372 . 684836) (-1373 . 684698) (-1374 . 684625) (-1375 . 684557)
- (-1376 . 684402) (-1377 . 684322) (-1378 . 684248) (-1379 . 684131)
- (-1380 . 683028) (-1381 . 682922) (-1382 . 682770) (-1383 . 682682)
- (-1384 . 682389) (-1385 . 682323) (-1386 . 682220) (-1387 . 681873)
- (-1388 . 681742) (-1389 . 681665) (-1390 . 681613) (-1391 . 681558)
- (-1392 . 681314) (-1393 . 681220) (-1394 . 681168) (-1395 . 681116)
- (-1396 . 680658) (-1397 . 680348) (-1398 . 679551) (-1399 . 679416)
- (-1400 . 679348) (-1401 . 679277) (-1402 . 679146) (-1403 . 679068)
- (-1404 . 678925) (-1405 . 678829) (-1406 . 678728) (-1407 . 678669)
- (-1408 . 678404) (-1409 . 678281) (-1410 . 678145) (-1411 . 678068)
- (-1412 . 677845) (-1413 . 677772) (-1414 . 677672) (-1415 . 677340)
- (-1416 . 677266) (-1417 . 677203) (-1418 . 677118) (-1419 . 677034)
- (-1420 . 675588) (-1421 . 675427) (-1422 . 675048) (-1423 . 674969)
- (-1424 . 674862) (-1425 . 674790) (-1426 . 674695) (-1427 . 674579)
- (-1428 . 674408) (-1429 . 674356) (-1430 . 674056) (-1431 . 674003)
- (-1432 . 673918) (-1433 . 673714) (-1434 . 673593) (-1435 . 673483)
- (-1436 . 672848) (-1437 . 672725) (-1438 . 672200) (-1439 . 672091)
- (-1440 . 671844) (-1441 . 671627) (-1442 . 671024) (-1443 . 670971)
- (-1444 . 670903) (-1445 . 670810) (-1446 . 670651) (-1447 . 667870)
- (-1448 . 667774) (-1449 . 667722) (-1450 . 667648) (-1451 . 667562)
- (-1452 . 667158) (-1453 . 667105) (-1454 . 666470) (-1455 . 666442)
- (-1456 . 666224) (-1457 . 666031) (-1458 . 665852) (-1459 . 665726)
- (-1460 . 665561) (-1461 . 665417) (-1462 . 665276) (-1463 . 664943)
- (-1464 . 664883) (-1465 . 664754) (-1466 . 664596) (-1467 . 664357)
- (-1468 . 664284) (-1469 . 664225) (-1470 . 664172) (-1471 . 664101)
- (-1472 . 663919) (-1473 . 663691) (-1474 . 663573) (-1475 . 663253)
- (-1476 . 663076) (-1477 . 663004) (-1478 . 662919) (-1479 . 662851)
- (-1480 . 662530) (-1481 . 662445) (-1482 . 661380) (-1483 . 661250)
- (-1484 . 660946) (-1485 . 660846) (-1486 . 660759) (-1487 . 658659)
- (-1488 . 658232) (-1489 . 658155) (-1490 . 657405) (-1491 . 657086)
- (-1492 . 656685) (-1493 . 656611) (-1494 . 656451) (-1495 . 656327)
- (-1496 . 656299) (-1497 . 656188) (-1498 . 656091) (-1499 . 655962)
- (-1500 . 653715) (-1501 . 653562) (-1502 . 648463) (-1503 . 648348)
- (-1504 . 648158) (-1505 . 648034) (-1506 . 647978) (-1507 . 647912)
- (-1508 . 647829) (-1509 . 647719) (-1510 . 647594) (-1511 . 647321)
- (-1512 . 647225) (-1513 . 647172) (-1514 . 647119) (-1515 . 646866)
- (-1516 . 646767) (-1517 . 646712) (-1518 . 646618) (-1519 . 646460)
- (-1520 . 646426) (-1521 . 646319) (-1522 . 645807) (-1523 . 645727)
- (-1524 . 645659) (-1525 . 645554) (-1526 . 645520) (-1527 . 645435)
- (-1528 . 645332) (-1529 . 645240) (-1530 . 645209) (-1531 . 645115)
- (-1532 . 645012) (-1533 . 644942) (-1534 . 644852) (-1535 . 644754)
- (-1536 . 644483) (-1537 . 644430) (-1538 . 644345) (-1539 . 644243)
- (-1540 . 644191) (-1541 . 644090) (-1542 . 643981) (-1543 . 643908)
- (-1544 . 643834) (-1545 . 643368) (-1546 . 643261) (-1547 . 643191)
- (-1548 . 643139) (-1549 . 643042) (-1550 . 642968) (-1551 . 642084)
- (-1552 . 642001) (-1553 . 641920) (-1554 . 641862) (-1555 . 641717)
- (-1556 . 640467) (-1557 . 640286) (-1558 . 640201) (-1559 . 640092)
- (-1560 . 640040) (-1561 . 639225) (-1562 . 639124) (-1563 . 638716)
- (-1564 . 637680) (-1565 . 637418) (-1566 . 637320) (-1567 . 637179)
- (-1568 . 637111) (-1569 . 636540) (-1570 . 636382) (-1571 . 636236)
- (-1572 . 636115) (-1573 . 636021) (-1574 . 635802) (-1575 . 635674)
- (-1576 . 635597) (-1577 . 635491) (-1578 . 635420) (-1579 . 634996)
- (-1580 . 634669) (-1581 . 634588) (-1582 . 634337) (-1583 . 634027)
- (-1584 . 633974) (-1585 . 633889) (-1586 . 632708) (-1587 . 632336)
- (-1588 . 632195) (-1589 . 632070) (-1590 . 631971) (-1591 . 631755)
- (-1592 . 631670) (-1593 . 631638) (-1594 . 631529) (-1595 . 631460)
- (-1596 . 631389) (-1597 . 631231) (-1598 . 630526) (-1599 . 630340)
- (-1600 . 629629) (-1601 . 629501) (-1602 . 629398) (-1603 . 629289)
- (-1604 . 629202) (-1605 . 629146) (-1606 . 628061) (-1607 . 627978)
- (-1608 . 627909) (-1609 . 627810) (-1610 . 627702) (-1611 . 627087)
- (-1612 . 626492) (-1613 . 626419) (-1614 . 626332) (-1615 . 626253)
- (-1616 . 626102) (-1617 . 625896) (-1618 . 625689) (-1619 . 625533)
- (-1620 . 625426) (-1621 . 624911) (-1622 . 624550) (-1623 . 624478)
- (-1624 . 624375) (-1625 . 623423) (-1626 . 623316) (-1627 . 623245)
- (-1628 . 623193) (-1629 . 623137) (-1630 . 623019) (-1631 . 622967)
- (-1632 . 622814) (-1633 . 622731) (-1634 . 622626) (-1635 . 622541)
- (-1636 . 622194) (-1637 . 622066) (-1638 . 621813) (-1639 . 621310)
- (-1640 . 621114) (-1641 . 620901) (-1642 . 620848) (-1643 . 620667)
- (-1644 . 620599) (-1645 . 620437) (-1646 . 620363) (-1647 . 619999)
- (-1648 . 619933) (-1649 . 619792) (-1650 . 619737) (-1651 . 618833)
- (-1652 . 618680) (-1653 . 618561) (-1654 . 618454) (-1655 . 618234)
- (-1656 . 618049) (-1657 . 617966) (-1658 . 617881) (-1659 . 617395)
- (-1660 . 616978) (-1661 . 616595) (-1662 . 616379) (-1663 . 616260)
- (-1664 . 615458) (-1665 . 615287) (-1666 . 615163) (-1667 . 614918)
- (-1668 . 614827) (-1669 . 614748) (-1670 . 614391) (-1671 . 614335)
- (-1672 . 614163) (-1673 . 614050) (-1674 . 613938) (-1675 . 613834)
- (-1676 . 613691) (-1677 . 613607) (-1678 . 613474) (-1679 . 609314)
- (-1680 . 609248) (-1681 . 609153) (-1682 . 609042) (-1683 . 608940)
- (-1684 . 608821) (-1685 . 608666) (-1686 . 608494) (-1687 . 608324)
- (-1688 . 607976) (-1689 . 607808) (-1690 . 607556) (-1691 . 607379)
- (-1692 . 607235) (-1693 . 607177) (-1694 . 607143) (-1695 . 607060)
- (-1696 . 605720) (-1697 . 605550) (-1698 . 604694) (-1699 . 604628)
- (-1700 . 604456) (-1701 . 604376) (-1702 . 604119) (-1703 . 603984)
- (-1704 . 603931) (-1705 . 603848) (-1706 . 603520) (-1707 . 603326)
- (-1708 . 603102) (-1709 . 603053) (-1710 . 602969) (-1711 . 602636)
- (-1712 . 602549) (-1713 . 602361) (-1714 . 602189) (-1715 . 602057)
- (-1716 . 601933) (-1717 . 601807) (-1718 . 601648) (-1719 . 601561)
- (-1720 . 601493) (-1721 . 601416) (-1722 . 600764) (-1723 . 600648)
- (-1724 . 600596) (-1725 . 600506) (-1726 . 600423) (-1727 . 599459)
- (-1728 . 599235) (-1729 . 599201) (-1730 . 599118) (-1731 . 599062)
- (-1732 . 598760) (-1733 . 598657) (-1734 . 598567) (-1735 . 598480)
- (-1736 . 598452) (-1737 . 598357) (-1738 . 598291) (-1739 . 597892)
- (-1740 . 597752) (-1741 . 597658) (-1742 . 597533) (-1743 . 597404)
- (-1744 . 597285) (-1745 . 596968) (-1746 . 596931) (-1747 . 596775)
- (-1748 . 596625) (-1749 . 596573) (-1750 . 596506) (-1751 . 596423)
- (-1752 . 596275) (-1753 . 596071) (-1754 . 595856) (-1755 . 595799)
- (-1756 . 595611) (-1757 . 595471) (-1758 . 595418) (-1759 . 595307)
- (-1760 . 595036) (-1761 . 594935) (-1762 . 594489) (-1763 . 594313)
- (-1764 . 593873) (-1765 . 593800) (-1766 . 593583) (-1767 . 593523)
- (-1768 . 593408) (-1769 . 593239) (-1770 . 593072) (-1771 . 592947)
- (-1772 . 592752) (-1773 . 592651) (-1774 . 592578) (-1775 . 592320)
- (-1776 . 591937) (-1777 . 591406) (-1778 . 591304) (-1779 . 591197)
- (-1780 . 591081) (-1781 . 590997) (-1782 . 590915) (-1783 . 590843)
- (-1784 . 590735) (-1785 . 590617) (-1786 . 590511) (-1787 . 590359)
- (-1788 . 590229) (-1789 . 590085) (-1790 . 589922) (-1791 . 589867)
- (-1792 . 589365) (-1793 . 589277) (-1794 . 589157) (-1795 . 588574)
- (-1796 . 588503) (-1797 . 588357) (-1798 . 588262) (-1799 . 588153)
- (-1800 . 588095) (-1801 . 587998) (-1802 . 587945) (-1803 . 587783)
- (-1804 . 587451) (-1805 . 587308) (-1806 . 587168) (-1807 . 587109)
- (-1808 . 586887) (-1809 . 586607) (-1810 . 586515) (-1811 . 586318)
- (-1812 . 586287) (-1813 . 586213) (-1814 . 586144) (-1815 . 586057)
- (-1816 . 585211) (-1817 . 584953) (-1818 . 584800) (-1819 . 584748)
- (-1820 . 584663) (-1821 . 584492) (-1822 . 584399) (-1823 . 584290)
- (-1824 . 584157) (-1825 . 584012) (-1826 . 583932) (-1827 . 583838)
- (-1828 . 583663) (-1829 . 583572) (-1830 . 579962) (-1831 . 579890)
- (-1832 . 579791) (-1833 . 579714) (-1834 . 579538) (-1835 . 579486)
- (-1836 . 579338) (-1837 . 578991) (-1838 . 578877) (-1839 . 578778)
- (-1840 . 578722) (-1841 . 578587) (-1842 . 578387) (-1843 . 577941)
- (-1844 . 577857) (-1845 . 577723) (-1846 . 577558) (-1847 . 576348)
- (-1848 . 576261) (-1849 . 576155) (-1850 . 575975) (-1851 . 575818)
- (-1852 . 575580) (-1853 . 575473) (-1854 . 575303) (-1855 . 575226)
- (-1856 . 574921) (-1857 . 574848) (-1858 . 574788) (-1859 . 574689)
- (-1860 . 574443) (-1861 . 574378) (-1862 . 574308) (-1863 . 574069)
- (-1864 . 573939) (-1865 . 573829) (-1866 . 573565) (-1867 . 573410)
- (-1868 . 573307) (-1869 . 572564) (-1870 . 572509) (-1871 . 572456)
- (-1872 . 572419) (-1873 . 572334) (-1874 . 572164) (-1875 . 571960)
- (-1876 . 571905) (-1877 . 571666) (-1878 . 571602) (-1879 . 571288)
- (-1880 . 571183) (-1881 . 571090) (-1882 . 570919) (-1883 . 570792)
- (-1884 . 570471) (-1885 . 570419) (-1886 . 570320) (-1887 . 570194)
- (-1888 . 569814) (-1889 . 569503) (-1890 . 569420) (-1891 . 569243)
- (-1892 . 569169) (-1893 . 569085) (-1894 . 568564) (-1895 . 568375)
- (-1896 . 568302) (-1897 . 568097) (-1898 . 567925) (-1899 . 567763)
- (-1900 . 567692) (-1901 . 567579) (-1902 . 567294) (-1903 . 567165)
- (-1904 . 566558) (-1905 . 566444) (-1906 . 566278) (-1907 . 566225)
- (-1908 . 566131) (-1909 . 566046) (-1910 . 565467) (-1911 . 565177)
- (-1912 . 564899) (-1913 . 564660) (-1914 . 564579) (-1915 . 564390)
- (-1916 . 564203) (-1917 . 563878) (-1918 . 563701) (-1919 . 563322)
- (-1920 . 563213) (-1921 . 563129) (-1922 . 563044) (-1923 . 562389)
- (-1924 . 562304) (-1925 . 562251) (-1926 . 562198) (-1927 . 562164)
- (-1928 . 562086) (-1929 . 562006) (-1930 . 561849) (-1931 . 561797)
- (-1932 . 561360) (-1933 . 561233) (-1934 . 561177) (-1935 . 561104)
- (-1936 . 560602) (-1937 . 560273) (-1938 . 560083) (-1939 . 559852)
- (-1940 . 559824) (-1941 . 559687) (-1942 . 559262) (-1943 . 558433)
- (-1944 . 558231) (-1945 . 558150) (-1946 . 557386) (-1947 . 557010)
- (-1948 . 556342) (-1949 . 555867) (-1950 . 555730) (-1951 . 555643)
- (-1952 . 555609) (-1953 . 555377) (-1954 . 555316) (-1955 . 555202)
- (-1956 . 554206) (-1957 . 554122) (-1958 . 553868) (-1959 . 553787)
- (-1960 . 553737) (-1961 . 553644) (-1962 . 553478) (-1963 . 553292)
- (-1964 . 553219) (-1965 . 553114) (-1966 . 553065) (-1967 . 552870)
- (-1968 . 552284) (-1969 . 552171) (-1970 . 552076) (-1971 . 552048)
- (-1972 . 551826) (-1973 . 551221) (-1974 . 551119) (-1975 . 550998)
- (-1976 . 550868) (-1977 . 550701) (-1978 . 550597) (-1979 . 550445)
- (-1980 . 550376) (-1981 . 550212) (-1982 . 549802) (-1983 . 549571)
- (-1984 . 549301) (-1985 . 549152) (-1986 . 549057) (-1987 . 548977)
- (-1988 . 548818) (-1989 . 548748) (-1990 . 548625) (-1991 . 548573)
- (-1992 . 548463) (-1993 . 548023) (-1994 . 547777) (-1995 . 547204)
- (-1996 . 541887) (-1997 . 541835) (-1998 . 541725) (-1999 . 541654)
- (-2000 . 541439) (-2001 . 541344) (-2002 . 541209) (-2003 . 540914)
- (-2004 . 540803) (-2005 . 540510) (-2006 . 538792) (-2007 . 538733)
- (-2008 . 538592) (-2009 . 538458) (-2010 . 538337) (-2011 . 538199)
- (-2012 . 538112) (-2013 . 537970) (-2014 . 537904) (-2015 . 537665)
- (-2016 . 537371) (-2017 . 537291) (-2018 . 537241) (-2019 . 537188)
- (-2020 . 536773) (-2021 . 536446) (-2022 . 536372) (-2023 . 536246)
- (-2024 . 536166) (-2025 . 536110) (-2026 . 536016) (-2027 . 535923)
- (-2028 . 535779) (-2029 . 535706) (-2030 . 535597) (-2031 . 535520)
- (-2032 . 535270) (-2033 . 535148) (-2034 . 534597) (-2035 . 533232)
- (-2036 . 533160) (-2037 . 532934) (-2038 . 532818) (-2039 . 532738)
- (-2040 . 532707) (-2041 . 532592) (-2042 . 532423) (-2043 . 532349)
- (-2044 . 532140) (-2045 . 532106) (-2046 . 531348) (-2047 . 531168)
- (-2048 . 530981) (-2049 . 530878) (-2050 . 530550) (-2051 . 530496)
- (-2052 . 530187) (-2053 . 530126) (-2054 . 530058) (-2055 . 530030)
- (-2056 . 528930) (-2057 . 528862) (-2058 . 528551) (-2059 . 528478)
- (-2060 . 528381) (-2061 . 528270) (-2062 . 527033) (-2063 . 526688)
- (-2064 . 526152) (-2065 . 526118) (-2066 . 525951) (-2067 . 525867)
- (-2068 . 525782) (-2069 . 525678) (-2070 . 525460) (-2071 . 525257)
- (-2072 . 525106) (-2073 . 524745) (-2074 . 524494) (-2075 . 524428)
- (-2076 . 524254) (-2077 . 524159) (-2078 . 523965) (-2079 . 523866)
- (-2080 . 523551) (-2081 . 522803) (-2082 . 522408) (-2083 . 522229)
- (-2084 . 522201) (-2085 . 522132) (-2086 . 522047) (-2087 . 521626)
- (-2088 . 521546) (-2089 . 521429) (-2090 . 521309) (-2091 . 521207)
- (-2092 . 521135) (-2093 . 521080) (-2094 . 520979) (-2095 . 520608)
- (-2096 . 520293) (-2097 . 519128) (-2098 . 518970) (-2099 . 518852)
- (-2100 . 518784) (-2101 . 518755) (-2102 . 518511) (-2103 . 518174)
- (-2104 . 518122) (-2105 . 516852) (-2106 . 516803) (-2107 . 516740)
- (-2108 . 516496) (-2109 . 516366) (-2110 . 516288) (-2111 . 516233)
- (-2112 . 516159) (-2113 . 516075) (-2114 . 515972) (-2115 . 515895)
- (-2116 . 515786) (-2117 . 515678) (-2118 . 515382) (-2119 . 515288)
- (-2120 . 515169) (-2121 . 515091) (-2122 . 515057) (-2123 . 514986)
- (-2124 . 514905) (-2125 . 514683) (-2126 . 514490) (-2127 . 514283)
- (-2128 . 514128) (-2129 . 513820) (-2130 . 513770) (-2131 . 513742)
- (-2132 . 513417) (-2133 . 513322) (-2134 . 513081) (-2135 . 512926)
- (-2136 . 512774) (-2137 . 512661) (-2138 . 512509) (-2139 . 512443)
- (-2140 . 511985) (-2141 . 511934) (-2142 . 511903) (-2143 . 511808)
- (-2144 . 511204) (-2145 . 510795) (-2146 . 510721) (-2147 . 510614)
- (-2148 . 510176) (-2149 . 509754) (-2150 . 509392) (-2151 . 509179)
- (-2152 . 508658) (-2153 . 508565) (-2154 . 508382) (-2155 . 507995)
- (-2156 . 507873) (-2157 . 507768) (-2158 . 507638) (-2159 . 507425)
- (-2160 . 507310) (-2161 . 506958) (-2162 . 506905) (-2163 . 506808)
- (-2164 . 506109) (-2165 . 506001) (-2166 . 505867) (-2167 . 505092)
- (-2168 . 504870) (-2169 . 504763) (-2170 . 504586) (-2171 . 503909)
- (-2172 . 503795) (-2173 . 503737) (-2174 . 503360) (-2175 . 503195)
- (-2176 . 503091) (-2177 . 503035) (-2178 . 502877) (-2179 . 502849)
- (-2180 . 502665) (-2181 . 502572) (-2182 . 502519) (-2183 . 502432)
- (-2184 . 502362) (-2185 . 502172) (-2186 . 502116) (-2187 . 502050)
- (-2188 . 501785) (-2189 . 501732) (-2190 . 500894) (-2191 . 500727)
- (-2192 . 500598) (-2193 . 500491) (-2194 . 500382) (-2195 . 500275)
- (-2196 . 500201) (-2197 . 500106) (-2198 . 500055) (-2199 . 499971)
- (-2200 . 499898) (-2201 . 499818) (-2202 . 499745) (-2203 . 499490)
- (-2204 . 499462) (-2205 . 499091) (-2206 . 498431) (-2207 . 498316)
- (-2208 . 498126) (-2209 . 497968) (-2210 . 497587) (-2211 . 497422)
- (-2212 . 497257) (-2213 . 496666) (-2214 . 496589) (-2215 . 496524)
- (-2216 . 496265) (-2217 . 495958) (-2218 . 495434) (-2219 . 495290)
- (-2220 . 495150) (-2221 . 494906) (-2222 . 494832) (-2223 . 494661)
- (-2224 . 490599) (-2225 . 490428) (-2226 . 490335) (-2227 . 490006)
- (-2228 . 489895) (-2229 . 489812) (-2230 . 489752) (-2231 . 489153)
- (-2232 . 489059) (-2233 . 488992) (-2234 . 488827) (-2235 . 488690)
- (-2236 . 488638) (-2237 . 488567) (-2238 . 488510) (-2239 . 488201)
- (-2240 . 488108) (-2241 . 487967) (-2242 . 487853) (-2243 . 487746)
- (-2244 . 487608) (-2245 . 487475) (-2246 . 487441) (-2247 . 487120)
- (-2248 . 486811) (-2249 . 486686) (-2250 . 486579) (-2251 . 486484)
- (-2252 . 486413) (-2253 . 486223) (-2254 . 485892) (-2255 . 485754)
- (-2256 . 485634) (-2257 . 485513) (-2258 . 483168) (-2259 . 483105)
- (-2260 . 482952) (-2261 . 482855) (-2262 . 481608) (-2263 . 481492)
- (-2264 . 481310) (-2265 . 481203) (-2266 . 481133) (-2267 . 480754)
- (-2268 . 480677) (-2269 . 480462) (-2270 . 480319) (-2271 . 479987)
- (-2272 . 479838) (-2273 . 479783) (-2274 . 479647) (-2275 . 479292)
- (-2276 . 478994) (-2277 . 478619) (-2278 . 478452) (-2279 . 477751)
- (-2280 . 477640) (-2281 . 477567) (-2282 . 477498) (-2283 . 477380)
- (-2284 . 476908) (-2285 . 476568) (-2286 . 476426) (-2287 . 476346)
- (-2288 . 476220) (-2289 . 476111) (-2290 . 476013) (-2291 . 475958)
- (-2292 . 475796) (-2293 . 475716) (-2294 . 475537) (-2295 . 475176)
- (-2296 . 474877) (-2297 . 474724) (-2298 . 474607) (-2299 . 474436)
- (-2300 . 474217) (-2301 . 474088) (-2302 . 473883) (-2303 . 473664)
- (-2304 . 473604) (-2305 . 473427) (-2306 . 473362) (-2307 . 472690)
- (-2308 . 472631) (-2309 . 472509) (-2310 . 472116) (-2311 . 470164)
- (-2312 . 470103) (-2313 . 469907) (-2314 . 469566) (-2315 . 469538)
- (-2316 . 469486) (-2317 . 469425) (-2318 . 468756) (-2319 . 468539)
- (-2320 . 468489) (-2321 . 468439) (-2322 . 468352) (-2323 . 468296)
- (-2324 . 468119) (-2325 . 468025) (-2326 . 467834) (-2327 . 467727)
- (-2328 . 467624) (-2329 . 467408) (-2330 . 466388) (-2331 . 466281)
- (-2332 . 466150) (-2333 . 465819) (-2334 . 465753) (-2335 . 465646)
- (-2336 . 465558) (-2337 . 465331) (-2338 . 465193) (-2339 . 464648)
- (-2340 . 464446) (-2341 . 464284) (-2342 . 464211) (-2343 . 464020)
- (-2344 . 463904) (-2345 . 463774) (-2346 . 463701) (-2347 . 463477)
- (-2348 . 462854) (-2349 . 462798) (-2350 . 462378) (-2351 . 462269)
- (-2352 . 462168) (-2353 . 462015) (-2354 . 461527) (-2355 . 461411)
- (-2356 . 460811) (-2357 . 460683) (-2358 . 460512) (-2359 . 460214)
- (-2360 . 459460) (-2361 . 459252) (-2362 . 459097) (-2363 . 458953)
- (-2364 . 458830) (-2365 . 458757) (-2366 . 458616) (-2367 . 458524)
- (-2368 . 458417) (-2369 . 458316) (-2370 . 458243) (-2371 . 458146)
- (-2372 . 457990) (-2373 . 457886) (-2374 . 457777) (-2375 . 457619)
- (-2376 . 457393) (-2377 . 457294) (-2378 . 456848) (-2379 . 456629)
- (-2380 . 456239) (-2381 . 456187) (-2382 . 456031) (-2383 . 455981)
- (-2384 . 455631) (-2385 . 455576) (-2386 . 455292) (-2387 . 455240)
- (-2388 . 454942) (-2389 . 454666) (-2390 . 454614) (-2391 . 454560)
- (-2392 . 454504) (-2393 . 454208) (-2394 . 454146) (-2395 . 453902)
- (-2396 . 453807) (-2397 . 453704) (-2398 . 453204) (-2399 . 453019)
- (-2400 . 452651) (-2401 . 452485) (-2402 . 452331) (-2403 . 452279)
- (-2404 . 452217) (-2405 . 452082) (-2406 . 451872) (-2407 . 451351)
- (-2408 . 451143) (-2409 . 450999) (-2410 . 450814) (-2411 . 449622)
- (-2412 . 449382) (-2413 . 449228) (-2414 . 449174) (-2415 . 448933)
- (-2416 . 448754) (-2417 . 448647) (-2418 . 448421) (-2419 . 448342)
- (-2420 . 448259) (-2421 . 448200) (-2422 . 448059) (-2423 . 447943)
- (-2424 . 447730) (-2425 . 447597) (-2426 . 447483) (-2427 . 447424)
- (-2428 . 447087) (-2429 . 447034) (-2430 . 445879) (-2431 . 445604)
- (-2432 . 445551) (-2433 . 445387) (-2434 . 445287) (-2435 . 445089)
- (-2436 . 444986) (-2437 . 444934) (-2438 . 444597) (-2439 . 444476)
- (-2440 . 444179) (-2441 . 444010) (-2442 . 443885) (-2443 . 443739)
- (-2444 . 443655) (-2445 . 443585) (-2446 . 443394) (-2447 . 443271)
- (-2448 . 443065) (-2449 . 442912) (-2450 . 442826) (-2451 . 442730)
- (-2452 . 442491) (-2453 . 442371) (-2454 . 442305) (-2455 . 442226)
- (-2456 . 442000) (-2457 . 441844) (-2458 . 441760) (-2459 . 441244)
- (-2460 . 440870) (-2461 . 440791) (-2462 . 440523) (-2463 . 440431)
- (-2464 . 440250) (-2465 . 440135) (-2466 . 439644) (-2467 . 439616)
- (-2468 . 439563) (-2469 . 438708) (-2470 . 438603) (-2471 . 438230)
- (-2472 . 438138) (-2473 . 437972) (-2474 . 437919) (-2475 . 437365)
- (-2476 . 437282) (-2477 . 437119) (-2478 . 437068) (-2479 . 436997)
- (-2480 . 436911) (-2481 . 436834) (-2482 . 436706) (-2483 . 434454)
- (-2484 . 434391) (-2485 . 434032) (-2486 . 433935) (-2487 . 433861)
- (-2488 . 433790) (-2489 . 433311) (-2490 . 433182) (-2491 . 433049)
- (-2492 . 432953) (-2493 . 432868) (-2494 . 432737) (-2495 . 432664)
- (-2496 . 432478) (-2497 . 432383) (-2498 . 432354) (-2499 . 432247)
- (-2500 . 432194) (-2501 . 432097) (-2502 . 432069) (-2503 . 431958)
- (-2504 . 431569) (-2505 . 431517) (-2506 . 431391) (-2507 . 431336)
- (-2508 . 431267) (-2509 . 431099) (-2510 . 430969) (** . 427892)
- (-2512 . 427336) (-2513 . 427283) (-2514 . 427216) (-2515 . 427043)
- (-2516 . 426977) (-2517 . 426949) (-2518 . 426808) (-2519 . 426723)
- (-2520 . 426575) (-2521 . 426485) (-2522 . 426353) (-2523 . 425680)
- (-2524 . 425160) (-2525 . 425108) (-2526 . 425042) (-2527 . 424970)
- (-2528 . 424847) (-2529 . 424746) (-2530 . 424614) (-2531 . 424556)
- (-2532 . 424411) (-2533 . 424239) (-2534 . 423660) (-2535 . 423576)
- (-2536 . 423474) (-2537 . 423292) (-2538 . 423220) (-2539 . 423102)
- (-2540 . 423002) (-2541 . 422709) (-2542 . 422653) (-2543 . 422527)
- (-2544 . 422469) (-2545 . 422249) (-2546 . 422197) (-2547 . 421650)
- (-2548 . 421594) (-2549 . 421515) (-2550 . 421371) (-2551 . 421147)
- (-2552 . 421060) (-2553 . 420948) (-2554 . 420841) (-2555 . 420727)
- (-2556 . 420534) (-2557 . 420207) (-2558 . 420099) (-2559 . 420040)
- (-2560 . 419934) (-2561 . 419861) (-2562 . 419687) (-2563 . 419566)
- (-2564 . 419463) (-2565 . 419265) (-2566 . 418981) (-2567 . 418859)
- (-2568 . 418772) (-2569 . 418649) (-2570 . 418308) (-2571 . 418130)
- (-2572 . 418018) (-2573 . 417746) (-2574 . 417695) (-2575 . 417578)
- (-2576 . 417463) (-2577 . 417104) (-2578 . 416788) (-2579 . 416630)
- (-2580 . 416526) (-2581 . 416434) (-2582 . 416375) (-2583 . 416184)
- (-2584 . 416040) (-2585 . 415985) (-2586 . 415780) (-2587 . 415527)
- (-2588 . 414786) (-2589 . 414676) (-2590 . 414540) (-2591 . 414442)
- (-2592 . 414137) (-2593 . 414067) (-2594 . 413927) (-2595 . 412076)
- (-2596 . 411927) (-2597 . 411822) (-2598 . 411081) (-2599 . 410971)
- (-2600 . 410864) (-2601 . 410795) (-2602 . 410710) (-2603 . 410270)
- (-2604 . 410206) (-2605 . 410030) (-2606 . 409848) (-2607 . 409771)
- (-2608 . 409083) (-2609 . 408954) (-2610 . 408811) (-2611 . 408699)
- (-2612 . 408596) (-2613 . 408530) (-2614 . 408418) (-2615 . 408344)
- (-2616 . 408247) (-2617 . 407671) (-2618 . 407527) (-2619 . 407446)
- (-2620 . 407380) (-2621 . 407352) (-2622 . 407188) (-2623 . 407108)
- (-2624 . 406864) (-2625 . 406483) (-2626 . 406196) (-2627 . 405990)
- (-2628 . 405939) (-2629 . 405363) (-2630 . 405226) (-2631 . 404751)
- (-2632 . 404364) (-2633 . 404205) (-2634 . 404043) (-2635 . 403986)
- (-2636 . 403917) (-2637 . 403809) (-2638 . 403553) (-2639 . 403494)
- (-2640 . 403324) (-2641 . 402748) (-2642 . 402453) (-2643 . 402266)
- (-2644 . 401986) (-2645 . 401908) (-2646 . 401765) (-2647 . 401680)
- (-2648 . 401565) (-2649 . 401497) (-2650 . 401431) (-2651 . 400831)
- (-2652 . 400687) (-2653 . 400588) (-2654 . 400510) (-2655 . 399824)
- (-2656 . 399710) (-2657 . 399611) (-2658 . 399523) (-2659 . 399239)
- (-2660 . 399139) (-2661 . 398934) (-2662 . 398810) (-2663 . 398692)
- (-2664 . 398602) (-2665 . 398529) (-2666 . 398477) (-2667 . 397791)
- (-2668 . 397553) (-2669 . 390599) (-2670 . 390333) (-2671 . 390269)
- (-2672 . 389876) (-2673 . 389658) (-2674 . 389488) (-2675 . 389377)
- (-2676 . 388722) (-2677 . 388392) (-2678 . 388203) (-2679 . 387852)
- (-2680 . 387103) (-2681 . 387048) (-2682 . 386999) (-2683 . 386746)
- (-2684 . 386616) (-2685 . 386588) (-2686 . 386535) (-2687 . 386152)
- (-2688 . 385983) (-2689 . 385877) (-2690 . 385386) (-2691 . 385331)
- (-2692 . 384788) (-2693 . 384664) (-2694 . 384447) (-2695 . 384300)
- (-2696 . 384202) (-2697 . 384117) (-2698 . 383884) (-2699 . 383755)
- (-2700 . 383389) (-2701 . 383130) (-2702 . 383007) (-2703 . 382937)
- (-2704 . 382781) (-2705 . 382610) (-2706 . 382561) (-2707 . 382506)
- (-2708 . 382233) (-2709 . 382096) (-2710 . 381978) (-2711 . 381882)
- (-2712 . 381768) (-2713 . 381719) (-2714 . 381548) (-2715 . 381233)
- (-2716 . 381159) (-2717 . 380777) (-2718 . 380593) (-2719 . 380263)
- (-2720 . 380139) (-2721 . 380084) (-2722 . 380026) (-2723 . 379891)
- (-2724 . 379808) (-2725 . 379638) (-2726 . 379450) (-2727 . 379323)
- (-2728 . 379286) (-2729 . 379145) (-2730 . 379093) (-2731 . 379022)
- (-2732 . 378835) (-2733 . 378676) (-2734 . 378642) (-2735 . 378538)
- (-2736 . 378159) (-2737 . 378103) (-2738 . 377790) (-2739 . 377627)
- (-2740 . 377540) (-2741 . 377448) (-2742 . 377365) (-2743 . 376055)
- (-2744 . 375977) (-2745 . 375783) (-2746 . 374581) (-2747 . 374550)
- (-2748 . 374448) (-2749 . 374379) (-2750 . 374305) (-2751 . 374204)
- (-2752 . 374155) (-2753 . 373937) (-2754 . 373839) (-2755 . 373669)
- (-2756 . 373558) (-2757 . 373426) (-2758 . 373164) (-2759 . 372908)
- (-2760 . 372837) (-2761 . 372658) (-2762 . 372380) (-2763 . 372220)
- (-2764 . 372164) (-2765 . 370385) (-2766 . 370146) (-2767 . 370075)
- (-2768 . 369962) (-2769 . 369810) (-2770 . 369782) (-2771 . 369530)
- (-2772 . 369367) (-2773 . 369136) (-2774 . 369084) (-2775 . 369025)
- (-2776 . 368484) (-2777 . 368347) (-2778 . 368142) (-2779 . 368092)
- (-2780 . 367929) (-2781 . 367855) (-2782 . 367787) (-2783 . 367710)
- (-2784 . 367588) (-2785 . 366964) (-2786 . 366647) (-2787 . 366560)
- (-2788 . 366400) (-2789 . 366286) (-2790 . 366206) (-2791 . 365962)
- (-2792 . 365849) (-2793 . 365576) (-2794 . 365492) (-2795 . 364840)
- (-2796 . 364641) (-2797 . 364497) (-2798 . 364385) (-2799 . 364354)
- (-2800 . 364230) (-2801 . 364173) (-2802 . 364058) (-2803 . 363724)
- (-2804 . 363668) (-2805 . 363567) (-2806 . 363470) (-2807 . 363173)
- (-2808 . 362963) (-2809 . 362803) (-2810 . 362735) (-2811 . 362666)
- (-2812 . 362638) (-2813 . 362516) (-2814 . 362428) (-2815 . 362230)
- (-2816 . 362038) (-2817 . 361890) (-2818 . 361743) (-2819 . 361646)
- (-2820 . 361594) (-2821 . 361438) (-2822 . 361040) (-2823 . 360790)
- (-2824 . 360677) (-2825 . 360594) (-2826 . 360251) (-2827 . 360121)
- (-2828 . 359962) (-2829 . 359661) (-2830 . 359554) (-2831 . 359492)
- (-2832 . 359435) (-2833 . 359357) (-2834 . 359287) (-2835 . 359122)
- (-2836 . 359021) (-2837 . 358880) (-2838 . 358809) (-2839 . 358702)
- (-2840 . 358503) (-2841 . 358324) (-2842 . 358165) (-2843 . 357857)
- (-2844 . 357694) (-2845 . 357608) (-2846 . 357528) (-2847 . 357299)
- (-2848 . 356877) (-2849 . 356800) (-2850 . 356180) (-2851 . 356097)
- (-2852 . 356003) (-2853 . 355932) (-2854 . 355848) (-2855 . 355768)
- (-2856 . 355709) (-2857 . 355563) (-2858 . 355486) (-2859 . 355368)
- (-2860 . 355313) (-2861 . 355090) (-2862 . 354849) (-2863 . 354708)
- (-2864 . 354609) (-2865 . 354540) (-2866 . 354474) (-2867 . 354087)
- (-2868 . 354030) (-2869 . 353937) (-2870 . 353791) (-2871 . 353584)
- (-2872 . 353337) (-2873 . 353278) (-2874 . 353226) (-2875 . 353001)
- (-2876 . 352918) (-2877 . 352851) (-2878 . 352633) (-2879 . 352574)
- (-2880 . 352328) (-2881 . 352300) (-2882 . 352065) (-2883 . 351747)
- (-2884 . 351662) (-2885 . 351532) (-2886 . 351452) (-2887 . 351349)
- (-2888 . 351250) (-2889 . 351164) (-2890 . 351098) (-2891 . 351024)
- (-2892 . 350868) (-2893 . 350577) (-2894 . 350410) (-2895 . 349894)
- (-2896 . 349812) (-2897 . 349666) (-2898 . 345145) (-2899 . 345044)
- (-2900 . 344949) (-2901 . 344848) (-2902 . 344250) (-2903 . 344152)
- (-2904 . 344069) (-2905 . 343922) (-2906 . 343804) (-2907 . 343722)
- (-2908 . 343656) (-2909 . 343558) (-2910 . 343107) (-2911 . 342640)
- (-2912 . 342424) (-2913 . 342308) (-2914 . 341944) (-2915 . 341801)
- (-2916 . 341700) (-2917 . 341403) (-2918 . 341316) (-2919 . 341237)
- (-2920 . 341152) (-2921 . 341025) (-2922 . 340160) (-2923 . 339981)
- (-2924 . 339875) (-2925 . 339808) (-2926 . 339675) (-2927 . 339516)
- (-2928 . 339431) (-2929 . 339289) (-2930 . 339152) (-2931 . 338877)
- (-2932 . 338689) (-2933 . 338619) (-2934 . 338541) (-2935 . 338228)
- (-2936 . 336943) (-2937 . 336894) (-2938 . 336751) (-2939 . 336695)
- (-2940 . 336640) (-2941 . 336467) (-2942 . 336384) (-2943 . 336134)
- (-2944 . 336082) (-2945 . 335957) (-2946 . 335846) (-2947 . 335651)
- (-2948 . 335458) (-2949 . 335288) (-2950 . 335041) (-2951 . 334923)
- (-2952 . 334868) (-2953 . 334770) (-2954 . 334581) (-2955 . 334476)
- (-2956 . 334237) (-2957 . 334104) (-2958 . 333992) (-2959 . 333898)
- (-2960 . 333695) (-2961 . 333307) (-2962 . 332806) (-2963 . 332683)
- (-2964 . 332507) (-2965 . 332411) (-2966 . 332303) (-2967 . 332251)
- (-2968 . 332177) (-2969 . 332035) (-2970 . 331948) (-2971 . 331711)
- (-2972 . 331613) (-2973 . 331495) (-2974 . 331421) (-2975 . 331039)
- (-2976 . 330987) (-2977 . 330461) (-2978 . 330213) (-2979 . 330045)
- (-2980 . 329877) (-2981 . 329803) (-2982 . 329698) (-2983 . 329568)
- (-2984 . 329349) (-2985 . 329106) (-2986 . 329033) (-2987 . 328909)
- (-2988 . 328857) (-2989 . 328714) (-2990 . 328492) (-2991 . 328365)
- (-2992 . 327978) (-2993 . 327908) (-2994 . 327695) (-2995 . 327558)
- (-2996 . 326948) (-2997 . 326855) (-2998 . 326702) (-2999 . 326658)
- (-3000 . 326554) (-3001 . 326448) (-3002 . 326114) (-3003 . 325895)
- (-3004 . 325618) (-3005 . 325420) (-3006 . 325350) (-3007 . 325293)
- (-3008 . 324920) (-3009 . 324848) (-3010 . 324769) (-3011 . 324438)
- (-3012 . 324407) (-3013 . 324266) (-3014 . 323556) (-3015 . 309493)
- (-3016 . 309398) (-3017 . 309186) (-3018 . 309091) (-3019 . 308599)
- (-3020 . 308526) (-3021 . 308324) (-3022 . 308166) (-3023 . 308039)
- (-3024 . 307835) (-3025 . 307748) (-3026 . 307625) (-3027 . 307507)
- (-3028 . 307406) (-3029 . 307254) (-3030 . 307184) (-3031 . 307044)
- (-3032 . 306663) (-3033 . 306593) (-3034 . 306206) (-3035 . 306051)
- (-3036 . 305928) (-3037 . 305819) (-3038 . 305674) (-3039 . 305560)
- (-3040 . 305442) (-3041 . 305361) (-3042 . 304987) (-3043 . 304772)
- (-3044 . 304720) (-3045 . 304174) (-3046 . 304005) (-3047 . 302465)
- (-3048 . 302365) (-3049 . 302120) (-3050 . 302024) (-3051 . 301744)
- (-3052 . 301608) (-3053 . 301548) (-3054 . 301417) (-3055 . 301388)
- (-3056 . 301215) (-3057 . 301120) (-3058 . 300993) (-3059 . 300743)
- (-3060 . 300659) (-3061 . 300557) (-3062 . 300407) (-3063 . 300180)
- (-3064 . 300087) (-3065 . 299992) (-3066 . 299895) (-3067 . 299824)
- (-3068 . 299719) (-3069 . 299649) (-3070 . 299337) (-3071 . 298601)
- (-3072 . 298010) (-3073 . 297778) (-3074 . 297525) (-3075 . 297416)
- (-3076 . 297206) (-3077 . 292503) (-3078 . 292073) (-3079 . 291969)
- (-3080 . 291860) (-3081 . 291520) (-3082 . 291353) (-3083 . 291266)
- (-3084 . 291105) (-3085 . 291002) (-3086 . 290818) (-3087 . 290766)
- (-3088 . 290667) (-3089 . 290523) (-3090 . 290368) (-3091 . 290301)
- (-3092 . 290024) (-3093 . 289641) (-3094 . 289571) (-3095 . 289445)
- (-3096 . 289344) (-3097 . 289241) (-3098 . 289170) (-3099 . 289104)
- (-3100 . 289055) (-3101 . 288946) (-3102 . 288744) (-3103 . 288465)
- (-3104 . 288387) (-3105 . 288358) (-3106 . 288330) (-3107 . 287692)
- (-3108 . 287446) (-3109 . 287388) (-3110 . 287316) (-3111 . 287163)
- (-3112 . 287064) (-3113 . 286470) (-3114 . 286418) (-3115 . 286287)
- (-3116 . 286181) (-3117 . 286079) (-3118 . 285903) (-3119 . 284743)
- (-3120 . 284604) (-3121 . 284382) (-3122 . 284282) (-3123 . 283750)
- (-3124 . 282890) (-3125 . 282788) (-3126 . 282595) (-3127 . 282481)
- (-3128 . 282377) (-3129 . 282197) (-3130 . 282081) (-3131 . 281919)
- (-3132 . 281685) (-3133 . 281466) (-3134 . 281357) (-3135 . 280783)
- (-3136 . 280570) (-3137 . 278716) (-3138 . 278598) (-3139 . 278419)
- (-3140 . 278302) (-3141 . 277679) (-3142 . 276556) (-3143 . 276350)
- (-3144 . 276265) (-3145 . 276182) (-3146 . 275983) (-3147 . 275872)
- (-3148 . 275758) (-3149 . 275479) (-3150 . 275427) (-3151 . 275343)
- (-3152 . 275220) (-3153 . 275076) (-3154 . 274979) (-3155 . 274926)
- (-3156 . 274672) (-3157 . 274519) (-3158 . 274467) (-3159 . 274313)
- (-3160 . 274180) (-3161 . 273996) (-3162 . 273884) (-3163 . 273579)
- (-3164 . 273550) (-3165 . 273450) (-3166 . 273341) (-3167 . 272912)
- (-3168 . 272358) (-3169 . 272257) (-3170 . 272001) (-3171 . 271952)
- (-3172 . 271866) (-3173 . 271762) (-3174 . 271688) (-3175 . 271570)
- (-3176 . 271518) (-3177 . 271445) (-3178 . 271198) (-3179 . 271124)
- (-3180 . 271093) (-3181 . 270981) (-3182 . 270826) (-3183 . 270753)
- (-3184 . 269211) (-3185 . 269092) (-3186 . 269025) (-3187 . 268911)
- (-3188 . 268852) (-3189 . 268786) (-3190 . 268714) (-3191 . 268605)
- (-3192 . 268532) (-3193 . 268424) (-3194 . 268369) (-3195 . 267743)
- (-3196 . 267632) (-3197 . 267566) (-3198 . 267323) (-3199 . 267233)
- (-3200 . 267162) (-3201 . 266851) (-3202 . 266400) (-3203 . 266286)
- (-3204 . 265726) (-3205 . 265598) (-3206 . 265433) (-3207 . 265291)
- (-3208 . 265146) (-3209 . 265076) (-3210 . 264994) (-3211 . 264851)
- (-3212 . 264577) (-3213 . 264307) (-3214 . 264235) (-3215 . 264018)
- (-3216 . 263570) (-3217 . 263449) (-3218 . 263397) (-3219 . 263106)
- (-3220 . 262816) (-3221 . 262659) (-3222 . 262504) (-3223 . 259596)
- (-3224 . 259418) (-3225 . 259341) (-3226 . 259289) (-3227 . 259237)
- (-3228 . 259141) (-3229 . 258470) (-3230 . 258351) (-3231 . 258285)
- (-3232 . 257891) (-3233 . 257825) (-3234 . 257738) (-3235 . 257680)
- (-3236 . 257627) (-3237 . 257429) (-3238 . 257220) (-3239 . 256953)
- (-3240 . 256844) (-3241 . 256422) (-3242 . 256209) (-3243 . 256079)
- (-3244 . 256051) (-3245 . 255852) (-3246 . 255567) (-3247 . 255422)
- (-3248 . 255349) (-3249 . 255246) (-3250 . 255091) (-3251 . 254913)
- (-3252 . 254836) (-3253 . 254714) (-3254 . 254289) (-3255 . 254117)
- (-3256 . 254015) (-3257 . 253557) (-3258 . 253491) (-3259 . 253297)
- (-3260 . 253211) (-3261 . 252778) (-3262 . 252297) (-3263 . 252084)
- (-3264 . 251575) (-3265 . 251358) (-12 . 251186) (-3267 . 251054)
- (-3268 . 250775) (-3269 . 250668) (-3270 . 250513) (-3271 . 250404)
- (-3272 . 250324) (-3273 . 250061) (-3274 . 249838) (-3275 . 249740)
- (-3276 . 249657) (-3277 . 249527) (-3278 . 249114) (-3279 . 249012)
- (-3280 . 248776) (-3281 . 248676) (-3282 . 248449) (-3283 . 248369)
- (-3284 . 248027) (-3285 . 247890) (-3286 . 247438) (-3287 . 247331)
- (-3288 . 247055) (-3289 . 247000) (-3290 . 246919) (-3291 . 246764)
- (-3292 . 246525) (-3293 . 246299) (-3294 . 246012) (-3295 . 245926)
- (-3296 . 245873) (-3297 . 245627) (-3298 . 245413) (-3299 . 245319)
- (-3300 . 245248) (-3301 . 245158) (-3302 . 245035) (-3303 . 244955)
- (-3304 . 244878) (-3305 . 244553) (-3306 . 244261) (-3307 . 244162)
- (-3308 . 244091) (-3309 . 244018) (-3310 . 243956) (-3311 . 243829)
- (-3312 . 242956) (-3313 . 242844) (-3314 . 242692) (-3315 . 242605)
- (-3316 . 242477) (-3317 . 242374) (-3318 . 242267) (-3319 . 242044)
- (-3320 . 241967) (-3321 . 241768) (-3322 . 241171) (-3323 . 241104)
- (-3324 . 240767) (-3325 . 240549) (-3326 . 240472) (-3327 . 240389)
- (-3328 . 240145) (-3329 . 239266) (-3330 . 239213) (-3331 . 239145)
- (-3332 . 238858) (-3333 . 238824) (-3334 . 238668) (-3335 . 238580)
- (-3336 . 238497) (-3337 . 238165) (-3338 . 237649) (-3339 . 237554)
- (-3340 . 237133) (-3341 . 236995) (-3342 . 236186) (-3343 . 236026)
- (-3344 . 235929) (-3345 . 235878) (-3346 . 235821) (-3347 . 235401)
- (-3348 . 235364) (-3349 . 235174) (-3350 . 234827) (-3351 . 234740)
- (-3352 . 234687) (-3353 . 234634) (-3354 . 234460) (-3355 . 234375)
- (-3356 . 234272) (-3357 . 234036) (* . 229513) (-3359 . 226228)
- (-3360 . 226141) (-3361 . 225922) (-3362 . 225844) (-3363 . 225684)
- (-3364 . 225334) (-3365 . 225251) (-3366 . 225142) (-3367 . 224751)
- (-3368 . 224160) (-3369 . 223987) (-3370 . 223774) (-3371 . 223708)
- (-3372 . 223125) (-3373 . 223059) (-3374 . 222936) (-3375 . 222841)
- (-3376 . 222776) (-3377 . 222739) (-3378 . 222687) (-3379 . 222635)
- (-3380 . 222583) (-3381 . 222500) (-3382 . 222440) (-3383 . 222226)
- (-3384 . 222143) (-3385 . 221927) (-3386 . 221804) (-3387 . 221698)
- (-3388 . 221517) (-3389 . 221483) (-3390 . 221323) (-3391 . 221159)
- (-3392 . 220275) (-3393 . 220223) (-3394 . 220161) (-3395 . 220058)
- (-3396 . 219957) (-3397 . 219443) (-3398 . 219334) (-3399 . 218840)
- (-3400 . 218411) (-3401 . 218304) (-3402 . 218235) (-3403 . 218093)
- (-3404 . 218022) (-3405 . 217960) (-3406 . 217875) (-3407 . 217759)
- (-3408 . 217707) (-3409 . 217427) (-3410 . 216508) (-3411 . 216434)
- (-3412 . 216333) (-3413 . 216232) (-3414 . 216123) (-3415 . 215980)
- (-3416 . 215873) (-3417 . 215757) (-3418 . 215632) (-3419 . 215523)
- (-3420 . 215032) (-3421 . 214963) (-3422 . 214810) (-3423 . 214782)
- (-3424 . 214695) (-3425 . 214284) (-3426 . 213798) (-3427 . 213745)
- (-3428 . 213648) (-3429 . 213398) (-3430 . 213311) (-3431 . 213259)
- (-3432 . 212910) (-3433 . 212752) (-3434 . 212721) (-3435 . 212655)
- (-3436 . 212599) (-3437 . 212262) (-3438 . 212206) (-3439 . 212032)
- (-3440 . 212000) (-3441 . 211926) (-3442 . 211748) (-3443 . 211623)
- (-3444 . 211499) (-3445 . 210771) (-3446 . 210560) (-3447 . 210494)
- (-3448 . 210442) (-3449 . 210014) (-3450 . 209852) (-3451 . 209716)
- (-3452 . 209617) (-3453 . 209418) (-3454 . 209286) (-3455 . 209162)
- (-3456 . 208711) (-3457 . 208640) (-3458 . 208584) (-3459 . 208200)
- (-3460 . 208014) (-3461 . 207364) (-3462 . 207211) (-3463 . 207074)
- (-3464 . 206992) (-3465 . 206934) (-3466 . 206881) (-3467 . 206730)
- (-3468 . 206677) (-3469 . 206583) (-3470 . 206527) (-3471 . 206476)
- (-3472 . 206146) (-3473 . 206112) (-3474 . 206032) (-3475 . 205897)
- (-3476 . 205760) (-3477 . 205701) (-3478 . 205673) (-3479 . 205529)
- (-3480 . 205373) (-3481 . 205028) (-3482 . 204790) (-3483 . 204652)
- (-3484 . 204324) (-3485 . 204226) (-3486 . 203888) (-3487 . 203749)
- (-3488 . 203682) (-3489 . 203592) (-3490 . 203414) (-3491 . 203243)
- (-3492 . 203144) (-3493 . 203091) (-3494 . 202954) (-3495 . 202302)
- (-3496 . 202239) (-3497 . 202130) (-3498 . 202008) (-3499 . 201603)
- (-3500 . 201323) (-3501 . 201252) (-3502 . 201157) (-3503 . 201072)
- (-3504 . 198942) (-3505 . 198887) (-3506 . 198656) (-3507 . 198469)
- (-3508 . 198365) (-3509 . 198091) (-3510 . 198008) (-3511 . 197959)
- (-3512 . 197599) (-3513 . 197528) (-3514 . 196347) (-3515 . 196221)
- (-3516 . 196169) (-3517 . 196118) (-3518 . 196011) (-3519 . 195904)
- (-3520 . 195779) (-3521 . 195664) (-3522 . 195318) (-3523 . 195177)
- (-3524 . 195070) (-3525 . 194927) (-3526 . 194865) (-3527 . 194767)
- (-3528 . 194715) (-3529 . 194513) (-3530 . 194398) (-3531 . 194272)
- (-3532 . 194198) (-3533 . 193999) (-3534 . 193948) (-3535 . 193863)
- (-3536 . 193259) (-3537 . 192774) (-3538 . 191905) (-3539 . 191819)
- (-3540 . 190418) (-3541 . 190387) (-3542 . 189513) (-3543 . 189462)
- (-3544 . 189365) (-3545 . 189303) (-3546 . 189141) (-3547 . 189067)
- (-3548 . 188862) (-3549 . 188745) (-3550 . 188567) (-3551 . 188480)
- (-3552 . 188136) (-3553 . 187995) (-3554 . 187805) (-3555 . 187666)
- (-3556 . 187482) (-3557 . 187303) (-3558 . 187060) (-3559 . 186958)
- (-3560 . 186815) (-3561 . 186725) (-3562 . 186567) (-3563 . 186405)
- (-3564 . 186353) (-3565 . 186104) (-3566 . 186075) (-3567 . 185957)
- (-3568 . 185898) (-3569 . 185797) (-3570 . 185501) (-3571 . 185366)
- (-3572 . 185293) (-3573 . 179786) (-3574 . 179721) (-3575 . 179642)
- (-3576 . 179472) (-3577 . 179224) (-3578 . 179051) (-3579 . 178998)
- (-3580 . 178927) (-3581 . 178853) (-3582 . 178553) (-3583 . 178479)
- (-3584 . 178091) (-3585 . 177807) (-3586 . 177755) (-3587 . 177684)
- (-3588 . 177622) (-3589 . 177538) (-3590 . 177507) (-3591 . 177422)
- (-3592 . 177342) (-3593 . 177198) (-3594 . 177093) (-3595 . 176854)
- (-3596 . 176662) (-3597 . 176209) (-3598 . 176181) (-3599 . 176107)
- (-3600 . 176055) (-3601 . 175910) (-3602 . 175598) (-3603 . 175492)
- (-3604 . 175383) (-3605 . 174967) (-3606 . 174819) (-3607 . 174759)
- (-3608 . 174595) (-3609 . 174524) (-3610 . 174177) (-3611 . 174113)
- (-3612 . 173963) (-3613 . 173657) (-3614 . 173562) (-3615 . 173510)
- (-3616 . 173111) (-3617 . 172895) (-3618 . 172790) (-3619 . 172692)
- (-3620 . 172626) (-3621 . 172546) (-3622 . 172346) (-3623 . 172199)
- (-3624 . 172105) (-3625 . 171961) (-3626 . 171907) (-3627 . 171716)
- (-3628 . 171664) (-3629 . 171608) (-3630 . 171489) (-3631 . 171422)
- (-3632 . 170848) (-3633 . 170796) (-3634 . 170672) (-3635 . 170461)
- (-3636 . 170338) (-3637 . 170282) (-3638 . 170202) (-3639 . 170153)
- (-3640 . 170048) (-3641 . 169706) (-3642 . 169610) (-3643 . 169494)
- (-3644 . 169205) (-3645 . 168631) (-3646 . 168580) (-3647 . 168508)
- (-3648 . 168440) (-3649 . 168218) (-3650 . 168115) (-3651 . 168045)
- (-3652 . 167923) (-3653 . 167870) (-3654 . 167772) (-3655 . 167693)
- (-3656 . 167449) (-3657 . 166875) (-3658 . 166802) (-3659 . 166715)
- (-3660 . 166618) (-3661 . 166562) (-3662 . 166405) (-3663 . 166229)
- (-3664 . 165737) (-3665 . 165597) (-3666 . 165500) (-3667 . 165429)
- (-3668 . 165185) (-3669 . 164498) (-3670 . 164287) (-3671 . 164199)
- (-3672 . 163883) (-3673 . 163591) (-3674 . 163478) (-3675 . 163292)
- (-3676 . 163205) (-3677 . 163107) (-3678 . 163011) (-3679 . 162941)
- (-3680 . 162729) (-3681 . 162621) (-3682 . 162447) (-3683 . 161760)
- (-3684 . 161705) (-3685 . 161546) (-3686 . 161274) (-3687 . 160846)
- (-3688 . 160783) (-3689 . 160755) (-3690 . 160668) (-3691 . 160539)
- (-3692 . 160357) (-3693 . 160220) (-3694 . 158601) (-3695 . 157914)
- (-3696 . 157820) (-3697 . 157738) (-3698 . 157685) (-3699 . 157630)
- (-3700 . 157396) (-3701 . 157341) (-3702 . 157094) (-3703 . 156938)
- (-3704 . 156812) (-3705 . 156731) (-3706 . 155870) (-3707 . 155295)
- (-3708 . 155217) (-3709 . 154676) (-3710 . 154645) (-3711 . 154011)
- (-3712 . 153745) (-3713 . 153564) (-3714 . 152601) (-3715 . 152455)
- (-3716 . 151088) (-3717 . 150513) (-3718 . 150182) (-3719 . 149111)
- (-3720 . 147542) (-3721 . 146725) (-3722 . 146475) (-3723 . 146129)
- (-3724 . 145932) (-3725 . 145776) (-3726 . 145618) (-3727 . 145366)
- (-3728 . 145165) (-3729 . 144971) (-3730 . 144396) (-3731 . 144294)
- (-3732 . 144097) (-3733 . 143804) (-3734 . 143561) (-3735 . 143440)
- (-3736 . 143126) (-3737 . 143068) (-3738 . 142964) (-3739 . 142639)
- (-3740 . 142342) (-3741 . 142187) (-3742 . 141954) (-3743 . 141380)
- (-3744 . 141266) (-3745 . 141151) (-3746 . 141012) (-3747 . 140662)
- (-3748 . 140634) (-3749 . 140317) (-3750 . 140196) (-3751 . 140048)
- (-3752 . 139964) (-3753 . 139930) (-3754 . 139833) (-3755 . 139695)
- (-3756 . 139121) (-3757 . 138642) (-3758 . 138519) (-3759 . 138136)
- (-3760 . 137938) (-3761 . 137417) (-3762 . 137105) (-3763 . 136661)
- (-3764 . 136563) (-3765 . 136511) (-3766 . 136404) (-3767 . 136271)
- (-3768 . 135697) (-3769 . 135557) (-3770 . 135419) (-3771 . 135370)
- (-3772 . 135297) (-3773 . 135046) (-3774 . 134972) (-3775 . 134779)
- (-3776 . 134691) (-3777 . 134579) (-3778 . 134492) (-3779 . 134415)
- (-3780 . 133841) (-3781 . 132013) (-3782 . 131852) (-3783 . 131801)
- (-3784 . 131770) (-3785 . 131398) (-3786 . 131304) (-3787 . 131205)
- (-3788 . 130827) (-3789 . 130767) (-3790 . 130646) (-3791 . 130522)
- (-3792 . 130381) (-3793 . 129807) (-3794 . 128306) (-3795 . 128229)
- (-3796 . 128180) (-3797 . 128053) (-3798 . 127666) (-3799 . 127614)
- (-3800 . 127561) (-3801 . 127491) (-3802 . 126836) (-3803 . 126780)
- (-3804 . 126637) (-3805 . 126560) (-3806 . 126500) (-3807 . 126380)
- (-3808 . 126257) (-3809 . 126135) (-3810 . 125969) (-3811 . 125700)
- (-3812 . 125164) (-3813 . 125052) (-3814 . 124996) (-3815 . 124772)
- (-3816 . 124632) (-3817 . 124244) (-3818 . 123637) (-3819 . 123552)
- (-3820 . 122488) (-3821 . 122301) (-3822 . 122224) (-3823 . 122151)
- (-3824 . 122068) (-3825 . 121767) (-3826 . 121697) (-3827 . 121611)
- (-3828 . 121458) (-3829 . 120972) (-3830 . 120868) (-3831 . 120508)
- (-3832 . 120416) (-3833 . 120270) (-3834 . 119991) (-3835 . 118993)
- (-3836 . 118787) (-3837 . 118420) (-3838 . 118304) (-3839 . 118205)
- (-3840 . 117796) (-3841 . 117742) (-3842 . 117687) (-3843 . 116685)
- (-3844 . 116626) (-3845 . 116556) (-3846 . 116419) (-3847 . 116222)
- (-3848 . 116139) (-3849 . 115939) (-3850 . 115866) (-3851 . 115813)
- (-3852 . 115742) (-3853 . 115677) (-3854 . 115539) (-3855 . 115401)
- (-3856 . 115243) (-3857 . 115113) (-3858 . 115018) (-3859 . 114671)
- (-3860 . 114496) (-3861 . 114443) (-3862 . 112028) (-3863 . 111924)
- (-3864 . 111790) (-3865 . 111756) (-3866 . 111565) (-3867 . 111494)
- (-3868 . 111336) (-3869 . 111257) (-3870 . 111102) (-3871 . 110967)
- (-3872 . 110679) (-3873 . 110555) (-3874 . 110414) (-3875 . 110262)
- (-3876 . 110169) (-3877 . 110011) (-3878 . 109802) (-3879 . 109190)
- (-3880 . 109063) (-3881 . 108957) (-3882 . 108629) (-3883 . 108440)
- (-3884 . 108324) (-3885 . 108215) (-3886 . 108115) (-3887 . 107985)
- (-3888 . 107736) (-3889 . 107642) (-3890 . 107468) (-3891 . 107042)
- (-3892 . 106924) (-3893 . 106789) (-3894 . 106712) (-3895 . 106571)
- (-3896 . 106415) (-3897 . 106329) (-3898 . 106182) (-3899 . 106008)
- (-3900 . 105850) (-3901 . 105770) (-3902 . 105673) (-3903 . 104209)
- (-3904 . 104035) (-3905 . 103973) (-3906 . 103918) (-3907 . 103863)
- (-3908 . 103375) (-3909 . 103245) (-3910 . 103095) (-3911 . 93565)
- (-3912 . 93322) (-3913 . 93239) (-3914 . 93152) (-3915 . 93078)
- (-3916 . 93026) (-3917 . 92927) (-3918 . 92850) (-3919 . 92800)
- (-3920 . 92705) (-3921 . 92559) (-3922 . 92400) (-3923 . 92172)
- (-3924 . 92088) (-3925 . 91846) (-3926 . 91716) (-3927 . 91616)
- (-3928 . 91526) (-3929 . 91388) (-3930 . 91282) (-3931 . 91124)
- (-3932 . 91072) (-3933 . 91001) (-3934 . 90653) (-3935 . 90482)
- (-3936 . 90347) (-3937 . 90053) (-3938 . 89750) (-3939 . 89691)
- (-3940 . 89576) (-3941 . 89465) (-3942 . 88711) (-3943 . 88567)
- (-3944 . 88376) (-3945 . 88257) (-3946 . 88189) (-3947 . 88080)
- (-3948 . 87916) (-3949 . 87843) (-3950 . 87812) (-3951 . 87499)
- (-3952 . 87392) (-3953 . 87234) (-3954 . 87167) (-3955 . 86764)
- (-3956 . 86692) (-3957 . 86552) (-3958 . 86422) (-3959 . 86191)
- (-3960 . 86088) (-3961 . 86006) (-3962 . 85874) (-3963 . 85821)
- (-3964 . 85595) (-3965 . 85391) (-3966 . 85339) (-3967 . 85220)
- (-3968 . 85098) (-3969 . 84684) (-3970 . 84478) (-3971 . 84298)
- (-3972 . 84241) (-3973 . 82817) (-3974 . 82746) (-3975 . 82555)
- (-3976 . 59620) (-3977 . 59479) (-3978 . 59331) (-3979 . 59276)
- (-3980 . 59221) (-3981 . 59148) (-3982 . 59008) (-3983 . 58555)
- (-3984 . 58058) (-3985 . 55306) (-3986 . 54897) (-3987 . 54605)
- (-3988 . 54550) (-3989 . 54395) (-3990 . 54300) (-3991 . 54248)
- (-3992 . 53808) (-3993 . 53755) (-3994 . 53504) (-3995 . 53392)
- (-3996 . 53262) (-3997 . 53206) (-3998 . 53154) (-3999 . 53027)
- (-4000 . 52975) (-4001 . 52817) (-4002 . 52764) (-4003 . 52687)
- (-4004 . 52592) (-4005 . 52482) (-4006 . 52399) (-4007 . 52220)
- (-4008 . 52054) (-4009 . 52002) (-4010 . 51804) (-4011 . 51675)
- (-4012 . 50941) (-4013 . 50822) (-4014 . 50745) (-4015 . 50689)
- (-4016 . 50445) (-4017 . 50359) (-4018 . 50213) (-4019 . 50096)
- (-4020 . 49842) (-4021 . 49682) (-4022 . 49459) (-4023 . 49265)
- (-4024 . 47113) (-4025 . 47042) (-4026 . 46989) (-4027 . 46541)
- (-4028 . 46272) (-4029 . 46086) (-4030 . 45839) (-4031 . 45024)
- (-4032 . 44969) (-4033 . 44840) (-4034 . 44623) (-4035 . 44453)
- (-4036 . 44241) (-4037 . 43973) (-4038 . 43694) (-4039 . 43486)
- (-4040 . 42190) (-4041 . 42050) (-4042 . 41789) (-4043 . 41669)
- (-4044 . 41582) (-4045 . 41504) (-4046 . 41355) (-4047 . 41048)
- (-4048 . 40954) (-4049 . 40876) (-4050 . 40629) (-4051 . 40472)
- (-4052 . 40166) (-4053 . 39465) (-4054 . 39271) (-4055 . 38895)
- (-4056 . 38821) (-4057 . 38241) (-4058 . 38168) (-4059 . 38085)
- (-4060 . 37555) (-4061 . 37468) (-4062 . 37373) (-4063 . 37250)
- (-4064 . 36990) (-4065 . 36883) (-4066 . 36787) (-4067 . 36528)
- (-4068 . 36426) (-4069 . 36312) (-4070 . 36153) (-4071 . 35821)
- (-4072 . 35738) (-4073 . 35533) (-4074 . 35370) (-4075 . 35234)
- (-4076 . 35090) (-4077 . 34819) (-4078 . 34732) (-4079 . 34521)
- (-4080 . 34336) (-4081 . 34206) (-4082 . 33982) (-4083 . 33706)
- (-4084 . 33656) (-4085 . 33453) (-4086 . 33352) (-4087 . 33218)
- (-4088 . 33106) (-4089 . 32765) (-4090 . 32191) (-4091 . 31966)
- (-4092 . 31857) (-4093 . 31675) (-4094 . 31385) (-4095 . 31112)
- (-4096 . 31033) (-4097 . 30960) (-4098 . 30622) (-4099 . 30518)
- (-4100 . 30377) (-4101 . 29076) (-4102 . 28467) (-4103 . 27283)
- (-4104 . 26835) (-4105 . 26712) (-4106 . 26597) (-4107 . 26370)
- (-4108 . 26215) (-4109 . 26122) (-4110 . 26025) (-4111 . 25617)
- (-4112 . 25504) (-4113 . 25438) (-4114 . 25326) (-4115 . 24148)
- (-4116 . 24120) (-4117 . 24020) (-4118 . 23992) (-4119 . 23622)
- (-4120 . 23481) (-4121 . 23447) (-4122 . 23322) (-4123 . 23269)
- (-4124 . 22943) (-4125 . 20745) (-4126 . 20647) (-4127 . 20548)
- (-4128 . 20364) (-4129 . 20146) (-4130 . 20080) (-4131 . 19655)
- (-4132 . 19503) (-4133 . 19323) (-4134 . 19252) (-4135 . 19126)
- (-4136 . 19052) (-4137 . 18841) (-4138 . 18545) (-4139 . 18253)
- (-4140 . 17776) (-4141 . 17617) (-4142 . 17485) (-4143 . 17277)
- (-4144 . 17175) (-4145 . 17098) (-4146 . 17002) (-4147 . 16917)
- (-4148 . 16690) (-4149 . 16505) (-4150 . 16295) (-4151 . 16081)
- (-4152 . 15808) (-4153 . 15737) (-4154 . 15578) (-4155 . 15504)
- (-4156 . 15324) (-4157 . 15062) (-4158 . 14979) (-4159 . 14788)
- (-4160 . 14636) (-4161 . 14436) (-4162 . 14383) (-4163 . 14306)
- (-4164 . 14111) (-4165 . 13984) (-4166 . 13839) (-4167 . 13749)
- (-4168 . 13678) (-4169 . 13583) (-4170 . 13476) (-4171 . 13335)
- (-4172 . 13171) (-4173 . 13114) (-4174 . 12891) (-4175 . 12794)
- (-4176 . 12693) (-4177 . 12227) (-4178 . 10931) (-4179 . 10816)
- (-4180 . 10618) (-4181 . 9508) (-4182 . 9391) (-4183 . 9319)
- (-4184 . 9246) (-4185 . 9063) (-4186 . 8950) (-4187 . 8897)
- (-4188 . 8622) (-4189 . 8555) (-4190 . 8502) (-4191 . 8056)
- (-4192 . 7961) (-4193 . 7904) (-4194 . 7662) (-4195 . 7517)
- (-4196 . 6998) (-4197 . 6969) (-4198 . 6888) (-4199 . 6860)
- (-4200 . 6780) (-4201 . 6479) (-4202 . 6377) (-4203 . 6306)
- (-4204 . 6228) (-4205 . 6176) (-4206 . 5633) (-4207 . 5383)
- (-4208 . 5237) (-4209 . 5144) (-4210 . 4852) (-4211 . 3640)
- (-4212 . 3591) (-4213 . 3521) (-4214 . 3162) (-4215 . 3080)
- (-4216 . 2876) (-4217 . 2781) (-4218 . 2674) (-4219 . 2622)
- (-4220 . 2445) (-4221 . 2392) (-4222 . 1476) (-4223 . 1375)
- (-4224 . 1312) (-4225 . 674) (-4226 . 349) (-4227 . 101) (-4228 . 30)) \ No newline at end of file
+ (-12 (-4 *4 (-1129)) (-4 *5 (-1147 *4)) (-4 *6 (-1147 (-385 *5)))
+ (-5 *2 (-591 (-591 *4))) (-5 *1 (-319 *3 *4 *5 *6))
+ (-4 *3 (-320 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-320 *3 *4 *5)) (-4 *3 (-1129)) (-4 *4 (-1147 *3))
+ (-4 *5 (-1147 (-385 *4))) (-4 *3 (-346)) (-5 *2 (-591 (-591 *3))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-624 *2)) (-4 *2 (-1018))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 (-591 *5) (-591 *5))) (-5 *4 (-525))
+ (-5 *2 (-591 *5)) (-5 *1 (-624 *5)) (-4 *5 (-1018)))))
+(((*1 *2 *1) (-12 (-4 *1 (-940 *3)) (-4 *3 (-1125)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1078 *3 *4)) (-14 *3 (-854))
+ (-4 *4 (-975)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-712)) (-4 *5 (-517))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-901 *5 *3)) (-4 *3 (-1147 *5)))))
+((-1202 . 726051) (-1203 . 725887) (-1204 . 725682) (-1205 . 725371)
+ (-1206 . 725294) (-1207 . 725239) (-1208 . 724401) (-1209 . 724304)
+ (-1210 . 724195) (-1211 . 724138) (-1212 . 724012) (-1213 . 723915)
+ (-1214 . 723862) (-1215 . 723784) (-1216 . 723669) (-1217 . 723542)
+ (-1218 . 722626) (-1219 . 722546) (-1220 . 722437) (-1221 . 721235)
+ (-1222 . 720769) (-1223 . 719923) (-1224 . 719742) (-1225 . 719662)
+ (-1226 . 719148) (-1227 . 715538) (-1228 . 715239) (-1229 . 715067)
+ (-1230 . 714915) (-1231 . 714844) (-1232 . 714708) (-1233 . 714566)
+ (-1234 . 713647) (-1235 . 713587) (-1236 . 713532) (-1237 . 713403)
+ (-1238 . 713223) (-1239 . 713128) (-1240 . 713097) (-1241 . 713013)
+ (-1242 . 712770) (-1243 . 712402) (-1244 . 712243) (-1245 . 711797)
+ (-1246 . 711492) (-1247 . 711436) (-1248 . 711335) (-1249 . 711248)
+ (-1250 . 711171) (-1251 . 706650) (-1252 . 706598) (-1253 . 706239)
+ (-1254 . 706184) (-1255 . 706070) (-1256 . 705927) (-1257 . 705810)
+ (-1258 . 705725) (-1259 . 705663) (-1260 . 705461) (-1261 . 705308)
+ (-1262 . 705224) (-1263 . 705013) (-1264 . 704906) (-1265 . 704795)
+ (-1266 . 704728) (-1267 . 704700) (-1268 . 704077) (-1269 . 704024)
+ (-1270 . 703755) (-1271 . 703613) (-1272 . 703312) (-1273 . 703191)
+ (-1274 . 702844) (-1275 . 702784) (-1276 . 702700) (-1277 . 702623)
+ (-1278 . 702137) (-1279 . 701984) (-1280 . 701822) (-1281 . 699692)
+ (-1282 . 699112) (-1283 . 698899) (-1284 . 698759) (-1285 . 698696)
+ (-1286 . 698567) (-1287 . 698273) (-1288 . 697975) (-1289 . 697920)
+ (-1290 . 697676) (-1291 . 697232) (-1292 . 697120) (-1293 . 696953)
+ (-1294 . 696798) (-1295 . 696527) (-1296 . 696468) (-1297 . 696373)
+ (-1298 . 696311) (-1299 . 696283) (-1300 . 696083) (-1301 . 695989)
+ (-1302 . 695818) (-1303 . 695654) (-1304 . 695340) (-1305 . 695284)
+ (-1306 . 695180) (-1307 . 695022) (-1308 . 694640) (-1309 . 694064)
+ (-1310 . 693955) (-1311 . 693814) (-1312 . 692413) (-1313 . 691955)
+ (-1314 . 691507) (-1315 . 691304) (-1316 . 689204) (-1317 . 689048)
+ (-1318 . 688975) (-1319 . 688888) (-1320 . 687034) (-1321 . 686458)
+ (-1322 . 686354) (-1323 . 686272) (-1324 . 686179) (-1325 . 686076)
+ (-1326 . 685935) (-1327 . 685834) (-1328 . 685538) (-1329 . 685383)
+ (-1330 . 685140) (-1331 . 685038) (-1332 . 684989) (-1333 . 684413)
+ (-1334 . 684319) (-1335 . 684110) (-1336 . 683926) (-1337 . 683819)
+ (-1338 . 683181) (-1339 . 683082) (-1340 . 669019) (-1341 . 668991)
+ (-1342 . 668883) (-1343 . 668804) (-1344 . 668702) (-1345 . 668557)
+ (-1346 . 667871) (-1347 . 667740) (-1348 . 662232) (-1349 . 661853)
+ (-1350 . 661822) (-1351 . 661656) (-1352 . 661008) (-1353 . 660956)
+ (-1354 . 660871) (-1355 . 660801) (-1356 . 660714) (-1357 . 660616)
+ (-1358 . 659930) (-1359 . 659879) (-1360 . 659530) (-1361 . 659142)
+ (-1362 . 659069) (-1363 . 658850) (-1364 . 658727) (-1365 . 658310)
+ (-1366 . 657857) (-1367 . 657704) (-1368 . 657509) (-1369 . 657438)
+ (-1370 . 657192) (-1371 . 656443) (-1372 . 656284) (-1373 . 655831)
+ (-1374 . 655780) (-1375 . 655711) (-1376 . 655525) (-1377 . 655222)
+ (-1378 . 655100) (-1379 . 655030) (-1380 . 654701) (-1381 . 654596)
+ (-1382 . 654221) (-1383 . 654144) (-1384 . 654074) (-1385 . 653500)
+ (-1386 . 653153) (-1387 . 653096) (-1388 . 652994) (-1389 . 652942)
+ (-1390 . 652865) (-1391 . 652807) (-1392 . 652271) (-1393 . 652060)
+ (-1394 . 651560) (-1395 . 651480) (-1396 . 651393) (-1397 . 651299)
+ (-1398 . 651104) (-1399 . 650004) (-1400 . 649430) (-1401 . 649001)
+ (-1402 . 648933) (-1403 . 648882) (-1404 . 648590) (-1405 . 648525)
+ (-1406 . 648200) (-1407 . 648042) (-1408 . 643339) (-1409 . 642129)
+ (-1410 . 642080) (-1411 . 642012) (-1412 . 641668) (-1413 . 641588)
+ (-1414 . 641227) (-1415 . 640653) (-1416 . 640478) (-1417 . 640371)
+ (-1418 . 640318) (-1419 . 639802) (-1420 . 639732) (-1421 . 639704)
+ (-1422 . 639590) (-1423 . 639447) (-1424 . 639360) (-1425 . 639260)
+ (-1426 . 638381) (-1427 . 638274) (-1428 . 637807) (-1429 . 637754)
+ (-1430 . 637616) (-1431 . 636929) (-1432 . 636659) (-1433 . 636565)
+ (-1434 . 636276) (-1435 . 635571) (-1436 . 635488) (-1437 . 635359)
+ (-1438 . 634932) (-1439 . 634754) (-1440 . 634575) (-1441 . 634129)
+ (-1442 . 634042) (-1443 . 633970) (-1444 . 633897) (-1445 . 633866)
+ (-1446 . 633789) (-1447 . 633557) (-1448 . 633310) (-1449 . 633254)
+ (-1450 . 633183) (-1451 . 632985) (-1452 . 632862) (-1453 . 632749)
+ (-1454 . 632697) (-1455 . 632413) (-1456 . 632355) (-1457 . 631974)
+ (-1458 . 631867) (-1459 . 631758) (-1460 . 631423) (-1461 . 631035)
+ (-1462 . 630813) (-1463 . 630697) (-1464 . 630641) (-1465 . 630528)
+ (-1466 . 630276) (-1467 . 630151) (-1468 . 630021) (-1469 . 629691)
+ (-1470 . 629443) (-1471 . 629384) (-1472 . 629311) (-1473 . 629280)
+ (-1474 . 628902) (-1475 . 628798) (-1476 . 628727) (-1477 . 628532)
+ (-1478 . 628038) (-1479 . 627894) (-1480 . 626275) (-1481 . 626178)
+ (-1482 . 625973) (-1483 . 625664) (-1484 . 625602) (-1485 . 625419)
+ (-1486 . 625036) (-1487 . 624780) (-1488 . 623543) (-1489 . 623383)
+ (-1490 . 623216) (-1491 . 623089) (-1492 . 622518) (-1493 . 621657)
+ (-1494 . 621131) (-1495 . 621052) (-1496 . 620936) (-1497 . 620780)
+ (-1498 . 620529) (-1499 . 620221) (-1500 . 620118) (-1501 . 619975)
+ (-1502 . 619400) (-1503 . 619183) (-1504 . 618953) (-1505 . 618870)
+ (-1506 . 618752) (-1507 . 617385) (-1508 . 617159) (-1509 . 616901)
+ (-1510 . 616760) (-1511 . 615945) (-1512 . 615628) (-1513 . 615524)
+ (-1514 . 615475) (-1515 . 614901) (-1516 . 614846) (-1517 . 614769)
+ (-1518 . 614685) (-1519 . 614633) (-1520 . 614599) (-1521 . 614504)
+ (-1522 . 614392) (-1523 . 614321) (-1524 . 614255) (-1525 . 614178)
+ (-1526 . 612997) (-1527 . 612423) (-1528 . 612293) (-1529 . 612216)
+ (-1530 . 612129) (-1531 . 612000) (-1532 . 611842) (-1533 . 611660)
+ (-1534 . 611402) (-1535 . 611333) (-1536 . 610856) (-1537 . 610712)
+ (-1538 . 610629) (-1539 . 610132) (-1540 . 610020) (-1541 . 609965)
+ (-1542 . 609370) (-1543 . 609300) (-1544 . 609167) (-1545 . 606386)
+ (-1546 . 606304) (-1547 . 606085) (-1548 . 605826) (-1549 . 605691)
+ (-1550 . 605411) (-1551 . 605221) (-1552 . 605005) (-1553 . 604908)
+ (-1554 . 604768) (-1555 . 604653) (-1556 . 604581) (-1557 . 604496)
+ (-1558 . 604441) (-1559 . 604249) (-1560 . 604185) (-1561 . 604017)
+ (-1562 . 603956) (-1563 . 603382) (-1564 . 603241) (-1565 . 602956)
+ (-1566 . 602596) (-1567 . 602452) (-1568 . 602325) (-1569 . 600497)
+ (-1570 . 600441) (-1571 . 600255) (-1572 . 600178) (-1573 . 600083)
+ (-1574 . 600028) (-1575 . 599951) (-1576 . 599735) (-1577 . 599632)
+ (-1578 . 599058) (-1579 . 598979) (-1580 . 598901) (-1581 . 597400)
+ (-1582 . 597207) (-1583 . 597049) (-1584 . 596495) (-1585 . 596381)
+ (-1586 . 596321) (-1587 . 596268) (-1588 . 596156) (-1589 . 596041)
+ (-1590 . 595876) (-1591 . 595302) (-1592 . 595207) (-1593 . 594506)
+ (-1594 . 594302) (-1595 . 594160) (-1596 . 593912) (-1597 . 592372)
+ (-1598 . 592241) (-1599 . 592103) (-1600 . 591923) (-1601 . 591173)
+ (-1602 . 590672) (-1603 . 590496) (-1604 . 590430) (-1605 . 590010)
+ (-1606 . 589944) (-1607 . 589861) (-1608 . 589794) (-1609 . 589709)
+ (-1610 . 589658) (-1611 . 589560) (-1612 . 589480) (-1613 . 589155)
+ (-1614 . 589046) (-1615 . 588910) (-1616 . 588798) (-1617 . 588448)
+ (-1618 . 587796) (-1619 . 587741) (-1620 . 587689) (-1621 . 587402)
+ (-1622 . 586666) (-1623 . 586542) (-1624 . 586333) (-1625 . 586198)
+ (-1626 . 585981) (-1627 . 585762) (-1628 . 585578) (-1629 . 585518)
+ (-1630 . 585381) (-1631 . 585002) (-1632 . 584907) (-1633 . 584800)
+ (-1634 . 584639) (-1635 . 584354) (-1636 . 584214) (-1637 . 584107)
+ (-1638 . 584000) (-1639 . 583756) (-1640 . 583556) (-1641 . 583469)
+ (-1642 . 583275) (-1643 . 583113) (-1644 . 582510) (-1645 . 582409)
+ (-1646 . 582283) (-1647 . 582120) (-1648 . 582064) (-1649 . 581747)
+ (-1650 . 581364) (-1651 . 581314) (-1652 . 581137) (-1653 . 581017)
+ (-1654 . 580858) (-1655 . 580733) (-1656 . 580511) (-1657 . 579840)
+ (-1658 . 579338) (-1659 . 579255) (-1660 . 579181) (-1661 . 578543)
+ (-1662 . 578364) (-1663 . 578211) (-1664 . 578157) (-1665 . 577553)
+ (-1666 . 577456) (-1667 . 577343) (-1668 . 577173) (-1669 . 577091)
+ (-1670 . 576800) (-1671 . 576653) (-1672 . 576386) (-1673 . 576173)
+ (-1674 . 576121) (-1675 . 575976) (-1676 . 575860) (-1677 . 575473)
+ (-1678 . 574313) (-1679 . 573952) (-1680 . 573880) (-1681 . 573797)
+ (-1682 . 573469) (-1683 . 573310) (-1684 . 573193) (-1685 . 573137)
+ (-1686 . 573018) (-1687 . 572933) (-1688 . 572874) (-1689 . 572767)
+ (-1690 . 572708) (-1691 . 572579) (-1692 . 570728) (-1693 . 570582)
+ (-1694 . 570495) (-1695 . 570381) (-1696 . 569777) (-1697 . 569659)
+ (-1698 . 569545) (-1699 . 569514) (-1700 . 569403) (-1701 . 568879)
+ (-1702 . 568470) (-1703 . 568365) (-1704 . 568175) (-1705 . 567417)
+ (-1706 . 567306) (-1707 . 567254) (-1708 . 567181) (-1709 . 566526)
+ (-1710 . 565403) (-1711 . 565257) (-1712 . 565205) (-1713 . 565135)
+ (-1714 . 565050) (-1715 . 564998) (-1716 . 564919) (-1717 . 564547)
+ (-1718 . 564442) (-1719 . 563867) (-1720 . 563751) (-1721 . 563598)
+ (-1722 . 563516) (-1723 . 563420) (-1724 . 563174) (-1725 . 562519)
+ (-1726 . 561808) (-1727 . 561380) (-1728 . 561274) (-1729 . 560955)
+ (-1730 . 560743) (-1731 . 560640) (-1732 . 560363) (-1733 . 560132)
+ (-1734 . 560103) (-1735 . 559952) (-1736 . 559900) (-1737 . 559863)
+ (-1738 . 559164) (-1739 . 558822) (-1740 . 558714) (-1741 . 558380)
+ (-1742 . 557384) (-1743 . 557261) (-1744 . 557117) (-1745 . 557061)
+ (-1746 . 556995) (-1747 . 556698) (-1748 . 556029) (-1749 . 555904)
+ (-1750 . 555876) (-1751 . 555605) (-1752 . 555495) (-1753 . 555390)
+ (-1754 . 554713) (-1755 . 554469) (-1756 . 554438) (-1757 . 554107)
+ (-1758 . 554039) (-1759 . 553920) (-1760 . 553862) (-1761 . 553730)
+ (-1762 . 553580) (-1763 . 553432) (-1764 . 553375) (-1765 . 553266)
+ (-1766 . 552895) (-1767 . 552756) (-1768 . 552586) (-1769 . 552537)
+ (-1770 . 552445) (-1771 . 552390) (-1772 . 552356) (-1773 . 552077)
+ (-1774 . 551917) (-1775 . 551762) (-1776 . 551705) (-1777 . 551621)
+ (-1778 . 551348) (-1779 . 551174) (-1780 . 551091) (-1781 . 551014)
+ (-1782 . 550130) (-1783 . 550064) (-1784 . 549799) (-1785 . 549700)
+ (-1786 . 549599) (-1787 . 549571) (-1788 . 549151) (-1789 . 549078)
+ (-1790 . 548922) (-1791 . 548799) (-1792 . 548359) (-1793 . 548109)
+ (-1794 . 547912) (-1795 . 547782) (-1796 . 547726) (-1797 . 547535)
+ (-1798 . 546992) (-1799 . 546885) (-1800 . 546587) (-1801 . 546497)
+ (-1802 . 546403) (-1803 . 546308) (-1804 . 546240) (-1805 . 546138)
+ (-1806 . 545980) (-1807 . 545881) (-1808 . 545079) (-1809 . 544558)
+ (-1810 . 544475) (-1811 . 544398) (-1812 . 544310) (-1813 . 544241)
+ (-1814 . 544096) (-1815 . 543987) (-1816 . 543866) (-1817 . 543335)
+ (-1818 . 543284) (-1819 . 543160) (-1820 . 543030) (-1821 . 542770)
+ (-1822 . 542626) (-1823 . 542517) (-1824 . 542283) (-1825 . 542113)
+ (-1826 . 541998) (-1827 . 541784) (-1828 . 541553) (-1829 . 541468)
+ (-1830 . 541303) (-1831 . 541064) (-1832 . 540655) (-1833 . 540603)
+ (-1834 . 540448) (-1835 . 540363) (-1836 . 540165) (-1837 . 540112)
+ (-1838 . 539991) (-1839 . 539904) (-1840 . 539790) (-1841 . 539738)
+ (-1842 . 539408) (-1843 . 539101) (-1844 . 538301) (-1845 . 538182)
+ (-1846 . 538064) (-1847 . 538014) (-1848 . 537806) (-1849 . 537679)
+ (-1850 . 537580) (-1851 . 537354) (-1852 . 537130) (-1853 . 537077)
+ (-1854 . 536956) (-1855 . 536817) (-1856 . 536700) (-1857 . 532638)
+ (-1858 . 532544) (-1859 . 532370) (-1860 . 532164) (-1861 . 532069)
+ (-1862 . 531584) (-1863 . 531506) (-1864 . 531362) (-1865 . 531128)
+ (-1866 . 530727) (-1867 . 530699) (-1868 . 530590) (-1869 . 530226)
+ (-1870 . 530152) (-1871 . 529984) (-1872 . 529861) (-1873 . 529711)
+ (-1874 . 529531) (-1875 . 529430) (-1876 . 529328) (-1877 . 528895)
+ (-1878 . 528842) (-1879 . 528790) (-1880 . 528642) (-1881 . 528096)
+ (-1882 . 527890) (-1883 . 527762) (-1884 . 527551) (-1885 . 527471)
+ (-1886 . 527399) (-1887 . 527326) (-1888 . 527168) (-1889 . 525828)
+ (-1890 . 525694) (-1891 . 525560) (-1892 . 525287) (-1893 . 525221)
+ (-1894 . 525106) (-1895 . 524764) (-1896 . 524542) (-1897 . 524214)
+ (-1898 . 524071) (-1899 . 523943) (-1900 . 523349) (-1901 . 523265)
+ (-1902 . 523181) (-1903 . 523074) (-1904 . 522898) (-1905 . 522810)
+ (-1906 . 522724) (-1907 . 522583) (-1908 . 522453) (-1909 . 522352)
+ (-1910 . 522296) (-1911 . 522229) (-1912 . 522158) (-1913 . 522092)
+ (-1914 . 521129) (-1915 . 520988) (-1916 . 520575) (-1917 . 520515)
+ (-1918 . 520209) (-1919 . 520038) (-1920 . 519945) (-1921 . 519783)
+ (-1922 . 519470) (-1923 . 519302) (-1924 . 519208) (-1925 . 519137)
+ (-1926 . 519079) (-1927 . 518912) (-1928 . 518842) (-1929 . 518550)
+ (-1930 . 518428) (-1931 . 518237) (-1932 . 518182) (-1933 . 518035)
+ (-1934 . 517926) (-1935 . 517826) (-1936 . 517646) (-1937 . 517524)
+ (-1938 . 517487) (-1939 . 517421) (-1940 . 517347) (-1941 . 517139)
+ (-1942 . 517002) (-1943 . 516915) (-1944 . 516819) (-1945 . 516788)
+ (-1946 . 516668) (-1947 . 516613) (-1948 . 516560) (-1949 . 516419)
+ (-1950 . 516312) (-1951 . 516196) (-1952 . 516143) (-1953 . 516073)
+ (-1954 . 515786) (-1955 . 515731) (-1956 . 515658) (-1957 . 515306)
+ (-1958 . 515254) (-1959 . 515160) (-1960 . 515108) (-1961 . 515006)
+ (-1962 . 514901) (-1963 . 514791) (-1964 . 514635) (-1965 . 514418)
+ (-1966 . 514218) (-1967 . 514025) (-1968 . 513908) (-1969 . 513856)
+ (-1970 . 513782) (-1971 . 513593) (-1972 . 513527) (-1973 . 512840)
+ (-1974 . 512605) (-1975 . 512553) (-1976 . 512379) (-1977 . 512260)
+ (-1978 . 512109) (-1979 . 511986) (-1980 . 511849) (-1981 . 511665)
+ (-1982 . 511570) (-1983 . 511518) (-1984 . 511372) (-1985 . 511271)
+ (-1986 . 511171) (-1987 . 510484) (-1988 . 510360) (-1989 . 510326)
+ (-1990 . 510031) (-1991 . 509909) (-1992 . 509766) (-1993 . 509671)
+ (-1994 . 509486) (-1995 . 509422) (-1996 . 508847) (-1997 . 508745)
+ (-1998 . 508522) (-1999 . 508426) (-2000 . 508298) (-2001 . 508091)
+ (-2002 . 507953) (-2003 . 507863) (-2004 . 506994) (-2005 . 506923)
+ (-2006 . 506639) (-2007 . 506566) (-2008 . 506085) (-2009 . 505868)
+ (-2010 . 505263) (-2011 . 503011) (-2012 . 502909) (-2013 . 502806)
+ (-2014 . 502709) (-2015 . 502654) (-2016 . 502267) (-2017 . 502158)
+ (-2018 . 502005) (-2019 . 501851) (-2020 . 501767) (-2021 . 501513)
+ (-2022 . 501335) (-2023 . 501278) (-2024 . 501109) (-2025 . 500718)
+ (-2026 . 500478) (-2027 . 500348) (-2028 . 500202) (-2029 . 500012)
+ (-2030 . 499850) (-2031 . 499682) (-2032 . 499517) (-2033 . 499460)
+ (-2034 . 499381) (-2035 . 499218) (-2036 . 499147) (-2037 . 498659)
+ (-2038 . 498489) (-2039 . 498401) (-2040 . 498240) (-2041 . 498122)
+ (-2042 . 498038) (-2043 . 497985) (-2044 . 497402) (-2045 . 497343)
+ (-2046 . 496992) (-2047 . 496794) (-2048 . 496766) (-2049 . 496631)
+ (-2050 . 496546) (-2051 . 496445) (-2052 . 496392) (-2053 . 496281)
+ (-2054 . 496184) (-2055 . 496025) (-2056 . 495941) (-2057 . 495750)
+ (-2058 . 495340) (-2059 . 495121) (-2060 . 495050) (-2061 . 494904)
+ (-2062 . 494796) (-2063 . 494726) (-2064 . 494487) (-2065 . 494329)
+ (-2066 . 494228) (-2067 . 494076) (-2068 . 493969) (-2069 . 493869)
+ (-2070 . 493817) (-2071 . 493490) (-2072 . 493259) (-2073 . 493158)
+ (-2074 . 493079) (-2075 . 493026) (-2076 . 492896) (-2077 . 492830)
+ (-2078 . 492512) (-2079 . 492364) (-2080 . 492128) (-2081 . 492035)
+ (-2082 . 491980) (-2083 . 491801) (-2084 . 491703) (-2085 . 491661)
+ (-2086 . 491598) (-2087 . 491452) (-2088 . 491390) (-2089 . 490535)
+ (-2090 . 490504) (-2091 . 490345) (-2092 . 489908) (-2093 . 489852)
+ (-2094 . 489588) (-2095 . 489494) (-2096 . 489414) (-2097 . 489311)
+ (-2098 . 489277) (-2099 . 489114) (-2100 . 488969) (-2101 . 488838)
+ (-2102 . 488761) (-2103 . 488388) (-2104 . 488241) (-2105 . 488123)
+ (-2106 . 487970) (-2107 . 487938) (-2108 . 487760) (-2109 . 487446)
+ (-2110 . 487349) (-2111 . 487255) (-2112 . 487203) (-2113 . 485251)
+ (-2114 . 485223) (-2115 . 484702) (-2116 . 484531) (-2117 . 483863)
+ (-2118 . 483614) (-2119 . 483424) (-2120 . 483355) (-2121 . 483167)
+ (-2122 . 482651) (-2123 . 482548) (-2124 . 482496) (-2125 . 482441)
+ (-2126 . 482382) (-2127 . 482329) (-2128 . 481473) (-2129 . 481376)
+ (-2130 . 481277) (-2131 . 480745) (-2132 . 480644) (-2133 . 480526)
+ (-2134 . 480279) (-2135 . 479764) (-2136 . 479711) (-2137 . 479658)
+ (-2138 . 479528) (-2139 . 479357) (-2140 . 479326) (-2141 . 479010)
+ (-2142 . 478957) (-2143 . 478906) (-2144 . 478835) (-2145 . 478735)
+ (-2146 . 478573) (-2147 . 478483) (-2148 . 478388) (-2149 . 478316)
+ (-2150 . 478202) (-2151 . 478052) (-2152 . 477971) (-2153 . 477871)
+ (-2154 . 477236) (-2155 . 477167) (-2156 . 477012) (-2157 . 476968)
+ (-2158 . 476883) (-2159 . 476703) (-2160 . 476431) (-2161 . 474967)
+ (-2162 . 474683) (-2163 . 474352) (-2164 . 473886) (-2165 . 473708)
+ (-2166 . 473610) (-2167 . 473405) (-2168 . 473199) (-2169 . 473126)
+ (-2170 . 473072) (-2171 . 473020) (-2172 . 472853) (-2173 . 472701)
+ (-2174 . 472561) (-2175 . 472476) (-2176 . 471803) (-2177 . 471646)
+ (-2178 . 471090) (-2179 . 470758) (-2180 . 470567) (-2181 . 470494)
+ (-2182 . 470436) (-2183 . 470366) (-2184 . 470221) (-2185 . 469945)
+ (-2186 . 469766) (-2187 . 469666) (-2188 . 469594) (-2189 . 469513)
+ (-2190 . 469461) (-2191 . 469369) (-2192 . 469162) (-2193 . 469021)
+ (-2194 . 468962) (-2195 . 468781) (-2196 . 468668) (-2197 . 468583)
+ (-2198 . 468434) (-2199 . 468378) (-2200 . 468251) (-2201 . 468159)
+ (-2202 . 467629) (-2203 . 467240) (-2204 . 467137) (-2205 . 467044)
+ (-2206 . 466912) (-2207 . 466553) (-2208 . 466448) (-2209 . 466293)
+ (-2210 . 466237) (-2211 . 466096) (-2212 . 466041) (-2213 . 465955)
+ (-2214 . 465845) (-2215 . 465792) (-2216 . 465721) (-2217 . 465519)
+ (-2218 . 465348) (-2219 . 465253) (-2220 . 465168) (-2221 . 465046)
+ (-2222 . 464672) (-2223 . 464611) (-2224 . 464424) (-2225 . 464318)
+ (-2226 . 463991) (-2227 . 463896) (-2228 . 463659) (-2229 . 463585)
+ (-2230 . 463491) (-2231 . 463389) (-2232 . 463264) (-2233 . 463186)
+ (-2234 . 463134) (-2235 . 463074) (-2236 . 462994) (-2237 . 462853)
+ (-2238 . 462331) (-2239 . 462176) (-2240 . 462083) (-2241 . 461980)
+ (-2242 . 461871) (-2243 . 461762) (-2244 . 461625) (-2245 . 461567)
+ (-2246 . 461339) (-2247 . 461222) (-2248 . 461064) (-2249 . 460924)
+ (-2250 . 460762) (-2251 . 460215) (-2252 . 459727) (-2253 . 459653)
+ (-2254 . 459178) (-2255 . 459129) (-2256 . 458798) (-2257 . 458676)
+ (-2258 . 458597) (-2259 . 458566) (-2260 . 458442) (-2261 . 458272)
+ (-2262 . 458190) (-2263 . 458110) (-2264 . 457988) (-2265 . 457797)
+ (-2266 . 457717) (-2267 . 457651) (-2268 . 457545) (-2269 . 457421)
+ (-2270 . 456561) (-2271 . 456318) (-2272 . 456211) (-2273 . 456137)
+ (-2274 . 455822) (-2275 . 455754) (-2276 . 455326) (-2277 . 455237)
+ (-2278 . 455208) (-2279 . 455065) (-2280 . 454950) (-2281 . 454706)
+ (-2282 . 454364) (-2283 . 454211) (-2284 . 454112) (-2285 . 453969)
+ (-2286 . 453707) (-2287 . 453603) (-2288 . 453182) (-2289 . 453016)
+ (-2290 . 452635) (-2291 . 452491) (-2292 . 451420) (-2293 . 451079)
+ (-2294 . 451051) (-2295 . 450829) (-2296 . 450585) (-2297 . 450480)
+ (-2298 . 450382) (-2299 . 450298) (-2300 . 450225) (-2301 . 450175)
+ (-2302 . 450110) (-2303 . 450017) (-2304 . 449932) (-2305 . 449446)
+ (-2306 . 449393) (-2307 . 449118) (-2308 . 449002) (-2309 . 448846)
+ (-2310 . 448747) (-2311 . 448622) (-2312 . 448440) (-2313 . 448336)
+ (-2314 . 448267) (-2315 . 448166) (-2316 . 447915) (-2317 . 447887)
+ (-2318 . 447835) (-2319 . 447739) (-2320 . 447665) (-2321 . 447288)
+ (-2322 . 446769) (-2323 . 446660) (-2324 . 446632) (-2325 . 446238)
+ (-2326 . 446097) (-2327 . 446041) (-2328 . 445916) (-2329 . 445578)
+ (-2330 . 445342) (-2331 . 445314) (-2332 . 445162) (-2333 . 444815)
+ (-2334 . 444728) (-2335 . 444635) (-2336 . 444583) (-2337 . 444532)
+ (-2338 . 444477) (-2339 . 444423) (-2340 . 443788) (-2341 . 443727)
+ (-2342 . 443564) (-2343 . 443419) (-2344 . 443300) (-2345 . 443197)
+ (-2346 . 443079) (-2347 . 443030) (-2348 . 442834) (-2349 . 442763)
+ (-2350 . 442690) (-2351 . 442443) (-2352 . 442291) (-2353 . 442238)
+ (-2354 . 442185) (-2355 . 442029) (-2356 . 441867) (-2357 . 441783)
+ (-2358 . 441650) (-2359 . 441472) (-2360 . 441370) (-2361 . 441297)
+ (-2362 . 441114) (-2363 . 441062) (-2364 . 441034) (-2365 . 440806)
+ (-2366 . 440680) (-2367 . 440560) (-2368 . 440437) (-2369 . 440295)
+ (-2370 . 440165) (-2371 . 439870) (-2372 . 439727) (-2373 . 439671)
+ (-2374 . 439499) (-2375 . 439404) (-2376 . 439252) (-2377 . 439183)
+ (-2378 . 439130) (-2379 . 439078) (-2380 . 439004) (-2381 . 438708)
+ (-2382 . 438553) (-2383 . 438384) (-2384 . 438012) (-2385 . 437898)
+ (-2386 . 437832) (-2387 . 437660) (-2388 . 437344) (-2389 . 437207)
+ (-2390 . 437074) (-2391 . 436937) (-2392 . 436900) (-2393 . 436808)
+ (-2394 . 436756) (-2395 . 436623) (-2396 . 436570) (-2397 . 436513)
+ (-2398 . 436396) (-2399 . 436224) (-2400 . 435712) (-2401 . 435622)
+ (-2402 . 435467) (-2403 . 435359) (-2404 . 435256) (-2405 . 435176)
+ (-2406 . 435011) (-2407 . 434793) (-2408 . 434679) (-2409 . 434481)
+ (-2410 . 434056) (-2411 . 433948) (-2412 . 433776) (-2413 . 433510)
+ (-2414 . 433372) (-2415 . 433300) (-2416 . 433177) (-2417 . 433125)
+ (-2418 . 432979) (-2419 . 432786) (-2420 . 432575) (-2421 . 432526)
+ (-2422 . 432443) (-2423 . 431951) (-2424 . 431682) (-2425 . 431608)
+ (-2426 . 431534) (-2427 . 431475) (-2428 . 431363) (-2429 . 431290)
+ (-2430 . 431223) (-2431 . 431105) (-2432 . 427820) (-2433 . 427676)
+ (-2434 . 427621) (-2435 . 427289) (-2436 . 425843) (-2437 . 425713)
+ (-2438 . 425554) (-2439 . 425417) (-2440 . 425170) (-2441 . 425033)
+ (-2442 . 424904) (-2443 . 424594) (-2444 . 424464) (-2445 . 424319)
+ (-2446 . 424233) (-2447 . 424161) (-2448 . 424003) (-2449 . 423808)
+ (-2450 . 423735) (-2451 . 423600) (-2452 . 423478) (-2453 . 422904)
+ (-2454 . 422831) (-2455 . 422760) (-2456 . 422642) (-2457 . 422269)
+ (-2458 . 421909) (-2459 . 421880) (-2460 . 421779) (-2461 . 421672)
+ (-2462 . 421599) (-2463 . 421468) (-2464 . 421415) (-2465 . 421035)
+ (-2466 . 420912) (-2467 . 420875) (-2468 . 420731) (-2469 . 420665)
+ (-2470 . 418250) (-2471 . 418198) (-2472 . 418115) (-2473 . 418008)
+ (-2474 . 417667) (-2475 . 417611) (-2476 . 417393) (-2477 . 417263)
+ (-2478 . 416983) (-2479 . 416900) (-2480 . 416807) (-2481 . 416720)
+ (-2482 . 416141) (-2483 . 416037) (-2484 . 415939) (-2485 . 415746)
+ (-2486 . 415341) (-2487 . 415217) (-2488 . 414830) (-2489 . 414668)
+ (-2490 . 414594) (-2491 . 414302) (-2492 . 413938) (-2493 . 413805)
+ (-2494 . 413754) (-2495 . 413699) (-2496 . 413603) (-2497 . 413504)
+ (-2498 . 413280) (-2499 . 413201) (-2500 . 413097) (-2501 . 412858)
+ (-2502 . 412748) (-2503 . 412641) (-2504 . 412350) (-2505 . 412241)
+ (-2506 . 411966) (-2507 . 411819) (-2508 . 411679) (-2509 . 411568)
+ (-2510 . 411469) (-2511 . 411371) (-2512 . 411300) (-2513 . 411190)
+ (-2514 . 411126) (-2515 . 410982) (-2516 . 410662) (-2517 . 410372)
+ (-2518 . 410299) (-2519 . 410205) (-2520 . 410136) (-2521 . 410042)
+ (-2522 . 409864) (-2523 . 409798) (-2524 . 409711) (-2525 . 409638)
+ (-2526 . 409379) (-2527 . 409299) (-2528 . 409229) (-2529 . 409128)
+ (-2530 . 408812) (-2531 . 408760) (-2532 . 407650) (-2533 . 407035)
+ (-2534 . 406982) (-2535 . 406899) (-2536 . 406832) (-2537 . 406721)
+ (-2538 . 406505) (-2539 . 406420) (-2540 . 406250) (-2541 . 406041)
+ (-2542 . 405935) (-2543 . 405842) (-2544 . 405635) (-2545 . 405440)
+ (-2546 . 405129) (-2547 . 404985) (-2548 . 404712) (-2549 . 404546)
+ (-2550 . 404164) (-2551 . 404090) (-2552 . 403917) (-2553 . 403791)
+ (-2554 . 403577) (-2555 . 403404) (-2556 . 403342) (-2557 . 403240)
+ (-2558 . 403170) (-2559 . 403097) (-2560 . 401522) (-2561 . 401442)
+ (-2562 . 401411) (-2563 . 400602) (-2564 . 400536) (-2565 . 400417)
+ (-2566 . 400302) (-2567 . 400178) (-2568 . 400097) (-2569 . 399672)
+ (-2570 . 399619) (-2571 . 399532) (-2572 . 398734) (-2573 . 398656)
+ (-2574 . 398495) (-2575 . 398339) (-2576 . 398230) (-2577 . 398053)
+ (-2578 . 397956) (-2579 . 397853) (-2580 . 397788) (-2581 . 397648)
+ (-2582 . 397525) (-2583 . 393365) (-2584 . 393316) (-2585 . 393129)
+ (-2586 . 393048) (-2587 . 392937) (-2588 . 392863) (-2589 . 392769)
+ (-2590 . 392611) (-2591 . 392393) (-2592 . 392166) (-2593 . 392065)
+ (-2594 . 391877) (-2595 . 391540) (-2596 . 391455) (-2597 . 391256)
+ (-2598 . 391031) (-2599 . 390957) (-2600 . 390455) (** . 387378)
+ (-2602 . 386853) (-2603 . 386538) (-2604 . 386092) (-2605 . 385997)
+ (-2606 . 385944) (-2607 . 385831) (-2608 . 385760) (-2609 . 385679)
+ (-2610 . 385627) (-2611 . 385187) (-2612 . 385117) (-2613 . 385034)
+ (-2614 . 384965) (-2615 . 384801) (-2616 . 384773) (-2617 . 384549)
+ (-2618 . 384405) (-2619 . 384253) (-2620 . 384197) (-2621 . 384056)
+ (-2622 . 383663) (-2623 . 383629) (-2624 . 383171) (-2625 . 383080)
+ (-2626 . 382721) (-2627 . 382273) (-2628 . 382162) (-2629 . 382089)
+ (-2630 . 382001) (-2631 . 381757) (-2632 . 381672) (-2633 . 381550)
+ (-2634 . 380666) (-2635 . 380320) (-2636 . 379961) (-2637 . 379894)
+ (-2638 . 379668) (-2639 . 379496) (-2640 . 379412) (-2641 . 379173)
+ (-2642 . 379067) (-2643 . 378877) (-2644 . 378800) (-2645 . 378734)
+ (-2646 . 378651) (-2647 . 378458) (-2648 . 378287) (-2649 . 376991)
+ (-2650 . 376767) (-2651 . 376712) (-2652 . 376542) (-2653 . 376368)
+ (-2654 . 376314) (-2655 . 376240) (-2656 . 376038) (-2657 . 375933)
+ (-2658 . 375734) (-2659 . 375655) (-2660 . 375573) (-2661 . 374669)
+ (-2662 . 374570) (-2663 . 374458) (-2664 . 374359) (-2665 . 373631)
+ (-2666 . 373351) (-2667 . 372900) (-2668 . 372521) (-2669 . 372035)
+ (-2670 . 371868) (-2671 . 371755) (-2672 . 371512) (-2673 . 371307)
+ (-2674 . 371222) (-2675 . 371150) (-2676 . 370983) (-2677 . 370913)
+ (-2678 . 370804) (-2679 . 370699) (-2680 . 370387) (-2681 . 370328)
+ (-2682 . 370227) (-2683 . 370069) (-2684 . 369982) (-2685 . 369838)
+ (-2686 . 369731) (-2687 . 369280) (-2688 . 369122) (-2689 . 368470)
+ (-2690 . 368407) (-2691 . 368354) (-2692 . 368231) (-2693 . 368056)
+ (-2694 . 367924) (-2695 . 367680) (-2696 . 367612) (-2697 . 367300)
+ (-2698 . 367218) (-2699 . 367134) (-2700 . 367061) (-2701 . 366832)
+ (-2702 . 366695) (-2703 . 366622) (-2704 . 366551) (-2705 . 366224)
+ (-2706 . 366085) (-2707 . 366051) (-2708 . 366017) (-2709 . 365831)
+ (-2710 . 365741) (-2711 . 365583) (-2712 . 365367) (-2713 . 364876)
+ (-2714 . 364290) (-2715 . 363542) (-2716 . 363249) (-2717 . 363022)
+ (-2718 . 362988) (-2719 . 362804) (-2720 . 362459) (-2721 . 362199)
+ (-2722 . 361179) (-2723 . 361124) (-2724 . 361072) (-2725 . 361022)
+ (-2726 . 360950) (-2727 . 360634) (-2728 . 360507) (-2729 . 360354)
+ (-2730 . 360283) (-2731 . 360059) (-2732 . 359812) (-2733 . 359382)
+ (-2734 . 359311) (-2735 . 359114) (-2736 . 358987) (-2737 . 358827)
+ (-2738 . 358769) (-2739 . 358688) (-2740 . 358444) (-2741 . 358346)
+ (-2742 . 358176) (-2743 . 358074) (-2744 . 357685) (-2745 . 357276)
+ (-2746 . 357117) (-2747 . 356898) (-2748 . 356821) (-2749 . 356728)
+ (-2750 . 356510) (-2751 . 356173) (-2752 . 356121) (-2753 . 355306)
+ (-2754 . 355153) (-2755 . 355075) (-2756 . 354701) (-2757 . 354524)
+ (-2758 . 354305) (-2759 . 354253) (-2760 . 354149) (-2761 . 354096)
+ (-2762 . 353809) (-2763 . 353175) (-2764 . 352923) (-2765 . 352841)
+ (-2766 . 352579) (-2767 . 352459) (-2768 . 352393) (-2769 . 352316)
+ (-2770 . 352207) (-2771 . 350428) (-2772 . 350270) (-2773 . 350204)
+ (-2774 . 350046) (-2775 . 349923) (-2776 . 349828) (-2777 . 349672)
+ (-2778 . 349351) (-2779 . 349240) (-2780 . 349117) (-2781 . 348954)
+ (-2782 . 348845) (-2783 . 348635) (-2784 . 347449) (-2785 . 347335)
+ (-2786 . 347237) (-2787 . 346134) (-2788 . 346047) (-2789 . 345702)
+ (-2790 . 345492) (-2791 . 345394) (-2792 . 345236) (-2793 . 344645)
+ (-2794 . 344528) (-2795 . 344342) (-2796 . 344009) (-2797 . 343880)
+ (-2798 . 343783) (-2799 . 343696) (-2800 . 343533) (-2801 . 343378)
+ (-2802 . 343279) (-2803 . 343192) (-2804 . 342944) (-2805 . 342563)
+ (-2806 . 342480) (-2807 . 342085) (-2808 . 341880) (-2809 . 341814)
+ (-2810 . 341783) (-2811 . 341229) (-2812 . 341170) (-2813 . 341049)
+ (-2814 . 340963) (-2815 . 340774) (-2816 . 340461) (-2817 . 340390)
+ (-2818 . 340338) (-2819 . 339183) (-2820 . 339127) (-2821 . 338963)
+ (-2822 . 338658) (-2823 . 338417) (-2824 . 338179) (-2825 . 338072)
+ (-2826 . 337914) (-2827 . 336644) (-2828 . 336580) (-2829 . 336324)
+ (-2830 . 336258) (-2831 . 336184) (-2832 . 336027) (-2833 . 335828)
+ (-2834 . 335669) (-2835 . 335247) (-2836 . 335121) (-2837 . 335002)
+ (-2838 . 334813) (-2839 . 334574) (-2840 . 334468) (-2841 . 334373)
+ (-2842 . 334293) (-2843 . 334078) (-2844 . 332360) (-2845 . 332217)
+ (-2846 . 332120) (-2847 . 332014) (-2848 . 331891) (-2849 . 331839)
+ (-2850 . 331586) (-2851 . 331382) (-2852 . 331276) (-2853 . 331103)
+ (-2854 . 331008) (-2855 . 330956) (-2856 . 330566) (-2857 . 330454)
+ (-2858 . 330387) (-2859 . 330271) (-2860 . 330101) (-2861 . 330046)
+ (-2862 . 329876) (-2863 . 329802) (-2864 . 329717) (-2865 . 328432)
+ (-2866 . 328187) (-2867 . 328051) (-2868 . 327964) (-2869 . 327725)
+ (-2870 . 327619) (-2871 . 327536) (-2872 . 327137) (-2873 . 327051)
+ (-2874 . 326926) (-2875 . 326745) (-2876 . 326552) (-2877 . 326457)
+ (-2878 . 326256) (-2879 . 326144) (-2880 . 325893) (-2881 . 325831)
+ (-2882 . 325803) (-2883 . 325324) (-2884 . 325197) (-2885 . 325163)
+ (-2886 . 325086) (-2887 . 324940) (-2888 . 324777) (-2889 . 324706)
+ (-2890 . 324651) (-2891 . 324472) (-2892 . 324444) (-2893 . 324335)
+ (-2894 . 324006) (-2895 . 323957) (-2896 . 323861) (-2897 . 323664)
+ (-2898 . 323594) (-2899 . 323542) (-2900 . 323514) (-2901 . 323462)
+ (-2902 . 323182) (-2903 . 323129) (-2904 . 323028) (-2905 . 322919)
+ (-2906 . 322666) (-2907 . 322592) (-2908 . 322388) (-2909 . 322252)
+ (-2910 . 322090) (-2911 . 322041) (-2912 . 321992) (-2913 . 321869)
+ (-2914 . 321762) (-2915 . 321547) (-2916 . 321463) (-2917 . 321356)
+ (-2918 . 321283) (-2919 . 321085) (-2920 . 321002) (-2921 . 320784)
+ (-2922 . 320677) (-2923 . 320625) (-2924 . 320511) (-2925 . 320329)
+ (-2926 . 320186) (-2927 . 319626) (-2928 . 319560) (-2929 . 319476)
+ (-2930 . 319148) (-2931 . 319056) (-2932 . 318941) (-2933 . 318814)
+ (-2934 . 318627) (-2935 . 318575) (-2936 . 318381) (-2937 . 318286)
+ (-2938 . 318128) (-2939 . 317878) (-2940 . 317780) (-2941 . 317377)
+ (-2942 . 316757) (-2943 . 316619) (-2944 . 316353) (-2945 . 316238)
+ (-2946 . 316073) (-2947 . 315964) (-2948 . 315912) (-2949 . 315817)
+ (-2950 . 315705) (-2951 . 315653) (-2952 . 315601) (-2953 . 315486)
+ (-2954 . 315334) (-2955 . 315145) (-2956 . 315048) (-2957 . 314910)
+ (-2958 . 314748) (-2959 . 314572) (-2960 . 313507) (-2961 . 313397)
+ (-2962 . 313209) (-2963 . 312959) (-2964 . 312900) (-2965 . 312475)
+ (-2966 . 312352) (-2967 . 312299) (-2968 . 312222) (-2969 . 311686)
+ (-2970 . 311591) (-2971 . 311415) (-2972 . 311213) (-2973 . 310998)
+ (-2974 . 310611) (-2975 . 310542) (-2976 . 309841) (-2977 . 309662)
+ (-2978 . 309553) (-2979 . 309442) (-2980 . 309365) (-2981 . 309285)
+ (-2982 . 309031) (-2983 . 308728) (-2984 . 308595) (-2985 . 308498)
+ (-2986 . 308389) (-2987 . 308336) (-2988 . 308180) (-2989 . 308068)
+ (-2990 . 307888) (-2991 . 307684) (-2992 . 307607) (-2993 . 307361)
+ (-2994 . 307298) (-2995 . 307078) (-2996 . 306969) (-2997 . 306916)
+ (-2998 . 306677) (-2999 . 306488) (-3000 . 306417) (-3001 . 306273)
+ (-3002 . 306174) (-3003 . 305962) (-3004 . 305441) (-3005 . 305053)
+ (-3006 . 305001) (-3007 . 304949) (-3008 . 304863) (-3009 . 304792)
+ (-3010 . 304666) (-3011 . 304614) (-3012 . 304282) (-3013 . 304179)
+ (-3014 . 303878) (-3015 . 303806) (-3016 . 303662) (-3017 . 303560)
+ (-3018 . 303505) (-3019 . 303452) (-3020 . 303127) (-3021 . 303024)
+ (-3022 . 280039) (-3023 . 279971) (-3024 . 279660) (-3025 . 279569)
+ (-3026 . 279441) (-3027 . 279353) (-3028 . 279048) (-3029 . 278974)
+ (-3030 . 278903) (-3031 . 278826) (-3032 . 277824) (-3033 . 277744)
+ (-3034 . 277565) (-3035 . 277355) (-3036 . 274603) (-3037 . 274060)
+ (-3038 . 273928) (-3039 . 273819) (-3040 . 273617) (-3041 . 273453)
+ (-3042 . 273379) (-3043 . 273041) (-3044 . 272934) (-3045 . 272823)
+ (-3046 . 272789) (-3047 . 272511) (-3048 . 272381) (-3049 . 272280)
+ (-3050 . 272128) (-3051 . 271998) (-3052 . 271862) (-3053 . 271479)
+ (-3054 . 271368) (-3055 . 271212) (-3056 . 271052) (-3057 . 270931)
+ (-3058 . 270652) (-3059 . 270600) (-3060 . 270545) (-3061 . 270460)
+ (-3062 . 270279) (-3063 . 270017) (-3064 . 268255) (-3065 . 268172)
+ (-3066 . 267560) (-3067 . 267361) (-3068 . 267295) (-3069 . 267152)
+ (-3070 . 267030) (-3071 . 266919) (-3072 . 266846) (-3073 . 266794)
+ (-3074 . 266548) (-3075 . 266339) (-3076 . 266049) (-3077 . 265759)
+ (-3078 . 265333) (-3079 . 265089) (-3080 . 265018) (-3081 . 264957)
+ (-3082 . 264772) (-3083 . 264482) (-3084 . 264409) (-3085 . 264338)
+ (-3086 . 264237) (-3087 . 264037) (-3088 . 263975) (-3089 . 263892)
+ (-3090 . 263715) (-3091 . 263555) (-3092 . 263390) (-3093 . 263042)
+ (-3094 . 262893) (-3095 . 262752) (-3096 . 262612) (-3097 . 262494)
+ (-3098 . 262395) (-3099 . 262091) (-3100 . 261910) (-3101 . 261728)
+ (-3102 . 261551) (-3103 . 261407) (-3104 . 261129) (-3105 . 261101)
+ (-3106 . 261042) (-3107 . 260749) (-3108 . 260555) (-3109 . 260167)
+ (-3110 . 259998) (-3111 . 259748) (-3112 . 259614) (-3113 . 259317)
+ (-3114 . 259213) (-3115 . 258934) (-3116 . 258810) (-3117 . 258698)
+ (-3118 . 258648) (-3119 . 258450) (-3120 . 258370) (-3121 . 257962)
+ (-3122 . 257850) (-3123 . 257671) (-3124 . 257597) (-3125 . 257400)
+ (-3126 . 257344) (-3127 . 257231) (-3128 . 257151) (-3129 . 257044)
+ (-3130 . 256765) (-3131 . 256621) (-3132 . 256398) (-3133 . 256342)
+ (-3134 . 256216) (-3135 . 255800) (-3136 . 255698) (-3137 . 255277)
+ (-3138 . 255176) (-3139 . 255111) (-3140 . 255024) (-3141 . 254894)
+ (-3142 . 254725) (-3143 . 254645) (-3144 . 253904) (-3145 . 253756)
+ (-3146 . 253728) (-3147 . 253589) (-3148 . 253506) (-3149 . 253374)
+ (-3150 . 253306) (-3151 . 253183) (-3152 . 253100) (-3153 . 252915)
+ (-3154 . 252536) (-3155 . 252481) (-3156 . 251740) (-3157 . 251605)
+ (-3158 . 251531) (-3159 . 251457) (-3160 . 251049) (-3161 . 250992)
+ (-3162 . 250892) (-3163 . 250019) (-3164 . 244920) (-3165 . 244821)
+ (-3166 . 244753) (-3167 . 244700) (-3168 . 244400) (-3169 . 243712)
+ (-3170 . 243662) (-3171 . 243497) (-3172 . 243367) (-3173 . 243297)
+ (-3174 . 243219) (-3175 . 243098) (-3176 . 242927) (-3177 . 242826)
+ (-3178 . 242275) (-3179 . 242177) (-3180 . 241817) (-3181 . 241751)
+ (-3182 . 241585) (-3183 . 241292) (-3184 . 240931) (-3185 . 240422)
+ (-3186 . 239121) (-3187 . 239037) (-3188 . 238959) (-3189 . 238876)
+ (-3190 . 238824) (-3191 . 238630) (-3192 . 238530) (-3193 . 238405)
+ (-3194 . 238280) (-3195 . 238200) (-3196 . 237679) (-3197 . 237243)
+ (-3198 . 237070) (-3199 . 236744) (-3200 . 236635) (-3201 . 236514)
+ (-3202 . 236380) (-3203 . 236189) (-3204 . 236080) (-3205 . 236006)
+ (-3206 . 235932) (-3207 . 235825) (-3208 . 235234) (-3209 . 234858)
+ (-3210 . 234784) (-3211 . 234714) (-3212 . 234571) (-3213 . 234464)
+ (-3214 . 234387) (-3215 . 234040) (-3216 . 233832) (-3217 . 233498)
+ (-3218 . 233148) (-3219 . 232112) (-3220 . 231965) (-3221 . 231830)
+ (-3222 . 231613) (-3223 . 231456) (-3224 . 231382) (-3225 . 231151)
+ (-3226 . 231005) (-3227 . 230911) (-3228 . 230632) (-3229 . 230514)
+ (-3230 . 230288) (-3231 . 230185) (-3232 . 230111) (-3233 . 230028)
+ (-3234 . 229943) (-3235 . 229795) (-3236 . 229677) (-3237 . 229365)
+ (-3238 . 229272) (-3239 . 228963) (-3240 . 228623) (-3241 . 228529)
+ (-3242 . 228245) (-3243 . 228185) (-3244 . 228133) (-3245 . 228104)
+ (-3246 . 227795) (-3247 . 227739) (-3248 . 227654) (-3249 . 227427)
+ (-3250 . 227368) (-3251 . 227244) (-3252 . 227092) (-3253 . 226943)
+ (-3254 . 226811) (-3255 . 226579) (-3256 . 226481) (-3257 . 226395)
+ (-3258 . 226339) (-3259 . 226100) (-3260 . 226016) (-3261 . 225939)
+ (-3262 . 225830) (-3263 . 225727) (-3264 . 225480) (-3265 . 225373)
+ (-3266 . 223221) (-3267 . 222982) (-3268 . 222867) (-3269 . 222376)
+ (-3270 . 222143) (-3271 . 221867) (-3272 . 221676) (-3273 . 221532)
+ (-3274 . 221418) (-3275 . 221366) (-3276 . 220915) (-3277 . 220341)
+ (-3278 . 220176) (-3279 . 220036) (-3280 . 219894) (-3281 . 219811)
+ (-3282 . 219734) (-3283 . 219480) (-3284 . 219428) (-3285 . 219360)
+ (-3286 . 219307) (-3287 . 219056) (-3288 . 218800) (-3289 . 218660)
+ (-3290 . 218551) (-3291 . 218520) (-3292 . 218425) (-3293 . 217802)
+ (-3294 . 217750) (-3295 . 217595) (-3296 . 217471) (-3297 . 217359)
+ (-3298 . 217085) (-3299 . 216948) (-3300 . 216840) (-3301 . 216717)
+ (-3302 . 216598) (-3303 . 216502) (-3304 . 216283) (-3305 . 216028)
+ (-3306 . 215685) (-3307 . 215611) (-3308 . 215516) (-3309 . 215356)
+ (-3310 . 215031) (-3311 . 214684) (-3312 . 214485) (-3313 . 214414)
+ (-3314 . 214309) (-3315 . 214236) (-3316 . 213822) (-3317 . 213726)
+ (-3318 . 213571) (-3319 . 213238) (-3320 . 213171) (-3321 . 212999)
+ (-3322 . 212946) (-3323 . 212497) (-3324 . 212446) (-3325 . 212380)
+ (-3326 . 212248) (-3327 . 211819) (-3328 . 211680) (-3329 . 210315)
+ (-3330 . 210242) (-3331 . 209858) (-12 . 209686) (-3333 . 209612)
+ (-3334 . 209420) (-3335 . 209317) (-3336 . 209208) (-3337 . 209064)
+ (-3338 . 208977) (-3339 . 207435) (-3340 . 207355) (-3341 . 207303)
+ (-3342 . 207185) (-3343 . 206966) (-3344 . 206813) (-3345 . 206706)
+ (-3346 . 206637) (-3347 . 206541) (-3348 . 206405) (-3349 . 206059)
+ (-3350 . 205928) (-3351 . 205634) (-3352 . 205582) (-3353 . 205452)
+ (-3354 . 205400) (-3355 . 205320) (-3356 . 204935) (-3357 . 204733)
+ (-3358 . 204681) (-3359 . 204599) (-3360 . 204498) (-3361 . 204446)
+ (-3362 . 204379) (-3363 . 204193) (-3364 . 204086) (-3365 . 203933)
+ (-3366 . 203688) (-3367 . 203563) (-3368 . 203489) (-3369 . 203382)
+ (-3370 . 203311) (-3371 . 203124) (-3372 . 202524) (-3373 . 202231)
+ (-3374 . 202169) (-3375 . 201956) (-3376 . 201349) (-3377 . 200699)
+ (-3378 . 200631) (-3379 . 200512) (-3380 . 199331) (-3381 . 199276)
+ (-3382 . 199120) (-3383 . 199034) (-3384 . 198975) (-3385 . 198712)
+ (-3386 . 198416) (-3387 . 198330) (-3388 . 197993) (-3389 . 197941)
+ (-3390 . 197817) (-3391 . 197783) (-3392 . 197596) (-3393 . 197166)
+ (-3394 . 197045) (-3395 . 196975) (-3396 . 196889) (-3397 . 196773)
+ (-3398 . 196645) (-3399 . 196544) (-3400 . 196207) (-3401 . 196140)
+ (-3402 . 195896) (-3403 . 195689) (-3404 . 195639) (-3405 . 195523)
+ (-3406 . 195370) (-3407 . 195164) (-3408 . 195090) (-3409 . 194884)
+ (-3410 . 194775) (-3411 . 194701) (-3412 . 194351) (-3413 . 194235)
+ (-3414 . 194117) (-3415 . 194030) (-3416 . 193923) (-3417 . 193889)
+ (-3418 . 193552) (-3419 . 193393) (-3420 . 193312) (-3421 . 193227)
+ (-3422 . 193161) (-3423 . 192948) (-3424 . 192878) (-3425 . 192287)
+ (* . 187764) (-3427 . 187515) (-3428 . 187432) (-3429 . 187061)
+ (-3430 . 186838) (-3431 . 186780) (-3432 . 186553) (-3433 . 186445)
+ (-3434 . 186339) (-3435 . 186266) (-3436 . 186138) (-3437 . 186067)
+ (-3438 . 185609) (-3439 . 185339) (-3440 . 185240) (-3441 . 184242)
+ (-3442 . 184159) (-3443 . 184033) (-3444 . 183961) (-3445 . 183820)
+ (-3446 . 183721) (-3447 . 183613) (-3448 . 183546) (-3449 . 183276)
+ (-3450 . 183170) (-3451 . 182977) (-3452 . 182630) (-3453 . 182602)
+ (-3454 . 182383) (-3455 . 182274) (-3456 . 182187) (-3457 . 181970)
+ (-3458 . 181856) (-3459 . 181750) (-3460 . 179405) (-3461 . 179377)
+ (-3462 . 179274) (-3463 . 179172) (-3464 . 179119) (-3465 . 178819)
+ (-3466 . 178634) (-3467 . 178543) (-3468 . 178448) (-3469 . 178329)
+ (-3470 . 178032) (-3471 . 177731) (-3472 . 177676) (-3473 . 177582)
+ (-3474 . 177526) (-3475 . 177410) (-3476 . 177382) (-3477 . 177297)
+ (-3478 . 177192) (-3479 . 177139) (-3480 . 177079) (-3481 . 176836)
+ (-3482 . 176481) (-3483 . 176401) (-3484 . 176373) (-3485 . 176232)
+ (-3486 . 176136) (-3487 . 175698) (-3488 . 175670) (-3489 . 175426)
+ (-3490 . 175270) (-3491 . 174750) (-3492 . 174620) (-3493 . 174566)
+ (-3494 . 174429) (-3495 . 174292) (-3496 . 174215) (-3497 . 174159)
+ (-3498 . 174107) (-3499 . 173830) (-3500 . 173689) (-3501 . 173636)
+ (-3502 . 173036) (-3503 . 172958) (-3504 . 172417) (-3505 . 172343)
+ (-3506 . 172220) (-3507 . 172040) (-3508 . 171442) (-3509 . 171345)
+ (-3510 . 171118) (-3511 . 170865) (-3512 . 170762) (-3513 . 170589)
+ (-3514 . 170511) (-3515 . 170449) (-3516 . 169497) (-3517 . 169399)
+ (-3518 . 168525) (-3519 . 168497) (-3520 . 168423) (-3521 . 168243)
+ (-3522 . 168144) (-3523 . 167880) (-3524 . 167788) (-3525 . 167700)
+ (-3526 . 167615) (-3527 . 167409) (-3528 . 162092) (-3529 . 161933)
+ (-3530 . 161846) (-3531 . 161031) (-3532 . 160936) (-3533 . 160870)
+ (-3534 . 160750) (-3535 . 160537) (-3536 . 160051) (-3537 . 159905)
+ (-3538 . 159250) (-3539 . 159194) (-3540 . 158884) (-3541 . 158834)
+ (-3542 . 158782) (-3543 . 158618) (-3544 . 158537) (-3545 . 158486)
+ (-3546 . 158352) (-3547 . 158254) (-3548 . 157957) (-3549 . 157781)
+ (-3550 . 157643) (-3551 . 156889) (-3552 . 156490) (-3553 . 156411)
+ (-3554 . 156282) (-3555 . 156232) (-3556 . 156159) (-3557 . 155499)
+ (-3558 . 155396) (-3559 . 155248) (-3560 . 155078) (-3561 . 154967)
+ (-3562 . 154741) (-3563 . 154674) (-3564 . 154586) (-3565 . 154484)
+ (-3566 . 154412) (-3567 . 154248) (-3568 . 154035) (-3569 . 153948)
+ (-3570 . 153772) (-3571 . 153455) (-3572 . 152263) (-3573 . 151865)
+ (-3574 . 151769) (-3575 . 151682) (-3576 . 151605) (-3577 . 151536)
+ (-3578 . 151417) (-3579 . 151331) (-3580 . 151278) (-3581 . 151191)
+ (-3582 . 151096) (-3583 . 150713) (-3584 . 150613) (-3585 . 150414)
+ (-3586 . 150247) (-3587 . 150151) (-3588 . 150045) (-3589 . 149948)
+ (-3590 . 149864) (-3591 . 149785) (-3592 . 149600) (-3593 . 149487)
+ (-3594 . 149229) (-3595 . 149169) (-3596 . 149041) (-3597 . 148967)
+ (-3598 . 148887) (-3599 . 148783) (-3600 . 148361) (-3601 . 148290)
+ (-3602 . 147226) (-3603 . 147069) (-3604 . 146828) (-3605 . 146757)
+ (-3606 . 146674) (-3607 . 146569) (-3608 . 146516) (-3609 . 146370)
+ (-3610 . 144946) (-3611 . 144820) (-3612 . 144747) (-3613 . 144681)
+ (-3614 . 144527) (-3615 . 144476) (-3616 . 144339) (-3617 . 143893)
+ (-3618 . 143680) (-3619 . 143615) (-3620 . 143559) (-3621 . 143385)
+ (-3622 . 143314) (-3623 . 143216) (-3624 . 143137) (-3625 . 143071)
+ (-3626 . 142927) (-3627 . 142570) (-3628 . 142439) (-3629 . 142367)
+ (-3630 . 142272) (-3631 . 142216) (-3632 . 142079) (-3633 . 142045)
+ (-3634 . 141841) (-3635 . 141686) (-3636 . 141635) (-3637 . 141304)
+ (-3638 . 141183) (-3639 . 141096) (-3640 . 140989) (-3641 . 140917)
+ (-3642 . 140142) (-3643 . 139516) (-3644 . 139431) (-3645 . 139178)
+ (-3646 . 138381) (-3647 . 137906) (-3648 . 137850) (-3649 . 137732)
+ (-3650 . 137479) (-3651 . 137409) (-3652 . 137238) (-3653 . 137139)
+ (-3654 . 136636) (-3655 . 136557) (-3656 . 136474) (-3657 . 136335)
+ (-3658 . 136216) (-3659 . 136139) (-3660 . 136046) (-3661 . 135981)
+ (-3662 . 135844) (-3663 . 135469) (-3664 . 135372) (-3665 . 135268)
+ (-3666 . 135052) (-3667 . 134878) (-3668 . 134808) (-3669 . 134752)
+ (-3670 . 134640) (-3671 . 134533) (-3672 . 134345) (-3673 . 134231)
+ (-3674 . 134021) (-3675 . 133947) (-3676 . 133682) (-3677 . 133083)
+ (-3678 . 132591) (-3679 . 132488) (-3680 . 131724) (-3681 . 131581)
+ (-3682 . 128673) (-3683 . 128456) (-3684 . 128382) (-3685 . 128304)
+ (-3686 . 128241) (-3687 . 127696) (-3688 . 127564) (-3689 . 127326)
+ (-3690 . 126702) (-3691 . 126486) (-3692 . 126363) (-3693 . 126233)
+ (-3694 . 126181) (-3695 . 126077) (-3696 . 125874) (-3697 . 125759)
+ (-3698 . 125486) (-3699 . 125353) (-3700 . 125130) (-3701 . 125077)
+ (-3702 . 123508) (-3703 . 123240) (-3704 . 123082) (-3705 . 122995)
+ (-3706 . 122964) (-3707 . 122848) (-3708 . 122527) (-3709 . 122304)
+ (-3710 . 122032) (-3711 . 121861) (-3712 . 121790) (-3713 . 121737)
+ (-3714 . 121652) (-3715 . 121173) (-3716 . 120769) (-3717 . 120551)
+ (-3718 . 120466) (-3719 . 120136) (-3720 . 119998) (-3721 . 119915)
+ (-3722 . 119761) (-3723 . 119705) (-3724 . 119620) (-3725 . 119370)
+ (-3726 . 118060) (-3727 . 117960) (-3728 . 117907) (-3729 . 117836)
+ (-3730 . 117676) (-3731 . 117306) (-3732 . 117234) (-3733 . 117127)
+ (-3734 . 117043) (-3735 . 116917) (-3736 . 116569) (-3737 . 116440)
+ (-3738 . 116287) (-3739 . 116173) (-3740 . 116107) (-3741 . 115828)
+ (-3742 . 115776) (-3743 . 115684) (-3744 . 115527) (-3745 . 115450)
+ (-3746 . 115259) (-3747 . 115227) (-3748 . 114865) (-3749 . 114795)
+ (-3750 . 114729) (-3751 . 114318) (-3752 . 114170) (-3753 . 114015)
+ (-3754 . 113947) (-3755 . 113873) (-3756 . 113764) (-3757 . 113157)
+ (-3758 . 113098) (-3759 . 112909) (-3760 . 112791) (-3761 . 112738)
+ (-3762 . 112496) (-3763 . 112438) (-3764 . 112323) (-3765 . 112136)
+ (-3766 . 112046) (-3767 . 111945) (-3768 . 111819) (-3769 . 111595)
+ (-3770 . 111373) (-3771 . 111300) (-3772 . 111272) (-3773 . 110857)
+ (-3774 . 110770) (-3775 . 110403) (-3776 . 110320) (-3777 . 110149)
+ (-3778 . 110054) (-3779 . 109840) (-3780 . 109707) (-3781 . 109255)
+ (-3782 . 108975) (-3783 . 108365) (-3784 . 108227) (-3785 . 108106)
+ (-3786 . 107883) (-3787 . 107496) (-3788 . 107200) (-3789 . 107166)
+ (-3790 . 107031) (-3791 . 106910) (-3792 . 106813) (-3793 . 106642)
+ (-3794 . 106574) (-3795 . 106434) (-3796 . 106327) (-3797 . 106172)
+ (-3798 . 105976) (-3799 . 105886) (-3800 . 105796) (-3801 . 105680)
+ (-3802 . 105502) (-3803 . 105372) (-3804 . 105157) (-3805 . 104340)
+ (-3806 . 103255) (-3807 . 103227) (-3808 . 102988) (-3809 . 102907)
+ (-3810 . 102794) (-3811 . 102653) (-3812 . 102530) (-3813 . 102426)
+ (-3814 . 102341) (-3815 . 102258) (-3816 . 102092) (-3817 . 101887)
+ (-3818 . 101562) (-3819 . 101340) (-3820 . 101283) (-3821 . 101209)
+ (-3822 . 100935) (-3823 . 100876) (-3824 . 100630) (-3825 . 100351)
+ (-3826 . 100285) (-3827 . 99972) (-3828 . 99712) (-3829 . 99653)
+ (-3830 . 99510) (-3831 . 99358) (-3832 . 99043) (-3833 . 98983)
+ (-3834 . 98596) (-3835 . 98499) (-3836 . 98416) (-3837 . 98242)
+ (-3838 . 97985) (-3839 . 96689) (-3840 . 96605) (-3841 . 96481)
+ (-3842 . 96423) (-3843 . 96224) (-3844 . 96098) (-3845 . 96012)
+ (-3846 . 95929) (-3847 . 95631) (-3848 . 95518) (-3849 . 95415)
+ (-3850 . 95314) (-3851 . 95280) (-3852 . 95150) (-3853 . 94988)
+ (-3854 . 94891) (-3855 . 94789) (-3856 . 94679) (-3857 . 94070)
+ (-3858 . 93860) (-3859 . 93755) (-3860 . 93574) (-3861 . 93489)
+ (-3862 . 93390) (-3863 . 93312) (-3864 . 93062) (-3865 . 92944)
+ (-3866 . 92873) (-3867 . 92449) (-3868 . 92246) (-3869 . 92119)
+ (-3870 . 91935) (-3871 . 91883) (-3872 . 91741) (-3873 . 89494)
+ (-3874 . 89414) (-3875 . 89038) (-3876 . 88764) (-3877 . 88181)
+ (-3878 . 88067) (-3879 . 87953) (-3880 . 87800) (-3881 . 87659)
+ (-3882 . 87455) (-3883 . 87421) (-3884 . 87368) (-3885 . 87288)
+ (-3886 . 87015) (-3887 . 86865) (-3888 . 86730) (-3889 . 86592)
+ (-3890 . 86152) (-3891 . 86083) (-3892 . 85976) (-3893 . 85908)
+ (-3894 . 85779) (-3895 . 85727) (-3896 . 85619) (-3897 . 85588)
+ (-3898 . 85148) (-3899 . 84935) (-3900 . 84828) (-3901 . 84085)
+ (-3902 . 83908) (-3903 . 83835) (-3904 . 83732) (-3905 . 83616)
+ (-3906 . 83479) (-3907 . 83086) (-3908 . 82873) (-3909 . 82743)
+ (-3910 . 82603) (-3911 . 82370) (-3912 . 82297) (-3913 . 82204)
+ (-3914 . 81688) (-3915 . 81530) (-3916 . 81351) (-3917 . 81317)
+ (-3918 . 81217) (-3919 . 81082) (-3920 . 81029) (-3921 . 80952)
+ (-3922 . 80732) (-3923 . 80605) (-3924 . 80532) (-3925 . 80435)
+ (-3926 . 80407) (-3927 . 80358) (-3928 . 80260) (-3929 . 80133)
+ (-3930 . 80050) (-3931 . 79952) (-3932 . 79797) (-3933 . 79723)
+ (-3934 . 79655) (-3935 . 79437) (-3936 . 79375) (-3937 . 79312)
+ (-3938 . 79219) (-3939 . 79156) (-3940 . 78446) (-3941 . 78365)
+ (-3942 . 78143) (-3943 . 77979) (-3944 . 76814) (-3945 . 76679)
+ (-3946 . 76651) (-3947 . 76504) (-3948 . 75832) (-3949 . 75673)
+ (-3950 . 75600) (-3951 . 75493) (-3952 . 75324) (-3953 . 75247)
+ (-3954 . 74493) (-3955 . 74435) (-3956 . 74205) (-3957 . 74122)
+ (-3958 . 73872) (-3959 . 73626) (-3960 . 73569) (-3961 . 73454)
+ (-3962 . 73212) (-3963 . 73076) (-3964 . 72991) (-3965 . 72845)
+ (-3966 . 72779) (-3967 . 72708) (-3968 . 72416) (-3969 . 72230)
+ (-3970 . 72025) (-3971 . 71764) (-3972 . 71692) (-3973 . 71557)
+ (-3974 . 71389) (-3975 . 71237) (-3976 . 71171) (-3977 . 70977)
+ (-3978 . 70811) (-3979 . 70724) (-3980 . 70651) (-3981 . 70401)
+ (-3982 . 70304) (-3983 . 70247) (-3984 . 70068) (-3985 . 70040)
+ (-3986 . 69922) (-3987 . 69745) (-3988 . 69611) (-3989 . 69574)
+ (-3990 . 69449) (-3991 . 69362) (-3992 . 69074) (-3993 . 68933)
+ (-3994 . 68735) (-3995 . 68667) (-3996 . 68612) (-3997 . 68527)
+ (-3998 . 68376) (-3999 . 67941) (-4000 . 67889) (-4001 . 67837)
+ (-4002 . 66873) (-4003 . 66008) (-4004 . 65356) (-4005 . 65262)
+ (-4006 . 65141) (-4007 . 64568) (-4008 . 64494) (-4009 . 64162)
+ (-4010 . 63886) (-4011 . 63831) (-4012 . 63665) (-4013 . 63503)
+ (-4014 . 63370) (-4015 . 63270) (-4016 . 63150) (-4017 . 63079)
+ (-4018 . 63024) (-4019 . 62866) (-4020 . 62635) (-4021 . 62520)
+ (-4022 . 62199) (-4023 . 62043) (-4024 . 61948) (-4025 . 61865)
+ (-4026 . 61657) (-4027 . 61512) (-4028 . 61371) (-4029 . 61218)
+ (-4030 . 61148) (-4031 . 61052) (-4032 . 60997) (-4033 . 60944)
+ (-4034 . 60821) (-4035 . 60722) (-4036 . 60637) (-4037 . 60499)
+ (-4038 . 60008) (-4039 . 50478) (-4040 . 50385) (-4041 . 50242)
+ (-4042 . 50169) (-4043 . 50116) (-4044 . 50064) (-4045 . 49748)
+ (-4046 . 49589) (-4047 . 49482) (-4048 . 49010) (-4049 . 48957)
+ (-4050 . 48891) (-4051 . 48804) (-4052 . 48667) (-4053 . 48538)
+ (-4054 . 48383) (-4055 . 48254) (-4056 . 48201) (-4057 . 48097)
+ (-4058 . 47973) (-4059 . 47763) (-4060 . 47711) (-4061 . 47602)
+ (-4062 . 47532) (-4063 . 47428) (-4064 . 47373) (-4065 . 47242)
+ (-4066 . 47018) (-4067 . 46906) (-4068 . 46816) (-4069 . 46626)
+ (-4070 . 46311) (-4071 . 46198) (-4072 . 45960) (-4073 . 44713)
+ (-4074 . 44514) (-4075 . 44396) (-4076 . 44206) (-4077 . 44154)
+ (-4078 . 43879) (-4079 . 43389) (-4080 . 43178) (-4081 . 42926)
+ (-4082 . 41676) (-4083 . 41580) (-4084 . 41483) (-4085 . 41417)
+ (-4086 . 41329) (-4087 . 41117) (-4088 . 41039) (-4089 . 40747)
+ (-4090 . 40506) (-4091 . 40440) (-4092 . 40362) (-4093 . 39357)
+ (-4094 . 39098) (-4095 . 39030) (-4096 . 38762) (-4097 . 38668)
+ (-4098 . 38559) (-4099 . 38476) (-4100 . 38366) (-4101 . 38199)
+ (-4102 . 38171) (-4103 . 37723) (-4104 . 37579) (-4105 . 37423)
+ (-4106 . 37325) (-4107 . 37216) (-4108 . 37049) (-4109 . 36741)
+ (-4110 . 36658) (-4111 . 36318) (-4112 . 36012) (-4113 . 35844)
+ (-4114 . 35670) (-4115 . 35614) (-4116 . 35555) (-4117 . 35461)
+ (-4118 . 35339) (-4119 . 35252) (-4120 . 35178) (-4121 . 35107)
+ (-4122 . 35017) (-4123 . 34774) (-4124 . 34633) (-4125 . 34564)
+ (-4126 . 34405) (-4127 . 34207) (-4128 . 34140) (-4129 . 33757)
+ (-4130 . 33619) (-4131 . 33527) (-4132 . 29539) (-4133 . 29458)
+ (-4134 . 29409) (-4135 . 29322) (-4136 . 29288) (-4137 . 29106)
+ (-4138 . 29007) (-4139 . 28892) (-4140 . 28861) (-4141 . 21907)
+ (-4142 . 21682) (-4143 . 21614) (-4144 . 21469) (-4145 . 21353)
+ (-4146 . 21204) (-4147 . 21109) (-4148 . 21056) (-4149 . 20875)
+ (-4150 . 20534) (-4151 . 20452) (-4152 . 20381) (-4153 . 20293)
+ (-4154 . 20155) (-4155 . 20070) (-4156 . 18886) (-4157 . 18808)
+ (-4158 . 18684) (-4159 . 18356) (-4160 . 18198) (-4161 . 18084)
+ (-4162 . 18027) (-4163 . 16815) (-4164 . 15637) (-4165 . 15552)
+ (-4166 . 15503) (-4167 . 15408) (-4168 . 15349) (-4169 . 15290)
+ (-4170 . 15261) (-4171 . 14664) (-4172 . 14522) (-4173 . 12324)
+ (-4174 . 12183) (-4175 . 12084) (-4176 . 12018) (-4177 . 11947)
+ (-4178 . 11581) (-4179 . 11194) (-4180 . 11072) (-4181 . 10974)
+ (-4182 . 10884) (-4183 . 10764) (-4184 . 10223) (-4185 . 9891)
+ (-4186 . 9774) (-4187 . 9688) (-4188 . 9582) (-4189 . 9426)
+ (-4190 . 9135) (-4191 . 8964) (-4192 . 8935) (-4193 . 8806)
+ (-4194 . 8680) (-4195 . 8585) (-4196 . 7756) (-4197 . 7509)
+ (-4198 . 7332) (-4199 . 7276) (-4200 . 7094) (-4201 . 6787)
+ (-4202 . 6714) (-4203 . 6685) (-4204 . 6532) (-4205 . 5352)
+ (-4206 . 5126) (-4207 . 5011) (-4208 . 4926) (-4209 . 4635)
+ (-4210 . 4441) (-4211 . 4281) (-4212 . 3702) (-4213 . 3508)
+ (-4214 . 3317) (-4215 . 2895) (-4216 . 2846) (-4217 . 2662)
+ (-4218 . 2609) (-4219 . 2391) (-4220 . 2120) (-4221 . 2049)
+ (-4222 . 1969) (-4223 . 1674) (-4224 . 940) (-4225 . 846)
+ (-4226 . 794) (-4227 . 492) (-4228 . 393) (-4229 . 274) (-4230 . 30)) \ No newline at end of file